diff -Nru mysql-5.7-5.7.25/client/base/CMakeLists.txt mysql-5.7-5.7.26/client/base/CMakeLists.txt --- mysql-5.7-5.7.25/client/base/CMakeLists.txt 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/client/base/CMakeLists.txt 2019-04-13 13:32:15.000000000 +0000 @@ -1,4 +1,4 @@ -# Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -15,6 +15,8 @@ ADD_DEFINITIONS(${SSL_DEFINES}) +INCLUDE(${MYSQL_CMAKE_SCRIPT_DIR}/compile_flags.cmake) + ADD_CONVENIENCE_LIBRARY(client_base i_option.cc bool_option.cc diff -Nru mysql-5.7-5.7.25/client/dump/CMakeLists.txt mysql-5.7-5.7.26/client/dump/CMakeLists.txt --- mysql-5.7-5.7.25/client/dump/CMakeLists.txt 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/client/dump/CMakeLists.txt 2019-04-13 13:32:15.000000000 +0000 @@ -13,6 +13,8 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +INCLUDE(${MYSQL_CMAKE_SCRIPT_DIR}/compile_flags.cmake) + INCLUDE_DIRECTORIES( ${CMAKE_SOURCE_DIR}/dump ) diff -Nru mysql-5.7-5.7.25/client/dump/mysql_crawler.cc mysql-5.7-5.7.26/client/dump/mysql_crawler.cc --- mysql-5.7-5.7.25/client/dump/mysql_crawler.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/client/dump/mysql_crawler.cc 2019-04-13 13:32:15.000000000 +0000 @@ -1,5 +1,5 @@ /* - Copyright (c) 2015, 2016 Oracle and/or its affiliates. All rights reserved. + Copyright (c) 2015, 2018 Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -114,6 +114,8 @@ m_dump_end_task->add_dependency(m_tables_definition_ready_dump_task); this->process_dump_task(m_tables_definition_ready_dump_task); + this->enumerate_users(); + std::vector::iterator it; std::vector::iterator it_end; for (it= db_list.begin(),it_end= db_end_task_list.begin(); @@ -128,8 +130,6 @@ Mysql::Tools::Base::Mysql_query_runner::cleanup_result(&databases); - this->enumerate_users(); - this->process_dump_task(m_dump_end_task); this->report_crawler_completed(this); diff -Nru mysql-5.7-5.7.25/client/mysqladmin.cc mysql-5.7-5.7.26/client/mysqladmin.cc --- mysql-5.7-5.7.25/client/mysqladmin.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/client/mysqladmin.cc 2019-04-13 13:32:15.000000000 +0000 @@ -1559,7 +1559,7 @@ { MYSQL_RES* result; - if (mysql_query(mysql, "SHOW VARIABLES LIKE 'pid_file'")) + if (mysql_query(mysql, "SELECT @@datadir, @@pid_file")) { my_printf_error(mysql_errno(mysql), "The query to get the server's pid file failed," @@ -1570,8 +1570,13 @@ if (result) { MYSQL_ROW row=mysql_fetch_row(result); - if (row) - my_stpcpy(pidfile, row[1]); + if (row) { + char datadir[FN_REFLEN]; + char pidfile_option[FN_REFLEN]; + my_stpcpy(datadir, row[0]); + my_stpcpy(pidfile_option, row[1]); + (void) my_load_path(pidfile, pidfile_option, datadir); + } mysql_free_result(result); return row == 0; /* Error if row = 0 */ } diff -Nru mysql-5.7-5.7.25/cmake/libevent.cmake mysql-5.7-5.7.26/cmake/libevent.cmake --- mysql-5.7-5.7.25/cmake/libevent.cmake 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/cmake/libevent.cmake 2019-04-13 13:32:15.000000000 +0000 @@ -1,4 +1,4 @@ -# Copyright (c) 2011, 2016, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2011, 2018, Oracle and/or its affiliates. All rights reserved. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -14,16 +14,14 @@ # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA MACRO (MYSQL_USE_BUNDLED_LIBEVENT) - SET(LIBEVENT_LIBRARY event) - SET(LIBEVENT_INCLUDE_DIR ${CMAKE_SOURCE_DIR}/libevent) + SET(WITH_LIBEVENT "bundled" CACHE STRING "Use bundled libevent library") + SET(LIBEVENT_LIBRARIES event) + SET(LIBEVENT_INCLUDE_DIRS + "${CMAKE_SOURCE_DIR}/extra/libevent/include" + "${CMAKE_BINARY_DIR}/extra/libevent/include") SET(LIBEVENT_FOUND TRUE) - ADD_DEFINITIONS("-DHAVE_LIBEVENT1") - SET(WITH_LIBEVENT "bundled" CACHE STRING "Use bundled libevent") - ADD_SUBDIRECTORY(libevent) - GET_TARGET_PROPERTY(src libevent SOURCES) - FOREACH(file ${src}) - SET(LIBEVENT_SOURCES ${LIBEVENT_SOURCES} ${CMAKE_SOURCE_DIR}/libevent/${file}) - ENDFOREACH() + ADD_DEFINITIONS("-DHAVE_LIBEVENT2") + ADD_SUBDIRECTORY(extra/libevent) ENDMACRO() # MYSQL_CHECK_LIBEVENT @@ -33,7 +31,7 @@ # If this is set,we use bindled libevent # If this is not set,search for system libevent. # if system libevent is not found, use bundled copy -# LIBEVENT_LIBRARIES, LIBEVENT_INCLUDE_DIR and LIBEVENT_SOURCES +# LIBEVENT_LIBRARIES, LIBEVENT_INCLUDE_DIRS # are set after this macro has run MACRO (MYSQL_CHECK_LIBEVENT) @@ -48,43 +46,43 @@ SET(LIBEVENT_FIND_QUIETLY TRUE) IF (NOT LIBEVENT_INCLUDE_PATH) - set(LIBEVENT_INCLUDE_PATH /usr/local/include /opt/local/include) + SET(LIBEVENT_INCLUDE_PATH /usr/local/include /opt/local/include) ENDIF() - find_path(LIBEVENT_INCLUDE_DIR event.h PATHS ${LIBEVENT_INCLUDE_PATH}) + FIND_PATH(LIBEVENT_INCLUDE_DIR event.h PATHS ${LIBEVENT_INCLUDE_PATH}) - if (NOT LIBEVENT_INCLUDE_DIR) + IF (NOT LIBEVENT_INCLUDE_DIR) MESSAGE(SEND_ERROR "Cannot find appropriate event.h in /usr/local/include or /opt/local/include. Use bundled libevent") - endif() + ENDIF() IF (NOT LIBEVENT_LIB_PATHS) - set(LIBEVENT_LIB_PATHS /usr/local/lib /opt/local/lib) + SET(LIBEVENT_LIB_PATHS /usr/local/lib /opt/local/lib) ENDIF() ## libevent.so is historical, use libevent_core.so if found. - find_library(LIBEVENT_CORE event_core PATHS ${LIBEVENT_LIB_PATHS}) - find_library(LIBEVENT_LIB event PATHS ${LIBEVENT_LIB_PATHS}) + FIND_LIBRARY(LIBEVENT_CORE event_core PATHS ${LIBEVENT_LIB_PATHS}) + FIND_LIBRARY(LIBEVENT_EXTRA event_extra PATHS ${LIBEVENT_LIB_PATHS}) + FIND_LIBRARY(LIBEVENT_LIB event PATHS ${LIBEVENT_LIB_PATHS}) - if (NOT LIBEVENT_LIB AND NOT LIBEVENT_CORE) + IF (NOT LIBEVENT_LIB AND NOT LIBEVENT_CORE) MESSAGE(SEND_ERROR "Cannot find appropriate event lib in /usr/local/lib or /opt/local/lib. Use bundled libevent") - endif() + ENDIF() IF ((LIBEVENT_LIB OR LIBEVENT_CORE) AND LIBEVENT_INCLUDE_DIR) - set(LIBEVENT_FOUND TRUE) + SET(LIBEVENT_FOUND TRUE) IF (LIBEVENT_CORE) - set(LIBEVENT_LIBS ${LIBEVENT_CORE}) + SET(LIBEVENT_LIBS ${LIBEVENT_CORE} ${LIBEVENT_EXTRA}) ELSE() - set(LIBEVENT_LIBS ${LIBEVENT_LIB}) + SET(LIBEVENT_LIBS ${LIBEVENT_LIB}) ENDIF() ELSE() - set(LIBEVENT_FOUND FALSE) + SET(LIBEVENT_FOUND FALSE) ENDIF() IF(LIBEVENT_FOUND) - SET(LIBEVENT_SOURCES "") SET(LIBEVENT_LIBRARIES ${LIBEVENT_LIBS}) SET(LIBEVENT_INCLUDE_DIRS ${LIBEVENT_INCLUDE_DIR}) - find_path(LIBEVENT2_INCLUDE_DIR event2 HINTS ${LIBEVENT_INCLUDE_PATH}/event) + FIND_PATH(LIBEVENT2_INCLUDE_DIR event2 HINTS ${LIBEVENT_INCLUDE_PATH}/event) IF (LIBEVENT2_INCLUDE_DIR) ADD_DEFINITIONS("-DHAVE_LIBEVENT2") ELSE() @@ -98,4 +96,6 @@ ENDIF() ENDIF() + MESSAGE(STATUS "LIBEVENT_INCLUDE_DIRS ${LIBEVENT_INCLUDE_DIRS}") + MESSAGE(STATUS "LIBEVENT_LIBRARIES ${LIBEVENT_LIBRARIES}") ENDMACRO() diff -Nru mysql-5.7-5.7.25/cmake/os/Linux.cmake mysql-5.7-5.7.26/cmake/os/Linux.cmake --- mysql-5.7-5.7.25/cmake/os/Linux.cmake 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/cmake/os/Linux.cmake 2019-04-13 13:32:15.000000000 +0000 @@ -1,5 +1,5 @@ -# Copyright (c) 2010, 2014, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2010, 2018, Oracle and/or its affiliates. All rights reserved. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -19,6 +19,8 @@ INCLUDE(CheckSymbolExists) INCLUDE(CheckCSourceRuns) +SET(LINUX 1) + # We require at least GCC 4.4 or Clang 3.3. IF(NOT FORCE_UNSUPPORTED_COMPILER) IF(CMAKE_COMPILER_IS_GNUCC) diff -Nru mysql-5.7-5.7.25/cmake/plugin.cmake mysql-5.7-5.7.26/cmake/plugin.cmake --- mysql-5.7-5.7.25/cmake/plugin.cmake 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/cmake/plugin.cmake 2019-04-13 13:32:15.000000000 +0000 @@ -1,4 +1,4 @@ -# Copyright (c) 2009, 2018, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2009, 2019, Oracle and/or its affiliates. All rights reserved. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -52,7 +52,7 @@ MACRO(MYSQL_ADD_PLUGIN) MYSQL_PARSE_ARGUMENTS(ARG "LINK_LIBRARIES;DEPENDENCIES;MODULE_OUTPUT_NAME;STATIC_OUTPUT_NAME" - "STORAGE_ENGINE;STATIC_ONLY;MODULE_ONLY;CLIENT_ONLY;MANDATORY;DEFAULT;DISABLED;NOT_FOR_EMBEDDED;RECOMPILE_FOR_EMBEDDED;TEST_ONLY" + "STORAGE_ENGINE;STATIC_ONLY;MODULE_ONLY;CLIENT_ONLY;MANDATORY;DEFAULT;DISABLED;NOT_FOR_EMBEDDED;RECOMPILE_FOR_EMBEDDED;TEST_ONLY;SKIP_INSTALL" ${ARGN} ) @@ -263,23 +263,25 @@ ) # Install dynamic library - SET(INSTALL_COMPONENT Server) - IF(ARG_TEST_ONLY) - SET(INSTALL_COMPONENT Test) - ENDIF() - MYSQL_INSTALL_TARGETS(${target} - DESTINATION ${INSTALL_PLUGINDIR} - COMPONENT ${INSTALL_COMPONENT}) - INSTALL_DEBUG_TARGET(${target} - DESTINATION ${INSTALL_PLUGINDIR}/debug - COMPONENT ${INSTALL_COMPONENT}) - # Add installed files to list for RPMs - FILE(APPEND ${CMAKE_BINARY_DIR}/support-files/plugins.files - "%attr(755, root, root) %{_prefix}/${INSTALL_PLUGINDIR}/${ARG_MODULE_OUTPUT_NAME}.so\n" - "%attr(755, root, root) %{_prefix}/${INSTALL_PLUGINDIR}/debug/${ARG_MODULE_OUTPUT_NAME}.so\n") - # For internal testing in PB2, append collections files - IF(DEFINED ENV{PB2WORKDIR}) - PLUGIN_APPEND_COLLECTIONS(${plugin}) + IF(NOT ARG_SKIP_INSTALL) + SET(INSTALL_COMPONENT Server) + IF(ARG_TEST_ONLY) + SET(INSTALL_COMPONENT Test) + ENDIF() + MYSQL_INSTALL_TARGETS(${target} + DESTINATION ${INSTALL_PLUGINDIR} + COMPONENT ${INSTALL_COMPONENT}) + INSTALL_DEBUG_TARGET(${target} + DESTINATION ${INSTALL_PLUGINDIR}/debug + COMPONENT ${INSTALL_COMPONENT}) + # Add installed files to list for RPMs + FILE(APPEND ${CMAKE_BINARY_DIR}/support-files/plugins.files + "%attr(755, root, root) %{_prefix}/${INSTALL_PLUGINDIR}/${ARG_MODULE_OUTPUT_NAME}.so\n" + "%attr(755, root, root) %{_prefix}/${INSTALL_PLUGINDIR}/debug/${ARG_MODULE_OUTPUT_NAME}.so\n") + # For internal testing in PB2, append collections files + IF(DEFINED ENV{PB2WORKDIR}) + PLUGIN_APPEND_COLLECTIONS(${plugin}) + ENDIF() ENDIF() ELSE() IF(WITHOUT_${plugin}) diff -Nru mysql-5.7-5.7.25/cmake/rpc.cmake mysql-5.7-5.7.26/cmake/rpc.cmake --- mysql-5.7-5.7.25/cmake/rpc.cmake 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/cmake/rpc.cmake 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,73 @@ +# Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; version 2 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +IF(WIN32) + RETURN() +ENDIF() + +MACRO(MYSQL_CHECK_RPC) + IF(LINUX AND NOT LIBTIRPC_VERSION_TOO_OLD) + # Do a sanity check, before bailing out in FIND_PACKAGE below. + FIND_PROGRAM(MY_PKG_CONFIG_EXECUTABLE NAMES pkg-config + DOC "pkg-config executable") + IF(NOT MY_PKG_CONFIG_EXECUTABLE) + MESSAGE(WARNING "Cannot find pkg-config. You need to " + "install the required package:\n" + " Debian/Ubuntu: apt install pkg-config\n" + " RedHat/Fedora/Oracle Linux: yum install pkg-config\n" + " SuSE: zypper install pkg-config\n" + ) + ENDIF() + FIND_PACKAGE(PkgConfig REQUIRED) + PKG_CHECK_MODULES(TIRPC libtirpc) + ENDIF() + + IF(TIRPC_FOUND) + IF(TIRPC_VERSION VERSION_LESS 1.0) + SET(LIBTIRPC_VERSION_TOO_OLD 1 CACHE INTERNAL "libtirpc is too old" FORCE) + MESSAGE(WARNING + "Ignoring libtirpc version ${TIRPC_VERSION}, need at least 1.0") + UNSET(TIRPC_FOUND) + UNSET(TIRPC_FOUND CACHE) + GET_CMAKE_PROPERTY(CACHE_VARS CACHE_VARIABLES) + FOREACH(CACHE_VAR ${CACHE_VARS}) + IF(CACHE_VAR MATCHES "^TIRPC_.*") + UNSET(${CACHE_VAR}) + UNSET(${CACHE_VAR} CACHE) + ENDIF() + ENDFOREACH() + ENDIF() + ENDIF() + + IF(TIRPC_FOUND) + ADD_DEFINITIONS(-DHAVE_TIRPC) + + # RPC headers may be found in /usr/include rather than /usr/include/tirpc + IF(TIRPC_INCLUDE_DIRS) + SET(RPC_INCLUDE_DIRS ${TIRPC_INCLUDE_DIRS}) + INCLUDE_DIRECTORIES(SYSTEM "${TIRPC_INCLUDE_DIRS}") + ELSE() + FIND_PATH(RPC_INCLUDE_DIRS NAMES rpc/rpc.h) + ENDIF() + ELSE() + FIND_PATH(RPC_INCLUDE_DIRS NAMES rpc/rpc.h) + ENDIF() + + IF(NOT RPC_INCLUDE_DIRS) + MESSAGE(FATAL_ERROR + "Could not find rpc/rpc.h in /usr/include or /usr/include/tirpc") + ENDIF() + +ENDMACRO() diff -Nru mysql-5.7-5.7.25/CMakeLists.txt mysql-5.7-5.7.26/CMakeLists.txt --- mysql-5.7-5.7.25/CMakeLists.txt 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/CMakeLists.txt 2019-04-13 13:32:15.000000000 +0000 @@ -204,6 +204,7 @@ INCLUDE(libevent) INCLUDE(ssl) INCLUDE(sasl) +INCLUDE(rpc) INCLUDE(readline) INCLUDE(protobuf) INCLUDE(mysql_version) diff -Nru mysql-5.7-5.7.25/debian/changelog mysql-5.7-5.7.26/debian/changelog --- mysql-5.7-5.7.25/debian/changelog 2019-01-22 15:33:58.000000000 +0000 +++ mysql-5.7-5.7.26/debian/changelog 2019-04-25 19:00:24.000000000 +0000 @@ -1,3 +1,14 @@ +mysql-5.7 (5.7.26-0ubuntu0.16.04.1) xenial-security; urgency=medium + + * SECURITY UPDATE: Update to 5.7.26 to fix security issues + - CVE-2019-2566, CVE-2019-2581, CVE-2019-2592, CVE-2019-2614, + CVE-2019-2627, CVE-2019-2628, CVE-2019-2632, CVE-2019-2683 + * Removed patches included in new version: + - debian/patches/fix-mysqldump-test-dates + * debian/control: added pkg-config to Build-Depends. + + -- Marc Deslauriers Thu, 25 Apr 2019 15:00:00 -0400 + mysql-5.7 (5.7.25-0ubuntu0.16.04.2) xenial-security; urgency=medium * SECURITY UPDATE: Update to 5.7.25 to fix security issues diff -Nru mysql-5.7-5.7.25/debian/control mysql-5.7-5.7.26/debian/control --- mysql-5.7-5.7.25/debian/control 2017-02-06 11:53:27.000000000 +0000 +++ mysql-5.7-5.7.26/debian/control 2019-04-25 19:00:31.000000000 +0000 @@ -24,6 +24,7 @@ libwrap0-dev (>= 7.6-8.3), lsb-release, perl, + pkg-config, po-debconf, psmisc, zlib1g-dev (>= 1:1.1.3-5) diff -Nru mysql-5.7-5.7.25/debian/patches/fix-mysqldump-test-dates mysql-5.7-5.7.26/debian/patches/fix-mysqldump-test-dates --- mysql-5.7-5.7.25/debian/patches/fix-mysqldump-test-dates 2019-01-22 15:33:39.000000000 +0000 +++ mysql-5.7-5.7.26/debian/patches/fix-mysqldump-test-dates 1970-01-01 00:00:00.000000000 +0000 @@ -1,44 +0,0 @@ -Description: bump mysqldump test date from 2018 to 2020 - autopkgtest is failing because 2018 is in the past, and the event - is those ignored... -Author: Julian Andres Klode -Bug: https://bugs.mysql.com/bug.php?id=93778 -Last-Update: 2019-01-08 - ---- mysql-5.7-5.7.24.orig/mysql-test/r/mysqldump.result -+++ mysql-5.7-5.7.24/mysql-test/r/mysqldump.result -@@ -4192,12 +4192,12 @@ second ee1 root@localhost UTC ONE TIME 2 - show create event ee1; - Event sql_mode time_zone Create Event character_set_client collation_connection Database Collation - ee1 UTC CREATE DEFINER=`root`@`localhost` EVENT `ee1` ON SCHEDULE AT '2035-12-31 20:01:23' ON COMPLETION NOT PRESERVE ENABLE DO set @a=5 latin1 latin1_swedish_ci latin1_swedish_ci --create event ee2 on schedule at '2018-12-31 21:01:23' do set @a=5; -+create event ee2 on schedule at '2020-12-31 21:01:23' do set @a=5; - create event ee3 on schedule at '2030-12-31 22:01:23' do set @a=5; - show events; - Db Name Definer Time zone Type Execute at Interval value Interval field Starts Ends Status Originator character_set_client collation_connection Database Collation - second ee1 root@localhost UTC ONE TIME 2035-12-31 20:01:23 NULL NULL NULL NULL ENABLED 1 latin1 latin1_swedish_ci latin1_swedish_ci --second ee2 root@localhost UTC ONE TIME 2018-12-31 21:01:23 NULL NULL NULL NULL ENABLED 1 latin1 latin1_swedish_ci latin1_swedish_ci -+second ee2 root@localhost UTC ONE TIME 2020-12-31 21:01:23 NULL NULL NULL NULL ENABLED 1 latin1 latin1_swedish_ci latin1_swedish_ci - second ee3 root@localhost UTC ONE TIME 2030-12-31 22:01:23 NULL NULL NULL NULL ENABLED 1 latin1 latin1_swedish_ci latin1_swedish_ci - drop database second; - create database third; -@@ -4205,7 +4205,7 @@ use third; - show events; - Db Name Definer Time zone Type Execute at Interval value Interval field Starts Ends Status Originator character_set_client collation_connection Database Collation - third ee1 root@localhost UTC ONE TIME 2035-12-31 20:01:23 NULL NULL NULL NULL ENABLED 1 latin1 latin1_swedish_ci latin1_swedish_ci --third ee2 root@localhost UTC ONE TIME 2018-12-31 21:01:23 NULL NULL NULL NULL ENABLED 1 latin1 latin1_swedish_ci latin1_swedish_ci -+third ee2 root@localhost UTC ONE TIME 2020-12-31 21:01:23 NULL NULL NULL NULL ENABLED 1 latin1 latin1_swedish_ci latin1_swedish_ci - third ee3 root@localhost UTC ONE TIME 2030-12-31 22:01:23 NULL NULL NULL NULL ENABLED 1 latin1 latin1_swedish_ci latin1_swedish_ci - drop database third; - set time_zone = 'SYSTEM'; ---- mysql-5.7-5.7.24.orig/mysql-test/t/mysqldump.test -+++ mysql-5.7-5.7.24/mysql-test/t/mysqldump.test -@@ -1782,7 +1782,7 @@ show create event ee1; - - ## prove three works (with spaces and tabs on the end) - # start with one from the previous restore --create event ee2 on schedule at '2018-12-31 21:01:23' do set @a=5; -+create event ee2 on schedule at '2020-12-31 21:01:23' do set @a=5; - create event ee3 on schedule at '2030-12-31 22:01:23' do set @a=5; - show events; - --exec $MYSQL_DUMP --events second > $MYSQLTEST_VARDIR/tmp/bug16853-2.sql diff -Nru mysql-5.7-5.7.25/debian/patches/series mysql-5.7-5.7.26/debian/patches/series --- mysql-5.7-5.7.25/debian/patches/series 2019-01-22 15:33:39.000000000 +0000 +++ mysql-5.7-5.7.26/debian/patches/series 2019-04-25 18:59:53.000000000 +0000 @@ -2,4 +2,3 @@ mips64el.patch mysql-test-run-paths disable_tests.patch -fix-mysqldump-test-dates diff -Nru mysql-5.7-5.7.25/Docs/INFO_SRC mysql-5.7-5.7.26/Docs/INFO_SRC --- mysql-5.7-5.7.25/Docs/INFO_SRC 2018-12-21 10:50:23.000000000 +0000 +++ mysql-5.7-5.7.26/Docs/INFO_SRC 2019-04-13 13:45:45.000000000 +0000 @@ -1,7 +1,7 @@ -commit: b15f075d6ab0ca08be51a9dbf3113fc551f327e4 -date: 2018-12-21 16:01:17 +0530 -build-date: 2018-12-21 11:39:54 +0100 -short: b15f075 -branch: mysql-5.7.25-release +commit: 219340a29ccb6522a108e6bf143be9c7e18164ed +date: 2019-04-13 15:27:18 +0200 +build-date: 2019-04-13 15:32:29 +0200 +short: 219340a +branch: mysql-5.7.26-release -MySQL source 5.7.25 +MySQL source 5.7.26 diff -Nru mysql-5.7-5.7.25/extra/innochecksum.cc mysql-5.7-5.7.26/extra/innochecksum.cc --- mysql-5.7-5.7.25/extra/innochecksum.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/extra/innochecksum.cc 2019-04-13 13:32:15.000000000 +0000 @@ -1,5 +1,5 @@ /* - Copyright (c) 2005, 2016, Oracle and/or its affiliates. All rights reserved. + Copyright (c) 2005, 2018, Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -38,6 +38,8 @@ #include #include #include /* ORACLE_WELCOME_COPYRIGHT_NOTICE */ +#include "typelib.h" +#include "prealloced_array.h" /* Only parts of these files are included from the InnoDB codebase. The parts not included are excluded by #ifndef UNIV_INNOCHECKSUM. */ @@ -1090,7 +1092,7 @@ /* our input filename. */ char* filename; /* Buffer to store pages read. */ - byte* buf = NULL; + Prealloced_array buf(PSI_NOT_INSTRUMENTED); /* bytes read count */ ulong bytes; /* Buffer to decompress page.*/ @@ -1170,8 +1172,8 @@ } - buf = (byte*) malloc(UNIV_PAGE_SIZE_MAX * 2); - tbuf = buf + UNIV_PAGE_SIZE_MAX; + buf.reserve(UNIV_PAGE_SIZE_MAX * 2); + tbuf = buf.begin() + UNIV_PAGE_SIZE_MAX; /* The file name is not optional. */ for (int i = 0; i < argc; ++i) { @@ -1241,7 +1243,7 @@ #endif /* _WIN32 */ /* Read the minimum page size. */ - bytes = ulong(fread(buf, 1, UNIV_ZIP_SIZE_MIN, fil_in)); + bytes = ulong(fread(buf.begin(), 1, UNIV_ZIP_SIZE_MIN, fil_in)); partial_page_read = true; if (bytes != UNIV_ZIP_SIZE_MIN) { @@ -1250,18 +1252,17 @@ fprintf(stderr, "of %d bytes. Bytes read was %lu\n", UNIV_ZIP_SIZE_MIN, bytes); - free(buf); DBUG_RETURN(1); } /* enable variable is_system_tablespace when space_id of given file is zero. Use to skip the checksum verification and rewrite for doublewrite pages. */ - is_system_tablespace = (!memcmp(&space_id, buf + + is_system_tablespace = (!memcmp(&space_id, buf.begin() + FIL_PAGE_ARCH_LOG_NO_OR_SPACE_ID, 4)) ? true : false; - const page_size_t& page_size = get_page_size(buf); + const page_size_t& page_size = get_page_size(buf.begin()); pages = (ulint) (size / page_size.physical()); @@ -1309,7 +1310,6 @@ perror("Error: Unable to seek to " "necessary offset"); - free(buf); DBUG_RETURN(1); } /* Save the current file pointer in @@ -1317,7 +1317,6 @@ if (0 != fgetpos(fil_in, &pos)) { perror("fgetpos"); - free(buf); DBUG_RETURN(1); } } else { @@ -1335,7 +1334,7 @@ (fseeko() on stdin doesn't work). So read only the remaining part of page, if partial_page_read is enable. */ - bytes = read_file(buf, + bytes = read_file(buf.begin(), partial_page_read, static_cast( page_size.physical()), @@ -1349,7 +1348,6 @@ "to seek to necessary " "offset"); - free(buf); DBUG_RETURN(1); } } @@ -1375,7 +1373,7 @@ lastt = 0; while (!feof(fil_in)) { - bytes = read_file(buf, partial_page_read, + bytes = read_file(buf.begin(), partial_page_read, static_cast( page_size.physical()), fil_in); partial_page_read = false; @@ -1389,7 +1387,6 @@ page_size.physical()); perror(" "); - free(buf); DBUG_RETURN(1); } @@ -1397,22 +1394,20 @@ fprintf(stderr, "Error: bytes read (%lu) " "doesn't match page size (" ULINTPF ")\n", bytes, page_size.physical()); - free(buf); DBUG_RETURN(1); } if (is_system_tablespace) { /* enable when page is double write buffer.*/ - skip_page = is_page_doublewritebuffer(buf); + skip_page = is_page_doublewritebuffer(buf.begin()); } else { skip_page = false; - if (!page_decompress(buf, tbuf, page_size)) { + if (!page_decompress(buf.begin(), tbuf, page_size)) { fprintf(stderr, "Page decompress failed"); - free(buf); DBUG_RETURN(1); } } @@ -1423,7 +1418,7 @@ /* Checksum verification */ if (!skip_page) { is_corrupted = is_page_corrupted( - buf, page_size); + buf.begin(), page_size); if (is_corrupted) { fprintf(stderr, "Fail: page " @@ -1440,7 +1435,6 @@ "count::%" PRIuMAX "\n", allow_mismatches); - free(buf); DBUG_RETURN(1); } } @@ -1449,11 +1443,10 @@ /* Rewrite checksum */ if (do_write - && !write_file(filename, fil_in, buf, + && !write_file(filename, fil_in, buf.begin(), page_size.is_compressed(), &pos, static_cast(page_size.physical()))) { - free(buf); DBUG_RETURN(1); } @@ -1463,7 +1456,7 @@ } if (page_type_summary || page_type_dump) { - parse_page(buf, fil_page_type); + parse_page(buf.begin(), fil_page_type); } /* do counter increase and progress printing */ @@ -1507,6 +1500,5 @@ fclose(log_file); } - free(buf); DBUG_RETURN(0); } diff -Nru mysql-5.7-5.7.25/extra/libevent/arc4random.c mysql-5.7-5.7.26/extra/libevent/arc4random.c --- mysql-5.7-5.7.25/extra/libevent/arc4random.c 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/arc4random.c 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,537 @@ +/* Portable arc4random.c based on arc4random.c from OpenBSD. + * Portable version by Chris Davis, adapted for Libevent by Nick Mathewson + * Copyright (c) 2010 Chris Davis, Niels Provos, and Nick Mathewson + * Copyright (c) 2010-2012 Niels Provos and Nick Mathewson + * + * Note that in Libevent, this file isn't compiled directly. Instead, + * it's included from evutil_rand.c + */ + +/* + * Copyright (c) 1996, David Mazieres + * Copyright (c) 2008, Damien Miller + * + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +/* + * Arc4 random number generator for OpenBSD. + * + * This code is derived from section 17.1 of Applied Cryptography, + * second edition, which describes a stream cipher allegedly + * compatible with RSA Labs "RC4" cipher (the actual description of + * which is a trade secret). The same algorithm is used as a stream + * cipher called "arcfour" in Tatu Ylonen's ssh package. + * + * Here the stream cipher has been modified always to include the time + * when initializing the state. That makes it impossible to + * regenerate the same random sequence twice, so this can't be used + * for encryption, but will generate good random numbers. + * + * RC4 is a registered trademark of RSA Laboratories. + */ + +#ifndef ARC4RANDOM_EXPORT +#define ARC4RANDOM_EXPORT +#endif + +#ifndef ARC4RANDOM_UINT32 +#define ARC4RANDOM_UINT32 uint32_t +#endif + +#ifndef ARC4RANDOM_NO_INCLUDES +#include "evconfig-private.h" +#ifdef _WIN32 +#include +#include +#else +#include +#include +#include +#include +#ifdef EVENT__HAVE_SYS_SYSCTL_H +#include +#endif +#endif +#include +#include +#include +#endif + +/* Add platform entropy 32 bytes (256 bits) at a time. */ +#define ADD_ENTROPY 32 + +/* Re-seed from the platform RNG after generating this many bytes. */ +#define BYTES_BEFORE_RESEED 1600000 + +struct arc4_stream { + unsigned char i; + unsigned char j; + unsigned char s[256]; +}; + +#ifdef _WIN32 +#define getpid _getpid +#define pid_t int +#endif + +static int rs_initialized; +static struct arc4_stream rs; +static pid_t arc4_stir_pid; +static int arc4_count; +static int arc4_seeded_ok; + +static inline unsigned char arc4_getbyte(void); + +static inline void +arc4_init(void) +{ + int n; + + for (n = 0; n < 256; n++) + rs.s[n] = n; + rs.i = 0; + rs.j = 0; +} + +static inline void +arc4_addrandom(const unsigned char *dat, int datlen) +{ + int n; + unsigned char si; + + rs.i--; + for (n = 0; n < 256; n++) { + rs.i = (rs.i + 1); + si = rs.s[rs.i]; + rs.j = (rs.j + si + dat[n % datlen]); + rs.s[rs.i] = rs.s[rs.j]; + rs.s[rs.j] = si; + } + rs.j = rs.i; +} + +#ifndef _WIN32 +static ssize_t +read_all(int fd, unsigned char *buf, size_t count) +{ + size_t numread = 0; + ssize_t result; + + while (numread < count) { + result = read(fd, buf+numread, count-numread); + if (result<0) + return -1; + else if (result == 0) + break; + numread += result; + } + + return (ssize_t)numread; +} +#endif + +#ifdef _WIN32 +#define TRY_SEED_WIN32 +static int +arc4_seed_win32(void) +{ + /* This is adapted from Tor's crypto_seed_rng() */ + static int provider_set = 0; + static HCRYPTPROV provider; + unsigned char buf[ADD_ENTROPY]; + + if (!provider_set) { + if (!CryptAcquireContext(&provider, NULL, NULL, PROV_RSA_FULL, + CRYPT_VERIFYCONTEXT)) { + if (GetLastError() != (DWORD)NTE_BAD_KEYSET) + return -1; + } + provider_set = 1; + } + if (!CryptGenRandom(provider, sizeof(buf), buf)) + return -1; + arc4_addrandom(buf, sizeof(buf)); + evutil_memclear_(buf, sizeof(buf)); + arc4_seeded_ok = 1; + return 0; +} +#endif + +#if defined(EVENT__HAVE_SYS_SYSCTL_H) && defined(EVENT__HAVE_SYSCTL) +#if EVENT__HAVE_DECL_CTL_KERN && EVENT__HAVE_DECL_KERN_RANDOM && EVENT__HAVE_DECL_RANDOM_UUID +#define TRY_SEED_SYSCTL_LINUX +static int +arc4_seed_sysctl_linux(void) +{ + /* Based on code by William Ahern, this function tries to use the + * RANDOM_UUID sysctl to get entropy from the kernel. This can work + * even if /dev/urandom is inaccessible for some reason (e.g., we're + * running in a chroot). */ + int mib[] = { CTL_KERN, KERN_RANDOM, RANDOM_UUID }; + unsigned char buf[ADD_ENTROPY]; + size_t len, n; + unsigned i; + int any_set; + + memset(buf, 0, sizeof(buf)); + + for (len = 0; len < sizeof(buf); len += n) { + n = sizeof(buf) - len; + + if (0 != sysctl(mib, 3, &buf[len], &n, NULL, 0)) + return -1; + } + /* make sure that the buffer actually got set. */ + for (i=0,any_set=0; i sizeof(buf)) + n = len - sizeof(buf); + if (sysctl(mib, 2, &buf[len], &n, NULL, 0) == -1) + return -1; + } + } + /* make sure that the buffer actually got set. */ + for (i=any_set=0; i 0xffffffffUL) + min = 0x100000000UL % upper_bound; +#else + /* Calculate (2**32 % upper_bound) avoiding 64-bit math */ + if (upper_bound > 0x80000000) + min = 1 + ~upper_bound; /* 2**32 - upper_bound */ + else { + /* (2**32 - (x * 2)) % x == 2**32 % x when x <= 2**31 */ + min = ((0xffffffff - (upper_bound * 2)) + 1) % upper_bound; + } +#endif + + /* + * This could theoretically loop forever but each retry has + * p > 0.5 (worst case, usually far better) of selecting a + * number inside the range we need, so it should rarely need + * to re-roll. + */ + for (;;) { + r = arc4random(); + if (r >= min) + break; + } + + return r % upper_bound; +} +#endif diff -Nru mysql-5.7-5.7.25/extra/libevent/buffer.c mysql-5.7-5.7.26/extra/libevent/buffer.c --- mysql-5.7-5.7.25/extra/libevent/buffer.c 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/buffer.c 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,3447 @@ +/* + * Copyright (c) 2002-2007 Niels Provos + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ + +#include "event2/event-config.h" +#include "evconfig-private.h" + +#ifdef _WIN32 +#include +#include +#include +#endif + +#ifdef EVENT__HAVE_VASPRINTF +/* If we have vasprintf, we need to define _GNU_SOURCE before we include + * stdio.h. This comes from evconfig-private.h. + */ +#endif + +#include + +#ifdef EVENT__HAVE_SYS_TIME_H +#include +#endif + +#ifdef EVENT__HAVE_SYS_SOCKET_H +#include +#endif + +#ifdef EVENT__HAVE_SYS_UIO_H +#include +#endif + +#ifdef EVENT__HAVE_SYS_IOCTL_H +#include +#endif + +#ifdef EVENT__HAVE_SYS_MMAN_H +#include +#endif + +#ifdef EVENT__HAVE_SYS_SENDFILE_H +#include +#endif +#ifdef EVENT__HAVE_SYS_STAT_H +#include +#endif + + +#include +#include +#include +#include +#ifdef EVENT__HAVE_STDARG_H +#include +#endif +#ifdef EVENT__HAVE_UNISTD_H +#include +#endif +#include + +#include "event2/event.h" +#include "event2/buffer.h" +#include "event2/buffer_compat.h" +#include "event2/bufferevent.h" +#include "event2/bufferevent_compat.h" +#include "event2/bufferevent_struct.h" +#include "event2/thread.h" +#include "log-internal.h" +#include "mm-internal.h" +#include "util-internal.h" +#include "evthread-internal.h" +#include "evbuffer-internal.h" +#include "bufferevent-internal.h" + +/* some systems do not have MAP_FAILED */ +#ifndef MAP_FAILED +#define MAP_FAILED ((void *)-1) +#endif + +/* send file support */ +#if defined(EVENT__HAVE_SYS_SENDFILE_H) && defined(EVENT__HAVE_SENDFILE) && defined(__linux__) +#define USE_SENDFILE 1 +#define SENDFILE_IS_LINUX 1 +#elif defined(EVENT__HAVE_SENDFILE) && defined(__FreeBSD__) +#define USE_SENDFILE 1 +#define SENDFILE_IS_FREEBSD 1 +#elif defined(EVENT__HAVE_SENDFILE) && defined(__APPLE__) +#define USE_SENDFILE 1 +#define SENDFILE_IS_MACOSX 1 +#elif defined(EVENT__HAVE_SENDFILE) && defined(__sun__) && defined(__svr4__) +#define USE_SENDFILE 1 +#define SENDFILE_IS_SOLARIS 1 +#endif + +/* Mask of user-selectable callback flags. */ +#define EVBUFFER_CB_USER_FLAGS 0xffff +/* Mask of all internal-use-only flags. */ +#define EVBUFFER_CB_INTERNAL_FLAGS 0xffff0000 + +/* Flag set if the callback is using the cb_obsolete function pointer */ +#define EVBUFFER_CB_OBSOLETE 0x00040000 + +/* evbuffer_chain support */ +#define CHAIN_SPACE_PTR(ch) ((ch)->buffer + (ch)->misalign + (ch)->off) +#define CHAIN_SPACE_LEN(ch) ((ch)->flags & EVBUFFER_IMMUTABLE ? \ + 0 : (ch)->buffer_len - ((ch)->misalign + (ch)->off)) + +#define CHAIN_PINNED(ch) (((ch)->flags & EVBUFFER_MEM_PINNED_ANY) != 0) +#define CHAIN_PINNED_R(ch) (((ch)->flags & EVBUFFER_MEM_PINNED_R) != 0) + +/* evbuffer_ptr support */ +#define PTR_NOT_FOUND(ptr) do { \ + (ptr)->pos = -1; \ + (ptr)->internal_.chain = NULL; \ + (ptr)->internal_.pos_in_chain = 0; \ +} while (0) + +static void evbuffer_chain_align(struct evbuffer_chain *chain); +static int evbuffer_chain_should_realign(struct evbuffer_chain *chain, + size_t datalen); +static void evbuffer_deferred_callback(struct event_callback *cb, void *arg); +static int evbuffer_ptr_memcmp(const struct evbuffer *buf, + const struct evbuffer_ptr *pos, const char *mem, size_t len); +static struct evbuffer_chain *evbuffer_expand_singlechain(struct evbuffer *buf, + size_t datlen); +static int evbuffer_ptr_subtract(struct evbuffer *buf, struct evbuffer_ptr *pos, + size_t howfar); +static int evbuffer_file_segment_materialize(struct evbuffer_file_segment *seg); +static inline void evbuffer_chain_incref(struct evbuffer_chain *chain); + +static struct evbuffer_chain * +evbuffer_chain_new(size_t size) +{ + struct evbuffer_chain *chain; + size_t to_alloc; + + if (size > EVBUFFER_CHAIN_MAX - EVBUFFER_CHAIN_SIZE) + return (NULL); + + size += EVBUFFER_CHAIN_SIZE; + + /* get the next largest memory that can hold the buffer */ + if (size < EVBUFFER_CHAIN_MAX / 2) { + to_alloc = MIN_BUFFER_SIZE; + while (to_alloc < size) { + to_alloc <<= 1; + } + } else { + to_alloc = size; + } + + /* we get everything in one chunk */ + if ((chain = mm_malloc(to_alloc)) == NULL) + return (NULL); + + memset(chain, 0, EVBUFFER_CHAIN_SIZE); + + chain->buffer_len = to_alloc - EVBUFFER_CHAIN_SIZE; + + /* this way we can manipulate the buffer to different addresses, + * which is required for mmap for example. + */ + chain->buffer = EVBUFFER_CHAIN_EXTRA(unsigned char, chain); + + chain->refcnt = 1; + + return (chain); +} + +static inline void +evbuffer_chain_free(struct evbuffer_chain *chain) +{ + EVUTIL_ASSERT(chain->refcnt > 0); + if (--chain->refcnt > 0) { + /* chain is still referenced by other chains */ + return; + } + + if (CHAIN_PINNED(chain)) { + /* will get freed once no longer dangling */ + chain->refcnt++; + chain->flags |= EVBUFFER_DANGLING; + return; + } + + /* safe to release chain, it's either a referencing + * chain or all references to it have been freed */ + if (chain->flags & EVBUFFER_REFERENCE) { + struct evbuffer_chain_reference *info = + EVBUFFER_CHAIN_EXTRA( + struct evbuffer_chain_reference, + chain); + if (info->cleanupfn) + (*info->cleanupfn)(chain->buffer, + chain->buffer_len, + info->extra); + } + if (chain->flags & EVBUFFER_FILESEGMENT) { + struct evbuffer_chain_file_segment *info = + EVBUFFER_CHAIN_EXTRA( + struct evbuffer_chain_file_segment, + chain); + if (info->segment) { +#ifdef _WIN32 + if (info->segment->is_mapping) + UnmapViewOfFile(chain->buffer); +#endif + evbuffer_file_segment_free(info->segment); + } + } + if (chain->flags & EVBUFFER_MULTICAST) { + struct evbuffer_multicast_parent *info = + EVBUFFER_CHAIN_EXTRA( + struct evbuffer_multicast_parent, + chain); + /* referencing chain is being freed, decrease + * refcounts of source chain and associated + * evbuffer (which get freed once both reach + * zero) */ + EVUTIL_ASSERT(info->source != NULL); + EVUTIL_ASSERT(info->parent != NULL); + EVBUFFER_LOCK(info->source); + evbuffer_chain_free(info->parent); + evbuffer_decref_and_unlock_(info->source); + } + + mm_free(chain); +} + +static void +evbuffer_free_all_chains(struct evbuffer_chain *chain) +{ + struct evbuffer_chain *next; + for (; chain; chain = next) { + next = chain->next; + evbuffer_chain_free(chain); + } +} + +#ifndef NDEBUG +static int +evbuffer_chains_all_empty(struct evbuffer_chain *chain) +{ + for (; chain; chain = chain->next) { + if (chain->off) + return 0; + } + return 1; +} +#else +/* The definition is needed for EVUTIL_ASSERT, which uses sizeof to avoid +"unused variable" warnings. */ +static inline int evbuffer_chains_all_empty(struct evbuffer_chain *chain) { + return 1; +} +#endif + +/* Free all trailing chains in 'buf' that are neither pinned nor empty, prior + * to replacing them all with a new chain. Return a pointer to the place + * where the new chain will go. + * + * Internal; requires lock. The caller must fix up buf->last and buf->first + * as needed; they might have been freed. + */ +static struct evbuffer_chain ** +evbuffer_free_trailing_empty_chains(struct evbuffer *buf) +{ + struct evbuffer_chain **ch = buf->last_with_datap; + /* Find the first victim chain. It might be *last_with_datap */ + while ((*ch) && ((*ch)->off != 0 || CHAIN_PINNED(*ch))) + ch = &(*ch)->next; + if (*ch) { + EVUTIL_ASSERT(evbuffer_chains_all_empty(*ch)); + evbuffer_free_all_chains(*ch); + *ch = NULL; + } + return ch; +} + +/* Add a single chain 'chain' to the end of 'buf', freeing trailing empty + * chains as necessary. Requires lock. Does not schedule callbacks. + */ +static void +evbuffer_chain_insert(struct evbuffer *buf, + struct evbuffer_chain *chain) +{ + ASSERT_EVBUFFER_LOCKED(buf); + if (*buf->last_with_datap == NULL) { + /* There are no chains data on the buffer at all. */ + EVUTIL_ASSERT(buf->last_with_datap == &buf->first); + EVUTIL_ASSERT(buf->first == NULL); + buf->first = buf->last = chain; + } else { + struct evbuffer_chain **chp; + chp = evbuffer_free_trailing_empty_chains(buf); + *chp = chain; + if (chain->off) + buf->last_with_datap = chp; + buf->last = chain; + } + buf->total_len += chain->off; +} + +static inline struct evbuffer_chain * +evbuffer_chain_insert_new(struct evbuffer *buf, size_t datlen) +{ + struct evbuffer_chain *chain; + if ((chain = evbuffer_chain_new(datlen)) == NULL) + return NULL; + evbuffer_chain_insert(buf, chain); + return chain; +} + +void +evbuffer_chain_pin_(struct evbuffer_chain *chain, unsigned flag) +{ + EVUTIL_ASSERT((chain->flags & flag) == 0); + chain->flags |= flag; +} + +void +evbuffer_chain_unpin_(struct evbuffer_chain *chain, unsigned flag) +{ + EVUTIL_ASSERT((chain->flags & flag) != 0); + chain->flags &= ~flag; + if (chain->flags & EVBUFFER_DANGLING) + evbuffer_chain_free(chain); +} + +static inline void +evbuffer_chain_incref(struct evbuffer_chain *chain) +{ + ++chain->refcnt; +} + +struct evbuffer * +evbuffer_new(void) +{ + struct evbuffer *buffer; + + buffer = mm_calloc(1, sizeof(struct evbuffer)); + if (buffer == NULL) + return (NULL); + + LIST_INIT(&buffer->callbacks); + buffer->refcnt = 1; + buffer->last_with_datap = &buffer->first; + + return (buffer); +} + +int +evbuffer_set_flags(struct evbuffer *buf, ev_uint64_t flags) +{ + EVBUFFER_LOCK(buf); + buf->flags |= (ev_uint32_t)flags; + EVBUFFER_UNLOCK(buf); + return 0; +} + +int +evbuffer_clear_flags(struct evbuffer *buf, ev_uint64_t flags) +{ + EVBUFFER_LOCK(buf); + buf->flags &= ~(ev_uint32_t)flags; + EVBUFFER_UNLOCK(buf); + return 0; +} + +void +evbuffer_incref_(struct evbuffer *buf) +{ + EVBUFFER_LOCK(buf); + ++buf->refcnt; + EVBUFFER_UNLOCK(buf); +} + +void +evbuffer_incref_and_lock_(struct evbuffer *buf) +{ + EVBUFFER_LOCK(buf); + ++buf->refcnt; +} + +int +evbuffer_defer_callbacks(struct evbuffer *buffer, struct event_base *base) +{ + EVBUFFER_LOCK(buffer); + buffer->cb_queue = base; + buffer->deferred_cbs = 1; + event_deferred_cb_init_(&buffer->deferred, + event_base_get_npriorities(base) / 2, + evbuffer_deferred_callback, buffer); + EVBUFFER_UNLOCK(buffer); + return 0; +} + +int +evbuffer_enable_locking(struct evbuffer *buf, void *lock) +{ +#ifdef EVENT__DISABLE_THREAD_SUPPORT + return -1; +#else + if (buf->lock) + return -1; + + if (!lock) { + EVTHREAD_ALLOC_LOCK(lock, EVTHREAD_LOCKTYPE_RECURSIVE); + if (!lock) + return -1; + buf->lock = lock; + buf->own_lock = 1; + } else { + buf->lock = lock; + buf->own_lock = 0; + } + + return 0; +#endif +} + +void +evbuffer_set_parent_(struct evbuffer *buf, struct bufferevent *bev) +{ + EVBUFFER_LOCK(buf); + buf->parent = bev; + EVBUFFER_UNLOCK(buf); +} + +static void +evbuffer_run_callbacks(struct evbuffer *buffer, int running_deferred) +{ + struct evbuffer_cb_entry *cbent, *next; + struct evbuffer_cb_info info; + size_t new_size; + ev_uint32_t mask, masked_val; + int clear = 1; + + if (running_deferred) { + mask = EVBUFFER_CB_NODEFER|EVBUFFER_CB_ENABLED; + masked_val = EVBUFFER_CB_ENABLED; + } else if (buffer->deferred_cbs) { + mask = EVBUFFER_CB_NODEFER|EVBUFFER_CB_ENABLED; + masked_val = EVBUFFER_CB_NODEFER|EVBUFFER_CB_ENABLED; + /* Don't zero-out n_add/n_del, since the deferred callbacks + will want to see them. */ + clear = 0; + } else { + mask = EVBUFFER_CB_ENABLED; + masked_val = EVBUFFER_CB_ENABLED; + } + + ASSERT_EVBUFFER_LOCKED(buffer); + + if (LIST_EMPTY(&buffer->callbacks)) { + buffer->n_add_for_cb = buffer->n_del_for_cb = 0; + return; + } + if (buffer->n_add_for_cb == 0 && buffer->n_del_for_cb == 0) + return; + + new_size = buffer->total_len; + info.orig_size = new_size + buffer->n_del_for_cb - buffer->n_add_for_cb; + info.n_added = buffer->n_add_for_cb; + info.n_deleted = buffer->n_del_for_cb; + if (clear) { + buffer->n_add_for_cb = 0; + buffer->n_del_for_cb = 0; + } + for (cbent = LIST_FIRST(&buffer->callbacks); + cbent != LIST_END(&buffer->callbacks); + cbent = next) { + /* Get the 'next' pointer now in case this callback decides + * to remove itself or something. */ + next = LIST_NEXT(cbent, next); + + if ((cbent->flags & mask) != masked_val) + continue; + + if ((cbent->flags & EVBUFFER_CB_OBSOLETE)) + cbent->cb.cb_obsolete(buffer, + info.orig_size, new_size, cbent->cbarg); + else + cbent->cb.cb_func(buffer, &info, cbent->cbarg); + } +} + +void +evbuffer_invoke_callbacks_(struct evbuffer *buffer) +{ + if (LIST_EMPTY(&buffer->callbacks)) { + buffer->n_add_for_cb = buffer->n_del_for_cb = 0; + return; + } + + if (buffer->deferred_cbs) { + if (event_deferred_cb_schedule_(buffer->cb_queue, &buffer->deferred)) { + evbuffer_incref_and_lock_(buffer); + if (buffer->parent) + bufferevent_incref_(buffer->parent); + } + EVBUFFER_UNLOCK(buffer); + } + + evbuffer_run_callbacks(buffer, 0); +} + +static void +evbuffer_deferred_callback(struct event_callback *cb, void *arg) +{ + struct bufferevent *parent = NULL; + struct evbuffer *buffer = arg; + + /* XXXX It would be better to run these callbacks without holding the + * lock */ + EVBUFFER_LOCK(buffer); + parent = buffer->parent; + evbuffer_run_callbacks(buffer, 1); + evbuffer_decref_and_unlock_(buffer); + if (parent) + bufferevent_decref_(parent); +} + +static void +evbuffer_remove_all_callbacks(struct evbuffer *buffer) +{ + struct evbuffer_cb_entry *cbent; + + while ((cbent = LIST_FIRST(&buffer->callbacks))) { + LIST_REMOVE(cbent, next); + mm_free(cbent); + } +} + +void +evbuffer_decref_and_unlock_(struct evbuffer *buffer) +{ + struct evbuffer_chain *chain, *next; + ASSERT_EVBUFFER_LOCKED(buffer); + + EVUTIL_ASSERT(buffer->refcnt > 0); + + if (--buffer->refcnt > 0) { + EVBUFFER_UNLOCK(buffer); + return; + } + + for (chain = buffer->first; chain != NULL; chain = next) { + next = chain->next; + evbuffer_chain_free(chain); + } + evbuffer_remove_all_callbacks(buffer); + if (buffer->deferred_cbs) + event_deferred_cb_cancel_(buffer->cb_queue, &buffer->deferred); + + EVBUFFER_UNLOCK(buffer); + if (buffer->own_lock) + EVTHREAD_FREE_LOCK(buffer->lock, EVTHREAD_LOCKTYPE_RECURSIVE); + mm_free(buffer); +} + +void +evbuffer_free(struct evbuffer *buffer) +{ + EVBUFFER_LOCK(buffer); + evbuffer_decref_and_unlock_(buffer); +} + +void +evbuffer_lock(struct evbuffer *buf) +{ + EVBUFFER_LOCK(buf); +} + +void +evbuffer_unlock(struct evbuffer *buf) +{ + EVBUFFER_UNLOCK(buf); +} + +size_t +evbuffer_get_length(const struct evbuffer *buffer) +{ + size_t result; + + EVBUFFER_LOCK(buffer); + + result = (buffer->total_len); + + EVBUFFER_UNLOCK(buffer); + + return result; +} + +size_t +evbuffer_get_contiguous_space(const struct evbuffer *buf) +{ + struct evbuffer_chain *chain; + size_t result; + + EVBUFFER_LOCK(buf); + chain = buf->first; + result = (chain != NULL ? chain->off : 0); + EVBUFFER_UNLOCK(buf); + + return result; +} + +size_t +evbuffer_add_iovec(struct evbuffer * buf, struct evbuffer_iovec * vec, int n_vec) { + int n; + size_t res; + size_t to_alloc; + + EVBUFFER_LOCK(buf); + + res = to_alloc = 0; + + for (n = 0; n < n_vec; n++) { + to_alloc += vec[n].iov_len; + } + + if (evbuffer_expand_fast_(buf, to_alloc, 2) < 0) { + goto done; + } + + for (n = 0; n < n_vec; n++) { + /* XXX each 'add' call here does a bunch of setup that's + * obviated by evbuffer_expand_fast_, and some cleanup that we + * would like to do only once. Instead we should just extract + * the part of the code that's needed. */ + + if (evbuffer_add(buf, vec[n].iov_base, vec[n].iov_len) < 0) { + goto done; + } + + res += vec[n].iov_len; + } + +done: + EVBUFFER_UNLOCK(buf); + return res; +} + +int +evbuffer_reserve_space(struct evbuffer *buf, ev_ssize_t size, + struct evbuffer_iovec *vec, int n_vecs) +{ + struct evbuffer_chain *chain, **chainp; + int n = -1; + + EVBUFFER_LOCK(buf); + if (buf->freeze_end) + goto done; + if (n_vecs < 1) + goto done; + if (n_vecs == 1) { + if ((chain = evbuffer_expand_singlechain(buf, size)) == NULL) + goto done; + + vec[0].iov_base = (void *)CHAIN_SPACE_PTR(chain); + vec[0].iov_len = (size_t)CHAIN_SPACE_LEN(chain); + EVUTIL_ASSERT(size<0 || (size_t)vec[0].iov_len >= (size_t)size); + n = 1; + } else { + if (evbuffer_expand_fast_(buf, size, n_vecs)<0) + goto done; + n = evbuffer_read_setup_vecs_(buf, size, vec, n_vecs, + &chainp, 0); + } + +done: + EVBUFFER_UNLOCK(buf); + return n; + +} + +static int +advance_last_with_data(struct evbuffer *buf) +{ + int n = 0; + ASSERT_EVBUFFER_LOCKED(buf); + + if (!*buf->last_with_datap) + return 0; + + while ((*buf->last_with_datap)->next && (*buf->last_with_datap)->next->off) { + buf->last_with_datap = &(*buf->last_with_datap)->next; + ++n; + } + return n; +} + +int +evbuffer_commit_space(struct evbuffer *buf, + struct evbuffer_iovec *vec, int n_vecs) +{ + struct evbuffer_chain *chain, **firstchainp, **chainp; + int result = -1; + size_t added = 0; + int i; + + EVBUFFER_LOCK(buf); + + if (buf->freeze_end) + goto done; + if (n_vecs == 0) { + result = 0; + goto done; + } else if (n_vecs == 1 && + (buf->last && vec[0].iov_base == (void *)CHAIN_SPACE_PTR(buf->last))) { + /* The user only got or used one chain; it might not + * be the first one with space in it. */ + if ((size_t)vec[0].iov_len > (size_t)CHAIN_SPACE_LEN(buf->last)) + goto done; + buf->last->off += vec[0].iov_len; + added = vec[0].iov_len; + if (added) + advance_last_with_data(buf); + goto okay; + } + + /* Advance 'firstchain' to the first chain with space in it. */ + firstchainp = buf->last_with_datap; + if (!*firstchainp) + goto done; + if (CHAIN_SPACE_LEN(*firstchainp) == 0) { + firstchainp = &(*firstchainp)->next; + } + + chain = *firstchainp; + /* pass 1: make sure that the pointers and lengths of vecs[] are in + * bounds before we try to commit anything. */ + for (i=0; i CHAIN_SPACE_LEN(chain)) + goto done; + chain = chain->next; + } + /* pass 2: actually adjust all the chains. */ + chainp = firstchainp; + for (i=0; ioff += vec[i].iov_len; + added += vec[i].iov_len; + if (vec[i].iov_len) { + buf->last_with_datap = chainp; + } + chainp = &(*chainp)->next; + } + +okay: + buf->total_len += added; + buf->n_add_for_cb += added; + result = 0; + evbuffer_invoke_callbacks_(buf); + +done: + EVBUFFER_UNLOCK(buf); + return result; +} + +static inline int +HAS_PINNED_R(struct evbuffer *buf) +{ + return (buf->last && CHAIN_PINNED_R(buf->last)); +} + +static inline void +ZERO_CHAIN(struct evbuffer *dst) +{ + ASSERT_EVBUFFER_LOCKED(dst); + dst->first = NULL; + dst->last = NULL; + dst->last_with_datap = &(dst)->first; + dst->total_len = 0; +} + +/* Prepares the contents of src to be moved to another buffer by removing + * read-pinned chains. The first pinned chain is saved in first, and the + * last in last. If src has no read-pinned chains, first and last are set + * to NULL. */ +static int +PRESERVE_PINNED(struct evbuffer *src, struct evbuffer_chain **first, + struct evbuffer_chain **last) +{ + struct evbuffer_chain *chain, **pinned; + + ASSERT_EVBUFFER_LOCKED(src); + + if (!HAS_PINNED_R(src)) { + *first = *last = NULL; + return 0; + } + + pinned = src->last_with_datap; + if (!CHAIN_PINNED_R(*pinned)) + pinned = &(*pinned)->next; + EVUTIL_ASSERT(CHAIN_PINNED_R(*pinned)); + chain = *first = *pinned; + *last = src->last; + + /* If there's data in the first pinned chain, we need to allocate + * a new chain and copy the data over. */ + if (chain->off) { + struct evbuffer_chain *tmp; + + EVUTIL_ASSERT(pinned == src->last_with_datap); + tmp = evbuffer_chain_new(chain->off); + if (!tmp) + return -1; + memcpy(tmp->buffer, chain->buffer + chain->misalign, + chain->off); + tmp->off = chain->off; + *src->last_with_datap = tmp; + src->last = tmp; + chain->misalign += chain->off; + chain->off = 0; + } else { + src->last = *src->last_with_datap; + *pinned = NULL; + } + + return 0; +} + +static inline void +RESTORE_PINNED(struct evbuffer *src, struct evbuffer_chain *pinned, + struct evbuffer_chain *last) +{ + ASSERT_EVBUFFER_LOCKED(src); + + if (!pinned) { + ZERO_CHAIN(src); + return; + } + + src->first = pinned; + src->last = last; + src->last_with_datap = &src->first; + src->total_len = 0; +} + +static inline void +COPY_CHAIN(struct evbuffer *dst, struct evbuffer *src) +{ + ASSERT_EVBUFFER_LOCKED(dst); + ASSERT_EVBUFFER_LOCKED(src); + dst->first = src->first; + if (src->last_with_datap == &src->first) + dst->last_with_datap = &dst->first; + else + dst->last_with_datap = src->last_with_datap; + dst->last = src->last; + dst->total_len = src->total_len; +} + +static void +APPEND_CHAIN(struct evbuffer *dst, struct evbuffer *src) +{ + struct evbuffer_chain **chp; + + ASSERT_EVBUFFER_LOCKED(dst); + ASSERT_EVBUFFER_LOCKED(src); + + chp = evbuffer_free_trailing_empty_chains(dst); + *chp = src->first; + + if (src->last_with_datap == &src->first) + dst->last_with_datap = chp; + else + dst->last_with_datap = src->last_with_datap; + dst->last = src->last; + dst->total_len += src->total_len; +} + +static inline void +APPEND_CHAIN_MULTICAST(struct evbuffer *dst, struct evbuffer *src) +{ + struct evbuffer_chain *tmp; + struct evbuffer_chain *chain = src->first; + struct evbuffer_multicast_parent *extra; + + ASSERT_EVBUFFER_LOCKED(dst); + ASSERT_EVBUFFER_LOCKED(src); + + for (; chain; chain = chain->next) { + if (!chain->off || chain->flags & EVBUFFER_DANGLING) { + /* skip empty chains */ + continue; + } + + tmp = evbuffer_chain_new(sizeof(struct evbuffer_multicast_parent)); + if (!tmp) { + event_warn("%s: out of memory", __func__); + return; + } + extra = EVBUFFER_CHAIN_EXTRA(struct evbuffer_multicast_parent, tmp); + /* reference evbuffer containing source chain so it + * doesn't get released while the chain is still + * being referenced to */ + evbuffer_incref_(src); + extra->source = src; + /* reference source chain which now becomes immutable */ + evbuffer_chain_incref(chain); + extra->parent = chain; + chain->flags |= EVBUFFER_IMMUTABLE; + tmp->buffer_len = chain->buffer_len; + tmp->misalign = chain->misalign; + tmp->off = chain->off; + tmp->flags |= EVBUFFER_MULTICAST|EVBUFFER_IMMUTABLE; + tmp->buffer = chain->buffer; + evbuffer_chain_insert(dst, tmp); + } +} + +static void +PREPEND_CHAIN(struct evbuffer *dst, struct evbuffer *src) +{ + ASSERT_EVBUFFER_LOCKED(dst); + ASSERT_EVBUFFER_LOCKED(src); + src->last->next = dst->first; + dst->first = src->first; + dst->total_len += src->total_len; + if (*dst->last_with_datap == NULL) { + if (src->last_with_datap == &(src)->first) + dst->last_with_datap = &dst->first; + else + dst->last_with_datap = src->last_with_datap; + } else if (dst->last_with_datap == &dst->first) { + dst->last_with_datap = &src->last->next; + } +} + +int +evbuffer_add_buffer(struct evbuffer *outbuf, struct evbuffer *inbuf) +{ + struct evbuffer_chain *pinned, *last; + size_t in_total_len, out_total_len; + int result = 0; + + EVBUFFER_LOCK2(inbuf, outbuf); + in_total_len = inbuf->total_len; + out_total_len = outbuf->total_len; + + if (in_total_len == 0 || outbuf == inbuf) + goto done; + + if (outbuf->freeze_end || inbuf->freeze_start) { + result = -1; + goto done; + } + + if (PRESERVE_PINNED(inbuf, &pinned, &last) < 0) { + result = -1; + goto done; + } + + if (out_total_len == 0) { + /* There might be an empty chain at the start of outbuf; free + * it. */ + evbuffer_free_all_chains(outbuf->first); + COPY_CHAIN(outbuf, inbuf); + } else { + APPEND_CHAIN(outbuf, inbuf); + } + + RESTORE_PINNED(inbuf, pinned, last); + + inbuf->n_del_for_cb += in_total_len; + outbuf->n_add_for_cb += in_total_len; + + evbuffer_invoke_callbacks_(inbuf); + evbuffer_invoke_callbacks_(outbuf); + +done: + EVBUFFER_UNLOCK2(inbuf, outbuf); + return result; +} + +int +evbuffer_add_buffer_reference(struct evbuffer *outbuf, struct evbuffer *inbuf) +{ + size_t in_total_len, out_total_len; + struct evbuffer_chain *chain; + int result = 0; + + EVBUFFER_LOCK2(inbuf, outbuf); + in_total_len = inbuf->total_len; + out_total_len = outbuf->total_len; + chain = inbuf->first; + + if (in_total_len == 0) + goto done; + + if (outbuf->freeze_end || outbuf == inbuf) { + result = -1; + goto done; + } + + for (; chain; chain = chain->next) { + if ((chain->flags & (EVBUFFER_FILESEGMENT|EVBUFFER_SENDFILE|EVBUFFER_MULTICAST)) != 0) { + /* chain type can not be referenced */ + result = -1; + goto done; + } + } + + if (out_total_len == 0) { + /* There might be an empty chain at the start of outbuf; free + * it. */ + evbuffer_free_all_chains(outbuf->first); + } + APPEND_CHAIN_MULTICAST(outbuf, inbuf); + + outbuf->n_add_for_cb += in_total_len; + evbuffer_invoke_callbacks_(outbuf); + +done: + EVBUFFER_UNLOCK2(inbuf, outbuf); + return result; +} + +int +evbuffer_prepend_buffer(struct evbuffer *outbuf, struct evbuffer *inbuf) +{ + struct evbuffer_chain *pinned, *last; + size_t in_total_len, out_total_len; + int result = 0; + + EVBUFFER_LOCK2(inbuf, outbuf); + + in_total_len = inbuf->total_len; + out_total_len = outbuf->total_len; + + if (!in_total_len || inbuf == outbuf) + goto done; + + if (outbuf->freeze_start || inbuf->freeze_start) { + result = -1; + goto done; + } + + if (PRESERVE_PINNED(inbuf, &pinned, &last) < 0) { + result = -1; + goto done; + } + + if (out_total_len == 0) { + /* There might be an empty chain at the start of outbuf; free + * it. */ + evbuffer_free_all_chains(outbuf->first); + COPY_CHAIN(outbuf, inbuf); + } else { + PREPEND_CHAIN(outbuf, inbuf); + } + + RESTORE_PINNED(inbuf, pinned, last); + + inbuf->n_del_for_cb += in_total_len; + outbuf->n_add_for_cb += in_total_len; + + evbuffer_invoke_callbacks_(inbuf); + evbuffer_invoke_callbacks_(outbuf); +done: + EVBUFFER_UNLOCK2(inbuf, outbuf); + return result; +} + +int +evbuffer_drain(struct evbuffer *buf, size_t len) +{ + struct evbuffer_chain *chain, *next; + size_t remaining, old_len; + int result = 0; + + EVBUFFER_LOCK(buf); + old_len = buf->total_len; + + if (old_len == 0) + goto done; + + if (buf->freeze_start) { + result = -1; + goto done; + } + + if (len >= old_len && !HAS_PINNED_R(buf)) { + len = old_len; + for (chain = buf->first; chain != NULL; chain = next) { + next = chain->next; + evbuffer_chain_free(chain); + } + + ZERO_CHAIN(buf); + } else { + if (len >= old_len) + len = old_len; + + buf->total_len -= len; + remaining = len; + for (chain = buf->first; + remaining >= chain->off; + chain = next) { + next = chain->next; + remaining -= chain->off; + + if (chain == *buf->last_with_datap) { + buf->last_with_datap = &buf->first; + } + if (&chain->next == buf->last_with_datap) + buf->last_with_datap = &buf->first; + + if (CHAIN_PINNED_R(chain)) { + EVUTIL_ASSERT(remaining == 0); + chain->misalign += chain->off; + chain->off = 0; + break; + } else + evbuffer_chain_free(chain); + } + + buf->first = chain; + EVUTIL_ASSERT(chain && remaining <= chain->off); + chain->misalign += remaining; + chain->off -= remaining; + } + + buf->n_del_for_cb += len; + /* Tell someone about changes in this buffer */ + evbuffer_invoke_callbacks_(buf); + +done: + EVBUFFER_UNLOCK(buf); + return result; +} + +/* Reads data from an event buffer and drains the bytes read */ +int +evbuffer_remove(struct evbuffer *buf, void *data_out, size_t datlen) +{ + ev_ssize_t n; + EVBUFFER_LOCK(buf); + n = evbuffer_copyout_from(buf, NULL, data_out, datlen); + if (n > 0) { + if (evbuffer_drain(buf, n)<0) + n = -1; + } + EVBUFFER_UNLOCK(buf); + return (int)n; +} + +ev_ssize_t +evbuffer_copyout(struct evbuffer *buf, void *data_out, size_t datlen) +{ + return evbuffer_copyout_from(buf, NULL, data_out, datlen); +} + +ev_ssize_t +evbuffer_copyout_from(struct evbuffer *buf, const struct evbuffer_ptr *pos, + void *data_out, size_t datlen) +{ + /*XXX fails badly on sendfile case. */ + struct evbuffer_chain *chain; + char *data = data_out; + size_t nread; + ev_ssize_t result = 0; + size_t pos_in_chain; + + EVBUFFER_LOCK(buf); + + if (pos) { + if (datlen > (size_t)(EV_SSIZE_MAX - pos->pos)) { + result = -1; + goto done; + } + chain = pos->internal_.chain; + pos_in_chain = pos->internal_.pos_in_chain; + if (datlen + pos->pos > buf->total_len) + datlen = buf->total_len - pos->pos; + } else { + chain = buf->first; + pos_in_chain = 0; + if (datlen > buf->total_len) + datlen = buf->total_len; + } + + + if (datlen == 0) + goto done; + + if (buf->freeze_start) { + result = -1; + goto done; + } + + nread = datlen; + + while (datlen && datlen >= chain->off - pos_in_chain) { + size_t copylen = chain->off - pos_in_chain; + memcpy(data, + chain->buffer + chain->misalign + pos_in_chain, + copylen); + data += copylen; + datlen -= copylen; + + chain = chain->next; + pos_in_chain = 0; + EVUTIL_ASSERT(chain || datlen==0); + } + + if (datlen) { + EVUTIL_ASSERT(chain); + EVUTIL_ASSERT(datlen+pos_in_chain <= chain->off); + + memcpy(data, chain->buffer + chain->misalign + pos_in_chain, + datlen); + } + + result = nread; +done: + EVBUFFER_UNLOCK(buf); + return result; +} + +/* reads data from the src buffer to the dst buffer, avoids memcpy as + * possible. */ +/* XXXX should return ev_ssize_t */ +int +evbuffer_remove_buffer(struct evbuffer *src, struct evbuffer *dst, + size_t datlen) +{ + /*XXX We should have an option to force this to be zero-copy.*/ + + /*XXX can fail badly on sendfile case. */ + struct evbuffer_chain *chain, *previous; + size_t nread = 0; + int result; + + EVBUFFER_LOCK2(src, dst); + + chain = previous = src->first; + + if (datlen == 0 || dst == src) { + result = 0; + goto done; + } + + if (dst->freeze_end || src->freeze_start) { + result = -1; + goto done; + } + + /* short-cut if there is no more data buffered */ + if (datlen >= src->total_len) { + datlen = src->total_len; + evbuffer_add_buffer(dst, src); + result = (int)datlen; /*XXXX should return ev_ssize_t*/ + goto done; + } + + /* removes chains if possible */ + while (chain->off <= datlen) { + /* We can't remove the last with data from src unless we + * remove all chains, in which case we would have done the if + * block above */ + EVUTIL_ASSERT(chain != *src->last_with_datap); + nread += chain->off; + datlen -= chain->off; + previous = chain; + if (src->last_with_datap == &chain->next) + src->last_with_datap = &src->first; + chain = chain->next; + } + + if (nread) { + /* we can remove the chain */ + struct evbuffer_chain **chp; + chp = evbuffer_free_trailing_empty_chains(dst); + + if (dst->first == NULL) { + dst->first = src->first; + } else { + *chp = src->first; + } + dst->last = previous; + previous->next = NULL; + src->first = chain; + advance_last_with_data(dst); + + dst->total_len += nread; + dst->n_add_for_cb += nread; + } + + /* we know that there is more data in the src buffer than + * we want to read, so we manually drain the chain */ + evbuffer_add(dst, chain->buffer + chain->misalign, datlen); + chain->misalign += datlen; + chain->off -= datlen; + nread += datlen; + + /* You might think we would want to increment dst->n_add_for_cb + * here too. But evbuffer_add above already took care of that. + */ + src->total_len -= nread; + src->n_del_for_cb += nread; + + if (nread) { + evbuffer_invoke_callbacks_(dst); + evbuffer_invoke_callbacks_(src); + } + result = (int)nread;/*XXXX should change return type */ + +done: + EVBUFFER_UNLOCK2(src, dst); + return result; +} + +unsigned char * +evbuffer_pullup(struct evbuffer *buf, ev_ssize_t size) +{ + struct evbuffer_chain *chain, *next, *tmp, *last_with_data; + unsigned char *buffer, *result = NULL; + ev_ssize_t remaining; + int removed_last_with_data = 0; + int removed_last_with_datap = 0; + + EVBUFFER_LOCK(buf); + + chain = buf->first; + + if (size < 0) + size = buf->total_len; + /* if size > buf->total_len, we cannot guarantee to the user that she + * is going to have a long enough buffer afterwards; so we return + * NULL */ + if (size == 0 || (size_t)size > buf->total_len) + goto done; + + /* No need to pull up anything; the first size bytes are + * already here. */ + if (chain->off >= (size_t)size) { + result = chain->buffer + chain->misalign; + goto done; + } + + /* Make sure that none of the chains we need to copy from is pinned. */ + remaining = size - chain->off; + EVUTIL_ASSERT(remaining >= 0); + for (tmp=chain->next; tmp; tmp=tmp->next) { + if (CHAIN_PINNED(tmp)) + goto done; + if (tmp->off >= (size_t)remaining) + break; + remaining -= tmp->off; + } + + if (CHAIN_PINNED(chain)) { + size_t old_off = chain->off; + if (CHAIN_SPACE_LEN(chain) < size - chain->off) { + /* not enough room at end of chunk. */ + goto done; + } + buffer = CHAIN_SPACE_PTR(chain); + tmp = chain; + tmp->off = size; + size -= old_off; + chain = chain->next; + } else if (chain->buffer_len - chain->misalign >= (size_t)size) { + /* already have enough space in the first chain */ + size_t old_off = chain->off; + buffer = chain->buffer + chain->misalign + chain->off; + tmp = chain; + tmp->off = size; + size -= old_off; + chain = chain->next; + } else { + if ((tmp = evbuffer_chain_new(size)) == NULL) { + event_warn("%s: out of memory", __func__); + goto done; + } + buffer = tmp->buffer; + tmp->off = size; + buf->first = tmp; + } + + /* TODO(niels): deal with buffers that point to NULL like sendfile */ + + /* Copy and free every chunk that will be entirely pulled into tmp */ + last_with_data = *buf->last_with_datap; + for (; chain != NULL && (size_t)size >= chain->off; chain = next) { + next = chain->next; + + memcpy(buffer, chain->buffer + chain->misalign, chain->off); + size -= chain->off; + buffer += chain->off; + if (chain == last_with_data) + removed_last_with_data = 1; + if (&chain->next == buf->last_with_datap) + removed_last_with_datap = 1; + + evbuffer_chain_free(chain); + } + + if (chain != NULL) { + memcpy(buffer, chain->buffer + chain->misalign, size); + chain->misalign += size; + chain->off -= size; + } else { + buf->last = tmp; + } + + tmp->next = chain; + + if (removed_last_with_data) { + buf->last_with_datap = &buf->first; + } else if (removed_last_with_datap) { + if (buf->first->next && buf->first->next->off) + buf->last_with_datap = &buf->first->next; + else + buf->last_with_datap = &buf->first; + } + + result = (tmp->buffer + tmp->misalign); + +done: + EVBUFFER_UNLOCK(buf); + return result; +} + +/* + * Reads a line terminated by either '\r\n', '\n\r' or '\r' or '\n'. + * The returned buffer needs to be freed by the called. + */ +char * +evbuffer_readline(struct evbuffer *buffer) +{ + return evbuffer_readln(buffer, NULL, EVBUFFER_EOL_ANY); +} + +static inline ev_ssize_t +evbuffer_strchr(struct evbuffer_ptr *it, const char chr) +{ + struct evbuffer_chain *chain = it->internal_.chain; + size_t i = it->internal_.pos_in_chain; + while (chain != NULL) { + char *buffer = (char *)chain->buffer + chain->misalign; + char *cp = memchr(buffer+i, chr, chain->off-i); + if (cp) { + it->internal_.chain = chain; + it->internal_.pos_in_chain = cp - buffer; + it->pos += (cp - buffer - i); + return it->pos; + } + it->pos += chain->off - i; + i = 0; + chain = chain->next; + } + + return (-1); +} + +static inline char * +find_eol_char(char *s, size_t len) +{ +#define CHUNK_SZ 128 + /* Lots of benchmarking found this approach to be faster in practice + * than doing two memchrs over the whole buffer, doin a memchr on each + * char of the buffer, or trying to emulate memchr by hand. */ + char *s_end, *cr, *lf; + s_end = s+len; + while (s < s_end) { + size_t chunk = (s + CHUNK_SZ < s_end) ? CHUNK_SZ : (s_end - s); + cr = memchr(s, '\r', chunk); + lf = memchr(s, '\n', chunk); + if (cr) { + if (lf && lf < cr) + return lf; + return cr; + } else if (lf) { + return lf; + } + s += CHUNK_SZ; + } + + return NULL; +#undef CHUNK_SZ +} + +static ev_ssize_t +evbuffer_find_eol_char(struct evbuffer_ptr *it) +{ + struct evbuffer_chain *chain = it->internal_.chain; + size_t i = it->internal_.pos_in_chain; + while (chain != NULL) { + char *buffer = (char *)chain->buffer + chain->misalign; + char *cp = find_eol_char(buffer+i, chain->off-i); + if (cp) { + it->internal_.chain = chain; + it->internal_.pos_in_chain = cp - buffer; + it->pos += (cp - buffer) - i; + return it->pos; + } + it->pos += chain->off - i; + i = 0; + chain = chain->next; + } + + return (-1); +} + +static inline int +evbuffer_strspn( + struct evbuffer_ptr *ptr, const char *chrset) +{ + int count = 0; + struct evbuffer_chain *chain = ptr->internal_.chain; + size_t i = ptr->internal_.pos_in_chain; + + if (!chain) + return 0; + + while (1) { + char *buffer = (char *)chain->buffer + chain->misalign; + for (; i < chain->off; ++i) { + const char *p = chrset; + while (*p) { + if (buffer[i] == *p++) + goto next; + } + ptr->internal_.chain = chain; + ptr->internal_.pos_in_chain = i; + ptr->pos += count; + return count; + next: + ++count; + } + i = 0; + + if (! chain->next) { + ptr->internal_.chain = chain; + ptr->internal_.pos_in_chain = i; + ptr->pos += count; + return count; + } + + chain = chain->next; + } +} + + +static inline int +evbuffer_getchr(struct evbuffer_ptr *it) +{ + struct evbuffer_chain *chain = it->internal_.chain; + size_t off = it->internal_.pos_in_chain; + + if (chain == NULL) + return -1; + + return (unsigned char)chain->buffer[chain->misalign + off]; +} + +struct evbuffer_ptr +evbuffer_search_eol(struct evbuffer *buffer, + struct evbuffer_ptr *start, size_t *eol_len_out, + enum evbuffer_eol_style eol_style) +{ + struct evbuffer_ptr it, it2; + size_t extra_drain = 0; + int ok = 0; + + /* Avoid locking in trivial edge cases */ + if (start && start->internal_.chain == NULL) { + PTR_NOT_FOUND(&it); + if (eol_len_out) + *eol_len_out = extra_drain; + return it; + } + + EVBUFFER_LOCK(buffer); + + if (start) { + memcpy(&it, start, sizeof(it)); + } else { + it.pos = 0; + it.internal_.chain = buffer->first; + it.internal_.pos_in_chain = 0; + } + + /* the eol_style determines our first stop character and how many + * characters we are going to drain afterwards. */ + switch (eol_style) { + case EVBUFFER_EOL_ANY: + if (evbuffer_find_eol_char(&it) < 0) + goto done; + memcpy(&it2, &it, sizeof(it)); + extra_drain = evbuffer_strspn(&it2, "\r\n"); + break; + case EVBUFFER_EOL_CRLF_STRICT: { + it = evbuffer_search(buffer, "\r\n", 2, &it); + if (it.pos < 0) + goto done; + extra_drain = 2; + break; + } + case EVBUFFER_EOL_CRLF: { + ev_ssize_t start_pos = it.pos; + /* Look for a LF ... */ + if (evbuffer_strchr(&it, '\n') < 0) + goto done; + extra_drain = 1; + /* ... optionally preceeded by a CR. */ + if (it.pos == start_pos) + break; /* If the first character is \n, don't back up */ + /* This potentially does an extra linear walk over the first + * few chains. Probably, that's not too expensive unless you + * have a really pathological setup. */ + memcpy(&it2, &it, sizeof(it)); + if (evbuffer_ptr_subtract(buffer, &it2, 1)<0) + break; + if (evbuffer_getchr(&it2) == '\r') { + memcpy(&it, &it2, sizeof(it)); + extra_drain = 2; + } + break; + } + case EVBUFFER_EOL_LF: + if (evbuffer_strchr(&it, '\n') < 0) + goto done; + extra_drain = 1; + break; + case EVBUFFER_EOL_NUL: + if (evbuffer_strchr(&it, '\0') < 0) + goto done; + extra_drain = 1; + break; + default: + goto done; + } + + ok = 1; +done: + EVBUFFER_UNLOCK(buffer); + + if (!ok) + PTR_NOT_FOUND(&it); + if (eol_len_out) + *eol_len_out = extra_drain; + + return it; +} + +char * +evbuffer_readln(struct evbuffer *buffer, size_t *n_read_out, + enum evbuffer_eol_style eol_style) +{ + struct evbuffer_ptr it; + char *line; + size_t n_to_copy=0, extra_drain=0; + char *result = NULL; + + EVBUFFER_LOCK(buffer); + + if (buffer->freeze_start) { + goto done; + } + + it = evbuffer_search_eol(buffer, NULL, &extra_drain, eol_style); + if (it.pos < 0) + goto done; + n_to_copy = it.pos; + + if ((line = mm_malloc(n_to_copy+1)) == NULL) { + event_warn("%s: out of memory", __func__); + goto done; + } + + evbuffer_remove(buffer, line, n_to_copy); + line[n_to_copy] = '\0'; + + evbuffer_drain(buffer, extra_drain); + result = line; +done: + EVBUFFER_UNLOCK(buffer); + + if (n_read_out) + *n_read_out = result ? n_to_copy : 0; + + return result; +} + +#define EVBUFFER_CHAIN_MAX_AUTO_SIZE 4096 + +/* Adds data to an event buffer */ + +int +evbuffer_add(struct evbuffer *buf, const void *data_in, size_t datlen) +{ + struct evbuffer_chain *chain, *tmp; + const unsigned char *data = data_in; + size_t remain, to_alloc; + int result = -1; + + EVBUFFER_LOCK(buf); + + if (buf->freeze_end) { + goto done; + } + /* Prevent buf->total_len overflow */ + if (datlen > EV_SIZE_MAX - buf->total_len) { + goto done; + } + + if (*buf->last_with_datap == NULL) { + chain = buf->last; + } else { + chain = *buf->last_with_datap; + } + + /* If there are no chains allocated for this buffer, allocate one + * big enough to hold all the data. */ + if (chain == NULL) { + chain = evbuffer_chain_new(datlen); + if (!chain) + goto done; + evbuffer_chain_insert(buf, chain); + } + + if ((chain->flags & EVBUFFER_IMMUTABLE) == 0) { + /* Always true for mutable buffers */ + EVUTIL_ASSERT(chain->misalign >= 0 && + (ev_uint64_t)chain->misalign <= EVBUFFER_CHAIN_MAX); + remain = chain->buffer_len - (size_t)chain->misalign - chain->off; + if (remain >= datlen) { + /* there's enough space to hold all the data in the + * current last chain */ + memcpy(chain->buffer + chain->misalign + chain->off, + data, datlen); + chain->off += datlen; + buf->total_len += datlen; + buf->n_add_for_cb += datlen; + goto out; + } else if (!CHAIN_PINNED(chain) && + evbuffer_chain_should_realign(chain, datlen)) { + /* we can fit the data into the misalignment */ + evbuffer_chain_align(chain); + + memcpy(chain->buffer + chain->off, data, datlen); + chain->off += datlen; + buf->total_len += datlen; + buf->n_add_for_cb += datlen; + goto out; + } + } else { + /* we cannot write any data to the last chain */ + remain = 0; + } + + /* we need to add another chain */ + to_alloc = chain->buffer_len; + if (to_alloc <= EVBUFFER_CHAIN_MAX_AUTO_SIZE/2) + to_alloc <<= 1; + if (datlen > to_alloc) + to_alloc = datlen; + tmp = evbuffer_chain_new(to_alloc); + if (tmp == NULL) + goto done; + + if (remain) { + memcpy(chain->buffer + chain->misalign + chain->off, + data, remain); + chain->off += remain; + buf->total_len += remain; + buf->n_add_for_cb += remain; + } + + data += remain; + datlen -= remain; + + memcpy(tmp->buffer, data, datlen); + tmp->off = datlen; + evbuffer_chain_insert(buf, tmp); + buf->n_add_for_cb += datlen; + +out: + evbuffer_invoke_callbacks_(buf); + result = 0; +done: + EVBUFFER_UNLOCK(buf); + return result; +} + +int +evbuffer_prepend(struct evbuffer *buf, const void *data, size_t datlen) +{ + struct evbuffer_chain *chain, *tmp; + int result = -1; + + EVBUFFER_LOCK(buf); + + if (buf->freeze_start) { + goto done; + } + if (datlen > EV_SIZE_MAX - buf->total_len) { + goto done; + } + + chain = buf->first; + + if (chain == NULL) { + chain = evbuffer_chain_new(datlen); + if (!chain) + goto done; + evbuffer_chain_insert(buf, chain); + } + + /* we cannot touch immutable buffers */ + if ((chain->flags & EVBUFFER_IMMUTABLE) == 0) { + /* Always true for mutable buffers */ + EVUTIL_ASSERT(chain->misalign >= 0 && + (ev_uint64_t)chain->misalign <= EVBUFFER_CHAIN_MAX); + + /* If this chain is empty, we can treat it as + * 'empty at the beginning' rather than 'empty at the end' */ + if (chain->off == 0) + chain->misalign = chain->buffer_len; + + if ((size_t)chain->misalign >= datlen) { + /* we have enough space to fit everything */ + memcpy(chain->buffer + chain->misalign - datlen, + data, datlen); + chain->off += datlen; + chain->misalign -= datlen; + buf->total_len += datlen; + buf->n_add_for_cb += datlen; + goto out; + } else if (chain->misalign) { + /* we can only fit some of the data. */ + memcpy(chain->buffer, + (char*)data + datlen - chain->misalign, + (size_t)chain->misalign); + chain->off += (size_t)chain->misalign; + buf->total_len += (size_t)chain->misalign; + buf->n_add_for_cb += (size_t)chain->misalign; + datlen -= (size_t)chain->misalign; + chain->misalign = 0; + } + } + + /* we need to add another chain */ + if ((tmp = evbuffer_chain_new(datlen)) == NULL) + goto done; + buf->first = tmp; + if (buf->last_with_datap == &buf->first) + buf->last_with_datap = &tmp->next; + + tmp->next = chain; + + tmp->off = datlen; + EVUTIL_ASSERT(datlen <= tmp->buffer_len); + tmp->misalign = tmp->buffer_len - datlen; + + memcpy(tmp->buffer + tmp->misalign, data, datlen); + buf->total_len += datlen; + buf->n_add_for_cb += datlen; + +out: + evbuffer_invoke_callbacks_(buf); + result = 0; +done: + EVBUFFER_UNLOCK(buf); + return result; +} + +/** Helper: realigns the memory in chain->buffer so that misalign is 0. */ +static void +evbuffer_chain_align(struct evbuffer_chain *chain) +{ + EVUTIL_ASSERT(!(chain->flags & EVBUFFER_IMMUTABLE)); + EVUTIL_ASSERT(!(chain->flags & EVBUFFER_MEM_PINNED_ANY)); + memmove(chain->buffer, chain->buffer + chain->misalign, chain->off); + chain->misalign = 0; +} + +#define MAX_TO_COPY_IN_EXPAND 4096 +#define MAX_TO_REALIGN_IN_EXPAND 2048 + +/** Helper: return true iff we should realign chain to fit datalen bytes of + data in it. */ +static int +evbuffer_chain_should_realign(struct evbuffer_chain *chain, + size_t datlen) +{ + return chain->buffer_len - chain->off >= datlen && + (chain->off < chain->buffer_len / 2) && + (chain->off <= MAX_TO_REALIGN_IN_EXPAND); +} + +/* Expands the available space in the event buffer to at least datlen, all in + * a single chunk. Return that chunk. */ +static struct evbuffer_chain * +evbuffer_expand_singlechain(struct evbuffer *buf, size_t datlen) +{ + struct evbuffer_chain *chain, **chainp; + struct evbuffer_chain *result = NULL; + ASSERT_EVBUFFER_LOCKED(buf); + + chainp = buf->last_with_datap; + + /* XXX If *chainp is no longer writeable, but has enough space in its + * misalign, this might be a bad idea: we could still use *chainp, not + * (*chainp)->next. */ + if (*chainp && CHAIN_SPACE_LEN(*chainp) == 0) + chainp = &(*chainp)->next; + + /* 'chain' now points to the first chain with writable space (if any) + * We will either use it, realign it, replace it, or resize it. */ + chain = *chainp; + + if (chain == NULL || + (chain->flags & (EVBUFFER_IMMUTABLE|EVBUFFER_MEM_PINNED_ANY))) { + /* We can't use the last_with_data chain at all. Just add a + * new one that's big enough. */ + goto insert_new; + } + + /* If we can fit all the data, then we don't have to do anything */ + if (CHAIN_SPACE_LEN(chain) >= datlen) { + result = chain; + goto ok; + } + + /* If the chain is completely empty, just replace it by adding a new + * empty chain. */ + if (chain->off == 0) { + goto insert_new; + } + + /* If the misalignment plus the remaining space fulfills our data + * needs, we could just force an alignment to happen. Afterwards, we + * have enough space. But only do this if we're saving a lot of space + * and not moving too much data. Otherwise the space savings are + * probably offset by the time lost in copying. + */ + if (evbuffer_chain_should_realign(chain, datlen)) { + evbuffer_chain_align(chain); + result = chain; + goto ok; + } + + /* At this point, we can either resize the last chunk with space in + * it, use the next chunk after it, or If we add a new chunk, we waste + * CHAIN_SPACE_LEN(chain) bytes in the former last chunk. If we + * resize, we have to copy chain->off bytes. + */ + + /* Would expanding this chunk be affordable and worthwhile? */ + if (CHAIN_SPACE_LEN(chain) < chain->buffer_len / 8 || + chain->off > MAX_TO_COPY_IN_EXPAND || + datlen >= (EVBUFFER_CHAIN_MAX - chain->off)) { + /* It's not worth resizing this chain. Can the next one be + * used? */ + if (chain->next && CHAIN_SPACE_LEN(chain->next) >= datlen) { + /* Yes, we can just use the next chain (which should + * be empty. */ + result = chain->next; + goto ok; + } else { + /* No; append a new chain (which will free all + * terminal empty chains.) */ + goto insert_new; + } + } else { + /* Okay, we're going to try to resize this chain: Not doing so + * would waste at least 1/8 of its current allocation, and we + * can do so without having to copy more than + * MAX_TO_COPY_IN_EXPAND bytes. */ + /* figure out how much space we need */ + size_t length = chain->off + datlen; + struct evbuffer_chain *tmp = evbuffer_chain_new(length); + if (tmp == NULL) + goto err; + + /* copy the data over that we had so far */ + tmp->off = chain->off; + memcpy(tmp->buffer, chain->buffer + chain->misalign, + chain->off); + /* fix up the list */ + EVUTIL_ASSERT(*chainp == chain); + result = *chainp = tmp; + + if (buf->last == chain) + buf->last = tmp; + + tmp->next = chain->next; + evbuffer_chain_free(chain); + goto ok; + } + +insert_new: + result = evbuffer_chain_insert_new(buf, datlen); + if (!result) + goto err; +ok: + EVUTIL_ASSERT(result); + EVUTIL_ASSERT(CHAIN_SPACE_LEN(result) >= datlen); +err: + return result; +} + +/* Make sure that datlen bytes are available for writing in the last n + * chains. Never copies or moves data. */ +int +evbuffer_expand_fast_(struct evbuffer *buf, size_t datlen, int n) +{ + struct evbuffer_chain *chain = buf->last, *tmp, *next; + size_t avail; + int used; + + ASSERT_EVBUFFER_LOCKED(buf); + EVUTIL_ASSERT(n >= 2); + + if (chain == NULL || (chain->flags & EVBUFFER_IMMUTABLE)) { + /* There is no last chunk, or we can't touch the last chunk. + * Just add a new chunk. */ + chain = evbuffer_chain_new(datlen); + if (chain == NULL) + return (-1); + + evbuffer_chain_insert(buf, chain); + return (0); + } + + used = 0; /* number of chains we're using space in. */ + avail = 0; /* how much space they have. */ + /* How many bytes can we stick at the end of buffer as it is? Iterate + * over the chains at the end of the buffer, tring to see how much + * space we have in the first n. */ + for (chain = *buf->last_with_datap; chain; chain = chain->next) { + if (chain->off) { + size_t space = (size_t) CHAIN_SPACE_LEN(chain); + EVUTIL_ASSERT(chain == *buf->last_with_datap); + if (space) { + avail += space; + ++used; + } + } else { + /* No data in chain; realign it. */ + chain->misalign = 0; + avail += chain->buffer_len; + ++used; + } + if (avail >= datlen) { + /* There is already enough space. Just return */ + return (0); + } + if (used == n) + break; + } + + /* There wasn't enough space in the first n chains with space in + * them. Either add a new chain with enough space, or replace all + * empty chains with one that has enough space, depending on n. */ + if (used < n) { + /* The loop ran off the end of the chains before it hit n + * chains; we can add another. */ + EVUTIL_ASSERT(chain == NULL); + + tmp = evbuffer_chain_new(datlen - avail); + if (tmp == NULL) + return (-1); + + buf->last->next = tmp; + buf->last = tmp; + /* (we would only set last_with_data if we added the first + * chain. But if the buffer had no chains, we would have + * just allocated a new chain earlier) */ + return (0); + } else { + /* Nuke _all_ the empty chains. */ + int rmv_all = 0; /* True iff we removed last_with_data. */ + chain = *buf->last_with_datap; + if (!chain->off) { + EVUTIL_ASSERT(chain == buf->first); + rmv_all = 1; + avail = 0; + } else { + /* can't overflow, since only mutable chains have + * huge misaligns. */ + avail = (size_t) CHAIN_SPACE_LEN(chain); + chain = chain->next; + } + + + for (; chain; chain = next) { + next = chain->next; + EVUTIL_ASSERT(chain->off == 0); + evbuffer_chain_free(chain); + } + EVUTIL_ASSERT(datlen >= avail); + tmp = evbuffer_chain_new(datlen - avail); + if (tmp == NULL) { + if (rmv_all) { + ZERO_CHAIN(buf); + } else { + buf->last = *buf->last_with_datap; + (*buf->last_with_datap)->next = NULL; + } + return (-1); + } + + if (rmv_all) { + buf->first = buf->last = tmp; + buf->last_with_datap = &buf->first; + } else { + (*buf->last_with_datap)->next = tmp; + buf->last = tmp; + } + return (0); + } +} + +int +evbuffer_expand(struct evbuffer *buf, size_t datlen) +{ + struct evbuffer_chain *chain; + + EVBUFFER_LOCK(buf); + chain = evbuffer_expand_singlechain(buf, datlen); + EVBUFFER_UNLOCK(buf); + return chain ? 0 : -1; +} + +/* + * Reads data from a file descriptor into a buffer. + */ + +#if defined(EVENT__HAVE_SYS_UIO_H) || defined(_WIN32) +#define USE_IOVEC_IMPL +#endif + +#ifdef USE_IOVEC_IMPL + +#ifdef EVENT__HAVE_SYS_UIO_H +/* number of iovec we use for writev, fragmentation is going to determine + * how much we end up writing */ + +#define DEFAULT_WRITE_IOVEC 128 + +#if defined(UIO_MAXIOV) && UIO_MAXIOV < DEFAULT_WRITE_IOVEC +#define NUM_WRITE_IOVEC UIO_MAXIOV +#elif defined(IOV_MAX) && IOV_MAX < DEFAULT_WRITE_IOVEC +#define NUM_WRITE_IOVEC IOV_MAX +#else +#define NUM_WRITE_IOVEC DEFAULT_WRITE_IOVEC +#endif + +#define IOV_TYPE struct iovec +#define IOV_PTR_FIELD iov_base +#define IOV_LEN_FIELD iov_len +#define IOV_LEN_TYPE size_t +#else +#define NUM_WRITE_IOVEC 16 +#define IOV_TYPE WSABUF +#define IOV_PTR_FIELD buf +#define IOV_LEN_FIELD len +#define IOV_LEN_TYPE unsigned long +#endif +#endif +#define NUM_READ_IOVEC 4 + +#define EVBUFFER_MAX_READ 4096 + +/** Helper function to figure out which space to use for reading data into + an evbuffer. Internal use only. + + @param buf The buffer to read into + @param howmuch How much we want to read. + @param vecs An array of two or more iovecs or WSABUFs. + @param n_vecs_avail The length of vecs + @param chainp A pointer to a variable to hold the first chain we're + reading into. + @param exact Boolean: if true, we do not provide more than 'howmuch' + space in the vectors, even if more space is available. + @return The number of buffers we're using. + */ +int +evbuffer_read_setup_vecs_(struct evbuffer *buf, ev_ssize_t howmuch, + struct evbuffer_iovec *vecs, int n_vecs_avail, + struct evbuffer_chain ***chainp, int exact) +{ + struct evbuffer_chain *chain; + struct evbuffer_chain **firstchainp; + size_t so_far; + int i; + ASSERT_EVBUFFER_LOCKED(buf); + + if (howmuch < 0) + return -1; + + so_far = 0; + /* Let firstchain be the first chain with any space on it */ + firstchainp = buf->last_with_datap; + if (CHAIN_SPACE_LEN(*firstchainp) == 0) { + firstchainp = &(*firstchainp)->next; + } + + chain = *firstchainp; + for (i = 0; i < n_vecs_avail && so_far < (size_t)howmuch; ++i) { + size_t avail = (size_t) CHAIN_SPACE_LEN(chain); + if (avail > (howmuch - so_far) && exact) + avail = howmuch - so_far; + vecs[i].iov_base = (void *)CHAIN_SPACE_PTR(chain); + vecs[i].iov_len = avail; + so_far += avail; + chain = chain->next; + } + + *chainp = firstchainp; + return i; +} + +static int +get_n_bytes_readable_on_socket(evutil_socket_t fd) +{ +#if defined(FIONREAD) && defined(_WIN32) + unsigned long lng = EVBUFFER_MAX_READ; + if (ioctlsocket(fd, FIONREAD, &lng) < 0) + return -1; + /* Can overflow, but mostly harmlessly. XXXX */ + return (int)lng; +#elif defined(FIONREAD) + int n = EVBUFFER_MAX_READ; + if (ioctl(fd, FIONREAD, &n) < 0) + return -1; + return n; +#else + return EVBUFFER_MAX_READ; +#endif +} + +/* TODO(niels): should this function return ev_ssize_t and take ev_ssize_t + * as howmuch? */ +int +evbuffer_read(struct evbuffer *buf, evutil_socket_t fd, int howmuch) +{ + struct evbuffer_chain **chainp; + int n; + int result; + +#ifdef USE_IOVEC_IMPL + int nvecs, i, remaining; +#else + struct evbuffer_chain *chain; + unsigned char *p; +#endif + + EVBUFFER_LOCK(buf); + + if (buf->freeze_end) { + result = -1; + goto done; + } + + n = get_n_bytes_readable_on_socket(fd); + if (n <= 0 || n > EVBUFFER_MAX_READ) + n = EVBUFFER_MAX_READ; + if (howmuch < 0 || howmuch > n) + howmuch = n; + +#ifdef USE_IOVEC_IMPL + /* Since we can use iovecs, we're willing to use the last + * NUM_READ_IOVEC chains. */ + if (evbuffer_expand_fast_(buf, howmuch, NUM_READ_IOVEC) == -1) { + result = -1; + goto done; + } else { + IOV_TYPE vecs[NUM_READ_IOVEC]; +#ifdef EVBUFFER_IOVEC_IS_NATIVE_ + nvecs = evbuffer_read_setup_vecs_(buf, howmuch, vecs, + NUM_READ_IOVEC, &chainp, 1); +#else + /* We aren't using the native struct iovec. Therefore, + we are on win32. */ + struct evbuffer_iovec ev_vecs[NUM_READ_IOVEC]; + nvecs = evbuffer_read_setup_vecs_(buf, howmuch, ev_vecs, 2, + &chainp, 1); + + for (i=0; i < nvecs; ++i) + WSABUF_FROM_EVBUFFER_IOV(&vecs[i], &ev_vecs[i]); +#endif + +#ifdef _WIN32 + { + DWORD bytesRead; + DWORD flags=0; + if (WSARecv(fd, vecs, nvecs, &bytesRead, &flags, NULL, NULL)) { + /* The read failed. It might be a close, + * or it might be an error. */ + if (WSAGetLastError() == WSAECONNABORTED) + n = 0; + else + n = -1; + } else + n = bytesRead; + } +#else + n = readv(fd, vecs, nvecs); +#endif + } + +#else /*!USE_IOVEC_IMPL*/ + /* If we don't have FIONREAD, we might waste some space here */ + /* XXX we _will_ waste some space here if there is any space left + * over on buf->last. */ + if ((chain = evbuffer_expand_singlechain(buf, howmuch)) == NULL) { + result = -1; + goto done; + } + + /* We can append new data at this point */ + p = chain->buffer + chain->misalign + chain->off; + +#ifndef _WIN32 + n = read(fd, p, howmuch); +#else + n = recv(fd, p, howmuch, 0); +#endif +#endif /* USE_IOVEC_IMPL */ + + if (n == -1) { + result = -1; + goto done; + } + if (n == 0) { + result = 0; + goto done; + } + +#ifdef USE_IOVEC_IMPL + remaining = n; + for (i=0; i < nvecs; ++i) { + /* can't overflow, since only mutable chains have + * huge misaligns. */ + size_t space = (size_t) CHAIN_SPACE_LEN(*chainp); + /* XXXX This is a kludge that can waste space in perverse + * situations. */ + if (space > EVBUFFER_CHAIN_MAX) + space = EVBUFFER_CHAIN_MAX; + if ((ev_ssize_t)space < remaining) { + (*chainp)->off += space; + remaining -= (int)space; + } else { + (*chainp)->off += remaining; + buf->last_with_datap = chainp; + break; + } + chainp = &(*chainp)->next; + } +#else + chain->off += n; + advance_last_with_data(buf); +#endif + buf->total_len += n; + buf->n_add_for_cb += n; + + /* Tell someone about changes in this buffer */ + evbuffer_invoke_callbacks_(buf); + result = n; +done: + EVBUFFER_UNLOCK(buf); + return result; +} + +#ifdef USE_IOVEC_IMPL +static inline int +evbuffer_write_iovec(struct evbuffer *buffer, evutil_socket_t fd, + ev_ssize_t howmuch) +{ + IOV_TYPE iov[NUM_WRITE_IOVEC]; + struct evbuffer_chain *chain = buffer->first; + int n, i = 0; + + if (howmuch < 0) + return -1; + + ASSERT_EVBUFFER_LOCKED(buffer); + /* XXX make this top out at some maximal data length? if the + * buffer has (say) 1MB in it, split over 128 chains, there's + * no way it all gets written in one go. */ + while (chain != NULL && i < NUM_WRITE_IOVEC && howmuch) { +#ifdef USE_SENDFILE + /* we cannot write the file info via writev */ + if (chain->flags & EVBUFFER_SENDFILE) + break; +#endif + iov[i].IOV_PTR_FIELD = (void *) (chain->buffer + chain->misalign); + if ((size_t)howmuch >= chain->off) { + /* XXXcould be problematic when windows supports mmap*/ + iov[i++].IOV_LEN_FIELD = (IOV_LEN_TYPE)chain->off; + howmuch -= chain->off; + } else { + /* XXXcould be problematic when windows supports mmap*/ + iov[i++].IOV_LEN_FIELD = (IOV_LEN_TYPE)howmuch; + break; + } + chain = chain->next; + } + if (! i) + return 0; + +#ifdef _WIN32 + { + DWORD bytesSent; + if (WSASend(fd, iov, i, &bytesSent, 0, NULL, NULL)) + n = -1; + else + n = bytesSent; + } +#else + n = writev(fd, iov, i); +#endif + return (n); +} +#endif + +#ifdef USE_SENDFILE +static inline int +evbuffer_write_sendfile(struct evbuffer *buffer, evutil_socket_t dest_fd, + ev_ssize_t howmuch) +{ + struct evbuffer_chain *chain = buffer->first; + struct evbuffer_chain_file_segment *info = + EVBUFFER_CHAIN_EXTRA(struct evbuffer_chain_file_segment, + chain); + const int source_fd = info->segment->fd; +#if defined(SENDFILE_IS_MACOSX) || defined(SENDFILE_IS_FREEBSD) + int res; + ev_off_t len = chain->off; +#elif defined(SENDFILE_IS_LINUX) || defined(SENDFILE_IS_SOLARIS) + ev_ssize_t res; + ev_off_t offset = chain->misalign; +#endif + + ASSERT_EVBUFFER_LOCKED(buffer); + +#if defined(SENDFILE_IS_MACOSX) + res = sendfile(source_fd, dest_fd, chain->misalign, &len, NULL, 0); + if (res == -1 && !EVUTIL_ERR_RW_RETRIABLE(errno)) + return (-1); + + return (len); +#elif defined(SENDFILE_IS_FREEBSD) + res = sendfile(source_fd, dest_fd, chain->misalign, chain->off, NULL, &len, 0); + if (res == -1 && !EVUTIL_ERR_RW_RETRIABLE(errno)) + return (-1); + + return (len); +#elif defined(SENDFILE_IS_LINUX) + /* TODO(niels): implement splice */ + res = sendfile(dest_fd, source_fd, &offset, chain->off); + if (res == -1 && EVUTIL_ERR_RW_RETRIABLE(errno)) { + /* if this is EAGAIN or EINTR return 0; otherwise, -1 */ + return (0); + } + return (res); +#elif defined(SENDFILE_IS_SOLARIS) + { + const off_t offset_orig = offset; + res = sendfile(dest_fd, source_fd, &offset, chain->off); + if (res == -1 && EVUTIL_ERR_RW_RETRIABLE(errno)) { + if (offset - offset_orig) + return offset - offset_orig; + /* if this is EAGAIN or EINTR and no bytes were + * written, return 0 */ + return (0); + } + return (res); + } +#endif +} +#endif + +int +evbuffer_write_atmost(struct evbuffer *buffer, evutil_socket_t fd, + ev_ssize_t howmuch) +{ + int n = -1; + + EVBUFFER_LOCK(buffer); + + if (buffer->freeze_start) { + goto done; + } + + if (howmuch < 0 || (size_t)howmuch > buffer->total_len) + howmuch = buffer->total_len; + + if (howmuch > 0) { +#ifdef USE_SENDFILE + struct evbuffer_chain *chain = buffer->first; + if (chain != NULL && (chain->flags & EVBUFFER_SENDFILE)) + n = evbuffer_write_sendfile(buffer, fd, howmuch); + else { +#endif +#ifdef USE_IOVEC_IMPL + n = evbuffer_write_iovec(buffer, fd, howmuch); +#elif defined(_WIN32) + /* XXX(nickm) Don't disable this code until we know if + * the WSARecv code above works. */ + void *p = evbuffer_pullup(buffer, howmuch); + EVUTIL_ASSERT(p || !howmuch); + n = send(fd, p, howmuch, 0); +#else + void *p = evbuffer_pullup(buffer, howmuch); + EVUTIL_ASSERT(p || !howmuch); + n = write(fd, p, howmuch); +#endif +#ifdef USE_SENDFILE + } +#endif + } + + if (n > 0) + evbuffer_drain(buffer, n); + +done: + EVBUFFER_UNLOCK(buffer); + return (n); +} + +int +evbuffer_write(struct evbuffer *buffer, evutil_socket_t fd) +{ + return evbuffer_write_atmost(buffer, fd, -1); +} + +unsigned char * +evbuffer_find(struct evbuffer *buffer, const unsigned char *what, size_t len) +{ + unsigned char *search; + struct evbuffer_ptr ptr; + + EVBUFFER_LOCK(buffer); + + ptr = evbuffer_search(buffer, (const char *)what, len, NULL); + if (ptr.pos < 0) { + search = NULL; + } else { + search = evbuffer_pullup(buffer, ptr.pos + len); + if (search) + search += ptr.pos; + } + EVBUFFER_UNLOCK(buffer); + return search; +} + +/* Subract howfar from the position of pos within + * buf. Returns 0 on success, -1 on failure. + * + * This isn't exposed yet, because of potential inefficiency issues. + * Maybe it should be. */ +static int +evbuffer_ptr_subtract(struct evbuffer *buf, struct evbuffer_ptr *pos, + size_t howfar) +{ + if (pos->pos < 0) + return -1; + if (howfar > (size_t)pos->pos) + return -1; + if (pos->internal_.chain && howfar <= pos->internal_.pos_in_chain) { + pos->internal_.pos_in_chain -= howfar; + pos->pos -= howfar; + return 0; + } else { + const size_t newpos = pos->pos - howfar; + /* Here's the inefficient part: it walks over the + * chains until we hit newpos. */ + return evbuffer_ptr_set(buf, pos, newpos, EVBUFFER_PTR_SET); + } +} + +int +evbuffer_ptr_set(struct evbuffer *buf, struct evbuffer_ptr *pos, + size_t position, enum evbuffer_ptr_how how) +{ + size_t left = position; + struct evbuffer_chain *chain = NULL; + int result = 0; + + EVBUFFER_LOCK(buf); + + switch (how) { + case EVBUFFER_PTR_SET: + chain = buf->first; + pos->pos = position; + position = 0; + break; + case EVBUFFER_PTR_ADD: + /* this avoids iterating over all previous chains if + we just want to advance the position */ + if (pos->pos < 0 || EV_SIZE_MAX - position < (size_t)pos->pos) { + EVBUFFER_UNLOCK(buf); + return -1; + } + chain = pos->internal_.chain; + pos->pos += position; + position = pos->internal_.pos_in_chain; + break; + } + + EVUTIL_ASSERT(EV_SIZE_MAX - left >= position); + while (chain && position + left >= chain->off) { + left -= chain->off - position; + chain = chain->next; + position = 0; + } + if (chain) { + pos->internal_.chain = chain; + pos->internal_.pos_in_chain = position + left; + } else if (left == 0) { + /* The first byte in the (nonexistent) chain after the last chain */ + pos->internal_.chain = NULL; + pos->internal_.pos_in_chain = 0; + } else { + PTR_NOT_FOUND(pos); + result = -1; + } + + EVBUFFER_UNLOCK(buf); + + return result; +} + +/** + Compare the bytes in buf at position pos to the len bytes in mem. Return + less than 0, 0, or greater than 0 as memcmp. + */ +static int +evbuffer_ptr_memcmp(const struct evbuffer *buf, const struct evbuffer_ptr *pos, + const char *mem, size_t len) +{ + struct evbuffer_chain *chain; + size_t position; + int r; + + ASSERT_EVBUFFER_LOCKED(buf); + + if (pos->pos < 0 || + EV_SIZE_MAX - len < (size_t)pos->pos || + pos->pos + len > buf->total_len) + return -1; + + chain = pos->internal_.chain; + position = pos->internal_.pos_in_chain; + while (len && chain) { + size_t n_comparable; + if (len + position > chain->off) + n_comparable = chain->off - position; + else + n_comparable = len; + r = memcmp(chain->buffer + chain->misalign + position, mem, + n_comparable); + if (r) + return r; + mem += n_comparable; + len -= n_comparable; + position = 0; + chain = chain->next; + } + + return 0; +} + +struct evbuffer_ptr +evbuffer_search(struct evbuffer *buffer, const char *what, size_t len, const struct evbuffer_ptr *start) +{ + return evbuffer_search_range(buffer, what, len, start, NULL); +} + +struct evbuffer_ptr +evbuffer_search_range(struct evbuffer *buffer, const char *what, size_t len, const struct evbuffer_ptr *start, const struct evbuffer_ptr *end) +{ + struct evbuffer_ptr pos; + struct evbuffer_chain *chain, *last_chain = NULL; + const unsigned char *p; + char first; + + EVBUFFER_LOCK(buffer); + + if (start) { + memcpy(&pos, start, sizeof(pos)); + chain = pos.internal_.chain; + } else { + pos.pos = 0; + chain = pos.internal_.chain = buffer->first; + pos.internal_.pos_in_chain = 0; + } + + if (end) + last_chain = end->internal_.chain; + + if (!len || len > EV_SSIZE_MAX) + goto done; + + first = what[0]; + + while (chain) { + const unsigned char *start_at = + chain->buffer + chain->misalign + + pos.internal_.pos_in_chain; + p = memchr(start_at, first, + chain->off - pos.internal_.pos_in_chain); + if (p) { + pos.pos += p - start_at; + pos.internal_.pos_in_chain += p - start_at; + if (!evbuffer_ptr_memcmp(buffer, &pos, what, len)) { + if (end && pos.pos + (ev_ssize_t)len > end->pos) + goto not_found; + else + goto done; + } + ++pos.pos; + ++pos.internal_.pos_in_chain; + if (pos.internal_.pos_in_chain == chain->off) { + chain = pos.internal_.chain = chain->next; + pos.internal_.pos_in_chain = 0; + } + } else { + if (chain == last_chain) + goto not_found; + pos.pos += chain->off - pos.internal_.pos_in_chain; + chain = pos.internal_.chain = chain->next; + pos.internal_.pos_in_chain = 0; + } + } + +not_found: + PTR_NOT_FOUND(&pos); +done: + EVBUFFER_UNLOCK(buffer); + return pos; +} + +int +evbuffer_peek(struct evbuffer *buffer, ev_ssize_t len, + struct evbuffer_ptr *start_at, + struct evbuffer_iovec *vec, int n_vec) +{ + struct evbuffer_chain *chain; + int idx = 0; + ev_ssize_t len_so_far = 0; + + /* Avoid locking in trivial edge cases */ + if (start_at && start_at->internal_.chain == NULL) + return 0; + + EVBUFFER_LOCK(buffer); + + if (start_at) { + chain = start_at->internal_.chain; + len_so_far = chain->off + - start_at->internal_.pos_in_chain; + idx = 1; + if (n_vec > 0) { + vec[0].iov_base = (void *)(chain->buffer + chain->misalign + + start_at->internal_.pos_in_chain); + vec[0].iov_len = len_so_far; + } + chain = chain->next; + } else { + chain = buffer->first; + } + + if (n_vec == 0 && len < 0) { + /* If no vectors are provided and they asked for "everything", + * pretend they asked for the actual available amount. */ + len = buffer->total_len; + if (start_at) { + len -= start_at->pos; + } + } + + while (chain) { + if (len >= 0 && len_so_far >= len) + break; + if (idxbuffer + chain->misalign); + vec[idx].iov_len = chain->off; + } else if (len<0) { + break; + } + ++idx; + len_so_far += chain->off; + chain = chain->next; + } + + EVBUFFER_UNLOCK(buffer); + + return idx; +} + + +int +evbuffer_add_vprintf(struct evbuffer *buf, const char *fmt, va_list ap) +{ + char *buffer; + size_t space; + int sz, result = -1; + va_list aq; + struct evbuffer_chain *chain; + + + EVBUFFER_LOCK(buf); + + if (buf->freeze_end) { + goto done; + } + + /* make sure that at least some space is available */ + if ((chain = evbuffer_expand_singlechain(buf, 64)) == NULL) + goto done; + + for (;;) { +#if 0 + size_t used = chain->misalign + chain->off; + buffer = (char *)chain->buffer + chain->misalign + chain->off; + EVUTIL_ASSERT(chain->buffer_len >= used); + space = chain->buffer_len - used; +#endif + buffer = (char*) CHAIN_SPACE_PTR(chain); + space = (size_t) CHAIN_SPACE_LEN(chain); + +#ifndef va_copy +#define va_copy(dst, src) memcpy(&(dst), &(src), sizeof(va_list)) +#endif + va_copy(aq, ap); + + sz = evutil_vsnprintf(buffer, space, fmt, aq); + + va_end(aq); + + if (sz < 0) + goto done; + if (INT_MAX >= EVBUFFER_CHAIN_MAX && + (size_t)sz >= EVBUFFER_CHAIN_MAX) + goto done; + if ((size_t)sz < space) { + chain->off += sz; + buf->total_len += sz; + buf->n_add_for_cb += sz; + + advance_last_with_data(buf); + evbuffer_invoke_callbacks_(buf); + result = sz; + goto done; + } + if ((chain = evbuffer_expand_singlechain(buf, sz + 1)) == NULL) + goto done; + } + /* NOTREACHED */ + +done: + EVBUFFER_UNLOCK(buf); + return result; +} + +int +evbuffer_add_printf(struct evbuffer *buf, const char *fmt, ...) +{ + int res = -1; + va_list ap; + + va_start(ap, fmt); + res = evbuffer_add_vprintf(buf, fmt, ap); + va_end(ap); + + return (res); +} + +int +evbuffer_add_reference(struct evbuffer *outbuf, + const void *data, size_t datlen, + evbuffer_ref_cleanup_cb cleanupfn, void *extra) +{ + struct evbuffer_chain *chain; + struct evbuffer_chain_reference *info; + int result = -1; + + chain = evbuffer_chain_new(sizeof(struct evbuffer_chain_reference)); + if (!chain) + return (-1); + chain->flags |= EVBUFFER_REFERENCE | EVBUFFER_IMMUTABLE; + chain->buffer = (unsigned char *)data; + chain->buffer_len = datlen; + chain->off = datlen; + + info = EVBUFFER_CHAIN_EXTRA(struct evbuffer_chain_reference, chain); + info->cleanupfn = cleanupfn; + info->extra = extra; + + EVBUFFER_LOCK(outbuf); + if (outbuf->freeze_end) { + /* don't call chain_free; we do not want to actually invoke + * the cleanup function */ + mm_free(chain); + goto done; + } + evbuffer_chain_insert(outbuf, chain); + outbuf->n_add_for_cb += datlen; + + evbuffer_invoke_callbacks_(outbuf); + + result = 0; +done: + EVBUFFER_UNLOCK(outbuf); + + return result; +} + +/* TODO(niels): we may want to add to automagically convert to mmap, in + * case evbuffer_remove() or evbuffer_pullup() are being used. + */ +struct evbuffer_file_segment * +evbuffer_file_segment_new( + int fd, ev_off_t offset, ev_off_t length, unsigned flags) +{ + struct evbuffer_file_segment *seg = + mm_calloc(sizeof(struct evbuffer_file_segment), 1); + if (!seg) + return NULL; + seg->refcnt = 1; + seg->fd = fd; + seg->flags = flags; + seg->file_offset = offset; + seg->cleanup_cb = NULL; + seg->cleanup_cb_arg = NULL; +#ifdef _WIN32 +#ifndef lseek +#define lseek _lseeki64 +#endif +#ifndef fstat +#define fstat _fstat +#endif +#ifndef stat +#define stat _stat +#endif +#endif + if (length == -1) { + struct stat st; + if (fstat(fd, &st) < 0) + goto err; + length = st.st_size; + } + seg->length = length; + + if (offset < 0 || length < 0 || + ((ev_uint64_t)length > EVBUFFER_CHAIN_MAX) || + (ev_uint64_t)offset > (ev_uint64_t)(EVBUFFER_CHAIN_MAX - length)) + goto err; + +#if defined(USE_SENDFILE) + if (!(flags & EVBUF_FS_DISABLE_SENDFILE)) { + seg->can_sendfile = 1; + goto done; + } +#endif + + if (evbuffer_file_segment_materialize(seg)<0) + goto err; + +#if defined(USE_SENDFILE) +done: +#endif + if (!(flags & EVBUF_FS_DISABLE_LOCKING)) { + EVTHREAD_ALLOC_LOCK(seg->lock, 0); + } + return seg; +err: + mm_free(seg); + return NULL; +} + +#ifdef EVENT__HAVE_MMAP +static long +get_page_size(void) +{ +#ifdef SC_PAGE_SIZE + return sysconf(SC_PAGE_SIZE); +#elif defined(_SC_PAGE_SIZE) + return sysconf(_SC_PAGE_SIZE); +#else + return 1; +#endif +} +#endif + +/* DOCDOC */ +/* Requires lock */ +static int +evbuffer_file_segment_materialize(struct evbuffer_file_segment *seg) +{ + const unsigned flags = seg->flags; + const int fd = seg->fd; + const ev_off_t length = seg->length; + const ev_off_t offset = seg->file_offset; + + if (seg->contents) + return 0; /* already materialized */ + +#if defined(EVENT__HAVE_MMAP) + if (!(flags & EVBUF_FS_DISABLE_MMAP)) { + off_t offset_rounded = 0, offset_leftover = 0; + void *mapped; + if (offset) { + /* mmap implementations don't generally like us + * to have an offset that isn't a round */ + long page_size = get_page_size(); + if (page_size == -1) + goto err; + offset_leftover = offset % page_size; + offset_rounded = offset - offset_leftover; + } + mapped = mmap(NULL, length + offset_leftover, + PROT_READ, +#ifdef MAP_NOCACHE + MAP_NOCACHE | /* ??? */ +#endif +#ifdef MAP_FILE + MAP_FILE | +#endif + MAP_PRIVATE, + fd, offset_rounded); + if (mapped == MAP_FAILED) { + event_warn("%s: mmap(%d, %d, %zu) failed", + __func__, fd, 0, (size_t)(offset + length)); + } else { + seg->mapping = mapped; + seg->contents = (char*)mapped+offset_leftover; + seg->mmap_offset = 0; + seg->is_mapping = 1; + goto done; + } + } +#endif +#ifdef _WIN32 + if (!(flags & EVBUF_FS_DISABLE_MMAP)) { + intptr_t h = _get_osfhandle(fd); + HANDLE m; + ev_uint64_t total_size = length+offset; + if ((HANDLE)h == INVALID_HANDLE_VALUE) + goto err; + m = CreateFileMapping((HANDLE)h, NULL, PAGE_READONLY, + (total_size >> 32), total_size & 0xfffffffful, + NULL); + if (m != INVALID_HANDLE_VALUE) { /* Does h leak? */ + seg->mapping_handle = m; + seg->mmap_offset = offset; + seg->is_mapping = 1; + goto done; + } + } +#endif + { + ev_off_t start_pos = lseek(fd, 0, SEEK_CUR), pos; + ev_off_t read_so_far = 0; + char *mem; + int e; + ev_ssize_t n = 0; + if (!(mem = mm_malloc(length))) + goto err; + if (start_pos < 0) { + mm_free(mem); + goto err; + } + if (lseek(fd, offset, SEEK_SET) < 0) { + mm_free(mem); + goto err; + } + while (read_so_far < length) { + n = read(fd, mem+read_so_far, length-read_so_far); + if (n <= 0) + break; + read_so_far += n; + } + + e = errno; + pos = lseek(fd, start_pos, SEEK_SET); + if (n < 0 || (n == 0 && length > read_so_far)) { + mm_free(mem); + errno = e; + goto err; + } else if (pos < 0) { + mm_free(mem); + goto err; + } + + seg->contents = mem; + } + +done: + return 0; +err: + return -1; +} + +void evbuffer_file_segment_add_cleanup_cb(struct evbuffer_file_segment *seg, + evbuffer_file_segment_cleanup_cb cb, void* arg) +{ + EVUTIL_ASSERT(seg->refcnt > 0); + seg->cleanup_cb = cb; + seg->cleanup_cb_arg = arg; +} + +void +evbuffer_file_segment_free(struct evbuffer_file_segment *seg) +{ + int refcnt; + EVLOCK_LOCK(seg->lock, 0); + refcnt = --seg->refcnt; + EVLOCK_UNLOCK(seg->lock, 0); + if (refcnt > 0) + return; + EVUTIL_ASSERT(refcnt == 0); + + if (seg->is_mapping) { +#ifdef _WIN32 + CloseHandle(seg->mapping_handle); +#elif defined (EVENT__HAVE_MMAP) + off_t offset_leftover; + offset_leftover = seg->file_offset % get_page_size(); + if (munmap(seg->mapping, seg->length + offset_leftover) == -1) + event_warn("%s: munmap failed", __func__); +#endif + } else if (seg->contents) { + mm_free(seg->contents); + } + + if ((seg->flags & EVBUF_FS_CLOSE_ON_FREE) && seg->fd >= 0) { + close(seg->fd); + } + + if (seg->cleanup_cb) { + (*seg->cleanup_cb)((struct evbuffer_file_segment const*)seg, + seg->flags, seg->cleanup_cb_arg); + seg->cleanup_cb = NULL; + seg->cleanup_cb_arg = NULL; + } + + EVTHREAD_FREE_LOCK(seg->lock, 0); + mm_free(seg); +} + +int +evbuffer_add_file_segment(struct evbuffer *buf, + struct evbuffer_file_segment *seg, ev_off_t offset, ev_off_t length) +{ + struct evbuffer_chain *chain; + struct evbuffer_chain_file_segment *extra; + int can_use_sendfile = 0; + + EVBUFFER_LOCK(buf); + EVLOCK_LOCK(seg->lock, 0); + if (buf->flags & EVBUFFER_FLAG_DRAINS_TO_FD) { + can_use_sendfile = 1; + } else { + if (!seg->contents) { + if (evbuffer_file_segment_materialize(seg)<0) { + EVLOCK_UNLOCK(seg->lock, 0); + EVBUFFER_UNLOCK(buf); + return -1; + } + } + } + ++seg->refcnt; + EVLOCK_UNLOCK(seg->lock, 0); + + if (buf->freeze_end) + goto err; + + if (length < 0) { + if (offset > seg->length) + goto err; + length = seg->length - offset; + } + + /* Can we actually add this? */ + if (offset+length > seg->length) + goto err; + + chain = evbuffer_chain_new(sizeof(struct evbuffer_chain_file_segment)); + if (!chain) + goto err; + extra = EVBUFFER_CHAIN_EXTRA(struct evbuffer_chain_file_segment, chain); + + chain->flags |= EVBUFFER_IMMUTABLE|EVBUFFER_FILESEGMENT; + if (can_use_sendfile && seg->can_sendfile) { + chain->flags |= EVBUFFER_SENDFILE; + chain->misalign = seg->file_offset + offset; + chain->off = length; + chain->buffer_len = chain->misalign + length; + } else if (seg->is_mapping) { +#ifdef _WIN32 + ev_uint64_t total_offset = seg->mmap_offset+offset; + ev_uint64_t offset_rounded=0, offset_remaining=0; + LPVOID data; + if (total_offset) { + SYSTEM_INFO si; + memset(&si, 0, sizeof(si)); /* cargo cult */ + GetSystemInfo(&si); + offset_remaining = total_offset % si.dwAllocationGranularity; + offset_rounded = total_offset - offset_remaining; + } + data = MapViewOfFile( + seg->mapping_handle, + FILE_MAP_READ, + offset_rounded >> 32, + offset_rounded & 0xfffffffful, + length + offset_remaining); + if (data == NULL) { + mm_free(chain); + goto err; + } + chain->buffer = (unsigned char*) data; + chain->buffer_len = length+offset_remaining; + chain->misalign = offset_remaining; + chain->off = length; +#else + chain->buffer = (unsigned char*)(seg->contents + offset); + chain->buffer_len = length; + chain->off = length; +#endif + } else { + chain->buffer = (unsigned char*)(seg->contents + offset); + chain->buffer_len = length; + chain->off = length; + } + + extra->segment = seg; + buf->n_add_for_cb += length; + evbuffer_chain_insert(buf, chain); + + evbuffer_invoke_callbacks_(buf); + + EVBUFFER_UNLOCK(buf); + + return 0; +err: + EVBUFFER_UNLOCK(buf); + evbuffer_file_segment_free(seg); /* Lowers the refcount */ + return -1; +} + +int +evbuffer_add_file(struct evbuffer *buf, int fd, ev_off_t offset, ev_off_t length) +{ + struct evbuffer_file_segment *seg; + unsigned flags = EVBUF_FS_CLOSE_ON_FREE; + int r; + + seg = evbuffer_file_segment_new(fd, offset, length, flags); + if (!seg) + return -1; + r = evbuffer_add_file_segment(buf, seg, 0, length); + if (r == 0) + evbuffer_file_segment_free(seg); + return r; +} + +void +evbuffer_setcb(struct evbuffer *buffer, evbuffer_cb cb, void *cbarg) +{ + EVBUFFER_LOCK(buffer); + + if (!LIST_EMPTY(&buffer->callbacks)) + evbuffer_remove_all_callbacks(buffer); + + if (cb) { + struct evbuffer_cb_entry *ent = + evbuffer_add_cb(buffer, NULL, cbarg); + ent->cb.cb_obsolete = cb; + ent->flags |= EVBUFFER_CB_OBSOLETE; + } + EVBUFFER_UNLOCK(buffer); +} + +struct evbuffer_cb_entry * +evbuffer_add_cb(struct evbuffer *buffer, evbuffer_cb_func cb, void *cbarg) +{ + struct evbuffer_cb_entry *e; + if (! (e = mm_calloc(1, sizeof(struct evbuffer_cb_entry)))) + return NULL; + EVBUFFER_LOCK(buffer); + e->cb.cb_func = cb; + e->cbarg = cbarg; + e->flags = EVBUFFER_CB_ENABLED; + LIST_INSERT_HEAD(&buffer->callbacks, e, next); + EVBUFFER_UNLOCK(buffer); + return e; +} + +int +evbuffer_remove_cb_entry(struct evbuffer *buffer, + struct evbuffer_cb_entry *ent) +{ + EVBUFFER_LOCK(buffer); + LIST_REMOVE(ent, next); + EVBUFFER_UNLOCK(buffer); + mm_free(ent); + return 0; +} + +int +evbuffer_remove_cb(struct evbuffer *buffer, evbuffer_cb_func cb, void *cbarg) +{ + struct evbuffer_cb_entry *cbent; + int result = -1; + EVBUFFER_LOCK(buffer); + LIST_FOREACH(cbent, &buffer->callbacks, next) { + if (cb == cbent->cb.cb_func && cbarg == cbent->cbarg) { + result = evbuffer_remove_cb_entry(buffer, cbent); + goto done; + } + } +done: + EVBUFFER_UNLOCK(buffer); + return result; +} + +int +evbuffer_cb_set_flags(struct evbuffer *buffer, + struct evbuffer_cb_entry *cb, ev_uint32_t flags) +{ + /* the user isn't allowed to mess with these. */ + flags &= ~EVBUFFER_CB_INTERNAL_FLAGS; + EVBUFFER_LOCK(buffer); + cb->flags |= flags; + EVBUFFER_UNLOCK(buffer); + return 0; +} + +int +evbuffer_cb_clear_flags(struct evbuffer *buffer, + struct evbuffer_cb_entry *cb, ev_uint32_t flags) +{ + /* the user isn't allowed to mess with these. */ + flags &= ~EVBUFFER_CB_INTERNAL_FLAGS; + EVBUFFER_LOCK(buffer); + cb->flags &= ~flags; + EVBUFFER_UNLOCK(buffer); + return 0; +} + +int +evbuffer_freeze(struct evbuffer *buffer, int start) +{ + EVBUFFER_LOCK(buffer); + if (start) + buffer->freeze_start = 1; + else + buffer->freeze_end = 1; + EVBUFFER_UNLOCK(buffer); + return 0; +} + +int +evbuffer_unfreeze(struct evbuffer *buffer, int start) +{ + EVBUFFER_LOCK(buffer); + if (start) + buffer->freeze_start = 0; + else + buffer->freeze_end = 0; + EVBUFFER_UNLOCK(buffer); + return 0; +} + +#if 0 +void +evbuffer_cb_suspend(struct evbuffer *buffer, struct evbuffer_cb_entry *cb) +{ + if (!(cb->flags & EVBUFFER_CB_SUSPENDED)) { + cb->size_before_suspend = evbuffer_get_length(buffer); + cb->flags |= EVBUFFER_CB_SUSPENDED; + } +} + +void +evbuffer_cb_unsuspend(struct evbuffer *buffer, struct evbuffer_cb_entry *cb) +{ + if ((cb->flags & EVBUFFER_CB_SUSPENDED)) { + unsigned call = (cb->flags & EVBUFFER_CB_CALL_ON_UNSUSPEND); + size_t sz = cb->size_before_suspend; + cb->flags &= ~(EVBUFFER_CB_SUSPENDED| + EVBUFFER_CB_CALL_ON_UNSUSPEND); + cb->size_before_suspend = 0; + if (call && (cb->flags & EVBUFFER_CB_ENABLED)) { + cb->cb(buffer, sz, evbuffer_get_length(buffer), cb->cbarg); + } + } +} +#endif + +int +evbuffer_get_callbacks_(struct evbuffer *buffer, struct event_callback **cbs, + int max_cbs) +{ + int r = 0; + EVBUFFER_LOCK(buffer); + if (buffer->deferred_cbs) { + if (max_cbs < 1) { + r = -1; + goto done; + } + cbs[0] = &buffer->deferred; + r = 1; + } +done: + EVBUFFER_UNLOCK(buffer); + return r; +} diff -Nru mysql-5.7-5.7.25/extra/libevent/bufferevent_async.c mysql-5.7-5.7.26/extra/libevent/bufferevent_async.c --- mysql-5.7-5.7.25/extra/libevent/bufferevent_async.c 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/bufferevent_async.c 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,686 @@ +/* + * Copyright (c) 2009-2012 Niels Provos and Nick Mathewson + * + * All rights reserved. + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ + +#include "event2/event-config.h" +#include "evconfig-private.h" + +#ifdef EVENT__HAVE_SYS_TIME_H +#include +#endif + +#include +#include +#include +#include +#ifdef EVENT__HAVE_STDARG_H +#include +#endif +#ifdef EVENT__HAVE_UNISTD_H +#include +#endif + +#ifdef _WIN32 +#include +#include +#endif + +#include + +#include "event2/util.h" +#include "event2/bufferevent.h" +#include "event2/buffer.h" +#include "event2/bufferevent_struct.h" +#include "event2/event.h" +#include "event2/util.h" +#include "event-internal.h" +#include "log-internal.h" +#include "mm-internal.h" +#include "bufferevent-internal.h" +#include "util-internal.h" +#include "iocp-internal.h" + +#ifndef SO_UPDATE_CONNECT_CONTEXT +/* Mingw is sometimes missing this */ +#define SO_UPDATE_CONNECT_CONTEXT 0x7010 +#endif + +/* prototypes */ +static int be_async_enable(struct bufferevent *, short); +static int be_async_disable(struct bufferevent *, short); +static void be_async_destruct(struct bufferevent *); +static int be_async_flush(struct bufferevent *, short, enum bufferevent_flush_mode); +static int be_async_ctrl(struct bufferevent *, enum bufferevent_ctrl_op, union bufferevent_ctrl_data *); + +struct bufferevent_async { + struct bufferevent_private bev; + struct event_overlapped connect_overlapped; + struct event_overlapped read_overlapped; + struct event_overlapped write_overlapped; + size_t read_in_progress; + size_t write_in_progress; + unsigned ok : 1; + unsigned read_added : 1; + unsigned write_added : 1; +}; + +const struct bufferevent_ops bufferevent_ops_async = { + "socket_async", + evutil_offsetof(struct bufferevent_async, bev.bev), + be_async_enable, + be_async_disable, + NULL, /* Unlink */ + be_async_destruct, + bufferevent_generic_adj_timeouts_, + be_async_flush, + be_async_ctrl, +}; + +static inline struct bufferevent_async * +upcast(struct bufferevent *bev) +{ + struct bufferevent_async *bev_a; + if (bev->be_ops != &bufferevent_ops_async) + return NULL; + bev_a = EVUTIL_UPCAST(bev, struct bufferevent_async, bev.bev); + return bev_a; +} + +static inline struct bufferevent_async * +upcast_connect(struct event_overlapped *eo) +{ + struct bufferevent_async *bev_a; + bev_a = EVUTIL_UPCAST(eo, struct bufferevent_async, connect_overlapped); + EVUTIL_ASSERT(BEV_IS_ASYNC(&bev_a->bev.bev)); + return bev_a; +} + +static inline struct bufferevent_async * +upcast_read(struct event_overlapped *eo) +{ + struct bufferevent_async *bev_a; + bev_a = EVUTIL_UPCAST(eo, struct bufferevent_async, read_overlapped); + EVUTIL_ASSERT(BEV_IS_ASYNC(&bev_a->bev.bev)); + return bev_a; +} + +static inline struct bufferevent_async * +upcast_write(struct event_overlapped *eo) +{ + struct bufferevent_async *bev_a; + bev_a = EVUTIL_UPCAST(eo, struct bufferevent_async, write_overlapped); + EVUTIL_ASSERT(BEV_IS_ASYNC(&bev_a->bev.bev)); + return bev_a; +} + +static void +bev_async_del_write(struct bufferevent_async *beva) +{ + struct bufferevent *bev = &beva->bev.bev; + + if (beva->write_added) { + beva->write_added = 0; + event_base_del_virtual_(bev->ev_base); + } +} + +static void +bev_async_del_read(struct bufferevent_async *beva) +{ + struct bufferevent *bev = &beva->bev.bev; + + if (beva->read_added) { + beva->read_added = 0; + event_base_del_virtual_(bev->ev_base); + } +} + +static void +bev_async_add_write(struct bufferevent_async *beva) +{ + struct bufferevent *bev = &beva->bev.bev; + + if (!beva->write_added) { + beva->write_added = 1; + event_base_add_virtual_(bev->ev_base); + } +} + +static void +bev_async_add_read(struct bufferevent_async *beva) +{ + struct bufferevent *bev = &beva->bev.bev; + + if (!beva->read_added) { + beva->read_added = 1; + event_base_add_virtual_(bev->ev_base); + } +} + +static void +bev_async_consider_writing(struct bufferevent_async *beva) +{ + size_t at_most; + int limit; + struct bufferevent *bev = &beva->bev.bev; + + /* Don't write if there's a write in progress, or we do not + * want to write, or when there's nothing left to write. */ + if (beva->write_in_progress || beva->bev.connecting) + return; + if (!beva->ok || !(bev->enabled&EV_WRITE) || + !evbuffer_get_length(bev->output)) { + bev_async_del_write(beva); + return; + } + + at_most = evbuffer_get_length(bev->output); + + /* This is safe so long as bufferevent_get_write_max never returns + * more than INT_MAX. That's true for now. XXXX */ + limit = (int)bufferevent_get_write_max_(&beva->bev); + if (at_most >= (size_t)limit && limit >= 0) + at_most = limit; + + if (beva->bev.write_suspended) { + bev_async_del_write(beva); + return; + } + + /* XXXX doesn't respect low-water mark very well. */ + bufferevent_incref_(bev); + if (evbuffer_launch_write_(bev->output, at_most, + &beva->write_overlapped)) { + bufferevent_decref_(bev); + beva->ok = 0; + bufferevent_run_eventcb_(bev, BEV_EVENT_ERROR, 0); + } else { + beva->write_in_progress = at_most; + bufferevent_decrement_write_buckets_(&beva->bev, at_most); + bev_async_add_write(beva); + } +} + +static void +bev_async_consider_reading(struct bufferevent_async *beva) +{ + size_t cur_size; + size_t read_high; + size_t at_most; + int limit; + struct bufferevent *bev = &beva->bev.bev; + + /* Don't read if there is a read in progress, or we do not + * want to read. */ + if (beva->read_in_progress || beva->bev.connecting) + return; + if (!beva->ok || !(bev->enabled&EV_READ)) { + bev_async_del_read(beva); + return; + } + + /* Don't read if we're full */ + cur_size = evbuffer_get_length(bev->input); + read_high = bev->wm_read.high; + if (read_high) { + if (cur_size >= read_high) { + bev_async_del_read(beva); + return; + } + at_most = read_high - cur_size; + } else { + at_most = 16384; /* FIXME totally magic. */ + } + + /* XXXX This over-commits. */ + /* XXXX see also not above on cast on bufferevent_get_write_max_() */ + limit = (int)bufferevent_get_read_max_(&beva->bev); + if (at_most >= (size_t)limit && limit >= 0) + at_most = limit; + + if (beva->bev.read_suspended) { + bev_async_del_read(beva); + return; + } + + bufferevent_incref_(bev); + if (evbuffer_launch_read_(bev->input, at_most, &beva->read_overlapped)) { + beva->ok = 0; + bufferevent_run_eventcb_(bev, BEV_EVENT_ERROR, 0); + bufferevent_decref_(bev); + } else { + beva->read_in_progress = at_most; + bufferevent_decrement_read_buckets_(&beva->bev, at_most); + bev_async_add_read(beva); + } + + return; +} + +static void +be_async_outbuf_callback(struct evbuffer *buf, + const struct evbuffer_cb_info *cbinfo, + void *arg) +{ + struct bufferevent *bev = arg; + struct bufferevent_async *bev_async = upcast(bev); + + /* If we added data to the outbuf and were not writing before, + * we may want to write now. */ + + bufferevent_incref_and_lock_(bev); + + if (cbinfo->n_added) + bev_async_consider_writing(bev_async); + + bufferevent_decref_and_unlock_(bev); +} + +static void +be_async_inbuf_callback(struct evbuffer *buf, + const struct evbuffer_cb_info *cbinfo, + void *arg) +{ + struct bufferevent *bev = arg; + struct bufferevent_async *bev_async = upcast(bev); + + /* If we drained data from the inbuf and were not reading before, + * we may want to read now */ + + bufferevent_incref_and_lock_(bev); + + if (cbinfo->n_deleted) + bev_async_consider_reading(bev_async); + + bufferevent_decref_and_unlock_(bev); +} + +static int +be_async_enable(struct bufferevent *buf, short what) +{ + struct bufferevent_async *bev_async = upcast(buf); + + if (!bev_async->ok) + return -1; + + if (bev_async->bev.connecting) { + /* Don't launch anything during connection attempts. */ + return 0; + } + + if (what & EV_READ) + BEV_RESET_GENERIC_READ_TIMEOUT(buf); + if (what & EV_WRITE) + BEV_RESET_GENERIC_WRITE_TIMEOUT(buf); + + /* If we newly enable reading or writing, and we aren't reading or + writing already, consider launching a new read or write. */ + + if (what & EV_READ) + bev_async_consider_reading(bev_async); + if (what & EV_WRITE) + bev_async_consider_writing(bev_async); + return 0; +} + +static int +be_async_disable(struct bufferevent *bev, short what) +{ + struct bufferevent_async *bev_async = upcast(bev); + /* XXXX If we disable reading or writing, we may want to consider + * canceling any in-progress read or write operation, though it might + * not work. */ + + if (what & EV_READ) { + BEV_DEL_GENERIC_READ_TIMEOUT(bev); + bev_async_del_read(bev_async); + } + if (what & EV_WRITE) { + BEV_DEL_GENERIC_WRITE_TIMEOUT(bev); + bev_async_del_write(bev_async); + } + + return 0; +} + +static void +be_async_destruct(struct bufferevent *bev) +{ + struct bufferevent_async *bev_async = upcast(bev); + struct bufferevent_private *bev_p = BEV_UPCAST(bev); + evutil_socket_t fd; + + EVUTIL_ASSERT(!upcast(bev)->write_in_progress && + !upcast(bev)->read_in_progress); + + bev_async_del_read(bev_async); + bev_async_del_write(bev_async); + + fd = evbuffer_overlapped_get_fd_(bev->input); + if (fd != (evutil_socket_t)INVALID_SOCKET && + (bev_p->options & BEV_OPT_CLOSE_ON_FREE)) { + evutil_closesocket(fd); + evbuffer_overlapped_set_fd_(bev->input, INVALID_SOCKET); + } +} + +/* GetQueuedCompletionStatus doesn't reliably yield WSA error codes, so + * we use WSAGetOverlappedResult to translate. */ +static void +bev_async_set_wsa_error(struct bufferevent *bev, struct event_overlapped *eo) +{ + DWORD bytes, flags; + evutil_socket_t fd; + + fd = evbuffer_overlapped_get_fd_(bev->input); + WSAGetOverlappedResult(fd, &eo->overlapped, &bytes, FALSE, &flags); +} + +static int +be_async_flush(struct bufferevent *bev, short what, + enum bufferevent_flush_mode mode) +{ + return 0; +} + +static void +connect_complete(struct event_overlapped *eo, ev_uintptr_t key, + ev_ssize_t nbytes, int ok) +{ + struct bufferevent_async *bev_a = upcast_connect(eo); + struct bufferevent *bev = &bev_a->bev.bev; + evutil_socket_t sock; + + BEV_LOCK(bev); + + EVUTIL_ASSERT(bev_a->bev.connecting); + bev_a->bev.connecting = 0; + sock = evbuffer_overlapped_get_fd_(bev_a->bev.bev.input); + /* XXXX Handle error? */ + setsockopt(sock, SOL_SOCKET, SO_UPDATE_CONNECT_CONTEXT, NULL, 0); + + if (ok) + bufferevent_async_set_connected_(bev); + else + bev_async_set_wsa_error(bev, eo); + + bufferevent_run_eventcb_(bev, + ok? BEV_EVENT_CONNECTED : BEV_EVENT_ERROR, 0); + + event_base_del_virtual_(bev->ev_base); + + bufferevent_decref_and_unlock_(bev); +} + +static void +read_complete(struct event_overlapped *eo, ev_uintptr_t key, + ev_ssize_t nbytes, int ok) +{ + struct bufferevent_async *bev_a = upcast_read(eo); + struct bufferevent *bev = &bev_a->bev.bev; + short what = BEV_EVENT_READING; + ev_ssize_t amount_unread; + BEV_LOCK(bev); + EVUTIL_ASSERT(bev_a->read_in_progress); + + amount_unread = bev_a->read_in_progress - nbytes; + evbuffer_commit_read_(bev->input, nbytes); + bev_a->read_in_progress = 0; + if (amount_unread) + bufferevent_decrement_read_buckets_(&bev_a->bev, -amount_unread); + + if (!ok) + bev_async_set_wsa_error(bev, eo); + + if (bev_a->ok) { + if (ok && nbytes) { + BEV_RESET_GENERIC_READ_TIMEOUT(bev); + bufferevent_trigger_nolock_(bev, EV_READ, 0); + bev_async_consider_reading(bev_a); + } else if (!ok) { + what |= BEV_EVENT_ERROR; + bev_a->ok = 0; + bufferevent_run_eventcb_(bev, what, 0); + } else if (!nbytes) { + what |= BEV_EVENT_EOF; + bev_a->ok = 0; + bufferevent_run_eventcb_(bev, what, 0); + } + } + + bufferevent_decref_and_unlock_(bev); +} + +static void +write_complete(struct event_overlapped *eo, ev_uintptr_t key, + ev_ssize_t nbytes, int ok) +{ + struct bufferevent_async *bev_a = upcast_write(eo); + struct bufferevent *bev = &bev_a->bev.bev; + short what = BEV_EVENT_WRITING; + ev_ssize_t amount_unwritten; + + BEV_LOCK(bev); + EVUTIL_ASSERT(bev_a->write_in_progress); + + amount_unwritten = bev_a->write_in_progress - nbytes; + evbuffer_commit_write_(bev->output, nbytes); + bev_a->write_in_progress = 0; + + if (amount_unwritten) + bufferevent_decrement_write_buckets_(&bev_a->bev, + -amount_unwritten); + + + if (!ok) + bev_async_set_wsa_error(bev, eo); + + if (bev_a->ok) { + if (ok && nbytes) { + BEV_RESET_GENERIC_WRITE_TIMEOUT(bev); + bufferevent_trigger_nolock_(bev, EV_WRITE, 0); + bev_async_consider_writing(bev_a); + } else if (!ok) { + what |= BEV_EVENT_ERROR; + bev_a->ok = 0; + bufferevent_run_eventcb_(bev, what, 0); + } else if (!nbytes) { + what |= BEV_EVENT_EOF; + bev_a->ok = 0; + bufferevent_run_eventcb_(bev, what, 0); + } + } + + bufferevent_decref_and_unlock_(bev); +} + +struct bufferevent * +bufferevent_async_new_(struct event_base *base, + evutil_socket_t fd, int options) +{ + struct bufferevent_async *bev_a; + struct bufferevent *bev; + struct event_iocp_port *iocp; + + options |= BEV_OPT_THREADSAFE; + + if (!(iocp = event_base_get_iocp_(base))) + return NULL; + + if (fd >= 0 && event_iocp_port_associate_(iocp, fd, 1)<0) { + int err = GetLastError(); + /* We may have alrady associated this fd with a port. + * Let's hope it's this port, and that the error code + * for doing this neer changes. */ + if (err != ERROR_INVALID_PARAMETER) + return NULL; + } + + if (!(bev_a = mm_calloc(1, sizeof(struct bufferevent_async)))) + return NULL; + + bev = &bev_a->bev.bev; + if (!(bev->input = evbuffer_overlapped_new_(fd))) { + mm_free(bev_a); + return NULL; + } + if (!(bev->output = evbuffer_overlapped_new_(fd))) { + evbuffer_free(bev->input); + mm_free(bev_a); + return NULL; + } + + if (bufferevent_init_common_(&bev_a->bev, base, &bufferevent_ops_async, + options)<0) + goto err; + + evbuffer_add_cb(bev->input, be_async_inbuf_callback, bev); + evbuffer_add_cb(bev->output, be_async_outbuf_callback, bev); + + event_overlapped_init_(&bev_a->connect_overlapped, connect_complete); + event_overlapped_init_(&bev_a->read_overlapped, read_complete); + event_overlapped_init_(&bev_a->write_overlapped, write_complete); + + bufferevent_init_generic_timeout_cbs_(bev); + + bev_a->ok = fd >= 0; + + return bev; +err: + bufferevent_free(&bev_a->bev.bev); + return NULL; +} + +void +bufferevent_async_set_connected_(struct bufferevent *bev) +{ + struct bufferevent_async *bev_async = upcast(bev); + bev_async->ok = 1; + bufferevent_init_generic_timeout_cbs_(bev); + /* Now's a good time to consider reading/writing */ + be_async_enable(bev, bev->enabled); +} + +int +bufferevent_async_can_connect_(struct bufferevent *bev) +{ + const struct win32_extension_fns *ext = + event_get_win32_extension_fns_(); + + if (BEV_IS_ASYNC(bev) && + event_base_get_iocp_(bev->ev_base) && + ext && ext->ConnectEx) + return 1; + + return 0; +} + +int +bufferevent_async_connect_(struct bufferevent *bev, evutil_socket_t fd, + const struct sockaddr *sa, int socklen) +{ + BOOL rc; + struct bufferevent_async *bev_async = upcast(bev); + struct sockaddr_storage ss; + const struct win32_extension_fns *ext = + event_get_win32_extension_fns_(); + + EVUTIL_ASSERT(ext && ext->ConnectEx && fd >= 0 && sa != NULL); + + /* ConnectEx() requires that the socket be bound to an address + * with bind() before using, otherwise it will fail. We attempt + * to issue a bind() here, taking into account that the error + * code is set to WSAEINVAL when the socket is already bound. */ + memset(&ss, 0, sizeof(ss)); + if (sa->sa_family == AF_INET) { + struct sockaddr_in *sin = (struct sockaddr_in *)&ss; + sin->sin_family = AF_INET; + sin->sin_addr.s_addr = INADDR_ANY; + } else if (sa->sa_family == AF_INET6) { + struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)&ss; + sin6->sin6_family = AF_INET6; + sin6->sin6_addr = in6addr_any; + } else { + /* Well, the user will have to bind() */ + return -1; + } + if (bind(fd, (struct sockaddr *)&ss, sizeof(ss)) < 0 && + WSAGetLastError() != WSAEINVAL) + return -1; + + event_base_add_virtual_(bev->ev_base); + bufferevent_incref_(bev); + rc = ext->ConnectEx(fd, sa, socklen, NULL, 0, NULL, + &bev_async->connect_overlapped.overlapped); + if (rc || WSAGetLastError() == ERROR_IO_PENDING) + return 0; + + event_base_del_virtual_(bev->ev_base); + bufferevent_decref_(bev); + + return -1; +} + +static int +be_async_ctrl(struct bufferevent *bev, enum bufferevent_ctrl_op op, + union bufferevent_ctrl_data *data) +{ + switch (op) { + case BEV_CTRL_GET_FD: + data->fd = evbuffer_overlapped_get_fd_(bev->input); + return 0; + case BEV_CTRL_SET_FD: { + struct event_iocp_port *iocp; + + if (data->fd == evbuffer_overlapped_get_fd_(bev->input)) + return 0; + if (!(iocp = event_base_get_iocp_(bev->ev_base))) + return -1; + if (event_iocp_port_associate_(iocp, data->fd, 1) < 0) + return -1; + evbuffer_overlapped_set_fd_(bev->input, data->fd); + evbuffer_overlapped_set_fd_(bev->output, data->fd); + return 0; + } + case BEV_CTRL_CANCEL_ALL: { + struct bufferevent_async *bev_a = upcast(bev); + evutil_socket_t fd = evbuffer_overlapped_get_fd_(bev->input); + if (fd != (evutil_socket_t)INVALID_SOCKET && + (bev_a->bev.options & BEV_OPT_CLOSE_ON_FREE)) { + closesocket(fd); + evbuffer_overlapped_set_fd_(bev->input, INVALID_SOCKET); + } + bev_a->ok = 0; + return 0; + } + case BEV_CTRL_GET_UNDERLYING: + default: + return -1; + } +} + + diff -Nru mysql-5.7-5.7.25/extra/libevent/bufferevent.c mysql-5.7-5.7.26/extra/libevent/bufferevent.c --- mysql-5.7-5.7.25/extra/libevent/bufferevent.c 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/bufferevent.c 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,1015 @@ +/* + * Copyright (c) 2002-2007 Niels Provos + * Copyright (c) 2007-2012 Niels Provos, Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ + +#include "event2/event-config.h" +#include "evconfig-private.h" + +#include + +#ifdef EVENT__HAVE_SYS_TIME_H +#include +#endif + +#include +#include +#include +#include +#ifdef EVENT__HAVE_STDARG_H +#include +#endif + +#ifdef _WIN32 +#include +#endif + +#include "event2/util.h" +#include "event2/buffer.h" +#include "event2/buffer_compat.h" +#include "event2/bufferevent.h" +#include "event2/bufferevent_struct.h" +#include "event2/bufferevent_compat.h" +#include "event2/event.h" +#include "event-internal.h" +#include "log-internal.h" +#include "mm-internal.h" +#include "bufferevent-internal.h" +#include "evbuffer-internal.h" +#include "util-internal.h" + +static void bufferevent_cancel_all_(struct bufferevent *bev); +static void bufferevent_finalize_cb_(struct event_callback *evcb, void *arg_); + +void +bufferevent_suspend_read_(struct bufferevent *bufev, bufferevent_suspend_flags what) +{ + struct bufferevent_private *bufev_private = + EVUTIL_UPCAST(bufev, struct bufferevent_private, bev); + BEV_LOCK(bufev); + if (!bufev_private->read_suspended) + bufev->be_ops->disable(bufev, EV_READ); + bufev_private->read_suspended |= what; + BEV_UNLOCK(bufev); +} + +void +bufferevent_unsuspend_read_(struct bufferevent *bufev, bufferevent_suspend_flags what) +{ + struct bufferevent_private *bufev_private = + EVUTIL_UPCAST(bufev, struct bufferevent_private, bev); + BEV_LOCK(bufev); + bufev_private->read_suspended &= ~what; + if (!bufev_private->read_suspended && (bufev->enabled & EV_READ)) + bufev->be_ops->enable(bufev, EV_READ); + BEV_UNLOCK(bufev); +} + +void +bufferevent_suspend_write_(struct bufferevent *bufev, bufferevent_suspend_flags what) +{ + struct bufferevent_private *bufev_private = + EVUTIL_UPCAST(bufev, struct bufferevent_private, bev); + BEV_LOCK(bufev); + if (!bufev_private->write_suspended) + bufev->be_ops->disable(bufev, EV_WRITE); + bufev_private->write_suspended |= what; + BEV_UNLOCK(bufev); +} + +void +bufferevent_unsuspend_write_(struct bufferevent *bufev, bufferevent_suspend_flags what) +{ + struct bufferevent_private *bufev_private = + EVUTIL_UPCAST(bufev, struct bufferevent_private, bev); + BEV_LOCK(bufev); + bufev_private->write_suspended &= ~what; + if (!bufev_private->write_suspended && (bufev->enabled & EV_WRITE)) + bufev->be_ops->enable(bufev, EV_WRITE); + BEV_UNLOCK(bufev); +} + + +/* Callback to implement watermarks on the input buffer. Only enabled + * if the watermark is set. */ +static void +bufferevent_inbuf_wm_cb(struct evbuffer *buf, + const struct evbuffer_cb_info *cbinfo, + void *arg) +{ + struct bufferevent *bufev = arg; + size_t size; + + size = evbuffer_get_length(buf); + + if (size >= bufev->wm_read.high) + bufferevent_wm_suspend_read(bufev); + else + bufferevent_wm_unsuspend_read(bufev); +} + +static void +bufferevent_run_deferred_callbacks_locked(struct event_callback *cb, void *arg) +{ + struct bufferevent_private *bufev_private = arg; + struct bufferevent *bufev = &bufev_private->bev; + + BEV_LOCK(bufev); + if ((bufev_private->eventcb_pending & BEV_EVENT_CONNECTED) && + bufev->errorcb) { + /* The "connected" happened before any reads or writes, so + send it first. */ + bufev_private->eventcb_pending &= ~BEV_EVENT_CONNECTED; + bufev->errorcb(bufev, BEV_EVENT_CONNECTED, bufev->cbarg); + } + if (bufev_private->readcb_pending && bufev->readcb) { + bufev_private->readcb_pending = 0; + bufev->readcb(bufev, bufev->cbarg); + } + if (bufev_private->writecb_pending && bufev->writecb) { + bufev_private->writecb_pending = 0; + bufev->writecb(bufev, bufev->cbarg); + } + if (bufev_private->eventcb_pending && bufev->errorcb) { + short what = bufev_private->eventcb_pending; + int err = bufev_private->errno_pending; + bufev_private->eventcb_pending = 0; + bufev_private->errno_pending = 0; + EVUTIL_SET_SOCKET_ERROR(err); + bufev->errorcb(bufev, what, bufev->cbarg); + } + bufferevent_decref_and_unlock_(bufev); +} + +static void +bufferevent_run_deferred_callbacks_unlocked(struct event_callback *cb, void *arg) +{ + struct bufferevent_private *bufev_private = arg; + struct bufferevent *bufev = &bufev_private->bev; + + BEV_LOCK(bufev); +#define UNLOCKED(stmt) \ + do { BEV_UNLOCK(bufev); stmt; BEV_LOCK(bufev); } while(0) + + if ((bufev_private->eventcb_pending & BEV_EVENT_CONNECTED) && + bufev->errorcb) { + /* The "connected" happened before any reads or writes, so + send it first. */ + bufferevent_event_cb errorcb = bufev->errorcb; + void *cbarg = bufev->cbarg; + bufev_private->eventcb_pending &= ~BEV_EVENT_CONNECTED; + UNLOCKED(errorcb(bufev, BEV_EVENT_CONNECTED, cbarg)); + } + if (bufev_private->readcb_pending && bufev->readcb) { + bufferevent_data_cb readcb = bufev->readcb; + void *cbarg = bufev->cbarg; + bufev_private->readcb_pending = 0; + UNLOCKED(readcb(bufev, cbarg)); + } + if (bufev_private->writecb_pending && bufev->writecb) { + bufferevent_data_cb writecb = bufev->writecb; + void *cbarg = bufev->cbarg; + bufev_private->writecb_pending = 0; + UNLOCKED(writecb(bufev, cbarg)); + } + if (bufev_private->eventcb_pending && bufev->errorcb) { + bufferevent_event_cb errorcb = bufev->errorcb; + void *cbarg = bufev->cbarg; + short what = bufev_private->eventcb_pending; + int err = bufev_private->errno_pending; + bufev_private->eventcb_pending = 0; + bufev_private->errno_pending = 0; + EVUTIL_SET_SOCKET_ERROR(err); + UNLOCKED(errorcb(bufev,what,cbarg)); + } + bufferevent_decref_and_unlock_(bufev); +#undef UNLOCKED +} + +#define SCHEDULE_DEFERRED(bevp) \ + do { \ + if (event_deferred_cb_schedule_( \ + (bevp)->bev.ev_base, \ + &(bevp)->deferred)) \ + bufferevent_incref_(&(bevp)->bev); \ + } while (0) + + +void +bufferevent_run_readcb_(struct bufferevent *bufev, int options) +{ + /* Requires that we hold the lock and a reference */ + struct bufferevent_private *p = + EVUTIL_UPCAST(bufev, struct bufferevent_private, bev); + if (bufev->readcb == NULL) + return; + if ((p->options|options) & BEV_OPT_DEFER_CALLBACKS) { + p->readcb_pending = 1; + SCHEDULE_DEFERRED(p); + } else { + bufev->readcb(bufev, bufev->cbarg); + } +} + +void +bufferevent_run_writecb_(struct bufferevent *bufev, int options) +{ + /* Requires that we hold the lock and a reference */ + struct bufferevent_private *p = + EVUTIL_UPCAST(bufev, struct bufferevent_private, bev); + if (bufev->writecb == NULL) + return; + if ((p->options|options) & BEV_OPT_DEFER_CALLBACKS) { + p->writecb_pending = 1; + SCHEDULE_DEFERRED(p); + } else { + bufev->writecb(bufev, bufev->cbarg); + } +} + +#define BEV_TRIG_ALL_OPTS ( \ + BEV_TRIG_IGNORE_WATERMARKS| \ + BEV_TRIG_DEFER_CALLBACKS \ + ) + +void +bufferevent_trigger(struct bufferevent *bufev, short iotype, int options) +{ + bufferevent_incref_and_lock_(bufev); + bufferevent_trigger_nolock_(bufev, iotype, options&BEV_TRIG_ALL_OPTS); + bufferevent_decref_and_unlock_(bufev); +} + +void +bufferevent_run_eventcb_(struct bufferevent *bufev, short what, int options) +{ + /* Requires that we hold the lock and a reference */ + struct bufferevent_private *p = + EVUTIL_UPCAST(bufev, struct bufferevent_private, bev); + if (bufev->errorcb == NULL) + return; + if ((p->options|options) & BEV_OPT_DEFER_CALLBACKS) { + p->eventcb_pending |= what; + p->errno_pending = EVUTIL_SOCKET_ERROR(); + SCHEDULE_DEFERRED(p); + } else { + bufev->errorcb(bufev, what, bufev->cbarg); + } +} + +void +bufferevent_trigger_event(struct bufferevent *bufev, short what, int options) +{ + bufferevent_incref_and_lock_(bufev); + bufferevent_run_eventcb_(bufev, what, options&BEV_TRIG_ALL_OPTS); + bufferevent_decref_and_unlock_(bufev); +} + +int +bufferevent_init_common_(struct bufferevent_private *bufev_private, + struct event_base *base, + const struct bufferevent_ops *ops, + enum bufferevent_options options) +{ + struct bufferevent *bufev = &bufev_private->bev; + + if (!bufev->input) { + if ((bufev->input = evbuffer_new()) == NULL) + return -1; + } + + if (!bufev->output) { + if ((bufev->output = evbuffer_new()) == NULL) { + evbuffer_free(bufev->input); + return -1; + } + } + + bufev_private->refcnt = 1; + bufev->ev_base = base; + + /* Disable timeouts. */ + evutil_timerclear(&bufev->timeout_read); + evutil_timerclear(&bufev->timeout_write); + + bufev->be_ops = ops; + + bufferevent_ratelim_init_(bufev_private); + + /* + * Set to EV_WRITE so that using bufferevent_write is going to + * trigger a callback. Reading needs to be explicitly enabled + * because otherwise no data will be available. + */ + bufev->enabled = EV_WRITE; + +#ifndef EVENT__DISABLE_THREAD_SUPPORT + if (options & BEV_OPT_THREADSAFE) { + if (bufferevent_enable_locking_(bufev, NULL) < 0) { + /* cleanup */ + evbuffer_free(bufev->input); + evbuffer_free(bufev->output); + bufev->input = NULL; + bufev->output = NULL; + return -1; + } + } +#endif + if ((options & (BEV_OPT_DEFER_CALLBACKS|BEV_OPT_UNLOCK_CALLBACKS)) + == BEV_OPT_UNLOCK_CALLBACKS) { + event_warnx("UNLOCK_CALLBACKS requires DEFER_CALLBACKS"); + return -1; + } + if (options & BEV_OPT_UNLOCK_CALLBACKS) + event_deferred_cb_init_( + &bufev_private->deferred, + event_base_get_npriorities(base) / 2, + bufferevent_run_deferred_callbacks_unlocked, + bufev_private); + else + event_deferred_cb_init_( + &bufev_private->deferred, + event_base_get_npriorities(base) / 2, + bufferevent_run_deferred_callbacks_locked, + bufev_private); + + bufev_private->options = options; + + evbuffer_set_parent_(bufev->input, bufev); + evbuffer_set_parent_(bufev->output, bufev); + + return 0; +} + +void +bufferevent_setcb(struct bufferevent *bufev, + bufferevent_data_cb readcb, bufferevent_data_cb writecb, + bufferevent_event_cb eventcb, void *cbarg) +{ + BEV_LOCK(bufev); + + bufev->readcb = readcb; + bufev->writecb = writecb; + bufev->errorcb = eventcb; + + bufev->cbarg = cbarg; + BEV_UNLOCK(bufev); +} + +void +bufferevent_getcb(struct bufferevent *bufev, + bufferevent_data_cb *readcb_ptr, + bufferevent_data_cb *writecb_ptr, + bufferevent_event_cb *eventcb_ptr, + void **cbarg_ptr) +{ + BEV_LOCK(bufev); + if (readcb_ptr) + *readcb_ptr = bufev->readcb; + if (writecb_ptr) + *writecb_ptr = bufev->writecb; + if (eventcb_ptr) + *eventcb_ptr = bufev->errorcb; + if (cbarg_ptr) + *cbarg_ptr = bufev->cbarg; + + BEV_UNLOCK(bufev); +} + +struct evbuffer * +bufferevent_get_input(struct bufferevent *bufev) +{ + return bufev->input; +} + +struct evbuffer * +bufferevent_get_output(struct bufferevent *bufev) +{ + return bufev->output; +} + +struct event_base * +bufferevent_get_base(struct bufferevent *bufev) +{ + return bufev->ev_base; +} + +int +bufferevent_get_priority(const struct bufferevent *bufev) +{ + if (event_initialized(&bufev->ev_read)) { + return event_get_priority(&bufev->ev_read); + } else { + return event_base_get_npriorities(bufev->ev_base) / 2; + } +} + +int +bufferevent_write(struct bufferevent *bufev, const void *data, size_t size) +{ + if (evbuffer_add(bufev->output, data, size) == -1) + return (-1); + + return 0; +} + +int +bufferevent_write_buffer(struct bufferevent *bufev, struct evbuffer *buf) +{ + if (evbuffer_add_buffer(bufev->output, buf) == -1) + return (-1); + + return 0; +} + +size_t +bufferevent_read(struct bufferevent *bufev, void *data, size_t size) +{ + return (evbuffer_remove(bufev->input, data, size)); +} + +int +bufferevent_read_buffer(struct bufferevent *bufev, struct evbuffer *buf) +{ + return (evbuffer_add_buffer(buf, bufev->input)); +} + +int +bufferevent_enable(struct bufferevent *bufev, short event) +{ + struct bufferevent_private *bufev_private = + EVUTIL_UPCAST(bufev, struct bufferevent_private, bev); + short impl_events = event; + int r = 0; + + bufferevent_incref_and_lock_(bufev); + if (bufev_private->read_suspended) + impl_events &= ~EV_READ; + if (bufev_private->write_suspended) + impl_events &= ~EV_WRITE; + + bufev->enabled |= event; + + if (impl_events && bufev->be_ops->enable(bufev, impl_events) < 0) + r = -1; + + bufferevent_decref_and_unlock_(bufev); + return r; +} + +int +bufferevent_set_timeouts(struct bufferevent *bufev, + const struct timeval *tv_read, + const struct timeval *tv_write) +{ + int r = 0; + BEV_LOCK(bufev); + if (tv_read) { + bufev->timeout_read = *tv_read; + } else { + evutil_timerclear(&bufev->timeout_read); + } + if (tv_write) { + bufev->timeout_write = *tv_write; + } else { + evutil_timerclear(&bufev->timeout_write); + } + + if (bufev->be_ops->adj_timeouts) + r = bufev->be_ops->adj_timeouts(bufev); + BEV_UNLOCK(bufev); + + return r; +} + + +/* Obsolete; use bufferevent_set_timeouts */ +void +bufferevent_settimeout(struct bufferevent *bufev, + int timeout_read, int timeout_write) +{ + struct timeval tv_read, tv_write; + struct timeval *ptv_read = NULL, *ptv_write = NULL; + + memset(&tv_read, 0, sizeof(tv_read)); + memset(&tv_write, 0, sizeof(tv_write)); + + if (timeout_read) { + tv_read.tv_sec = timeout_read; + ptv_read = &tv_read; + } + if (timeout_write) { + tv_write.tv_sec = timeout_write; + ptv_write = &tv_write; + } + + bufferevent_set_timeouts(bufev, ptv_read, ptv_write); +} + + +int +bufferevent_disable_hard_(struct bufferevent *bufev, short event) +{ + int r = 0; + struct bufferevent_private *bufev_private = + EVUTIL_UPCAST(bufev, struct bufferevent_private, bev); + + BEV_LOCK(bufev); + bufev->enabled &= ~event; + + bufev_private->connecting = 0; + if (bufev->be_ops->disable(bufev, event) < 0) + r = -1; + + BEV_UNLOCK(bufev); + return r; +} + +int +bufferevent_disable(struct bufferevent *bufev, short event) +{ + int r = 0; + + BEV_LOCK(bufev); + bufev->enabled &= ~event; + + if (bufev->be_ops->disable(bufev, event) < 0) + r = -1; + + BEV_UNLOCK(bufev); + return r; +} + +/* + * Sets the water marks + */ + +void +bufferevent_setwatermark(struct bufferevent *bufev, short events, + size_t lowmark, size_t highmark) +{ + struct bufferevent_private *bufev_private = + EVUTIL_UPCAST(bufev, struct bufferevent_private, bev); + + BEV_LOCK(bufev); + if (events & EV_WRITE) { + bufev->wm_write.low = lowmark; + bufev->wm_write.high = highmark; + } + + if (events & EV_READ) { + bufev->wm_read.low = lowmark; + bufev->wm_read.high = highmark; + + if (highmark) { + /* There is now a new high-water mark for read. + enable the callback if needed, and see if we should + suspend/bufferevent_wm_unsuspend. */ + + if (bufev_private->read_watermarks_cb == NULL) { + bufev_private->read_watermarks_cb = + evbuffer_add_cb(bufev->input, + bufferevent_inbuf_wm_cb, + bufev); + } + evbuffer_cb_set_flags(bufev->input, + bufev_private->read_watermarks_cb, + EVBUFFER_CB_ENABLED|EVBUFFER_CB_NODEFER); + + if (evbuffer_get_length(bufev->input) >= highmark) + bufferevent_wm_suspend_read(bufev); + else if (evbuffer_get_length(bufev->input) < highmark) + bufferevent_wm_unsuspend_read(bufev); + } else { + /* There is now no high-water mark for read. */ + if (bufev_private->read_watermarks_cb) + evbuffer_cb_clear_flags(bufev->input, + bufev_private->read_watermarks_cb, + EVBUFFER_CB_ENABLED); + bufferevent_wm_unsuspend_read(bufev); + } + } + BEV_UNLOCK(bufev); +} + +int +bufferevent_getwatermark(struct bufferevent *bufev, short events, + size_t *lowmark, size_t *highmark) +{ + if (events == EV_WRITE) { + BEV_LOCK(bufev); + if (lowmark) + *lowmark = bufev->wm_write.low; + if (highmark) + *highmark = bufev->wm_write.high; + BEV_UNLOCK(bufev); + return 0; + } + + if (events == EV_READ) { + BEV_LOCK(bufev); + if (lowmark) + *lowmark = bufev->wm_read.low; + if (highmark) + *highmark = bufev->wm_read.high; + BEV_UNLOCK(bufev); + return 0; + } + return -1; +} + +int +bufferevent_flush(struct bufferevent *bufev, + short iotype, + enum bufferevent_flush_mode mode) +{ + int r = -1; + BEV_LOCK(bufev); + if (bufev->be_ops->flush) + r = bufev->be_ops->flush(bufev, iotype, mode); + BEV_UNLOCK(bufev); + return r; +} + +void +bufferevent_incref_and_lock_(struct bufferevent *bufev) +{ + struct bufferevent_private *bufev_private = + BEV_UPCAST(bufev); + BEV_LOCK(bufev); + ++bufev_private->refcnt; +} + +#if 0 +static void +bufferevent_transfer_lock_ownership_(struct bufferevent *donor, + struct bufferevent *recipient) +{ + struct bufferevent_private *d = BEV_UPCAST(donor); + struct bufferevent_private *r = BEV_UPCAST(recipient); + if (d->lock != r->lock) + return; + if (r->own_lock) + return; + if (d->own_lock) { + d->own_lock = 0; + r->own_lock = 1; + } +} +#endif + +int +bufferevent_decref_and_unlock_(struct bufferevent *bufev) +{ + struct bufferevent_private *bufev_private = + EVUTIL_UPCAST(bufev, struct bufferevent_private, bev); + int n_cbs = 0; +#define MAX_CBS 16 + struct event_callback *cbs[MAX_CBS]; + + EVUTIL_ASSERT(bufev_private->refcnt > 0); + + if (--bufev_private->refcnt) { + BEV_UNLOCK(bufev); + return 0; + } + + if (bufev->be_ops->unlink) + bufev->be_ops->unlink(bufev); + + /* Okay, we're out of references. Let's finalize this once all the + * callbacks are done running. */ + cbs[0] = &bufev->ev_read.ev_evcallback; + cbs[1] = &bufev->ev_write.ev_evcallback; + cbs[2] = &bufev_private->deferred; + n_cbs = 3; + if (bufev_private->rate_limiting) { + struct event *e = &bufev_private->rate_limiting->refill_bucket_event; + if (event_initialized(e)) + cbs[n_cbs++] = &e->ev_evcallback; + } + n_cbs += evbuffer_get_callbacks_(bufev->input, cbs+n_cbs, MAX_CBS-n_cbs); + n_cbs += evbuffer_get_callbacks_(bufev->output, cbs+n_cbs, MAX_CBS-n_cbs); + + event_callback_finalize_many_(bufev->ev_base, n_cbs, cbs, + bufferevent_finalize_cb_); + +#undef MAX_CBS + BEV_UNLOCK(bufev); + + return 1; +} + +static void +bufferevent_finalize_cb_(struct event_callback *evcb, void *arg_) +{ + struct bufferevent *bufev = arg_; + struct bufferevent *underlying; + struct bufferevent_private *bufev_private = + EVUTIL_UPCAST(bufev, struct bufferevent_private, bev); + + BEV_LOCK(bufev); + underlying = bufferevent_get_underlying(bufev); + + /* Clean up the shared info */ + if (bufev->be_ops->destruct) + bufev->be_ops->destruct(bufev); + + /* XXX what happens if refcnt for these buffers is > 1? + * The buffers can share a lock with this bufferevent object, + * but the lock might be destroyed below. */ + /* evbuffer will free the callbacks */ + evbuffer_free(bufev->input); + evbuffer_free(bufev->output); + + if (bufev_private->rate_limiting) { + if (bufev_private->rate_limiting->group) + bufferevent_remove_from_rate_limit_group_internal_(bufev,0); + mm_free(bufev_private->rate_limiting); + bufev_private->rate_limiting = NULL; + } + + + BEV_UNLOCK(bufev); + + if (bufev_private->own_lock) + EVTHREAD_FREE_LOCK(bufev_private->lock, + EVTHREAD_LOCKTYPE_RECURSIVE); + + /* Free the actual allocated memory. */ + mm_free(((char*)bufev) - bufev->be_ops->mem_offset); + + /* Release the reference to underlying now that we no longer need the + * reference to it. We wait this long mainly in case our lock is + * shared with underlying. + * + * The 'destruct' function will also drop a reference to underlying + * if BEV_OPT_CLOSE_ON_FREE is set. + * + * XXX Should we/can we just refcount evbuffer/bufferevent locks? + * It would probably save us some headaches. + */ + if (underlying) + bufferevent_decref_(underlying); +} + +int +bufferevent_decref(struct bufferevent *bufev) +{ + BEV_LOCK(bufev); + return bufferevent_decref_and_unlock_(bufev); +} + +void +bufferevent_free(struct bufferevent *bufev) +{ + BEV_LOCK(bufev); + bufferevent_setcb(bufev, NULL, NULL, NULL, NULL); + bufferevent_cancel_all_(bufev); + bufferevent_decref_and_unlock_(bufev); +} + +void +bufferevent_incref(struct bufferevent *bufev) +{ + struct bufferevent_private *bufev_private = + EVUTIL_UPCAST(bufev, struct bufferevent_private, bev); + + /* XXX: now that this function is public, we might want to + * - return the count from this function + * - create a new function to atomically grab the current refcount + */ + BEV_LOCK(bufev); + ++bufev_private->refcnt; + BEV_UNLOCK(bufev); +} + +int +bufferevent_enable_locking_(struct bufferevent *bufev, void *lock) +{ +#ifdef EVENT__DISABLE_THREAD_SUPPORT + return -1; +#else + struct bufferevent *underlying; + + if (BEV_UPCAST(bufev)->lock) + return -1; + underlying = bufferevent_get_underlying(bufev); + + if (!lock && underlying && BEV_UPCAST(underlying)->lock) { + lock = BEV_UPCAST(underlying)->lock; + BEV_UPCAST(bufev)->lock = lock; + BEV_UPCAST(bufev)->own_lock = 0; + } else if (!lock) { + EVTHREAD_ALLOC_LOCK(lock, EVTHREAD_LOCKTYPE_RECURSIVE); + if (!lock) + return -1; + BEV_UPCAST(bufev)->lock = lock; + BEV_UPCAST(bufev)->own_lock = 1; + } else { + BEV_UPCAST(bufev)->lock = lock; + BEV_UPCAST(bufev)->own_lock = 0; + } + evbuffer_enable_locking(bufev->input, lock); + evbuffer_enable_locking(bufev->output, lock); + + if (underlying && !BEV_UPCAST(underlying)->lock) + bufferevent_enable_locking_(underlying, lock); + + return 0; +#endif +} + +int +bufferevent_setfd(struct bufferevent *bev, evutil_socket_t fd) +{ + union bufferevent_ctrl_data d; + int res = -1; + d.fd = fd; + BEV_LOCK(bev); + if (bev->be_ops->ctrl) + res = bev->be_ops->ctrl(bev, BEV_CTRL_SET_FD, &d); + BEV_UNLOCK(bev); + return res; +} + +evutil_socket_t +bufferevent_getfd(struct bufferevent *bev) +{ + union bufferevent_ctrl_data d; + int res = -1; + d.fd = -1; + BEV_LOCK(bev); + if (bev->be_ops->ctrl) + res = bev->be_ops->ctrl(bev, BEV_CTRL_GET_FD, &d); + BEV_UNLOCK(bev); + return (res<0) ? -1 : d.fd; +} + +enum bufferevent_options +bufferevent_get_options_(struct bufferevent *bev) +{ + struct bufferevent_private *bev_p = + EVUTIL_UPCAST(bev, struct bufferevent_private, bev); + enum bufferevent_options options; + + BEV_LOCK(bev); + options = bev_p->options; + BEV_UNLOCK(bev); + return options; +} + + +static void +bufferevent_cancel_all_(struct bufferevent *bev) +{ + union bufferevent_ctrl_data d; + memset(&d, 0, sizeof(d)); + BEV_LOCK(bev); + if (bev->be_ops->ctrl) + bev->be_ops->ctrl(bev, BEV_CTRL_CANCEL_ALL, &d); + BEV_UNLOCK(bev); +} + +short +bufferevent_get_enabled(struct bufferevent *bufev) +{ + short r; + BEV_LOCK(bufev); + r = bufev->enabled; + BEV_UNLOCK(bufev); + return r; +} + +struct bufferevent * +bufferevent_get_underlying(struct bufferevent *bev) +{ + union bufferevent_ctrl_data d; + int res = -1; + d.ptr = NULL; + BEV_LOCK(bev); + if (bev->be_ops->ctrl) + res = bev->be_ops->ctrl(bev, BEV_CTRL_GET_UNDERLYING, &d); + BEV_UNLOCK(bev); + return (res<0) ? NULL : d.ptr; +} + +static void +bufferevent_generic_read_timeout_cb(evutil_socket_t fd, short event, void *ctx) +{ + struct bufferevent *bev = ctx; + bufferevent_incref_and_lock_(bev); + bufferevent_disable(bev, EV_READ); + bufferevent_run_eventcb_(bev, BEV_EVENT_TIMEOUT|BEV_EVENT_READING, 0); + bufferevent_decref_and_unlock_(bev); +} +static void +bufferevent_generic_write_timeout_cb(evutil_socket_t fd, short event, void *ctx) +{ + struct bufferevent *bev = ctx; + bufferevent_incref_and_lock_(bev); + bufferevent_disable(bev, EV_WRITE); + bufferevent_run_eventcb_(bev, BEV_EVENT_TIMEOUT|BEV_EVENT_WRITING, 0); + bufferevent_decref_and_unlock_(bev); +} + +void +bufferevent_init_generic_timeout_cbs_(struct bufferevent *bev) +{ + event_assign(&bev->ev_read, bev->ev_base, -1, EV_FINALIZE, + bufferevent_generic_read_timeout_cb, bev); + event_assign(&bev->ev_write, bev->ev_base, -1, EV_FINALIZE, + bufferevent_generic_write_timeout_cb, bev); +} + +int +bufferevent_generic_adj_timeouts_(struct bufferevent *bev) +{ + const short enabled = bev->enabled; + struct bufferevent_private *bev_p = + EVUTIL_UPCAST(bev, struct bufferevent_private, bev); + int r1=0, r2=0; + if ((enabled & EV_READ) && !bev_p->read_suspended && + evutil_timerisset(&bev->timeout_read)) + r1 = event_add(&bev->ev_read, &bev->timeout_read); + else + r1 = event_del(&bev->ev_read); + + if ((enabled & EV_WRITE) && !bev_p->write_suspended && + evutil_timerisset(&bev->timeout_write) && + evbuffer_get_length(bev->output)) + r2 = event_add(&bev->ev_write, &bev->timeout_write); + else + r2 = event_del(&bev->ev_write); + if (r1 < 0 || r2 < 0) + return -1; + return 0; +} + +int +bufferevent_generic_adj_existing_timeouts_(struct bufferevent *bev) +{ + int r = 0; + if (event_pending(&bev->ev_read, EV_READ, NULL)) { + if (evutil_timerisset(&bev->timeout_read)) { + if (bufferevent_add_event_(&bev->ev_read, &bev->timeout_read) < 0) + r = -1; + } else { + event_remove_timer(&bev->ev_read); + } + } + if (event_pending(&bev->ev_write, EV_WRITE, NULL)) { + if (evutil_timerisset(&bev->timeout_write)) { + if (bufferevent_add_event_(&bev->ev_write, &bev->timeout_write) < 0) + r = -1; + } else { + event_remove_timer(&bev->ev_write); + } + } + return r; +} + +int +bufferevent_add_event_(struct event *ev, const struct timeval *tv) +{ + if (!evutil_timerisset(tv)) + return event_add(ev, NULL); + else + return event_add(ev, tv); +} + +/* For use by user programs only; internally, we should be calling + either bufferevent_incref_and_lock_(), or BEV_LOCK. */ +void +bufferevent_lock(struct bufferevent *bev) +{ + bufferevent_incref_and_lock_(bev); +} + +void +bufferevent_unlock(struct bufferevent *bev) +{ + bufferevent_decref_and_unlock_(bev); +} diff -Nru mysql-5.7-5.7.25/extra/libevent/bufferevent_filter.c mysql-5.7-5.7.26/extra/libevent/bufferevent_filter.c --- mysql-5.7-5.7.25/extra/libevent/bufferevent_filter.c 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/bufferevent_filter.c 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,623 @@ +/* + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * Copyright (c) 2002-2006 Niels Provos + * All rights reserved. + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ + +#include "evconfig-private.h" + +#include + +#include "event2/event-config.h" + +#ifdef EVENT__HAVE_SYS_TIME_H +#include +#endif + +#include +#include +#include +#include +#ifdef EVENT__HAVE_STDARG_H +#include +#endif + +#ifdef _WIN32 +#include +#endif + +#include "event2/util.h" +#include "event2/bufferevent.h" +#include "event2/buffer.h" +#include "event2/bufferevent_struct.h" +#include "event2/event.h" +#include "log-internal.h" +#include "mm-internal.h" +#include "bufferevent-internal.h" +#include "util-internal.h" + +/* prototypes */ +static int be_filter_enable(struct bufferevent *, short); +static int be_filter_disable(struct bufferevent *, short); +static void be_filter_unlink(struct bufferevent *); +static void be_filter_destruct(struct bufferevent *); + +static void be_filter_readcb(struct bufferevent *, void *); +static void be_filter_writecb(struct bufferevent *, void *); +static void be_filter_eventcb(struct bufferevent *, short, void *); +static int be_filter_flush(struct bufferevent *bufev, + short iotype, enum bufferevent_flush_mode mode); +static int be_filter_ctrl(struct bufferevent *, enum bufferevent_ctrl_op, union bufferevent_ctrl_data *); + +static void bufferevent_filtered_inbuf_cb(struct evbuffer *buf, + const struct evbuffer_cb_info *cbinfo, void *arg); + +static void bufferevent_filtered_outbuf_cb(struct evbuffer *buf, + const struct evbuffer_cb_info *info, void *arg); + +struct bufferevent_filtered { + struct bufferevent_private bev; + + /** The bufferevent that we read/write filtered data from/to. */ + struct bufferevent *underlying; + /** A callback on our inbuf to notice somebory removes data */ + struct evbuffer_cb_entry *inbuf_cb; + /** A callback on our outbuf to notice when somebody adds data */ + struct evbuffer_cb_entry *outbuf_cb; + /** True iff we have received an EOF callback from the underlying + * bufferevent. */ + unsigned got_eof; + + /** Function to free context when we're done. */ + void (*free_context)(void *); + /** Input filter */ + bufferevent_filter_cb process_in; + /** Output filter */ + bufferevent_filter_cb process_out; + /** User-supplied argument to the filters. */ + void *context; +}; + +const struct bufferevent_ops bufferevent_ops_filter = { + "filter", + evutil_offsetof(struct bufferevent_filtered, bev.bev), + be_filter_enable, + be_filter_disable, + be_filter_unlink, + be_filter_destruct, + bufferevent_generic_adj_timeouts_, + be_filter_flush, + be_filter_ctrl, +}; + +/* Given a bufferevent that's really the bev filter of a bufferevent_filtered, + * return that bufferevent_filtered. Returns NULL otherwise.*/ +static inline struct bufferevent_filtered * +upcast(struct bufferevent *bev) +{ + struct bufferevent_filtered *bev_f; + if (bev->be_ops != &bufferevent_ops_filter) + return NULL; + bev_f = (void*)( ((char*)bev) - + evutil_offsetof(struct bufferevent_filtered, bev.bev)); + EVUTIL_ASSERT(bev_f->bev.bev.be_ops == &bufferevent_ops_filter); + return bev_f; +} + +#define downcast(bev_f) (&(bev_f)->bev.bev) + +/** Return 1 iff bevf's underlying bufferevent's output buffer is at or + * over its high watermark such that we should not write to it in a given + * flush mode. */ +static int +be_underlying_writebuf_full(struct bufferevent_filtered *bevf, + enum bufferevent_flush_mode state) +{ + struct bufferevent *u = bevf->underlying; + return state == BEV_NORMAL && + u->wm_write.high && + evbuffer_get_length(u->output) >= u->wm_write.high; +} + +/** Return 1 if our input buffer is at or over its high watermark such that we + * should not write to it in a given flush mode. */ +static int +be_readbuf_full(struct bufferevent_filtered *bevf, + enum bufferevent_flush_mode state) +{ + struct bufferevent *bufev = downcast(bevf); + return state == BEV_NORMAL && + bufev->wm_read.high && + evbuffer_get_length(bufev->input) >= bufev->wm_read.high; +} + + +/* Filter to use when we're created with a NULL filter. */ +static enum bufferevent_filter_result +be_null_filter(struct evbuffer *src, struct evbuffer *dst, ev_ssize_t lim, + enum bufferevent_flush_mode state, void *ctx) +{ + (void)state; + if (evbuffer_remove_buffer(src, dst, lim) == 0) + return BEV_OK; + else + return BEV_ERROR; +} + +struct bufferevent * +bufferevent_filter_new(struct bufferevent *underlying, + bufferevent_filter_cb input_filter, + bufferevent_filter_cb output_filter, + int options, + void (*free_context)(void *), + void *ctx) +{ + struct bufferevent_filtered *bufev_f; + int tmp_options = options & ~BEV_OPT_THREADSAFE; + + if (!underlying) + return NULL; + + if (!input_filter) + input_filter = be_null_filter; + if (!output_filter) + output_filter = be_null_filter; + + bufev_f = mm_calloc(1, sizeof(struct bufferevent_filtered)); + if (!bufev_f) + return NULL; + + if (bufferevent_init_common_(&bufev_f->bev, underlying->ev_base, + &bufferevent_ops_filter, tmp_options) < 0) { + mm_free(bufev_f); + return NULL; + } + if (options & BEV_OPT_THREADSAFE) { + bufferevent_enable_locking_(downcast(bufev_f), NULL); + } + + bufev_f->underlying = underlying; + + bufev_f->process_in = input_filter; + bufev_f->process_out = output_filter; + bufev_f->free_context = free_context; + bufev_f->context = ctx; + + bufferevent_setcb(bufev_f->underlying, + be_filter_readcb, be_filter_writecb, be_filter_eventcb, bufev_f); + + bufev_f->inbuf_cb = evbuffer_add_cb(downcast(bufev_f)->input, + bufferevent_filtered_inbuf_cb, bufev_f); + evbuffer_cb_clear_flags(downcast(bufev_f)->input, bufev_f->inbuf_cb, + EVBUFFER_CB_ENABLED); + + bufev_f->outbuf_cb = evbuffer_add_cb(downcast(bufev_f)->output, + bufferevent_filtered_outbuf_cb, bufev_f); + + bufferevent_init_generic_timeout_cbs_(downcast(bufev_f)); + bufferevent_incref_(underlying); + + bufferevent_enable(underlying, EV_READ|EV_WRITE); + bufferevent_suspend_read_(underlying, BEV_SUSPEND_FILT_READ); + + return downcast(bufev_f); +} + +static void +be_filter_unlink(struct bufferevent *bev) +{ + struct bufferevent_filtered *bevf = upcast(bev); + EVUTIL_ASSERT(bevf); + + if (bevf->bev.options & BEV_OPT_CLOSE_ON_FREE) { + /* Yes, there is also a decref in bufferevent_decref_. + * That decref corresponds to the incref when we set + * underlying for the first time. This decref is an + * extra one to remove the last reference. + */ + if (BEV_UPCAST(bevf->underlying)->refcnt < 2) { + event_warnx("BEV_OPT_CLOSE_ON_FREE set on an " + "bufferevent with too few references"); + } else { + bufferevent_free(bevf->underlying); + } + } else { + if (bevf->underlying) { + if (bevf->underlying->errorcb == be_filter_eventcb) + bufferevent_setcb(bevf->underlying, + NULL, NULL, NULL, NULL); + bufferevent_unsuspend_read_(bevf->underlying, + BEV_SUSPEND_FILT_READ); + } + } +} + +static void +be_filter_destruct(struct bufferevent *bev) +{ + struct bufferevent_filtered *bevf = upcast(bev); + EVUTIL_ASSERT(bevf); + if (bevf->free_context) + bevf->free_context(bevf->context); + + if (bevf->inbuf_cb) + evbuffer_remove_cb_entry(bev->input, bevf->inbuf_cb); + + if (bevf->outbuf_cb) + evbuffer_remove_cb_entry(bev->output, bevf->outbuf_cb); +} + +static int +be_filter_enable(struct bufferevent *bev, short event) +{ + struct bufferevent_filtered *bevf = upcast(bev); + if (event & EV_WRITE) + BEV_RESET_GENERIC_WRITE_TIMEOUT(bev); + + if (event & EV_READ) { + BEV_RESET_GENERIC_READ_TIMEOUT(bev); + bufferevent_unsuspend_read_(bevf->underlying, + BEV_SUSPEND_FILT_READ); + } + return 0; +} + +static int +be_filter_disable(struct bufferevent *bev, short event) +{ + struct bufferevent_filtered *bevf = upcast(bev); + if (event & EV_WRITE) + BEV_DEL_GENERIC_WRITE_TIMEOUT(bev); + if (event & EV_READ) { + BEV_DEL_GENERIC_READ_TIMEOUT(bev); + bufferevent_suspend_read_(bevf->underlying, + BEV_SUSPEND_FILT_READ); + } + return 0; +} + +static enum bufferevent_filter_result +be_filter_process_input(struct bufferevent_filtered *bevf, + enum bufferevent_flush_mode state, + int *processed_out) +{ + enum bufferevent_filter_result res; + struct bufferevent *bev = downcast(bevf); + + if (state == BEV_NORMAL) { + /* If we're in 'normal' mode, don't urge data on the filter + * unless we're reading data and under our high-water mark.*/ + if (!(bev->enabled & EV_READ) || + be_readbuf_full(bevf, state)) + return BEV_OK; + } + + do { + ev_ssize_t limit = -1; + if (state == BEV_NORMAL && bev->wm_read.high) + limit = bev->wm_read.high - + evbuffer_get_length(bev->input); + + res = bevf->process_in(bevf->underlying->input, + bev->input, limit, state, bevf->context); + + if (res == BEV_OK) + *processed_out = 1; + } while (res == BEV_OK && + (bev->enabled & EV_READ) && + evbuffer_get_length(bevf->underlying->input) && + !be_readbuf_full(bevf, state)); + + if (*processed_out) + BEV_RESET_GENERIC_READ_TIMEOUT(bev); + + return res; +} + + +static enum bufferevent_filter_result +be_filter_process_output(struct bufferevent_filtered *bevf, + enum bufferevent_flush_mode state, + int *processed_out) +{ + /* Requires references and lock: might call writecb */ + enum bufferevent_filter_result res = BEV_OK; + struct bufferevent *bufev = downcast(bevf); + int again = 0; + + if (state == BEV_NORMAL) { + /* If we're in 'normal' mode, don't urge data on the + * filter unless we're writing data, and the underlying + * bufferevent is accepting data, and we have data to + * give the filter. If we're in 'flush' or 'finish', + * call the filter no matter what. */ + if (!(bufev->enabled & EV_WRITE) || + be_underlying_writebuf_full(bevf, state) || + !evbuffer_get_length(bufev->output)) + return BEV_OK; + } + + /* disable the callback that calls this function + when the user adds to the output buffer. */ + evbuffer_cb_clear_flags(bufev->output, bevf->outbuf_cb, + EVBUFFER_CB_ENABLED); + + do { + int processed = 0; + again = 0; + + do { + ev_ssize_t limit = -1; + if (state == BEV_NORMAL && + bevf->underlying->wm_write.high) + limit = bevf->underlying->wm_write.high - + evbuffer_get_length(bevf->underlying->output); + + res = bevf->process_out(downcast(bevf)->output, + bevf->underlying->output, + limit, + state, + bevf->context); + + if (res == BEV_OK) + processed = *processed_out = 1; + } while (/* Stop if the filter wasn't successful...*/ + res == BEV_OK && + /* Or if we aren't writing any more. */ + (bufev->enabled & EV_WRITE) && + /* Of if we have nothing more to write and we are + * not flushing. */ + evbuffer_get_length(bufev->output) && + /* Or if we have filled the underlying output buffer. */ + !be_underlying_writebuf_full(bevf,state)); + + if (processed) { + /* call the write callback.*/ + bufferevent_trigger_nolock_(bufev, EV_WRITE, 0); + + if (res == BEV_OK && + (bufev->enabled & EV_WRITE) && + evbuffer_get_length(bufev->output) && + !be_underlying_writebuf_full(bevf, state)) { + again = 1; + } + } + } while (again); + + /* reenable the outbuf_cb */ + evbuffer_cb_set_flags(bufev->output,bevf->outbuf_cb, + EVBUFFER_CB_ENABLED); + + if (*processed_out) + BEV_RESET_GENERIC_WRITE_TIMEOUT(bufev); + + return res; +} + +/* Called when the size of our outbuf changes. */ +static void +bufferevent_filtered_outbuf_cb(struct evbuffer *buf, + const struct evbuffer_cb_info *cbinfo, void *arg) +{ + struct bufferevent_filtered *bevf = arg; + struct bufferevent *bev = downcast(bevf); + + if (cbinfo->n_added) { + int processed_any = 0; + /* Somebody added more data to the output buffer. Try to + * process it, if we should. */ + bufferevent_incref_and_lock_(bev); + be_filter_process_output(bevf, BEV_NORMAL, &processed_any); + bufferevent_decref_and_unlock_(bev); + } +} + +static void +be_filter_read_nolock_(struct bufferevent *underlying, void *me_) +{ + struct bufferevent_filtered *bevf = me_; + enum bufferevent_filter_result res; + enum bufferevent_flush_mode state; + struct bufferevent *bufev = downcast(bevf); + struct bufferevent_private *bufev_private = BEV_UPCAST(bufev); + int processed_any = 0; + + // It's possible our refcount is 0 at this point if another thread free'd our filterevent + EVUTIL_ASSERT(bufev_private->refcnt >= 0); + + // If our refcount is > 0 + if (bufev_private->refcnt > 0) { + + if (bevf->got_eof) + state = BEV_FINISHED; + else + state = BEV_NORMAL; + + /* XXXX use return value */ + res = be_filter_process_input(bevf, state, &processed_any); + (void)res; + + /* XXX This should be in process_input, not here. There are + * other places that can call process-input, and they should + * force readcb calls as needed. */ + if (processed_any) { + bufferevent_trigger_nolock_(bufev, EV_READ, 0); + if (evbuffer_get_length(underlying->input) > 0 && + be_readbuf_full(bevf, state)) { + /* data left in underlying buffer and filter input buffer + * hit its read high watermark. + * Schedule callback to avoid data gets stuck in underlying + * input buffer. + */ + evbuffer_cb_set_flags(bufev->input, bevf->inbuf_cb, + EVBUFFER_CB_ENABLED); + } + } + } +} + +/* Called when the size of our inbuf changes. */ +static void +bufferevent_filtered_inbuf_cb(struct evbuffer *buf, + const struct evbuffer_cb_info *cbinfo, void *arg) +{ + struct bufferevent_filtered *bevf = arg; + enum bufferevent_flush_mode state; + struct bufferevent *bev = downcast(bevf); + + BEV_LOCK(bev); + + if (bevf->got_eof) + state = BEV_FINISHED; + else + state = BEV_NORMAL; + + + if (!be_readbuf_full(bevf, state)) { + /* opportunity to read data which was left in underlying + * input buffer because filter input buffer hit read + * high watermark. + */ + evbuffer_cb_clear_flags(bev->input, bevf->inbuf_cb, + EVBUFFER_CB_ENABLED); + if (evbuffer_get_length(bevf->underlying->input) > 0) + be_filter_read_nolock_(bevf->underlying, bevf); + } + + BEV_UNLOCK(bev); +} + +/* Called when the underlying socket has read. */ +static void +be_filter_readcb(struct bufferevent *underlying, void *me_) +{ + struct bufferevent_filtered *bevf = me_; + struct bufferevent *bev = downcast(bevf); + + BEV_LOCK(bev); + + be_filter_read_nolock_(underlying, me_); + + BEV_UNLOCK(bev); +} + +/* Called when the underlying socket has drained enough that we can write to + it. */ +static void +be_filter_writecb(struct bufferevent *underlying, void *me_) +{ + struct bufferevent_filtered *bevf = me_; + struct bufferevent *bev = downcast(bevf); + struct bufferevent_private *bufev_private = BEV_UPCAST(bev); + int processed_any = 0; + + BEV_LOCK(bev); + + // It's possible our refcount is 0 at this point if another thread free'd our filterevent + EVUTIL_ASSERT(bufev_private->refcnt >= 0); + + // If our refcount is > 0 + if (bufev_private->refcnt > 0) { + be_filter_process_output(bevf, BEV_NORMAL, &processed_any); + } + + BEV_UNLOCK(bev); +} + +/* Called when the underlying socket has given us an error */ +static void +be_filter_eventcb(struct bufferevent *underlying, short what, void *me_) +{ + struct bufferevent_filtered *bevf = me_; + struct bufferevent *bev = downcast(bevf); + struct bufferevent_private *bufev_private = BEV_UPCAST(bev); + + BEV_LOCK(bev); + + // It's possible our refcount is 0 at this point if another thread free'd our filterevent + EVUTIL_ASSERT(bufev_private->refcnt >= 0); + + // If our refcount is > 0 + if (bufev_private->refcnt > 0) { + + /* All we can really to is tell our own eventcb. */ + bufferevent_run_eventcb_(bev, what, 0); + } + + BEV_UNLOCK(bev); +} + +static int +be_filter_flush(struct bufferevent *bufev, + short iotype, enum bufferevent_flush_mode mode) +{ + struct bufferevent_filtered *bevf = upcast(bufev); + int processed_any = 0; + EVUTIL_ASSERT(bevf); + + bufferevent_incref_and_lock_(bufev); + + if (iotype & EV_READ) { + be_filter_process_input(bevf, mode, &processed_any); + } + if (iotype & EV_WRITE) { + be_filter_process_output(bevf, mode, &processed_any); + } + /* XXX check the return value? */ + /* XXX does this want to recursively call lower-level flushes? */ + bufferevent_flush(bevf->underlying, iotype, mode); + + bufferevent_decref_and_unlock_(bufev); + + return processed_any; +} + +static int +be_filter_ctrl(struct bufferevent *bev, enum bufferevent_ctrl_op op, + union bufferevent_ctrl_data *data) +{ + struct bufferevent_filtered *bevf; + switch (op) { + case BEV_CTRL_GET_UNDERLYING: + bevf = upcast(bev); + data->ptr = bevf->underlying; + return 0; + case BEV_CTRL_SET_FD: + bevf = upcast(bev); + + if (bevf->underlying && + bevf->underlying->be_ops && + bevf->underlying->be_ops->ctrl) { + return (bevf->underlying->be_ops->ctrl)(bevf->underlying, op, data); + } + + case BEV_CTRL_GET_FD: + case BEV_CTRL_CANCEL_ALL: + default: + return -1; + } + + return -1; +} diff -Nru mysql-5.7-5.7.25/extra/libevent/bufferevent-internal.h mysql-5.7-5.7.26/extra/libevent/bufferevent-internal.h --- mysql-5.7-5.7.25/extra/libevent/bufferevent-internal.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/bufferevent-internal.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,482 @@ +/* + * Copyright (c) 2008-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef BUFFEREVENT_INTERNAL_H_INCLUDED_ +#define BUFFEREVENT_INTERNAL_H_INCLUDED_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include "event2/event-config.h" +#include "event2/event_struct.h" +#include "evconfig-private.h" +#include "event2/util.h" +#include "defer-internal.h" +#include "evthread-internal.h" +#include "event2/thread.h" +#include "ratelim-internal.h" +#include "event2/bufferevent_struct.h" + +#include "ipv6-internal.h" +#ifdef _WIN32 +#include +#endif +#ifdef EVENT__HAVE_NETINET_IN_H +#include +#endif +#ifdef EVENT__HAVE_NETINET_IN6_H +#include +#endif + +/* These flags are reasons that we might be declining to actually enable + reading or writing on a bufferevent. + */ + +/* On a all bufferevents, for reading: used when we have read up to the + watermark value. + + On a filtering bufferevent, for writing: used when the underlying + bufferevent's write buffer has been filled up to its watermark + value. +*/ +#define BEV_SUSPEND_WM 0x01 +/* On a base bufferevent: when we have emptied a bandwidth buckets */ +#define BEV_SUSPEND_BW 0x02 +/* On a base bufferevent: when we have emptied the group's bandwidth bucket. */ +#define BEV_SUSPEND_BW_GROUP 0x04 +/* On a socket bufferevent: can't do any operations while we're waiting for + * name lookup to finish. */ +#define BEV_SUSPEND_LOOKUP 0x08 +/* On a base bufferevent, for reading: used when a filter has choked this + * (underlying) bufferevent because it has stopped reading from it. */ +#define BEV_SUSPEND_FILT_READ 0x10 + +typedef ev_uint16_t bufferevent_suspend_flags; + +struct bufferevent_rate_limit_group { + /** List of all members in the group */ + LIST_HEAD(rlim_group_member_list, bufferevent_private) members; + /** Current limits for the group. */ + struct ev_token_bucket rate_limit; + struct ev_token_bucket_cfg rate_limit_cfg; + + /** True iff we don't want to read from any member of the group.until + * the token bucket refills. */ + unsigned read_suspended : 1; + /** True iff we don't want to write from any member of the group.until + * the token bucket refills. */ + unsigned write_suspended : 1; + /** True iff we were unable to suspend one of the bufferevents in the + * group for reading the last time we tried, and we should try + * again. */ + unsigned pending_unsuspend_read : 1; + /** True iff we were unable to suspend one of the bufferevents in the + * group for writing the last time we tried, and we should try + * again. */ + unsigned pending_unsuspend_write : 1; + + /*@{*/ + /** Total number of bytes read or written in this group since last + * reset. */ + ev_uint64_t total_read; + ev_uint64_t total_written; + /*@}*/ + + /** The number of bufferevents in the group. */ + int n_members; + + /** The smallest number of bytes that any member of the group should + * be limited to read or write at a time. */ + ev_ssize_t min_share; + ev_ssize_t configured_min_share; + + /** Timeout event that goes off once a tick, when the bucket is ready + * to refill. */ + struct event master_refill_event; + + /** Seed for weak random number generator. Protected by 'lock' */ + struct evutil_weakrand_state weakrand_seed; + + /** Lock to protect the members of this group. This lock should nest + * within every bufferevent lock: if you are holding this lock, do + * not assume you can lock another bufferevent. */ + void *lock; +}; + +/** Fields for rate-limiting a single bufferevent. */ +struct bufferevent_rate_limit { + /* Linked-list elements for storing this bufferevent_private in a + * group. + * + * Note that this field is supposed to be protected by the group + * lock */ + LIST_ENTRY(bufferevent_private) next_in_group; + /** The rate-limiting group for this bufferevent, or NULL if it is + * only rate-limited on its own. */ + struct bufferevent_rate_limit_group *group; + + /* This bufferevent's current limits. */ + struct ev_token_bucket limit; + /* Pointer to the rate-limit configuration for this bufferevent. + * Can be shared. XXX reference-count this? */ + struct ev_token_bucket_cfg *cfg; + + /* Timeout event used when one this bufferevent's buckets are + * empty. */ + struct event refill_bucket_event; +}; + +/** Parts of the bufferevent structure that are shared among all bufferevent + * types, but not exposed in bufferevent_struct.h. */ +struct bufferevent_private { + /** The underlying bufferevent structure. */ + struct bufferevent bev; + + /** Evbuffer callback to enforce watermarks on input. */ + struct evbuffer_cb_entry *read_watermarks_cb; + + /** If set, we should free the lock when we free the bufferevent. */ + unsigned own_lock : 1; + + /** Flag: set if we have deferred callbacks and a read callback is + * pending. */ + unsigned readcb_pending : 1; + /** Flag: set if we have deferred callbacks and a write callback is + * pending. */ + unsigned writecb_pending : 1; + /** Flag: set if we are currently busy connecting. */ + unsigned connecting : 1; + /** Flag: set if a connect failed prematurely; this is a hack for + * getting around the bufferevent abstraction. */ + unsigned connection_refused : 1; + /** Set to the events pending if we have deferred callbacks and + * an events callback is pending. */ + short eventcb_pending; + + /** If set, read is suspended until one or more conditions are over. + * The actual value here is a bitfield of those conditions; see the + * BEV_SUSPEND_* flags above. */ + bufferevent_suspend_flags read_suspended; + + /** If set, writing is suspended until one or more conditions are over. + * The actual value here is a bitfield of those conditions; see the + * BEV_SUSPEND_* flags above. */ + bufferevent_suspend_flags write_suspended; + + /** Set to the current socket errno if we have deferred callbacks and + * an events callback is pending. */ + int errno_pending; + + /** The DNS error code for bufferevent_socket_connect_hostname */ + int dns_error; + + /** Used to implement deferred callbacks */ + struct event_callback deferred; + + /** The options this bufferevent was constructed with */ + enum bufferevent_options options; + + /** Current reference count for this bufferevent. */ + int refcnt; + + /** Lock for this bufferevent. Shared by the inbuf and the outbuf. + * If NULL, locking is disabled. */ + void *lock; + + /** No matter how big our bucket gets, don't try to read more than this + * much in a single read operation. */ + ev_ssize_t max_single_read; + + /** No matter how big our bucket gets, don't try to write more than this + * much in a single write operation. */ + ev_ssize_t max_single_write; + + /** Rate-limiting information for this bufferevent */ + struct bufferevent_rate_limit *rate_limiting; + + /* Saved conn_addr, to extract IP address from it. + * + * Because some servers may reset/close connection without waiting clients, + * in that case we can't extract IP address even in close_cb. + * So we need to save it, just after we connected to remote server, or + * after resolving (to avoid extra dns requests during retrying, since UDP + * is slow) */ + union { + struct sockaddr_in6 in6; + struct sockaddr_in in; + } conn_address; + + struct evdns_getaddrinfo_request *dns_request; +}; + +/** Possible operations for a control callback. */ +enum bufferevent_ctrl_op { + BEV_CTRL_SET_FD, + BEV_CTRL_GET_FD, + BEV_CTRL_GET_UNDERLYING, + BEV_CTRL_CANCEL_ALL +}; + +/** Possible data types for a control callback */ +union bufferevent_ctrl_data { + void *ptr; + evutil_socket_t fd; +}; + +/** + Implementation table for a bufferevent: holds function pointers and other + information to make the various bufferevent types work. +*/ +struct bufferevent_ops { + /** The name of the bufferevent's type. */ + const char *type; + /** At what offset into the implementation type will we find a + bufferevent structure? + + Example: if the type is implemented as + struct bufferevent_x { + int extra_data; + struct bufferevent bev; + } + then mem_offset should be offsetof(struct bufferevent_x, bev) + */ + off_t mem_offset; + + /** Enables one or more of EV_READ|EV_WRITE on a bufferevent. Does + not need to adjust the 'enabled' field. Returns 0 on success, -1 + on failure. + */ + int (*enable)(struct bufferevent *, short); + + /** Disables one or more of EV_READ|EV_WRITE on a bufferevent. Does + not need to adjust the 'enabled' field. Returns 0 on success, -1 + on failure. + */ + int (*disable)(struct bufferevent *, short); + + /** Detatches the bufferevent from related data structures. Called as + * soon as its reference count reaches 0. */ + void (*unlink)(struct bufferevent *); + + /** Free any storage and deallocate any extra data or structures used + in this implementation. Called when the bufferevent is + finalized. + */ + void (*destruct)(struct bufferevent *); + + /** Called when the timeouts on the bufferevent have changed.*/ + int (*adj_timeouts)(struct bufferevent *); + + /** Called to flush data. */ + int (*flush)(struct bufferevent *, short, enum bufferevent_flush_mode); + + /** Called to access miscellaneous fields. */ + int (*ctrl)(struct bufferevent *, enum bufferevent_ctrl_op, union bufferevent_ctrl_data *); + +}; + +extern const struct bufferevent_ops bufferevent_ops_socket; +extern const struct bufferevent_ops bufferevent_ops_filter; +extern const struct bufferevent_ops bufferevent_ops_pair; + +#define BEV_IS_SOCKET(bevp) ((bevp)->be_ops == &bufferevent_ops_socket) +#define BEV_IS_FILTER(bevp) ((bevp)->be_ops == &bufferevent_ops_filter) +#define BEV_IS_PAIR(bevp) ((bevp)->be_ops == &bufferevent_ops_pair) + +#ifdef _WIN32 +extern const struct bufferevent_ops bufferevent_ops_async; +#define BEV_IS_ASYNC(bevp) ((bevp)->be_ops == &bufferevent_ops_async) +#else +#define BEV_IS_ASYNC(bevp) 0 +#endif + +/** Initialize the shared parts of a bufferevent. */ +int bufferevent_init_common_(struct bufferevent_private *, struct event_base *, const struct bufferevent_ops *, enum bufferevent_options options); + +/** For internal use: temporarily stop all reads on bufev, until the conditions + * in 'what' are over. */ +void bufferevent_suspend_read_(struct bufferevent *bufev, bufferevent_suspend_flags what); +/** For internal use: clear the conditions 'what' on bufev, and re-enable + * reading if there are no conditions left. */ +void bufferevent_unsuspend_read_(struct bufferevent *bufev, bufferevent_suspend_flags what); + +/** For internal use: temporarily stop all writes on bufev, until the conditions + * in 'what' are over. */ +void bufferevent_suspend_write_(struct bufferevent *bufev, bufferevent_suspend_flags what); +/** For internal use: clear the conditions 'what' on bufev, and re-enable + * writing if there are no conditions left. */ +void bufferevent_unsuspend_write_(struct bufferevent *bufev, bufferevent_suspend_flags what); + +#define bufferevent_wm_suspend_read(b) \ + bufferevent_suspend_read_((b), BEV_SUSPEND_WM) +#define bufferevent_wm_unsuspend_read(b) \ + bufferevent_unsuspend_read_((b), BEV_SUSPEND_WM) + +/* + Disable a bufferevent. Equivalent to bufferevent_disable(), but + first resets 'connecting' flag to force EV_WRITE down for sure. + + XXXX this method will go away in the future; try not to add new users. + See comment in evhttp_connection_reset_() for discussion. + + @param bufev the bufferevent to be disabled + @param event any combination of EV_READ | EV_WRITE. + @return 0 if successful, or -1 if an error occurred + @see bufferevent_disable() + */ +int bufferevent_disable_hard_(struct bufferevent *bufev, short event); + +/** Internal: Set up locking on a bufferevent. If lock is set, use it. + * Otherwise, use a new lock. */ +int bufferevent_enable_locking_(struct bufferevent *bufev, void *lock); +/** Internal: backwards compat macro for the now public function + * Increment the reference count on bufev. */ +#define bufferevent_incref_(bufev) bufferevent_incref(bufev) +/** Internal: Lock bufev and increase its reference count. + * unlocking it otherwise. */ +void bufferevent_incref_and_lock_(struct bufferevent *bufev); +/** Internal: backwards compat macro for the now public function + * Decrement the reference count on bufev. Returns 1 if it freed + * the bufferevent.*/ +#define bufferevent_decref_(bufev) bufferevent_decref(bufev) + +/** Internal: Drop the reference count on bufev, freeing as necessary, and + * unlocking it otherwise. Returns 1 if it freed the bufferevent. */ +int bufferevent_decref_and_unlock_(struct bufferevent *bufev); + +/** Internal: If callbacks are deferred and we have a read callback, schedule + * a readcb. Otherwise just run the readcb. Ignores watermarks. */ +void bufferevent_run_readcb_(struct bufferevent *bufev, int options); +/** Internal: If callbacks are deferred and we have a write callback, schedule + * a writecb. Otherwise just run the writecb. Ignores watermarks. */ +void bufferevent_run_writecb_(struct bufferevent *bufev, int options); +/** Internal: If callbacks are deferred and we have an eventcb, schedule + * it to run with events "what". Otherwise just run the eventcb. + * See bufferevent_trigger_event for meaning of "options". */ +void bufferevent_run_eventcb_(struct bufferevent *bufev, short what, int options); + +/** Internal: Run or schedule (if deferred or options contain + * BEV_TRIG_DEFER_CALLBACKS) I/O callbacks specified in iotype. + * Must already hold the bufev lock. Honors watermarks unless + * BEV_TRIG_IGNORE_WATERMARKS is in options. */ +static inline void bufferevent_trigger_nolock_(struct bufferevent *bufev, short iotype, int options); + +/* Making this inline since all of the common-case calls to this function in + * libevent use constant arguments. */ +static inline void +bufferevent_trigger_nolock_(struct bufferevent *bufev, short iotype, int options) +{ + if ((iotype & EV_READ) && ((options & BEV_TRIG_IGNORE_WATERMARKS) || + evbuffer_get_length(bufev->input) >= bufev->wm_read.low)) + bufferevent_run_readcb_(bufev, options); + if ((iotype & EV_WRITE) && ((options & BEV_TRIG_IGNORE_WATERMARKS) || + evbuffer_get_length(bufev->output) <= bufev->wm_write.low)) + bufferevent_run_writecb_(bufev, options); +} + +/** Internal: Add the event 'ev' with timeout tv, unless tv is set to 0, in + * which case add ev with no timeout. */ +int bufferevent_add_event_(struct event *ev, const struct timeval *tv); + +/* ========= + * These next functions implement timeouts for bufferevents that aren't doing + * anything else with ev_read and ev_write, to handle timeouts. + * ========= */ +/** Internal use: Set up the ev_read and ev_write callbacks so that + * the other "generic_timeout" functions will work on it. Call this from + * the constructor function. */ +void bufferevent_init_generic_timeout_cbs_(struct bufferevent *bev); +/** Internal use: Add or delete the generic timeout events as appropriate. + * (If an event is enabled and a timeout is set, we add the event. Otherwise + * we delete it.) Call this from anything that changes the timeout values, + * that enabled EV_READ or EV_WRITE, or that disables EV_READ or EV_WRITE. */ +int bufferevent_generic_adj_timeouts_(struct bufferevent *bev); +int bufferevent_generic_adj_existing_timeouts_(struct bufferevent *bev); + +enum bufferevent_options bufferevent_get_options_(struct bufferevent *bev); + +const struct sockaddr* +bufferevent_socket_get_conn_address_(struct bufferevent *bev); + +/** Internal use: We have just successfully read data into an inbuf, so + * reset the read timeout (if any). */ +#define BEV_RESET_GENERIC_READ_TIMEOUT(bev) \ + do { \ + if (evutil_timerisset(&(bev)->timeout_read)) \ + event_add(&(bev)->ev_read, &(bev)->timeout_read); \ + } while (0) +/** Internal use: We have just successfully written data from an inbuf, so + * reset the read timeout (if any). */ +#define BEV_RESET_GENERIC_WRITE_TIMEOUT(bev) \ + do { \ + if (evutil_timerisset(&(bev)->timeout_write)) \ + event_add(&(bev)->ev_write, &(bev)->timeout_write); \ + } while (0) +#define BEV_DEL_GENERIC_READ_TIMEOUT(bev) \ + event_del(&(bev)->ev_read) +#define BEV_DEL_GENERIC_WRITE_TIMEOUT(bev) \ + event_del(&(bev)->ev_write) + + +/** Internal: Given a bufferevent, return its corresponding + * bufferevent_private. */ +#define BEV_UPCAST(b) EVUTIL_UPCAST((b), struct bufferevent_private, bev) + +#ifdef EVENT__DISABLE_THREAD_SUPPORT +#define BEV_LOCK(b) EVUTIL_NIL_STMT_ +#define BEV_UNLOCK(b) EVUTIL_NIL_STMT_ +#else +/** Internal: Grab the lock (if any) on a bufferevent */ +#define BEV_LOCK(b) do { \ + struct bufferevent_private *locking = BEV_UPCAST(b); \ + EVLOCK_LOCK(locking->lock, 0); \ + } while (0) + +/** Internal: Release the lock (if any) on a bufferevent */ +#define BEV_UNLOCK(b) do { \ + struct bufferevent_private *locking = BEV_UPCAST(b); \ + EVLOCK_UNLOCK(locking->lock, 0); \ + } while (0) +#endif + + +/* ==== For rate-limiting. */ + +int bufferevent_decrement_write_buckets_(struct bufferevent_private *bev, + ev_ssize_t bytes); +int bufferevent_decrement_read_buckets_(struct bufferevent_private *bev, + ev_ssize_t bytes); +ev_ssize_t bufferevent_get_read_max_(struct bufferevent_private *bev); +ev_ssize_t bufferevent_get_write_max_(struct bufferevent_private *bev); + +int bufferevent_ratelim_init_(struct bufferevent_private *bev); + +#ifdef __cplusplus +} +#endif + + +#endif /* BUFFEREVENT_INTERNAL_H_INCLUDED_ */ diff -Nru mysql-5.7-5.7.25/extra/libevent/bufferevent_openssl.c mysql-5.7-5.7.26/extra/libevent/bufferevent_openssl.c --- mysql-5.7-5.7.25/extra/libevent/bufferevent_openssl.c 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/bufferevent_openssl.c 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,1501 @@ +/* + * Copyright (c) 2009-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ + +// Get rid of OSX 10.7 and greater deprecation warnings. +#if defined(__APPLE__) && defined(__clang__) +#pragma clang diagnostic ignored "-Wdeprecated-declarations" +#endif + +#include "event2/event-config.h" +#include "evconfig-private.h" + +#include + +#ifdef EVENT__HAVE_SYS_TIME_H +#include +#endif + +#include +#include +#include +#include +#ifdef EVENT__HAVE_STDARG_H +#include +#endif +#ifdef EVENT__HAVE_UNISTD_H +#include +#endif + +#ifdef _WIN32 +#include +#endif + +#include "event2/bufferevent.h" +#include "event2/bufferevent_struct.h" +#include "event2/bufferevent_ssl.h" +#include "event2/buffer.h" +#include "event2/event.h" + +#include "mm-internal.h" +#include "bufferevent-internal.h" +#include "log-internal.h" + +#include +#include +#include +#include "openssl-compat.h" + +/* + * Define an OpenSSL bio that targets a bufferevent. + */ + +/* -------------------- + A BIO is an OpenSSL abstraction that handles reading and writing data. The + library will happily speak SSL over anything that implements a BIO + interface. + + Here we define a BIO implementation that directs its output to a + bufferevent. We'll want to use this only when none of OpenSSL's built-in + IO mechanisms work for us. + -------------------- */ + +/* every BIO type needs its own integer type value. */ +#define BIO_TYPE_LIBEVENT 57 +/* ???? Arguably, we should set BIO_TYPE_FILTER or BIO_TYPE_SOURCE_SINK on + * this. */ + +#if 0 +static void +print_err(int val) +{ + int err; + printf("Error was %d\n", val); + + while ((err = ERR_get_error())) { + const char *msg = (const char*)ERR_reason_error_string(err); + const char *lib = (const char*)ERR_lib_error_string(err); + const char *func = (const char*)ERR_func_error_string(err); + + printf("%s in %s %s\n", msg, lib, func); + } +} +#else +#define print_err(v) ((void)0) +#endif + +/* Called to initialize a new BIO */ +static int +bio_bufferevent_new(BIO *b) +{ + BIO_set_init(b, 0); + BIO_set_data(b, NULL); /* We'll be putting the bufferevent in this field.*/ + return 1; +} + +/* Called to uninitialize the BIO. */ +static int +bio_bufferevent_free(BIO *b) +{ + if (!b) + return 0; + if (BIO_get_shutdown(b)) { + if (BIO_get_init(b) && BIO_get_data(b)) + bufferevent_free(BIO_get_data(b)); + BIO_free(b); + } + return 1; +} + +/* Called to extract data from the BIO. */ +static int +bio_bufferevent_read(BIO *b, char *out, int outlen) +{ + int r = 0; + struct evbuffer *input; + + BIO_clear_retry_flags(b); + + if (!out) + return 0; + if (!BIO_get_data(b)) + return -1; + + input = bufferevent_get_input(BIO_get_data(b)); + if (evbuffer_get_length(input) == 0) { + /* If there's no data to read, say so. */ + BIO_set_retry_read(b); + return -1; + } else { + r = evbuffer_remove(input, out, outlen); + } + + return r; +} + +/* Called to write data info the BIO */ +static int +bio_bufferevent_write(BIO *b, const char *in, int inlen) +{ + struct bufferevent *bufev = BIO_get_data(b); + struct evbuffer *output; + size_t outlen; + + BIO_clear_retry_flags(b); + + if (!BIO_get_data(b)) + return -1; + + output = bufferevent_get_output(bufev); + outlen = evbuffer_get_length(output); + + /* Copy only as much data onto the output buffer as can fit under the + * high-water mark. */ + if (bufev->wm_write.high && bufev->wm_write.high <= (outlen+inlen)) { + if (bufev->wm_write.high <= outlen) { + /* If no data can fit, we'll need to retry later. */ + BIO_set_retry_write(b); + return -1; + } + inlen = bufev->wm_write.high - outlen; + } + + EVUTIL_ASSERT(inlen > 0); + evbuffer_add(output, in, inlen); + return inlen; +} + +/* Called to handle various requests */ +static long +bio_bufferevent_ctrl(BIO *b, int cmd, long num, void *ptr) +{ + struct bufferevent *bufev = BIO_get_data(b); + long ret = 1; + + switch (cmd) { + case BIO_CTRL_GET_CLOSE: + ret = BIO_get_shutdown(b); + break; + case BIO_CTRL_SET_CLOSE: + BIO_set_shutdown(b, (int)num); + break; + case BIO_CTRL_PENDING: + ret = evbuffer_get_length(bufferevent_get_input(bufev)) != 0; + break; + case BIO_CTRL_WPENDING: + ret = evbuffer_get_length(bufferevent_get_output(bufev)) != 0; + break; + /* XXXX These two are given a special-case treatment because + * of cargo-cultism. I should come up with a better reason. */ + case BIO_CTRL_DUP: + case BIO_CTRL_FLUSH: + ret = 1; + break; + default: + ret = 0; + break; + } + return ret; +} + +/* Called to write a string to the BIO */ +static int +bio_bufferevent_puts(BIO *b, const char *s) +{ + return bio_bufferevent_write(b, s, strlen(s)); +} + +/* Method table for the bufferevent BIO */ +static BIO_METHOD *methods_bufferevent; + +/* Return the method table for the bufferevents BIO */ +static BIO_METHOD * +BIO_s_bufferevent(void) +{ + if (methods_bufferevent == NULL) { + methods_bufferevent = BIO_meth_new(BIO_TYPE_LIBEVENT, "bufferevent"); + if (methods_bufferevent == NULL) + return NULL; + BIO_meth_set_write(methods_bufferevent, bio_bufferevent_write); + BIO_meth_set_read(methods_bufferevent, bio_bufferevent_read); + BIO_meth_set_puts(methods_bufferevent, bio_bufferevent_puts); + BIO_meth_set_ctrl(methods_bufferevent, bio_bufferevent_ctrl); + BIO_meth_set_create(methods_bufferevent, bio_bufferevent_new); + BIO_meth_set_destroy(methods_bufferevent, bio_bufferevent_free); + } + return methods_bufferevent; +} + +/* Create a new BIO to wrap communication around a bufferevent. If close_flag + * is true, the bufferevent will be freed when the BIO is closed. */ +static BIO * +BIO_new_bufferevent(struct bufferevent *bufferevent, int close_flag) +{ + BIO *result; + if (!bufferevent) + return NULL; + if (!(result = BIO_new(BIO_s_bufferevent()))) + return NULL; + BIO_set_init(result, 1); + BIO_set_data(result, bufferevent); + BIO_set_shutdown(result, close_flag ? 1 : 0); + return result; +} + +/* -------------------- + Now, here's the OpenSSL-based implementation of bufferevent. + + The implementation comes in two flavors: one that connects its SSL object + to an underlying bufferevent using a BIO_bufferevent, and one that has the + SSL object connect to a socket directly. The latter should generally be + faster, except on Windows, where your best bet is using a + bufferevent_async. + + (OpenSSL supports many other BIO types, too. But we can't use any unless + we have a good way to get notified when they become readable/writable.) + -------------------- */ + +struct bio_data_counts { + unsigned long n_written; + unsigned long n_read; +}; + +struct bufferevent_openssl { + /* Shared fields with common bufferevent implementation code. + If we were set up with an underlying bufferevent, we use the + events here as timers only. If we have an SSL, then we use + the events as socket events. + */ + struct bufferevent_private bev; + /* An underlying bufferevent that we're directing our output to. + If it's NULL, then we're connected to an fd, not an evbuffer. */ + struct bufferevent *underlying; + /* The SSL object doing our encryption. */ + SSL *ssl; + + /* A callback that's invoked when data arrives on our outbuf so we + know to write data to the SSL. */ + struct evbuffer_cb_entry *outbuf_cb; + + /* A count of how much data the bios have read/written total. Used + for rate-limiting. */ + struct bio_data_counts counts; + + /* If this value is greater than 0, then the last SSL_write blocked, + * and we need to try it again with this many bytes. */ + ev_ssize_t last_write; + +#define NUM_ERRORS 3 + ev_uint32_t errors[NUM_ERRORS]; + + /* When we next get available space, we should say "read" instead of + "write". This can happen if there's a renegotiation during a read + operation. */ + unsigned read_blocked_on_write : 1; + /* When we next get data, we should say "write" instead of "read". */ + unsigned write_blocked_on_read : 1; + /* Treat TCP close before SSL close on SSL >= v3 as clean EOF. */ + unsigned allow_dirty_shutdown : 1; + /* XXX */ + unsigned n_errors : 2; + + /* Are we currently connecting, accepting, or doing IO? */ + unsigned state : 2; + /* If we reset fd, we sould reset state too */ + unsigned old_state : 2; +}; + +static int be_openssl_enable(struct bufferevent *, short); +static int be_openssl_disable(struct bufferevent *, short); +static void be_openssl_unlink(struct bufferevent *); +static void be_openssl_destruct(struct bufferevent *); +static int be_openssl_adj_timeouts(struct bufferevent *); +static int be_openssl_flush(struct bufferevent *bufev, + short iotype, enum bufferevent_flush_mode mode); +static int be_openssl_ctrl(struct bufferevent *, enum bufferevent_ctrl_op, union bufferevent_ctrl_data *); + +const struct bufferevent_ops bufferevent_ops_openssl = { + "ssl", + evutil_offsetof(struct bufferevent_openssl, bev.bev), + be_openssl_enable, + be_openssl_disable, + be_openssl_unlink, + be_openssl_destruct, + be_openssl_adj_timeouts, + be_openssl_flush, + be_openssl_ctrl, +}; + +/* Given a bufferevent, return a pointer to the bufferevent_openssl that + * contains it, if any. */ +static inline struct bufferevent_openssl * +upcast(struct bufferevent *bev) +{ + struct bufferevent_openssl *bev_o; + if (bev->be_ops != &bufferevent_ops_openssl) + return NULL; + bev_o = (void*)( ((char*)bev) - + evutil_offsetof(struct bufferevent_openssl, bev.bev)); + EVUTIL_ASSERT(bev_o->bev.bev.be_ops == &bufferevent_ops_openssl); + return bev_o; +} + +static inline void +put_error(struct bufferevent_openssl *bev_ssl, unsigned long err) +{ + if (bev_ssl->n_errors == NUM_ERRORS) + return; + /* The error type according to openssl is "unsigned long", but + openssl never uses more than 32 bits of it. It _can't_ use more + than 32 bits of it, since it needs to report errors on systems + where long is only 32 bits. + */ + bev_ssl->errors[bev_ssl->n_errors++] = (ev_uint32_t) err; +} + +/* Have the base communications channel (either the underlying bufferevent or + * ev_read and ev_write) start reading. Take the read-blocked-on-write flag + * into account. */ +static int +start_reading(struct bufferevent_openssl *bev_ssl) +{ + if (bev_ssl->underlying) { + bufferevent_unsuspend_read_(bev_ssl->underlying, + BEV_SUSPEND_FILT_READ); + return 0; + } else { + struct bufferevent *bev = &bev_ssl->bev.bev; + int r; + r = bufferevent_add_event_(&bev->ev_read, &bev->timeout_read); + if (r == 0 && bev_ssl->read_blocked_on_write) + r = bufferevent_add_event_(&bev->ev_write, + &bev->timeout_write); + return r; + } +} + +/* Have the base communications channel (either the underlying bufferevent or + * ev_read and ev_write) start writing. Take the write-blocked-on-read flag + * into account. */ +static int +start_writing(struct bufferevent_openssl *bev_ssl) +{ + int r = 0; + if (bev_ssl->underlying) { + if (bev_ssl->write_blocked_on_read) { + bufferevent_unsuspend_read_(bev_ssl->underlying, + BEV_SUSPEND_FILT_READ); + } + } else { + struct bufferevent *bev = &bev_ssl->bev.bev; + r = bufferevent_add_event_(&bev->ev_write, &bev->timeout_write); + if (!r && bev_ssl->write_blocked_on_read) + r = bufferevent_add_event_(&bev->ev_read, + &bev->timeout_read); + } + return r; +} + +static void +stop_reading(struct bufferevent_openssl *bev_ssl) +{ + if (bev_ssl->write_blocked_on_read) + return; + if (bev_ssl->underlying) { + bufferevent_suspend_read_(bev_ssl->underlying, + BEV_SUSPEND_FILT_READ); + } else { + struct bufferevent *bev = &bev_ssl->bev.bev; + event_del(&bev->ev_read); + } +} + +static void +stop_writing(struct bufferevent_openssl *bev_ssl) +{ + if (bev_ssl->read_blocked_on_write) + return; + if (bev_ssl->underlying) { + bufferevent_unsuspend_read_(bev_ssl->underlying, + BEV_SUSPEND_FILT_READ); + } else { + struct bufferevent *bev = &bev_ssl->bev.bev; + event_del(&bev->ev_write); + } +} + +static int +set_rbow(struct bufferevent_openssl *bev_ssl) +{ + if (!bev_ssl->underlying) + stop_reading(bev_ssl); + bev_ssl->read_blocked_on_write = 1; + return start_writing(bev_ssl); +} + +static int +set_wbor(struct bufferevent_openssl *bev_ssl) +{ + if (!bev_ssl->underlying) + stop_writing(bev_ssl); + bev_ssl->write_blocked_on_read = 1; + return start_reading(bev_ssl); +} + +static int +clear_rbow(struct bufferevent_openssl *bev_ssl) +{ + struct bufferevent *bev = &bev_ssl->bev.bev; + int r = 0; + bev_ssl->read_blocked_on_write = 0; + if (!(bev->enabled & EV_WRITE)) + stop_writing(bev_ssl); + if (bev->enabled & EV_READ) + r = start_reading(bev_ssl); + return r; +} + + +static int +clear_wbor(struct bufferevent_openssl *bev_ssl) +{ + struct bufferevent *bev = &bev_ssl->bev.bev; + int r = 0; + bev_ssl->write_blocked_on_read = 0; + if (!(bev->enabled & EV_READ)) + stop_reading(bev_ssl); + if (bev->enabled & EV_WRITE) + r = start_writing(bev_ssl); + return r; +} + +static void +conn_closed(struct bufferevent_openssl *bev_ssl, int when, int errcode, int ret) +{ + int event = BEV_EVENT_ERROR; + int dirty_shutdown = 0; + unsigned long err; + + switch (errcode) { + case SSL_ERROR_ZERO_RETURN: + /* Possibly a clean shutdown. */ + if (SSL_get_shutdown(bev_ssl->ssl) & SSL_RECEIVED_SHUTDOWN) + event = BEV_EVENT_EOF; + else + dirty_shutdown = 1; + break; + case SSL_ERROR_SYSCALL: + /* IO error; possibly a dirty shutdown. */ + if ((ret == 0 || ret == -1) && ERR_peek_error() == 0) + dirty_shutdown = 1; + break; + case SSL_ERROR_SSL: + /* Protocol error. */ + break; + case SSL_ERROR_WANT_X509_LOOKUP: + /* XXXX handle this. */ + break; + case SSL_ERROR_NONE: + case SSL_ERROR_WANT_READ: + case SSL_ERROR_WANT_WRITE: + case SSL_ERROR_WANT_CONNECT: + case SSL_ERROR_WANT_ACCEPT: + default: + /* should be impossible; treat as normal error. */ + event_warnx("BUG: Unexpected OpenSSL error code %d", errcode); + break; + } + + while ((err = ERR_get_error())) { + put_error(bev_ssl, err); + } + + if (dirty_shutdown && bev_ssl->allow_dirty_shutdown) + event = BEV_EVENT_EOF; + + stop_reading(bev_ssl); + stop_writing(bev_ssl); + + /* when is BEV_EVENT_{READING|WRITING} */ + event = when | event; + bufferevent_run_eventcb_(&bev_ssl->bev.bev, event, 0); +} + +static void +init_bio_counts(struct bufferevent_openssl *bev_ssl) +{ + BIO *rbio, *wbio; + + wbio = SSL_get_wbio(bev_ssl->ssl); + bev_ssl->counts.n_written = wbio ? BIO_number_written(wbio) : 0; + rbio = SSL_get_rbio(bev_ssl->ssl); + bev_ssl->counts.n_read = rbio ? BIO_number_read(rbio) : 0; +} + +static inline void +decrement_buckets(struct bufferevent_openssl *bev_ssl) +{ + unsigned long num_w = BIO_number_written(SSL_get_wbio(bev_ssl->ssl)); + unsigned long num_r = BIO_number_read(SSL_get_rbio(bev_ssl->ssl)); + /* These next two subtractions can wrap around. That's okay. */ + unsigned long w = num_w - bev_ssl->counts.n_written; + unsigned long r = num_r - bev_ssl->counts.n_read; + if (w) + bufferevent_decrement_write_buckets_(&bev_ssl->bev, w); + if (r) + bufferevent_decrement_read_buckets_(&bev_ssl->bev, r); + bev_ssl->counts.n_written = num_w; + bev_ssl->counts.n_read = num_r; +} + +#define OP_MADE_PROGRESS 1 +#define OP_BLOCKED 2 +#define OP_ERR 4 + +/* Return a bitmask of OP_MADE_PROGRESS (if we read anything); OP_BLOCKED (if + we're now blocked); and OP_ERR (if an error occurred). */ +static int +do_read(struct bufferevent_openssl *bev_ssl, int n_to_read) { + /* Requires lock */ + struct bufferevent *bev = &bev_ssl->bev.bev; + struct evbuffer *input = bev->input; + int r, n, i, n_used = 0, atmost; + struct evbuffer_iovec space[2]; + int result = 0; + + if (bev_ssl->bev.read_suspended) + return 0; + + atmost = bufferevent_get_read_max_(&bev_ssl->bev); + if (n_to_read > atmost) + n_to_read = atmost; + + n = evbuffer_reserve_space(input, n_to_read, space, 2); + if (n < 0) + return OP_ERR; + + for (i=0; ibev.read_suspended) + break; + ERR_clear_error(); + r = SSL_read(bev_ssl->ssl, space[i].iov_base, space[i].iov_len); + if (r>0) { + result |= OP_MADE_PROGRESS; + if (bev_ssl->read_blocked_on_write) + if (clear_rbow(bev_ssl) < 0) + return OP_ERR | result; + ++n_used; + space[i].iov_len = r; + decrement_buckets(bev_ssl); + } else { + int err = SSL_get_error(bev_ssl->ssl, r); + print_err(err); + switch (err) { + case SSL_ERROR_WANT_READ: + /* Can't read until underlying has more data. */ + if (bev_ssl->read_blocked_on_write) + if (clear_rbow(bev_ssl) < 0) + return OP_ERR | result; + break; + case SSL_ERROR_WANT_WRITE: + /* This read operation requires a write, and the + * underlying is full */ + if (!bev_ssl->read_blocked_on_write) + if (set_rbow(bev_ssl) < 0) + return OP_ERR | result; + break; + default: + conn_closed(bev_ssl, BEV_EVENT_READING, err, r); + break; + } + result |= OP_BLOCKED; + break; /* out of the loop */ + } + } + + if (n_used) { + evbuffer_commit_space(input, space, n_used); + if (bev_ssl->underlying) + BEV_RESET_GENERIC_READ_TIMEOUT(bev); + } + + return result; +} + +/* Return a bitmask of OP_MADE_PROGRESS (if we wrote anything); OP_BLOCKED (if + we're now blocked); and OP_ERR (if an error occurred). */ +static int +do_write(struct bufferevent_openssl *bev_ssl, int atmost) +{ + int i, r, n, n_written = 0; + struct bufferevent *bev = &bev_ssl->bev.bev; + struct evbuffer *output = bev->output; + struct evbuffer_iovec space[8]; + int result = 0; + + if (bev_ssl->last_write > 0) + atmost = bev_ssl->last_write; + else + atmost = bufferevent_get_write_max_(&bev_ssl->bev); + + n = evbuffer_peek(output, atmost, NULL, space, 8); + if (n < 0) + return OP_ERR | result; + + if (n > 8) + n = 8; + for (i=0; i < n; ++i) { + if (bev_ssl->bev.write_suspended) + break; + + /* SSL_write will (reasonably) return 0 if we tell it to + send 0 data. Skip this case so we don't interpret the + result as an error */ + if (space[i].iov_len == 0) + continue; + + ERR_clear_error(); + r = SSL_write(bev_ssl->ssl, space[i].iov_base, + space[i].iov_len); + if (r > 0) { + result |= OP_MADE_PROGRESS; + if (bev_ssl->write_blocked_on_read) + if (clear_wbor(bev_ssl) < 0) + return OP_ERR | result; + n_written += r; + bev_ssl->last_write = -1; + decrement_buckets(bev_ssl); + } else { + int err = SSL_get_error(bev_ssl->ssl, r); + print_err(err); + switch (err) { + case SSL_ERROR_WANT_WRITE: + /* Can't read until underlying has more data. */ + if (bev_ssl->write_blocked_on_read) + if (clear_wbor(bev_ssl) < 0) + return OP_ERR | result; + bev_ssl->last_write = space[i].iov_len; + break; + case SSL_ERROR_WANT_READ: + /* This read operation requires a write, and the + * underlying is full */ + if (!bev_ssl->write_blocked_on_read) + if (set_wbor(bev_ssl) < 0) + return OP_ERR | result; + bev_ssl->last_write = space[i].iov_len; + break; + default: + conn_closed(bev_ssl, BEV_EVENT_WRITING, err, r); + bev_ssl->last_write = -1; + break; + } + result |= OP_BLOCKED; + break; + } + } + if (n_written) { + evbuffer_drain(output, n_written); + if (bev_ssl->underlying) + BEV_RESET_GENERIC_WRITE_TIMEOUT(bev); + + bufferevent_trigger_nolock_(bev, EV_WRITE, BEV_OPT_DEFER_CALLBACKS); + } + return result; +} + +#define WRITE_FRAME 15000 + +#define READ_DEFAULT 4096 + +/* Try to figure out how many bytes to read; return 0 if we shouldn't be + * reading. */ +static int +bytes_to_read(struct bufferevent_openssl *bev) +{ + struct evbuffer *input = bev->bev.bev.input; + struct event_watermark *wm = &bev->bev.bev.wm_read; + int result = READ_DEFAULT; + ev_ssize_t limit; + /* XXX 99% of this is generic code that nearly all bufferevents will + * want. */ + + if (bev->write_blocked_on_read) { + return 0; + } + + if (! (bev->bev.bev.enabled & EV_READ)) { + return 0; + } + + if (bev->bev.read_suspended) { + return 0; + } + + if (wm->high) { + if (evbuffer_get_length(input) >= wm->high) { + return 0; + } + + result = wm->high - evbuffer_get_length(input); + } else { + result = READ_DEFAULT; + } + + /* Respect the rate limit */ + limit = bufferevent_get_read_max_(&bev->bev); + if (result > limit) { + result = limit; + } + + return result; +} + + +/* Things look readable. If write is blocked on read, write till it isn't. + * Read from the underlying buffer until we block or we hit our high-water + * mark. + */ +static void +consider_reading(struct bufferevent_openssl *bev_ssl) +{ + int r; + int n_to_read; + int all_result_flags = 0; + + while (bev_ssl->write_blocked_on_read) { + r = do_write(bev_ssl, WRITE_FRAME); + if (r & (OP_BLOCKED|OP_ERR)) + break; + } + if (bev_ssl->write_blocked_on_read) + return; + + n_to_read = bytes_to_read(bev_ssl); + + while (n_to_read) { + r = do_read(bev_ssl, n_to_read); + all_result_flags |= r; + + if (r & (OP_BLOCKED|OP_ERR)) + break; + + if (bev_ssl->bev.read_suspended) + break; + + /* Read all pending data. This won't hit the network + * again, and will (most importantly) put us in a state + * where we don't need to read anything else until the + * socket is readable again. It'll potentially make us + * overrun our read high-watermark (somewhat + * regrettable). The damage to the rate-limit has + * already been done, since OpenSSL went and read a + * whole SSL record anyway. */ + n_to_read = SSL_pending(bev_ssl->ssl); + + /* XXX This if statement is actually a bad bug, added to avoid + * XXX a worse bug. + * + * The bad bug: It can potentially cause resource unfairness + * by reading too much data from the underlying bufferevent; + * it can potentially cause read looping if the underlying + * bufferevent is a bufferevent_pair and deferred callbacks + * aren't used. + * + * The worse bug: If we didn't do this, then we would + * potentially not read any more from bev_ssl->underlying + * until more data arrived there, which could lead to us + * waiting forever. + */ + if (!n_to_read && bev_ssl->underlying) + n_to_read = bytes_to_read(bev_ssl); + } + + if (all_result_flags & OP_MADE_PROGRESS) { + struct bufferevent *bev = &bev_ssl->bev.bev; + + bufferevent_trigger_nolock_(bev, EV_READ, 0); + } + + if (!bev_ssl->underlying) { + /* Should be redundant, but let's avoid busy-looping */ + if (bev_ssl->bev.read_suspended || + !(bev_ssl->bev.bev.enabled & EV_READ)) { + event_del(&bev_ssl->bev.bev.ev_read); + } + } +} + +static void +consider_writing(struct bufferevent_openssl *bev_ssl) +{ + int r; + struct evbuffer *output = bev_ssl->bev.bev.output; + struct evbuffer *target = NULL; + struct event_watermark *wm = NULL; + + while (bev_ssl->read_blocked_on_write) { + r = do_read(bev_ssl, 1024); /* XXXX 1024 is a hack */ + if (r & OP_MADE_PROGRESS) { + struct bufferevent *bev = &bev_ssl->bev.bev; + + bufferevent_trigger_nolock_(bev, EV_READ, 0); + } + if (r & (OP_ERR|OP_BLOCKED)) + break; + } + if (bev_ssl->read_blocked_on_write) + return; + if (bev_ssl->underlying) { + target = bev_ssl->underlying->output; + wm = &bev_ssl->underlying->wm_write; + } + while ((bev_ssl->bev.bev.enabled & EV_WRITE) && + (! bev_ssl->bev.write_suspended) && + evbuffer_get_length(output) && + (!target || (! wm->high || evbuffer_get_length(target) < wm->high))) { + int n_to_write; + if (wm && wm->high) + n_to_write = wm->high - evbuffer_get_length(target); + else + n_to_write = WRITE_FRAME; + r = do_write(bev_ssl, n_to_write); + if (r & (OP_BLOCKED|OP_ERR)) + break; + } + + if (!bev_ssl->underlying) { + if (evbuffer_get_length(output) == 0) { + event_del(&bev_ssl->bev.bev.ev_write); + } else if (bev_ssl->bev.write_suspended || + !(bev_ssl->bev.bev.enabled & EV_WRITE)) { + /* Should be redundant, but let's avoid busy-looping */ + event_del(&bev_ssl->bev.bev.ev_write); + } + } +} + +static void +be_openssl_readcb(struct bufferevent *bev_base, void *ctx) +{ + struct bufferevent_openssl *bev_ssl = ctx; + consider_reading(bev_ssl); +} + +static void +be_openssl_writecb(struct bufferevent *bev_base, void *ctx) +{ + struct bufferevent_openssl *bev_ssl = ctx; + consider_writing(bev_ssl); +} + +static void +be_openssl_eventcb(struct bufferevent *bev_base, short what, void *ctx) +{ + struct bufferevent_openssl *bev_ssl = ctx; + int event = 0; + + if (what & BEV_EVENT_EOF) { + if (bev_ssl->allow_dirty_shutdown) + event = BEV_EVENT_EOF; + else + event = BEV_EVENT_ERROR; + } else if (what & BEV_EVENT_TIMEOUT) { + /* We sure didn't set this. Propagate it to the user. */ + event = what; + } else if (what & BEV_EVENT_ERROR) { + /* An error occurred on the connection. Propagate it to the user. */ + event = what; + } else if (what & BEV_EVENT_CONNECTED) { + /* Ignore it. We're saying SSL_connect() already, which will + eat it. */ + } + if (event) + bufferevent_run_eventcb_(&bev_ssl->bev.bev, event, 0); +} + +static void +be_openssl_readeventcb(evutil_socket_t fd, short what, void *ptr) +{ + struct bufferevent_openssl *bev_ssl = ptr; + bufferevent_incref_and_lock_(&bev_ssl->bev.bev); + if (what == EV_TIMEOUT) { + bufferevent_run_eventcb_(&bev_ssl->bev.bev, + BEV_EVENT_TIMEOUT|BEV_EVENT_READING, 0); + } else { + consider_reading(bev_ssl); + } + bufferevent_decref_and_unlock_(&bev_ssl->bev.bev); +} + +static void +be_openssl_writeeventcb(evutil_socket_t fd, short what, void *ptr) +{ + struct bufferevent_openssl *bev_ssl = ptr; + bufferevent_incref_and_lock_(&bev_ssl->bev.bev); + if (what == EV_TIMEOUT) { + bufferevent_run_eventcb_(&bev_ssl->bev.bev, + BEV_EVENT_TIMEOUT|BEV_EVENT_WRITING, 0); + } else { + consider_writing(bev_ssl); + } + bufferevent_decref_and_unlock_(&bev_ssl->bev.bev); +} + +static int +be_openssl_auto_fd(struct bufferevent_openssl *bev_ssl, int fd) +{ + if (!bev_ssl->underlying) { + struct bufferevent *bev = &bev_ssl->bev.bev; + if (event_initialized(&bev->ev_read) && fd < 0) { + fd = event_get_fd(&bev->ev_read); + } + } + return fd; +} + +static int +set_open_callbacks(struct bufferevent_openssl *bev_ssl, evutil_socket_t fd) +{ + if (bev_ssl->underlying) { + bufferevent_setcb(bev_ssl->underlying, + be_openssl_readcb, be_openssl_writecb, be_openssl_eventcb, + bev_ssl); + return 0; + } else { + struct bufferevent *bev = &bev_ssl->bev.bev; + int rpending=0, wpending=0, r1=0, r2=0; + + if (event_initialized(&bev->ev_read)) { + rpending = event_pending(&bev->ev_read, EV_READ, NULL); + wpending = event_pending(&bev->ev_write, EV_WRITE, NULL); + + event_del(&bev->ev_read); + event_del(&bev->ev_write); + } + + event_assign(&bev->ev_read, bev->ev_base, fd, + EV_READ|EV_PERSIST|EV_FINALIZE, + be_openssl_readeventcb, bev_ssl); + event_assign(&bev->ev_write, bev->ev_base, fd, + EV_WRITE|EV_PERSIST|EV_FINALIZE, + be_openssl_writeeventcb, bev_ssl); + + if (rpending) + r1 = bufferevent_add_event_(&bev->ev_read, &bev->timeout_read); + if (wpending) + r2 = bufferevent_add_event_(&bev->ev_write, &bev->timeout_write); + + return (r1<0 || r2<0) ? -1 : 0; + } +} + +static int +do_handshake(struct bufferevent_openssl *bev_ssl) +{ + int r; + + switch (bev_ssl->state) { + default: + case BUFFEREVENT_SSL_OPEN: + EVUTIL_ASSERT(0); + return -1; + case BUFFEREVENT_SSL_CONNECTING: + case BUFFEREVENT_SSL_ACCEPTING: + ERR_clear_error(); + r = SSL_do_handshake(bev_ssl->ssl); + break; + } + decrement_buckets(bev_ssl); + + if (r==1) { + int fd = event_get_fd(&bev_ssl->bev.bev.ev_read); + /* We're done! */ + bev_ssl->state = BUFFEREVENT_SSL_OPEN; + set_open_callbacks(bev_ssl, fd); /* XXXX handle failure */ + /* Call do_read and do_write as needed */ + bufferevent_enable(&bev_ssl->bev.bev, bev_ssl->bev.bev.enabled); + bufferevent_run_eventcb_(&bev_ssl->bev.bev, + BEV_EVENT_CONNECTED, 0); + return 1; + } else { + int err = SSL_get_error(bev_ssl->ssl, r); + print_err(err); + switch (err) { + case SSL_ERROR_WANT_WRITE: + stop_reading(bev_ssl); + return start_writing(bev_ssl); + case SSL_ERROR_WANT_READ: + stop_writing(bev_ssl); + return start_reading(bev_ssl); + default: + conn_closed(bev_ssl, BEV_EVENT_READING, err, r); + return -1; + } + } +} + +static void +be_openssl_handshakecb(struct bufferevent *bev_base, void *ctx) +{ + struct bufferevent_openssl *bev_ssl = ctx; + do_handshake(bev_ssl);/* XXX handle failure */ +} + +static void +be_openssl_handshakeeventcb(evutil_socket_t fd, short what, void *ptr) +{ + struct bufferevent_openssl *bev_ssl = ptr; + + bufferevent_incref_and_lock_(&bev_ssl->bev.bev); + if (what & EV_TIMEOUT) { + bufferevent_run_eventcb_(&bev_ssl->bev.bev, BEV_EVENT_TIMEOUT, 0); + } else + do_handshake(bev_ssl);/* XXX handle failure */ + bufferevent_decref_and_unlock_(&bev_ssl->bev.bev); +} + +static int +set_handshake_callbacks(struct bufferevent_openssl *bev_ssl, evutil_socket_t fd) +{ + if (bev_ssl->underlying) { + bufferevent_setcb(bev_ssl->underlying, + be_openssl_handshakecb, be_openssl_handshakecb, + be_openssl_eventcb, + bev_ssl); + + if (fd < 0) + return 0; + + if (bufferevent_setfd(bev_ssl->underlying, fd)) + return 1; + + return do_handshake(bev_ssl); + } else { + struct bufferevent *bev = &bev_ssl->bev.bev; + + if (event_initialized(&bev->ev_read)) { + event_del(&bev->ev_read); + event_del(&bev->ev_write); + } + + event_assign(&bev->ev_read, bev->ev_base, fd, + EV_READ|EV_PERSIST|EV_FINALIZE, + be_openssl_handshakeeventcb, bev_ssl); + event_assign(&bev->ev_write, bev->ev_base, fd, + EV_WRITE|EV_PERSIST|EV_FINALIZE, + be_openssl_handshakeeventcb, bev_ssl); + if (fd >= 0) + bufferevent_enable(bev, bev->enabled); + return 0; + } +} + +int +bufferevent_ssl_renegotiate(struct bufferevent *bev) +{ + struct bufferevent_openssl *bev_ssl = upcast(bev); + if (!bev_ssl) + return -1; + if (SSL_renegotiate(bev_ssl->ssl) < 0) + return -1; + bev_ssl->state = BUFFEREVENT_SSL_CONNECTING; + if (set_handshake_callbacks(bev_ssl, be_openssl_auto_fd(bev_ssl, -1)) < 0) + return -1; + if (!bev_ssl->underlying) + return do_handshake(bev_ssl); + return 0; +} + +static void +be_openssl_outbuf_cb(struct evbuffer *buf, + const struct evbuffer_cb_info *cbinfo, void *arg) +{ + struct bufferevent_openssl *bev_ssl = arg; + int r = 0; + /* XXX need to hold a reference here. */ + + if (cbinfo->n_added && bev_ssl->state == BUFFEREVENT_SSL_OPEN) { + if (cbinfo->orig_size == 0) + r = bufferevent_add_event_(&bev_ssl->bev.bev.ev_write, + &bev_ssl->bev.bev.timeout_write); + + if (bev_ssl->underlying) + consider_writing(bev_ssl); + } + /* XXX Handle r < 0 */ + (void)r; +} + + +static int +be_openssl_enable(struct bufferevent *bev, short events) +{ + struct bufferevent_openssl *bev_ssl = upcast(bev); + int r1 = 0, r2 = 0; + + if (events & EV_READ) + r1 = start_reading(bev_ssl); + if (events & EV_WRITE) + r2 = start_writing(bev_ssl); + + if (bev_ssl->underlying) { + if (events & EV_READ) + BEV_RESET_GENERIC_READ_TIMEOUT(bev); + if (events & EV_WRITE) + BEV_RESET_GENERIC_WRITE_TIMEOUT(bev); + + if (events & EV_READ) + consider_reading(bev_ssl); + if (events & EV_WRITE) + consider_writing(bev_ssl); + } + return (r1 < 0 || r2 < 0) ? -1 : 0; +} + +static int +be_openssl_disable(struct bufferevent *bev, short events) +{ + struct bufferevent_openssl *bev_ssl = upcast(bev); + + if (events & EV_READ) + stop_reading(bev_ssl); + if (events & EV_WRITE) + stop_writing(bev_ssl); + + if (bev_ssl->underlying) { + if (events & EV_READ) + BEV_DEL_GENERIC_READ_TIMEOUT(bev); + if (events & EV_WRITE) + BEV_DEL_GENERIC_WRITE_TIMEOUT(bev); + } + return 0; +} + +static void +be_openssl_unlink(struct bufferevent *bev) +{ + struct bufferevent_openssl *bev_ssl = upcast(bev); + + if (bev_ssl->bev.options & BEV_OPT_CLOSE_ON_FREE) { + if (bev_ssl->underlying) { + if (BEV_UPCAST(bev_ssl->underlying)->refcnt < 2) { + event_warnx("BEV_OPT_CLOSE_ON_FREE set on an " + "bufferevent with too few references"); + } else { + bufferevent_free(bev_ssl->underlying); + /* We still have a reference to it, via our + * BIO. So we don't drop this. */ + // bev_ssl->underlying = NULL; + } + } + } else { + if (bev_ssl->underlying) { + if (bev_ssl->underlying->errorcb == be_openssl_eventcb) + bufferevent_setcb(bev_ssl->underlying, + NULL,NULL,NULL,NULL); + bufferevent_unsuspend_read_(bev_ssl->underlying, + BEV_SUSPEND_FILT_READ); + } + } +} + +static void +be_openssl_destruct(struct bufferevent *bev) +{ + struct bufferevent_openssl *bev_ssl = upcast(bev); + + if (bev_ssl->bev.options & BEV_OPT_CLOSE_ON_FREE) { + if (! bev_ssl->underlying) { + evutil_socket_t fd = -1; + BIO *bio = SSL_get_wbio(bev_ssl->ssl); + if (bio) + fd = BIO_get_fd(bio, NULL); + if (fd >= 0) + evutil_closesocket(fd); + } + SSL_free(bev_ssl->ssl); + } +} + +static int +be_openssl_adj_timeouts(struct bufferevent *bev) +{ + struct bufferevent_openssl *bev_ssl = upcast(bev); + + if (bev_ssl->underlying) { + return bufferevent_generic_adj_timeouts_(bev); + } else { + return bufferevent_generic_adj_existing_timeouts_(bev); + } +} + +static int +be_openssl_flush(struct bufferevent *bufev, + short iotype, enum bufferevent_flush_mode mode) +{ + /* XXXX Implement this. */ + return 0; +} + +static int +be_openssl_set_fd(struct bufferevent_openssl *bev_ssl, + enum bufferevent_ssl_state state, int fd) +{ + bev_ssl->state = state; + + switch (state) { + case BUFFEREVENT_SSL_ACCEPTING: + SSL_set_accept_state(bev_ssl->ssl); + if (set_handshake_callbacks(bev_ssl, fd) < 0) + return -1; + break; + case BUFFEREVENT_SSL_CONNECTING: + SSL_set_connect_state(bev_ssl->ssl); + if (set_handshake_callbacks(bev_ssl, fd) < 0) + return -1; + break; + case BUFFEREVENT_SSL_OPEN: + if (set_open_callbacks(bev_ssl, fd) < 0) + return -1; + break; + default: + return -1; + } + + return 0; +} + +static int +be_openssl_ctrl(struct bufferevent *bev, + enum bufferevent_ctrl_op op, union bufferevent_ctrl_data *data) +{ + struct bufferevent_openssl *bev_ssl = upcast(bev); + switch (op) { + case BEV_CTRL_SET_FD: + if (!bev_ssl->underlying) { + BIO *bio; + bio = BIO_new_socket(data->fd, 0); + SSL_set_bio(bev_ssl->ssl, bio, bio); + } else { + BIO *bio; + if (!(bio = BIO_new_bufferevent(bev_ssl->underlying, 0))) + return -1; + SSL_set_bio(bev_ssl->ssl, bio, bio); + } + + return be_openssl_set_fd(bev_ssl, bev_ssl->old_state, data->fd); + case BEV_CTRL_GET_FD: + if (bev_ssl->underlying) { + data->fd = event_get_fd(&bev_ssl->underlying->ev_read); + } else { + data->fd = event_get_fd(&bev->ev_read); + } + return 0; + case BEV_CTRL_GET_UNDERLYING: + data->ptr = bev_ssl->underlying; + return 0; + case BEV_CTRL_CANCEL_ALL: + default: + return -1; + } +} + +SSL * +bufferevent_openssl_get_ssl(struct bufferevent *bufev) +{ + struct bufferevent_openssl *bev_ssl = upcast(bufev); + if (!bev_ssl) + return NULL; + return bev_ssl->ssl; +} + +static struct bufferevent * +bufferevent_openssl_new_impl(struct event_base *base, + struct bufferevent *underlying, + evutil_socket_t fd, + SSL *ssl, + enum bufferevent_ssl_state state, + int options) +{ + struct bufferevent_openssl *bev_ssl = NULL; + struct bufferevent_private *bev_p = NULL; + int tmp_options = options & ~BEV_OPT_THREADSAFE; + + if (underlying != NULL && fd >= 0) + return NULL; /* Only one can be set. */ + + if (!(bev_ssl = mm_calloc(1, sizeof(struct bufferevent_openssl)))) + goto err; + + bev_p = &bev_ssl->bev; + + if (bufferevent_init_common_(bev_p, base, + &bufferevent_ops_openssl, tmp_options) < 0) + goto err; + + /* Don't explode if we decide to realloc a chunk we're writing from in + * the output buffer. */ + SSL_set_mode(ssl, SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER); + + bev_ssl->underlying = underlying; + bev_ssl->ssl = ssl; + + bev_ssl->outbuf_cb = evbuffer_add_cb(bev_p->bev.output, + be_openssl_outbuf_cb, bev_ssl); + + if (options & BEV_OPT_THREADSAFE) + bufferevent_enable_locking_(&bev_ssl->bev.bev, NULL); + + if (underlying) { + bufferevent_init_generic_timeout_cbs_(&bev_ssl->bev.bev); + bufferevent_incref_(underlying); + } + + bev_ssl->old_state = state; + bev_ssl->last_write = -1; + + init_bio_counts(bev_ssl); + + fd = be_openssl_auto_fd(bev_ssl, fd); + if (be_openssl_set_fd(bev_ssl, state, fd)) + goto err; + + if (underlying) { + bufferevent_setwatermark(underlying, EV_READ, 0, 0); + bufferevent_enable(underlying, EV_READ|EV_WRITE); + if (state == BUFFEREVENT_SSL_OPEN) + bufferevent_suspend_read_(underlying, + BEV_SUSPEND_FILT_READ); + } + + return &bev_ssl->bev.bev; +err: + if (bev_ssl) + bufferevent_free(&bev_ssl->bev.bev); + return NULL; +} + +struct bufferevent * +bufferevent_openssl_filter_new(struct event_base *base, + struct bufferevent *underlying, + SSL *ssl, + enum bufferevent_ssl_state state, + int options) +{ + /* We don't tell the BIO to close the bufferevent; we do it ourselves + * on be_openssl_destruct */ + int close_flag = 0; /* options & BEV_OPT_CLOSE_ON_FREE; */ + BIO *bio; + if (!underlying) + return NULL; + if (!(bio = BIO_new_bufferevent(underlying, close_flag))) + return NULL; + + SSL_set_bio(ssl, bio, bio); + + return bufferevent_openssl_new_impl( + base, underlying, -1, ssl, state, options); +} + +struct bufferevent * +bufferevent_openssl_socket_new(struct event_base *base, + evutil_socket_t fd, + SSL *ssl, + enum bufferevent_ssl_state state, + int options) +{ + /* Does the SSL already have an fd? */ + BIO *bio = SSL_get_wbio(ssl); + long have_fd = -1; + + if (bio) + have_fd = BIO_get_fd(bio, NULL); + + if (have_fd >= 0) { + /* The SSL is already configured with an fd. */ + if (fd < 0) { + /* We should learn the fd from the SSL. */ + fd = (evutil_socket_t) have_fd; + } else if (have_fd == (long)fd) { + /* We already know the fd from the SSL; do nothing */ + } else { + /* We specified an fd different from that of the SSL. + This is probably an error on our part. Fail. */ + return NULL; + } + (void) BIO_set_close(bio, 0); + } else { + /* The SSL isn't configured with a BIO with an fd. */ + if (fd >= 0) { + /* ... and we have an fd we want to use. */ + bio = BIO_new_socket(fd, 0); + SSL_set_bio(ssl, bio, bio); + } else { + /* Leave the fd unset. */ + } + } + + return bufferevent_openssl_new_impl( + base, NULL, fd, ssl, state, options); +} + +int +bufferevent_openssl_get_allow_dirty_shutdown(struct bufferevent *bev) +{ + int allow_dirty_shutdown = -1; + struct bufferevent_openssl *bev_ssl; + BEV_LOCK(bev); + bev_ssl = upcast(bev); + if (bev_ssl) + allow_dirty_shutdown = bev_ssl->allow_dirty_shutdown; + BEV_UNLOCK(bev); + return allow_dirty_shutdown; +} + +void +bufferevent_openssl_set_allow_dirty_shutdown(struct bufferevent *bev, + int allow_dirty_shutdown) +{ + struct bufferevent_openssl *bev_ssl; + BEV_LOCK(bev); + bev_ssl = upcast(bev); + if (bev_ssl) + bev_ssl->allow_dirty_shutdown = !!allow_dirty_shutdown; + BEV_UNLOCK(bev); +} + +unsigned long +bufferevent_get_openssl_error(struct bufferevent *bev) +{ + unsigned long err = 0; + struct bufferevent_openssl *bev_ssl; + BEV_LOCK(bev); + bev_ssl = upcast(bev); + if (bev_ssl && bev_ssl->n_errors) { + err = bev_ssl->errors[--bev_ssl->n_errors]; + } + BEV_UNLOCK(bev); + return err; +} diff -Nru mysql-5.7-5.7.25/extra/libevent/bufferevent_pair.c mysql-5.7-5.7.26/extra/libevent/bufferevent_pair.c --- mysql-5.7-5.7.25/extra/libevent/bufferevent_pair.c 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/bufferevent_pair.c 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,365 @@ +/* + * Copyright (c) 2009-2012 Niels Provos, Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#include "event2/event-config.h" +#include "evconfig-private.h" + +#include + +#ifdef _WIN32 +#include +#endif + +#include "event2/util.h" +#include "event2/buffer.h" +#include "event2/bufferevent.h" +#include "event2/bufferevent_struct.h" +#include "event2/event.h" +#include "defer-internal.h" +#include "bufferevent-internal.h" +#include "mm-internal.h" +#include "util-internal.h" + +struct bufferevent_pair { + struct bufferevent_private bev; + struct bufferevent_pair *partner; + /* For ->destruct() lock checking */ + struct bufferevent_pair *unlinked_partner; +}; + + +/* Given a bufferevent that's really a bev part of a bufferevent_pair, + * return that bufferevent_filtered. Returns NULL otherwise.*/ +static inline struct bufferevent_pair * +upcast(struct bufferevent *bev) +{ + struct bufferevent_pair *bev_p; + if (bev->be_ops != &bufferevent_ops_pair) + return NULL; + bev_p = EVUTIL_UPCAST(bev, struct bufferevent_pair, bev.bev); + EVUTIL_ASSERT(bev_p->bev.bev.be_ops == &bufferevent_ops_pair); + return bev_p; +} + +#define downcast(bev_pair) (&(bev_pair)->bev.bev) + +static inline void +incref_and_lock(struct bufferevent *b) +{ + struct bufferevent_pair *bevp; + bufferevent_incref_and_lock_(b); + bevp = upcast(b); + if (bevp->partner) + bufferevent_incref_and_lock_(downcast(bevp->partner)); +} + +static inline void +decref_and_unlock(struct bufferevent *b) +{ + struct bufferevent_pair *bevp = upcast(b); + if (bevp->partner) + bufferevent_decref_and_unlock_(downcast(bevp->partner)); + bufferevent_decref_and_unlock_(b); +} + +/* XXX Handle close */ + +static void be_pair_outbuf_cb(struct evbuffer *, + const struct evbuffer_cb_info *, void *); + +static struct bufferevent_pair * +bufferevent_pair_elt_new(struct event_base *base, + int options) +{ + struct bufferevent_pair *bufev; + if (! (bufev = mm_calloc(1, sizeof(struct bufferevent_pair)))) + return NULL; + if (bufferevent_init_common_(&bufev->bev, base, &bufferevent_ops_pair, + options)) { + mm_free(bufev); + return NULL; + } + if (!evbuffer_add_cb(bufev->bev.bev.output, be_pair_outbuf_cb, bufev)) { + bufferevent_free(downcast(bufev)); + return NULL; + } + + bufferevent_init_generic_timeout_cbs_(&bufev->bev.bev); + + return bufev; +} + +int +bufferevent_pair_new(struct event_base *base, int options, + struct bufferevent *pair[2]) +{ + struct bufferevent_pair *bufev1 = NULL, *bufev2 = NULL; + int tmp_options; + + options |= BEV_OPT_DEFER_CALLBACKS; + tmp_options = options & ~BEV_OPT_THREADSAFE; + + bufev1 = bufferevent_pair_elt_new(base, options); + if (!bufev1) + return -1; + bufev2 = bufferevent_pair_elt_new(base, tmp_options); + if (!bufev2) { + bufferevent_free(downcast(bufev1)); + return -1; + } + + if (options & BEV_OPT_THREADSAFE) { + /*XXXX check return */ + bufferevent_enable_locking_(downcast(bufev2), bufev1->bev.lock); + } + + bufev1->partner = bufev2; + bufev2->partner = bufev1; + + evbuffer_freeze(downcast(bufev1)->input, 0); + evbuffer_freeze(downcast(bufev1)->output, 1); + evbuffer_freeze(downcast(bufev2)->input, 0); + evbuffer_freeze(downcast(bufev2)->output, 1); + + pair[0] = downcast(bufev1); + pair[1] = downcast(bufev2); + + return 0; +} + +static void +be_pair_transfer(struct bufferevent *src, struct bufferevent *dst, + int ignore_wm) +{ + size_t dst_size; + size_t n; + + evbuffer_unfreeze(src->output, 1); + evbuffer_unfreeze(dst->input, 0); + + if (dst->wm_read.high) { + dst_size = evbuffer_get_length(dst->input); + if (dst_size < dst->wm_read.high) { + n = dst->wm_read.high - dst_size; + evbuffer_remove_buffer(src->output, dst->input, n); + } else { + if (!ignore_wm) + goto done; + n = evbuffer_get_length(src->output); + evbuffer_add_buffer(dst->input, src->output); + } + } else { + n = evbuffer_get_length(src->output); + evbuffer_add_buffer(dst->input, src->output); + } + + if (n) { + BEV_RESET_GENERIC_READ_TIMEOUT(dst); + + if (evbuffer_get_length(dst->output)) + BEV_RESET_GENERIC_WRITE_TIMEOUT(dst); + else + BEV_DEL_GENERIC_WRITE_TIMEOUT(dst); + } + + bufferevent_trigger_nolock_(dst, EV_READ, 0); + bufferevent_trigger_nolock_(src, EV_WRITE, 0); +done: + evbuffer_freeze(src->output, 1); + evbuffer_freeze(dst->input, 0); +} + +static inline int +be_pair_wants_to_talk(struct bufferevent_pair *src, + struct bufferevent_pair *dst) +{ + return (downcast(src)->enabled & EV_WRITE) && + (downcast(dst)->enabled & EV_READ) && + !dst->bev.read_suspended && + evbuffer_get_length(downcast(src)->output); +} + +static void +be_pair_outbuf_cb(struct evbuffer *outbuf, + const struct evbuffer_cb_info *info, void *arg) +{ + struct bufferevent_pair *bev_pair = arg; + struct bufferevent_pair *partner = bev_pair->partner; + + incref_and_lock(downcast(bev_pair)); + + if (info->n_added > info->n_deleted && partner) { + /* We got more data. If the other side's reading, then + hand it over. */ + if (be_pair_wants_to_talk(bev_pair, partner)) { + be_pair_transfer(downcast(bev_pair), downcast(partner), 0); + } + } + + decref_and_unlock(downcast(bev_pair)); +} + +static int +be_pair_enable(struct bufferevent *bufev, short events) +{ + struct bufferevent_pair *bev_p = upcast(bufev); + struct bufferevent_pair *partner = bev_p->partner; + + incref_and_lock(bufev); + + if (events & EV_READ) { + BEV_RESET_GENERIC_READ_TIMEOUT(bufev); + } + if ((events & EV_WRITE) && evbuffer_get_length(bufev->output)) + BEV_RESET_GENERIC_WRITE_TIMEOUT(bufev); + + /* We're starting to read! Does the other side have anything to write?*/ + if ((events & EV_READ) && partner && + be_pair_wants_to_talk(partner, bev_p)) { + be_pair_transfer(downcast(partner), bufev, 0); + } + /* We're starting to write! Does the other side want to read? */ + if ((events & EV_WRITE) && partner && + be_pair_wants_to_talk(bev_p, partner)) { + be_pair_transfer(bufev, downcast(partner), 0); + } + decref_and_unlock(bufev); + return 0; +} + +static int +be_pair_disable(struct bufferevent *bev, short events) +{ + if (events & EV_READ) { + BEV_DEL_GENERIC_READ_TIMEOUT(bev); + } + if (events & EV_WRITE) { + BEV_DEL_GENERIC_WRITE_TIMEOUT(bev); + } + return 0; +} + +static void +be_pair_unlink(struct bufferevent *bev) +{ + struct bufferevent_pair *bev_p = upcast(bev); + + if (bev_p->partner) { + bev_p->unlinked_partner = bev_p->partner; + bev_p->partner->partner = NULL; + bev_p->partner = NULL; + } +} + +/* Free *shared* lock in the latest be (since we share it between two of them). */ +static void +be_pair_destruct(struct bufferevent *bev) +{ + struct bufferevent_pair *bev_p = upcast(bev); + + /* Transfer ownership of the lock into partner, otherwise we will use + * already free'd lock during freeing second bev, see next example: + * + * bev1->own_lock = 1 + * bev2->own_lock = 0 + * bev2->lock = bev1->lock + * + * bufferevent_free(bev1) # refcnt == 0 -> unlink + * bufferevent_free(bev2) # refcnt == 0 -> unlink + * + * event_base_free() -> finilizers -> EVTHREAD_FREE_LOCK(bev1->lock) + * -> BEV_LOCK(bev2->lock) <-- already freed + * + * Where bev1 == pair[0], bev2 == pair[1]. + */ + if (bev_p->unlinked_partner && bev_p->bev.own_lock) { + bev_p->unlinked_partner->bev.own_lock = 1; + bev_p->bev.own_lock = 0; + } + bev_p->unlinked_partner = NULL; +} + +static int +be_pair_flush(struct bufferevent *bev, short iotype, + enum bufferevent_flush_mode mode) +{ + struct bufferevent_pair *bev_p = upcast(bev); + struct bufferevent *partner; + + if (!bev_p->partner) + return -1; + + if (mode == BEV_NORMAL) + return 0; + + incref_and_lock(bev); + + partner = downcast(bev_p->partner); + + if ((iotype & EV_READ) != 0) + be_pair_transfer(partner, bev, 1); + + if ((iotype & EV_WRITE) != 0) + be_pair_transfer(bev, partner, 1); + + if (mode == BEV_FINISHED) { + short what = BEV_EVENT_EOF; + if (iotype & EV_READ) + what |= BEV_EVENT_WRITING; + if (iotype & EV_WRITE) + what |= BEV_EVENT_READING; + bufferevent_run_eventcb_(partner, what, 0); + } + decref_and_unlock(bev); + return 0; +} + +struct bufferevent * +bufferevent_pair_get_partner(struct bufferevent *bev) +{ + struct bufferevent_pair *bev_p; + struct bufferevent *partner = NULL; + bev_p = upcast(bev); + if (! bev_p) + return NULL; + + incref_and_lock(bev); + if (bev_p->partner) + partner = downcast(bev_p->partner); + decref_and_unlock(bev); + return partner; +} + +const struct bufferevent_ops bufferevent_ops_pair = { + "pair_elt", + evutil_offsetof(struct bufferevent_pair, bev.bev), + be_pair_enable, + be_pair_disable, + be_pair_unlink, + be_pair_destruct, + bufferevent_generic_adj_timeouts_, + be_pair_flush, + NULL, /* ctrl */ +}; diff -Nru mysql-5.7-5.7.25/extra/libevent/bufferevent_ratelim.c mysql-5.7-5.7.26/extra/libevent/bufferevent_ratelim.c --- mysql-5.7-5.7.25/extra/libevent/bufferevent_ratelim.c 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/bufferevent_ratelim.c 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,1092 @@ +/* + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * Copyright (c) 2002-2006 Niels Provos + * All rights reserved. + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#include "evconfig-private.h" + +#include +#include +#include +#include + +#include "event2/event.h" +#include "event2/event_struct.h" +#include "event2/util.h" +#include "event2/bufferevent.h" +#include "event2/bufferevent_struct.h" +#include "event2/buffer.h" + +#include "ratelim-internal.h" + +#include "bufferevent-internal.h" +#include "mm-internal.h" +#include "util-internal.h" +#include "event-internal.h" + +int +ev_token_bucket_init_(struct ev_token_bucket *bucket, + const struct ev_token_bucket_cfg *cfg, + ev_uint32_t current_tick, + int reinitialize) +{ + if (reinitialize) { + /* on reinitialization, we only clip downwards, since we've + already used who-knows-how-much bandwidth this tick. We + leave "last_updated" as it is; the next update will add the + appropriate amount of bandwidth to the bucket. + */ + if (bucket->read_limit > (ev_int64_t) cfg->read_maximum) + bucket->read_limit = cfg->read_maximum; + if (bucket->write_limit > (ev_int64_t) cfg->write_maximum) + bucket->write_limit = cfg->write_maximum; + } else { + bucket->read_limit = cfg->read_rate; + bucket->write_limit = cfg->write_rate; + bucket->last_updated = current_tick; + } + return 0; +} + +int +ev_token_bucket_update_(struct ev_token_bucket *bucket, + const struct ev_token_bucket_cfg *cfg, + ev_uint32_t current_tick) +{ + /* It's okay if the tick number overflows, since we'll just + * wrap around when we do the unsigned substraction. */ + unsigned n_ticks = current_tick - bucket->last_updated; + + /* Make sure some ticks actually happened, and that time didn't + * roll back. */ + if (n_ticks == 0 || n_ticks > INT_MAX) + return 0; + + /* Naively, we would say + bucket->limit += n_ticks * cfg->rate; + + if (bucket->limit > cfg->maximum) + bucket->limit = cfg->maximum; + + But we're worried about overflow, so we do it like this: + */ + + if ((cfg->read_maximum - bucket->read_limit) / n_ticks < cfg->read_rate) + bucket->read_limit = cfg->read_maximum; + else + bucket->read_limit += n_ticks * cfg->read_rate; + + + if ((cfg->write_maximum - bucket->write_limit) / n_ticks < cfg->write_rate) + bucket->write_limit = cfg->write_maximum; + else + bucket->write_limit += n_ticks * cfg->write_rate; + + + bucket->last_updated = current_tick; + + return 1; +} + +static inline void +bufferevent_update_buckets(struct bufferevent_private *bev) +{ + /* Must hold lock on bev. */ + struct timeval now; + unsigned tick; + event_base_gettimeofday_cached(bev->bev.ev_base, &now); + tick = ev_token_bucket_get_tick_(&now, bev->rate_limiting->cfg); + if (tick != bev->rate_limiting->limit.last_updated) + ev_token_bucket_update_(&bev->rate_limiting->limit, + bev->rate_limiting->cfg, tick); +} + +ev_uint32_t +ev_token_bucket_get_tick_(const struct timeval *tv, + const struct ev_token_bucket_cfg *cfg) +{ + /* This computation uses two multiplies and a divide. We could do + * fewer if we knew that the tick length was an integer number of + * seconds, or if we knew it divided evenly into a second. We should + * investigate that more. + */ + + /* We cast to an ev_uint64_t first, since we don't want to overflow + * before we do the final divide. */ + ev_uint64_t msec = (ev_uint64_t)tv->tv_sec * 1000 + tv->tv_usec / 1000; + return (unsigned)(msec / cfg->msec_per_tick); +} + +struct ev_token_bucket_cfg * +ev_token_bucket_cfg_new(size_t read_rate, size_t read_burst, + size_t write_rate, size_t write_burst, + const struct timeval *tick_len) +{ + struct ev_token_bucket_cfg *r; + struct timeval g; + if (! tick_len) { + g.tv_sec = 1; + g.tv_usec = 0; + tick_len = &g; + } + if (read_rate > read_burst || write_rate > write_burst || + read_rate < 1 || write_rate < 1) + return NULL; + if (read_rate > EV_RATE_LIMIT_MAX || + write_rate > EV_RATE_LIMIT_MAX || + read_burst > EV_RATE_LIMIT_MAX || + write_burst > EV_RATE_LIMIT_MAX) + return NULL; + r = mm_calloc(1, sizeof(struct ev_token_bucket_cfg)); + if (!r) + return NULL; + r->read_rate = read_rate; + r->write_rate = write_rate; + r->read_maximum = read_burst; + r->write_maximum = write_burst; + memcpy(&r->tick_timeout, tick_len, sizeof(struct timeval)); + r->msec_per_tick = (tick_len->tv_sec * 1000) + + (tick_len->tv_usec & COMMON_TIMEOUT_MICROSECONDS_MASK)/1000; + return r; +} + +void +ev_token_bucket_cfg_free(struct ev_token_bucket_cfg *cfg) +{ + mm_free(cfg); +} + +/* Default values for max_single_read & max_single_write variables. */ +#define MAX_SINGLE_READ_DEFAULT 16384 +#define MAX_SINGLE_WRITE_DEFAULT 16384 + +#define LOCK_GROUP(g) EVLOCK_LOCK((g)->lock, 0) +#define UNLOCK_GROUP(g) EVLOCK_UNLOCK((g)->lock, 0) + +static int bev_group_suspend_reading_(struct bufferevent_rate_limit_group *g); +static int bev_group_suspend_writing_(struct bufferevent_rate_limit_group *g); +static void bev_group_unsuspend_reading_(struct bufferevent_rate_limit_group *g); +static void bev_group_unsuspend_writing_(struct bufferevent_rate_limit_group *g); + +/** Helper: figure out the maximum amount we should write if is_write, or + the maximum amount we should read if is_read. Return that maximum, or + 0 if our bucket is wholly exhausted. + */ +static inline ev_ssize_t +bufferevent_get_rlim_max_(struct bufferevent_private *bev, int is_write) +{ + /* needs lock on bev. */ + ev_ssize_t max_so_far = is_write?bev->max_single_write:bev->max_single_read; + +#define LIM(x) \ + (is_write ? (x).write_limit : (x).read_limit) + +#define GROUP_SUSPENDED(g) \ + (is_write ? (g)->write_suspended : (g)->read_suspended) + + /* Sets max_so_far to MIN(x, max_so_far) */ +#define CLAMPTO(x) \ + do { \ + if (max_so_far > (x)) \ + max_so_far = (x); \ + } while (0); + + if (!bev->rate_limiting) + return max_so_far; + + /* If rate-limiting is enabled at all, update the appropriate + bucket, and take the smaller of our rate limit and the group + rate limit. + */ + + if (bev->rate_limiting->cfg) { + bufferevent_update_buckets(bev); + max_so_far = LIM(bev->rate_limiting->limit); + } + if (bev->rate_limiting->group) { + struct bufferevent_rate_limit_group *g = + bev->rate_limiting->group; + ev_ssize_t share; + LOCK_GROUP(g); + if (GROUP_SUSPENDED(g)) { + /* We can get here if we failed to lock this + * particular bufferevent while suspending the whole + * group. */ + if (is_write) + bufferevent_suspend_write_(&bev->bev, + BEV_SUSPEND_BW_GROUP); + else + bufferevent_suspend_read_(&bev->bev, + BEV_SUSPEND_BW_GROUP); + share = 0; + } else { + /* XXXX probably we should divide among the active + * members, not the total members. */ + share = LIM(g->rate_limit) / g->n_members; + if (share < g->min_share) + share = g->min_share; + } + UNLOCK_GROUP(g); + CLAMPTO(share); + } + + if (max_so_far < 0) + max_so_far = 0; + return max_so_far; +} + +ev_ssize_t +bufferevent_get_read_max_(struct bufferevent_private *bev) +{ + return bufferevent_get_rlim_max_(bev, 0); +} + +ev_ssize_t +bufferevent_get_write_max_(struct bufferevent_private *bev) +{ + return bufferevent_get_rlim_max_(bev, 1); +} + +int +bufferevent_decrement_read_buckets_(struct bufferevent_private *bev, ev_ssize_t bytes) +{ + /* XXXXX Make sure all users of this function check its return value */ + int r = 0; + /* need to hold lock on bev */ + if (!bev->rate_limiting) + return 0; + + if (bev->rate_limiting->cfg) { + bev->rate_limiting->limit.read_limit -= bytes; + if (bev->rate_limiting->limit.read_limit <= 0) { + bufferevent_suspend_read_(&bev->bev, BEV_SUSPEND_BW); + if (event_add(&bev->rate_limiting->refill_bucket_event, + &bev->rate_limiting->cfg->tick_timeout) < 0) + r = -1; + } else if (bev->read_suspended & BEV_SUSPEND_BW) { + if (!(bev->write_suspended & BEV_SUSPEND_BW)) + event_del(&bev->rate_limiting->refill_bucket_event); + bufferevent_unsuspend_read_(&bev->bev, BEV_SUSPEND_BW); + } + } + + if (bev->rate_limiting->group) { + LOCK_GROUP(bev->rate_limiting->group); + bev->rate_limiting->group->rate_limit.read_limit -= bytes; + bev->rate_limiting->group->total_read += bytes; + if (bev->rate_limiting->group->rate_limit.read_limit <= 0) { + bev_group_suspend_reading_(bev->rate_limiting->group); + } else if (bev->rate_limiting->group->read_suspended) { + bev_group_unsuspend_reading_(bev->rate_limiting->group); + } + UNLOCK_GROUP(bev->rate_limiting->group); + } + + return r; +} + +int +bufferevent_decrement_write_buckets_(struct bufferevent_private *bev, ev_ssize_t bytes) +{ + /* XXXXX Make sure all users of this function check its return value */ + int r = 0; + /* need to hold lock */ + if (!bev->rate_limiting) + return 0; + + if (bev->rate_limiting->cfg) { + bev->rate_limiting->limit.write_limit -= bytes; + if (bev->rate_limiting->limit.write_limit <= 0) { + bufferevent_suspend_write_(&bev->bev, BEV_SUSPEND_BW); + if (event_add(&bev->rate_limiting->refill_bucket_event, + &bev->rate_limiting->cfg->tick_timeout) < 0) + r = -1; + } else if (bev->write_suspended & BEV_SUSPEND_BW) { + if (!(bev->read_suspended & BEV_SUSPEND_BW)) + event_del(&bev->rate_limiting->refill_bucket_event); + bufferevent_unsuspend_write_(&bev->bev, BEV_SUSPEND_BW); + } + } + + if (bev->rate_limiting->group) { + LOCK_GROUP(bev->rate_limiting->group); + bev->rate_limiting->group->rate_limit.write_limit -= bytes; + bev->rate_limiting->group->total_written += bytes; + if (bev->rate_limiting->group->rate_limit.write_limit <= 0) { + bev_group_suspend_writing_(bev->rate_limiting->group); + } else if (bev->rate_limiting->group->write_suspended) { + bev_group_unsuspend_writing_(bev->rate_limiting->group); + } + UNLOCK_GROUP(bev->rate_limiting->group); + } + + return r; +} + +/** Stop reading on every bufferevent in g */ +static int +bev_group_suspend_reading_(struct bufferevent_rate_limit_group *g) +{ + /* Needs group lock */ + struct bufferevent_private *bev; + g->read_suspended = 1; + g->pending_unsuspend_read = 0; + + /* Note that in this loop we call EVLOCK_TRY_LOCK_ instead of BEV_LOCK, + to prevent a deadlock. (Ordinarily, the group lock nests inside + the bufferevent locks. If we are unable to lock any individual + bufferevent, it will find out later when it looks at its limit + and sees that its group is suspended.) + */ + LIST_FOREACH(bev, &g->members, rate_limiting->next_in_group) { + if (EVLOCK_TRY_LOCK_(bev->lock)) { + bufferevent_suspend_read_(&bev->bev, + BEV_SUSPEND_BW_GROUP); + EVLOCK_UNLOCK(bev->lock, 0); + } + } + return 0; +} + +/** Stop writing on every bufferevent in g */ +static int +bev_group_suspend_writing_(struct bufferevent_rate_limit_group *g) +{ + /* Needs group lock */ + struct bufferevent_private *bev; + g->write_suspended = 1; + g->pending_unsuspend_write = 0; + LIST_FOREACH(bev, &g->members, rate_limiting->next_in_group) { + if (EVLOCK_TRY_LOCK_(bev->lock)) { + bufferevent_suspend_write_(&bev->bev, + BEV_SUSPEND_BW_GROUP); + EVLOCK_UNLOCK(bev->lock, 0); + } + } + return 0; +} + +/** Timer callback invoked on a single bufferevent with one or more exhausted + buckets when they are ready to refill. */ +static void +bev_refill_callback_(evutil_socket_t fd, short what, void *arg) +{ + unsigned tick; + struct timeval now; + struct bufferevent_private *bev = arg; + int again = 0; + BEV_LOCK(&bev->bev); + if (!bev->rate_limiting || !bev->rate_limiting->cfg) { + BEV_UNLOCK(&bev->bev); + return; + } + + /* First, update the bucket */ + event_base_gettimeofday_cached(bev->bev.ev_base, &now); + tick = ev_token_bucket_get_tick_(&now, + bev->rate_limiting->cfg); + ev_token_bucket_update_(&bev->rate_limiting->limit, + bev->rate_limiting->cfg, + tick); + + /* Now unsuspend any read/write operations as appropriate. */ + if ((bev->read_suspended & BEV_SUSPEND_BW)) { + if (bev->rate_limiting->limit.read_limit > 0) + bufferevent_unsuspend_read_(&bev->bev, BEV_SUSPEND_BW); + else + again = 1; + } + if ((bev->write_suspended & BEV_SUSPEND_BW)) { + if (bev->rate_limiting->limit.write_limit > 0) + bufferevent_unsuspend_write_(&bev->bev, BEV_SUSPEND_BW); + else + again = 1; + } + if (again) { + /* One or more of the buckets may need another refill if they + started negative. + + XXXX if we need to be quiet for more ticks, we should + maybe figure out what timeout we really want. + */ + /* XXXX Handle event_add failure somehow */ + event_add(&bev->rate_limiting->refill_bucket_event, + &bev->rate_limiting->cfg->tick_timeout); + } + BEV_UNLOCK(&bev->bev); +} + +/** Helper: grab a random element from a bufferevent group. + * + * Requires that we hold the lock on the group. + */ +static struct bufferevent_private * +bev_group_random_element_(struct bufferevent_rate_limit_group *group) +{ + int which; + struct bufferevent_private *bev; + + /* requires group lock */ + + if (!group->n_members) + return NULL; + + EVUTIL_ASSERT(! LIST_EMPTY(&group->members)); + + which = evutil_weakrand_range_(&group->weakrand_seed, group->n_members); + + bev = LIST_FIRST(&group->members); + while (which--) + bev = LIST_NEXT(bev, rate_limiting->next_in_group); + + return bev; +} + +/** Iterate over the elements of a rate-limiting group 'g' with a random + starting point, assigning each to the variable 'bev', and executing the + block 'block'. + + We do this in a half-baked effort to get fairness among group members. + XXX Round-robin or some kind of priority queue would be even more fair. + */ +#define FOREACH_RANDOM_ORDER(block) \ + do { \ + first = bev_group_random_element_(g); \ + for (bev = first; bev != LIST_END(&g->members); \ + bev = LIST_NEXT(bev, rate_limiting->next_in_group)) { \ + block ; \ + } \ + for (bev = LIST_FIRST(&g->members); bev && bev != first; \ + bev = LIST_NEXT(bev, rate_limiting->next_in_group)) { \ + block ; \ + } \ + } while (0) + +static void +bev_group_unsuspend_reading_(struct bufferevent_rate_limit_group *g) +{ + int again = 0; + struct bufferevent_private *bev, *first; + + g->read_suspended = 0; + FOREACH_RANDOM_ORDER({ + if (EVLOCK_TRY_LOCK_(bev->lock)) { + bufferevent_unsuspend_read_(&bev->bev, + BEV_SUSPEND_BW_GROUP); + EVLOCK_UNLOCK(bev->lock, 0); + } else { + again = 1; + } + }); + g->pending_unsuspend_read = again; +} + +static void +bev_group_unsuspend_writing_(struct bufferevent_rate_limit_group *g) +{ + int again = 0; + struct bufferevent_private *bev, *first; + g->write_suspended = 0; + + FOREACH_RANDOM_ORDER({ + if (EVLOCK_TRY_LOCK_(bev->lock)) { + bufferevent_unsuspend_write_(&bev->bev, + BEV_SUSPEND_BW_GROUP); + EVLOCK_UNLOCK(bev->lock, 0); + } else { + again = 1; + } + }); + g->pending_unsuspend_write = again; +} + +/** Callback invoked every tick to add more elements to the group bucket + and unsuspend group members as needed. + */ +static void +bev_group_refill_callback_(evutil_socket_t fd, short what, void *arg) +{ + struct bufferevent_rate_limit_group *g = arg; + unsigned tick; + struct timeval now; + + event_base_gettimeofday_cached(event_get_base(&g->master_refill_event), &now); + + LOCK_GROUP(g); + + tick = ev_token_bucket_get_tick_(&now, &g->rate_limit_cfg); + ev_token_bucket_update_(&g->rate_limit, &g->rate_limit_cfg, tick); + + if (g->pending_unsuspend_read || + (g->read_suspended && (g->rate_limit.read_limit >= g->min_share))) { + bev_group_unsuspend_reading_(g); + } + if (g->pending_unsuspend_write || + (g->write_suspended && (g->rate_limit.write_limit >= g->min_share))){ + bev_group_unsuspend_writing_(g); + } + + /* XXXX Rather than waiting to the next tick to unsuspend stuff + * with pending_unsuspend_write/read, we should do it on the + * next iteration of the mainloop. + */ + + UNLOCK_GROUP(g); +} + +int +bufferevent_set_rate_limit(struct bufferevent *bev, + struct ev_token_bucket_cfg *cfg) +{ + struct bufferevent_private *bevp = + EVUTIL_UPCAST(bev, struct bufferevent_private, bev); + int r = -1; + struct bufferevent_rate_limit *rlim; + struct timeval now; + ev_uint32_t tick; + int reinit = 0, suspended = 0; + /* XXX reference-count cfg */ + + BEV_LOCK(bev); + + if (cfg == NULL) { + if (bevp->rate_limiting) { + rlim = bevp->rate_limiting; + rlim->cfg = NULL; + bufferevent_unsuspend_read_(bev, BEV_SUSPEND_BW); + bufferevent_unsuspend_write_(bev, BEV_SUSPEND_BW); + if (event_initialized(&rlim->refill_bucket_event)) + event_del(&rlim->refill_bucket_event); + } + r = 0; + goto done; + } + + event_base_gettimeofday_cached(bev->ev_base, &now); + tick = ev_token_bucket_get_tick_(&now, cfg); + + if (bevp->rate_limiting && bevp->rate_limiting->cfg == cfg) { + /* no-op */ + r = 0; + goto done; + } + if (bevp->rate_limiting == NULL) { + rlim = mm_calloc(1, sizeof(struct bufferevent_rate_limit)); + if (!rlim) + goto done; + bevp->rate_limiting = rlim; + } else { + rlim = bevp->rate_limiting; + } + reinit = rlim->cfg != NULL; + + rlim->cfg = cfg; + ev_token_bucket_init_(&rlim->limit, cfg, tick, reinit); + + if (reinit) { + EVUTIL_ASSERT(event_initialized(&rlim->refill_bucket_event)); + event_del(&rlim->refill_bucket_event); + } + event_assign(&rlim->refill_bucket_event, bev->ev_base, + -1, EV_FINALIZE, bev_refill_callback_, bevp); + + if (rlim->limit.read_limit > 0) { + bufferevent_unsuspend_read_(bev, BEV_SUSPEND_BW); + } else { + bufferevent_suspend_read_(bev, BEV_SUSPEND_BW); + suspended=1; + } + if (rlim->limit.write_limit > 0) { + bufferevent_unsuspend_write_(bev, BEV_SUSPEND_BW); + } else { + bufferevent_suspend_write_(bev, BEV_SUSPEND_BW); + suspended = 1; + } + + if (suspended) + event_add(&rlim->refill_bucket_event, &cfg->tick_timeout); + + r = 0; + +done: + BEV_UNLOCK(bev); + return r; +} + +struct bufferevent_rate_limit_group * +bufferevent_rate_limit_group_new(struct event_base *base, + const struct ev_token_bucket_cfg *cfg) +{ + struct bufferevent_rate_limit_group *g; + struct timeval now; + ev_uint32_t tick; + + event_base_gettimeofday_cached(base, &now); + tick = ev_token_bucket_get_tick_(&now, cfg); + + g = mm_calloc(1, sizeof(struct bufferevent_rate_limit_group)); + if (!g) + return NULL; + memcpy(&g->rate_limit_cfg, cfg, sizeof(g->rate_limit_cfg)); + LIST_INIT(&g->members); + + ev_token_bucket_init_(&g->rate_limit, cfg, tick, 0); + + event_assign(&g->master_refill_event, base, -1, EV_PERSIST|EV_FINALIZE, + bev_group_refill_callback_, g); + /*XXXX handle event_add failure */ + event_add(&g->master_refill_event, &cfg->tick_timeout); + + EVTHREAD_ALLOC_LOCK(g->lock, EVTHREAD_LOCKTYPE_RECURSIVE); + + bufferevent_rate_limit_group_set_min_share(g, 64); + + evutil_weakrand_seed_(&g->weakrand_seed, + (ev_uint32_t) ((now.tv_sec + now.tv_usec) + (ev_intptr_t)g)); + + return g; +} + +int +bufferevent_rate_limit_group_set_cfg( + struct bufferevent_rate_limit_group *g, + const struct ev_token_bucket_cfg *cfg) +{ + int same_tick; + if (!g || !cfg) + return -1; + + LOCK_GROUP(g); + same_tick = evutil_timercmp( + &g->rate_limit_cfg.tick_timeout, &cfg->tick_timeout, ==); + memcpy(&g->rate_limit_cfg, cfg, sizeof(g->rate_limit_cfg)); + + if (g->rate_limit.read_limit > (ev_ssize_t)cfg->read_maximum) + g->rate_limit.read_limit = cfg->read_maximum; + if (g->rate_limit.write_limit > (ev_ssize_t)cfg->write_maximum) + g->rate_limit.write_limit = cfg->write_maximum; + + if (!same_tick) { + /* This can cause a hiccup in the schedule */ + event_add(&g->master_refill_event, &cfg->tick_timeout); + } + + /* The new limits might force us to adjust min_share differently. */ + bufferevent_rate_limit_group_set_min_share(g, g->configured_min_share); + + UNLOCK_GROUP(g); + return 0; +} + +int +bufferevent_rate_limit_group_set_min_share( + struct bufferevent_rate_limit_group *g, + size_t share) +{ + if (share > EV_SSIZE_MAX) + return -1; + + g->configured_min_share = share; + + /* Can't set share to less than the one-tick maximum. IOW, at steady + * state, at least one connection can go per tick. */ + if (share > g->rate_limit_cfg.read_rate) + share = g->rate_limit_cfg.read_rate; + if (share > g->rate_limit_cfg.write_rate) + share = g->rate_limit_cfg.write_rate; + + g->min_share = share; + return 0; +} + +void +bufferevent_rate_limit_group_free(struct bufferevent_rate_limit_group *g) +{ + LOCK_GROUP(g); + EVUTIL_ASSERT(0 == g->n_members); + event_del(&g->master_refill_event); + UNLOCK_GROUP(g); + EVTHREAD_FREE_LOCK(g->lock, EVTHREAD_LOCKTYPE_RECURSIVE); + mm_free(g); +} + +int +bufferevent_add_to_rate_limit_group(struct bufferevent *bev, + struct bufferevent_rate_limit_group *g) +{ + int wsuspend, rsuspend; + struct bufferevent_private *bevp = + EVUTIL_UPCAST(bev, struct bufferevent_private, bev); + BEV_LOCK(bev); + + if (!bevp->rate_limiting) { + struct bufferevent_rate_limit *rlim; + rlim = mm_calloc(1, sizeof(struct bufferevent_rate_limit)); + if (!rlim) { + BEV_UNLOCK(bev); + return -1; + } + event_assign(&rlim->refill_bucket_event, bev->ev_base, + -1, EV_FINALIZE, bev_refill_callback_, bevp); + bevp->rate_limiting = rlim; + } + + if (bevp->rate_limiting->group == g) { + BEV_UNLOCK(bev); + return 0; + } + if (bevp->rate_limiting->group) + bufferevent_remove_from_rate_limit_group(bev); + + LOCK_GROUP(g); + bevp->rate_limiting->group = g; + ++g->n_members; + LIST_INSERT_HEAD(&g->members, bevp, rate_limiting->next_in_group); + + rsuspend = g->read_suspended; + wsuspend = g->write_suspended; + + UNLOCK_GROUP(g); + + if (rsuspend) + bufferevent_suspend_read_(bev, BEV_SUSPEND_BW_GROUP); + if (wsuspend) + bufferevent_suspend_write_(bev, BEV_SUSPEND_BW_GROUP); + + BEV_UNLOCK(bev); + return 0; +} + +int +bufferevent_remove_from_rate_limit_group(struct bufferevent *bev) +{ + return bufferevent_remove_from_rate_limit_group_internal_(bev, 1); +} + +int +bufferevent_remove_from_rate_limit_group_internal_(struct bufferevent *bev, + int unsuspend) +{ + struct bufferevent_private *bevp = + EVUTIL_UPCAST(bev, struct bufferevent_private, bev); + BEV_LOCK(bev); + if (bevp->rate_limiting && bevp->rate_limiting->group) { + struct bufferevent_rate_limit_group *g = + bevp->rate_limiting->group; + LOCK_GROUP(g); + bevp->rate_limiting->group = NULL; + --g->n_members; + LIST_REMOVE(bevp, rate_limiting->next_in_group); + UNLOCK_GROUP(g); + } + if (unsuspend) { + bufferevent_unsuspend_read_(bev, BEV_SUSPEND_BW_GROUP); + bufferevent_unsuspend_write_(bev, BEV_SUSPEND_BW_GROUP); + } + BEV_UNLOCK(bev); + return 0; +} + +/* === + * API functions to expose rate limits. + * + * Don't use these from inside Libevent; they're meant to be for use by + * the program. + * === */ + +/* Mostly you don't want to use this function from inside libevent; + * bufferevent_get_read_max_() is more likely what you want*/ +ev_ssize_t +bufferevent_get_read_limit(struct bufferevent *bev) +{ + ev_ssize_t r; + struct bufferevent_private *bevp; + BEV_LOCK(bev); + bevp = BEV_UPCAST(bev); + if (bevp->rate_limiting && bevp->rate_limiting->cfg) { + bufferevent_update_buckets(bevp); + r = bevp->rate_limiting->limit.read_limit; + } else { + r = EV_SSIZE_MAX; + } + BEV_UNLOCK(bev); + return r; +} + +/* Mostly you don't want to use this function from inside libevent; + * bufferevent_get_write_max_() is more likely what you want*/ +ev_ssize_t +bufferevent_get_write_limit(struct bufferevent *bev) +{ + ev_ssize_t r; + struct bufferevent_private *bevp; + BEV_LOCK(bev); + bevp = BEV_UPCAST(bev); + if (bevp->rate_limiting && bevp->rate_limiting->cfg) { + bufferevent_update_buckets(bevp); + r = bevp->rate_limiting->limit.write_limit; + } else { + r = EV_SSIZE_MAX; + } + BEV_UNLOCK(bev); + return r; +} + +int +bufferevent_set_max_single_read(struct bufferevent *bev, size_t size) +{ + struct bufferevent_private *bevp; + BEV_LOCK(bev); + bevp = BEV_UPCAST(bev); + if (size == 0 || size > EV_SSIZE_MAX) + bevp->max_single_read = MAX_SINGLE_READ_DEFAULT; + else + bevp->max_single_read = size; + BEV_UNLOCK(bev); + return 0; +} + +int +bufferevent_set_max_single_write(struct bufferevent *bev, size_t size) +{ + struct bufferevent_private *bevp; + BEV_LOCK(bev); + bevp = BEV_UPCAST(bev); + if (size == 0 || size > EV_SSIZE_MAX) + bevp->max_single_write = MAX_SINGLE_WRITE_DEFAULT; + else + bevp->max_single_write = size; + BEV_UNLOCK(bev); + return 0; +} + +ev_ssize_t +bufferevent_get_max_single_read(struct bufferevent *bev) +{ + ev_ssize_t r; + + BEV_LOCK(bev); + r = BEV_UPCAST(bev)->max_single_read; + BEV_UNLOCK(bev); + return r; +} + +ev_ssize_t +bufferevent_get_max_single_write(struct bufferevent *bev) +{ + ev_ssize_t r; + + BEV_LOCK(bev); + r = BEV_UPCAST(bev)->max_single_write; + BEV_UNLOCK(bev); + return r; +} + +ev_ssize_t +bufferevent_get_max_to_read(struct bufferevent *bev) +{ + ev_ssize_t r; + BEV_LOCK(bev); + r = bufferevent_get_read_max_(BEV_UPCAST(bev)); + BEV_UNLOCK(bev); + return r; +} + +ev_ssize_t +bufferevent_get_max_to_write(struct bufferevent *bev) +{ + ev_ssize_t r; + BEV_LOCK(bev); + r = bufferevent_get_write_max_(BEV_UPCAST(bev)); + BEV_UNLOCK(bev); + return r; +} + +const struct ev_token_bucket_cfg * +bufferevent_get_token_bucket_cfg(const struct bufferevent *bev) { + struct bufferevent_private *bufev_private = BEV_UPCAST(bev); + struct ev_token_bucket_cfg *cfg; + + BEV_LOCK(bev); + + if (bufev_private->rate_limiting) { + cfg = bufev_private->rate_limiting->cfg; + } else { + cfg = NULL; + } + + BEV_UNLOCK(bev); + + return cfg; +} + +/* Mostly you don't want to use this function from inside libevent; + * bufferevent_get_read_max_() is more likely what you want*/ +ev_ssize_t +bufferevent_rate_limit_group_get_read_limit( + struct bufferevent_rate_limit_group *grp) +{ + ev_ssize_t r; + LOCK_GROUP(grp); + r = grp->rate_limit.read_limit; + UNLOCK_GROUP(grp); + return r; +} + +/* Mostly you don't want to use this function from inside libevent; + * bufferevent_get_write_max_() is more likely what you want. */ +ev_ssize_t +bufferevent_rate_limit_group_get_write_limit( + struct bufferevent_rate_limit_group *grp) +{ + ev_ssize_t r; + LOCK_GROUP(grp); + r = grp->rate_limit.write_limit; + UNLOCK_GROUP(grp); + return r; +} + +int +bufferevent_decrement_read_limit(struct bufferevent *bev, ev_ssize_t decr) +{ + int r = 0; + ev_ssize_t old_limit, new_limit; + struct bufferevent_private *bevp; + BEV_LOCK(bev); + bevp = BEV_UPCAST(bev); + EVUTIL_ASSERT(bevp->rate_limiting && bevp->rate_limiting->cfg); + old_limit = bevp->rate_limiting->limit.read_limit; + + new_limit = (bevp->rate_limiting->limit.read_limit -= decr); + if (old_limit > 0 && new_limit <= 0) { + bufferevent_suspend_read_(bev, BEV_SUSPEND_BW); + if (event_add(&bevp->rate_limiting->refill_bucket_event, + &bevp->rate_limiting->cfg->tick_timeout) < 0) + r = -1; + } else if (old_limit <= 0 && new_limit > 0) { + if (!(bevp->write_suspended & BEV_SUSPEND_BW)) + event_del(&bevp->rate_limiting->refill_bucket_event); + bufferevent_unsuspend_read_(bev, BEV_SUSPEND_BW); + } + + BEV_UNLOCK(bev); + return r; +} + +int +bufferevent_decrement_write_limit(struct bufferevent *bev, ev_ssize_t decr) +{ + /* XXXX this is mostly copy-and-paste from + * bufferevent_decrement_read_limit */ + int r = 0; + ev_ssize_t old_limit, new_limit; + struct bufferevent_private *bevp; + BEV_LOCK(bev); + bevp = BEV_UPCAST(bev); + EVUTIL_ASSERT(bevp->rate_limiting && bevp->rate_limiting->cfg); + old_limit = bevp->rate_limiting->limit.write_limit; + + new_limit = (bevp->rate_limiting->limit.write_limit -= decr); + if (old_limit > 0 && new_limit <= 0) { + bufferevent_suspend_write_(bev, BEV_SUSPEND_BW); + if (event_add(&bevp->rate_limiting->refill_bucket_event, + &bevp->rate_limiting->cfg->tick_timeout) < 0) + r = -1; + } else if (old_limit <= 0 && new_limit > 0) { + if (!(bevp->read_suspended & BEV_SUSPEND_BW)) + event_del(&bevp->rate_limiting->refill_bucket_event); + bufferevent_unsuspend_write_(bev, BEV_SUSPEND_BW); + } + + BEV_UNLOCK(bev); + return r; +} + +int +bufferevent_rate_limit_group_decrement_read( + struct bufferevent_rate_limit_group *grp, ev_ssize_t decr) +{ + int r = 0; + ev_ssize_t old_limit, new_limit; + LOCK_GROUP(grp); + old_limit = grp->rate_limit.read_limit; + new_limit = (grp->rate_limit.read_limit -= decr); + + if (old_limit > 0 && new_limit <= 0) { + bev_group_suspend_reading_(grp); + } else if (old_limit <= 0 && new_limit > 0) { + bev_group_unsuspend_reading_(grp); + } + + UNLOCK_GROUP(grp); + return r; +} + +int +bufferevent_rate_limit_group_decrement_write( + struct bufferevent_rate_limit_group *grp, ev_ssize_t decr) +{ + int r = 0; + ev_ssize_t old_limit, new_limit; + LOCK_GROUP(grp); + old_limit = grp->rate_limit.write_limit; + new_limit = (grp->rate_limit.write_limit -= decr); + + if (old_limit > 0 && new_limit <= 0) { + bev_group_suspend_writing_(grp); + } else if (old_limit <= 0 && new_limit > 0) { + bev_group_unsuspend_writing_(grp); + } + + UNLOCK_GROUP(grp); + return r; +} + +void +bufferevent_rate_limit_group_get_totals(struct bufferevent_rate_limit_group *grp, + ev_uint64_t *total_read_out, ev_uint64_t *total_written_out) +{ + EVUTIL_ASSERT(grp != NULL); + if (total_read_out) + *total_read_out = grp->total_read; + if (total_written_out) + *total_written_out = grp->total_written; +} + +void +bufferevent_rate_limit_group_reset_totals(struct bufferevent_rate_limit_group *grp) +{ + grp->total_read = grp->total_written = 0; +} + +int +bufferevent_ratelim_init_(struct bufferevent_private *bev) +{ + bev->rate_limiting = NULL; + bev->max_single_read = MAX_SINGLE_READ_DEFAULT; + bev->max_single_write = MAX_SINGLE_WRITE_DEFAULT; + + return 0; +} diff -Nru mysql-5.7-5.7.25/extra/libevent/bufferevent_sock.c mysql-5.7-5.7.26/extra/libevent/bufferevent_sock.c --- mysql-5.7-5.7.25/extra/libevent/bufferevent_sock.c 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/bufferevent_sock.c 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,719 @@ +/* + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * Copyright (c) 2002-2006 Niels Provos + * All rights reserved. + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ + +#include "event2/event-config.h" +#include "evconfig-private.h" + +#include + +#ifdef EVENT__HAVE_SYS_TIME_H +#include +#endif + +#include +#include +#include +#include +#ifdef EVENT__HAVE_STDARG_H +#include +#endif +#ifdef EVENT__HAVE_UNISTD_H +#include +#endif + +#ifdef _WIN32 +#include +#include +#endif + +#ifdef EVENT__HAVE_SYS_SOCKET_H +#include +#endif +#ifdef EVENT__HAVE_NETINET_IN_H +#include +#endif +#ifdef EVENT__HAVE_NETINET_IN6_H +#include +#endif + +#include "event2/util.h" +#include "event2/bufferevent.h" +#include "event2/buffer.h" +#include "event2/bufferevent_struct.h" +#include "event2/bufferevent_compat.h" +#include "event2/event.h" +#include "log-internal.h" +#include "mm-internal.h" +#include "bufferevent-internal.h" +#include "util-internal.h" +#ifdef _WIN32 +#include "iocp-internal.h" +#endif + +/* prototypes */ +static int be_socket_enable(struct bufferevent *, short); +static int be_socket_disable(struct bufferevent *, short); +static void be_socket_destruct(struct bufferevent *); +static int be_socket_flush(struct bufferevent *, short, enum bufferevent_flush_mode); +static int be_socket_ctrl(struct bufferevent *, enum bufferevent_ctrl_op, union bufferevent_ctrl_data *); + +static void be_socket_setfd(struct bufferevent *, evutil_socket_t); + +const struct bufferevent_ops bufferevent_ops_socket = { + "socket", + evutil_offsetof(struct bufferevent_private, bev), + be_socket_enable, + be_socket_disable, + NULL, /* unlink */ + be_socket_destruct, + bufferevent_generic_adj_existing_timeouts_, + be_socket_flush, + be_socket_ctrl, +}; + +const struct sockaddr* +bufferevent_socket_get_conn_address_(struct bufferevent *bev) +{ + struct bufferevent_private *bev_p = + EVUTIL_UPCAST(bev, struct bufferevent_private, bev); + + return (struct sockaddr *)&bev_p->conn_address; +} +static void +bufferevent_socket_set_conn_address_fd(struct bufferevent_private *bev_p, int fd) +{ + socklen_t len = sizeof(bev_p->conn_address); + + struct sockaddr *addr = (struct sockaddr *)&bev_p->conn_address; + if (addr->sa_family != AF_UNSPEC) + getpeername(fd, addr, &len); +} +static void +bufferevent_socket_set_conn_address(struct bufferevent_private *bev_p, + struct sockaddr *addr, size_t addrlen) +{ + EVUTIL_ASSERT(addrlen <= sizeof(bev_p->conn_address)); + memcpy(&bev_p->conn_address, addr, addrlen); +} + +static void +bufferevent_socket_outbuf_cb(struct evbuffer *buf, + const struct evbuffer_cb_info *cbinfo, + void *arg) +{ + struct bufferevent *bufev = arg; + struct bufferevent_private *bufev_p = + EVUTIL_UPCAST(bufev, struct bufferevent_private, bev); + + if (cbinfo->n_added && + (bufev->enabled & EV_WRITE) && + !event_pending(&bufev->ev_write, EV_WRITE, NULL) && + !bufev_p->write_suspended) { + /* Somebody added data to the buffer, and we would like to + * write, and we were not writing. So, start writing. */ + if (bufferevent_add_event_(&bufev->ev_write, &bufev->timeout_write) == -1) { + /* Should we log this? */ + } + } +} + +static void +bufferevent_readcb(evutil_socket_t fd, short event, void *arg) +{ + struct bufferevent *bufev = arg; + struct bufferevent_private *bufev_p = + EVUTIL_UPCAST(bufev, struct bufferevent_private, bev); + struct evbuffer *input; + int res = 0; + short what = BEV_EVENT_READING; + ev_ssize_t howmuch = -1, readmax=-1; + + bufferevent_incref_and_lock_(bufev); + + if (event == EV_TIMEOUT) { + /* Note that we only check for event==EV_TIMEOUT. If + * event==EV_TIMEOUT|EV_READ, we can safely ignore the + * timeout, since a read has occurred */ + what |= BEV_EVENT_TIMEOUT; + goto error; + } + + input = bufev->input; + + /* + * If we have a high watermark configured then we don't want to + * read more data than would make us reach the watermark. + */ + if (bufev->wm_read.high != 0) { + howmuch = bufev->wm_read.high - evbuffer_get_length(input); + /* we somehow lowered the watermark, stop reading */ + if (howmuch <= 0) { + bufferevent_wm_suspend_read(bufev); + goto done; + } + } + readmax = bufferevent_get_read_max_(bufev_p); + if (howmuch < 0 || howmuch > readmax) /* The use of -1 for "unlimited" + * uglifies this code. XXXX */ + howmuch = readmax; + if (bufev_p->read_suspended) + goto done; + + evbuffer_unfreeze(input, 0); + res = evbuffer_read(input, fd, (int)howmuch); /* XXXX evbuffer_read would do better to take and return ev_ssize_t */ + evbuffer_freeze(input, 0); + + if (res == -1) { + int err = evutil_socket_geterror(fd); + if (EVUTIL_ERR_RW_RETRIABLE(err)) + goto reschedule; + if (EVUTIL_ERR_CONNECT_REFUSED(err)) { + bufev_p->connection_refused = 1; + goto done; + } + /* error case */ + what |= BEV_EVENT_ERROR; + } else if (res == 0) { + /* eof case */ + what |= BEV_EVENT_EOF; + } + + if (res <= 0) + goto error; + + bufferevent_decrement_read_buckets_(bufev_p, res); + + /* Invoke the user callback - must always be called last */ + bufferevent_trigger_nolock_(bufev, EV_READ, 0); + + goto done; + + reschedule: + goto done; + + error: + bufferevent_disable(bufev, EV_READ); + bufferevent_run_eventcb_(bufev, what, 0); + + done: + bufferevent_decref_and_unlock_(bufev); +} + +static void +bufferevent_writecb(evutil_socket_t fd, short event, void *arg) +{ + struct bufferevent *bufev = arg; + struct bufferevent_private *bufev_p = + EVUTIL_UPCAST(bufev, struct bufferevent_private, bev); + int res = 0; + short what = BEV_EVENT_WRITING; + int connected = 0; + ev_ssize_t atmost = -1; + + bufferevent_incref_and_lock_(bufev); + + if (event == EV_TIMEOUT) { + /* Note that we only check for event==EV_TIMEOUT. If + * event==EV_TIMEOUT|EV_WRITE, we can safely ignore the + * timeout, since a read has occurred */ + what |= BEV_EVENT_TIMEOUT; + goto error; + } + if (bufev_p->connecting) { + int c = evutil_socket_finished_connecting_(fd); + /* we need to fake the error if the connection was refused + * immediately - usually connection to localhost on BSD */ + if (bufev_p->connection_refused) { + bufev_p->connection_refused = 0; + c = -1; + } + + if (c == 0) + goto done; + + bufev_p->connecting = 0; + if (c < 0) { + event_del(&bufev->ev_write); + event_del(&bufev->ev_read); + bufferevent_run_eventcb_(bufev, BEV_EVENT_ERROR, 0); + goto done; + } else { + connected = 1; + bufferevent_socket_set_conn_address_fd(bufev_p, fd); +#ifdef _WIN32 + if (BEV_IS_ASYNC(bufev)) { + event_del(&bufev->ev_write); + bufferevent_async_set_connected_(bufev); + bufferevent_run_eventcb_(bufev, + BEV_EVENT_CONNECTED, 0); + goto done; + } +#endif + bufferevent_run_eventcb_(bufev, + BEV_EVENT_CONNECTED, 0); + if (!(bufev->enabled & EV_WRITE) || + bufev_p->write_suspended) { + event_del(&bufev->ev_write); + goto done; + } + } + } + + atmost = bufferevent_get_write_max_(bufev_p); + + if (bufev_p->write_suspended) + goto done; + + if (evbuffer_get_length(bufev->output)) { + evbuffer_unfreeze(bufev->output, 1); + res = evbuffer_write_atmost(bufev->output, fd, atmost); + evbuffer_freeze(bufev->output, 1); + if (res == -1) { + int err = evutil_socket_geterror(fd); + if (EVUTIL_ERR_RW_RETRIABLE(err)) + goto reschedule; + what |= BEV_EVENT_ERROR; + } else if (res == 0) { + /* eof case + XXXX Actually, a 0 on write doesn't indicate + an EOF. An ECONNRESET might be more typical. + */ + what |= BEV_EVENT_EOF; + } + if (res <= 0) + goto error; + + bufferevent_decrement_write_buckets_(bufev_p, res); + } + + if (evbuffer_get_length(bufev->output) == 0) { + event_del(&bufev->ev_write); + } + + /* + * Invoke the user callback if our buffer is drained or below the + * low watermark. + */ + if (res || !connected) { + bufferevent_trigger_nolock_(bufev, EV_WRITE, 0); + } + + goto done; + + reschedule: + if (evbuffer_get_length(bufev->output) == 0) { + event_del(&bufev->ev_write); + } + goto done; + + error: + bufferevent_disable(bufev, EV_WRITE); + bufferevent_run_eventcb_(bufev, what, 0); + + done: + bufferevent_decref_and_unlock_(bufev); +} + +struct bufferevent * +bufferevent_socket_new(struct event_base *base, evutil_socket_t fd, + int options) +{ + struct bufferevent_private *bufev_p; + struct bufferevent *bufev; + +#ifdef _WIN32 + if (base && event_base_get_iocp_(base)) + return bufferevent_async_new_(base, fd, options); +#endif + + if ((bufev_p = mm_calloc(1, sizeof(struct bufferevent_private)))== NULL) + return NULL; + + if (bufferevent_init_common_(bufev_p, base, &bufferevent_ops_socket, + options) < 0) { + mm_free(bufev_p); + return NULL; + } + bufev = &bufev_p->bev; + evbuffer_set_flags(bufev->output, EVBUFFER_FLAG_DRAINS_TO_FD); + + event_assign(&bufev->ev_read, bufev->ev_base, fd, + EV_READ|EV_PERSIST|EV_FINALIZE, bufferevent_readcb, bufev); + event_assign(&bufev->ev_write, bufev->ev_base, fd, + EV_WRITE|EV_PERSIST|EV_FINALIZE, bufferevent_writecb, bufev); + + evbuffer_add_cb(bufev->output, bufferevent_socket_outbuf_cb, bufev); + + evbuffer_freeze(bufev->input, 0); + evbuffer_freeze(bufev->output, 1); + + return bufev; +} + +int +bufferevent_socket_connect(struct bufferevent *bev, + const struct sockaddr *sa, int socklen) +{ + struct bufferevent_private *bufev_p = + EVUTIL_UPCAST(bev, struct bufferevent_private, bev); + + evutil_socket_t fd; + int r = 0; + int result=-1; + int ownfd = 0; + + bufferevent_incref_and_lock_(bev); + + if (!bufev_p) + goto done; + + fd = bufferevent_getfd(bev); + if (fd < 0) { + if (!sa) + goto done; + fd = evutil_socket_(sa->sa_family, + SOCK_STREAM|EVUTIL_SOCK_NONBLOCK, 0); + if (fd < 0) + goto done; + ownfd = 1; + } + if (sa) { +#ifdef _WIN32 + if (bufferevent_async_can_connect_(bev)) { + bufferevent_setfd(bev, fd); + r = bufferevent_async_connect_(bev, fd, sa, socklen); + if (r < 0) + goto freesock; + bufev_p->connecting = 1; + result = 0; + goto done; + } else +#endif + r = evutil_socket_connect_(&fd, sa, socklen); + if (r < 0) + goto freesock; + } +#ifdef _WIN32 + /* ConnectEx() isn't always around, even when IOCP is enabled. + * Here, we borrow the socket object's write handler to fall back + * on a non-blocking connect() when ConnectEx() is unavailable. */ + if (BEV_IS_ASYNC(bev)) { + event_assign(&bev->ev_write, bev->ev_base, fd, + EV_WRITE|EV_PERSIST|EV_FINALIZE, bufferevent_writecb, bev); + } +#endif + bufferevent_setfd(bev, fd); + if (r == 0) { + if (! be_socket_enable(bev, EV_WRITE)) { + bufev_p->connecting = 1; + result = 0; + goto done; + } + } else if (r == 1) { + /* The connect succeeded already. How very BSD of it. */ + result = 0; + bufev_p->connecting = 1; + bufferevent_trigger_nolock_(bev, EV_WRITE, BEV_OPT_DEFER_CALLBACKS); + } else { + /* The connect failed already. How very BSD of it. */ + result = 0; + bufferevent_run_eventcb_(bev, BEV_EVENT_ERROR, BEV_OPT_DEFER_CALLBACKS); + bufferevent_disable(bev, EV_WRITE|EV_READ); + } + + goto done; + +freesock: + bufferevent_run_eventcb_(bev, BEV_EVENT_ERROR, 0); + if (ownfd) + evutil_closesocket(fd); + /* do something about the error? */ +done: + bufferevent_decref_and_unlock_(bev); + return result; +} + +static void +bufferevent_connect_getaddrinfo_cb(int result, struct evutil_addrinfo *ai, + void *arg) +{ + struct bufferevent *bev = arg; + struct bufferevent_private *bev_p = + EVUTIL_UPCAST(bev, struct bufferevent_private, bev); + int r; + BEV_LOCK(bev); + + bufferevent_unsuspend_write_(bev, BEV_SUSPEND_LOOKUP); + bufferevent_unsuspend_read_(bev, BEV_SUSPEND_LOOKUP); + + bev_p->dns_request = NULL; + + if (result == EVUTIL_EAI_CANCEL) { + bev_p->dns_error = result; + bufferevent_decref_and_unlock_(bev); + return; + } + if (result != 0) { + bev_p->dns_error = result; + bufferevent_run_eventcb_(bev, BEV_EVENT_ERROR, 0); + bufferevent_decref_and_unlock_(bev); + if (ai) + evutil_freeaddrinfo(ai); + return; + } + + /* XXX use the other addrinfos? */ + /* XXX use this return value */ + bufferevent_socket_set_conn_address(bev_p, ai->ai_addr, (int)ai->ai_addrlen); + r = bufferevent_socket_connect(bev, ai->ai_addr, (int)ai->ai_addrlen); + (void)r; + bufferevent_decref_and_unlock_(bev); + evutil_freeaddrinfo(ai); +} + +int +bufferevent_socket_connect_hostname(struct bufferevent *bev, + struct evdns_base *evdns_base, int family, const char *hostname, int port) +{ + char portbuf[10]; + struct evutil_addrinfo hint; + struct bufferevent_private *bev_p = + EVUTIL_UPCAST(bev, struct bufferevent_private, bev); + + if (family != AF_INET && family != AF_INET6 && family != AF_UNSPEC) + return -1; + if (port < 1 || port > 65535) + return -1; + + memset(&hint, 0, sizeof(hint)); + hint.ai_family = family; + hint.ai_protocol = IPPROTO_TCP; + hint.ai_socktype = SOCK_STREAM; + + evutil_snprintf(portbuf, sizeof(portbuf), "%d", port); + + BEV_LOCK(bev); + bev_p->dns_error = 0; + + bufferevent_suspend_write_(bev, BEV_SUSPEND_LOOKUP); + bufferevent_suspend_read_(bev, BEV_SUSPEND_LOOKUP); + + bufferevent_incref_(bev); + bev_p->dns_request = evutil_getaddrinfo_async_(evdns_base, hostname, + portbuf, &hint, bufferevent_connect_getaddrinfo_cb, bev); + BEV_UNLOCK(bev); + + return 0; +} + +int +bufferevent_socket_get_dns_error(struct bufferevent *bev) +{ + int rv; + struct bufferevent_private *bev_p = + EVUTIL_UPCAST(bev, struct bufferevent_private, bev); + + BEV_LOCK(bev); + rv = bev_p->dns_error; + BEV_UNLOCK(bev); + + return rv; +} + +/* + * Create a new buffered event object. + * + * The read callback is invoked whenever we read new data. + * The write callback is invoked whenever the output buffer is drained. + * The error callback is invoked on a write/read error or on EOF. + * + * Both read and write callbacks maybe NULL. The error callback is not + * allowed to be NULL and have to be provided always. + */ + +struct bufferevent * +bufferevent_new(evutil_socket_t fd, + bufferevent_data_cb readcb, bufferevent_data_cb writecb, + bufferevent_event_cb eventcb, void *cbarg) +{ + struct bufferevent *bufev; + + if (!(bufev = bufferevent_socket_new(NULL, fd, 0))) + return NULL; + + bufferevent_setcb(bufev, readcb, writecb, eventcb, cbarg); + + return bufev; +} + + +static int +be_socket_enable(struct bufferevent *bufev, short event) +{ + if (event & EV_READ && + bufferevent_add_event_(&bufev->ev_read, &bufev->timeout_read) == -1) + return -1; + if (event & EV_WRITE && + bufferevent_add_event_(&bufev->ev_write, &bufev->timeout_write) == -1) + return -1; + return 0; +} + +static int +be_socket_disable(struct bufferevent *bufev, short event) +{ + struct bufferevent_private *bufev_p = + EVUTIL_UPCAST(bufev, struct bufferevent_private, bev); + if (event & EV_READ) { + if (event_del(&bufev->ev_read) == -1) + return -1; + } + /* Don't actually disable the write if we are trying to connect. */ + if ((event & EV_WRITE) && ! bufev_p->connecting) { + if (event_del(&bufev->ev_write) == -1) + return -1; + } + return 0; +} + +static void +be_socket_destruct(struct bufferevent *bufev) +{ + struct bufferevent_private *bufev_p = + EVUTIL_UPCAST(bufev, struct bufferevent_private, bev); + evutil_socket_t fd; + EVUTIL_ASSERT(bufev->be_ops == &bufferevent_ops_socket); + + fd = event_get_fd(&bufev->ev_read); + + if ((bufev_p->options & BEV_OPT_CLOSE_ON_FREE) && fd >= 0) + EVUTIL_CLOSESOCKET(fd); + + evutil_getaddrinfo_cancel_async_(bufev_p->dns_request); +} + +static int +be_socket_flush(struct bufferevent *bev, short iotype, + enum bufferevent_flush_mode mode) +{ + return 0; +} + + +static void +be_socket_setfd(struct bufferevent *bufev, evutil_socket_t fd) +{ + struct bufferevent_private *bufev_p = + EVUTIL_UPCAST(bufev, struct bufferevent_private, bev); + + BEV_LOCK(bufev); + EVUTIL_ASSERT(bufev->be_ops == &bufferevent_ops_socket); + + event_del(&bufev->ev_read); + event_del(&bufev->ev_write); + + evbuffer_unfreeze(bufev->input, 0); + evbuffer_unfreeze(bufev->output, 1); + + event_assign(&bufev->ev_read, bufev->ev_base, fd, + EV_READ|EV_PERSIST|EV_FINALIZE, bufferevent_readcb, bufev); + event_assign(&bufev->ev_write, bufev->ev_base, fd, + EV_WRITE|EV_PERSIST|EV_FINALIZE, bufferevent_writecb, bufev); + + if (fd >= 0) + bufferevent_enable(bufev, bufev->enabled); + + evutil_getaddrinfo_cancel_async_(bufev_p->dns_request); + + BEV_UNLOCK(bufev); +} + +/* XXXX Should non-socket bufferevents support this? */ +int +bufferevent_priority_set(struct bufferevent *bufev, int priority) +{ + int r = -1; + struct bufferevent_private *bufev_p = + EVUTIL_UPCAST(bufev, struct bufferevent_private, bev); + + BEV_LOCK(bufev); + if (bufev->be_ops != &bufferevent_ops_socket) + goto done; + + if (event_priority_set(&bufev->ev_read, priority) == -1) + goto done; + if (event_priority_set(&bufev->ev_write, priority) == -1) + goto done; + + event_deferred_cb_set_priority_(&bufev_p->deferred, priority); + + r = 0; +done: + BEV_UNLOCK(bufev); + return r; +} + +/* XXXX Should non-socket bufferevents support this? */ +int +bufferevent_base_set(struct event_base *base, struct bufferevent *bufev) +{ + int res = -1; + + BEV_LOCK(bufev); + if (bufev->be_ops != &bufferevent_ops_socket) + goto done; + + bufev->ev_base = base; + + res = event_base_set(base, &bufev->ev_read); + if (res == -1) + goto done; + + res = event_base_set(base, &bufev->ev_write); +done: + BEV_UNLOCK(bufev); + return res; +} + +static int +be_socket_ctrl(struct bufferevent *bev, enum bufferevent_ctrl_op op, + union bufferevent_ctrl_data *data) +{ + switch (op) { + case BEV_CTRL_SET_FD: + be_socket_setfd(bev, data->fd); + return 0; + case BEV_CTRL_GET_FD: + data->fd = event_get_fd(&bev->ev_read); + return 0; + case BEV_CTRL_GET_UNDERLYING: + case BEV_CTRL_CANCEL_ALL: + default: + return -1; + } +} diff -Nru mysql-5.7-5.7.25/extra/libevent/buffer_iocp.c mysql-5.7-5.7.26/extra/libevent/buffer_iocp.c --- mysql-5.7-5.7.25/extra/libevent/buffer_iocp.c 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/buffer_iocp.c 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,326 @@ +/* + * Copyright (c) 2009-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ + +/** + @file buffer_iocp.c + + This module implements overlapped read and write functions for evbuffer + objects on Windows. +*/ +#include "event2/event-config.h" +#include "evconfig-private.h" + +#include "event2/buffer.h" +#include "event2/buffer_compat.h" +#include "event2/util.h" +#include "event2/thread.h" +#include "util-internal.h" +#include "evthread-internal.h" +#include "evbuffer-internal.h" +#include "iocp-internal.h" +#include "mm-internal.h" + +#include +#include +#include + +#define MAX_WSABUFS 16 + +/** An evbuffer that can handle overlapped IO. */ +struct evbuffer_overlapped { + struct evbuffer buffer; + /** The socket that we're doing overlapped IO on. */ + evutil_socket_t fd; + + /** pending I/O type */ + unsigned read_in_progress : 1; + unsigned write_in_progress : 1; + + /** The first pinned chain in the buffer. */ + struct evbuffer_chain *first_pinned; + + /** How many chains are pinned; how many of the fields in buffers + * are we using. */ + int n_buffers; + WSABUF buffers[MAX_WSABUFS]; +}; + +/** Given an evbuffer, return the correponding evbuffer structure, or NULL if + * the evbuffer isn't overlapped. */ +static inline struct evbuffer_overlapped * +upcast_evbuffer(struct evbuffer *buf) +{ + if (!buf || !buf->is_overlapped) + return NULL; + return EVUTIL_UPCAST(buf, struct evbuffer_overlapped, buffer); +} + +/** Unpin all the chains noted as pinned in 'eo'. */ +static void +pin_release(struct evbuffer_overlapped *eo, unsigned flag) +{ + int i; + struct evbuffer_chain *next, *chain = eo->first_pinned; + + for (i = 0; i < eo->n_buffers; ++i) { + EVUTIL_ASSERT(chain); + next = chain->next; + evbuffer_chain_unpin_(chain, flag); + chain = next; + } +} + +void +evbuffer_commit_read_(struct evbuffer *evbuf, ev_ssize_t nBytes) +{ + struct evbuffer_overlapped *buf = upcast_evbuffer(evbuf); + struct evbuffer_chain **chainp; + size_t remaining, len; + unsigned i; + + EVBUFFER_LOCK(evbuf); + EVUTIL_ASSERT(buf->read_in_progress && !buf->write_in_progress); + EVUTIL_ASSERT(nBytes >= 0); /* XXXX Can this be false? */ + + evbuffer_unfreeze(evbuf, 0); + + chainp = evbuf->last_with_datap; + if (!((*chainp)->flags & EVBUFFER_MEM_PINNED_R)) + chainp = &(*chainp)->next; + remaining = nBytes; + for (i = 0; remaining > 0 && i < (unsigned)buf->n_buffers; ++i) { + EVUTIL_ASSERT(*chainp); + len = buf->buffers[i].len; + if (remaining < len) + len = remaining; + (*chainp)->off += len; + evbuf->last_with_datap = chainp; + remaining -= len; + chainp = &(*chainp)->next; + } + + pin_release(buf, EVBUFFER_MEM_PINNED_R); + + buf->read_in_progress = 0; + + evbuf->total_len += nBytes; + evbuf->n_add_for_cb += nBytes; + + evbuffer_invoke_callbacks_(evbuf); + + evbuffer_decref_and_unlock_(evbuf); +} + +void +evbuffer_commit_write_(struct evbuffer *evbuf, ev_ssize_t nBytes) +{ + struct evbuffer_overlapped *buf = upcast_evbuffer(evbuf); + + EVBUFFER_LOCK(evbuf); + EVUTIL_ASSERT(buf->write_in_progress && !buf->read_in_progress); + evbuffer_unfreeze(evbuf, 1); + evbuffer_drain(evbuf, nBytes); + pin_release(buf,EVBUFFER_MEM_PINNED_W); + buf->write_in_progress = 0; + evbuffer_decref_and_unlock_(evbuf); +} + +struct evbuffer * +evbuffer_overlapped_new_(evutil_socket_t fd) +{ + struct evbuffer_overlapped *evo; + + evo = mm_calloc(1, sizeof(struct evbuffer_overlapped)); + if (!evo) + return NULL; + + LIST_INIT(&evo->buffer.callbacks); + evo->buffer.refcnt = 1; + evo->buffer.last_with_datap = &evo->buffer.first; + + evo->buffer.is_overlapped = 1; + evo->fd = fd; + + return &evo->buffer; +} + +int +evbuffer_launch_write_(struct evbuffer *buf, ev_ssize_t at_most, + struct event_overlapped *ol) +{ + struct evbuffer_overlapped *buf_o = upcast_evbuffer(buf); + int r = -1; + int i; + struct evbuffer_chain *chain; + DWORD bytesSent; + + if (!buf) { + /* No buffer, or it isn't overlapped */ + return -1; + } + + EVBUFFER_LOCK(buf); + EVUTIL_ASSERT(!buf_o->read_in_progress); + if (buf->freeze_start || buf_o->write_in_progress) + goto done; + if (!buf->total_len) { + /* Nothing to write */ + r = 0; + goto done; + } else if (at_most < 0 || (size_t)at_most > buf->total_len) { + at_most = buf->total_len; + } + evbuffer_freeze(buf, 1); + + buf_o->first_pinned = NULL; + buf_o->n_buffers = 0; + memset(buf_o->buffers, 0, sizeof(buf_o->buffers)); + + chain = buf_o->first_pinned = buf->first; + + for (i=0; i < MAX_WSABUFS && chain; ++i, chain=chain->next) { + WSABUF *b = &buf_o->buffers[i]; + b->buf = (char*)( chain->buffer + chain->misalign ); + evbuffer_chain_pin_(chain, EVBUFFER_MEM_PINNED_W); + + if ((size_t)at_most > chain->off) { + /* XXXX Cast is safe for now, since win32 has no + mmaped chains. But later, we need to have this + add more WSAbufs if chain->off is greater than + ULONG_MAX */ + b->len = (unsigned long)chain->off; + at_most -= chain->off; + } else { + b->len = (unsigned long)at_most; + ++i; + break; + } + } + + buf_o->n_buffers = i; + evbuffer_incref_(buf); + if (WSASend(buf_o->fd, buf_o->buffers, i, &bytesSent, 0, + &ol->overlapped, NULL)) { + int error = WSAGetLastError(); + if (error != WSA_IO_PENDING) { + /* An actual error. */ + pin_release(buf_o, EVBUFFER_MEM_PINNED_W); + evbuffer_unfreeze(buf, 1); + evbuffer_free(buf); /* decref */ + goto done; + } + } + + buf_o->write_in_progress = 1; + r = 0; +done: + EVBUFFER_UNLOCK(buf); + return r; +} + +int +evbuffer_launch_read_(struct evbuffer *buf, size_t at_most, + struct event_overlapped *ol) +{ + struct evbuffer_overlapped *buf_o = upcast_evbuffer(buf); + int r = -1, i; + int nvecs; + int npin=0; + struct evbuffer_chain *chain=NULL, **chainp; + DWORD bytesRead; + DWORD flags = 0; + struct evbuffer_iovec vecs[MAX_WSABUFS]; + + if (!buf_o) + return -1; + EVBUFFER_LOCK(buf); + EVUTIL_ASSERT(!buf_o->write_in_progress); + if (buf->freeze_end || buf_o->read_in_progress) + goto done; + + buf_o->first_pinned = NULL; + buf_o->n_buffers = 0; + memset(buf_o->buffers, 0, sizeof(buf_o->buffers)); + + if (evbuffer_expand_fast_(buf, at_most, MAX_WSABUFS) == -1) + goto done; + evbuffer_freeze(buf, 0); + + nvecs = evbuffer_read_setup_vecs_(buf, at_most, + vecs, MAX_WSABUFS, &chainp, 1); + for (i=0;ibuffers[i], + &vecs[i]); + } + + buf_o->n_buffers = nvecs; + buf_o->first_pinned = chain = *chainp; + + npin=0; + for ( ; chain; chain = chain->next) { + evbuffer_chain_pin_(chain, EVBUFFER_MEM_PINNED_R); + ++npin; + } + EVUTIL_ASSERT(npin == nvecs); + + evbuffer_incref_(buf); + if (WSARecv(buf_o->fd, buf_o->buffers, nvecs, &bytesRead, &flags, + &ol->overlapped, NULL)) { + int error = WSAGetLastError(); + if (error != WSA_IO_PENDING) { + /* An actual error. */ + pin_release(buf_o, EVBUFFER_MEM_PINNED_R); + evbuffer_unfreeze(buf, 0); + evbuffer_free(buf); /* decref */ + goto done; + } + } + + buf_o->read_in_progress = 1; + r = 0; +done: + EVBUFFER_UNLOCK(buf); + return r; +} + +evutil_socket_t +evbuffer_overlapped_get_fd_(struct evbuffer *buf) +{ + struct evbuffer_overlapped *buf_o = upcast_evbuffer(buf); + return buf_o ? buf_o->fd : -1; +} + +void +evbuffer_overlapped_set_fd_(struct evbuffer *buf, evutil_socket_t fd) +{ + struct evbuffer_overlapped *buf_o = upcast_evbuffer(buf); + EVBUFFER_LOCK(buf); + /* XXX is this right?, should it cancel current I/O operations? */ + if (buf_o) + buf_o->fd = fd; + EVBUFFER_UNLOCK(buf); +} diff -Nru mysql-5.7-5.7.25/extra/libevent/changelist-internal.h mysql-5.7-5.7.26/extra/libevent/changelist-internal.h --- mysql-5.7-5.7.25/extra/libevent/changelist-internal.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/changelist-internal.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,102 @@ +/* + * Copyright (c) 2009-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef CHANGELIST_INTERNAL_H_INCLUDED_ +#define CHANGELIST_INTERNAL_H_INCLUDED_ + +/* + A "changelist" is a list of all the fd status changes that should be made + between calls to the backend's dispatch function. There are a few reasons + that a backend would want to queue changes like this rather than processing + them immediately. + + 1) Sometimes applications will add and delete the same event more than + once between calls to dispatch. Processing these changes immediately + is needless, and potentially expensive (especially if we're on a system + that makes one syscall per changed event). + + 2) Sometimes we can coalesce multiple changes on the same fd into a single + syscall if we know about them in advance. For example, epoll can do an + add and a delete at the same time, but only if we have found out about + both of them before we tell epoll. + + 3) Sometimes adding an event that we immediately delete can cause + unintended consequences: in kqueue, this makes pending events get + reported spuriously. + */ + +#include "event2/util.h" + +/** Represents a */ +struct event_change { + /** The fd or signal whose events are to be changed */ + evutil_socket_t fd; + /* The events that were enabled on the fd before any of these changes + were made. May include EV_READ or EV_WRITE. */ + short old_events; + + /* The changes that we want to make in reading and writing on this fd. + * If this is a signal, then read_change has EV_CHANGE_SIGNAL set, + * and write_change is unused. */ + ev_uint8_t read_change; + ev_uint8_t write_change; + ev_uint8_t close_change; +}; + +/* Flags for read_change and write_change. */ + +/* If set, add the event. */ +#define EV_CHANGE_ADD 0x01 +/* If set, delete the event. Exclusive with EV_CHANGE_ADD */ +#define EV_CHANGE_DEL 0x02 +/* If set, this event refers a signal, not an fd. */ +#define EV_CHANGE_SIGNAL EV_SIGNAL +/* Set for persistent events. Currently not used. */ +#define EV_CHANGE_PERSIST EV_PERSIST +/* Set for adding edge-triggered events. */ +#define EV_CHANGE_ET EV_ET + +/* The value of fdinfo_size that a backend should use if it is letting + * changelist handle its add and delete functions. */ +#define EVENT_CHANGELIST_FDINFO_SIZE sizeof(int) + +/** Set up the data fields in a changelist. */ +void event_changelist_init_(struct event_changelist *changelist); +/** Remove every change in the changelist, and make corresponding changes + * in the event maps in the base. This function is generally used right + * after making all the changes in the changelist. */ +void event_changelist_remove_all_(struct event_changelist *changelist, + struct event_base *base); +/** Free all memory held in a changelist. */ +void event_changelist_freemem_(struct event_changelist *changelist); + +/** Implementation of eventop_add that queues the event in a changelist. */ +int event_changelist_add_(struct event_base *base, evutil_socket_t fd, short old, short events, + void *p); +/** Implementation of eventop_del that queues the event in a changelist. */ +int event_changelist_del_(struct event_base *base, evutil_socket_t fd, short old, short events, + void *p); + +#endif diff -Nru mysql-5.7-5.7.25/extra/libevent/ChangeLog mysql-5.7-5.7.26/extra/libevent/ChangeLog --- mysql-5.7-5.7.25/extra/libevent/ChangeLog 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/ChangeLog 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,1849 @@ +Changes in version 2.1.8-stable (22 January 2017) + + Libevent 2.1.8-stable, it contains openssl fixes for resetting fd and using + bufferevent_openssl_filter_new(). vagrant fixes, some build fixes, increased + timeout for some tests (to reduce number of failures due to timing issues), + date in RFC1123 format and running tests in parallel. + + There are highlighted changes above. + + Build fixes: + o Fix _FILE_OFFSET_BITS redinition (solaris/autotools) (336f3b11 Azat Khuzhin) + o util-internal: fix __func__ redefinition (netbsd) (253e7fa9 Azat Khuzhin) + o Fix signedness differ for iov_base (solaris) (2c62062e Azat Khuzhin) + o evutil_time: include when there is only sleep()/usleep() (3e75194c Azat Khuzhin) + o http: fix formatter for pritnf for req->ntoread (osx) (1cbf26f6 Azat Khuzhin) + Testing environment: + o Merge branch 'automake-tests-parallel-v4' (*includes ci bits also*) (59e217df Azat Khuzhin) + Vagrant env fixes: + o vagrant/netbsd: missing libtool (9c9be399 Azat Khuzhin) + o vagrant/netbsd: more reliable way of installing packages (36da6877 Azat Khuzhin) + o vagrant/osx: use make instead of gmake (there is no gmake) (f7c70aef Azat Khuzhin) + o vagrant: add centos box (ca591c5b Azat Khuzhin) + Tests: + o test/dns: replace servname since solaris does not have "http" (d6bafbbe Azat Khuzhin) + o test/thread: netbsd is too slow, increase timeout for conditions_simple (3c7422fc Azat Khuzhin) + o test/dns: run async resolving after sync one (to avoid timeouts) (07862531 Azat Khuzhin) + o test/http: turn off some tests that based on backlog filling (falky) (26f416c1 Azat Khuzhin) + Bugfixes: + o Merge branch 'openssl-filter-fixes-v4' (83e0f43b Azat Khuzhin) + o Merge branch 'date-rfc1123' (68def435,4798de6c,4545807d Azat Khuzhin) + o Merge branch 'be-openssl-fd-reset-fix-v2' (86fa0070,32adf434 Azat Khuzhin) + o Merge branch 'openssl-1.1-init-fixes-v2' (18a161f0 Azat Khuzhin) + o Fix incorrect MIME type (23f9a20e johnsonlee) + Trivial fixes: + Documentation updates: + o Update README.md (3821cca1 Breaker) + + +Changes in version 2.1.7-rc (2 Novemer 2016) + + Libevent 2.1.7-rc contains openssl 1.1 support, build fixes, CI improvements + and plus Vagrantfile for testing under multiple OS'es. + + + Continious Integration: + o Use coveralls.io via travis (9ac000c Azat Khuzhin) + o travis-ci: use container-based infrastructure (7e12e96 Azat Khuzhin) + o travis-ci/osx: fix compiling/linking openssl libraries (9d2f8d4 Azat Khuzhin) + o travis-ci: use gcc-5 (fixes osx|gcc failures) (d7ceae5 Azat Khuzhin) + o Testing with vagrant for 6 OS and cmake+autoconf (9585338 Azat Khuzhin) + o travis-ci/osx: install lcov (e4e099b Azat Khuzhin) + + Build Improvements/Fixes: + o Fix cmake -DEVENT__COVERAGE=ON (40fbffc Azat Khuzhin) + o autogen.sh: learn about gmake (9376ac4 Azat Khuzhin) + o autogen.sh: remove all autoconf/automake caches, if any (69cce25 Azat Khuzhin) + o cmake: fix finding python2, and check that it is really 2 (3453c08 Azat Khuzhin) + o cmake: fix CheckFunctionExistsEx/CheckPrototypeDefinition (CMP0054) (43b69b2 Azat Khuzhin) + o cmake: cleanup (dc624ad Zonr Chang) + o cmake/win32: fix running regress, but fixing finding python2 interpreter (bcb990a Azat Khuzhin) + o cmake: use PYTHON_EXECUTABLE to find python2 (a4d044c Azat Khuzhin) + o Merge branch 'force-disable-clockgettime' (83c7cdf Azat Khuzhin) + + Code Improvements (core) + o use ev_uint16_t instead of unsigned short for port (e983712 Thomas Bernard) + o Merge branch 'contrib-guide-v2' (b9c5077 Azat Khuzhin) + o poll: Prevent libevent from spinning if POLLNVAL occurs (675974c Tim Hentenaar) + + Testing: + o test/regress: cover a polling of invalid fd (cb0df5c Tim Hentenaar) + + Code Improvements (bufferevent_openssl) + o Make it build using OpenSSL 1.1.0 (3e9e0a0 Kurt Roeckx) + o Don't call BIO_number_{read|written} on NULL BIOs. (6702da1 Adam Langley) + o Switch from a 512 to 2048-bit RSA key. (f9803a6 Adam Langley) + + Trivial fixes: + o Ignore temporary configure files (8fb08ae Azat Khuzhin) + o README.md: fix typo: ar -> are (2361616 Simone Basso) + o be: just a simple mistake, reinclude the (7521664 Seven) + +Changes in version 2.1.6-beta (4 July 2016) + + Libevent 2.1.6-beta contains mostly bug fixes (evbuffers, evthread, evdns, + bufferevents, core, http, samples), improvements but mostly to fix some + possible issues (EVHTTP_CON_LINGERING_CLOSE), a lot of new unit tests and new + appveyor integration. + + Security Fixes (utils) + o evutil_parse_sockaddr_port(): fix buffer overflow (329acc1 Azat Khuzhin) + + Security Fixes (evdns) + o evdns: name_parse(): fix remote stack overread (96f64a0 Azat Khuzhin) + o evdns: fix searching empty hostnames (ec65c42 Azat Khuzhin) + + New APIs (evdns) + o New function to get address for nameserver. (537177d Nick Mathewson) + + New APIs (bufferevents) + o expose bufferevent_incref/decref (with fewer modifications) (1ed6718 Mark Ellzey) + + New APIs (internal) + o evdns: export cancel via callbacks in util (like async lib core/extra issues) (8cbe65d Azat Khuzhin) + + New APIs/Improvements (http) + o http: take EVHTTP_CON_LINGERING_CLOSE into account for "Expect: 100-Continue" (ac448a7 Azat Khuzhin) + o http: lingering close (like nginx have) for entity-too-large (9fde518 Azat Khuzhin) + o http: read server response even after server closed the connection (680742e Azat Khuzhin) + o http: export evhttp_connection_set_family() (714fc70 Azat Khuzhin) + o http: reuse connected address only with EVHTTP_CON_REUSE_CONNECTED_ADDR (a50f5f0 Azat Khuzhin) + o http: use IP address that we got before (if any) during retrying (54c887d Azat Khuzhin) + + Bugfixes (core) + o Fix getaddrinfo under solaris (for multiprotocol case) (40730ae Azat Khuzhin) + o Check for Mac OS X 10.4 kqueue bug properly (df6f99e Mark Mentovai) + o event_reinit: make signals works after fork() without evsig_add() (88640aa Nicholas Marriott) + o event_reinit: always re-init signal's socketpair (ad0c237 Nicholas Marriott) + o Free event queues even for recursive finalizers (7c8d015 Azat Khuzhin) + o Fix checking for make_base_notifiable() (f337296 Azat Khuzhin) + o Set correct socklen for PF_INET6 sockaddr len (3499ad9 Mark Ellzey) + o Fix garbage value in socketpair util function, stdint? (043ae74 Mark Ellzey) + o fix the return value of event_deferred_cb_schedule_ (38cef64 Greg Hazel) + o event_free_debug_globals_locks(): disable lock debugging (e5c87d1 Azat Khuzhin) + o event: call event_disable_debug_mode() in libevent_global_shutdown() (941faae Azat Khuzhin) + o ht-internal: don't reset hth_table_length explicitly in name_##HT_CLEAR (597c7b2 Azat Khuzhin) + + Bugfixes (evthread) + o evthread: fix evthread_setup_global_lock_() for debug-lock with a real-lock case (e4556fc Azat Khuzhin) + o evthread: evthreadimpl_disable_lock_debugging_() for libevent_global_shutdown() (ccc5593 Azat Khuzhin) + + Bugfixes (evdns) + o evdns: avoid double-free in evdns_base_free() for probing requests (4db15e0 Azat Khuzhin) + o evdns: evdns_base_free(): fix UAF of evdns_base with @fail_requests (00313c5 Azat Khuzhin) + o evdns: evdns_base_free(): free requests before namservers (14f84bb Azat Khuzhin) + o evdns: fix randomize-case by make case-insensitive as required (9c238de Azat Khuzhin) + + Bugfixes (bufferevents) + o be_sock: handle readv() returns ECONNREFUSED (freebsd 9.2) (3189eb0 Azat Khuzhin) + o be_filter: avoid data stuck under active watermarks (b627ad8 Eduardo Panisset) + o Fix bufferevent_pair to properly set BEV_EVENT_{READING,WRITING} on flush. (2851889 David Paschich) + o be_openssl: clear all pending errors before SSL_*() calls (38e0f4a Azat Khuzhin) + o be_sock: cancel in-progress dns requests (86dfd2c Azat Khuzhin) + o be_sock: unfreeze buffers on fd changing (255525d Azat Khuzhin) + o be_sock: bufferevent_socket_connect_hostname(): make it thread-safe (809bb39 Azat Khuzhin) + o be_openssl: don't call do_write() directly from outbuf_cb (da52933 Azat Khuzhin) + o be_openssl: use bufferevent_enable() instead of bufferevent_add_event_() (0c66d32 Azat Khuzhin) + o be_openssl: don't add events during bev creation (like be_sock) (f4b6284 Azat Khuzhin) + o Fix lock leak in be_pair_flush() if flush type is BEV_NORMAL (f45d39d Bill Vaughan) + o be_openssl: don't use *_auto() in do_handshake() we can't have fd == -1 there (877280d Azat Khuzhin) + o be_openssl: don't call set_open_callbacks() if fd == -1 (e8a2da9 Azat Khuzhin) + o be_openssl: get rid off hackish "fd_is_set", to fix some corner cases (40b0379 Azat Khuzhin) + o be: we don't need to use getpeername() we we have conn_address (2c271e2 Azat Khuzhin) + o Call underlying bev ctrl SET_FD on filtered bufferevents (c2aa7dc Mark Ellzey) + o be_pair: release shared lock with the latest of bufferevent_pair (92a359e Azat Khuzhin) + + Bugfixes (http) + o [Issue #313] set method to ASCII "NULL" if evhttp_method() returns NULL (17cc636 Mark Ellzey) + o evhttp_have_expect(): fix -Wlogical-not-parentheses (24b5214 Azat Khuzhin) + o http: set fd to -1 unconditioally, to avoid leaking of DNS requests (7a4b472 Azat Khuzhin) + o http: avoid leaking of fd in evhttp_connection_free() (f0e1341 Azat Khuzhin) + o http: get fd from be layer during connection reset (4a53c54 Azat Khuzhin) + o http: fix EVHTTP_CON_READ_ON_WRITE_ERROR when it doesn't supported by OS (2ff164a Azat Khuzhin) + o http: do not do function calls under EVUTIL_ASSERT() to fix NDEBUG builds (7c89999 Azat Khuzhin) + o http: fix leaking of response_code_line (8f18a62 Azat Khuzhin) + o http: fix "Expect: 100-continue" client side (0b46b39 Azat Khuzhin) + o http: fix conflicts EVHTTP_CON_AUTOFREE and EVHTTP_CON_REUSE_CONNECTED_ADDR (4dc0979 Azat Khuzhin) + o http: avoid epoll_ctl() on already closed fd (triggers by http/chunk_out) (ab3bc69 Azat Khuzhin) + o http: install timeout for read too during connect for ssl (040000d Azat Khuzhin) + o http: fix evhttp_request_own() by checking EVHTTP_USER_OWNED in more cases (b0d3964 Azat Khuzhin) + o http: fix detecting EOF without write (7ed02ac Azat Khuzhin) + o evhttp: Fix failure to send all output data for POST/PUT requests (24eea0d John Ohl) + o Fix evhttp_uriencode() regression. (c6b1ec1 Mark Ellzey) + o removed unused vars (e94250c Mark Ellzey) + o pointer overflow checks for evhttp_uriencode (72afe4c Zonr Chang) + + Bugfixes (evbuffers) + o buffer: fix overflow check in evbuffer_expand_singlechain() (a3f4ccd Azat Khuzhin) + o buffer: evbuffer_add_buffer(): clean empty chains from destination buffer (26fd932 Azat Khuzhin) + o Fix n_add_for_cb in evbuffer_prepend() in case of new buffer required (0abd039 Azat Khuzhin) + o be_filter: actually disable output_filter during processing output (c031215 Simon Perreault) + o evbuffer_add: Use last_with_datap if set, not last. (a8769ef Marcus Sundberg) + o EVBUFFER_PTR_SET -> EVBUFFER_PTR_ADD (8674e4f jer-gentoo) + + Bugfixes (evconnlistener) + o listener: unlock lev on error in listener_read_cb() (2a71b33 Azat Khuzhin) + o Fix potential fd leak in listener_read_cb() (a695a72 Mark Ellzey) + + Testing + o tests: use waitpid(..., WNOWAIT) to fix failing of main/fork under solaris (43eb56c Azat Khuzhin) + o test: replace sleeping with syncing pair in main/fork (16d220c Azat Khuzhin) + o test/http: do not run tests that based on backlog filling (freebsd) (500b6b7 Azat Khuzhin) + o test/bufferevent/iocp: fix test name for "bufferevent_connect_fail_eventcb" (4410e9d Azat Khuzhin) + o test/ssl: use send()/recv()/EVUTIL_ERR_RW_RETRIABLE()/EVUTIL_SOCKET_ERROR() to fix win32 (a9e8cd6 Azat Khuzhin) + o test/https_basic: increase timeout for complete write (fixes win32) (d5a2f2f Azat Khuzhin) + o test: fix building with --disable-thread-support under win32 (a487706 Azat Khuzhin) + o test/buffer: evbuffer_add_buffer() with empty chains (a272bc4 Azat Khuzhin) + o test/buffer: evbuffer_remove_buffer() with empty chains (prepend) (f0cfa14 Azat Khuzhin) + o test/buffer: evbuffer_remove_buffer() with empty chains (evbuffer_add_buffer()) (2880ce6 Azat Khuzhin) + o test/buffer: cover evbuffer_expand() for overflow (48dab7a Azat Khuzhin) + o test/be_filter: creating test case for data stuck with active watermarks (766194b Eduardo Panisset) + o test/http: avoid using conditionals with omitted operands (fixes VS2015) (2a4bf29 Azat Khuzhin) + o test/http: don't mix declarations and code (fixes -Wdeclaration-after-statement) (aabf1c2 Azat Khuzhin) + o test/buffer: fix leak in test_evbuffer_prepend() (c08d90b Azat Khuzhin) + o test/buffer: avoid errors with --no-fork (reinitialize static vars) (e7d1e39 Azat Khuzhin) + o test/buffer: cover n_add_for_cb when evbuffer_prepend() need to allocate buffer (e77ff41 Azat Khuzhin) + o test/tinytest_macros: add new one tt_nstr_op() (bd19a28 Azat Khuzhin) + o test/bufferevent: check that output_filter disabled during processing output (ae28812 Azat Khuzhin) + o test/listener: regression for missing unlock in listener_read_cb() (7d85651 Azat Khuzhin) + o test/regress: add tests for evbuffer_add() breakage on empty last chain (d5ee739 Marcus Sundberg) + o test/http: fix running some tests sequential (with --no-fork) (bddad71 Azat Khuzhin) + o test/http: localize evhttp server structure (cbc3209 Azat Khuzhin) + o test/dns: regression for empty hostname (d7348ba Azat Khuzhin) + o test/http: fix SERVER_TIMEOUT tests under win32 (d49a658 Azat Khuzhin) + o test/http: add a helper for creating timedout/failed request (376f107 Azat Khuzhin) + o test/http: adopt for C90 (mixed code and declarations) (d02a285 Azat Khuzhin) + o test/http: cover NS timed out during request cancellations separatelly (0c343af Azat Khuzhin) + o test/http: request cancellation with resolving/{conn,write}-timeouts in progress (334340d Azat Khuzhin) + o test/http: exit from the loop in the errorcb to wait cancellation (927ab33 Azat Khuzhin) + o regress_clean_dnsserver(): reset global port vars (351207f Azat Khuzhin) + o test/http: read_on_write_error: fix it for win32 (3b58169 Azat Khuzhin) + o test/http: separate coverage for EVHTTP_CON_READ_ON_WRITE_ERROR (5c2b4c1 Azat Khuzhin) + o test/http: cover "Expect: 100-continue" client-server interaction (31d8116 Azat Khuzhin) + o test/http: *lingering tests shouldn't have "Expect: 100-continue" (ed469ab Azat Khuzhin) + o test: use EVUTIL_SHUT_WR (04fc82f Azat Khuzhin) + o test/http: avoid huge stack allocations to fix win32 builds (3166765 Azat Khuzhin) + o test: http/lingering_close: cover EVHTTP_SERVER_LINGERING_CLOSE (e122ca1 Azat Khuzhin) + o test: http/non_lingering_close: cover ~EVHTTP_SERVER_LINGERING_CLOSE (f41e1b0 Azat Khuzhin) + o test: http/*: update expected HTTP codes for body exceeds `max_body_size` (addf2b9 Azat Khuzhin) + o test: http/data_length_constrains: set EVHTTP_CON_READ_ON_WRITE_ERROR (d38a723 Azat Khuzhin) + o test: increase buffer size for http/data_length_constraints to trigger EPIPE (0792e1e Azat Khuzhin) + o test/tinytest_demo: include for win32 to fix tdm-gcc (f062bbe Azat Khuzhin) + o test/regress: cover event_del() waiting mechanism (5b58b70 Azat Khuzhin) + o test/regress: cover existing signal callbacks and fork() + event_reinit() (ceddc60 Azat Khuzhin) + o test/regress: cover signals after fork() + event_reinit() (b075b81 Azat Khuzhin) + o test/regress: main/fork: rewrite assertions by just removing event in callback (088d8b3 Azat Khuzhin) + o test/dns: check exit code of evdns_getaddrinfo() (0b9d432 Azat Khuzhin) + o test/dns: cover evdns_getaddrinfo() and evdns_base_free() with @fail_requests (4ad3483 Azat Khuzhin) + o test/dns: cover @fail_requests for evdns_base_free() (d6c6fb4 Azat Khuzhin) + o test/dns: more graceful coverage of @fail_requests (123d372 Azat Khuzhin) + o test/ssl: cover busy-loop (i.e. {read,write}-blocked-on-{write,read} stuff) (da0ea7a Azat Khuzhin) + o test/http: write_during_read for https (23c77b6 Azat Khuzhin) + o test/http: connection_fail for https (7ea26f7 Azat Khuzhin) + o test/http: stream_out for https (ac04968 Azat Khuzhin) + o test/http: chunk_out for https (a71ffb9 Azat Khuzhin) + o test/regress: fix ssl-less builds (need to make this prettier) (3160716 Azat Khuzhin) + o test/http: allow dirty shutdown for ssl to fix https_incomplete (1ede326 Azat Khuzhin) + o test/http: https basic (59714b4 Azat Khuzhin) + o test/http: incomplete{,_timeout} for https (615490d Azat Khuzhin) + o test/http: add simplest test for http/https/https_dirty_shutdown (93b19dc Azat Khuzhin) + o test/http: https: retry coverage (7c2d24a Azat Khuzhin) + o test/http: https server support (plus some helpers) (a7088ad Azat Khuzhin) + o test/http: more sanity checks (a27c53c Azat Khuzhin) + o test/ssl: export getkey()/getcert()/get_ssl_ctx()/init_ssl() for https (0c4c387 Azat Khuzhin) + o test/regress_be: basic coverage bufferevent_flush() for pair/sock layers (ad52602 Azat Khuzhin) + o test/regress_be: socket_filter_inactive: check bufferevent after creation (f8081af Azat Khuzhin) + o test/regress_be: cover finalizers from inactive to active queue (337684b Azat Khuzhin) + o test/regress_buffer: fix clang compilation warnings (d8fd4c0 Azat Khuzhin) + o test/regress_http: fix compilation warnings (-Wmissing-field-initializers) (cd422e0 Azat Khuzhin) + o test/regress_dns: fix compilation warnings (-Wmissing-field-initializers/for) (f55db98 Azat Khuzhin) + o tests/regress_dns: cover that randomize-case works case-insensitive (1e8bfbc Azat Khuzhin) + o test: fix bufferevent/bufferevent_pair_release_lock in debug mode (3f749e9 Azat Khuzhin) + o test: fix bufferevent/bufferevent_pair_release_lock for freebsd (79f9ace Azat Khuzhin) + o test/regress_be: bufferevent_enable() shouldn't call eventcb by it's own (a0f308d Azat Khuzhin) + o test/regress_be: introduce fake_listener_create() (37dc9e0 Azat Khuzhin) + o test/regress_http: cover evhttp_request_own() (6f6fa0d Azat Khuzhin) + o test/regress_http: cover write during read (3d15aeb Azat Khuzhin) + o test/regress_http: verify that closecb will be called without multiple write (4be6c70 Azat Khuzhin) + o test/regress: fix bufferevent_pair_release_lock with EVENT_DEBUG_MODE (6ea6655 Azat Khuzhin) + o test/regress_ssl: check events fd/pending after timeout triggered (cdafdf0 Azat Khuzhin) + o test/regress_ssl: cover case when server didn't up (failed with timeout) (74845f1 Azat Khuzhin) + o test/regress_ssl: covert that we can't change fd with underlying (df507af Azat Khuzhin) + o test/regress_ssl: cover that events (read/write) at finish not pending (762edb4 Azat Khuzhin) + o test/regress_ssl: cover fd manipulations (b78a829 Azat Khuzhin) + o test/regress_ssl: convert open_ssl_bufevs() to mask (46bba73 Azat Khuzhin) + o test/regress_ssl: convert client/server to mask too (3455991 Azat Khuzhin) + o test/regress_ssl: cover "allow_dirty_shutdown" (0430327 Azat Khuzhin) + o test/regress_ssl: convert regress_bufferevent_openssl() to bitmask (342e116 Azat Khuzhin) + o tests/regress_ssl: drop duplicated assert (25e56fd Azat Khuzhin) + o test/regress_http: initialize "dns_base" to avoid reading trash (9f0bff3 Azat Khuzhin) + o test/http: cover retrying with saved conn_address by shutting down dns server (f4874d8 Azat Khuzhin) + o be_pair/regress: cover use of shared lock (lock/unlock/free) (a558fcd Azat Khuzhin) + o regress_dns: drop hack for event_debug_map_HT_GROW in leak tests (3540a19 Azat Khuzhin) + + Sample code + o Fix memory leak in signal-test.c (666db91 basavesh.as) + o sample/hello-world: exAmple, not eXMple (2d3cd35 kirillDanshin) + o dns-example: allow to set ns from args (df19a97 Azat Khuzhin) + o dns-example: convert to getopt() (32f8592 Azat Khuzhin) + o http-connect: make it win32 compilable (1bf7595 Azat Khuzhin) + o sample/https-client: allow to change path to ca-certificates (fdf713a Azat Khuzhin) + o sample/https-client: check for ERR_remove_thread_state() existence (c4e9d9b Azat Khuzhin) + o sample/https-client: replace ERR_remove_state() by ERR_remove_thread_state() (77ad68a Azat Khuzhin) + o sample/https-client: add -timeout option (4637aa8 Azat Khuzhin) + o sample/https-client: don't try to free uninitialized SSL (f3d7ff5 Azat Khuzhin) + o sample/https-client: graceful exit with freeing memory (to make valgrind happy) (24a1f25 Azat Khuzhin) + o https-client: correctly handle URLs with no path (like "https://host:port") (29a0482 Andrey Skriabin) + o sample/http-connect: don't use assert() to make it work with NDEBUG (6dc71e7 Azat Khuzhin) + o sample/http-connect: made it compatible with C90 (f976d43 Azat Khuzhin) + o sample: add HTTP CONNECT tunnelling example using libevent http layer (1d34498 Azat Khuzhin) + o Update dns-example. (620ff24 Mark Ellzey) + + Documentation + o Update README.md (b8ec70c Mark Ellzey) + o Update README.md (80faee9 Mark Ellzey) + o Update README.md (ad4a897 Mark Ellzey) + o Update README.md (a2b2e1e Mark Ellzey) + o Update README.md (0dfa5dc Mark Ellzey) + + Code Improvements (evthread) + o evthread: add evthread_get_{lock,condition}_callbacks() helpers (c0b34f6 Azat Khuzhin) + + Code Improvements (core) + o util: make @sa const for evutil_socket_connect_() (a8d32c2 Azat Khuzhin) + + Code Improvements (http) + o http: assert's that evbuffer_drain() success on connection reset (2185e63 Azat Khuzhin) + o http: introduce evhttp_request_free_() helper (22061ac Azat Khuzhin) + o http: introduce evhttp_is_request_connection_close() helper (6540da3 Azat Khuzhin) + + Code Improvements (bufferevents) + o be_sock: bufferevent_socket_set_conn_address(): assert instead of silent no-op (0ab88c2 Azat Khuzhin) + o be_sock: sanity check in bufferevent_socket_set_conn_address() (eedbeff Azat Khuzhin) + o be: replace sockaddr_storage with sockaddr_in6 for conn_address (3889612 Azat Khuzhin) + o be: replace conn_address by full struct instead of pointer (e5615aa Azat Khuzhin) + o bufferevent: move conn_address out from http into bufferevent (8bb3842 Azat Khuzhin) + o be: make @sa const for bufferevent_socket_connect() (dc33c78 Azat Khuzhin) + + Cleanups (core) + o Refactoring conditional directives that break parts of statements. (4b41eeb lzmths) + o epoll: introduce PRINT_CHANGES() macro to avoid copy-pasting (a1b142b Azat Khuzhin) + o tab (6e7a580 Greg Hazel) + + Cleanups (evbuffers) + o buffer_compat: fix comment -- we have EVBUFFER_EOL_ANY not EOL_STYLE_ANY (575ff67 Azat Khuzhin) + + Cleanups (bufferevents) + o be_sock: evutil_getaddrinfo_async_() always return 0 (dbff101 Azat Khuzhin) + o be_sock: drop be_sock_add() macro (useless and debug unfriendly) (fad5fe2 Azat Khuzhin) + o be: introduce bufferevent_generic_adj_existing_timeouts_() (3c1f58f Azat Khuzhin) + o be: add_event: use evutil_timerisset() (a96b73b Azat Khuzhin) + o be_openssl: introduce be_openssl_auto_fd() helper (2a8a711 Azat Khuzhin) + o be_openssl: introduce set_open_callbacks_auto() (510da71 Azat Khuzhin) + + Cleanups (http) + o http: make fallback for EVHTTP_CON_READ_ON_WRITE_ERROR more cleaner (d405492 Azat Khuzhin) + o http: coding style issue (365f181 Azat Khuzhin) + + Cleanups (evdns) + o evnds: inline TEST_NAME macro to make debuggin easier (0c615f4 Azat Khuzhin) + + Portability Fixes + o [#372] check for errno.h (3031617 Mark Ellzey) + o Fixed Unicode issue in error messages. (e8b7895 Mattes D) + o Assume that ke_udata is an integer type on CloudABI. (5602e45 Ed Schouten) + o Add missing include of . (b2c68bc Ed Schouten) + o Include , and optionally. (c1404b5 Ed Schouten) + o Test against SO_REUSEADDR (along with _WIN32). (ce1776c Ed Schouten) + o Always define missing TAILQ functions from sys/queue.h (2828bdb Christopher Wiley) + o Don't use BSD u_* types. (fd36647 Ed Schouten) + o Remove BSD-ism: TIMEVAL_TO_TIMESPEC(). (193c7de Ed Schouten) + o be: include all variations of headers for sockaddr_in6 struct (c212291 Azat Khuzhin) + o be: fix sockaddr_in6 type definition for win32 (c42bc6b Azat Khuzhin) + + Continious Integration: + o travis: split long lines, and make it cleaner (685a6a1 Azat Khuzhin) + o travis: fix autotools on osx by reinstalling libtool (088ea5e Azat Khuzhin) + o appveyor/autotools: link with openssl by passing LDFLAGS/CFLAGS (6fcfa25 Azat Khuzhin) + o appveyor: image already had openssl installed (4634b85 Azat Khuzhin) + o appveyor: check -DUNICODE -D_UNICODE according to ReleaseChecklist (cmake only) (e9acc44 Azat Khuzhin) + o appveyor: ignore failure of mingw-get (1810857 Azat Khuzhin) + o appveyor: drop shallow_clone, since we use tags for detecting version in cmake (ac90133 Azat Khuzhin) + o appveyor: support cmake & autotools using build matrix (like travis-ci has) (8f95015 Azat Khuzhin) + o travis-ci/osx: relink gcc/g++ instead of clang (481481d Azat Khuzhin) + o travis-ci: enable multi-os mode (osx, linux) (79917e4 Azat Khuzhin) + o travis-ci: increase matrix (--disable-foo) (59649f7 Azat Khuzhin) + o travis-ci: adjust alignment (c8be339 Azat Khuzhin) + o travis: add builds without debug mode into matrix (3e56da2 Azat Khuzhin) + o test: run regress with EVENT_DEBUG_MODE=1 and without (cf2cf2a Azat Khuzhin) + o Update travis config for status updates (37453ab Mark Ellzey) + o Use autotools for appveyor until cmake is fixed. (1cc2e29 Mark Ellzey) + o Fix the link for appveyor OpenSSL installer (WIN32) (107d565 Mark Ellzey) + o Forgot to install OpenSSL for appveyor (26164a5 Joakim Söderberg) + o Add support for appveyor.com windows CI (5f89c37 Joakim Söderberg) + + Build Improvements/Fixes: + o evutil: mark ai_find_protocol() static (prototype-less) (5a157c8 Azat Khuzhin) + o cmake/solaris: set CMAKE_REQUIRED_LIBRARIES to fix functions detections (dc95823 Azat Khuzhin) + o cmake/solaris: fix building (link with socket,nsl) (050bfc7 Azat Khuzhin) + o cmake: check for ZLIB_INCLUDE_DIR, since we can have only library without headers (c4dfb93 Azat Khuzhin) + o autotools/win32: fix searching ssl library (671a24f Azat Khuzhin) + o cmake/win32: do not compile regress_thread on -DEVENT__DISABLE_THREAD_SUPPORT=ON (de0c196 Azat Khuzhin) + o cmake/win32: do not compile evthread_win32 on -DEVENT__DISABLE_THREAD_SUPPORT=ON (ecb0ec8 Azat Khuzhin) + o cmake: fix -DEVENT__ENABLE_VERBOSE_DEBUG (typo on -DUSE_DEBUG) (e35f224 Azat Khuzhin) + o cmake: do not use stderr for notifications/version-info (38716c6 Azat Khuzhin) + o autoconf: fix --disable-thread-support build under win32 (bb09535 Azat Khuzhin) + o buffer: don't mix code and declarations (8892f4c Azat Khuzhin) + o Update gitignore file to ignore cscope gen'ed files (0aaa4fb Neeraj Badlani) + o For non GCC/clang on OSX the -Wno-deprecated-declarations may not be valid (b5ca365 Rainer Keller) + o automake: define serial-tests only if automake have this option (61179de Azat Khuzhin) + o test/automake: don't use paralell test harness (since automake 1.12) (44d755e Azat Khuzhin) + o Ignore all pkgconfig generated stuff (ce38993 Azat Khuzhin) + o libevent_core and libevent_extra also deserve a pkgconfig file (b8d7c62 Jan Heylen) + o Ignore verify_tests.bat (win32 version) (0f2de10 Azat Khuzhin) + o cmake: require 3.1 only for win32 to make it work under ubunty precise (87f7238 Azat Khuzhin) + o cmake: require at least 3.1 for target_sources() (c46ead5 Azat Khuzhin) + o cmake: fix adding of compiler flags, and now it will (36588e1 Azat Khuzhin) + o Replace -Wswitch-enum with -Wswitch, and add it into cmake rules too (f29f59e Azat Khuzhin) + o test/regress_ssl: Fix compile problems for win32 (73d0360 Trond Norbye) + o util: fix "%zu" format on TDM-gcc/MinGW-w64 (79b69d8 Azat Khuzhin) + o cmake: don't define EVENT__NEED_DLLIMPORT always (fixes VS2013 static build) (49bd790 Azat Khuzhin) + o Add missing return statement to del_wait_thread so libevent can build. (4f778ab Nick Mathewson) + o cmake: fix building dns-example under win32 (missing getopt) (a1609a8 Azat Khuzhin) + o visibility: align it to make it more readable (bb6b53d Azat Khuzhin) + o cmake: Fix detection of ssize_t/SSIZE_T (7707f6b Azat Khuzhin) + o Ignore more configure stuff (configure.lineno) (8d34302 Azat Khuzhin) + o Fixed issue with cmake version generation (d56efd9 Mark Ellzey) + o Cmake is now officially working. (7f9646d Mark Ellzey) + o More cmake updates, lot's of missing definitions (49a5381 Mark Ellzey) + o CMake syntax fixes fo .in files (6aad23d Mark Ellzey) + o Revert "The Windows socket type is defined as SOCKET." (a264da8 Mark Ellzey) + o CMAKE CMAKE CMAKE CLEANUPS (a9db46a Mark Ellzey) + o Lot's of cmake updates (8b228e2 Mark Ellzey) + o Provide a mechanism for building the library on Windows with different compiler flags. Add a batch file that builds it for the M[DT][d] options and performs a hunt and gather of the different output libraries. (ded8086 billsegall) + o The Windows socket type is defined as SOCKET. (c9e6c3d billsegall) + o autotools: fix getservbyname() detection (959a4c2 Azat Khuzhin) + o Add missing for openssl_hostname_validation module (3316a21 Azat Khuzhin) + o make test/regress_ssl.c compile without warnings (9f02a44 Thomas Bernard) + o test/regress_be: drop debug __asm__(int3) to fix arm build (8240379 Azat Khuzhin) + o event_debug_created_threadable_ctx_: fix compilation without debug mode (a068f2e Azat Khuzhin) + o Add a prototype for event_disable_debug_mode() (bfcedee Sebastian Hahn) + o http: eliminate warning about "socklen" in evhttp_connection_connect_() (dfad1a4 Azat Khuzhin) + o Updated gitignore (1dbb55d Mark Ellzey) + o Update bench_httpclient.c (cb96931 Seungmo Koo) + o *fix: bench_httpclient to support win32 (4e9325e zeliard) + o Commented out a WIN32 threading / timing test for now (e84e269 Mark Ellzey) + o Fix mixed declarations and code (forbidden by ISO C90) (0c7f217 Thomas Bernard) + o Fix "function declaration isn’t a prototype" (746d2c5 Thomas Bernard) + o This fixes a bug introduced in 27bd9faf498b91923296cc91643e03ec4055c230 (19ba454 Joakim Söderberg) + o changed strtotimeval signature as per #211 (bdbc823 Xiao Bao Clark) + o Added cmake-generated files to ignore list. (6c12bfe Matyas Dolak) + o Ignore `make dist` generated files (8a2c6c7 Azat Khuzhin) + + Debugging + o Debug mode option to error on evthread init AFTER other event calls. (dcfb19a Mark Ellzey) + + + +Changes in version 2.1.5-beta (5 January 2015) + + Security Fixes (evbuffers) + o Avoid integer overflow bugs in evbuffer_add() and related functions. See CVE-2014-6272 advisory for more information. (d49bc0e88b81a5812116074dc007f1db0ca1eecd) + + New APIs (evconnlistener) + o Provide support for SO_REUSEPORT through LEV_OPT_REUSABLE_PORT (b625361 Maciej Soltysiak) + + Bugfixes (core) + o Fix use-after-free error in EV_CLOSURE_EVENT callback (3cc0eac John Ohl) + o Fix race caused by event_active (3c7d6fc vjpai) + + Bugfixes (evbuffer) + o Fix evbuffer_peek() with len==-1 and start_at non-NULL. (ba59923) + o Consistently check for failure from evbuffer_pullup() (60f8f72) + o Fix evbuffer_peek() with len==-1 and start_at non-NULL. (fb7e76a) + + Bugfixes (windows, IOCP) + o be async: avoid double close() (f133b86 Azat Khuzhin) + + Bugfixes (bufferevents) + o Fix issue #127, double free for filterevents that use BEV_OPT_CLOSE_ON_FREE (2c82aa0 John Ohl) + o make bufferevent_getwatermark api more robust (a21e510 ufo2243) + o [Bugfix] fix bufferevent setwatermark suspend_read (b34e4ac ufo2243) + o bufferevent_openssl: reset fd_is_set when setfd with -1 is called (3da84c2 Azat Khuzhin) + o Fix compilation for older OpenSSL versions. (5c7282f Joakim Soderberg) + + New APIs (evhttp) + o Add evhttp_connection_set_family() to set addrinfo->family for DNS requests (12c29b0 Azat Khuzhin) + o Implement interface that provides the ability to have an outbound evhttp_connection free itself once all requests have completed (2b9ec4c,10fe4f John Ohl) + + New APIs (core) + o Implement new/free for struct evutil_monotonic_timer and export monotonic time functions (f2645f8 Andrea Shepard) + + Bugfixes (evdns) + o Load hosts file on Windows. (a0b247c Vilmos Nebehaj) + o Don't truncate hosts file path on Windows. (d0dc861 Vilmos Nebehaj) + o Fix a crash in evdns related to shutting down evdns (9f39c88,e8fe749) + o evdns: avoid read-after-free in evdns_request_timeout_callback() (61262a0 Azat Khuzhin) + o Correctly handle allocation failures in evdns_getaddrinfo (6a53d15) + o evdns: fix EVDNS_BASE_DISABLE_WHEN_INACTIVE in case retransmit/retry (74d0eee Azat Khuzhin) + o evdns: add retry/reissue tests for EVDNS_BASE_DISABLE_WHEN_INACTIVE (3ca9d43 Azat Khuzhin) + o evdns: fail ns after we are failing/retrasmitting request (97c750d Azat Khuzhin) + + Bugfixes (evhttp) + o http: reset connection before installing retry timer (fix http retries handling) (bc79cc5 Azat Khuzhin) + + + Testing + o regress_dns: fix leaks in getaddrinfo_async{,_cancel_stress} tests (2fdc5f2 Azat Khuzhin) + o test: add family argument for http_connection_test_() (177b8a7 Azat Khuzhin) + o test: add regress for evhttp_connection_set_family() with AF_INET and AF_UNSPEC (42aefeb Azat Khuzhin) + o test/http: add regress test for set family to AF_INET6 (3fbf3cc Azat Khuzhin) + o Update to a more recent tinytest_macros. (8da5a18) + o test/regress: add simplestsignal: to track reorder bugs separately (b897bef Azat Khuzhin) + o test/evbuffer_peek: add regress in case we have first buffer greater (e2d139d Azat Khuzhin) + o More evbuffer_peek() test cases (154006a) + o use correct tt macro for pointer compare (08c88ea) + o regress_buffer: fix 'memcmp' compare size (79800df Maks Naumov) + o Fix a use-after-free in unit tests. CID 752027 (3739057) + o Fix a dead-code warning in unit tests. CID 1193548 (c119f24) + o Use evutil_weakrand() in unit tests. (a677b72, 364c110) + o Use a more precise calculation for max in time-ratelim.c (ca5b5c7) + o Make a buffer larger in the tests to avoid a scary evbuffer_copyout_from() (fb57b8b) + o Fix several memory leaks in the unit tests. (89c1a3b) + o Add test for evhttp_connection_free_on_completion (b0e9924 John Ohl) + o Fix annoying heisenbug in test-time.c (cb73704) + + Sample code + o Make http-server.c output into good html5 (6d72bdc) + o Use FindClose for handle from FindFirstFile in http-server.c (6466e88) + o https-client: add -retries argument, for connection retries (d9da844 Azat Khuzhin) + + Bugfixes (build) + o Add missing headerfile for cmake (15d90cc Trond Norbye) + o ignore one more test binary (b6593aa Michael Richardson) + o ignore config.cache/test-driver files (c83f333 Mike Frysinger) + o add a --disable-samples configure flag (0c492b3 Mike Frysinger) + o Add a few files created by "make verify" to .gitignore. (1a8295a Pierre Phaneuf) + o updates in cmake build (27bd9fa Sergey Nikulov) + o Fix cmake error when the Module path has more than one entry. (befbd13 Acer Yang) + o Fix CMake shared library build (e69d910 Nobuaki Sukegawa) + o Fix warnings when compiling with clang 3.5 (f5b4765 John Ohl) + o Fix mixed declarations and code (forbidden by ISO C90) (8afbdbc Thomas Bernard) + + Bugfixes (miscellaneous) + o tree.h: drop duplicated content of tree.h (6193187 Azat Khuzhin) + o evdns: disable probing with EVDNS_BASE_DISABLE_WHEN_INACTIVE (610410b,ad0493e,fea86a6,d83b337,5ca9e97 Azat Khuzhin) + o [Bugfix] fix grammer error (3a4d249 ufo2243) + o Change return type of evutil_load_windows_system_library_ to HMODULE (f691389) + o Fix a c90 warning (76643dd) + o Fix a typo in a doxygen comment. Reported by 亦得. (be1aeff) + o remove trailing comma from enum (b361b8a Jean-Philippe Ouellet) + + Bugfixes (FreeBSD) + o Handle ENOTCAPABLE from FreeBSD - this is returned if an event in the changelist is for an FD that has been closed. (6fd7394 Adrian Chadd) + + + +Changes in version 2.1.4-alpha (21 Mar 2014) + + Libevent 2.1.4-alpha adds a number of new miscellaneous APIs to make + Libevent more useful, including support for early close detection with + epoll via EPOLLRDHUP, triggering bufferevent callbacks, adding more + evhttp callbacks, and more. There are also numerous bugfixes, including + a number for finalize-related issues from 2.1.3-alpha; and an + alternative (non-primary!) cmake-based build mechanism. + + New APIs (core) + o Added event_base_get_num_events() (0fa107d Mobai Zhang) + o New event_base_active_by_fd API (865a142 Greg Hazel, 5c9da9a, 87fa2b0) + o Add event_base_active_by_signal by analogy (4865943) + o Add access to max event count stats (5173bef, efbd3dc, 26230a2 + Andrew Sweeney) + o Implemented EV_CLOSED event for epoll backend + (EPOLLRDHUP). (b1b69ac Diego Giagio, 53d2793, 43ffcf6, dfe1e52 + Marcin Juszkiewicz, ff26633 Joakim Soderberg, 3908a5e) + + New APIs (evutil_secure_rng) + o Add evutil_secure_rng_set_urandom_device_file (2bbb5d7) + + New APIs (bufferevents) + o Add function to fetch underlying ratelimit cfg (4b3d5af Mark Ellzey) + o Pass and return const for bufferevent_get_token_bucket_cfg (1c77fbb + Mark Ellzey) + o Add watermark introspection (4ce242b Ondřej Kuzník) + o Add an option to trigger bufferevent I/O callbacks (61ee18b Ondřej Kuzník) + o Add an option to trigger bufferevent event callbacks (a7384c7 + Ondřej Kuzník) + o Clarifications in response to merge req. comments (bd41947 Ondřej + Kuzník) + o Minor optimizations on bufferevent_trigger options (a3172a4) + + New APIs (evhttp) + o Add evhttp_connection_get_server(). (a7f82a3 Maxime Henrion) + o add a http default content type option (5a5acd9 Nicolas Martyanoff) + o http: implement new evhttp_connection_get_addr() api. (0c7f040 Azat + Khuzhin) + o Add a variant of evhttp_send_reply_chunk() with a callback on + evhttp_write_buffer() (8d8decf Julien BLACHE) + o Allow registering callback for parsing HTTP headers (b0bd7fe Balint Reczey) + o Provide on request complete callback facility (b083ca0 Andrew Sweeney) + o evhttp_request_set_on_complete_cb to be more specific about what + the function actually does and usage (da86dda Andrew Sweeney) + o Update unit test to make sure that the callback happens after the + output data is written (b85f398 Andrew Sweeney) + + Features (evdns) + o bug fix for issues #293 evdns_base_load_hosts doesn't remove + outdated addresses (954d2f9, f03d353, 45eba6f Kuldeep Gupta) + + Features: (cmake build support) + o Initial CMake commit. (e415196 Joakim Soderberg) + o Add all tests and benchmarks to CMake project. (e9fc014 Joakim Soderberg) + o More work on adding tests to CMake project (99c1dc3 Joakim Soderberg) + o Generate a dummy evconfig-private.h so things build + properly. (ce14def Joakim Soderberg) + o Link libm on unix platforms. (58fcd42 Joakim Soderberg) + o Added some GCC specific options. (19222e5 Joakim Soderberg) + o Use evutil_closesocket instead. (dbf2b51 Joakim Soderberg) + o Add copyright and licensing files for CMake modules. (c259d53 + Joakim Soderberg) + o Only include WIN32 getopt where it is used. (9bbce0b Joakim Soderberg) + o Fix bench_cascade program on Windows. (78da644 Joakim Soderberg) + o Don't segfault on no found event backend. (8f2af50 Joakim Soderberg) + o Only test the event backends available on the system. (7ea4159 + Joakim Soderberg) + o Added a "make verify" target. (e053c4f Joakim Soderberg) + o Fix the make "verify" target on Windows. (67e5d74 Joakim Soderberg) + o Get rid of deprecation warnings for OpenSSL on OSX 10.7+ (69c3516 + Joakim Söderberg) + o Fix kqueue support. (a831f2f Joakim Söderberg) + o Added a test for testing if kqueue works with pipes. (2799b35 + Joakim Söderberg) + o Change the BSD license from 4 to 3-clause. (86df3ed Joakim Soderberg) + o Minimum required python version is 2.4. (968e97b Joakim Soderberg) + o Get rid of unknown pragma warnings. (0ef1d04 Joakim Soderberg) + o Add a "make verify_coverage" target generation coverage + info. (f2483f8 Joakim Soderberg) + o Fix the "make verify" target on NetBSD (4ac086a Joakim Soderberg) + o Only look for ZLib when it is used (if tests are + included). (f780593 Joakim Soderberg) + o Added EVENT__ENABLE_GCC_WARNINGS, turns all warnings into + errors. (dd413bd Joakim Soderberg) + o Add CMake config and install targets. (f3446ed Joakim Soderberg) + o Fix typo (4b754df Joakim Soderberg) + o Some work on making it possible to simply do add_subdirectory() on + the project. (49ab363 Joakim Soderberg) + o Set USE_DEBUG=1 on EVENT__ENABLE_VERBOSE_DEBUG (fd42e70 Joakim Soderberg) + o Fix so that old nmake project still builds. (24d6466 Joakim + Soderberg) + o Rename README to README.md and use markdown to format. (d2bc39a + Joakim Soderberg) + o Update README with CMake build instructions. (604b8cc Joakim Soderberg) + o Clean up the README some. (8d4cb35 JoakimSoderberg) + o Forgotten headers for old nmake project compatability. (8697b99 + Joakim Soderberg) + o Change all uses of WIN32 to _WIN32 (4e14395 Joakim Söderberg) + o Fix include bug. (2024467 Joakim Söderberg) + o Check if we're on OSX before disabling deprecation in le-proxy + (8b40a5b Joakim Söderberg) + o Fix broken autotools build. (ae1bd82 Joakim Söderberg) + o Disclaimerize cmake a little in the README (d03b5bf) + o Fix CMake compile when OpenSSL is disabled. (e423d42 Joakim + Söderberg) + o CMake: Get rid of python not found warning when regress tests + turned off. (d38d798 Joakim Söderberg) + o Fix https-client compilation on Windows. (d7be788 Joakim Soderberg) + o Guard against EVENT_NOWIN32 being set during testing. (f1715b4 + Joakim Soderberg) + o Check for OSX when checking for clang. (e212c54 Joakim Soderberg) + o Added a Travis-CI configuration file. (8c0f0a9 Joakim Soderberg) + o Added -Qunused-arguments for clang on macosx (ed99d92 Trond Norbye) + o Rename event_extras to event_extra (a0dd5df Trond Norbye) + o Add option to build shared library (4545fa9 Trond Norbye) + o Add -Qunused-arguments for clang on macos (b56611d Trond Norbye) + o Add cmake-related files to .gitignore (e061321 Trond Norbye) + o Export event_extra not event_extras. (2b41bcf Joakim Söderberg) + + Bugfixes (core) + o If evsel->del() fails, don't leave the evmap in an inconsistent + state (9b5a527 Maxime Henrion) + o Move event_debug_note_teardown_ before mm_free. (69b5c64) + o Check CLOCK_MONOTONIC_* at runtime if needed. (911abf3) + o Fix reinit of fds with EV_WRITE but not EV_READ. (ebfd8a8 maksqwe) + o Tweaked callbacks to prevent race condition + (https://github.com/libevent/libevent/issues/104) (40830f1, 2ea15ed + John Ohl) + o Move assert(ev) to before we use ev in EV_CLOSURE_EVENT_FINALIZE + case (9805972) + + Bugfixes (evhttp) + o Fix a double close() bug in evhttp when the underlying bufferevent uses + BEV_OPT_CLOSE_ON_FREE. (31db8a0 Maxime Henrion) + o Fix an unlikely but possible error case for http connections (f22049e) + o Avoid racy bufferevent activation (5eb1788 Nate Rosenblum) + + Bugfixes on 2.0 (Windows) + o Use windows vsnprintf fixup logic on all windows environments (e826f19) + o libevent/win32_dealloc() : fix sizeof(pointer) vs sizeof(*pointer) + (b8f5980 Frank Denis) + + Bugfixes (evutil_secure_rng) + o When we seed from /proc/sys/kernel/random/uuid, count it as success + (e35b540) + o We should return after arc4random_buf() (1ea1f26 Makoto Kato) + o Avoid other RNG initialization FS reads when urandom file is + specified (9695e9c) + o Really remove RNG seeds from the stack (f5ced88) + o Fix another arc4random_buf-related warning (e64a2b0) + + Bugfixes (bufferevents) + o Initialize async bufferevent timeout CBs unconditionally (af9b2a7) + + Bugfixes (evdns) + o Checking request nameserver for NULL, before using it. (5c710c0 + Belobrov Andrey) + o Fix SEGFAULT after evdns_base_resume if no nameservers + installed. (14971a8 Azat Khuzhin) + o Actually use the log facility for reporting evdns problems. (e1766a1) + o Fix SEGFAULT after evdns_base_resume if no nameservers + installed. (f8d7df8 Azat Khuzhin) + o fix for ServFail from RIPE Atlas release (62f596b Antony Antony) + + Bugfixes (compilation) + o Fix test compilation with nmake: add the gdi.lib dependency (5ba8ab7) + o Whoops. It is gdi.lib, not gdi32.lib. (github issue #61) (8ab612e) + o Don't use return since return type is void and build error occurs + using clang (838161d Makoto Kato) + o Use void casts to suppress some "unchecked return value" warns (7080d55) + o rpcgen: Generate regress.gen.[c,h] in build rather than src dir + (243386c Ross Lagerwall) + o Fix a compiler warning when checking for arc4random_buf linker + breakage. (5cb3865) + o Fix 'make distcheck' by adding regress.gen.[ch] to DISTCLEANFILES + (239d834) + + o Fix a c90 warning (c207682) + o Fix consts in WIN32-Code/getopt*.[ch] (57abb35) + + Bugfixes (locks, synchronization) + o Missed lock acquire/release in event_base_cancel_single_callback_() + (d3d999a Azat Khuzhin) + o Fix locking in bufferevent_get_options_(). (dbc9cd4 Maxime Henrion) + + Bugfixes (leaks) + o Avoid leaking segment mappings when offset is not a page multiple (d409514) + + Testing + o Add tests for evdns_base_resume(). (1cd9ff5 Azat Khuzhin) + o Fix dns/leak_resume_send_err test. (7e876df Azat Khuzhin) + o Add checks for evhttp_connection_get_server() in unit + tests. (fbc323b Maxime Henrion) + o Fix a (failure-only) null dereference in the unit tests (1104d0b) + o Fix a logic error in test_evbuffer_freeze (7765884) + o Add missing check to test_evbuffer_file_segment_add_cleanup_cb (eba4506) + o Fix some crash-on-fail cases in DNS regression tests (87cd6f0) + o DNS tests: add a missing check (f314900) + o Finalize tests: add a missing check (82b6956) + o test_evutil_rtrim: add another missing check. (e193c95) + o regress_main: logging all if env EVENT_DEBUG_LOGGING_ALL isset + (611e28b Azat Khuzhin) + o regress_http: add tests for evhttp_connection_get_addr() (4dd500c + Azat Khuzhin) + o Update to the latest version of tinytest (7a80476) + o Heap-allocate zlib data structure in regress_zlib tests (4947c18) + + Performance tweaks (core) + o Avoid redundant syscall to make a nonblocking socket nonblocking + (42c03da Maxime Henrion) + o Avoid redundant syscall if making a socket cloexec twice (1f29b18) + o Avoid redundant invocations of init_extension_functions for IOCP (3b77d62) + + Documentation + o Document that arc4random is not a great cryptographic PRNG. (6e49696) + o Small doxygen tweaks (6e67b51) + o Try another doxygen tweak (ccf432b) + o Clarify event_base_loop exit conditions (031a803) + o Fix a typo (be7bf2c Ondřej Kuzník) + o Document deferred eventcb behaviour (13a9a02 Ondřej Kuzník) + o Typo fixes from Linus Nordberg (cec62cb, 8cd695b) + o Fix duplicate paragraph in evbuffer_ptr documentation (58408ee) + + Code Improvements (coverity) + o Fix a pile of coverity warnings in the unit tests (867f401) + o Fix coverity warnings in benchmark tools. (ff7f739) + o Whoops; fix compilation in bench.c (544cf88) + o Remove spurious checks in evrpc.c error cases (coverity) (991b362) + o Fix a couple of compilation warnings in regress_http.c (860767e) + o Fix even more coverity warnings. (d240328) + o Stop checking for inet_aton; we don't use it. (f665d5c) + o Add an include to evrpc-internal to fix openbsd compilation warning + (5e161c6) + + Cleanups + o Remove an unreachable return statement in minheap-internal.h (e639a9e) + o Refactor evmap_{io,signal}_active_() to tolerate bad inputs (974c60e) + o Fix needless bufferevent includes in evdns.c (254c04e) + o Fix a couple of "#ifdef WIN32" instances (88ecda3) + o Remove unneeded declaration in bufferevent-internal.h (4c8ebcd) + + Sample code + o le-proxy: Fail more gracefully if opening listener fails (44b2491) + o http-server: drop uri_root from base_url in http-server. (6171e1c Azat Khuzhin) + o https-client: POST supported, args supported (c5887f7 Alexey Ozeritsky) + o https-client: code cleanup (29af65e Alexey Ozeritsky) + o https-client: Small tweaks to https-client.c (90786eb) + o https-client: Set hostname for SNI extension (by f69m) (d1976f8) + o https-client: add a cast to https-client.c (462e6b6) + + + +Changes in version 2.1.3-alpha (1 May 2013) + + Libevent 2.1.3-alpha fixes various bugs, adds new unit tests, and cleans + up the code in a couple of places. It has a new callback in evhttp for + reporting errors during a request, a new feature for allowing evdns to + not keep the event_base looping when there are no requests inflight, and + example code for writing an https client. + + Libevent 2.1.3-alpha also has an important new (experimental) event + finalization feature to allow safe event teardown in multithreaded + programs. This ought to fix the longstanding bug with deadlocks in + multithreaded use of SSL-based bufferevents that some people have been + experiencing since Libevent 2.0. + + + Core (event finalization) + o Implement event_finalize() and related functions to avoid certain + deadlocks (8eedeab) + o Use finalization feature so bufferevents can avoid deadlocks (02fbf68) + o Always run pending finalizers when event_base_free() is called (e9ebef8) + o Remove bufferevent_del_generic_timeout_cbs as now unused (4ea4c6a) + o More documentation for finalization feature (a800b91) + o Make the event_finalize* functions return an error code (5d11f4f) + o Mark the finalize stuff as experiemental in case it needs to + change (23e2e29) + + Evdns + o evdns: New flag to make evdns not prevent the event loop from + exiting (6b7fa62 Azat Khuzhin) + + Bugfixes (Core) + o Make event_remove_timer behave correctly with persistent timers (5623e80) + o Unit test for event_remove_timer with EV_PERSIST. (96150dd) + o Double-check next timeout when adding events (9443868 Nate Rosenblum) + o event_base_update_cache_time should be a no-op if the loop isn't + running (5e6fa2a) + + Bugfixes (evhttp, crash fix, from 2.0) + o fix #73 and fix http_connection_fail_test to catch it (b618204 Greg Hazel) + + Bugfixes (compilation and portability, from 2.0) + o Fix compilation with WIN32_HAVE_CONDITION_VARIABLES enabled (7e45739) + o Fix missing AC_PROG_SED on older Autoconfs (9ab2b3f Tay Ray Chuan) + o Backport libevent to vanilla Autoconf 2.59 (as used in RHEL5) + (74d4c44 Kevin Bowling) + o Use AC_CONFIG_HEADERS in place of AM_CONFIG_HEADERS for autmake + 1.13 compat (817ea36) + o Rename configure.in to configure.ac to appease newer autoconfs (0c79787) + o Avoid using top_srcdir in TESTS: new automakes do not like this (a55514e) + + Bugfixes (resource leaks/lock errors on error, from 2.0) + o Avoid leaking fds on evconnlistener with no callback set (69db261) + o Avoid double-close on getsockname error in evutil_ersatz_socketpair + (0a822a6) + o Fix a locking error in bufferevent_socket_get_dns_error. (0a5eb2e) + + Documentation Fixes (from 2.0) + o Fix a mistake in evbuffer_remove() arguments in example http server code + (c322c20 Gyepi Sam) + o Fix a typo in a comment in buffer.h. Spotted by Alt_F4 (773b0a5) + + Documentation Fixes + o minor documentation typos (809586a Patrick Pelletier) + o Fix cut-and-paste err in whatsnew-2.1 (49905ac) + o Fix comment to refer to sample/include.am correctly (9e8cdf3 Sebastian + Hahn) + o Fix typo : Dispatching instead of Dispaching (0c2bacc Volker Lendecke) + o fix some hinky indentation in evhttp_make_request (80e220e Patrick + Pelletier) + o "buffer" spelling (a452811 Patrick Pelletier) + o Specify return behavior in header for evbuffer_pullup() in corner case + (cf8d1cd Dan Petro) + o Clarify an important point about event_base_foreach_event() (920a5e6) + + Compilation Fixes/Tool Support + o avoid valgrind false positive by zeroing epoll_event (1258614 Patrick + Pelletier) + o Fix harmless clang enum warning (b452a43 Sebastian Hahn) + o remove all exes on "make clean", not just regress.exe (974bfa0 Patrick + Pelletier) + o Make --disable-libevent-regress work again (787fd74) + o Do not build strlcpy.c when it will have no code. (4914620) + + Portability Fixes + o When EWOULDBLOCK is not EAGAIN, treat it as equivalent to it (bf7a0ff) + o Preliminary changes for Minix3. (0dda56a Nicholas Heath) + o Use AC_CONFIG_HEADERS in place of AM_CONFIG_HEADERS for autmake 1.13 + compat (bf278b) + o Avoid using $(top_srcdir) in TESTS. (2863c83) + o build test/test-script.sh on systems with a less-featureful $< (f935e21) + o Implement EVUTIL_ERR_IS_EAGAIN on windows. (42aaf4d) + + Evhttp changes: + o Fix ipv6 support for http. When URL contain domain, not IP + address. (71e709c Azat Khuzhin) + o uri decode: fix for warning "use of uninitialised value" (64b6ece Azat + Khuzhin) + o uri decode: changed the test for the existence of the next character + (e1903e3 Azat Khuzhin) + o Move prototype of evhttp_decode_uri_internal() to http-internal.h + (de8101a Azat Khuzhin) + o Test: decoding just part of string with evhttp_decode_uri_internal() + (1367653 Azat Khuzhin) + o Add new error_cb for actual reporting of HTTP request errors. (7b07719 + Azat Khuzhin) + o Add test for EVREQ_HTTP_REQUEST_CANCEL into http_cancel_test() (862c217 + Azat Khuzhin) + o Drop extra header http_struct.h from regress_http.c (54cc800 Azat Khuzhin) + + Testing + o Add regress test ipv6_for_domain. (9ec88bd Azat Khuzhin) + o Add an environment variable (EVENT_DEBUG_MODE) to run unit tests in debug + mode (2fad0f3) + o Add a test with an active_later event at event_base_free time. (1c3147f) + o Make all tests pass under EVENT_DEBUG_MODE=1 (b1b054f) + o Add some verbose notes to bufferevent unit tests (9d893c9) + o New test for active_later->active transition on event_active (a153874) + o New tests for event_base_foreach_event() (0b096ef) + o Unit tests for event_base_gettimeofday_cached() and + event_base_update_cache_time() (30ea291) + o A test for event_get_assignment() (f09629e) + o More unit tests for initializing common timeouts. (d596739) + o Fix a bug in the new main/event_foreach test (702c9aa) + + Windows: + o use FormatMessage for winsock errors (0c6ec5d, 2078e9b, 4ccdd53, c9ad3af + Patrick Pelletier) + o a program to print out the error strings for winsock errors (7296512 + Patrick Pelletier) + o Fix a warning introduced in 0c6ec5d8 (eeb700c) + o Fix another warning introduced in 0c6ec5d8 (ed26561) + + Examples (http) + o Add sample/https-client.c, an example of stacking evhttp as a client on + top of bufferevent_ssl. (be46c99 Catalin Patulea) + o use ${OPENSSL_LIBS} instead of -lssl -lcrypto (bf31fa5 Patrick Pelletier) + o https-client was putting newlines at 256-byte boundaries (42d7441 Patrick + Pelletier) + o better handling of OpenSSL errors (5754d96 Patrick Pelletier) + o use Debian's default root certificate location (aacd674 Patrick Pelletier) + o use iSECPartners code to validate hostname in certificate (64d9f16 + Patrick Pelletier) + o avoid sign mismatch warning in openssl_hostname_validation.c (6021cb5 + Patrick Pelletier) + o pull in wildcard matching code from cURL (4db9da6 Patrick Pelletier) + o Another tweak to https-client.c (95acdaa) + o Remove http_struct.h usage in sample/https-client.c (8a90a85) + + + +Changes in version 2.1.2-alpha (18 Nov 2012) + + Libevent 2.1.2-alpha includes more portable for monotonic timers, + refactors much of Libevent's internal and external infrastructure, + closes some longstanding gaps in the interface, makde other + improvements. Ths log below tries to organize features by rough area of + effect. It omits a few commits which were pure bugfixes on other commits + listed below. For more detail, see the git changelogs. For more + insight, see the "whatsnew-2.1.txt" document included in the Libevent + 2.1.2-alpha distribution. + + Libevent 2.1.2-alpha also includes all changes made in 2.0.19-stable + through 2.0.21-stable inclusive. + + Performance (core): + o Replace pipe-based notification with EVFILT_USER where possible. This + should make multithreaded programs on OSX and *BSD alert the main thread a + little faster. (53a07fe) + o Make th_base_lock nonrecursive. (9cd5acb) + + New/Changed API Functions: + o New event_get_priority() function to return an event's priority (f90e255) + o Add a bufferevent_get_priority() function (bd39554) + o Add an event_base_loopcontinue() to tell Libevent to rescan for more + events right away (7d6aa5e) + o Add a new callback to get called on evbuffer_file_segment free + (e9f8feb yangacer, 64051b9) + o Expose event_base_foreach_event() as a public API. (84fd6d7 Roman + Puls, 232055e, ffe1643) + o Add an event_remove_timer() to remove timer on an event without + deleting it (e3b2e08) + o Make bufferevent_set_timeouts(bev, NULL, NULL) have plausible + semantics (9dee36b) + o Rename event_enable_lock_debuging() to ..._debugging(). (The old name + should still work.) (07e132e) + o Add missing implementation for event_enable_debug_logging (3b3e21d) + + PORTABLE MONOTONIC TIMERS: + + Libevent 2.1.2 includes internal support for monotonic timers on + (nearly) all supported platforms, including Windows, and OSX. Libevent + applications should now be more resilient to jumps forwards or backwards + in the system clock. Also, on Linux systems with epoll, we now + optionally support microsecond-level timeouts (whereas epoll only + supports millisecond-precision timeouts). + + o Use mach_absolute_time() for monotonic clock support on OSX. (b8fd6f9) + o Do not track use_monotonic field when is no monotonic clock (cb653a0) + o EVENT_BASE_FLAG_PRECISE_TIMER indicates we want fine timer precision + (ddd69d3) + o On Linux, use CLOCK_MONOTONIC_COARSE by default (55780a7) + o Implement a GetTickCount-based monotonic timer for Windows (d5e1d5a) + o Refactor monotonic timer handling into a new type and set of + functions; add a gettimeofday-based ratcheting implementation (f5e4eb0) + o Add EVENT_PRECISE_TIMER environment var for selecting precise-but-slow + timer (a2598ec) + o Implement fast/precise monotonic clocks on Windows (2c47045) + o Simple unit tests for monotonic timers (630f077) + o Improve the monotonic-time unit test: make it check the step size (7428c78) + o When PRECISE_TIMERS is set with epoll, use timerfd for microsecond + precision (26c7582) + o Split out time-related evutil functions into a new evutil_time.c (c419485) + o Split out time-related prototypes into time-internal.h (71bca50) + o Add evutil_time.obj to Makefile.nmake (0ba0683) + o Avoid giving a spurious warning when timerfd support is unavailable + (1aaf9f0 Dave Hart) + o Make test_evutil_monotonic a little more tolerant (def3b83) + o Avoid unused-var warning on systems with clock_gettime but without + CLOCK_MONOTONIC_COARSE (9be5468) + +EVENT_BASE_ONCE LEAKS: + If a callback added by event_base_once() is never invoked, Libevent no + longer leaks internal memory. + + o Free dangling event_once objects on event_base_free() (c17dd59) + o Add a unit test in which an event is created with event_base_once() + but never fires (4343edf) + +TESTING SUPPORT, FIXES AND IMPROVEMENTS: + + Libevent now disables by default its unit tests that would touch the + network, or that tend to fail on heavily-loaded systems. To re-enable + them, invoke the ./test/regress program with the @all alias. + + o Simplify test.sh code significantly. (9b856fd Ross Lagerwall) + o Make all tests that hit the network disabled by default (f2cea87) + o Avoid a resource leak on error in http client benchmark (ea92fba) + o Update to latest tinytest (911b4f0349377) (ef7c4f7) + o Avoid (unlikely) overflow in bench_httpclient.c (5671033) + o Shave 700 msec off the persistent_timeout_jump test (21205b8) + o Check return value of write() in regress.c (c8009d2) + o Make load-dependent monotonic timer tests off-by-default (2b6fe8b) + o Add deferred_cb_skew to list of timing-dependent tests (34c8f31) + o Avoid test -e; older shs don't have one. (f1bd938) + o Fix renegotiation test to work around openssl 1.0.1 bug (c2f3086) + o Fix a couple of compile warnings in the unit tests (5a9a014) + +MISC: + o Change evutil_weakrand_() to avoid platform random() (e86af4b Nicholas + Marriott, 3aa4415) + +INFRASTRUCTURE (Active-later events): + As a simplification and optimization to Libevent's "deferred callback" + logic (introduced in 2.0 to avoid callback recursion), Libevent now + treats all of its deferrable callback types using the same logic it uses + for active events. Now deferred events no longer cause priority + inversion, no longer require special code to cancel them, and so on. + + o Refactor the callback part of an event into its own event_callback + type (cba59e5) + o Add "active later" event_callbacks to supersede deferred (745a63d) + o event_base_assert_ok: check value of event_active_count for + correctness (fec8bae) + o Replace deferred_cbs with event_callback-based implementation. (ae2b84b) + o Replace more deferred_cb names with event_callback (a4079aa) + o Give event_base_process_active a single exit path (581b5be) + o Restore our priority-inversion-prevention code with deferreds (c0e425a) + o Refactor event_persist_closure: raise and extract some common logic + (bec22b4) + o Remove the unused bits from EVLIST_ALL (9889a3d) +||||||| merged common ancestors +Changes in version 2.0.22-stable (?? Dec 2013) + + (As of 3b77d62829c4393bda6f9105a5d3b73b48a64b71.) + +BUGFIXES (evhttp) + o fix #73 and fix http_connection_fail_test to catch it (crash fix) (b618204 Greg Hazel) + o Avoid racy bufferevent activation (5eb1788 Nate Rosenblum) + +BUGFIXES (compilation and portability) + o Fix compilation with WIN32_HAVE_CONDITION_VARIABLES enabled (7e45739) + o Fix missing AC_PROG_SED on older Autoconfs (9ab2b3f Tay Ray Chuan) + o Backport libevent to vanilla Autoconf 2.59 (as used in RHEL5) (74d4c44 Kevin Bowling) + o Use AC_CONFIG_HEADERS in place of AM_CONFIG_HEADERS for autmake 1.13 compat (817ea36) + o Rename configure.in to configure.ac to appease newer autoconfs (0c79787) + o Avoid using top_srcdir in TESTS: new automakes do not like this (a55514e) + o Use windows vsnprintf fixup logic on all windows environments (e826f19) + o Fix a compiler warning when checking for arc4random_buf linker breakage. (5cb3865) + o Fix another arc4random_buf-related warning (e64a2b0) + +BUGFIXES (resource leaks/lock errors on error) + o Avoid leaking fds on evconnlistener with no callback set (69db261) + o Avoid double-close on getsockname error in evutil_ersatz_socketpair (0a822a6) + o Fix a locking error in bufferevent_socket_get_dns_error. (0a5eb2e) + o libevent/win32_dealloc() : fix sizeof(pointer) vs sizeof(*pointer) (b8f5980 Frank Denis) + +BUGFIXES (miscellaneous) + o Avoid other RNG initialization FS reads when urandom file is specified (9695e9c, bb52471) + o Avoid redundant invocations of init_extension_functions for IOCP (3b77d62) + +BUFGIXES (evdns) + o Checking request nameserver for NULL, before using it. (5c710c0 Belobrov Andrey) + o Fix SEGFAULT after evdns_base_resume if no nameservers installed. (f8d7df8 Azat Khuzhin) + +BUGFIXES (evutil_secure_random) + o When we seed from /proc/sys/kernel/random/uuid, count it as success (e35b540) + o Document that arc4random is not a great cryptographic PRNG. (6e49696) + o Add evutil_secure_rng_set_urandom_device_file (2bbb5d7) + o Really remove RNG seeds from the stack (f5ced88) + + +DOCUMENTATION FIXES + o Fix a mistake in evbuffer_remove() arguments in example http server code (c322c20 Gyepi Sam) + o Fix a typo in a comment in buffer.h. Spotted by Alt_F4 (773b0a5) + + + +Changes in version 2.0.21-stable (18 Nov 2012) +BUGFIXES: + o ssl: Don't discard SSL read event when timeout and read come close together (576b29f) + o ssl: Stop looping in "consider_reading" if reading is suspended. (f719b8a Joachim Bauch) + o ssl: No need to reserve space if reading is suspended. (1acf2eb Joachim Bauch) + o dns: Avoid a memory-leak on OOM in evdns. (73e85dd, f2bff75 George Danchev) + o build: Use python2 rather than python (0eb0109 Ross Lagerwall) + o build: Compile without warnings on mingw64 (94866c2) + o build: Fix compilation on mingw64 with -DUSE_DEBUG (62bd2c4) + o build: Make rpcgen_wrapper.sh work on systems without a "python2" binary (f3009e4) + o iocp: Close IOCP listener socket on free when LEV_OPT_CLOSE_ON_FREE is set (cb853ea Juan Pablo Fernandez) + o core: Avoid crash when event_pending() called with no event_base set on event (e3cccf3) + o misc: remove stray 'x' so print_err will compile when uncommented (ac35650 Patrick Pelletier) + o tests: Fix renegotiation test to work around openssl 1.0.1 bug (c2f3086) + o tests: Warn when openssl version in unit test mismatches compiled version. (ac009f9) + + +Changes in version 2.0.20-stable (23 Aug 2012) +BUGFIXES: + o core: Make event_pending() threadsafe. (be7a95c Simon Liu) + o win32: avoid crash when waiting forever on zero fds. (160e58b) + o evhttp: Fix a memory leak on error in evhttp_uriencode (11c8b31) + o evbuffer: Avoid possible needless call to writev. Found by coverity. (6a4ec5c) + o evdns: memset sockaddr_in before using it. Found by coverity. (a1a0e67) + o evhttp: Check more setsockopt return values when binding sockets. Found by coverity (a0912e3) + o evdns: Avoid segfault on weird timeout during name lookup. (dc32077 Greg Hazel) + o bufferevent_ssl: Correctly invoke callbacks when a SSL bufferevent reads some and then blocks. (606ac43) + + +PORTABILITY FIXES: + o check for arc4random_buf at runtime, on OS X (bff5f94 Greg Hazel) + o Correctly check for arc4random_buf (fcec3e8 Sebastian Hahn) + o Add explicit AC_PROG_SED to configure.in so all autoconfs will expose $(SED) (ca80ea6) + +BUILD FIXES: + o Add GCC annotations so that the vsprintf functions get checked properly (117e327) + o Fix an unused variable warning on *BSD. (c0720c1) + +UNIT TEST FIXES: + o Fix a couple of memory leaks (found with Valgrind). (3b2529a Ross Lagerwall) + o Remove deadcode in http regression tests. Found by coverity. (5553346) + o Fix possible uninitialized read in dns regression tests. Found by coverity. (2259777) + o Set umask before calling mkstemp in unit tests. Found by coverity (f1ce15d) + o Fix various check-after-dereference issues in unit tests: found by coverity (4f3732d) + o Fix resource leaks in the unit tests; found by coverity (270f279) + o Add some missing null checks to unit tests; found by coverity (f021c3d) + o Avoid more crashes/bad calls in unit tests; found by coverity (3cde5bf) + o Remove unused variable; spotted by coverity (6355b2a) + o Add checks to various return values in unit tests. Found by coverity (b9e7329) + o Move assignment outside tt_assert in ssl unit tests. Appeases coverity. (a2006c0) + + + +Changes in version 2.0.19-stable (3 May 2012) +BUGFIXES (CORE): + o Refactor event_persist_closure: raise and extract some common logic (bec22b4) + o If time has jumped so we'd reschedule a periodic event in the past, schedule it for the future instead (dfd808c) + o If a higher-priority event becomes active, don't continue running events of the current priority. (2bfda40) + +BUGFIXES (SSL): + o Fixed potential double-readcb execution with openssl bufferevents. (4e62cd1 Mark Ellzey) + +BUGFIXES (DNS): + o Cancel a probe request when the server is freed, and ignore cancelled probe callbacks (94d2336 Greg Hazel) + o Remove redundant DNS_ERR_CANCEL check, move comment (46b8060 Greg Hazel) + o When retransmitting a timed-out DNS request, pick a fresh nameserver. (3d9e52a) + +DOCUMENTATION FIXES: + o Fix a typo in the bufferevent documentation (98e9119) + o Add missing ) to changelog; spotted by rransom (4c7ee6b) + o Fix the website URL in the readme (f775521) + +COMPILATION FIXES: + o Fix a compilation error with MSVC 2005 due to use of mode_t (336dcae) + o Configure with gcc older than 2.95 (4a6fd43 Sebastian Hahn) + o Generate event-config.h with a single sed script (30b6f88 Zack Weinberg) + +FORWARD-COMPATIBILITY: + o Backport: provide EVENT_LOG_* names, and deprecate _EVENT_LOG_* (d1a03b2) + +TESTING/DEBUGGING SUPPORT: + o dns-example.c can now take a resolv.conf file on the commandline (6610fa5) + o Make some evdns.c debug logs more verbose (d873d67) + o Work-around a stupid gcov-breaking bug in OSX 10.6 (b3887cd) + + + +Changes in version 2.0.18-stable (22 Mar 2012) +BUGFIXES (core): + o Make uses of open() close-on-exec safe by introducing an internal evutil_open_closeonexec. (d2b5f72 Ross Lagerwall, 03dce42) + +BUGFIXES (kqueue): + o Properly zero the kevent in kq_setup_kevent() (c2c7b39 Sebastian Hahn) + +BUILD FIXES: + o Added OPENSSL_LDFLAGS env variable which is appended to SSL checks. (9278196 Mark Ellzey) + o Changed OPENSSL_LDFLAGS to OPENSSL_LIBADD (2d67b63 Mark Ellzey) + o Don't do clang version detection when disabling some flags (083296b Sebastian Hahn) + +BUGFIXES (dns): + o Stop crashing in evdns when nameserver probes give a weird error (bec5068) + + +Changes in version 2.0.17-stable (10 Feb 2012) + +BUGFIXES (core): + o Be absolutely sure to clear pncalls before leaving event_signal_closure (11f36a5) + o check for sysctl before we use it (358c745 Mike Frysinger) + o Remove bogus casts of socket to int before calling ev_callback (f032516) + o Make evconnlistener work around bug in older Linux when getting nmapped (ecfc720) + o Fix a list corruption bug when using event_reinit() with signals present (6e41cdc) + o Fix a fd leak in event_reinit() (3f18ad1) + o Do a memberwise comparison of threading function tables (c94a5f2 Nate R) + o Use C-style comments in C source files (for compatibility with compilers such as xlc on AIX). (d84d917 Greg Hewgill) + o Avoid crash when freeing event_iocp and using event_set_mem_functions (19715a6) + o In the kqueue backend, do not report EBADF as an EV_READ (5d7bfa1 Nicholas Marriott) + +BUGFIXES (evbuffer and bufferevents): + o Fix behavior of evbuffer_peek(buf,-1,NULL,NULL,0) (c986f23 Zack Weinberg) + o Loop on filtering SSL reads until we are blocked or exhausted. (5b4b812) + +BUGFIXES (evhttp): + o Force strict validation of HTTP version in response. (790f6b3 Catalin Patulea) + +BUGFIXES (evdns): + o evdns: fix a bug in circular-queue implementation (d6094b1) + +BUILD FIXES: + o Fix a silly compilation error with the sun compiler (1927776 Colin Watt) + o Suppress a gcc warning from ignoring fwrite return in http-sample.c (7206e8c) + +DOCUMENTATION FIXES: + o Slightly clarify evbuffer_peek documentation (7bbf6ca) + o Update copyright notices to 2012 (e49e289) + +NEW APIS: + o Backport evhttp_connection_get_bufferevent to Libevent 2.0 (da70fa7 Arno Bakker) + +TESTS AND TEST FIXES: + o Fix a race condition in the dns/bufferevent_connect_hostname test. (cba48c7) + o Add function to check referential integrity of an event_base (27737d5) + o Check event_base correctness at end of each unit test (3312b02) + o Workaround in the unit tests for an apparent epoll bug in Linux 3.2 (dab9187) + o Better workaround for Linux 3.2 edge-triggered epoll bug (9f9e259) + +Changes in version 2.0.16-stable (18 Nov 2011) +BUGFIXES (core): + o More detailed message in case of libevent self-debugging failure. (9e6a4ef Leonid Evdokimov) + o epoll: close fd on alloc fail at initialization (1aee718 Jamie Iles) + o Fix compile warning from saying event2/*.h inside a comment (447b0ba) + o Warn when unable to construct base because of failing make_base_notifiable (4e797f3) + o Don't try to make notifiable event_base when no threading fns are configured (e787413) + +BUGFIXES (evbuffer): + o unit test for remove_buffer bug (90bd620 Greg Hazel) + o Fix an evbuffer crash in evbuffer_remove_buffer() (c37069c) + +BUGFIXES (bufferevent_openssl): + o Refactor amount-to-read calculations in buffervent_ssl consider_reading() (a186e73 Mark Ellzey) + o Move SSL rate-limit enforcement into bytes_to_read() (96c562f) + o Avoid spinning on OpenSSL reads (2aa036f Mark Ellzey) + +BUGFIXES (dns) + o Empty DNS reply with OK status is another way to say NODATA. (21a08d6 Leonid Evdokimov) + +TESTING: + o Tests for 94fba5b and f72e8f6 (d58c15e Leonid Evdokimov) + o Test for commit aff6ba1 (f7841bf Leonid Evdokimov) + o Style and comment tweaks for dns/leak* tests (5e42202) + o improve test to remove at least one buffer from src (7eb52eb Greg Hazel) + +DOCUMENTATION: + o Add note about evhttp_send_reply_end to its doxygen (724bfb5) + o Update copyright dates to 2011. (3c824bd) + o Fix typo in whatsnew-2.0.txt (674bc6a Mansour Moufid) + o Improve win32 behavior of dns-sample.c code (a3f320e Gisle Vanem) + + + +Changes in version 2.0.15-stable (12 Oct 2011) +BUGFIXES (DNS): + o DNS: add ttl for negative answers using RFC 2308 idea. (f72e8f6 Leonid Evdokimov) + o Add DNS_ERR_NODATA error code to handle empty replies. (94fba5b Leonid Evdokimov) + +BUFGIXES (bufferevents and evbuffers): + o Make evbuffer callbacks get the right n_added value after evbuffer_add (1ef1f68 Alex) + o Prefer mmap to sendfile unless a DRAINS_TO_FD flag is set. Allows add_file to work with SSL. (0ba0af9) + +BUGFIXES (event loop): + o When a signal callback is activated to run multiple times, allow event_base_loopbreak to work even before they all have run. (4e8eb6a) + +DOCUMENTATION FIXES: + o Fix docstring in dns.h (2b6eae5 Leonid Evdokimov) + o refer to non-deprecated evdns functions in comments (ba5c27d Greg Hazel) + +BUILD AND TESTING FIXES: + o le-proxy and regress depend on openssl directly (9ae061a Sergey Avseyev) + o Use _SOURCES, not _sources, in sample/Makefile.am (7f82382) + o Fixed compiler warnings for unchecked read/write calls. (c3b62fd Mark Ellzey) + o Make write-checking fixes use tt_fail_perror (2b76847) + o Fix some "value never used" warnings with gcc 4.6.1 (39c0cf7) + + + +Changes in version 2.0.14-stable (31 Aug 2011) +BUGFIXES (bufferevents and evbuffers): + o Propagate errors on the underlying bufferevent to the user. (4a34394 Joachim Bauch) + o Ignore OpenSSL deprecation warnings on OS X (5d1b255 Sebastian Hahn) + o Fix handling of group rate limits under 64 bytes of burst (6d5440e) + o Solaris sendfile: correctly detect amount of data sent (643922e Michael Herf) + o Make rate limiting work with common_timeout logic (5b18f13) + o clear read watermark on underlying bufferevent when creating filtering bev to fix potentially failing fragmented ssl handshakes (54f7e61 Joachim Bauch) + +BUGFIXES (IOCP): + o IOCP: don't launch reads or writes on an unconnected socket (495c227) + o Make IOCP rate-limiting group support stricter and less surprising. (a98da7b) + o Have test-ratelim.c support IOCP (0ff2c5a) + o Make overlapped reads result in evbuffer callbacks getting invoked (6acfbdd) + o Correctly terminate IO on an async bufferevent on bufferevent_free (e6af35d) + +BUGFIXES (other): + o Fix evsig_dealloc memory leak with debugging turned on. (9b724b2 Leonid Evdokimov) + o Fix request_finished memory leak with debugging turned on. (aff6ba1 Leonid Evdokimov) + +BUILD AND TESTING FIXES: + o Allow OS-neutral builds for platforms where some versions have arc4random_buf (b442302 Mitchell Livingston) + o Try to fix 'make distcheck' errors when building out-of-tree (04656ea Dave Hart) + o Clean up some problems identified by Coverity. (7c11e51 Harlan Stenn) + + +Changes in version 2.0.13-stable (18 Jul 2011) +BUGFIXES + o Avoid race-condition when initializing global locks (b683cae) + o Fix bug in SSL bufferevents backed by a bev with a write high-watermarks (e050703 Joachim Bauch) + o Speed up invoke_callbacks on evbuffers when there are no callbacks (f87f568 Mark Ellzey) + o Avoid a segfault when all methods are disabled or broken (27ce38b) + o Fix incorrect results from evbuffer_search_eol(EOL_LF) (4461f1a) + o Add some missing checks for mm_calloc failures (89d5e09) + o Replace an assertion for event_base_free(NULL) with a check-and-warn (09fe97d) + o Report kqueue ebadf, epipe, and eperm as EV_READ events (1fd34ab) + o Check if the `evhttp_new_object' function in `http.c' returns NULL. (446cc7a Mansour Moufid) + o Use the correct printf args when formatting size_t (3203f88) + o Complain if the caller tries to change threading cbs after setting them (cb6ecee) + +DOCUMENTATION FIXES AND IMPROVEMENTS + o Revise the event/evbuffer/bufferevent doxygen for clarity and accuracy (2888fac) + o Update Doxyfile to produce more useful output (aea0555) + +TEST FIXES + o Fix up test_evutil_snprintf (caf695a) + o Fix tinytest invocation from windows shell (57def34 Ed Day) + +BUILD FIXES + o Use AM_CPPFLAGS in sample/Makefile.am, not AM_CFLAGS (4a5c82d) + o Fix select.c compilation on systems with no NFDBITS (49d1136) + o Fix a few warnings on OpenBSD (8ee9f9c Nicholas Marriott) + o Don't break when building tests from git without python installed (b031adf) + o Don't install event_rpcgen.py when --disable-libevent-install is used (e23cda3 Harlan Stenn) + o Fix AIX build issue with TAILQ_FOREACH definition (e934096) + + +Changes in version 2.0.12-stable (4 Jun 2011) +BUGFIXES + o Fix a warn-and-fail bug in kqueue by providing kevent() room to report errors (28317a0) + o Fix an assert-inducing fencepost bug in the select backend (d90149d) + o Fix failing http assertion introducd in commit 0d6622e (0848814 Kevin Ko) + o Fix a bug that prevented us from configuring IPv6 nameservers. (74760f1) + o Prevent size_t overflow in evhttp_htmlescape. (06c51cd Mansour Moufid) + o Added several checks for under/overflow conditions in evhttp_handle_chunked_read (a279272 Mark Ellzey) + o Added overflow checks in evhttp_read_body and evhttp_get_body (84560fc Mark Ellzey) + +DOCUMENTATION: + o Add missing words to EVLOOP_NONBLOCK documentation (9556a7d) + +BUILD FIXES + o libssl depends on libcrypto, not the other way around. (274dd03 Peter Rosin) + o Libtool brings in the dependencies of libevent_openssl.la automatically (7b819f2 Peter Rosin) + o Use OPENSSL_LIBS in Makefile.am (292092e Sebastian Hahn) + o Move the win32 detection in configure.in (ceb03b9 Sebastian Hahn) + o Correctly detect openssl on windows (6619385 Sebastian Hahn) + o Fix a compile warning with zlib 1.2.4 and 1.2.5 (5786b91 Sebastian Hahn) + o Fix compilation with GCC 2, which had no __builtin_expect (09d39a1 Dave Hart) + o Fix new warnings from GCC 4.6 (06a714f) + o Link with -lshell32 and -ladvapi32 on Win32. (86090ee Peter Rosin) + o Make the tests build when OpenSSL is not available. (07c41be Peter Rosin) + o Bring in the compile script from automake, if needed. (f3c7a4c Peter Rosin) + o MSVC does not provide S_ISDIR, so provide it manually. (70be7d1 Peter Rosin) + o unistd.h and sys/time.h might not exist. (fe93022 Peter Rosin) + o Make sure TINYTEST_LOCAL is defined when building tinytest.c (8fa030c Peter Rosin) + o Fix winsock2.h #include issues with MSVC (3d768dc Peter Rosin) + o Use evutil_gettimeofday instead of relying on the system gettimeofday. (0de87fe Peter Rosin) + o Always use evutil_snprintf, even if OS provides it (d1b2d11 Sebastian Hahn) + o InitializeCriticalSectionAndSpinCount requires _WIN32_WINNT >= 0x0403. (816115a Peter Rosin) + o cygwin: make it possible to build DLLs (d54d3fc) + + + +Changes in version 2.0.11-stable (27 Apr 2011) + [Autogenerated from the Git log, sorted and cleaned by hand.] +BUGFIXES: + o Fix evport handling of POLLHUP and POLLERR (b42ce4b) + o Fix compilation on Windows with NDEBUG (cb8059d) + o Check for POLLERR, POLLHUP and POLLNVAL for Solaris event ports (0144886 Trond Norbye) + o Detect and handle more allocation failures. (666b096 Jardel Weyrich) + o Use event_err() only if the failure is truly unrecoverable. (3f8d22a Jardel Weyrich) + o Handle resize failures in the select backend better. (83e805a) + o Correctly free selectop fields when select_resize fails in select_init (0c0ec0b) + o Make --enable-gcc-warnings a no-op if not using gcc (3267703) + o Fix a type error in our (unused) arc4random_stir() (f736198) + o Correctly detect and stop non-chunked http requests when the body is too long (63a715e) + o Have event_base_gettimeofday_cached() always return wall-clock time (a459ef7) + o Workaround for http crash bug 3078187 (5dc5662 Tomash Brechko) + o Fix incorrect assertions and possible use-after-free in evrpc_free() (4b8f02f Christophe Fillot) + o Reset outgoing http connection when read data in idle state. (272823f Tomash Brechko) + o Fix subtle recursion in evhttp_connection_cb_cleanup(). (218cf19 Tomash Brechko) + o Fix the case when failed evhttp_make_request() leaved request in the queue. (0d6622e Tomash Brechko) + o Fix a crash bug in evdns server circular list code (00e91b3) + o Handle calloc failure in evdns. (Found by Dave Hart) (364291e) + o Fix a memory leak on win32 socket->event map. (b4f89f0) + o Add a forgotten NULL check to evhttp_parse_headers (12311ff Sebastian Hahn) + o Fix possible NULL-deref in evdns_cancel_request (5208544 Sebastian Hahn) + +PORTABILITY: + o Fall back to sscanf if we have no other way to implement strtoll (453317b) + o Build correctly on platforms without sockaddr_storage (9184563) + o Try to build correctly on platforms with no IPv6 support (713c254) + o Build on systems without AI_PASSIVE (cb92113) + o Fix http unit test on non-windows platforms without getaddrinfo (6092f12) + o Do not check for gethostbyname_r versions if we have getaddrinfo (c1260b0) + o Include arpa/inet.h as needed on HPUX (10c834c Harlan Stenn) + o Include util-internal.h as needed to build on platforms with no sockaddr_storage (bbf5515 Harlan Stenn) + o Check for getservbyname even if not on win32. (af08a94 Harlan Stenn) + o Add -D_OSF_SOURCE to fix hpux builds (0b33479 Harlan Stenn) + o Check for allocation failures in apply_socktype_protocol_hack (637d17a) + o Fix the check for multicast or broadcast addresses in evutil_check_interfaces (1a21d7b) + o Avoid a free(NULL) if out-of-memory in evdns_getaddrinfo. Found by Dave Hart (3417f68) + +DEFENSIVE PROGRAMMING: + o Add compile-time check for AF_UNSPEC==PF_UNSPEC (3c8f4e7) + +BUGS IN TESTS: + o Fix test.sh output on solaris (b4f89b6 Dave Hart) + o Make test-eof fail with a timeout if we never get an eof. (05a2c22 Harlan Stenn) + o Use %s with printf in test.sh (039b9bd) + o Add an assert to appease clang's static analyzer (b0ff7eb Sebastian Hahn) + o Add a forgotten return value check in the unit tests (3819b62 Sebastian Hahn) + o Actually send NULL request in http_bad_request_test (b693c32 Sebastian Hahn) + o add some (void) casts for unused variables (65707d7 Sebastian Hahn) + o Refactor test_getaddrinfo_async_cancel_stress() (48c44a6 Sebastian Hahn) + o Be nice and "handle" error return values in sample code (4bac793 Sebastian Hahn) + o Check return value of evbuffer_add_cb in tests (93a1abb Sebastian Hahn) + o Remote some dead code from dns-example.c (744c745 Sebastian Hahn) + o Zero a struct sockaddr_in before using it (646f9fe Sebastian Hahn) + +BUILD FIXES: + o Fix warnings about AC_LANG_PROGRAM usage (f663112 Sebastian Hahn) + o Skip check for zlib if we have no zlib.h (a317c06 Harlan Stenn) + o Fix autoconf bracket issues; make check for getaddrinfo include netdb.h (833e5e9 Harlan Stenn) + o Correct an AM_CFLAGS to an AM_CPPFLAGS in test/Makefile.am (9c469db Dave Hart) + o Fix make distcheck & installation of libevent 1 headers (b5a1f9f Dave Hart) + o Fix compilation under LLVM/clang with --enable-gcc-warnings (ad9ff58 Sebastian Hahn) + +FEATURES: + o Make URI parser able to tolerate nonconformant URIs. (95060b5) + +DOCUMENTATION: + o Clarify event_set_mem_functions doc (926f816) + o Correct evhttp_del_accept_socket documentation on whether socket is closed (f665924) + o fix spelling mistake in whatsnew-2.0.txt (deb2f73) + o Fix sample/http-server ipv6 fixes (eb692be) + o Comment internal headers used in sample code. (4eb281c) + o Be explicit about how long event loops run in event.h documentation (f95bafb) + o Add comment to configure.in to explain gc-sections test logic (c621359) + o Fix a couple of memory leaks in samples/http-server.c. Found by Dave Hart. (2e9f665) + + + +BUILD IMPROVEMENTS: + Libevent 2.1.2-alpha modernizes Libevent's use of autotools, and makes + numerous other build system. Parallel builds should be faster, and all + builds should be quieter. + + o Split long lists in Makefile.am into one-item-per-line (2711cda) + o Remove unnecessary code in configure.in. (e65914f Ross Lagerwall) + o attempt to support OpenSSL in Makefile.nmake (eba0eb2 Patrick Pelletier) + o Use newer syntax for autoconf/automake init (7d60ba8) + o Enable silent build rules by default. Override with V=1 (7b18e5c) + o Switch to non-recursive makefiles (7092f3b) + o Rename subordinate Makefile.ams to include.am (6cdfeeb) + o Make quiet build even quieter (371a123) + o New --quiet option for event_rpcgen.py (aa59c1e) + o Be quiet when making regress.gen.[ch] (607a8ff) + o Fix handling of no-python case for nonrecursive make (1e3123d) + o We now require automake 1.9 or later. Modernize! (b7f6e89) + o Rename configure.in to configure.ac. (b3fea67 Ross Lagerwall) + o Use correct openssl libs and includes in pkgconfig file (d70af27) + o Use the same CFLAGS for openssl when building unit tests as with + libevent (1d9d511) + +DOCUMENTATION + o Note that make_base_notifiable should not be necessary (26ee5f9) + o Be more clear that LEV_OPT_DEFERRED_ACCEPT has tricky prereqs (371efeb) + o Add caveat to docs about bufferevent_free() with data in outbuf (6fab9ee) + o Make it more clear that NOLOCK means "I promise, no multithreading" + (9444524) + o Fix a comment in test-fdleak after 077c7e949. (3881d8f Ross Lagerwall) + o Make the Makefile.nmake warning slightly less dire (e7bf4c8) + o Fix typo : events instead of evets (05f1aca Azat Khuzhin) + o Additional comments about OPENSSL_DIR variable, prompted by Dave Hart + (6bde2ef Patrick Pelletier) + +EVHTTP: + o ignore LWS after field-content in headers (370a2c0 Artem Germanov) + o Clean up rtrim implementation (aa59d80) + o Remove trailing tabs in HTTP headers as well. (ac42519) + o Remove internal ws from multiline http headers correctly (c6ff381) + o Move evutil_rtrim_lws_ to evutil.c where it belongs (61b93af) + o add evhttp_request_get_response_code_line (4f4d0c9 Jay R. Wren) + o Use EVUTIL_SOCKET_ERROR() wrapper to save/restore errno in + evhttp_connection_fail_ (7afbd60) + o preserve errno in evhttp_connection_fail_ for inspection by the + callback (36d0ee5 Patrick Pelletier) + +BUGFIXES: + o Correctly handle running on a system where accept4 doesn't work. (9fbfe9b) + o Avoid double-free on error in evbuffer_add_file. Found by + coverity. (6a81b1f) + o Fix another possible uninitialized read in dns regression tests. Found + by coverity. (13525c5) + o Add checks for functions in test-ratelim.c; found by Coverity (aa501e1) + o Avoid memory leak in test_event_calloc unit test; found by coverity + (92817a1) + o Fix a shadowed variable in addfile_test_readcb; found by coverity + (225344c) + o Check return value when using LEV_OPT_DEFERRED_ACCEPT. Found by + coverity (6487f63) + o Prevent reference leak of bufferevent if getaddrinfo fails. (b757786 + Joachim Bauch) + o Make event_base_getnpriorities work with old "implicit base" code + (c46cb9c) + o Simplify and correct evutil_open_closeonexec_ (0de587f) + o Fix event_dlist definition when sys/queue not included (81b6209 + Derrick Pallas) + + + +Changes in version 2.1.1-alpha (4 Apr 2012) + + Libevent 2.1.1-alpha includes a number of new features and performance + improvements. The log below tries to organize them by rough area of + effect. It omits some commits which were pure bugfixes on other commits + listed below. For more detail, see the git changelogs. For more + insight, see the "whatsnew-2.1.txt" document included in the Libevent + 2.1.1-alpha distribution. + + Performance: Core + o Replace several TAILQ users with LIST. LIST can be a little faster than + TAILQ for cases where we don't need queue-like behavior. (f9db33d, + 6494772, d313c29, 974d004) + o Disabled code to optimize the case where we reinsert an existing + timeout (e47042f, 09cbc3d) + o Remove a needless base-notify when rescheduling the first timeout (77a96fd) + o Save a needless comparison when removing/adjusting timeouts (dd5189b) + o Possible optimization: split event_queue_insert/remove into + separate functions. needs testing (efc4dc5) + o Make event_count maintenance branchless at the expense of an + extra shift. Needs benchmarking (d1cee3b) + o In the 2.1 branch, let's try out lazy gettimeofday/clock_gettime + comparison (2a83ecc) + o Optimization in event_process_active(): ignore maxcb & endtime + for highest priority events. (a9866aa Alexander Drozdov) + o Bypass event_add when using event_base_once() for a 0-sec timeout (35c5c95) + o Remove the eventqueue list and the ev_next pointers. (604569b 066775e) + + Performance: Evbuffers + o Roughly 20% speed increase when line-draining a buffer using + EVBUFFER_EOL_CRLF (5dde0f0 Mina Naguib) + o Try to squeeze a little more speed out of EVBUFFER_EOL_CRLF (7b9d139) + o Fix a bug in the improved EOL_CRLF code (d927965) + o Remove a needless branch in evbuffer_drain() (d19a326) + + Performance: Linux + o Infrastructure for using faster/fewer syscalls when creating + sockets (a1c042b) + o Minimize syscalls during socket creation in listener.c (7e9e289) + o Use a wrapper function to create the notification + pipe/socketpair/eventfd (ca76cd9) + o Use pipes for telling signals to main thread when possible (a35f396) + o Save syscalls when constructing listener sockets for evhttp (af6c9d8) + o Save some syscalls when creating evdns sockets (713e570) + o Save some syscalls when constructing a socket for a bufferevent (33fca62) + o Prefer epoll_create1 on Linuxen that have it (bac906c) + + Performance: Epoll backend + o Use current event set rather than current pending change when + deciding whether to no-op a del (04ba27e Mike Smellie) + o Replace big chain of if/thens in epoll.c with a table lookup (8c83eb6) + o Clean up error handling in epoll_apply_one_change() a little (2d55a19) + + Performance: Evport backend + o evport: use evmap_io to track fdinfo status. Should save time and + RAM. (4687ce4) + o evport: Remove a linear search over recent events when + reactivating them (0f77efe) + o evport: Use portev_user to remember fdinfo struct (276ec0e) + o evport: don't scan more events in ed_pending than needed (849a5cf) + o evport: Remove artificial low limit on max events per getn call (c04d927) + o Reenable main/many_events_slow_add for evport in 2.1 (e903db3) + + Performance: Windows + o Use GetSystemTimeAsFileTime to implement gettimeofday on + win32. It's faster and more accurate than our old + approach. (b8b8aa5) + + New functions and features: debugging + o Add event_enable_debug_logging() to control use of debug logs (e30a82f) + + New functions and features: core + o Add event_config function to limit time/callbacks between calls + to dispatch (fd4de1e, 9fa56bd, a37a0c0, 3c63edd) + o New EVLOOP_NO_EXIT_ON_EMPTY option to keep looping even when no + events are pending (084e68f) + o Add event_base_get_npriorities() function. (ee3a4ee Alexander Drozdov) + o Make evbase_priority_init() and evbase_get_npriorities() + threadsafe (3c55b5e) + o New event_base_update_cache_time() to set cached_tv to current + time (212533e Abel Mathew) + o Add event_self_cbarg() to be used in conjunction with + event_new(). (ed36e6a Ross Lagerwall, fa931bb, 09a1906, 1338e6c, + 33e43ef) + o Add a new libevent_global_shutdown() to free all globals before + exiting. (041ca00 Mark Ellzey, f98c158, 15296d0, 55e991b) + o Use getifaddrs to detect our interfaces if possible (7085a45) + o Add event_base_get_running_event() to get the event* whose cb we + are in (c5732fd, 13dad99) + + New functions and features: building + o Implement --enable-gcc-hardening configure option (7550267 Sebastian Hahn) + + New functions and features: evbuffers + o Add evbuffer_add_file_segment() so one fd can be used efficiently + in more than one evbuffer_add_file at a time (e72afae, c2d9884, + 3f405d2, 0aad014) + o Fix windows file segment mappings (8254de7) + o Allow evbuffer_ptr_set to yield a point just after the end of the + buffer. (e6fe1da) + o Allow evbuffer_ptr to point to position 0 in an empty evbuffer + (7aeb2fd Nir Soffer) + o Set the special "not found" evbuffer_ptr consistently. (e3e97ae Nir Soffer) + o support adding buffers to other buffers non-destructively + (9d7368a Joachim Bauch) + o prevent nested multicast references, reworked locking (26041a8 + Joachim Bauch) + o New EVBUFFER_EOL_NUL to read NUL-terminated strings from an + evbuffer (d7a8b36 Andrea Montefusco, 54142c9) + o Make evbuffer_file_segment_types adaptable (c6bbbf1) + o Added evbuffer_add_iovec and unit tests. (aaec5ac Mark Ellzey, 27b5398) + o Add evbuffer_copyout_from to copy data from the middle of a + buffer (27e2225) + + New functions and features: bufferevents + o Allow users to set allow_dirty_shutdown (099d27d Catalin Patulea) + o Tweak allow_dirty_shutdown documentation (a44cd2b) + o Fix two issues in the allow_dirty_shutdown code. (f3b89de) + o Add a bufferevent_getcb() to find a bufferevent's current + callbacks (a650394) + o bufferevent: Add functions to set/get max_single_read/write + values. (998c813 Alexander Drozdov) + o bev_ssl: Be more specific in event callbacks. evhttp in particular gets + confused without at least one of BEV_EVENT_{READING|WRITING}. (f7eb69a + Catalin Patulea) + + New functions and features: evconnlisteners + o Support TCP_DEFER_ACCEPT sockopts for listeners (5880e4a Mark Ellzey, + a270728) + o Add another caveat to the TCP_DEFER_ACCEPT documentation (a270728) + o Allow evconnlistener to be created in disabled state. (9593a33 + Alexander Drozdov) + o The LEV_OPT_CLOSE_ON_EXEC flag now applies to accepted listener + sockets too (4970329) + + Evhttp: + o Add new evhttp_{connection_}set_timeout_tv() functions to set + finger-grained http timeouts (6350e6c Constantine Verutin) + o Performance tweak to evhttp_parse_request_line. (aee1a97 Mark Ellzey) + o Add missing break to evhttp_parse_request_line (0fcc536) + o Add evhttp callback for bufferevent creation; this lets evhttp + support SSL. (8d3a850) + o Remove calls to deprecated bufferevent functions from evhttp.c (4d63758) + o evhttp: Add evhttp_foreach_bound_socket. (a2c48e3 Samy Al Bahra) + + Build improvements: + o Add AC_USE_SYSTEM_EXTENSIONS to configure.in. Requires follow on + patches for correctness and robustness. (1fa7dbe Kevin Bowling) + o Filter '# define' statements from autoconf and generate + event-private.h (321b558 Kevin Bowling) + o Remove internal usage of _GNU_SOURCE (3b26541 Kevin Bowling) + o Eliminate a couple more manual internal _GNU_SOURCE defines (c51ef93 + Kevin Bowling) + o Add AC_GNU_SOURCE to the fallback case. (ea8fa4c Kevin Bowling) + o Use a Configuration Header Template for evconfig-private.h (868f888 + Kevin Bowling) + o Fix a comment warning and add evconfig-private.h to .gitignore + (f6d66bc Kevin Bowling) + o Include evconfig-private.h in internal files for great good. (0915ca0 + Kevin Bowling) + o Backport libevent to vanilla Autoconf 2.59 (as used in RHEL5) + (ad03952 Kevin Bowling) + o Prefer the ./configure evconfig-private.h in MinGW, just in + case. (f964b72 Kevin Bowling) + o Shell hack for weird mkdir -p commands (fd7b5a8 Kevin Bowling) + o Add evconfig-private to remaining files (ded0a09 Kevin Bowling) + o Allow use of --enable-silent-rules for quieter compilation with + automake 1.11 (f1f8514 Dave Hart) + o Use "_WIN32", not WIN32: it's standard and we don't need to fake it + (9f560b) + o In configure, test for _WIN32 not WIN32. (85078b1 Peter Rosin) + o Do not define WIN32 in Makefile.nmake (d41f3ea Peter Rosin) + o Provide the autoconf m4 macros for the new OpenSSL via pkg-config + stuff. (674dc3d Harlan Stenn) + o Use pkg-config (if available) to handle OpenSSL. (1c63860 Harlan Stenn) + o We need AM_CPPFLAGS when compiling bufferevent_openssl.c (6d2613b + Harlan Stenn) + o Fix OSX build: $(OPENSSL_INCS) needs to be after + $(AM_CPPFLAGS). (46f1769 Zack Weinberg) + o Make gcc warnings on by default, and --enable-gcc-warnings only add + -Werror (d46517e Sebastian Hahn) + o Split up extra-long AC_CHECK_FUNCS/HEADERS lines in configure.in (88a30ad) + o Move libevent 1.x headers to include/, to put all public headers in + one place. (bbea8d6) + o Put #ifdef around some files to support alternate build + systems. (76d4c92 Ross Lagerwall) + o Also make win32select.c conditional for IDE users (bf2c5a7) + + Debugging: + o Add a magic number to debug_locks to better catch lock-coding + errors. (b4a29c0 Dave Hart) + o munge the debug_lock signature before freeing it: it might help us + catch use-after-free (f28084d) + o Added --enable-event-debugging in configure (bc7b4e4, a9c2c9a Mark Ellzey) + o Debug addition for printing usec on TIMEOUT debugging. (ac43ce0 Mark Ellzey) + o Added usec debug in another area for debug (3baab0d Mark Ellzey) + o added timeout debug logs to include event ptr. (4b7d298 Mark Ellzey) + o more event dbg updates (6727543 Mark Ellzey) + o Clarify event_enable_debug_logging a little (6207826) + o Make --enable-verbose-debug option match its help text (10c3450) + o Add argument checks to some memory functions in `event.c'. (c8953d1 + Mansour Moufid) + + Testing: + o More abstraction in test.sh (cd74c4e) + o Add failing test for evbuffer_search_range. (8e26154 Nir Soffer) + o Tweaks to return types with end-of-buf ptrs (9ab8ab8) + o Add an (internal) usleep function for use by unit tests (f25d9d3) + o Synchronize with upstream tinytest (6c81be7) + o Make test-changelist faster (7622d26) + o Reduce the timeout in the main/fork test. (ab14f7c) + o New evhttp function to adjust initial retry timeout (350a3c4) + o Make regression tests run over 3x faster. (67a1763) + o Use test_timeval_diff_eq more consistently (b77b43f) + o Allow more slop in deferred_cb_skew test; freebsd needs it (b9f7e5f) + o When including an -internal.h header outside the main tree, do so + early (95e2455) + o Add a new test: test-fdleak which tests for fd leaks by creating many + sockets. (2ef9278 Ross Lagerwall, f7af194, 1c4288f, etc) + o Add a unit test for event_base_dump_events() (7afe48a, 8d08cce) + o Test more bufferevent_ratelim features (c24f91a) + + Documentation: + o Improve evbuffer_ptr documentation (261ba63) + o added comments to describe refcounting of multicast chains (ba24f61 + Joachim Bauch) + o Add doxygen for event_base_dump_events (cad5753) + + OSX: + o Use "unlimited select" on OSX so that we can have more than + FD_SETSIZE fds (1fb5cc6) + + KQueue: + o Use SIG_IGN instead of a do-nothing handler for signal events with + kqueue (148458e Zack Weinberg) + + evprc: + o event_rpcgen.py now prints status information to stdout and errors to + stderr. (ffb0ba0 Ross Lagerwall) + + Code improvement and refactoring: + o Make event_reinit() more robust and maintainable (272033e) + o Restore fast-path event_reinit() for slower backends (2c4b5de) + o Check changelist as part of checking representational integrity (39b3f38) + o Fix a compile warning in event_reinit (e4a56ed Sebastian Hahn) + o Refactor the functions that run over every event. (c89b4e6) + o Remove the last vestiges of _EVENT_USE_EVENTLIST (a3cec90) + o Make event-config.h depend on Makefile.am (2958a5c) + + Build fixes: + o Don't do clang version detection when disabling some flags (083296b + Sebastian Hahn) + + C standards conformance: + o Check for NULL return on win32 mm_calloc, and set ENOMEM. (af7ba69) + o Convert event-config.h macros to avoid reserved identifiers (68120d9) + o Generate event-config.h using the correct macros. (f82c57e) + o Convert include-guard macro convention to avoid reserved identifiers + (3f8c7cd) + o Make event_rpcgen.py output conform to identifier conventions (372bff1) + o Stop referring to an obsolete include guard in bench_http.h (5c0f7e0) + o Make the generated event-config.h use correct include guards (639383a) + o Fix all identifiers with names beginning with underscore. (cb9da0b) + o Make event_rpcgen.py output conform to identifier conventions, more + (bcefd24) + o Fix some problems introduced by automated identifier cleanup script + (c963534) + o Have all visible internal function names end with an underscore. (8ac3c4c) + o Apply the naming convention to our EVUTIL_IS* functions (c7848fa) + o Clean up lingering _identifiers. (946b584) + o Fix doxygen to use new macro conventions (da455e9) + + Bugfixes: + o Do not use system EAI/AI values if we are not using the system + getaddrinfo. (7bcac07) + + Sample Code: + o Fix up sample/event-test.c to use newer interfaces and make it + actually work. (19bab4f Ross Lagerwall) + o On Unix, remove event.fifo left by sample/event-test.c. (c0dacd2 Ross + Lagerwall) + o Rename event-test.c to event-read-fifo.c. (a5b370a Ross Lagerwall) + o event-read-fifo: Use EV_PERSIST appropriately (24dab0b) + + + + diff -Nru mysql-5.7-5.7.25/extra/libevent/ChangeLog-1.4 mysql-5.7-5.7.26/extra/libevent/ChangeLog-1.4 --- mysql-5.7-5.7.25/extra/libevent/ChangeLog-1.4 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/ChangeLog-1.4 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,231 @@ +Changes in 1.4.14b-stable + o Set the VERSION_INFO correctly for 1.4.14 + +Changes in 1.4.14-stable + o Add a .gitignore file for the 1.4 branch. (d014edb) + o Backport evbuffer_readln(). (b04cc60 Nicholas Marriott) + o Make the evbuffer_readln backport follow the current API (c545485) + o Valgrind fix: Clear struct kevent before checking for OSX bug. (5713d5d William Ahern) + o Fix a crash when reading badly formatted resolve.conf (5b10d00 Yasuoka Masahiko) + o Fix memory-leak of signal handler array with kqueue. [backport] (01f3775) + o Update sample/signal-test.c to use newer APIs and not leak. (891765c Evan Jones) + o Correct all versions in 1.4 branch (ac0d213) + o Make evutil_make_socket_nonblocking() leave any other flags alone. (81c26ba Jardel Weyrich) + o Adjusted fcntl() retval comparison on evutil_make_socket_nonblocking(). (5f2e250 Jardel Weyrich) + o Correct a debug message in evhttp_parse_request_line (35df59e) + o Merge branch 'readln-backport' into patches-1.4 (8771d5b) + o Do not send an HTTP error when we've already closed or responded. (4fd2dd9 Pavel Plesov) + o Re-add event_siglcb; some old code _was_ still using it. :( (bd03d06) + o Make Libevent 1.4 build on win32 with Unicode enabled. (bce58d6 Brodie Thiesfield) + o Distribute nmake makefile for 1.4 (20d706d) + o do not fail while sending on http connections the client closed. (5c8b446) + o make evhttp_send() safe against terminated connections, too (01ea0c5) + o Fix a free(NULL) in min_heap.h (2458934) + o Fix memory leak when setting up priorities; reported by Alexander Drozdov (cb1a722) + o Clean up properly when adding a signal handler fails. (ae6ece0 Gilad Benjamini) + o Do not abort HTTP requests missing a reason string. (29d7b32 Pierre Phaneuf) + o Fix compile warning in http.c (906d573) + o Define _REENTRANT as needed on Solaris, elsewhere (6cbea13) + + +Changes in 1.4.13-stable: + o If the kernel tells us that there are a negative number of bytes to read from a socket, do not believe it. Fixes bug 2841177; found by Alexander Pronchenkov. + o Do not allocate the maximum event queue and fd array for the epoll backend at startup. Instead, start out accepting 32 events at a time, and double the queue's size when it seems that the OS is generating events faster than we're requesting them. Saves up to 512K per epoll-based event_base. Resolves bug 2839240. + o Fix compilation on Android, which forgot to define fd_mask in its sys/select.h + o Do not drop data from evbuffer when out of memory; reported by Jacek Masiulaniec + o Rename our replacement compat/sys/_time.h header to avoid build a conflict on HPUX; reported by Kathryn Hogg. + o Build kqueue.c correctly on GNU/kFreeBSD platforms. Patch pulled upstream from Debian. + o Fix a problem with excessive memory allocation when using multiple event priorities. + o When running set[ug]id, don't check the environment. Based on a patch from OpenBSD. + + +Changes in 1.4.12-stable: + o Try to contain degree of failure when running on a win32 version so heavily firewalled that we can't fake a socketpair. + o Fix an obscure timing-dependent, allocator-dependent crash in the evdns code. + o Use __VA_ARGS__ syntax for varargs macros in event_rpcgen when compiler is not GCC. + o Activate fd events in a pseudorandom order with O(N) backends, so that we don't systematically favor low fds (select) or earlier-added fds (poll, win32). + o Fix another pair of fencepost bugs in epoll.c. [Patch from Adam Langley.] + o Do not break evdns connections to nameservers when our IP changes. + o Set truncated flag correctly in evdns server replies. + o Disable strict aliasing with GCC: our code is not compliant with it. + +Changes in 1.4.11-stable: + o Fix a bug when removing a timeout from the heap. [Patch from Marko Kreen] + o Remove the limit on size of HTTP headers by removing static buffers. + o Fix a nasty dangling pointer bug in epoll.c that could occur after epoll_recalc(). [Patch from Kevin Springborn] + o Distribute Win32-Code/event-config.h, not ./event-config.h + +Changes in 1.4.10-stable: + o clean up buffered http connection data on reset; reported by Brian O'Kelley + o bug fix and potential race condition in signal handling; from Alexander Drozdov + o rename the Solaris event ports backend to evport + o support compilation on Haiku + o fix signal processing when a signal callback delivers a signal; from Alexander Drozdov + o const-ify some arguments to evdns functions. + o off-by-one error in epoll_recalc; reported by Victor Goya + o include Doxyfile in tar ball; from Jeff Garzik + o correctly parse queries with encoded \r, \n or + characters + +Changes in 1.4.9-stable: + o event_add would not return error for some backends; from Dean McNamee + o Clear the timer cache on entering the event loop; reported by Victor Chang + o Only bind the socket on connect when a local address has been provided; reported by Alejo Sanchez + o Allow setting of local port for evhttp connections to support millions of connections from a single system; from Richard Jones. + o Clear the timer cache when leaving the event loop; reported by Robin Haberkorn + o Fix a typo in setting the global event base; reported by lance. + o Fix a memory leak when reading multi-line headers + o Fix a memory leak by not running explicit close detection for server connections + +Changes in 1.4.8-stable: + o Match the query in DNS replies to the query in the request; from Vsevolod Stakhov. + o Fix a merge problem in which name_from_addr returned pointers to the stack; found by Jiang Hong. + o Do not remove Accept-Encoding header + +Changes in 1.4.7-stable: + o Fix a bug where headers arriving in multiple packets were not parsed; fix from Jiang Hong; test by me. + +Changes in 1.4.6-stable: + o evutil.h now includes directly + o switch all uses of [v]snprintf over to evutil + o Correct handling of trailing headers in chunked replies; from Scott Lamb. + o Support multi-line HTTP headers; based on a patch from Moshe Litvin + o Reject negative Content-Length headers; anonymous bug report + o Detect CLOCK_MONOTONIC at runtime for evdns; anonymous bug report + o Fix a bug where deleting signals with the kqueue backend would cause subsequent adds to fail + o Support multiple events listening on the same signal; make signals regular events that go on the same event queue; problem report by Alexander Drozdov. + o Deal with evbuffer_read() returning -1 on EINTR|EAGAIN; from Adam Langley. + o Fix a bug in which the DNS server would incorrectly set the type of a cname reply to a. + o Fix a bug where setting the timeout on a bufferevent would take not effect if the event was already pending. + o Fix a memory leak when using signals for some event bases; reported by Alexander Drozdov. + o Add libevent.vcproj file to distribution to help with Windows build. + o Fix a problem with epoll() and reinit; problem report by Alexander Drozdov. + o Fix off-by-one errors in devpoll; from Ian Bell + o Make event_add not change any state if it fails; reported by Ian Bell. + o Do not warn on accept when errno is either EAGAIN or EINTR + +Changes in 1.4.5-stable: + o Fix connection keep-alive behavior for HTTP/1.0 + o Fix use of freed memory in event_reinit; pointed out by Peter Postma + o Constify struct timeval * where possible; pointed out by Forest Wilkinson + o allow min_heap_erase to be called on removed members; from liusifan. + o Rename INPUT and OUTPUT to EVRPC_INPUT and EVRPC_OUTPUT. Retain INPUT/OUTPUT aliases on on-win32 platforms for backwards compatibility. + o Do not use SO_REUSEADDR when connecting + o Fix Windows build + o Fix a bug in event_rpcgen when generated fixed-sized entries + +Changes in 1.4.4-stable: + o Correct the documentation on buffer printf functions. + o Don't warn on unimplemented epoll_create(): this isn't a problem, just a reason to fall back to poll or select. + o Correctly handle timeouts larger than 35 minutes on Linux with epoll.c. This is probably a kernel defect, but we'll have to support old kernels anyway even if it gets fixed. + o Fix a potential stack corruption bug in tagging on 64-bit CPUs. + o expose bufferevent_setwatermark via header files and fix high watermark on read + o fix a bug in bufferevent read water marks and add a test for them + o introduce bufferevent_setcb and bufferevent_setfd to allow better manipulation of bufferevents + o use libevent's internal timercmp on all platforms, to avoid bugs on old platforms where timercmp(a,b,<=) is buggy. + o reduce system calls for getting current time by caching it. + o fix evhttp_bind_socket() so that multiple sockets can be bound by the same http server. + o Build test directory correctly with CPPFLAGS set. + o Fix build under Visual C++ 2005. + o Expose evhttp_accept_socket() API. + o Merge windows gettimeofday() replacement into a new evutil_gettimeofday() function. + o Fix autoconf script behavior on IRIX. + o Make sure winsock2.h include always comes before windows.h include. + +Changes in 1.4.3-stable: + o include Content-Length in reply for HTTP/1.0 requests with keep-alive + o Patch from Tani Hosokawa: make some functions in http.c threadsafe. + o Do not free the kqop file descriptor in other processes, also allow it to be 0; from Andrei Nigmatulin + o make event_rpcgen.py generate code include event-config.h; reported by Sam Banks. + o make event methods static so that they are not exported; from Andrei Nigmatulin + o make RPC replies use application/octet-stream as mime type + o do not delete uninitialized timeout event in evdns + +Changes in 1.4.2-rc: + o remove pending timeouts on event_base_free() + o also check EAGAIN for Solaris' event ports; from W.C.A. Wijngaards + o devpoll and evport need reinit; tested by W.C.A Wijngaards + o event_base_get_method; from Springande Ulv + o Send CRLF after each chunk in HTTP output, for compliance with RFC2626. Patch from "propanbutan". Fixes bug 1894184. + o Add a int64_t parsing function, with unit tests, so we can apply Scott Lamb's fix to allow large HTTP values. + o Use a 64-bit field to hold HTTP content-lengths. Patch from Scott Lamb. + o Allow regression code to build even without Python installed + o remove NDEBUG ifdefs from evdns.c + o update documentation of event_loop and event_base_loop; from Tani Hosokawa. + o detect integer types properly on platforms without stdint.h + o Remove "AM_MAINTAINER_MODE" declaration in configure.in: now makefiles and configure should get re-generated automatically when Makefile.am or configure.in chanes. + o do not insert event into list when evsel->add fails + +Changes in 1.4.1-beta: + o free minheap on event_base_free(); from Christopher Layne + o debug cleanups in signal.c; from Christopher Layne + o provide event_base_new() that does not set the current_base global + o bufferevent_write now uses a const source argument; report from Charles Kerr + o better documentation for event_base_loopexit; from Scott Lamb. + o Make kqueue have the same behavior as other backends when a signal is caught between event_add() and event_loop(). Previously, it would catch and ignore such signals. + o Make kqueue restore signal handlers correctly when event_del() is called. + o provide event_reinit() to reintialize an event_base after fork + o small improvements to evhttp documentation + o always generate Date and Content-Length headers for HTTP/1.1 replies + o set the correct event base for HTTP close events + o New function, event_{base_}loopbreak. Like event_loopexit, it makes an event loop stop executing and return. Unlike event_loopexit, it keeps subsequent pending events from getting executed. Patch from Scott Lamb + o Removed obsoleted recalc code + o pull setters/getters out of RPC structures into a base class to which we just need to store a pointer; this reduces the memory footprint of these structures. + o fix a bug with event_rpcgen for integers + o move EV_PERSIST handling out of the event backends + o support for 32-bit tag numbers in rpc structures; this is wire compatible, but changes the API slightly. + o prefix {encode,decode}_tag functions with evtag to avoid collisions + o Correctly handle DNS replies with no answers set (Fixes bug 1846282) + o The configure script now takes an --enable-gcc-warnigns option that turns on many optional gcc warnings. (Nick has been building with these for a while, but they might be useful to other developers.) + o When building with GCC, use the "format" attribute to verify type correctness of calls to printf-like functions. + o removed linger from http server socket; reported by Ilya Martynov + o allow \r or \n individually to separate HTTP headers instead of the standard "\r\n"; from Charles Kerr. + o demote most http warnings to debug messages + o Fix Solaris compilation; from Magne Mahre + o Add a "Date" header to HTTP responses, as required by HTTP 1.1. + o Support specifying the local address of an evhttp_connection using set_local_address + o Fix a memory leak in which failed HTTP connections would not free the request object + o Make adding of array members in event_rpcgen more efficient, but doubling memory allocation + o Fix a memory leak in the DNS server + o Fix compilation when DNS_USE_OPENSSL_FOR_ID is enabled + o Fix buffer size and string generation in evdns_resolve_reverse_ipv6(). + o Respond to nonstandard DNS queries with "NOTIMPL" rather than by ignoring them. + o In DNS responses, the CD flag should be preserved, not the TC flag. + o Fix http.c to compile properly with USE_DEBUG; from Christopher Layne + o Handle NULL timeouts correctly on Solaris; from Trond Norbye + o Recalculate pending events properly when reallocating event array on Solaris; from Trond Norbye + o Add Doxygen documentation to header files; from Mark Heily + o Add a evdns_set_transaction_id_fn() function to override the default + transaction ID generation code. + o Add an evutil module (with header evutil.h) to implement our standard cross-platform hacks, on the theory that somebody else would like to use them too. + o Fix signals implementation on windows. + o Fix http module on windows to close sockets properly. + o Make autogen.sh script run correctly on systems where /bin/sh isn't bash. (Patch from Trond Norbye, rewritten by Hagne Mahre and then Hannah Schroeter.) + o Skip calling gettime() in timeout_process if we are not in fact waiting for any events. (Patch from Trond Norbye) + o Make test subdirectory compile under mingw. + o Fix win32 buffer.c behavior so that it is correct for sockets (which do not like ReadFile and WriteFile). + o Make the test.sh script run unit tests for the evpoll method. + o Make the entire evdns.h header enclosed in "extern C" as appropriate. + o Fix implementation of strsep on platforms that lack it + o Fix implementation of getaddrinfo on platforms that lack it; mainly, this will make Windows http.c work better. Original patch by Lubomir Marinov. + o Fix evport implementation: port_disassociate called on unassociated events resulting in bogus errors; more efficient memory management; from Trond Norbye and Prakash Sangappa + o support for hooks on rpc input and output; can be used to implement rpc independent processing such as compression or authentication. + o use a min heap instead of a red-black tree for timeouts; as a result finding the min is a O(1) operation now; from Maxim Yegorushkin + o associate an event base with an rpc pool + o added two additional libraries: libevent_core and libevent_extra in addition to the regular libevent. libevent_core contains only the event core whereas libevent_extra contains dns, http and rpc support + o Begin using libtool's library versioning support correctly. If we don't mess up, this will more or less guarantee binaries linked against old versions of libevent continue working when we make changes to libevent that do not break backward compatibility. + o Fix evhttp.h compilation when TAILQ_ENTRY is not defined. + o Small code cleanups in epoll_dispatch(). + o Increase the maximum number of addresses read from a packet in evdns to 32. + o Remove support for the rtsig method: it hasn't compiled for a while, and nobody seems to miss it very much. Let us know if there's a good reason to put it back in. + o Rename the "class" field in evdns_server_request to dns_question_class, so that it won't break compilation under C++. Use a macro so that old code won't break. Mark the macro as deprecated. + o Fix DNS unit tests so that having a DNS server with broken IPv6 support is no longer cause for aborting the unit tests. + o Make event_base_free() succeed even if there are pending non-internal events on a base. This may still leak memory and fds, but at least it no longer crashes. + o Post-process the config.h file into a new, installed event-config.h file that we can install, and whose macros will be safe to include in header files. + o Remove the long-deprecated acconfig.h file. + o Do not require #include before #include . + o Add new evutil_timer* functions to wrap (or replace) the regular timeval manipulation functions. + o Fix many build issues when using the Microsoft C compiler. + o Remove a bash-ism in autogen.sh + o When calling event_del on a signal, restore the signal handler's previous value rather than setting it to SIG_DFL. Patch from Christopher Layne. + o Make the logic for active events work better with internal events; patch from Christopher Layne. + o We do not need to specially remove a timeout before calling event_del; patch from Christopher Layne. diff -Nru mysql-5.7-5.7.25/extra/libevent/ChangeLog-2.0 mysql-5.7-5.7.26/extra/libevent/ChangeLog-2.0 --- mysql-5.7-5.7.25/extra/libevent/ChangeLog-2.0 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/ChangeLog-2.0 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,1280 @@ +Changes in version 2.0.21-stable (18 Nov 2012) +BUGFIXES: + o ssl: Don't discard SSL read event when timeout and read come close together (576b29f) + o ssl: Stop looping in "consider_reading" if reading is suspended. (f719b8a Joachim Bauch) + o ssl: No need to reserve space if reading is suspended. (1acf2eb Joachim Bauch) + o dns: Avoid a memory-leak on OOM in evdns. (73e85dd, f2bff75 George Danchev) + o build: Use python2 rather than python (0eb0109 Ross Lagerwall) + o build: Compile without warnings on mingw64 (94866c2) + o build: Fix compilation on mingw64 with -DUSE_DEBUG (62bd2c4) + o build: Make rpcgen_wrapper.sh work on systems without a "python2" binary (f3009e4) + o iocp: Close IOCP listener socket on free when LEV_OPT_CLOSE_ON_FREE is set (cb853ea Juan Pablo Fernandez) + o core: Avoid crash when event_pending() called with no event_base set on event (e3cccf3) + o misc: remove stray 'x' so print_err will compile when uncommented (ac35650 Patrick Pelletier) + o tests: Fix renegotiation test to work around openssl 1.0.1 bug (c2f3086) + o tests: Warn when openssl version in unit test mismatches compiled version. (ac009f9) + + +Changes in version 2.0.20-stable (23 Aug 2012) +BUGFIXES: + o core: Make event_pending() threadsafe. (be7a95c Simon Liu) + o win32: avoid crash when waiting forever on zero fds. (160e58b) + o evhttp: Fix a memory leak on error in evhttp_uriencode (11c8b31) + o evbuffer: Avoid possible needless call to writev. Found by coverity. (6a4ec5c) + o evdns: memset sockaddr_in before using it. Found by coverity. (a1a0e67) + o evhttp: Check more setsockopt return values when binding sockets. Found by coverity (a0912e3) + o evdns: Avoid segfault on weird timeout during name lookup. (dc32077 Greg Hazel) + o bufferevent_ssl: Correctly invoke callbacks when a SSL bufferevent reads some and then blocks. (606ac43) + + +PORTABILITY FIXES: + o check for arc4random_buf at runtime, on OS X (bff5f94 Greg Hazel) + o Correctly check for arc4random_buf (fcec3e8 Sebastian Hahn) + o Add explicit AC_PROG_SED to configure.in so all autoconfs will expose $(SED) (ca80ea6) + +BUILD FIXES: + o Add GCC annotations so that the vsprintf functions get checked properly (117e327) + o Fix an unused variable warning on *BSD. (c0720c1) + +UNIT TEST FIXES: + o Fix a couple of memory leaks (found with Valgrind). (3b2529a Ross Lagerwall) + o Remove deadcode in http regression tests. Found by coverity. (5553346) + o Fix possible uninitialized read in dns regression tests. Found by coverity. (2259777) + o Set umask before calling mkstemp in unit tests. Found by coverity (f1ce15d) + o Fix various check-after-dereference issues in unit tests: found by coverity (4f3732d) + o Fix resource leaks in the unit tests; found by coverity (270f279) + o Add some missing null checks to unit tests; found by coverity (f021c3d) + o Avoid more crashes/bad calls in unit tests; found by coverity (3cde5bf) + o Remove unused variable; spotted by coverity (6355b2a) + o Add checks to various return values in unit tests. Found by coverity (b9e7329) + o Move assignment outside tt_assert in ssl unit tests. Appeases coverity. (a2006c0) + + + +Changes in version 2.0.19-stable (3 May 2012) +BUGFIXES (CORE): + o Refactor event_persist_closure: raise and extract some common logic (bec22b4) + o If time has jumped so we'd reschedule a periodic event in the past, schedule it for the future instead (dfd808c) + o If a higher-priority event becomes active, don't continue running events of the current priority. (2bfda40) + +BUGFIXES (SSL): + o Fixed potential double-readcb execution with openssl bufferevents. (4e62cd1 Mark Ellzey) + +BUGFIXES (DNS): + o Cancel a probe request when the server is freed, and ignore cancelled probe callbacks (94d2336 Greg Hazel) + o Remove redundant DNS_ERR_CANCEL check, move comment (46b8060 Greg Hazel) + o When retransmitting a timed-out DNS request, pick a fresh nameserver. (3d9e52a) + +DOCUMENTATION FIXES: + o Fix a typo in the bufferevent documentation (98e9119) + o Add missing ) to changelog; spotted by rransom (4c7ee6b) + o Fix the website URL in the readme (f775521) + +COMPILATION FIXES: + o Fix a compilation error with MSVC 2005 due to use of mode_t (336dcae) + o Configure with gcc older than 2.95 (4a6fd43 Sebastian Hahn) + o Generate event-config.h with a single sed script (30b6f88 Zack Weinberg) + +FORWARD-COMPATIBILITY: + o Backport: provide EVENT_LOG_* names, and deprecate _EVENT_LOG_* (d1a03b2) + +TESTING/DEBUGGING SUPPORT: + o dns-example.c can now take a resolv.conf file on the commandline (6610fa5) + o Make some evdns.c debug logs more verbose (d873d67) + o Work-around a stupid gcov-breaking bug in OSX 10.6 (b3887cd) + + + +Changes in version 2.0.18-stable (22 Mar 2012) +BUGFIXES (core): + o Make uses of open() close-on-exec safe by introducing an internal evutil_open_closeonexec. (d2b5f72 Ross Lagerwall, 03dce42) + +BUGFIXES (kqueue): + o Properly zero the kevent in kq_setup_kevent() (c2c7b39 Sebastian Hahn) + +BUILD FIXES: + o Added OPENSSL_LDFLAGS env variable which is appended to SSL checks. (9278196 Mark Ellzey) + o Changed OPENSSL_LDFLAGS to OPENSSL_LIBADD (2d67b63 Mark Ellzey) + o Don't do clang version detection when disabling some flags (083296b Sebastian Hahn) + +BUGFIXES (dns): + o Stop crashing in evdns when nameserver probes give a weird error (bec5068) + + +Changes in version 2.0.17-stable (10 Feb 2012) + +BUGFIXES (core): + o Be absolutely sure to clear pncalls before leaving event_signal_closure (11f36a5) + o check for sysctl before we use it (358c745 Mike Frysinger) + o Remove bogus casts of socket to int before calling ev_callback (f032516) + o Make evconnlistener work around bug in older Linux when getting nmapped (ecfc720) + o Fix a list corruption bug when using event_reinit() with signals present (6e41cdc) + o Fix a fd leak in event_reinit() (3f18ad1) + o Do a memberwise comparison of threading function tables (c94a5f2 Nate R) + o Use C-style comments in C source files (for compatibility with compilers such as xlc on AIX). (d84d917 Greg Hewgill) + o Avoid crash when freeing event_iocp and using event_set_mem_functions (19715a6) + o In the kqueue backend, do not report EBADF as an EV_READ (5d7bfa1 Nicholas Marriott) + +BUGFIXES (evbuffer and bufferevents): + o Fix behavior of evbuffer_peek(buf,-1,NULL,NULL,0) (c986f23 Zack Weinberg) + o Loop on filtering SSL reads until we are blocked or exhausted. (5b4b812) + +BUGFIXES (evhttp): + o Force strict validation of HTTP version in response. (790f6b3 Catalin Patulea) + +BUGFIXES (evdns): + o evdns: fix a bug in circular-queue implementation (d6094b1) + +BUILD FIXES: + o Fix a silly compilation error with the sun compiler (1927776 Colin Watt) + o Suppress a gcc warning from ignoring fwrite return in http-sample.c (7206e8c) + +DOCUMENTATION FIXES: + o Slightly clarify evbuffer_peek documentation (7bbf6ca) + o Update copyright notices to 2012 (e49e289) + +NEW APIS: + o Backport evhttp_connection_get_bufferevent to Libevent 2.0 (da70fa7 Arno Bakker) + +TESTS AND TEST FIXES: + o Fix a race condition in the dns/bufferevent_connect_hostname test. (cba48c7) + o Add function to check referential integrity of an event_base (27737d5) + o Check event_base correctness at end of each unit test (3312b02) + o Workaround in the unit tests for an apparent epoll bug in Linux 3.2 (dab9187) + o Better workaround for Linux 3.2 edge-triggered epoll bug (9f9e259) + +Changes in version 2.0.16-stable (18 Nov 2011) +BUGFIXES (core): + o More detailed message in case of libevent self-debugging failure. (9e6a4ef Leonid Evdokimov) + o epoll: close fd on alloc fail at initialization (1aee718 Jamie Iles) + o Fix compile warning from saying event2/*.h inside a comment (447b0ba) + o Warn when unable to construct base because of failing make_base_notifiable (4e797f3) + o Don't try to make notifiable event_base when no threading fns are configured (e787413) + +BUGFIXES (evbuffer): + o unit test for remove_buffer bug (90bd620 Greg Hazel) + o Fix an evbuffer crash in evbuffer_remove_buffer() (c37069c) + +BUGFIXES (bufferevent_openssl): + o Refactor amount-to-read calculations in buffervent_ssl consider_reading() (a186e73 Mark Ellzey) + o Move SSL rate-limit enforcement into bytes_to_read() (96c562f) + o Avoid spinning on OpenSSL reads (2aa036f Mark Ellzey) + +BUGFIXES (dns) + o Empty DNS reply with OK status is another way to say NODATA. (21a08d6 Leonid Evdokimov) + +TESTING: + o Tests for 94fba5b and f72e8f6 (d58c15e Leonid Evdokimov) + o Test for commit aff6ba1 (f7841bf Leonid Evdokimov) + o Style and comment tweaks for dns/leak* tests (5e42202) + o improve test to remove at least one buffer from src (7eb52eb Greg Hazel) + +DOCUMENTATION: + o Add note about evhttp_send_reply_end to its doxygen (724bfb5) + o Update copyright dates to 2011. (3c824bd) + o Fix typo in whatsnew-2.0.txt (674bc6a Mansour Moufid) + o Improve win32 behavior of dns-sample.c code (a3f320e Gisle Vanem) + + + +Changes in version 2.0.15-stable (12 Oct 2011) +BUGFIXES (DNS): + o DNS: add ttl for negative answers using RFC 2308 idea. (f72e8f6 Leonid Evdokimov) + o Add DNS_ERR_NODATA error code to handle empty replies. (94fba5b Leonid Evdokimov) + +BUFGIXES (bufferevents and evbuffers): + o Make evbuffer callbacks get the right n_added value after evbuffer_add (1ef1f68 Alex) + o Prefer mmap to sendfile unless a DRAINS_TO_FD flag is set. Allows add_file to work with SSL. (0ba0af9) + +BUGFIXES (event loop): + o When a signal callback is activated to run multiple times, allow event_base_loopbreak to work even before they all have run. (4e8eb6a) + +DOCUMENTATION FIXES: + o Fix docstring in dns.h (2b6eae5 Leonid Evdokimov) + o refer to non-deprecated evdns functions in comments (ba5c27d Greg Hazel) + +BUILD AND TESTING FIXES: + o le-proxy and regress depend on openssl directly (9ae061a Sergey Avseyev) + o Use _SOURCES, not _sources, in sample/Makefile.am (7f82382) + o Fixed compiler warnings for unchecked read/write calls. (c3b62fd Mark Ellzey) + o Make write-checking fixes use tt_fail_perror (2b76847) + o Fix some "value never used" warnings with gcc 4.6.1 (39c0cf7) + + + +Changes in version 2.0.14-stable (31 Aug 2011) +BUGFIXES (bufferevents and evbuffers): + o Propagate errors on the underlying bufferevent to the user. (4a34394 Joachim Bauch) + o Ignore OpenSSL deprecation warnings on OS X (5d1b255 Sebastian Hahn) + o Fix handling of group rate limits under 64 bytes of burst (6d5440e) + o Solaris sendfile: correctly detect amount of data sent (643922e Michael Herf) + o Make rate limiting work with common_timeout logic (5b18f13) + o clear read watermark on underlying bufferevent when creating filtering bev to fix potentially failing fragmented ssl handshakes (54f7e61 Joachim Bauch) + +BUGFIXES (IOCP): + o IOCP: don't launch reads or writes on an unconnected socket (495c227) + o Make IOCP rate-limiting group support stricter and less surprising. (a98da7b) + o Have test-ratelim.c support IOCP (0ff2c5a) + o Make overlapped reads result in evbuffer callbacks getting invoked (6acfbdd) + o Correctly terminate IO on an async bufferevent on bufferevent_free (e6af35d) + +BUGFIXES (other): + o Fix evsig_dealloc memory leak with debugging turned on. (9b724b2 Leonid Evdokimov) + o Fix request_finished memory leak with debugging turned on. (aff6ba1 Leonid Evdokimov) + +BUILD AND TESTING FIXES: + o Allow OS-neutral builds for platforms where some versions have arc4random_buf (b442302 Mitchell Livingston) + o Try to fix 'make distcheck' errors when building out-of-tree (04656ea Dave Hart) + o Clean up some problems identified by Coverity. (7c11e51 Harlan Stenn) + + +Changes in version 2.0.13-stable (18 Jul 2011) +BUGFIXES + o Avoid race-condition when initializing global locks (b683cae) + o Fix bug in SSL bufferevents backed by a bev with a write high-watermarks (e050703 Joachim Bauch) + o Speed up invoke_callbacks on evbuffers when there are no callbacks (f87f568 Mark Ellzey) + o Avoid a segfault when all methods are disabled or broken (27ce38b) + o Fix incorrect results from evbuffer_search_eol(EOL_LF) (4461f1a) + o Add some missing checks for mm_calloc failures (89d5e09) + o Replace an assertion for event_base_free(NULL) with a check-and-warn (09fe97d) + o Report kqueue ebadf, epipe, and eperm as EV_READ events (1fd34ab) + o Check if the `evhttp_new_object' function in `http.c' returns NULL. (446cc7a Mansour Moufid) + o Use the correct printf args when formatting size_t (3203f88) + o Complain if the caller tries to change threading cbs after setting them (cb6ecee) + +DOCUMENTATION FIXES AND IMPROVEMENTS + o Revise the event/evbuffer/bufferevent doxygen for clarity and accuracy (2888fac) + o Update Doxyfile to produce more useful output (aea0555) + +TEST FIXES + o Fix up test_evutil_snprintf (caf695a) + o Fix tinytest invocation from windows shell (57def34 Ed Day) + +BUILD FIXES + o Use AM_CPPFLAGS in sample/Makefile.am, not AM_CFLAGS (4a5c82d) + o Fix select.c compilation on systems with no NFDBITS (49d1136) + o Fix a few warnings on OpenBSD (8ee9f9c Nicholas Marriott) + o Don't break when building tests from git without python installed (b031adf) + o Don't install event_rpcgen.py when --disable-libevent-install is used (e23cda3 Harlan Stenn) + o Fix AIX build issue with TAILQ_FOREACH definition (e934096) + + +Changes in version 2.0.12-stable (4 Jun 2011) +BUGFIXES + o Fix a warn-and-fail bug in kqueue by providing kevent() room to report errors (28317a0) + o Fix an assert-inducing fencepost bug in the select backend (d90149d) + o Fix failing http assertion introducd in commit 0d6622e (0848814 Kevin Ko) + o Fix a bug that prevented us from configuring IPv6 nameservers. (74760f1) + o Prevent size_t overflow in evhttp_htmlescape. (06c51cd Mansour Moufid) + o Added several checks for under/overflow conditions in evhttp_handle_chunked_read (a279272 Mark Ellzey) + o Added overflow checks in evhttp_read_body and evhttp_get_body (84560fc Mark Ellzey) + +DOCUMENTATION: + o Add missing words to EVLOOP_NONBLOCK documentation (9556a7d) + +BUILD FIXES + o libssl depends on libcrypto, not the other way around. (274dd03 Peter Rosin) + o Libtool brings in the dependencies of libevent_openssl.la automatically (7b819f2 Peter Rosin) + o Use OPENSSL_LIBS in Makefile.am (292092e Sebastian Hahn) + o Move the win32 detection in configure.in (ceb03b9 Sebastian Hahn) + o Correctly detect openssl on windows (6619385 Sebastian Hahn) + o Fix a compile warning with zlib 1.2.4 and 1.2.5 (5786b91 Sebastian Hahn) + o Fix compilation with GCC 2, which had no __builtin_expect (09d39a1 Dave Hart) + o Fix new warnings from GCC 4.6 (06a714f) + o Link with -lshell32 and -ladvapi32 on Win32. (86090ee Peter Rosin) + o Make the tests build when OpenSSL is not available. (07c41be Peter Rosin) + o Bring in the compile script from automake, if needed. (f3c7a4c Peter Rosin) + o MSVC does not provide S_ISDIR, so provide it manually. (70be7d1 Peter Rosin) + o unistd.h and sys/time.h might not exist. (fe93022 Peter Rosin) + o Make sure TINYTEST_LOCAL is defined when building tinytest.c (8fa030c Peter Rosin) + o Fix winsock2.h #include issues with MSVC (3d768dc Peter Rosin) + o Use evutil_gettimeofday instead of relying on the system gettimeofday. (0de87fe Peter Rosin) + o Always use evutil_snprintf, even if OS provides it (d1b2d11 Sebastian Hahn) + o InitializeCriticalSectionAndSpinCount requires _WIN32_WINNT >= 0x0403. (816115a Peter Rosin) + o cygwin: make it possible to build DLLs (d54d3fc) + + + +Changes in version 2.0.11-stable (27 Apr 2011) + [Autogenerated from the Git log, sorted and cleaned by hand.] +BUGFIXES: + o Fix evport handling of POLLHUP and POLLERR (b42ce4b) + o Fix compilation on Windows with NDEBUG (cb8059d) + o Check for POLLERR, POLLHUP and POLLNVAL for Solaris event ports (0144886 Trond Norbye) + o Detect and handle more allocation failures. (666b096 Jardel Weyrich) + o Use event_err() only if the failure is truly unrecoverable. (3f8d22a Jardel Weyrich) + o Handle resize failures in the select backend better. (83e805a) + o Correctly free selectop fields when select_resize fails in select_init (0c0ec0b) + o Make --enable-gcc-warnings a no-op if not using gcc (3267703) + o Fix a type error in our (unused) arc4random_stir() (f736198) + o Correctly detect and stop non-chunked http requests when the body is too long (63a715e) + o Have event_base_gettimeofday_cached() always return wall-clock time (a459ef7) + o Workaround for http crash bug 3078187 (5dc5662 Tomash Brechko) + o Fix incorrect assertions and possible use-after-free in evrpc_free() (4b8f02f Christophe Fillot) + o Reset outgoing http connection when read data in idle state. (272823f Tomash Brechko) + o Fix subtle recursion in evhttp_connection_cb_cleanup(). (218cf19 Tomash Brechko) + o Fix the case when failed evhttp_make_request() leaved request in the queue. (0d6622e Tomash Brechko) + o Fix a crash bug in evdns server circular list code (00e91b3) + o Handle calloc failure in evdns. (Found by Dave Hart) (364291e) + o Fix a memory leak on win32 socket->event map. (b4f89f0) + o Add a forgotten NULL check to evhttp_parse_headers (12311ff Sebastian Hahn) + o Fix possible NULL-deref in evdns_cancel_request (5208544 Sebastian Hahn) + +PORTABILITY: + o Fall back to sscanf if we have no other way to implement strtoll (453317b) + o Build correctly on platforms without sockaddr_storage (9184563) + o Try to build correctly on platforms with no IPv6 support (713c254) + o Build on systems without AI_PASSIVE (cb92113) + o Fix http unit test on non-windows platforms without getaddrinfo (6092f12) + o Do not check for gethostbyname_r versions if we have getaddrinfo (c1260b0) + o Include arpa/inet.h as needed on HPUX (10c834c Harlan Stenn) + o Include util-internal.h as needed to build on platforms with no sockaddr_storage (bbf5515 Harlan Stenn) + o Check for getservbyname even if not on win32. (af08a94 Harlan Stenn) + o Add -D_OSF_SOURCE to fix hpux builds (0b33479 Harlan Stenn) + o Check for allocation failures in apply_socktype_protocol_hack (637d17a) + o Fix the check for multicast or broadcast addresses in evutil_check_interfaces (1a21d7b) + o Avoid a free(NULL) if out-of-memory in evdns_getaddrinfo. Found by Dave Hart (3417f68) + +DEFENSIVE PROGRAMMING: + o Add compile-time check for AF_UNSPEC==PF_UNSPEC (3c8f4e7) + +BUGS IN TESTS: + o Fix test.sh output on solaris (b4f89b6 Dave Hart) + o Make test-eof fail with a timeout if we never get an eof. (05a2c22 Harlan Stenn) + o Use %s with printf in test.sh (039b9bd) + o Add an assert to appease clang's static analyzer (b0ff7eb Sebastian Hahn) + o Add a forgotten return value check in the unit tests (3819b62 Sebastian Hahn) + o Actually send NULL request in http_bad_request_test (b693c32 Sebastian Hahn) + o add some (void) casts for unused variables (65707d7 Sebastian Hahn) + o Refactor test_getaddrinfo_async_cancel_stress() (48c44a6 Sebastian Hahn) + o Be nice and "handle" error return values in sample code (4bac793 Sebastian Hahn) + o Check return value of evbuffer_add_cb in tests (93a1abb Sebastian Hahn) + o Remote some dead code from dns-example.c (744c745 Sebastian Hahn) + o Zero a struct sockaddr_in before using it (646f9fe Sebastian Hahn) + +BUILD FIXES: + o Fix warnings about AC_LANG_PROGRAM usage (f663112 Sebastian Hahn) + o Skip check for zlib if we have no zlib.h (a317c06 Harlan Stenn) + o Fix autoconf bracket issues; make check for getaddrinfo include netdb.h (833e5e9 Harlan Stenn) + o Correct an AM_CFLAGS to an AM_CPPFLAGS in test/Makefile.am (9c469db Dave Hart) + o Fix make distcheck & installation of libevent 1 headers (b5a1f9f Dave Hart) + o Fix compilation under LLVM/clang with --enable-gcc-warnings (ad9ff58 Sebastian Hahn) + +FEATURES: + o Make URI parser able to tolerate nonconformant URIs. (95060b5) + +DOCUMENTATION: + o Clarify event_set_mem_functions doc (926f816) + o Correct evhttp_del_accept_socket documentation on whether socket is closed (f665924) + o fix spelling mistake in whatsnew-2.0.txt (deb2f73) + o Fix sample/http-server ipv6 fixes (eb692be) + o Comment internal headers used in sample code. (4eb281c) + o Be explicit about how long event loops run in event.h documentation (f95bafb) + o Add comment to configure.in to explain gc-sections test logic (c621359) + o Fix a couple of memory leaks in samples/http-server.c. Found by Dave Hart. (2e9f665) + +BUILD IMPROVEMENTS: + o Use the gcc -ffunction-segments feature to allow gc when linking with static libevent (0965c56 Dave Hart) + o Add configure options to disable installation, regression tests (49e9bb7 Dave Hart) + + + +Changes in version 2.0.10-stable (16 Dec 2010) + [Autogenerated from the Git log, sorted and cleaned by hand.] +BUGFIXES + o Minor fix for IOCP shutdown handling fix (2599b2d Kelly Brock) + o Correctly notify the main thread when activating an event from a subthread (5beeec9) + o Reject overlong http requests early when Expect:100-continue is set (d23839f Constantine Verutin) + o EVUTIL_ASSERT: Use sizeof() to avoid "unused variable" warnings with -DNDEBUG. (b63ab17 Evan Jones) + +CODE CLEANUPS + o bufferevent-internal.h: Use the new event2/util.h header, not evutil.h (ef5e65a Evan Jones) + o Use relative includes instead of system includes consistently. (fbe64f2 Evan Jones) + o Make whitespace more consistent + +TESTING + o tests: Use new event2 headers instead of old compatibility headers. (4f33209 Evan Jones) + +DOCUMENTATION + o Document that the cpu_hint is only used on Windows with IOCP for now (57689c4) + o Add stuff to "whats new in 2.0" based on reading include changes since August. (18adc3f) + + +Changes in 2.0.9-rc (30 Nov 2010): + [Autogenerated from the Git log, sorted and cleaned by hand.] +NEW AND MODIFIED APIs + o Add a function to change a listener's callback. (46ee061) + o Make evbuffer_add_file take ev_off_t, not off_t (ac7e52d) + o Make rate-limits go up to SIZE_MAX/EV_SSIZE_MAX, not just INT32_MAX (2cbb1a1) + o Add a bufferevent_get_base function (aab49b6) + +MAJOR BUGFIXES + o Disable changelist for epoll by default because of Linux dup() bug; add an option and/or an envvar to reenable it for speed. (9531763) + o Fix a 100%-CPU bug where an SSL connection would sometimes never stop trying to write (1213d3d) + o Fix a nasty bug related to use of dup() with epoll on Linux (c281aba) + o Fix bugs in posix thread-id calculation when sizeof(pthread_t) != sizeof(long) (fbaf077) + o Fix some ints to evutil_socket_t; make tests pass on win64. (f817bfa Dimitre Piskyulev) + o Set _EVENT_SIZEOF_VOID_P correctly on win32 and win64 (1ae82cd Dimitre Piskyulev) + o Avoid double-invocation of user callback with EVUTIL_EAI_CANCEL (abf01ed) + o Set SO_UPDATE_ACCEPT_CONTEXT on sockets from AcceptEx so that shutdown() can work (52aa419) + o When closing a filtering bufferevent, clear callbacks on the underlying bufferevent (fc7b1b0) + +NEW AND MODIFIED HTTP APIs + o Add evhttp_parse_query_str to be used with evhttp_uri_parse. (2075fbc) + o Add evhttp_response_code to remove one more reason to include http_struct.h (22e0a9b) + o Define enumerators for all HTTP methods, including PATCH from RFC5789 (75a7341 Felix Nawothnig) + o Functions to actually use evhttp_bound_socket with/as evconnlistener. (006efa7) + o Add evhttp_request_get_command so code can tell GET from POST without peeking at the struct. (49f4bf7) + o Introduce absolute URI parsing helpers. (86dd720 Pavel Plesov) + o Revise evhttp_uri_parse implementation to handle more of RFC3986 (eaa5f1d) + o Add evhttp_connection_get_base() to get the event_base from an http connection (cd00079) + o Let evhttp_parse_query return -1 on failure (b1756d0) + o New evhttp_uri(encode|decode) functions to handle + and NUL characters right (a8148ce) + o Add evhttp_response_code to remove one more reason to include http_struct.h (22e0a9b) + o Tweak interface for allowed methods (f5b391e) + o Add evhttp server alias interface, correct flagging of proxy requests. (aab8c38 Christopher Davis) + +HTTP BUGFIXES + o Add some comments to http.c and make a few functions static. (90b3ed5) + o Fix Content-Length when trying send more than 100GB of data (!) on an evhttp. (525da3e) + o Fix a bug where we would read too much data in HTTP bodies or requests. (58a1cc6) + o Correctly count req->body_size on http usage without Content-Length (8e342e5) + o Avoid missed-request bug when entire http request arrives before data is flushed (74c0e86) + o reset "chunked" flag when sending non-chunked reply (aa5f55f Joachim Bauch) + o evhttp_encode_uri encodes all reserved characters, including !$'()*+,/:=@ (2e63a60) + o Replace exact-version checks for HTTP/1.1 with >= or < checks (647e094) + o evhttp: Return 501 when we get an unrecognized method, not 400. (536311a) + o Don't disable reading from the HTTP connection after sending the request to be notified of connection-close in time (c76640b Felix Nawothnig) + o Never call evhttp_readcb while writing. (0512487) + o Try to fix an assertion failure related to close detection (0faaa39) + o Correctly detect timeouts during http connects (04861d5) + o Preliminary support for Continue expectation in evhttp. (fa9305f Christopher Davis) + +OTHER BUGFIXES + o Correct logic for realigning a chain in evbuffer_add (e4f34e8) + o Fix a minor syntax error that most compilers didn't care about (e56ff65) + o Fix some uses of int for socket in regress (5d389dc) + o Check return value for ioctlsocket on win32 (f5ad31c Trond Norbye) + o Fix som event_warns that should have been event_warnx (19c71e7) + o Fix signal handler types for win64. (b81217f) + o Try to clear up more size_t vs int/long issues. (598d133) + o Make sure IOCP evconnlistener uses virtual events. (7b40a00 Christopher Davis) + o Don't free evdns_request handles until after the callback is invoked (9ed30de) + o Fix some more cancel-related bugs in getaddrinfo_async (c7cfbcf) + o Make evdns_getaddrinfo_cancel threadsafe (d51b2fc) + o Only clear underlying callbacks when the user hasn't reset them. (1ac5b23) + o Fix bug in bufferevent_connect on an openssl bufferevent that already had an fd (4f228a1) + o Resolve an evport bug in the thread/forking test (3a67d0b) + o Make sure the CLOEXEC flag is set on fds we open for base notification (3ab578f) + o Fix IRIX build. sa_family collides with a #define in sys/socket.h on IRIX. (e874982 Kevin Bowling) + o If not WIN32, include in event2/util.h. (1cd45e5 Kevin Bowling) + o Fix some C99-style comments to work with the xlC compiler. (c2e5e22 Kevin Bowling) + o Add some checks since lack of TAILQ_FOREACH doesn't imply lack of FIRST, END, NEXT, or INSERT_BEFORE. Quiet some warnings in XL C. (c4dc335 Kevin Bowling) + o Reworked AIX __ss_family workaround to use AC_STRUCT_MEMBER. (2e2a3d7 Kevin Bowling) + o Take select from when testing in autoconf. AIX build fix. (a3a9f6b Kevin Bowling) + o Fix snprintf related failures on IRIX. (3239073 Kevin Bowling) + o Remove _event_initialized(); make event_initialized() a function(); make it consistent on windows and non-windows (652024b) + o Do not let EVLOOP_ONCE exit the loop until all deferred callbacks have run (2d5e1bd) + o Make EVLOOP_ONCE ignore internal events (0617a81) + o Possible crash fix when freeing an underlying bufferevent of an openssl bufferevent (29f7623) + +HTTP CLEANUPS + o Stop using Libevent-1 headers in regress_http (1f507d7) + o Modernize header usage in bench_http.c (e587069) + o fix signed/unsigned warnings in http.c (74a91e5) + o Update the HTTP regression tests to use Libevent2 apis for non-http stuff (d9ffa89) + o Start porting http tests to not use legacy interfaces (8505a74) + o Convert the rest of the http tests to be non-legacy unit tests. (9bb8239) + o Rename the confusing "base" static variable in regress_http.c (353402a) + o Stop accessing http request struct directly from in the unit tests. (0b137f4) + o Refactor http version parsing into a single function (a38140b) + +TESTING + o Improvements to tinytest_macros.h (ad923a1) + o Add a huge pile of tests for the new URI functions, and make them pass. (a5a76e6) + o Unit tests for evhttp_uri_set* (bc98f5e) + o Increase the skew tolerance to 2 seconds in thread/deferred_cb_skew (f806476 Christopher Davis) + o Reorder backends in test.sh to match preference order in event.c (ece974f) + o Add a stress test for getaddrinfo_cancel (da1bf52) + o Units test for unexpected evhttp methods. (75e3320) + +DOCUMENTATION + o Document behavior of URI parsing more thoroughly. (3a33462) + o Document that two bufferevent functions only work on socket bufferevents (70e1b60) + o add a requested docstring for event_rpcgen.CommandLine.__init__ (f1250eb) + o Fix a mistake in http documentation found by Julien Blache (229714d) + o Add a basic example of how to write a static HTTP server. (4e794d5) + o Document event_get_assignment (88be27d) + o Note that reentrant calls to libevent from logging cbs may fail badly (e431bcd) + o Clarify EVLOOP_* documentation to be more precise. (057a514) + +CLEANUPS + o Simplify the logic for choosing EPOLL_CTL_ADD vs EPOLL_CTL_MOD (2c66983) + o Rename "size" variables in win32select that were really fd counts. (b6a158c) + o Fix even more win64 warnings (7484df6) + o Fix even more win64 warnings: buffer, event_tagging, http, evdns, evrpc (545a611) + o Fix more wn64 warnings. (34b84b9 Christopher Davis) + o Use the label_len local variable in evdns instead of recalculating it over and over (ba01456) + o Fix some irix compilation warnings spotted by Kevin Bowling (7bcace2) + + + +Changes in 2.0.8-rc (14 Oct 2010): + [Autogenerated from the Git log, sorted and cleaned by hand.] +NEW APIS + o Add error callback to evconnlistener (c4be8d8 Simon Perreault) + o Add a LEV_OPT_THREADSAFE option for threadsafe evconnlisteners (127d4f2) + +CHANGED BEHAVIOR + o Correct logic on disabling underlying bufferevents when disabling a filter (ac27eb8) + +BUGFIXES + o Obey enabled status when unsuspending (040a019 Simon Perreault) + o Warn when using the error-prone EV_SIGNAL interface in an error-prone way. Also, fix a couple of race conditions in signal.c (720bd93) + O Make default signal backend fully threadsafe (95a7d41) + o Put internal events at highest priority (90651b3) + o Fix warnings in the main codebase flagged by -Wsigned-compare (9c8db0, 5e4bafb, 5c214a, 6be589a, e06f514) + o Fix compile in kqueue.c (b395392 Sebastian Hahn) + o Do not search outside of the system directory for windows DLLs (d49b5e3) + o Fix a spurious-call bug on epoll.c (0faaee0) + o Send a shutdown(SHUT_WR) before closing an http connection (e0fd870 Christopher Davis) + o Fix warnings on mingw with gcc 4.5 (5b7a370) + o Fix an EINVAL on evbuffer_write_iovec on OpenSolaris. (fdc640b) + o Fix allocation error for IOCP listeners. Probably harmless, since struct event is big (481ef92) + o Make iocp/listener/error work; don't accept again if lev is disabled. (62b429a Christopher Davis) + o Handle rate-limiting for reading on OpenSSL bufferevents correctly. (819b171) + o Fix serious bugs in per-bufferevent rate-limiting code (34d64f8) + o Avoid spurious reads from just-created open openssl bufferevents (223ee40) + o Fix a case where an ssl bufferevent with CLOSE_ON_FREE didn't close its fd (93bb7d8) + o The corrected bufferevent filter semantics let us fix our openssl tests (34331e4) + +TESTING + o Make SSL tests cover enabling/disabling EV_READ. (a5ce9ad) + o Bump to the latest version of tinytest (f0bd83e) + o Unit tests for listener error callbacks (045eef4) + o New unit test for ssl bufferevents starting with connected SSLs. (02f6259) + +DEBUGGABILITY + o Make debugging output for epoll backend more comprehensive (ec2b05e) + o Make event.c debugging messages report fds (e119899) + o Make the --enable-gcc-warnings option include signed comparison warnings (d3b096c) + +DEADCODE REMOVAL + o Remove the now-useless evsig_caught and evsig_process (4858b79) + o Remove event_base.evsigbase; nothing used it. (38d0960) + + + +Changes in 2.0.7-rc (9 Sep 2010): + [Autogenerated from the Git log, sorted and cleaned by hand.] +NEW APIS + o Expose a evdns_base_nameserver_sockaddr_add() function to add a nameserver by sockaddr (1952143) + o Add event_config_set_num_cpus_hint() for tuning win32 IOCP thread pools, etc. (2447fe8 Christopher Davis) + +BUGFIXES + o Fix a nasty dangling-event bug when using rate-limiting groups (0bffe43) + o Clean up syntax on TAILQ_ENTRY() usage to build correctly with recent MSVC (60433a0 Gilad Benjamini) + o Make definition of WIN32_LEAN_AND_MEAN in event.h conditional (3920172 Gilad Benjamini) + o Correctly detect failure to delete bufferevent read-timeout event (da6e7cd) + o Set close-on-exec bit for filedescriptors created by dns subsystem (d0b8843) + o Fix kqueue correctness test on x84_64 (6123d12) + o Detect events with no ev_base; warn instead of crashing (f1074b7) + o Fix an issue with forking and signal socketpairs in select/poll backends (d61b2f3) + o Stop using global arrays to implement the EVUTIL_ctype functions (1fdec20) + o On windows, make lock/thread function tables static (5de2bcb) + o Close th_notify_fds and open a new pair on reinit (495ed66) + o Declare signal handler function as "__cdecl" on Windows (f0056d0) + o Use the _func() replacements for open, fstat, etc in evutil.c on win32 (e50c0fc) + o Only process up to MAX_DEFERRED deferred_cbs at a time (17a14f1 Christopher Davis) + +THREADING BUGFIXES + o Avoid deadlock when activating signals (970e6ad) + o Add a condition variable backend, with implementations for pthreads and win32 (d4977b5) + o Use conditions instead of current_event_lock to fix a deadlock (e0972c2) + o Fix logic error in win32 TRY_LOCK that caused problems with rate-limiting (4c32b9d) + o Avoid needlessly calling evthread_notify_base() when the loop is not running (c7a06bf) + o Minimize calls to base_notify implementation functions, thereby avoiding needless syscalls (4632b78) + +IOCP BUGFIXES + o IOCP-related evbuffer fixes (03afa20 Christopher Davis) + o Stop IOCP when freeing the event_base (d844242 Christopher Davis) + o Some IOCP bufferevent tweaks (76f7e7a Christopher Davis) + +TESTS + o Make the regress_pthread.c tests work on windows with current test APIs (d74ae38) + o Add a unit test for conditions (5fb1095) + o Allow more than one copy of regression tests to run at once (a97320a) + o Fix event_del(0) instance in bench.c (b0f284c Shuo Chen) + o Fix a few memory leaks in the tests (1115366) + o IOCP-related unit test tweaks (499452f Christopher Davis) + o Improve testing of when thread-notification occurs (ce85280) + +BUILD AND DISTRIBUTION + o Add pkgconfig files for libevent_{openssl,pthreads} (ebcb1f0) + o Change include order in Makefile.nmake (4022b28) + o Make include/event2/event-config.h not included in source dist (a4af9be) + o Honor NDEBUG; build without warnings with NDEBUG; make NDEBUG always-off in unit test code (743f866) + o Declare evkeyvalq and event_list even if event_struct.h comes before sys/queue.h (d3ceca8) + o Move evkeyvalq into a separate header for evhttp_parse_query users (ca9048f) + o Prefer autoreconf -ivf to manual autogen.sh (7ea8e89) + +CLEANUP + o Completely remove the (mostly-removed) obsolete thread functions (3808168) + o Rename regress_pthread.c to regress_thread.c (041989f) + o Make defer-internal.h use lock macros, not direct calls to lock fns (5218d2a) + +DOCUMENTATION + o Document that DNS_NO_SEARCH is an obsolete alias for DNS_QUERY_NO_SEARCH (33200e7) + o Update the whatsnew-2.0.txt document (4991669) + + + +Changes in 2.0.6-rc (6 Aug 2010): + [Autogenerated from the Git log, sorted by hand.] +DOCUMENTATION + o Document a change in the semantics of event_get_struct_event_size() (e21f5d1) + o Add a comment to describe our plan for library versioning (9659ece) + o Fix sentence fragment in docs for event_get_struct_event_size() (7b259b6) + +NEW FEATURES AND INTERFACE CHANGES + o Remove the obsolete evthread interfaces (c5bab56) + o Let evhttp_send_error infer the right error reasons (3990669) + o Add a function to retrieve the other side of a bufferevent pair (17a8e2d) + o Add bufferevent_lock()/bufferevent_unlock() (215e629) + o Stop asserting when asked for a (unsupported) TCP dns port. Just return NULL. (7e87a59) + o Replace (unused,always 0) is_tcp argument to evdns_add_server_port*() with flags (e1c1167) + o Constify a couple of arguments to evdns_server_request_add_*_reply (cc2379d) + o Add an interface to expose min_share in ratelimiting groups (6ae53d6) + +BUGFIXES + o Avoid event_del on uninitialized event in event_base_free (6d19510) + o Add some missing includes to fix Linux build again (75701e8) + o Avoid close of uninitialized socket in evbuffer unit test (bda21e7) + o Correctly recognize .255 addresses as link-local when looking for interfaces (8c3452b) + o If no evdns request can be launched, return NULL, not a handle (b14f151) + o Use generic win32 interfaces, not ASCII-only ones, where possible. (899b0a3) + o Fix the default HTTP error template (06bd056 Felix Nawothnig) + o Close the file in evutil_read_file whether there's an error or not. (0798dd1 Pierre Phaneuf) + o Fix possible nullptr dereference in evhttp_send_reply_end() (29b2e23 Felix Nawothnig) + o never let bufferevent_rlim functions return negative (0859870) + o Make sample/hello_world work on windows (d89fdba) + o Fix a deadlock related to event-base notification. Diagnosed by Zhou Li, Avi Bab, and Scott Lamb. (17522d2) + o Possible fix to 100% cpu usage with epoll and openssl (cf249e7 Mike Smellie) + o Don't race when calling event_active/event_add on a running signal event (fc5e0a2) + o Suppress a spurious EPERM warning in epoll.c (e73cbde) + o Fix wrong size calculation of iovec buffers when exact=1 (65abdc2 niks) + o Change bufferevent_openssl::do_write so it doesn't call SSL_write with a 0 length buffer (c991317 Mike Smellie) + o Fixed compilation of sample/le-proxy.c on win32 (13b912e Trond Norbye) + o Fix rate-limit calculation on openssl bufferevents. (009f300) + o Remember to initialize timeout events for bufferevent_async (de1f5d6 Christopher Davis) + +BUILD AND DISTRIBUTION CHANGES + o Test the unlocked-deferred callback case of bufferevents (dfb75ab) + o Remove the now-unusable EVTHREAD_LOCK/UNLOCK constants (fdfc3fc) + o Use -Wlogical-op on gcc 4.5 or higher (d14bb92) + o Add the libtool-generated /m4/* stuff to .gitignore (c21c663) + o Remove some automake-generated files from version control. (9b14911) + o Have autogen.sh pass --force-missing to automake (8a44062) + o Set library version for libevent_pthreads correctly (b2d7440) + o Really only add libevent_core.la to LIBADD on mingw (1425003 Sebastian Hahn) + o Build more cleanly with NetBSDs that dislike toupper(char) (42a8c71) + o Fix unit tests with -DUSE_DEBUG enabled (28f31a4) + o Fix evdns build with -DUNICODE (5fa30d2) + o Move event-config.h to include/event2 (ec347b9) + +TESTING + o Add options to test-ratelim.c to check its results (2b44dcc) + o Make test-ratelim clean up after itself better. (b5bfc44) + o Remove the now-obsolete setup_test() and cleanup_test() functions (e73f1d7) + o Remove all non-error prints from test/regress.c (8bc1e3d) + o Make test.sh exit with nonzero status if tests fail (faf2a04) + o Have the unit tests report errors from test.sh (3689bd2) + o Fix logic in correcting high values from FIONREAD (3467f2f) + o Add test for behavior on remote socket close (44d57ee) + o Unit test for event_get_struct_event_size() (7510aac) + o Make test/test.sh call test-changelist (7c92691) + o Fix badly-behaved subtest of dns/bufferevent_connect_hostname (840a72f Joachim Bauch) + o Add option to test-ratelim to test min_share (42f6b62) + o Fix an assertion bug in test-ratelim (b2c6202) + o Make tests quieter on local dns resolver failure (e996b3d) + o Increase the tolerance in our unit tests for sloppy clocks. (170ffd2) + o Use AF_INET socketpair to test sendfile on Solaris (9b60209) + o Make test-changelist count cpu usage right on win32 (ea1ea3d) + +INTERNALS, PERFORMANCE, AND CODE CLEANUPS + o Mark the event_err() functions as __attribute__((noreturn)) (33bbbed) + o Do not check that event_base is set in EVBASE_ACQUIRE_LOCK (218a3c3) + o Replace (safe) use of strcpy with memcpy to appease OpenBSD (caca2f4) + o Remove some dead assignments (47c5dfb) + o Fix a pedantic gcc 4.4 warning in event2/event.h (276e7ee) + o Drain th_notify_fd[0] more bytes at a time. (a5bc15b) + o Tidy up the code in evthread_make_base_notifiable a little (61e1eee) + o Pass flags to fcntl(F_SETFL) and fcntl(F_SETFD) as int, not long (7c2dea1) + o Remove unused variables in test/test-changelist.c (b00d4c0) + o Fix whitespace. (cb927a5) + o Improve error message for failed epoll to make debugging easier. (9e725f7) + o Turn our socketpair() replacement into its own function (57b30cd) + + + +Changes in 2.0.5-beta (10 May 2010): + [Autogenerated from the Git log, sorted by hand.] +DOCUMENTATION + o Update all our copyright notices to say "2010" (17efc1c) + o Add Christopher Clark and Maxim Yegorushkin to the LICENSE file (38b7b57) + o Clarify Christopher Clark's status as writer of original ht code. (78772c3) + o Try to comment some of the event code more (cdd4c49) + o Add a few more evmap/changelist comments (c247adc) + o Add a comment to explain why evdns_request is now separte from request (ceefbe8) + o Document evutil_secure_rng_init() and evutil_secure_rng_add_bytes() (a5bf43a) + o Stop distributing and installing manpages: they were too inaccurate (7731ec8) + +NEW FEATURES AND INTERFACE CHANGES + o Remove signal_assign() and signal_new() macros. (2fac0f7) + o Make evdns use the regular logging system by default (b2f2be6) + o Allow evbuffer_read() to split across more than 2 iovecs (e470ad3) + o Functions to manipulate existing rate limiting groups. (ee41aca) + o Functions to track the total bytes sent over a rate limit group. (fb366c1) + o Detect and refuse reentrant event_base_loop() calls (b557b17) + o Limit the maximum number of events on each socket to 65535 (819f949) + o Add evbuffer_copyout to copy data from an evbuffer without draining (eb86c8c) + o Expose the request and reply members of rpc_req_generic() (07edf78 Shuo Chen) + o Add void* arguments to request_new and reply_new evrpc hooks (755fbf1 Shuo Chen) + o Seed the RNG using sysctl() as well as /dev/urandom (71fc3eb) + o Make evutil_secure_rng_init() work even with builtin arc4random (f980716) + o Report DNS error when lookup fails during bufferevent_socket_connect_hostname. (0ef4070 Christopher Davis) + o Release locks on bufferevents while executing callbacks (a5208fe Joachim Bauch) o Make debug mode catch mixed ET and non-ET events on an fd (cb67074) + o Catch attempts to enable debug_mode too late (9ecf0d4) + o Refuse null keys in evhttp_parse_query() (953e229 Frank Denis) + +BUGFIXES + o Avoid a spurious close(-1) on Linux (70a44b6) + o Do not close(-1) when freeing an uninitialized socket bufferevent (b34abf3) + o Free evdns_base->req_heads on evdns_base_free (859af67) + o Avoid an (untriggerable so far) crash bug in bufferevent_free() (0cf1431) + o Set mem_offset for every bufferevent type (657d1b6) + o Fix infrequent memory leak in bufferevent_init_common(). (8398641 Jardel Weyrich) + o Make evutil_signal_active() match declaration. (e1e703d Patrick Galbraith) + o Fix minheap code to use replacement malloc functions (a527618) + o Fix a free(NULL) in minheap-internal.h (6f20492) + o Fix critical bug in evbuffer_write when writev is not available (cda56ab) + o Make the no_iovecs case of write_atmost compile (8e227b0) + o Fix a memory leak when appending/prepending to a buffer with unused space. (45068a3) + o Clean up a mistake in pointer manipulation in evbuffer_remove (28bfed4 Christopher Davis) + o Always round up when there's a fractional number of msecs. (8f9e60c Christopher Davis) + o Fix compiler warnings under WIN32 (d469c50 Giuseppe Scrivano) + o Clean up properly when adding a signal handler fails. (b84b598 Gilad Benjamini) o Ensure that evdns_request is a persistent handle. (15bb82d Christopher Davis) + o Free search state when finished searching to avoid an infinite loop. (a625840 Christopher Davis) + o Assert for valid requests as necessary. (67072f3 Christopher Davis) + o do not leak the request object on persistent connections (9d8edf2) + o Make evdns logging threadsafe (b1c7950) + o Fix a couple of bugs in the BSD sysctl arc4seed logic (a47a4b7) + o Remove one last bug in last_with_datap logic. Found with valgrind (d49b92a) + o fix a leak when unpausing evrpc requests (94ee125) + o Fix a memory leak when unmarshalling RPC object arrays (f6ab2a2) + o Fix compilation when openssl support is disabled (40c301b) + o Allow empty reason line in HTTP status (739e688 Pierre Phaneuf) + o Fix a compile warning introduced in 739e688 (bd1ed5f Sebastian Hahn) + o Fix nonstandard TAILQ_FOREACH_REVERSE() definition (71afc52 Frank Denis) + o Try /proc on Linux as entropy fallback; use sysctl as last resort (20fda29) + o Fix symbol conflict between mm_*() macros and libmm (99e50e9) + o Fix some crazy macro mistakes in arc4random.c (90d4225) + o Make evbuffer_add_file() work on windows (dcdae6b) + o Fix unused-variable warning when building with threads disabled (ad811cd) + o Numerous opensolaris compilation fixes (c44de06) + o Fix getaddrinfo with protocol unset on Solaris 9. Found by Dagobert Michelsen (2cf2a28) + o Fix another nasty solaris getaddrinfo() behavior (3557071) + o Define _REENTRANT as needed on Solaris, elsewhere (c1cd32a) + o Fix some autoconf issues on OpenBSD (7c519df) + +BUILD AND DISTRIBUTION CHANGES + o Distribute libevent.pc.in, not libevent.pc (22aff04) + o Avoid errors in evutil.c when building with _UNICODE defined (b677032 Brodie Thiesfield) + o Avoid errors in http.c when building with VC 2003 .NET (13e4f3b Brodie Thiesfield) + o Support the standard 'make check' target in place of 'make verify' (426c8fb) + o Remove redundant stuff from EXTRA_DIST (b660edf) + o Switch to using AM conditionals in place of AC_LIBOBJ (2e898f5) + o Remove an orphaned RELEASE flag in Makefile.am (0794b0d) + o Give a better warning for bad automake versions. (77c917d) + o Use dist_bin_SCRIPTS, not EXTRA_DIST, to distribute scripts (9eb2fd7) + o Never test for select() on windows (3eb044d Trond Norbye) + o Do not inhibit automake dependencies generation (10c4c90 Giuseppe Scrivano) + o Create shared libraries under Windows (3cbca86 Giuseppe Scrivano) + o Add ctags/etags files to .gitignore (0861d17) + o Only specify -no-undefined on mingw (25433b9) + o Only add libevent_core.la to LIBADD on mingw (fdc6297) + +TESTING + o Get bench_http to work on Windows; add a switch to enable IOCP. (4ac38a5 Christopher Davis) + o VC has no getopt(), so do without in bench_http. (1273d2f Christopher Davis) + o Fix an obnoxious typo in the bufferevent_timeout_filter test (0d047c3) + o Fix a write of uninitialized RAM in regression tests (68dc742) + o Fix some memory leaks in the unit tests (274a7bd) + o Make 'main/many_events' test 70 fds, not 64. (33874b0) + o Unit-test every evbuffer_add_file() implementation. (06a4443) + o Add more unit tests for evbuffer_expand (8c83e99) + o Test another case of evbuffer_prepend (1234b95) + o Fix a possible double-free bug in SSL bufferevents with CLOSE_ON_FREE (7501895) o Add dns/search_cancel unit test. (39b870b Christopher Davis) + o Make http_base_test stop leaking an event_base. (96730d3) + o Detect broken unsetenv at unit-test runtime (f37cd4c) + o Implement regress_make_tempfile on win32 to test evbuffer_add_file (b4f12a1) + o add more (currently skipped) add_file tests on win32 (05de45d) + o Fix bench_http build on win32. (384d124) + o Make unit test for add_file able to tell "error" from "done" (88a543f) + o Make test for bufferevent_connect_hostname system-neutral (f89168e) + o Make test.sh support mingw/msys on win32 (0ee6f6c) + o Fix test.sh on freebsd (3d9e05b) + +INTERNALS, PERFORMANCE, AND AND CODE CLEANUPS + o Improve the speed of evbuffer_readln() (cc1600a) + o more whitespace normalization (2c2618d) + o Revise evbuffer to add last_with_data (2a6d2a1) + o Use last_with_data in place of previous_to_last (c8ac57f) + o Remove previous_to_last from evbuffer (6f47bd1) + o Fix last_with_data compilation on windows (1e7b986) + o Add some glass-box tests for the last_with_data code. (17da042) + o Improve robustness for refcounting (f1bc125) + o Remove a needless min_heap_shift_up_() call (7204b91) + o Increase MIN_BUFFER_SIZE to 512 (1024 on 64-bit) (2014ae4) + o Do not use evbuffer_expand() to add the first chain to a buffer (5c0ebb3) + o Make evbuffer_prepend handle empty buffers better (c87272b) + o Replace last_with_data with a slightly smarter version (b7442f8) + o Turn the increasingly complex *_CHAIN() macros into functions (96865c4) + o Rewrite evbuffer_expand and its users (d5ebcf3) + o Add evutil_tv_to_msec for safe conversion of timevals to milliseconds. (850c3ff Christopher Davis) + o Initialize last_with_datap correctly in evbuffer_overlapped (a0983b6) + o Replace EVUTIL_CLOSESOCKET macro with a function (899c1dc Sebastian Sjöberg) + o Move domain search state to evdns_request. (beaa14a Christopher Davis) + o Remove redundant checks for lock!=NULL before calling EVLOCK_LOCK (50ec59f) + o Rename current_base symbol to event_global_current_base_ (c16e684) + o Fix whitespace in evutil.c (935e150) + o Replace users of "int fd" with "evutil_socket_t fd" in portable code (c7cf6f0) + + + +Changes in 2.0.4-alpha (28 Feb 2010): + [Autogenerated from the Git log, sorted by hand.] +DOCUMENTATION + o Add stub header for 2.0.4-alpha changelog. (94d0065) + o Improve the README with more information and links. (0b42726) + o Add more people who wrote patches to the acknowledgments (0af10d5) + o Add a warning about the use of event_initialized. (f32b575) + o Add a LICENSE file so people can find our license easily (7067006) + o Add a new "hello world" sample program (becb9f9) + o Clarify status of example programs (d60a1bd) + o Update time-test.c to use event2 (f4190bf) + o Add the arc4random.c license to the LICENSE file. (e15e1e9) + +NEW FEATURES AND INTERFACE CHANGES + o Improved optional lock debugging. (0cd3bb9) + o Rate-limiting for bufferevents; group and individual limits are supported. (737c9cd) + o Testing code for bufferevent rate-limiting. (f0c0124) + o Make the initial nameserver probe timeout configurable. (1e56a32) + o Revise the locking API: deprecate the old locking callbacks and add trylock. (347952f) + o Do not make bufferevent_setfd implicitly disable EV_READ and EV_WRITE. (8274379) + o Do not ignore bufferevent_enable(EV_READ) before bufferevent_connect(). (4a5b534) + o Introduced evutil_make_socket_closeonexec() to preserve fd flags for F_SETFD. (d0939d2 Jardel Weyrich) + o evdns_getaddrinfo() now supports the /etc/hosts file. (72dd666) + o Look at the proper /etc/hosts file on windows. (66c02c7) + o Allow http connections to use evdns for hostname looksups. (c698b77) + o Changelist code to defer event changes until just before dispatch (27308aa) + o do not use a function to assign the evdns base; instead assign it via evhttp_connection_base_new() which is a new function introduced in 2.0 (5032e52) + o Functions to access more fields of struct event. (0683950) + o Make kqueue use changelists. (45e5ae3) + o Remove kqueue->pend_changes. (3225dfb) + o Minimize epoll_ctl calls by using changelist (c8c6a89) + o Add support for a "debug mode" to try to catch common errors. (cd17c3a) + o Note a missing ratelim function (361da8f) + o Add ev_[u]intptr_t to include/event2/util.h (1fa4c81) + o const-ify a few more functions in event.h (d38a7a1) + o Deprecate EVENT_FD and EVENT_SIGNAL. (f6b2694) + o Remove EVUTIL_CHECK_FMT. (6c21c89) + o Add EV_*_MAX macros to event2/util.h to expose limits for ev_* types. (aba1fff) o Functions to view and manipulate rate-limiting buckets. (85047a6) + o Add the rest of the integer limits, and add a test for them. (60742d5) + o Remove the 'flags' argument from evdns_base_set_option() (1dd7e6d) + o Add an arc4random implementation for use by evdns (d4de062) + o Use off_t for the length parameter of evbuffer_add_file (3fe60fd) + o Construct Windows locks using InitializeCriticalSectionAndSpinCount (32c6f1b) + o Expose view of current rate limit as constrained by group limit (162ce8a) + o Provide consistent, tested semantics for bufferevent timeouts (d328829) + +BUGFIXES AND TESTS + o Tolerate code that returns from a fatal_cb. (91fe23f) + o Parenthesize macro arguments more aggressively (07e9e9b) + o Fix memory-leak of signal handler array with kqueue. (e1ffbb8) + o Stop passing EVTHREAD_READ and EVTHREAD_WRITE to non-rw locks. (76cd2b7) + o Fix two use-after-free bugs in unit tests spoted by lock debugging (d84d838) + o Fix a locking bug in event_base_loop() (da1718b) + o Fix an evdns lock violation. (2df1f82 Zhuang Yuyao) + o Valgrind fix: Clear struct kevent before checking for OSX bug. (56771a3 William Ahern) + o Fix up evthread compilation on windows (bd6f1ba Roman Puls) + o Fix regress_iocp.c usage of old lock allocation macros. (31687b4 unknown) + o Update nmake makefile to build evthread.c (b62d979 unknown) + o Fix a crash when reading badly formatted resolve.conf; from Yasuoka Masahiko (6c7c579 Yasuoka Masahiko) + o Fix a snow leopard compile warning in the unit tests. (7ae9445) + o Fix compile on Snow Leopard with gcc warnings enabled (70cdfe4 Sebastian Hahn) + o Only define _GNU_SOURCE if it is not already defined. (ea6b1df Joachim Bauch) + o Update sample/signal-test.c to use newer APIs and not leak. (f6430ac Evan Jones) + o Fix a segfault when writing a very fragmented evbuffer onto an SSL (a6adeca Joachim Bauch) + o Fix a segfault when freeing SSL bufferevents in an unusual order (a773df5 Joachim Bauch) + o Drop install-sh from our git repo: a mismatched version could break "make dist" (6799527) + o Set all instances of the version number correctly. (5a112d3) + o Fix a few locking issues on windows. (c51bb3c unknown) + o Use evutil_socket_t, not int, when logging socket errors. (292467c) + o Fix up behavior of never-defered callbacks a little (390e056) + o Replace some cases of uint32_t with ev_uint32_t. (a47d88d) + o Fix compilation of devpoll.c by adding missing thread includes. (fee2c77 Dagobert Michelsen) + o Make evutil_make_socket_nonblocking() leave any other flags alone. (4c8b7cd Jardel Weyrich) + o Fix an fd leak in evconnlistener_new_bind(). (24fb502 Jardel Weyrich) + o Fix a bogus free in evutil_new_addrinfo() (0d64051 Jardel Weyrich) + o Adjusted fcntl() retval comparison on evutil_make_socket_nonblocking(). (4df7dbc Jardel Weyrich) + o Fix the code that allowed DNS options to not end with : (ee4953f) + o Fix crash bugs when a bufferevent's eventcb is not set. (2e8eeea) + o Fix test-ratelim compilation on Linux. (885b427) + o Fix compilation of rate-limiting code on win32. (165d30e) + o Eradicated the last free() call. Let mm_free() take care of deallocation. (0546ce1 Jardel Weyrich) + o Fix byte counts when mixing deferred and non-deferred evbuffer callbacks. (29151e6) + o Fixed a memory leak on windows threads implementation. The CRITICAL_SECTION was not being free'd in evthread_win32_lock_free(). (2f33e00 Jardel Weyrich) + o Fixed a fd leak in start_accepting(), plus cosmetic changes (4367a33 Jardel Weyrich) + o Improved error handling in evconnlistener_new_async(). Also keeping the fd open because it is not opened by this function, so the caller is responsible for closing it. Additionally, since evconnlistener_new_bind() creates a socket and passes it to the function above, it required error checking to close the same socket. (fec66f9 Jardel Weyrich) + o Don't use a bind address for nameservers on loopback (8d4aaf9) + o Fix compilation of rate-limit code when threading support is disabled (97a8c79) + o Detect setenv/unsetenv; skip main/base_environ test if we can't fake them. (7296971) + o Check more internal event_add() calls for failure (ff3f6cd) + o Fix windows and msvc build (5c7a7bc) + o Call event_debug_unassign on internal events (a19b4a0) + o Try to fix a warning in hash_debug_entry (137f2c6) + o Fix a dumb typo in ev_intptr_t definitions. (27c9a40) + o do not fail while sending on http connections the client closed. (93d7369) + o make evhttp_send() safe against terminated connections, too (3978180) + o Make Libevent 1.4.12 build on win32 with Unicode enabled. (000a33e Brodie Thiesfield) + o Fix some additional -DUNICODE issues on win32. (a7a9431) + o Add a check to make soure our EVUTIL_AI flags do not conflict with the native ones (c18490e) + o Always use our own gai_strerror() replacement. (6810bdb) + o Make RNG work when we have arc4random() but not arc4random_buf() (4ec8fea) + o validate close cb on server when client connection closes (2f782af) + o Fix two unlocked reads in evbuffer. (7116bf2) + o When working without a current event base, don't try to use IOCP listeners (cb52838) + o Fix getpid() usage on Windows (ff2a134) + o Add a unit test for secure rng. (48a29b6) + o Add some headers to fix freebsd compilation (b72be50) + o When connect() succeeds immediately, don't invoke the callback immediately. (7515de9) + o Suspend read/write on bufferevents during hostname lookup (db08f64) + o Make bufferevent_free() clear all callbacks immediately. (b2fbeb3) + o Fix some race conditions in persistent events and event_reinit (e2642f0) + o Fix a bug in resetting timeouts on persistent events when IO triggers. (38ec0a7) + o Add a test for timeouts on filtering bufferevents. (c02bfe1) + o Add test for periodic timers that get activated for other reasons (8fcb7a1) + o Use new timeval diff comparison function in bufferevent test (f3dfe46) + o Delete stack-alloced event in new unit test before returning. (7ffd387) + o Fix mingw compilation (23170a6) + o Try to define a sane _EVENT_SIZEOF_SIZE_T for msvc compilation (1e14f82) + o Fix arc4random compilation on MSVC. (98edb89) + o deal with connect() failing immediately (7bc48bf) + o Small cleanups on freebsd-connect-refused patch. (57b7248) + +BUILD AND DISTRIBUTION CHANGES + o Remove the contents of WIN32-Prj as unmaintained. (c69d5a5) + o Allow the user to redirect the verbose output of test/test.sh to a file (c382de6) + o Allow test.sh to be run as ./test/test.sh (7dfbe94) + o Never believe that we have pthreads on win32, even if gcc thinks we do. (78ed097) + o Make it compile under gcc --std=c89. (e2ca403) + o Fix a number of warnings from gcc -pedantic (918e9c5) + o Add the msvc-generated .lib files to .gitignore. (e244a2e) + o Add the "compile" script to gitignore. (1ba6bed) + +INTERNALS AND CODE CLEANUPS + o Add a .gitignore file. (ba34071) + o New EVTHREAD_TRY_LOCK function to try to grab a lock. (689fc09) + o Add the abilitity to mark some buffer callbacks as never-deferred. (438f9ed) + o Refactor our 'suspend operation' logic on bufferevents. (0d744aa) + o Simplify the read high-watermark checking. (5846bf6) + o Improve readability of evutil_unparse_protoname() (5a43df8 Jardel Weyrich) + o Expose our cached gettimeofday value with a new interface (47854a8) + o Whitespace fixes in test.sh (0b151a9) + o Enable branch-prediction hints with EVUTIL_UNLIKELY. (eaaf27f) + o Refactor code from evdns into a new internal "read a file" function. (0f7144f) + o Comestic changes in evconnlistener_new(), new_accepting_socket(), accepted_socket_invoke_user_cb() and iocp_listener_enable(). (510ab6b Jardel Weyrich) + o Add unit-test for bad_request bug fixed in 1.4 recently. (6cc79c6 Pavel Plesov) o Add a comment on evthread_enable_lock_debuging. (b9f43b2) + o Fix test.sh on shells without echo -n (94131e9) + o More unit tests for getaddrinfo_async: v4timeout and cancel. (a334b31) + o Make http use evconnlistener. (ec34533) + o move dns utility functions into a separate file so that we can use them for http testing (b822639) + o add a test for evhttp_connection_base_new with a dns_base (26714ca) + o forgot to add void to test function (78a50fe) + o Add a forgotten header (changelist-internal.h) (4b9f307) + o Remove some commented-out code in evutil (26e1b6f) + o Remove a needless include of rpc_compat.h (70a4a3e) + o Use less memory for each entry in a hashtable (a66e947) + o Try to untangle the logic in server_port_flush(). (439aea0) + o Use ev_[u]intptr_t types in place of [u]intptr_t (cef61a2) + o Reduce windows header includes in our own headers. (da6135e) + o clean up terminate_chunked test (e8a9782) + o Increment the submicro version number. (63e868e) + o Update event-config.h version number to match configure.in (aae7db5) + o Clean up formatting: Disallow space-before-tab. (8fdf09c) + o Clean up formatting: use tabs, not 8-spaces, to indent. (e5bbd40) + o Clean up formatting: remove trailing spaces (e5cf987) + o Clean up formatting: function/keyword spacing consistency. (4faeaea) + + + +Changes in 2.0.3-alpha (20 Nov 2009): + o Add a new code to support SSL/TLS on bufferevents, using the OpenSSL library (where available). + o Fix a bug where we didn't allocate enough memory in event_get_supported_methods(). + o Avoid segfault during failed allocation of locked evdns_base. (Found by Rocco Carbone.) + o Export new evutil_ascii_* functions to perform locale-independent character type operations. + o Try to compile better with MSVC: patches from Brodie Thiesfield + o New evconnlistener_get_fd function to expose a listener's associated socket. + o Expose an ev_socklen_t type for consistent use across platforms. + o Make bufferevent_socket_connect() work when the original fd was -1. + o Fix a bug in bufferevent_socket_connect() when the connection succeeds too quickly. + o Export an evutil_sockaddr_cmp() to compare to sockaddr objects for equality. + o Add a bufferevent_get_enabled() to tell what a bufferevent has been configured to do. + o Add an evbuffer_search_eol() function to locate the end of a line nondestructively. + o Add an evbuffer_search_range() function to search a bounded range of a buffer. + o Fix a rare crash bug in evdns. + o Have bufferevent_socket_connect() with no arguments put a bufferevent into connecting mode. + o Support sendfile on Solaris: patch from Caitlin Mercer. + o New functions to explicitly reference a socket used by an evhttp object. Patches from David Reiss. + o When we send a BEV_EVENT_CONNECTED to indicate connected status, we no longer invoke the write callback as well unless we actually wrote data too. + o If the kernel tells us that there are a negative number of bytes to read from a socket, do not believe it. Fixes bug 2841177; found by Alexander Pronchenkov. + o Do not detect whether we have monotonic clock support every time a new event base is created: instead do it only once. Patch taken from Chromium. + o Do not allocate the maximum event queue for the epoll backend at startup. Instead, start out accepting 32 events at a time, and double the queue's size when it seems that the OS is generating events faster than we're requesting them. Saves up to 374K per epoll-based event_base. Resolves bug 2839240. + o Treat an event with a negative fd as valid but untriggerable by Libevent. This is useful for applications that want to manually activate events. + o Fix compilation on Android, which forgot to define fd_mask in its sys/select.h + o Do not drop data from evbuffer when out of memory; reported by Jacek Masiulaniec + o New event_base_got_exit() and event_base_got_break() functions to tell whether an event loop exited because of an event_base_loopexit() or an event_base_loopbreak(). Patch from Ka-Hing Cheung. + o When adding or deleting an event from a non-main thread, only wake up the main thread when its behavior actually needs to change. + o Fix some bugs when using the old evdns interfaces to initialize the evdns module. + o Detect errors during bufferevent_connect(). Patch from Christopher Davis. + o Fix compilation for listener.h for C++ - missing extern "C". Patch from Ferenc Szalai. + o Make the event_base_loop() family of functions respect thread-safety better. This should clear up a few hard-to-debug race conditions. + o Fix a bug when using a specialized memory allocator on win32. + o Have the win32 select() backend label TCP-socket-connected events as EV_WRITE, not EV_READ. This should bring it in line with the other backends, and improve portability. Patch from Christopher Davis. + o Stop using enums as arguments or return values when what we mean is a bitfield of enum values. C++ doesn't believe that you can OR two enum values together and get another enum, and C++ takes its typing seriously. Patch from Christopher Davis. + o Add an API to replace all fatal calls to exit() with a user-provided panic function. + o Replace all assert() calls with a variant that is aware of the user-provided logging and panic functions. + o Add a return value to event_assign so that it can fail rather than asserting when the user gives it bad input. event_set still dies on bad input. + o The event_base_new() and event_base_new_with_config() functions now never call exit() on failure. For backward "compatibility", event_init() still does, but more consistently. + o Remove compat/sys/_time.h. It interfered with system headers on HPUX, and its functionality has been subsumed by event2/util.h and util-internal.h. + o Add a new bufferevent_socket_connect_hostname() to encapsulate the resolve-then-connect operation. + o Build kqueue.c correctly on GNU/kFreeBSD platforms. Patch pulled upstream from Debian. + o Alternative queue-based timeout algorithm for programs that use a large number of timeouts with the same value. + o New event_base_config option to disable the timeval cache entirely. + o Make EV_PERSIST timeouts more accurate: schedule the next event based on the scheduled time of the previous event, not based on the current time. + o Allow http.c to handle cases where getaddrinfo returns an IPv6 address. Patch from Ryan Phillips. + o Fix a problem with excessive memory allocation when using multiple event priorities. + o Default to using arc4random for DNS transaction IDs on systems that have it; from OpenBSD. + o Never check the environment when we're running setuid or setgid; from OpenBSD. + o Options passed to evdns_set_option() no longer need to end with a colon. + o Add an evutil_getaddrinfo() function to clone getaddrinfo on platforms that don't have it. + o Add an evdns_getaddrinfo() function to provide a nonblocking getaddrinfo using evdns, so programs can perform useful hostname lookup. + o Finally expose the IOCP-based bufferevent backend. It passes its unit tests, but probably still has some bugs remaining. Code by Nick Mathewson and Christopher Davis. + o Numerous other bugfixes. + o On FreeBSD and other OSes, connect can return ECONREFUSED immediately; instead of failing the function call, pretend with faileld in the callback. + o Fix a race condition in the pthreads test case; found by Nick Mathewson + o Remove most calls to event_err() in http and deal with memory errors instead + + + +Changes in 2.0.2-alpha (25 Jul 2009): + o Add a new flag to bufferevents to make all callbacks automatically deferred. + o Make evdns functionality locked, and automatically defer dns callbacks. + o Fix a possible free(NULL) when freeing an event_base with no signals. + o Add a flag to disable checking environment varibles when making an event_base + o Disallow setting less than 1 priority. + o Fix a bug when removing a timeout from the heap. [Patch from Marko Kreen] + o Use signal.h, not sys/signal.h. [Patch from mmadia] + o Try harder to build with certain older c99 compilers. + o Make sure that an event_config's flags field is always initialized to 0. [Bug report from Victor Goya] + o Avoid data corruption when reading data entirely into the second-to-last chain of an evbuffer. [Bug report from Victor Goya] + o Make sendfile work on FreeBSD + o Do not use vararg macros for accessing evrpc structures; this is not backwards compatible, but we did not promise any backwards compatibility for the rpc code. + o Actually define the event_config_set_flag() function. + o Try harder to compile with Visual C++. + o Move event_set() and its allies to event2/event_compat.h where they belong. + o Remove the event_gotsig code, which has long been deprecated and unused. + o Add an event_get_base() function to return the base assigned to an event. + o New function to automate connecting on a socket-based bufferevent. + o New functions to automate listening for incoming TCP connections. + o Do case-insensitive checks with a locale-independent comparison function. + o Rename the evbuffercb and everrorcb callbacks to bufferevent_data_cb and bufferevent_event_cb respectively. The old names are available in bufferevent_compat.h. + o Rename the EVBUFFER_* codes used by bufferevent event callbacks to BEV_EVENT_*, to avoid namespace collision with evbuffer flags. The old names are available in bufferevent_compat.h. + o Move the EVBUFFER_INPUT and EVBUFFER_OUTPUT macros to bufferevent_compat.h + o Add a bufferevent_getfd() function to mirror bufferevent_setfd() + o Make bufferevent_setfd() return an error code if the operation is not successful. + o Shave 22 bytes off struct event on 32-bit platforms by shrinking and re-ordering fields. The savings on 64-bit platforms is likely higher. + o Cap the maximum number of priorities at 256. + o Change the semantics of evbuffer_cb_set_flags() to be set-flag only; add a new evbuffer_cb_clear_flags() to remove set flags. + o Change the interface of evbuffer_add_reference so that the cleanup callback gets more information + o Revise the new evbuffer_reserve_space/evbuffer_commit_space() interfaces so that you can use them without causing extraneous copies or leaving gaps in the evbuffer. + o Add a new evbuffer_peek() interface to inspect data in an evbuffer without removing it. + o Fix a deadlock when suspending reads in a bufferevent due to a full buffer. (Spotted by Joachim Bauch.) + o Fix a memory error when freeing a thread-enabled event base with registered events. (Spotted by Joachim Bauch.) + o Try to contain degree of failure when running on a win32 version so heavily firewalled that we can't fake a socketpair. + o Activate fd events in a pseudorandom order with O(N) backends, so that we don't systematically favor low fds (select) or earlier-added fds (poll, win32). + o Replace some read()/write() instances with send()/recv() to work properly on win32. + o Set truncated flag correctly in evdns server replies. + o Raise RpcGenError in event_rpcgen.py; from jmanison and Zack Weinberg + o Fix preamble of rpcgen-generated files to rely on event2 includes; based on work by jmansion; patch from Zack Weinberg. + o Allow specifying the output filename for rpcgen; based on work by jmansion; patch from Zack Weinberg. + o Allow C identifiers as struct names; allow multiple comments in .rpc files; from Zack Weinberg + o Mitigate a race condition when using socket bufferevents in multiple threads. + o Use AC_SEARCH_LIBS, not AC_CHECK_LIB to avoid needless library use. + o Do not allow event_del(ev) to return while that event's callback is executing in another thread. This fixes a nasty race condition. + o event_get_supported_methods() now lists methods that have been disabled with the EVENT_NO* environment options. + o Rename encode_int[64] to evtag_encode_int[64] to avoid polluting the global namespace. The old method names are still available as macros in event2/tag_compat.h. + + + +Changes in 2.0.1-alpha (17 Apr 2009): + o free minheap on event_base_free(); from Christopher Layne + o debug cleanups in signal.c; from Christopher Layne + o provide event_base_new() that does not set the current_base global + o bufferevent_write now uses a const source argument; report from Charles Kerr + o improve documentation on event_base_loopexit; patch from Scott Lamb + o New function, event_{base_}loopbreak. Like event_loopexit, it makes an event loop stop executing and return. Unlike event_loopexit, it keeps subsequent pending events from getting executed. Patch from Scott Lamb + o Check return value of event_add in signal.c + o provide event_reinit() to reintialize an event_base after fork + o New function event_set_mem_functinons. It allows the user to give libevent replacement functions to use for memory management in place of malloc(), free(), etc. This should be generally useful for memory instrumentation, specialized allocators, and so on. + o The kqueue implementation now catches signals that are raised after event_add() is called but before the event_loop() call. This makes it match the other implementations. + o The kqueue implementation now restores original signal handlers correctly when its signal events are removed. + o Check return value of event_add in signal.c + o Add a more powerful evbuffer_readln as a replacement for evbuffer_readline. The new function handles more newline styles, and is more useful with buffers that may contain a nul characters. + o Do not mangle socket handles on 64-bit windows. + o The configure script now takes an --enable-gcc-warnigns option that turns on many optional gcc warnings. (Nick has been building with these for a while, but they might be useful to other developers.) + o move EV_PERSIST handling out of the event backends + o small improvements to evhttp documentation + o always generate Date and Content-Length headers for HTTP/1.1 replies + o set the correct event base for HTTP close events + o When building with GCC, use the "format" attribute to verify type correctness of calls to printf-like functions. + o Rewrite win32.c backend to be O(n lg n) rather than O(n^2). + o Removed obsoleted recalc code + o support for 32-bit tag numbers in rpc structures; this is wire compatible, but changes the API slightly. + o pull setters/getters out of RPC structures into a base class to which we just need to store a pointer; this reduces the memory footprint of these structures. + o prefix {encode,decode}_tag functions with evtag to avoid collisions + o fix a bug with event_rpcgen for integers + o Correctly handle DNS replies with no answers set (Fixes bug 1846282) + o add -Wstrict-aliasing to warnings and more cleanup + o removed linger from http server socket; reported by Ilya Martynov + o event_rpcgen now allows creating integer arrays + o support string arrays in event_rpcgen + o change evrpc hooking to allow pausing of RPCs; this will make it possible for the hook to do some meaning ful work; this is not backwards compatible. + o allow an http request callback to take ownership of a request structure + o allow association of meta data with RPC requests for hook processing + o associate more context for hooks to query such as the connection object + o remove pending timeouts on event_base_free() + o also check EAGAIN for Solaris' event ports; from W.C.A. Wijngaards + o devpoll and evport need reinit; tested by W.C.A Wijngaards + o event_base_get_method; from Springande Ulv + o Send CRLF after each chunk in HTTP output, for compliance with RFC2626. Patch from "propanbutan". Fixes bug 1894184. + o Add a int64_t parsing function, with unit tests, so we can apply Scott Lamb's fix to allow large HTTP values. + o Use a 64-bit field to hold HTTP content-lengths. Patch from Scott Lamb. + o Allow regression code to build even without Python installed + o remove NDEBUG ifdefs from evdns.c + o detect integer types properly on platforms without stdint.h + o udpate documentation of event_loop and event_base_loop; from Tani Hosokawa. + o simplify evbuffer by removing orig_buffer + o do not insert event into list when evsel->add fails + o add support for PUT/DELETE requests; from Josh Rotenberg + o introduce evhttp_accept_socket() to accept from an already created socket + o include Content-Length in reply for HTTP/1.0 requests with keep-alive + o increase listen queue for http sockets to 128; if that is not enough the evhttp_accpet_socket() api can be used with a prepared socket. + o Patch from Tani Hosokawa: make some functions in http.c threadsafe. + o test support for PUT/DELETE requests; from Josh Rotenberg + o rewrite of the evbuffer code to reduce memory copies + o Some older Solaris versions demand that _REENTRANT be defined to get strtok_r(); do so. + o Do not free the kqop file descriptor in other processes, also allow it to be 0; from Andrei Nigmatulin + o Provide OpenSSL style support for multiple threads accessing the same event_base + o make event_rpcgen.py generate code include event-config.h; reported by Sam Banks. + o switch thread support so that locks get allocated as they are needed. + o make event methods static so that they are not exported; from Andrei Nigmatulin + o make RPC replies use application/octet-stream as mime type + o do not delete uninitialized timeout event in evdns + o Correct the documentation on buffer printf functions. + o Don't warn on unimplemented epoll_create(): this isn't a problem, just a reason to fall back to poll or select. + o Correctly handle timeouts larger than 35 minutes on Linux with epoll.c. This is probably a kernel defect, but we'll have to support old kernels anyway even if it gets fixed. + o Make name_from_addr() threadsafe in http.c + o Add new thread-safe interfaces to evdns functions. + o Make all event_tagging interfaces threadsafe. + o Rename internal memory management functions. + o New functions (event_assign, event_new, event_free) for use by apps that want to be safely threadsafe, or want to remain ignorant of the contents of struct event. + o introduce bufferevent_read_buffer; allows reading without memory copy. + o expose bufferevent_setwatermark via header files and fix high watermark on read + o fix a bug in buffrevent read water marks and add a test for them + o fix a bug in which bufferevent_write_buffer would not schedule a write event + o provide bufferevent_input and bufferevent_output without requiring knowledge of the structure + o introduce bufferevent_setcb and bufferevent_setfd to allow better manipulation of bufferevents + o convert evhttp_connection to use bufferevents. + o use libevent's internal timercmp on all platforms, to avoid bugs on old platforms where timercmp(a,b,<=) is buggy. + o Remove the never-exported, never-used evhttp_hostportfile function. + o Support input/output filters for bufferevents; somewhat similar to libio's model. This will allow us to implement SSL, compression, etc, transparently to users of bufferevents such as the http layer. + o allow connections to be removed from an rpc pool + o add new evtimer_assign, signal_assign, evtimer_new, and signal_new functions to manipulate timer and signal events, analagous to the now-recommended event_assign and event_new + o switch internal uses of event_set over to use event_assign. + o introduce evbuffer_contiguous_space() api that tells a user how much data is available in the first buffer chain + o introduce evbuffer_reserve_space() and evbuffer_commit_space() to make processing in filters more efficient. + o reduce system calls for getting current time by caching it. + o separate signal events from io events; making the code less complex. + o support for periodic timeouts + o support for virtual HTTP hosts. + o turn event_initialized() into a function, and add function equivalents to EVENT_SIGNAL and EVENT_FD so that people don't need to include event_struct.h + o Build test directory correctly with CPPFLAGS set. + o Provide an API for retrieving the supported event mechanisms. + o event_base_new_with_config() and corresponding config APIs. + o migrate the evhttp header to event2/ but accessors are still missing. + o deprecate timeout_* event functions by moving them to event_compat.h + o Move windows gettimeofday replacement into a new evutil_gettimeofday(). + o Make configure script work on IRIX. + o provide a method for canceling ongoing http requests. + o Make vsnprintf() returns consistent on win32. + o Fix connection keep-alive behavior for HTTP/1.0 + o Fix use of freed memory in event_reinit; pointed out by Peter Postma + o constify struct timeval * where possible + o make event_get_supported_methods obey environment variables + o support for edge-triggered events on epoll and kqueue backends: patch from Valery Kholodkov + o support for selecting event backends by their features, and for querying the features of a backend. + o change failing behavior of event_base_new_with_config: if a config is provided and no backend is selected, return NULL instead of aborting. + o deliver partial data to request callbacks when chunked callback is set even if there is no chunking on the http level; allows cancelation of requests from within the chunked callback; from Scott Lamb. + o allow min_heap_erase to be called on removed members; from liusifan. + o Rename INPUT and OUTPUT to EVRPC_INPUT and EVRPC_OUTPUT. Retain INPUT/OUTPUT aliases on on-win32 platforms for backwards compatibility. + o Do not use SO_REUSEADDR when connecting + o Support 64-bit integers in RPC structs + o Correct handling of trailing headers in chunked replies; from Scott Lamb. + o Support multi-line HTTP headers; based on a patch from Moshe Litvin + o Reject negative Content-Length headers; anonymous bug report + o Detect CLOCK_MONOTONIC at runtime for evdns; anonymous bug report + o Various HTTP correctness fixes from Scott Lamb + o Fix a bug where deleting signals with the kqueue backend would cause subsequent adds to fail + o Support multiple events listening on the same signal; make signals regular events that go on the same event queue; problem report by Alexander Drozdov. + o Fix a problem with epoll() and reinit; problem report by Alexander Drozdov. + o Fix off-by-one errors in devpoll; from Ian Bell + o Make event_add not change any state if it fails; reported by Ian Bell. + o Fix a bug where headers arriving in multiple packets were not parsed; fix from Jiang Hong; test by me. + o Match the query in DNS replies to the query in the request; from Vsevolod Stakhov. + o Add new utility functions to correctly observe and log winsock errors. + o Do not remove Accept-Encoding header + o Clear the timer cache on entering the event loop; reported by Victor Chang + o Only bind the socket on connect when a local address has been provided; reported by Alejo Sanchez + o Allow setting of local port for evhttp connections to support millions of connections from a single system; from Richard Jones. + o Clear the timer cache when leaving the event loop; reported by Robin Haberkorn + o Fix a typo in setting the global event base; reported by lance. + o Set the 0x20 bit on outgoing alphabetic characters in DNS requests randomly, and insist on a match in replies. This helps resist DNS poisoning attacks. + o Make the http connection close detection work properly with bufferevents and fix a potential memory leak associated with it. + o Restructure the event backends so that they do not need to keep track of events themselves, as a side effect multiple events can use the same fd or signal. + o Add generic implementations for parsing and emiting IPv6 addresses on platforms that do not have inet_ntop and/or inet_pton. + o Allow DNS servers that have IPv6 addresses. + o Add an evbuffer_write_atmost() function to write a limited number of bytes to an fd. + o Refactor internal notify-main-thread logic to prefer eventfd to pipe, then pipe to socketpair, and only use socketpairs as a last resort. + o Try harder to pack all evbuffer reads into as few chains as possible, using readv/WSARecv as appropriate. + o New evthread_use_windows_threads() and evthread_use_pthreads() functions to set up the evthread callbacks with reasonable defaults. + o Change the semantics of timeouts in conjunction with EV_PERSIST; timeouts in that case will now repeat until deleted. + o sendfile, mmap and memory reference support for evbuffers. + o New evutil_make_listen_socket_reuseable() to abstract SO_REUSEADDR. + o New bind-to option to allow DNS clients to bind to an arbitrary port for outgoing requests. + o evbuffers can now be "frozen" to prevent operations at one or both ends. + o Bufferevents now notice external attempts to add data to an inbuf or remove it from an outbuf, and stop them. + o Fix parsing of queries where the encoded queries contained \r, \n or + + o Do not allow internal events to starve lower-priority events. + diff -Nru mysql-5.7-5.7.25/extra/libevent/.clang-format mysql-5.7-5.7.26/extra/libevent/.clang-format --- mysql-5.7-5.7.25/extra/libevent/.clang-format 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/.clang-format 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,63 @@ +--- +Language: Cpp +BasedOnStyle: LLVM + +AccessModifierOffset: -4 + +AlignAfterOpenBracket: DontAlign +AlignEscapedNewlinesLeft: true +# AlignOperands: true +AlignTrailingComments: true + +AllowAllParametersOfDeclarationOnNextLine: true +AllowShortBlocksOnASingleLine: false +AllowShortCaseLabelsOnASingleLine: false +AllowShortFunctionsOnASingleLine: All +AllowShortIfStatementsOnASingleLine: false +AllowShortLoopsOnASingleLine: false + +AlwaysBreakAfterDefinitionReturnType: All +AlwaysBreakBeforeMultilineStrings: false +AlwaysBreakTemplateDeclarations: false + +# BinPackArguments: false +# BinPackParameters: true + +BreakBeforeBinaryOperators: false +BreakBeforeBraces: Custom +BraceWrapping: { AfterFunction: true } +BreakBeforeTernaryOperators: true +BreakConstructorInitializersBeforeComma: true + +ColumnLimit: 80 + +ContinuationIndentWidth: 4 + +DerivePointerAlignment: false #XXX +DisableFormat: false +ExperimentalAutoDetectBinPacking: false #XXX +ForEachMacros: [ LIST_FOREACH, SIMPLEQ_FOREACH, CIRCLEQ_FOREACH, TAILQ_FOREACH, TAILQ_FOREACH_REVERSE, HT_FOREACH ] + +IndentCaseLabels: false +IndentFunctionDeclarationAfterType: false +IndentWidth: 4 +IndentWrappedFunctionNames: false + +KeepEmptyLinesAtTheStartOfBlocks: true +MaxEmptyLinesToKeep: 2 + +PointerAlignment: Right #XXX + +# SpaceAfterCStyleCast: false +SpaceBeforeAssignmentOperators: true +SpaceBeforeParens: ControlStatements +SpaceInEmptyParentheses: false +SpacesBeforeTrailingComments: 1 +SpacesInAngles: false +SpacesInCStyleCastParentheses: false +SpacesInParentheses: false +Standard: Cpp03 +TabWidth: 4 +UseTab: Always +SortIncludes: false +... diff -Nru mysql-5.7-5.7.25/extra/libevent/cmake/AddCompilerFlags.cmake mysql-5.7-5.7.26/extra/libevent/cmake/AddCompilerFlags.cmake --- mysql-5.7-5.7.25/extra/libevent/cmake/AddCompilerFlags.cmake 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/cmake/AddCompilerFlags.cmake 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,13 @@ +include(CheckCCompilerFlag) + +macro(add_compiler_flags) + foreach(flag ${ARGN}) + string(REGEX REPLACE "[-.+/:= ]" "_" _flag_esc "${flag}") + + check_c_compiler_flag("${flag}" check_c_compiler_flag_${_flag_esc}) + + if (check_c_compiler_flag_${_flag_esc}) + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${flag}") + endif() + endforeach() +endmacro() diff -Nru mysql-5.7-5.7.25/extra/libevent/cmake/CheckFileOffsetBits.c mysql-5.7-5.7.26/extra/libevent/cmake/CheckFileOffsetBits.c --- mysql-5.7-5.7.25/extra/libevent/cmake/CheckFileOffsetBits.c 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/cmake/CheckFileOffsetBits.c 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,14 @@ +#include + +#define KB ((off_t)1024) +#define MB ((off_t)1024 * KB) +#define GB ((off_t)1024 * MB) +#define TB ((off_t)1024 * GB) +int t2[(((64 * GB -1) % 671088649) == 268434537) + && (((TB - (64 * GB -1) + 255) % 1792151290) == 305159546)? 1: -1]; + +int main() +{ + ; + return 0; +} diff -Nru mysql-5.7-5.7.25/extra/libevent/cmake/CheckFileOffsetBits.cmake mysql-5.7-5.7.26/extra/libevent/cmake/CheckFileOffsetBits.cmake --- mysql-5.7-5.7.25/extra/libevent/cmake/CheckFileOffsetBits.cmake 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/cmake/CheckFileOffsetBits.cmake 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,43 @@ +# - Check if _FILE_OFFSET_BITS macro needed for large files +# CHECK_FILE_OFFSET_BITS () +# +# The following variables may be set before calling this macro to +# modify the way the check is run: +# +# CMAKE_REQUIRED_FLAGS = string of compile command line flags +# CMAKE_REQUIRED_DEFINITIONS = list of macros to define (-DFOO=bar) +# CMAKE_REQUIRED_INCLUDES = list of include directories +# Copyright (c) 2009, Michihiro NAKAJIMA +# +# Redistribution and use is allowed according to the terms of the BSD license. +# For details see the accompanying COPYING-CMAKE-SCRIPTS file. + +#INCLUDE(CheckCSourceCompiles) + +GET_FILENAME_COMPONENT(_selfdir_CheckFileOffsetBits + "${CMAKE_CURRENT_LIST_FILE}" PATH) + +MACRO (CHECK_FILE_OFFSET_BITS) + IF(NOT DEFINED _FILE_OFFSET_BITS) + MESSAGE(STATUS "Cheking _FILE_OFFSET_BITS for large files") + TRY_COMPILE(__WITHOUT_FILE_OFFSET_BITS_64 + ${CMAKE_CURRENT_BINARY_DIR} + ${_selfdir_CheckFileOffsetBits}/CheckFileOffsetBits.c + COMPILE_DEFINITIONS ${CMAKE_REQUIRED_DEFINITIONS}) + IF(NOT __WITHOUT_FILE_OFFSET_BITS_64) + TRY_COMPILE(__WITH_FILE_OFFSET_BITS_64 + ${CMAKE_CURRENT_BINARY_DIR} + ${_selfdir_CheckFileOffsetBits}/CheckFileOffsetBits.c + COMPILE_DEFINITIONS ${CMAKE_REQUIRED_DEFINITIONS} -D_FILE_OFFSET_BITS=64) + ENDIF(NOT __WITHOUT_FILE_OFFSET_BITS_64) + + IF(NOT __WITHOUT_FILE_OFFSET_BITS_64 AND __WITH_FILE_OFFSET_BITS_64) + SET(_FILE_OFFSET_BITS 64 CACHE INTERNAL "_FILE_OFFSET_BITS macro needed for large files") + MESSAGE(STATUS "Cheking _FILE_OFFSET_BITS for large files - needed") + ELSE(NOT __WITHOUT_FILE_OFFSET_BITS_64 AND __WITH_FILE_OFFSET_BITS_64) + SET(_FILE_OFFSET_BITS "" CACHE INTERNAL "_FILE_OFFSET_BITS macro needed for large files") + MESSAGE(STATUS "Cheking _FILE_OFFSET_BITS for large files - not needed") + ENDIF(NOT __WITHOUT_FILE_OFFSET_BITS_64 AND __WITH_FILE_OFFSET_BITS_64) + ENDIF(NOT DEFINED _FILE_OFFSET_BITS) + +ENDMACRO (CHECK_FILE_OFFSET_BITS) diff -Nru mysql-5.7-5.7.25/extra/libevent/cmake/CheckFunctionExistsEx.c mysql-5.7-5.7.26/extra/libevent/cmake/CheckFunctionExistsEx.c --- mysql-5.7-5.7.25/extra/libevent/cmake/CheckFunctionExistsEx.c 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/cmake/CheckFunctionExistsEx.c 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,30 @@ +#ifdef CHECK_FUNCTION_EXISTS + +#ifndef _WIN32 +char CHECK_FUNCTION_EXISTS(); +#endif + +#ifdef __CLASSIC_C__ +int main(){ + int ac; + char*av[]; +#else +int main(int ac, char*av[]){ +#endif +#ifdef _WIN32 + void * p = &CHECK_FUNCTION_EXISTS; +#else + CHECK_FUNCTION_EXISTS(); +#endif + if(ac > 1000) + { + return *av[0]; + } + return 0; +} + +#else /* CHECK_FUNCTION_EXISTS */ + +# error "CHECK_FUNCTION_EXISTS has to specify the function" + +#endif /* CHECK_FUNCTION_EXISTS */ diff -Nru mysql-5.7-5.7.25/extra/libevent/cmake/CheckFunctionExistsEx.cmake mysql-5.7-5.7.26/extra/libevent/cmake/CheckFunctionExistsEx.cmake --- mysql-5.7-5.7.25/extra/libevent/cmake/CheckFunctionExistsEx.cmake 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/cmake/CheckFunctionExistsEx.cmake 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,69 @@ +# - Check if a C function can be linked +# CHECK_FUNCTION_EXISTS( ) +# +# Check that the is provided by libraries on the system and +# store the result in a . This does not verify that any +# system header file declares the function, only that it can be found +# at link time (considure using CheckSymbolExists). +# +# The following variables may be set before calling this macro to +# modify the way the check is run: +# +# CMAKE_REQUIRED_FLAGS = string of compile command line flags +# CMAKE_REQUIRED_DEFINITIONS = list of macros to define (-DFOO=bar) +# CMAKE_REQUIRED_INCLUDES = list of include directories +# CMAKE_REQUIRED_LIBRARIES = list of libraries to link + +#============================================================================= +# Copyright 2002-2011 Kitware, Inc. +# +# Distributed under the OSI-approved BSD License (the "License"); +# see accompanying file Copyright.txt for details. +# +# This software is distributed WITHOUT ANY WARRANTY; without even the +# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +# See the License for more information. +#============================================================================= +# (To distribute this file outside of CMake, substitute the full +# License text for the above reference.) + +MACRO(CHECK_FUNCTION_EXISTS_EX FUNCTION VARIABLE) + IF(${VARIABLE} MATCHES "^${VARIABLE}$") + SET(MACRO_CHECK_FUNCTION_DEFINITIONS + "-DCHECK_FUNCTION_EXISTS=${FUNCTION} ${CMAKE_REQUIRED_FLAGS}") + MESSAGE(STATUS "Looking for ${FUNCTION}") + IF(CMAKE_REQUIRED_LIBRARIES) + SET(CHECK_FUNCTION_EXISTS_ADD_LIBRARIES + "-DLINK_LIBRARIES:STRING=${CMAKE_REQUIRED_LIBRARIES}") + ELSE(CMAKE_REQUIRED_LIBRARIES) + SET(CHECK_FUNCTION_EXISTS_ADD_LIBRARIES) + ENDIF(CMAKE_REQUIRED_LIBRARIES) + IF(CMAKE_REQUIRED_INCLUDES) + SET(CHECK_FUNCTION_EXISTS_ADD_INCLUDES + "-DINCLUDE_DIRECTORIES:STRING=${CMAKE_REQUIRED_INCLUDES}") + ELSE(CMAKE_REQUIRED_INCLUDES) + SET(CHECK_FUNCTION_EXISTS_ADD_INCLUDES) + ENDIF(CMAKE_REQUIRED_INCLUDES) + TRY_COMPILE(${VARIABLE} + ${CMAKE_BINARY_DIR} + ${PROJECT_SOURCE_DIR}/cmake/CheckFunctionExistsEx.c + COMPILE_DEFINITIONS ${CMAKE_REQUIRED_DEFINITIONS} + CMAKE_FLAGS -DCOMPILE_DEFINITIONS:STRING=${MACRO_CHECK_FUNCTION_DEFINITIONS} + "${CHECK_FUNCTION_EXISTS_ADD_LIBRARIES}" + "${CHECK_FUNCTION_EXISTS_ADD_INCLUDES}" + OUTPUT_VARIABLE OUTPUT) + IF(${VARIABLE}) + SET(${VARIABLE} 1 CACHE INTERNAL "Have function ${FUNCTION}") + MESSAGE(STATUS "Looking for ${FUNCTION} - found") + FILE(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log + "Determining if the function ${FUNCTION} exists passed with the following output:\n" + "${OUTPUT}\n\n") + ELSE(${VARIABLE}) + MESSAGE(STATUS "Looking for ${FUNCTION} - not found") + SET(${VARIABLE} "" CACHE INTERNAL "Have function ${FUNCTION}") + FILE(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log + "Determining if the function ${FUNCTION} exists failed with the following output:\n" + "${OUTPUT}\n\n") + ENDIF(${VARIABLE}) + ENDIF() +ENDMACRO(CHECK_FUNCTION_EXISTS_EX) diff -Nru mysql-5.7-5.7.25/extra/libevent/cmake/CheckFunctionKeywords.cmake mysql-5.7-5.7.26/extra/libevent/cmake/CheckFunctionKeywords.cmake --- mysql-5.7-5.7.25/extra/libevent/cmake/CheckFunctionKeywords.cmake 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/cmake/CheckFunctionKeywords.cmake 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,14 @@ +include(CheckCSourceCompiles) + +macro(check_function_keywords _wordlist) + set(${_result} "") + foreach(flag ${_wordlist}) + string(REGEX REPLACE "[-+/ ()]" "_" flagname "${flag}") + string(TOUPPER "${flagname}" flagname) + set(have_flag "HAVE_${flagname}") + check_c_source_compiles("${flag} void func(); void func() { } int main() { func(); return 0; }" ${have_flag}) + if(${have_flag} AND NOT ${_result}) + set(${_result} "${flag}") + endif(${have_flag} AND NOT ${_result}) + endforeach(flag) +endmacro(check_function_keywords) diff -Nru mysql-5.7-5.7.25/extra/libevent/cmake/CheckPrototypeDefinition.c.in mysql-5.7-5.7.26/extra/libevent/cmake/CheckPrototypeDefinition.c.in --- mysql-5.7-5.7.25/extra/libevent/cmake/CheckPrototypeDefinition.c.in 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/cmake/CheckPrototypeDefinition.c.in 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,29 @@ +@CHECK_PROTOTYPE_DEFINITION_HEADER@ + +static void cmakeRequireSymbol(int dummy, ...) { + (void) dummy; +} + +static void checkSymbol(void) { +#ifndef @CHECK_PROTOTYPE_DEFINITION_SYMBOL@ + cmakeRequireSymbol(0, &@CHECK_PROTOTYPE_DEFINITION_SYMBOL@); +#endif +} + +@CHECK_PROTOTYPE_DEFINITION_PROTO@ { + return @CHECK_PROTOTYPE_DEFINITION_RETURN@; +} + +#ifdef __CLASSIC_C__ +int main() { + int ac; + char*av[]; +#else +int main(int ac, char *av[]) { +#endif + checkSymbol(); + if (ac > 1000) { + return *av[0]; + } + return 0; +} diff -Nru mysql-5.7-5.7.25/extra/libevent/cmake/CheckPrototypeDefinition.cmake mysql-5.7-5.7.26/extra/libevent/cmake/CheckPrototypeDefinition.cmake --- mysql-5.7-5.7.25/extra/libevent/cmake/CheckPrototypeDefinition.cmake 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/cmake/CheckPrototypeDefinition.cmake 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,82 @@ +# - Check if the protoype we expect is correct. +# check_prototype_definition(FUNCTION PROTOTYPE RETURN HEADER VARIABLE) +# +# FUNCTION - The name of the function (used to check if prototype exists) +# PROTOTYPE- The prototype to check. +# RETURN - The return value of the function. +# HEADER - The header files required. +# VARIABLE - The variable to store the result. +# +# Example: +# +# check_prototype_definition(getpwent_r +# "struct passwd *getpwent_r(struct passwd *src, char *buf, int buflen)" +# "NULL" +# "unistd.h;pwd.h" +# SOLARIS_GETPWENT_R) +# +# The following variables may be set before calling this macro to +# modify the way the check is run: +# +# CMAKE_REQUIRED_FLAGS = string of compile command line flags +# CMAKE_REQUIRED_DEFINITIONS = list of macros to define (-DFOO=bar) +# CMAKE_REQUIRED_INCLUDES = list of include directories +# CMAKE_REQUIRED_LIBRARIES = list of libraries to link + + +function(CHECK_PROTOTYPE_DEFINITION _FUNCTION _PROTOTYPE _RETURN _HEADER _VARIABLE) + if (${_VARIABLE} MATCHES "^${_VARIABLE}$") + set(CHECK_PROTOTYPE_DEFINITION_CONTENT "/* */\n") + + set(CHECK_PROTOTYPE_DEFINITION_FLAGS ${CMAKE_REQUIRED_FLAGS}) + if (CMAKE_REQUIRED_LIBRARIES) + set(CHECK_PROTOTYPE_DEFINITION_LIBS + "-DLINK_LIBRARIES:STRING=${CMAKE_REQUIRED_LIBRARIES}") + else(CMAKE_REQUIRED_LIBRARIES) + set(CHECK_PROTOTYPE_DEFINITION_LIBS) + endif(CMAKE_REQUIRED_LIBRARIES) + if (CMAKE_REQUIRED_INCLUDES) + set(CMAKE_SYMBOL_EXISTS_INCLUDES + "-DINCLUDE_DIRECTORIES:STRING=${CMAKE_REQUIRED_INCLUDES}") + else(CMAKE_REQUIRED_INCLUDES) + set(CMAKE_SYMBOL_EXISTS_INCLUDES) + endif(CMAKE_REQUIRED_INCLUDES) + + foreach(_FILE ${_HEADER}) + set(CHECK_PROTOTYPE_DEFINITION_HEADER + "${CHECK_PROTOTYPE_DEFINITION_HEADER}#include <${_FILE}>\n") + endforeach(_FILE) + + set(CHECK_PROTOTYPE_DEFINITION_SYMBOL ${_FUNCTION}) + set(CHECK_PROTOTYPE_DEFINITION_PROTO ${_PROTOTYPE}) + set(CHECK_PROTOTYPE_DEFINITION_RETURN ${_RETURN}) + + configure_file("${PROJECT_SOURCE_DIR}/cmake/CheckPrototypeDefinition.c.in" + "${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/CheckPrototypeDefinition.c" @ONLY) + + file(READ ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/CheckPrototypeDefinition.c _SOURCE) + + try_compile(${_VARIABLE} + ${CMAKE_BINARY_DIR} + ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/CheckPrototypeDefinition.c + COMPILE_DEFINITIONS ${CMAKE_REQUIRED_DEFINITIONS} + CMAKE_FLAGS -DCOMPILE_DEFINITIONS:STRING=${CHECK_PROTOTYPE_DEFINITION_FLAGS} + "${CHECK_PROTOTYPE_DEFINITION_LIBS}" + "${CMAKE_SYMBOL_EXISTS_INCLUDES}" + OUTPUT_VARIABLE OUTPUT) + + if (${_VARIABLE}) + set(${_VARIABLE} 1 CACHE INTERNAL "Have correct prototype for ${_FUNCTION}") + message(STATUS "Checking prototype ${_FUNCTION} for ${_VARIABLE} - True") + file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log + "Determining if the prototype ${_FUNCTION} exists for ${_VARIABLE} passed with the following output:\n" + "${OUTPUT}\n\n") + else (${_VARIABLE}) + message(STATUS "Checking prototype ${_FUNCTION} for ${_VARIABLE} - False") + set(${_VARIABLE} 0 CACHE INTERNAL "Have correct prototype for ${_FUNCTION}") + file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log + "Determining if the prototype ${_FUNCTION} exists for ${_VARIABLE} failed with the following output:\n" + "${OUTPUT}\n\n${_SOURCE}\n\n") + endif (${_VARIABLE}) + endif() +endfunction(CHECK_PROTOTYPE_DEFINITION) diff -Nru mysql-5.7-5.7.25/extra/libevent/cmake/CheckWaitpidSupportWNOWAIT.cmake mysql-5.7-5.7.26/extra/libevent/cmake/CheckWaitpidSupportWNOWAIT.cmake --- mysql-5.7-5.7.25/extra/libevent/cmake/CheckWaitpidSupportWNOWAIT.cmake 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/cmake/CheckWaitpidSupportWNOWAIT.cmake 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,18 @@ +include(CheckCSourceRuns) + +check_c_source_runs( +" +#include +#include +#include +#include + +int +main(int argc, char** argv) +{ + pid_t pid; + int status; + if ((pid = fork()) == 0) _exit(0); + _exit(waitpid(pid, &status, WNOWAIT) == -1); +}" +EVENT__HAVE_WAITPID_WITH_WNOWAIT) diff -Nru mysql-5.7-5.7.25/extra/libevent/cmake/CheckWorkingKqueue.cmake mysql-5.7-5.7.26/extra/libevent/cmake/CheckWorkingKqueue.cmake --- mysql-5.7-5.7.25/extra/libevent/cmake/CheckWorkingKqueue.cmake 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/cmake/CheckWorkingKqueue.cmake 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,52 @@ +include(CheckCSourceRuns) + +check_c_source_runs( +" +#include +#include +#include +#include +#include +#include + +int +main(int argc, char **argv) +{ + int kq; + int n; + int fd[2]; + struct kevent ev; + struct timespec ts; + char buf[8000]; + + if (pipe(fd) == -1) + exit(1); + if (fcntl(fd[1], F_SETFL, O_NONBLOCK) == -1) + exit(1); + + while ((n = write(fd[1], buf, sizeof(buf))) == sizeof(buf)) + ; + + if ((kq = kqueue()) == -1) + exit(1); + + memset(&ev, 0, sizeof(ev)); + ev.ident = fd[1]; + ev.filter = EVFILT_WRITE; + ev.flags = EV_ADD | EV_ENABLE; + n = kevent(kq, &ev, 1, NULL, 0, NULL); + if (n == -1) + exit(1); + + read(fd[0], buf, sizeof(buf)); + + ts.tv_sec = 0; + ts.tv_nsec = 0; + n = kevent(kq, NULL, 0, &ev, 1, &ts); + if (n == -1 || n == 0) + exit(1); + + exit(0); +} + +" EVENT__HAVE_WORKING_KQUEUE) \ No newline at end of file diff -Nru mysql-5.7-5.7.25/extra/libevent/cmake/CodeCoverage.cmake mysql-5.7-5.7.26/extra/libevent/cmake/CodeCoverage.cmake --- mysql-5.7-5.7.25/extra/libevent/cmake/CodeCoverage.cmake 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/cmake/CodeCoverage.cmake 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,165 @@ +# +# Boost Software License - Version 1.0 - August 17th, 2003 +# +# Permission is hereby granted, free of charge, to any person or organization +# obtaining a copy of the software and accompanying documentation covered by +# this license (the "Software") to use, reproduce, display, distribute, +# execute, and transmit the Software, and to prepare derivative works of the +# Software, and to permit third-parties to whom the Software is furnished to +# do so, all subject to the following: +# +# The copyright notices in the Software and this entire statement, including +# the above license grant, this restriction and the following disclaimer, +# must be included in all copies of the Software, in whole or in part, and +# all derivative works of the Software, unless such copies or derivative +# works are solely in the form of machine-executable object code generated by +# a source language processor. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT +# SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE +# FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, +# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +# DEALINGS IN THE SOFTWARE. +# +# 2012-01-31, Lars Bilke +# - Enable Code Coverage +# +# 2013-09-17, Joakim Söderberg +# - Added support for Clang. +# - Some additional usage instructions. +# +# 2016-11-02, Azat Khuzhin +# - Adopt for C compiler only (libevent) +# +# USAGE: +# 1. Copy this file into your cmake modules path. +# +# 2. Add the following line to your CMakeLists.txt: +# INCLUDE(CodeCoverage) +# +# 3. Set compiler flags to turn off optimization and enable coverage: +# SET(CMAKE_CXX_FLAGS "-g -O0 -fprofile-arcs -ftest-coverage") +# SET(CMAKE_C_FLAGS "-g -O0 -fprofile-arcs -ftest-coverage") +# +# 3. Use the function SETUP_TARGET_FOR_COVERAGE to create a custom make target +# which runs your test executable and produces a lcov code coverage report: +# Example: +# SETUP_TARGET_FOR_COVERAGE( +# my_coverage_target # Name for custom target. +# test_driver # Name of the test driver executable that runs the tests. +# # NOTE! This should always have a ZERO as exit code +# # otherwise the coverage generation will not complete. +# coverage # Name of output directory. +# ) +# +# 4. Build a Debug build: +# cmake -DCMAKE_BUILD_TYPE=Debug .. +# make +# make my_coverage_target +# +# + +# Check prereqs +FIND_PROGRAM( GCOV_PATH gcov ) +FIND_PROGRAM( LCOV_PATH lcov ) +FIND_PROGRAM( GENHTML_PATH genhtml ) +FIND_PROGRAM( GCOVR_PATH gcovr PATHS ${CMAKE_SOURCE_DIR}/tests) + +IF(NOT GCOV_PATH) + MESSAGE(FATAL_ERROR "gcov not found! Aborting...") +ENDIF() # NOT GCOV_PATH + +IF(NOT CMAKE_COMPILER_IS_GNUCC) + # Clang version 3.0.0 and greater now supports gcov as well. + MESSAGE(WARNING "Compiler is not GNU gcc! Clang Version 3.0.0 and greater supports gcov as well, but older versions don't.") + + IF(NOT "${CMAKE_C_COMPILER_ID}" STREQUAL "Clang") + MESSAGE(FATAL_ERROR "Compiler is not GNU gcc! Aborting...") + ENDIF() +ENDIF() # NOT CMAKE_COMPILER_IS_GNUCC + +IF ( NOT CMAKE_BUILD_TYPE STREQUAL "Debug" ) + MESSAGE( WARNING "Code coverage results with an optimized (non-Debug) build may be misleading" ) +ENDIF() # NOT CMAKE_BUILD_TYPE STREQUAL "Debug" + + +# Param _targetname The name of new the custom make target +# Param _testrunner The name of the target which runs the tests. +# MUST return ZERO always, even on errors. +# If not, no coverage report will be created! +# Param _outputname lcov output is generated as _outputname.info +# HTML report is generated in _outputname/index.html +# Optional fourth parameter is passed as arguments to _testrunner +# Pass them in list form, e.g.: "-j;2" for -j 2 +FUNCTION(SETUP_TARGET_FOR_COVERAGE _targetname _testrunner _outputname) + + IF(NOT LCOV_PATH) + MESSAGE(FATAL_ERROR "lcov not found! Aborting...") + ENDIF() # NOT LCOV_PATH + + IF(NOT GENHTML_PATH) + MESSAGE(FATAL_ERROR "genhtml not found! Aborting...") + ENDIF() # NOT GENHTML_PATH + + # Setup target + ADD_CUSTOM_TARGET(${_targetname} + + # Cleanup lcov + ${LCOV_PATH} --directory . --zerocounters + + # Run tests + COMMAND ${_testrunner} ${ARGV3} + + # Capturing lcov counters and generating report + COMMAND ${LCOV_PATH} --directory . --capture --output-file ${_outputname}.info + COMMAND ${LCOV_PATH} --remove ${_outputname}.info 'tests/*' '/usr/*' --output-file ${_outputname}.info.cleaned + COMMAND ${GENHTML_PATH} -o ${_outputname} ${_outputname}.info.cleaned + COMMAND ${CMAKE_COMMAND} -E remove ${_outputname}.info ${_outputname}.info.cleaned + + WORKING_DIRECTORY ${CMAKE_BINARY_DIR} + COMMENT "Resetting code coverage counters to zero.\nProcessing code coverage counters and generating report." + ) + + # Show info where to find the report + ADD_CUSTOM_COMMAND(TARGET ${_targetname} POST_BUILD + COMMAND ; + COMMENT "Open ./${_outputname}/index.html in your browser to view the coverage report." + ) + +ENDFUNCTION() # SETUP_TARGET_FOR_COVERAGE + +# Param _targetname The name of new the custom make target +# Param _testrunner The name of the target which runs the tests +# Param _outputname cobertura output is generated as _outputname.xml +# Optional fourth parameter is passed as arguments to _testrunner +# Pass them in list form, e.g.: "-j;2" for -j 2 +FUNCTION(SETUP_TARGET_FOR_COVERAGE_COBERTURA _targetname _testrunner _outputname) + + IF(NOT PYTHON_EXECUTABLE) + MESSAGE(FATAL_ERROR "Python not found! Aborting...") + ENDIF() # NOT PYTHON_EXECUTABLE + + IF(NOT GCOVR_PATH) + MESSAGE(FATAL_ERROR "gcovr not found! Aborting...") + ENDIF() # NOT GCOVR_PATH + + ADD_CUSTOM_TARGET(${_targetname} + + # Run tests + ${_testrunner} ${ARGV3} + + # Running gcovr + COMMAND ${GCOVR_PATH} -x -r ${CMAKE_SOURCE_DIR} -e '${CMAKE_SOURCE_DIR}/tests/' -o ${_outputname}.xml + WORKING_DIRECTORY ${CMAKE_BINARY_DIR} + COMMENT "Running gcovr to produce Cobertura code coverage report." + ) + + # Show info where to find the report + ADD_CUSTOM_COMMAND(TARGET ${_targetname} POST_BUILD + COMMAND ; + COMMENT "Cobertura code coverage report saved in ${_outputname}.xml." + ) + +ENDFUNCTION() # SETUP_TARGET_FOR_COVERAGE_COBERTURA diff -Nru mysql-5.7-5.7.25/extra/libevent/cmake/COPYING-CMAKE-SCRIPTS mysql-5.7-5.7.26/extra/libevent/cmake/COPYING-CMAKE-SCRIPTS --- mysql-5.7-5.7.25/extra/libevent/cmake/COPYING-CMAKE-SCRIPTS 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/cmake/COPYING-CMAKE-SCRIPTS 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,22 @@ +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 copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. +3. The name of the author may not be used to endorse or promote products + derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. \ No newline at end of file diff -Nru mysql-5.7-5.7.25/extra/libevent/cmake/Copyright.txt mysql-5.7-5.7.26/extra/libevent/cmake/Copyright.txt --- mysql-5.7-5.7.25/extra/libevent/cmake/Copyright.txt 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/cmake/Copyright.txt 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,57 @@ +CMake - Cross Platform Makefile Generator +Copyright 2000-2013 Kitware, Inc. +Copyright 2000-2011 Insight Software Consortium +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +* Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +* Neither the names of Kitware, Inc., the Insight Software Consortium, + nor the names of their contributors may be used to endorse or promote + products derived from this software without specific prior written + permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +------------------------------------------------------------------------------ + +The above copyright and license notice applies to distributions of +CMake in source and binary form. Some source files contain additional +notices of original copyright by their contributors; see each source +for details. Third-party software packages supplied with CMake under +compatible licenses provide their own copyright notices documented in +corresponding subdirectories. + +------------------------------------------------------------------------------ + +CMake was initially developed by Kitware with the following sponsorship: + + * National Library of Medicine at the National Institutes of Health + as part of the Insight Segmentation and Registration Toolkit (ITK). + + * US National Labs (Los Alamos, Livermore, Sandia) ASC Parallel + Visualization Initiative. + + * National Alliance for Medical Image Computing (NAMIC) is funded by the + National Institutes of Health through the NIH Roadmap for Medical Research, + Grant U54 EB005149. + + * Kitware, Inc. \ No newline at end of file diff -Nru mysql-5.7-5.7.25/extra/libevent/cmake/FindGit.cmake mysql-5.7-5.7.26/extra/libevent/cmake/FindGit.cmake --- mysql-5.7-5.7.25/extra/libevent/cmake/FindGit.cmake 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/cmake/FindGit.cmake 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,45 @@ +# The module defines the following variables: +# GIT_EXECUTABLE - path to git command line client +# GIT_FOUND - true if the command line client was found +# Example usage: +# find_package(Git) +# if(GIT_FOUND) +# message("git found: ${GIT_EXECUTABLE}") +# endif() + +#============================================================================= +# Copyright 2010 Kitware, Inc. +# +# Distributed under the OSI-approved BSD License (the "License"); +# see accompanying file Copyright.txt for details. +# +# This software is distributed WITHOUT ANY WARRANTY; without even the +# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +# See the License for more information. +#============================================================================= +# (To distributed this file outside of CMake, substitute the full +# License text for the above reference.) + +# Look for 'git' or 'eg' (easy git) +set(git_names git eg) + +# Prefer .cmd variants on Windows unless running in a Makefile +# in the MSYS shell. +if(WIN32) + if(NOT CMAKE_GENERATOR MATCHES "MSYS") + set(git_names git.cmd git eg.cmd eg) + endif() +endif() + +find_program(GIT_EXECUTABLE + NAMES ${git_names} + DOC "git command line client") + +mark_as_advanced(GIT_EXECUTABLE) + +# Handle the QUIETLY and REQUIRED arguments and set GIT_FOUND to TRUE if +# all listed variables are TRUE + +include(FindPackageHandleStandardArgs) +find_package_handle_standard_args(Git DEFAULT_MSG GIT_EXECUTABLE) + diff -Nru mysql-5.7-5.7.25/extra/libevent/cmake/LibeventConfigBuildTree.cmake.in mysql-5.7-5.7.26/extra/libevent/cmake/LibeventConfigBuildTree.cmake.in --- mysql-5.7-5.7.25/extra/libevent/cmake/LibeventConfigBuildTree.cmake.in 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/cmake/LibeventConfigBuildTree.cmake.in 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,17 @@ +# - Config file for the Libevent package +# It defines the following variables +# LIBEVENT_INCLUDE_DIRS - include directories for FooBar +# LIBEVENT_LIBRARIES - libraries to link against + +# Get the path of the current file. +get_filename_component(LIBEVENT_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH) + +# Set the include directories. +set(LIBEVENT_INCLUDE_DIRS "@EVENT__INCLUDE_DIRS@") + +# Include the project Targets file, this contains definitions for IMPORTED targets. +include(${LIBEVENT_CMAKE_DIR}/LibeventTargets.cmake) + +# IMPORTED targets from LibeventTargets.cmake +set(LIBEVENT_LIBRARIES event event_core event_extra) + diff -Nru mysql-5.7-5.7.25/extra/libevent/cmake/LibeventConfig.cmake.in mysql-5.7-5.7.26/extra/libevent/cmake/LibeventConfig.cmake.in --- mysql-5.7-5.7.25/extra/libevent/cmake/LibeventConfig.cmake.in 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/cmake/LibeventConfig.cmake.in 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,17 @@ +# - Config file for the Libevent package +# It defines the following variables +# LIBEVENT_INCLUDE_DIRS - include directories for FooBar +# LIBEVENT_LIBRARIES - libraries to link against + +# Get the path of the current file. +get_filename_component(LIBEVENT_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH) + +# Set the include directories. +set(LIBEVENT_INCLUDE_DIRS "@EVENT_INSTALL_INCLUDE_DIR@") + +# Include the project Targets file, this contains definitions for IMPORTED targets. +include(${LIBEVENT_CMAKE_DIR}/LibeventTargets.cmake) + +# IMPORTED targets from LibeventTargets.cmake +set(LIBEVENT_LIBRARIES event event_core event_extra) + diff -Nru mysql-5.7-5.7.25/extra/libevent/cmake/LibeventConfigVersion.cmake.in mysql-5.7-5.7.26/extra/libevent/cmake/LibeventConfigVersion.cmake.in --- mysql-5.7-5.7.25/extra/libevent/cmake/LibeventConfigVersion.cmake.in 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/cmake/LibeventConfigVersion.cmake.in 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,11 @@ +set(PACKAGE_VERSION "@EVENT_PACKAGE_VERSION@") + +# Check whether the requested PACKAGE_FIND_VERSION is compatible +if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}") + set(PACKAGE_VERSION_COMPATIBLE FALSE) +else() + set(PACKAGE_VERSION_COMPATIBLE TRUE) + if ("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}") + set(PACKAGE_VERSION_EXACT TRUE) + endif() +endif() diff -Nru mysql-5.7-5.7.25/extra/libevent/cmake/VersionViaGit.cmake mysql-5.7-5.7.26/extra/libevent/cmake/VersionViaGit.cmake --- mysql-5.7-5.7.25/extra/libevent/cmake/VersionViaGit.cmake 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/cmake/VersionViaGit.cmake 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,53 @@ +# This module defines the following variables utilizing +# git to determine the parent tag. And if found the macro +# will attempt to parse them in the github tag fomat +# +# Usful for auto-versionin in ou CMakeLists +# +# EVENT_GIT___VERSION_FOUND - Version variables foud +# EVENT_GIT___VERSION_MAJOR - Major version. +# EVENT_GIT___VERSION_MINOR - Minor version +# EVENT_GIT___VERSION_STAGE - Stage version +# +# Example usage: +# +# event_fuzzy_version_from_git() +# if (EVENT_GIT___VERSION_FOUND) +# message("Libvent major=${EVENT_GIT___VERSION_MAJOR}") +# message(" minor=${EVENT_GIT___VERSION_MINOR}") +# message(" patch=${EVENT_GIT___VERSION_PATCH}") +# message(" stage=${EVENT_GIT___VERSION_STAGE}") +# endif() + +include(FindGit) + +macro(event_fuzzy_version_from_git) + set(EVENT_GIT___VERSION_FOUND FALSE) + + # set our defaults. + set(EVENT_GIT___VERSION_MAJOR 2) + set(EVENT_GIT___VERSION_MINOR 1) + set(EVENT_GIT___VERSION_PATCH 8) + set(EVENT_GIT___VERSION_STAGE "stable") + +## find_package(Git) +## +## if (GIT_FOUND) +## execute_process( +## COMMAND +## ${GIT_EXECUTABLE} describe --abbrev=0 +## WORKING_DIRECTORY +## ${PROJECT_SOURCE_DIR} +## RESULT_VARIABLE +## GITRET +## OUTPUT_VARIABLE +## GITVERSION) +## +## if (GITRET EQUAL 0) +## string(REGEX REPLACE "^release-([0-9]+)\\.([0-9]+)\\.([0-9]+)-(.*)" "\\1" EVENT_GIT___VERSION_MAJOR ${GITVERSION}) +## string(REGEX REPLACE "^release-([0-9]+)\\.([0-9]+)\\.([0-9]+)-(.*)" "\\2" EVENT_GIT___VERSION_MINOR ${GITVERSION}) +## string(REGEX REPLACE "^release-([0-9]+)\\.([0-9]+)\\.([0-9]+)-(.*)" "\\3" EVENT_GIT___VERSION_PATCH ${GITVERSION}) +## string(REGEX REPLACE "^release-([0-9]+)\\.([0-9]+)\\.([0-9]+)-([aA-zZ]+)" "\\4" EVENT_GIT___VERSION_STAGE ${GITVERSION}) +## endif() +## endif() +endmacro() diff -Nru mysql-5.7-5.7.25/extra/libevent/CMakeLists.txt mysql-5.7-5.7.26/extra/libevent/CMakeLists.txt --- mysql-5.7-5.7.25/extra/libevent/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/CMakeLists.txt 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,1483 @@ +# +# Libevent CMake project +# +# Based on initial work by: +# Alexey Ozeritsky +# +# Additional changes: +# Brodie Thiesfield +# Joakim Soderberg +# Trond Norbye +# Sergei Nikulov +# +# Build example: +# +# cd libevent +# md build +# cd build +# cmake -G "Visual Studio 10" .. +# start libevent.sln +# +if (WIN32) + cmake_minimum_required(VERSION 3.1 FATAL_ERROR) +else() + cmake_minimum_required(VERSION 2.8.0 FATAL_ERROR) +endif() + +# This is only used by plugins, so we need -fPIC +SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${CMAKE_SHARED_LIBRARY_C_FLAGS}") + +# if(NOT CMAKE_BUILD_TYPE) +# set(CMAKE_BUILD_TYPE Release +# CACHE STRING "Set build type to Debug o Release (default Release)" FORCE) +# endif() +string(TOLOWER "${CMAKE_BUILD_TYPE}" CMAKE_BUILD_TYPE_LOWER) + +# get rid of the extra default configurations +# what? why would you get id of other useful build types? - Ellzey +# set(CMAKE_CONFIGURATION_TYPES "Debug;Release" CACHE STRING "Limited configurations" FORCE) + +IF(POLICY CMP0048) + CMAKE_POLICY(SET CMP0048 NEW) + project(libevent VERSION 2.1.8 LANGUAGES C) +ELSE() + project(libevent C) +ENDIF() + +IF(POLICY CMP0075) + CMAKE_POLICY(SET CMP0075 OLD) +ENDIF() + +set(CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake/") +string(REGEX MATCH "SunOS" SOLARIS "${CMAKE_SYSTEM_NAME}") + + +include(CheckTypeSize) +include(CheckFunctionExistsEx) +include(CheckFileOffsetBits) +include(CheckFunctionExists) +include(CheckIncludeFile) +include(CheckIncludeFiles) +include(CheckVariableExists) +include(CheckSymbolExists) +include(CheckStructHasMember) +include(CheckCSourceCompiles) +include(CheckPrototypeDefinition) +include(CheckFunctionKeywords) +include(AddCompilerFlags) +include(VersionViaGit) + +event_fuzzy_version_from_git() + +set(EVENT_VERSION_MAJOR ${EVENT_GIT___VERSION_MAJOR}) +set(EVENT_VERSION_MINOR ${EVENT_GIT___VERSION_MINOR}) +set(EVENT_VERSION_PATCH ${EVENT_GIT___VERSION_PATCH}) +set(EVENT_VERSION_STAGE ${EVENT_GIT___VERSION_STAGE}) + + +set(EVENT_ABI_MAJOR ${EVENT_VERSION_MAJOR}) +set(EVENT_ABI_MINOR ${EVENT_VERSION_MINOR}) +set(EVENT_ABI_PATCH ${EVENT_VERSION_PATCH}) + +set(EVENT_ABI_LIBVERSION + "${EVENT_ABI_MAJOR}.${EVENT_ABI_MINOR}.${EVENT_ABI_PATCH}") + +set(EVENT_PACKAGE_VERSION + "${EVENT_VERSION_MAJOR}.${EVENT_VERSION_MINOR}.${EVENT_VERSION_PATCH}") + +set(EVENT_NUMERIC_VERSION 0x02010800) + +# only a subset of names can be used, defaults to "beta" +set(EVENT_STAGE_NAME ${EVENT_VERSION_STAGE} + CACHE STRING "set the stage name (beta|alpha|release)") + +# a list that defines what can set for EVENT_STAGE_VERSION +set(EVENT__ALLOWED_STAGE_NAMES + rc + beta + alpha + release) + +# attempt to find the EVENT__STAGE_VERSION in the allowed list +# of accepted stage names, the return value is stord in +# EVENT__STAGE_RET + +list(FIND EVENT__ALLOWED_STAGE_NAMES + ${EVENT_STAGE_NAME} + EVENT__STAGE_RET) + +if (EVENT__STAGE_RET EQUAL "-1") + set(EVENT_STAGE_NAME beta) +endif() + +set(EVENT_VERSION + "${EVENT_VERSION_MAJOR}.${EVENT_VERSION_MINOR}.${EVENT_VERSION_PATCH}-${EVENT_STAGE_NAME}") + +option(EVENT__BUILD_SHARED_LIBRARIES + "Define if libevent should be built with shared libraries instead of archives" OFF) + +option(EVENT__DISABLE_DEBUG_MODE + "Define if libevent should build without support for a debug mode" OFF) + +option(EVENT__ENABLE_VERBOSE_DEBUG + "Enables verbose debugging" OFF) + +option(EVENT__DISABLE_MM_REPLACEMENT + "Define if libevent should not allow replacing the mm functions" OFF) + +option(EVENT__DISABLE_THREAD_SUPPORT + "Define if libevent should not be compiled with thread support" OFF) + +# Disable SSL, for yaSSL and OpenSSL +option(EVENT__DISABLE_OPENSSL + "Define if libevent should build without support for OpenSSL encrpytion" ON) + +IF(WITH_SSL STREQUAL "wolfssl") + MESSAGE(STATUS "This version of libevent does not support the wolfssl SSL library") + SET(EVENT__DISABLE_OPENSSL ON CACHE INTERNAL "" FORCE) + SET(EVENT__DISABLE_OPENSSL 1) +ENDIF() + +option(EVENT__DISABLE_BENCHMARK + "Defines if libevent should build without the benchmark exectuables" ON) + +option(EVENT__DISABLE_TESTS + "If tests should be compiled or not" ON) + +option(EVENT__DISABLE_REGRESS + "Disable the regress tests" ON) + +option(EVENT__DISABLE_SAMPLES + "Disable sample files" ON) + +option(EVENT__DISABLE_CLOCK_GETTIME + "Do not use clock_gettime even if it is available" OFF) + +option(EVENT__FORCE_KQUEUE_CHECK + "When crosscompiling forces running a test program that verifies that Kqueue works with pipes. Note that this requires you to manually run the test program on the the cross compilation target to verify that it works. See cmake documentation for try_run for more details" OFF) + +# TODO: Add --disable-largefile omit support for large files +option(EVENT__COVERAGE +"Enable running gcov to get a test coverage report (only works with GCC/CLang). Make sure to enable -DCMAKE_BUILD_TYPE=Debug as well." OFF) + +# Put the libaries and binaries that get built into directories at the +# top of the build tree rather than in hard-to-find leaf directories. +set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/bin) +set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/lib) +set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/lib) + +if (EVENT__ENABLE_VERBOSE_DEBUG) + add_definitions(-DUSE_DEBUG=1) +endif() + +# Setup compiler flags for coverage. +if (EVENT__COVERAGE) + if (NOT "${CMAKE_BUILD_TYPE_LOWER}" STREQUAL "debug") + message(FATAL_ERROR "Coverage requires -DCMAKE_BUILD_TYPE=Debug") + endif() + + message(STATUS "Setting coverage compiler flags") + + set(CMAKE_REQUIRED_LIBRARIES "--coverage") + add_compiler_flags(-g -O0 --coverage) + set(CMAKE_REQUIRED_LIBRARIES "") +endif() + +# GCC specific options. +if (CMAKE_COMPILER_IS_GNUCC) + option(EVENT__DISABLE_GCC_WARNINGS "Disable verbose warnings with GCC" OFF) + option(EVENT__ENABLE_GCC_HARDENING "Enable compiler security checks" OFF) + option(EVENT__ENABLE_GCC_FUNCTION_SECTIONS "Enable gcc function sections" OFF) + option(EVENT__ENABLE_GCC_WARNINGS "Make all GCC warnings into errors" OFF) + + list(APPEND __FLAGS -Wall -Wswitch) + + if (EVENT__DISABLE_GCC_WARNINGS) + list(APPEND __FLAGS -w) + endif() + + if (EVENT__ENABLE_GCC_HARDENING) + list(APPEND __FLAGS + -fstack-protector-all + -fwrapv + -fPIE + -Wstack-protector + "--param ssp-buffer-size=1") + + add_definitions(-D_FORTIFY_SOURCE=2) + endif() + + if (EVENT__ENABLE_GCC_FUNCTION_SECTIONS) + list(APPEND __FLAGS -ffunction-sections) + # TODO: Add --gc-sections support. We need some checks for NetBSD to ensure this works. + endif() + + if (EVENT__ENABLE_GCC_WARNINGS) + list(APPEND __FLAGS -Werror) + endif() + + # We need to test for at least gcc 2.95 here, because older versions don't + # have -fno-strict-aliasing + list(APPEND __FLAGS -fno-strict-aliasing) + + add_compiler_flags(${__FLAGS}) +endif() + +if (APPLE) + # Get rid of deprecated warnings for OpenSSL on OSX 10.7 and greater. + add_compiler_flags( + -Wno-error=deprecated-declarations + -Qunused-arguments + ) +endif() + +# Winsock. +if(WIN32) + set(CMAKE_EXTRA_INCLUDE_FILES winsock2.h ws2tcpip.h) + LIST(APPEND CMAKE_REQUIRED_LIBRARIES ws2_32.lib) + set(CMAKE_REQUIRED_DEFINITIONS -FIwinsock2.h -FIws2tcpip.h) +endif() +if (SOLARIS) + LIST(APPEND CMAKE_REQUIRED_LIBRARIES socket nsl) +endif() + +# Check if _GNU_SOURCE is available. +CHECK_SYMBOL_EXISTS(__GNU_LIBRARY__ "features.h" _GNU_SOURCE) + +if (_GNU_SOURCE) + add_definitions(-D_GNU_SOURCE) +endif() + +CHECK_INCLUDE_FILE(sys/types.h EVENT__HAVE_SYS_TYPES_H) +if(EVENT__HAVE_SYS_TYPES_H) + list(APPEND CMAKE_EXTRA_INCLUDE_FILES sys/types.h) +endif() + +CHECK_INCLUDE_FILE(sys/socket.h EVENT__HAVE_SYS_SOCKET_H) +if(EVENT__HAVE_SYS_SOCKET_H) + list(APPEND CMAKE_EXTRA_INCLUDE_FILES sys/socket.h) +endif() + +CHECK_INCLUDE_FILE(netinet/in.h EVENT__HAVE_NETINET_IN_H) +if(EVENT__HAVE_NETINET_IN_H) + list(APPEND CMAKE_EXTRA_INCLUDE_FILES netinet/in.h) +endif() + +CHECK_INCLUDE_FILE(netinet/in6.h EVENT__HAVE_NETINET_IN6_H) +if(EVENT__HAVE_NETINET_IN6_H) + list(APPEND CMAKE_EXTRA_INCLUDE_FILES netinet/in6.h) +endif() + +CHECK_INCLUDE_FILE(unistd.h EVENT__HAVE_UNISTD_H) +CHECK_INCLUDE_FILE(netdb.h EVENT__HAVE_NETDB_H) +CHECK_INCLUDE_FILE(dlfcn.h EVENT__HAVE_DLFCN_H) +CHECK_INCLUDE_FILE(arpa/inet.h EVENT__HAVE_ARPA_INET_H) +CHECK_INCLUDE_FILE(fcntl.h EVENT__HAVE_FCNTL_H) +if(EVENT__HAVE_FCNTL_H) + list(APPEND CMAKE_EXTRA_INCLUDE_FILES fcntl.h) +endif() +CHECK_INCLUDE_FILE(inttypes.h EVENT__HAVE_INTTYPES_H) +CHECK_INCLUDE_FILE(memory.h EVENT__HAVE_MEMORY_H) +CHECK_INCLUDE_FILE(poll.h EVENT__HAVE_POLL_H) +CHECK_INCLUDE_FILE(port.h EVENT__HAVE_PORT_H) +if(EVENT__HAVE_PORT_H) + list(APPEND CMAKE_EXTRA_INCLUDE_FILES port.h) +endif() +CHECK_INCLUDE_FILE(signal.h EVENT__HAVE_SIGNAL_H) +CHECK_INCLUDE_FILE(stdarg.h EVENT__HAVE_STDARG_H) +CHECK_INCLUDE_FILE(stddef.h EVENT__HAVE_STDDEF_H) +CHECK_INCLUDE_FILE(stdint.h EVENT__HAVE_STDINT_H) +CHECK_INCLUDE_FILE(stdlib.h EVENT__HAVE_STDLIB_H) +CHECK_INCLUDE_FILE(strings.h EVENT__HAVE_STRINGS_H) +CHECK_INCLUDE_FILE(string.h EVENT__HAVE_STRING_H) +CHECK_INCLUDE_FILE(sys/devpoll.h EVENT__HAVE_SYS_DEVPOLL_H) +CHECK_INCLUDE_FILE(sys/epoll.h EVENT__HAVE_SYS_EPOLL_H) +CHECK_INCLUDE_FILE(sys/eventfd.h EVENT__HAVE_SYS_EVENTFD_H) +CHECK_INCLUDE_FILE(sys/event.h EVENT__HAVE_SYS_EVENT_H) +CHECK_INCLUDE_FILE(sys/ioctl.h EVENT__HAVE_SYS_IOCTL_H) +CHECK_INCLUDE_FILE(sys/mman.h EVENT__HAVE_SYS_MMAN_H) +CHECK_INCLUDE_FILE(sys/param.h EVENT__HAVE_SYS_PARAM_H) +CHECK_INCLUDE_FILE(sys/queue.h EVENT__HAVE_SYS_QUEUE_H) +CHECK_INCLUDE_FILE(sys/select.h EVENT__HAVE_SYS_SELECT_H) +CHECK_INCLUDE_FILE(sys/sendfile.h EVENT__HAVE_SYS_SENDFILE_H) +CHECK_INCLUDE_FILE(sys/stat.h EVENT__HAVE_SYS_STAT_H) +CHECK_INCLUDE_FILE(sys/time.h EVENT__HAVE_SYS_TIME_H) +if(EVENT__HAVE_SYS_TIME_H) + list(APPEND CMAKE_EXTRA_INCLUDE_FILES sys/time.h) +endif() +CHECK_INCLUDE_FILE(sys/uio.h EVENT__HAVE_SYS_UIO_H) +CHECK_INCLUDE_FILES("sys/types.h;ifaddrs.h" EVENT__HAVE_IFADDRS_H) +CHECK_INCLUDE_FILE(mach/mach_time.h EVENT__HAVE_MACH_MACH_TIME_H) +CHECK_INCLUDE_FILE(netinet/tcp.h EVENT__HAVE_NETINET_TCP_H) +CHECK_INCLUDE_FILE(sys/wait.h EVENT__HAVE_SYS_WAIT_H) +CHECK_INCLUDE_FILE(sys/resource.h EVENT__HAVE_SYS_RESOURCE_H) +CHECK_INCLUDE_FILE(sys/sysctl.h EVENT__HAVE_SYS_SYSCTL_H) +CHECK_INCLUDE_FILE(sys/timerfd.h EVENT__HAVE_SYS_TIMERFD_H) +CHECK_INCLUDE_FILE(errno.h EVENT__HAVE_ERRNO_H) + + +CHECK_FUNCTION_EXISTS_EX(epoll_create EVENT__HAVE_EPOLL) +CHECK_FUNCTION_EXISTS_EX(epoll_ctl EVENT__HAVE_EPOLL_CTL) +CHECK_FUNCTION_EXISTS_EX(eventfd EVENT__HAVE_EVENTFD) +if(NOT EVENT__DISABLE_CLOCK_GETTIME) + CHECK_FUNCTION_EXISTS_EX(clock_gettime EVENT__HAVE_CLOCK_GETTIME) +endif() +CHECK_FUNCTION_EXISTS_EX(fcntl EVENT__HAVE_FCNTL) +CHECK_FUNCTION_EXISTS_EX(getaddrinfo EVENT__HAVE_GETADDRINFO) +CHECK_FUNCTION_EXISTS_EX(getnameinfo EVENT__HAVE_GETNAMEINFO) +CHECK_FUNCTION_EXISTS_EX(gettimeofday EVENT__HAVE_GETTIMEOFDAY) +CHECK_FUNCTION_EXISTS_EX(getprotobynumber EVENT__HAVE_GETPROTOBYNUMBER) +CHECK_FUNCTION_EXISTS_EX(getservbyname EVENT__HAVE_GETSERVBYNAME) +CHECK_FUNCTION_EXISTS_EX(inet_ntop EVENT__HAVE_INET_NTOP) +CHECK_FUNCTION_EXISTS_EX(inet_pton EVENT__HAVE_INET_PTON) +CHECK_FUNCTION_EXISTS_EX(kqueue EVENT__HAVE_KQUEUE) +CHECK_FUNCTION_EXISTS_EX(mmap EVENT__HAVE_MMAP) +CHECK_FUNCTION_EXISTS_EX(pipe EVENT__HAVE_PIPE) +CHECK_FUNCTION_EXISTS_EX(pipe2 EVENT__HAVE_PIPE2) +CHECK_FUNCTION_EXISTS_EX(poll EVENT__HAVE_POLL) +CHECK_FUNCTION_EXISTS_EX(port_create EVENT__HAVE_PORT_CREATE) +CHECK_FUNCTION_EXISTS_EX(sendfile EVENT__HAVE_SENDFILE) +CHECK_FUNCTION_EXISTS_EX(sigaction EVENT__HAVE_SIGACTION) +CHECK_FUNCTION_EXISTS_EX(signal EVENT__HAVE_SIGNAL) +CHECK_FUNCTION_EXISTS_EX(splice EVENT__HAVE_SPLICE) +CHECK_FUNCTION_EXISTS_EX(strlcpy EVENT__HAVE_STRLCPY) +CHECK_FUNCTION_EXISTS_EX(strsep EVENT__HAVE_STRSEP) +CHECK_FUNCTION_EXISTS_EX(strtok_r EVENT__HAVE_STRTOK_R) +CHECK_FUNCTION_EXISTS_EX(strtoll EVENT__HAVE_STRTOLL) +CHECK_FUNCTION_EXISTS_EX(vasprintf EVENT__HAVE_VASPRINTF) +CHECK_FUNCTION_EXISTS_EX(sysctl EVENT__HAVE_SYSCTL) +CHECK_FUNCTION_EXISTS_EX(accept4 EVENT__HAVE_ACCEPT4) +CHECK_FUNCTION_EXISTS_EX(arc4random EVENT__HAVE_ARC4RANDOM) +CHECK_FUNCTION_EXISTS_EX(arc4random_buf EVENT__HAVE_ARC4RANDOM_BUF) +CHECK_FUNCTION_EXISTS_EX(epoll_create1 EVENT__HAVE_EPOLL_CREATE1) +CHECK_FUNCTION_EXISTS_EX(getegid EVENT__HAVE_GETEGID) +CHECK_FUNCTION_EXISTS_EX(geteuid EVENT__HAVE_GETEUID) +CHECK_FUNCTION_EXISTS_EX(getifaddrs EVENT__HAVE_GETIFADDRS) +CHECK_FUNCTION_EXISTS_EX(issetugid EVENT__HAVE_ISSETUGID) +CHECK_FUNCTION_EXISTS_EX(mach_absolute_time EVENT__HAVE_MACH_ABSOLUTE_TIME) +CHECK_FUNCTION_EXISTS_EX(nanosleep EVENT__HAVE_NANOSLEEP) +CHECK_FUNCTION_EXISTS_EX(usleep EVENT__HAVE_USLEEP) +CHECK_FUNCTION_EXISTS_EX(timeradd EVENT__HAVE_TIMERADD) +CHECK_FUNCTION_EXISTS_EX(timerclear EVENT__HAVE_TIMERCLEAR) +CHECK_FUNCTION_EXISTS_EX(timercmp EVENT__HAVE_TIMERCMP) +CHECK_FUNCTION_EXISTS_EX(timerfd_create HAVE_TIMERFD_CREATE) +CHECK_FUNCTION_EXISTS_EX(timerisset EVENT__HAVE_TIMERISSET) +CHECK_FUNCTION_EXISTS_EX(putenv EVENT__HAVE_PUTENV) +CHECK_FUNCTION_EXISTS_EX(setenv EVENT__HAVE_SETENV) +CHECK_FUNCTION_EXISTS_EX(setrlimit EVENT__HAVE_SETRLIMIT) +CHECK_FUNCTION_EXISTS_EX(umask EVENT__HAVE_UMASK) +CHECK_FUNCTION_EXISTS_EX(unsetenv EVENT__HAVE_UNSETENV) + +# Get the gethostbyname_r prototype. +CHECK_FUNCTION_EXISTS_EX(gethostbyname_r EVENT__HAVE_GETHOSTBYNAME_R) + +if(EVENT__HAVE_GETHOSTBYNAME_R) + CHECK_PROTOTYPE_DEFINITION(gethostbyname_r + "int gethostbyname_r(const char *name, struct hostent *hp, struct hostent_data *hdata)" + "0" + "netdb.h" + EVENT__HAVE_GETHOSTBYNAME_R_3_ARG) + + CHECK_PROTOTYPE_DEFINITION(gethostbyname_r + "struct hostent *gethostbyname_r(const char *name, struct hostent *hp, char *buf, size_t buflen, int *herr)" + "NULL" + "netdb.h" + EVENT__HAVE_GETHOSTBYNAME_R_5_ARG) + + CHECK_PROTOTYPE_DEFINITION(gethostbyname_r + "int gethostbyname_r(const char *name, struct hostent *hp, char *buf, size_t buflen, struct hostent **result, int *herr)" + "0" + "netdb.h" + EVENT__HAVE_GETHOSTBYNAME_R_6_ARG) +endif() + +if(HAVE_PORT_H AND HAVE_PORT_CREATE) + set(EVENT__HAVE_EVENT_PORTS 1) +endif() + +if(NOT WIN32) + CHECK_FUNCTION_EXISTS_EX(select EVENT__HAVE_SELECT) +endif() + +CHECK_TYPE_SIZE("uint8_t" EVENT__HAVE_UINT8_T) +CHECK_TYPE_SIZE("uint16_t" EVENT__HAVE_UINT16_T) +CHECK_TYPE_SIZE("uint32_t" EVENT__HAVE_UINT32_T) +CHECK_TYPE_SIZE("uint64_t" EVENT__HAVE_UINT64_T) +CHECK_TYPE_SIZE("short" EVENT__SIZEOF_SHORT BUILTIN_TYPES_ONLY) +CHECK_TYPE_SIZE("int" EVENT__SIZEOF_INT BUILTIN_TYPES_ONLY) +CHECK_TYPE_SIZE("unsigned" EVENT__SIZEOF_UNSIGNED BUILTIN_TYPES_ONLY) +CHECK_TYPE_SIZE("unsigned int" EVENT__SIZEOF_UNSIGNED_INT BUILTIN_TYPES_ONLY) +CHECK_TYPE_SIZE("long" EVENT__SIZEOF_LONG BUILTIN_TYPES_ONLY) +CHECK_TYPE_SIZE("long long" EVENT__SIZEOF_LONG_LONG BUILTIN_TYPES_ONLY) + +if(WIN32) + # These aren't available until Windows Vista. + # But you can still link them. They just won't be found when running the exe. + set(EVENT__HAVE_INET_NTOP 0) + set(EVENT__HAVE_INET_PTON 0) +endif() + +# Check for different inline keyword versions. +check_function_keywords("inline" "__inline" "__inline__") + +if (HAVE_INLINE) + set (EVENT__inline inline) +elseif (HAVE___INLINE) + set(EVENT__inline __inline) +elseif(HAVE___INLINE__) + set(EVENT__inline __inline__) +else() + set(EVENT__inline) +endif() + +CHECK_SYMBOL_EXISTS(TAILQ_FOREACH sys/queue.h EVENT__HAVE_TAILQFOREACH) +CHECK_SYMBOL_EXISTS(CTL_KERN sys/sysctl.h EVENT__HAVE_DECL_CTL_KERN) +CHECK_SYMBOL_EXISTS(KERN_ARND sys/sysctl.h EVENT__HAVE_DECL_KERN_ARND) +CHECK_SYMBOL_EXISTS(KERN_RANDOM sys/sysctl.h EVENT__HAVE_DECL_KERN_RANDOM) +CHECK_SYMBOL_EXISTS(RANDOM_UUID sys/sysctl.h EVENT__HAVE_DECL_RANDOM_UUID) +CHECK_SYMBOL_EXISTS(F_SETFD fcntl.h EVENT__HAVE_SETFD) + +CHECK_TYPE_SIZE(fd_mask EVENT__HAVE_FD_MASK) + +CHECK_TYPE_SIZE(size_t EVENT__SIZEOF_SIZEE_T) +if(NOT EVENT__SIZEOF_SIZE_T) + set(EVENT__size_t "unsigned") + set(EVENT__SIZEOF_SIZE_T ${EVENT__SIZEOF_UNSIGNED}) +else() + set(EVENT__size_t size_t) +endif() + +CHECK_TYPE_SIZE("off_t" EVENT__SIZEOF_OFF_T LANGUAGE C) + + +# XXX we should functionalize these size and type sets. --elley + +# Winssck. +if (_MSC_VER) + list(APPEND CMAKE_EXTRA_INCLUDE_FILES BaseTsd.h) +endif() +CHECK_TYPE_SIZE("ssize_t" EVENT__SIZEOF_SSIZE_T_LOWER LANGUAGE C) +CHECK_TYPE_SIZE("SSIZE_T" EVENT__SIZEOF_SSIZE_T_UPPER LANGUAGE C) + +if (EVENT__SIZEOF_SSIZE_T_LOWER) + set(EVENT__ssize_t "ssize_t") + set(EVENT__SIZEOF_SSIZE_T ${EVENT__SIZEOF_SSIZE_T_LOWER}) +elseif (EVENT__SIZEOF_SSIZE_T_UPPER) + set(EVENT__ssize_t "SSIZE_T") + set(EVENT__SIZEOF_SSIZE_T ${EVENT__SIZEOF_SSIZE_T_UPPER}) +else() + set(EVENT__ssize_t "int") + set(EVENT__SIZEOF_SSIZE_T ${EVENT__SIZEOF_INT}) +endif() + + +CHECK_TYPE_SIZE(socklen_t EVENT__SIZEOF_SOCKLEN_T) +if(NOT EVENT__SIZEOF_SOCKLEN_T) + set(EVENT__socklen_t "unsigned int") + set(EVENT__SIZEOF_SOCKLEN_T ${EVENT__SIZEOF_UNSIGNED_INT}) +else() + set(EVENT__socklen_t "socklen_t") +endif() + +CHECK_TYPE_SIZE(pid_t EVENT__SIZEOF_PID_T) +if(NOT EVENT__SIZEOF_PID_T) + set(EVENT__pid_t "int") + set(EVENT__SIZEOF_PID_T ${EVENT__SIZEOF_INT}) +else() + set(EVENT__pid_t "pid_t") + set(EVENT__SIZEOF_PID_T EVENT__SIZEOF_PID_T) +endif() + +if (NOT EVENT__DISABLE_THREAD_SUPPORT) + CHECK_TYPE_SIZE(pthread_t EVENT__SIZEOF_PTHREAD_T) +endif() + +if(EVENT__HAVE_CLOCK_GETTIME) + set(EVENT__DNS_USE_CPU_CLOCK_FOR_ID 1) +endif() + +# we're just getting lazy now. +CHECK_TYPE_SIZE("uintptr_t" EVENT__HAVE_UINTPTR_T) +CHECK_TYPE_SIZE("void *" EVENT__SIZEOF_VOID_P) + +# Tests file offset bits. +# TODO: Add AIX test for if -D_LARGE_FILES is needed. + +# XXX: Why is this here? we don't even use it. Well, we don't even use it +# on top of that, why is it set in the config.h?! IT_MAKES_NO_SENSE +# I'm commenting it out for now. +# - ellzey + +#CHECK_FILE_OFFSET_BITS() +#set(EVENT___FILE_OFFSET_BITS _FILE_OFFSET_BITS) + +include(CheckWaitpidSupportWNOWAIT) + +# Verify kqueue works with pipes. +if (EVENT__HAVE_KQUEUE) + if (CMAKE_CROSSCOMPILING AND NOT EVENT__FORCE_KQUEUE_CHECK) + message(WARNING "Cannot check if kqueue works with pipes when crosscompiling, use EVENT__FORCE_KQUEUE_CHECK to be sure (this requires manually running a test program on the cross compilation target)") + set(EVENT__HAVE_WORKING_KQUEUE 1) + else() + message(STATUS "Checking if kqueue works with pipes...") + include(CheckWorkingKqueue) + endif() +endif() + +CHECK_SYMBOL_EXISTS(_MINIX "stdio.h" EVENT___MINIX) +CHECK_SYMBOL_EXISTS(_POSIX_1_SOURCE "stdio.h" EVENT___POSIX_1_SOURCE) +CHECK_SYMBOL_EXISTS(_POSIX_SOURCE "stdio.h" EVENT___POSIX_SOURCE) + +if(EVENT__HAVE_NETDB_H) + list(APPEND CMAKE_EXTRA_INCLUDE_FILES netdb.h) + CHECK_TYPE_SIZE("struct addrinfo" EVENT__HAVE_STRUCT_ADDRINFO) +elseif(WIN32) + list(APPEND CMAKE_EXTRA_INCLUDE_FILES ws2tcpip.h) + CHECK_TYPE_SIZE("struct addrinfo" EVENT__HAVE_STRUCT_ADDRINFO) +endif() + +# Check for sockaddr structure sizes. +set(SOCKADDR_HEADERS) +if (WIN32) + set(CMAKE_REQUIRED_DEFINITIONS "-DWIN32_LEAN_AND_MEAN") + if (_MSC_VER LESS 1300) + set(SOCKADDR_HEADERS winsock.h) + else() + set(SOCKADDR_HEADERS winsock2.h ws2tcpip.h) + endif() +else() + if (EVENT__HAVE_NETINET_IN_H) + set(SOCKADDR_HEADERS ${SOCKADDR_HEADERS} netinet/in.h) + endif() + + if (EVENT__HAVE_NETINET_IN6_H) + set(SOCKADDR_HEADERS ${SOCKADDR_HEADERS} netinet/in6.h) + endif() + + if (EVENT__HAVE_SYS_SOCKET_H) + set(SOCKADDR_HEADERS ${SOCKADDR_HEADERS} sys/socket.h) + endif() + + if (EVENT__HAVE_NETDB_H) + set(SOCKADDR_HEADERS ${SOCKADDR_HEADERS} netdb.h) + endif() +endif() + +CHECK_TYPE_SIZE("struct in6_addr" EVENT__HAVE_STRUCT_IN6_ADDR) +if(EVENT__HAVE_STRUCT_IN6_ADDR) + CHECK_STRUCT_HAS_MEMBER("struct in6_addr" + s6_addr16 "${SOCKADDR_HEADERS}" + EVENT__HAVE_STRUCT_IN6_ADDR_S6_ADDR16) + + CHECK_STRUCT_HAS_MEMBER("struct in6_addr" + s6_addr32 "${SOCKADDR_HEADERS}" + EVENT__HAVE_STRUCT_IN6_ADDR_S6_ADDR32) +endif() + +CHECK_TYPE_SIZE("sa_family_t" EVENT__HAVE_SA_FAMILY_T) +CHECK_TYPE_SIZE("struct sockaddr_in6" EVENT__HAVE_STRUCT_SOCKADDR_IN6) + +if(EVENT__HAVE_STRUCT_SOCKADDR_IN6) + CHECK_STRUCT_HAS_MEMBER("struct sockaddr_in6" + sin6_len "${SOCKADDR_HEADERS}" + EVENT__HAVE_STRUCT_SOCKADDR_IN6_SIN6_LEN) + + CHECK_STRUCT_HAS_MEMBER("struct sockaddr_in6" + sin_len "${SOCKADDR_HEADERS}" + EVENT__HAVE_STRUCT_SOCKADDR_IN_SIN_LEN) +endif() + +CHECK_TYPE_SIZE("struct sockaddr_storage" EVENT__HAVE_STRUCT_SOCKADDR_STORAGE) +if(EVENT__HAVE_STRUCT_SOCKADDR_STORAGE) + CHECK_STRUCT_HAS_MEMBER("struct sockaddr_storage" + ss_family "${SOCKADDR_HEADERS}" + EVENT__HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY) + + CHECK_STRUCT_HAS_MEMBER("struct sockaddr_storage" + __ss_family "${SOCKADDR_HEADERS}" EVENT__HAVE_STRUCT_SOCKADDR_STORAGE___SS_FAMILY) +endif() + +# Group the source files. +set(HDR_PRIVATE + bufferevent-internal.h + changelist-internal.h + defer-internal.h + epolltable-internal.h + evbuffer-internal.h + event-internal.h + evmap-internal.h + evrpc-internal.h + evsignal-internal.h + evthread-internal.h + ht-internal.h + http-internal.h + iocp-internal.h + ipv6-internal.h + log-internal.h + minheap-internal.h + mm-internal.h + ratelim-internal.h + strlcpy-internal.h + util-internal.h + evconfig-private.h + compat/sys/queue.h) + +set(HDR_COMPAT + include/evdns.h + include/evrpc.h + include/event.h + include/evhttp.h + include/evutil.h) + +set(HDR_PUBLIC + include/event2/buffer.h + include/event2/bufferevent.h + include/event2/bufferevent_compat.h + include/event2/bufferevent_struct.h + include/event2/buffer_compat.h + include/event2/dns.h + include/event2/dns_compat.h + include/event2/dns_struct.h + include/event2/event.h + include/event2/event_compat.h + include/event2/event_struct.h + include/event2/http.h + include/event2/http_compat.h + include/event2/http_struct.h + include/event2/keyvalq_struct.h + include/event2/listener.h + include/event2/rpc.h + include/event2/rpc_compat.h + include/event2/rpc_struct.h + include/event2/tag.h + include/event2/tag_compat.h + include/event2/thread.h + include/event2/util.h + include/event2/visibility.h + ${PROJECT_BINARY_DIR}/include/event2/event-config.h) + +set(SRC_CORE + buffer.c + bufferevent.c + bufferevent_filter.c + bufferevent_pair.c + bufferevent_ratelim.c + bufferevent_sock.c + event.c + evmap.c + evthread.c + evutil.c + evutil_rand.c + evutil_time.c + listener.c + log.c + signal.c + strlcpy.c) + +if(EVENT__HAVE_SELECT) + list(APPEND SRC_CORE select.c) +endif() + +if(EVENT__HAVE_POLL) + list(APPEND SRC_CORE poll.c) +endif() + +if(EVENT__HAVE_KQUEUE) + list(APPEND SRC_CORE kqueue.c) +endif() + +if(EVENT__HAVE_DEVPOLL) + list(APPEND SRC_CORE devpoll.c) +endif() + +if(EVENT__HAVE_EPOLL) + list(APPEND SRC_CORE epoll_sub.c epoll.c) +endif() + +if(EVENT__HAVE_EVENT_PORTS) + list(APPEND SRC_CORE evport.c) +endif() + +if (NOT EVENT__DISABLE_OPENSSL) +# SSL is configured in cmake/ssl.cmake +# find_package(OpenSSL REQUIRED) + + set(EVENT__HAVE_OPENSSL 1) + + message(STATUS "OpenSSL include: ${OPENSSL_INCLUDE_DIR}") + message(STATUS "OpenSSL lib: ${OPENSSL_LIBRARIES}") + + include_directories(${OPENSSL_INCLUDE_DIR}) + + list(APPEND SRC_CORE bufferevent_openssl.c) + list(APPEND HDR_PUBLIC include/event2/bufferevent_ssl.h) + list(APPEND LIB_APPS ${OPENSSL_LIBRARIES}) +endif() + +if (NOT EVENT__DISABLE_THREAD_SUPPORT) + if (WIN32) + list(APPEND SRC_CORE evthread_win32.c) + else() + find_package(Threads REQUIRED) + if (NOT CMAKE_USE_PTHREADS_INIT) + message(FATAL_ERROR + "Failed to find Pthreads, set EVENT__DISABLE_THREAD_SUPPORT to disable") + endif() + + set(EVENT__HAVE_PTHREADS 1) + list(APPEND SRC_CORE evthread_pthread.c) + list(APPEND LIB_APPS ${CMAKE_THREAD_LIBS_INIT}) + endif() +endif() + +## if (NOT EVENT__DISABLE_REGRESS) +## # Zlib is only used for testing. +## find_package(ZLIB) +## +## if (ZLIB_LIBRARY AND ZLIB_INCLUDE_DIR) +## include_directories(${ZLIB_INCLUDE_DIRS}) +## +## set(EVENT__HAVE_LIBZ 1) +## list(APPEND LIB_APPS ${ZLIB_LIBRARIES}) +## endif() +## endif() + +set(SRC_EXTRA + event_tagging.c + http.c + evdns.c + evrpc.c) + +add_definitions(-DHAVE_CONFIG_H) + +# We use BEFORE here so we don't accidentally look in system directories +# first for some previous versions of the headers that are installed. +include_directories(BEFORE ${PROJECT_SOURCE_DIR} + ${PROJECT_SOURCE_DIR}/compat + ${PROJECT_SOURCE_DIR}/include) + +if(WIN32) + list(APPEND SRC_CORE + buffer_iocp.c + bufferevent_async.c + event_iocp.c + win32select.c) + + list(APPEND HDR_PRIVATE WIN32-Code/getopt.h) + + set(EVENT__DNS_USE_FTIME_FOR_ID 1) + set(LIB_PLATFORM ws2_32) + add_definitions( + -D_CRT_SECURE_NO_WARNINGS + -D_CRT_NONSTDC_NO_DEPRECATE) + + include_directories(./WIN32-Code) +endif() + +if (UNIX) + list(APPEND LIB_PLATFORM m) + if (LIBRT) + list(APPEND LIB_PLATFORM rt) + endif() +endif() + +if (SOLARIS) + list(APPEND LIB_PLATFORM socket nsl) +endif() + +source_group("Headers Private" FILES ${HDR_PRIVATE}) +source_group("Header Compat" FILES ${HDR_COMPAT}) +source_group("Headers Public" FILES ${HDR_PUBLIC}) +source_group("Source Core" FILES ${SRC_CORE}) +source_group("Source Extra" FILES ${SRC_EXTRA}) + +# Generate the configure headers. +# (Place them in the build dir so we don't polute the source tree with generated files). +include_directories(BEFORE ${CMAKE_CURRENT_BINARY_DIR}/include) + +if (EVENT__BUILD_SHARED_LIBRARIES) + set(EVENT__LIBRARY_TYPE SHARED) + + if ((CMAKE_COMPILER_IS_GNUCC) OR (${CMAKE_C_COMPILER_ID} STREQUAL "Clang")) + add_compiler_flags(-fvisibility=hidden) + elseif ("${CMAKE_C_COMPILER_ID}" STREQUAL "SunPro") + add_compiler_flags(-xldscope=hidden) + endif() + + set(EVENT__NEED_DLLIMPORT 1) +else (EVENT__BUILD_SHARED_LIBRARIES) + set(EVENT__LIBRARY_TYPE STATIC) +endif (EVENT__BUILD_SHARED_LIBRARIES) + +configure_file( + ${CMAKE_CURRENT_SOURCE_DIR}/event-config.h.cmake + ${CMAKE_CURRENT_BINARY_DIR}/include/event2/event-config.h + NEWLINE_STYLE UNIX) + +configure_file( + ${CMAKE_CURRENT_SOURCE_DIR}/evconfig-private.h.cmake + ${CMAKE_CURRENT_BINARY_DIR}/include/evconfig-private.h) + +# +# Create the libraries. +# + +# TODO: Add dynamic versions of the libraries as well. +add_library(event_core ${EVENT__LIBRARY_TYPE} + ${HDR_PRIVATE} + ${HDR_COMPAT} + ${HDR_PUBLIC} + ${SRC_CORE}) + +add_library(event_extra ${EVENT__LIBRARY_TYPE} + ${HDR_PRIVATE} + ${HDR_COMPAT} + ${HDR_PUBLIC} + ${SRC_CORE} + ${SRC_EXTRA}) + +# library exists for historical reasons; it contains the contents of +# both libevent_core and libevent_extra. You shouldn’t use it; it may +# go away in a future version of Libevent. +add_library(event ${EVENT__LIBRARY_TYPE} + ${HDR_PRIVATE} + ${HDR_COMPAT} + ${HDR_PUBLIC} + ${SRC_CORE} + ${SRC_EXTRA}) + +if (EVENT__BUILD_SHARED_LIBRARIES) + # Prepare static library to be linked to tests that need hidden symbols + add_library(event_extra_static STATIC + ${HDR_PRIVATE} + ${HDR_COMPAT} + ${HDR_PUBLIC} + ${SRC_CORE} + ${SRC_EXTRA}) + + set(EVENT_EXTRA_FOR_TEST event_extra_static) + + target_link_libraries(event_core ${OPENSSL_LIBRARIES} + ${CMAKE_THREAD_LIBS_INIT} + ${LIB_PLATFORM}) + + target_link_libraries(event ${OPENSSL_LIBRARIES} + ${CMAKE_THREAD_LIBS_INIT} + ${LIB_PLATFORM}) + + target_link_libraries(event_extra ${OPENSSL_LIBRARIES} + ${CMAKE_THREAD_LIBS_INIT} + ${LIB_PLATFORM}) + + set_target_properties(event + PROPERTIES SOVERSION + ${EVENT_ABI_LIBVERSION}) + + set_target_properties(event_core + PROPERTIES SOVERSION + ${EVENT_ABI_LIBVERSION}) + + set_target_properties(event_extra + PROPERTIES SOVERSION + ${EVENT_ABI_LIBVERSION}) + +else (EVENT__BUILD_SHARED_LIBRARIES) + set(EVENT_EXTRA_FOR_TEST event_extra) +endif (EVENT__BUILD_SHARED_LIBRARIES) + +# +# Samples. +# + +## if (NOT EVENT__DISABLE_SAMPLES) +## set(SAMPLES +## dns-example +## event-read-fifo +## hello-world +## signal-test +## http-server +## http-connect +## time-test) +## +## if (NOT EVENT__DISABLE_OPENSSL AND OPENSSL_LIBRARIES) +## set(CMAKE_REQUIRED_LIBRARIES ${OPENSSL_LIBRARIES}) +## CHECK_FUNCTION_EXISTS_EX(ERR_remove_thread_state EVENT__HAVE_ERR_REMOVE_THREAD_STATE) +## set(CMAKE_REQUIRED_LIBRARIES "") +## +## # Special sample with more than one file. +## add_executable(https-client +## sample/https-client.c +## sample/openssl_hostname_validation.c +## sample/hostcheck.c) +## +## target_link_libraries(https-client +## event_extra +## ${LIB_APPS} +## ${LIB_PLATFORM}) +## +## add_dependencies(https-client event_extra) +## +## # Requires OpenSSL. +## list(APPEND SAMPLES le-proxy) +## endif() +## +## foreach(SAMPLE ${SAMPLES}) +## add_executable(${SAMPLE} +## sample/${SAMPLE}.c) +## +## target_link_libraries(${SAMPLE} +## event_extra +## ${LIB_APPS} +## ${LIB_PLATFORM}) +## +## add_dependencies(${SAMPLE} event_extra) +## endforeach() +## +## if (WIN32) +## target_sources(dns-example PUBLIC +## WIN32-Code/getopt.c +## WIN32-Code/getopt_long.c) +## endif() +## endif() + +## if (NOT EVENT__DISABLE_BENCHMARK) +## foreach (BENCHMARK bench bench_cascade bench_http bench_httpclient) +## set(BENCH_SRC test/${BENCHMARK}.c) +## +## if (WIN32) +## list(APPEND BENCH_SRC +## WIN32-Code/getopt.c +## WIN32-Code/getopt_long.c) +## endif() +## +## add_executable(${BENCHMARK} ${BENCH_SRC}) +## +## target_link_libraries(${BENCHMARK} +## event_extra +## ${LIB_PLATFORM}) +## +## add_dependencies(${BENCHMARK} event_extra) +## endforeach() +## endif() + +## if (NOT EVENT__DISABLE_TESTS) +## # +## # Generate Regress tests. +## # +## if (NOT EVENT__DISABLE_REGRESS) +## +## # (We require python2 to generate the regress tests) +## foreach (PY python2.6 python2.7 python2) +## unset(FIND_PYTHON2 CACHE) +## find_program(FIND_PYTHON2 ${PY}) +## if (FIND_PYTHON2) +## set(PYTHON_EXECUTABLE "${PY}") +## break() +## endif() +## endforeach() +## find_package(PythonInterp) +## +## if (PYTHONINTERP_FOUND AND PYTHON_VERSION_STRING VERSION_LESS "3.0.0") +## set(__FOUND_USABLE_PYTHON 1) +## endif() +## +## if (__FOUND_USABLE_PYTHON) +## message(STATUS "Generating regress tests...") +## +## add_definitions(-DTINYTEST_LOCAL) +## +## add_custom_command( +## OUTPUT +## ${CMAKE_CURRENT_SOURCE_DIR}/test/regress.gen.c +## ${CMAKE_CURRENT_SOURCE_DIR}/test/regress.gen.h +## DEPENDS +## event_rpcgen.py +## test/regress.rpc +## COMMAND ${PYTHON_EXECUTABLE} ../event_rpcgen.py regress.rpc +## WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/test) +## +## list(APPEND SRC_REGRESS +## test/regress.c +## test/regress.gen.c +## test/regress.gen.h +## test/regress_buffer.c +## test/regress_bufferevent.c +## test/regress_dns.c +## test/regress_et.c +## test/regress_finalize.c +## test/regress_http.c +## test/regress_listener.c +## test/regress_main.c +## test/regress_minheap.c +## test/regress_rpc.c +## test/regress_testutils.c +## test/regress_testutils.h +## test/regress_util.c +## test/tinytest.c +## ${SRC_CORE} +## ${SRC_EXTRA}) +## +## if (WIN32) +## list(APPEND SRC_REGRESS test/regress_iocp.c) +## if (NOT EVENT__DISABLE_THREAD_SUPPORT) +## list(APPEND SRC_REGRESS test/regress_thread.c) +## endif() +## endif() +## +## if (CMAKE_USE_PTHREADS_INIT) +## list(APPEND SRC_REGRESS test/regress_thread.c) +## endif() +## +## if (ZLIB_LIBRARY AND ZLIB_INCLUDE_DIR) +## list(APPEND SRC_REGRESS test/regress_zlib.c) +## endif() +## +## if (OPENSSL_LIBRARIES) +## list(APPEND SRC_REGRESS test/regress_ssl.c) +## endif() +## +## add_executable(regress ${SRC_REGRESS}) +## +## # While building the test suite we don't want the visibility +## # header trying to "dllimport" the symbols on windows (it +## # generates a ton of warnings due to different link +## # attributes for all of the symbols) +## SET_TARGET_PROPERTIES(regress +## PROPERTIES COMPILE_DEFINITIONS +## "EVENT_BUILDING_REGRESS_TEST=1") +## +## target_link_libraries(regress +## ${LIB_APPS} +## ${LIB_PLATFORM}) +## else() +## message(WARNING "No suitable Python interpreter found, cannot generate regress tests!") +## endif() +## endif() +## +## # +## # Test programs. +## # +## # all of these, including the cmakelists.txt should be moved +## # into the dirctory 'tests' first. +## # +## # doing this, we can remove all the DISABLE_TESTS stuff, and simply +## # do something like: +## # +## # add_custom_targets(tests) +## # add_executable(... EXCLUDE_FROM_ALL ...c) +## # add_dependencis(tests testa testb testc) +## # add_test(....) +## # +## # then you can just run 'make tests' instead of them all +## # auto-compile|running +## # - ellzey +## set(TESTPROGS test-changelist +## test-eof +## test-fdleak +## test-init +## test-time +## test-weof) +## +## set(ALL_TESTPROGS +## ${TESTPROGS} +## test-dumpevents +## test-ratelim) +## +## # Create test program executables. +## foreach (TESTPROG ${ALL_TESTPROGS}) +## add_executable(${TESTPROG} +## test/${TESTPROG}.c) +## +## target_link_libraries(${TESTPROG} +## ${EVENT_EXTRA_FOR_TEST} +## ${LIB_PLATFORM}) +## +## add_dependencies(${TESTPROG} +## ${EVENT_EXTRA_FOR_TEST}) +## endforeach() +## +## # +## # We run all tests with the different backends turned on one at a time. +## # +## +## # Add event backends based on system introspection result. +## set(BACKENDS "") +## +## if (EVENT__HAVE_EPOLL) +## list(APPEND BACKENDS EPOLL) +## endif() +## +## if (EVENT__HAVE_SELECT) +## list(APPEND BACKENDS SELECT) +## endif() +## +## if (EVENT__HAVE_POLL) +## list(APPEND BACKENDS POLL) +## endif() +## +## if (EVENT__HAVE_KQUEUE) +## list(APPEND BACKENDS KQUEUE) +## endif() +## +## if (EVENT__HAVE_EVENT_PORTS) +## list(APPEND BACKENDS EVPORT) +## endif() +## +## if (EVENT__HAVE_DEVPOLL) +## list(APPEND BACKENDS DEVPOLL) +## endif() +## +## if (WIN32) +## list(APPEND BACKENDS WIN32) +## endif() +## +## +## # Default environment variables turns off all event systems, +## # then we enable each one, one at a time when creating the tests. +## set(DEFAULT_TEST_ENV_VARS "EVENT_SHOW_METHOD=1;") +## foreach(BACKEND ${BACKENDS}) +## set(BACKEND_ENV_VAR "EVENT_NO${BACKEND}=1") +## list(APPEND DEFAULT_TEST_ENV_VARS "${BACKEND_ENV_VAR}") +## endforeach() +## +## # Macro that creates the ctest test for a backend. +## macro(add_backend_test BACKEND_TEST_NAME ENV_VARS) +## set(TEST_NAMES "") +## +## foreach (TESTPROG ${TESTPROGS}) +## set(TEST_NAME ${TESTPROG}__${BACKEND_TEST_NAME}) +## +## add_test(${TEST_NAME} +## ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${TESTPROG}) +## +## list(APPEND TEST_NAMES ${TEST_NAME}) +## +## set_tests_properties(${TEST_NAME} +## PROPERTIES ENVIRONMENT "${ENV_VARS}") +## endforeach() +## +## # Dump events test. +## if (__FOUND_USABLE_PYTHON) +## set(TEST_NAME test-dumpevents__${BACKEND_TEST_NAME}) +## +## add_test(${TEST_NAME} +## ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/test-dumpevents | +## ${PYTHON_EXECUTABLE} +## ${CMAKE_CURRENT_SOURCE_DIR}/test/check-dumpevents.py) +## +## set_tests_properties(${TEST_NAME} +## PROPERTIES ENVIRONMENT "${ENV_VARS}") +## else() +## message(WARNING "test-dumpevents will be run without output check since python was not found!") +## set(TEST_NAME test-dumpevents__${BACKEND_TEST_NAME}_no_check) +## +## add_test(${TEST_NAME} +## ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/test-dumpevents) +## +## set_tests_properties(${TEST_NAME} +## PROPERTIES ENVIRONMENT "${ENV_VARS}") +## endif() +## +## # Regress tests. +## if (NOT EVENT__DISABLE_REGRESS AND __FOUND_USABLE_PYTHON) +## set(TEST_NAME regress__${BACKEND_TEST_NAME}) +## +## add_test(${TEST_NAME} +## ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/regress) +## +## set_tests_properties(${TEST_NAME} +## PROPERTIES ENVIRONMENT "${ENV_VARS}") +## +## add_test(${TEST_NAME}_debug +## ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/regress) +## +## set_tests_properties(${TEST_NAME}_debug +## PROPERTIES ENVIRONMENT "${ENV_VARS};EVENT_DEBUG_MODE=1") +## endif() +## endmacro() +## +## # Add the tests for each backend. +## foreach(BACKEND ${BACKENDS}) +## # Enable this backend only. +## set(BACKEND_ENV_VARS ${DEFAULT_TEST_ENV_VARS}) +## list(REMOVE_ITEM BACKEND_ENV_VARS EVENT_NO${BACKEND}=1) +## +## # Epoll has some extra settings. +## if (${BACKEND} STREQUAL "EPOLL") +## add_backend_test(timerfd_${BACKEND} +## "${BACKEND_ENV_VARS};EVENT_PRECISE_TIMER=1") +## +## add_backend_test(changelist_${BACKEND} +## "${BACKEND_ENV_VARS};EVENT_EPOLL_USE_CHANGELIST=yes") +## +## add_backend_test(timerfd_changelist_${BACKEND} +## "${BACKEND_ENV_VARS};EVENT_EPOLL_USE_CHANGELIST=yes;EVENT_PRECISE_TIMER=1") +## else() +## add_backend_test(${BACKEND} "${BACKEND_ENV_VARS}") +## endif() +## endforeach() +## +## # +## # Rate limiter tests. +## # +## +## # Group limits, no connection limit. +## set(RL_BIN ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/test-ratelim) +## +## add_test(test-ratelim__group_lim +## ${RL_BIN} +## -g 30000 +## -n 30 +## -t 100 +## --check-grouplimit 1000 +## --check-stddev 100) +## +## # Connection limit, no group limit. +## add_test(test-ratelim__con_lim +## ${RL_BIN} +## -c 1000 +## -n 30 +## -t 100 +## --check-connlimit 50 +## --check-stddev 50) +## +## # Connection limit and group limit. +## add_test(test-ratelim__group_con_lim +## ${RL_BIN} +## -c 1000 +## -g 30000 +## -n 30 +## -t 100 +## --check-grouplimit 1000 +## --check-connlimit 50 +## --check-stddev 50) +## +## # Connection limit and group limit with independent drain. +## add_test(test-ratelim__group_con_lim_drain +## ${RL_BIN} +## -c 1000 +## -g 35000 +## -n 30 +## -t 100 +## -G 500 +## --check-grouplimit 1000 +## --check-connlimit 50 +## --check-stddev 50) +## +## # Add a "make verify" target, same as for autoconf. +## # (Important! This will unset all EVENT_NO* environment variables. +## # If they are set in the shell the tests are running using simply "ctest" or "make test" will fail) +## if (WIN32) +## # Windows doesn't have "unset". But you can use "set VAR=" instead. +## # We need to guard against the possibility taht EVENT_NOWIN32 is set, and all test failing +## # since no event backend being available. +## file(TO_NATIVE_PATH ${CMAKE_CTEST_COMMAND} WINDOWS_CTEST_COMMAND) +## +## file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/tmp/verify_tests.bat +## " +## set EVENT_NOWIN32= +## \"${WINDOWS_CTEST_COMMAND}\" +## ") +## +## message(STATUS "${WINDOWS_CTEST_COMMAND}") +## +## file(COPY ${CMAKE_CURRENT_BINARY_DIR}/tmp/verify_tests.bat +## DESTINATION +## ${CMAKE_CURRENT_BINARY_DIR} +## FILE_PERMISSIONS +## OWNER_READ +## OWNER_WRITE +## OWNER_EXECUTE +## GROUP_READ +## GROUP_EXECUTE +## WORLD_READ WORLD_EXECUTE) +## +## file(TO_NATIVE_PATH +## "${CMAKE_CURRENT_BINARY_DIR}/verify_tests.bat" VERIFY_PATH) +## +## add_custom_target(verify COMMAND "${VERIFY_PATH}" +## DEPENDS event ${ALL_TESTPROGS}) +## else() +## # On some platforms doing exec(unset) as CMake does won't work, so make sure +## # we run the unset command in a shell instead. +## # First we write the script contents. +## file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/tmp/verify_tests.sh +## " +## #!/bin/bash +## unset EVENT_NOEPOLL; unset EVENT_NOPOLL; unset EVENT_NOSELECT; unset EVENT_NOWIN32; unset EVENT_NOEVPORT; unset EVENT_NOKQUEUE; unset EVENT_NODEVPOLL +## ${CMAKE_CTEST_COMMAND} +## ") +## +## # Then we copy the file (this allows us to set execute permission on it) +## file(COPY ${CMAKE_CURRENT_BINARY_DIR}/tmp/verify_tests.sh +## DESTINATION ${CMAKE_CURRENT_BINARY_DIR} +## FILE_PERMISSIONS +## OWNER_READ +## OWNER_WRITE +## OWNER_EXECUTE +## GROUP_READ +## GROUP_EXECUTE +## WORLD_READ +## WORLD_EXECUTE) +## +## # Create the target that runs the script. +## add_custom_target(verify +## COMMAND +## ${CMAKE_CURRENT_BINARY_DIR}/verify_tests.sh +## DEPENDS +## event +## ${ALL_TESTPROGS}) +## endif() +## +## if (NOT EVENT__DISABLE_REGRESS AND __FOUND_USABLE_PYTHON) +## add_dependencies(verify regress) +## endif() +## +## if (EVENT__COVERAGE) +## include(CodeCoverage) +## +## setup_target_for_coverage( +## verify_coverage # Coverage target name "make verify_coverage" +## make # Test runner. +## coverage # Output directory. +## verify) # Arguments passed to test runner. "make verify" +## endif() +## +## enable_testing() +## +## include(CTest) +## endif() + +# +# Installation preparation. +# + +# Allow the user to override installation directories. +set(EVENT_INSTALL_LIB_DIR lib CACHE PATH "Installation directory for libraries") +set(EVENT_INSTALL_BIN_DIR bin CACHE PATH "Installation directory for executables") +set(EVENT_INSTALL_INCLUDE_DIR include CACHE PATH "Installation directory for header files") + +if(WIN32 AND NOT CYGWIN) + set(DEF_INSTALL_CMAKE_DIR cmake) +else() + set(DEF_INSTALL_CMAKE_DIR lib/cmake/libevent) +endif() + +set(EVENT_INSTALL_CMAKE_DIR ${DEF_INSTALL_CMAKE_DIR} CACHE PATH "Installation directory for CMake files") + +# Make sure the paths are absolute. +foreach(p LIB BIN INCLUDE CMAKE) + set(var EVENT_INSTALL_${p}_DIR) + if(NOT IS_ABSOLUTE "${${var}}") + set(${var} "${CMAKE_INSTALL_PREFIX}/${${var}}") + endif() +endforeach() + +# Export targets (This is used for other CMake projects to easily find the libraries and include files). +export(TARGETS event event_extra event_core + FILE "${PROJECT_BINARY_DIR}/LibeventTargets.cmake") +export(PACKAGE libevent) + +# Generate the config file for the build-tree. +set(EVENT__INCLUDE_DIRS + "${PROJECT_SOURCE_DIR}/include" + "${PROJECT_BINARY_DIR}/include") + +set(LIBEVENT_INCLUDE_DIRS + ${EVENT__INCLUDE_DIRS} + CACHE PATH "Libevent include directories") + +configure_file(${PROJECT_SOURCE_DIR}/cmake/LibeventConfigBuildTree.cmake.in + ${PROJECT_BINARY_DIR}/LibeventConfig.cmake + @ONLY) + +# Generate the config file for the installation tree. +file(RELATIVE_PATH + REL_INCLUDE_DIR + "${EVENT_INSTALL_CMAKE_DIR}" + "${EVENT_INSTALL_INCLUDE_DIR}") # Calculate the relative directory from the Cmake dir. + +# Note the EVENT_CMAKE_DIR is defined in LibeventConfig.cmake.in, +# we escape it here so it's evaluated when it is included instead +# so that the include dirs are givenrelative to where the +# config file is located. +set(EVENT__INCLUDE_DIRS + "\${EVENT_CMAKE_DIR}/${REL_INCLUDE_DIR}") + +configure_file(${PROJECT_SOURCE_DIR}/cmake/LibeventConfig.cmake.in + ${PROJECT_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/LibeventConfig.cmake + @ONLY) + +# Generate version info for both build-tree and install-tree. +configure_file(${PROJECT_SOURCE_DIR}/cmake/LibeventConfigVersion.cmake.in + ${PROJECT_BINARY_DIR}/LibeventConfigVersion.cmake + @ONLY) + +# Define the public headers. +set_target_properties(event event_core event_extra + PROPERTIES PUBLIC_HEADER "${HDR_PUBLIC}") + +IF(FALSE) +# +# Install targets. +# +install(TARGETS event event_core event_extra + EXPORT LibeventTargets + RUNTIME DESTINATION "${EVENT_INSTALL_BIN_DIR}" COMPONENT bin + LIBRARY DESTINATION "${EVENT_INSTALL_LIB_DIR}" COMPONENT lib + ARCHIVE DESTINATION "${EVENT_INSTALL_LIB_DIR}" COMPONENT lib + PUBLIC_HEADER DESTINATION "${EVENT_INSTALL_INCLUDE_DIR}/event2" COMPONENT dev) + +# Install compat headers +install(FILES ${HDR_COMPAT} + DESTINATION + "${EVENT_INSTALL_INCLUDE_DIR}" + COMPONENT dev) + +# Install the configs. +install(FILES + ${PROJECT_BINARY_DIR}/${CMAKE_FILES_DIRECTORY}/LibeventConfig.cmake + ${PROJECT_BINARY_DIR}/LibeventConfigVersion.cmake + DESTINATION + "${EVENT_INSTALL_CMAKE_DIR}" + COMPONENT dev) + +# Install exports for the install-tree. +install(EXPORT LibeventTargets + DESTINATION + "${EVENT_INSTALL_CMAKE_DIR}" + COMPONENT dev) +ENDIF() + +set(LIBEVENT_LIBRARIES + event + event_core + event_extra + CACHE STRING "Libevent libraries") + +## message(STATUS "") +## message(STATUS " ---( Libevent " ${EVENT_VERSION} " )---") +## message(STATUS "") +## message(STATUS "Available event backends: ${BACKENDS}") +## message(STATUS "CMAKE_BINARY_DIR: " ${CMAKE_BINARY_DIR}) +## message(STATUS "CMAKE_CURRENT_BINARY_DIR: " ${CMAKE_CURRENT_BINARY_DIR}) +## message(STATUS "CMAKE_SOURCE_DIR: " ${CMAKE_SOURCE_DIR}) +## message(STATUS "CMAKE_CURRENT_SOURCE_DIR: " ${CMAKE_CURRENT_SOURCE_DIR}) +## message(STATUS "PROJECT_BINARY_DIR: " ${PROJECT_BINARY_DIR}) +## message(STATUS "PROJECT_SOURCE_DIR: " ${PROJECT_SOURCE_DIR}) +## message(STATUS "CMAKE_MODULE_PATH: " ${CMAKE_MODULE_PATH}) +## message(STATUS "CMAKE_COMMAND: " ${CMAKE_COMMAND}) +## message(STATUS "CMAKE_ROOT: " ${CMAKE_ROOT} ) +## message(STATUS "CMAKE_SYSTEM: " ${CMAKE_SYSTEM} ) +## message(STATUS "CMAKE_SYSTEM_NAME: " ${CMAKE_SYSTEM_NAME} ) +## message(STATUS "CMAKE_SYSTEM_VERSION: " ${CMAKE_SYSTEM_VERSION} ) +## message(STATUS "CMAKE_SYSTEM_PROCESSOR: " ${CMAKE_SYSTEM_PROCESSOR} ) +## message(STATUS "CMAKE_SKIP_RPATH: " ${CMAKE_SKIP_RPATH} ) +## message(STATUS "CMAKE_VERBOSE_MAKEFILE: " ${CMAKE_VERBOSE_MAKEFILE} ) +## message(STATUS "CMAKE_C_FLAGS: " ${CMAKE_C_FLAGS} ) +## message(STATUS "CMAKE_BUILD_TYPE: " ${CMAKE_BUILD_TYPE} ) +## message(STATUS "CMAKE_C_COMPILER: " ${CMAKE_C_COMPILER} ) +## message(STATUS "CMAKE_AR: " ${CMAKE_AR} ) +## message(STATUS "CMAKE_RANLIB: " ${CMAKE_RANLIB} ) +## message(STATUS "") + diff -Nru mysql-5.7-5.7.25/extra/libevent/compat/sys/queue.h mysql-5.7-5.7.26/extra/libevent/compat/sys/queue.h --- mysql-5.7-5.7.25/extra/libevent/compat/sys/queue.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/compat/sys/queue.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,488 @@ +/* $OpenBSD: queue.h,v 1.16 2000/09/07 19:47:59 art Exp $ */ +/* $NetBSD: queue.h,v 1.11 1996/05/16 05:17:14 mycroft Exp $ */ + +/* + * Copyright (c) 1991, 1993 + * The Regents of the University of California. All rights reserved. + * + * 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 University 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 REGENTS 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 REGENTS 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. + * + * @(#)queue.h 8.5 (Berkeley) 8/20/94 + */ + +#ifndef SYS_QUEUE_H__ +#define SYS_QUEUE_H__ + +/* + * This file defines five types of data structures: singly-linked lists, + * lists, simple queues, tail queues, and circular queues. + * + * + * A singly-linked list is headed by a single forward pointer. The elements + * are singly linked for minimum space and pointer manipulation overhead at + * the expense of O(n) removal for arbitrary elements. New elements can be + * added to the list after an existing element or at the head of the list. + * Elements being removed from the head of the list should use the explicit + * macro for this purpose for optimum efficiency. A singly-linked list may + * only be traversed in the forward direction. Singly-linked lists are ideal + * for applications with large datasets and few or no removals or for + * implementing a LIFO queue. + * + * A list is headed by a single forward pointer (or an array of forward + * pointers for a hash table header). The elements are doubly linked + * so that an arbitrary element can be removed without a need to + * traverse the list. New elements can be added to the list before + * or after an existing element or at the head of the list. A list + * may only be traversed in the forward direction. + * + * A simple queue is headed by a pair of pointers, one the head of the + * list and the other to the tail of the list. The elements are singly + * linked to save space, so elements can only be removed from the + * head of the list. New elements can be added to the list before or after + * an existing element, at the head of the list, or at the end of the + * list. A simple queue may only be traversed in the forward direction. + * + * A tail queue is headed by a pair of pointers, one to the head of the + * list and the other to the tail of the list. The elements are doubly + * linked so that an arbitrary element can be removed without a need to + * traverse the list. New elements can be added to the list before or + * after an existing element, at the head of the list, or at the end of + * the list. A tail queue may be traversed in either direction. + * + * A circle queue is headed by a pair of pointers, one to the head of the + * list and the other to the tail of the list. The elements are doubly + * linked so that an arbitrary element can be removed without a need to + * traverse the list. New elements can be added to the list before or after + * an existing element, at the head of the list, or at the end of the list. + * A circle queue may be traversed in either direction, but has a more + * complex end of list detection. + * + * For details on the use of these macros, see the queue(3) manual page. + */ + +/* + * Singly-linked List definitions. + */ +#define SLIST_HEAD(name, type) \ +struct name { \ + struct type *slh_first; /* first element */ \ +} + +#define SLIST_HEAD_INITIALIZER(head) \ + { NULL } + +#ifndef _WIN32 +#define SLIST_ENTRY(type) \ +struct { \ + struct type *sle_next; /* next element */ \ +} +#endif + +/* + * Singly-linked List access methods. + */ +#define SLIST_FIRST(head) ((head)->slh_first) +#define SLIST_END(head) NULL +#define SLIST_EMPTY(head) (SLIST_FIRST(head) == SLIST_END(head)) +#define SLIST_NEXT(elm, field) ((elm)->field.sle_next) + +#define SLIST_FOREACH(var, head, field) \ + for((var) = SLIST_FIRST(head); \ + (var) != SLIST_END(head); \ + (var) = SLIST_NEXT(var, field)) + +/* + * Singly-linked List functions. + */ +#define SLIST_INIT(head) { \ + SLIST_FIRST(head) = SLIST_END(head); \ +} + +#define SLIST_INSERT_AFTER(slistelm, elm, field) do { \ + (elm)->field.sle_next = (slistelm)->field.sle_next; \ + (slistelm)->field.sle_next = (elm); \ +} while (0) + +#define SLIST_INSERT_HEAD(head, elm, field) do { \ + (elm)->field.sle_next = (head)->slh_first; \ + (head)->slh_first = (elm); \ +} while (0) + +#define SLIST_REMOVE_HEAD(head, field) do { \ + (head)->slh_first = (head)->slh_first->field.sle_next; \ +} while (0) + +/* + * List definitions. + */ +#define LIST_HEAD(name, type) \ +struct name { \ + struct type *lh_first; /* first element */ \ +} + +#define LIST_HEAD_INITIALIZER(head) \ + { NULL } + +#define LIST_ENTRY(type) \ +struct { \ + struct type *le_next; /* next element */ \ + struct type **le_prev; /* address of previous next element */ \ +} + +/* + * List access methods + */ +#define LIST_FIRST(head) ((head)->lh_first) +#define LIST_END(head) NULL +#define LIST_EMPTY(head) (LIST_FIRST(head) == LIST_END(head)) +#define LIST_NEXT(elm, field) ((elm)->field.le_next) + +#define LIST_FOREACH(var, head, field) \ + for((var) = LIST_FIRST(head); \ + (var)!= LIST_END(head); \ + (var) = LIST_NEXT(var, field)) + +/* + * List functions. + */ +#define LIST_INIT(head) do { \ + LIST_FIRST(head) = LIST_END(head); \ +} while (0) + +#define LIST_INSERT_AFTER(listelm, elm, field) do { \ + if (((elm)->field.le_next = (listelm)->field.le_next) != NULL) \ + (listelm)->field.le_next->field.le_prev = \ + &(elm)->field.le_next; \ + (listelm)->field.le_next = (elm); \ + (elm)->field.le_prev = &(listelm)->field.le_next; \ +} while (0) + +#define LIST_INSERT_BEFORE(listelm, elm, field) do { \ + (elm)->field.le_prev = (listelm)->field.le_prev; \ + (elm)->field.le_next = (listelm); \ + *(listelm)->field.le_prev = (elm); \ + (listelm)->field.le_prev = &(elm)->field.le_next; \ +} while (0) + +#define LIST_INSERT_HEAD(head, elm, field) do { \ + if (((elm)->field.le_next = (head)->lh_first) != NULL) \ + (head)->lh_first->field.le_prev = &(elm)->field.le_next;\ + (head)->lh_first = (elm); \ + (elm)->field.le_prev = &(head)->lh_first; \ +} while (0) + +#define LIST_REMOVE(elm, field) do { \ + if ((elm)->field.le_next != NULL) \ + (elm)->field.le_next->field.le_prev = \ + (elm)->field.le_prev; \ + *(elm)->field.le_prev = (elm)->field.le_next; \ +} while (0) + +#define LIST_REPLACE(elm, elm2, field) do { \ + if (((elm2)->field.le_next = (elm)->field.le_next) != NULL) \ + (elm2)->field.le_next->field.le_prev = \ + &(elm2)->field.le_next; \ + (elm2)->field.le_prev = (elm)->field.le_prev; \ + *(elm2)->field.le_prev = (elm2); \ +} while (0) + +/* + * Simple queue definitions. + */ +#define SIMPLEQ_HEAD(name, type) \ +struct name { \ + struct type *sqh_first; /* first element */ \ + struct type **sqh_last; /* addr of last next element */ \ +} + +#define SIMPLEQ_HEAD_INITIALIZER(head) \ + { NULL, &(head).sqh_first } + +#define SIMPLEQ_ENTRY(type) \ +struct { \ + struct type *sqe_next; /* next element */ \ +} + +/* + * Simple queue access methods. + */ +#define SIMPLEQ_FIRST(head) ((head)->sqh_first) +#define SIMPLEQ_END(head) NULL +#define SIMPLEQ_EMPTY(head) (SIMPLEQ_FIRST(head) == SIMPLEQ_END(head)) +#define SIMPLEQ_NEXT(elm, field) ((elm)->field.sqe_next) + +#define SIMPLEQ_FOREACH(var, head, field) \ + for((var) = SIMPLEQ_FIRST(head); \ + (var) != SIMPLEQ_END(head); \ + (var) = SIMPLEQ_NEXT(var, field)) + +/* + * Simple queue functions. + */ +#define SIMPLEQ_INIT(head) do { \ + (head)->sqh_first = NULL; \ + (head)->sqh_last = &(head)->sqh_first; \ +} while (0) + +#define SIMPLEQ_INSERT_HEAD(head, elm, field) do { \ + if (((elm)->field.sqe_next = (head)->sqh_first) == NULL) \ + (head)->sqh_last = &(elm)->field.sqe_next; \ + (head)->sqh_first = (elm); \ +} while (0) + +#define SIMPLEQ_INSERT_TAIL(head, elm, field) do { \ + (elm)->field.sqe_next = NULL; \ + *(head)->sqh_last = (elm); \ + (head)->sqh_last = &(elm)->field.sqe_next; \ +} while (0) + +#define SIMPLEQ_INSERT_AFTER(head, listelm, elm, field) do { \ + if (((elm)->field.sqe_next = (listelm)->field.sqe_next) == NULL)\ + (head)->sqh_last = &(elm)->field.sqe_next; \ + (listelm)->field.sqe_next = (elm); \ +} while (0) + +#define SIMPLEQ_REMOVE_HEAD(head, elm, field) do { \ + if (((head)->sqh_first = (elm)->field.sqe_next) == NULL) \ + (head)->sqh_last = &(head)->sqh_first; \ +} while (0) + +/* + * Tail queue definitions. + */ +#define TAILQ_HEAD(name, type) \ +struct name { \ + struct type *tqh_first; /* first element */ \ + struct type **tqh_last; /* addr of last next element */ \ +} + +#define TAILQ_HEAD_INITIALIZER(head) \ + { NULL, &(head).tqh_first } + +#define TAILQ_ENTRY(type) \ +struct { \ + struct type *tqe_next; /* next element */ \ + struct type **tqe_prev; /* address of previous next element */ \ +} + +/* + * tail queue access methods + */ +#define TAILQ_FIRST(head) ((head)->tqh_first) +#define TAILQ_END(head) NULL +#define TAILQ_NEXT(elm, field) ((elm)->field.tqe_next) +#define TAILQ_LAST(head, headname) \ + (*(((struct headname *)((head)->tqh_last))->tqh_last)) +/* XXX */ +#define TAILQ_PREV(elm, headname, field) \ + (*(((struct headname *)((elm)->field.tqe_prev))->tqh_last)) +#define TAILQ_EMPTY(head) \ + (TAILQ_FIRST(head) == TAILQ_END(head)) + +#define TAILQ_FOREACH(var, head, field) \ + for((var) = TAILQ_FIRST(head); \ + (var) != TAILQ_END(head); \ + (var) = TAILQ_NEXT(var, field)) + +#define TAILQ_FOREACH_REVERSE(var, head, headname, field) \ + for((var) = TAILQ_LAST(head, headname); \ + (var) != TAILQ_END(head); \ + (var) = TAILQ_PREV(var, headname, field)) + +/* + * Tail queue functions. + */ +#define TAILQ_INIT(head) do { \ + (head)->tqh_first = NULL; \ + (head)->tqh_last = &(head)->tqh_first; \ +} while (0) + +#define TAILQ_INSERT_HEAD(head, elm, field) do { \ + if (((elm)->field.tqe_next = (head)->tqh_first) != NULL) \ + (head)->tqh_first->field.tqe_prev = \ + &(elm)->field.tqe_next; \ + else \ + (head)->tqh_last = &(elm)->field.tqe_next; \ + (head)->tqh_first = (elm); \ + (elm)->field.tqe_prev = &(head)->tqh_first; \ +} while (0) + +#define TAILQ_INSERT_TAIL(head, elm, field) do { \ + (elm)->field.tqe_next = NULL; \ + (elm)->field.tqe_prev = (head)->tqh_last; \ + *(head)->tqh_last = (elm); \ + (head)->tqh_last = &(elm)->field.tqe_next; \ +} while (0) + +#define TAILQ_INSERT_AFTER(head, listelm, elm, field) do { \ + if (((elm)->field.tqe_next = (listelm)->field.tqe_next) != NULL)\ + (elm)->field.tqe_next->field.tqe_prev = \ + &(elm)->field.tqe_next; \ + else \ + (head)->tqh_last = &(elm)->field.tqe_next; \ + (listelm)->field.tqe_next = (elm); \ + (elm)->field.tqe_prev = &(listelm)->field.tqe_next; \ +} while (0) + +#define TAILQ_INSERT_BEFORE(listelm, elm, field) do { \ + (elm)->field.tqe_prev = (listelm)->field.tqe_prev; \ + (elm)->field.tqe_next = (listelm); \ + *(listelm)->field.tqe_prev = (elm); \ + (listelm)->field.tqe_prev = &(elm)->field.tqe_next; \ +} while (0) + +#define TAILQ_REMOVE(head, elm, field) do { \ + if (((elm)->field.tqe_next) != NULL) \ + (elm)->field.tqe_next->field.tqe_prev = \ + (elm)->field.tqe_prev; \ + else \ + (head)->tqh_last = (elm)->field.tqe_prev; \ + *(elm)->field.tqe_prev = (elm)->field.tqe_next; \ +} while (0) + +#define TAILQ_REPLACE(head, elm, elm2, field) do { \ + if (((elm2)->field.tqe_next = (elm)->field.tqe_next) != NULL) \ + (elm2)->field.tqe_next->field.tqe_prev = \ + &(elm2)->field.tqe_next; \ + else \ + (head)->tqh_last = &(elm2)->field.tqe_next; \ + (elm2)->field.tqe_prev = (elm)->field.tqe_prev; \ + *(elm2)->field.tqe_prev = (elm2); \ +} while (0) + +/* + * Circular queue definitions. + */ +#define CIRCLEQ_HEAD(name, type) \ +struct name { \ + struct type *cqh_first; /* first element */ \ + struct type *cqh_last; /* last element */ \ +} + +#define CIRCLEQ_HEAD_INITIALIZER(head) \ + { CIRCLEQ_END(&head), CIRCLEQ_END(&head) } + +#define CIRCLEQ_ENTRY(type) \ +struct { \ + struct type *cqe_next; /* next element */ \ + struct type *cqe_prev; /* previous element */ \ +} + +/* + * Circular queue access methods + */ +#define CIRCLEQ_FIRST(head) ((head)->cqh_first) +#define CIRCLEQ_LAST(head) ((head)->cqh_last) +#define CIRCLEQ_END(head) ((void *)(head)) +#define CIRCLEQ_NEXT(elm, field) ((elm)->field.cqe_next) +#define CIRCLEQ_PREV(elm, field) ((elm)->field.cqe_prev) +#define CIRCLEQ_EMPTY(head) \ + (CIRCLEQ_FIRST(head) == CIRCLEQ_END(head)) + +#define CIRCLEQ_FOREACH(var, head, field) \ + for((var) = CIRCLEQ_FIRST(head); \ + (var) != CIRCLEQ_END(head); \ + (var) = CIRCLEQ_NEXT(var, field)) + +#define CIRCLEQ_FOREACH_REVERSE(var, head, field) \ + for((var) = CIRCLEQ_LAST(head); \ + (var) != CIRCLEQ_END(head); \ + (var) = CIRCLEQ_PREV(var, field)) + +/* + * Circular queue functions. + */ +#define CIRCLEQ_INIT(head) do { \ + (head)->cqh_first = CIRCLEQ_END(head); \ + (head)->cqh_last = CIRCLEQ_END(head); \ +} while (0) + +#define CIRCLEQ_INSERT_AFTER(head, listelm, elm, field) do { \ + (elm)->field.cqe_next = (listelm)->field.cqe_next; \ + (elm)->field.cqe_prev = (listelm); \ + if ((listelm)->field.cqe_next == CIRCLEQ_END(head)) \ + (head)->cqh_last = (elm); \ + else \ + (listelm)->field.cqe_next->field.cqe_prev = (elm); \ + (listelm)->field.cqe_next = (elm); \ +} while (0) + +#define CIRCLEQ_INSERT_BEFORE(head, listelm, elm, field) do { \ + (elm)->field.cqe_next = (listelm); \ + (elm)->field.cqe_prev = (listelm)->field.cqe_prev; \ + if ((listelm)->field.cqe_prev == CIRCLEQ_END(head)) \ + (head)->cqh_first = (elm); \ + else \ + (listelm)->field.cqe_prev->field.cqe_next = (elm); \ + (listelm)->field.cqe_prev = (elm); \ +} while (0) + +#define CIRCLEQ_INSERT_HEAD(head, elm, field) do { \ + (elm)->field.cqe_next = (head)->cqh_first; \ + (elm)->field.cqe_prev = CIRCLEQ_END(head); \ + if ((head)->cqh_last == CIRCLEQ_END(head)) \ + (head)->cqh_last = (elm); \ + else \ + (head)->cqh_first->field.cqe_prev = (elm); \ + (head)->cqh_first = (elm); \ +} while (0) + +#define CIRCLEQ_INSERT_TAIL(head, elm, field) do { \ + (elm)->field.cqe_next = CIRCLEQ_END(head); \ + (elm)->field.cqe_prev = (head)->cqh_last; \ + if ((head)->cqh_first == CIRCLEQ_END(head)) \ + (head)->cqh_first = (elm); \ + else \ + (head)->cqh_last->field.cqe_next = (elm); \ + (head)->cqh_last = (elm); \ +} while (0) + +#define CIRCLEQ_REMOVE(head, elm, field) do { \ + if ((elm)->field.cqe_next == CIRCLEQ_END(head)) \ + (head)->cqh_last = (elm)->field.cqe_prev; \ + else \ + (elm)->field.cqe_next->field.cqe_prev = \ + (elm)->field.cqe_prev; \ + if ((elm)->field.cqe_prev == CIRCLEQ_END(head)) \ + (head)->cqh_first = (elm)->field.cqe_next; \ + else \ + (elm)->field.cqe_prev->field.cqe_next = \ + (elm)->field.cqe_next; \ +} while (0) + +#define CIRCLEQ_REPLACE(head, elm, elm2, field) do { \ + if (((elm2)->field.cqe_next = (elm)->field.cqe_next) == \ + CIRCLEQ_END(head)) \ + (head).cqh_last = (elm2); \ + else \ + (elm2)->field.cqe_next->field.cqe_prev = (elm2); \ + if (((elm2)->field.cqe_prev = (elm)->field.cqe_prev) == \ + CIRCLEQ_END(head)) \ + (head).cqh_first = (elm2); \ + else \ + (elm2)->field.cqe_prev->field.cqe_next = (elm2); \ +} while (0) + +#endif /* !SYS_QUEUE_H__ */ diff -Nru mysql-5.7-5.7.25/extra/libevent/CONTRIBUTING.md mysql-5.7-5.7.26/extra/libevent/CONTRIBUTING.md --- mysql-5.7-5.7.25/extra/libevent/CONTRIBUTING.md 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/CONTRIBUTING.md 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,35 @@ +# Contributing to the libevent + +## Coding style + +First and most generic rule: **just look around**. + +But, we have a script for checking patches/files/git-refs: +```shell +# Chech HEAD git ref +./checkpatch.sh -r +./checkpatch.sh -r HEAD + +# Check patch +git format-patch --stdout -1 | ./checkpatch.sh -p +git show -1 | ./checkpatch.sh -p + +# Or via regular files +git format-patch --stdout -2 +./checkpatch.sh *.patch + +# Over a file +./checkpatch.sh -d event.c +./checkpatch.sh -d < event.c + +# And print the whole file not only summary +./checkpatch.sh -f event.c +./checkpatch.sh -f < event.c + +# See +./checkpatch.sh -h +``` + +## Testing +- Write new unit test in `test/regress_{MORE_SUITABLE_FOR_YOU}.c` +- `make verify` diff -Nru mysql-5.7-5.7.25/extra/libevent/defer-internal.h mysql-5.7-5.7.26/extra/libevent/defer-internal.h --- mysql-5.7-5.7.25/extra/libevent/defer-internal.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/defer-internal.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,70 @@ +/* + * Copyright (c) 2009-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef DEFER_INTERNAL_H_INCLUDED_ +#define DEFER_INTERNAL_H_INCLUDED_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include "event2/event-config.h" +#include "evconfig-private.h" + +#include + +struct event_callback; +typedef void (*deferred_cb_fn)(struct event_callback *, void *); + +/** + Initialize an empty, non-pending event_callback. + + @param deferred The struct event_callback structure to initialize. + @param priority The priority that the callback should run at. + @param cb The function to run when the struct event_callback executes. + @param arg The function's second argument. + */ +void event_deferred_cb_init_(struct event_callback *, ev_uint8_t, deferred_cb_fn, void *); +/** + Change the priority of a non-pending event_callback. + */ +void event_deferred_cb_set_priority_(struct event_callback *, ev_uint8_t); +/** + Cancel a struct event_callback if it is currently scheduled in an event_base. + */ +void event_deferred_cb_cancel_(struct event_base *, struct event_callback *); +/** + Activate a struct event_callback if it is not currently scheduled in an event_base. + + Return true if it was not previously scheduled. + */ +int event_deferred_cb_schedule_(struct event_base *, struct event_callback *); + +#ifdef __cplusplus +} +#endif + +#endif /* EVENT_INTERNAL_H_INCLUDED_ */ + diff -Nru mysql-5.7-5.7.25/extra/libevent/devpoll.c mysql-5.7-5.7.26/extra/libevent/devpoll.c --- mysql-5.7-5.7.25/extra/libevent/devpoll.c 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/devpoll.c 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,311 @@ +/* + * Copyright 2000-2009 Niels Provos + * Copyright 2009-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#include "event2/event-config.h" +#include "evconfig-private.h" + +#ifdef EVENT__HAVE_DEVPOLL + +#include +#include +#ifdef EVENT__HAVE_SYS_TIME_H +#include +#endif +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "event2/event.h" +#include "event2/event_struct.h" +#include "event2/thread.h" +#include "event-internal.h" +#include "evsignal-internal.h" +#include "log-internal.h" +#include "evmap-internal.h" +#include "evthread-internal.h" + +struct devpollop { + struct pollfd *events; + int nevents; + int dpfd; + struct pollfd *changes; + int nchanges; +}; + +static void *devpoll_init(struct event_base *); +static int devpoll_add(struct event_base *, int fd, short old, short events, void *); +static int devpoll_del(struct event_base *, int fd, short old, short events, void *); +static int devpoll_dispatch(struct event_base *, struct timeval *); +static void devpoll_dealloc(struct event_base *); + +const struct eventop devpollops = { + "devpoll", + devpoll_init, + devpoll_add, + devpoll_del, + devpoll_dispatch, + devpoll_dealloc, + 1, /* need reinit */ + EV_FEATURE_FDS|EV_FEATURE_O1, + 0 +}; + +#define NEVENT 32000 + +static int +devpoll_commit(struct devpollop *devpollop) +{ + /* + * Due to a bug in Solaris, we have to use pwrite with an offset of 0. + * Write is limited to 2GB of data, until it will fail. + */ + if (pwrite(devpollop->dpfd, devpollop->changes, + sizeof(struct pollfd) * devpollop->nchanges, 0) == -1) + return (-1); + + devpollop->nchanges = 0; + return (0); +} + +static int +devpoll_queue(struct devpollop *devpollop, int fd, int events) { + struct pollfd *pfd; + + if (devpollop->nchanges >= devpollop->nevents) { + /* + * Change buffer is full, must commit it to /dev/poll before + * adding more + */ + if (devpoll_commit(devpollop) != 0) + return (-1); + } + + pfd = &devpollop->changes[devpollop->nchanges++]; + pfd->fd = fd; + pfd->events = events; + pfd->revents = 0; + + return (0); +} + +static void * +devpoll_init(struct event_base *base) +{ + int dpfd, nfiles = NEVENT; + struct rlimit rl; + struct devpollop *devpollop; + + if (!(devpollop = mm_calloc(1, sizeof(struct devpollop)))) + return (NULL); + + if (getrlimit(RLIMIT_NOFILE, &rl) == 0 && + rl.rlim_cur != RLIM_INFINITY) + nfiles = rl.rlim_cur; + + /* Initialize the kernel queue */ + if ((dpfd = evutil_open_closeonexec_("/dev/poll", O_RDWR, 0)) == -1) { + event_warn("open: /dev/poll"); + mm_free(devpollop); + return (NULL); + } + + devpollop->dpfd = dpfd; + + /* Initialize fields */ + /* FIXME: allocating 'nfiles' worth of space here can be + * expensive and unnecessary. See how epoll.c does it instead. */ + devpollop->events = mm_calloc(nfiles, sizeof(struct pollfd)); + if (devpollop->events == NULL) { + mm_free(devpollop); + close(dpfd); + return (NULL); + } + devpollop->nevents = nfiles; + + devpollop->changes = mm_calloc(nfiles, sizeof(struct pollfd)); + if (devpollop->changes == NULL) { + mm_free(devpollop->events); + mm_free(devpollop); + close(dpfd); + return (NULL); + } + + evsig_init_(base); + + return (devpollop); +} + +static int +devpoll_dispatch(struct event_base *base, struct timeval *tv) +{ + struct devpollop *devpollop = base->evbase; + struct pollfd *events = devpollop->events; + struct dvpoll dvp; + int i, res, timeout = -1; + + if (devpollop->nchanges) + devpoll_commit(devpollop); + + if (tv != NULL) + timeout = tv->tv_sec * 1000 + (tv->tv_usec + 999) / 1000; + + dvp.dp_fds = devpollop->events; + dvp.dp_nfds = devpollop->nevents; + dvp.dp_timeout = timeout; + + EVBASE_RELEASE_LOCK(base, th_base_lock); + + res = ioctl(devpollop->dpfd, DP_POLL, &dvp); + + EVBASE_ACQUIRE_LOCK(base, th_base_lock); + + if (res == -1) { + if (errno != EINTR) { + event_warn("ioctl: DP_POLL"); + return (-1); + } + + return (0); + } + + event_debug(("%s: devpoll_wait reports %d", __func__, res)); + + for (i = 0; i < res; i++) { + int which = 0; + int what = events[i].revents; + + if (what & POLLHUP) + what |= POLLIN | POLLOUT; + else if (what & POLLERR) + what |= POLLIN | POLLOUT; + + if (what & POLLIN) + which |= EV_READ; + if (what & POLLOUT) + which |= EV_WRITE; + + if (!which) + continue; + + /* XXX(niels): not sure if this works for devpoll */ + evmap_io_active_(base, events[i].fd, which); + } + + return (0); +} + + +static int +devpoll_add(struct event_base *base, int fd, short old, short events, void *p) +{ + struct devpollop *devpollop = base->evbase; + int res; + (void)p; + + /* + * It's not necessary to OR the existing read/write events that we + * are currently interested in with the new event we are adding. + * The /dev/poll driver ORs any new events with the existing events + * that it has cached for the fd. + */ + + res = 0; + if (events & EV_READ) + res |= POLLIN; + if (events & EV_WRITE) + res |= POLLOUT; + + if (devpoll_queue(devpollop, fd, res) != 0) + return (-1); + + return (0); +} + +static int +devpoll_del(struct event_base *base, int fd, short old, short events, void *p) +{ + struct devpollop *devpollop = base->evbase; + int res; + (void)p; + + res = 0; + if (events & EV_READ) + res |= POLLIN; + if (events & EV_WRITE) + res |= POLLOUT; + + /* + * The only way to remove an fd from the /dev/poll monitored set is + * to use POLLREMOVE by itself. This removes ALL events for the fd + * provided so if we care about two events and are only removing one + * we must re-add the other event after POLLREMOVE. + */ + + if (devpoll_queue(devpollop, fd, POLLREMOVE) != 0) + return (-1); + + if ((res & (POLLIN|POLLOUT)) != (POLLIN|POLLOUT)) { + /* + * We're not deleting all events, so we must resubmit the + * event that we are still interested in if one exists. + */ + + if ((res & POLLIN) && (old & EV_WRITE)) { + /* Deleting read, still care about write */ + devpoll_queue(devpollop, fd, POLLOUT); + } else if ((res & POLLOUT) && (old & EV_READ)) { + /* Deleting write, still care about read */ + devpoll_queue(devpollop, fd, POLLIN); + } + } + + return (0); +} + +static void +devpoll_dealloc(struct event_base *base) +{ + struct devpollop *devpollop = base->evbase; + + evsig_dealloc_(base); + if (devpollop->events) + mm_free(devpollop->events); + if (devpollop->changes) + mm_free(devpollop->changes); + if (devpollop->dpfd >= 0) + close(devpollop->dpfd); + + memset(devpollop, 0, sizeof(struct devpollop)); + mm_free(devpollop); +} + +#endif /* EVENT__HAVE_DEVPOLL */ diff -Nru mysql-5.7-5.7.25/extra/libevent/epoll.c mysql-5.7-5.7.26/extra/libevent/epoll.c --- mysql-5.7-5.7.25/extra/libevent/epoll.c 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/epoll.c 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,540 @@ +/* + * Copyright 2000-2007 Niels Provos + * Copyright 2007-2012 Niels Provos, Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#include "event2/event-config.h" +#include "evconfig-private.h" + +#ifdef EVENT__HAVE_EPOLL + +#include +#include +#include +#ifdef EVENT__HAVE_SYS_TIME_H +#include +#endif +#include +#include +#include +#include +#include +#include +#include +#include +#include +#ifdef EVENT__HAVE_FCNTL_H +#include +#endif +#ifdef EVENT__HAVE_SYS_TIMERFD_H +#include +#endif + +#include "event-internal.h" +#include "evsignal-internal.h" +#include "event2/thread.h" +#include "evthread-internal.h" +#include "log-internal.h" +#include "evmap-internal.h" +#include "changelist-internal.h" +#include "time-internal.h" + +/* Since Linux 2.6.17, epoll is able to report about peer half-closed connection + using special EPOLLRDHUP flag on a read event. +*/ +#if !defined(EPOLLRDHUP) +#define EPOLLRDHUP 0 +#define EARLY_CLOSE_IF_HAVE_RDHUP 0 +#else +#define EARLY_CLOSE_IF_HAVE_RDHUP EV_FEATURE_EARLY_CLOSE +#endif + +#include "epolltable-internal.h" + +#if defined(EVENT__HAVE_SYS_TIMERFD_H) && \ + defined(EVENT__HAVE_TIMERFD_CREATE) && \ + defined(HAVE_POSIX_MONOTONIC) && defined(TFD_NONBLOCK) && \ + defined(TFD_CLOEXEC) +/* Note that we only use timerfd if TFD_NONBLOCK and TFD_CLOEXEC are available + and working. This means that we can't support it on 2.6.25 (where timerfd + was introduced) or 2.6.26, since 2.6.27 introduced those flags. + */ +#define USING_TIMERFD +#endif + +struct epollop { + struct epoll_event *events; + int nevents; + int epfd; +#ifdef USING_TIMERFD + int timerfd; +#endif +}; + +static void *epoll_init(struct event_base *); +static int epoll_dispatch(struct event_base *, struct timeval *); +static void epoll_dealloc(struct event_base *); + +static const struct eventop epollops_changelist = { + "epoll (with changelist)", + epoll_init, + event_changelist_add_, + event_changelist_del_, + epoll_dispatch, + epoll_dealloc, + 1, /* need reinit */ + EV_FEATURE_ET|EV_FEATURE_O1| EARLY_CLOSE_IF_HAVE_RDHUP, + EVENT_CHANGELIST_FDINFO_SIZE +}; + + +static int epoll_nochangelist_add(struct event_base *base, evutil_socket_t fd, + short old, short events, void *p); +static int epoll_nochangelist_del(struct event_base *base, evutil_socket_t fd, + short old, short events, void *p); + +const struct eventop epollops = { + "epoll", + epoll_init, + epoll_nochangelist_add, + epoll_nochangelist_del, + epoll_dispatch, + epoll_dealloc, + 1, /* need reinit */ + EV_FEATURE_ET|EV_FEATURE_O1|EV_FEATURE_EARLY_CLOSE, + 0 +}; + +#define INITIAL_NEVENT 32 +#define MAX_NEVENT 4096 + +/* On Linux kernels at least up to 2.6.24.4, epoll can't handle timeout + * values bigger than (LONG_MAX - 999ULL)/HZ. HZ in the wild can be + * as big as 1000, and LONG_MAX can be as small as (1<<31)-1, so the + * largest number of msec we can support here is 2147482. Let's + * round that down by 47 seconds. + */ +#define MAX_EPOLL_TIMEOUT_MSEC (35*60*1000) + +static void * +epoll_init(struct event_base *base) +{ + int epfd = -1; + struct epollop *epollop; + +#ifdef EVENT__HAVE_EPOLL_CREATE1 + /* First, try the shiny new epoll_create1 interface, if we have it. */ + epfd = epoll_create1(EPOLL_CLOEXEC); +#endif + if (epfd == -1) { + /* Initialize the kernel queue using the old interface. (The + size field is ignored since 2.6.8.) */ + if ((epfd = epoll_create(32000)) == -1) { + if (errno != ENOSYS) + event_warn("epoll_create"); + return (NULL); + } + evutil_make_socket_closeonexec(epfd); + } + + if (!(epollop = mm_calloc(1, sizeof(struct epollop)))) { + close(epfd); + return (NULL); + } + + epollop->epfd = epfd; + + /* Initialize fields */ + epollop->events = mm_calloc(INITIAL_NEVENT, sizeof(struct epoll_event)); + if (epollop->events == NULL) { + mm_free(epollop); + close(epfd); + return (NULL); + } + epollop->nevents = INITIAL_NEVENT; + + if ((base->flags & EVENT_BASE_FLAG_EPOLL_USE_CHANGELIST) != 0 || + ((base->flags & EVENT_BASE_FLAG_IGNORE_ENV) == 0 && + evutil_getenv_("EVENT_EPOLL_USE_CHANGELIST") != NULL)) { + + base->evsel = &epollops_changelist; + } + +#ifdef USING_TIMERFD + /* + The epoll interface ordinarily gives us one-millisecond precision, + so on Linux it makes perfect sense to use the CLOCK_MONOTONIC_COARSE + timer. But when the user has set the new PRECISE_TIMER flag for an + event_base, we can try to use timerfd to give them finer granularity. + */ + if ((base->flags & EVENT_BASE_FLAG_PRECISE_TIMER) && + base->monotonic_timer.monotonic_clock == CLOCK_MONOTONIC) { + int fd; + fd = epollop->timerfd = timerfd_create(CLOCK_MONOTONIC, TFD_NONBLOCK|TFD_CLOEXEC); + if (epollop->timerfd >= 0) { + struct epoll_event epev; + memset(&epev, 0, sizeof(epev)); + epev.data.fd = epollop->timerfd; + epev.events = EPOLLIN; + if (epoll_ctl(epollop->epfd, EPOLL_CTL_ADD, fd, &epev) < 0) { + event_warn("epoll_ctl(timerfd)"); + close(fd); + epollop->timerfd = -1; + } + } else { + if (errno != EINVAL && errno != ENOSYS) { + /* These errors probably mean that we were + * compiled with timerfd/TFD_* support, but + * we're running on a kernel that lacks those. + */ + event_warn("timerfd_create"); + } + epollop->timerfd = -1; + } + } else { + epollop->timerfd = -1; + } +#endif + + evsig_init_(base); + + return (epollop); +} + +static const char * +change_to_string(int change) +{ + change &= (EV_CHANGE_ADD|EV_CHANGE_DEL); + if (change == EV_CHANGE_ADD) { + return "add"; + } else if (change == EV_CHANGE_DEL) { + return "del"; + } else if (change == 0) { + return "none"; + } else { + return "???"; + } +} + +static const char * +epoll_op_to_string(int op) +{ + return op == EPOLL_CTL_ADD?"ADD": + op == EPOLL_CTL_DEL?"DEL": + op == EPOLL_CTL_MOD?"MOD": + "???"; +} + +#define PRINT_CHANGES(op, events, ch, status) \ + "Epoll %s(%d) on fd %d " status ". " \ + "Old events were %d; " \ + "read change was %d (%s); " \ + "write change was %d (%s); " \ + "close change was %d (%s)", \ + epoll_op_to_string(op), \ + events, \ + ch->fd, \ + ch->old_events, \ + ch->read_change, \ + change_to_string(ch->read_change), \ + ch->write_change, \ + change_to_string(ch->write_change), \ + ch->close_change, \ + change_to_string(ch->close_change) + +static int +epoll_apply_one_change(struct event_base *base, + struct epollop *epollop, + const struct event_change *ch) +{ + struct epoll_event epev; + int op, events = 0; + int idx; + + idx = EPOLL_OP_TABLE_INDEX(ch); + op = epoll_op_table[idx].op; + events = epoll_op_table[idx].events; + + if (!events) { + EVUTIL_ASSERT(op == 0); + return 0; + } + + if ((ch->read_change|ch->write_change) & EV_CHANGE_ET) + events |= EPOLLET; + + memset(&epev, 0, sizeof(epev)); + epev.data.fd = ch->fd; + epev.events = events; + if (epoll_ctl(epollop->epfd, op, ch->fd, &epev) == 0) { + event_debug((PRINT_CHANGES(op, epev.events, ch, "okay"))); + return 0; + } + + switch (op) { + case EPOLL_CTL_MOD: + if (errno == ENOENT) { + /* If a MOD operation fails with ENOENT, the + * fd was probably closed and re-opened. We + * should retry the operation as an ADD. + */ + if (epoll_ctl(epollop->epfd, EPOLL_CTL_ADD, ch->fd, &epev) == -1) { + event_warn("Epoll MOD(%d) on %d retried as ADD; that failed too", + (int)epev.events, ch->fd); + return -1; + } else { + event_debug(("Epoll MOD(%d) on %d retried as ADD; succeeded.", + (int)epev.events, + ch->fd)); + return 0; + } + } + break; + case EPOLL_CTL_ADD: + if (errno == EEXIST) { + /* If an ADD operation fails with EEXIST, + * either the operation was redundant (as with a + * precautionary add), or we ran into a fun + * kernel bug where using dup*() to duplicate the + * same file into the same fd gives you the same epitem + * rather than a fresh one. For the second case, + * we must retry with MOD. */ + if (epoll_ctl(epollop->epfd, EPOLL_CTL_MOD, ch->fd, &epev) == -1) { + event_warn("Epoll ADD(%d) on %d retried as MOD; that failed too", + (int)epev.events, ch->fd); + return -1; + } else { + event_debug(("Epoll ADD(%d) on %d retried as MOD; succeeded.", + (int)epev.events, + ch->fd)); + return 0; + } + } + break; + case EPOLL_CTL_DEL: + if (errno == ENOENT || errno == EBADF || errno == EPERM) { + /* If a delete fails with one of these errors, + * that's fine too: we closed the fd before we + * got around to calling epoll_dispatch. */ + event_debug(("Epoll DEL(%d) on fd %d gave %s: DEL was unnecessary.", + (int)epev.events, + ch->fd, + strerror(errno))); + return 0; + } + break; + default: + break; + } + + event_warn(PRINT_CHANGES(op, epev.events, ch, "failed")); + return -1; +} + +static int +epoll_apply_changes(struct event_base *base) +{ + struct event_changelist *changelist = &base->changelist; + struct epollop *epollop = base->evbase; + struct event_change *ch; + + int r = 0; + int i; + + for (i = 0; i < changelist->n_changes; ++i) { + ch = &changelist->changes[i]; + if (epoll_apply_one_change(base, epollop, ch) < 0) + r = -1; + } + + return (r); +} + +static int +epoll_nochangelist_add(struct event_base *base, evutil_socket_t fd, + short old, short events, void *p) +{ + struct event_change ch; + ch.fd = fd; + ch.old_events = old; + ch.read_change = ch.write_change = ch.close_change = 0; + if (events & EV_WRITE) + ch.write_change = EV_CHANGE_ADD | + (events & EV_ET); + if (events & EV_READ) + ch.read_change = EV_CHANGE_ADD | + (events & EV_ET); + if (events & EV_CLOSED) + ch.close_change = EV_CHANGE_ADD | + (events & EV_ET); + + return epoll_apply_one_change(base, base->evbase, &ch); +} + +static int +epoll_nochangelist_del(struct event_base *base, evutil_socket_t fd, + short old, short events, void *p) +{ + struct event_change ch; + ch.fd = fd; + ch.old_events = old; + ch.read_change = ch.write_change = ch.close_change = 0; + if (events & EV_WRITE) + ch.write_change = EV_CHANGE_DEL; + if (events & EV_READ) + ch.read_change = EV_CHANGE_DEL; + if (events & EV_CLOSED) + ch.close_change = EV_CHANGE_DEL; + + return epoll_apply_one_change(base, base->evbase, &ch); +} + +static int +epoll_dispatch(struct event_base *base, struct timeval *tv) +{ + struct epollop *epollop = base->evbase; + struct epoll_event *events = epollop->events; + int i, res; + long timeout = -1; + +#ifdef USING_TIMERFD + if (epollop->timerfd >= 0) { + struct itimerspec is; + is.it_interval.tv_sec = 0; + is.it_interval.tv_nsec = 0; + if (tv == NULL) { + /* No timeout; disarm the timer. */ + is.it_value.tv_sec = 0; + is.it_value.tv_nsec = 0; + } else { + if (tv->tv_sec == 0 && tv->tv_usec == 0) { + /* we need to exit immediately; timerfd can't + * do that. */ + timeout = 0; + } + is.it_value.tv_sec = tv->tv_sec; + is.it_value.tv_nsec = tv->tv_usec * 1000; + } + /* TODO: we could avoid unnecessary syscalls here by only + calling timerfd_settime when the top timeout changes, or + when we're called with a different timeval. + */ + if (timerfd_settime(epollop->timerfd, 0, &is, NULL) < 0) { + event_warn("timerfd_settime"); + } + } else +#endif + if (tv != NULL) { + timeout = evutil_tv_to_msec_(tv); + if (timeout < 0 || timeout > MAX_EPOLL_TIMEOUT_MSEC) { + /* Linux kernels can wait forever if the timeout is + * too big; see comment on MAX_EPOLL_TIMEOUT_MSEC. */ + timeout = MAX_EPOLL_TIMEOUT_MSEC; + } + } + + epoll_apply_changes(base); + event_changelist_remove_all_(&base->changelist, base); + + EVBASE_RELEASE_LOCK(base, th_base_lock); + + res = epoll_wait(epollop->epfd, events, epollop->nevents, timeout); + + EVBASE_ACQUIRE_LOCK(base, th_base_lock); + + if (res == -1) { + if (errno != EINTR) { + event_warn("epoll_wait"); + return (-1); + } + + return (0); + } + + event_debug(("%s: epoll_wait reports %d", __func__, res)); + EVUTIL_ASSERT(res <= epollop->nevents); + + for (i = 0; i < res; i++) { + int what = events[i].events; + short ev = 0; +#ifdef USING_TIMERFD + if (events[i].data.fd == epollop->timerfd) + continue; +#endif + + if (what & (EPOLLHUP|EPOLLERR)) { + ev = EV_READ | EV_WRITE; + } else { + if (what & EPOLLIN) + ev |= EV_READ; + if (what & EPOLLOUT) + ev |= EV_WRITE; + if (what & EPOLLRDHUP) + ev |= EV_CLOSED; + } + + if (!ev) + continue; + + evmap_io_active_(base, events[i].data.fd, ev | EV_ET); + } + + if (res == epollop->nevents && epollop->nevents < MAX_NEVENT) { + /* We used all of the event space this time. We should + be ready for more events next time. */ + int new_nevents = epollop->nevents * 2; + struct epoll_event *new_events; + + new_events = mm_realloc(epollop->events, + new_nevents * sizeof(struct epoll_event)); + if (new_events) { + epollop->events = new_events; + epollop->nevents = new_nevents; + } + } + + return (0); +} + + +static void +epoll_dealloc(struct event_base *base) +{ + struct epollop *epollop = base->evbase; + + evsig_dealloc_(base); + if (epollop->events) + mm_free(epollop->events); + if (epollop->epfd >= 0) + close(epollop->epfd); +#ifdef USING_TIMERFD + if (epollop->timerfd >= 0) + close(epollop->timerfd); +#endif + + memset(epollop, 0, sizeof(struct epollop)); + mm_free(epollop); +} + +#endif /* EVENT__HAVE_EPOLL */ diff -Nru mysql-5.7-5.7.25/extra/libevent/epoll_sub.c mysql-5.7-5.7.26/extra/libevent/epoll_sub.c --- mysql-5.7-5.7.25/extra/libevent/epoll_sub.c 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/epoll_sub.c 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,66 @@ +/* + * Copyright 2003-2009 Niels Provos + * Copyright 2009-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#include "evconfig-private.h" +#include + +#include +#include +#include +#include +#include +#include + +int +epoll_create(int size) +{ +#if !defined(__NR_epoll_create) && defined(__NR_epoll_create1) + if (size <= 0) { + errno = EINVAL; + return -1; + } + return (syscall(__NR_epoll_create1, 0)); +#else + return (syscall(__NR_epoll_create, size)); +#endif +} + +int +epoll_ctl(int epfd, int op, int fd, struct epoll_event *event) +{ + + return (syscall(__NR_epoll_ctl, epfd, op, fd, event)); +} + +int +epoll_wait(int epfd, struct epoll_event *events, int maxevents, int timeout) +{ +#if !defined(__NR_epoll_wait) && defined(__NR_epoll_pwait) + return (syscall(__NR_epoll_pwait, epfd, events, maxevents, timeout, NULL, 0)); +#else + return (syscall(__NR_epoll_wait, epfd, events, maxevents, timeout)); +#endif +} diff -Nru mysql-5.7-5.7.25/extra/libevent/epolltable-internal.h mysql-5.7-5.7.26/extra/libevent/epolltable-internal.h --- mysql-5.7-5.7.25/extra/libevent/epolltable-internal.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/epolltable-internal.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,1166 @@ +/* + * Copyright (c) 2000-2007 Niels Provos + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef EPOLLTABLE_INTERNAL_H_INCLUDED_ +#define EPOLLTABLE_INTERNAL_H_INCLUDED_ + +/* + Here are the values we're masking off to decide what operations to do. + Note that since EV_READ|EV_WRITE. + + Note also that this table is a little sparse, since ADD+DEL is + nonsensical ("xxx" in the list below.) + + Note also also that we are shifting old_events by only 5 bits, since + EV_READ is 2 and EV_WRITE is 4. + + The table was auto-generated with a python script, according to this + pseudocode:[*0] + + If either the read or the write change is add+del: + This is impossible; Set op==-1, events=0. + Else, if either the read or the write change is add: + Set events to 0. + If the read change is add, or + (the read change is not del, and ev_read is in old_events): + Add EPOLLIN to events. + If the write change is add, or + (the write change is not del, and ev_write is in old_events): + Add EPOLLOUT to events. + + If old_events is set: + Set op to EPOLL_CTL_MOD [*1,*2] + Else: + Set op to EPOLL_CTL_ADD [*3] + + Else, if the read or the write change is del: + Set op to EPOLL_CTL_DEL. + If the read change is del: + If the write change is del: + Set events to EPOLLIN|EPOLLOUT + Else if ev_write is in old_events: + Set events to EPOLLOUT + Set op to EPOLL_CTL_MOD + Else + Set events to EPOLLIN + Else: + {The write change is del.} + If ev_read is in old_events: + Set events to EPOLLIN + Set op to EPOLL_CTL_MOD + Else: + Set the events to EPOLLOUT + + Else: + There is no read or write change; set op to 0 and events to 0. + + The logic is a little tricky, since we had no events set on the fd before, + we need to set op="ADD" and set events=the events we want to add. If we + had any events set on the fd before, and we want any events to remain on + the fd, we need to say op="MOD" and set events=the events we want to + remain. But if we want to delete the last event, we say op="DEL" and + set events=(any non-null pointer). + + [*0] Actually, the Python script has gotten a bit more complicated, to + support EPOLLRDHUP. + + [*1] This MOD is only a guess. MOD might fail with ENOENT if the file was + closed and a new file was opened with the same fd. If so, we'll retry + with ADD. + + [*2] We can't replace this with a no-op even if old_events is the same as + the new events: if the file was closed and reopened, we need to retry + with an ADD. (We do a MOD in this case since "no change" is more + common than "close and reopen", so we'll usually wind up doing 1 + syscalls instead of 2.) + + [*3] This ADD is only a guess. There is a fun Linux kernel issue where if + you have two fds for the same file (via dup) and you ADD one to an + epfd, then close it, then re-create it with the same fd (via dup2 or an + unlucky dup), then try to ADD it again, you'll get an EEXIST, since the + struct epitem is not actually removed from the struct eventpoll until + the file itself is closed. + + EV_CHANGE_ADD==1 + EV_CHANGE_DEL==2 + EV_READ ==2 + EV_WRITE ==4 + EV_CLOSED ==0x80 + + Bit 0: close change is add + Bit 1: close change is del + Bit 2: read change is add + Bit 3: read change is del + Bit 4: write change is add + Bit 5: write change is del + Bit 6: old events had EV_READ + Bit 7: old events had EV_WRITE + Bit 8: old events had EV_CLOSED +*/ + +#define EPOLL_OP_TABLE_INDEX(c) \ + ( (((c)->close_change&(EV_CHANGE_ADD|EV_CHANGE_DEL))) | \ + (((c)->read_change&(EV_CHANGE_ADD|EV_CHANGE_DEL)) << 2) | \ + (((c)->write_change&(EV_CHANGE_ADD|EV_CHANGE_DEL)) << 4) | \ + (((c)->old_events&(EV_READ|EV_WRITE)) << 5) | \ + (((c)->old_events&(EV_CLOSED)) << 1) \ + ) + +#if EV_READ != 2 || EV_WRITE != 4 || EV_CLOSED != 0x80 || EV_CHANGE_ADD != 1 || EV_CHANGE_DEL != 2 +#error "Libevent's internals changed! Regenerate the op_table in epolltable-internal.h" +#endif + +static const struct operation { + int events; + int op; +} epoll_op_table[] = { + /* old= 0, write: 0, read: 0, close: 0 */ + { 0, 0 }, + /* old= 0, write: 0, read: 0, close:add */ + { EPOLLRDHUP, EPOLL_CTL_ADD }, + /* old= 0, write: 0, read: 0, close:del */ + { EPOLLRDHUP, EPOLL_CTL_DEL }, + /* old= 0, write: 0, read: 0, close:xxx */ + { 0, 255 }, + /* old= 0, write: 0, read:add, close: 0 */ + { EPOLLIN, EPOLL_CTL_ADD }, + /* old= 0, write: 0, read:add, close:add */ + { EPOLLIN|EPOLLRDHUP, EPOLL_CTL_ADD }, + /* old= 0, write: 0, read:add, close:del */ + { EPOLLIN, EPOLL_CTL_ADD }, + /* old= 0, write: 0, read:add, close:xxx */ + { 0, 255 }, + /* old= 0, write: 0, read:del, close: 0 */ + { EPOLLIN, EPOLL_CTL_DEL }, + /* old= 0, write: 0, read:del, close:add */ + { EPOLLRDHUP, EPOLL_CTL_ADD }, + /* old= 0, write: 0, read:del, close:del */ + { EPOLLIN|EPOLLRDHUP, EPOLL_CTL_DEL }, + /* old= 0, write: 0, read:del, close:xxx */ + { 0, 255 }, + /* old= 0, write: 0, read:xxx, close: 0 */ + { 0, 255 }, + /* old= 0, write: 0, read:xxx, close:add */ + { 0, 255 }, + /* old= 0, write: 0, read:xxx, close:del */ + { 0, 255 }, + /* old= 0, write: 0, read:xxx, close:xxx */ + { 0, 255 }, + /* old= 0, write:add, read: 0, close: 0 */ + { EPOLLOUT, EPOLL_CTL_ADD }, + /* old= 0, write:add, read: 0, close:add */ + { EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_ADD }, + /* old= 0, write:add, read: 0, close:del */ + { EPOLLOUT, EPOLL_CTL_ADD }, + /* old= 0, write:add, read: 0, close:xxx */ + { 0, 255 }, + /* old= 0, write:add, read:add, close: 0 */ + { EPOLLIN|EPOLLOUT, EPOLL_CTL_ADD }, + /* old= 0, write:add, read:add, close:add */ + { EPOLLIN|EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_ADD }, + /* old= 0, write:add, read:add, close:del */ + { EPOLLIN|EPOLLOUT, EPOLL_CTL_ADD }, + /* old= 0, write:add, read:add, close:xxx */ + { 0, 255 }, + /* old= 0, write:add, read:del, close: 0 */ + { EPOLLOUT, EPOLL_CTL_ADD }, + /* old= 0, write:add, read:del, close:add */ + { EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_ADD }, + /* old= 0, write:add, read:del, close:del */ + { EPOLLOUT, EPOLL_CTL_ADD }, + /* old= 0, write:add, read:del, close:xxx */ + { 0, 255 }, + /* old= 0, write:add, read:xxx, close: 0 */ + { 0, 255 }, + /* old= 0, write:add, read:xxx, close:add */ + { 0, 255 }, + /* old= 0, write:add, read:xxx, close:del */ + { 0, 255 }, + /* old= 0, write:add, read:xxx, close:xxx */ + { 0, 255 }, + /* old= 0, write:del, read: 0, close: 0 */ + { EPOLLOUT, EPOLL_CTL_DEL }, + /* old= 0, write:del, read: 0, close:add */ + { EPOLLRDHUP, EPOLL_CTL_ADD }, + /* old= 0, write:del, read: 0, close:del */ + { EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_DEL }, + /* old= 0, write:del, read: 0, close:xxx */ + { 0, 255 }, + /* old= 0, write:del, read:add, close: 0 */ + { EPOLLIN, EPOLL_CTL_ADD }, + /* old= 0, write:del, read:add, close:add */ + { EPOLLIN|EPOLLRDHUP, EPOLL_CTL_ADD }, + /* old= 0, write:del, read:add, close:del */ + { EPOLLIN, EPOLL_CTL_ADD }, + /* old= 0, write:del, read:add, close:xxx */ + { 0, 255 }, + /* old= 0, write:del, read:del, close: 0 */ + { EPOLLIN|EPOLLOUT, EPOLL_CTL_DEL }, + /* old= 0, write:del, read:del, close:add */ + { EPOLLRDHUP, EPOLL_CTL_ADD }, + /* old= 0, write:del, read:del, close:del */ + { EPOLLIN|EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_DEL }, + /* old= 0, write:del, read:del, close:xxx */ + { 0, 255 }, + /* old= 0, write:del, read:xxx, close: 0 */ + { 0, 255 }, + /* old= 0, write:del, read:xxx, close:add */ + { 0, 255 }, + /* old= 0, write:del, read:xxx, close:del */ + { 0, 255 }, + /* old= 0, write:del, read:xxx, close:xxx */ + { 0, 255 }, + /* old= 0, write:xxx, read: 0, close: 0 */ + { 0, 255 }, + /* old= 0, write:xxx, read: 0, close:add */ + { 0, 255 }, + /* old= 0, write:xxx, read: 0, close:del */ + { 0, 255 }, + /* old= 0, write:xxx, read: 0, close:xxx */ + { 0, 255 }, + /* old= 0, write:xxx, read:add, close: 0 */ + { 0, 255 }, + /* old= 0, write:xxx, read:add, close:add */ + { 0, 255 }, + /* old= 0, write:xxx, read:add, close:del */ + { 0, 255 }, + /* old= 0, write:xxx, read:add, close:xxx */ + { 0, 255 }, + /* old= 0, write:xxx, read:del, close: 0 */ + { 0, 255 }, + /* old= 0, write:xxx, read:del, close:add */ + { 0, 255 }, + /* old= 0, write:xxx, read:del, close:del */ + { 0, 255 }, + /* old= 0, write:xxx, read:del, close:xxx */ + { 0, 255 }, + /* old= 0, write:xxx, read:xxx, close: 0 */ + { 0, 255 }, + /* old= 0, write:xxx, read:xxx, close:add */ + { 0, 255 }, + /* old= 0, write:xxx, read:xxx, close:del */ + { 0, 255 }, + /* old= 0, write:xxx, read:xxx, close:xxx */ + { 0, 255 }, + /* old= r, write: 0, read: 0, close: 0 */ + { 0, 0 }, + /* old= r, write: 0, read: 0, close:add */ + { EPOLLIN|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= r, write: 0, read: 0, close:del */ + { EPOLLIN, EPOLL_CTL_MOD }, + /* old= r, write: 0, read: 0, close:xxx */ + { 0, 255 }, + /* old= r, write: 0, read:add, close: 0 */ + { EPOLLIN, EPOLL_CTL_MOD }, + /* old= r, write: 0, read:add, close:add */ + { EPOLLIN|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= r, write: 0, read:add, close:del */ + { EPOLLIN, EPOLL_CTL_MOD }, + /* old= r, write: 0, read:add, close:xxx */ + { 0, 255 }, + /* old= r, write: 0, read:del, close: 0 */ + { EPOLLIN, EPOLL_CTL_DEL }, + /* old= r, write: 0, read:del, close:add */ + { EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= r, write: 0, read:del, close:del */ + { EPOLLIN|EPOLLRDHUP, EPOLL_CTL_DEL }, + /* old= r, write: 0, read:del, close:xxx */ + { 0, 255 }, + /* old= r, write: 0, read:xxx, close: 0 */ + { 0, 255 }, + /* old= r, write: 0, read:xxx, close:add */ + { 0, 255 }, + /* old= r, write: 0, read:xxx, close:del */ + { 0, 255 }, + /* old= r, write: 0, read:xxx, close:xxx */ + { 0, 255 }, + /* old= r, write:add, read: 0, close: 0 */ + { EPOLLIN|EPOLLOUT, EPOLL_CTL_MOD }, + /* old= r, write:add, read: 0, close:add */ + { EPOLLIN|EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= r, write:add, read: 0, close:del */ + { EPOLLIN|EPOLLOUT, EPOLL_CTL_MOD }, + /* old= r, write:add, read: 0, close:xxx */ + { 0, 255 }, + /* old= r, write:add, read:add, close: 0 */ + { EPOLLIN|EPOLLOUT, EPOLL_CTL_MOD }, + /* old= r, write:add, read:add, close:add */ + { EPOLLIN|EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= r, write:add, read:add, close:del */ + { EPOLLIN|EPOLLOUT, EPOLL_CTL_MOD }, + /* old= r, write:add, read:add, close:xxx */ + { 0, 255 }, + /* old= r, write:add, read:del, close: 0 */ + { EPOLLOUT, EPOLL_CTL_MOD }, + /* old= r, write:add, read:del, close:add */ + { EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= r, write:add, read:del, close:del */ + { EPOLLOUT, EPOLL_CTL_MOD }, + /* old= r, write:add, read:del, close:xxx */ + { 0, 255 }, + /* old= r, write:add, read:xxx, close: 0 */ + { 0, 255 }, + /* old= r, write:add, read:xxx, close:add */ + { 0, 255 }, + /* old= r, write:add, read:xxx, close:del */ + { 0, 255 }, + /* old= r, write:add, read:xxx, close:xxx */ + { 0, 255 }, + /* old= r, write:del, read: 0, close: 0 */ + { EPOLLIN, EPOLL_CTL_MOD }, + /* old= r, write:del, read: 0, close:add */ + { EPOLLIN|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= r, write:del, read: 0, close:del */ + { EPOLLIN, EPOLL_CTL_MOD }, + /* old= r, write:del, read: 0, close:xxx */ + { 0, 255 }, + /* old= r, write:del, read:add, close: 0 */ + { EPOLLIN, EPOLL_CTL_MOD }, + /* old= r, write:del, read:add, close:add */ + { EPOLLIN|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= r, write:del, read:add, close:del */ + { EPOLLIN, EPOLL_CTL_MOD }, + /* old= r, write:del, read:add, close:xxx */ + { 0, 255 }, + /* old= r, write:del, read:del, close: 0 */ + { EPOLLIN|EPOLLOUT, EPOLL_CTL_DEL }, + /* old= r, write:del, read:del, close:add */ + { EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= r, write:del, read:del, close:del */ + { EPOLLIN|EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_DEL }, + /* old= r, write:del, read:del, close:xxx */ + { 0, 255 }, + /* old= r, write:del, read:xxx, close: 0 */ + { 0, 255 }, + /* old= r, write:del, read:xxx, close:add */ + { 0, 255 }, + /* old= r, write:del, read:xxx, close:del */ + { 0, 255 }, + /* old= r, write:del, read:xxx, close:xxx */ + { 0, 255 }, + /* old= r, write:xxx, read: 0, close: 0 */ + { 0, 255 }, + /* old= r, write:xxx, read: 0, close:add */ + { 0, 255 }, + /* old= r, write:xxx, read: 0, close:del */ + { 0, 255 }, + /* old= r, write:xxx, read: 0, close:xxx */ + { 0, 255 }, + /* old= r, write:xxx, read:add, close: 0 */ + { 0, 255 }, + /* old= r, write:xxx, read:add, close:add */ + { 0, 255 }, + /* old= r, write:xxx, read:add, close:del */ + { 0, 255 }, + /* old= r, write:xxx, read:add, close:xxx */ + { 0, 255 }, + /* old= r, write:xxx, read:del, close: 0 */ + { 0, 255 }, + /* old= r, write:xxx, read:del, close:add */ + { 0, 255 }, + /* old= r, write:xxx, read:del, close:del */ + { 0, 255 }, + /* old= r, write:xxx, read:del, close:xxx */ + { 0, 255 }, + /* old= r, write:xxx, read:xxx, close: 0 */ + { 0, 255 }, + /* old= r, write:xxx, read:xxx, close:add */ + { 0, 255 }, + /* old= r, write:xxx, read:xxx, close:del */ + { 0, 255 }, + /* old= r, write:xxx, read:xxx, close:xxx */ + { 0, 255 }, + /* old= w, write: 0, read: 0, close: 0 */ + { 0, 0 }, + /* old= w, write: 0, read: 0, close:add */ + { EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= w, write: 0, read: 0, close:del */ + { EPOLLOUT, EPOLL_CTL_MOD }, + /* old= w, write: 0, read: 0, close:xxx */ + { 0, 255 }, + /* old= w, write: 0, read:add, close: 0 */ + { EPOLLIN|EPOLLOUT, EPOLL_CTL_MOD }, + /* old= w, write: 0, read:add, close:add */ + { EPOLLIN|EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= w, write: 0, read:add, close:del */ + { EPOLLIN|EPOLLOUT, EPOLL_CTL_MOD }, + /* old= w, write: 0, read:add, close:xxx */ + { 0, 255 }, + /* old= w, write: 0, read:del, close: 0 */ + { EPOLLOUT, EPOLL_CTL_MOD }, + /* old= w, write: 0, read:del, close:add */ + { EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= w, write: 0, read:del, close:del */ + { EPOLLOUT, EPOLL_CTL_MOD }, + /* old= w, write: 0, read:del, close:xxx */ + { 0, 255 }, + /* old= w, write: 0, read:xxx, close: 0 */ + { 0, 255 }, + /* old= w, write: 0, read:xxx, close:add */ + { 0, 255 }, + /* old= w, write: 0, read:xxx, close:del */ + { 0, 255 }, + /* old= w, write: 0, read:xxx, close:xxx */ + { 0, 255 }, + /* old= w, write:add, read: 0, close: 0 */ + { EPOLLOUT, EPOLL_CTL_MOD }, + /* old= w, write:add, read: 0, close:add */ + { EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= w, write:add, read: 0, close:del */ + { EPOLLOUT, EPOLL_CTL_MOD }, + /* old= w, write:add, read: 0, close:xxx */ + { 0, 255 }, + /* old= w, write:add, read:add, close: 0 */ + { EPOLLIN|EPOLLOUT, EPOLL_CTL_MOD }, + /* old= w, write:add, read:add, close:add */ + { EPOLLIN|EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= w, write:add, read:add, close:del */ + { EPOLLIN|EPOLLOUT, EPOLL_CTL_MOD }, + /* old= w, write:add, read:add, close:xxx */ + { 0, 255 }, + /* old= w, write:add, read:del, close: 0 */ + { EPOLLOUT, EPOLL_CTL_MOD }, + /* old= w, write:add, read:del, close:add */ + { EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= w, write:add, read:del, close:del */ + { EPOLLOUT, EPOLL_CTL_MOD }, + /* old= w, write:add, read:del, close:xxx */ + { 0, 255 }, + /* old= w, write:add, read:xxx, close: 0 */ + { 0, 255 }, + /* old= w, write:add, read:xxx, close:add */ + { 0, 255 }, + /* old= w, write:add, read:xxx, close:del */ + { 0, 255 }, + /* old= w, write:add, read:xxx, close:xxx */ + { 0, 255 }, + /* old= w, write:del, read: 0, close: 0 */ + { EPOLLOUT, EPOLL_CTL_DEL }, + /* old= w, write:del, read: 0, close:add */ + { EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= w, write:del, read: 0, close:del */ + { EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_DEL }, + /* old= w, write:del, read: 0, close:xxx */ + { 0, 255 }, + /* old= w, write:del, read:add, close: 0 */ + { EPOLLIN, EPOLL_CTL_MOD }, + /* old= w, write:del, read:add, close:add */ + { EPOLLIN|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= w, write:del, read:add, close:del */ + { EPOLLIN, EPOLL_CTL_MOD }, + /* old= w, write:del, read:add, close:xxx */ + { 0, 255 }, + /* old= w, write:del, read:del, close: 0 */ + { EPOLLIN|EPOLLOUT, EPOLL_CTL_DEL }, + /* old= w, write:del, read:del, close:add */ + { EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= w, write:del, read:del, close:del */ + { EPOLLIN|EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_DEL }, + /* old= w, write:del, read:del, close:xxx */ + { 0, 255 }, + /* old= w, write:del, read:xxx, close: 0 */ + { 0, 255 }, + /* old= w, write:del, read:xxx, close:add */ + { 0, 255 }, + /* old= w, write:del, read:xxx, close:del */ + { 0, 255 }, + /* old= w, write:del, read:xxx, close:xxx */ + { 0, 255 }, + /* old= w, write:xxx, read: 0, close: 0 */ + { 0, 255 }, + /* old= w, write:xxx, read: 0, close:add */ + { 0, 255 }, + /* old= w, write:xxx, read: 0, close:del */ + { 0, 255 }, + /* old= w, write:xxx, read: 0, close:xxx */ + { 0, 255 }, + /* old= w, write:xxx, read:add, close: 0 */ + { 0, 255 }, + /* old= w, write:xxx, read:add, close:add */ + { 0, 255 }, + /* old= w, write:xxx, read:add, close:del */ + { 0, 255 }, + /* old= w, write:xxx, read:add, close:xxx */ + { 0, 255 }, + /* old= w, write:xxx, read:del, close: 0 */ + { 0, 255 }, + /* old= w, write:xxx, read:del, close:add */ + { 0, 255 }, + /* old= w, write:xxx, read:del, close:del */ + { 0, 255 }, + /* old= w, write:xxx, read:del, close:xxx */ + { 0, 255 }, + /* old= w, write:xxx, read:xxx, close: 0 */ + { 0, 255 }, + /* old= w, write:xxx, read:xxx, close:add */ + { 0, 255 }, + /* old= w, write:xxx, read:xxx, close:del */ + { 0, 255 }, + /* old= w, write:xxx, read:xxx, close:xxx */ + { 0, 255 }, + /* old= rw, write: 0, read: 0, close: 0 */ + { 0, 0 }, + /* old= rw, write: 0, read: 0, close:add */ + { EPOLLIN|EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= rw, write: 0, read: 0, close:del */ + { EPOLLIN|EPOLLOUT, EPOLL_CTL_MOD }, + /* old= rw, write: 0, read: 0, close:xxx */ + { 0, 255 }, + /* old= rw, write: 0, read:add, close: 0 */ + { EPOLLIN|EPOLLOUT, EPOLL_CTL_MOD }, + /* old= rw, write: 0, read:add, close:add */ + { EPOLLIN|EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= rw, write: 0, read:add, close:del */ + { EPOLLIN|EPOLLOUT, EPOLL_CTL_MOD }, + /* old= rw, write: 0, read:add, close:xxx */ + { 0, 255 }, + /* old= rw, write: 0, read:del, close: 0 */ + { EPOLLOUT, EPOLL_CTL_MOD }, + /* old= rw, write: 0, read:del, close:add */ + { EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= rw, write: 0, read:del, close:del */ + { EPOLLOUT, EPOLL_CTL_MOD }, + /* old= rw, write: 0, read:del, close:xxx */ + { 0, 255 }, + /* old= rw, write: 0, read:xxx, close: 0 */ + { 0, 255 }, + /* old= rw, write: 0, read:xxx, close:add */ + { 0, 255 }, + /* old= rw, write: 0, read:xxx, close:del */ + { 0, 255 }, + /* old= rw, write: 0, read:xxx, close:xxx */ + { 0, 255 }, + /* old= rw, write:add, read: 0, close: 0 */ + { EPOLLIN|EPOLLOUT, EPOLL_CTL_MOD }, + /* old= rw, write:add, read: 0, close:add */ + { EPOLLIN|EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= rw, write:add, read: 0, close:del */ + { EPOLLIN|EPOLLOUT, EPOLL_CTL_MOD }, + /* old= rw, write:add, read: 0, close:xxx */ + { 0, 255 }, + /* old= rw, write:add, read:add, close: 0 */ + { EPOLLIN|EPOLLOUT, EPOLL_CTL_MOD }, + /* old= rw, write:add, read:add, close:add */ + { EPOLLIN|EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= rw, write:add, read:add, close:del */ + { EPOLLIN|EPOLLOUT, EPOLL_CTL_MOD }, + /* old= rw, write:add, read:add, close:xxx */ + { 0, 255 }, + /* old= rw, write:add, read:del, close: 0 */ + { EPOLLOUT, EPOLL_CTL_MOD }, + /* old= rw, write:add, read:del, close:add */ + { EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= rw, write:add, read:del, close:del */ + { EPOLLOUT, EPOLL_CTL_MOD }, + /* old= rw, write:add, read:del, close:xxx */ + { 0, 255 }, + /* old= rw, write:add, read:xxx, close: 0 */ + { 0, 255 }, + /* old= rw, write:add, read:xxx, close:add */ + { 0, 255 }, + /* old= rw, write:add, read:xxx, close:del */ + { 0, 255 }, + /* old= rw, write:add, read:xxx, close:xxx */ + { 0, 255 }, + /* old= rw, write:del, read: 0, close: 0 */ + { EPOLLIN, EPOLL_CTL_MOD }, + /* old= rw, write:del, read: 0, close:add */ + { EPOLLIN|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= rw, write:del, read: 0, close:del */ + { EPOLLIN, EPOLL_CTL_MOD }, + /* old= rw, write:del, read: 0, close:xxx */ + { 0, 255 }, + /* old= rw, write:del, read:add, close: 0 */ + { EPOLLIN, EPOLL_CTL_MOD }, + /* old= rw, write:del, read:add, close:add */ + { EPOLLIN|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= rw, write:del, read:add, close:del */ + { EPOLLIN, EPOLL_CTL_MOD }, + /* old= rw, write:del, read:add, close:xxx */ + { 0, 255 }, + /* old= rw, write:del, read:del, close: 0 */ + { EPOLLIN|EPOLLOUT, EPOLL_CTL_DEL }, + /* old= rw, write:del, read:del, close:add */ + { EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= rw, write:del, read:del, close:del */ + { EPOLLIN|EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_DEL }, + /* old= rw, write:del, read:del, close:xxx */ + { 0, 255 }, + /* old= rw, write:del, read:xxx, close: 0 */ + { 0, 255 }, + /* old= rw, write:del, read:xxx, close:add */ + { 0, 255 }, + /* old= rw, write:del, read:xxx, close:del */ + { 0, 255 }, + /* old= rw, write:del, read:xxx, close:xxx */ + { 0, 255 }, + /* old= rw, write:xxx, read: 0, close: 0 */ + { 0, 255 }, + /* old= rw, write:xxx, read: 0, close:add */ + { 0, 255 }, + /* old= rw, write:xxx, read: 0, close:del */ + { 0, 255 }, + /* old= rw, write:xxx, read: 0, close:xxx */ + { 0, 255 }, + /* old= rw, write:xxx, read:add, close: 0 */ + { 0, 255 }, + /* old= rw, write:xxx, read:add, close:add */ + { 0, 255 }, + /* old= rw, write:xxx, read:add, close:del */ + { 0, 255 }, + /* old= rw, write:xxx, read:add, close:xxx */ + { 0, 255 }, + /* old= rw, write:xxx, read:del, close: 0 */ + { 0, 255 }, + /* old= rw, write:xxx, read:del, close:add */ + { 0, 255 }, + /* old= rw, write:xxx, read:del, close:del */ + { 0, 255 }, + /* old= rw, write:xxx, read:del, close:xxx */ + { 0, 255 }, + /* old= rw, write:xxx, read:xxx, close: 0 */ + { 0, 255 }, + /* old= rw, write:xxx, read:xxx, close:add */ + { 0, 255 }, + /* old= rw, write:xxx, read:xxx, close:del */ + { 0, 255 }, + /* old= rw, write:xxx, read:xxx, close:xxx */ + { 0, 255 }, + /* old= c, write: 0, read: 0, close: 0 */ + { 0, 0 }, + /* old= c, write: 0, read: 0, close:add */ + { EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= c, write: 0, read: 0, close:del */ + { EPOLLRDHUP, EPOLL_CTL_DEL }, + /* old= c, write: 0, read: 0, close:xxx */ + { 0, 255 }, + /* old= c, write: 0, read:add, close: 0 */ + { EPOLLIN|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= c, write: 0, read:add, close:add */ + { EPOLLIN|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= c, write: 0, read:add, close:del */ + { EPOLLIN, EPOLL_CTL_MOD }, + /* old= c, write: 0, read:add, close:xxx */ + { 0, 255 }, + /* old= c, write: 0, read:del, close: 0 */ + { EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= c, write: 0, read:del, close:add */ + { EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= c, write: 0, read:del, close:del */ + { EPOLLIN|EPOLLRDHUP, EPOLL_CTL_DEL }, + /* old= c, write: 0, read:del, close:xxx */ + { 0, 255 }, + /* old= c, write: 0, read:xxx, close: 0 */ + { 0, 255 }, + /* old= c, write: 0, read:xxx, close:add */ + { 0, 255 }, + /* old= c, write: 0, read:xxx, close:del */ + { 0, 255 }, + /* old= c, write: 0, read:xxx, close:xxx */ + { 0, 255 }, + /* old= c, write:add, read: 0, close: 0 */ + { EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= c, write:add, read: 0, close:add */ + { EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= c, write:add, read: 0, close:del */ + { EPOLLOUT, EPOLL_CTL_MOD }, + /* old= c, write:add, read: 0, close:xxx */ + { 0, 255 }, + /* old= c, write:add, read:add, close: 0 */ + { EPOLLIN|EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= c, write:add, read:add, close:add */ + { EPOLLIN|EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= c, write:add, read:add, close:del */ + { EPOLLIN|EPOLLOUT, EPOLL_CTL_MOD }, + /* old= c, write:add, read:add, close:xxx */ + { 0, 255 }, + /* old= c, write:add, read:del, close: 0 */ + { EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= c, write:add, read:del, close:add */ + { EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= c, write:add, read:del, close:del */ + { EPOLLOUT, EPOLL_CTL_MOD }, + /* old= c, write:add, read:del, close:xxx */ + { 0, 255 }, + /* old= c, write:add, read:xxx, close: 0 */ + { 0, 255 }, + /* old= c, write:add, read:xxx, close:add */ + { 0, 255 }, + /* old= c, write:add, read:xxx, close:del */ + { 0, 255 }, + /* old= c, write:add, read:xxx, close:xxx */ + { 0, 255 }, + /* old= c, write:del, read: 0, close: 0 */ + { EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= c, write:del, read: 0, close:add */ + { EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= c, write:del, read: 0, close:del */ + { EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_DEL }, + /* old= c, write:del, read: 0, close:xxx */ + { 0, 255 }, + /* old= c, write:del, read:add, close: 0 */ + { EPOLLIN|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= c, write:del, read:add, close:add */ + { EPOLLIN|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= c, write:del, read:add, close:del */ + { EPOLLIN, EPOLL_CTL_MOD }, + /* old= c, write:del, read:add, close:xxx */ + { 0, 255 }, + /* old= c, write:del, read:del, close: 0 */ + { EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= c, write:del, read:del, close:add */ + { EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= c, write:del, read:del, close:del */ + { EPOLLIN|EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_DEL }, + /* old= c, write:del, read:del, close:xxx */ + { 0, 255 }, + /* old= c, write:del, read:xxx, close: 0 */ + { 0, 255 }, + /* old= c, write:del, read:xxx, close:add */ + { 0, 255 }, + /* old= c, write:del, read:xxx, close:del */ + { 0, 255 }, + /* old= c, write:del, read:xxx, close:xxx */ + { 0, 255 }, + /* old= c, write:xxx, read: 0, close: 0 */ + { 0, 255 }, + /* old= c, write:xxx, read: 0, close:add */ + { 0, 255 }, + /* old= c, write:xxx, read: 0, close:del */ + { 0, 255 }, + /* old= c, write:xxx, read: 0, close:xxx */ + { 0, 255 }, + /* old= c, write:xxx, read:add, close: 0 */ + { 0, 255 }, + /* old= c, write:xxx, read:add, close:add */ + { 0, 255 }, + /* old= c, write:xxx, read:add, close:del */ + { 0, 255 }, + /* old= c, write:xxx, read:add, close:xxx */ + { 0, 255 }, + /* old= c, write:xxx, read:del, close: 0 */ + { 0, 255 }, + /* old= c, write:xxx, read:del, close:add */ + { 0, 255 }, + /* old= c, write:xxx, read:del, close:del */ + { 0, 255 }, + /* old= c, write:xxx, read:del, close:xxx */ + { 0, 255 }, + /* old= c, write:xxx, read:xxx, close: 0 */ + { 0, 255 }, + /* old= c, write:xxx, read:xxx, close:add */ + { 0, 255 }, + /* old= c, write:xxx, read:xxx, close:del */ + { 0, 255 }, + /* old= c, write:xxx, read:xxx, close:xxx */ + { 0, 255 }, + /* old= cr, write: 0, read: 0, close: 0 */ + { 0, 0 }, + /* old= cr, write: 0, read: 0, close:add */ + { EPOLLIN|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= cr, write: 0, read: 0, close:del */ + { EPOLLIN, EPOLL_CTL_MOD }, + /* old= cr, write: 0, read: 0, close:xxx */ + { 0, 255 }, + /* old= cr, write: 0, read:add, close: 0 */ + { EPOLLIN|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= cr, write: 0, read:add, close:add */ + { EPOLLIN|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= cr, write: 0, read:add, close:del */ + { EPOLLIN, EPOLL_CTL_MOD }, + /* old= cr, write: 0, read:add, close:xxx */ + { 0, 255 }, + /* old= cr, write: 0, read:del, close: 0 */ + { EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= cr, write: 0, read:del, close:add */ + { EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= cr, write: 0, read:del, close:del */ + { EPOLLIN|EPOLLRDHUP, EPOLL_CTL_DEL }, + /* old= cr, write: 0, read:del, close:xxx */ + { 0, 255 }, + /* old= cr, write: 0, read:xxx, close: 0 */ + { 0, 255 }, + /* old= cr, write: 0, read:xxx, close:add */ + { 0, 255 }, + /* old= cr, write: 0, read:xxx, close:del */ + { 0, 255 }, + /* old= cr, write: 0, read:xxx, close:xxx */ + { 0, 255 }, + /* old= cr, write:add, read: 0, close: 0 */ + { EPOLLIN|EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= cr, write:add, read: 0, close:add */ + { EPOLLIN|EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= cr, write:add, read: 0, close:del */ + { EPOLLIN|EPOLLOUT, EPOLL_CTL_MOD }, + /* old= cr, write:add, read: 0, close:xxx */ + { 0, 255 }, + /* old= cr, write:add, read:add, close: 0 */ + { EPOLLIN|EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= cr, write:add, read:add, close:add */ + { EPOLLIN|EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= cr, write:add, read:add, close:del */ + { EPOLLIN|EPOLLOUT, EPOLL_CTL_MOD }, + /* old= cr, write:add, read:add, close:xxx */ + { 0, 255 }, + /* old= cr, write:add, read:del, close: 0 */ + { EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= cr, write:add, read:del, close:add */ + { EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= cr, write:add, read:del, close:del */ + { EPOLLOUT, EPOLL_CTL_MOD }, + /* old= cr, write:add, read:del, close:xxx */ + { 0, 255 }, + /* old= cr, write:add, read:xxx, close: 0 */ + { 0, 255 }, + /* old= cr, write:add, read:xxx, close:add */ + { 0, 255 }, + /* old= cr, write:add, read:xxx, close:del */ + { 0, 255 }, + /* old= cr, write:add, read:xxx, close:xxx */ + { 0, 255 }, + /* old= cr, write:del, read: 0, close: 0 */ + { EPOLLIN|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= cr, write:del, read: 0, close:add */ + { EPOLLIN|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= cr, write:del, read: 0, close:del */ + { EPOLLIN, EPOLL_CTL_MOD }, + /* old= cr, write:del, read: 0, close:xxx */ + { 0, 255 }, + /* old= cr, write:del, read:add, close: 0 */ + { EPOLLIN|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= cr, write:del, read:add, close:add */ + { EPOLLIN|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= cr, write:del, read:add, close:del */ + { EPOLLIN, EPOLL_CTL_MOD }, + /* old= cr, write:del, read:add, close:xxx */ + { 0, 255 }, + /* old= cr, write:del, read:del, close: 0 */ + { EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= cr, write:del, read:del, close:add */ + { EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= cr, write:del, read:del, close:del */ + { EPOLLIN|EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_DEL }, + /* old= cr, write:del, read:del, close:xxx */ + { 0, 255 }, + /* old= cr, write:del, read:xxx, close: 0 */ + { 0, 255 }, + /* old= cr, write:del, read:xxx, close:add */ + { 0, 255 }, + /* old= cr, write:del, read:xxx, close:del */ + { 0, 255 }, + /* old= cr, write:del, read:xxx, close:xxx */ + { 0, 255 }, + /* old= cr, write:xxx, read: 0, close: 0 */ + { 0, 255 }, + /* old= cr, write:xxx, read: 0, close:add */ + { 0, 255 }, + /* old= cr, write:xxx, read: 0, close:del */ + { 0, 255 }, + /* old= cr, write:xxx, read: 0, close:xxx */ + { 0, 255 }, + /* old= cr, write:xxx, read:add, close: 0 */ + { 0, 255 }, + /* old= cr, write:xxx, read:add, close:add */ + { 0, 255 }, + /* old= cr, write:xxx, read:add, close:del */ + { 0, 255 }, + /* old= cr, write:xxx, read:add, close:xxx */ + { 0, 255 }, + /* old= cr, write:xxx, read:del, close: 0 */ + { 0, 255 }, + /* old= cr, write:xxx, read:del, close:add */ + { 0, 255 }, + /* old= cr, write:xxx, read:del, close:del */ + { 0, 255 }, + /* old= cr, write:xxx, read:del, close:xxx */ + { 0, 255 }, + /* old= cr, write:xxx, read:xxx, close: 0 */ + { 0, 255 }, + /* old= cr, write:xxx, read:xxx, close:add */ + { 0, 255 }, + /* old= cr, write:xxx, read:xxx, close:del */ + { 0, 255 }, + /* old= cr, write:xxx, read:xxx, close:xxx */ + { 0, 255 }, + /* old= cw, write: 0, read: 0, close: 0 */ + { 0, 0 }, + /* old= cw, write: 0, read: 0, close:add */ + { EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= cw, write: 0, read: 0, close:del */ + { EPOLLOUT, EPOLL_CTL_MOD }, + /* old= cw, write: 0, read: 0, close:xxx */ + { 0, 255 }, + /* old= cw, write: 0, read:add, close: 0 */ + { EPOLLIN|EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= cw, write: 0, read:add, close:add */ + { EPOLLIN|EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= cw, write: 0, read:add, close:del */ + { EPOLLIN|EPOLLOUT, EPOLL_CTL_MOD }, + /* old= cw, write: 0, read:add, close:xxx */ + { 0, 255 }, + /* old= cw, write: 0, read:del, close: 0 */ + { EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= cw, write: 0, read:del, close:add */ + { EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= cw, write: 0, read:del, close:del */ + { EPOLLOUT, EPOLL_CTL_MOD }, + /* old= cw, write: 0, read:del, close:xxx */ + { 0, 255 }, + /* old= cw, write: 0, read:xxx, close: 0 */ + { 0, 255 }, + /* old= cw, write: 0, read:xxx, close:add */ + { 0, 255 }, + /* old= cw, write: 0, read:xxx, close:del */ + { 0, 255 }, + /* old= cw, write: 0, read:xxx, close:xxx */ + { 0, 255 }, + /* old= cw, write:add, read: 0, close: 0 */ + { EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= cw, write:add, read: 0, close:add */ + { EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= cw, write:add, read: 0, close:del */ + { EPOLLOUT, EPOLL_CTL_MOD }, + /* old= cw, write:add, read: 0, close:xxx */ + { 0, 255 }, + /* old= cw, write:add, read:add, close: 0 */ + { EPOLLIN|EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= cw, write:add, read:add, close:add */ + { EPOLLIN|EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= cw, write:add, read:add, close:del */ + { EPOLLIN|EPOLLOUT, EPOLL_CTL_MOD }, + /* old= cw, write:add, read:add, close:xxx */ + { 0, 255 }, + /* old= cw, write:add, read:del, close: 0 */ + { EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= cw, write:add, read:del, close:add */ + { EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= cw, write:add, read:del, close:del */ + { EPOLLOUT, EPOLL_CTL_MOD }, + /* old= cw, write:add, read:del, close:xxx */ + { 0, 255 }, + /* old= cw, write:add, read:xxx, close: 0 */ + { 0, 255 }, + /* old= cw, write:add, read:xxx, close:add */ + { 0, 255 }, + /* old= cw, write:add, read:xxx, close:del */ + { 0, 255 }, + /* old= cw, write:add, read:xxx, close:xxx */ + { 0, 255 }, + /* old= cw, write:del, read: 0, close: 0 */ + { EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= cw, write:del, read: 0, close:add */ + { EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= cw, write:del, read: 0, close:del */ + { EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_DEL }, + /* old= cw, write:del, read: 0, close:xxx */ + { 0, 255 }, + /* old= cw, write:del, read:add, close: 0 */ + { EPOLLIN|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= cw, write:del, read:add, close:add */ + { EPOLLIN|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= cw, write:del, read:add, close:del */ + { EPOLLIN, EPOLL_CTL_MOD }, + /* old= cw, write:del, read:add, close:xxx */ + { 0, 255 }, + /* old= cw, write:del, read:del, close: 0 */ + { EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= cw, write:del, read:del, close:add */ + { EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old= cw, write:del, read:del, close:del */ + { EPOLLIN|EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_DEL }, + /* old= cw, write:del, read:del, close:xxx */ + { 0, 255 }, + /* old= cw, write:del, read:xxx, close: 0 */ + { 0, 255 }, + /* old= cw, write:del, read:xxx, close:add */ + { 0, 255 }, + /* old= cw, write:del, read:xxx, close:del */ + { 0, 255 }, + /* old= cw, write:del, read:xxx, close:xxx */ + { 0, 255 }, + /* old= cw, write:xxx, read: 0, close: 0 */ + { 0, 255 }, + /* old= cw, write:xxx, read: 0, close:add */ + { 0, 255 }, + /* old= cw, write:xxx, read: 0, close:del */ + { 0, 255 }, + /* old= cw, write:xxx, read: 0, close:xxx */ + { 0, 255 }, + /* old= cw, write:xxx, read:add, close: 0 */ + { 0, 255 }, + /* old= cw, write:xxx, read:add, close:add */ + { 0, 255 }, + /* old= cw, write:xxx, read:add, close:del */ + { 0, 255 }, + /* old= cw, write:xxx, read:add, close:xxx */ + { 0, 255 }, + /* old= cw, write:xxx, read:del, close: 0 */ + { 0, 255 }, + /* old= cw, write:xxx, read:del, close:add */ + { 0, 255 }, + /* old= cw, write:xxx, read:del, close:del */ + { 0, 255 }, + /* old= cw, write:xxx, read:del, close:xxx */ + { 0, 255 }, + /* old= cw, write:xxx, read:xxx, close: 0 */ + { 0, 255 }, + /* old= cw, write:xxx, read:xxx, close:add */ + { 0, 255 }, + /* old= cw, write:xxx, read:xxx, close:del */ + { 0, 255 }, + /* old= cw, write:xxx, read:xxx, close:xxx */ + { 0, 255 }, + /* old=crw, write: 0, read: 0, close: 0 */ + { 0, 0 }, + /* old=crw, write: 0, read: 0, close:add */ + { EPOLLIN|EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old=crw, write: 0, read: 0, close:del */ + { EPOLLIN|EPOLLOUT, EPOLL_CTL_MOD }, + /* old=crw, write: 0, read: 0, close:xxx */ + { 0, 255 }, + /* old=crw, write: 0, read:add, close: 0 */ + { EPOLLIN|EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old=crw, write: 0, read:add, close:add */ + { EPOLLIN|EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old=crw, write: 0, read:add, close:del */ + { EPOLLIN|EPOLLOUT, EPOLL_CTL_MOD }, + /* old=crw, write: 0, read:add, close:xxx */ + { 0, 255 }, + /* old=crw, write: 0, read:del, close: 0 */ + { EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old=crw, write: 0, read:del, close:add */ + { EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old=crw, write: 0, read:del, close:del */ + { EPOLLOUT, EPOLL_CTL_MOD }, + /* old=crw, write: 0, read:del, close:xxx */ + { 0, 255 }, + /* old=crw, write: 0, read:xxx, close: 0 */ + { 0, 255 }, + /* old=crw, write: 0, read:xxx, close:add */ + { 0, 255 }, + /* old=crw, write: 0, read:xxx, close:del */ + { 0, 255 }, + /* old=crw, write: 0, read:xxx, close:xxx */ + { 0, 255 }, + /* old=crw, write:add, read: 0, close: 0 */ + { EPOLLIN|EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old=crw, write:add, read: 0, close:add */ + { EPOLLIN|EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old=crw, write:add, read: 0, close:del */ + { EPOLLIN|EPOLLOUT, EPOLL_CTL_MOD }, + /* old=crw, write:add, read: 0, close:xxx */ + { 0, 255 }, + /* old=crw, write:add, read:add, close: 0 */ + { EPOLLIN|EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old=crw, write:add, read:add, close:add */ + { EPOLLIN|EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old=crw, write:add, read:add, close:del */ + { EPOLLIN|EPOLLOUT, EPOLL_CTL_MOD }, + /* old=crw, write:add, read:add, close:xxx */ + { 0, 255 }, + /* old=crw, write:add, read:del, close: 0 */ + { EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old=crw, write:add, read:del, close:add */ + { EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old=crw, write:add, read:del, close:del */ + { EPOLLOUT, EPOLL_CTL_MOD }, + /* old=crw, write:add, read:del, close:xxx */ + { 0, 255 }, + /* old=crw, write:add, read:xxx, close: 0 */ + { 0, 255 }, + /* old=crw, write:add, read:xxx, close:add */ + { 0, 255 }, + /* old=crw, write:add, read:xxx, close:del */ + { 0, 255 }, + /* old=crw, write:add, read:xxx, close:xxx */ + { 0, 255 }, + /* old=crw, write:del, read: 0, close: 0 */ + { EPOLLIN|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old=crw, write:del, read: 0, close:add */ + { EPOLLIN|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old=crw, write:del, read: 0, close:del */ + { EPOLLIN, EPOLL_CTL_MOD }, + /* old=crw, write:del, read: 0, close:xxx */ + { 0, 255 }, + /* old=crw, write:del, read:add, close: 0 */ + { EPOLLIN|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old=crw, write:del, read:add, close:add */ + { EPOLLIN|EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old=crw, write:del, read:add, close:del */ + { EPOLLIN, EPOLL_CTL_MOD }, + /* old=crw, write:del, read:add, close:xxx */ + { 0, 255 }, + /* old=crw, write:del, read:del, close: 0 */ + { EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old=crw, write:del, read:del, close:add */ + { EPOLLRDHUP, EPOLL_CTL_MOD }, + /* old=crw, write:del, read:del, close:del */ + { EPOLLIN|EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_DEL }, + /* old=crw, write:del, read:del, close:xxx */ + { 0, 255 }, + /* old=crw, write:del, read:xxx, close: 0 */ + { 0, 255 }, + /* old=crw, write:del, read:xxx, close:add */ + { 0, 255 }, + /* old=crw, write:del, read:xxx, close:del */ + { 0, 255 }, + /* old=crw, write:del, read:xxx, close:xxx */ + { 0, 255 }, + /* old=crw, write:xxx, read: 0, close: 0 */ + { 0, 255 }, + /* old=crw, write:xxx, read: 0, close:add */ + { 0, 255 }, + /* old=crw, write:xxx, read: 0, close:del */ + { 0, 255 }, + /* old=crw, write:xxx, read: 0, close:xxx */ + { 0, 255 }, + /* old=crw, write:xxx, read:add, close: 0 */ + { 0, 255 }, + /* old=crw, write:xxx, read:add, close:add */ + { 0, 255 }, + /* old=crw, write:xxx, read:add, close:del */ + { 0, 255 }, + /* old=crw, write:xxx, read:add, close:xxx */ + { 0, 255 }, + /* old=crw, write:xxx, read:del, close: 0 */ + { 0, 255 }, + /* old=crw, write:xxx, read:del, close:add */ + { 0, 255 }, + /* old=crw, write:xxx, read:del, close:del */ + { 0, 255 }, + /* old=crw, write:xxx, read:del, close:xxx */ + { 0, 255 }, + /* old=crw, write:xxx, read:xxx, close: 0 */ + { 0, 255 }, + /* old=crw, write:xxx, read:xxx, close:add */ + { 0, 255 }, + /* old=crw, write:xxx, read:xxx, close:del */ + { 0, 255 }, + /* old=crw, write:xxx, read:xxx, close:xxx */ + { 0, 255 }, +}; + +#endif diff -Nru mysql-5.7-5.7.25/extra/libevent/evbuffer-internal.h mysql-5.7-5.7.26/extra/libevent/evbuffer-internal.h --- mysql-5.7-5.7.25/extra/libevent/evbuffer-internal.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/evbuffer-internal.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,351 @@ +/* + * Copyright (c) 2000-2007 Niels Provos + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef EVBUFFER_INTERNAL_H_INCLUDED_ +#define EVBUFFER_INTERNAL_H_INCLUDED_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include "event2/event-config.h" +#include "evconfig-private.h" +#include "event2/util.h" +#include "event2/event_struct.h" +#include "util-internal.h" +#include "defer-internal.h" + +/* Experimental cb flag: "never deferred." Implementation note: + * these callbacks may get an inaccurate view of n_del/n_added in their + * arguments. */ +#define EVBUFFER_CB_NODEFER 2 + +#ifdef _WIN32 +#include +#endif +#include + +/* Minimum allocation for a chain. We define this so that we're burning no + * more than 5% of each allocation on overhead. It would be nice to lose even + * less space, though. */ +#if EVENT__SIZEOF_VOID_P < 8 +#define MIN_BUFFER_SIZE 512 +#else +#define MIN_BUFFER_SIZE 1024 +#endif + +/** A single evbuffer callback for an evbuffer. This function will be invoked + * when bytes are added to or removed from the evbuffer. */ +struct evbuffer_cb_entry { + /** Structures to implement a doubly-linked queue of callbacks */ + LIST_ENTRY(evbuffer_cb_entry) next; + /** The callback function to invoke when this callback is called. + If EVBUFFER_CB_OBSOLETE is set in flags, the cb_obsolete field is + valid; otherwise, cb_func is valid. */ + union { + evbuffer_cb_func cb_func; + evbuffer_cb cb_obsolete; + } cb; + /** Argument to pass to cb. */ + void *cbarg; + /** Currently set flags on this callback. */ + ev_uint32_t flags; +}; + +struct bufferevent; +struct evbuffer_chain; +struct evbuffer { + /** The first chain in this buffer's linked list of chains. */ + struct evbuffer_chain *first; + /** The last chain in this buffer's linked list of chains. */ + struct evbuffer_chain *last; + + /** Pointer to the next pointer pointing at the 'last_with_data' chain. + * + * To unpack: + * + * The last_with_data chain is the last chain that has any data in it. + * If all chains in the buffer are empty, it is the first chain. + * If the buffer has no chains, it is NULL. + * + * The last_with_datap pointer points at _whatever 'next' pointer_ + * points at the last_with_datap chain. If the last_with_data chain + * is the first chain, or it is NULL, then the last_with_datap pointer + * is &buf->first. + */ + struct evbuffer_chain **last_with_datap; + + /** Total amount of bytes stored in all chains.*/ + size_t total_len; + + /** Number of bytes we have added to the buffer since we last tried to + * invoke callbacks. */ + size_t n_add_for_cb; + /** Number of bytes we have removed from the buffer since we last + * tried to invoke callbacks. */ + size_t n_del_for_cb; + +#ifndef EVENT__DISABLE_THREAD_SUPPORT + /** A lock used to mediate access to this buffer. */ + void *lock; +#endif + /** True iff we should free the lock field when we free this + * evbuffer. */ + unsigned own_lock : 1; + /** True iff we should not allow changes to the front of the buffer + * (drains or prepends). */ + unsigned freeze_start : 1; + /** True iff we should not allow changes to the end of the buffer + * (appends) */ + unsigned freeze_end : 1; + /** True iff this evbuffer's callbacks are not invoked immediately + * upon a change in the buffer, but instead are deferred to be invoked + * from the event_base's loop. Useful for preventing enormous stack + * overflows when we have mutually recursive callbacks, and for + * serializing callbacks in a single thread. */ + unsigned deferred_cbs : 1; +#ifdef _WIN32 + /** True iff this buffer is set up for overlapped IO. */ + unsigned is_overlapped : 1; +#endif + /** Zero or more EVBUFFER_FLAG_* bits */ + ev_uint32_t flags; + + /** Used to implement deferred callbacks. */ + struct event_base *cb_queue; + + /** A reference count on this evbuffer. When the reference count + * reaches 0, the buffer is destroyed. Manipulated with + * evbuffer_incref and evbuffer_decref_and_unlock and + * evbuffer_free. */ + int refcnt; + + /** A struct event_callback handle to make all of this buffer's callbacks + * invoked from the event loop. */ + struct event_callback deferred; + + /** A doubly-linked-list of callback functions */ + LIST_HEAD(evbuffer_cb_queue, evbuffer_cb_entry) callbacks; + + /** The parent bufferevent object this evbuffer belongs to. + * NULL if the evbuffer stands alone. */ + struct bufferevent *parent; +}; + +#if EVENT__SIZEOF_OFF_T < EVENT__SIZEOF_SIZE_T +typedef ev_ssize_t ev_misalign_t; +#define EVBUFFER_CHAIN_MAX ((size_t)EV_SSIZE_MAX) +#else +typedef ev_off_t ev_misalign_t; +#if EVENT__SIZEOF_OFF_T > EVENT__SIZEOF_SIZE_T +#define EVBUFFER_CHAIN_MAX EV_SIZE_MAX +#else +#define EVBUFFER_CHAIN_MAX ((size_t)EV_SSIZE_MAX) +#endif +#endif + +/** A single item in an evbuffer. */ +struct evbuffer_chain { + /** points to next buffer in the chain */ + struct evbuffer_chain *next; + + /** total allocation available in the buffer field. */ + size_t buffer_len; + + /** unused space at the beginning of buffer or an offset into a + * file for sendfile buffers. */ + ev_misalign_t misalign; + + /** Offset into buffer + misalign at which to start writing. + * In other words, the total number of bytes actually stored + * in buffer. */ + size_t off; + + /** Set if special handling is required for this chain */ + unsigned flags; +#define EVBUFFER_FILESEGMENT 0x0001 /**< A chain used for a file segment */ +#define EVBUFFER_SENDFILE 0x0002 /**< a chain used with sendfile */ +#define EVBUFFER_REFERENCE 0x0004 /**< a chain with a mem reference */ +#define EVBUFFER_IMMUTABLE 0x0008 /**< read-only chain */ + /** a chain that mustn't be reallocated or freed, or have its contents + * memmoved, until the chain is un-pinned. */ +#define EVBUFFER_MEM_PINNED_R 0x0010 +#define EVBUFFER_MEM_PINNED_W 0x0020 +#define EVBUFFER_MEM_PINNED_ANY (EVBUFFER_MEM_PINNED_R|EVBUFFER_MEM_PINNED_W) + /** a chain that should be freed, but can't be freed until it is + * un-pinned. */ +#define EVBUFFER_DANGLING 0x0040 + /** a chain that is a referenced copy of another chain */ +#define EVBUFFER_MULTICAST 0x0080 + + /** number of references to this chain */ + int refcnt; + + /** Usually points to the read-write memory belonging to this + * buffer allocated as part of the evbuffer_chain allocation. + * For mmap, this can be a read-only buffer and + * EVBUFFER_IMMUTABLE will be set in flags. For sendfile, it + * may point to NULL. + */ + unsigned char *buffer; +}; + +/** callback for a reference chain; lets us know what to do with it when + * we're done with it. Lives at the end of an evbuffer_chain with the + * EVBUFFER_REFERENCE flag set */ +struct evbuffer_chain_reference { + evbuffer_ref_cleanup_cb cleanupfn; + void *extra; +}; + +/** File segment for a file-segment chain. Lives at the end of an + * evbuffer_chain with the EVBUFFER_FILESEGMENT flag set. */ +struct evbuffer_chain_file_segment { + struct evbuffer_file_segment *segment; +#ifdef _WIN32 + /** If we're using CreateFileMapping, this is the handle to the view. */ + HANDLE view_handle; +#endif +}; + +/* Declared in event2/buffer.h; defined here. */ +struct evbuffer_file_segment { + void *lock; /**< lock prevent concurrent access to refcnt */ + int refcnt; /**< Reference count for this file segment */ + unsigned flags; /**< combination of EVBUF_FS_* flags */ + + /** What kind of file segment is this? */ + unsigned can_sendfile : 1; + unsigned is_mapping : 1; + + /** The fd that we read the data from. */ + int fd; + /** If we're using mmap, this is the raw mapped memory. */ + void *mapping; +#ifdef _WIN32 + /** If we're using CreateFileMapping, this is the mapping */ + HANDLE mapping_handle; +#endif + /** If we're using mmap or IO, this is the content of the file + * segment. */ + char *contents; + /** Position of this segment within the file. */ + ev_off_t file_offset; + /** If we're using mmap, this is the offset within 'mapping' where + * this data segment begins. */ + ev_off_t mmap_offset; + /** The length of this segment. */ + ev_off_t length; + /** Cleanup callback function */ + evbuffer_file_segment_cleanup_cb cleanup_cb; + /** Argument to be pass to cleanup callback function */ + void *cleanup_cb_arg; +}; + +/** Information about the multicast parent of a chain. Lives at the + * end of an evbuffer_chain with the EVBUFFER_MULTICAST flag set. */ +struct evbuffer_multicast_parent { + /** source buffer the multicast parent belongs to */ + struct evbuffer *source; + /** multicast parent for this chain */ + struct evbuffer_chain *parent; +}; + +#define EVBUFFER_CHAIN_SIZE sizeof(struct evbuffer_chain) +/** Return a pointer to extra data allocated along with an evbuffer. */ +#define EVBUFFER_CHAIN_EXTRA(t, c) (t *)((struct evbuffer_chain *)(c) + 1) + +/** Assert that we are holding the lock on an evbuffer */ +#define ASSERT_EVBUFFER_LOCKED(buffer) \ + EVLOCK_ASSERT_LOCKED((buffer)->lock) + +#define EVBUFFER_LOCK(buffer) \ + do { \ + EVLOCK_LOCK((buffer)->lock, 0); \ + } while (0) +#define EVBUFFER_UNLOCK(buffer) \ + do { \ + EVLOCK_UNLOCK((buffer)->lock, 0); \ + } while (0) +#define EVBUFFER_LOCK2(buffer1, buffer2) \ + do { \ + EVLOCK_LOCK2((buffer1)->lock, (buffer2)->lock, 0, 0); \ + } while (0) +#define EVBUFFER_UNLOCK2(buffer1, buffer2) \ + do { \ + EVLOCK_UNLOCK2((buffer1)->lock, (buffer2)->lock, 0, 0); \ + } while (0) + +/** Increase the reference count of buf by one. */ +void evbuffer_incref_(struct evbuffer *buf); +/** Increase the reference count of buf by one and acquire the lock. */ +void evbuffer_incref_and_lock_(struct evbuffer *buf); +/** Pin a single buffer chain using a given flag. A pinned chunk may not be + * moved or freed until it is unpinned. */ +void evbuffer_chain_pin_(struct evbuffer_chain *chain, unsigned flag); +/** Unpin a single buffer chain using a given flag. */ +void evbuffer_chain_unpin_(struct evbuffer_chain *chain, unsigned flag); +/** As evbuffer_free, but requires that we hold a lock on the buffer, and + * releases the lock before freeing it and the buffer. */ +void evbuffer_decref_and_unlock_(struct evbuffer *buffer); + +/** As evbuffer_expand, but does not guarantee that the newly allocated memory + * is contiguous. Instead, it may be split across two or more chunks. */ +int evbuffer_expand_fast_(struct evbuffer *, size_t, int); + +/** Helper: prepares for a readv/WSARecv call by expanding the buffer to + * hold enough memory to read 'howmuch' bytes in possibly noncontiguous memory. + * Sets up the one or two iovecs in 'vecs' to point to the free memory and its + * extent, and *chainp to point to the first chain that we'll try to read into. + * Returns the number of vecs used. + */ +int evbuffer_read_setup_vecs_(struct evbuffer *buf, ev_ssize_t howmuch, + struct evbuffer_iovec *vecs, int n_vecs, struct evbuffer_chain ***chainp, + int exact); + +/* Helper macro: copies an evbuffer_iovec in ei to a win32 WSABUF in i. */ +#define WSABUF_FROM_EVBUFFER_IOV(i,ei) do { \ + (i)->buf = (ei)->iov_base; \ + (i)->len = (unsigned long)(ei)->iov_len; \ + } while (0) +/* XXXX the cast above is safe for now, but not if we allow mmaps on win64. + * See note in buffer_iocp's launch_write function */ + +/** Set the parent bufferevent object for buf to bev */ +void evbuffer_set_parent_(struct evbuffer *buf, struct bufferevent *bev); + +void evbuffer_invoke_callbacks_(struct evbuffer *buf); + + +int evbuffer_get_callbacks_(struct evbuffer *buffer, + struct event_callback **cbs, + int max_cbs); + +#ifdef __cplusplus +} +#endif + +#endif /* EVBUFFER_INTERNAL_H_INCLUDED_ */ diff -Nru mysql-5.7-5.7.25/extra/libevent/evconfig-private.h.cmake mysql-5.7-5.7.26/extra/libevent/evconfig-private.h.cmake --- mysql-5.7-5.7.25/extra/libevent/evconfig-private.h.cmake 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/evconfig-private.h.cmake 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,35 @@ + +#ifndef EVCONFIG_PRIVATE_H_INCLUDED_ +#define EVCONFIG_PRIVATE_H_INCLUDED_ + +/* Enable extensions on AIX 3, Interix. */ +#cmakedefine _ALL_SOURCE + +/* Enable GNU extensions on systems that have them. */ +#cmakedefine _GNU_SOURCE 1 + +/* Enable threading extensions on Solaris. */ +#cmakedefine _POSIX_PTHREAD_SEMANTICS 1 + +/* Enable extensions on HP NonStop. */ +#cmakedefine _TANDEM_SOURCE 1 + +/* Enable general extensions on Solaris. */ +#cmakedefine __EXTENSIONS__ + +/* Number of bits in a file offset, on hosts where this is settable. */ +#cmakedefine _FILE_OFFSET_BITS 1 +/* Define for large files, on AIX-style hosts. */ +#cmakedefine _LARGE_FILES 1 + +/* Define to 1 if on MINIX. */ +#cmakedefine _MINIX 1 + +/* Define to 2 if the system does not provide POSIX.1 features except with + this defined. */ +#cmakedefine _POSIX_1_SOURCE 1 + +/* Define to 1 if you need to in order for `stat' and other things to work. */ +#cmakedefine _POSIX_SOURCE 1 + +#endif diff -Nru mysql-5.7-5.7.25/extra/libevent/evconfig-private.h.in mysql-5.7-5.7.26/extra/libevent/evconfig-private.h.in --- mysql-5.7-5.7.25/extra/libevent/evconfig-private.h.in 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/evconfig-private.h.in 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,48 @@ +/* evconfig-private.h template - see "Configuration Header Templates" */ +/* in AC manual. Kevin Bowling +.\" All rights reserved. +.\" +.\" 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. The name of the author may not be used to endorse or promote products +.\" derived from this software without specific prior written permission. +.\" +.\" THIS SOFTWARE IS PROVIDED ``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 AUTHOR 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. +.\" +.Dd October 7, 2006 +.Dt EVDNS 3 +.Os +.Sh NAME +.Nm evdns_init +.Nm evdns_shutdown +.Nm evdns_err_to_string +.Nm evdns_nameserver_add +.Nm evdns_count_nameservers +.Nm evdns_clear_nameservers_and_suspend +.Nm evdns_resume +.Nm evdns_nameserver_ip_add +.Nm evdns_resolve_ipv4 +.Nm evdns_resolve_reverse +.Nm evdns_resolv_conf_parse +.Nm evdns_config_windows_nameservers +.Nm evdns_search_clear +.Nm evdns_search_add +.Nm evdns_search_ndots_set +.Nm evdns_set_log_fn +.Nd asynchronous functions for DNS resolution. +.Sh SYNOPSIS +.Fd #include +.Fd #include +.Fd #include +.Ft int +.Fn evdns_init +.Ft void +.Fn evdns_shutdown "int fail_requests" +.Ft "const char *" +.Fn evdns_err_to_string "int err" +.Ft int +.Fn evdns_nameserver_add "unsigned long int address" +.Ft int +.Fn evdns_count_nameservers +.Ft int +.Fn evdns_clear_nameservers_and_suspend +.Ft int +.Fn evdns_resume +.Ft int +.Fn evdns_nameserver_ip_add(const char *ip_as_string); +.Ft int +.Fn evdns_resolve_ipv4 "const char *name" "int flags" "evdns_callback_type callback" "void *ptr" +.Ft int +.Fn evdns_resolve_reverse "struct in_addr *in" "int flags" "evdns_callback_type callback" "void *ptr" +.Ft int +.Fn evdns_resolv_conf_parse "int flags" "const char *" +.Ft void +.Fn evdns_search_clear +.Ft void +.Fn evdns_search_add "const char *domain" +.Ft void +.Fn evdns_search_ndots_set "const int ndots" +.Ft void +.Fn evdns_set_log_fn "evdns_debug_log_fn_type fn" +.Ft int +.Fn evdns_config_windows_nameservers +.Sh DESCRIPTION +Welcome, gentle reader +.Pp +Async DNS lookups are really a whole lot harder than they should be, +mostly stemming from the fact that the libc resolver has never been +very good at them. Before you use this library you should see if libc +can do the job for you with the modern async call getaddrinfo_a +(see http://www.imperialviolet.org/page25.html#e498). Otherwise, +please continue. +.Pp +This code is based on libevent and you must call event_init before +any of the APIs in this file. You must also seed the OpenSSL random +source if you are using OpenSSL for ids (see below). +.Pp +This library is designed to be included and shipped with your source +code. You statically link with it. You should also test for the +existence of strtok_r and define HAVE_STRTOK_R if you have it. +.Pp +The DNS protocol requires a good source of id numbers and these +numbers should be unpredictable for spoofing reasons. There are +three methods for generating them here and you must define exactly +one of them. In increasing order of preference: +.Pp +.Bl -tag -width "DNS_USE_GETTIMEOFDAY_FOR_ID" -compact -offset indent +.It DNS_USE_GETTIMEOFDAY_FOR_ID +Using the bottom 16 bits of the usec result from gettimeofday. This +is a pretty poor solution but should work anywhere. +.It DNS_USE_CPU_CLOCK_FOR_ID +Using the bottom 16 bits of the nsec result from the CPU's time +counter. This is better, but may not work everywhere. Requires +POSIX realtime support and you'll need to link against -lrt on +glibc systems at least. +.It DNS_USE_OPENSSL_FOR_ID +Uses the OpenSSL RAND_bytes call to generate the data. You must +have seeded the pool before making any calls to this library. +.El +.Pp +The library keeps track of the state of nameservers and will avoid +them when they go down. Otherwise it will round robin between them. +.Pp +Quick start guide: + #include "evdns.h" + void callback(int result, char type, int count, int ttl, + void *addresses, void *arg); + evdns_resolv_conf_parse(DNS_OPTIONS_ALL, "/etc/resolv.conf"); + evdns_resolve("www.hostname.com", 0, callback, NULL); +.Pp +When the lookup is complete the callback function is called. The +first argument will be one of the DNS_ERR_* defines in evdns.h. +Hopefully it will be DNS_ERR_NONE, in which case type will be +DNS_IPv4_A, count will be the number of IP addresses, ttl is the time +which the data can be cached for (in seconds), addresses will point +to an array of uint32_t's and arg will be whatever you passed to +evdns_resolve. +.Pp +Searching: +.Pp +In order for this library to be a good replacement for glibc's resolver it +supports searching. This involves setting a list of default domains, in +which names will be queried for. The number of dots in the query name +determines the order in which this list is used. +.Pp +Searching appears to be a single lookup from the point of view of the API, +although many DNS queries may be generated from a single call to +evdns_resolve. Searching can also drastically slow down the resolution +of names. +.Pp +To disable searching: +.Bl -enum -compact -offset indent +.It +Never set it up. If you never call +.Fn evdns_resolv_conf_parse, +.Fn evdns_init, +or +.Fn evdns_search_add +then no searching will occur. +.It +If you do call +.Fn evdns_resolv_conf_parse +then don't pass +.Va DNS_OPTION_SEARCH +(or +.Va DNS_OPTIONS_ALL, +which implies it). +.It +When calling +.Fn evdns_resolve, +pass the +.Va DNS_QUERY_NO_SEARCH +flag. +.El +.Pp +The order of searches depends on the number of dots in the name. If the +number is greater than the ndots setting then the names is first tried +globally. Otherwise each search domain is appended in turn. +.Pp +The ndots setting can either be set from a resolv.conf, or by calling +evdns_search_ndots_set. +.Pp +For example, with ndots set to 1 (the default) and a search domain list of +["myhome.net"]: + Query: www + Order: www.myhome.net, www. +.Pp + Query: www.abc + Order: www.abc., www.abc.myhome.net +.Pp +.Sh API reference +.Pp +.Bl -tag -width 0123456 +.It Ft int Fn evdns_init +Initializes support for non-blocking name resolution by calling +.Fn evdns_resolv_conf_parse +on UNIX and +.Fn evdns_config_windows_nameservers +on Windows. +.It Ft int Fn evdns_nameserver_add "unsigned long int address" +Add a nameserver. The address should be an IP address in +network byte order. The type of address is chosen so that +it matches in_addr.s_addr. +Returns non-zero on error. +.It Ft int Fn evdns_nameserver_ip_add "const char *ip_as_string" +This wraps the above function by parsing a string as an IP +address and adds it as a nameserver. +Returns non-zero on error +.It Ft int Fn evdns_resolve "const char *name" "int flags" "evdns_callback_type callback" "void *ptr" +Resolve a name. The name parameter should be a DNS name. +The flags parameter should be 0, or DNS_QUERY_NO_SEARCH +which disables searching for this query. (see defn of +searching above). +.Pp +The callback argument is a function which is called when +this query completes and ptr is an argument which is passed +to that callback function. +.Pp +Returns non-zero on error +.It Ft void Fn evdns_search_clear +Clears the list of search domains +.It Ft void Fn evdns_search_add "const char *domain" +Add a domain to the list of search domains +.It Ft void Fn evdns_search_ndots_set "int ndots" +Set the number of dots which, when found in a name, causes +the first query to be without any search domain. +.It Ft int Fn evdns_count_nameservers "void" +Return the number of configured nameservers (not necessarily the +number of running nameservers). This is useful for double-checking +whether our calls to the various nameserver configuration functions +have been successful. +.It Ft int Fn evdns_clear_nameservers_and_suspend "void" +Remove all currently configured nameservers, and suspend all pending +resolves. Resolves will not necessarily be re-attempted until +evdns_resume() is called. +.It Ft int Fn evdns_resume "void" +Re-attempt resolves left in limbo after an earlier call to +evdns_clear_nameservers_and_suspend(). +.It Ft int Fn evdns_config_windows_nameservers "void" +Attempt to configure a set of nameservers based on platform settings on +a win32 host. Preferentially tries to use GetNetworkParams; if that fails, +looks in the registry. Returns 0 on success, nonzero on failure. +.It Ft int Fn evdns_resolv_conf_parse "int flags" "const char *filename" +Parse a resolv.conf like file from the given filename. +.Pp +See the man page for resolv.conf for the format of this file. +The flags argument determines what information is parsed from +this file: +.Bl -tag -width "DNS_OPTION_NAMESERVERS" -offset indent -compact -nested +.It DNS_OPTION_SEARCH +domain, search and ndots options +.It DNS_OPTION_NAMESERVERS +nameserver lines +.It DNS_OPTION_MISC +timeout and attempts options +.It DNS_OPTIONS_ALL +all of the above +.El +.Pp +The following directives are not parsed from the file: + sortlist, rotate, no-check-names, inet6, debug +.Pp +Returns non-zero on error: +.Bl -tag -width "0" -offset indent -compact -nested +.It 0 +no errors +.It 1 +failed to open file +.It 2 +failed to stat file +.It 3 +file too large +.It 4 +out of memory +.It 5 +short read from file +.El +.El +.Sh Internals: +Requests are kept in two queues. The first is the inflight queue. In +this queue requests have an allocated transaction id and nameserver. +They will soon be transmitted if they haven't already been. +.Pp +The second is the waiting queue. The size of the inflight ring is +limited and all other requests wait in waiting queue for space. This +bounds the number of concurrent requests so that we don't flood the +nameserver. Several algorithms require a full walk of the inflight +queue and so bounding its size keeps thing going nicely under huge +(many thousands of requests) loads. +.Pp +If a nameserver loses too many requests it is considered down and we +try not to use it. After a while we send a probe to that nameserver +(a lookup for google.com) and, if it replies, we consider it working +again. If the nameserver fails a probe we wait longer to try again +with the next probe. +.Sh SEE ALSO +.Xr event 3 , +.Xr gethostbyname 3 , +.Xr resolv.conf 5 +.Sh HISTORY +The +.Nm evdns +API was developed by Adam Langley on top of the +.Nm libevent +API. +The code was integrate into +.Nm Tor +by Nick Mathewson and finally put into +.Nm libevent +itself by Niels Provos. +.Sh AUTHORS +The +.Nm evdns +API and code was written by Adam Langley with significant +contributions by Nick Mathewson. +.Sh BUGS +This documentation is neither complete nor authoritative. +If you are in doubt about the usage of this API then +check the source code to find out how it works, write +up the missing piece of documentation and send it to +me for inclusion in this man page. diff -Nru mysql-5.7-5.7.25/extra/libevent/evdns.c mysql-5.7-5.7.26/extra/libevent/evdns.c --- mysql-5.7-5.7.25/extra/libevent/evdns.c 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/evdns.c 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,4767 @@ +/* Copyright 2006-2007 Niels Provos + * Copyright 2007-2012 Nick Mathewson and Niels Provos + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ + +/* Based on software by Adam Langly. Adam's original message: + * + * Async DNS Library + * Adam Langley + * http://www.imperialviolet.org/eventdns.html + * Public Domain code + * + * This software is Public Domain. To view a copy of the public domain dedication, + * visit http://creativecommons.org/licenses/publicdomain/ or send a letter to + * Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA. + * + * I ask and expect, but do not require, that all derivative works contain an + * attribution similar to: + * Parts developed by Adam Langley + * + * You may wish to replace the word "Parts" with something else depending on + * the amount of original code. + * + * (Derivative works does not include programs which link against, run or include + * the source verbatim in their source distributions) + * + * Version: 0.1b + */ + +#include "event2/event-config.h" +#include "evconfig-private.h" + +#include + +#ifndef _FORTIFY_SOURCE +#define _FORTIFY_SOURCE 3 +#endif + +#include +#include +#ifdef EVENT__HAVE_SYS_TIME_H +#include +#endif +#ifdef EVENT__HAVE_STDINT_H +#include +#endif +#include +#include +#include +#ifdef EVENT__HAVE_UNISTD_H +#include +#endif +#include +#include +#include +#include +#ifdef _WIN32 +#include +#include +#ifndef _WIN32_IE +#define _WIN32_IE 0x400 +#endif +#include +#endif + +#include "event2/dns.h" +#include "event2/dns_struct.h" +#include "event2/dns_compat.h" +#include "event2/util.h" +#include "event2/event.h" +#include "event2/event_struct.h" +#include "event2/thread.h" + +#include "defer-internal.h" +#include "log-internal.h" +#include "mm-internal.h" +#include "strlcpy-internal.h" +#include "ipv6-internal.h" +#include "util-internal.h" +#include "evthread-internal.h" +#ifdef _WIN32 +#include +#include +#include +#include +#include +#else +#include +#include +#include +#endif + +#ifdef EVENT__HAVE_NETINET_IN6_H +#include +#endif + +#define EVDNS_LOG_DEBUG EVENT_LOG_DEBUG +#define EVDNS_LOG_WARN EVENT_LOG_WARN +#define EVDNS_LOG_MSG EVENT_LOG_MSG + +#ifndef HOST_NAME_MAX +#define HOST_NAME_MAX 255 +#endif + +#include + +#undef MIN +#define MIN(a,b) ((a)<(b)?(a):(b)) + +#define ASSERT_VALID_REQUEST(req) \ + EVUTIL_ASSERT((req)->handle && (req)->handle->current_req == (req)) + +#define u64 ev_uint64_t +#define u32 ev_uint32_t +#define u16 ev_uint16_t +#define u8 ev_uint8_t + +/* maximum number of addresses from a single packet */ +/* that we bother recording */ +#define MAX_V4_ADDRS 32 +#define MAX_V6_ADDRS 32 + + +#define TYPE_A EVDNS_TYPE_A +#define TYPE_CNAME 5 +#define TYPE_PTR EVDNS_TYPE_PTR +#define TYPE_SOA EVDNS_TYPE_SOA +#define TYPE_AAAA EVDNS_TYPE_AAAA + +#define CLASS_INET EVDNS_CLASS_INET + +/* Persistent handle. We keep this separate from 'struct request' since we + * need some object to last for as long as an evdns_request is outstanding so + * that it can be canceled, whereas a search request can lead to multiple + * 'struct request' instances being created over its lifetime. */ +struct evdns_request { + struct request *current_req; + struct evdns_base *base; + + int pending_cb; /* Waiting for its callback to be invoked; not + * owned by event base any more. */ + + /* elements used by the searching code */ + int search_index; + struct search_state *search_state; + char *search_origname; /* needs to be free()ed */ + int search_flags; +}; + +struct request { + u8 *request; /* the dns packet data */ + u8 request_type; /* TYPE_PTR or TYPE_A or TYPE_AAAA */ + unsigned int request_len; + int reissue_count; + int tx_count; /* the number of times that this packet has been sent */ + void *user_pointer; /* the pointer given to us for this request */ + evdns_callback_type user_callback; + struct nameserver *ns; /* the server which we last sent it */ + + /* these objects are kept in a circular list */ + /* XXX We could turn this into a CIRCLEQ. */ + struct request *next, *prev; + + struct event timeout_event; + + u16 trans_id; /* the transaction id */ + unsigned request_appended :1; /* true if the request pointer is data which follows this struct */ + unsigned transmit_me :1; /* needs to be transmitted */ + + /* XXXX This is a horrible hack. */ + char **put_cname_in_ptr; /* store the cname here if we get one. */ + + struct evdns_base *base; + + struct evdns_request *handle; +}; + +struct reply { + unsigned int type; + unsigned int have_answer : 1; + union { + struct { + u32 addrcount; + u32 addresses[MAX_V4_ADDRS]; + } a; + struct { + u32 addrcount; + struct in6_addr addresses[MAX_V6_ADDRS]; + } aaaa; + struct { + char name[HOST_NAME_MAX]; + } ptr; + } data; +}; + +struct nameserver { + evutil_socket_t socket; /* a connected UDP socket */ + struct sockaddr_storage address; + ev_socklen_t addrlen; + int failed_times; /* number of times which we have given this server a chance */ + int timedout; /* number of times in a row a request has timed out */ + struct event event; + /* these objects are kept in a circular list */ + struct nameserver *next, *prev; + struct event timeout_event; /* used to keep the timeout for */ + /* when we next probe this server. */ + /* Valid if state == 0 */ + /* Outstanding probe request for this nameserver, if any */ + struct evdns_request *probe_request; + char state; /* zero if we think that this server is down */ + char choked; /* true if we have an EAGAIN from this server's socket */ + char write_waiting; /* true if we are waiting for EV_WRITE events */ + struct evdns_base *base; + + /* Number of currently inflight requests: used + * to track when we should add/del the event. */ + int requests_inflight; +}; + + +/* Represents a local port where we're listening for DNS requests. Right now, */ +/* only UDP is supported. */ +struct evdns_server_port { + evutil_socket_t socket; /* socket we use to read queries and write replies. */ + int refcnt; /* reference count. */ + char choked; /* Are we currently blocked from writing? */ + char closing; /* Are we trying to close this port, pending writes? */ + evdns_request_callback_fn_type user_callback; /* Fn to handle requests */ + void *user_data; /* Opaque pointer passed to user_callback */ + struct event event; /* Read/write event */ + /* circular list of replies that we want to write. */ + struct server_request *pending_replies; + struct event_base *event_base; + +#ifndef EVENT__DISABLE_THREAD_SUPPORT + void *lock; +#endif +}; + +/* Represents part of a reply being built. (That is, a single RR.) */ +struct server_reply_item { + struct server_reply_item *next; /* next item in sequence. */ + char *name; /* name part of the RR */ + u16 type; /* The RR type */ + u16 class; /* The RR class (usually CLASS_INET) */ + u32 ttl; /* The RR TTL */ + char is_name; /* True iff data is a label */ + u16 datalen; /* Length of data; -1 if data is a label */ + void *data; /* The contents of the RR */ +}; + +/* Represents a request that we've received as a DNS server, and holds */ +/* the components of the reply as we're constructing it. */ +struct server_request { + /* Pointers to the next and previous entries on the list of replies */ + /* that we're waiting to write. Only set if we have tried to respond */ + /* and gotten EAGAIN. */ + struct server_request *next_pending; + struct server_request *prev_pending; + + u16 trans_id; /* Transaction id. */ + struct evdns_server_port *port; /* Which port received this request on? */ + struct sockaddr_storage addr; /* Where to send the response */ + ev_socklen_t addrlen; /* length of addr */ + + int n_answer; /* how many answer RRs have been set? */ + int n_authority; /* how many authority RRs have been set? */ + int n_additional; /* how many additional RRs have been set? */ + + struct server_reply_item *answer; /* linked list of answer RRs */ + struct server_reply_item *authority; /* linked list of authority RRs */ + struct server_reply_item *additional; /* linked list of additional RRs */ + + /* Constructed response. Only set once we're ready to send a reply. */ + /* Once this is set, the RR fields are cleared, and no more should be set. */ + char *response; + size_t response_len; + + /* Caller-visible fields: flags, questions. */ + struct evdns_server_request base; +}; + +struct evdns_base { + /* An array of n_req_heads circular lists for inflight requests. + * Each inflight request req is in req_heads[req->trans_id % n_req_heads]. + */ + struct request **req_heads; + /* A circular list of requests that we're waiting to send, but haven't + * sent yet because there are too many requests inflight */ + struct request *req_waiting_head; + /* A circular list of nameservers. */ + struct nameserver *server_head; + int n_req_heads; + + struct event_base *event_base; + + /* The number of good nameservers that we have */ + int global_good_nameservers; + + /* inflight requests are contained in the req_head list */ + /* and are actually going out across the network */ + int global_requests_inflight; + /* requests which aren't inflight are in the waiting list */ + /* and are counted here */ + int global_requests_waiting; + + int global_max_requests_inflight; + + struct timeval global_timeout; /* 5 seconds by default */ + int global_max_reissues; /* a reissue occurs when we get some errors from the server */ + int global_max_retransmits; /* number of times we'll retransmit a request which timed out */ + /* number of timeouts in a row before we consider this server to be down */ + int global_max_nameserver_timeout; + /* true iff we will use the 0x20 hack to prevent poisoning attacks. */ + int global_randomize_case; + + /* The first time that a nameserver fails, how long do we wait before + * probing to see if it has returned? */ + struct timeval global_nameserver_probe_initial_timeout; + + /** Port to bind to for outgoing DNS packets. */ + struct sockaddr_storage global_outgoing_address; + /** ev_socklen_t for global_outgoing_address. 0 if it isn't set. */ + ev_socklen_t global_outgoing_addrlen; + + struct timeval global_getaddrinfo_allow_skew; + + int getaddrinfo_ipv4_timeouts; + int getaddrinfo_ipv6_timeouts; + int getaddrinfo_ipv4_answered; + int getaddrinfo_ipv6_answered; + + struct search_state *global_search_state; + + TAILQ_HEAD(hosts_list, hosts_entry) hostsdb; + +#ifndef EVENT__DISABLE_THREAD_SUPPORT + void *lock; +#endif + + int disable_when_inactive; +}; + +struct hosts_entry { + TAILQ_ENTRY(hosts_entry) next; + union { + struct sockaddr sa; + struct sockaddr_in sin; + struct sockaddr_in6 sin6; + } addr; + int addrlen; + char hostname[1]; +}; + +static struct evdns_base *current_base = NULL; + +struct evdns_base * +evdns_get_global_base(void) +{ + return current_base; +} + +/* Given a pointer to an evdns_server_request, get the corresponding */ +/* server_request. */ +#define TO_SERVER_REQUEST(base_ptr) \ + ((struct server_request*) \ + (((char*)(base_ptr) - evutil_offsetof(struct server_request, base)))) + +#define REQ_HEAD(base, id) ((base)->req_heads[id % (base)->n_req_heads]) + +static struct nameserver *nameserver_pick(struct evdns_base *base); +static void evdns_request_insert(struct request *req, struct request **head); +static void evdns_request_remove(struct request *req, struct request **head); +static void nameserver_ready_callback(evutil_socket_t fd, short events, void *arg); +static int evdns_transmit(struct evdns_base *base); +static int evdns_request_transmit(struct request *req); +static void nameserver_send_probe(struct nameserver *const ns); +static void search_request_finished(struct evdns_request *const); +static int search_try_next(struct evdns_request *const req); +static struct request *search_request_new(struct evdns_base *base, struct evdns_request *handle, int type, const char *const name, int flags, evdns_callback_type user_callback, void *user_arg); +static void evdns_requests_pump_waiting_queue(struct evdns_base *base); +static u16 transaction_id_pick(struct evdns_base *base); +static struct request *request_new(struct evdns_base *base, struct evdns_request *handle, int type, const char *name, int flags, evdns_callback_type callback, void *ptr); +static void request_submit(struct request *const req); + +static int server_request_free(struct server_request *req); +static void server_request_free_answers(struct server_request *req); +static void server_port_free(struct evdns_server_port *port); +static void server_port_ready_callback(evutil_socket_t fd, short events, void *arg); +static int evdns_base_resolv_conf_parse_impl(struct evdns_base *base, int flags, const char *const filename); +static int evdns_base_set_option_impl(struct evdns_base *base, + const char *option, const char *val, int flags); +static void evdns_base_free_and_unlock(struct evdns_base *base, int fail_requests); +static void evdns_request_timeout_callback(evutil_socket_t fd, short events, void *arg); + +static int strtoint(const char *const str); + +#ifdef EVENT__DISABLE_THREAD_SUPPORT +#define EVDNS_LOCK(base) EVUTIL_NIL_STMT_ +#define EVDNS_UNLOCK(base) EVUTIL_NIL_STMT_ +#define ASSERT_LOCKED(base) EVUTIL_NIL_STMT_ +#else +#define EVDNS_LOCK(base) \ + EVLOCK_LOCK((base)->lock, 0) +#define EVDNS_UNLOCK(base) \ + EVLOCK_UNLOCK((base)->lock, 0) +#define ASSERT_LOCKED(base) \ + EVLOCK_ASSERT_LOCKED((base)->lock) +#endif + +static evdns_debug_log_fn_type evdns_log_fn = NULL; + +void +evdns_set_log_fn(evdns_debug_log_fn_type fn) +{ + evdns_log_fn = fn; +} + +#ifdef __GNUC__ +#define EVDNS_LOG_CHECK __attribute__ ((format(printf, 2, 3))) +#else +#define EVDNS_LOG_CHECK +#endif + +static void evdns_log_(int severity, const char *fmt, ...) EVDNS_LOG_CHECK; +static void +evdns_log_(int severity, const char *fmt, ...) +{ + va_list args; + va_start(args,fmt); + if (evdns_log_fn) { + char buf[512]; + int is_warn = (severity == EVDNS_LOG_WARN); + evutil_vsnprintf(buf, sizeof(buf), fmt, args); + evdns_log_fn(is_warn, buf); + } else { + event_logv_(severity, NULL, fmt, args); + } + va_end(args); +} + +#define log evdns_log_ + +/* This walks the list of inflight requests to find the */ +/* one with a matching transaction id. Returns NULL on */ +/* failure */ +static struct request * +request_find_from_trans_id(struct evdns_base *base, u16 trans_id) { + struct request *req = REQ_HEAD(base, trans_id); + struct request *const started_at = req; + + ASSERT_LOCKED(base); + + if (req) { + do { + if (req->trans_id == trans_id) return req; + req = req->next; + } while (req != started_at); + } + + return NULL; +} + +/* a libevent callback function which is called when a nameserver */ +/* has gone down and we want to test if it has came back to life yet */ +static void +nameserver_prod_callback(evutil_socket_t fd, short events, void *arg) { + struct nameserver *const ns = (struct nameserver *) arg; + (void)fd; + (void)events; + + EVDNS_LOCK(ns->base); + nameserver_send_probe(ns); + EVDNS_UNLOCK(ns->base); +} + +/* a libevent callback which is called when a nameserver probe (to see if */ +/* it has come back to life) times out. We increment the count of failed_times */ +/* and wait longer to send the next probe packet. */ +static void +nameserver_probe_failed(struct nameserver *const ns) { + struct timeval timeout; + int i; + + ASSERT_LOCKED(ns->base); + (void) evtimer_del(&ns->timeout_event); + if (ns->state == 1) { + /* This can happen if the nameserver acts in a way which makes us mark */ + /* it as bad and then starts sending good replies. */ + return; + } + +#define MAX_PROBE_TIMEOUT 3600 +#define TIMEOUT_BACKOFF_FACTOR 3 + + memcpy(&timeout, &ns->base->global_nameserver_probe_initial_timeout, + sizeof(struct timeval)); + for (i=ns->failed_times; i > 0 && timeout.tv_sec < MAX_PROBE_TIMEOUT; --i) { + timeout.tv_sec *= TIMEOUT_BACKOFF_FACTOR; + timeout.tv_usec *= TIMEOUT_BACKOFF_FACTOR; + if (timeout.tv_usec > 1000000) { + timeout.tv_sec += timeout.tv_usec / 1000000; + timeout.tv_usec %= 1000000; + } + } + if (timeout.tv_sec > MAX_PROBE_TIMEOUT) { + timeout.tv_sec = MAX_PROBE_TIMEOUT; + timeout.tv_usec = 0; + } + + ns->failed_times++; + + if (evtimer_add(&ns->timeout_event, &timeout) < 0) { + char addrbuf[128]; + log(EVDNS_LOG_WARN, + "Error from libevent when adding timer event for %s", + evutil_format_sockaddr_port_( + (struct sockaddr *)&ns->address, + addrbuf, sizeof(addrbuf))); + } +} + +static void +request_swap_ns(struct request *req, struct nameserver *ns) { + if (ns && req->ns != ns) { + EVUTIL_ASSERT(req->ns->requests_inflight > 0); + req->ns->requests_inflight--; + ns->requests_inflight++; + + req->ns = ns; + } +} + +/* called when a nameserver has been deemed to have failed. For example, too */ +/* many packets have timed out etc */ +static void +nameserver_failed(struct nameserver *const ns, const char *msg) { + struct request *req, *started_at; + struct evdns_base *base = ns->base; + int i; + char addrbuf[128]; + + ASSERT_LOCKED(base); + /* if this nameserver has already been marked as failed */ + /* then don't do anything */ + if (!ns->state) return; + + log(EVDNS_LOG_MSG, "Nameserver %s has failed: %s", + evutil_format_sockaddr_port_( + (struct sockaddr *)&ns->address, + addrbuf, sizeof(addrbuf)), + msg); + + base->global_good_nameservers--; + EVUTIL_ASSERT(base->global_good_nameservers >= 0); + if (base->global_good_nameservers == 0) { + log(EVDNS_LOG_MSG, "All nameservers have failed"); + } + + ns->state = 0; + ns->failed_times = 1; + + if (evtimer_add(&ns->timeout_event, + &base->global_nameserver_probe_initial_timeout) < 0) { + log(EVDNS_LOG_WARN, + "Error from libevent when adding timer event for %s", + evutil_format_sockaddr_port_( + (struct sockaddr *)&ns->address, + addrbuf, sizeof(addrbuf))); + /* ???? Do more? */ + } + + /* walk the list of inflight requests to see if any can be reassigned to */ + /* a different server. Requests in the waiting queue don't have a */ + /* nameserver assigned yet */ + + /* if we don't have *any* good nameservers then there's no point */ + /* trying to reassign requests to one */ + if (!base->global_good_nameservers) return; + + for (i = 0; i < base->n_req_heads; ++i) { + req = started_at = base->req_heads[i]; + if (req) { + do { + if (req->tx_count == 0 && req->ns == ns) { + /* still waiting to go out, can be moved */ + /* to another server */ + request_swap_ns(req, nameserver_pick(base)); + } + req = req->next; + } while (req != started_at); + } + } +} + +static void +nameserver_up(struct nameserver *const ns) +{ + char addrbuf[128]; + ASSERT_LOCKED(ns->base); + if (ns->state) return; + log(EVDNS_LOG_MSG, "Nameserver %s is back up", + evutil_format_sockaddr_port_( + (struct sockaddr *)&ns->address, + addrbuf, sizeof(addrbuf))); + evtimer_del(&ns->timeout_event); + if (ns->probe_request) { + evdns_cancel_request(ns->base, ns->probe_request); + ns->probe_request = NULL; + } + ns->state = 1; + ns->failed_times = 0; + ns->timedout = 0; + ns->base->global_good_nameservers++; +} + +static void +request_trans_id_set(struct request *const req, const u16 trans_id) { + req->trans_id = trans_id; + *((u16 *) req->request) = htons(trans_id); +} + +/* Called to remove a request from a list and dealloc it. */ +/* head is a pointer to the head of the list it should be */ +/* removed from or NULL if the request isn't in a list. */ +/* when free_handle is one, free the handle as well. */ +static void +request_finished(struct request *const req, struct request **head, int free_handle) { + struct evdns_base *base = req->base; + int was_inflight = (head != &base->req_waiting_head); + EVDNS_LOCK(base); + ASSERT_VALID_REQUEST(req); + + if (head) + evdns_request_remove(req, head); + + log(EVDNS_LOG_DEBUG, "Removing timeout for request %p", req); + if (was_inflight) { + evtimer_del(&req->timeout_event); + base->global_requests_inflight--; + req->ns->requests_inflight--; + } else { + base->global_requests_waiting--; + } + /* it was initialized during request_new / evtimer_assign */ + event_debug_unassign(&req->timeout_event); + + if (req->ns && + req->ns->requests_inflight == 0 && + req->base->disable_when_inactive) { + event_del(&req->ns->event); + evtimer_del(&req->ns->timeout_event); + } + + if (!req->request_appended) { + /* need to free the request data on it's own */ + mm_free(req->request); + } else { + /* the request data is appended onto the header */ + /* so everything gets free()ed when we: */ + } + + if (req->handle) { + EVUTIL_ASSERT(req->handle->current_req == req); + + if (free_handle) { + search_request_finished(req->handle); + req->handle->current_req = NULL; + if (! req->handle->pending_cb) { + /* If we're planning to run the callback, + * don't free the handle until later. */ + mm_free(req->handle); + } + req->handle = NULL; /* If we have a bug, let's crash + * early */ + } else { + req->handle->current_req = NULL; + } + } + + mm_free(req); + + evdns_requests_pump_waiting_queue(base); + EVDNS_UNLOCK(base); +} + +/* This is called when a server returns a funny error code. */ +/* We try the request again with another server. */ +/* */ +/* return: */ +/* 0 ok */ +/* 1 failed/reissue is pointless */ +static int +request_reissue(struct request *req) { + const struct nameserver *const last_ns = req->ns; + ASSERT_LOCKED(req->base); + ASSERT_VALID_REQUEST(req); + /* the last nameserver should have been marked as failing */ + /* by the caller of this function, therefore pick will try */ + /* not to return it */ + request_swap_ns(req, nameserver_pick(req->base)); + if (req->ns == last_ns) { + /* ... but pick did return it */ + /* not a lot of point in trying again with the */ + /* same server */ + return 1; + } + + req->reissue_count++; + req->tx_count = 0; + req->transmit_me = 1; + + return 0; +} + +/* this function looks for space on the inflight queue and promotes */ +/* requests from the waiting queue if it can. */ +/* */ +/* TODO: */ +/* add return code, see at nameserver_pick() and other functions. */ +static void +evdns_requests_pump_waiting_queue(struct evdns_base *base) { + ASSERT_LOCKED(base); + while (base->global_requests_inflight < base->global_max_requests_inflight && + base->global_requests_waiting) { + struct request *req; + + EVUTIL_ASSERT(base->req_waiting_head); + req = base->req_waiting_head; + + req->ns = nameserver_pick(base); + if (!req->ns) + return; + + /* move a request from the waiting queue to the inflight queue */ + req->ns->requests_inflight++; + + evdns_request_remove(req, &base->req_waiting_head); + + base->global_requests_waiting--; + base->global_requests_inflight++; + + request_trans_id_set(req, transaction_id_pick(base)); + + evdns_request_insert(req, &REQ_HEAD(base, req->trans_id)); + evdns_request_transmit(req); + evdns_transmit(base); + } +} + +/* TODO(nickm) document */ +struct deferred_reply_callback { + struct event_callback deferred; + struct evdns_request *handle; + u8 request_type; + u8 have_reply; + u32 ttl; + u32 err; + evdns_callback_type user_callback; + struct reply reply; +}; + +static void +reply_run_callback(struct event_callback *d, void *user_pointer) +{ + struct deferred_reply_callback *cb = + EVUTIL_UPCAST(d, struct deferred_reply_callback, deferred); + + switch (cb->request_type) { + case TYPE_A: + if (cb->have_reply) + cb->user_callback(DNS_ERR_NONE, DNS_IPv4_A, + cb->reply.data.a.addrcount, cb->ttl, + cb->reply.data.a.addresses, + user_pointer); + else + cb->user_callback(cb->err, 0, 0, cb->ttl, NULL, user_pointer); + break; + case TYPE_PTR: + if (cb->have_reply) { + char *name = cb->reply.data.ptr.name; + cb->user_callback(DNS_ERR_NONE, DNS_PTR, 1, cb->ttl, + &name, user_pointer); + } else { + cb->user_callback(cb->err, 0, 0, cb->ttl, NULL, user_pointer); + } + break; + case TYPE_AAAA: + if (cb->have_reply) + cb->user_callback(DNS_ERR_NONE, DNS_IPv6_AAAA, + cb->reply.data.aaaa.addrcount, cb->ttl, + cb->reply.data.aaaa.addresses, + user_pointer); + else + cb->user_callback(cb->err, 0, 0, cb->ttl, NULL, user_pointer); + break; + default: + EVUTIL_ASSERT(0); + } + + if (cb->handle && cb->handle->pending_cb) { + mm_free(cb->handle); + } + + mm_free(cb); +} + +static void +reply_schedule_callback(struct request *const req, u32 ttl, u32 err, struct reply *reply) +{ + struct deferred_reply_callback *d = mm_calloc(1, sizeof(*d)); + + if (!d) { + event_warn("%s: Couldn't allocate space for deferred callback.", + __func__); + return; + } + + ASSERT_LOCKED(req->base); + + d->request_type = req->request_type; + d->user_callback = req->user_callback; + d->ttl = ttl; + d->err = err; + if (reply) { + d->have_reply = 1; + memcpy(&d->reply, reply, sizeof(struct reply)); + } + + if (req->handle) { + req->handle->pending_cb = 1; + d->handle = req->handle; + } + + event_deferred_cb_init_( + &d->deferred, + event_get_priority(&req->timeout_event), + reply_run_callback, + req->user_pointer); + event_deferred_cb_schedule_( + req->base->event_base, + &d->deferred); +} + +/* this processes a parsed reply packet */ +static void +reply_handle(struct request *const req, u16 flags, u32 ttl, struct reply *reply) { + int error; + char addrbuf[128]; + static const int error_codes[] = { + DNS_ERR_FORMAT, DNS_ERR_SERVERFAILED, DNS_ERR_NOTEXIST, + DNS_ERR_NOTIMPL, DNS_ERR_REFUSED + }; + + ASSERT_LOCKED(req->base); + ASSERT_VALID_REQUEST(req); + + if (flags & 0x020f || !reply || !reply->have_answer) { + /* there was an error */ + if (flags & 0x0200) { + error = DNS_ERR_TRUNCATED; + } else if (flags & 0x000f) { + u16 error_code = (flags & 0x000f) - 1; + if (error_code > 4) { + error = DNS_ERR_UNKNOWN; + } else { + error = error_codes[error_code]; + } + } else if (reply && !reply->have_answer) { + error = DNS_ERR_NODATA; + } else { + error = DNS_ERR_UNKNOWN; + } + + switch (error) { + case DNS_ERR_NOTIMPL: + case DNS_ERR_REFUSED: + /* we regard these errors as marking a bad nameserver */ + if (req->reissue_count < req->base->global_max_reissues) { + char msg[64]; + evutil_snprintf(msg, sizeof(msg), "Bad response %d (%s)", + error, evdns_err_to_string(error)); + nameserver_failed(req->ns, msg); + if (!request_reissue(req)) return; + } + break; + case DNS_ERR_SERVERFAILED: + /* rcode 2 (servfailed) sometimes means "we + * are broken" and sometimes (with some binds) + * means "that request was very confusing." + * Treat this as a timeout, not a failure. + */ + log(EVDNS_LOG_DEBUG, "Got a SERVERFAILED from nameserver" + "at %s; will allow the request to time out.", + evutil_format_sockaddr_port_( + (struct sockaddr *)&req->ns->address, + addrbuf, sizeof(addrbuf))); + /* Call the timeout function */ + evdns_request_timeout_callback(0, 0, req); + return; + default: + /* we got a good reply from the nameserver: it is up. */ + if (req->handle == req->ns->probe_request) { + /* Avoid double-free */ + req->ns->probe_request = NULL; + } + + nameserver_up(req->ns); + } + + if (req->handle->search_state && + req->request_type != TYPE_PTR) { + /* if we have a list of domains to search in, + * try the next one */ + if (!search_try_next(req->handle)) { + /* a new request was issued so this + * request is finished and */ + /* the user callback will be made when + * that request (or a */ + /* child of it) finishes. */ + return; + } + } + + /* all else failed. Pass the failure up */ + reply_schedule_callback(req, ttl, error, NULL); + request_finished(req, &REQ_HEAD(req->base, req->trans_id), 1); + } else { + /* all ok, tell the user */ + reply_schedule_callback(req, ttl, 0, reply); + if (req->handle == req->ns->probe_request) + req->ns->probe_request = NULL; /* Avoid double-free */ + nameserver_up(req->ns); + request_finished(req, &REQ_HEAD(req->base, req->trans_id), 1); + } +} + +static int +name_parse(u8 *packet, int length, int *idx, char *name_out, int name_out_len) { + int name_end = -1; + int j = *idx; + int ptr_count = 0; +#define GET32(x) do { if (j + 4 > length) goto err; memcpy(&t32_, packet + j, 4); j += 4; x = ntohl(t32_); } while (0) +#define GET16(x) do { if (j + 2 > length) goto err; memcpy(&t_, packet + j, 2); j += 2; x = ntohs(t_); } while (0) +#define GET8(x) do { if (j >= length) goto err; x = packet[j++]; } while (0) + + char *cp = name_out; + const char *const end = name_out + name_out_len; + + /* Normally, names are a series of length prefixed strings terminated */ + /* with a length of 0 (the lengths are u8's < 63). */ + /* However, the length can start with a pair of 1 bits and that */ + /* means that the next 14 bits are a pointer within the current */ + /* packet. */ + + for (;;) { + u8 label_len; + GET8(label_len); + if (!label_len) break; + if (label_len & 0xc0) { + u8 ptr_low; + GET8(ptr_low); + if (name_end < 0) name_end = j; + j = (((int)label_len & 0x3f) << 8) + ptr_low; + /* Make sure that the target offset is in-bounds. */ + if (j < 0 || j >= length) return -1; + /* If we've jumped more times than there are characters in the + * message, we must have a loop. */ + if (++ptr_count > length) return -1; + continue; + } + if (label_len > 63) return -1; + if (cp != name_out) { + if (cp + 1 >= end) return -1; + *cp++ = '.'; + } + if (cp + label_len >= end) return -1; + if (j + label_len > length) return -1; + memcpy(cp, packet + j, label_len); + cp += label_len; + j += label_len; + } + if (cp >= end) return -1; + *cp = '\0'; + if (name_end < 0) + *idx = j; + else + *idx = name_end; + return 0; + err: + return -1; +} + +/* parses a raw request from a nameserver */ +static int +reply_parse(struct evdns_base *base, u8 *packet, int length) { + int j = 0, k = 0; /* index into packet */ + u16 t_; /* used by the macros */ + u32 t32_; /* used by the macros */ + char tmp_name[256], cmp_name[256]; /* used by the macros */ + int name_matches = 0; + + u16 trans_id, questions, answers, authority, additional, datalength; + u16 flags = 0; + u32 ttl, ttl_r = 0xffffffff; + struct reply reply; + struct request *req = NULL; + unsigned int i; + + ASSERT_LOCKED(base); + + GET16(trans_id); + GET16(flags); + GET16(questions); + GET16(answers); + GET16(authority); + GET16(additional); + (void) authority; /* suppress "unused variable" warnings. */ + (void) additional; /* suppress "unused variable" warnings. */ + + req = request_find_from_trans_id(base, trans_id); + if (!req) return -1; + EVUTIL_ASSERT(req->base == base); + + memset(&reply, 0, sizeof(reply)); + + /* If it's not an answer, it doesn't correspond to any request. */ + if (!(flags & 0x8000)) return -1; /* must be an answer */ + if ((flags & 0x020f) && (flags & 0x020f) != DNS_ERR_NOTEXIST) { + /* there was an error and it's not NXDOMAIN */ + goto err; + } + /* if (!answers) return; */ /* must have an answer of some form */ + + /* This macro skips a name in the DNS reply. */ +#define SKIP_NAME \ + do { tmp_name[0] = '\0'; \ + if (name_parse(packet, length, &j, tmp_name, \ + sizeof(tmp_name))<0) \ + goto err; \ + } while (0) + + reply.type = req->request_type; + + /* skip over each question in the reply */ + for (i = 0; i < questions; ++i) { + /* the question looks like + * + */ + tmp_name[0] = '\0'; + cmp_name[0] = '\0'; + k = j; + if (name_parse(packet, length, &j, tmp_name, sizeof(tmp_name)) < 0) + goto err; + if (name_parse(req->request, req->request_len, &k, + cmp_name, sizeof(cmp_name))<0) + goto err; + if (!base->global_randomize_case) { + if (strcmp(tmp_name, cmp_name) == 0) + name_matches = 1; + } else { + if (evutil_ascii_strcasecmp(tmp_name, cmp_name) == 0) + name_matches = 1; + } + + j += 4; + if (j > length) + goto err; + } + + if (!name_matches) + goto err; + + /* now we have the answer section which looks like + * + */ + + for (i = 0; i < answers; ++i) { + u16 type, class; + + SKIP_NAME; + GET16(type); + GET16(class); + GET32(ttl); + GET16(datalength); + + if (type == TYPE_A && class == CLASS_INET) { + int addrcount, addrtocopy; + if (req->request_type != TYPE_A) { + j += datalength; continue; + } + if ((datalength & 3) != 0) /* not an even number of As. */ + goto err; + addrcount = datalength >> 2; + addrtocopy = MIN(MAX_V4_ADDRS - reply.data.a.addrcount, (unsigned)addrcount); + + ttl_r = MIN(ttl_r, ttl); + /* we only bother with the first four addresses. */ + if (j + 4*addrtocopy > length) goto err; + memcpy(&reply.data.a.addresses[reply.data.a.addrcount], + packet + j, 4*addrtocopy); + j += 4*addrtocopy; + reply.data.a.addrcount += addrtocopy; + reply.have_answer = 1; + if (reply.data.a.addrcount == MAX_V4_ADDRS) break; + } else if (type == TYPE_PTR && class == CLASS_INET) { + if (req->request_type != TYPE_PTR) { + j += datalength; continue; + } + if (name_parse(packet, length, &j, reply.data.ptr.name, + sizeof(reply.data.ptr.name))<0) + goto err; + ttl_r = MIN(ttl_r, ttl); + reply.have_answer = 1; + break; + } else if (type == TYPE_CNAME) { + char cname[HOST_NAME_MAX]; + if (!req->put_cname_in_ptr || *req->put_cname_in_ptr) { + j += datalength; continue; + } + if (name_parse(packet, length, &j, cname, + sizeof(cname))<0) + goto err; + *req->put_cname_in_ptr = mm_strdup(cname); + } else if (type == TYPE_AAAA && class == CLASS_INET) { + int addrcount, addrtocopy; + if (req->request_type != TYPE_AAAA) { + j += datalength; continue; + } + if ((datalength & 15) != 0) /* not an even number of AAAAs. */ + goto err; + addrcount = datalength >> 4; /* each address is 16 bytes long */ + addrtocopy = MIN(MAX_V6_ADDRS - reply.data.aaaa.addrcount, (unsigned)addrcount); + ttl_r = MIN(ttl_r, ttl); + + /* we only bother with the first four addresses. */ + if (j + 16*addrtocopy > length) goto err; + memcpy(&reply.data.aaaa.addresses[reply.data.aaaa.addrcount], + packet + j, 16*addrtocopy); + reply.data.aaaa.addrcount += addrtocopy; + j += 16*addrtocopy; + reply.have_answer = 1; + if (reply.data.aaaa.addrcount == MAX_V6_ADDRS) break; + } else { + /* skip over any other type of resource */ + j += datalength; + } + } + + if (!reply.have_answer) { + for (i = 0; i < authority; ++i) { + u16 type, class; + SKIP_NAME; + GET16(type); + GET16(class); + GET32(ttl); + GET16(datalength); + if (type == TYPE_SOA && class == CLASS_INET) { + u32 serial, refresh, retry, expire, minimum; + SKIP_NAME; + SKIP_NAME; + GET32(serial); + GET32(refresh); + GET32(retry); + GET32(expire); + GET32(minimum); + (void)expire; + (void)retry; + (void)refresh; + (void)serial; + ttl_r = MIN(ttl_r, ttl); + ttl_r = MIN(ttl_r, minimum); + } else { + /* skip over any other type of resource */ + j += datalength; + } + } + } + + if (ttl_r == 0xffffffff) + ttl_r = 0; + + reply_handle(req, flags, ttl_r, &reply); + return 0; + err: + if (req) + reply_handle(req, flags, 0, NULL); + return -1; +} + +/* Parse a raw request (packet,length) sent to a nameserver port (port) from */ +/* a DNS client (addr,addrlen), and if it's well-formed, call the corresponding */ +/* callback. */ +static int +request_parse(u8 *packet, int length, struct evdns_server_port *port, struct sockaddr *addr, ev_socklen_t addrlen) +{ + int j = 0; /* index into packet */ + u16 t_; /* used by the macros */ + char tmp_name[256]; /* used by the macros */ + + int i; + u16 trans_id, flags, questions, answers, authority, additional; + struct server_request *server_req = NULL; + + ASSERT_LOCKED(port); + + /* Get the header fields */ + GET16(trans_id); + GET16(flags); + GET16(questions); + GET16(answers); + GET16(authority); + GET16(additional); + (void)answers; + (void)additional; + (void)authority; + + if (flags & 0x8000) return -1; /* Must not be an answer. */ + flags &= 0x0110; /* Only RD and CD get preserved. */ + + server_req = mm_malloc(sizeof(struct server_request)); + if (server_req == NULL) return -1; + memset(server_req, 0, sizeof(struct server_request)); + + server_req->trans_id = trans_id; + memcpy(&server_req->addr, addr, addrlen); + server_req->addrlen = addrlen; + + server_req->base.flags = flags; + server_req->base.nquestions = 0; + server_req->base.questions = mm_calloc(sizeof(struct evdns_server_question *), questions); + if (server_req->base.questions == NULL) + goto err; + + for (i = 0; i < questions; ++i) { + u16 type, class; + struct evdns_server_question *q; + int namelen; + if (name_parse(packet, length, &j, tmp_name, sizeof(tmp_name))<0) + goto err; + GET16(type); + GET16(class); + namelen = (int)strlen(tmp_name); + q = mm_malloc(sizeof(struct evdns_server_question) + namelen); + if (!q) + goto err; + q->type = type; + q->dns_question_class = class; + memcpy(q->name, tmp_name, namelen+1); + server_req->base.questions[server_req->base.nquestions++] = q; + } + + /* Ignore answers, authority, and additional. */ + + server_req->port = port; + port->refcnt++; + + /* Only standard queries are supported. */ + if (flags & 0x7800) { + evdns_server_request_respond(&(server_req->base), DNS_ERR_NOTIMPL); + return -1; + } + + port->user_callback(&(server_req->base), port->user_data); + + return 0; +err: + if (server_req) { + if (server_req->base.questions) { + for (i = 0; i < server_req->base.nquestions; ++i) + mm_free(server_req->base.questions[i]); + mm_free(server_req->base.questions); + } + mm_free(server_req); + } + return -1; + +#undef SKIP_NAME +#undef GET32 +#undef GET16 +#undef GET8 +} + + +void +evdns_set_transaction_id_fn(ev_uint16_t (*fn)(void)) +{ +} + +void +evdns_set_random_bytes_fn(void (*fn)(char *, size_t)) +{ +} + +/* Try to choose a strong transaction id which isn't already in flight */ +static u16 +transaction_id_pick(struct evdns_base *base) { + ASSERT_LOCKED(base); + for (;;) { + u16 trans_id; + evutil_secure_rng_get_bytes(&trans_id, sizeof(trans_id)); + + if (trans_id == 0xffff) continue; + /* now check to see if that id is already inflight */ + if (request_find_from_trans_id(base, trans_id) == NULL) + return trans_id; + } +} + +/* choose a namesever to use. This function will try to ignore */ +/* nameservers which we think are down and load balance across the rest */ +/* by updating the server_head global each time. */ +static struct nameserver * +nameserver_pick(struct evdns_base *base) { + struct nameserver *started_at = base->server_head, *picked; + ASSERT_LOCKED(base); + if (!base->server_head) return NULL; + + /* if we don't have any good nameservers then there's no */ + /* point in trying to find one. */ + if (!base->global_good_nameservers) { + base->server_head = base->server_head->next; + return base->server_head; + } + + /* remember that nameservers are in a circular list */ + for (;;) { + if (base->server_head->state) { + /* we think this server is currently good */ + picked = base->server_head; + base->server_head = base->server_head->next; + return picked; + } + + base->server_head = base->server_head->next; + if (base->server_head == started_at) { + /* all the nameservers seem to be down */ + /* so we just return this one and hope for the */ + /* best */ + EVUTIL_ASSERT(base->global_good_nameservers == 0); + picked = base->server_head; + base->server_head = base->server_head->next; + return picked; + } + } +} + +/* this is called when a namesever socket is ready for reading */ +static void +nameserver_read(struct nameserver *ns) { + struct sockaddr_storage ss; + ev_socklen_t addrlen = sizeof(ss); + u8 packet[1500]; + char addrbuf[128]; + ASSERT_LOCKED(ns->base); + + for (;;) { + const int r = recvfrom(ns->socket, (void*)packet, + sizeof(packet), 0, + (struct sockaddr*)&ss, &addrlen); + if (r < 0) { + int err = evutil_socket_geterror(ns->socket); + if (EVUTIL_ERR_RW_RETRIABLE(err)) + return; + nameserver_failed(ns, + evutil_socket_error_to_string(err)); + return; + } + if (evutil_sockaddr_cmp((struct sockaddr*)&ss, + (struct sockaddr*)&ns->address, 0)) { + log(EVDNS_LOG_WARN, "Address mismatch on received " + "DNS packet. Apparent source was %s", + evutil_format_sockaddr_port_( + (struct sockaddr *)&ss, + addrbuf, sizeof(addrbuf))); + return; + } + + ns->timedout = 0; + reply_parse(ns->base, packet, r); + } +} + +/* Read a packet from a DNS client on a server port s, parse it, and */ +/* act accordingly. */ +static void +server_port_read(struct evdns_server_port *s) { + u8 packet[1500]; + struct sockaddr_storage addr; + ev_socklen_t addrlen; + int r; + ASSERT_LOCKED(s); + + for (;;) { + addrlen = sizeof(struct sockaddr_storage); + r = recvfrom(s->socket, (void*)packet, sizeof(packet), 0, + (struct sockaddr*) &addr, &addrlen); + if (r < 0) { + int err = evutil_socket_geterror(s->socket); + if (EVUTIL_ERR_RW_RETRIABLE(err)) + return; + log(EVDNS_LOG_WARN, + "Error %s (%d) while reading request.", + evutil_socket_error_to_string(err), err); + return; + } + request_parse(packet, r, s, (struct sockaddr*) &addr, addrlen); + } +} + +/* Try to write all pending replies on a given DNS server port. */ +static void +server_port_flush(struct evdns_server_port *port) +{ + struct server_request *req = port->pending_replies; + ASSERT_LOCKED(port); + while (req) { + int r = sendto(port->socket, req->response, (int)req->response_len, 0, + (struct sockaddr*) &req->addr, (ev_socklen_t)req->addrlen); + if (r < 0) { + int err = evutil_socket_geterror(port->socket); + if (EVUTIL_ERR_RW_RETRIABLE(err)) + return; + log(EVDNS_LOG_WARN, "Error %s (%d) while writing response to port; dropping", evutil_socket_error_to_string(err), err); + } + if (server_request_free(req)) { + /* we released the last reference to req->port. */ + return; + } else { + EVUTIL_ASSERT(req != port->pending_replies); + req = port->pending_replies; + } + } + + /* We have no more pending requests; stop listening for 'writeable' events. */ + (void) event_del(&port->event); + event_assign(&port->event, port->event_base, + port->socket, EV_READ | EV_PERSIST, + server_port_ready_callback, port); + + if (event_add(&port->event, NULL) < 0) { + log(EVDNS_LOG_WARN, "Error from libevent when adding event for DNS server."); + /* ???? Do more? */ + } +} + +/* set if we are waiting for the ability to write to this server. */ +/* if waiting is true then we ask libevent for EV_WRITE events, otherwise */ +/* we stop these events. */ +static void +nameserver_write_waiting(struct nameserver *ns, char waiting) { + ASSERT_LOCKED(ns->base); + if (ns->write_waiting == waiting) return; + + ns->write_waiting = waiting; + (void) event_del(&ns->event); + event_assign(&ns->event, ns->base->event_base, + ns->socket, EV_READ | (waiting ? EV_WRITE : 0) | EV_PERSIST, + nameserver_ready_callback, ns); + if (event_add(&ns->event, NULL) < 0) { + char addrbuf[128]; + log(EVDNS_LOG_WARN, "Error from libevent when adding event for %s", + evutil_format_sockaddr_port_( + (struct sockaddr *)&ns->address, + addrbuf, sizeof(addrbuf))); + /* ???? Do more? */ + } +} + +/* a callback function. Called by libevent when the kernel says that */ +/* a nameserver socket is ready for writing or reading */ +static void +nameserver_ready_callback(evutil_socket_t fd, short events, void *arg) { + struct nameserver *ns = (struct nameserver *) arg; + (void)fd; + + EVDNS_LOCK(ns->base); + if (events & EV_WRITE) { + ns->choked = 0; + if (!evdns_transmit(ns->base)) { + nameserver_write_waiting(ns, 0); + } + } + if (events & EV_READ) { + nameserver_read(ns); + } + EVDNS_UNLOCK(ns->base); +} + +/* a callback function. Called by libevent when the kernel says that */ +/* a server socket is ready for writing or reading. */ +static void +server_port_ready_callback(evutil_socket_t fd, short events, void *arg) { + struct evdns_server_port *port = (struct evdns_server_port *) arg; + (void) fd; + + EVDNS_LOCK(port); + if (events & EV_WRITE) { + port->choked = 0; + server_port_flush(port); + } + if (events & EV_READ) { + server_port_read(port); + } + EVDNS_UNLOCK(port); +} + +/* This is an inefficient representation; only use it via the dnslabel_table_* + * functions, so that is can be safely replaced with something smarter later. */ +#define MAX_LABELS 128 +/* Structures used to implement name compression */ +struct dnslabel_entry { char *v; off_t pos; }; +struct dnslabel_table { + int n_labels; /* number of current entries */ + /* map from name to position in message */ + struct dnslabel_entry labels[MAX_LABELS]; +}; + +/* Initialize dnslabel_table. */ +static void +dnslabel_table_init(struct dnslabel_table *table) +{ + table->n_labels = 0; +} + +/* Free all storage held by table, but not the table itself. */ +static void +dnslabel_clear(struct dnslabel_table *table) +{ + int i; + for (i = 0; i < table->n_labels; ++i) + mm_free(table->labels[i].v); + table->n_labels = 0; +} + +/* return the position of the label in the current message, or -1 if the label */ +/* hasn't been used yet. */ +static int +dnslabel_table_get_pos(const struct dnslabel_table *table, const char *label) +{ + int i; + for (i = 0; i < table->n_labels; ++i) { + if (!strcmp(label, table->labels[i].v)) + return table->labels[i].pos; + } + return -1; +} + +/* remember that we've used the label at position pos */ +static int +dnslabel_table_add(struct dnslabel_table *table, const char *label, off_t pos) +{ + char *v; + int p; + if (table->n_labels == MAX_LABELS) + return (-1); + v = mm_strdup(label); + if (v == NULL) + return (-1); + p = table->n_labels++; + table->labels[p].v = v; + table->labels[p].pos = pos; + + return (0); +} + +/* Converts a string to a length-prefixed set of DNS labels, starting */ +/* at buf[j]. name and buf must not overlap. name_len should be the length */ +/* of name. table is optional, and is used for compression. */ +/* */ +/* Input: abc.def */ +/* Output: <3>abc<3>def<0> */ +/* */ +/* Returns the first index after the encoded name, or negative on error. */ +/* -1 label was > 63 bytes */ +/* -2 name too long to fit in buffer. */ +/* */ +static off_t +dnsname_to_labels(u8 *const buf, size_t buf_len, off_t j, + const char *name, const size_t name_len, + struct dnslabel_table *table) { + const char *end = name + name_len; + int ref = 0; + u16 t_; + +#define APPEND16(x) do { \ + if (j + 2 > (off_t)buf_len) \ + goto overflow; \ + t_ = htons(x); \ + memcpy(buf + j, &t_, 2); \ + j += 2; \ + } while (0) +#define APPEND32(x) do { \ + if (j + 4 > (off_t)buf_len) \ + goto overflow; \ + t32_ = htonl(x); \ + memcpy(buf + j, &t32_, 4); \ + j += 4; \ + } while (0) + + if (name_len > 255) return -2; + + for (;;) { + const char *const start = name; + if (table && (ref = dnslabel_table_get_pos(table, name)) >= 0) { + APPEND16(ref | 0xc000); + return j; + } + name = strchr(name, '.'); + if (!name) { + const size_t label_len = end - start; + if (label_len > 63) return -1; + if ((size_t)(j+label_len+1) > buf_len) return -2; + if (table) dnslabel_table_add(table, start, j); + buf[j++] = (ev_uint8_t)label_len; + + memcpy(buf + j, start, label_len); + j += (int) label_len; + break; + } else { + /* append length of the label. */ + const size_t label_len = name - start; + if (label_len > 63) return -1; + if ((size_t)(j+label_len+1) > buf_len) return -2; + if (table) dnslabel_table_add(table, start, j); + buf[j++] = (ev_uint8_t)label_len; + + memcpy(buf + j, start, label_len); + j += (int) label_len; + /* hop over the '.' */ + name++; + } + } + + /* the labels must be terminated by a 0. */ + /* It's possible that the name ended in a . */ + /* in which case the zero is already there */ + if (!j || buf[j-1]) buf[j++] = 0; + return j; + overflow: + return (-2); +} + +/* Finds the length of a dns request for a DNS name of the given */ +/* length. The actual request may be smaller than the value returned */ +/* here */ +static size_t +evdns_request_len(const size_t name_len) { + return 96 + /* length of the DNS standard header */ + name_len + 2 + + 4; /* space for the resource type */ +} + +/* build a dns request packet into buf. buf should be at least as long */ +/* as evdns_request_len told you it should be. */ +/* */ +/* Returns the amount of space used. Negative on error. */ +static int +evdns_request_data_build(const char *const name, const size_t name_len, + const u16 trans_id, const u16 type, const u16 class, + u8 *const buf, size_t buf_len) { + off_t j = 0; /* current offset into buf */ + u16 t_; /* used by the macros */ + + APPEND16(trans_id); + APPEND16(0x0100); /* standard query, recusion needed */ + APPEND16(1); /* one question */ + APPEND16(0); /* no answers */ + APPEND16(0); /* no authority */ + APPEND16(0); /* no additional */ + + j = dnsname_to_labels(buf, buf_len, j, name, name_len, NULL); + if (j < 0) { + return (int)j; + } + + APPEND16(type); + APPEND16(class); + + return (int)j; + overflow: + return (-1); +} + +/* exported function */ +struct evdns_server_port * +evdns_add_server_port_with_base(struct event_base *base, evutil_socket_t socket, int flags, evdns_request_callback_fn_type cb, void *user_data) +{ + struct evdns_server_port *port; + if (flags) + return NULL; /* flags not yet implemented */ + if (!(port = mm_malloc(sizeof(struct evdns_server_port)))) + return NULL; + memset(port, 0, sizeof(struct evdns_server_port)); + + + port->socket = socket; + port->refcnt = 1; + port->choked = 0; + port->closing = 0; + port->user_callback = cb; + port->user_data = user_data; + port->pending_replies = NULL; + port->event_base = base; + + event_assign(&port->event, port->event_base, + port->socket, EV_READ | EV_PERSIST, + server_port_ready_callback, port); + if (event_add(&port->event, NULL) < 0) { + mm_free(port); + return NULL; + } + EVTHREAD_ALLOC_LOCK(port->lock, EVTHREAD_LOCKTYPE_RECURSIVE); + return port; +} + +struct evdns_server_port * +evdns_add_server_port(evutil_socket_t socket, int flags, evdns_request_callback_fn_type cb, void *user_data) +{ + return evdns_add_server_port_with_base(NULL, socket, flags, cb, user_data); +} + +/* exported function */ +void +evdns_close_server_port(struct evdns_server_port *port) +{ + EVDNS_LOCK(port); + if (--port->refcnt == 0) { + EVDNS_UNLOCK(port); + server_port_free(port); + } else { + port->closing = 1; + } +} + +/* exported function */ +int +evdns_server_request_add_reply(struct evdns_server_request *req_, int section, const char *name, int type, int class, int ttl, int datalen, int is_name, const char *data) +{ + struct server_request *req = TO_SERVER_REQUEST(req_); + struct server_reply_item **itemp, *item; + int *countp; + int result = -1; + + EVDNS_LOCK(req->port); + if (req->response) /* have we already answered? */ + goto done; + + switch (section) { + case EVDNS_ANSWER_SECTION: + itemp = &req->answer; + countp = &req->n_answer; + break; + case EVDNS_AUTHORITY_SECTION: + itemp = &req->authority; + countp = &req->n_authority; + break; + case EVDNS_ADDITIONAL_SECTION: + itemp = &req->additional; + countp = &req->n_additional; + break; + default: + goto done; + } + while (*itemp) { + itemp = &((*itemp)->next); + } + item = mm_malloc(sizeof(struct server_reply_item)); + if (!item) + goto done; + item->next = NULL; + if (!(item->name = mm_strdup(name))) { + mm_free(item); + goto done; + } + item->type = type; + item->dns_question_class = class; + item->ttl = ttl; + item->is_name = is_name != 0; + item->datalen = 0; + item->data = NULL; + if (data) { + if (item->is_name) { + if (!(item->data = mm_strdup(data))) { + mm_free(item->name); + mm_free(item); + goto done; + } + item->datalen = (u16)-1; + } else { + if (!(item->data = mm_malloc(datalen))) { + mm_free(item->name); + mm_free(item); + goto done; + } + item->datalen = datalen; + memcpy(item->data, data, datalen); + } + } + + *itemp = item; + ++(*countp); + result = 0; +done: + EVDNS_UNLOCK(req->port); + return result; +} + +/* exported function */ +int +evdns_server_request_add_a_reply(struct evdns_server_request *req, const char *name, int n, const void *addrs, int ttl) +{ + return evdns_server_request_add_reply( + req, EVDNS_ANSWER_SECTION, name, TYPE_A, CLASS_INET, + ttl, n*4, 0, addrs); +} + +/* exported function */ +int +evdns_server_request_add_aaaa_reply(struct evdns_server_request *req, const char *name, int n, const void *addrs, int ttl) +{ + return evdns_server_request_add_reply( + req, EVDNS_ANSWER_SECTION, name, TYPE_AAAA, CLASS_INET, + ttl, n*16, 0, addrs); +} + +/* exported function */ +int +evdns_server_request_add_ptr_reply(struct evdns_server_request *req, struct in_addr *in, const char *inaddr_name, const char *hostname, int ttl) +{ + u32 a; + char buf[32]; + if (in && inaddr_name) + return -1; + else if (!in && !inaddr_name) + return -1; + if (in) { + a = ntohl(in->s_addr); + evutil_snprintf(buf, sizeof(buf), "%d.%d.%d.%d.in-addr.arpa", + (int)(u8)((a )&0xff), + (int)(u8)((a>>8 )&0xff), + (int)(u8)((a>>16)&0xff), + (int)(u8)((a>>24)&0xff)); + inaddr_name = buf; + } + return evdns_server_request_add_reply( + req, EVDNS_ANSWER_SECTION, inaddr_name, TYPE_PTR, CLASS_INET, + ttl, -1, 1, hostname); +} + +/* exported function */ +int +evdns_server_request_add_cname_reply(struct evdns_server_request *req, const char *name, const char *cname, int ttl) +{ + return evdns_server_request_add_reply( + req, EVDNS_ANSWER_SECTION, name, TYPE_CNAME, CLASS_INET, + ttl, -1, 1, cname); +} + +/* exported function */ +void +evdns_server_request_set_flags(struct evdns_server_request *exreq, int flags) +{ + struct server_request *req = TO_SERVER_REQUEST(exreq); + req->base.flags &= ~(EVDNS_FLAGS_AA|EVDNS_FLAGS_RD); + req->base.flags |= flags; +} + +static int +evdns_server_request_format_response(struct server_request *req, int err) +{ + unsigned char buf[1500]; + size_t buf_len = sizeof(buf); + off_t j = 0, r; + u16 t_; + u32 t32_; + int i; + u16 flags; + struct dnslabel_table table; + + if (err < 0 || err > 15) return -1; + + /* Set response bit and error code; copy OPCODE and RD fields from + * question; copy RA and AA if set by caller. */ + flags = req->base.flags; + flags |= (0x8000 | err); + + dnslabel_table_init(&table); + APPEND16(req->trans_id); + APPEND16(flags); + APPEND16(req->base.nquestions); + APPEND16(req->n_answer); + APPEND16(req->n_authority); + APPEND16(req->n_additional); + + /* Add questions. */ + for (i=0; i < req->base.nquestions; ++i) { + const char *s = req->base.questions[i]->name; + j = dnsname_to_labels(buf, buf_len, j, s, strlen(s), &table); + if (j < 0) { + dnslabel_clear(&table); + return (int) j; + } + APPEND16(req->base.questions[i]->type); + APPEND16(req->base.questions[i]->dns_question_class); + } + + /* Add answer, authority, and additional sections. */ + for (i=0; i<3; ++i) { + struct server_reply_item *item; + if (i==0) + item = req->answer; + else if (i==1) + item = req->authority; + else + item = req->additional; + while (item) { + r = dnsname_to_labels(buf, buf_len, j, item->name, strlen(item->name), &table); + if (r < 0) + goto overflow; + j = r; + + APPEND16(item->type); + APPEND16(item->dns_question_class); + APPEND32(item->ttl); + if (item->is_name) { + off_t len_idx = j, name_start; + j += 2; + name_start = j; + r = dnsname_to_labels(buf, buf_len, j, item->data, strlen(item->data), &table); + if (r < 0) + goto overflow; + j = r; + t_ = htons( (short) (j-name_start) ); + memcpy(buf+len_idx, &t_, 2); + } else { + APPEND16(item->datalen); + if (j+item->datalen > (off_t)buf_len) + goto overflow; + memcpy(buf+j, item->data, item->datalen); + j += item->datalen; + } + item = item->next; + } + } + + if (j > 512) { +overflow: + j = 512; + buf[2] |= 0x02; /* set the truncated bit. */ + } + + req->response_len = j; + + if (!(req->response = mm_malloc(req->response_len))) { + server_request_free_answers(req); + dnslabel_clear(&table); + return (-1); + } + memcpy(req->response, buf, req->response_len); + server_request_free_answers(req); + dnslabel_clear(&table); + return (0); +} + +/* exported function */ +int +evdns_server_request_respond(struct evdns_server_request *req_, int err) +{ + struct server_request *req = TO_SERVER_REQUEST(req_); + struct evdns_server_port *port = req->port; + int r = -1; + + EVDNS_LOCK(port); + if (!req->response) { + if ((r = evdns_server_request_format_response(req, err))<0) + goto done; + } + + r = sendto(port->socket, req->response, (int)req->response_len, 0, + (struct sockaddr*) &req->addr, (ev_socklen_t)req->addrlen); + if (r<0) { + int sock_err = evutil_socket_geterror(port->socket); + if (EVUTIL_ERR_RW_RETRIABLE(sock_err)) + goto done; + + if (port->pending_replies) { + req->prev_pending = port->pending_replies->prev_pending; + req->next_pending = port->pending_replies; + req->prev_pending->next_pending = + req->next_pending->prev_pending = req; + } else { + req->prev_pending = req->next_pending = req; + port->pending_replies = req; + port->choked = 1; + + (void) event_del(&port->event); + event_assign(&port->event, port->event_base, port->socket, (port->closing?0:EV_READ) | EV_WRITE | EV_PERSIST, server_port_ready_callback, port); + + if (event_add(&port->event, NULL) < 0) { + log(EVDNS_LOG_WARN, "Error from libevent when adding event for DNS server"); + } + + } + + r = 1; + goto done; + } + if (server_request_free(req)) { + r = 0; + goto done; + } + + if (port->pending_replies) + server_port_flush(port); + + r = 0; +done: + EVDNS_UNLOCK(port); + return r; +} + +/* Free all storage held by RRs in req. */ +static void +server_request_free_answers(struct server_request *req) +{ + struct server_reply_item *victim, *next, **list; + int i; + for (i = 0; i < 3; ++i) { + if (i==0) + list = &req->answer; + else if (i==1) + list = &req->authority; + else + list = &req->additional; + + victim = *list; + while (victim) { + next = victim->next; + mm_free(victim->name); + if (victim->data) + mm_free(victim->data); + mm_free(victim); + victim = next; + } + *list = NULL; + } +} + +/* Free all storage held by req, and remove links to it. */ +/* return true iff we just wound up freeing the server_port. */ +static int +server_request_free(struct server_request *req) +{ + int i, rc=1, lock=0; + if (req->base.questions) { + for (i = 0; i < req->base.nquestions; ++i) + mm_free(req->base.questions[i]); + mm_free(req->base.questions); + } + + if (req->port) { + EVDNS_LOCK(req->port); + lock=1; + if (req->port->pending_replies == req) { + if (req->next_pending && req->next_pending != req) + req->port->pending_replies = req->next_pending; + else + req->port->pending_replies = NULL; + } + rc = --req->port->refcnt; + } + + if (req->response) { + mm_free(req->response); + } + + server_request_free_answers(req); + + if (req->next_pending && req->next_pending != req) { + req->next_pending->prev_pending = req->prev_pending; + req->prev_pending->next_pending = req->next_pending; + } + + if (rc == 0) { + EVDNS_UNLOCK(req->port); /* ????? nickm */ + server_port_free(req->port); + mm_free(req); + return (1); + } + if (lock) + EVDNS_UNLOCK(req->port); + mm_free(req); + return (0); +} + +/* Free all storage held by an evdns_server_port. Only called when */ +static void +server_port_free(struct evdns_server_port *port) +{ + EVUTIL_ASSERT(port); + EVUTIL_ASSERT(!port->refcnt); + EVUTIL_ASSERT(!port->pending_replies); + if (port->socket > 0) { + evutil_closesocket(port->socket); + port->socket = -1; + } + (void) event_del(&port->event); + event_debug_unassign(&port->event); + EVTHREAD_FREE_LOCK(port->lock, EVTHREAD_LOCKTYPE_RECURSIVE); + mm_free(port); +} + +/* exported function */ +int +evdns_server_request_drop(struct evdns_server_request *req_) +{ + struct server_request *req = TO_SERVER_REQUEST(req_); + server_request_free(req); + return 0; +} + +/* exported function */ +int +evdns_server_request_get_requesting_addr(struct evdns_server_request *req_, struct sockaddr *sa, int addr_len) +{ + struct server_request *req = TO_SERVER_REQUEST(req_); + if (addr_len < (int)req->addrlen) + return -1; + memcpy(sa, &(req->addr), req->addrlen); + return req->addrlen; +} + +#undef APPEND16 +#undef APPEND32 + +/* this is a libevent callback function which is called when a request */ +/* has timed out. */ +static void +evdns_request_timeout_callback(evutil_socket_t fd, short events, void *arg) { + struct request *const req = (struct request *) arg; + struct evdns_base *base = req->base; + + (void) fd; + (void) events; + + log(EVDNS_LOG_DEBUG, "Request %p timed out", arg); + EVDNS_LOCK(base); + + if (req->tx_count >= req->base->global_max_retransmits) { + struct nameserver *ns = req->ns; + /* this request has failed */ + log(EVDNS_LOG_DEBUG, "Giving up on request %p; tx_count==%d", + arg, req->tx_count); + reply_schedule_callback(req, 0, DNS_ERR_TIMEOUT, NULL); + + request_finished(req, &REQ_HEAD(req->base, req->trans_id), 1); + nameserver_failed(ns, "request timed out."); + } else { + /* retransmit it */ + log(EVDNS_LOG_DEBUG, "Retransmitting request %p; tx_count==%d", + arg, req->tx_count); + (void) evtimer_del(&req->timeout_event); + request_swap_ns(req, nameserver_pick(base)); + evdns_request_transmit(req); + + req->ns->timedout++; + if (req->ns->timedout > req->base->global_max_nameserver_timeout) { + req->ns->timedout = 0; + nameserver_failed(req->ns, "request timed out."); + } + } + + EVDNS_UNLOCK(base); +} + +/* try to send a request to a given server. */ +/* */ +/* return: */ +/* 0 ok */ +/* 1 temporary failure */ +/* 2 other failure */ +static int +evdns_request_transmit_to(struct request *req, struct nameserver *server) { + int r; + ASSERT_LOCKED(req->base); + ASSERT_VALID_REQUEST(req); + + if (server->requests_inflight == 1 && + req->base->disable_when_inactive && + event_add(&server->event, NULL) < 0) { + return 1; + } + + r = sendto(server->socket, (void*)req->request, req->request_len, 0, + (struct sockaddr *)&server->address, server->addrlen); + if (r < 0) { + int err = evutil_socket_geterror(server->socket); + if (EVUTIL_ERR_RW_RETRIABLE(err)) + return 1; + nameserver_failed(req->ns, evutil_socket_error_to_string(err)); + return 2; + } else if (r != (int)req->request_len) { + return 1; /* short write */ + } else { + return 0; + } +} + +/* try to send a request, updating the fields of the request */ +/* as needed */ +/* */ +/* return: */ +/* 0 ok */ +/* 1 failed */ +static int +evdns_request_transmit(struct request *req) { + int retcode = 0, r; + + ASSERT_LOCKED(req->base); + ASSERT_VALID_REQUEST(req); + /* if we fail to send this packet then this flag marks it */ + /* for evdns_transmit */ + req->transmit_me = 1; + EVUTIL_ASSERT(req->trans_id != 0xffff); + + if (!req->ns) + { + /* unable to transmit request if no nameservers */ + return 1; + } + + if (req->ns->choked) { + /* don't bother trying to write to a socket */ + /* which we have had EAGAIN from */ + return 1; + } + + r = evdns_request_transmit_to(req, req->ns); + switch (r) { + case 1: + /* temp failure */ + req->ns->choked = 1; + nameserver_write_waiting(req->ns, 1); + return 1; + case 2: + /* failed to transmit the request entirely. */ + retcode = 1; + /* fall through: we'll set a timeout, which will time out, + * and make us retransmit the request anyway. */ + default: + /* all ok */ + log(EVDNS_LOG_DEBUG, + "Setting timeout for request %p, sent to nameserver %p", req, req->ns); + if (evtimer_add(&req->timeout_event, &req->base->global_timeout) < 0) { + log(EVDNS_LOG_WARN, + "Error from libevent when adding timer for request %p", + req); + /* ???? Do more? */ + } + req->tx_count++; + req->transmit_me = 0; + return retcode; + } +} + +static void +nameserver_probe_callback(int result, char type, int count, int ttl, void *addresses, void *arg) { + struct nameserver *const ns = (struct nameserver *) arg; + (void) type; + (void) count; + (void) ttl; + (void) addresses; + + if (result == DNS_ERR_CANCEL) { + /* We canceled this request because the nameserver came up + * for some other reason. Do not change our opinion about + * the nameserver. */ + return; + } + + EVDNS_LOCK(ns->base); + ns->probe_request = NULL; + if (result == DNS_ERR_NONE || result == DNS_ERR_NOTEXIST) { + /* this is a good reply */ + nameserver_up(ns); + } else { + nameserver_probe_failed(ns); + } + EVDNS_UNLOCK(ns->base); +} + +static void +nameserver_send_probe(struct nameserver *const ns) { + struct evdns_request *handle; + struct request *req; + char addrbuf[128]; + /* here we need to send a probe to a given nameserver */ + /* in the hope that it is up now. */ + + ASSERT_LOCKED(ns->base); + log(EVDNS_LOG_DEBUG, "Sending probe to %s", + evutil_format_sockaddr_port_( + (struct sockaddr *)&ns->address, + addrbuf, sizeof(addrbuf))); + handle = mm_calloc(1, sizeof(*handle)); + if (!handle) return; + req = request_new(ns->base, handle, TYPE_A, "google.com", DNS_QUERY_NO_SEARCH, nameserver_probe_callback, ns); + if (!req) { + mm_free(handle); + return; + } + ns->probe_request = handle; + /* we force this into the inflight queue no matter what */ + request_trans_id_set(req, transaction_id_pick(ns->base)); + req->ns = ns; + request_submit(req); +} + +/* returns: */ +/* 0 didn't try to transmit anything */ +/* 1 tried to transmit something */ +static int +evdns_transmit(struct evdns_base *base) { + char did_try_to_transmit = 0; + int i; + + ASSERT_LOCKED(base); + for (i = 0; i < base->n_req_heads; ++i) { + if (base->req_heads[i]) { + struct request *const started_at = base->req_heads[i], *req = started_at; + /* first transmit all the requests which are currently waiting */ + do { + if (req->transmit_me) { + did_try_to_transmit = 1; + evdns_request_transmit(req); + } + + req = req->next; + } while (req != started_at); + } + } + + return did_try_to_transmit; +} + +/* exported function */ +int +evdns_base_count_nameservers(struct evdns_base *base) +{ + const struct nameserver *server; + int n = 0; + + EVDNS_LOCK(base); + server = base->server_head; + if (!server) + goto done; + do { + ++n; + server = server->next; + } while (server != base->server_head); +done: + EVDNS_UNLOCK(base); + return n; +} + +int +evdns_count_nameservers(void) +{ + return evdns_base_count_nameservers(current_base); +} + +/* exported function */ +int +evdns_base_clear_nameservers_and_suspend(struct evdns_base *base) +{ + struct nameserver *server, *started_at; + int i; + + EVDNS_LOCK(base); + server = base->server_head; + started_at = base->server_head; + if (!server) { + EVDNS_UNLOCK(base); + return 0; + } + while (1) { + struct nameserver *next = server->next; + (void) event_del(&server->event); + if (evtimer_initialized(&server->timeout_event)) + (void) evtimer_del(&server->timeout_event); + if (server->probe_request) { + evdns_cancel_request(server->base, server->probe_request); + server->probe_request = NULL; + } + if (server->socket >= 0) + evutil_closesocket(server->socket); + mm_free(server); + if (next == started_at) + break; + server = next; + } + base->server_head = NULL; + base->global_good_nameservers = 0; + + for (i = 0; i < base->n_req_heads; ++i) { + struct request *req, *req_started_at; + req = req_started_at = base->req_heads[i]; + while (req) { + struct request *next = req->next; + req->tx_count = req->reissue_count = 0; + req->ns = NULL; + /* ???? What to do about searches? */ + (void) evtimer_del(&req->timeout_event); + req->trans_id = 0; + req->transmit_me = 0; + + base->global_requests_waiting++; + evdns_request_insert(req, &base->req_waiting_head); + /* We want to insert these suspended elements at the front of + * the waiting queue, since they were pending before any of + * the waiting entries were added. This is a circular list, + * so we can just shift the start back by one.*/ + base->req_waiting_head = base->req_waiting_head->prev; + + if (next == req_started_at) + break; + req = next; + } + base->req_heads[i] = NULL; + } + + base->global_requests_inflight = 0; + + EVDNS_UNLOCK(base); + return 0; +} + +int +evdns_clear_nameservers_and_suspend(void) +{ + return evdns_base_clear_nameservers_and_suspend(current_base); +} + + +/* exported function */ +int +evdns_base_resume(struct evdns_base *base) +{ + EVDNS_LOCK(base); + evdns_requests_pump_waiting_queue(base); + EVDNS_UNLOCK(base); + + return 0; +} + +int +evdns_resume(void) +{ + return evdns_base_resume(current_base); +} + +static int +evdns_nameserver_add_impl_(struct evdns_base *base, const struct sockaddr *address, int addrlen) { + /* first check to see if we already have this nameserver */ + + const struct nameserver *server = base->server_head, *const started_at = base->server_head; + struct nameserver *ns; + int err = 0; + char addrbuf[128]; + + ASSERT_LOCKED(base); + if (server) { + do { + if (!evutil_sockaddr_cmp((struct sockaddr*)&server->address, address, 1)) return 3; + server = server->next; + } while (server != started_at); + } + if (addrlen > (int)sizeof(ns->address)) { + log(EVDNS_LOG_DEBUG, "Addrlen %d too long.", (int)addrlen); + return 2; + } + + ns = (struct nameserver *) mm_malloc(sizeof(struct nameserver)); + if (!ns) return -1; + + memset(ns, 0, sizeof(struct nameserver)); + ns->base = base; + + evtimer_assign(&ns->timeout_event, ns->base->event_base, nameserver_prod_callback, ns); + + ns->socket = evutil_socket_(address->sa_family, + SOCK_DGRAM|EVUTIL_SOCK_NONBLOCK|EVUTIL_SOCK_CLOEXEC, 0); + if (ns->socket < 0) { err = 1; goto out1; } + + if (base->global_outgoing_addrlen && + !evutil_sockaddr_is_loopback_(address)) { + if (bind(ns->socket, + (struct sockaddr*)&base->global_outgoing_address, + base->global_outgoing_addrlen) < 0) { + log(EVDNS_LOG_WARN,"Couldn't bind to outgoing address"); + err = 2; + goto out2; + } + } + + memcpy(&ns->address, address, addrlen); + ns->addrlen = addrlen; + ns->state = 1; + event_assign(&ns->event, ns->base->event_base, ns->socket, + EV_READ | EV_PERSIST, nameserver_ready_callback, ns); + if (!base->disable_when_inactive && event_add(&ns->event, NULL) < 0) { + err = 2; + goto out2; + } + + log(EVDNS_LOG_DEBUG, "Added nameserver %s as %p", + evutil_format_sockaddr_port_(address, addrbuf, sizeof(addrbuf)), ns); + + /* insert this nameserver into the list of them */ + if (!base->server_head) { + ns->next = ns->prev = ns; + base->server_head = ns; + } else { + ns->next = base->server_head->next; + ns->prev = base->server_head; + base->server_head->next = ns; + ns->next->prev = ns; + } + + base->global_good_nameservers++; + + return 0; + +out2: + evutil_closesocket(ns->socket); +out1: + event_debug_unassign(&ns->event); + mm_free(ns); + log(EVDNS_LOG_WARN, "Unable to add nameserver %s: error %d", + evutil_format_sockaddr_port_(address, addrbuf, sizeof(addrbuf)), err); + return err; +} + +/* exported function */ +int +evdns_base_nameserver_add(struct evdns_base *base, unsigned long int address) +{ + struct sockaddr_in sin; + int res; + memset(&sin, 0, sizeof(sin)); + sin.sin_addr.s_addr = address; + sin.sin_port = htons(53); + sin.sin_family = AF_INET; + EVDNS_LOCK(base); + res = evdns_nameserver_add_impl_(base, (struct sockaddr*)&sin, sizeof(sin)); + EVDNS_UNLOCK(base); + return res; +} + +int +evdns_nameserver_add(unsigned long int address) { + if (!current_base) + current_base = evdns_base_new(NULL, 0); + return evdns_base_nameserver_add(current_base, address); +} + +static void +sockaddr_setport(struct sockaddr *sa, ev_uint16_t port) +{ + if (sa->sa_family == AF_INET) { + ((struct sockaddr_in *)sa)->sin_port = htons(port); + } else if (sa->sa_family == AF_INET6) { + ((struct sockaddr_in6 *)sa)->sin6_port = htons(port); + } +} + +static ev_uint16_t +sockaddr_getport(struct sockaddr *sa) +{ + if (sa->sa_family == AF_INET) { + return ntohs(((struct sockaddr_in *)sa)->sin_port); + } else if (sa->sa_family == AF_INET6) { + return ntohs(((struct sockaddr_in6 *)sa)->sin6_port); + } else { + return 0; + } +} + +/* exported function */ +int +evdns_base_nameserver_ip_add(struct evdns_base *base, const char *ip_as_string) { + struct sockaddr_storage ss; + struct sockaddr *sa; + int len = sizeof(ss); + int res; + if (evutil_parse_sockaddr_port(ip_as_string, (struct sockaddr *)&ss, + &len)) { + log(EVDNS_LOG_WARN, "Unable to parse nameserver address %s", + ip_as_string); + return 4; + } + sa = (struct sockaddr *) &ss; + if (sockaddr_getport(sa) == 0) + sockaddr_setport(sa, 53); + + EVDNS_LOCK(base); + res = evdns_nameserver_add_impl_(base, sa, len); + EVDNS_UNLOCK(base); + return res; +} + +int +evdns_nameserver_ip_add(const char *ip_as_string) { + if (!current_base) + current_base = evdns_base_new(NULL, 0); + return evdns_base_nameserver_ip_add(current_base, ip_as_string); +} + +int +evdns_base_nameserver_sockaddr_add(struct evdns_base *base, + const struct sockaddr *sa, ev_socklen_t len, unsigned flags) +{ + int res; + EVUTIL_ASSERT(base); + EVDNS_LOCK(base); + res = evdns_nameserver_add_impl_(base, sa, len); + EVDNS_UNLOCK(base); + return res; +} + +int +evdns_base_get_nameserver_addr(struct evdns_base *base, int idx, + struct sockaddr *sa, ev_socklen_t len) +{ + int result = -1; + int i; + struct nameserver *server; + EVDNS_LOCK(base); + server = base->server_head; + for (i = 0; i < idx && server; ++i, server = server->next) { + if (server->next == base->server_head) + goto done; + } + if (! server) + goto done; + + if (server->addrlen > len) { + result = (int) server->addrlen; + goto done; + } + + memcpy(sa, &server->address, server->addrlen); + result = (int) server->addrlen; +done: + EVDNS_UNLOCK(base); + return result; +} + +/* remove from the queue */ +static void +evdns_request_remove(struct request *req, struct request **head) +{ + ASSERT_LOCKED(req->base); + ASSERT_VALID_REQUEST(req); + +#if 0 + { + struct request *ptr; + int found = 0; + EVUTIL_ASSERT(*head != NULL); + + ptr = *head; + do { + if (ptr == req) { + found = 1; + break; + } + ptr = ptr->next; + } while (ptr != *head); + EVUTIL_ASSERT(found); + + EVUTIL_ASSERT(req->next); + } +#endif + + if (req->next == req) { + /* only item in the list */ + *head = NULL; + } else { + req->next->prev = req->prev; + req->prev->next = req->next; + if (*head == req) *head = req->next; + } + req->next = req->prev = NULL; +} + +/* insert into the tail of the queue */ +static void +evdns_request_insert(struct request *req, struct request **head) { + ASSERT_LOCKED(req->base); + ASSERT_VALID_REQUEST(req); + if (!*head) { + *head = req; + req->next = req->prev = req; + return; + } + + req->prev = (*head)->prev; + req->prev->next = req; + req->next = *head; + (*head)->prev = req; +} + +static int +string_num_dots(const char *s) { + int count = 0; + while ((s = strchr(s, '.'))) { + s++; + count++; + } + return count; +} + +static struct request * +request_new(struct evdns_base *base, struct evdns_request *handle, int type, + const char *name, int flags, evdns_callback_type callback, + void *user_ptr) { + + const char issuing_now = + (base->global_requests_inflight < base->global_max_requests_inflight) ? 1 : 0; + + const size_t name_len = strlen(name); + const size_t request_max_len = evdns_request_len(name_len); + const u16 trans_id = issuing_now ? transaction_id_pick(base) : 0xffff; + /* the request data is alloced in a single block with the header */ + struct request *const req = + mm_malloc(sizeof(struct request) + request_max_len); + int rlen; + char namebuf[256]; + (void) flags; + + ASSERT_LOCKED(base); + + if (!req) return NULL; + + if (name_len >= sizeof(namebuf)) { + mm_free(req); + return NULL; + } + + memset(req, 0, sizeof(struct request)); + req->base = base; + + evtimer_assign(&req->timeout_event, req->base->event_base, evdns_request_timeout_callback, req); + + if (base->global_randomize_case) { + unsigned i; + char randbits[(sizeof(namebuf)+7)/8]; + strlcpy(namebuf, name, sizeof(namebuf)); + evutil_secure_rng_get_bytes(randbits, (name_len+7)/8); + for (i = 0; i < name_len; ++i) { + if (EVUTIL_ISALPHA_(namebuf[i])) { + if ((randbits[i >> 3] & (1<<(i & 7)))) + namebuf[i] |= 0x20; + else + namebuf[i] &= ~0x20; + } + } + name = namebuf; + } + + /* request data lives just after the header */ + req->request = ((u8 *) req) + sizeof(struct request); + /* denotes that the request data shouldn't be free()ed */ + req->request_appended = 1; + rlen = evdns_request_data_build(name, name_len, trans_id, + type, CLASS_INET, req->request, request_max_len); + if (rlen < 0) + goto err1; + + req->request_len = rlen; + req->trans_id = trans_id; + req->tx_count = 0; + req->request_type = type; + req->user_pointer = user_ptr; + req->user_callback = callback; + req->ns = issuing_now ? nameserver_pick(base) : NULL; + req->next = req->prev = NULL; + req->handle = handle; + if (handle) { + handle->current_req = req; + handle->base = base; + } + + return req; +err1: + mm_free(req); + return NULL; +} + +static void +request_submit(struct request *const req) { + struct evdns_base *base = req->base; + ASSERT_LOCKED(base); + ASSERT_VALID_REQUEST(req); + if (req->ns) { + /* if it has a nameserver assigned then this is going */ + /* straight into the inflight queue */ + evdns_request_insert(req, &REQ_HEAD(base, req->trans_id)); + + base->global_requests_inflight++; + req->ns->requests_inflight++; + + evdns_request_transmit(req); + } else { + evdns_request_insert(req, &base->req_waiting_head); + base->global_requests_waiting++; + } +} + +/* exported function */ +void +evdns_cancel_request(struct evdns_base *base, struct evdns_request *handle) +{ + struct request *req; + + if (!handle->current_req) + return; + + if (!base) { + /* This redundancy is silly; can we fix it? (Not for 2.0) XXXX */ + base = handle->base; + if (!base) + base = handle->current_req->base; + } + + EVDNS_LOCK(base); + if (handle->pending_cb) { + EVDNS_UNLOCK(base); + return; + } + + req = handle->current_req; + ASSERT_VALID_REQUEST(req); + + reply_schedule_callback(req, 0, DNS_ERR_CANCEL, NULL); + if (req->ns) { + /* remove from inflight queue */ + request_finished(req, &REQ_HEAD(base, req->trans_id), 1); + } else { + /* remove from global_waiting head */ + request_finished(req, &base->req_waiting_head, 1); + } + EVDNS_UNLOCK(base); +} + +/* exported function */ +struct evdns_request * +evdns_base_resolve_ipv4(struct evdns_base *base, const char *name, int flags, + evdns_callback_type callback, void *ptr) { + struct evdns_request *handle; + struct request *req; + log(EVDNS_LOG_DEBUG, "Resolve requested for %s", name); + handle = mm_calloc(1, sizeof(*handle)); + if (handle == NULL) + return NULL; + EVDNS_LOCK(base); + if (flags & DNS_QUERY_NO_SEARCH) { + req = + request_new(base, handle, TYPE_A, name, flags, + callback, ptr); + if (req) + request_submit(req); + } else { + search_request_new(base, handle, TYPE_A, name, flags, + callback, ptr); + } + if (handle->current_req == NULL) { + mm_free(handle); + handle = NULL; + } + EVDNS_UNLOCK(base); + return handle; +} + +int evdns_resolve_ipv4(const char *name, int flags, + evdns_callback_type callback, void *ptr) +{ + return evdns_base_resolve_ipv4(current_base, name, flags, callback, ptr) + ? 0 : -1; +} + + +/* exported function */ +struct evdns_request * +evdns_base_resolve_ipv6(struct evdns_base *base, + const char *name, int flags, + evdns_callback_type callback, void *ptr) +{ + struct evdns_request *handle; + struct request *req; + log(EVDNS_LOG_DEBUG, "Resolve requested for %s", name); + handle = mm_calloc(1, sizeof(*handle)); + if (handle == NULL) + return NULL; + EVDNS_LOCK(base); + if (flags & DNS_QUERY_NO_SEARCH) { + req = request_new(base, handle, TYPE_AAAA, name, flags, + callback, ptr); + if (req) + request_submit(req); + } else { + search_request_new(base, handle, TYPE_AAAA, name, flags, + callback, ptr); + } + if (handle->current_req == NULL) { + mm_free(handle); + handle = NULL; + } + EVDNS_UNLOCK(base); + return handle; +} + +int evdns_resolve_ipv6(const char *name, int flags, + evdns_callback_type callback, void *ptr) { + return evdns_base_resolve_ipv6(current_base, name, flags, callback, ptr) + ? 0 : -1; +} + +struct evdns_request * +evdns_base_resolve_reverse(struct evdns_base *base, const struct in_addr *in, int flags, evdns_callback_type callback, void *ptr) { + char buf[32]; + struct evdns_request *handle; + struct request *req; + u32 a; + EVUTIL_ASSERT(in); + a = ntohl(in->s_addr); + evutil_snprintf(buf, sizeof(buf), "%d.%d.%d.%d.in-addr.arpa", + (int)(u8)((a )&0xff), + (int)(u8)((a>>8 )&0xff), + (int)(u8)((a>>16)&0xff), + (int)(u8)((a>>24)&0xff)); + handle = mm_calloc(1, sizeof(*handle)); + if (handle == NULL) + return NULL; + log(EVDNS_LOG_DEBUG, "Resolve requested for %s (reverse)", buf); + EVDNS_LOCK(base); + req = request_new(base, handle, TYPE_PTR, buf, flags, callback, ptr); + if (req) + request_submit(req); + if (handle->current_req == NULL) { + mm_free(handle); + handle = NULL; + } + EVDNS_UNLOCK(base); + return (handle); +} + +int evdns_resolve_reverse(const struct in_addr *in, int flags, evdns_callback_type callback, void *ptr) { + return evdns_base_resolve_reverse(current_base, in, flags, callback, ptr) + ? 0 : -1; +} + +struct evdns_request * +evdns_base_resolve_reverse_ipv6(struct evdns_base *base, const struct in6_addr *in, int flags, evdns_callback_type callback, void *ptr) { + /* 32 nybbles, 32 periods, "ip6.arpa", NUL. */ + char buf[73]; + char *cp; + struct evdns_request *handle; + struct request *req; + int i; + EVUTIL_ASSERT(in); + cp = buf; + for (i=15; i >= 0; --i) { + u8 byte = in->s6_addr[i]; + *cp++ = "0123456789abcdef"[byte & 0x0f]; + *cp++ = '.'; + *cp++ = "0123456789abcdef"[byte >> 4]; + *cp++ = '.'; + } + EVUTIL_ASSERT(cp + strlen("ip6.arpa") < buf+sizeof(buf)); + memcpy(cp, "ip6.arpa", strlen("ip6.arpa")+1); + handle = mm_calloc(1, sizeof(*handle)); + if (handle == NULL) + return NULL; + log(EVDNS_LOG_DEBUG, "Resolve requested for %s (reverse)", buf); + EVDNS_LOCK(base); + req = request_new(base, handle, TYPE_PTR, buf, flags, callback, ptr); + if (req) + request_submit(req); + if (handle->current_req == NULL) { + mm_free(handle); + handle = NULL; + } + EVDNS_UNLOCK(base); + return (handle); +} + +int evdns_resolve_reverse_ipv6(const struct in6_addr *in, int flags, evdns_callback_type callback, void *ptr) { + return evdns_base_resolve_reverse_ipv6(current_base, in, flags, callback, ptr) + ? 0 : -1; +} + +/* ================================================================= */ +/* Search support */ +/* */ +/* the libc resolver has support for searching a number of domains */ +/* to find a name. If nothing else then it takes the single domain */ +/* from the gethostname() call. */ +/* */ +/* It can also be configured via the domain and search options in a */ +/* resolv.conf. */ +/* */ +/* The ndots option controls how many dots it takes for the resolver */ +/* to decide that a name is non-local and so try a raw lookup first. */ + +struct search_domain { + int len; + struct search_domain *next; + /* the text string is appended to this structure */ +}; + +struct search_state { + int refcount; + int ndots; + int num_domains; + struct search_domain *head; +}; + +static void +search_state_decref(struct search_state *const state) { + if (!state) return; + state->refcount--; + if (!state->refcount) { + struct search_domain *next, *dom; + for (dom = state->head; dom; dom = next) { + next = dom->next; + mm_free(dom); + } + mm_free(state); + } +} + +static struct search_state * +search_state_new(void) { + struct search_state *state = (struct search_state *) mm_malloc(sizeof(struct search_state)); + if (!state) return NULL; + memset(state, 0, sizeof(struct search_state)); + state->refcount = 1; + state->ndots = 1; + + return state; +} + +static void +search_postfix_clear(struct evdns_base *base) { + search_state_decref(base->global_search_state); + + base->global_search_state = search_state_new(); +} + +/* exported function */ +void +evdns_base_search_clear(struct evdns_base *base) +{ + EVDNS_LOCK(base); + search_postfix_clear(base); + EVDNS_UNLOCK(base); +} + +void +evdns_search_clear(void) { + evdns_base_search_clear(current_base); +} + +static void +search_postfix_add(struct evdns_base *base, const char *domain) { + size_t domain_len; + struct search_domain *sdomain; + while (domain[0] == '.') domain++; + domain_len = strlen(domain); + + ASSERT_LOCKED(base); + if (!base->global_search_state) base->global_search_state = search_state_new(); + if (!base->global_search_state) return; + base->global_search_state->num_domains++; + + sdomain = (struct search_domain *) mm_malloc(sizeof(struct search_domain) + domain_len); + if (!sdomain) return; + memcpy( ((u8 *) sdomain) + sizeof(struct search_domain), domain, domain_len); + sdomain->next = base->global_search_state->head; + sdomain->len = (int) domain_len; + + base->global_search_state->head = sdomain; +} + +/* reverse the order of members in the postfix list. This is needed because, */ +/* when parsing resolv.conf we push elements in the wrong order */ +static void +search_reverse(struct evdns_base *base) { + struct search_domain *cur, *prev = NULL, *next; + ASSERT_LOCKED(base); + cur = base->global_search_state->head; + while (cur) { + next = cur->next; + cur->next = prev; + prev = cur; + cur = next; + } + + base->global_search_state->head = prev; +} + +/* exported function */ +void +evdns_base_search_add(struct evdns_base *base, const char *domain) { + EVDNS_LOCK(base); + search_postfix_add(base, domain); + EVDNS_UNLOCK(base); +} +void +evdns_search_add(const char *domain) { + evdns_base_search_add(current_base, domain); +} + +/* exported function */ +void +evdns_base_search_ndots_set(struct evdns_base *base, const int ndots) { + EVDNS_LOCK(base); + if (!base->global_search_state) base->global_search_state = search_state_new(); + if (base->global_search_state) + base->global_search_state->ndots = ndots; + EVDNS_UNLOCK(base); +} +void +evdns_search_ndots_set(const int ndots) { + evdns_base_search_ndots_set(current_base, ndots); +} + +static void +search_set_from_hostname(struct evdns_base *base) { + char hostname[HOST_NAME_MAX + 1], *domainname; + + ASSERT_LOCKED(base); + search_postfix_clear(base); + if (gethostname(hostname, sizeof(hostname))) return; + domainname = strchr(hostname, '.'); + if (!domainname) return; + search_postfix_add(base, domainname); +} + +/* warning: returns malloced string */ +static char * +search_make_new(const struct search_state *const state, int n, const char *const base_name) { + const size_t base_len = strlen(base_name); + char need_to_append_dot; + struct search_domain *dom; + + if (!base_len) return NULL; + need_to_append_dot = base_name[base_len - 1] == '.' ? 0 : 1; + + for (dom = state->head; dom; dom = dom->next) { + if (!n--) { + /* this is the postfix we want */ + /* the actual postfix string is kept at the end of the structure */ + const u8 *const postfix = ((u8 *) dom) + sizeof(struct search_domain); + const int postfix_len = dom->len; + char *const newname = (char *) mm_malloc(base_len + need_to_append_dot + postfix_len + 1); + if (!newname) return NULL; + memcpy(newname, base_name, base_len); + if (need_to_append_dot) newname[base_len] = '.'; + memcpy(newname + base_len + need_to_append_dot, postfix, postfix_len); + newname[base_len + need_to_append_dot + postfix_len] = 0; + return newname; + } + } + + /* we ran off the end of the list and still didn't find the requested string */ + EVUTIL_ASSERT(0); + return NULL; /* unreachable; stops warnings in some compilers. */ +} + +static struct request * +search_request_new(struct evdns_base *base, struct evdns_request *handle, + int type, const char *const name, int flags, + evdns_callback_type user_callback, void *user_arg) { + ASSERT_LOCKED(base); + EVUTIL_ASSERT(type == TYPE_A || type == TYPE_AAAA); + EVUTIL_ASSERT(handle->current_req == NULL); + if ( ((flags & DNS_QUERY_NO_SEARCH) == 0) && + base->global_search_state && + base->global_search_state->num_domains) { + /* we have some domains to search */ + struct request *req; + if (string_num_dots(name) >= base->global_search_state->ndots) { + req = request_new(base, handle, type, name, flags, user_callback, user_arg); + if (!req) return NULL; + handle->search_index = -1; + } else { + char *const new_name = search_make_new(base->global_search_state, 0, name); + if (!new_name) return NULL; + req = request_new(base, handle, type, new_name, flags, user_callback, user_arg); + mm_free(new_name); + if (!req) return NULL; + handle->search_index = 0; + } + EVUTIL_ASSERT(handle->search_origname == NULL); + handle->search_origname = mm_strdup(name); + if (handle->search_origname == NULL) { + /* XXX Should we dealloc req? If yes, how? */ + if (req) + mm_free(req); + return NULL; + } + handle->search_state = base->global_search_state; + handle->search_flags = flags; + base->global_search_state->refcount++; + request_submit(req); + return req; + } else { + struct request *const req = request_new(base, handle, type, name, flags, user_callback, user_arg); + if (!req) return NULL; + request_submit(req); + return req; + } +} + +/* this is called when a request has failed to find a name. We need to check */ +/* if it is part of a search and, if so, try the next name in the list */ +/* returns: */ +/* 0 another request has been submitted */ +/* 1 no more requests needed */ +static int +search_try_next(struct evdns_request *const handle) { + struct request *req = handle->current_req; + struct evdns_base *base = req->base; + struct request *newreq; + ASSERT_LOCKED(base); + if (handle->search_state) { + /* it is part of a search */ + char *new_name; + handle->search_index++; + if (handle->search_index >= handle->search_state->num_domains) { + /* no more postfixes to try, however we may need to try */ + /* this name without a postfix */ + if (string_num_dots(handle->search_origname) < handle->search_state->ndots) { + /* yep, we need to try it raw */ + newreq = request_new(base, NULL, req->request_type, handle->search_origname, handle->search_flags, req->user_callback, req->user_pointer); + log(EVDNS_LOG_DEBUG, "Search: trying raw query %s", handle->search_origname); + if (newreq) { + search_request_finished(handle); + goto submit_next; + } + } + return 1; + } + + new_name = search_make_new(handle->search_state, handle->search_index, handle->search_origname); + if (!new_name) return 1; + log(EVDNS_LOG_DEBUG, "Search: now trying %s (%d)", new_name, handle->search_index); + newreq = request_new(base, NULL, req->request_type, new_name, handle->search_flags, req->user_callback, req->user_pointer); + mm_free(new_name); + if (!newreq) return 1; + goto submit_next; + } + return 1; + +submit_next: + request_finished(req, &REQ_HEAD(req->base, req->trans_id), 0); + handle->current_req = newreq; + newreq->handle = handle; + request_submit(newreq); + return 0; +} + +static void +search_request_finished(struct evdns_request *const handle) { + ASSERT_LOCKED(handle->current_req->base); + if (handle->search_state) { + search_state_decref(handle->search_state); + handle->search_state = NULL; + } + if (handle->search_origname) { + mm_free(handle->search_origname); + handle->search_origname = NULL; + } +} + +/* ================================================================= */ +/* Parsing resolv.conf files */ + +static void +evdns_resolv_set_defaults(struct evdns_base *base, int flags) { + /* if the file isn't found then we assume a local resolver */ + ASSERT_LOCKED(base); + if (flags & DNS_OPTION_SEARCH) search_set_from_hostname(base); + if (flags & DNS_OPTION_NAMESERVERS) evdns_base_nameserver_ip_add(base,"127.0.0.1"); +} + +#ifndef EVENT__HAVE_STRTOK_R +static char * +strtok_r(char *s, const char *delim, char **state) { + char *cp, *start; + start = cp = s ? s : *state; + if (!cp) + return NULL; + while (*cp && !strchr(delim, *cp)) + ++cp; + if (!*cp) { + if (cp == start) + return NULL; + *state = NULL; + return start; + } else { + *cp++ = '\0'; + *state = cp; + return start; + } +} +#endif + +/* helper version of atoi which returns -1 on error */ +static int +strtoint(const char *const str) +{ + char *endptr; + const int r = strtol(str, &endptr, 10); + if (*endptr) return -1; + return r; +} + +/* Parse a number of seconds into a timeval; return -1 on error. */ +static int +evdns_strtotimeval(const char *const str, struct timeval *out) +{ + double d; + char *endptr; + d = strtod(str, &endptr); + if (*endptr) return -1; + if (d < 0) return -1; + out->tv_sec = (int) d; + out->tv_usec = (int) ((d - (int) d)*1000000); + if (out->tv_sec == 0 && out->tv_usec < 1000) /* less than 1 msec */ + return -1; + return 0; +} + +/* helper version of atoi that returns -1 on error and clips to bounds. */ +static int +strtoint_clipped(const char *const str, int min, int max) +{ + int r = strtoint(str); + if (r == -1) + return r; + else if (rmax) + return max; + else + return r; +} + +static int +evdns_base_set_max_requests_inflight(struct evdns_base *base, int maxinflight) +{ + int old_n_heads = base->n_req_heads, n_heads; + struct request **old_heads = base->req_heads, **new_heads, *req; + int i; + + ASSERT_LOCKED(base); + if (maxinflight < 1) + maxinflight = 1; + n_heads = (maxinflight+4) / 5; + EVUTIL_ASSERT(n_heads > 0); + new_heads = mm_calloc(n_heads, sizeof(struct request*)); + if (!new_heads) + return (-1); + if (old_heads) { + for (i = 0; i < old_n_heads; ++i) { + while (old_heads[i]) { + req = old_heads[i]; + evdns_request_remove(req, &old_heads[i]); + evdns_request_insert(req, &new_heads[req->trans_id % n_heads]); + } + } + mm_free(old_heads); + } + base->req_heads = new_heads; + base->n_req_heads = n_heads; + base->global_max_requests_inflight = maxinflight; + return (0); +} + +/* exported function */ +int +evdns_base_set_option(struct evdns_base *base, + const char *option, const char *val) +{ + int res; + EVDNS_LOCK(base); + res = evdns_base_set_option_impl(base, option, val, DNS_OPTIONS_ALL); + EVDNS_UNLOCK(base); + return res; +} + +static inline int +str_matches_option(const char *s1, const char *optionname) +{ + /* Option names are given as "option:" We accept either 'option' in + * s1, or 'option:randomjunk'. The latter form is to implement the + * resolv.conf parser. */ + size_t optlen = strlen(optionname); + size_t slen = strlen(s1); + if (slen == optlen || slen == optlen - 1) + return !strncmp(s1, optionname, slen); + else if (slen > optlen) + return !strncmp(s1, optionname, optlen); + else + return 0; +} + +static int +evdns_base_set_option_impl(struct evdns_base *base, + const char *option, const char *val, int flags) +{ + ASSERT_LOCKED(base); + if (str_matches_option(option, "ndots:")) { + const int ndots = strtoint(val); + if (ndots == -1) return -1; + if (!(flags & DNS_OPTION_SEARCH)) return 0; + log(EVDNS_LOG_DEBUG, "Setting ndots to %d", ndots); + if (!base->global_search_state) base->global_search_state = search_state_new(); + if (!base->global_search_state) return -1; + base->global_search_state->ndots = ndots; + } else if (str_matches_option(option, "timeout:")) { + struct timeval tv; + if (evdns_strtotimeval(val, &tv) == -1) return -1; + if (!(flags & DNS_OPTION_MISC)) return 0; + log(EVDNS_LOG_DEBUG, "Setting timeout to %s", val); + memcpy(&base->global_timeout, &tv, sizeof(struct timeval)); + } else if (str_matches_option(option, "getaddrinfo-allow-skew:")) { + struct timeval tv; + if (evdns_strtotimeval(val, &tv) == -1) return -1; + if (!(flags & DNS_OPTION_MISC)) return 0; + log(EVDNS_LOG_DEBUG, "Setting getaddrinfo-allow-skew to %s", + val); + memcpy(&base->global_getaddrinfo_allow_skew, &tv, + sizeof(struct timeval)); + } else if (str_matches_option(option, "max-timeouts:")) { + const int maxtimeout = strtoint_clipped(val, 1, 255); + if (maxtimeout == -1) return -1; + if (!(flags & DNS_OPTION_MISC)) return 0; + log(EVDNS_LOG_DEBUG, "Setting maximum allowed timeouts to %d", + maxtimeout); + base->global_max_nameserver_timeout = maxtimeout; + } else if (str_matches_option(option, "max-inflight:")) { + const int maxinflight = strtoint_clipped(val, 1, 65000); + if (maxinflight == -1) return -1; + if (!(flags & DNS_OPTION_MISC)) return 0; + log(EVDNS_LOG_DEBUG, "Setting maximum inflight requests to %d", + maxinflight); + evdns_base_set_max_requests_inflight(base, maxinflight); + } else if (str_matches_option(option, "attempts:")) { + int retries = strtoint(val); + if (retries == -1) return -1; + if (retries > 255) retries = 255; + if (!(flags & DNS_OPTION_MISC)) return 0; + log(EVDNS_LOG_DEBUG, "Setting retries to %d", retries); + base->global_max_retransmits = retries; + } else if (str_matches_option(option, "randomize-case:")) { + int randcase = strtoint(val); + if (!(flags & DNS_OPTION_MISC)) return 0; + base->global_randomize_case = randcase; + } else if (str_matches_option(option, "bind-to:")) { + /* XXX This only applies to successive nameservers, not + * to already-configured ones. We might want to fix that. */ + int len = sizeof(base->global_outgoing_address); + if (!(flags & DNS_OPTION_NAMESERVERS)) return 0; + if (evutil_parse_sockaddr_port(val, + (struct sockaddr*)&base->global_outgoing_address, &len)) + return -1; + base->global_outgoing_addrlen = len; + } else if (str_matches_option(option, "initial-probe-timeout:")) { + struct timeval tv; + if (evdns_strtotimeval(val, &tv) == -1) return -1; + if (tv.tv_sec > 3600) + tv.tv_sec = 3600; + if (!(flags & DNS_OPTION_MISC)) return 0; + log(EVDNS_LOG_DEBUG, "Setting initial probe timeout to %s", + val); + memcpy(&base->global_nameserver_probe_initial_timeout, &tv, + sizeof(tv)); + } + return 0; +} + +int +evdns_set_option(const char *option, const char *val, int flags) +{ + if (!current_base) + current_base = evdns_base_new(NULL, 0); + return evdns_base_set_option(current_base, option, val); +} + +static void +resolv_conf_parse_line(struct evdns_base *base, char *const start, int flags) { + char *strtok_state; + static const char *const delims = " \t"; +#define NEXT_TOKEN strtok_r(NULL, delims, &strtok_state) + + + char *const first_token = strtok_r(start, delims, &strtok_state); + ASSERT_LOCKED(base); + if (!first_token) return; + + if (!strcmp(first_token, "nameserver") && (flags & DNS_OPTION_NAMESERVERS)) { + const char *const nameserver = NEXT_TOKEN; + + if (nameserver) + evdns_base_nameserver_ip_add(base, nameserver); + } else if (!strcmp(first_token, "domain") && (flags & DNS_OPTION_SEARCH)) { + const char *const domain = NEXT_TOKEN; + if (domain) { + search_postfix_clear(base); + search_postfix_add(base, domain); + } + } else if (!strcmp(first_token, "search") && (flags & DNS_OPTION_SEARCH)) { + const char *domain; + search_postfix_clear(base); + + while ((domain = NEXT_TOKEN)) { + search_postfix_add(base, domain); + } + search_reverse(base); + } else if (!strcmp(first_token, "options")) { + const char *option; + while ((option = NEXT_TOKEN)) { + const char *val = strchr(option, ':'); + evdns_base_set_option_impl(base, option, val ? val+1 : "", flags); + } + } +#undef NEXT_TOKEN +} + +/* exported function */ +/* returns: */ +/* 0 no errors */ +/* 1 failed to open file */ +/* 2 failed to stat file */ +/* 3 file too large */ +/* 4 out of memory */ +/* 5 short read from file */ +int +evdns_base_resolv_conf_parse(struct evdns_base *base, int flags, const char *const filename) { + int res; + EVDNS_LOCK(base); + res = evdns_base_resolv_conf_parse_impl(base, flags, filename); + EVDNS_UNLOCK(base); + return res; +} + +static char * +evdns_get_default_hosts_filename(void) +{ +#ifdef _WIN32 + /* Windows is a little coy about where it puts its configuration + * files. Sure, they're _usually_ in C:\windows\system32, but + * there's no reason in principle they couldn't be in + * W:\hoboken chicken emergency\ + */ + char path[MAX_PATH+1]; + static const char hostfile[] = "\\drivers\\etc\\hosts"; + char *path_out; + size_t len_out; + + if (! SHGetSpecialFolderPathA(NULL, path, CSIDL_SYSTEM, 0)) + return NULL; + len_out = strlen(path)+strlen(hostfile)+1; + path_out = mm_malloc(len_out); + evutil_snprintf(path_out, len_out, "%s%s", path, hostfile); + return path_out; +#else + return mm_strdup("/etc/hosts"); +#endif +} + +static int +evdns_base_resolv_conf_parse_impl(struct evdns_base *base, int flags, const char *const filename) { + size_t n; + char *resolv; + char *start; + int err = 0; + + log(EVDNS_LOG_DEBUG, "Parsing resolv.conf file %s", filename); + + if (flags & DNS_OPTION_HOSTSFILE) { + char *fname = evdns_get_default_hosts_filename(); + evdns_base_load_hosts(base, fname); + if (fname) + mm_free(fname); + } + + if ((err = evutil_read_file_(filename, &resolv, &n, 0)) < 0) { + if (err == -1) { + /* No file. */ + evdns_resolv_set_defaults(base, flags); + return 1; + } else { + return 2; + } + } + + start = resolv; + for (;;) { + char *const newline = strchr(start, '\n'); + if (!newline) { + resolv_conf_parse_line(base, start, flags); + break; + } else { + *newline = 0; + resolv_conf_parse_line(base, start, flags); + start = newline + 1; + } + } + + if (!base->server_head && (flags & DNS_OPTION_NAMESERVERS)) { + /* no nameservers were configured. */ + evdns_base_nameserver_ip_add(base, "127.0.0.1"); + err = 6; + } + if (flags & DNS_OPTION_SEARCH && (!base->global_search_state || base->global_search_state->num_domains == 0)) { + search_set_from_hostname(base); + } + + mm_free(resolv); + return err; +} + +int +evdns_resolv_conf_parse(int flags, const char *const filename) { + if (!current_base) + current_base = evdns_base_new(NULL, 0); + return evdns_base_resolv_conf_parse(current_base, flags, filename); +} + + +#ifdef _WIN32 +/* Add multiple nameservers from a space-or-comma-separated list. */ +static int +evdns_nameserver_ip_add_line(struct evdns_base *base, const char *ips) { + const char *addr; + char *buf; + int r; + ASSERT_LOCKED(base); + while (*ips) { + while (isspace(*ips) || *ips == ',' || *ips == '\t') + ++ips; + addr = ips; + while (isdigit(*ips) || *ips == '.' || *ips == ':' || + *ips=='[' || *ips==']') + ++ips; + buf = mm_malloc(ips-addr+1); + if (!buf) return 4; + memcpy(buf, addr, ips-addr); + buf[ips-addr] = '\0'; + r = evdns_base_nameserver_ip_add(base, buf); + mm_free(buf); + if (r) return r; + } + return 0; +} + +typedef DWORD(WINAPI *GetNetworkParams_fn_t)(FIXED_INFO *, DWORD*); + +/* Use the windows GetNetworkParams interface in iphlpapi.dll to */ +/* figure out what our nameservers are. */ +static int +load_nameservers_with_getnetworkparams(struct evdns_base *base) +{ + /* Based on MSDN examples and inspection of c-ares code. */ + FIXED_INFO *fixed; + HMODULE handle = 0; + ULONG size = sizeof(FIXED_INFO); + void *buf = NULL; + int status = 0, r, added_any; + IP_ADDR_STRING *ns; + GetNetworkParams_fn_t fn; + + ASSERT_LOCKED(base); + if (!(handle = evutil_load_windows_system_library_( + TEXT("iphlpapi.dll")))) { + log(EVDNS_LOG_WARN, "Could not open iphlpapi.dll"); + status = -1; + goto done; + } + if (!(fn = (GetNetworkParams_fn_t) GetProcAddress(handle, "GetNetworkParams"))) { + log(EVDNS_LOG_WARN, "Could not get address of function."); + status = -1; + goto done; + } + + buf = mm_malloc(size); + if (!buf) { status = 4; goto done; } + fixed = buf; + r = fn(fixed, &size); + if (r != ERROR_SUCCESS && r != ERROR_BUFFER_OVERFLOW) { + status = -1; + goto done; + } + if (r != ERROR_SUCCESS) { + mm_free(buf); + buf = mm_malloc(size); + if (!buf) { status = 4; goto done; } + fixed = buf; + r = fn(fixed, &size); + if (r != ERROR_SUCCESS) { + log(EVDNS_LOG_DEBUG, "fn() failed."); + status = -1; + goto done; + } + } + + EVUTIL_ASSERT(fixed); + added_any = 0; + ns = &(fixed->DnsServerList); + while (ns) { + r = evdns_nameserver_ip_add_line(base, ns->IpAddress.String); + if (r) { + log(EVDNS_LOG_DEBUG,"Could not add nameserver %s to list,error: %d", + (ns->IpAddress.String),(int)GetLastError()); + status = r; + } else { + ++added_any; + log(EVDNS_LOG_DEBUG,"Successfully added %s as nameserver",ns->IpAddress.String); + } + + ns = ns->Next; + } + + if (!added_any) { + log(EVDNS_LOG_DEBUG, "No nameservers added."); + if (status == 0) + status = -1; + } else { + status = 0; + } + + done: + if (buf) + mm_free(buf); + if (handle) + FreeLibrary(handle); + return status; +} + +static int +config_nameserver_from_reg_key(struct evdns_base *base, HKEY key, const TCHAR *subkey) +{ + char *buf; + DWORD bufsz = 0, type = 0; + int status = 0; + + ASSERT_LOCKED(base); + if (RegQueryValueEx(key, subkey, 0, &type, NULL, &bufsz) + != ERROR_MORE_DATA) + return -1; + if (!(buf = mm_malloc(bufsz))) + return -1; + + if (RegQueryValueEx(key, subkey, 0, &type, (LPBYTE)buf, &bufsz) + == ERROR_SUCCESS && bufsz > 1) { + status = evdns_nameserver_ip_add_line(base,buf); + } + + mm_free(buf); + return status; +} + +#define SERVICES_KEY TEXT("System\\CurrentControlSet\\Services\\") +#define WIN_NS_9X_KEY SERVICES_KEY TEXT("VxD\\MSTCP") +#define WIN_NS_NT_KEY SERVICES_KEY TEXT("Tcpip\\Parameters") + +static int +load_nameservers_from_registry(struct evdns_base *base) +{ + int found = 0; + int r; +#define TRY(k, name) \ + if (!found && config_nameserver_from_reg_key(base,k,TEXT(name)) == 0) { \ + log(EVDNS_LOG_DEBUG,"Found nameservers in %s/%s",#k,name); \ + found = 1; \ + } else if (!found) { \ + log(EVDNS_LOG_DEBUG,"Didn't find nameservers in %s/%s", \ + #k,#name); \ + } + + ASSERT_LOCKED(base); + + if (((int)GetVersion()) > 0) { /* NT */ + HKEY nt_key = 0, interfaces_key = 0; + + if (RegOpenKeyEx(HKEY_LOCAL_MACHINE, WIN_NS_NT_KEY, 0, + KEY_READ, &nt_key) != ERROR_SUCCESS) { + log(EVDNS_LOG_DEBUG,"Couldn't open nt key, %d",(int)GetLastError()); + return -1; + } + r = RegOpenKeyEx(nt_key, TEXT("Interfaces"), 0, + KEY_QUERY_VALUE|KEY_ENUMERATE_SUB_KEYS, + &interfaces_key); + if (r != ERROR_SUCCESS) { + log(EVDNS_LOG_DEBUG,"Couldn't open interfaces key, %d",(int)GetLastError()); + return -1; + } + TRY(nt_key, "NameServer"); + TRY(nt_key, "DhcpNameServer"); + TRY(interfaces_key, "NameServer"); + TRY(interfaces_key, "DhcpNameServer"); + RegCloseKey(interfaces_key); + RegCloseKey(nt_key); + } else { + HKEY win_key = 0; + if (RegOpenKeyEx(HKEY_LOCAL_MACHINE, WIN_NS_9X_KEY, 0, + KEY_READ, &win_key) != ERROR_SUCCESS) { + log(EVDNS_LOG_DEBUG, "Couldn't open registry key, %d", (int)GetLastError()); + return -1; + } + TRY(win_key, "NameServer"); + RegCloseKey(win_key); + } + + if (found == 0) { + log(EVDNS_LOG_WARN,"Didn't find any nameservers."); + } + + return found ? 0 : -1; +#undef TRY +} + +int +evdns_base_config_windows_nameservers(struct evdns_base *base) +{ + int r; + char *fname; + if (base == NULL) + base = current_base; + if (base == NULL) + return -1; + EVDNS_LOCK(base); + fname = evdns_get_default_hosts_filename(); + log(EVDNS_LOG_DEBUG, "Loading hosts entries from %s", fname); + evdns_base_load_hosts(base, fname); + if (fname) + mm_free(fname); + + if (load_nameservers_with_getnetworkparams(base) == 0) { + EVDNS_UNLOCK(base); + return 0; + } + r = load_nameservers_from_registry(base); + + EVDNS_UNLOCK(base); + return r; +} + +int +evdns_config_windows_nameservers(void) +{ + if (!current_base) { + current_base = evdns_base_new(NULL, 1); + return current_base == NULL ? -1 : 0; + } else { + return evdns_base_config_windows_nameservers(current_base); + } +} +#endif + +struct evdns_base * +evdns_base_new(struct event_base *event_base, int flags) +{ + struct evdns_base *base; + + if (evutil_secure_rng_init() < 0) { + log(EVDNS_LOG_WARN, "Unable to seed random number generator; " + "DNS can't run."); + return NULL; + } + + /* Give the evutil library a hook into its evdns-enabled + * functionality. We can't just call evdns_getaddrinfo directly or + * else libevent-core will depend on libevent-extras. */ + evutil_set_evdns_getaddrinfo_fn_(evdns_getaddrinfo); + evutil_set_evdns_getaddrinfo_cancel_fn_(evdns_getaddrinfo_cancel); + + base = mm_malloc(sizeof(struct evdns_base)); + if (base == NULL) + return (NULL); + memset(base, 0, sizeof(struct evdns_base)); + base->req_waiting_head = NULL; + + EVTHREAD_ALLOC_LOCK(base->lock, EVTHREAD_LOCKTYPE_RECURSIVE); + EVDNS_LOCK(base); + + /* Set max requests inflight and allocate req_heads. */ + base->req_heads = NULL; + + evdns_base_set_max_requests_inflight(base, 64); + + base->server_head = NULL; + base->event_base = event_base; + base->global_good_nameservers = base->global_requests_inflight = + base->global_requests_waiting = 0; + + base->global_timeout.tv_sec = 5; + base->global_timeout.tv_usec = 0; + base->global_max_reissues = 1; + base->global_max_retransmits = 3; + base->global_max_nameserver_timeout = 3; + base->global_search_state = NULL; + base->global_randomize_case = 1; + base->global_getaddrinfo_allow_skew.tv_sec = 3; + base->global_getaddrinfo_allow_skew.tv_usec = 0; + base->global_nameserver_probe_initial_timeout.tv_sec = 10; + base->global_nameserver_probe_initial_timeout.tv_usec = 0; + + TAILQ_INIT(&base->hostsdb); + +#define EVDNS_BASE_ALL_FLAGS (0x8001) + if (flags & ~EVDNS_BASE_ALL_FLAGS) { + flags = EVDNS_BASE_INITIALIZE_NAMESERVERS; + log(EVDNS_LOG_WARN, + "Unrecognized flag passed to evdns_base_new(). Assuming " + "you meant EVDNS_BASE_INITIALIZE_NAMESERVERS."); + } +#undef EVDNS_BASE_ALL_FLAGS + + if (flags & EVDNS_BASE_INITIALIZE_NAMESERVERS) { + int r; +#ifdef _WIN32 + r = evdns_base_config_windows_nameservers(base); +#else + r = evdns_base_resolv_conf_parse(base, DNS_OPTIONS_ALL, "/etc/resolv.conf"); +#endif + if (r == -1) { + evdns_base_free_and_unlock(base, 0); + return NULL; + } + } + if (flags & EVDNS_BASE_DISABLE_WHEN_INACTIVE) { + base->disable_when_inactive = 1; + } + + EVDNS_UNLOCK(base); + return base; +} + +int +evdns_init(void) +{ + struct evdns_base *base = evdns_base_new(NULL, 1); + if (base) { + current_base = base; + return 0; + } else { + return -1; + } +} + +const char * +evdns_err_to_string(int err) +{ + switch (err) { + case DNS_ERR_NONE: return "no error"; + case DNS_ERR_FORMAT: return "misformatted query"; + case DNS_ERR_SERVERFAILED: return "server failed"; + case DNS_ERR_NOTEXIST: return "name does not exist"; + case DNS_ERR_NOTIMPL: return "query not implemented"; + case DNS_ERR_REFUSED: return "refused"; + + case DNS_ERR_TRUNCATED: return "reply truncated or ill-formed"; + case DNS_ERR_UNKNOWN: return "unknown"; + case DNS_ERR_TIMEOUT: return "request timed out"; + case DNS_ERR_SHUTDOWN: return "dns subsystem shut down"; + case DNS_ERR_CANCEL: return "dns request canceled"; + case DNS_ERR_NODATA: return "no records in the reply"; + default: return "[Unknown error code]"; + } +} + +static void +evdns_nameserver_free(struct nameserver *server) +{ + if (server->socket >= 0) + evutil_closesocket(server->socket); + (void) event_del(&server->event); + event_debug_unassign(&server->event); + if (server->state == 0) + (void) event_del(&server->timeout_event); + if (server->probe_request) { + evdns_cancel_request(server->base, server->probe_request); + server->probe_request = NULL; + } + event_debug_unassign(&server->timeout_event); + mm_free(server); +} + +static void +evdns_base_free_and_unlock(struct evdns_base *base, int fail_requests) +{ + struct nameserver *server, *server_next; + struct search_domain *dom, *dom_next; + int i; + + /* Requires that we hold the lock. */ + + /* TODO(nickm) we might need to refcount here. */ + + for (i = 0; i < base->n_req_heads; ++i) { + while (base->req_heads[i]) { + if (fail_requests) + reply_schedule_callback(base->req_heads[i], 0, DNS_ERR_SHUTDOWN, NULL); + request_finished(base->req_heads[i], &REQ_HEAD(base, base->req_heads[i]->trans_id), 1); + } + } + while (base->req_waiting_head) { + if (fail_requests) + reply_schedule_callback(base->req_waiting_head, 0, DNS_ERR_SHUTDOWN, NULL); + request_finished(base->req_waiting_head, &base->req_waiting_head, 1); + } + base->global_requests_inflight = base->global_requests_waiting = 0; + + for (server = base->server_head; server; server = server_next) { + server_next = server->next; + /** already done something before */ + server->probe_request = NULL; + evdns_nameserver_free(server); + if (server_next == base->server_head) + break; + } + base->server_head = NULL; + base->global_good_nameservers = 0; + + if (base->global_search_state) { + for (dom = base->global_search_state->head; dom; dom = dom_next) { + dom_next = dom->next; + mm_free(dom); + } + mm_free(base->global_search_state); + base->global_search_state = NULL; + } + + { + struct hosts_entry *victim; + while ((victim = TAILQ_FIRST(&base->hostsdb))) { + TAILQ_REMOVE(&base->hostsdb, victim, next); + mm_free(victim); + } + } + + mm_free(base->req_heads); + + EVDNS_UNLOCK(base); + EVTHREAD_FREE_LOCK(base->lock, EVTHREAD_LOCKTYPE_RECURSIVE); + + mm_free(base); +} + +void +evdns_base_free(struct evdns_base *base, int fail_requests) +{ + EVDNS_LOCK(base); + evdns_base_free_and_unlock(base, fail_requests); +} + +void +evdns_base_clear_host_addresses(struct evdns_base *base) +{ + struct hosts_entry *victim; + EVDNS_LOCK(base); + while ((victim = TAILQ_FIRST(&base->hostsdb))) { + TAILQ_REMOVE(&base->hostsdb, victim, next); + mm_free(victim); + } + EVDNS_UNLOCK(base); +} + +void +evdns_shutdown(int fail_requests) +{ + if (current_base) { + struct evdns_base *b = current_base; + current_base = NULL; + evdns_base_free(b, fail_requests); + } + evdns_log_fn = NULL; +} + +static int +evdns_base_parse_hosts_line(struct evdns_base *base, char *line) +{ + char *strtok_state; + static const char *const delims = " \t"; + char *const addr = strtok_r(line, delims, &strtok_state); + char *hostname, *hash; + struct sockaddr_storage ss; + int socklen = sizeof(ss); + ASSERT_LOCKED(base); + +#define NEXT_TOKEN strtok_r(NULL, delims, &strtok_state) + + if (!addr || *addr == '#') + return 0; + + memset(&ss, 0, sizeof(ss)); + if (evutil_parse_sockaddr_port(addr, (struct sockaddr*)&ss, &socklen)<0) + return -1; + if (socklen > (int)sizeof(struct sockaddr_in6)) + return -1; + + if (sockaddr_getport((struct sockaddr*)&ss)) + return -1; + + while ((hostname = NEXT_TOKEN)) { + struct hosts_entry *he; + size_t namelen; + if ((hash = strchr(hostname, '#'))) { + if (hash == hostname) + return 0; + *hash = '\0'; + } + + namelen = strlen(hostname); + + he = mm_calloc(1, sizeof(struct hosts_entry)+namelen); + if (!he) + return -1; + EVUTIL_ASSERT(socklen <= (int)sizeof(he->addr)); + memcpy(&he->addr, &ss, socklen); + memcpy(he->hostname, hostname, namelen+1); + he->addrlen = socklen; + + TAILQ_INSERT_TAIL(&base->hostsdb, he, next); + + if (hash) + return 0; + } + + return 0; +#undef NEXT_TOKEN +} + +static int +evdns_base_load_hosts_impl(struct evdns_base *base, const char *hosts_fname) +{ + char *str=NULL, *cp, *eol; + size_t len; + int err=0; + + ASSERT_LOCKED(base); + + if (hosts_fname == NULL || + (err = evutil_read_file_(hosts_fname, &str, &len, 0)) < 0) { + char tmp[64]; + strlcpy(tmp, "127.0.0.1 localhost", sizeof(tmp)); + evdns_base_parse_hosts_line(base, tmp); + strlcpy(tmp, "::1 localhost", sizeof(tmp)); + evdns_base_parse_hosts_line(base, tmp); + return err ? -1 : 0; + } + + /* This will break early if there is a NUL in the hosts file. + * Probably not a problem.*/ + cp = str; + for (;;) { + eol = strchr(cp, '\n'); + + if (eol) { + *eol = '\0'; + evdns_base_parse_hosts_line(base, cp); + cp = eol+1; + } else { + evdns_base_parse_hosts_line(base, cp); + break; + } + } + + mm_free(str); + return 0; +} + +int +evdns_base_load_hosts(struct evdns_base *base, const char *hosts_fname) +{ + int res; + if (!base) + base = current_base; + EVDNS_LOCK(base); + res = evdns_base_load_hosts_impl(base, hosts_fname); + EVDNS_UNLOCK(base); + return res; +} + +/* A single request for a getaddrinfo, either v4 or v6. */ +struct getaddrinfo_subrequest { + struct evdns_request *r; + ev_uint32_t type; +}; + +/* State data used to implement an in-progress getaddrinfo. */ +struct evdns_getaddrinfo_request { + struct evdns_base *evdns_base; + /* Copy of the modified 'hints' data that we'll use to build + * answers. */ + struct evutil_addrinfo hints; + /* The callback to invoke when we're done */ + evdns_getaddrinfo_cb user_cb; + /* User-supplied data to give to the callback. */ + void *user_data; + /* The port to use when building sockaddrs. */ + ev_uint16_t port; + /* The sub_request for an A record (if any) */ + struct getaddrinfo_subrequest ipv4_request; + /* The sub_request for an AAAA record (if any) */ + struct getaddrinfo_subrequest ipv6_request; + + /* The cname result that we were told (if any) */ + char *cname_result; + + /* If we have one request answered and one request still inflight, + * then this field holds the answer from the first request... */ + struct evutil_addrinfo *pending_result; + /* And this event is a timeout that will tell us to cancel the second + * request if it's taking a long time. */ + struct event timeout; + + /* And this field holds the error code from the first request... */ + int pending_error; + /* If this is set, the user canceled this request. */ + unsigned user_canceled : 1; + /* If this is set, the user can no longer cancel this request; we're + * just waiting for the free. */ + unsigned request_done : 1; +}; + +/* Convert an evdns errors to the equivalent getaddrinfo error. */ +static int +evdns_err_to_getaddrinfo_err(int e1) +{ + /* XXX Do this better! */ + if (e1 == DNS_ERR_NONE) + return 0; + else if (e1 == DNS_ERR_NOTEXIST) + return EVUTIL_EAI_NONAME; + else + return EVUTIL_EAI_FAIL; +} + +/* Return the more informative of two getaddrinfo errors. */ +static int +getaddrinfo_merge_err(int e1, int e2) +{ + /* XXXX be cleverer here. */ + if (e1 == 0) + return e2; + else + return e1; +} + +static void +free_getaddrinfo_request(struct evdns_getaddrinfo_request *data) +{ + /* DO NOT CALL this if either of the requests is pending. Only once + * both callbacks have been invoked is it safe to free the request */ + if (data->pending_result) + evutil_freeaddrinfo(data->pending_result); + if (data->cname_result) + mm_free(data->cname_result); + event_del(&data->timeout); + mm_free(data); + return; +} + +static void +add_cname_to_reply(struct evdns_getaddrinfo_request *data, + struct evutil_addrinfo *ai) +{ + if (data->cname_result && ai) { + ai->ai_canonname = data->cname_result; + data->cname_result = NULL; + } +} + +/* Callback: invoked when one request in a mixed-format A/AAAA getaddrinfo + * request has finished, but the other one took too long to answer. Pass + * along the answer we got, and cancel the other request. + */ +static void +evdns_getaddrinfo_timeout_cb(evutil_socket_t fd, short what, void *ptr) +{ + int v4_timedout = 0, v6_timedout = 0; + struct evdns_getaddrinfo_request *data = ptr; + + /* Cancel any pending requests, and note which one */ + if (data->ipv4_request.r) { + /* XXXX This does nothing if the request's callback is already + * running (pending_cb is set). */ + evdns_cancel_request(NULL, data->ipv4_request.r); + v4_timedout = 1; + EVDNS_LOCK(data->evdns_base); + ++data->evdns_base->getaddrinfo_ipv4_timeouts; + EVDNS_UNLOCK(data->evdns_base); + } + if (data->ipv6_request.r) { + /* XXXX This does nothing if the request's callback is already + * running (pending_cb is set). */ + evdns_cancel_request(NULL, data->ipv6_request.r); + v6_timedout = 1; + EVDNS_LOCK(data->evdns_base); + ++data->evdns_base->getaddrinfo_ipv6_timeouts; + EVDNS_UNLOCK(data->evdns_base); + } + + /* We only use this timeout callback when we have an answer for + * one address. */ + EVUTIL_ASSERT(!v4_timedout || !v6_timedout); + + /* Report the outcome of the other request that didn't time out. */ + if (data->pending_result) { + add_cname_to_reply(data, data->pending_result); + data->user_cb(0, data->pending_result, data->user_data); + data->pending_result = NULL; + } else { + int e = data->pending_error; + if (!e) + e = EVUTIL_EAI_AGAIN; + data->user_cb(e, NULL, data->user_data); + } + + data->user_cb = NULL; /* prevent double-call if evdns callbacks are + * in-progress. XXXX It would be better if this + * weren't necessary. */ + + if (!v4_timedout && !v6_timedout) { + /* should be impossible? XXXX */ + free_getaddrinfo_request(data); + } +} + +static int +evdns_getaddrinfo_set_timeout(struct evdns_base *evdns_base, + struct evdns_getaddrinfo_request *data) +{ + return event_add(&data->timeout, &evdns_base->global_getaddrinfo_allow_skew); +} + +static inline int +evdns_result_is_answer(int result) +{ + return (result != DNS_ERR_NOTIMPL && result != DNS_ERR_REFUSED && + result != DNS_ERR_SERVERFAILED && result != DNS_ERR_CANCEL); +} + +static void +evdns_getaddrinfo_gotresolve(int result, char type, int count, + int ttl, void *addresses, void *arg) +{ + int i; + struct getaddrinfo_subrequest *req = arg; + struct getaddrinfo_subrequest *other_req; + struct evdns_getaddrinfo_request *data; + + struct evutil_addrinfo *res; + + struct sockaddr_in sin; + struct sockaddr_in6 sin6; + struct sockaddr *sa; + int socklen, addrlen; + void *addrp; + int err; + int user_canceled; + + EVUTIL_ASSERT(req->type == DNS_IPv4_A || req->type == DNS_IPv6_AAAA); + if (req->type == DNS_IPv4_A) { + data = EVUTIL_UPCAST(req, struct evdns_getaddrinfo_request, ipv4_request); + other_req = &data->ipv6_request; + } else { + data = EVUTIL_UPCAST(req, struct evdns_getaddrinfo_request, ipv6_request); + other_req = &data->ipv4_request; + } + + /** Called from evdns_base_free() with @fail_requests == 1 */ + if (result != DNS_ERR_SHUTDOWN) { + EVDNS_LOCK(data->evdns_base); + if (evdns_result_is_answer(result)) { + if (req->type == DNS_IPv4_A) + ++data->evdns_base->getaddrinfo_ipv4_answered; + else + ++data->evdns_base->getaddrinfo_ipv6_answered; + } + user_canceled = data->user_canceled; + if (other_req->r == NULL) + data->request_done = 1; + EVDNS_UNLOCK(data->evdns_base); + } else { + data->evdns_base = NULL; + user_canceled = data->user_canceled; + } + + req->r = NULL; + + if (result == DNS_ERR_CANCEL && ! user_canceled) { + /* Internal cancel request from timeout or internal error. + * we already answered the user. */ + if (other_req->r == NULL) + free_getaddrinfo_request(data); + return; + } + + if (data->user_cb == NULL) { + /* We already answered. XXXX This shouldn't be needed; see + * comments in evdns_getaddrinfo_timeout_cb */ + free_getaddrinfo_request(data); + return; + } + + if (result == DNS_ERR_NONE) { + if (count == 0) + err = EVUTIL_EAI_NODATA; + else + err = 0; + } else { + err = evdns_err_to_getaddrinfo_err(result); + } + + if (err) { + /* Looks like we got an error. */ + if (other_req->r) { + /* The other request is still working; maybe it will + * succeed. */ + /* XXXX handle failure from set_timeout */ + if (result != DNS_ERR_SHUTDOWN) { + evdns_getaddrinfo_set_timeout(data->evdns_base, data); + } + data->pending_error = err; + return; + } + + if (user_canceled) { + data->user_cb(EVUTIL_EAI_CANCEL, NULL, data->user_data); + } else if (data->pending_result) { + /* If we have an answer waiting, and we weren't + * canceled, ignore this error. */ + add_cname_to_reply(data, data->pending_result); + data->user_cb(0, data->pending_result, data->user_data); + data->pending_result = NULL; + } else { + if (data->pending_error) + err = getaddrinfo_merge_err(err, + data->pending_error); + data->user_cb(err, NULL, data->user_data); + } + free_getaddrinfo_request(data); + return; + } else if (user_canceled) { + if (other_req->r) { + /* The other request is still working; let it hit this + * callback with EVUTIL_EAI_CANCEL callback and report + * the failure. */ + return; + } + data->user_cb(EVUTIL_EAI_CANCEL, NULL, data->user_data); + free_getaddrinfo_request(data); + return; + } + + /* Looks like we got some answers. We should turn them into addrinfos + * and then either queue those or return them all. */ + EVUTIL_ASSERT(type == DNS_IPv4_A || type == DNS_IPv6_AAAA); + + if (type == DNS_IPv4_A) { + memset(&sin, 0, sizeof(sin)); + sin.sin_family = AF_INET; + sin.sin_port = htons(data->port); + + sa = (struct sockaddr *)&sin; + socklen = sizeof(sin); + addrlen = 4; + addrp = &sin.sin_addr.s_addr; + } else { + memset(&sin6, 0, sizeof(sin6)); + sin6.sin6_family = AF_INET6; + sin6.sin6_port = htons(data->port); + + sa = (struct sockaddr *)&sin6; + socklen = sizeof(sin6); + addrlen = 16; + addrp = &sin6.sin6_addr.s6_addr; + } + + res = NULL; + for (i=0; i < count; ++i) { + struct evutil_addrinfo *ai; + memcpy(addrp, ((char*)addresses)+i*addrlen, addrlen); + ai = evutil_new_addrinfo_(sa, socklen, &data->hints); + if (!ai) { + if (other_req->r) { + evdns_cancel_request(NULL, other_req->r); + } + data->user_cb(EVUTIL_EAI_MEMORY, NULL, data->user_data); + if (res) + evutil_freeaddrinfo(res); + + if (other_req->r == NULL) + free_getaddrinfo_request(data); + return; + } + res = evutil_addrinfo_append_(res, ai); + } + + if (other_req->r) { + /* The other request is still in progress; wait for it */ + /* XXXX handle failure from set_timeout */ + evdns_getaddrinfo_set_timeout(data->evdns_base, data); + data->pending_result = res; + return; + } else { + /* The other request is done or never started; append its + * results (if any) and return them. */ + if (data->pending_result) { + if (req->type == DNS_IPv4_A) + res = evutil_addrinfo_append_(res, + data->pending_result); + else + res = evutil_addrinfo_append_( + data->pending_result, res); + data->pending_result = NULL; + } + + /* Call the user callback. */ + add_cname_to_reply(data, res); + data->user_cb(0, res, data->user_data); + + /* Free data. */ + free_getaddrinfo_request(data); + } +} + +static struct hosts_entry * +find_hosts_entry(struct evdns_base *base, const char *hostname, + struct hosts_entry *find_after) +{ + struct hosts_entry *e; + + if (find_after) + e = TAILQ_NEXT(find_after, next); + else + e = TAILQ_FIRST(&base->hostsdb); + + for (; e; e = TAILQ_NEXT(e, next)) { + if (!evutil_ascii_strcasecmp(e->hostname, hostname)) + return e; + } + return NULL; +} + +static int +evdns_getaddrinfo_fromhosts(struct evdns_base *base, + const char *nodename, struct evutil_addrinfo *hints, ev_uint16_t port, + struct evutil_addrinfo **res) +{ + int n_found = 0; + struct hosts_entry *e; + struct evutil_addrinfo *ai=NULL; + int f = hints->ai_family; + + EVDNS_LOCK(base); + for (e = find_hosts_entry(base, nodename, NULL); e; + e = find_hosts_entry(base, nodename, e)) { + struct evutil_addrinfo *ai_new; + ++n_found; + if ((e->addr.sa.sa_family == AF_INET && f == PF_INET6) || + (e->addr.sa.sa_family == AF_INET6 && f == PF_INET)) + continue; + ai_new = evutil_new_addrinfo_(&e->addr.sa, e->addrlen, hints); + if (!ai_new) { + n_found = 0; + goto out; + } + sockaddr_setport(ai_new->ai_addr, port); + ai = evutil_addrinfo_append_(ai, ai_new); + } + EVDNS_UNLOCK(base); +out: + if (n_found) { + /* Note that we return an empty answer if we found entries for + * this hostname but none were of the right address type. */ + *res = ai; + return 0; + } else { + if (ai) + evutil_freeaddrinfo(ai); + return -1; + } +} + +struct evdns_getaddrinfo_request * +evdns_getaddrinfo(struct evdns_base *dns_base, + const char *nodename, const char *servname, + const struct evutil_addrinfo *hints_in, + evdns_getaddrinfo_cb cb, void *arg) +{ + struct evdns_getaddrinfo_request *data; + struct evutil_addrinfo hints; + struct evutil_addrinfo *res = NULL; + int err; + int port = 0; + int want_cname = 0; + + if (!dns_base) { + dns_base = current_base; + if (!dns_base) { + log(EVDNS_LOG_WARN, + "Call to getaddrinfo_async with no " + "evdns_base configured."); + cb(EVUTIL_EAI_FAIL, NULL, arg); /* ??? better error? */ + return NULL; + } + } + + /* If we _must_ answer this immediately, do so. */ + if ((hints_in && (hints_in->ai_flags & EVUTIL_AI_NUMERICHOST))) { + res = NULL; + err = evutil_getaddrinfo(nodename, servname, hints_in, &res); + cb(err, res, arg); + return NULL; + } + + if (hints_in) { + memcpy(&hints, hints_in, sizeof(hints)); + } else { + memset(&hints, 0, sizeof(hints)); + hints.ai_family = PF_UNSPEC; + } + + evutil_adjust_hints_for_addrconfig_(&hints); + + /* Now try to see if we _can_ answer immediately. */ + /* (It would be nice to do this by calling getaddrinfo directly, with + * AI_NUMERICHOST, on plaforms that have it, but we can't: there isn't + * a reliable way to distinguish the "that wasn't a numeric host!" case + * from any other EAI_NONAME cases.) */ + err = evutil_getaddrinfo_common_(nodename, servname, &hints, &res, &port); + if (err != EVUTIL_EAI_NEED_RESOLVE) { + cb(err, res, arg); + return NULL; + } + + /* If there is an entry in the hosts file, we should give it now. */ + if (!evdns_getaddrinfo_fromhosts(dns_base, nodename, &hints, port, &res)) { + cb(0, res, arg); + return NULL; + } + + /* Okay, things are serious now. We're going to need to actually + * launch a request. + */ + data = mm_calloc(1,sizeof(struct evdns_getaddrinfo_request)); + if (!data) { + cb(EVUTIL_EAI_MEMORY, NULL, arg); + return NULL; + } + + memcpy(&data->hints, &hints, sizeof(data->hints)); + data->port = (ev_uint16_t)port; + data->ipv4_request.type = DNS_IPv4_A; + data->ipv6_request.type = DNS_IPv6_AAAA; + data->user_cb = cb; + data->user_data = arg; + data->evdns_base = dns_base; + + want_cname = (hints.ai_flags & EVUTIL_AI_CANONNAME); + + /* If we are asked for a PF_UNSPEC address, we launch two requests in + * parallel: one for an A address and one for an AAAA address. We + * can't send just one request, since many servers only answer one + * question per DNS request. + * + * Once we have the answer to one request, we allow for a short + * timeout before we report it, to see if the other one arrives. If + * they both show up in time, then we report both the answers. + * + * If too many addresses of one type time out or fail, we should stop + * launching those requests. (XXX we don't do that yet.) + */ + + if (hints.ai_family != PF_INET6) { + log(EVDNS_LOG_DEBUG, "Sending request for %s on ipv4 as %p", + nodename, &data->ipv4_request); + + data->ipv4_request.r = evdns_base_resolve_ipv4(dns_base, + nodename, 0, evdns_getaddrinfo_gotresolve, + &data->ipv4_request); + if (want_cname && data->ipv4_request.r) + data->ipv4_request.r->current_req->put_cname_in_ptr = + &data->cname_result; + } + if (hints.ai_family != PF_INET) { + log(EVDNS_LOG_DEBUG, "Sending request for %s on ipv6 as %p", + nodename, &data->ipv6_request); + + data->ipv6_request.r = evdns_base_resolve_ipv6(dns_base, + nodename, 0, evdns_getaddrinfo_gotresolve, + &data->ipv6_request); + if (want_cname && data->ipv6_request.r) + data->ipv6_request.r->current_req->put_cname_in_ptr = + &data->cname_result; + } + + evtimer_assign(&data->timeout, dns_base->event_base, + evdns_getaddrinfo_timeout_cb, data); + + if (data->ipv4_request.r || data->ipv6_request.r) { + return data; + } else { + mm_free(data); + cb(EVUTIL_EAI_FAIL, NULL, arg); + return NULL; + } +} + +void +evdns_getaddrinfo_cancel(struct evdns_getaddrinfo_request *data) +{ + EVDNS_LOCK(data->evdns_base); + if (data->request_done) { + EVDNS_UNLOCK(data->evdns_base); + return; + } + event_del(&data->timeout); + data->user_canceled = 1; + if (data->ipv4_request.r) + evdns_cancel_request(data->evdns_base, data->ipv4_request.r); + if (data->ipv6_request.r) + evdns_cancel_request(data->evdns_base, data->ipv6_request.r); + EVDNS_UNLOCK(data->evdns_base); +} diff -Nru mysql-5.7-5.7.25/extra/libevent/event.3 mysql-5.7-5.7.26/extra/libevent/event.3 --- mysql-5.7-5.7.25/extra/libevent/event.3 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/event.3 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,624 @@ +.\" $OpenBSD: event.3,v 1.4 2002/07/12 18:50:48 provos Exp $ +.\" +.\" Copyright (c) 2000 Artur Grabowski +.\" All rights reserved. +.\" +.\" 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. The name of the author may not be used to endorse or promote products +.\" derived from this software without specific prior written permission. +.\" +.\" THIS SOFTWARE IS PROVIDED ``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 AUTHOR 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. +.\" +.Dd August 8, 2000 +.Dt EVENT 3 +.Os +.Sh NAME +.Nm event_init , +.Nm event_dispatch , +.Nm event_loop , +.Nm event_loopexit , +.Nm event_loopbreak , +.Nm event_set , +.Nm event_base_dispatch , +.Nm event_base_loop , +.Nm event_base_loopexit , +.Nm event_base_loopbreak , +.Nm event_base_set , +.Nm event_base_free , +.Nm event_add , +.Nm event_del , +.Nm event_once , +.Nm event_base_once , +.Nm event_pending , +.Nm event_initialized , +.Nm event_priority_init , +.Nm event_priority_set , +.Nm evtimer_set , +.Nm evtimer_add , +.Nm evtimer_del , +.Nm evtimer_pending , +.Nm evtimer_initialized , +.Nm signal_set , +.Nm signal_add , +.Nm signal_del , +.Nm signal_pending , +.Nm signal_initialized , +.Nm bufferevent_new , +.Nm bufferevent_free , +.Nm bufferevent_write , +.Nm bufferevent_write_buffer , +.Nm bufferevent_read , +.Nm bufferevent_enable , +.Nm bufferevent_disable , +.Nm bufferevent_settimeout , +.Nm bufferevent_base_set , +.Nm evbuffer_new , +.Nm evbuffer_free , +.Nm evbuffer_add , +.Nm evbuffer_add_buffer , +.Nm evbuffer_add_printf , +.Nm evbuffer_add_vprintf , +.Nm evbuffer_drain , +.Nm evbuffer_write , +.Nm evbuffer_read , +.Nm evbuffer_find , +.Nm evbuffer_readline , +.Nm evhttp_new , +.Nm evhttp_bind_socket , +.Nm evhttp_free +.Nd execute a function when a specific event occurs +.Sh SYNOPSIS +.Fd #include +.Fd #include +.Ft "struct event_base *" +.Fn "event_init" "void" +.Ft int +.Fn "event_dispatch" "void" +.Ft int +.Fn "event_loop" "int flags" +.Ft int +.Fn "event_loopexit" "struct timeval *tv" +.Ft int +.Fn "event_loopbreak" "void" +.Ft void +.Fn "event_set" "struct event *ev" "int fd" "short event" "void (*fn)(int, short, void *)" "void *arg" +.Ft int +.Fn "event_base_dispatch" "struct event_base *base" +.Ft int +.Fn "event_base_loop" "struct event_base *base" "int flags" +.Ft int +.Fn "event_base_loopexit" "struct event_base *base" "struct timeval *tv" +.Ft int +.Fn "event_base_loopbreak" "struct event_base *base" +.Ft int +.Fn "event_base_set" "struct event_base *base" "struct event *" +.Ft void +.Fn "event_base_free" "struct event_base *base" +.Ft int +.Fn "event_add" "struct event *ev" "struct timeval *tv" +.Ft int +.Fn "event_del" "struct event *ev" +.Ft int +.Fn "event_once" "int fd" "short event" "void (*fn)(int, short, void *)" "void *arg" "struct timeval *tv" +.Ft int +.Fn "event_base_once" "struct event_base *base" "int fd" "short event" "void (*fn)(int, short, void *)" "void *arg" "struct timeval *tv" +.Ft int +.Fn "event_pending" "struct event *ev" "short event" "struct timeval *tv" +.Ft int +.Fn "event_initialized" "struct event *ev" +.Ft int +.Fn "event_priority_init" "int npriorities" +.Ft int +.Fn "event_priority_set" "struct event *ev" "int priority" +.Ft void +.Fn "evtimer_set" "struct event *ev" "void (*fn)(int, short, void *)" "void *arg" +.Ft void +.Fn "evtimer_add" "struct event *ev" "struct timeval *" +.Ft void +.Fn "evtimer_del" "struct event *ev" +.Ft int +.Fn "evtimer_pending" "struct event *ev" "struct timeval *tv" +.Ft int +.Fn "evtimer_initialized" "struct event *ev" +.Ft void +.Fn "signal_set" "struct event *ev" "int signal" "void (*fn)(int, short, void *)" "void *arg" +.Ft void +.Fn "signal_add" "struct event *ev" "struct timeval *" +.Ft void +.Fn "signal_del" "struct event *ev" +.Ft int +.Fn "signal_pending" "struct event *ev" "struct timeval *tv" +.Ft int +.Fn "signal_initialized" "struct event *ev" +.Ft "struct bufferevent *" +.Fn "bufferevent_new" "int fd" "evbuffercb readcb" "evbuffercb writecb" "everrorcb" "void *cbarg" +.Ft void +.Fn "bufferevent_free" "struct bufferevent *bufev" +.Ft int +.Fn "bufferevent_write" "struct bufferevent *bufev" "void *data" "size_t size" +.Ft int +.Fn "bufferevent_write_buffer" "struct bufferevent *bufev" "struct evbuffer *buf" +.Ft size_t +.Fn "bufferevent_read" "struct bufferevent *bufev" "void *data" "size_t size" +.Ft int +.Fn "bufferevent_enable" "struct bufferevent *bufev" "short event" +.Ft int +.Fn "bufferevent_disable" "struct bufferevent *bufev" "short event" +.Ft void +.Fn "bufferevent_settimeout" "struct bufferevent *bufev" "int timeout_read" "int timeout_write" +.Ft int +.Fn "bufferevent_base_set" "struct event_base *base" "struct bufferevent *bufev" +.Ft "struct evbuffer *" +.Fn "evbuffer_new" "void" +.Ft void +.Fn "evbuffer_free" "struct evbuffer *buf" +.Ft int +.Fn "evbuffer_add" "struct evbuffer *buf" "const void *data" "size_t size" +.Ft int +.Fn "evbuffer_add_buffer" "struct evbuffer *dst" "struct evbuffer *src" +.Ft int +.Fn "evbuffer_add_printf" "struct evbuffer *buf" "const char *fmt" "..." +.Ft int +.Fn "evbuffer_add_vprintf" "struct evbuffer *buf" "const char *fmt" "va_list ap" +.Ft void +.Fn "evbuffer_drain" "struct evbuffer *buf" "size_t size" +.Ft int +.Fn "evbuffer_write" "struct evbuffer *buf" "int fd" +.Ft int +.Fn "evbuffer_read" "struct evbuffer *buf" "int fd" "int size" +.Ft "unsigned char *" +.Fn "evbuffer_find" "struct evbuffer *buf" "const unsigned char *data" "size_t size" +.Ft "char *" +.Fn "evbuffer_readline" "struct evbuffer *buf" +.Ft "struct evhttp *" +.Fn "evhttp_new" "struct event_base *base" +.Ft int +.Fn "evhttp_bind_socket" "struct evhttp *http" "const char *address" "unsigned short port" +.Ft "void" +.Fn "evhttp_free" "struct evhttp *http" +.Ft int +.Fa (*event_sigcb)(void) ; +.Ft volatile sig_atomic_t +.Fa event_gotsig ; +.Sh DESCRIPTION +The +.Nm event +API provides a mechanism to execute a function when a specific event +on a file descriptor occurs or after a given time has passed. +.Pp +The +.Nm event +API needs to be initialized with +.Fn event_init +before it can be used. +.Pp +In order to process events, an application needs to call +.Fn event_dispatch . +This function only returns on error, and should replace the event core +of the application program. +.Pp +The function +.Fn event_set +prepares the event structure +.Fa ev +to be used in future calls to +.Fn event_add +and +.Fn event_del . +The event will be prepared to call the function specified by the +.Fa fn +argument with an +.Fa int +argument indicating the file descriptor, a +.Fa short +argument indicating the type of event, and a +.Fa void * +argument given in the +.Fa arg +argument. +The +.Fa fd +indicates the file descriptor that should be monitored for events. +The events can be either +.Va EV_READ , +.Va EV_WRITE , +or both, +indicating that an application can read or write from the file descriptor +respectively without blocking. +.Pp +The function +.Fa fn +will be called with the file descriptor that triggered the event and +the type of event which will be either +.Va EV_TIMEOUT , +.Va EV_SIGNAL , +.Va EV_READ , +or +.Va EV_WRITE . +Additionally, an event which has registered interest in more than one of the +preceeding events, via bitwise-OR to +.Fn event_set , +can provide its callback function with a bitwise-OR of more than one triggered +event. +The additional flag +.Va EV_PERSIST +makes an +.Fn event_add +persistent until +.Fn event_del +has been called. +.Pp +Once initialized, the +.Fa ev +structure can be used repeatedly with +.Fn event_add +and +.Fn event_del +and does not need to be reinitialized unless the function called and/or +the argument to it are to be changed. +However, when an +.Fa ev +structure has been added to libevent using +.Fn event_add +the structure must persist until the event occurs (assuming +.Fa EV_PERSIST +is not set) or is removed +using +.Fn event_del . +You may not reuse the same +.Fa ev +structure for multiple monitored descriptors; each descriptor +needs its own +.Fa ev . +.Pp +The function +.Fn event_add +schedules the execution of the +.Fa ev +event when the event specified in +.Fn event_set +occurs or in at least the time specified in the +.Fa tv . +If +.Fa tv +is +.Dv NULL , +no timeout occurs and the function will only be called +if a matching event occurs on the file descriptor. +The event in the +.Fa ev +argument must be already initialized by +.Fn event_set +and may not be used in calls to +.Fn event_set +until it has timed out or been removed with +.Fn event_del . +If the event in the +.Fa ev +argument already has a scheduled timeout, the old timeout will be +replaced by the new one. +.Pp +The function +.Fn event_del +will cancel the event in the argument +.Fa ev . +If the event has already executed or has never been added +the call will have no effect. +.Pp +The functions +.Fn evtimer_set , +.Fn evtimer_add , +.Fn evtimer_del , +.Fn evtimer_initialized , +and +.Fn evtimer_pending +are abbreviations for common situations where only a timeout is required. +The file descriptor passed will be \-1, and the event type will be +.Va EV_TIMEOUT . +.Pp +The functions +.Fn signal_set , +.Fn signal_add , +.Fn signal_del , +.Fn signal_initialized , +and +.Fn signal_pending +are abbreviations. +The event type will be a persistent +.Va EV_SIGNAL . +That means +.Fn signal_set +adds +.Va EV_PERSIST . +.Pp +In order to avoid races in signal handlers, the +.Nm event +API provides two variables: +.Va event_sigcb +and +.Va event_gotsig . +A signal handler +sets +.Va event_gotsig +to indicate that a signal has been received. +The application sets +.Va event_sigcb +to a callback function. +After the signal handler sets +.Va event_gotsig , +.Nm event_dispatch +will execute the callback function to process received signals. +The callback returns 1 when no events are registered any more. +It can return \-1 to indicate an error to the +.Nm event +library, causing +.Fn event_dispatch +to terminate with +.Va errno +set to +.Er EINTR . +.Pp +The function +.Fn event_once +is similar to +.Fn event_set . +However, it schedules a callback to be called exactly once and does not +require the caller to prepare an +.Fa event +structure. +This function supports +.Fa EV_TIMEOUT , +.Fa EV_READ , +and +.Fa EV_WRITE . +.Pp +The +.Fn event_pending +function can be used to check if the event specified by +.Fa event +is pending to run. +If +.Va EV_TIMEOUT +was specified and +.Fa tv +is not +.Dv NULL , +the expiration time of the event will be returned in +.Fa tv . +.Pp +The +.Fn event_initialized +macro can be used to check if an event has been initialized. +.Pp +The +.Nm event_loop +function provides an interface for single pass execution of pending +events. +The flags +.Va EVLOOP_ONCE +and +.Va EVLOOP_NONBLOCK +are recognized. +The +.Nm event_loopexit +function exits from the event loop. The next +.Fn event_loop +iteration after the +given timer expires will complete normally (handling all queued events) then +exit without blocking for events again. Subsequent invocations of +.Fn event_loop +will proceed normally. +The +.Nm event_loopbreak +function exits from the event loop immediately. +.Fn event_loop +will abort after the next event is completed; +.Fn event_loopbreak +is typically invoked from this event's callback. This behavior is analogous +to the "break;" statement. Subsequent invocations of +.Fn event_loop +will proceed normally. +.Pp +It is the responsibility of the caller to provide these functions with +pre-allocated event structures. +.Pp +.Sh EVENT PRIORITIES +By default +.Nm libevent +schedules all active events with the same priority. +However, sometimes it is desirable to process some events with a higher +priority than others. +For that reason, +.Nm libevent +supports strict priority queues. +Active events with a lower priority are always processed before events +with a higher priority. +.Pp +The number of different priorities can be set initially with the +.Fn event_priority_init +function. +This function should be called before the first call to +.Fn event_dispatch . +The +.Fn event_priority_set +function can be used to assign a priority to an event. +By default, +.Nm libevent +assigns the middle priority to all events unless their priority +is explicitly set. +.Sh THREAD SAFE EVENTS +.Nm Libevent +has experimental support for thread-safe events. +When initializing the library via +.Fn event_init , +an event base is returned. +This event base can be used in conjunction with calls to +.Fn event_base_set , +.Fn event_base_dispatch , +.Fn event_base_loop , +.Fn event_base_loopexit , +.Fn bufferevent_base_set +and +.Fn event_base_free . +.Fn event_base_set +should be called after preparing an event with +.Fn event_set , +as +.Fn event_set +assigns the provided event to the most recently created event base. +.Fn bufferevent_base_set +should be called after preparing a bufferevent with +.Fn bufferevent_new . +.Fn event_base_free +should be used to free memory associated with the event base +when it is no longer needed. +.Sh BUFFERED EVENTS +.Nm libevent +provides an abstraction on top of the regular event callbacks. +This abstraction is called a +.Va "buffered event" . +A buffered event provides input and output buffers that get filled +and drained automatically. +The user of a buffered event no longer deals directly with the IO, +but instead is reading from input and writing to output buffers. +.Pp +A new bufferevent is created by +.Fn bufferevent_new . +The parameter +.Fa fd +specifies the file descriptor from which data is read and written to. +This file descriptor is not allowed to be a +.Xr pipe 2 . +The next three parameters are callbacks. +The read and write callback have the following form: +.Ft void +.Fn "(*cb)" "struct bufferevent *bufev" "void *arg" . +The error callback has the following form: +.Ft void +.Fn "(*cb)" "struct bufferevent *bufev" "short what" "void *arg" . +The argument is specified by the fourth parameter +.Fa "cbarg" . +A +.Fa bufferevent struct +pointer is returned on success, NULL on error. +Both the read and the write callback may be NULL. +The error callback has to be always provided. +.Pp +Once initialized, the bufferevent structure can be used repeatedly with +bufferevent_enable() and bufferevent_disable(). +The flags parameter can be a combination of +.Va EV_READ +and +.Va EV_WRITE . +When read enabled the bufferevent will try to read from the file +descriptor and call the read callback. +The write callback is executed +whenever the output buffer is drained below the write low watermark, +which is +.Va 0 +by default. +.Pp +The +.Fn bufferevent_write +function can be used to write data to the file descriptor. +The data is appended to the output buffer and written to the descriptor +automatically as it becomes available for writing. +.Fn bufferevent_write +returns 0 on success or \-1 on failure. +The +.Fn bufferevent_read +function is used to read data from the input buffer, +returning the amount of data read. +.Pp +If multiple bases are in use, bufferevent_base_set() must be called before +enabling the bufferevent for the first time. +.Sh NON-BLOCKING HTTP SUPPORT +.Nm libevent +provides a very thin HTTP layer that can be used both to host an HTTP +server and also to make HTTP requests. +An HTTP server can be created by calling +.Fn evhttp_new . +It can be bound to any port and address with the +.Fn evhttp_bind_socket +function. +When the HTTP server is no longer used, it can be freed via +.Fn evhttp_free . +.Pp +To be notified of HTTP requests, a user needs to register callbacks with the +HTTP server. +This can be done by calling +.Fn evhttp_set_cb . +The second argument is the URI for which a callback is being registered. +The corresponding callback will receive an +.Va struct evhttp_request +object that contains all information about the request. +.Pp +This section does not document all the possible function calls; please +check +.Va event.h +for the public interfaces. +.Sh ADDITIONAL NOTES +It is possible to disable support for +.Va epoll , kqueue , devpoll , poll +or +.Va select +by setting the environment variable +.Va EVENT_NOEPOLL , EVENT_NOKQUEUE , EVENT_NODEVPOLL , EVENT_NOPOLL +or +.Va EVENT_NOSELECT , +respectively. +By setting the environment variable +.Va EVENT_SHOW_METHOD , +.Nm libevent +displays the kernel notification method that it uses. +.Sh RETURN VALUES +Upon successful completion +.Fn event_add +and +.Fn event_del +return 0. +Otherwise, \-1 is returned and the global variable errno is +set to indicate the error. +.Sh SEE ALSO +.Xr kqueue 2 , +.Xr poll 2 , +.Xr select 2 , +.Xr evdns 3 , +.Xr timeout 9 +.Sh HISTORY +The +.Nm event +API manpage is based on the +.Xr timeout 9 +manpage by Artur Grabowski. +The port of +.Nm libevent +to Windows is due to Michael A. Davis. +Support for real-time signals is due to Taral. +.Sh AUTHORS +The +.Nm event +library was written by Niels Provos. +.Sh BUGS +This documentation is neither complete nor authoritative. +If you are in doubt about the usage of this API then +check the source code to find out how it works, write +up the missing piece of documentation and send it to +me for inclusion in this man page. diff -Nru mysql-5.7-5.7.25/extra/libevent/event.c mysql-5.7-5.7.26/extra/libevent/event.c --- mysql-5.7-5.7.25/extra/libevent/event.c 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/event.c 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,3940 @@ +/* + * Copyright (c) 2000-2007 Niels Provos + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#include "event2/event-config.h" +#include "evconfig-private.h" + +#ifdef _WIN32 +#include +#define WIN32_LEAN_AND_MEAN +#include +#undef WIN32_LEAN_AND_MEAN +#endif +#include +#if !defined(_WIN32) && defined(EVENT__HAVE_SYS_TIME_H) +#include +#endif +#include +#ifdef EVENT__HAVE_SYS_SOCKET_H +#include +#endif +#include +#include +#ifdef EVENT__HAVE_UNISTD_H +#include +#endif +#include +#include +#include +#include +#include +#include + +#include "event2/event.h" +#include "event2/event_struct.h" +#include "event2/event_compat.h" +#include "event-internal.h" +#include "defer-internal.h" +#include "evthread-internal.h" +#include "event2/thread.h" +#include "event2/util.h" +#include "log-internal.h" +#include "evmap-internal.h" +#include "iocp-internal.h" +#include "changelist-internal.h" +#define HT_NO_CACHE_HASH_VALUES +#include "ht-internal.h" +#include "util-internal.h" + + +#ifdef EVENT__HAVE_WORKING_KQUEUE +#include "kqueue-internal.h" +#endif + +#ifdef EVENT__HAVE_EVENT_PORTS +extern const struct eventop evportops; +#endif +#ifdef EVENT__HAVE_SELECT +extern const struct eventop selectops; +#endif +#ifdef EVENT__HAVE_POLL +extern const struct eventop pollops; +#endif +#ifdef EVENT__HAVE_EPOLL +extern const struct eventop epollops; +#endif +#ifdef EVENT__HAVE_WORKING_KQUEUE +extern const struct eventop kqops; +#endif +#ifdef EVENT__HAVE_DEVPOLL +extern const struct eventop devpollops; +#endif +#ifdef _WIN32 +extern const struct eventop win32ops; +#endif + +/* Array of backends in order of preference. */ +static const struct eventop *eventops[] = { +#ifdef EVENT__HAVE_EVENT_PORTS + &evportops, +#endif +#ifdef EVENT__HAVE_WORKING_KQUEUE + &kqops, +#endif +#ifdef EVENT__HAVE_EPOLL + &epollops, +#endif +#ifdef EVENT__HAVE_DEVPOLL + &devpollops, +#endif +#ifdef EVENT__HAVE_POLL + &pollops, +#endif +#ifdef EVENT__HAVE_SELECT + &selectops, +#endif +#ifdef _WIN32 + &win32ops, +#endif + NULL +}; + +/* Global state; deprecated */ +struct event_base *event_global_current_base_ = NULL; +#define current_base event_global_current_base_ + +/* Global state */ + +static void *event_self_cbarg_ptr_ = NULL; + +/* Prototypes */ +static void event_queue_insert_active(struct event_base *, struct event_callback *); +static void event_queue_insert_active_later(struct event_base *, struct event_callback *); +static void event_queue_insert_timeout(struct event_base *, struct event *); +static void event_queue_insert_inserted(struct event_base *, struct event *); +static void event_queue_remove_active(struct event_base *, struct event_callback *); +static void event_queue_remove_active_later(struct event_base *, struct event_callback *); +static void event_queue_remove_timeout(struct event_base *, struct event *); +static void event_queue_remove_inserted(struct event_base *, struct event *); +static void event_queue_make_later_events_active(struct event_base *base); + +static int evthread_make_base_notifiable_nolock_(struct event_base *base); +static int event_del_(struct event *ev, int blocking); + +#ifdef USE_REINSERT_TIMEOUT +/* This code seems buggy; only turn it on if we find out what the trouble is. */ +static void event_queue_reinsert_timeout(struct event_base *,struct event *, int was_common, int is_common, int old_timeout_idx); +#endif + +static int event_haveevents(struct event_base *); + +static int event_process_active(struct event_base *); + +static int timeout_next(struct event_base *, struct timeval **); +static void timeout_process(struct event_base *); + +static inline void event_signal_closure(struct event_base *, struct event *ev); +static inline void event_persist_closure(struct event_base *, struct event *ev); + +static int evthread_notify_base(struct event_base *base); + +static void insert_common_timeout_inorder(struct common_timeout_list *ctl, + struct event *ev); + +#ifndef EVENT__DISABLE_DEBUG_MODE +/* These functions implement a hashtable of which 'struct event *' structures + * have been setup or added. We don't want to trust the content of the struct + * event itself, since we're trying to work through cases where an event gets + * clobbered or freed. Instead, we keep a hashtable indexed by the pointer. + */ + +struct event_debug_entry { + HT_ENTRY(event_debug_entry) node; + const struct event *ptr; + unsigned added : 1; +}; + +static inline unsigned +hash_debug_entry(const struct event_debug_entry *e) +{ + /* We need to do this silliness to convince compilers that we + * honestly mean to cast e->ptr to an integer, and discard any + * part of it that doesn't fit in an unsigned. + */ + unsigned u = (unsigned) ((ev_uintptr_t) e->ptr); + /* Our hashtable implementation is pretty sensitive to low bits, + * and every struct event is over 64 bytes in size, so we can + * just say >>6. */ + return (u >> 6); +} + +static inline int +eq_debug_entry(const struct event_debug_entry *a, + const struct event_debug_entry *b) +{ + return a->ptr == b->ptr; +} + +int event_debug_mode_on_ = 0; + + +#if !defined(EVENT__DISABLE_THREAD_SUPPORT) && !defined(EVENT__DISABLE_DEBUG_MODE) +/** + * @brief debug mode variable which is set for any function/structure that needs + * to be shared across threads (if thread support is enabled). + * + * When and if evthreads are initialized, this variable will be evaluated, + * and if set to something other than zero, this means the evthread setup + * functions were called out of order. + * + * See: "Locks and threading" in the documentation. + */ +int event_debug_created_threadable_ctx_ = 0; +#endif + +/* Set if it's too late to enable event_debug_mode. */ +static int event_debug_mode_too_late = 0; +#ifndef EVENT__DISABLE_THREAD_SUPPORT +static void *event_debug_map_lock_ = NULL; +#endif +static HT_HEAD(event_debug_map, event_debug_entry) global_debug_map = + HT_INITIALIZER(); + +HT_PROTOTYPE(event_debug_map, event_debug_entry, node, hash_debug_entry, + eq_debug_entry) +HT_GENERATE(event_debug_map, event_debug_entry, node, hash_debug_entry, + eq_debug_entry, 0.5, mm_malloc, mm_realloc, mm_free) + +/* Macro: record that ev is now setup (that is, ready for an add) */ +#define event_debug_note_setup_(ev) do { \ + if (event_debug_mode_on_) { \ + struct event_debug_entry *dent,find; \ + find.ptr = (ev); \ + EVLOCK_LOCK(event_debug_map_lock_, 0); \ + dent = HT_FIND(event_debug_map, &global_debug_map, &find); \ + if (dent) { \ + dent->added = 0; \ + } else { \ + dent = mm_malloc(sizeof(*dent)); \ + if (!dent) \ + event_err(1, \ + "Out of memory in debugging code"); \ + dent->ptr = (ev); \ + dent->added = 0; \ + HT_INSERT(event_debug_map, &global_debug_map, dent); \ + } \ + EVLOCK_UNLOCK(event_debug_map_lock_, 0); \ + } \ + event_debug_mode_too_late = 1; \ + } while (0) +/* Macro: record that ev is no longer setup */ +#define event_debug_note_teardown_(ev) do { \ + if (event_debug_mode_on_) { \ + struct event_debug_entry *dent,find; \ + find.ptr = (ev); \ + EVLOCK_LOCK(event_debug_map_lock_, 0); \ + dent = HT_REMOVE(event_debug_map, &global_debug_map, &find); \ + if (dent) \ + mm_free(dent); \ + EVLOCK_UNLOCK(event_debug_map_lock_, 0); \ + } \ + event_debug_mode_too_late = 1; \ + } while (0) +/* Macro: record that ev is now added */ +#define event_debug_note_add_(ev) do { \ + if (event_debug_mode_on_) { \ + struct event_debug_entry *dent,find; \ + find.ptr = (ev); \ + EVLOCK_LOCK(event_debug_map_lock_, 0); \ + dent = HT_FIND(event_debug_map, &global_debug_map, &find); \ + if (dent) { \ + dent->added = 1; \ + } else { \ + event_errx(EVENT_ERR_ABORT_, \ + "%s: noting an add on a non-setup event %p" \ + " (events: 0x%x, fd: "EV_SOCK_FMT \ + ", flags: 0x%x)", \ + __func__, (ev), (ev)->ev_events, \ + EV_SOCK_ARG((ev)->ev_fd), (ev)->ev_flags); \ + } \ + EVLOCK_UNLOCK(event_debug_map_lock_, 0); \ + } \ + event_debug_mode_too_late = 1; \ + } while (0) +/* Macro: record that ev is no longer added */ +#define event_debug_note_del_(ev) do { \ + if (event_debug_mode_on_) { \ + struct event_debug_entry *dent,find; \ + find.ptr = (ev); \ + EVLOCK_LOCK(event_debug_map_lock_, 0); \ + dent = HT_FIND(event_debug_map, &global_debug_map, &find); \ + if (dent) { \ + dent->added = 0; \ + } else { \ + event_errx(EVENT_ERR_ABORT_, \ + "%s: noting a del on a non-setup event %p" \ + " (events: 0x%x, fd: "EV_SOCK_FMT \ + ", flags: 0x%x)", \ + __func__, (ev), (ev)->ev_events, \ + EV_SOCK_ARG((ev)->ev_fd), (ev)->ev_flags); \ + } \ + EVLOCK_UNLOCK(event_debug_map_lock_, 0); \ + } \ + event_debug_mode_too_late = 1; \ + } while (0) +/* Macro: assert that ev is setup (i.e., okay to add or inspect) */ +#define event_debug_assert_is_setup_(ev) do { \ + if (event_debug_mode_on_) { \ + struct event_debug_entry *dent,find; \ + find.ptr = (ev); \ + EVLOCK_LOCK(event_debug_map_lock_, 0); \ + dent = HT_FIND(event_debug_map, &global_debug_map, &find); \ + if (!dent) { \ + event_errx(EVENT_ERR_ABORT_, \ + "%s called on a non-initialized event %p" \ + " (events: 0x%x, fd: "EV_SOCK_FMT\ + ", flags: 0x%x)", \ + __func__, (ev), (ev)->ev_events, \ + EV_SOCK_ARG((ev)->ev_fd), (ev)->ev_flags); \ + } \ + EVLOCK_UNLOCK(event_debug_map_lock_, 0); \ + } \ + } while (0) +/* Macro: assert that ev is not added (i.e., okay to tear down or set + * up again) */ +#define event_debug_assert_not_added_(ev) do { \ + if (event_debug_mode_on_) { \ + struct event_debug_entry *dent,find; \ + find.ptr = (ev); \ + EVLOCK_LOCK(event_debug_map_lock_, 0); \ + dent = HT_FIND(event_debug_map, &global_debug_map, &find); \ + if (dent && dent->added) { \ + event_errx(EVENT_ERR_ABORT_, \ + "%s called on an already added event %p" \ + " (events: 0x%x, fd: "EV_SOCK_FMT", " \ + "flags: 0x%x)", \ + __func__, (ev), (ev)->ev_events, \ + EV_SOCK_ARG((ev)->ev_fd), (ev)->ev_flags); \ + } \ + EVLOCK_UNLOCK(event_debug_map_lock_, 0); \ + } \ + } while (0) +#else +#define event_debug_note_setup_(ev) \ + ((void)0) +#define event_debug_note_teardown_(ev) \ + ((void)0) +#define event_debug_note_add_(ev) \ + ((void)0) +#define event_debug_note_del_(ev) \ + ((void)0) +#define event_debug_assert_is_setup_(ev) \ + ((void)0) +#define event_debug_assert_not_added_(ev) \ + ((void)0) +#endif + +#define EVENT_BASE_ASSERT_LOCKED(base) \ + EVLOCK_ASSERT_LOCKED((base)->th_base_lock) + +/* How often (in seconds) do we check for changes in wall clock time relative + * to monotonic time? Set this to -1 for 'never.' */ +#define CLOCK_SYNC_INTERVAL 5 + +/** Set 'tp' to the current time according to 'base'. We must hold the lock + * on 'base'. If there is a cached time, return it. Otherwise, use + * clock_gettime or gettimeofday as appropriate to find out the right time. + * Return 0 on success, -1 on failure. + */ +static int +gettime(struct event_base *base, struct timeval *tp) +{ + EVENT_BASE_ASSERT_LOCKED(base); + + if (base->tv_cache.tv_sec) { + *tp = base->tv_cache; + return (0); + } + + if (evutil_gettime_monotonic_(&base->monotonic_timer, tp) == -1) { + return -1; + } + + if (base->last_updated_clock_diff + CLOCK_SYNC_INTERVAL + < tp->tv_sec) { + struct timeval tv; + evutil_gettimeofday(&tv,NULL); + evutil_timersub(&tv, tp, &base->tv_clock_diff); + base->last_updated_clock_diff = tp->tv_sec; + } + + return 0; +} + +int +event_base_gettimeofday_cached(struct event_base *base, struct timeval *tv) +{ + int r; + if (!base) { + base = current_base; + if (!current_base) + return evutil_gettimeofday(tv, NULL); + } + + EVBASE_ACQUIRE_LOCK(base, th_base_lock); + if (base->tv_cache.tv_sec == 0) { + r = evutil_gettimeofday(tv, NULL); + } else { + evutil_timeradd(&base->tv_cache, &base->tv_clock_diff, tv); + r = 0; + } + EVBASE_RELEASE_LOCK(base, th_base_lock); + return r; +} + +/** Make 'base' have no current cached time. */ +static inline void +clear_time_cache(struct event_base *base) +{ + base->tv_cache.tv_sec = 0; +} + +/** Replace the cached time in 'base' with the current time. */ +static inline void +update_time_cache(struct event_base *base) +{ + base->tv_cache.tv_sec = 0; + if (!(base->flags & EVENT_BASE_FLAG_NO_CACHE_TIME)) + gettime(base, &base->tv_cache); +} + +int +event_base_update_cache_time(struct event_base *base) +{ + + if (!base) { + base = current_base; + if (!current_base) + return -1; + } + + EVBASE_ACQUIRE_LOCK(base, th_base_lock); + if (base->running_loop) + update_time_cache(base); + EVBASE_RELEASE_LOCK(base, th_base_lock); + return 0; +} + +static inline struct event * +event_callback_to_event(struct event_callback *evcb) +{ + EVUTIL_ASSERT((evcb->evcb_flags & EVLIST_INIT)); + return EVUTIL_UPCAST(evcb, struct event, ev_evcallback); +} + +static inline struct event_callback * +event_to_event_callback(struct event *ev) +{ + return &ev->ev_evcallback; +} + +struct event_base * +event_init(void) +{ + struct event_base *base = event_base_new_with_config(NULL); + + if (base == NULL) { + event_errx(1, "%s: Unable to construct event_base", __func__); + return NULL; + } + + current_base = base; + + return (base); +} + +struct event_base * +event_base_new(void) +{ + struct event_base *base = NULL; + struct event_config *cfg = event_config_new(); + if (cfg) { + base = event_base_new_with_config(cfg); + event_config_free(cfg); + } + return base; +} + +/** Return true iff 'method' is the name of a method that 'cfg' tells us to + * avoid. */ +static int +event_config_is_avoided_method(const struct event_config *cfg, + const char *method) +{ + struct event_config_entry *entry; + + TAILQ_FOREACH(entry, &cfg->entries, next) { + if (entry->avoid_method != NULL && + strcmp(entry->avoid_method, method) == 0) + return (1); + } + + return (0); +} + +/** Return true iff 'method' is disabled according to the environment. */ +static int +event_is_method_disabled(const char *name) +{ + char environment[64]; + int i; + + evutil_snprintf(environment, sizeof(environment), "EVENT_NO%s", name); + for (i = 8; environment[i] != '\0'; ++i) + environment[i] = EVUTIL_TOUPPER_(environment[i]); + /* Note that evutil_getenv_() ignores the environment entirely if + * we're setuid */ + return (evutil_getenv_(environment) != NULL); +} + +int +event_base_get_features(const struct event_base *base) +{ + return base->evsel->features; +} + +void +event_enable_debug_mode(void) +{ +#ifndef EVENT__DISABLE_DEBUG_MODE + if (event_debug_mode_on_) + event_errx(1, "%s was called twice!", __func__); + if (event_debug_mode_too_late) + event_errx(1, "%s must be called *before* creating any events " + "or event_bases",__func__); + + event_debug_mode_on_ = 1; + + HT_INIT(event_debug_map, &global_debug_map); +#endif +} + +void +event_disable_debug_mode(void) +{ +#ifndef EVENT__DISABLE_DEBUG_MODE + struct event_debug_entry **ent, *victim; + + EVLOCK_LOCK(event_debug_map_lock_, 0); + for (ent = HT_START(event_debug_map, &global_debug_map); ent; ) { + victim = *ent; + ent = HT_NEXT_RMV(event_debug_map, &global_debug_map, ent); + mm_free(victim); + } + HT_CLEAR(event_debug_map, &global_debug_map); + EVLOCK_UNLOCK(event_debug_map_lock_ , 0); + + event_debug_mode_on_ = 0; +#endif +} + +struct event_base * +event_base_new_with_config(const struct event_config *cfg) +{ + int i; + struct event_base *base; + int should_check_environment; + +#ifndef EVENT__DISABLE_DEBUG_MODE + event_debug_mode_too_late = 1; +#endif + + if ((base = mm_calloc(1, sizeof(struct event_base))) == NULL) { + event_warn("%s: calloc", __func__); + return NULL; + } + + if (cfg) + base->flags = cfg->flags; + + should_check_environment = + !(cfg && (cfg->flags & EVENT_BASE_FLAG_IGNORE_ENV)); + + { + struct timeval tmp; + int precise_time = + cfg && (cfg->flags & EVENT_BASE_FLAG_PRECISE_TIMER); + int flags; + if (should_check_environment && !precise_time) { + precise_time = evutil_getenv_("EVENT_PRECISE_TIMER") != NULL; + base->flags |= EVENT_BASE_FLAG_PRECISE_TIMER; + } + flags = precise_time ? EV_MONOT_PRECISE : 0; + evutil_configure_monotonic_time_(&base->monotonic_timer, flags); + + gettime(base, &tmp); + } + + min_heap_ctor_(&base->timeheap); + + base->sig.ev_signal_pair[0] = -1; + base->sig.ev_signal_pair[1] = -1; + base->th_notify_fd[0] = -1; + base->th_notify_fd[1] = -1; + + TAILQ_INIT(&base->active_later_queue); + + evmap_io_initmap_(&base->io); + evmap_signal_initmap_(&base->sigmap); + event_changelist_init_(&base->changelist); + + base->evbase = NULL; + + if (cfg) { + memcpy(&base->max_dispatch_time, + &cfg->max_dispatch_interval, sizeof(struct timeval)); + base->limit_callbacks_after_prio = + cfg->limit_callbacks_after_prio; + } else { + base->max_dispatch_time.tv_sec = -1; + base->limit_callbacks_after_prio = 1; + } + if (cfg && cfg->max_dispatch_callbacks >= 0) { + base->max_dispatch_callbacks = cfg->max_dispatch_callbacks; + } else { + base->max_dispatch_callbacks = INT_MAX; + } + if (base->max_dispatch_callbacks == INT_MAX && + base->max_dispatch_time.tv_sec == -1) + base->limit_callbacks_after_prio = INT_MAX; + + for (i = 0; eventops[i] && !base->evbase; i++) { + if (cfg != NULL) { + /* determine if this backend should be avoided */ + if (event_config_is_avoided_method(cfg, + eventops[i]->name)) + continue; + if ((eventops[i]->features & cfg->require_features) + != cfg->require_features) + continue; + } + + /* also obey the environment variables */ + if (should_check_environment && + event_is_method_disabled(eventops[i]->name)) + continue; + + base->evsel = eventops[i]; + + base->evbase = base->evsel->init(base); + } + + if (base->evbase == NULL) { + event_warnx("%s: no event mechanism available", + __func__); + base->evsel = NULL; + event_base_free(base); + return NULL; + } + + if (evutil_getenv_("EVENT_SHOW_METHOD")) + event_msgx("libevent using: %s", base->evsel->name); + + /* allocate a single active event queue */ + if (event_base_priority_init(base, 1) < 0) { + event_base_free(base); + return NULL; + } + + /* prepare for threading */ + +#if !defined(EVENT__DISABLE_THREAD_SUPPORT) && !defined(EVENT__DISABLE_DEBUG_MODE) + event_debug_created_threadable_ctx_ = 1; +#endif + +#ifndef EVENT__DISABLE_THREAD_SUPPORT + if (EVTHREAD_LOCKING_ENABLED() && + (!cfg || !(cfg->flags & EVENT_BASE_FLAG_NOLOCK))) { + int r; + EVTHREAD_ALLOC_LOCK(base->th_base_lock, 0); + EVTHREAD_ALLOC_COND(base->current_event_cond); + r = evthread_make_base_notifiable(base); + if (r<0) { + event_warnx("%s: Unable to make base notifiable.", __func__); + event_base_free(base); + return NULL; + } + } +#endif + +#ifdef _WIN32 + if (cfg && (cfg->flags & EVENT_BASE_FLAG_STARTUP_IOCP)) + event_base_start_iocp_(base, cfg->n_cpus_hint); +#endif + + return (base); +} + +int +event_base_start_iocp_(struct event_base *base, int n_cpus) +{ +#ifdef _WIN32 + if (base->iocp) + return 0; + base->iocp = event_iocp_port_launch_(n_cpus); + if (!base->iocp) { + event_warnx("%s: Couldn't launch IOCP", __func__); + return -1; + } + return 0; +#else + return -1; +#endif +} + +void +event_base_stop_iocp_(struct event_base *base) +{ +#ifdef _WIN32 + int rv; + + if (!base->iocp) + return; + rv = event_iocp_shutdown_(base->iocp, -1); + EVUTIL_ASSERT(rv >= 0); + base->iocp = NULL; +#endif +} + +static int +event_base_cancel_single_callback_(struct event_base *base, + struct event_callback *evcb, + int run_finalizers) +{ + int result = 0; + + if (evcb->evcb_flags & EVLIST_INIT) { + struct event *ev = event_callback_to_event(evcb); + if (!(ev->ev_flags & EVLIST_INTERNAL)) { + event_del_(ev, EVENT_DEL_EVEN_IF_FINALIZING); + result = 1; + } + } else { + EVBASE_ACQUIRE_LOCK(base, th_base_lock); + event_callback_cancel_nolock_(base, evcb, 1); + EVBASE_RELEASE_LOCK(base, th_base_lock); + result = 1; + } + + if (run_finalizers && (evcb->evcb_flags & EVLIST_FINALIZING)) { + switch (evcb->evcb_closure) { + case EV_CLOSURE_EVENT_FINALIZE: + case EV_CLOSURE_EVENT_FINALIZE_FREE: { + struct event *ev = event_callback_to_event(evcb); + ev->ev_evcallback.evcb_cb_union.evcb_evfinalize(ev, ev->ev_arg); + if (evcb->evcb_closure == EV_CLOSURE_EVENT_FINALIZE_FREE) + mm_free(ev); + break; + } + case EV_CLOSURE_CB_FINALIZE: + evcb->evcb_cb_union.evcb_cbfinalize(evcb, evcb->evcb_arg); + break; + default: + break; + } + } + return result; +} + +static int event_base_free_queues_(struct event_base *base, int run_finalizers) +{ + int deleted = 0, i; + + for (i = 0; i < base->nactivequeues; ++i) { + struct event_callback *evcb, *next; + for (evcb = TAILQ_FIRST(&base->activequeues[i]); evcb; ) { + next = TAILQ_NEXT(evcb, evcb_active_next); + deleted += event_base_cancel_single_callback_(base, evcb, run_finalizers); + evcb = next; + } + } + + { + struct event_callback *evcb; + while ((evcb = TAILQ_FIRST(&base->active_later_queue))) { + deleted += event_base_cancel_single_callback_(base, evcb, run_finalizers); + } + } + + return deleted; +} + +static void +event_base_free_(struct event_base *base, int run_finalizers) +{ + int i, n_deleted=0; + struct event *ev; + /* XXXX grab the lock? If there is contention when one thread frees + * the base, then the contending thread will be very sad soon. */ + + /* event_base_free(NULL) is how to free the current_base if we + * made it with event_init and forgot to hold a reference to it. */ + if (base == NULL && current_base) + base = current_base; + /* Don't actually free NULL. */ + if (base == NULL) { + event_warnx("%s: no base to free", __func__); + return; + } + /* XXX(niels) - check for internal events first */ + +#ifdef _WIN32 + event_base_stop_iocp_(base); +#endif + + /* threading fds if we have them */ + if (base->th_notify_fd[0] != -1) { + event_del(&base->th_notify); + EVUTIL_CLOSESOCKET(base->th_notify_fd[0]); + if (base->th_notify_fd[1] != -1) + EVUTIL_CLOSESOCKET(base->th_notify_fd[1]); + base->th_notify_fd[0] = -1; + base->th_notify_fd[1] = -1; + event_debug_unassign(&base->th_notify); + } + + /* Delete all non-internal events. */ + evmap_delete_all_(base); + + while ((ev = min_heap_top_(&base->timeheap)) != NULL) { + event_del(ev); + ++n_deleted; + } + for (i = 0; i < base->n_common_timeouts; ++i) { + struct common_timeout_list *ctl = + base->common_timeout_queues[i]; + event_del(&ctl->timeout_event); /* Internal; doesn't count */ + event_debug_unassign(&ctl->timeout_event); + for (ev = TAILQ_FIRST(&ctl->events); ev; ) { + struct event *next = TAILQ_NEXT(ev, + ev_timeout_pos.ev_next_with_common_timeout); + if (!(ev->ev_flags & EVLIST_INTERNAL)) { + event_del(ev); + ++n_deleted; + } + ev = next; + } + mm_free(ctl); + } + if (base->common_timeout_queues) + mm_free(base->common_timeout_queues); + + for (;;) { + /* For finalizers we can register yet another finalizer out from + * finalizer, and iff finalizer will be in active_later_queue we can + * add finalizer to activequeues, and we will have events in + * activequeues after this function returns, which is not what we want + * (we even have an assertion for this). + * + * A simple case is bufferevent with underlying (i.e. filters). + */ + int i = event_base_free_queues_(base, run_finalizers); + if (!i) { + break; + } + n_deleted += i; + } + + if (n_deleted) + event_debug(("%s: %d events were still set in base", + __func__, n_deleted)); + + while (LIST_FIRST(&base->once_events)) { + struct event_once *eonce = LIST_FIRST(&base->once_events); + LIST_REMOVE(eonce, next_once); + mm_free(eonce); + } + + if (base->evsel != NULL && base->evsel->dealloc != NULL) + base->evsel->dealloc(base); + + for (i = 0; i < base->nactivequeues; ++i) + EVUTIL_ASSERT(TAILQ_EMPTY(&base->activequeues[i])); + + EVUTIL_ASSERT(min_heap_empty_(&base->timeheap)); + min_heap_dtor_(&base->timeheap); + + mm_free(base->activequeues); + + evmap_io_clear_(&base->io); + evmap_signal_clear_(&base->sigmap); + event_changelist_freemem_(&base->changelist); + + EVTHREAD_FREE_LOCK(base->th_base_lock, 0); + EVTHREAD_FREE_COND(base->current_event_cond); + + /* If we're freeing current_base, there won't be a current_base. */ + if (base == current_base) + current_base = NULL; + mm_free(base); +} + +void +event_base_free_nofinalize(struct event_base *base) +{ + event_base_free_(base, 0); +} + +void +event_base_free(struct event_base *base) +{ + event_base_free_(base, 1); +} + +/* Fake eventop; used to disable the backend temporarily inside event_reinit + * so that we can call event_del() on an event without telling the backend. + */ +static int +nil_backend_del(struct event_base *b, evutil_socket_t fd, short old, + short events, void *fdinfo) +{ + return 0; +} +const struct eventop nil_eventop = { + "nil", + NULL, /* init: unused. */ + NULL, /* add: unused. */ + nil_backend_del, /* del: used, so needs to be killed. */ + NULL, /* dispatch: unused. */ + NULL, /* dealloc: unused. */ + 0, 0, 0 +}; + +/* reinitialize the event base after a fork */ +int +event_reinit(struct event_base *base) +{ + const struct eventop *evsel; + int res = 0; + int was_notifiable = 0; + int had_signal_added = 0; + + EVBASE_ACQUIRE_LOCK(base, th_base_lock); + + evsel = base->evsel; + + /* check if this event mechanism requires reinit on the backend */ + if (evsel->need_reinit) { + /* We're going to call event_del() on our notify events (the + * ones that tell about signals and wakeup events). But we + * don't actually want to tell the backend to change its + * state, since it might still share some resource (a kqueue, + * an epoll fd) with the parent process, and we don't want to + * delete the fds from _that_ backend, we temporarily stub out + * the evsel with a replacement. + */ + base->evsel = &nil_eventop; + } + + /* We need to re-create a new signal-notification fd and a new + * thread-notification fd. Otherwise, we'll still share those with + * the parent process, which would make any notification sent to them + * get received by one or both of the event loops, more or less at + * random. + */ + if (base->sig.ev_signal_added) { + event_del_nolock_(&base->sig.ev_signal, EVENT_DEL_AUTOBLOCK); + event_debug_unassign(&base->sig.ev_signal); + memset(&base->sig.ev_signal, 0, sizeof(base->sig.ev_signal)); + had_signal_added = 1; + base->sig.ev_signal_added = 0; + } + if (base->sig.ev_signal_pair[0] != -1) + EVUTIL_CLOSESOCKET(base->sig.ev_signal_pair[0]); + if (base->sig.ev_signal_pair[1] != -1) + EVUTIL_CLOSESOCKET(base->sig.ev_signal_pair[1]); + if (base->th_notify_fn != NULL) { + was_notifiable = 1; + base->th_notify_fn = NULL; + } + if (base->th_notify_fd[0] != -1) { + event_del_nolock_(&base->th_notify, EVENT_DEL_AUTOBLOCK); + EVUTIL_CLOSESOCKET(base->th_notify_fd[0]); + if (base->th_notify_fd[1] != -1) + EVUTIL_CLOSESOCKET(base->th_notify_fd[1]); + base->th_notify_fd[0] = -1; + base->th_notify_fd[1] = -1; + event_debug_unassign(&base->th_notify); + } + + /* Replace the original evsel. */ + base->evsel = evsel; + + if (evsel->need_reinit) { + /* Reconstruct the backend through brute-force, so that we do + * not share any structures with the parent process. For some + * backends, this is necessary: epoll and kqueue, for + * instance, have events associated with a kernel + * structure. If didn't reinitialize, we'd share that + * structure with the parent process, and any changes made by + * the parent would affect our backend's behavior (and vice + * versa). + */ + if (base->evsel->dealloc != NULL) + base->evsel->dealloc(base); + base->evbase = evsel->init(base); + if (base->evbase == NULL) { + event_errx(1, + "%s: could not reinitialize event mechanism", + __func__); + res = -1; + goto done; + } + + /* Empty out the changelist (if any): we are starting from a + * blank slate. */ + event_changelist_freemem_(&base->changelist); + + /* Tell the event maps to re-inform the backend about all + * pending events. This will make the signal notification + * event get re-created if necessary. */ + if (evmap_reinit_(base) < 0) + res = -1; + } else { + res = evsig_init_(base); + if (res == 0 && had_signal_added) { + res = event_add_nolock_(&base->sig.ev_signal, NULL, 0); + if (res == 0) + base->sig.ev_signal_added = 1; + } + } + + /* If we were notifiable before, and nothing just exploded, become + * notifiable again. */ + if (was_notifiable && res == 0) + res = evthread_make_base_notifiable_nolock_(base); + +done: + EVBASE_RELEASE_LOCK(base, th_base_lock); + return (res); +} + +/* Get the monotonic time for this event_base' timer */ +int +event_gettime_monotonic(struct event_base *base, struct timeval *tv) +{ + int rv = -1; + + if (base && tv) { + EVBASE_ACQUIRE_LOCK(base, th_base_lock); + rv = evutil_gettime_monotonic_(&(base->monotonic_timer), tv); + EVBASE_RELEASE_LOCK(base, th_base_lock); + } + + return rv; +} + +const char ** +event_get_supported_methods(void) +{ + static const char **methods = NULL; + const struct eventop **method; + const char **tmp; + int i = 0, k; + + /* count all methods */ + for (method = &eventops[0]; *method != NULL; ++method) { + ++i; + } + + /* allocate one more than we need for the NULL pointer */ + tmp = mm_calloc((i + 1), sizeof(char *)); + if (tmp == NULL) + return (NULL); + + /* populate the array with the supported methods */ + for (k = 0, i = 0; eventops[k] != NULL; ++k) { + tmp[i++] = eventops[k]->name; + } + tmp[i] = NULL; + + if (methods != NULL) + mm_free((char**)methods); + + methods = tmp; + + return (methods); +} + +struct event_config * +event_config_new(void) +{ + struct event_config *cfg = mm_calloc(1, sizeof(*cfg)); + + if (cfg == NULL) + return (NULL); + + TAILQ_INIT(&cfg->entries); + cfg->max_dispatch_interval.tv_sec = -1; + cfg->max_dispatch_callbacks = INT_MAX; + cfg->limit_callbacks_after_prio = 1; + + return (cfg); +} + +static void +event_config_entry_free(struct event_config_entry *entry) +{ + if (entry->avoid_method != NULL) + mm_free((char *)entry->avoid_method); + mm_free(entry); +} + +void +event_config_free(struct event_config *cfg) +{ + struct event_config_entry *entry; + + while ((entry = TAILQ_FIRST(&cfg->entries)) != NULL) { + TAILQ_REMOVE(&cfg->entries, entry, next); + event_config_entry_free(entry); + } + mm_free(cfg); +} + +int +event_config_set_flag(struct event_config *cfg, int flag) +{ + if (!cfg) + return -1; + cfg->flags |= flag; + return 0; +} + +int +event_config_avoid_method(struct event_config *cfg, const char *method) +{ + struct event_config_entry *entry = mm_malloc(sizeof(*entry)); + if (entry == NULL) + return (-1); + + if ((entry->avoid_method = mm_strdup(method)) == NULL) { + mm_free(entry); + return (-1); + } + + TAILQ_INSERT_TAIL(&cfg->entries, entry, next); + + return (0); +} + +int +event_config_require_features(struct event_config *cfg, + int features) +{ + if (!cfg) + return (-1); + cfg->require_features = features; + return (0); +} + +int +event_config_set_num_cpus_hint(struct event_config *cfg, int cpus) +{ + if (!cfg) + return (-1); + cfg->n_cpus_hint = cpus; + return (0); +} + +int +event_config_set_max_dispatch_interval(struct event_config *cfg, + const struct timeval *max_interval, int max_callbacks, int min_priority) +{ + if (max_interval) + memcpy(&cfg->max_dispatch_interval, max_interval, + sizeof(struct timeval)); + else + cfg->max_dispatch_interval.tv_sec = -1; + cfg->max_dispatch_callbacks = + max_callbacks >= 0 ? max_callbacks : INT_MAX; + if (min_priority < 0) + min_priority = 0; + cfg->limit_callbacks_after_prio = min_priority; + return (0); +} + +int +event_priority_init(int npriorities) +{ + return event_base_priority_init(current_base, npriorities); +} + +int +event_base_priority_init(struct event_base *base, int npriorities) +{ + int i, r; + r = -1; + + EVBASE_ACQUIRE_LOCK(base, th_base_lock); + + if (N_ACTIVE_CALLBACKS(base) || npriorities < 1 + || npriorities >= EVENT_MAX_PRIORITIES) + goto err; + + if (npriorities == base->nactivequeues) + goto ok; + + if (base->nactivequeues) { + mm_free(base->activequeues); + base->nactivequeues = 0; + } + + /* Allocate our priority queues */ + base->activequeues = (struct evcallback_list *) + mm_calloc(npriorities, sizeof(struct evcallback_list)); + if (base->activequeues == NULL) { + event_warn("%s: calloc", __func__); + goto err; + } + base->nactivequeues = npriorities; + + for (i = 0; i < base->nactivequeues; ++i) { + TAILQ_INIT(&base->activequeues[i]); + } + +ok: + r = 0; +err: + EVBASE_RELEASE_LOCK(base, th_base_lock); + return (r); +} + +int +event_base_get_npriorities(struct event_base *base) +{ + + int n; + if (base == NULL) + base = current_base; + + EVBASE_ACQUIRE_LOCK(base, th_base_lock); + n = base->nactivequeues; + EVBASE_RELEASE_LOCK(base, th_base_lock); + return (n); +} + +int +event_base_get_num_events(struct event_base *base, unsigned int type) +{ + int r = 0; + + EVBASE_ACQUIRE_LOCK(base, th_base_lock); + + if (type & EVENT_BASE_COUNT_ACTIVE) + r += base->event_count_active; + + if (type & EVENT_BASE_COUNT_VIRTUAL) + r += base->virtual_event_count; + + if (type & EVENT_BASE_COUNT_ADDED) + r += base->event_count; + + EVBASE_RELEASE_LOCK(base, th_base_lock); + + return r; +} + +int +event_base_get_max_events(struct event_base *base, unsigned int type, int clear) +{ + int r = 0; + + EVBASE_ACQUIRE_LOCK(base, th_base_lock); + + if (type & EVENT_BASE_COUNT_ACTIVE) { + r += base->event_count_active_max; + if (clear) + base->event_count_active_max = 0; + } + + if (type & EVENT_BASE_COUNT_VIRTUAL) { + r += base->virtual_event_count_max; + if (clear) + base->virtual_event_count_max = 0; + } + + if (type & EVENT_BASE_COUNT_ADDED) { + r += base->event_count_max; + if (clear) + base->event_count_max = 0; + } + + EVBASE_RELEASE_LOCK(base, th_base_lock); + + return r; +} + +/* Returns true iff we're currently watching any events. */ +static int +event_haveevents(struct event_base *base) +{ + /* Caller must hold th_base_lock */ + return (base->virtual_event_count > 0 || base->event_count > 0); +} + +/* "closure" function called when processing active signal events */ +static inline void +event_signal_closure(struct event_base *base, struct event *ev) +{ + short ncalls; + int should_break; + + /* Allows deletes to work */ + ncalls = ev->ev_ncalls; + if (ncalls != 0) + ev->ev_pncalls = &ncalls; + EVBASE_RELEASE_LOCK(base, th_base_lock); + while (ncalls) { + ncalls--; + ev->ev_ncalls = ncalls; + if (ncalls == 0) + ev->ev_pncalls = NULL; + (*ev->ev_callback)(ev->ev_fd, ev->ev_res, ev->ev_arg); + + EVBASE_ACQUIRE_LOCK(base, th_base_lock); + should_break = base->event_break; + EVBASE_RELEASE_LOCK(base, th_base_lock); + + if (should_break) { + if (ncalls != 0) + ev->ev_pncalls = NULL; + return; + } + } +} + +/* Common timeouts are special timeouts that are handled as queues rather than + * in the minheap. This is more efficient than the minheap if we happen to + * know that we're going to get several thousands of timeout events all with + * the same timeout value. + * + * Since all our timeout handling code assumes timevals can be copied, + * assigned, etc, we can't use "magic pointer" to encode these common + * timeouts. Searching through a list to see if every timeout is common could + * also get inefficient. Instead, we take advantage of the fact that tv_usec + * is 32 bits long, but only uses 20 of those bits (since it can never be over + * 999999.) We use the top bits to encode 4 bites of magic number, and 8 bits + * of index into the event_base's aray of common timeouts. + */ + +#define MICROSECONDS_MASK COMMON_TIMEOUT_MICROSECONDS_MASK +#define COMMON_TIMEOUT_IDX_MASK 0x0ff00000 +#define COMMON_TIMEOUT_IDX_SHIFT 20 +#define COMMON_TIMEOUT_MASK 0xf0000000 +#define COMMON_TIMEOUT_MAGIC 0x50000000 + +#define COMMON_TIMEOUT_IDX(tv) \ + (((tv)->tv_usec & COMMON_TIMEOUT_IDX_MASK)>>COMMON_TIMEOUT_IDX_SHIFT) + +/** Return true iff if 'tv' is a common timeout in 'base' */ +static inline int +is_common_timeout(const struct timeval *tv, + const struct event_base *base) +{ + int idx; + if ((tv->tv_usec & COMMON_TIMEOUT_MASK) != COMMON_TIMEOUT_MAGIC) + return 0; + idx = COMMON_TIMEOUT_IDX(tv); + return idx < base->n_common_timeouts; +} + +/* True iff tv1 and tv2 have the same common-timeout index, or if neither + * one is a common timeout. */ +static inline int +is_same_common_timeout(const struct timeval *tv1, const struct timeval *tv2) +{ + return (tv1->tv_usec & ~MICROSECONDS_MASK) == + (tv2->tv_usec & ~MICROSECONDS_MASK); +} + +/** Requires that 'tv' is a common timeout. Return the corresponding + * common_timeout_list. */ +static inline struct common_timeout_list * +get_common_timeout_list(struct event_base *base, const struct timeval *tv) +{ + return base->common_timeout_queues[COMMON_TIMEOUT_IDX(tv)]; +} + +#if 0 +static inline int +common_timeout_ok(const struct timeval *tv, + struct event_base *base) +{ + const struct timeval *expect = + &get_common_timeout_list(base, tv)->duration; + return tv->tv_sec == expect->tv_sec && + tv->tv_usec == expect->tv_usec; +} +#endif + +/* Add the timeout for the first event in given common timeout list to the + * event_base's minheap. */ +static void +common_timeout_schedule(struct common_timeout_list *ctl, + const struct timeval *now, struct event *head) +{ + struct timeval timeout = head->ev_timeout; + timeout.tv_usec &= MICROSECONDS_MASK; + event_add_nolock_(&ctl->timeout_event, &timeout, 1); +} + +/* Callback: invoked when the timeout for a common timeout queue triggers. + * This means that (at least) the first event in that queue should be run, + * and the timeout should be rescheduled if there are more events. */ +static void +common_timeout_callback(evutil_socket_t fd, short what, void *arg) +{ + struct timeval now; + struct common_timeout_list *ctl = arg; + struct event_base *base = ctl->base; + struct event *ev = NULL; + EVBASE_ACQUIRE_LOCK(base, th_base_lock); + gettime(base, &now); + while (1) { + ev = TAILQ_FIRST(&ctl->events); + if (!ev || ev->ev_timeout.tv_sec > now.tv_sec || + (ev->ev_timeout.tv_sec == now.tv_sec && + (ev->ev_timeout.tv_usec&MICROSECONDS_MASK) > now.tv_usec)) + break; + event_del_nolock_(ev, EVENT_DEL_NOBLOCK); + event_active_nolock_(ev, EV_TIMEOUT, 1); + } + if (ev) + common_timeout_schedule(ctl, &now, ev); + EVBASE_RELEASE_LOCK(base, th_base_lock); +} + +#define MAX_COMMON_TIMEOUTS 256 + +const struct timeval * +event_base_init_common_timeout(struct event_base *base, + const struct timeval *duration) +{ + int i; + struct timeval tv; + const struct timeval *result=NULL; + struct common_timeout_list *new_ctl; + + EVBASE_ACQUIRE_LOCK(base, th_base_lock); + if (duration->tv_usec > 1000000) { + memcpy(&tv, duration, sizeof(struct timeval)); + if (is_common_timeout(duration, base)) + tv.tv_usec &= MICROSECONDS_MASK; + tv.tv_sec += tv.tv_usec / 1000000; + tv.tv_usec %= 1000000; + duration = &tv; + } + for (i = 0; i < base->n_common_timeouts; ++i) { + const struct common_timeout_list *ctl = + base->common_timeout_queues[i]; + if (duration->tv_sec == ctl->duration.tv_sec && + duration->tv_usec == + (ctl->duration.tv_usec & MICROSECONDS_MASK)) { + EVUTIL_ASSERT(is_common_timeout(&ctl->duration, base)); + result = &ctl->duration; + goto done; + } + } + if (base->n_common_timeouts == MAX_COMMON_TIMEOUTS) { + event_warnx("%s: Too many common timeouts already in use; " + "we only support %d per event_base", __func__, + MAX_COMMON_TIMEOUTS); + goto done; + } + if (base->n_common_timeouts_allocated == base->n_common_timeouts) { + int n = base->n_common_timeouts < 16 ? 16 : + base->n_common_timeouts*2; + struct common_timeout_list **newqueues = + mm_realloc(base->common_timeout_queues, + n*sizeof(struct common_timeout_queue *)); + if (!newqueues) { + event_warn("%s: realloc",__func__); + goto done; + } + base->n_common_timeouts_allocated = n; + base->common_timeout_queues = newqueues; + } + new_ctl = mm_calloc(1, sizeof(struct common_timeout_list)); + if (!new_ctl) { + event_warn("%s: calloc",__func__); + goto done; + } + TAILQ_INIT(&new_ctl->events); + new_ctl->duration.tv_sec = duration->tv_sec; + new_ctl->duration.tv_usec = + duration->tv_usec | COMMON_TIMEOUT_MAGIC | + (base->n_common_timeouts << COMMON_TIMEOUT_IDX_SHIFT); + evtimer_assign(&new_ctl->timeout_event, base, + common_timeout_callback, new_ctl); + new_ctl->timeout_event.ev_flags |= EVLIST_INTERNAL; + event_priority_set(&new_ctl->timeout_event, 0); + new_ctl->base = base; + base->common_timeout_queues[base->n_common_timeouts++] = new_ctl; + result = &new_ctl->duration; + +done: + if (result) + EVUTIL_ASSERT(is_common_timeout(result, base)); + + EVBASE_RELEASE_LOCK(base, th_base_lock); + return result; +} + +/* Closure function invoked when we're activating a persistent event. */ +static inline void +event_persist_closure(struct event_base *base, struct event *ev) +{ + void (*evcb_callback)(evutil_socket_t, short, void *); + + // Other fields of *ev that must be stored before executing + evutil_socket_t evcb_fd; + short evcb_res; + void *evcb_arg; + + /* reschedule the persistent event if we have a timeout. */ + if (ev->ev_io_timeout.tv_sec || ev->ev_io_timeout.tv_usec) { + /* If there was a timeout, we want it to run at an interval of + * ev_io_timeout after the last time it was _scheduled_ for, + * not ev_io_timeout after _now_. If it fired for another + * reason, though, the timeout ought to start ticking _now_. */ + struct timeval run_at, relative_to, delay, now; + ev_uint32_t usec_mask = 0; + EVUTIL_ASSERT(is_same_common_timeout(&ev->ev_timeout, + &ev->ev_io_timeout)); + gettime(base, &now); + if (is_common_timeout(&ev->ev_timeout, base)) { + delay = ev->ev_io_timeout; + usec_mask = delay.tv_usec & ~MICROSECONDS_MASK; + delay.tv_usec &= MICROSECONDS_MASK; + if (ev->ev_res & EV_TIMEOUT) { + relative_to = ev->ev_timeout; + relative_to.tv_usec &= MICROSECONDS_MASK; + } else { + relative_to = now; + } + } else { + delay = ev->ev_io_timeout; + if (ev->ev_res & EV_TIMEOUT) { + relative_to = ev->ev_timeout; + } else { + relative_to = now; + } + } + evutil_timeradd(&relative_to, &delay, &run_at); + if (evutil_timercmp(&run_at, &now, <)) { + /* Looks like we missed at least one invocation due to + * a clock jump, not running the event loop for a + * while, really slow callbacks, or + * something. Reschedule relative to now. + */ + evutil_timeradd(&now, &delay, &run_at); + } + run_at.tv_usec |= usec_mask; + event_add_nolock_(ev, &run_at, 1); + } + + // Save our callback before we release the lock + evcb_callback = ev->ev_callback; + evcb_fd = ev->ev_fd; + evcb_res = ev->ev_res; + evcb_arg = ev->ev_arg; + + // Release the lock + EVBASE_RELEASE_LOCK(base, th_base_lock); + + // Execute the callback + (evcb_callback)(evcb_fd, evcb_res, evcb_arg); +} + +/* + Helper for event_process_active to process all the events in a single queue, + releasing the lock as we go. This function requires that the lock be held + when it's invoked. Returns -1 if we get a signal or an event_break that + means we should stop processing any active events now. Otherwise returns + the number of non-internal event_callbacks that we processed. +*/ +static int +event_process_active_single_queue(struct event_base *base, + struct evcallback_list *activeq, + int max_to_process, const struct timeval *endtime) +{ + struct event_callback *evcb; + int count = 0; + + EVUTIL_ASSERT(activeq != NULL); + + for (evcb = TAILQ_FIRST(activeq); evcb; evcb = TAILQ_FIRST(activeq)) { + struct event *ev=NULL; + if (evcb->evcb_flags & EVLIST_INIT) { + ev = event_callback_to_event(evcb); + + if (ev->ev_events & EV_PERSIST || ev->ev_flags & EVLIST_FINALIZING) + event_queue_remove_active(base, evcb); + else + event_del_nolock_(ev, EVENT_DEL_NOBLOCK); + event_debug(( + "event_process_active: event: %p, %s%s%scall %p", + ev, + ev->ev_res & EV_READ ? "EV_READ " : " ", + ev->ev_res & EV_WRITE ? "EV_WRITE " : " ", + ev->ev_res & EV_CLOSED ? "EV_CLOSED " : " ", + ev->ev_callback)); + } else { + event_queue_remove_active(base, evcb); + event_debug(("event_process_active: event_callback %p, " + "closure %d, call %p", + evcb, evcb->evcb_closure, evcb->evcb_cb_union.evcb_callback)); + } + + if (!(evcb->evcb_flags & EVLIST_INTERNAL)) + ++count; + + + base->current_event = evcb; +#ifndef EVENT__DISABLE_THREAD_SUPPORT + base->current_event_waiters = 0; +#endif + + switch (evcb->evcb_closure) { + case EV_CLOSURE_EVENT_SIGNAL: + EVUTIL_ASSERT(ev != NULL); + event_signal_closure(base, ev); + break; + case EV_CLOSURE_EVENT_PERSIST: + EVUTIL_ASSERT(ev != NULL); + event_persist_closure(base, ev); + break; + case EV_CLOSURE_EVENT: { + void (*evcb_callback)(evutil_socket_t, short, void *); + EVUTIL_ASSERT(ev != NULL); + evcb_callback = *ev->ev_callback; + EVBASE_RELEASE_LOCK(base, th_base_lock); + evcb_callback(ev->ev_fd, ev->ev_res, ev->ev_arg); + } + break; + case EV_CLOSURE_CB_SELF: { + void (*evcb_selfcb)(struct event_callback *, void *) = evcb->evcb_cb_union.evcb_selfcb; + EVBASE_RELEASE_LOCK(base, th_base_lock); + evcb_selfcb(evcb, evcb->evcb_arg); + } + break; + case EV_CLOSURE_EVENT_FINALIZE: + case EV_CLOSURE_EVENT_FINALIZE_FREE: { + void (*evcb_evfinalize)(struct event *, void *); + int evcb_closure = evcb->evcb_closure; + EVUTIL_ASSERT(ev != NULL); + base->current_event = NULL; + evcb_evfinalize = ev->ev_evcallback.evcb_cb_union.evcb_evfinalize; + EVUTIL_ASSERT((evcb->evcb_flags & EVLIST_FINALIZING)); + EVBASE_RELEASE_LOCK(base, th_base_lock); + evcb_evfinalize(ev, ev->ev_arg); + event_debug_note_teardown_(ev); + if (evcb_closure == EV_CLOSURE_EVENT_FINALIZE_FREE) + mm_free(ev); + } + break; + case EV_CLOSURE_CB_FINALIZE: { + void (*evcb_cbfinalize)(struct event_callback *, void *) = evcb->evcb_cb_union.evcb_cbfinalize; + base->current_event = NULL; + EVUTIL_ASSERT((evcb->evcb_flags & EVLIST_FINALIZING)); + EVBASE_RELEASE_LOCK(base, th_base_lock); + evcb_cbfinalize(evcb, evcb->evcb_arg); + } + break; + default: + EVUTIL_ASSERT(0); + } + + EVBASE_ACQUIRE_LOCK(base, th_base_lock); + base->current_event = NULL; +#ifndef EVENT__DISABLE_THREAD_SUPPORT + if (base->current_event_waiters) { + base->current_event_waiters = 0; + EVTHREAD_COND_BROADCAST(base->current_event_cond); + } +#endif + + if (base->event_break) + return -1; + if (count >= max_to_process) + return count; + if (count && endtime) { + struct timeval now; + update_time_cache(base); + gettime(base, &now); + if (evutil_timercmp(&now, endtime, >=)) + return count; + } + if (base->event_continue) + break; + } + return count; +} + +/* + * Active events are stored in priority queues. Lower priorities are always + * process before higher priorities. Low priority events can starve high + * priority ones. + */ + +static int +event_process_active(struct event_base *base) +{ + /* Caller must hold th_base_lock */ + struct evcallback_list *activeq = NULL; + int i, c = 0; + const struct timeval *endtime; + struct timeval tv; + const int maxcb = base->max_dispatch_callbacks; + const int limit_after_prio = base->limit_callbacks_after_prio; + if (base->max_dispatch_time.tv_sec >= 0) { + update_time_cache(base); + gettime(base, &tv); + evutil_timeradd(&base->max_dispatch_time, &tv, &tv); + endtime = &tv; + } else { + endtime = NULL; + } + + for (i = 0; i < base->nactivequeues; ++i) { + if (TAILQ_FIRST(&base->activequeues[i]) != NULL) { + base->event_running_priority = i; + activeq = &base->activequeues[i]; + if (i < limit_after_prio) + c = event_process_active_single_queue(base, activeq, + INT_MAX, NULL); + else + c = event_process_active_single_queue(base, activeq, + maxcb, endtime); + if (c < 0) { + goto done; + } else if (c > 0) + break; /* Processed a real event; do not + * consider lower-priority events */ + /* If we get here, all of the events we processed + * were internal. Continue. */ + } + } + +done: + base->event_running_priority = -1; + + return c; +} + +/* + * Wait continuously for events. We exit only if no events are left. + */ + +int +event_dispatch(void) +{ + return (event_loop(0)); +} + +int +event_base_dispatch(struct event_base *event_base) +{ + return (event_base_loop(event_base, 0)); +} + +const char * +event_base_get_method(const struct event_base *base) +{ + EVUTIL_ASSERT(base); + return (base->evsel->name); +} + +/** Callback: used to implement event_base_loopexit by telling the event_base + * that it's time to exit its loop. */ +static void +event_loopexit_cb(evutil_socket_t fd, short what, void *arg) +{ + struct event_base *base = arg; + base->event_gotterm = 1; +} + +int +event_loopexit(const struct timeval *tv) +{ + return (event_once(-1, EV_TIMEOUT, event_loopexit_cb, + current_base, tv)); +} + +int +event_base_loopexit(struct event_base *event_base, const struct timeval *tv) +{ + return (event_base_once(event_base, -1, EV_TIMEOUT, event_loopexit_cb, + event_base, tv)); +} + +int +event_loopbreak(void) +{ + return (event_base_loopbreak(current_base)); +} + +int +event_base_loopbreak(struct event_base *event_base) +{ + int r = 0; + if (event_base == NULL) + return (-1); + + EVBASE_ACQUIRE_LOCK(event_base, th_base_lock); + event_base->event_break = 1; + + if (EVBASE_NEED_NOTIFY(event_base)) { + r = evthread_notify_base(event_base); + } else { + r = (0); + } + EVBASE_RELEASE_LOCK(event_base, th_base_lock); + return r; +} + +int +event_base_loopcontinue(struct event_base *event_base) +{ + int r = 0; + if (event_base == NULL) + return (-1); + + EVBASE_ACQUIRE_LOCK(event_base, th_base_lock); + event_base->event_continue = 1; + + if (EVBASE_NEED_NOTIFY(event_base)) { + r = evthread_notify_base(event_base); + } else { + r = (0); + } + EVBASE_RELEASE_LOCK(event_base, th_base_lock); + return r; +} + +int +event_base_got_break(struct event_base *event_base) +{ + int res; + EVBASE_ACQUIRE_LOCK(event_base, th_base_lock); + res = event_base->event_break; + EVBASE_RELEASE_LOCK(event_base, th_base_lock); + return res; +} + +int +event_base_got_exit(struct event_base *event_base) +{ + int res; + EVBASE_ACQUIRE_LOCK(event_base, th_base_lock); + res = event_base->event_gotterm; + EVBASE_RELEASE_LOCK(event_base, th_base_lock); + return res; +} + +/* not thread safe */ + +int +event_loop(int flags) +{ + return event_base_loop(current_base, flags); +} + +int +event_base_loop(struct event_base *base, int flags) +{ + const struct eventop *evsel = base->evsel; + struct timeval tv; + struct timeval *tv_p; + int res, done, retval = 0; + + /* Grab the lock. We will release it inside evsel.dispatch, and again + * as we invoke user callbacks. */ + EVBASE_ACQUIRE_LOCK(base, th_base_lock); + + if (base->running_loop) { + event_warnx("%s: reentrant invocation. Only one event_base_loop" + " can run on each event_base at once.", __func__); + EVBASE_RELEASE_LOCK(base, th_base_lock); + return -1; + } + + base->running_loop = 1; + + clear_time_cache(base); + + if (base->sig.ev_signal_added && base->sig.ev_n_signals_added) + evsig_set_base_(base); + + done = 0; + +#ifndef EVENT__DISABLE_THREAD_SUPPORT + base->th_owner_id = EVTHREAD_GET_ID(); +#endif + + base->event_gotterm = base->event_break = 0; + + while (!done) { + base->event_continue = 0; + base->n_deferreds_queued = 0; + + /* Terminate the loop if we have been asked to */ + if (base->event_gotterm) { + break; + } + + if (base->event_break) { + break; + } + + tv_p = &tv; + if (!N_ACTIVE_CALLBACKS(base) && !(flags & EVLOOP_NONBLOCK)) { + timeout_next(base, &tv_p); + } else { + /* + * if we have active events, we just poll new events + * without waiting. + */ + evutil_timerclear(&tv); + } + + /* If we have no events, we just exit */ + if (0==(flags&EVLOOP_NO_EXIT_ON_EMPTY) && + !event_haveevents(base) && !N_ACTIVE_CALLBACKS(base)) { + event_debug(("%s: no events registered.", __func__)); + retval = 1; + goto done; + } + + event_queue_make_later_events_active(base); + + clear_time_cache(base); + + res = evsel->dispatch(base, tv_p); + + if (res == -1) { + event_debug(("%s: dispatch returned unsuccessfully.", + __func__)); + retval = -1; + goto done; + } + + update_time_cache(base); + + timeout_process(base); + + if (N_ACTIVE_CALLBACKS(base)) { + int n = event_process_active(base); + if ((flags & EVLOOP_ONCE) + && N_ACTIVE_CALLBACKS(base) == 0 + && n != 0) + done = 1; + } else if (flags & EVLOOP_NONBLOCK) + done = 1; + } + event_debug(("%s: asked to terminate loop.", __func__)); + +done: + clear_time_cache(base); + base->running_loop = 0; + + EVBASE_RELEASE_LOCK(base, th_base_lock); + + return (retval); +} + +/* One-time callback to implement event_base_once: invokes the user callback, + * then deletes the allocated storage */ +static void +event_once_cb(evutil_socket_t fd, short events, void *arg) +{ + struct event_once *eonce = arg; + + (*eonce->cb)(fd, events, eonce->arg); + EVBASE_ACQUIRE_LOCK(eonce->ev.ev_base, th_base_lock); + LIST_REMOVE(eonce, next_once); + EVBASE_RELEASE_LOCK(eonce->ev.ev_base, th_base_lock); + event_debug_unassign(&eonce->ev); + mm_free(eonce); +} + +/* not threadsafe, event scheduled once. */ +int +event_once(evutil_socket_t fd, short events, + void (*callback)(evutil_socket_t, short, void *), + void *arg, const struct timeval *tv) +{ + return event_base_once(current_base, fd, events, callback, arg, tv); +} + +/* Schedules an event once */ +int +event_base_once(struct event_base *base, evutil_socket_t fd, short events, + void (*callback)(evutil_socket_t, short, void *), + void *arg, const struct timeval *tv) +{ + struct event_once *eonce; + int res = 0; + int activate = 0; + + /* We cannot support signals that just fire once, or persistent + * events. */ + if (events & (EV_SIGNAL|EV_PERSIST)) + return (-1); + + if ((eonce = mm_calloc(1, sizeof(struct event_once))) == NULL) + return (-1); + + eonce->cb = callback; + eonce->arg = arg; + + if ((events & (EV_TIMEOUT|EV_SIGNAL|EV_READ|EV_WRITE|EV_CLOSED)) == EV_TIMEOUT) { + evtimer_assign(&eonce->ev, base, event_once_cb, eonce); + + if (tv == NULL || ! evutil_timerisset(tv)) { + /* If the event is going to become active immediately, + * don't put it on the timeout queue. This is one + * idiom for scheduling a callback, so let's make + * it fast (and order-preserving). */ + activate = 1; + } + } else if (events & (EV_READ|EV_WRITE|EV_CLOSED)) { + events &= EV_READ|EV_WRITE|EV_CLOSED; + + event_assign(&eonce->ev, base, fd, events, event_once_cb, eonce); + } else { + /* Bad event combination */ + mm_free(eonce); + return (-1); + } + + if (res == 0) { + EVBASE_ACQUIRE_LOCK(base, th_base_lock); + if (activate) + event_active_nolock_(&eonce->ev, EV_TIMEOUT, 1); + else + res = event_add_nolock_(&eonce->ev, tv, 0); + + if (res != 0) { + mm_free(eonce); + return (res); + } else { + LIST_INSERT_HEAD(&base->once_events, eonce, next_once); + } + EVBASE_RELEASE_LOCK(base, th_base_lock); + } + + return (0); +} + +int +event_assign(struct event *ev, struct event_base *base, evutil_socket_t fd, short events, void (*callback)(evutil_socket_t, short, void *), void *arg) +{ + if (!base) + base = current_base; + if (arg == &event_self_cbarg_ptr_) + arg = ev; + + event_debug_assert_not_added_(ev); + + ev->ev_base = base; + + ev->ev_callback = callback; + ev->ev_arg = arg; + ev->ev_fd = fd; + ev->ev_events = events; + ev->ev_res = 0; + ev->ev_flags = EVLIST_INIT; + ev->ev_ncalls = 0; + ev->ev_pncalls = NULL; + + if (events & EV_SIGNAL) { + if ((events & (EV_READ|EV_WRITE|EV_CLOSED)) != 0) { + event_warnx("%s: EV_SIGNAL is not compatible with " + "EV_READ, EV_WRITE or EV_CLOSED", __func__); + return -1; + } + ev->ev_closure = EV_CLOSURE_EVENT_SIGNAL; + } else { + if (events & EV_PERSIST) { + evutil_timerclear(&ev->ev_io_timeout); + ev->ev_closure = EV_CLOSURE_EVENT_PERSIST; + } else { + ev->ev_closure = EV_CLOSURE_EVENT; + } + } + + min_heap_elem_init_(ev); + + if (base != NULL) { + /* by default, we put new events into the middle priority */ + ev->ev_pri = base->nactivequeues / 2; + } + + event_debug_note_setup_(ev); + + return 0; +} + +int +event_base_set(struct event_base *base, struct event *ev) +{ + /* Only innocent events may be assigned to a different base */ + if (ev->ev_flags != EVLIST_INIT) + return (-1); + + event_debug_assert_is_setup_(ev); + + ev->ev_base = base; + ev->ev_pri = base->nactivequeues/2; + + return (0); +} + +void +event_set(struct event *ev, evutil_socket_t fd, short events, + void (*callback)(evutil_socket_t, short, void *), void *arg) +{ + int r; + r = event_assign(ev, current_base, fd, events, callback, arg); + EVUTIL_ASSERT(r == 0); +} + +void * +event_self_cbarg(void) +{ + return &event_self_cbarg_ptr_; +} + +struct event * +event_base_get_running_event(struct event_base *base) +{ + struct event *ev = NULL; + EVBASE_ACQUIRE_LOCK(base, th_base_lock); + if (EVBASE_IN_THREAD(base)) { + struct event_callback *evcb = base->current_event; + if (evcb->evcb_flags & EVLIST_INIT) + ev = event_callback_to_event(evcb); + } + EVBASE_RELEASE_LOCK(base, th_base_lock); + return ev; +} + +struct event * +event_new(struct event_base *base, evutil_socket_t fd, short events, void (*cb)(evutil_socket_t, short, void *), void *arg) +{ + struct event *ev; + ev = mm_malloc(sizeof(struct event)); + if (ev == NULL) + return (NULL); + if (event_assign(ev, base, fd, events, cb, arg) < 0) { + mm_free(ev); + return (NULL); + } + + return (ev); +} + +void +event_free(struct event *ev) +{ + /* This is disabled, so that events which have been finalized be a + * valid target for event_free(). That's */ + // event_debug_assert_is_setup_(ev); + + /* make sure that this event won't be coming back to haunt us. */ + event_del(ev); + event_debug_note_teardown_(ev); + mm_free(ev); + +} + +void +event_debug_unassign(struct event *ev) +{ + event_debug_assert_not_added_(ev); + event_debug_note_teardown_(ev); + + ev->ev_flags &= ~EVLIST_INIT; +} + +#define EVENT_FINALIZE_FREE_ 0x10000 +static int +event_finalize_nolock_(struct event_base *base, unsigned flags, struct event *ev, event_finalize_callback_fn cb) +{ + ev_uint8_t closure = (flags & EVENT_FINALIZE_FREE_) ? + EV_CLOSURE_EVENT_FINALIZE_FREE : EV_CLOSURE_EVENT_FINALIZE; + + event_del_nolock_(ev, EVENT_DEL_NOBLOCK); + ev->ev_closure = closure; + ev->ev_evcallback.evcb_cb_union.evcb_evfinalize = cb; + event_active_nolock_(ev, EV_FINALIZE, 1); + ev->ev_flags |= EVLIST_FINALIZING; + return 0; +} + +static int +event_finalize_impl_(unsigned flags, struct event *ev, event_finalize_callback_fn cb) +{ + int r; + struct event_base *base = ev->ev_base; + if (EVUTIL_FAILURE_CHECK(!base)) { + event_warnx("%s: event has no event_base set.", __func__); + return -1; + } + + EVBASE_ACQUIRE_LOCK(base, th_base_lock); + r = event_finalize_nolock_(base, flags, ev, cb); + EVBASE_RELEASE_LOCK(base, th_base_lock); + return r; +} + +int +event_finalize(unsigned flags, struct event *ev, event_finalize_callback_fn cb) +{ + return event_finalize_impl_(flags, ev, cb); +} + +int +event_free_finalize(unsigned flags, struct event *ev, event_finalize_callback_fn cb) +{ + return event_finalize_impl_(flags|EVENT_FINALIZE_FREE_, ev, cb); +} + +void +event_callback_finalize_nolock_(struct event_base *base, unsigned flags, struct event_callback *evcb, void (*cb)(struct event_callback *, void *)) +{ + struct event *ev = NULL; + if (evcb->evcb_flags & EVLIST_INIT) { + ev = event_callback_to_event(evcb); + event_del_nolock_(ev, EVENT_DEL_NOBLOCK); + } else { + event_callback_cancel_nolock_(base, evcb, 0); /*XXX can this fail?*/ + } + + evcb->evcb_closure = EV_CLOSURE_CB_FINALIZE; + evcb->evcb_cb_union.evcb_cbfinalize = cb; + event_callback_activate_nolock_(base, evcb); /* XXX can this really fail?*/ + evcb->evcb_flags |= EVLIST_FINALIZING; +} + +void +event_callback_finalize_(struct event_base *base, unsigned flags, struct event_callback *evcb, void (*cb)(struct event_callback *, void *)) +{ + EVBASE_ACQUIRE_LOCK(base, th_base_lock); + event_callback_finalize_nolock_(base, flags, evcb, cb); + EVBASE_RELEASE_LOCK(base, th_base_lock); +} + +/** Internal: Finalize all of the n_cbs callbacks in evcbs. The provided + * callback will be invoked on *one of them*, after they have *all* been + * finalized. */ +int +event_callback_finalize_many_(struct event_base *base, int n_cbs, struct event_callback **evcbs, void (*cb)(struct event_callback *, void *)) +{ + int n_pending = 0, i; + + if (base == NULL) + base = current_base; + + EVBASE_ACQUIRE_LOCK(base, th_base_lock); + + event_debug(("%s: %d events finalizing", __func__, n_cbs)); + + /* At most one can be currently executing; the rest we just + * cancel... But we always make sure that the finalize callback + * runs. */ + for (i = 0; i < n_cbs; ++i) { + struct event_callback *evcb = evcbs[i]; + if (evcb == base->current_event) { + event_callback_finalize_nolock_(base, 0, evcb, cb); + ++n_pending; + } else { + event_callback_cancel_nolock_(base, evcb, 0); + } + } + + if (n_pending == 0) { + /* Just do the first one. */ + event_callback_finalize_nolock_(base, 0, evcbs[0], cb); + } + + EVBASE_RELEASE_LOCK(base, th_base_lock); + return 0; +} + +/* + * Set's the priority of an event - if an event is already scheduled + * changing the priority is going to fail. + */ + +int +event_priority_set(struct event *ev, int pri) +{ + event_debug_assert_is_setup_(ev); + + if (ev->ev_flags & EVLIST_ACTIVE) + return (-1); + if (pri < 0 || pri >= ev->ev_base->nactivequeues) + return (-1); + + ev->ev_pri = pri; + + return (0); +} + +/* + * Checks if a specific event is pending or scheduled. + */ + +int +event_pending(const struct event *ev, short event, struct timeval *tv) +{ + int flags = 0; + + if (EVUTIL_FAILURE_CHECK(ev->ev_base == NULL)) { + event_warnx("%s: event has no event_base set.", __func__); + return 0; + } + + EVBASE_ACQUIRE_LOCK(ev->ev_base, th_base_lock); + event_debug_assert_is_setup_(ev); + + if (ev->ev_flags & EVLIST_INSERTED) + flags |= (ev->ev_events & (EV_READ|EV_WRITE|EV_CLOSED|EV_SIGNAL)); + if (ev->ev_flags & (EVLIST_ACTIVE|EVLIST_ACTIVE_LATER)) + flags |= ev->ev_res; + if (ev->ev_flags & EVLIST_TIMEOUT) + flags |= EV_TIMEOUT; + + event &= (EV_TIMEOUT|EV_READ|EV_WRITE|EV_CLOSED|EV_SIGNAL); + + /* See if there is a timeout that we should report */ + if (tv != NULL && (flags & event & EV_TIMEOUT)) { + struct timeval tmp = ev->ev_timeout; + tmp.tv_usec &= MICROSECONDS_MASK; + /* correctly remamp to real time */ + evutil_timeradd(&ev->ev_base->tv_clock_diff, &tmp, tv); + } + + EVBASE_RELEASE_LOCK(ev->ev_base, th_base_lock); + + return (flags & event); +} + +int +event_initialized(const struct event *ev) +{ + if (!(ev->ev_flags & EVLIST_INIT)) + return 0; + + return 1; +} + +void +event_get_assignment(const struct event *event, struct event_base **base_out, evutil_socket_t *fd_out, short *events_out, event_callback_fn *callback_out, void **arg_out) +{ + event_debug_assert_is_setup_(event); + + if (base_out) + *base_out = event->ev_base; + if (fd_out) + *fd_out = event->ev_fd; + if (events_out) + *events_out = event->ev_events; + if (callback_out) + *callback_out = event->ev_callback; + if (arg_out) + *arg_out = event->ev_arg; +} + +size_t +event_get_struct_event_size(void) +{ + return sizeof(struct event); +} + +evutil_socket_t +event_get_fd(const struct event *ev) +{ + event_debug_assert_is_setup_(ev); + return ev->ev_fd; +} + +struct event_base * +event_get_base(const struct event *ev) +{ + event_debug_assert_is_setup_(ev); + return ev->ev_base; +} + +short +event_get_events(const struct event *ev) +{ + event_debug_assert_is_setup_(ev); + return ev->ev_events; +} + +event_callback_fn +event_get_callback(const struct event *ev) +{ + event_debug_assert_is_setup_(ev); + return ev->ev_callback; +} + +void * +event_get_callback_arg(const struct event *ev) +{ + event_debug_assert_is_setup_(ev); + return ev->ev_arg; +} + +int +event_get_priority(const struct event *ev) +{ + event_debug_assert_is_setup_(ev); + return ev->ev_pri; +} + +int +event_add(struct event *ev, const struct timeval *tv) +{ + int res; + + if (EVUTIL_FAILURE_CHECK(!ev->ev_base)) { + event_warnx("%s: event has no event_base set.", __func__); + return -1; + } + + EVBASE_ACQUIRE_LOCK(ev->ev_base, th_base_lock); + + res = event_add_nolock_(ev, tv, 0); + + EVBASE_RELEASE_LOCK(ev->ev_base, th_base_lock); + + return (res); +} + +/* Helper callback: wake an event_base from another thread. This version + * works by writing a byte to one end of a socketpair, so that the event_base + * listening on the other end will wake up as the corresponding event + * triggers */ +static int +evthread_notify_base_default(struct event_base *base) +{ + char buf[1]; + int r; + buf[0] = (char) 0; +#ifdef _WIN32 + r = send(base->th_notify_fd[1], buf, 1, 0); +#else + r = write(base->th_notify_fd[1], buf, 1); +#endif + return (r < 0 && ! EVUTIL_ERR_IS_EAGAIN(errno)) ? -1 : 0; +} + +#ifdef EVENT__HAVE_EVENTFD +/* Helper callback: wake an event_base from another thread. This version + * assumes that you have a working eventfd() implementation. */ +static int +evthread_notify_base_eventfd(struct event_base *base) +{ + ev_uint64_t msg = 1; + int r; + do { + r = write(base->th_notify_fd[0], (void*) &msg, sizeof(msg)); + } while (r < 0 && errno == EAGAIN); + + return (r < 0) ? -1 : 0; +} +#endif + + +/** Tell the thread currently running the event_loop for base (if any) that it + * needs to stop waiting in its dispatch function (if it is) and process all + * active callbacks. */ +static int +evthread_notify_base(struct event_base *base) +{ + EVENT_BASE_ASSERT_LOCKED(base); + if (!base->th_notify_fn) + return -1; + if (base->is_notify_pending) + return 0; + base->is_notify_pending = 1; + return base->th_notify_fn(base); +} + +/* Implementation function to remove a timeout on a currently pending event. + */ +int +event_remove_timer_nolock_(struct event *ev) +{ + struct event_base *base = ev->ev_base; + + EVENT_BASE_ASSERT_LOCKED(base); + event_debug_assert_is_setup_(ev); + + event_debug(("event_remove_timer_nolock: event: %p", ev)); + + /* If it's not pending on a timeout, we don't need to do anything. */ + if (ev->ev_flags & EVLIST_TIMEOUT) { + event_queue_remove_timeout(base, ev); + evutil_timerclear(&ev->ev_.ev_io.ev_timeout); + } + + return (0); +} + +int +event_remove_timer(struct event *ev) +{ + int res; + + if (EVUTIL_FAILURE_CHECK(!ev->ev_base)) { + event_warnx("%s: event has no event_base set.", __func__); + return -1; + } + + EVBASE_ACQUIRE_LOCK(ev->ev_base, th_base_lock); + + res = event_remove_timer_nolock_(ev); + + EVBASE_RELEASE_LOCK(ev->ev_base, th_base_lock); + + return (res); +} + +/* Implementation function to add an event. Works just like event_add, + * except: 1) it requires that we have the lock. 2) if tv_is_absolute is set, + * we treat tv as an absolute time, not as an interval to add to the current + * time */ +int +event_add_nolock_(struct event *ev, const struct timeval *tv, + int tv_is_absolute) +{ + struct event_base *base = ev->ev_base; + int res = 0; + int notify = 0; + + EVENT_BASE_ASSERT_LOCKED(base); + event_debug_assert_is_setup_(ev); + + event_debug(( + "event_add: event: %p (fd "EV_SOCK_FMT"), %s%s%s%scall %p", + ev, + EV_SOCK_ARG(ev->ev_fd), + ev->ev_events & EV_READ ? "EV_READ " : " ", + ev->ev_events & EV_WRITE ? "EV_WRITE " : " ", + ev->ev_events & EV_CLOSED ? "EV_CLOSED " : " ", + tv ? "EV_TIMEOUT " : " ", + ev->ev_callback)); + + EVUTIL_ASSERT(!(ev->ev_flags & ~EVLIST_ALL)); + + if (ev->ev_flags & EVLIST_FINALIZING) { + /* XXXX debug */ + return (-1); + } + + /* + * prepare for timeout insertion further below, if we get a + * failure on any step, we should not change any state. + */ + if (tv != NULL && !(ev->ev_flags & EVLIST_TIMEOUT)) { + if (min_heap_reserve_(&base->timeheap, + 1 + min_heap_size_(&base->timeheap)) == -1) + return (-1); /* ENOMEM == errno */ + } + + /* If the main thread is currently executing a signal event's + * callback, and we are not the main thread, then we want to wait + * until the callback is done before we mess with the event, or else + * we can race on ev_ncalls and ev_pncalls below. */ +#ifndef EVENT__DISABLE_THREAD_SUPPORT + if (base->current_event == event_to_event_callback(ev) && + (ev->ev_events & EV_SIGNAL) + && !EVBASE_IN_THREAD(base)) { + ++base->current_event_waiters; + EVTHREAD_COND_WAIT(base->current_event_cond, base->th_base_lock); + } +#endif + + if ((ev->ev_events & (EV_READ|EV_WRITE|EV_CLOSED|EV_SIGNAL)) && + !(ev->ev_flags & (EVLIST_INSERTED|EVLIST_ACTIVE|EVLIST_ACTIVE_LATER))) { + if (ev->ev_events & (EV_READ|EV_WRITE|EV_CLOSED)) + res = evmap_io_add_(base, ev->ev_fd, ev); + else if (ev->ev_events & EV_SIGNAL) + res = evmap_signal_add_(base, (int)ev->ev_fd, ev); + if (res != -1) + event_queue_insert_inserted(base, ev); + if (res == 1) { + /* evmap says we need to notify the main thread. */ + notify = 1; + res = 0; + } + } + + /* + * we should change the timeout state only if the previous event + * addition succeeded. + */ + if (res != -1 && tv != NULL) { + struct timeval now; + int common_timeout; +#ifdef USE_REINSERT_TIMEOUT + int was_common; + int old_timeout_idx; +#endif + + /* + * for persistent timeout events, we remember the + * timeout value and re-add the event. + * + * If tv_is_absolute, this was already set. + */ + if (ev->ev_closure == EV_CLOSURE_EVENT_PERSIST && !tv_is_absolute) + ev->ev_io_timeout = *tv; + +#ifndef USE_REINSERT_TIMEOUT + if (ev->ev_flags & EVLIST_TIMEOUT) { + event_queue_remove_timeout(base, ev); + } +#endif + + /* Check if it is active due to a timeout. Rescheduling + * this timeout before the callback can be executed + * removes it from the active list. */ + if ((ev->ev_flags & EVLIST_ACTIVE) && + (ev->ev_res & EV_TIMEOUT)) { + if (ev->ev_events & EV_SIGNAL) { + /* See if we are just active executing + * this event in a loop + */ + if (ev->ev_ncalls && ev->ev_pncalls) { + /* Abort loop */ + *ev->ev_pncalls = 0; + } + } + + event_queue_remove_active(base, event_to_event_callback(ev)); + } + + gettime(base, &now); + + common_timeout = is_common_timeout(tv, base); +#ifdef USE_REINSERT_TIMEOUT + was_common = is_common_timeout(&ev->ev_timeout, base); + old_timeout_idx = COMMON_TIMEOUT_IDX(&ev->ev_timeout); +#endif + + if (tv_is_absolute) { + ev->ev_timeout = *tv; + } else if (common_timeout) { + struct timeval tmp = *tv; + tmp.tv_usec &= MICROSECONDS_MASK; + evutil_timeradd(&now, &tmp, &ev->ev_timeout); + ev->ev_timeout.tv_usec |= + (tv->tv_usec & ~MICROSECONDS_MASK); + } else { + evutil_timeradd(&now, tv, &ev->ev_timeout); + } + + event_debug(( + "event_add: event %p, timeout in %d seconds %d useconds, call %p", + ev, (int)tv->tv_sec, (int)tv->tv_usec, ev->ev_callback)); + +#ifdef USE_REINSERT_TIMEOUT + event_queue_reinsert_timeout(base, ev, was_common, common_timeout, old_timeout_idx); +#else + event_queue_insert_timeout(base, ev); +#endif + + if (common_timeout) { + struct common_timeout_list *ctl = + get_common_timeout_list(base, &ev->ev_timeout); + if (ev == TAILQ_FIRST(&ctl->events)) { + common_timeout_schedule(ctl, &now, ev); + } + } else { + struct event* top = NULL; + /* See if the earliest timeout is now earlier than it + * was before: if so, we will need to tell the main + * thread to wake up earlier than it would otherwise. + * We double check the timeout of the top element to + * handle time distortions due to system suspension. + */ + if (min_heap_elt_is_top_(ev)) + notify = 1; + else if ((top = min_heap_top_(&base->timeheap)) != NULL && + evutil_timercmp(&top->ev_timeout, &now, <)) + notify = 1; + } + } + + /* if we are not in the right thread, we need to wake up the loop */ + if (res != -1 && notify && EVBASE_NEED_NOTIFY(base)) + evthread_notify_base(base); + + event_debug_note_add_(ev); + + return (res); +} + +static int +event_del_(struct event *ev, int blocking) +{ + int res; + + if (EVUTIL_FAILURE_CHECK(!ev->ev_base)) { + event_warnx("%s: event has no event_base set.", __func__); + return -1; + } + + EVBASE_ACQUIRE_LOCK(ev->ev_base, th_base_lock); + + res = event_del_nolock_(ev, blocking); + + EVBASE_RELEASE_LOCK(ev->ev_base, th_base_lock); + + return (res); +} + +int +event_del(struct event *ev) +{ + return event_del_(ev, EVENT_DEL_AUTOBLOCK); +} + +int +event_del_block(struct event *ev) +{ + return event_del_(ev, EVENT_DEL_BLOCK); +} + +int +event_del_noblock(struct event *ev) +{ + return event_del_(ev, EVENT_DEL_NOBLOCK); +} + +/** Helper for event_del: always called with th_base_lock held. + * + * "blocking" must be one of the EVENT_DEL_{BLOCK, NOBLOCK, AUTOBLOCK, + * EVEN_IF_FINALIZING} values. See those for more information. + */ +int +event_del_nolock_(struct event *ev, int blocking) +{ + struct event_base *base; + int res = 0, notify = 0; + + event_debug(("event_del: %p (fd "EV_SOCK_FMT"), callback %p", + ev, EV_SOCK_ARG(ev->ev_fd), ev->ev_callback)); + + /* An event without a base has not been added */ + if (ev->ev_base == NULL) + return (-1); + + EVENT_BASE_ASSERT_LOCKED(ev->ev_base); + + if (blocking != EVENT_DEL_EVEN_IF_FINALIZING) { + if (ev->ev_flags & EVLIST_FINALIZING) { + /* XXXX Debug */ + return 0; + } + } + + /* If the main thread is currently executing this event's callback, + * and we are not the main thread, then we want to wait until the + * callback is done before we start removing the event. That way, + * when this function returns, it will be safe to free the + * user-supplied argument. */ + base = ev->ev_base; +#ifndef EVENT__DISABLE_THREAD_SUPPORT + if (blocking != EVENT_DEL_NOBLOCK && + base->current_event == event_to_event_callback(ev) && + !EVBASE_IN_THREAD(base) && + (blocking == EVENT_DEL_BLOCK || !(ev->ev_events & EV_FINALIZE))) { + ++base->current_event_waiters; + EVTHREAD_COND_WAIT(base->current_event_cond, base->th_base_lock); + } +#endif + + EVUTIL_ASSERT(!(ev->ev_flags & ~EVLIST_ALL)); + + /* See if we are just active executing this event in a loop */ + if (ev->ev_events & EV_SIGNAL) { + if (ev->ev_ncalls && ev->ev_pncalls) { + /* Abort loop */ + *ev->ev_pncalls = 0; + } + } + + if (ev->ev_flags & EVLIST_TIMEOUT) { + /* NOTE: We never need to notify the main thread because of a + * deleted timeout event: all that could happen if we don't is + * that the dispatch loop might wake up too early. But the + * point of notifying the main thread _is_ to wake up the + * dispatch loop early anyway, so we wouldn't gain anything by + * doing it. + */ + event_queue_remove_timeout(base, ev); + } + + if (ev->ev_flags & EVLIST_ACTIVE) + event_queue_remove_active(base, event_to_event_callback(ev)); + else if (ev->ev_flags & EVLIST_ACTIVE_LATER) + event_queue_remove_active_later(base, event_to_event_callback(ev)); + + if (ev->ev_flags & EVLIST_INSERTED) { + event_queue_remove_inserted(base, ev); + if (ev->ev_events & (EV_READ|EV_WRITE|EV_CLOSED)) + res = evmap_io_del_(base, ev->ev_fd, ev); + else + res = evmap_signal_del_(base, (int)ev->ev_fd, ev); + if (res == 1) { + /* evmap says we need to notify the main thread. */ + notify = 1; + res = 0; + } + } + + /* if we are not in the right thread, we need to wake up the loop */ + if (res != -1 && notify && EVBASE_NEED_NOTIFY(base)) + evthread_notify_base(base); + + event_debug_note_del_(ev); + + return (res); +} + +void +event_active(struct event *ev, int res, short ncalls) +{ + if (EVUTIL_FAILURE_CHECK(!ev->ev_base)) { + event_warnx("%s: event has no event_base set.", __func__); + return; + } + + EVBASE_ACQUIRE_LOCK(ev->ev_base, th_base_lock); + + event_debug_assert_is_setup_(ev); + + event_active_nolock_(ev, res, ncalls); + + EVBASE_RELEASE_LOCK(ev->ev_base, th_base_lock); +} + + +void +event_active_nolock_(struct event *ev, int res, short ncalls) +{ + struct event_base *base; + + event_debug(("event_active: %p (fd "EV_SOCK_FMT"), res %d, callback %p", + ev, EV_SOCK_ARG(ev->ev_fd), (int)res, ev->ev_callback)); + + base = ev->ev_base; + EVENT_BASE_ASSERT_LOCKED(base); + + if (ev->ev_flags & EVLIST_FINALIZING) { + /* XXXX debug */ + return; + } + + switch ((ev->ev_flags & (EVLIST_ACTIVE|EVLIST_ACTIVE_LATER))) { + default: + case EVLIST_ACTIVE|EVLIST_ACTIVE_LATER: + EVUTIL_ASSERT(0); + break; + case EVLIST_ACTIVE: + /* We get different kinds of events, add them together */ + ev->ev_res |= res; + return; + case EVLIST_ACTIVE_LATER: + ev->ev_res |= res; + break; + case 0: + ev->ev_res = res; + break; + } + + if (ev->ev_pri < base->event_running_priority) + base->event_continue = 1; + + if (ev->ev_events & EV_SIGNAL) { +#ifndef EVENT__DISABLE_THREAD_SUPPORT + if (base->current_event == event_to_event_callback(ev) && + !EVBASE_IN_THREAD(base)) { + ++base->current_event_waiters; + EVTHREAD_COND_WAIT(base->current_event_cond, base->th_base_lock); + } +#endif + ev->ev_ncalls = ncalls; + ev->ev_pncalls = NULL; + } + + event_callback_activate_nolock_(base, event_to_event_callback(ev)); +} + +void +event_active_later_(struct event *ev, int res) +{ + EVBASE_ACQUIRE_LOCK(ev->ev_base, th_base_lock); + event_active_later_nolock_(ev, res); + EVBASE_RELEASE_LOCK(ev->ev_base, th_base_lock); +} + +void +event_active_later_nolock_(struct event *ev, int res) +{ + struct event_base *base = ev->ev_base; + EVENT_BASE_ASSERT_LOCKED(base); + + if (ev->ev_flags & (EVLIST_ACTIVE|EVLIST_ACTIVE_LATER)) { + /* We get different kinds of events, add them together */ + ev->ev_res |= res; + return; + } + + ev->ev_res = res; + + event_callback_activate_later_nolock_(base, event_to_event_callback(ev)); +} + +int +event_callback_activate_(struct event_base *base, + struct event_callback *evcb) +{ + int r; + EVBASE_ACQUIRE_LOCK(base, th_base_lock); + r = event_callback_activate_nolock_(base, evcb); + EVBASE_RELEASE_LOCK(base, th_base_lock); + return r; +} + +int +event_callback_activate_nolock_(struct event_base *base, + struct event_callback *evcb) +{ + int r = 1; + + if (evcb->evcb_flags & EVLIST_FINALIZING) + return 0; + + switch (evcb->evcb_flags & (EVLIST_ACTIVE|EVLIST_ACTIVE_LATER)) { + default: + EVUTIL_ASSERT(0); + case EVLIST_ACTIVE_LATER: + event_queue_remove_active_later(base, evcb); + r = 0; + break; + case EVLIST_ACTIVE: + return 0; + case 0: + break; + } + + event_queue_insert_active(base, evcb); + + if (EVBASE_NEED_NOTIFY(base)) + evthread_notify_base(base); + + return r; +} + +int +event_callback_activate_later_nolock_(struct event_base *base, + struct event_callback *evcb) +{ + if (evcb->evcb_flags & (EVLIST_ACTIVE|EVLIST_ACTIVE_LATER)) + return 0; + + event_queue_insert_active_later(base, evcb); + if (EVBASE_NEED_NOTIFY(base)) + evthread_notify_base(base); + return 1; +} + +void +event_callback_init_(struct event_base *base, + struct event_callback *cb) +{ + memset(cb, 0, sizeof(*cb)); + cb->evcb_pri = base->nactivequeues - 1; +} + +int +event_callback_cancel_(struct event_base *base, + struct event_callback *evcb) +{ + int r; + EVBASE_ACQUIRE_LOCK(base, th_base_lock); + r = event_callback_cancel_nolock_(base, evcb, 0); + EVBASE_RELEASE_LOCK(base, th_base_lock); + return r; +} + +int +event_callback_cancel_nolock_(struct event_base *base, + struct event_callback *evcb, int even_if_finalizing) +{ + if ((evcb->evcb_flags & EVLIST_FINALIZING) && !even_if_finalizing) + return 0; + + if (evcb->evcb_flags & EVLIST_INIT) + return event_del_nolock_(event_callback_to_event(evcb), + even_if_finalizing ? EVENT_DEL_EVEN_IF_FINALIZING : EVENT_DEL_AUTOBLOCK); + + switch ((evcb->evcb_flags & (EVLIST_ACTIVE|EVLIST_ACTIVE_LATER))) { + default: + case EVLIST_ACTIVE|EVLIST_ACTIVE_LATER: + EVUTIL_ASSERT(0); + break; + case EVLIST_ACTIVE: + /* We get different kinds of events, add them together */ + event_queue_remove_active(base, evcb); + return 0; + case EVLIST_ACTIVE_LATER: + event_queue_remove_active_later(base, evcb); + break; + case 0: + break; + } + + return 0; +} + +void +event_deferred_cb_init_(struct event_callback *cb, ev_uint8_t priority, deferred_cb_fn fn, void *arg) +{ + memset(cb, 0, sizeof(*cb)); + cb->evcb_cb_union.evcb_selfcb = fn; + cb->evcb_arg = arg; + cb->evcb_pri = priority; + cb->evcb_closure = EV_CLOSURE_CB_SELF; +} + +void +event_deferred_cb_set_priority_(struct event_callback *cb, ev_uint8_t priority) +{ + cb->evcb_pri = priority; +} + +void +event_deferred_cb_cancel_(struct event_base *base, struct event_callback *cb) +{ + if (!base) + base = current_base; + event_callback_cancel_(base, cb); +} + +#define MAX_DEFERREDS_QUEUED 32 +int +event_deferred_cb_schedule_(struct event_base *base, struct event_callback *cb) +{ + int r = 1; + if (!base) + base = current_base; + EVBASE_ACQUIRE_LOCK(base, th_base_lock); + if (base->n_deferreds_queued > MAX_DEFERREDS_QUEUED) { + r = event_callback_activate_later_nolock_(base, cb); + } else { + r = event_callback_activate_nolock_(base, cb); + if (r) { + ++base->n_deferreds_queued; + } + } + EVBASE_RELEASE_LOCK(base, th_base_lock); + return r; +} + +static int +timeout_next(struct event_base *base, struct timeval **tv_p) +{ + /* Caller must hold th_base_lock */ + struct timeval now; + struct event *ev; + struct timeval *tv = *tv_p; + int res = 0; + + ev = min_heap_top_(&base->timeheap); + + if (ev == NULL) { + /* if no time-based events are active wait for I/O */ + *tv_p = NULL; + goto out; + } + + if (gettime(base, &now) == -1) { + res = -1; + goto out; + } + + if (evutil_timercmp(&ev->ev_timeout, &now, <=)) { + evutil_timerclear(tv); + goto out; + } + + evutil_timersub(&ev->ev_timeout, &now, tv); + + EVUTIL_ASSERT(tv->tv_sec >= 0); + EVUTIL_ASSERT(tv->tv_usec >= 0); + event_debug(("timeout_next: event: %p, in %d seconds, %d useconds", ev, (int)tv->tv_sec, (int)tv->tv_usec)); + +out: + return (res); +} + +/* Activate every event whose timeout has elapsed. */ +static void +timeout_process(struct event_base *base) +{ + /* Caller must hold lock. */ + struct timeval now; + struct event *ev; + + if (min_heap_empty_(&base->timeheap)) { + return; + } + + gettime(base, &now); + + while ((ev = min_heap_top_(&base->timeheap))) { + if (evutil_timercmp(&ev->ev_timeout, &now, >)) + break; + + /* delete this event from the I/O queues */ + event_del_nolock_(ev, EVENT_DEL_NOBLOCK); + + event_debug(("timeout_process: event: %p, call %p", + ev, ev->ev_callback)); + event_active_nolock_(ev, EV_TIMEOUT, 1); + } +} + +#if (EVLIST_INTERNAL >> 4) != 1 +#error "Mismatch for value of EVLIST_INTERNAL" +#endif + +#ifndef MAX +#define MAX(a,b) (((a)>(b))?(a):(b)) +#endif + +#define MAX_EVENT_COUNT(var, v) var = MAX(var, v) + +/* These are a fancy way to spell + if (flags & EVLIST_INTERNAL) + base->event_count--/++; +*/ +#define DECR_EVENT_COUNT(base,flags) \ + ((base)->event_count -= (~((flags) >> 4) & 1)) +#define INCR_EVENT_COUNT(base,flags) do { \ + ((base)->event_count += (~((flags) >> 4) & 1)); \ + MAX_EVENT_COUNT((base)->event_count_max, (base)->event_count); \ +} while (0) + +static void +event_queue_remove_inserted(struct event_base *base, struct event *ev) +{ + EVENT_BASE_ASSERT_LOCKED(base); + if (EVUTIL_FAILURE_CHECK(!(ev->ev_flags & EVLIST_INSERTED))) { + event_errx(1, "%s: %p(fd "EV_SOCK_FMT") not on queue %x", __func__, + ev, EV_SOCK_ARG(ev->ev_fd), EVLIST_INSERTED); + return; + } + DECR_EVENT_COUNT(base, ev->ev_flags); + ev->ev_flags &= ~EVLIST_INSERTED; +} +static void +event_queue_remove_active(struct event_base *base, struct event_callback *evcb) +{ + EVENT_BASE_ASSERT_LOCKED(base); + if (EVUTIL_FAILURE_CHECK(!(evcb->evcb_flags & EVLIST_ACTIVE))) { + event_errx(1, "%s: %p not on queue %x", __func__, + evcb, EVLIST_ACTIVE); + return; + } + DECR_EVENT_COUNT(base, evcb->evcb_flags); + evcb->evcb_flags &= ~EVLIST_ACTIVE; + base->event_count_active--; + + TAILQ_REMOVE(&base->activequeues[evcb->evcb_pri], + evcb, evcb_active_next); +} +static void +event_queue_remove_active_later(struct event_base *base, struct event_callback *evcb) +{ + EVENT_BASE_ASSERT_LOCKED(base); + if (EVUTIL_FAILURE_CHECK(!(evcb->evcb_flags & EVLIST_ACTIVE_LATER))) { + event_errx(1, "%s: %p not on queue %x", __func__, + evcb, EVLIST_ACTIVE_LATER); + return; + } + DECR_EVENT_COUNT(base, evcb->evcb_flags); + evcb->evcb_flags &= ~EVLIST_ACTIVE_LATER; + base->event_count_active--; + + TAILQ_REMOVE(&base->active_later_queue, evcb, evcb_active_next); +} +static void +event_queue_remove_timeout(struct event_base *base, struct event *ev) +{ + EVENT_BASE_ASSERT_LOCKED(base); + if (EVUTIL_FAILURE_CHECK(!(ev->ev_flags & EVLIST_TIMEOUT))) { + event_errx(1, "%s: %p(fd "EV_SOCK_FMT") not on queue %x", __func__, + ev, EV_SOCK_ARG(ev->ev_fd), EVLIST_TIMEOUT); + return; + } + DECR_EVENT_COUNT(base, ev->ev_flags); + ev->ev_flags &= ~EVLIST_TIMEOUT; + + if (is_common_timeout(&ev->ev_timeout, base)) { + struct common_timeout_list *ctl = + get_common_timeout_list(base, &ev->ev_timeout); + TAILQ_REMOVE(&ctl->events, ev, + ev_timeout_pos.ev_next_with_common_timeout); + } else { + min_heap_erase_(&base->timeheap, ev); + } +} + +#ifdef USE_REINSERT_TIMEOUT +/* Remove and reinsert 'ev' into the timeout queue. */ +static void +event_queue_reinsert_timeout(struct event_base *base, struct event *ev, + int was_common, int is_common, int old_timeout_idx) +{ + struct common_timeout_list *ctl; + if (!(ev->ev_flags & EVLIST_TIMEOUT)) { + event_queue_insert_timeout(base, ev); + return; + } + + switch ((was_common<<1) | is_common) { + case 3: /* Changing from one common timeout to another */ + ctl = base->common_timeout_queues[old_timeout_idx]; + TAILQ_REMOVE(&ctl->events, ev, + ev_timeout_pos.ev_next_with_common_timeout); + ctl = get_common_timeout_list(base, &ev->ev_timeout); + insert_common_timeout_inorder(ctl, ev); + break; + case 2: /* Was common; is no longer common */ + ctl = base->common_timeout_queues[old_timeout_idx]; + TAILQ_REMOVE(&ctl->events, ev, + ev_timeout_pos.ev_next_with_common_timeout); + min_heap_push_(&base->timeheap, ev); + break; + case 1: /* Wasn't common; has become common. */ + min_heap_erase_(&base->timeheap, ev); + ctl = get_common_timeout_list(base, &ev->ev_timeout); + insert_common_timeout_inorder(ctl, ev); + break; + case 0: /* was in heap; is still on heap. */ + min_heap_adjust_(&base->timeheap, ev); + break; + default: + EVUTIL_ASSERT(0); /* unreachable */ + break; + } +} +#endif + +/* Add 'ev' to the common timeout list in 'ev'. */ +static void +insert_common_timeout_inorder(struct common_timeout_list *ctl, + struct event *ev) +{ + struct event *e; + /* By all logic, we should just be able to append 'ev' to the end of + * ctl->events, since the timeout on each 'ev' is set to {the common + * timeout} + {the time when we add the event}, and so the events + * should arrive in order of their timeeouts. But just in case + * there's some wacky threading issue going on, we do a search from + * the end of 'ev' to find the right insertion point. + */ + TAILQ_FOREACH_REVERSE(e, &ctl->events, + event_list, ev_timeout_pos.ev_next_with_common_timeout) { + /* This timercmp is a little sneaky, since both ev and e have + * magic values in tv_usec. Fortunately, they ought to have + * the _same_ magic values in tv_usec. Let's assert for that. + */ + EVUTIL_ASSERT( + is_same_common_timeout(&e->ev_timeout, &ev->ev_timeout)); + if (evutil_timercmp(&ev->ev_timeout, &e->ev_timeout, >=)) { + TAILQ_INSERT_AFTER(&ctl->events, e, ev, + ev_timeout_pos.ev_next_with_common_timeout); + return; + } + } + TAILQ_INSERT_HEAD(&ctl->events, ev, + ev_timeout_pos.ev_next_with_common_timeout); +} + +static void +event_queue_insert_inserted(struct event_base *base, struct event *ev) +{ + EVENT_BASE_ASSERT_LOCKED(base); + + if (EVUTIL_FAILURE_CHECK(ev->ev_flags & EVLIST_INSERTED)) { + event_errx(1, "%s: %p(fd "EV_SOCK_FMT") already inserted", __func__, + ev, EV_SOCK_ARG(ev->ev_fd)); + return; + } + + INCR_EVENT_COUNT(base, ev->ev_flags); + + ev->ev_flags |= EVLIST_INSERTED; +} + +static void +event_queue_insert_active(struct event_base *base, struct event_callback *evcb) +{ + EVENT_BASE_ASSERT_LOCKED(base); + + if (evcb->evcb_flags & EVLIST_ACTIVE) { + /* Double insertion is possible for active events */ + return; + } + + INCR_EVENT_COUNT(base, evcb->evcb_flags); + + evcb->evcb_flags |= EVLIST_ACTIVE; + + base->event_count_active++; + MAX_EVENT_COUNT(base->event_count_active_max, base->event_count_active); + EVUTIL_ASSERT(evcb->evcb_pri < base->nactivequeues); + TAILQ_INSERT_TAIL(&base->activequeues[evcb->evcb_pri], + evcb, evcb_active_next); +} + +static void +event_queue_insert_active_later(struct event_base *base, struct event_callback *evcb) +{ + EVENT_BASE_ASSERT_LOCKED(base); + if (evcb->evcb_flags & (EVLIST_ACTIVE_LATER|EVLIST_ACTIVE)) { + /* Double insertion is possible */ + return; + } + + INCR_EVENT_COUNT(base, evcb->evcb_flags); + evcb->evcb_flags |= EVLIST_ACTIVE_LATER; + base->event_count_active++; + MAX_EVENT_COUNT(base->event_count_active_max, base->event_count_active); + EVUTIL_ASSERT(evcb->evcb_pri < base->nactivequeues); + TAILQ_INSERT_TAIL(&base->active_later_queue, evcb, evcb_active_next); +} + +static void +event_queue_insert_timeout(struct event_base *base, struct event *ev) +{ + EVENT_BASE_ASSERT_LOCKED(base); + + if (EVUTIL_FAILURE_CHECK(ev->ev_flags & EVLIST_TIMEOUT)) { + event_errx(1, "%s: %p(fd "EV_SOCK_FMT") already on timeout", __func__, + ev, EV_SOCK_ARG(ev->ev_fd)); + return; + } + + INCR_EVENT_COUNT(base, ev->ev_flags); + + ev->ev_flags |= EVLIST_TIMEOUT; + + if (is_common_timeout(&ev->ev_timeout, base)) { + struct common_timeout_list *ctl = + get_common_timeout_list(base, &ev->ev_timeout); + insert_common_timeout_inorder(ctl, ev); + } else { + min_heap_push_(&base->timeheap, ev); + } +} + +static void +event_queue_make_later_events_active(struct event_base *base) +{ + struct event_callback *evcb; + EVENT_BASE_ASSERT_LOCKED(base); + + while ((evcb = TAILQ_FIRST(&base->active_later_queue))) { + TAILQ_REMOVE(&base->active_later_queue, evcb, evcb_active_next); + evcb->evcb_flags = (evcb->evcb_flags & ~EVLIST_ACTIVE_LATER) | EVLIST_ACTIVE; + EVUTIL_ASSERT(evcb->evcb_pri < base->nactivequeues); + TAILQ_INSERT_TAIL(&base->activequeues[evcb->evcb_pri], evcb, evcb_active_next); + base->n_deferreds_queued += (evcb->evcb_closure == EV_CLOSURE_CB_SELF); + } +} + +/* Functions for debugging */ + +const char * +event_get_version(void) +{ + return (EVENT__VERSION); +} + +ev_uint32_t +event_get_version_number(void) +{ + return (EVENT__NUMERIC_VERSION); +} + +/* + * No thread-safe interface needed - the information should be the same + * for all threads. + */ + +const char * +event_get_method(void) +{ + return (current_base->evsel->name); +} + +#ifndef EVENT__DISABLE_MM_REPLACEMENT +static void *(*mm_malloc_fn_)(size_t sz) = NULL; +static void *(*mm_realloc_fn_)(void *p, size_t sz) = NULL; +static void (*mm_free_fn_)(void *p) = NULL; + +void * +event_mm_malloc_(size_t sz) +{ + if (sz == 0) + return NULL; + + if (mm_malloc_fn_) + return mm_malloc_fn_(sz); + else + return malloc(sz); +} + +void * +event_mm_calloc_(size_t count, size_t size) +{ + if (count == 0 || size == 0) + return NULL; + + if (mm_malloc_fn_) { + size_t sz = count * size; + void *p = NULL; + if (count > EV_SIZE_MAX / size) + goto error; + p = mm_malloc_fn_(sz); + if (p) + return memset(p, 0, sz); + } else { + void *p = calloc(count, size); +#ifdef _WIN32 + /* Windows calloc doesn't reliably set ENOMEM */ + if (p == NULL) + goto error; +#endif + return p; + } + +error: + errno = ENOMEM; + return NULL; +} + +char * +event_mm_strdup_(const char *str) +{ + if (!str) { + errno = EINVAL; + return NULL; + } + + if (mm_malloc_fn_) { + size_t ln = strlen(str); + void *p = NULL; + if (ln == EV_SIZE_MAX) + goto error; + p = mm_malloc_fn_(ln+1); + if (p) + return memcpy(p, str, ln+1); + } else +#ifdef _WIN32 + return _strdup(str); +#else + return strdup(str); +#endif + +error: + errno = ENOMEM; + return NULL; +} + +void * +event_mm_realloc_(void *ptr, size_t sz) +{ + if (mm_realloc_fn_) + return mm_realloc_fn_(ptr, sz); + else + return realloc(ptr, sz); +} + +void +event_mm_free_(void *ptr) +{ + if (mm_free_fn_) + mm_free_fn_(ptr); + else + free(ptr); +} + +void +event_set_mem_functions(void *(*malloc_fn)(size_t sz), + void *(*realloc_fn)(void *ptr, size_t sz), + void (*free_fn)(void *ptr)) +{ + mm_malloc_fn_ = malloc_fn; + mm_realloc_fn_ = realloc_fn; + mm_free_fn_ = free_fn; +} +#endif + +#ifdef EVENT__HAVE_EVENTFD +static void +evthread_notify_drain_eventfd(evutil_socket_t fd, short what, void *arg) +{ + ev_uint64_t msg; + ev_ssize_t r; + struct event_base *base = arg; + + r = read(fd, (void*) &msg, sizeof(msg)); + if (r<0 && errno != EAGAIN) { + event_sock_warn(fd, "Error reading from eventfd"); + } + EVBASE_ACQUIRE_LOCK(base, th_base_lock); + base->is_notify_pending = 0; + EVBASE_RELEASE_LOCK(base, th_base_lock); +} +#endif + +static void +evthread_notify_drain_default(evutil_socket_t fd, short what, void *arg) +{ + unsigned char buf[1024]; + struct event_base *base = arg; +#ifdef _WIN32 + while (recv(fd, (char*)buf, sizeof(buf), 0) > 0) + ; +#else + while (read(fd, (char*)buf, sizeof(buf)) > 0) + ; +#endif + + EVBASE_ACQUIRE_LOCK(base, th_base_lock); + base->is_notify_pending = 0; + EVBASE_RELEASE_LOCK(base, th_base_lock); +} + +int +evthread_make_base_notifiable(struct event_base *base) +{ + int r; + if (!base) + return -1; + + EVBASE_ACQUIRE_LOCK(base, th_base_lock); + r = evthread_make_base_notifiable_nolock_(base); + EVBASE_RELEASE_LOCK(base, th_base_lock); + return r; +} + +static int +evthread_make_base_notifiable_nolock_(struct event_base *base) +{ + void (*cb)(evutil_socket_t, short, void *); + int (*notify)(struct event_base *); + + if (base->th_notify_fn != NULL) { + /* The base is already notifiable: we're doing fine. */ + return 0; + } + +#if defined(EVENT__HAVE_WORKING_KQUEUE) + if (base->evsel == &kqops && event_kq_add_notify_event_(base) == 0) { + base->th_notify_fn = event_kq_notify_base_; + /* No need to add an event here; the backend can wake + * itself up just fine. */ + return 0; + } +#endif + +#ifdef EVENT__HAVE_EVENTFD + base->th_notify_fd[0] = evutil_eventfd_(0, + EVUTIL_EFD_CLOEXEC|EVUTIL_EFD_NONBLOCK); + if (base->th_notify_fd[0] >= 0) { + base->th_notify_fd[1] = -1; + notify = evthread_notify_base_eventfd; + cb = evthread_notify_drain_eventfd; + } else +#endif + if (evutil_make_internal_pipe_(base->th_notify_fd) == 0) { + notify = evthread_notify_base_default; + cb = evthread_notify_drain_default; + } else { + return -1; + } + + base->th_notify_fn = notify; + + /* prepare an event that we can use for wakeup */ + event_assign(&base->th_notify, base, base->th_notify_fd[0], + EV_READ|EV_PERSIST, cb, base); + + /* we need to mark this as internal event */ + base->th_notify.ev_flags |= EVLIST_INTERNAL; + event_priority_set(&base->th_notify, 0); + + return event_add_nolock_(&base->th_notify, NULL, 0); +} + +int +event_base_foreach_event_nolock_(struct event_base *base, + event_base_foreach_event_cb fn, void *arg) +{ + int r, i; + unsigned u; + struct event *ev; + + /* Start out with all the EVLIST_INSERTED events. */ + if ((r = evmap_foreach_event_(base, fn, arg))) + return r; + + /* Okay, now we deal with those events that have timeouts and are in + * the min-heap. */ + for (u = 0; u < base->timeheap.n; ++u) { + ev = base->timeheap.p[u]; + if (ev->ev_flags & EVLIST_INSERTED) { + /* we already processed this one */ + continue; + } + if ((r = fn(base, ev, arg))) + return r; + } + + /* Now for the events in one of the timeout queues. + * the min-heap. */ + for (i = 0; i < base->n_common_timeouts; ++i) { + struct common_timeout_list *ctl = + base->common_timeout_queues[i]; + TAILQ_FOREACH(ev, &ctl->events, + ev_timeout_pos.ev_next_with_common_timeout) { + if (ev->ev_flags & EVLIST_INSERTED) { + /* we already processed this one */ + continue; + } + if ((r = fn(base, ev, arg))) + return r; + } + } + + /* Finally, we deal wit all the active events that we haven't touched + * yet. */ + for (i = 0; i < base->nactivequeues; ++i) { + struct event_callback *evcb; + TAILQ_FOREACH(evcb, &base->activequeues[i], evcb_active_next) { + if ((evcb->evcb_flags & (EVLIST_INIT|EVLIST_INSERTED|EVLIST_TIMEOUT)) != EVLIST_INIT) { + /* This isn't an event (evlist_init clear), or + * we already processed it. (inserted or + * timeout set */ + continue; + } + ev = event_callback_to_event(evcb); + if ((r = fn(base, ev, arg))) + return r; + } + } + + return 0; +} + +/* Helper for event_base_dump_events: called on each event in the event base; + * dumps only the inserted events. */ +static int +dump_inserted_event_fn(const struct event_base *base, const struct event *e, void *arg) +{ + FILE *output = arg; + const char *gloss = (e->ev_events & EV_SIGNAL) ? + "sig" : "fd "; + + if (! (e->ev_flags & (EVLIST_INSERTED|EVLIST_TIMEOUT))) + return 0; + + fprintf(output, " %p [%s "EV_SOCK_FMT"]%s%s%s%s%s%s", + (void*)e, gloss, EV_SOCK_ARG(e->ev_fd), + (e->ev_events&EV_READ)?" Read":"", + (e->ev_events&EV_WRITE)?" Write":"", + (e->ev_events&EV_CLOSED)?" EOF":"", + (e->ev_events&EV_SIGNAL)?" Signal":"", + (e->ev_events&EV_PERSIST)?" Persist":"", + (e->ev_flags&EVLIST_INTERNAL)?" Internal":""); + if (e->ev_flags & EVLIST_TIMEOUT) { + struct timeval tv; + tv.tv_sec = e->ev_timeout.tv_sec; + tv.tv_usec = e->ev_timeout.tv_usec & MICROSECONDS_MASK; + evutil_timeradd(&tv, &base->tv_clock_diff, &tv); + fprintf(output, " Timeout=%ld.%06d", + (long)tv.tv_sec, (int)(tv.tv_usec & MICROSECONDS_MASK)); + } + fputc('\n', output); + + return 0; +} + +/* Helper for event_base_dump_events: called on each event in the event base; + * dumps only the active events. */ +static int +dump_active_event_fn(const struct event_base *base, const struct event *e, void *arg) +{ + FILE *output = arg; + const char *gloss = (e->ev_events & EV_SIGNAL) ? + "sig" : "fd "; + + if (! (e->ev_flags & (EVLIST_ACTIVE|EVLIST_ACTIVE_LATER))) + return 0; + + fprintf(output, " %p [%s "EV_SOCK_FMT", priority=%d]%s%s%s%s%s active%s%s\n", + (void*)e, gloss, EV_SOCK_ARG(e->ev_fd), e->ev_pri, + (e->ev_res&EV_READ)?" Read":"", + (e->ev_res&EV_WRITE)?" Write":"", + (e->ev_res&EV_CLOSED)?" EOF":"", + (e->ev_res&EV_SIGNAL)?" Signal":"", + (e->ev_res&EV_TIMEOUT)?" Timeout":"", + (e->ev_flags&EVLIST_INTERNAL)?" [Internal]":"", + (e->ev_flags&EVLIST_ACTIVE_LATER)?" [NextTime]":""); + + return 0; +} + +int +event_base_foreach_event(struct event_base *base, + event_base_foreach_event_cb fn, void *arg) +{ + int r; + if ((!fn) || (!base)) { + return -1; + } + EVBASE_ACQUIRE_LOCK(base, th_base_lock); + r = event_base_foreach_event_nolock_(base, fn, arg); + EVBASE_RELEASE_LOCK(base, th_base_lock); + return r; +} + + +void +event_base_dump_events(struct event_base *base, FILE *output) +{ + EVBASE_ACQUIRE_LOCK(base, th_base_lock); + fprintf(output, "Inserted events:\n"); + event_base_foreach_event_nolock_(base, dump_inserted_event_fn, output); + + fprintf(output, "Active events:\n"); + event_base_foreach_event_nolock_(base, dump_active_event_fn, output); + EVBASE_RELEASE_LOCK(base, th_base_lock); +} + +void +event_base_active_by_fd(struct event_base *base, evutil_socket_t fd, short events) +{ + EVBASE_ACQUIRE_LOCK(base, th_base_lock); + evmap_io_active_(base, fd, events & (EV_READ|EV_WRITE|EV_CLOSED)); + EVBASE_RELEASE_LOCK(base, th_base_lock); +} + +void +event_base_active_by_signal(struct event_base *base, int sig) +{ + EVBASE_ACQUIRE_LOCK(base, th_base_lock); + evmap_signal_active_(base, sig, 1); + EVBASE_RELEASE_LOCK(base, th_base_lock); +} + + +void +event_base_add_virtual_(struct event_base *base) +{ + EVBASE_ACQUIRE_LOCK(base, th_base_lock); + base->virtual_event_count++; + MAX_EVENT_COUNT(base->virtual_event_count_max, base->virtual_event_count); + EVBASE_RELEASE_LOCK(base, th_base_lock); +} + +void +event_base_del_virtual_(struct event_base *base) +{ + EVBASE_ACQUIRE_LOCK(base, th_base_lock); + EVUTIL_ASSERT(base->virtual_event_count > 0); + base->virtual_event_count--; + if (base->virtual_event_count == 0 && EVBASE_NEED_NOTIFY(base)) + evthread_notify_base(base); + EVBASE_RELEASE_LOCK(base, th_base_lock); +} + +static void +event_free_debug_globals_locks(void) +{ +#ifndef EVENT__DISABLE_THREAD_SUPPORT +#ifndef EVENT__DISABLE_DEBUG_MODE + if (event_debug_map_lock_ != NULL) { + EVTHREAD_FREE_LOCK(event_debug_map_lock_, 0); + event_debug_map_lock_ = NULL; + evthreadimpl_disable_lock_debugging_(); + } +#endif /* EVENT__DISABLE_DEBUG_MODE */ +#endif /* EVENT__DISABLE_THREAD_SUPPORT */ + return; +} + +static void +event_free_debug_globals(void) +{ + event_free_debug_globals_locks(); +} + +static void +event_free_evsig_globals(void) +{ + evsig_free_globals_(); +} + +static void +event_free_evutil_globals(void) +{ + evutil_free_globals_(); +} + +static void +event_free_globals(void) +{ + event_free_debug_globals(); + event_free_evsig_globals(); + event_free_evutil_globals(); +} + +void +libevent_global_shutdown(void) +{ + event_disable_debug_mode(); + event_free_globals(); +} + +#ifndef EVENT__DISABLE_THREAD_SUPPORT +int +event_global_setup_locks_(const int enable_locks) +{ +#ifndef EVENT__DISABLE_DEBUG_MODE + EVTHREAD_SETUP_GLOBAL_LOCK(event_debug_map_lock_, 0); +#endif + if (evsig_global_setup_locks_(enable_locks) < 0) + return -1; + if (evutil_global_setup_locks_(enable_locks) < 0) + return -1; + if (evutil_secure_rng_global_setup_locks_(enable_locks) < 0) + return -1; + return 0; +} +#endif + +void +event_base_assert_ok_(struct event_base *base) +{ + EVBASE_ACQUIRE_LOCK(base, th_base_lock); + event_base_assert_ok_nolock_(base); + EVBASE_RELEASE_LOCK(base, th_base_lock); +} + +void +event_base_assert_ok_nolock_(struct event_base *base) +{ + int i; + int count; + + /* First do checks on the per-fd and per-signal lists */ + evmap_check_integrity_(base); + + /* Check the heap property */ + for (i = 1; i < (int)base->timeheap.n; ++i) { + int parent = (i - 1) / 2; + struct event *ev, *p_ev; + ev = base->timeheap.p[i]; + p_ev = base->timeheap.p[parent]; + EVUTIL_ASSERT(ev->ev_flags & EVLIST_TIMEOUT); + EVUTIL_ASSERT(evutil_timercmp(&p_ev->ev_timeout, &ev->ev_timeout, <=)); + EVUTIL_ASSERT(ev->ev_timeout_pos.min_heap_idx == i); + } + + /* Check that the common timeouts are fine */ + for (i = 0; i < base->n_common_timeouts; ++i) { + struct common_timeout_list *ctl = base->common_timeout_queues[i]; + struct event *last=NULL, *ev; + + EVUTIL_ASSERT_TAILQ_OK(&ctl->events, event, ev_timeout_pos.ev_next_with_common_timeout); + + TAILQ_FOREACH(ev, &ctl->events, ev_timeout_pos.ev_next_with_common_timeout) { + if (last) + EVUTIL_ASSERT(evutil_timercmp(&last->ev_timeout, &ev->ev_timeout, <=)); + EVUTIL_ASSERT(ev->ev_flags & EVLIST_TIMEOUT); + EVUTIL_ASSERT(is_common_timeout(&ev->ev_timeout,base)); + EVUTIL_ASSERT(COMMON_TIMEOUT_IDX(&ev->ev_timeout) == i); + last = ev; + } + } + + /* Check the active queues. */ + count = 0; + for (i = 0; i < base->nactivequeues; ++i) { + struct event_callback *evcb; + EVUTIL_ASSERT_TAILQ_OK(&base->activequeues[i], event_callback, evcb_active_next); + TAILQ_FOREACH(evcb, &base->activequeues[i], evcb_active_next) { + EVUTIL_ASSERT((evcb->evcb_flags & (EVLIST_ACTIVE|EVLIST_ACTIVE_LATER)) == EVLIST_ACTIVE); + EVUTIL_ASSERT(evcb->evcb_pri == i); + ++count; + } + } + + { + struct event_callback *evcb; + TAILQ_FOREACH(evcb, &base->active_later_queue, evcb_active_next) { + EVUTIL_ASSERT((evcb->evcb_flags & (EVLIST_ACTIVE|EVLIST_ACTIVE_LATER)) == EVLIST_ACTIVE_LATER); + ++count; + } + } + EVUTIL_ASSERT(count == base->event_count_active); +} diff -Nru mysql-5.7-5.7.25/extra/libevent/event-config.h.cmake mysql-5.7-5.7.26/extra/libevent/event-config.h.cmake --- mysql-5.7-5.7.25/extra/libevent/event-config.h.cmake 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/event-config.h.cmake 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,532 @@ +/* event-config.h + * + * This file was generated by cmake when the makefiles were generated. + * + * DO NOT EDIT THIS FILE. + * + * Do not rely on macros in this file existing in later versions. + */ +#ifndef EVENT2_EVENT_CONFIG_H_INCLUDED_ +#define EVENT2_EVENT_CONFIG_H_INCLUDED_ + +/* Numeric representation of the version */ +#define EVENT__NUMERIC_VERSION @EVENT_NUMERIC_VERSION@ +#define EVENT__PACKAGE_VERSION "@EVENT_PACKAGE_VERSION@" + +#define EVENT__VERSION_MAJOR @EVENT_VERSION_MAJOR@ +#define EVENT__VERSION_MINOR @EVENT_VERSION_MINOR@ +#define EVENT__VERSION_PATCH @EVENT_VERSION_PATCH@ + +/* Version number of package */ +#define EVENT__VERSION "@EVENT_VERSION@" + +/* Name of package */ +#define EVENT__PACKAGE "libevent" + +/* Define to the address where bug reports for this package should be sent. */ +#define EVENT__PACKAGE_BUGREPORT "" + +/* Define to the full name of this package. */ +#define EVENT__PACKAGE_NAME "" + +/* Define to the full name and version of this package. */ +#define EVENT__PACKAGE_STRING "" + +/* Define to the one symbol short name of this package. */ +#define EVENT__PACKAGE_TARNAME "" + +/* Define if libevent should build without support for a debug mode */ +#cmakedefine EVENT__DISABLE_DEBUG_MODE + +/* Define if libevent should not allow replacing the mm functions */ +#cmakedefine EVENT__DISABLE_MM_REPLACEMENT + +/* Define if libevent should not be compiled with thread support */ +#cmakedefine EVENT__DISABLE_THREAD_SUPPORT + +/* Define to 1 if you have the `accept4' function. */ +#cmakedefine EVENT__HAVE_ACCEPT4 + +/* Define to 1 if you have the `arc4random' function. */ +#cmakedefine EVENT__HAVE_ARC4RANDOM + +/* Define to 1 if you have the `arc4random_buf' function. */ +#cmakedefine EVENT__HAVE_ARC4RANDOM_BUF + +/* Define if clock_gettime is available in libc */ +#cmakedefine EVENT__DNS_USE_CPU_CLOCK_FOR_ID + +/* Define is no secure id variant is available */ +#cmakedefine EVENT__DNS_USE_GETTIMEOFDAY_FOR_ID +#cmakedefine EVENT__DNS_USE_FTIME_FOR_ID + +/* Define to 1 if you have the header file. */ +#cmakedefine EVENT__HAVE_ARPA_INET_H + +/* Define to 1 if you have the `clock_gettime' function. */ +#cmakedefine EVENT__HAVE_CLOCK_GETTIME + +/* Define to 1 if you have the declaration of `CTL_KERN'. */ +#cmakedefine EVENT__HAVE_DECL_CTL_KERN + +/* Define to 1 if you have the declaration of `KERN_ARND'. */ +#cmakedefine EVENT__HAVE_DECL_KERN_ARND + +/* Define to 1 if you have the declaration of `KERN_RANDOM'. */ +#cmakedefine EVENT__HAVE_DECL_KERN_RANDOM + +/* Define if /dev/poll is available */ +#cmakedefine EVENT__HAVE_DEVPOLL + +/* Define to 1 if you have the header file. */ +#cmakedefine EVENT__HAVE_NETDB_H + +/* Define to 1 if fd_mask type is defined */ +#cmakedefine EVENT__HAVE_FD_MASK + +/* Define to 1 if the header file defines TAILQ_FOREACH. */ +#cmakedefine EVENT__HAVE_TAILQFOREACH + +/* Define to 1 if you have the header file. */ +#cmakedefine EVENT__HAVE_DLFCN_H + +/* Define if your system supports the epoll system calls */ +#cmakedefine EVENT__HAVE_EPOLL + +/* Define to 1 if you have the `epoll_create1' function. */ +#cmakedefine EVENT__HAVE_EPOLL_CREATE1 + +/* Define to 1 if you have the `epoll_ctl' function. */ +#cmakedefine EVENT__HAVE_EPOLL_CTL + +/* Define to 1 if you have the `eventfd' function. */ +#cmakedefine EVENT__HAVE_EVENTFD + +/* Define if your system supports event ports */ +#cmakedefine EVENT__HAVE_EVENT_PORTS + +/* Define to 1 if you have the `fcntl' function. */ +#cmakedefine EVENT__HAVE_FCNTL + +/* Define to 1 if you have the header file. */ +#cmakedefine EVENT__HAVE_FCNTL_H + +/* Define to 1 if you have the `getaddrinfo' function. */ +#cmakedefine EVENT__HAVE_GETADDRINFO + +/* Define to 1 if you have the `getegid' function. */ +#cmakedefine EVENT__HAVE_GETEGID + +/* Define to 1 if you have the `geteuid' function. */ +#cmakedefine EVENT__HAVE_GETEUID + +/* TODO: Check for different gethostname argument counts. CheckPrototypeDefinition.cmake can be used. */ +/* Define this if you have any gethostbyname_r() */ +#cmakedefine EVENT__HAVE_GETHOSTBYNAME_R + +/* Define this if gethostbyname_r takes 3 arguments */ +#cmakedefine EVENT__HAVE_GETHOSTBYNAME_R_3_ARG + +/* Define this if gethostbyname_r takes 5 arguments */ +#cmakedefine EVENT__HAVE_GETHOSTBYNAME_R_5_ARG + +/* Define this if gethostbyname_r takes 6 arguments */ +#cmakedefine EVENT__HAVE_GETHOSTBYNAME_R_6_ARG + +/* Define to 1 if you have the `getifaddrs' function. */ +#cmakedefine EVENT__HAVE_GETIFADDRS + +/* Define to 1 if you have the `getnameinfo' function. */ +#cmakedefine EVENT__HAVE_GETNAMEINFO + +/* Define to 1 if you have the `getprotobynumber' function. */ +#cmakedefine EVENT__HAVE_GETPROTOBYNUMBER + +/* Define to 1 if you have the `getservbyname' function. */ +#cmakedefine EVENT__HAVE_GETSERVBYNAME + +/* Define to 1 if you have the `gettimeofday' function. */ +#cmakedefine EVENT__HAVE_GETTIMEOFDAY + +/* Define to 1 if you have the header file. */ +#cmakedefine EVENT__HAVE_IFADDRS_H + +/* Define to 1 if you have the `inet_ntop' function. */ +#cmakedefine EVENT__HAVE_INET_NTOP + +/* Define to 1 if you have the `inet_pton' function. */ +#cmakedefine EVENT__HAVE_INET_PTON + +/* Define to 1 if you have the header file. */ +#cmakedefine EVENT__HAVE_INTTYPES_H + +/* Define to 1 if you have the `issetugid' function. */ +#cmakedefine EVENT__HAVE_ISSETUGID + +/* Define to 1 if you have the `kqueue' function. */ +#cmakedefine EVENT__HAVE_KQUEUE + +/* Define if the system has zlib */ +#cmakedefine EVENT__HAVE_LIBZ + +/* Define to 1 if you have the `mach_absolute_time' function. */ +#cmakedefine EVENT__HAVE_MACH_ABSOLUTE_TIME + +/* Define to 1 if you have the header file. */ +#cmakedefine EVENT__HAVE_MACH_MACH_TIME_H + +/* Define to 1 if you have the header file. */ +#cmakedefine EVENT__HAVE_MEMORY_H + +/* Define to 1 if you have the `mmap' function. */ +#cmakedefine EVENT__HAVE_MMAP + +/* Define to 1 if you have the `nanosleep' function. */ +#cmakedefine EVENT__HAVE_NANOSLEEP + +/* Define to 1 if you have the `usleep' function. */ +#cmakedefine EVENT__HAVE_USLEEP + +/* Define to 1 if you have the header file. */ +#cmakedefine EVENT__HAVE_NETINET_IN6_H + +/* Define to 1 if you have the header file. */ +#cmakedefine EVENT__HAVE_NETINET_IN_H + +/* Define to 1 if you have the header file. */ +#cmakedefine EVENT__HAVE_NETINET_TCP_H + +/* Define if the system has openssl */ +#cmakedefine EVENT__HAVE_OPENSSL + +/* Define to 1 if you have the `pipe' function. */ +#cmakedefine EVENT__HAVE_PIPE + +/* Define to 1 if you have the `pipe2' function. */ +#cmakedefine EVENT__HAVE_PIPE2 + +/* Define to 1 if you have the `poll' function. */ +#cmakedefine EVENT__HAVE_POLL + +/* Define to 1 if you have the header file. */ +#cmakedefine EVENT__HAVE_POLL_H + +/* Define to 1 if you have the `port_create' function. */ +#cmakedefine EVENT__HAVE_PORT_CREATE + +/* Define to 1 if you have the header file. */ +#cmakedefine EVENT__HAVE_PORT_H + +/* Define if we have pthreads on this system */ +#cmakedefine EVENT__HAVE_PTHREADS + +/* Define to 1 if you have the `putenv' function. */ +#cmakedefine EVENT__HAVE_PUTENV + +/* Define to 1 if the system has the type `sa_family_t'. */ +#cmakedefine EVENT__HAVE_SA_FAMILY_T + +/* Define to 1 if you have the `select' function. */ +#cmakedefine EVENT__HAVE_SELECT + +/* Define to 1 if you have the `setenv' function. */ +#cmakedefine EVENT__HAVE_SETENV + +/* Define if F_SETFD is defined in */ +#cmakedefine EVENT__HAVE_SETFD + +/* Define to 1 if you have the `setrlimit' function. */ +#cmakedefine EVENT__HAVE_SETRLIMIT + +/* Define to 1 if you have the `sendfile' function. */ +#cmakedefine EVENT__HAVE_SENDFILE + +/* Define if F_SETFD is defined in */ +#cmakedefine EVENT__HAVE_SETFD + +/* Define to 1 if you have the `sigaction' function. */ +#cmakedefine EVENT__HAVE_SIGACTION + +/* Define to 1 if you have the `signal' function. */ +#cmakedefine EVENT__HAVE_SIGNAL + +/* Define to 1 if you have the `splice' function. */ +#cmakedefine EVENT__HAVE_SPLICE + +/* Define to 1 if you have the header file. */ +#cmakedefine EVENT__HAVE_STDARG_H + +/* Define to 1 if you have the header file. */ +#cmakedefine EVENT__HAVE_STDDEF_H + +/* Define to 1 if you have the header file. */ +#cmakedefine EVENT__HAVE_STDINT_H + +/* Define to 1 if you have the header file. */ +#cmakedefine EVENT__HAVE_STDLIB_H + +/* Define to 1 if you have the header file. */ +#cmakedefine EVENT__HAVE_STRINGS_H + +/* Define to 1 if you have the header file. */ +#cmakedefine EVENT__HAVE_STRING_H + +/* Define to 1 if you have the `strlcpy' function. */ +#cmakedefine EVENT__HAVE_STRLCPY + +/* Define to 1 if you have the `strsep' function. */ +#cmakedefine EVENT__HAVE_STRSEP + +/* Define to 1 if you have the `strtok_r' function. */ +#cmakedefine EVENT__HAVE_STRTOK_R + +/* Define to 1 if you have the `strtoll' function. */ +#cmakedefine EVENT__HAVE_STRTOLL + +/* Define to 1 if the system has the type `struct addrinfo'. */ +#cmakedefine EVENT__HAVE_STRUCT_ADDRINFO + +/* Define to 1 if the system has the type `struct in6_addr'. */ +#cmakedefine EVENT__HAVE_STRUCT_IN6_ADDR + +/* Define to 1 if `s6_addr16' is member of `struct in6_addr'. */ +#cmakedefine EVENT__HAVE_STRUCT_IN6_ADDR_S6_ADDR16 + +/* Define to 1 if `s6_addr32' is member of `struct in6_addr'. */ +#cmakedefine EVENT__HAVE_STRUCT_IN6_ADDR_S6_ADDR32 + +/* Define to 1 if the system has the type `struct sockaddr_in6'. */ +#cmakedefine EVENT__HAVE_STRUCT_SOCKADDR_IN6 + +/* Define to 1 if `sin6_len' is member of `struct sockaddr_in6'. */ +#cmakedefine EVENT__HAVE_STRUCT_SOCKADDR_IN6_SIN6_LEN + +/* Define to 1 if `sin_len' is member of `struct sockaddr_in'. */ +#cmakedefine EVENT__HAVE_STRUCT_SOCKADDR_IN_SIN_LEN + +/* Define to 1 if the system has the type `struct sockaddr_storage'. */ +#cmakedefine EVENT__HAVE_STRUCT_SOCKADDR_STORAGE + +/* Define to 1 if `ss_family' is a member of `struct sockaddr_storage'. */ +#cmakedefine EVENT__HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY + +/* Define to 1 if `__ss_family' is a member of `struct sockaddr_storage'. */ +#cmakedefine EVENT__HAVE_STRUCT_SOCKADDR_STORAGE___SS_FAMILY + +/* Define to 1 if you have the `sysctl' function. */ +#cmakedefine EVENT__HAVE_SYSCTL + +/* Define to 1 if you have the header file. */ +#cmakedefine EVENT__HAVE_SYS_DEVPOLL_H + +/* Define to 1 if you have the header file. */ +#cmakedefine EVENT__HAVE_SYS_EPOLL_H + +/* Define to 1 if you have the header file. */ +#cmakedefine EVENT__HAVE_SYS_EVENTFD_H + +/* Define to 1 if you have the header file. */ +#cmakedefine EVENT__HAVE_SYS_EVENT_H + +/* Define to 1 if you have the header file. */ +#cmakedefine EVENT__HAVE_SYS_IOCTL_H + +/* Define to 1 if you have the header file. */ +#cmakedefine EVENT__HAVE_SYS_MMAN_H + +/* Define to 1 if you have the header file. */ +#cmakedefine EVENT__HAVE_SYS_PARAM_H + +/* Define to 1 if you have the header file. */ +#cmakedefine EVENT__HAVE_SYS_QUEUE_H + +/* Define to 1 if you have the header file. */ +#cmakedefine EVENT__HAVE_SYS_RESOURCE_H + +/* Define to 1 if you have the header file. */ +#cmakedefine EVENT__HAVE_SYS_SELECT_H + +/* Define to 1 if you have the header file. */ +#cmakedefine EVENT__HAVE_SYS_SENDFILE_H + +/* Define to 1 if you have the header file. */ +#cmakedefine EVENT__HAVE_SYS_SOCKET_H + +/* Define to 1 if you have the header file. */ +#cmakedefine EVENT__HAVE_SYS_STAT_H + +/* Define to 1 if you have the header file. */ +#cmakedefine EVENT__HAVE_SYS_SYSCTL_H + +/* Define to 1 if you have the header file. */ +#cmakedefine EVENT__HAVE_SYS_TIMERFD_H */ + +/* Define to 1 if you have the header file. */ +#cmakedefine EVENT__HAVE_SYS_TIME_H + +/* Define to 1 if you have the header file. */ +#cmakedefine EVENT__HAVE_SYS_TYPES_H + +/* Define to 1 if you have the header file. */ +#cmakedefine EVENT__HAVE_SYS_UIO_H + +/* Define to 1 if you have the header file. */ +#cmakedefine EVENT__HAVE_SYS_WAIT_H + +/* Define to 1 if you have the header file. */ +#cmakedefine EVENT__HAVE_ERRNO_H + +/* Define if TAILQ_FOREACH is defined in */ +#cmakedefine EVENT__HAVE_TAILQFOREACH + +/* Define if timeradd is defined in */ +#cmakedefine EVENT__HAVE_TIMERADD + +/* Define if timerclear is defined in */ +#cmakedefine EVENT__HAVE_TIMERCLEAR + +/* Define if timercmp is defined in */ +#cmakedefine EVENT__HAVE_TIMERCMP + + +/* Define to 1 if you have the `timerfd_create' function. */ +#cmakedefine EVENT__HAVE_TIMERFD_CREATE + +/* Define if timerisset is defined in */ +#cmakedefine EVENT__HAVE_TIMERISSET + +/* Define to 1 if the system has the type `uint8_t'. */ +#cmakedefine EVENT__HAVE_UINT8_T + +/* Define to 1 if the system has the type `uint16_t'. */ +#cmakedefine EVENT__HAVE_UINT16_T + +/* Define to 1 if the system has the type `uint32_t'. */ +#cmakedefine EVENT__HAVE_UINT32_T + +/* Define to 1 if the system has the type `uint64_t'. */ +#cmakedefine EVENT__HAVE_UINT64_T + +/* Define to 1 if the system has the type `uintptr_t'. */ +#cmakedefine EVENT__HAVE_UINTPTR_T + +/* Define to 1 if you have the `umask' function. */ +#cmakedefine EVENT__HAVE_UMASK + +/* Define to 1 if you have the header file. */ +#cmakedefine EVENT__HAVE_UNISTD_H + +/* Define to 1 if you have the `unsetenv' function. */ +#cmakedefine EVENT__HAVE_UNSETENV + +/* Define to 1 if you have the `vasprintf' function. */ +#cmakedefine EVENT__HAVE_VASPRINTF + +/* Define if kqueue works correctly with pipes */ +#cmakedefine EVENT__HAVE_WORKING_KQUEUE + +#ifdef __USE_UNUSED_DEFINITIONS__ +/* Define to necessary symbol if this constant uses a non-standard name on your system. */ +/* XXX: Hello, this isn't even used, nor is it defined anywhere... - Ellzey */ +#define EVENT__PTHREAD_CREATE_JOINABLE ${EVENT__PTHREAD_CREATE_JOINABLE} +#endif + +/* The size of `pthread_t', as computed by sizeof. */ +#define EVENT__SIZEOF_PTHREAD_T @EVENT__SIZEOF_PTHREAD_T@ + +/* The size of a `int', as computed by sizeof. */ +#define EVENT__SIZEOF_INT @EVENT__SIZEOF_INT@ + +/* The size of a `long', as computed by sizeof. */ +#define EVENT__SIZEOF_LONG @EVENT__SIZEOF_LONG@ + +/* The size of a `long long', as computed by sizeof. */ +#define EVENT__SIZEOF_LONG_LONG @EVENT__SIZEOF_LONG_LONG@ + +/* The size of `off_t', as computed by sizeof. */ +#define EVENT__SIZEOF_OFF_T @EVENT__SIZEOF_OFF_T@ + +#define EVENT__SIZEOF_SSIZE_T @EVENT__SIZEOF_SSIZE_T@ + + +/* The size of a `short', as computed by sizeof. */ +#define EVENT__SIZEOF_SHORT @EVENT__SIZEOF_SHORT@ + +/* The size of `size_t', as computed by sizeof. */ +#define EVENT__SIZEOF_SIZE_T @EVENT__SIZEOF_SIZE_T@ + +/* Define to 1 if you have the ANSI C header files. */ +#cmakedefine EVENT__STDC_HEADERS + +/* Define to 1 if you can safely include both and . */ +#cmakedefine EVENT__TIME_WITH_SYS_TIME + +/* The size of `socklen_t', as computed by sizeof. */ +#define EVENT__SIZEOF_SOCKLEN_T @EVENT__SIZEOF_SOCKLEN_T@ + +/* The size of 'void *', as computer by sizeof */ +#define EVENT__SIZEOF_VOID_P @EVENT__SIZEOF_VOID_P@ + +/* set an alias for whatever __func__ __FUNCTION__ is, what sillyness */ +#if defined (__func__) +#define EVENT____func__ __func__ +#elif defined(__FUNCTION__) +#define EVENT____func__ __FUNCTION__ +#else +#define EVENT____func__ __FILE__ +#endif + + +#ifdef __THESE_ARE_NOT_CONFIG_H_THINGS_THEY_ARE_DASH_D_THINGS__ +/* Number of bits in a file offset, on hosts where this is settable. */ +/* Ellzey is not satisfied */ +#define EVENT___FILE_OFFSET_BITS @EVENT___FILE_OFFSET_BITS@ + +/* Define for large files, on AIX-style hosts. */ +#define @_LARGE_FILES@ +#endif + +#ifdef _WhAT_DOES_THIS_EVEN_DO_ +/* Define to empty if `const' does not conform to ANSI C. */ +/* lolwut? - ellzey */ +#undef EVENT__const +#endif + + +/* Define to `__inline__' or `__inline' if that's what the C compiler + calls it, or to nothing if 'inline' is not supported under any name. */ +#ifndef __cplusplus +/* why not c++? + * + * and are we really expected to use EVENT__inline everywhere, + * shouldn't we just do: + * ifdef EVENT__inline + * define inline EVENT__inline + * + * - Ellzey + */ + +#define EVENT__inline @EVENT__inline@ +#endif + +/* Define to `int' if does not define. */ +#define EVENT__pid_t @EVENT__pid_t@ + +/* Define to `unsigned' if does not define. */ +#define EVENT__size_t @EVENT__size_t@ + +/* Define to unsigned int if you dont have it */ +#define EVENT__socklen_t @EVENT__socklen_t@ + +/* Define to `int' if does not define. */ +#define EVENT__ssize_t @EVENT__ssize_t@ + +#cmakedefine EVENT__NEED_DLLIMPORT + +/* Define to 1 if you have ERR_remove_thread_stat(). */ +#cmakedefine EVENT__HAVE_ERR_REMOVE_THREAD_STATE + +/* Define if waitpid() supports WNOWAIT */ +#cmakedefine EVENT__HAVE_WAITPID_WITH_WNOWAIT + +#endif diff -Nru mysql-5.7-5.7.25/extra/libevent/event-internal.h mysql-5.7-5.7.26/extra/libevent/event-internal.h --- mysql-5.7-5.7.25/extra/libevent/event-internal.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/event-internal.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,479 @@ +/* + * Copyright (c) 2000-2007 Niels Provos + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef EVENT_INTERNAL_H_INCLUDED_ +#define EVENT_INTERNAL_H_INCLUDED_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include "event2/event-config.h" +#include "evconfig-private.h" + +#include +#include +#include "event2/event_struct.h" +#include "minheap-internal.h" +#include "evsignal-internal.h" +#include "mm-internal.h" +#include "defer-internal.h" + +/* map union members back */ + +/* mutually exclusive */ +#define ev_signal_next ev_.ev_signal.ev_signal_next +#define ev_io_next ev_.ev_io.ev_io_next +#define ev_io_timeout ev_.ev_io.ev_timeout + +/* used only by signals */ +#define ev_ncalls ev_.ev_signal.ev_ncalls +#define ev_pncalls ev_.ev_signal.ev_pncalls + +#define ev_pri ev_evcallback.evcb_pri +#define ev_flags ev_evcallback.evcb_flags +#define ev_closure ev_evcallback.evcb_closure +#define ev_callback ev_evcallback.evcb_cb_union.evcb_callback +#define ev_arg ev_evcallback.evcb_arg + +/** @name Event closure codes + + Possible values for evcb_closure in struct event_callback + + @{ + */ +/** A regular event. Uses the evcb_callback callback */ +#define EV_CLOSURE_EVENT 0 +/** A signal event. Uses the evcb_callback callback */ +#define EV_CLOSURE_EVENT_SIGNAL 1 +/** A persistent non-signal event. Uses the evcb_callback callback */ +#define EV_CLOSURE_EVENT_PERSIST 2 +/** A simple callback. Uses the evcb_selfcb callback. */ +#define EV_CLOSURE_CB_SELF 3 +/** A finalizing callback. Uses the evcb_cbfinalize callback. */ +#define EV_CLOSURE_CB_FINALIZE 4 +/** A finalizing event. Uses the evcb_evfinalize callback. */ +#define EV_CLOSURE_EVENT_FINALIZE 5 +/** A finalizing event that should get freed after. Uses the evcb_evfinalize + * callback. */ +#define EV_CLOSURE_EVENT_FINALIZE_FREE 6 +/** @} */ + +/** Structure to define the backend of a given event_base. */ +struct eventop { + /** The name of this backend. */ + const char *name; + /** Function to set up an event_base to use this backend. It should + * create a new structure holding whatever information is needed to + * run the backend, and return it. The returned pointer will get + * stored by event_init into the event_base.evbase field. On failure, + * this function should return NULL. */ + void *(*init)(struct event_base *); + /** Enable reading/writing on a given fd or signal. 'events' will be + * the events that we're trying to enable: one or more of EV_READ, + * EV_WRITE, EV_SIGNAL, and EV_ET. 'old' will be those events that + * were enabled on this fd previously. 'fdinfo' will be a structure + * associated with the fd by the evmap; its size is defined by the + * fdinfo field below. It will be set to 0 the first time the fd is + * added. The function should return 0 on success and -1 on error. + */ + int (*add)(struct event_base *, evutil_socket_t fd, short old, short events, void *fdinfo); + /** As "add", except 'events' contains the events we mean to disable. */ + int (*del)(struct event_base *, evutil_socket_t fd, short old, short events, void *fdinfo); + /** Function to implement the core of an event loop. It must see which + added events are ready, and cause event_active to be called for each + active event (usually via event_io_active or such). It should + return 0 on success and -1 on error. + */ + int (*dispatch)(struct event_base *, struct timeval *); + /** Function to clean up and free our data from the event_base. */ + void (*dealloc)(struct event_base *); + /** Flag: set if we need to reinitialize the event base after we fork. + */ + int need_reinit; + /** Bit-array of supported event_method_features that this backend can + * provide. */ + enum event_method_feature features; + /** Length of the extra information we should record for each fd that + has one or more active events. This information is recorded + as part of the evmap entry for each fd, and passed as an argument + to the add and del functions above. + */ + size_t fdinfo_len; +}; + +#ifdef _WIN32 +/* If we're on win32, then file descriptors are not nice low densely packed + integers. Instead, they are pointer-like windows handles, and we want to + use a hashtable instead of an array to map fds to events. +*/ +#define EVMAP_USE_HT +#endif + +/* #define HT_CACHE_HASH_VALS */ + +#ifdef EVMAP_USE_HT +#define HT_NO_CACHE_HASH_VALUES +#include "ht-internal.h" +struct event_map_entry; +HT_HEAD(event_io_map, event_map_entry); +#else +#define event_io_map event_signal_map +#endif + +/* Used to map signal numbers to a list of events. If EVMAP_USE_HT is not + defined, this structure is also used as event_io_map, which maps fds to a + list of events. +*/ +struct event_signal_map { + /* An array of evmap_io * or of evmap_signal *; empty entries are + * set to NULL. */ + void **entries; + /* The number of entries available in entries */ + int nentries; +}; + +/* A list of events waiting on a given 'common' timeout value. Ordinarily, + * events waiting for a timeout wait on a minheap. Sometimes, however, a + * queue can be faster. + **/ +struct common_timeout_list { + /* List of events currently waiting in the queue. */ + struct event_list events; + /* 'magic' timeval used to indicate the duration of events in this + * queue. */ + struct timeval duration; + /* Event that triggers whenever one of the events in the queue is + * ready to activate */ + struct event timeout_event; + /* The event_base that this timeout list is part of */ + struct event_base *base; +}; + +/** Mask used to get the real tv_usec value from a common timeout. */ +#define COMMON_TIMEOUT_MICROSECONDS_MASK 0x000fffff + +struct event_change; + +/* List of 'changes' since the last call to eventop.dispatch. Only maintained + * if the backend is using changesets. */ +struct event_changelist { + struct event_change *changes; + int n_changes; + int changes_size; +}; + +#ifndef EVENT__DISABLE_DEBUG_MODE +/* Global internal flag: set to one if debug mode is on. */ +extern int event_debug_mode_on_; +#define EVENT_DEBUG_MODE_IS_ON() (event_debug_mode_on_) +#else +#define EVENT_DEBUG_MODE_IS_ON() (0) +#endif + +TAILQ_HEAD(evcallback_list, event_callback); + +/* Sets up an event for processing once */ +struct event_once { + LIST_ENTRY(event_once) next_once; + struct event ev; + + void (*cb)(evutil_socket_t, short, void *); + void *arg; +}; + +struct event_base { + /** Function pointers and other data to describe this event_base's + * backend. */ + const struct eventop *evsel; + /** Pointer to backend-specific data. */ + void *evbase; + + /** List of changes to tell backend about at next dispatch. Only used + * by the O(1) backends. */ + struct event_changelist changelist; + + /** Function pointers used to describe the backend that this event_base + * uses for signals */ + const struct eventop *evsigsel; + /** Data to implement the common signal handelr code. */ + struct evsig_info sig; + + /** Number of virtual events */ + int virtual_event_count; + /** Maximum number of virtual events active */ + int virtual_event_count_max; + /** Number of total events added to this event_base */ + int event_count; + /** Maximum number of total events added to this event_base */ + int event_count_max; + /** Number of total events active in this event_base */ + int event_count_active; + /** Maximum number of total events active in this event_base */ + int event_count_active_max; + + /** Set if we should terminate the loop once we're done processing + * events. */ + int event_gotterm; + /** Set if we should terminate the loop immediately */ + int event_break; + /** Set if we should start a new instance of the loop immediately. */ + int event_continue; + + /** The currently running priority of events */ + int event_running_priority; + + /** Set if we're running the event_base_loop function, to prevent + * reentrant invocation. */ + int running_loop; + + /** Set to the number of deferred_cbs we've made 'active' in the + * loop. This is a hack to prevent starvation; it would be smarter + * to just use event_config_set_max_dispatch_interval's max_callbacks + * feature */ + int n_deferreds_queued; + + /* Active event management. */ + /** An array of nactivequeues queues for active event_callbacks (ones + * that have triggered, and whose callbacks need to be called). Low + * priority numbers are more important, and stall higher ones. + */ + struct evcallback_list *activequeues; + /** The length of the activequeues array */ + int nactivequeues; + /** A list of event_callbacks that should become active the next time + * we process events, but not this time. */ + struct evcallback_list active_later_queue; + + /* common timeout logic */ + + /** An array of common_timeout_list* for all of the common timeout + * values we know. */ + struct common_timeout_list **common_timeout_queues; + /** The number of entries used in common_timeout_queues */ + int n_common_timeouts; + /** The total size of common_timeout_queues. */ + int n_common_timeouts_allocated; + + /** Mapping from file descriptors to enabled (added) events */ + struct event_io_map io; + + /** Mapping from signal numbers to enabled (added) events. */ + struct event_signal_map sigmap; + + /** Priority queue of events with timeouts. */ + struct min_heap timeheap; + + /** Stored timeval: used to avoid calling gettimeofday/clock_gettime + * too often. */ + struct timeval tv_cache; + + struct evutil_monotonic_timer monotonic_timer; + + /** Difference between internal time (maybe from clock_gettime) and + * gettimeofday. */ + struct timeval tv_clock_diff; + /** Second in which we last updated tv_clock_diff, in monotonic time. */ + time_t last_updated_clock_diff; + +#ifndef EVENT__DISABLE_THREAD_SUPPORT + /* threading support */ + /** The thread currently running the event_loop for this base */ + unsigned long th_owner_id; + /** A lock to prevent conflicting accesses to this event_base */ + void *th_base_lock; + /** A condition that gets signalled when we're done processing an + * event with waiters on it. */ + void *current_event_cond; + /** Number of threads blocking on current_event_cond. */ + int current_event_waiters; +#endif + /** The event whose callback is executing right now */ + struct event_callback *current_event; + +#ifdef _WIN32 + /** IOCP support structure, if IOCP is enabled. */ + struct event_iocp_port *iocp; +#endif + + /** Flags that this base was configured with */ + enum event_base_config_flag flags; + + struct timeval max_dispatch_time; + int max_dispatch_callbacks; + int limit_callbacks_after_prio; + + /* Notify main thread to wake up break, etc. */ + /** True if the base already has a pending notify, and we don't need + * to add any more. */ + int is_notify_pending; + /** A socketpair used by some th_notify functions to wake up the main + * thread. */ + evutil_socket_t th_notify_fd[2]; + /** An event used by some th_notify functions to wake up the main + * thread. */ + struct event th_notify; + /** A function used to wake up the main thread from another thread. */ + int (*th_notify_fn)(struct event_base *base); + + /** Saved seed for weak random number generator. Some backends use + * this to produce fairness among sockets. Protected by th_base_lock. */ + struct evutil_weakrand_state weakrand_seed; + + /** List of event_onces that have not yet fired. */ + LIST_HEAD(once_event_list, event_once) once_events; + +}; + +struct event_config_entry { + TAILQ_ENTRY(event_config_entry) next; + + const char *avoid_method; +}; + +/** Internal structure: describes the configuration we want for an event_base + * that we're about to allocate. */ +struct event_config { + TAILQ_HEAD(event_configq, event_config_entry) entries; + + int n_cpus_hint; + struct timeval max_dispatch_interval; + int max_dispatch_callbacks; + int limit_callbacks_after_prio; + enum event_method_feature require_features; + enum event_base_config_flag flags; +}; + +/* Internal use only: Functions that might be missing from */ +#ifndef TAILQ_FIRST +#define TAILQ_FIRST(head) ((head)->tqh_first) +#endif +#ifndef TAILQ_END +#define TAILQ_END(head) NULL +#endif +#ifndef TAILQ_NEXT +#define TAILQ_NEXT(elm, field) ((elm)->field.tqe_next) +#endif + +#ifndef TAILQ_FOREACH +#define TAILQ_FOREACH(var, head, field) \ + for ((var) = TAILQ_FIRST(head); \ + (var) != TAILQ_END(head); \ + (var) = TAILQ_NEXT(var, field)) +#endif + +#ifndef TAILQ_INSERT_BEFORE +#define TAILQ_INSERT_BEFORE(listelm, elm, field) do { \ + (elm)->field.tqe_prev = (listelm)->field.tqe_prev; \ + (elm)->field.tqe_next = (listelm); \ + *(listelm)->field.tqe_prev = (elm); \ + (listelm)->field.tqe_prev = &(elm)->field.tqe_next; \ +} while (0) +#endif + +#define N_ACTIVE_CALLBACKS(base) \ + ((base)->event_count_active) + +int evsig_set_handler_(struct event_base *base, int evsignal, + void (*fn)(int)); +int evsig_restore_handler_(struct event_base *base, int evsignal); + +int event_add_nolock_(struct event *ev, + const struct timeval *tv, int tv_is_absolute); +/** Argument for event_del_nolock_. Tells event_del not to block on the event + * if it's running in another thread. */ +#define EVENT_DEL_NOBLOCK 0 +/** Argument for event_del_nolock_. Tells event_del to block on the event + * if it's running in another thread, regardless of its value for EV_FINALIZE + */ +#define EVENT_DEL_BLOCK 1 +/** Argument for event_del_nolock_. Tells event_del to block on the event + * if it is running in another thread and it doesn't have EV_FINALIZE set. + */ +#define EVENT_DEL_AUTOBLOCK 2 +/** Argument for event_del_nolock_. Tells event_del to procede even if the + * event is set up for finalization rather for regular use.*/ +#define EVENT_DEL_EVEN_IF_FINALIZING 3 +int event_del_nolock_(struct event *ev, int blocking); +int event_remove_timer_nolock_(struct event *ev); + +void event_active_nolock_(struct event *ev, int res, short count); +int event_callback_activate_(struct event_base *, struct event_callback *); +int event_callback_activate_nolock_(struct event_base *, struct event_callback *); +int event_callback_cancel_(struct event_base *base, + struct event_callback *evcb); + +void event_callback_finalize_nolock_(struct event_base *base, unsigned flags, struct event_callback *evcb, void (*cb)(struct event_callback *, void *)); +void event_callback_finalize_(struct event_base *base, unsigned flags, struct event_callback *evcb, void (*cb)(struct event_callback *, void *)); +int event_callback_finalize_many_(struct event_base *base, int n_cbs, struct event_callback **evcb, void (*cb)(struct event_callback *, void *)); + + +void event_active_later_(struct event *ev, int res); +void event_active_later_nolock_(struct event *ev, int res); +int event_callback_activate_later_nolock_(struct event_base *base, + struct event_callback *evcb); +int event_callback_cancel_nolock_(struct event_base *base, + struct event_callback *evcb, int even_if_finalizing); +void event_callback_init_(struct event_base *base, + struct event_callback *cb); + +/* FIXME document. */ +void event_base_add_virtual_(struct event_base *base); +void event_base_del_virtual_(struct event_base *base); + +/** For debugging: unless assertions are disabled, verify the referential + integrity of the internal data structures of 'base'. This operation can + be expensive. + + Returns on success; aborts on failure. +*/ +void event_base_assert_ok_(struct event_base *base); +void event_base_assert_ok_nolock_(struct event_base *base); + + +/* Helper function: Call 'fn' exactly once every inserted or active event in + * the event_base 'base'. + * + * If fn returns 0, continue on to the next event. Otherwise, return the same + * value that fn returned. + * + * Requires that 'base' be locked. + */ +int event_base_foreach_event_nolock_(struct event_base *base, + event_base_foreach_event_cb cb, void *arg); + +/* Cleanup function to reset debug mode during shutdown. + * + * Calling this function doesn't mean it'll be possible to re-enable + * debug mode if any events were added. + */ +void event_disable_debug_mode(void); + +#ifdef __cplusplus +} +#endif + +#endif /* EVENT_INTERNAL_H_INCLUDED_ */ diff -Nru mysql-5.7-5.7.25/extra/libevent/event_iocp.c mysql-5.7-5.7.26/extra/libevent/event_iocp.c --- mysql-5.7-5.7.25/extra/libevent/event_iocp.c 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/event_iocp.c 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,294 @@ +/* + * Copyright (c) 2009-2012 Niels Provos, Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#include "evconfig-private.h" + +#ifndef _WIN32_WINNT +/* Minimum required for InitializeCriticalSectionAndSpinCount */ +#define _WIN32_WINNT 0x0403 +#endif +#include +#include +#include +#include +#include + +#include "event2/util.h" +#include "util-internal.h" +#include "iocp-internal.h" +#include "log-internal.h" +#include "mm-internal.h" +#include "event-internal.h" +#include "evthread-internal.h" + +#define NOTIFICATION_KEY ((ULONG_PTR)-1) + +void +event_overlapped_init_(struct event_overlapped *o, iocp_callback cb) +{ + memset(o, 0, sizeof(struct event_overlapped)); + o->cb = cb; +} + +static void +handle_entry(OVERLAPPED *o, ULONG_PTR completion_key, DWORD nBytes, int ok) +{ + struct event_overlapped *eo = + EVUTIL_UPCAST(o, struct event_overlapped, overlapped); + eo->cb(eo, completion_key, nBytes, ok); +} + +static void +loop(void *port_) +{ + struct event_iocp_port *port = port_; + long ms = port->ms; + HANDLE p = port->port; + + if (ms <= 0) + ms = INFINITE; + + while (1) { + OVERLAPPED *overlapped=NULL; + ULONG_PTR key=0; + DWORD bytes=0; + int ok = GetQueuedCompletionStatus(p, &bytes, &key, + &overlapped, ms); + EnterCriticalSection(&port->lock); + if (port->shutdown) { + if (--port->n_live_threads == 0) + ReleaseSemaphore(port->shutdownSemaphore, 1, + NULL); + LeaveCriticalSection(&port->lock); + return; + } + LeaveCriticalSection(&port->lock); + + if (key != NOTIFICATION_KEY && overlapped) + handle_entry(overlapped, key, bytes, ok); + else if (!overlapped) + break; + } + event_warnx("GetQueuedCompletionStatus exited with no event."); + EnterCriticalSection(&port->lock); + if (--port->n_live_threads == 0) + ReleaseSemaphore(port->shutdownSemaphore, 1, NULL); + LeaveCriticalSection(&port->lock); +} + +int +event_iocp_port_associate_(struct event_iocp_port *port, evutil_socket_t fd, + ev_uintptr_t key) +{ + HANDLE h; + h = CreateIoCompletionPort((HANDLE)fd, port->port, key, port->n_threads); + if (!h) + return -1; + return 0; +} + +static void * +get_extension_function(SOCKET s, const GUID *which_fn) +{ + void *ptr = NULL; + DWORD bytes=0; + WSAIoctl(s, SIO_GET_EXTENSION_FUNCTION_POINTER, + (GUID*)which_fn, sizeof(*which_fn), + &ptr, sizeof(ptr), + &bytes, NULL, NULL); + + /* No need to detect errors here: if ptr is set, then we have a good + function pointer. Otherwise, we should behave as if we had no + function pointer. + */ + return ptr; +} + +/* Mingw doesn't have these in its mswsock.h. The values are copied from + wine.h. Perhaps if we copy them exactly, the cargo will come again. +*/ +#ifndef WSAID_ACCEPTEX +#define WSAID_ACCEPTEX \ + {0xb5367df1,0xcbac,0x11cf,{0x95,0xca,0x00,0x80,0x5f,0x48,0xa1,0x92}} +#endif +#ifndef WSAID_CONNECTEX +#define WSAID_CONNECTEX \ + {0x25a207b9,0xddf3,0x4660,{0x8e,0xe9,0x76,0xe5,0x8c,0x74,0x06,0x3e}} +#endif +#ifndef WSAID_GETACCEPTEXSOCKADDRS +#define WSAID_GETACCEPTEXSOCKADDRS \ + {0xb5367df2,0xcbac,0x11cf,{0x95,0xca,0x00,0x80,0x5f,0x48,0xa1,0x92}} +#endif + +static int extension_fns_initialized = 0; + +static void +init_extension_functions(struct win32_extension_fns *ext) +{ + const GUID acceptex = WSAID_ACCEPTEX; + const GUID connectex = WSAID_CONNECTEX; + const GUID getacceptexsockaddrs = WSAID_GETACCEPTEXSOCKADDRS; + SOCKET s = socket(AF_INET, SOCK_STREAM, 0); + if (s == INVALID_SOCKET) + return; + ext->AcceptEx = get_extension_function(s, &acceptex); + ext->ConnectEx = get_extension_function(s, &connectex); + ext->GetAcceptExSockaddrs = get_extension_function(s, + &getacceptexsockaddrs); + closesocket(s); + + extension_fns_initialized = 1; +} + +static struct win32_extension_fns the_extension_fns; + +const struct win32_extension_fns * +event_get_win32_extension_fns_(void) +{ + return &the_extension_fns; +} + +#define N_CPUS_DEFAULT 2 + +struct event_iocp_port * +event_iocp_port_launch_(int n_cpus) +{ + struct event_iocp_port *port; + int i; + + if (!extension_fns_initialized) + init_extension_functions(&the_extension_fns); + + if (!(port = mm_calloc(1, sizeof(struct event_iocp_port)))) + return NULL; + + if (n_cpus <= 0) + n_cpus = N_CPUS_DEFAULT; + port->n_threads = n_cpus * 2; + port->threads = mm_calloc(port->n_threads, sizeof(HANDLE)); + if (!port->threads) + goto err; + + port->port = CreateIoCompletionPort(INVALID_HANDLE_VALUE, NULL, 0, + n_cpus); + port->ms = -1; + if (!port->port) + goto err; + + port->shutdownSemaphore = CreateSemaphore(NULL, 0, 1, NULL); + if (!port->shutdownSemaphore) + goto err; + + for (i=0; in_threads; ++i) { + ev_uintptr_t th = _beginthread(loop, 0, port); + if (th == (ev_uintptr_t)-1) + goto err; + port->threads[i] = (HANDLE)th; + ++port->n_live_threads; + } + + InitializeCriticalSectionAndSpinCount(&port->lock, 1000); + + return port; +err: + if (port->port) + CloseHandle(port->port); + if (port->threads) + mm_free(port->threads); + if (port->shutdownSemaphore) + CloseHandle(port->shutdownSemaphore); + mm_free(port); + return NULL; +} + +static void +event_iocp_port_unlock_and_free_(struct event_iocp_port *port) +{ + DeleteCriticalSection(&port->lock); + CloseHandle(port->port); + CloseHandle(port->shutdownSemaphore); + mm_free(port->threads); + mm_free(port); +} + +static int +event_iocp_notify_all(struct event_iocp_port *port) +{ + int i, r, ok=1; + for (i=0; in_threads; ++i) { + r = PostQueuedCompletionStatus(port->port, 0, NOTIFICATION_KEY, + NULL); + if (!r) + ok = 0; + } + return ok ? 0 : -1; +} + +int +event_iocp_shutdown_(struct event_iocp_port *port, long waitMsec) +{ + DWORD ms = INFINITE; + int n; + + EnterCriticalSection(&port->lock); + port->shutdown = 1; + LeaveCriticalSection(&port->lock); + event_iocp_notify_all(port); + + if (waitMsec >= 0) + ms = waitMsec; + + WaitForSingleObject(port->shutdownSemaphore, ms); + EnterCriticalSection(&port->lock); + n = port->n_live_threads; + LeaveCriticalSection(&port->lock); + if (n == 0) { + event_iocp_port_unlock_and_free_(port); + return 0; + } else { + return -1; + } +} + +int +event_iocp_activate_overlapped_( + struct event_iocp_port *port, struct event_overlapped *o, + ev_uintptr_t key, ev_uint32_t n) +{ + BOOL r; + + r = PostQueuedCompletionStatus(port->port, n, key, &o->overlapped); + return (r==0) ? -1 : 0; +} + +struct event_iocp_port * +event_base_get_iocp_(struct event_base *base) +{ +#ifdef _WIN32 + return base->iocp; +#else + return NULL; +#endif +} diff -Nru mysql-5.7-5.7.25/extra/libevent/event_tagging.c mysql-5.7-5.7.26/extra/libevent/event_tagging.c --- mysql-5.7-5.7.25/extra/libevent/event_tagging.c 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/event_tagging.c 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,605 @@ +/* + * Copyright (c) 2003-2009 Niels Provos + * Copyright (c) 2009-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ + +#include "event2/event-config.h" +#include "evconfig-private.h" + +#ifdef EVENT__HAVE_SYS_TYPES_H +#include +#endif +#ifdef EVENT__HAVE_SYS_PARAM_H +#include +#endif + +#ifdef _WIN32 +#define WIN32_LEAN_AND_MEAN +#include +#include +#undef WIN32_LEAN_AND_MEAN +#endif + +#ifdef EVENT__HAVE_SYS_IOCTL_H +#include +#endif +#include +#ifdef EVENT__HAVE_SYS_TIME_H +#include +#endif + +#include +#include +#include +#include +#ifndef _WIN32 +#include +#endif +#ifdef EVENT__HAVE_UNISTD_H +#include +#endif +#include + +#include "event2/event.h" +#include "event2/tag.h" +#include "event2/buffer.h" +#include "log-internal.h" +#include "mm-internal.h" +#include "util-internal.h" + +/* + Here's our wire format: + + Stream = TaggedData* + + TaggedData = Tag Length Data + where the integer value of 'Length' is the length of 'data'. + + Tag = HByte* LByte + where HByte is a byte with the high bit set, and LByte is a byte + with the high bit clear. The integer value of the tag is taken + by concatenating the lower 7 bits from all the tags. So for example, + the tag 0x66 is encoded as [66], whereas the tag 0x166 is encoded as + [82 66] + + Length = Integer + + Integer = NNibbles Nibble* Padding? + where NNibbles is a 4-bit value encoding the number of nibbles-1, + and each Nibble is 4 bits worth of encoded integer, in big-endian + order. If the total encoded integer size is an odd number of nibbles, + a final padding nibble with value 0 is appended. +*/ + +int evtag_decode_int(ev_uint32_t *pnumber, struct evbuffer *evbuf); +int evtag_decode_int64(ev_uint64_t *pnumber, struct evbuffer *evbuf); +int evtag_encode_tag(struct evbuffer *evbuf, ev_uint32_t tag); +int evtag_decode_tag(ev_uint32_t *ptag, struct evbuffer *evbuf); + +void +evtag_init(void) +{ +} + +/* + * We encode integers by nibbles; the first nibble contains the number + * of significant nibbles - 1; this allows us to encode up to 64-bit + * integers. This function is byte-order independent. + * + * @param number a 32-bit unsigned integer to encode + * @param data a pointer to where the data should be written. Must + * have at least 5 bytes free. + * @return the number of bytes written into data. + */ + +#define ENCODE_INT_INTERNAL(data, number) do { \ + int off = 1, nibbles = 0; \ + \ + memset(data, 0, sizeof(number)+1); \ + while (number) { \ + if (off & 0x1) \ + data[off/2] = (data[off/2] & 0xf0) | (number & 0x0f); \ + else \ + data[off/2] = (data[off/2] & 0x0f) | \ + ((number & 0x0f) << 4); \ + number >>= 4; \ + off++; \ + } \ + \ + if (off > 2) \ + nibbles = off - 2; \ + \ + /* Off - 1 is the number of encoded nibbles */ \ + data[0] = (data[0] & 0x0f) | ((nibbles & 0x0f) << 4); \ + \ + return ((off + 1) / 2); \ +} while (0) + +static inline int +encode_int_internal(ev_uint8_t *data, ev_uint32_t number) +{ + ENCODE_INT_INTERNAL(data, number); +} + +static inline int +encode_int64_internal(ev_uint8_t *data, ev_uint64_t number) +{ + ENCODE_INT_INTERNAL(data, number); +} + +void +evtag_encode_int(struct evbuffer *evbuf, ev_uint32_t number) +{ + ev_uint8_t data[5]; + int len = encode_int_internal(data, number); + evbuffer_add(evbuf, data, len); +} + +void +evtag_encode_int64(struct evbuffer *evbuf, ev_uint64_t number) +{ + ev_uint8_t data[9]; + int len = encode_int64_internal(data, number); + evbuffer_add(evbuf, data, len); +} + +/* + * Support variable length encoding of tags; we use the high bit in each + * octet as a continuation signal. + */ + +int +evtag_encode_tag(struct evbuffer *evbuf, ev_uint32_t tag) +{ + int bytes = 0; + ev_uint8_t data[5]; + + memset(data, 0, sizeof(data)); + do { + ev_uint8_t lower = tag & 0x7f; + tag >>= 7; + + if (tag) + lower |= 0x80; + + data[bytes++] = lower; + } while (tag); + + if (evbuf != NULL) + evbuffer_add(evbuf, data, bytes); + + return (bytes); +} + +static int +decode_tag_internal(ev_uint32_t *ptag, struct evbuffer *evbuf, int dodrain) +{ + ev_uint32_t number = 0; + size_t len = evbuffer_get_length(evbuf); + ev_uint8_t *data; + size_t count = 0; + int shift = 0, done = 0; + + /* + * the encoding of a number is at most one byte more than its + * storage size. however, it may also be much smaller. + */ + data = evbuffer_pullup( + evbuf, len < sizeof(number) + 1 ? len : sizeof(number) + 1); + if (!data) + return (-1); + + while (count++ < len) { + ev_uint8_t lower = *data++; + if (shift >= 28) { + /* Make sure it fits into 32 bits */ + if (shift > 28) + return (-1); + if ((lower & 0x7f) > 15) + return (-1); + } + number |= (lower & (unsigned)0x7f) << shift; + shift += 7; + + if (!(lower & 0x80)) { + done = 1; + break; + } + } + + if (!done) + return (-1); + + if (dodrain) + evbuffer_drain(evbuf, count); + + if (ptag != NULL) + *ptag = number; + + return count > INT_MAX ? INT_MAX : (int)(count); +} + +int +evtag_decode_tag(ev_uint32_t *ptag, struct evbuffer *evbuf) +{ + return (decode_tag_internal(ptag, evbuf, 1 /* dodrain */)); +} + +/* + * Marshal a data type, the general format is as follows: + * + * tag number: one byte; length: var bytes; payload: var bytes + */ + +void +evtag_marshal(struct evbuffer *evbuf, ev_uint32_t tag, + const void *data, ev_uint32_t len) +{ + evtag_encode_tag(evbuf, tag); + evtag_encode_int(evbuf, len); + evbuffer_add(evbuf, (void *)data, len); +} + +void +evtag_marshal_buffer(struct evbuffer *evbuf, ev_uint32_t tag, + struct evbuffer *data) +{ + evtag_encode_tag(evbuf, tag); + /* XXX support more than UINT32_MAX data */ + evtag_encode_int(evbuf, (ev_uint32_t)evbuffer_get_length(data)); + evbuffer_add_buffer(evbuf, data); +} + +/* Marshaling for integers */ +void +evtag_marshal_int(struct evbuffer *evbuf, ev_uint32_t tag, ev_uint32_t integer) +{ + ev_uint8_t data[5]; + int len = encode_int_internal(data, integer); + + evtag_encode_tag(evbuf, tag); + evtag_encode_int(evbuf, len); + evbuffer_add(evbuf, data, len); +} + +void +evtag_marshal_int64(struct evbuffer *evbuf, ev_uint32_t tag, + ev_uint64_t integer) +{ + ev_uint8_t data[9]; + int len = encode_int64_internal(data, integer); + + evtag_encode_tag(evbuf, tag); + evtag_encode_int(evbuf, len); + evbuffer_add(evbuf, data, len); +} + +void +evtag_marshal_string(struct evbuffer *buf, ev_uint32_t tag, const char *string) +{ + /* TODO support strings longer than UINT32_MAX ? */ + evtag_marshal(buf, tag, string, (ev_uint32_t)strlen(string)); +} + +void +evtag_marshal_timeval(struct evbuffer *evbuf, ev_uint32_t tag, struct timeval *tv) +{ + ev_uint8_t data[10]; + int len = encode_int_internal(data, tv->tv_sec); + len += encode_int_internal(data + len, tv->tv_usec); + evtag_marshal(evbuf, tag, data, len); +} + +#define DECODE_INT_INTERNAL(number, maxnibbles, pnumber, evbuf, offset) \ +do { \ + ev_uint8_t *data; \ + ev_ssize_t len = evbuffer_get_length(evbuf) - offset; \ + int nibbles = 0; \ + \ + if (len <= 0) \ + return (-1); \ + \ + /* XXX(niels): faster? */ \ + data = evbuffer_pullup(evbuf, offset + 1) + offset; \ + if (!data) \ + return (-1); \ + \ + nibbles = ((data[0] & 0xf0) >> 4) + 1; \ + if (nibbles > maxnibbles || (nibbles >> 1) + 1 > len) \ + return (-1); \ + len = (nibbles >> 1) + 1; \ + \ + data = evbuffer_pullup(evbuf, offset + len) + offset; \ + if (!data) \ + return (-1); \ + \ + while (nibbles > 0) { \ + number <<= 4; \ + if (nibbles & 0x1) \ + number |= data[nibbles >> 1] & 0x0f; \ + else \ + number |= (data[nibbles >> 1] & 0xf0) >> 4; \ + nibbles--; \ + } \ + \ + *pnumber = number; \ + \ + return (int)(len); \ +} while (0) + +/* Internal: decode an integer from an evbuffer, without draining it. + * Only integers up to 32-bits are supported. + * + * @param evbuf the buffer to read from + * @param offset an index into the buffer at which we should start reading. + * @param pnumber a pointer to receive the integer. + * @return The length of the number as encoded, or -1 on error. + */ + +static int +decode_int_internal(ev_uint32_t *pnumber, struct evbuffer *evbuf, int offset) +{ + ev_uint32_t number = 0; + DECODE_INT_INTERNAL(number, 8, pnumber, evbuf, offset); +} + +static int +decode_int64_internal(ev_uint64_t *pnumber, struct evbuffer *evbuf, int offset) +{ + ev_uint64_t number = 0; + DECODE_INT_INTERNAL(number, 16, pnumber, evbuf, offset); +} + +int +evtag_decode_int(ev_uint32_t *pnumber, struct evbuffer *evbuf) +{ + int res = decode_int_internal(pnumber, evbuf, 0); + if (res != -1) + evbuffer_drain(evbuf, res); + + return (res == -1 ? -1 : 0); +} + +int +evtag_decode_int64(ev_uint64_t *pnumber, struct evbuffer *evbuf) +{ + int res = decode_int64_internal(pnumber, evbuf, 0); + if (res != -1) + evbuffer_drain(evbuf, res); + + return (res == -1 ? -1 : 0); +} + +int +evtag_peek(struct evbuffer *evbuf, ev_uint32_t *ptag) +{ + return (decode_tag_internal(ptag, evbuf, 0 /* dodrain */)); +} + +int +evtag_peek_length(struct evbuffer *evbuf, ev_uint32_t *plength) +{ + int res, len; + + len = decode_tag_internal(NULL, evbuf, 0 /* dodrain */); + if (len == -1) + return (-1); + + res = decode_int_internal(plength, evbuf, len); + if (res == -1) + return (-1); + + *plength += res + len; + + return (0); +} + +int +evtag_payload_length(struct evbuffer *evbuf, ev_uint32_t *plength) +{ + int res, len; + + len = decode_tag_internal(NULL, evbuf, 0 /* dodrain */); + if (len == -1) + return (-1); + + res = decode_int_internal(plength, evbuf, len); + if (res == -1) + return (-1); + + return (0); +} + +/* just unmarshals the header and returns the length of the remaining data */ + +int +evtag_unmarshal_header(struct evbuffer *evbuf, ev_uint32_t *ptag) +{ + ev_uint32_t len; + + if (decode_tag_internal(ptag, evbuf, 1 /* dodrain */) == -1) + return (-1); + if (evtag_decode_int(&len, evbuf) == -1) + return (-1); + + if (evbuffer_get_length(evbuf) < len) + return (-1); + + return (len); +} + +int +evtag_consume(struct evbuffer *evbuf) +{ + int len; + if ((len = evtag_unmarshal_header(evbuf, NULL)) == -1) + return (-1); + evbuffer_drain(evbuf, len); + + return (0); +} + +/* Reads the data type from an event buffer */ + +int +evtag_unmarshal(struct evbuffer *src, ev_uint32_t *ptag, struct evbuffer *dst) +{ + int len; + + if ((len = evtag_unmarshal_header(src, ptag)) == -1) + return (-1); + + if (evbuffer_add(dst, evbuffer_pullup(src, len), len) == -1) + return (-1); + + evbuffer_drain(src, len); + + return (len); +} + +/* Marshaling for integers */ + +int +evtag_unmarshal_int(struct evbuffer *evbuf, ev_uint32_t need_tag, + ev_uint32_t *pinteger) +{ + ev_uint32_t tag; + ev_uint32_t len; + int result; + + if (decode_tag_internal(&tag, evbuf, 1 /* dodrain */) == -1) + return (-1); + if (need_tag != tag) + return (-1); + if (evtag_decode_int(&len, evbuf) == -1) + return (-1); + + if (evbuffer_get_length(evbuf) < len) + return (-1); + + result = decode_int_internal(pinteger, evbuf, 0); + evbuffer_drain(evbuf, len); + if (result < 0 || (size_t)result > len) /* XXX Should this be != rather than > ?*/ + return (-1); + else + return result; +} + +int +evtag_unmarshal_int64(struct evbuffer *evbuf, ev_uint32_t need_tag, + ev_uint64_t *pinteger) +{ + ev_uint32_t tag; + ev_uint32_t len; + int result; + + if (decode_tag_internal(&tag, evbuf, 1 /* dodrain */) == -1) + return (-1); + if (need_tag != tag) + return (-1); + if (evtag_decode_int(&len, evbuf) == -1) + return (-1); + + if (evbuffer_get_length(evbuf) < len) + return (-1); + + result = decode_int64_internal(pinteger, evbuf, 0); + evbuffer_drain(evbuf, len); + if (result < 0 || (size_t)result > len) /* XXX Should this be != rather than > ?*/ + return (-1); + else + return result; +} + +/* Unmarshal a fixed length tag */ + +int +evtag_unmarshal_fixed(struct evbuffer *src, ev_uint32_t need_tag, void *data, + size_t len) +{ + ev_uint32_t tag; + int tag_len; + + /* Now unmarshal a tag and check that it matches the tag we want */ + if ((tag_len = evtag_unmarshal_header(src, &tag)) < 0 || + tag != need_tag) + return (-1); + + if ((size_t)tag_len != len) + return (-1); + + evbuffer_remove(src, data, len); + return (0); +} + +int +evtag_unmarshal_string(struct evbuffer *evbuf, ev_uint32_t need_tag, + char **pstring) +{ + ev_uint32_t tag; + int tag_len; + + if ((tag_len = evtag_unmarshal_header(evbuf, &tag)) == -1 || + tag != need_tag) + return (-1); + + *pstring = mm_malloc(tag_len + 1); + if (*pstring == NULL) { + event_warn("%s: malloc", __func__); + return -1; + } + evbuffer_remove(evbuf, *pstring, tag_len); + (*pstring)[tag_len] = '\0'; + + return (0); +} + +int +evtag_unmarshal_timeval(struct evbuffer *evbuf, ev_uint32_t need_tag, + struct timeval *ptv) +{ + ev_uint32_t tag; + ev_uint32_t integer; + int len, offset, offset2; + int result = -1; + + if ((len = evtag_unmarshal_header(evbuf, &tag)) == -1) + return (-1); + if (tag != need_tag) + goto done; + if ((offset = decode_int_internal(&integer, evbuf, 0)) == -1) + goto done; + ptv->tv_sec = integer; + if ((offset2 = decode_int_internal(&integer, evbuf, offset)) == -1) + goto done; + ptv->tv_usec = integer; + if (offset + offset2 > len) /* XXX Should this be != instead of > ? */ + goto done; + + result = 0; + done: + evbuffer_drain(evbuf, len); + return result; +} diff -Nru mysql-5.7-5.7.25/extra/libevent/evmap.c mysql-5.7-5.7.26/extra/libevent/evmap.c --- mysql-5.7-5.7.25/extra/libevent/evmap.c 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/evmap.c 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,1055 @@ +/* + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#include "event2/event-config.h" +#include "evconfig-private.h" + +#ifdef _WIN32 +#include +#define WIN32_LEAN_AND_MEAN +#include +#undef WIN32_LEAN_AND_MEAN +#endif +#include +#if !defined(_WIN32) && defined(EVENT__HAVE_SYS_TIME_H) +#include +#endif +#include +#include +#include +#ifndef _WIN32 +#include +#endif +#include +#include +#include +#include + +#include "event-internal.h" +#include "evmap-internal.h" +#include "mm-internal.h" +#include "changelist-internal.h" + +/** An entry for an evmap_io list: notes all the events that want to read or + write on a given fd, and the number of each. + */ +struct evmap_io { + struct event_dlist events; + ev_uint16_t nread; + ev_uint16_t nwrite; + ev_uint16_t nclose; +}; + +/* An entry for an evmap_signal list: notes all the events that want to know + when a signal triggers. */ +struct evmap_signal { + struct event_dlist events; +}; + +/* On some platforms, fds start at 0 and increment by 1 as they are + allocated, and old numbers get used. For these platforms, we + implement io maps just like signal maps: as an array of pointers to + struct evmap_io. But on other platforms (windows), sockets are not + 0-indexed, not necessarily consecutive, and not necessarily reused. + There, we use a hashtable to implement evmap_io. +*/ +#ifdef EVMAP_USE_HT +struct event_map_entry { + HT_ENTRY(event_map_entry) map_node; + evutil_socket_t fd; + union { /* This is a union in case we need to make more things that can + be in the hashtable. */ + struct evmap_io evmap_io; + } ent; +}; + +/* Helper used by the event_io_map hashtable code; tries to return a good hash + * of the fd in e->fd. */ +static inline unsigned +hashsocket(struct event_map_entry *e) +{ + /* On win32, in practice, the low 2-3 bits of a SOCKET seem not to + * matter. Our hashtable implementation really likes low-order bits, + * though, so let's do the rotate-and-add trick. */ + unsigned h = (unsigned) e->fd; + h += (h >> 2) | (h << 30); + return h; +} + +/* Helper used by the event_io_map hashtable code; returns true iff e1 and e2 + * have the same e->fd. */ +static inline int +eqsocket(struct event_map_entry *e1, struct event_map_entry *e2) +{ + return e1->fd == e2->fd; +} + +HT_PROTOTYPE(event_io_map, event_map_entry, map_node, hashsocket, eqsocket) +HT_GENERATE(event_io_map, event_map_entry, map_node, hashsocket, eqsocket, + 0.5, mm_malloc, mm_realloc, mm_free) + +#define GET_IO_SLOT(x, map, slot, type) \ + do { \ + struct event_map_entry key_, *ent_; \ + key_.fd = slot; \ + ent_ = HT_FIND(event_io_map, map, &key_); \ + (x) = ent_ ? &ent_->ent.type : NULL; \ + } while (0); + +#define GET_IO_SLOT_AND_CTOR(x, map, slot, type, ctor, fdinfo_len) \ + do { \ + struct event_map_entry key_, *ent_; \ + key_.fd = slot; \ + HT_FIND_OR_INSERT_(event_io_map, map_node, hashsocket, map, \ + event_map_entry, &key_, ptr, \ + { \ + ent_ = *ptr; \ + }, \ + { \ + ent_ = mm_calloc(1,sizeof(struct event_map_entry)+fdinfo_len); \ + if (EVUTIL_UNLIKELY(ent_ == NULL)) \ + return (-1); \ + ent_->fd = slot; \ + (ctor)(&ent_->ent.type); \ + HT_FOI_INSERT_(map_node, map, &key_, ent_, ptr) \ + }); \ + (x) = &ent_->ent.type; \ + } while (0) + +void evmap_io_initmap_(struct event_io_map *ctx) +{ + HT_INIT(event_io_map, ctx); +} + +void evmap_io_clear_(struct event_io_map *ctx) +{ + struct event_map_entry **ent, **next, *this; + for (ent = HT_START(event_io_map, ctx); ent; ent = next) { + this = *ent; + next = HT_NEXT_RMV(event_io_map, ctx, ent); + mm_free(this); + } + HT_CLEAR(event_io_map, ctx); /* remove all storage held by the ctx. */ +} +#endif + +/* Set the variable 'x' to the field in event_map 'map' with fields of type + 'struct type *' corresponding to the fd or signal 'slot'. Set 'x' to NULL + if there are no entries for 'slot'. Does no bounds-checking. */ +#define GET_SIGNAL_SLOT(x, map, slot, type) \ + (x) = (struct type *)((map)->entries[slot]) +/* As GET_SLOT, but construct the entry for 'slot' if it is not present, + by allocating enough memory for a 'struct type', and initializing the new + value by calling the function 'ctor' on it. Makes the function + return -1 on allocation failure. + */ +#define GET_SIGNAL_SLOT_AND_CTOR(x, map, slot, type, ctor, fdinfo_len) \ + do { \ + if ((map)->entries[slot] == NULL) { \ + (map)->entries[slot] = \ + mm_calloc(1,sizeof(struct type)+fdinfo_len); \ + if (EVUTIL_UNLIKELY((map)->entries[slot] == NULL)) \ + return (-1); \ + (ctor)((struct type *)(map)->entries[slot]); \ + } \ + (x) = (struct type *)((map)->entries[slot]); \ + } while (0) + +/* If we aren't using hashtables, then define the IO_SLOT macros and functions + as thin aliases over the SIGNAL_SLOT versions. */ +#ifndef EVMAP_USE_HT +#define GET_IO_SLOT(x,map,slot,type) GET_SIGNAL_SLOT(x,map,slot,type) +#define GET_IO_SLOT_AND_CTOR(x,map,slot,type,ctor,fdinfo_len) \ + GET_SIGNAL_SLOT_AND_CTOR(x,map,slot,type,ctor,fdinfo_len) +#define FDINFO_OFFSET sizeof(struct evmap_io) +void +evmap_io_initmap_(struct event_io_map* ctx) +{ + evmap_signal_initmap_(ctx); +} +void +evmap_io_clear_(struct event_io_map* ctx) +{ + evmap_signal_clear_(ctx); +} +#endif + + +/** Expand 'map' with new entries of width 'msize' until it is big enough + to store a value in 'slot'. + */ +static int +evmap_make_space(struct event_signal_map *map, int slot, int msize) +{ + if (map->nentries <= slot) { + int nentries = map->nentries ? map->nentries : 32; + void **tmp; + + while (nentries <= slot) + nentries <<= 1; + + tmp = (void **)mm_realloc(map->entries, nentries * msize); + if (tmp == NULL) + return (-1); + + memset(&tmp[map->nentries], 0, + (nentries - map->nentries) * msize); + + map->nentries = nentries; + map->entries = tmp; + } + + return (0); +} + +void +evmap_signal_initmap_(struct event_signal_map *ctx) +{ + ctx->nentries = 0; + ctx->entries = NULL; +} + +void +evmap_signal_clear_(struct event_signal_map *ctx) +{ + if (ctx->entries != NULL) { + int i; + for (i = 0; i < ctx->nentries; ++i) { + if (ctx->entries[i] != NULL) + mm_free(ctx->entries[i]); + } + mm_free(ctx->entries); + ctx->entries = NULL; + } + ctx->nentries = 0; +} + + +/* code specific to file descriptors */ + +/** Constructor for struct evmap_io */ +static void +evmap_io_init(struct evmap_io *entry) +{ + LIST_INIT(&entry->events); + entry->nread = 0; + entry->nwrite = 0; + entry->nclose = 0; +} + + +/* return -1 on error, 0 on success if nothing changed in the event backend, + * and 1 on success if something did. */ +int +evmap_io_add_(struct event_base *base, evutil_socket_t fd, struct event *ev) +{ + const struct eventop *evsel = base->evsel; + struct event_io_map *io = &base->io; + struct evmap_io *ctx = NULL; + int nread, nwrite, nclose, retval = 0; + short res = 0, old = 0; + struct event *old_ev; + + EVUTIL_ASSERT(fd == ev->ev_fd); + + if (fd < 0) + return 0; + +#ifndef EVMAP_USE_HT + if (fd >= io->nentries) { + if (evmap_make_space(io, fd, sizeof(struct evmap_io *)) == -1) + return (-1); + } +#endif + GET_IO_SLOT_AND_CTOR(ctx, io, fd, evmap_io, evmap_io_init, + evsel->fdinfo_len); + + nread = ctx->nread; + nwrite = ctx->nwrite; + nclose = ctx->nclose; + + if (nread) + old |= EV_READ; + if (nwrite) + old |= EV_WRITE; + if (nclose) + old |= EV_CLOSED; + + if (ev->ev_events & EV_READ) { + if (++nread == 1) + res |= EV_READ; + } + if (ev->ev_events & EV_WRITE) { + if (++nwrite == 1) + res |= EV_WRITE; + } + if (ev->ev_events & EV_CLOSED) { + if (++nclose == 1) + res |= EV_CLOSED; + } + if (EVUTIL_UNLIKELY(nread > 0xffff || nwrite > 0xffff || nclose > 0xffff)) { + event_warnx("Too many events reading or writing on fd %d", + (int)fd); + return -1; + } + if (EVENT_DEBUG_MODE_IS_ON() && + (old_ev = LIST_FIRST(&ctx->events)) && + (old_ev->ev_events&EV_ET) != (ev->ev_events&EV_ET)) { + event_warnx("Tried to mix edge-triggered and non-edge-triggered" + " events on fd %d", (int)fd); + return -1; + } + + if (res) { + void *extra = ((char*)ctx) + sizeof(struct evmap_io); + /* XXX(niels): we cannot mix edge-triggered and + * level-triggered, we should probably assert on + * this. */ + if (evsel->add(base, ev->ev_fd, + old, (ev->ev_events & EV_ET) | res, extra) == -1) + return (-1); + retval = 1; + } + + ctx->nread = (ev_uint16_t) nread; + ctx->nwrite = (ev_uint16_t) nwrite; + ctx->nclose = (ev_uint16_t) nclose; + LIST_INSERT_HEAD(&ctx->events, ev, ev_io_next); + + return (retval); +} + +/* return -1 on error, 0 on success if nothing changed in the event backend, + * and 1 on success if something did. */ +int +evmap_io_del_(struct event_base *base, evutil_socket_t fd, struct event *ev) +{ + const struct eventop *evsel = base->evsel; + struct event_io_map *io = &base->io; + struct evmap_io *ctx; + int nread, nwrite, nclose, retval = 0; + short res = 0, old = 0; + + if (fd < 0) + return 0; + + EVUTIL_ASSERT(fd == ev->ev_fd); + +#ifndef EVMAP_USE_HT + if (fd >= io->nentries) + return (-1); +#endif + + GET_IO_SLOT(ctx, io, fd, evmap_io); + + nread = ctx->nread; + nwrite = ctx->nwrite; + nclose = ctx->nclose; + + if (nread) + old |= EV_READ; + if (nwrite) + old |= EV_WRITE; + if (nclose) + old |= EV_CLOSED; + + if (ev->ev_events & EV_READ) { + if (--nread == 0) + res |= EV_READ; + EVUTIL_ASSERT(nread >= 0); + } + if (ev->ev_events & EV_WRITE) { + if (--nwrite == 0) + res |= EV_WRITE; + EVUTIL_ASSERT(nwrite >= 0); + } + if (ev->ev_events & EV_CLOSED) { + if (--nclose == 0) + res |= EV_CLOSED; + EVUTIL_ASSERT(nclose >= 0); + } + + if (res) { + void *extra = ((char*)ctx) + sizeof(struct evmap_io); + if (evsel->del(base, ev->ev_fd, old, res, extra) == -1) { + retval = -1; + } else { + retval = 1; + } + } + + ctx->nread = nread; + ctx->nwrite = nwrite; + ctx->nclose = nclose; + LIST_REMOVE(ev, ev_io_next); + + return (retval); +} + +void +evmap_io_active_(struct event_base *base, evutil_socket_t fd, short events) +{ + struct event_io_map *io = &base->io; + struct evmap_io *ctx; + struct event *ev; + +#ifndef EVMAP_USE_HT + if (fd < 0 || fd >= io->nentries) + return; +#endif + GET_IO_SLOT(ctx, io, fd, evmap_io); + + if (NULL == ctx) + return; + LIST_FOREACH(ev, &ctx->events, ev_io_next) { + if (ev->ev_events & events) + event_active_nolock_(ev, ev->ev_events & events, 1); + } +} + +/* code specific to signals */ + +static void +evmap_signal_init(struct evmap_signal *entry) +{ + LIST_INIT(&entry->events); +} + + +int +evmap_signal_add_(struct event_base *base, int sig, struct event *ev) +{ + const struct eventop *evsel = base->evsigsel; + struct event_signal_map *map = &base->sigmap; + struct evmap_signal *ctx = NULL; + + if (sig >= map->nentries) { + if (evmap_make_space( + map, sig, sizeof(struct evmap_signal *)) == -1) + return (-1); + } + GET_SIGNAL_SLOT_AND_CTOR(ctx, map, sig, evmap_signal, evmap_signal_init, + base->evsigsel->fdinfo_len); + + if (LIST_EMPTY(&ctx->events)) { + if (evsel->add(base, ev->ev_fd, 0, EV_SIGNAL, NULL) + == -1) + return (-1); + } + + LIST_INSERT_HEAD(&ctx->events, ev, ev_signal_next); + + return (1); +} + +int +evmap_signal_del_(struct event_base *base, int sig, struct event *ev) +{ + const struct eventop *evsel = base->evsigsel; + struct event_signal_map *map = &base->sigmap; + struct evmap_signal *ctx; + + if (sig >= map->nentries) + return (-1); + + GET_SIGNAL_SLOT(ctx, map, sig, evmap_signal); + + LIST_REMOVE(ev, ev_signal_next); + + if (LIST_FIRST(&ctx->events) == NULL) { + if (evsel->del(base, ev->ev_fd, 0, EV_SIGNAL, NULL) == -1) + return (-1); + } + + return (1); +} + +void +evmap_signal_active_(struct event_base *base, evutil_socket_t sig, int ncalls) +{ + struct event_signal_map *map = &base->sigmap; + struct evmap_signal *ctx; + struct event *ev; + + if (sig < 0 || sig >= map->nentries) + return; + GET_SIGNAL_SLOT(ctx, map, sig, evmap_signal); + + if (!ctx) + return; + LIST_FOREACH(ev, &ctx->events, ev_signal_next) + event_active_nolock_(ev, EV_SIGNAL, ncalls); +} + +void * +evmap_io_get_fdinfo_(struct event_io_map *map, evutil_socket_t fd) +{ + struct evmap_io *ctx; + GET_IO_SLOT(ctx, map, fd, evmap_io); + if (ctx) + return ((char*)ctx) + sizeof(struct evmap_io); + else + return NULL; +} + +/* Callback type for evmap_io_foreach_fd */ +typedef int (*evmap_io_foreach_fd_cb)( + struct event_base *, evutil_socket_t, struct evmap_io *, void *); + +/* Multipurpose helper function: Iterate over every file descriptor event_base + * for which we could have EV_READ or EV_WRITE events. For each such fd, call + * fn(base, signum, evmap_io, arg), where fn is the user-provided + * function, base is the event_base, signum is the signal number, evmap_io + * is an evmap_io structure containing a list of events pending on the + * file descriptor, and arg is the user-supplied argument. + * + * If fn returns 0, continue on to the next signal. Otherwise, return the same + * value that fn returned. + * + * Note that there is no guarantee that the file descriptors will be processed + * in any particular order. + */ +static int +evmap_io_foreach_fd(struct event_base *base, + evmap_io_foreach_fd_cb fn, + void *arg) +{ + evutil_socket_t fd; + struct event_io_map *iomap = &base->io; + int r = 0; +#ifdef EVMAP_USE_HT + struct event_map_entry **mapent; + HT_FOREACH(mapent, event_io_map, iomap) { + struct evmap_io *ctx = &(*mapent)->ent.evmap_io; + fd = (*mapent)->fd; +#else + for (fd = 0; fd < iomap->nentries; ++fd) { + struct evmap_io *ctx = iomap->entries[fd]; + if (!ctx) + continue; +#endif + if ((r = fn(base, fd, ctx, arg))) + break; + } + return r; +} + +/* Callback type for evmap_signal_foreach_signal */ +typedef int (*evmap_signal_foreach_signal_cb)( + struct event_base *, int, struct evmap_signal *, void *); + +/* Multipurpose helper function: Iterate over every signal number in the + * event_base for which we could have signal events. For each such signal, + * call fn(base, signum, evmap_signal, arg), where fn is the user-provided + * function, base is the event_base, signum is the signal number, evmap_signal + * is an evmap_signal structure containing a list of events pending on the + * signal, and arg is the user-supplied argument. + * + * If fn returns 0, continue on to the next signal. Otherwise, return the same + * value that fn returned. + */ +static int +evmap_signal_foreach_signal(struct event_base *base, + evmap_signal_foreach_signal_cb fn, + void *arg) +{ + struct event_signal_map *sigmap = &base->sigmap; + int r = 0; + int signum; + + for (signum = 0; signum < sigmap->nentries; ++signum) { + struct evmap_signal *ctx = sigmap->entries[signum]; + if (!ctx) + continue; + if ((r = fn(base, signum, ctx, arg))) + break; + } + return r; +} + +/* Helper for evmap_reinit_: tell the backend to add every fd for which we have + * pending events, with the appropriate combination of EV_READ, EV_WRITE, and + * EV_ET. */ +static int +evmap_io_reinit_iter_fn(struct event_base *base, evutil_socket_t fd, + struct evmap_io *ctx, void *arg) +{ + const struct eventop *evsel = base->evsel; + void *extra; + int *result = arg; + short events = 0; + struct event *ev; + EVUTIL_ASSERT(ctx); + + extra = ((char*)ctx) + sizeof(struct evmap_io); + if (ctx->nread) + events |= EV_READ; + if (ctx->nwrite) + events |= EV_WRITE; + if (ctx->nclose) + events |= EV_CLOSED; + if (evsel->fdinfo_len) + memset(extra, 0, evsel->fdinfo_len); + if (events && + (ev = LIST_FIRST(&ctx->events)) && + (ev->ev_events & EV_ET)) + events |= EV_ET; + if (evsel->add(base, fd, 0, events, extra) == -1) + *result = -1; + + return 0; +} + +/* Helper for evmap_reinit_: tell the backend to add every signal for which we + * have pending events. */ +static int +evmap_signal_reinit_iter_fn(struct event_base *base, + int signum, struct evmap_signal *ctx, void *arg) +{ + const struct eventop *evsel = base->evsigsel; + int *result = arg; + + if (!LIST_EMPTY(&ctx->events)) { + if (evsel->add(base, signum, 0, EV_SIGNAL, NULL) == -1) + *result = -1; + } + return 0; +} + +int +evmap_reinit_(struct event_base *base) +{ + int result = 0; + + evmap_io_foreach_fd(base, evmap_io_reinit_iter_fn, &result); + if (result < 0) + return -1; + evmap_signal_foreach_signal(base, evmap_signal_reinit_iter_fn, &result); + if (result < 0) + return -1; + return 0; +} + +/* Helper for evmap_delete_all_: delete every event in an event_dlist. */ +static int +delete_all_in_dlist(struct event_dlist *dlist) +{ + struct event *ev; + while ((ev = LIST_FIRST(dlist))) + event_del(ev); + return 0; +} + +/* Helper for evmap_delete_all_: delete every event pending on an fd. */ +static int +evmap_io_delete_all_iter_fn(struct event_base *base, evutil_socket_t fd, + struct evmap_io *io_info, void *arg) +{ + return delete_all_in_dlist(&io_info->events); +} + +/* Helper for evmap_delete_all_: delete every event pending on a signal. */ +static int +evmap_signal_delete_all_iter_fn(struct event_base *base, int signum, + struct evmap_signal *sig_info, void *arg) +{ + return delete_all_in_dlist(&sig_info->events); +} + +void +evmap_delete_all_(struct event_base *base) +{ + evmap_signal_foreach_signal(base, evmap_signal_delete_all_iter_fn, NULL); + evmap_io_foreach_fd(base, evmap_io_delete_all_iter_fn, NULL); +} + +/** Per-fd structure for use with changelists. It keeps track, for each fd or + * signal using the changelist, of where its entry in the changelist is. + */ +struct event_changelist_fdinfo { + int idxplus1; /* this is the index +1, so that memset(0) will make it + * a no-such-element */ +}; + +void +event_changelist_init_(struct event_changelist *changelist) +{ + changelist->changes = NULL; + changelist->changes_size = 0; + changelist->n_changes = 0; +} + +/** Helper: return the changelist_fdinfo corresponding to a given change. */ +static inline struct event_changelist_fdinfo * +event_change_get_fdinfo(struct event_base *base, + const struct event_change *change) +{ + char *ptr; + if (change->read_change & EV_CHANGE_SIGNAL) { + struct evmap_signal *ctx; + GET_SIGNAL_SLOT(ctx, &base->sigmap, change->fd, evmap_signal); + ptr = ((char*)ctx) + sizeof(struct evmap_signal); + } else { + struct evmap_io *ctx; + GET_IO_SLOT(ctx, &base->io, change->fd, evmap_io); + ptr = ((char*)ctx) + sizeof(struct evmap_io); + } + return (void*)ptr; +} + +/** Callback helper for event_changelist_assert_ok */ +static int +event_changelist_assert_ok_foreach_iter_fn( + struct event_base *base, + evutil_socket_t fd, struct evmap_io *io, void *arg) +{ + struct event_changelist *changelist = &base->changelist; + struct event_changelist_fdinfo *f; + f = (void*) + ( ((char*)io) + sizeof(struct evmap_io) ); + if (f->idxplus1) { + struct event_change *c = &changelist->changes[f->idxplus1 - 1]; + EVUTIL_ASSERT(c->fd == fd); + } + return 0; +} + +/** Make sure that the changelist is consistent with the evmap structures. */ +static void +event_changelist_assert_ok(struct event_base *base) +{ + int i; + struct event_changelist *changelist = &base->changelist; + + EVUTIL_ASSERT(changelist->changes_size >= changelist->n_changes); + for (i = 0; i < changelist->n_changes; ++i) { + struct event_change *c = &changelist->changes[i]; + struct event_changelist_fdinfo *f; + EVUTIL_ASSERT(c->fd >= 0); + f = event_change_get_fdinfo(base, c); + EVUTIL_ASSERT(f); + EVUTIL_ASSERT(f->idxplus1 == i + 1); + } + + evmap_io_foreach_fd(base, + event_changelist_assert_ok_foreach_iter_fn, + NULL); +} + +#ifdef DEBUG_CHANGELIST +#define event_changelist_check(base) event_changelist_assert_ok((base)) +#else +#define event_changelist_check(base) ((void)0) +#endif + +void +event_changelist_remove_all_(struct event_changelist *changelist, + struct event_base *base) +{ + int i; + + event_changelist_check(base); + + for (i = 0; i < changelist->n_changes; ++i) { + struct event_change *ch = &changelist->changes[i]; + struct event_changelist_fdinfo *fdinfo = + event_change_get_fdinfo(base, ch); + EVUTIL_ASSERT(fdinfo->idxplus1 == i + 1); + fdinfo->idxplus1 = 0; + } + + changelist->n_changes = 0; + + event_changelist_check(base); +} + +void +event_changelist_freemem_(struct event_changelist *changelist) +{ + if (changelist->changes) + mm_free(changelist->changes); + event_changelist_init_(changelist); /* zero it all out. */ +} + +/** Increase the size of 'changelist' to hold more changes. */ +static int +event_changelist_grow(struct event_changelist *changelist) +{ + int new_size; + struct event_change *new_changes; + if (changelist->changes_size < 64) + new_size = 64; + else + new_size = changelist->changes_size * 2; + + new_changes = mm_realloc(changelist->changes, + new_size * sizeof(struct event_change)); + + if (EVUTIL_UNLIKELY(new_changes == NULL)) + return (-1); + + changelist->changes = new_changes; + changelist->changes_size = new_size; + + return (0); +} + +/** Return a pointer to the changelist entry for the file descriptor or signal + * 'fd', whose fdinfo is 'fdinfo'. If none exists, construct it, setting its + * old_events field to old_events. + */ +static struct event_change * +event_changelist_get_or_construct(struct event_changelist *changelist, + evutil_socket_t fd, + short old_events, + struct event_changelist_fdinfo *fdinfo) +{ + struct event_change *change; + + if (fdinfo->idxplus1 == 0) { + int idx; + EVUTIL_ASSERT(changelist->n_changes <= changelist->changes_size); + + if (changelist->n_changes == changelist->changes_size) { + if (event_changelist_grow(changelist) < 0) + return NULL; + } + + idx = changelist->n_changes++; + change = &changelist->changes[idx]; + fdinfo->idxplus1 = idx + 1; + + memset(change, 0, sizeof(struct event_change)); + change->fd = fd; + change->old_events = old_events; + } else { + change = &changelist->changes[fdinfo->idxplus1 - 1]; + EVUTIL_ASSERT(change->fd == fd); + } + return change; +} + +int +event_changelist_add_(struct event_base *base, evutil_socket_t fd, short old, short events, + void *p) +{ + struct event_changelist *changelist = &base->changelist; + struct event_changelist_fdinfo *fdinfo = p; + struct event_change *change; + + event_changelist_check(base); + + change = event_changelist_get_or_construct(changelist, fd, old, fdinfo); + if (!change) + return -1; + + /* An add replaces any previous delete, but doesn't result in a no-op, + * since the delete might fail (because the fd had been closed since + * the last add, for instance. */ + + if (events & (EV_READ|EV_SIGNAL)) { + change->read_change = EV_CHANGE_ADD | + (events & (EV_ET|EV_PERSIST|EV_SIGNAL)); + } + if (events & EV_WRITE) { + change->write_change = EV_CHANGE_ADD | + (events & (EV_ET|EV_PERSIST|EV_SIGNAL)); + } + if (events & EV_CLOSED) { + change->close_change = EV_CHANGE_ADD | + (events & (EV_ET|EV_PERSIST|EV_SIGNAL)); + } + + event_changelist_check(base); + return (0); +} + +int +event_changelist_del_(struct event_base *base, evutil_socket_t fd, short old, short events, + void *p) +{ + struct event_changelist *changelist = &base->changelist; + struct event_changelist_fdinfo *fdinfo = p; + struct event_change *change; + + event_changelist_check(base); + change = event_changelist_get_or_construct(changelist, fd, old, fdinfo); + event_changelist_check(base); + if (!change) + return -1; + + /* A delete on an event set that doesn't contain the event to be + deleted produces a no-op. This effectively emoves any previous + uncommitted add, rather than replacing it: on those platforms where + "add, delete, dispatch" is not the same as "no-op, dispatch", we + want the no-op behavior. + + If we have a no-op item, we could remove it it from the list + entirely, but really there's not much point: skipping the no-op + change when we do the dispatch later is far cheaper than rejuggling + the array now. + + As this stands, it also lets through deletions of events that are + not currently set. + */ + + if (events & (EV_READ|EV_SIGNAL)) { + if (!(change->old_events & (EV_READ | EV_SIGNAL))) + change->read_change = 0; + else + change->read_change = EV_CHANGE_DEL; + } + if (events & EV_WRITE) { + if (!(change->old_events & EV_WRITE)) + change->write_change = 0; + else + change->write_change = EV_CHANGE_DEL; + } + if (events & EV_CLOSED) { + if (!(change->old_events & EV_CLOSED)) + change->close_change = 0; + else + change->close_change = EV_CHANGE_DEL; + } + + event_changelist_check(base); + return (0); +} + +/* Helper for evmap_check_integrity_: verify that all of the events pending on + * given fd are set up correctly, and that the nread and nwrite counts on that + * fd are correct. */ +static int +evmap_io_check_integrity_fn(struct event_base *base, evutil_socket_t fd, + struct evmap_io *io_info, void *arg) +{ + struct event *ev; + int n_read = 0, n_write = 0, n_close = 0; + + /* First, make sure the list itself isn't corrupt. Otherwise, + * running LIST_FOREACH could be an exciting adventure. */ + EVUTIL_ASSERT_LIST_OK(&io_info->events, event, ev_io_next); + + LIST_FOREACH(ev, &io_info->events, ev_io_next) { + EVUTIL_ASSERT(ev->ev_flags & EVLIST_INSERTED); + EVUTIL_ASSERT(ev->ev_fd == fd); + EVUTIL_ASSERT(!(ev->ev_events & EV_SIGNAL)); + EVUTIL_ASSERT((ev->ev_events & (EV_READ|EV_WRITE|EV_CLOSED))); + if (ev->ev_events & EV_READ) + ++n_read; + if (ev->ev_events & EV_WRITE) + ++n_write; + if (ev->ev_events & EV_CLOSED) + ++n_close; + } + + EVUTIL_ASSERT(n_read == io_info->nread); + EVUTIL_ASSERT(n_write == io_info->nwrite); + EVUTIL_ASSERT(n_close == io_info->nclose); + + return 0; +} + +/* Helper for evmap_check_integrity_: verify that all of the events pending + * on given signal are set up correctly. */ +static int +evmap_signal_check_integrity_fn(struct event_base *base, + int signum, struct evmap_signal *sig_info, void *arg) +{ + struct event *ev; + /* First, make sure the list itself isn't corrupt. */ + EVUTIL_ASSERT_LIST_OK(&sig_info->events, event, ev_signal_next); + + LIST_FOREACH(ev, &sig_info->events, ev_io_next) { + EVUTIL_ASSERT(ev->ev_flags & EVLIST_INSERTED); + EVUTIL_ASSERT(ev->ev_fd == signum); + EVUTIL_ASSERT((ev->ev_events & EV_SIGNAL)); + EVUTIL_ASSERT(!(ev->ev_events & (EV_READ|EV_WRITE|EV_CLOSED))); + } + return 0; +} + +void +evmap_check_integrity_(struct event_base *base) +{ + evmap_io_foreach_fd(base, evmap_io_check_integrity_fn, NULL); + evmap_signal_foreach_signal(base, evmap_signal_check_integrity_fn, NULL); + + if (base->evsel->add == event_changelist_add_) + event_changelist_assert_ok(base); +} + +/* Helper type for evmap_foreach_event_: Bundles a function to call on every + * event, and the user-provided void* to use as its third argument. */ +struct evmap_foreach_event_helper { + event_base_foreach_event_cb fn; + void *arg; +}; + +/* Helper for evmap_foreach_event_: calls a provided function on every event + * pending on a given fd. */ +static int +evmap_io_foreach_event_fn(struct event_base *base, evutil_socket_t fd, + struct evmap_io *io_info, void *arg) +{ + struct evmap_foreach_event_helper *h = arg; + struct event *ev; + int r; + LIST_FOREACH(ev, &io_info->events, ev_io_next) { + if ((r = h->fn(base, ev, h->arg))) + return r; + } + return 0; +} + +/* Helper for evmap_foreach_event_: calls a provided function on every event + * pending on a given signal. */ +static int +evmap_signal_foreach_event_fn(struct event_base *base, int signum, + struct evmap_signal *sig_info, void *arg) +{ + struct event *ev; + struct evmap_foreach_event_helper *h = arg; + int r; + LIST_FOREACH(ev, &sig_info->events, ev_signal_next) { + if ((r = h->fn(base, ev, h->arg))) + return r; + } + return 0; +} + +int +evmap_foreach_event_(struct event_base *base, + event_base_foreach_event_cb fn, void *arg) +{ + struct evmap_foreach_event_helper h; + int r; + h.fn = fn; + h.arg = arg; + if ((r = evmap_io_foreach_fd(base, evmap_io_foreach_event_fn, &h))) + return r; + return evmap_signal_foreach_signal(base, evmap_signal_foreach_event_fn, &h); +} + diff -Nru mysql-5.7-5.7.25/extra/libevent/evmap-internal.h mysql-5.7-5.7.26/extra/libevent/evmap-internal.h --- mysql-5.7-5.7.25/extra/libevent/evmap-internal.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/evmap-internal.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,117 @@ +/* + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef EVMAP_INTERNAL_H_INCLUDED_ +#define EVMAP_INTERNAL_H_INCLUDED_ + +/** @file evmap-internal.h + * + * An event_map is a utility structure to map each fd or signal to zero or + * more events. Functions to manipulate event_maps should only be used from + * inside libevent. They generally need to hold the lock on the corresponding + * event_base. + **/ + +struct event_base; +struct event; + +/** Initialize an event_map for use. + */ +void evmap_io_initmap_(struct event_io_map* ctx); +void evmap_signal_initmap_(struct event_signal_map* ctx); + +/** Remove all entries from an event_map. + + @param ctx the map to clear. + */ +void evmap_io_clear_(struct event_io_map* ctx); +void evmap_signal_clear_(struct event_signal_map* ctx); + +/** Add an IO event (some combination of EV_READ or EV_WRITE) to an + event_base's list of events on a given file descriptor, and tell the + underlying eventops about the fd if its state has changed. + + Requires that ev is not already added. + + @param base the event_base to operate on. + @param fd the file descriptor corresponding to ev. + @param ev the event to add. +*/ +int evmap_io_add_(struct event_base *base, evutil_socket_t fd, struct event *ev); +/** Remove an IO event (some combination of EV_READ or EV_WRITE) to an + event_base's list of events on a given file descriptor, and tell the + underlying eventops about the fd if its state has changed. + + @param base the event_base to operate on. + @param fd the file descriptor corresponding to ev. + @param ev the event to remove. + */ +int evmap_io_del_(struct event_base *base, evutil_socket_t fd, struct event *ev); +/** Active the set of events waiting on an event_base for a given fd. + + @param base the event_base to operate on. + @param fd the file descriptor that has become active. + @param events a bitmask of EV_READ|EV_WRITE|EV_ET. +*/ +void evmap_io_active_(struct event_base *base, evutil_socket_t fd, short events); + + +/* These functions behave in the same way as evmap_io_*, except they work on + * signals rather than fds. signals use a linear map everywhere; fds use + * either a linear map or a hashtable. */ +int evmap_signal_add_(struct event_base *base, int signum, struct event *ev); +int evmap_signal_del_(struct event_base *base, int signum, struct event *ev); +void evmap_signal_active_(struct event_base *base, evutil_socket_t signum, int ncalls); + +/* Return the fdinfo object associated with a given fd. If the fd has no + * events associated with it, the result may be NULL. + */ +void *evmap_io_get_fdinfo_(struct event_io_map *ctx, evutil_socket_t fd); + +/* Helper for event_reinit(): Tell the backend to re-add every fd and signal + * for which we have a pending event. + */ +int evmap_reinit_(struct event_base *base); + +/* Helper for event_base_free(): Call event_del() on every pending fd and + * signal event. + */ +void evmap_delete_all_(struct event_base *base); + +/* Helper for event_base_assert_ok_(): Check referential integrity of the + * evmaps. + */ +void evmap_check_integrity_(struct event_base *base); + +/* Helper: Call fn on every fd or signal event, passing as its arguments the + * provided event_base, the event, and arg. If fn returns 0, process the next + * event. If it returns any other value, return that value and process no + * more events. + */ +int evmap_foreach_event_(struct event_base *base, + event_base_foreach_event_cb fn, + void *arg); + +#endif /* EVMAP_INTERNAL_H_INCLUDED_ */ diff -Nru mysql-5.7-5.7.25/extra/libevent/evport.c mysql-5.7-5.7.26/extra/libevent/evport.c --- mysql-5.7-5.7.25/extra/libevent/evport.c 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/evport.c 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,451 @@ +/* + * Submitted by David Pacheco (dp.spambait@gmail.com) + * + * Copyright 2006-2007 Niels Provos + * Copyright 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY SUN MICROSYSTEMS, INC. ``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 SUN MICROSYSTEMS, INC. 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. + */ + +/* + * Copyright (c) 2007 Sun Microsystems. All rights reserved. + * Use is subject to license terms. + */ + +/* + * evport.c: event backend using Solaris 10 event ports. See port_create(3C). + * This implementation is loosely modeled after the one used for select(2) (in + * select.c). + * + * The outstanding events are tracked in a data structure called evport_data. + * Each entry in the ed_fds array corresponds to a file descriptor, and contains + * pointers to the read and write events that correspond to that fd. (That is, + * when the file is readable, the "read" event should handle it, etc.) + * + * evport_add and evport_del update this data structure. evport_dispatch uses it + * to determine where to callback when an event occurs (which it gets from + * port_getn). + * + * Helper functions are used: grow() grows the file descriptor array as + * necessary when large fd's come in. reassociate() takes care of maintaining + * the proper file-descriptor/event-port associations. + * + * As in the select(2) implementation, signals are handled by evsignal. + */ + +#include "event2/event-config.h" +#include "evconfig-private.h" + +#ifdef EVENT__HAVE_EVENT_PORTS + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "event2/thread.h" + +#include "evthread-internal.h" +#include "event-internal.h" +#include "log-internal.h" +#include "evsignal-internal.h" +#include "evmap-internal.h" + +#define INITIAL_EVENTS_PER_GETN 8 +#define MAX_EVENTS_PER_GETN 4096 + +/* + * Per-file-descriptor information about what events we're subscribed to. These + * fields are NULL if no event is subscribed to either of them. + */ + +struct fd_info { + /* combinations of EV_READ and EV_WRITE */ + short fdi_what; + /* Index of this fd within ed_pending, plus 1. Zero if this fd is + * not in ed_pending. (The +1 is a hack so that memset(0) will set + * it to a nil index. */ + int pending_idx_plus_1; +}; + +#define FDI_HAS_READ(fdi) ((fdi)->fdi_what & EV_READ) +#define FDI_HAS_WRITE(fdi) ((fdi)->fdi_what & EV_WRITE) +#define FDI_HAS_EVENTS(fdi) (FDI_HAS_READ(fdi) || FDI_HAS_WRITE(fdi)) +#define FDI_TO_SYSEVENTS(fdi) (FDI_HAS_READ(fdi) ? POLLIN : 0) | \ + (FDI_HAS_WRITE(fdi) ? POLLOUT : 0) + +struct evport_data { + int ed_port; /* event port for system events */ + /* How many elements of ed_pending should we look at? */ + int ed_npending; + /* How many elements are allocated in ed_pending and pevtlist? */ + int ed_maxevents; + /* fdi's that we need to reassoc */ + int *ed_pending; + /* storage space for incoming events. */ + port_event_t *ed_pevtlist; + +}; + +static void* evport_init(struct event_base *); +static int evport_add(struct event_base *, int fd, short old, short events, void *); +static int evport_del(struct event_base *, int fd, short old, short events, void *); +static int evport_dispatch(struct event_base *, struct timeval *); +static void evport_dealloc(struct event_base *); +static int grow(struct evport_data *, int min_events); + +const struct eventop evportops = { + "evport", + evport_init, + evport_add, + evport_del, + evport_dispatch, + evport_dealloc, + 1, /* need reinit */ + 0, /* features */ + sizeof(struct fd_info), /* fdinfo length */ +}; + +/* + * Initialize the event port implementation. + */ + +static void* +evport_init(struct event_base *base) +{ + struct evport_data *evpd; + + if (!(evpd = mm_calloc(1, sizeof(struct evport_data)))) + return (NULL); + + if ((evpd->ed_port = port_create()) == -1) { + mm_free(evpd); + return (NULL); + } + + if (grow(evpd, INITIAL_EVENTS_PER_GETN) < 0) { + close(evpd->ed_port); + mm_free(evpd); + return NULL; + } + + evpd->ed_npending = 0; + + evsig_init_(base); + + return (evpd); +} + +static int +grow(struct evport_data *data, int min_events) +{ + int newsize; + int *new_pending; + port_event_t *new_pevtlist; + if (data->ed_maxevents) { + newsize = data->ed_maxevents; + do { + newsize *= 2; + } while (newsize < min_events); + } else { + newsize = min_events; + } + + new_pending = mm_realloc(data->ed_pending, sizeof(int)*newsize); + if (new_pending == NULL) + return -1; + data->ed_pending = new_pending; + new_pevtlist = mm_realloc(data->ed_pevtlist, sizeof(port_event_t)*newsize); + if (new_pevtlist == NULL) + return -1; + data->ed_pevtlist = new_pevtlist; + + data->ed_maxevents = newsize; + return 0; +} + +#ifdef CHECK_INVARIANTS +/* + * Checks some basic properties about the evport_data structure. Because it + * checks all file descriptors, this function can be expensive when the maximum + * file descriptor ever used is rather large. + */ + +static void +check_evportop(struct evport_data *evpd) +{ + EVUTIL_ASSERT(evpd); + EVUTIL_ASSERT(evpd->ed_port > 0); +} + +/* + * Verifies very basic integrity of a given port_event. + */ +static void +check_event(port_event_t* pevt) +{ + /* + * We've only registered for PORT_SOURCE_FD events. The only + * other thing we can legitimately receive is PORT_SOURCE_ALERT, + * but since we're not using port_alert either, we can assume + * PORT_SOURCE_FD. + */ + EVUTIL_ASSERT(pevt->portev_source == PORT_SOURCE_FD); +} + +#else +#define check_evportop(epop) +#define check_event(pevt) +#endif /* CHECK_INVARIANTS */ + +/* + * (Re)associates the given file descriptor with the event port. The OS events + * are specified (implicitly) from the fd_info struct. + */ +static int +reassociate(struct evport_data *epdp, struct fd_info *fdip, int fd) +{ + int sysevents = FDI_TO_SYSEVENTS(fdip); + + if (sysevents != 0) { + if (port_associate(epdp->ed_port, PORT_SOURCE_FD, + fd, sysevents, fdip) == -1) { + event_warn("port_associate"); + return (-1); + } + } + + check_evportop(epdp); + + return (0); +} + +/* + * Main event loop - polls port_getn for some number of events, and processes + * them. + */ + +static int +evport_dispatch(struct event_base *base, struct timeval *tv) +{ + int i, res; + struct evport_data *epdp = base->evbase; + port_event_t *pevtlist = epdp->ed_pevtlist; + + /* + * port_getn will block until it has at least nevents events. It will + * also return how many it's given us (which may be more than we asked + * for, as long as it's less than our maximum (ed_maxevents)) in + * nevents. + */ + int nevents = 1; + + /* + * We have to convert a struct timeval to a struct timespec + * (only difference is nanoseconds vs. microseconds). If no time-based + * events are active, we should wait for I/O (and tv == NULL). + */ + struct timespec ts; + struct timespec *ts_p = NULL; + if (tv != NULL) { + ts.tv_sec = tv->tv_sec; + ts.tv_nsec = tv->tv_usec * 1000; + ts_p = &ts; + } + + /* + * Before doing anything else, we need to reassociate the events we hit + * last time which need reassociation. See comment at the end of the + * loop below. + */ + for (i = 0; i < epdp->ed_npending; ++i) { + struct fd_info *fdi = NULL; + const int fd = epdp->ed_pending[i]; + if (fd != -1) { + /* We might have cleared out this event; we need + * to be sure that it's still set. */ + fdi = evmap_io_get_fdinfo_(&base->io, fd); + } + + if (fdi != NULL && FDI_HAS_EVENTS(fdi)) { + reassociate(epdp, fdi, fd); + /* epdp->ed_pending[i] = -1; */ + fdi->pending_idx_plus_1 = 0; + } + } + + EVBASE_RELEASE_LOCK(base, th_base_lock); + + res = port_getn(epdp->ed_port, pevtlist, epdp->ed_maxevents, + (unsigned int *) &nevents, ts_p); + + EVBASE_ACQUIRE_LOCK(base, th_base_lock); + + if (res == -1) { + if (errno == EINTR || errno == EAGAIN) { + return (0); + } else if (errno == ETIME) { + if (nevents == 0) + return (0); + } else { + event_warn("port_getn"); + return (-1); + } + } + + event_debug(("%s: port_getn reports %d events", __func__, nevents)); + + for (i = 0; i < nevents; ++i) { + port_event_t *pevt = &pevtlist[i]; + int fd = (int) pevt->portev_object; + struct fd_info *fdi = pevt->portev_user; + /*EVUTIL_ASSERT(evmap_io_get_fdinfo_(&base->io, fd) == fdi);*/ + + check_evportop(epdp); + check_event(pevt); + epdp->ed_pending[i] = fd; + fdi->pending_idx_plus_1 = i + 1; + + /* + * Figure out what kind of event it was + * (because we have to pass this to the callback) + */ + res = 0; + if (pevt->portev_events & (POLLERR|POLLHUP)) { + res = EV_READ | EV_WRITE; + } else { + if (pevt->portev_events & POLLIN) + res |= EV_READ; + if (pevt->portev_events & POLLOUT) + res |= EV_WRITE; + } + + /* + * Check for the error situations or a hangup situation + */ + if (pevt->portev_events & (POLLERR|POLLHUP|POLLNVAL)) + res |= EV_READ|EV_WRITE; + + evmap_io_active_(base, fd, res); + } /* end of all events gotten */ + epdp->ed_npending = nevents; + + if (nevents == epdp->ed_maxevents && + epdp->ed_maxevents < MAX_EVENTS_PER_GETN) { + /* we used all the space this time. We should be ready + * for more events next time around. */ + grow(epdp, epdp->ed_maxevents * 2); + } + + check_evportop(epdp); + + return (0); +} + + +/* + * Adds the given event (so that you will be notified when it happens via + * the callback function). + */ + +static int +evport_add(struct event_base *base, int fd, short old, short events, void *p) +{ + struct evport_data *evpd = base->evbase; + struct fd_info *fdi = p; + + check_evportop(evpd); + + fdi->fdi_what |= events; + + return reassociate(evpd, fdi, fd); +} + +/* + * Removes the given event from the list of events to wait for. + */ + +static int +evport_del(struct event_base *base, int fd, short old, short events, void *p) +{ + struct evport_data *evpd = base->evbase; + struct fd_info *fdi = p; + int associated = ! fdi->pending_idx_plus_1; + + check_evportop(evpd); + + fdi->fdi_what &= ~(events &(EV_READ|EV_WRITE)); + + if (associated) { + if (!FDI_HAS_EVENTS(fdi) && + port_dissociate(evpd->ed_port, PORT_SOURCE_FD, fd) == -1) { + /* + * Ignore EBADFD error the fd could have been closed + * before event_del() was called. + */ + if (errno != EBADFD) { + event_warn("port_dissociate"); + return (-1); + } + } else { + if (FDI_HAS_EVENTS(fdi)) { + return (reassociate(evpd, fdi, fd)); + } + } + } else { + if ((fdi->fdi_what & (EV_READ|EV_WRITE)) == 0) { + const int i = fdi->pending_idx_plus_1 - 1; + EVUTIL_ASSERT(evpd->ed_pending[i] == fd); + evpd->ed_pending[i] = -1; + fdi->pending_idx_plus_1 = 0; + } + } + return 0; +} + + +static void +evport_dealloc(struct event_base *base) +{ + struct evport_data *evpd = base->evbase; + + evsig_dealloc_(base); + + close(evpd->ed_port); + + if (evpd->ed_pending) + mm_free(evpd->ed_pending); + if (evpd->ed_pevtlist) + mm_free(evpd->ed_pevtlist); + + mm_free(evpd); +} + +#endif /* EVENT__HAVE_EVENT_PORTS */ diff -Nru mysql-5.7-5.7.25/extra/libevent/evrpc.c mysql-5.7-5.7.26/extra/libevent/evrpc.c --- mysql-5.7-5.7.25/extra/libevent/evrpc.c 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/evrpc.c 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,1171 @@ +/* + * Copyright (c) 2000-2007 Niels Provos + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#include "event2/event-config.h" +#include "evconfig-private.h" + +#ifdef _WIN32 +#define WIN32_LEAN_AND_MEAN +#include +#include +#undef WIN32_LEAN_AND_MEAN +#endif + +#include +#ifndef _WIN32 +#include +#endif +#ifdef EVENT__HAVE_SYS_TIME_H +#include +#endif +#include +#include +#include +#ifndef _WIN32 +#include +#endif +#include +#include +#include + +#include + +#include "event2/event.h" +#include "event2/event_struct.h" +#include "event2/rpc.h" +#include "event2/rpc_struct.h" +#include "evrpc-internal.h" +#include "event2/http.h" +#include "event2/buffer.h" +#include "event2/tag.h" +#include "event2/http_struct.h" +#include "event2/http_compat.h" +#include "event2/util.h" +#include "util-internal.h" +#include "log-internal.h" +#include "mm-internal.h" + +struct evrpc_base * +evrpc_init(struct evhttp *http_server) +{ + struct evrpc_base* base = mm_calloc(1, sizeof(struct evrpc_base)); + if (base == NULL) + return (NULL); + + /* we rely on the tagging sub system */ + evtag_init(); + + TAILQ_INIT(&base->registered_rpcs); + TAILQ_INIT(&base->input_hooks); + TAILQ_INIT(&base->output_hooks); + + TAILQ_INIT(&base->paused_requests); + + base->http_server = http_server; + + return (base); +} + +void +evrpc_free(struct evrpc_base *base) +{ + struct evrpc *rpc; + struct evrpc_hook *hook; + struct evrpc_hook_ctx *pause; + int r; + + while ((rpc = TAILQ_FIRST(&base->registered_rpcs)) != NULL) { + r = evrpc_unregister_rpc(base, rpc->uri); + EVUTIL_ASSERT(r == 0); + } + while ((pause = TAILQ_FIRST(&base->paused_requests)) != NULL) { + TAILQ_REMOVE(&base->paused_requests, pause, next); + mm_free(pause); + } + while ((hook = TAILQ_FIRST(&base->input_hooks)) != NULL) { + r = evrpc_remove_hook(base, EVRPC_INPUT, hook); + EVUTIL_ASSERT(r); + } + while ((hook = TAILQ_FIRST(&base->output_hooks)) != NULL) { + r = evrpc_remove_hook(base, EVRPC_OUTPUT, hook); + EVUTIL_ASSERT(r); + } + mm_free(base); +} + +void * +evrpc_add_hook(void *vbase, + enum EVRPC_HOOK_TYPE hook_type, + int (*cb)(void *, struct evhttp_request *, struct evbuffer *, void *), + void *cb_arg) +{ + struct evrpc_hooks_ *base = vbase; + struct evrpc_hook_list *head = NULL; + struct evrpc_hook *hook = NULL; + switch (hook_type) { + case EVRPC_INPUT: + head = &base->in_hooks; + break; + case EVRPC_OUTPUT: + head = &base->out_hooks; + break; + default: + EVUTIL_ASSERT(hook_type == EVRPC_INPUT || hook_type == EVRPC_OUTPUT); + } + + hook = mm_calloc(1, sizeof(struct evrpc_hook)); + EVUTIL_ASSERT(hook != NULL); + + hook->process = cb; + hook->process_arg = cb_arg; + TAILQ_INSERT_TAIL(head, hook, next); + + return (hook); +} + +static int +evrpc_remove_hook_internal(struct evrpc_hook_list *head, void *handle) +{ + struct evrpc_hook *hook = NULL; + TAILQ_FOREACH(hook, head, next) { + if (hook == handle) { + TAILQ_REMOVE(head, hook, next); + mm_free(hook); + return (1); + } + } + + return (0); +} + +/* + * remove the hook specified by the handle + */ + +int +evrpc_remove_hook(void *vbase, enum EVRPC_HOOK_TYPE hook_type, void *handle) +{ + struct evrpc_hooks_ *base = vbase; + struct evrpc_hook_list *head = NULL; + switch (hook_type) { + case EVRPC_INPUT: + head = &base->in_hooks; + break; + case EVRPC_OUTPUT: + head = &base->out_hooks; + break; + default: + EVUTIL_ASSERT(hook_type == EVRPC_INPUT || hook_type == EVRPC_OUTPUT); + } + + return (evrpc_remove_hook_internal(head, handle)); +} + +static int +evrpc_process_hooks(struct evrpc_hook_list *head, void *ctx, + struct evhttp_request *req, struct evbuffer *evbuf) +{ + struct evrpc_hook *hook; + TAILQ_FOREACH(hook, head, next) { + int res = hook->process(ctx, req, evbuf, hook->process_arg); + if (res != EVRPC_CONTINUE) + return (res); + } + + return (EVRPC_CONTINUE); +} + +static void evrpc_pool_schedule(struct evrpc_pool *pool); +static void evrpc_request_cb(struct evhttp_request *, void *); + +/* + * Registers a new RPC with the HTTP server. The evrpc object is expected + * to have been filled in via the EVRPC_REGISTER_OBJECT macro which in turn + * calls this function. + */ + +static char * +evrpc_construct_uri(const char *uri) +{ + char *constructed_uri; + size_t constructed_uri_len; + + constructed_uri_len = strlen(EVRPC_URI_PREFIX) + strlen(uri) + 1; + if ((constructed_uri = mm_malloc(constructed_uri_len)) == NULL) + event_err(1, "%s: failed to register rpc at %s", + __func__, uri); + memcpy(constructed_uri, EVRPC_URI_PREFIX, strlen(EVRPC_URI_PREFIX)); + memcpy(constructed_uri + strlen(EVRPC_URI_PREFIX), uri, strlen(uri)); + constructed_uri[constructed_uri_len - 1] = '\0'; + + return (constructed_uri); +} + +int +evrpc_register_rpc(struct evrpc_base *base, struct evrpc *rpc, + void (*cb)(struct evrpc_req_generic *, void *), void *cb_arg) +{ + char *constructed_uri = evrpc_construct_uri(rpc->uri); + + rpc->base = base; + rpc->cb = cb; + rpc->cb_arg = cb_arg; + + TAILQ_INSERT_TAIL(&base->registered_rpcs, rpc, next); + + evhttp_set_cb(base->http_server, + constructed_uri, + evrpc_request_cb, + rpc); + + mm_free(constructed_uri); + + return (0); +} + +int +evrpc_unregister_rpc(struct evrpc_base *base, const char *name) +{ + char *registered_uri = NULL; + struct evrpc *rpc; + int r; + + /* find the right rpc; linear search might be slow */ + TAILQ_FOREACH(rpc, &base->registered_rpcs, next) { + if (strcmp(rpc->uri, name) == 0) + break; + } + if (rpc == NULL) { + /* We did not find an RPC with this name */ + return (-1); + } + TAILQ_REMOVE(&base->registered_rpcs, rpc, next); + + registered_uri = evrpc_construct_uri(name); + + /* remove the http server callback */ + r = evhttp_del_cb(base->http_server, registered_uri); + EVUTIL_ASSERT(r == 0); + + mm_free(registered_uri); + + mm_free((char *)rpc->uri); + mm_free(rpc); + return (0); +} + +static int evrpc_pause_request(void *vbase, void *ctx, + void (*cb)(void *, enum EVRPC_HOOK_RESULT)); +static void evrpc_request_cb_closure(void *, enum EVRPC_HOOK_RESULT); + +static void +evrpc_request_cb(struct evhttp_request *req, void *arg) +{ + struct evrpc *rpc = arg; + struct evrpc_req_generic *rpc_state = NULL; + + /* let's verify the outside parameters */ + if (req->type != EVHTTP_REQ_POST || + evbuffer_get_length(req->input_buffer) <= 0) + goto error; + + rpc_state = mm_calloc(1, sizeof(struct evrpc_req_generic)); + if (rpc_state == NULL) + goto error; + rpc_state->rpc = rpc; + rpc_state->http_req = req; + rpc_state->rpc_data = NULL; + + if (TAILQ_FIRST(&rpc->base->input_hooks) != NULL) { + int hook_res; + + evrpc_hook_associate_meta_(&rpc_state->hook_meta, req->evcon); + + /* + * allow hooks to modify the outgoing request + */ + hook_res = evrpc_process_hooks(&rpc->base->input_hooks, + rpc_state, req, req->input_buffer); + switch (hook_res) { + case EVRPC_TERMINATE: + goto error; + case EVRPC_PAUSE: + evrpc_pause_request(rpc->base, rpc_state, + evrpc_request_cb_closure); + return; + case EVRPC_CONTINUE: + break; + default: + EVUTIL_ASSERT(hook_res == EVRPC_TERMINATE || + hook_res == EVRPC_CONTINUE || + hook_res == EVRPC_PAUSE); + } + } + + evrpc_request_cb_closure(rpc_state, EVRPC_CONTINUE); + return; + +error: + evrpc_reqstate_free_(rpc_state); + evhttp_send_error(req, HTTP_SERVUNAVAIL, NULL); + return; +} + +static void +evrpc_request_cb_closure(void *arg, enum EVRPC_HOOK_RESULT hook_res) +{ + struct evrpc_req_generic *rpc_state = arg; + struct evrpc *rpc; + struct evhttp_request *req; + + EVUTIL_ASSERT(rpc_state); + rpc = rpc_state->rpc; + req = rpc_state->http_req; + + if (hook_res == EVRPC_TERMINATE) + goto error; + + /* let's check that we can parse the request */ + rpc_state->request = rpc->request_new(rpc->request_new_arg); + if (rpc_state->request == NULL) + goto error; + + if (rpc->request_unmarshal( + rpc_state->request, req->input_buffer) == -1) { + /* we failed to parse the request; that's a bummer */ + goto error; + } + + /* at this point, we have a well formed request, prepare the reply */ + + rpc_state->reply = rpc->reply_new(rpc->reply_new_arg); + if (rpc_state->reply == NULL) + goto error; + + /* give the rpc to the user; they can deal with it */ + rpc->cb(rpc_state, rpc->cb_arg); + + return; + +error: + evrpc_reqstate_free_(rpc_state); + evhttp_send_error(req, HTTP_SERVUNAVAIL, NULL); + return; +} + + +void +evrpc_reqstate_free_(struct evrpc_req_generic* rpc_state) +{ + struct evrpc *rpc; + EVUTIL_ASSERT(rpc_state != NULL); + rpc = rpc_state->rpc; + + /* clean up all memory */ + if (rpc_state->hook_meta != NULL) + evrpc_hook_context_free_(rpc_state->hook_meta); + if (rpc_state->request != NULL) + rpc->request_free(rpc_state->request); + if (rpc_state->reply != NULL) + rpc->reply_free(rpc_state->reply); + if (rpc_state->rpc_data != NULL) + evbuffer_free(rpc_state->rpc_data); + mm_free(rpc_state); +} + +static void +evrpc_request_done_closure(void *, enum EVRPC_HOOK_RESULT); + +void +evrpc_request_done(struct evrpc_req_generic *rpc_state) +{ + struct evhttp_request *req; + struct evrpc *rpc; + + EVUTIL_ASSERT(rpc_state); + + req = rpc_state->http_req; + rpc = rpc_state->rpc; + + if (rpc->reply_complete(rpc_state->reply) == -1) { + /* the reply was not completely filled in. error out */ + goto error; + } + + if ((rpc_state->rpc_data = evbuffer_new()) == NULL) { + /* out of memory */ + goto error; + } + + /* serialize the reply */ + rpc->reply_marshal(rpc_state->rpc_data, rpc_state->reply); + + if (TAILQ_FIRST(&rpc->base->output_hooks) != NULL) { + int hook_res; + + evrpc_hook_associate_meta_(&rpc_state->hook_meta, req->evcon); + + /* do hook based tweaks to the request */ + hook_res = evrpc_process_hooks(&rpc->base->output_hooks, + rpc_state, req, rpc_state->rpc_data); + switch (hook_res) { + case EVRPC_TERMINATE: + goto error; + case EVRPC_PAUSE: + if (evrpc_pause_request(rpc->base, rpc_state, + evrpc_request_done_closure) == -1) + goto error; + return; + case EVRPC_CONTINUE: + break; + default: + EVUTIL_ASSERT(hook_res == EVRPC_TERMINATE || + hook_res == EVRPC_CONTINUE || + hook_res == EVRPC_PAUSE); + } + } + + evrpc_request_done_closure(rpc_state, EVRPC_CONTINUE); + return; + +error: + evrpc_reqstate_free_(rpc_state); + evhttp_send_error(req, HTTP_SERVUNAVAIL, NULL); + return; +} + +void * +evrpc_get_request(struct evrpc_req_generic *req) +{ + return req->request; +} + +void * +evrpc_get_reply(struct evrpc_req_generic *req) +{ + return req->reply; +} + +static void +evrpc_request_done_closure(void *arg, enum EVRPC_HOOK_RESULT hook_res) +{ + struct evrpc_req_generic *rpc_state = arg; + struct evhttp_request *req; + EVUTIL_ASSERT(rpc_state); + req = rpc_state->http_req; + + if (hook_res == EVRPC_TERMINATE) + goto error; + + /* on success, we are going to transmit marshaled binary data */ + if (evhttp_find_header(req->output_headers, "Content-Type") == NULL) { + evhttp_add_header(req->output_headers, + "Content-Type", "application/octet-stream"); + } + evhttp_send_reply(req, HTTP_OK, "OK", rpc_state->rpc_data); + + evrpc_reqstate_free_(rpc_state); + + return; + +error: + evrpc_reqstate_free_(rpc_state); + evhttp_send_error(req, HTTP_SERVUNAVAIL, NULL); + return; +} + + +/* Client implementation of RPC site */ + +static int evrpc_schedule_request(struct evhttp_connection *connection, + struct evrpc_request_wrapper *ctx); + +struct evrpc_pool * +evrpc_pool_new(struct event_base *base) +{ + struct evrpc_pool *pool = mm_calloc(1, sizeof(struct evrpc_pool)); + if (pool == NULL) + return (NULL); + + TAILQ_INIT(&pool->connections); + TAILQ_INIT(&pool->requests); + + TAILQ_INIT(&pool->paused_requests); + + TAILQ_INIT(&pool->input_hooks); + TAILQ_INIT(&pool->output_hooks); + + pool->base = base; + pool->timeout = -1; + + return (pool); +} + +static void +evrpc_request_wrapper_free(struct evrpc_request_wrapper *request) +{ + if (request->hook_meta != NULL) + evrpc_hook_context_free_(request->hook_meta); + mm_free(request->name); + mm_free(request); +} + +void +evrpc_pool_free(struct evrpc_pool *pool) +{ + struct evhttp_connection *connection; + struct evrpc_request_wrapper *request; + struct evrpc_hook_ctx *pause; + struct evrpc_hook *hook; + int r; + + while ((request = TAILQ_FIRST(&pool->requests)) != NULL) { + TAILQ_REMOVE(&pool->requests, request, next); + evrpc_request_wrapper_free(request); + } + + while ((pause = TAILQ_FIRST(&pool->paused_requests)) != NULL) { + TAILQ_REMOVE(&pool->paused_requests, pause, next); + mm_free(pause); + } + + while ((connection = TAILQ_FIRST(&pool->connections)) != NULL) { + TAILQ_REMOVE(&pool->connections, connection, next); + evhttp_connection_free(connection); + } + + while ((hook = TAILQ_FIRST(&pool->input_hooks)) != NULL) { + r = evrpc_remove_hook(pool, EVRPC_INPUT, hook); + EVUTIL_ASSERT(r); + } + + while ((hook = TAILQ_FIRST(&pool->output_hooks)) != NULL) { + r = evrpc_remove_hook(pool, EVRPC_OUTPUT, hook); + EVUTIL_ASSERT(r); + } + + mm_free(pool); +} + +/* + * Add a connection to the RPC pool. A request scheduled on the pool + * may use any available connection. + */ + +void +evrpc_pool_add_connection(struct evrpc_pool *pool, + struct evhttp_connection *connection) +{ + EVUTIL_ASSERT(connection->http_server == NULL); + TAILQ_INSERT_TAIL(&pool->connections, connection, next); + + /* + * associate an event base with this connection + */ + if (pool->base != NULL) + evhttp_connection_set_base(connection, pool->base); + + /* + * unless a timeout was specifically set for a connection, + * the connection inherits the timeout from the pool. + */ + if (!evutil_timerisset(&connection->timeout)) + evhttp_connection_set_timeout(connection, pool->timeout); + + /* + * if we have any requests pending, schedule them with the new + * connections. + */ + + if (TAILQ_FIRST(&pool->requests) != NULL) { + struct evrpc_request_wrapper *request = + TAILQ_FIRST(&pool->requests); + TAILQ_REMOVE(&pool->requests, request, next); + evrpc_schedule_request(connection, request); + } +} + +void +evrpc_pool_remove_connection(struct evrpc_pool *pool, + struct evhttp_connection *connection) +{ + TAILQ_REMOVE(&pool->connections, connection, next); +} + +void +evrpc_pool_set_timeout(struct evrpc_pool *pool, int timeout_in_secs) +{ + struct evhttp_connection *evcon; + TAILQ_FOREACH(evcon, &pool->connections, next) { + evhttp_connection_set_timeout(evcon, timeout_in_secs); + } + pool->timeout = timeout_in_secs; +} + + +static void evrpc_reply_done(struct evhttp_request *, void *); +static void evrpc_request_timeout(evutil_socket_t, short, void *); + +/* + * Finds a connection object associated with the pool that is currently + * idle and can be used to make a request. + */ +static struct evhttp_connection * +evrpc_pool_find_connection(struct evrpc_pool *pool) +{ + struct evhttp_connection *connection; + TAILQ_FOREACH(connection, &pool->connections, next) { + if (TAILQ_FIRST(&connection->requests) == NULL) + return (connection); + } + + return (NULL); +} + +/* + * Prototypes responsible for evrpc scheduling and hooking + */ + +static void evrpc_schedule_request_closure(void *ctx, enum EVRPC_HOOK_RESULT); + +/* + * We assume that the ctx is no longer queued on the pool. + */ +static int +evrpc_schedule_request(struct evhttp_connection *connection, + struct evrpc_request_wrapper *ctx) +{ + struct evhttp_request *req = NULL; + struct evrpc_pool *pool = ctx->pool; + struct evrpc_status status; + + if ((req = evhttp_request_new(evrpc_reply_done, ctx)) == NULL) + goto error; + + /* serialize the request data into the output buffer */ + ctx->request_marshal(req->output_buffer, ctx->request); + + /* we need to know the connection that we might have to abort */ + ctx->evcon = connection; + + /* if we get paused we also need to know the request */ + ctx->req = req; + + if (TAILQ_FIRST(&pool->output_hooks) != NULL) { + int hook_res; + + evrpc_hook_associate_meta_(&ctx->hook_meta, connection); + + /* apply hooks to the outgoing request */ + hook_res = evrpc_process_hooks(&pool->output_hooks, + ctx, req, req->output_buffer); + + switch (hook_res) { + case EVRPC_TERMINATE: + goto error; + case EVRPC_PAUSE: + /* we need to be explicitly resumed */ + if (evrpc_pause_request(pool, ctx, + evrpc_schedule_request_closure) == -1) + goto error; + return (0); + case EVRPC_CONTINUE: + /* we can just continue */ + break; + default: + EVUTIL_ASSERT(hook_res == EVRPC_TERMINATE || + hook_res == EVRPC_CONTINUE || + hook_res == EVRPC_PAUSE); + } + } + + evrpc_schedule_request_closure(ctx, EVRPC_CONTINUE); + return (0); + +error: + memset(&status, 0, sizeof(status)); + status.error = EVRPC_STATUS_ERR_UNSTARTED; + (*ctx->cb)(&status, ctx->request, ctx->reply, ctx->cb_arg); + evrpc_request_wrapper_free(ctx); + return (-1); +} + +static void +evrpc_schedule_request_closure(void *arg, enum EVRPC_HOOK_RESULT hook_res) +{ + struct evrpc_request_wrapper *ctx = arg; + struct evhttp_connection *connection = ctx->evcon; + struct evhttp_request *req = ctx->req; + struct evrpc_pool *pool = ctx->pool; + struct evrpc_status status; + char *uri = NULL; + int res = 0; + + if (hook_res == EVRPC_TERMINATE) + goto error; + + uri = evrpc_construct_uri(ctx->name); + if (uri == NULL) + goto error; + + if (pool->timeout > 0) { + /* + * a timeout after which the whole rpc is going to be aborted. + */ + struct timeval tv; + evutil_timerclear(&tv); + tv.tv_sec = pool->timeout; + evtimer_add(&ctx->ev_timeout, &tv); + } + + /* start the request over the connection */ + res = evhttp_make_request(connection, req, EVHTTP_REQ_POST, uri); + mm_free(uri); + + if (res == -1) + goto error; + + return; + +error: + memset(&status, 0, sizeof(status)); + status.error = EVRPC_STATUS_ERR_UNSTARTED; + (*ctx->cb)(&status, ctx->request, ctx->reply, ctx->cb_arg); + evrpc_request_wrapper_free(ctx); +} + +/* we just queue the paused request on the pool under the req object */ +static int +evrpc_pause_request(void *vbase, void *ctx, + void (*cb)(void *, enum EVRPC_HOOK_RESULT)) +{ + struct evrpc_hooks_ *base = vbase; + struct evrpc_hook_ctx *pause = mm_malloc(sizeof(*pause)); + if (pause == NULL) + return (-1); + + pause->ctx = ctx; + pause->cb = cb; + + TAILQ_INSERT_TAIL(&base->pause_requests, pause, next); + return (0); +} + +int +evrpc_resume_request(void *vbase, void *ctx, enum EVRPC_HOOK_RESULT res) +{ + struct evrpc_hooks_ *base = vbase; + struct evrpc_pause_list *head = &base->pause_requests; + struct evrpc_hook_ctx *pause; + + TAILQ_FOREACH(pause, head, next) { + if (pause->ctx == ctx) + break; + } + + if (pause == NULL) + return (-1); + + (*pause->cb)(pause->ctx, res); + TAILQ_REMOVE(head, pause, next); + mm_free(pause); + return (0); +} + +int +evrpc_make_request(struct evrpc_request_wrapper *ctx) +{ + struct evrpc_pool *pool = ctx->pool; + + /* initialize the event structure for this rpc */ + evtimer_assign(&ctx->ev_timeout, pool->base, evrpc_request_timeout, ctx); + + /* we better have some available connections on the pool */ + EVUTIL_ASSERT(TAILQ_FIRST(&pool->connections) != NULL); + + /* + * if no connection is available, we queue the request on the pool, + * the next time a connection is empty, the rpc will be send on that. + */ + TAILQ_INSERT_TAIL(&pool->requests, ctx, next); + + evrpc_pool_schedule(pool); + + return (0); +} + + +struct evrpc_request_wrapper * +evrpc_make_request_ctx( + struct evrpc_pool *pool, void *request, void *reply, + const char *rpcname, + void (*req_marshal)(struct evbuffer*, void *), + void (*rpl_clear)(void *), + int (*rpl_unmarshal)(void *, struct evbuffer *), + void (*cb)(struct evrpc_status *, void *, void *, void *), + void *cbarg) +{ + struct evrpc_request_wrapper *ctx = (struct evrpc_request_wrapper *) + mm_malloc(sizeof(struct evrpc_request_wrapper)); + if (ctx == NULL) + return (NULL); + + ctx->pool = pool; + ctx->hook_meta = NULL; + ctx->evcon = NULL; + ctx->name = mm_strdup(rpcname); + if (ctx->name == NULL) { + mm_free(ctx); + return (NULL); + } + ctx->cb = cb; + ctx->cb_arg = cbarg; + ctx->request = request; + ctx->reply = reply; + ctx->request_marshal = req_marshal; + ctx->reply_clear = rpl_clear; + ctx->reply_unmarshal = rpl_unmarshal; + + return (ctx); +} + +static void +evrpc_reply_done_closure(void *, enum EVRPC_HOOK_RESULT); + +static void +evrpc_reply_done(struct evhttp_request *req, void *arg) +{ + struct evrpc_request_wrapper *ctx = arg; + struct evrpc_pool *pool = ctx->pool; + int hook_res = EVRPC_CONTINUE; + + /* cancel any timeout we might have scheduled */ + event_del(&ctx->ev_timeout); + + ctx->req = req; + + /* we need to get the reply now */ + if (req == NULL) { + evrpc_reply_done_closure(ctx, EVRPC_CONTINUE); + return; + } + + if (TAILQ_FIRST(&pool->input_hooks) != NULL) { + evrpc_hook_associate_meta_(&ctx->hook_meta, ctx->evcon); + + /* apply hooks to the incoming request */ + hook_res = evrpc_process_hooks(&pool->input_hooks, + ctx, req, req->input_buffer); + + switch (hook_res) { + case EVRPC_TERMINATE: + case EVRPC_CONTINUE: + break; + case EVRPC_PAUSE: + /* + * if we get paused we also need to know the + * request. unfortunately, the underlying + * layer is going to free it. we need to + * request ownership explicitly + */ + if (req != NULL) + evhttp_request_own(req); + + evrpc_pause_request(pool, ctx, + evrpc_reply_done_closure); + return; + default: + EVUTIL_ASSERT(hook_res == EVRPC_TERMINATE || + hook_res == EVRPC_CONTINUE || + hook_res == EVRPC_PAUSE); + } + } + + evrpc_reply_done_closure(ctx, hook_res); + + /* http request is being freed by underlying layer */ +} + +static void +evrpc_reply_done_closure(void *arg, enum EVRPC_HOOK_RESULT hook_res) +{ + struct evrpc_request_wrapper *ctx = arg; + struct evhttp_request *req = ctx->req; + struct evrpc_pool *pool = ctx->pool; + struct evrpc_status status; + int res = -1; + + memset(&status, 0, sizeof(status)); + status.http_req = req; + + /* we need to get the reply now */ + if (req == NULL) { + status.error = EVRPC_STATUS_ERR_TIMEOUT; + } else if (hook_res == EVRPC_TERMINATE) { + status.error = EVRPC_STATUS_ERR_HOOKABORTED; + } else { + res = ctx->reply_unmarshal(ctx->reply, req->input_buffer); + if (res == -1) + status.error = EVRPC_STATUS_ERR_BADPAYLOAD; + } + + if (res == -1) { + /* clear everything that we might have written previously */ + ctx->reply_clear(ctx->reply); + } + + (*ctx->cb)(&status, ctx->request, ctx->reply, ctx->cb_arg); + + evrpc_request_wrapper_free(ctx); + + /* the http layer owned the original request structure, but if we + * got paused, we asked for ownership and need to free it here. */ + if (req != NULL && evhttp_request_is_owned(req)) + evhttp_request_free(req); + + /* see if we can schedule another request */ + evrpc_pool_schedule(pool); +} + +static void +evrpc_pool_schedule(struct evrpc_pool *pool) +{ + struct evrpc_request_wrapper *ctx = TAILQ_FIRST(&pool->requests); + struct evhttp_connection *evcon; + + /* if no requests are pending, we have no work */ + if (ctx == NULL) + return; + + if ((evcon = evrpc_pool_find_connection(pool)) != NULL) { + TAILQ_REMOVE(&pool->requests, ctx, next); + evrpc_schedule_request(evcon, ctx); + } +} + +static void +evrpc_request_timeout(evutil_socket_t fd, short what, void *arg) +{ + struct evrpc_request_wrapper *ctx = arg; + struct evhttp_connection *evcon = ctx->evcon; + EVUTIL_ASSERT(evcon != NULL); + + evhttp_connection_fail_(evcon, EVREQ_HTTP_TIMEOUT); +} + +/* + * frees potential meta data associated with a request. + */ + +static void +evrpc_meta_data_free(struct evrpc_meta_list *meta_data) +{ + struct evrpc_meta *entry; + EVUTIL_ASSERT(meta_data != NULL); + + while ((entry = TAILQ_FIRST(meta_data)) != NULL) { + TAILQ_REMOVE(meta_data, entry, next); + mm_free(entry->key); + mm_free(entry->data); + mm_free(entry); + } +} + +static struct evrpc_hook_meta * +evrpc_hook_meta_new_(void) +{ + struct evrpc_hook_meta *ctx; + ctx = mm_malloc(sizeof(struct evrpc_hook_meta)); + EVUTIL_ASSERT(ctx != NULL); + + TAILQ_INIT(&ctx->meta_data); + ctx->evcon = NULL; + + return (ctx); +} + +static void +evrpc_hook_associate_meta_(struct evrpc_hook_meta **pctx, + struct evhttp_connection *evcon) +{ + struct evrpc_hook_meta *ctx = *pctx; + if (ctx == NULL) + *pctx = ctx = evrpc_hook_meta_new_(); + ctx->evcon = evcon; +} + +static void +evrpc_hook_context_free_(struct evrpc_hook_meta *ctx) +{ + evrpc_meta_data_free(&ctx->meta_data); + mm_free(ctx); +} + +/* Adds meta data */ +void +evrpc_hook_add_meta(void *ctx, const char *key, + const void *data, size_t data_size) +{ + struct evrpc_request_wrapper *req = ctx; + struct evrpc_hook_meta *store = NULL; + struct evrpc_meta *meta = NULL; + + if ((store = req->hook_meta) == NULL) + store = req->hook_meta = evrpc_hook_meta_new_(); + + meta = mm_malloc(sizeof(struct evrpc_meta)); + EVUTIL_ASSERT(meta != NULL); + meta->key = mm_strdup(key); + EVUTIL_ASSERT(meta->key != NULL); + meta->data_size = data_size; + meta->data = mm_malloc(data_size); + EVUTIL_ASSERT(meta->data != NULL); + memcpy(meta->data, data, data_size); + + TAILQ_INSERT_TAIL(&store->meta_data, meta, next); +} + +int +evrpc_hook_find_meta(void *ctx, const char *key, void **data, size_t *data_size) +{ + struct evrpc_request_wrapper *req = ctx; + struct evrpc_meta *meta = NULL; + + if (req->hook_meta == NULL) + return (-1); + + TAILQ_FOREACH(meta, &req->hook_meta->meta_data, next) { + if (strcmp(meta->key, key) == 0) { + *data = meta->data; + *data_size = meta->data_size; + return (0); + } + } + + return (-1); +} + +struct evhttp_connection * +evrpc_hook_get_connection(void *ctx) +{ + struct evrpc_request_wrapper *req = ctx; + return (req->hook_meta != NULL ? req->hook_meta->evcon : NULL); +} + +int +evrpc_send_request_generic(struct evrpc_pool *pool, + void *request, void *reply, + void (*cb)(struct evrpc_status *, void *, void *, void *), + void *cb_arg, + const char *rpcname, + void (*req_marshal)(struct evbuffer *, void *), + void (*rpl_clear)(void *), + int (*rpl_unmarshal)(void *, struct evbuffer *)) +{ + struct evrpc_status status; + struct evrpc_request_wrapper *ctx; + ctx = evrpc_make_request_ctx(pool, request, reply, + rpcname, req_marshal, rpl_clear, rpl_unmarshal, cb, cb_arg); + if (ctx == NULL) + goto error; + return (evrpc_make_request(ctx)); +error: + memset(&status, 0, sizeof(status)); + status.error = EVRPC_STATUS_ERR_UNSTARTED; + (*(cb))(&status, request, reply, cb_arg); + return (-1); +} + +/** Takes a request object and fills it in with the right magic */ +static struct evrpc * +evrpc_register_object(const char *name, + void *(*req_new)(void*), void *req_new_arg, void (*req_free)(void *), + int (*req_unmarshal)(void *, struct evbuffer *), + void *(*rpl_new)(void*), void *rpl_new_arg, void (*rpl_free)(void *), + int (*rpl_complete)(void *), + void (*rpl_marshal)(struct evbuffer *, void *)) +{ + struct evrpc* rpc = (struct evrpc *)mm_calloc(1, sizeof(struct evrpc)); + if (rpc == NULL) + return (NULL); + rpc->uri = mm_strdup(name); + if (rpc->uri == NULL) { + mm_free(rpc); + return (NULL); + } + rpc->request_new = req_new; + rpc->request_new_arg = req_new_arg; + rpc->request_free = req_free; + rpc->request_unmarshal = req_unmarshal; + rpc->reply_new = rpl_new; + rpc->reply_new_arg = rpl_new_arg; + rpc->reply_free = rpl_free; + rpc->reply_complete = rpl_complete; + rpc->reply_marshal = rpl_marshal; + return (rpc); +} + +int +evrpc_register_generic(struct evrpc_base *base, const char *name, + void (*callback)(struct evrpc_req_generic *, void *), void *cbarg, + void *(*req_new)(void *), void *req_new_arg, void (*req_free)(void *), + int (*req_unmarshal)(void *, struct evbuffer *), + void *(*rpl_new)(void *), void *rpl_new_arg, void (*rpl_free)(void *), + int (*rpl_complete)(void *), + void (*rpl_marshal)(struct evbuffer *, void *)) +{ + struct evrpc* rpc = + evrpc_register_object(name, req_new, req_new_arg, req_free, req_unmarshal, + rpl_new, rpl_new_arg, rpl_free, rpl_complete, rpl_marshal); + if (rpc == NULL) + return (-1); + evrpc_register_rpc(base, rpc, + (void (*)(struct evrpc_req_generic*, void *))callback, cbarg); + return (0); +} + +/** accessors for obscure and undocumented functionality */ +struct evrpc_pool * +evrpc_request_get_pool(struct evrpc_request_wrapper *ctx) +{ + return (ctx->pool); +} + +void +evrpc_request_set_pool(struct evrpc_request_wrapper *ctx, + struct evrpc_pool *pool) +{ + ctx->pool = pool; +} + +void +evrpc_request_set_cb(struct evrpc_request_wrapper *ctx, + void (*cb)(struct evrpc_status*, void *request, void *reply, void *arg), + void *cb_arg) +{ + ctx->cb = cb; + ctx->cb_arg = cb_arg; +} diff -Nru mysql-5.7-5.7.25/extra/libevent/evrpc-internal.h mysql-5.7-5.7.26/extra/libevent/evrpc-internal.h --- mysql-5.7-5.7.25/extra/libevent/evrpc-internal.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/evrpc-internal.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,205 @@ +/* + * Copyright (c) 2006-2007 Niels Provos + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef EVRPC_INTERNAL_H_INCLUDED_ +#define EVRPC_INTERNAL_H_INCLUDED_ + +#include "event2/http.h" +#include "http-internal.h" + +struct evrpc; +struct evrpc_request_wrapper; + +#define EVRPC_URI_PREFIX "/.rpc." + +struct evrpc_hook { + TAILQ_ENTRY(evrpc_hook) next; + + /* returns EVRPC_TERMINATE; if the rpc should be aborted. + * a hook is is allowed to rewrite the evbuffer + */ + int (*process)(void *, struct evhttp_request *, + struct evbuffer *, void *); + void *process_arg; +}; + +TAILQ_HEAD(evrpc_hook_list, evrpc_hook); + +/* + * this is shared between the base and the pool, so that we can reuse + * the hook adding functions; we alias both evrpc_pool and evrpc_base + * to this common structure. + */ + +struct evrpc_hook_ctx; +TAILQ_HEAD(evrpc_pause_list, evrpc_hook_ctx); + +struct evrpc_hooks_ { + /* hooks for processing outbound and inbound rpcs */ + struct evrpc_hook_list in_hooks; + struct evrpc_hook_list out_hooks; + + struct evrpc_pause_list pause_requests; +}; + +#define input_hooks common.in_hooks +#define output_hooks common.out_hooks +#define paused_requests common.pause_requests + +struct evrpc_base { + struct evrpc_hooks_ common; + + /* the HTTP server under which we register our RPC calls */ + struct evhttp* http_server; + + /* a list of all RPCs registered with us */ + TAILQ_HEAD(evrpc_list, evrpc) registered_rpcs; +}; + +struct evrpc_req_generic; +void evrpc_reqstate_free_(struct evrpc_req_generic* rpc_state); + +/* A pool for holding evhttp_connection objects */ +struct evrpc_pool { + struct evrpc_hooks_ common; + + struct event_base *base; + + struct evconq connections; + + int timeout; + + TAILQ_HEAD(evrpc_requestq, evrpc_request_wrapper) (requests); +}; + +struct evrpc_hook_ctx { + TAILQ_ENTRY(evrpc_hook_ctx) next; + + void *ctx; + void (*cb)(void *, enum EVRPC_HOOK_RESULT); +}; + +struct evrpc_meta { + TAILQ_ENTRY(evrpc_meta) next; + char *key; + + void *data; + size_t data_size; +}; + +TAILQ_HEAD(evrpc_meta_list, evrpc_meta); + +struct evrpc_hook_meta { + struct evrpc_meta_list meta_data; + struct evhttp_connection *evcon; +}; + +/* allows association of meta data with a request */ +static void evrpc_hook_associate_meta_(struct evrpc_hook_meta **pctx, + struct evhttp_connection *evcon); + +/* creates a new meta data store */ +static struct evrpc_hook_meta *evrpc_hook_meta_new_(void); + +/* frees the meta data associated with a request */ +static void evrpc_hook_context_free_(struct evrpc_hook_meta *ctx); + +/* the server side of an rpc */ + +/* We alias the RPC specific structs to this voided one */ +struct evrpc_req_generic { + /* + * allows association of meta data via hooks - needs to be + * synchronized with evrpc_request_wrapper + */ + struct evrpc_hook_meta *hook_meta; + + /* the unmarshaled request object */ + void *request; + + /* the empty reply object that needs to be filled in */ + void *reply; + + /* + * the static structure for this rpc; that can be used to + * automatically unmarshal and marshal the http buffers. + */ + struct evrpc *rpc; + + /* + * the http request structure on which we need to answer. + */ + struct evhttp_request* http_req; + + /* + * Temporary data store for marshaled data + */ + struct evbuffer* rpc_data; +}; + +/* the client side of an rpc request */ +struct evrpc_request_wrapper { + /* + * allows association of meta data via hooks - needs to be + * synchronized with evrpc_req_generic. + */ + struct evrpc_hook_meta *hook_meta; + + TAILQ_ENTRY(evrpc_request_wrapper) next; + + /* pool on which this rpc request is being made */ + struct evrpc_pool *pool; + + /* connection on which the request is being sent */ + struct evhttp_connection *evcon; + + /* the actual request */ + struct evhttp_request *req; + + /* event for implementing request timeouts */ + struct event ev_timeout; + + /* the name of the rpc */ + char *name; + + /* callback */ + void (*cb)(struct evrpc_status*, void *request, void *reply, void *arg); + void *cb_arg; + + void *request; + void *reply; + + /* unmarshals the buffer into the proper request structure */ + void (*request_marshal)(struct evbuffer *, void *); + + /* removes all stored state in the reply */ + void (*reply_clear)(void *); + + /* marshals the reply into a buffer */ + int (*reply_unmarshal)(void *, struct evbuffer*); +}; + +#endif /* EVRPC_INTERNAL_H_INCLUDED_ */ diff -Nru mysql-5.7-5.7.25/extra/libevent/evsignal-internal.h mysql-5.7-5.7.26/extra/libevent/evsignal-internal.h --- mysql-5.7-5.7.25/extra/libevent/evsignal-internal.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/evsignal-internal.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,65 @@ +/* + * Copyright 2000-2007 Niels Provos + * Copyright 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef EVSIGNAL_INTERNAL_H_INCLUDED_ +#define EVSIGNAL_INTERNAL_H_INCLUDED_ + +#ifndef evutil_socket_t +#include "event2/util.h" +#endif +#include + +typedef void (*ev_sighandler_t)(int); + +/* Data structure for the default signal-handling implementation in signal.c + */ +struct evsig_info { + /* Event watching ev_signal_pair[1] */ + struct event ev_signal; + /* Socketpair used to send notifications from the signal handler */ + evutil_socket_t ev_signal_pair[2]; + /* True iff we've added the ev_signal event yet. */ + int ev_signal_added; + /* Count of the number of signals we're currently watching. */ + int ev_n_signals_added; + + /* Array of previous signal handler objects before Libevent started + * messing with them. Used to restore old signal handlers. */ +#ifdef EVENT__HAVE_SIGACTION + struct sigaction **sh_old; +#else + ev_sighandler_t **sh_old; +#endif + /* Size of sh_old. */ + int sh_old_max; +}; +int evsig_init_(struct event_base *); +void evsig_dealloc_(struct event_base *); + +void evsig_set_base_(struct event_base *base); +void evsig_free_globals_(void); + +#endif /* EVSIGNAL_INTERNAL_H_INCLUDED_ */ diff -Nru mysql-5.7-5.7.25/extra/libevent/evthread.c mysql-5.7-5.7.26/extra/libevent/evthread.c --- mysql-5.7-5.7.25/extra/libevent/evthread.c 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/evthread.c 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,509 @@ +/* + * Copyright (c) 2008-2012 Niels Provos, Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ + +#include "event2/event-config.h" +#include "evconfig-private.h" + +#ifndef EVENT__DISABLE_THREAD_SUPPORT + +#include "event2/thread.h" + +#include +#include + +#include "log-internal.h" +#include "mm-internal.h" +#include "util-internal.h" +#include "evthread-internal.h" + +#ifdef EVTHREAD_EXPOSE_STRUCTS +#define GLOBAL +#else +#define GLOBAL static +#endif + +#ifndef EVENT__DISABLE_DEBUG_MODE +extern int event_debug_created_threadable_ctx_; +extern int event_debug_mode_on_; +#endif + +/* globals */ +GLOBAL int evthread_lock_debugging_enabled_ = 0; +GLOBAL struct evthread_lock_callbacks evthread_lock_fns_ = { + 0, 0, NULL, NULL, NULL, NULL +}; +GLOBAL unsigned long (*evthread_id_fn_)(void) = NULL; +GLOBAL struct evthread_condition_callbacks evthread_cond_fns_ = { + 0, NULL, NULL, NULL, NULL +}; + +/* Used for debugging */ +static struct evthread_lock_callbacks original_lock_fns_ = { + 0, 0, NULL, NULL, NULL, NULL +}; +static struct evthread_condition_callbacks original_cond_fns_ = { + 0, NULL, NULL, NULL, NULL +}; + +void +evthread_set_id_callback(unsigned long (*id_fn)(void)) +{ + evthread_id_fn_ = id_fn; +} + +struct evthread_lock_callbacks *evthread_get_lock_callbacks() +{ + return evthread_lock_debugging_enabled_ + ? &original_lock_fns_ : &evthread_lock_fns_; +} +struct evthread_condition_callbacks *evthread_get_condition_callbacks() +{ + return evthread_lock_debugging_enabled_ + ? &original_cond_fns_ : &evthread_cond_fns_; +} +void evthreadimpl_disable_lock_debugging_(void) +{ + evthread_lock_debugging_enabled_ = 0; +} + +int +evthread_set_lock_callbacks(const struct evthread_lock_callbacks *cbs) +{ + struct evthread_lock_callbacks *target = evthread_get_lock_callbacks(); + +#ifndef EVENT__DISABLE_DEBUG_MODE + if (event_debug_mode_on_) { + if (event_debug_created_threadable_ctx_) { + event_errx(1, "evthread initialization must be called BEFORE anything else!"); + } + } +#endif + + if (!cbs) { + if (target->alloc) + event_warnx("Trying to disable lock functions after " + "they have been set up will probaby not work."); + memset(target, 0, sizeof(evthread_lock_fns_)); + return 0; + } + if (target->alloc) { + /* Uh oh; we already had locking callbacks set up.*/ + if (target->lock_api_version == cbs->lock_api_version && + target->supported_locktypes == cbs->supported_locktypes && + target->alloc == cbs->alloc && + target->free == cbs->free && + target->lock == cbs->lock && + target->unlock == cbs->unlock) { + /* no change -- allow this. */ + return 0; + } + event_warnx("Can't change lock callbacks once they have been " + "initialized."); + return -1; + } + if (cbs->alloc && cbs->free && cbs->lock && cbs->unlock) { + memcpy(target, cbs, sizeof(evthread_lock_fns_)); + return event_global_setup_locks_(1); + } else { + return -1; + } +} + +int +evthread_set_condition_callbacks(const struct evthread_condition_callbacks *cbs) +{ + struct evthread_condition_callbacks *target = evthread_get_condition_callbacks(); + +#ifndef EVENT__DISABLE_DEBUG_MODE + if (event_debug_mode_on_) { + if (event_debug_created_threadable_ctx_) { + event_errx(1, "evthread initialization must be called BEFORE anything else!"); + } + } +#endif + + if (!cbs) { + if (target->alloc_condition) + event_warnx("Trying to disable condition functions " + "after they have been set up will probaby not " + "work."); + memset(target, 0, sizeof(evthread_cond_fns_)); + return 0; + } + if (target->alloc_condition) { + /* Uh oh; we already had condition callbacks set up.*/ + if (target->condition_api_version == cbs->condition_api_version && + target->alloc_condition == cbs->alloc_condition && + target->free_condition == cbs->free_condition && + target->signal_condition == cbs->signal_condition && + target->wait_condition == cbs->wait_condition) { + /* no change -- allow this. */ + return 0; + } + event_warnx("Can't change condition callbacks once they " + "have been initialized."); + return -1; + } + if (cbs->alloc_condition && cbs->free_condition && + cbs->signal_condition && cbs->wait_condition) { + memcpy(target, cbs, sizeof(evthread_cond_fns_)); + } + if (evthread_lock_debugging_enabled_) { + evthread_cond_fns_.alloc_condition = cbs->alloc_condition; + evthread_cond_fns_.free_condition = cbs->free_condition; + evthread_cond_fns_.signal_condition = cbs->signal_condition; + } + return 0; +} + +#define DEBUG_LOCK_SIG 0xdeb0b10c + +struct debug_lock { + unsigned signature; + unsigned locktype; + unsigned long held_by; + /* XXXX if we ever use read-write locks, we will need a separate + * lock to protect count. */ + int count; + void *lock; +}; + +static void * +debug_lock_alloc(unsigned locktype) +{ + struct debug_lock *result = mm_malloc(sizeof(struct debug_lock)); + if (!result) + return NULL; + if (original_lock_fns_.alloc) { + if (!(result->lock = original_lock_fns_.alloc( + locktype|EVTHREAD_LOCKTYPE_RECURSIVE))) { + mm_free(result); + return NULL; + } + } else { + result->lock = NULL; + } + result->signature = DEBUG_LOCK_SIG; + result->locktype = locktype; + result->count = 0; + result->held_by = 0; + return result; +} + +static void +debug_lock_free(void *lock_, unsigned locktype) +{ + struct debug_lock *lock = lock_; + EVUTIL_ASSERT(lock->count == 0); + EVUTIL_ASSERT(locktype == lock->locktype); + EVUTIL_ASSERT(DEBUG_LOCK_SIG == lock->signature); + if (original_lock_fns_.free) { + original_lock_fns_.free(lock->lock, + lock->locktype|EVTHREAD_LOCKTYPE_RECURSIVE); + } + lock->lock = NULL; + lock->count = -100; + lock->signature = 0x12300fda; + mm_free(lock); +} + +static void +evthread_debug_lock_mark_locked(unsigned mode, struct debug_lock *lock) +{ + EVUTIL_ASSERT(DEBUG_LOCK_SIG == lock->signature); + ++lock->count; + if (!(lock->locktype & EVTHREAD_LOCKTYPE_RECURSIVE)) + EVUTIL_ASSERT(lock->count == 1); + if (evthread_id_fn_) { + unsigned long me; + me = evthread_id_fn_(); + if (lock->count > 1) + EVUTIL_ASSERT(lock->held_by == me); + lock->held_by = me; + } +} + +static int +debug_lock_lock(unsigned mode, void *lock_) +{ + struct debug_lock *lock = lock_; + int res = 0; + if (lock->locktype & EVTHREAD_LOCKTYPE_READWRITE) + EVUTIL_ASSERT(mode & (EVTHREAD_READ|EVTHREAD_WRITE)); + else + EVUTIL_ASSERT((mode & (EVTHREAD_READ|EVTHREAD_WRITE)) == 0); + if (original_lock_fns_.lock) + res = original_lock_fns_.lock(mode, lock->lock); + if (!res) { + evthread_debug_lock_mark_locked(mode, lock); + } + return res; +} + +static void +evthread_debug_lock_mark_unlocked(unsigned mode, struct debug_lock *lock) +{ + EVUTIL_ASSERT(DEBUG_LOCK_SIG == lock->signature); + if (lock->locktype & EVTHREAD_LOCKTYPE_READWRITE) + EVUTIL_ASSERT(mode & (EVTHREAD_READ|EVTHREAD_WRITE)); + else + EVUTIL_ASSERT((mode & (EVTHREAD_READ|EVTHREAD_WRITE)) == 0); + if (evthread_id_fn_) { + unsigned long me; + me = evthread_id_fn_(); + EVUTIL_ASSERT(lock->held_by == me); + if (lock->count == 1) + lock->held_by = 0; + } + --lock->count; + EVUTIL_ASSERT(lock->count >= 0); +} + +static int +debug_lock_unlock(unsigned mode, void *lock_) +{ + struct debug_lock *lock = lock_; + int res = 0; + evthread_debug_lock_mark_unlocked(mode, lock); + if (original_lock_fns_.unlock) + res = original_lock_fns_.unlock(mode, lock->lock); + return res; +} + +static int +debug_cond_wait(void *cond_, void *lock_, const struct timeval *tv) +{ + int r; + struct debug_lock *lock = lock_; + EVUTIL_ASSERT(lock); + EVUTIL_ASSERT(DEBUG_LOCK_SIG == lock->signature); + EVLOCK_ASSERT_LOCKED(lock_); + evthread_debug_lock_mark_unlocked(0, lock); + r = original_cond_fns_.wait_condition(cond_, lock->lock, tv); + evthread_debug_lock_mark_locked(0, lock); + return r; +} + +/* misspelled version for backward compatibility */ +void +evthread_enable_lock_debuging(void) +{ + evthread_enable_lock_debugging(); +} + +void +evthread_enable_lock_debugging(void) +{ + struct evthread_lock_callbacks cbs = { + EVTHREAD_LOCK_API_VERSION, + EVTHREAD_LOCKTYPE_RECURSIVE, + debug_lock_alloc, + debug_lock_free, + debug_lock_lock, + debug_lock_unlock + }; + if (evthread_lock_debugging_enabled_) + return; + memcpy(&original_lock_fns_, &evthread_lock_fns_, + sizeof(struct evthread_lock_callbacks)); + memcpy(&evthread_lock_fns_, &cbs, + sizeof(struct evthread_lock_callbacks)); + + memcpy(&original_cond_fns_, &evthread_cond_fns_, + sizeof(struct evthread_condition_callbacks)); + evthread_cond_fns_.wait_condition = debug_cond_wait; + evthread_lock_debugging_enabled_ = 1; + + /* XXX return value should get checked. */ + event_global_setup_locks_(0); +} + +int +evthread_is_debug_lock_held_(void *lock_) +{ + struct debug_lock *lock = lock_; + if (! lock->count) + return 0; + if (evthread_id_fn_) { + unsigned long me = evthread_id_fn_(); + if (lock->held_by != me) + return 0; + } + return 1; +} + +void * +evthread_debug_get_real_lock_(void *lock_) +{ + struct debug_lock *lock = lock_; + return lock->lock; +} + +void * +evthread_setup_global_lock_(void *lock_, unsigned locktype, int enable_locks) +{ + /* there are four cases here: + 1) we're turning on debugging; locking is not on. + 2) we're turning on debugging; locking is on. + 3) we're turning on locking; debugging is not on. + 4) we're turning on locking; debugging is on. */ + + if (!enable_locks && original_lock_fns_.alloc == NULL) { + /* Case 1: allocate a debug lock. */ + EVUTIL_ASSERT(lock_ == NULL); + return debug_lock_alloc(locktype); + } else if (!enable_locks && original_lock_fns_.alloc != NULL) { + /* Case 2: wrap the lock in a debug lock. */ + struct debug_lock *lock; + EVUTIL_ASSERT(lock_ != NULL); + + if (!(locktype & EVTHREAD_LOCKTYPE_RECURSIVE)) { + /* We can't wrap it: We need a recursive lock */ + original_lock_fns_.free(lock_, locktype); + return debug_lock_alloc(locktype); + } + lock = mm_malloc(sizeof(struct debug_lock)); + if (!lock) { + original_lock_fns_.free(lock_, locktype); + return NULL; + } + lock->lock = lock_; + lock->locktype = locktype; + lock->count = 0; + lock->held_by = 0; + return lock; + } else if (enable_locks && ! evthread_lock_debugging_enabled_) { + /* Case 3: allocate a regular lock */ + EVUTIL_ASSERT(lock_ == NULL); + return evthread_lock_fns_.alloc(locktype); + } else { + /* Case 4: Fill in a debug lock with a real lock */ + struct debug_lock *lock = lock_ ? lock_ : debug_lock_alloc(locktype); + EVUTIL_ASSERT(enable_locks && + evthread_lock_debugging_enabled_); + EVUTIL_ASSERT(lock->locktype == locktype); + if (!lock->lock) { + lock->lock = original_lock_fns_.alloc( + locktype|EVTHREAD_LOCKTYPE_RECURSIVE); + if (!lock->lock) { + lock->count = -200; + mm_free(lock); + return NULL; + } + } + return lock; + } +} + + +#ifndef EVTHREAD_EXPOSE_STRUCTS +unsigned long +evthreadimpl_get_id_() +{ + return evthread_id_fn_ ? evthread_id_fn_() : 1; +} +void * +evthreadimpl_lock_alloc_(unsigned locktype) +{ +#ifndef EVENT__DISABLE_DEBUG_MODE + if (event_debug_mode_on_) { + event_debug_created_threadable_ctx_ = 1; + } +#endif + + return evthread_lock_fns_.alloc ? + evthread_lock_fns_.alloc(locktype) : NULL; +} +void +evthreadimpl_lock_free_(void *lock, unsigned locktype) +{ + if (evthread_lock_fns_.free) + evthread_lock_fns_.free(lock, locktype); +} +int +evthreadimpl_lock_lock_(unsigned mode, void *lock) +{ + if (evthread_lock_fns_.lock) + return evthread_lock_fns_.lock(mode, lock); + else + return 0; +} +int +evthreadimpl_lock_unlock_(unsigned mode, void *lock) +{ + if (evthread_lock_fns_.unlock) + return evthread_lock_fns_.unlock(mode, lock); + else + return 0; +} +void * +evthreadimpl_cond_alloc_(unsigned condtype) +{ +#ifndef EVENT__DISABLE_DEBUG_MODE + if (event_debug_mode_on_) { + event_debug_created_threadable_ctx_ = 1; + } +#endif + + return evthread_cond_fns_.alloc_condition ? + evthread_cond_fns_.alloc_condition(condtype) : NULL; +} +void +evthreadimpl_cond_free_(void *cond) +{ + if (evthread_cond_fns_.free_condition) + evthread_cond_fns_.free_condition(cond); +} +int +evthreadimpl_cond_signal_(void *cond, int broadcast) +{ + if (evthread_cond_fns_.signal_condition) + return evthread_cond_fns_.signal_condition(cond, broadcast); + else + return 0; +} +int +evthreadimpl_cond_wait_(void *cond, void *lock, const struct timeval *tv) +{ + if (evthread_cond_fns_.wait_condition) + return evthread_cond_fns_.wait_condition(cond, lock, tv); + else + return 0; +} +int +evthreadimpl_is_lock_debugging_enabled_(void) +{ + return evthread_lock_debugging_enabled_; +} + +int +evthreadimpl_locking_enabled_(void) +{ + return evthread_lock_fns_.lock != NULL; +} +#endif + +#endif diff -Nru mysql-5.7-5.7.25/extra/libevent/evthread-internal.h mysql-5.7-5.7.26/extra/libevent/evthread-internal.h --- mysql-5.7-5.7.25/extra/libevent/evthread-internal.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/evthread-internal.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,392 @@ +/* + * Copyright (c) 2008-2012 Niels Provos, Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef EVTHREAD_INTERNAL_H_INCLUDED_ +#define EVTHREAD_INTERNAL_H_INCLUDED_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include "event2/event-config.h" +#include "evconfig-private.h" + +#include "event2/thread.h" +#include "util-internal.h" + +struct event_base; + +#ifndef _WIN32 +/* On Windows, the way we currently make DLLs, it's not allowed for us to + * have shared global structures. Thus, we only do the direct-call-to-function + * code path if we know that the local shared library system supports it. + */ +#define EVTHREAD_EXPOSE_STRUCTS +#endif + +#if ! defined(EVENT__DISABLE_THREAD_SUPPORT) && defined(EVTHREAD_EXPOSE_STRUCTS) +/* Global function pointers to lock-related functions. NULL if locking isn't + enabled. */ +extern struct evthread_lock_callbacks evthread_lock_fns_; +extern struct evthread_condition_callbacks evthread_cond_fns_; +extern unsigned long (*evthread_id_fn_)(void); +extern int evthread_lock_debugging_enabled_; + +/** Return the ID of the current thread, or 1 if threading isn't enabled. */ +#define EVTHREAD_GET_ID() \ + (evthread_id_fn_ ? evthread_id_fn_() : 1) + +/** Return true iff we're in the thread that is currently (or most recently) + * running a given event_base's loop. Requires lock. */ +#define EVBASE_IN_THREAD(base) \ + (evthread_id_fn_ == NULL || \ + (base)->th_owner_id == evthread_id_fn_()) + +/** Return true iff we need to notify the base's main thread about changes to + * its state, because it's currently running the main loop in another + * thread. Requires lock. */ +#define EVBASE_NEED_NOTIFY(base) \ + (evthread_id_fn_ != NULL && \ + (base)->running_loop && \ + (base)->th_owner_id != evthread_id_fn_()) + +/** Allocate a new lock, and store it in lockvar, a void*. Sets lockvar to + NULL if locking is not enabled. */ +#define EVTHREAD_ALLOC_LOCK(lockvar, locktype) \ + ((lockvar) = evthread_lock_fns_.alloc ? \ + evthread_lock_fns_.alloc(locktype) : NULL) + +/** Free a given lock, if it is present and locking is enabled. */ +#define EVTHREAD_FREE_LOCK(lockvar, locktype) \ + do { \ + void *lock_tmp_ = (lockvar); \ + if (lock_tmp_ && evthread_lock_fns_.free) \ + evthread_lock_fns_.free(lock_tmp_, (locktype)); \ + } while (0) + +/** Acquire a lock. */ +#define EVLOCK_LOCK(lockvar,mode) \ + do { \ + if (lockvar) \ + evthread_lock_fns_.lock(mode, lockvar); \ + } while (0) + +/** Release a lock */ +#define EVLOCK_UNLOCK(lockvar,mode) \ + do { \ + if (lockvar) \ + evthread_lock_fns_.unlock(mode, lockvar); \ + } while (0) + +/** Helper: put lockvar1 and lockvar2 into pointerwise ascending order. */ +#define EVLOCK_SORTLOCKS_(lockvar1, lockvar2) \ + do { \ + if (lockvar1 && lockvar2 && lockvar1 > lockvar2) { \ + void *tmp = lockvar1; \ + lockvar1 = lockvar2; \ + lockvar2 = tmp; \ + } \ + } while (0) + +/** Lock an event_base, if it is set up for locking. Acquires the lock + in the base structure whose field is named 'lockvar'. */ +#define EVBASE_ACQUIRE_LOCK(base, lockvar) do { \ + EVLOCK_LOCK((base)->lockvar, 0); \ + } while (0) + +/** Unlock an event_base, if it is set up for locking. */ +#define EVBASE_RELEASE_LOCK(base, lockvar) do { \ + EVLOCK_UNLOCK((base)->lockvar, 0); \ + } while (0) + +/** If lock debugging is enabled, and lock is non-null, assert that 'lock' is + * locked and held by us. */ +#define EVLOCK_ASSERT_LOCKED(lock) \ + do { \ + if ((lock) && evthread_lock_debugging_enabled_) { \ + EVUTIL_ASSERT(evthread_is_debug_lock_held_(lock)); \ + } \ + } while (0) + +/** Try to grab the lock for 'lockvar' without blocking, and return 1 if we + * manage to get it. */ +static inline int EVLOCK_TRY_LOCK_(void *lock); +static inline int +EVLOCK_TRY_LOCK_(void *lock) +{ + if (lock && evthread_lock_fns_.lock) { + int r = evthread_lock_fns_.lock(EVTHREAD_TRY, lock); + return !r; + } else { + /* Locking is disabled either globally or for this thing; + * of course we count as having the lock. */ + return 1; + } +} + +/** Allocate a new condition variable and store it in the void *, condvar */ +#define EVTHREAD_ALLOC_COND(condvar) \ + do { \ + (condvar) = evthread_cond_fns_.alloc_condition ? \ + evthread_cond_fns_.alloc_condition(0) : NULL; \ + } while (0) +/** Deallocate and free a condition variable in condvar */ +#define EVTHREAD_FREE_COND(cond) \ + do { \ + if (cond) \ + evthread_cond_fns_.free_condition((cond)); \ + } while (0) +/** Signal one thread waiting on cond */ +#define EVTHREAD_COND_SIGNAL(cond) \ + ( (cond) ? evthread_cond_fns_.signal_condition((cond), 0) : 0 ) +/** Signal all threads waiting on cond */ +#define EVTHREAD_COND_BROADCAST(cond) \ + ( (cond) ? evthread_cond_fns_.signal_condition((cond), 1) : 0 ) +/** Wait until the condition 'cond' is signalled. Must be called while + * holding 'lock'. The lock will be released until the condition is + * signalled, at which point it will be acquired again. Returns 0 for + * success, -1 for failure. */ +#define EVTHREAD_COND_WAIT(cond, lock) \ + ( (cond) ? evthread_cond_fns_.wait_condition((cond), (lock), NULL) : 0 ) +/** As EVTHREAD_COND_WAIT, but gives up after 'tv' has elapsed. Returns 1 + * on timeout. */ +#define EVTHREAD_COND_WAIT_TIMED(cond, lock, tv) \ + ( (cond) ? evthread_cond_fns_.wait_condition((cond), (lock), (tv)) : 0 ) + +/** True iff locking functions have been configured. */ +#define EVTHREAD_LOCKING_ENABLED() \ + (evthread_lock_fns_.lock != NULL) + +#elif ! defined(EVENT__DISABLE_THREAD_SUPPORT) + +unsigned long evthreadimpl_get_id_(void); +int evthreadimpl_is_lock_debugging_enabled_(void); +void *evthreadimpl_lock_alloc_(unsigned locktype); +void evthreadimpl_lock_free_(void *lock, unsigned locktype); +int evthreadimpl_lock_lock_(unsigned mode, void *lock); +int evthreadimpl_lock_unlock_(unsigned mode, void *lock); +void *evthreadimpl_cond_alloc_(unsigned condtype); +void evthreadimpl_cond_free_(void *cond); +int evthreadimpl_cond_signal_(void *cond, int broadcast); +int evthreadimpl_cond_wait_(void *cond, void *lock, const struct timeval *tv); +int evthreadimpl_locking_enabled_(void); + +#define EVTHREAD_GET_ID() evthreadimpl_get_id_() +#define EVBASE_IN_THREAD(base) \ + ((base)->th_owner_id == evthreadimpl_get_id_()) +#define EVBASE_NEED_NOTIFY(base) \ + ((base)->running_loop && \ + ((base)->th_owner_id != evthreadimpl_get_id_())) + +#define EVTHREAD_ALLOC_LOCK(lockvar, locktype) \ + ((lockvar) = evthreadimpl_lock_alloc_(locktype)) + +#define EVTHREAD_FREE_LOCK(lockvar, locktype) \ + do { \ + void *lock_tmp_ = (lockvar); \ + if (lock_tmp_) \ + evthreadimpl_lock_free_(lock_tmp_, (locktype)); \ + } while (0) + +/** Acquire a lock. */ +#define EVLOCK_LOCK(lockvar,mode) \ + do { \ + if (lockvar) \ + evthreadimpl_lock_lock_(mode, lockvar); \ + } while (0) + +/** Release a lock */ +#define EVLOCK_UNLOCK(lockvar,mode) \ + do { \ + if (lockvar) \ + evthreadimpl_lock_unlock_(mode, lockvar); \ + } while (0) + +/** Lock an event_base, if it is set up for locking. Acquires the lock + in the base structure whose field is named 'lockvar'. */ +#define EVBASE_ACQUIRE_LOCK(base, lockvar) do { \ + EVLOCK_LOCK((base)->lockvar, 0); \ + } while (0) + +/** Unlock an event_base, if it is set up for locking. */ +#define EVBASE_RELEASE_LOCK(base, lockvar) do { \ + EVLOCK_UNLOCK((base)->lockvar, 0); \ + } while (0) + +/** If lock debugging is enabled, and lock is non-null, assert that 'lock' is + * locked and held by us. */ +#define EVLOCK_ASSERT_LOCKED(lock) \ + do { \ + if ((lock) && evthreadimpl_is_lock_debugging_enabled_()) { \ + EVUTIL_ASSERT(evthread_is_debug_lock_held_(lock)); \ + } \ + } while (0) + +/** Try to grab the lock for 'lockvar' without blocking, and return 1 if we + * manage to get it. */ +static inline int EVLOCK_TRY_LOCK_(void *lock); +static inline int +EVLOCK_TRY_LOCK_(void *lock) +{ + if (lock) { + int r = evthreadimpl_lock_lock_(EVTHREAD_TRY, lock); + return !r; + } else { + /* Locking is disabled either globally or for this thing; + * of course we count as having the lock. */ + return 1; + } +} + +/** Allocate a new condition variable and store it in the void *, condvar */ +#define EVTHREAD_ALLOC_COND(condvar) \ + do { \ + (condvar) = evthreadimpl_cond_alloc_(0); \ + } while (0) +/** Deallocate and free a condition variable in condvar */ +#define EVTHREAD_FREE_COND(cond) \ + do { \ + if (cond) \ + evthreadimpl_cond_free_((cond)); \ + } while (0) +/** Signal one thread waiting on cond */ +#define EVTHREAD_COND_SIGNAL(cond) \ + ( (cond) ? evthreadimpl_cond_signal_((cond), 0) : 0 ) +/** Signal all threads waiting on cond */ +#define EVTHREAD_COND_BROADCAST(cond) \ + ( (cond) ? evthreadimpl_cond_signal_((cond), 1) : 0 ) +/** Wait until the condition 'cond' is signalled. Must be called while + * holding 'lock'. The lock will be released until the condition is + * signalled, at which point it will be acquired again. Returns 0 for + * success, -1 for failure. */ +#define EVTHREAD_COND_WAIT(cond, lock) \ + ( (cond) ? evthreadimpl_cond_wait_((cond), (lock), NULL) : 0 ) +/** As EVTHREAD_COND_WAIT, but gives up after 'tv' has elapsed. Returns 1 + * on timeout. */ +#define EVTHREAD_COND_WAIT_TIMED(cond, lock, tv) \ + ( (cond) ? evthreadimpl_cond_wait_((cond), (lock), (tv)) : 0 ) + +#define EVTHREAD_LOCKING_ENABLED() \ + (evthreadimpl_locking_enabled_()) + +#else /* EVENT__DISABLE_THREAD_SUPPORT */ + +#define EVTHREAD_GET_ID() 1 +#define EVTHREAD_ALLOC_LOCK(lockvar, locktype) EVUTIL_NIL_STMT_ +#define EVTHREAD_FREE_LOCK(lockvar, locktype) EVUTIL_NIL_STMT_ + +#define EVLOCK_LOCK(lockvar, mode) EVUTIL_NIL_STMT_ +#define EVLOCK_UNLOCK(lockvar, mode) EVUTIL_NIL_STMT_ +#define EVLOCK_LOCK2(lock1,lock2,mode1,mode2) EVUTIL_NIL_STMT_ +#define EVLOCK_UNLOCK2(lock1,lock2,mode1,mode2) EVUTIL_NIL_STMT_ + +#define EVBASE_IN_THREAD(base) 1 +#define EVBASE_NEED_NOTIFY(base) 0 +#define EVBASE_ACQUIRE_LOCK(base, lock) EVUTIL_NIL_STMT_ +#define EVBASE_RELEASE_LOCK(base, lock) EVUTIL_NIL_STMT_ +#define EVLOCK_ASSERT_LOCKED(lock) EVUTIL_NIL_STMT_ + +#define EVLOCK_TRY_LOCK_(lock) 1 + +#define EVTHREAD_ALLOC_COND(condvar) EVUTIL_NIL_STMT_ +#define EVTHREAD_FREE_COND(cond) EVUTIL_NIL_STMT_ +#define EVTHREAD_COND_SIGNAL(cond) EVUTIL_NIL_STMT_ +#define EVTHREAD_COND_BROADCAST(cond) EVUTIL_NIL_STMT_ +#define EVTHREAD_COND_WAIT(cond, lock) EVUTIL_NIL_STMT_ +#define EVTHREAD_COND_WAIT_TIMED(cond, lock, howlong) EVUTIL_NIL_STMT_ + +#define EVTHREAD_LOCKING_ENABLED() 0 + +#endif + +/* This code is shared between both lock impls */ +#if ! defined(EVENT__DISABLE_THREAD_SUPPORT) +/** Helper: put lockvar1 and lockvar2 into pointerwise ascending order. */ +#define EVLOCK_SORTLOCKS_(lockvar1, lockvar2) \ + do { \ + if (lockvar1 && lockvar2 && lockvar1 > lockvar2) { \ + void *tmp = lockvar1; \ + lockvar1 = lockvar2; \ + lockvar2 = tmp; \ + } \ + } while (0) + +/** Acquire both lock1 and lock2. Always allocates locks in the same order, + * so that two threads locking two locks with LOCK2 will not deadlock. */ +#define EVLOCK_LOCK2(lock1,lock2,mode1,mode2) \ + do { \ + void *lock1_tmplock_ = (lock1); \ + void *lock2_tmplock_ = (lock2); \ + EVLOCK_SORTLOCKS_(lock1_tmplock_,lock2_tmplock_); \ + EVLOCK_LOCK(lock1_tmplock_,mode1); \ + if (lock2_tmplock_ != lock1_tmplock_) \ + EVLOCK_LOCK(lock2_tmplock_,mode2); \ + } while (0) +/** Release both lock1 and lock2. */ +#define EVLOCK_UNLOCK2(lock1,lock2,mode1,mode2) \ + do { \ + void *lock1_tmplock_ = (lock1); \ + void *lock2_tmplock_ = (lock2); \ + EVLOCK_SORTLOCKS_(lock1_tmplock_,lock2_tmplock_); \ + if (lock2_tmplock_ != lock1_tmplock_) \ + EVLOCK_UNLOCK(lock2_tmplock_,mode2); \ + EVLOCK_UNLOCK(lock1_tmplock_,mode1); \ + } while (0) + +int evthread_is_debug_lock_held_(void *lock); +void *evthread_debug_get_real_lock_(void *lock); + +void *evthread_setup_global_lock_(void *lock_, unsigned locktype, + int enable_locks); + +#define EVTHREAD_SETUP_GLOBAL_LOCK(lockvar, locktype) \ + do { \ + lockvar = evthread_setup_global_lock_(lockvar, \ + (locktype), enable_locks); \ + if (!lockvar) { \ + event_warn("Couldn't allocate %s", #lockvar); \ + return -1; \ + } \ + } while (0); + +int event_global_setup_locks_(const int enable_locks); +int evsig_global_setup_locks_(const int enable_locks); +int evutil_global_setup_locks_(const int enable_locks); +int evutil_secure_rng_global_setup_locks_(const int enable_locks); + +/** Return current evthread_lock_callbacks */ +struct evthread_lock_callbacks *evthread_get_lock_callbacks(void); +/** Return current evthread_condition_callbacks */ +struct evthread_condition_callbacks *evthread_get_condition_callbacks(void); +/** Disable locking for internal usage (like global shutdown) */ +void evthreadimpl_disable_lock_debugging_(void); + +#endif + +#ifdef __cplusplus +} +#endif + +#endif /* EVTHREAD_INTERNAL_H_INCLUDED_ */ diff -Nru mysql-5.7-5.7.25/extra/libevent/evthread_pthread.c mysql-5.7-5.7.26/extra/libevent/evthread_pthread.c --- mysql-5.7-5.7.25/extra/libevent/evthread_pthread.c 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/evthread_pthread.c 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,191 @@ +/* + * Copyright 2009-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#include "event2/event-config.h" +#include "evconfig-private.h" + +/* With glibc we need to define _GNU_SOURCE to get PTHREAD_MUTEX_RECURSIVE. + * This comes from evconfig-private.h + */ +#include + +struct event_base; +#include "event2/thread.h" + +#include +#include +#include "mm-internal.h" +#include "evthread-internal.h" + +static pthread_mutexattr_t attr_recursive; + +static void * +evthread_posix_lock_alloc(unsigned locktype) +{ + pthread_mutexattr_t *attr = NULL; + pthread_mutex_t *lock = mm_malloc(sizeof(pthread_mutex_t)); + if (!lock) + return NULL; + if (locktype & EVTHREAD_LOCKTYPE_RECURSIVE) + attr = &attr_recursive; + if (pthread_mutex_init(lock, attr)) { + mm_free(lock); + return NULL; + } + return lock; +} + +static void +evthread_posix_lock_free(void *lock_, unsigned locktype) +{ + pthread_mutex_t *lock = lock_; + pthread_mutex_destroy(lock); + mm_free(lock); +} + +static int +evthread_posix_lock(unsigned mode, void *lock_) +{ + pthread_mutex_t *lock = lock_; + if (mode & EVTHREAD_TRY) + return pthread_mutex_trylock(lock); + else + return pthread_mutex_lock(lock); +} + +static int +evthread_posix_unlock(unsigned mode, void *lock_) +{ + pthread_mutex_t *lock = lock_; + return pthread_mutex_unlock(lock); +} + +static unsigned long +evthread_posix_get_id(void) +{ + union { + pthread_t thr; +#if EVENT__SIZEOF_PTHREAD_T > EVENT__SIZEOF_LONG + ev_uint64_t id; +#else + unsigned long id; +#endif + } r; +#if EVENT__SIZEOF_PTHREAD_T < EVENT__SIZEOF_LONG + memset(&r, 0, sizeof(r)); +#endif + r.thr = pthread_self(); + return (unsigned long)r.id; +} + +static void * +evthread_posix_cond_alloc(unsigned condflags) +{ + pthread_cond_t *cond = mm_malloc(sizeof(pthread_cond_t)); + if (!cond) + return NULL; + if (pthread_cond_init(cond, NULL)) { + mm_free(cond); + return NULL; + } + return cond; +} + +static void +evthread_posix_cond_free(void *cond_) +{ + pthread_cond_t *cond = cond_; + pthread_cond_destroy(cond); + mm_free(cond); +} + +static int +evthread_posix_cond_signal(void *cond_, int broadcast) +{ + pthread_cond_t *cond = cond_; + int r; + if (broadcast) + r = pthread_cond_broadcast(cond); + else + r = pthread_cond_signal(cond); + return r ? -1 : 0; +} + +static int +evthread_posix_cond_wait(void *cond_, void *lock_, const struct timeval *tv) +{ + int r; + pthread_cond_t *cond = cond_; + pthread_mutex_t *lock = lock_; + + if (tv) { + struct timeval now, abstime; + struct timespec ts; + evutil_gettimeofday(&now, NULL); + evutil_timeradd(&now, tv, &abstime); + ts.tv_sec = abstime.tv_sec; + ts.tv_nsec = abstime.tv_usec*1000; + r = pthread_cond_timedwait(cond, lock, &ts); + if (r == ETIMEDOUT) + return 1; + else if (r) + return -1; + else + return 0; + } else { + r = pthread_cond_wait(cond, lock); + return r ? -1 : 0; + } +} + +int +evthread_use_pthreads(void) +{ + struct evthread_lock_callbacks cbs = { + EVTHREAD_LOCK_API_VERSION, + EVTHREAD_LOCKTYPE_RECURSIVE, + evthread_posix_lock_alloc, + evthread_posix_lock_free, + evthread_posix_lock, + evthread_posix_unlock + }; + struct evthread_condition_callbacks cond_cbs = { + EVTHREAD_CONDITION_API_VERSION, + evthread_posix_cond_alloc, + evthread_posix_cond_free, + evthread_posix_cond_signal, + evthread_posix_cond_wait + }; + /* Set ourselves up to get recursive locks. */ + if (pthread_mutexattr_init(&attr_recursive)) + return -1; + if (pthread_mutexattr_settype(&attr_recursive, PTHREAD_MUTEX_RECURSIVE)) + return -1; + + evthread_set_lock_callbacks(&cbs); + evthread_set_condition_callbacks(&cond_cbs); + evthread_set_id_callback(evthread_posix_get_id); + return 0; +} diff -Nru mysql-5.7-5.7.25/extra/libevent/evthread_win32.c mysql-5.7-5.7.26/extra/libevent/evthread_win32.c --- mysql-5.7-5.7.25/extra/libevent/evthread_win32.c 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/evthread_win32.c 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,341 @@ +/* + * Copyright 2009-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#include "event2/event-config.h" +#include "evconfig-private.h" + +#ifdef _WIN32 +#ifndef _WIN32_WINNT +/* Minimum required for InitializeCriticalSectionAndSpinCount */ +#define _WIN32_WINNT 0x0403 +#endif +#include +#define WIN32_LEAN_AND_MEAN +#include +#undef WIN32_LEAN_AND_MEAN +#include +#endif + +struct event_base; +#include "event2/thread.h" + +#include "mm-internal.h" +#include "evthread-internal.h" +#include "time-internal.h" + +#define SPIN_COUNT 2000 + +static void * +evthread_win32_lock_create(unsigned locktype) +{ + CRITICAL_SECTION *lock = mm_malloc(sizeof(CRITICAL_SECTION)); + if (!lock) + return NULL; + if (InitializeCriticalSectionAndSpinCount(lock, SPIN_COUNT) == 0) { + mm_free(lock); + return NULL; + } + return lock; +} + +static void +evthread_win32_lock_free(void *lock_, unsigned locktype) +{ + CRITICAL_SECTION *lock = lock_; + DeleteCriticalSection(lock); + mm_free(lock); +} + +static int +evthread_win32_lock(unsigned mode, void *lock_) +{ + CRITICAL_SECTION *lock = lock_; + if ((mode & EVTHREAD_TRY)) { + return ! TryEnterCriticalSection(lock); + } else { + EnterCriticalSection(lock); + return 0; + } +} + +static int +evthread_win32_unlock(unsigned mode, void *lock_) +{ + CRITICAL_SECTION *lock = lock_; + LeaveCriticalSection(lock); + return 0; +} + +static unsigned long +evthread_win32_get_id(void) +{ + return (unsigned long) GetCurrentThreadId(); +} + +#ifdef WIN32_HAVE_CONDITION_VARIABLES +static void WINAPI (*InitializeConditionVariable_fn)(PCONDITION_VARIABLE) + = NULL; +static BOOL WINAPI (*SleepConditionVariableCS_fn)( + PCONDITION_VARIABLE, PCRITICAL_SECTION, DWORD) = NULL; +static void WINAPI (*WakeAllConditionVariable_fn)(PCONDITION_VARIABLE) = NULL; +static void WINAPI (*WakeConditionVariable_fn)(PCONDITION_VARIABLE) = NULL; + +static int +evthread_win32_condvar_init(void) +{ + HANDLE lib; + + lib = GetModuleHandle(TEXT("kernel32.dll")); + if (lib == NULL) + return 0; + +#define LOAD(name) \ + name##_fn = GetProcAddress(lib, #name) + LOAD(InitializeConditionVariable); + LOAD(SleepConditionVariableCS); + LOAD(WakeAllConditionVariable); + LOAD(WakeConditionVariable); + + return InitializeConditionVariable_fn && SleepConditionVariableCS_fn && + WakeAllConditionVariable_fn && WakeConditionVariable_fn; +} + +/* XXXX Even if we can build this, we don't necessarily want to: the functions + * in question didn't exist before Vista, so we'd better LoadProc them. */ +static void * +evthread_win32_condvar_alloc(unsigned condflags) +{ + CONDITION_VARIABLE *cond = mm_malloc(sizeof(CONDITION_VARIABLE)); + if (!cond) + return NULL; + InitializeConditionVariable_fn(cond); + return cond; +} + +static void +evthread_win32_condvar_free(void *cond_) +{ + CONDITION_VARIABLE *cond = cond_; + /* There doesn't _seem_ to be a cleaup fn here... */ + mm_free(cond); +} + +static int +evthread_win32_condvar_signal(void *cond, int broadcast) +{ + CONDITION_VARIABLE *cond = cond_; + if (broadcast) + WakeAllConditionVariable_fn(cond); + else + WakeConditionVariable_fn(cond); + return 0; +} + +static int +evthread_win32_condvar_wait(void *cond_, void *lock_, const struct timeval *tv) +{ + CONDITION_VARIABLE *cond = cond_; + CRITICAL_SECTION *lock = lock_; + DWORD ms, err; + BOOL result; + + if (tv) + ms = evutil_tv_to_msec_(tv); + else + ms = INFINITE; + result = SleepConditionVariableCS_fn(cond, lock, ms); + if (result) { + if (GetLastError() == WAIT_TIMEOUT) + return 1; + else + return -1; + } else { + return 0; + } +} +#endif + +struct evthread_win32_cond { + HANDLE event; + + CRITICAL_SECTION lock; + int n_waiting; + int n_to_wake; + int generation; +}; + +static void * +evthread_win32_cond_alloc(unsigned flags) +{ + struct evthread_win32_cond *cond; + if (!(cond = mm_malloc(sizeof(struct evthread_win32_cond)))) + return NULL; + if (InitializeCriticalSectionAndSpinCount(&cond->lock, SPIN_COUNT)==0) { + mm_free(cond); + return NULL; + } + if ((cond->event = CreateEvent(NULL,TRUE,FALSE,NULL)) == NULL) { + DeleteCriticalSection(&cond->lock); + mm_free(cond); + return NULL; + } + cond->n_waiting = cond->n_to_wake = cond->generation = 0; + return cond; +} + +static void +evthread_win32_cond_free(void *cond_) +{ + struct evthread_win32_cond *cond = cond_; + DeleteCriticalSection(&cond->lock); + CloseHandle(cond->event); + mm_free(cond); +} + +static int +evthread_win32_cond_signal(void *cond_, int broadcast) +{ + struct evthread_win32_cond *cond = cond_; + EnterCriticalSection(&cond->lock); + if (broadcast) + cond->n_to_wake = cond->n_waiting; + else + ++cond->n_to_wake; + cond->generation++; + SetEvent(cond->event); + LeaveCriticalSection(&cond->lock); + return 0; +} + +static int +evthread_win32_cond_wait(void *cond_, void *lock_, const struct timeval *tv) +{ + struct evthread_win32_cond *cond = cond_; + CRITICAL_SECTION *lock = lock_; + int generation_at_start; + int waiting = 1; + int result = -1; + DWORD ms = INFINITE, ms_orig = INFINITE, startTime, endTime; + if (tv) + ms_orig = ms = evutil_tv_to_msec_(tv); + + EnterCriticalSection(&cond->lock); + ++cond->n_waiting; + generation_at_start = cond->generation; + LeaveCriticalSection(&cond->lock); + + LeaveCriticalSection(lock); + + startTime = GetTickCount(); + do { + DWORD res; + res = WaitForSingleObject(cond->event, ms); + EnterCriticalSection(&cond->lock); + if (cond->n_to_wake && + cond->generation != generation_at_start) { + --cond->n_to_wake; + --cond->n_waiting; + result = 0; + waiting = 0; + goto out; + } else if (res != WAIT_OBJECT_0) { + result = (res==WAIT_TIMEOUT) ? 1 : -1; + --cond->n_waiting; + waiting = 0; + goto out; + } else if (ms != INFINITE) { + endTime = GetTickCount(); + if (startTime + ms_orig <= endTime) { + result = 1; /* Timeout */ + --cond->n_waiting; + waiting = 0; + goto out; + } else { + ms = startTime + ms_orig - endTime; + } + } + /* If we make it here, we are still waiting. */ + if (cond->n_to_wake == 0) { + /* There is nobody else who should wake up; reset + * the event. */ + ResetEvent(cond->event); + } + out: + LeaveCriticalSection(&cond->lock); + } while (waiting); + + EnterCriticalSection(lock); + + EnterCriticalSection(&cond->lock); + if (!cond->n_waiting) + ResetEvent(cond->event); + LeaveCriticalSection(&cond->lock); + + return result; +} + +int +evthread_use_windows_threads(void) +{ + struct evthread_lock_callbacks cbs = { + EVTHREAD_LOCK_API_VERSION, + EVTHREAD_LOCKTYPE_RECURSIVE, + evthread_win32_lock_create, + evthread_win32_lock_free, + evthread_win32_lock, + evthread_win32_unlock + }; + + + struct evthread_condition_callbacks cond_cbs = { + EVTHREAD_CONDITION_API_VERSION, + evthread_win32_cond_alloc, + evthread_win32_cond_free, + evthread_win32_cond_signal, + evthread_win32_cond_wait + }; +#ifdef WIN32_HAVE_CONDITION_VARIABLES + struct evthread_condition_callbacks condvar_cbs = { + EVTHREAD_CONDITION_API_VERSION, + evthread_win32_condvar_alloc, + evthread_win32_condvar_free, + evthread_win32_condvar_signal, + evthread_win32_condvar_wait + }; +#endif + + evthread_set_lock_callbacks(&cbs); + evthread_set_id_callback(evthread_win32_get_id); +#ifdef WIN32_HAVE_CONDITION_VARIABLES + if (evthread_win32_condvar_init()) { + evthread_set_condition_callbacks(&condvar_cbs); + return 0; + } +#endif + evthread_set_condition_callbacks(&cond_cbs); + + return 0; +} + diff -Nru mysql-5.7-5.7.25/extra/libevent/evutil.c mysql-5.7-5.7.26/extra/libevent/evutil.c --- mysql-5.7-5.7.25/extra/libevent/evutil.c 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/evutil.c 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,2693 @@ +/* + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ + +#include "event2/event-config.h" +#include "evconfig-private.h" + +#ifdef _WIN32 +#include +#include +#define WIN32_LEAN_AND_MEAN +#include +#undef WIN32_LEAN_AND_MEAN +#include +#include +#include +#undef _WIN32_WINNT +/* For structs needed by GetAdaptersAddresses */ +#define _WIN32_WINNT 0x0501 +#include +#endif + +#include +#ifdef EVENT__HAVE_SYS_SOCKET_H +#include +#endif +#ifdef EVENT__HAVE_UNISTD_H +#include +#endif +#ifdef EVENT__HAVE_FCNTL_H +#include +#endif +#ifdef EVENT__HAVE_STDLIB_H +#include +#endif +#include +#include +#include +#include +#ifdef EVENT__HAVE_NETINET_IN_H +#include +#endif +#ifdef EVENT__HAVE_NETINET_IN6_H +#include +#endif +#ifdef EVENT__HAVE_NETINET_TCP_H +#include +#endif +#ifdef EVENT__HAVE_ARPA_INET_H +#include +#endif +#include +#include +#ifdef EVENT__HAVE_IFADDRS_H +#include +#endif + +#include "event2/util.h" +#include "util-internal.h" +#include "log-internal.h" +#include "mm-internal.h" +#include "evthread-internal.h" + +#include "strlcpy-internal.h" +#include "ipv6-internal.h" + +#ifdef _WIN32 +#define HT_NO_CACHE_HASH_VALUES +#include "ht-internal.h" +#define open _open +#define read _read +#define close _close +#ifndef fstat +#define fstat _fstati64 +#endif +#ifndef stat +#define stat _stati64 +#endif +#define mode_t int +#endif + +int +evutil_open_closeonexec_(const char *pathname, int flags, unsigned mode) +{ + int fd; + +#ifdef O_CLOEXEC + fd = open(pathname, flags|O_CLOEXEC, (mode_t)mode); + if (fd >= 0 || errno == EINVAL) + return fd; + /* If we got an EINVAL, fall through and try without O_CLOEXEC */ +#endif + fd = open(pathname, flags, (mode_t)mode); + if (fd < 0) + return -1; + +#if defined(FD_CLOEXEC) + if (fcntl(fd, F_SETFD, FD_CLOEXEC) < 0) { + close(fd); + return -1; + } +#endif + + return fd; +} + +/** + Read the contents of 'filename' into a newly allocated NUL-terminated + string. Set *content_out to hold this string, and *len_out to hold its + length (not including the appended NUL). If 'is_binary', open the file in + binary mode. + + Returns 0 on success, -1 if the open fails, and -2 for all other failures. + + Used internally only; may go away in a future version. + */ +int +evutil_read_file_(const char *filename, char **content_out, size_t *len_out, + int is_binary) +{ + int fd, r; + struct stat st; + char *mem; + size_t read_so_far=0; + int mode = O_RDONLY; + + EVUTIL_ASSERT(content_out); + EVUTIL_ASSERT(len_out); + *content_out = NULL; + *len_out = 0; + +#ifdef O_BINARY + if (is_binary) + mode |= O_BINARY; +#endif + + fd = evutil_open_closeonexec_(filename, mode, 0); + if (fd < 0) + return -1; + if (fstat(fd, &st) || st.st_size < 0 || + st.st_size > EV_SSIZE_MAX-1 ) { + close(fd); + return -2; + } + mem = mm_malloc((size_t)st.st_size + 1); + if (!mem) { + close(fd); + return -2; + } + read_so_far = 0; +#ifdef _WIN32 +#define N_TO_READ(x) ((x) > INT_MAX) ? INT_MAX : ((int)(x)) +#else +#define N_TO_READ(x) (x) +#endif + while ((r = read(fd, mem+read_so_far, N_TO_READ(st.st_size - read_so_far))) > 0) { + read_so_far += r; + if (read_so_far >= (size_t)st.st_size) + break; + EVUTIL_ASSERT(read_so_far < (size_t)st.st_size); + } + close(fd); + if (r < 0) { + mm_free(mem); + return -2; + } + mem[read_so_far] = 0; + + *len_out = read_so_far; + *content_out = mem; + return 0; +} + +int +evutil_socketpair(int family, int type, int protocol, evutil_socket_t fd[2]) +{ +#ifndef _WIN32 + return socketpair(family, type, protocol, fd); +#else + return evutil_ersatz_socketpair_(family, type, protocol, fd); +#endif +} + +int +evutil_ersatz_socketpair_(int family, int type, int protocol, + evutil_socket_t fd[2]) +{ + /* This code is originally from Tor. Used with permission. */ + + /* This socketpair does not work when localhost is down. So + * it's really not the same thing at all. But it's close enough + * for now, and really, when localhost is down sometimes, we + * have other problems too. + */ +#ifdef _WIN32 +#define ERR(e) WSA##e +#else +#define ERR(e) e +#endif + evutil_socket_t listener = -1; + evutil_socket_t connector = -1; + evutil_socket_t acceptor = -1; + struct sockaddr_in listen_addr; + struct sockaddr_in connect_addr; + ev_socklen_t size; + int saved_errno = -1; + int family_test; + + family_test = family != AF_INET; +#ifdef AF_UNIX + family_test = family_test && (family != AF_UNIX); +#endif + if (protocol || family_test) { + EVUTIL_SET_SOCKET_ERROR(ERR(EAFNOSUPPORT)); + return -1; + } + + if (!fd) { + EVUTIL_SET_SOCKET_ERROR(ERR(EINVAL)); + return -1; + } + + listener = socket(AF_INET, type, 0); + if (listener < 0) + return -1; + memset(&listen_addr, 0, sizeof(listen_addr)); + listen_addr.sin_family = AF_INET; + listen_addr.sin_addr.s_addr = htonl(INADDR_LOOPBACK); + listen_addr.sin_port = 0; /* kernel chooses port. */ + if (bind(listener, (struct sockaddr *) &listen_addr, sizeof (listen_addr)) + == -1) + goto tidy_up_and_fail; + if (listen(listener, 1) == -1) + goto tidy_up_and_fail; + + connector = socket(AF_INET, type, 0); + if (connector < 0) + goto tidy_up_and_fail; + + memset(&connect_addr, 0, sizeof(connect_addr)); + + /* We want to find out the port number to connect to. */ + size = sizeof(connect_addr); + if (getsockname(listener, (struct sockaddr *) &connect_addr, &size) == -1) + goto tidy_up_and_fail; + if (size != sizeof (connect_addr)) + goto abort_tidy_up_and_fail; + if (connect(connector, (struct sockaddr *) &connect_addr, + sizeof(connect_addr)) == -1) + goto tidy_up_and_fail; + + size = sizeof(listen_addr); + acceptor = accept(listener, (struct sockaddr *) &listen_addr, &size); + if (acceptor < 0) + goto tidy_up_and_fail; + if (size != sizeof(listen_addr)) + goto abort_tidy_up_and_fail; + /* Now check we are talking to ourself by matching port and host on the + two sockets. */ + if (getsockname(connector, (struct sockaddr *) &connect_addr, &size) == -1) + goto tidy_up_and_fail; + if (size != sizeof (connect_addr) + || listen_addr.sin_family != connect_addr.sin_family + || listen_addr.sin_addr.s_addr != connect_addr.sin_addr.s_addr + || listen_addr.sin_port != connect_addr.sin_port) + goto abort_tidy_up_and_fail; + evutil_closesocket(listener); + fd[0] = connector; + fd[1] = acceptor; + + return 0; + + abort_tidy_up_and_fail: + saved_errno = ERR(ECONNABORTED); + tidy_up_and_fail: + if (saved_errno < 0) + saved_errno = EVUTIL_SOCKET_ERROR(); + if (listener != -1) + evutil_closesocket(listener); + if (connector != -1) + evutil_closesocket(connector); + if (acceptor != -1) + evutil_closesocket(acceptor); + + EVUTIL_SET_SOCKET_ERROR(saved_errno); + return -1; +#undef ERR +} + +int +evutil_make_socket_nonblocking(evutil_socket_t fd) +{ +#ifdef _WIN32 + { + unsigned long nonblocking = 1; + if (ioctlsocket(fd, FIONBIO, &nonblocking) == SOCKET_ERROR) { + event_sock_warn(fd, "fcntl(%d, F_GETFL)", (int)fd); + return -1; + } + } +#else + { + int flags; + if ((flags = fcntl(fd, F_GETFL, NULL)) < 0) { + event_warn("fcntl(%d, F_GETFL)", fd); + return -1; + } + if (!(flags & O_NONBLOCK)) { + if (fcntl(fd, F_SETFL, flags | O_NONBLOCK) == -1) { + event_warn("fcntl(%d, F_SETFL)", fd); + return -1; + } + } + } +#endif + return 0; +} + +/* Faster version of evutil_make_socket_nonblocking for internal use. + * + * Requires that no F_SETFL flags were previously set on the fd. + */ +static int +evutil_fast_socket_nonblocking(evutil_socket_t fd) +{ +#ifdef _WIN32 + return evutil_make_socket_nonblocking(fd); +#else + if (fcntl(fd, F_SETFL, O_NONBLOCK) == -1) { + event_warn("fcntl(%d, F_SETFL)", fd); + return -1; + } + return 0; +#endif +} + +int +evutil_make_listen_socket_reuseable(evutil_socket_t sock) +{ +#if defined(SO_REUSEADDR) && !defined(_WIN32) + int one = 1; + /* REUSEADDR on Unix means, "don't hang on to this address after the + * listener is closed." On Windows, though, it means "don't keep other + * processes from binding to this address while we're using it. */ + return setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (void*) &one, + (ev_socklen_t)sizeof(one)); +#else + return 0; +#endif +} + +int +evutil_make_listen_socket_reuseable_port(evutil_socket_t sock) +{ +#if defined __linux__ && defined(SO_REUSEPORT) + int one = 1; + /* REUSEPORT on Linux 3.9+ means, "Multiple servers (processes or + * threads) can bind to the same port if they each set the option. */ + return setsockopt(sock, SOL_SOCKET, SO_REUSEPORT, (void*) &one, + (ev_socklen_t)sizeof(one)); +#else + return 0; +#endif +} + +int +evutil_make_tcp_listen_socket_deferred(evutil_socket_t sock) +{ +#if defined(EVENT__HAVE_NETINET_TCP_H) && defined(TCP_DEFER_ACCEPT) + int one = 1; + + /* TCP_DEFER_ACCEPT tells the kernel to call defer accept() only after data + * has arrived and ready to read */ + return setsockopt(sock, IPPROTO_TCP, TCP_DEFER_ACCEPT, &one, + (ev_socklen_t)sizeof(one)); +#endif + return 0; +} + +int +evutil_make_socket_closeonexec(evutil_socket_t fd) +{ +#if !defined(_WIN32) && defined(EVENT__HAVE_SETFD) + int flags; + if ((flags = fcntl(fd, F_GETFD, NULL)) < 0) { + event_warn("fcntl(%d, F_GETFD)", fd); + return -1; + } + if (!(flags & FD_CLOEXEC)) { + if (fcntl(fd, F_SETFD, flags | FD_CLOEXEC) == -1) { + event_warn("fcntl(%d, F_SETFD)", fd); + return -1; + } + } +#endif + return 0; +} + +/* Faster version of evutil_make_socket_closeonexec for internal use. + * + * Requires that no F_SETFD flags were previously set on the fd. + */ +static int +evutil_fast_socket_closeonexec(evutil_socket_t fd) +{ +#if !defined(_WIN32) && defined(EVENT__HAVE_SETFD) + if (fcntl(fd, F_SETFD, FD_CLOEXEC) == -1) { + event_warn("fcntl(%d, F_SETFD)", fd); + return -1; + } +#endif + return 0; +} + +int +evutil_closesocket(evutil_socket_t sock) +{ +#ifndef _WIN32 + return close(sock); +#else + return closesocket(sock); +#endif +} + +ev_int64_t +evutil_strtoll(const char *s, char **endptr, int base) +{ +#ifdef EVENT__HAVE_STRTOLL + return (ev_int64_t)strtoll(s, endptr, base); +#elif EVENT__SIZEOF_LONG == 8 + return (ev_int64_t)strtol(s, endptr, base); +#elif defined(_WIN32) && defined(_MSC_VER) && _MSC_VER < 1300 + /* XXXX on old versions of MS APIs, we only support base + * 10. */ + ev_int64_t r; + if (base != 10) + return 0; + r = (ev_int64_t) _atoi64(s); + while (isspace(*s)) + ++s; + if (*s == '-') + ++s; + while (isdigit(*s)) + ++s; + if (endptr) + *endptr = (char*) s; + return r; +#elif defined(_WIN32) + return (ev_int64_t) _strtoi64(s, endptr, base); +#elif defined(EVENT__SIZEOF_LONG_LONG) && EVENT__SIZEOF_LONG_LONG == 8 + long long r; + int n; + if (base != 10 && base != 16) + return 0; + if (base == 10) { + n = sscanf(s, "%lld", &r); + } else { + unsigned long long ru=0; + n = sscanf(s, "%llx", &ru); + if (ru > EV_INT64_MAX) + return 0; + r = (long long) ru; + } + if (n != 1) + return 0; + while (EVUTIL_ISSPACE_(*s)) + ++s; + if (*s == '-') + ++s; + if (base == 10) { + while (EVUTIL_ISDIGIT_(*s)) + ++s; + } else { + while (EVUTIL_ISXDIGIT_(*s)) + ++s; + } + if (endptr) + *endptr = (char*) s; + return r; +#else +#error "I don't know how to parse 64-bit integers." +#endif +} + +#ifdef _WIN32 +int +evutil_socket_geterror(evutil_socket_t sock) +{ + int optval, optvallen=sizeof(optval); + int err = WSAGetLastError(); + if (err == WSAEWOULDBLOCK && sock >= 0) { + if (getsockopt(sock, SOL_SOCKET, SO_ERROR, (void*)&optval, + &optvallen)) + return err; + if (optval) + return optval; + } + return err; +} +#endif + +/* XXX we should use an enum here. */ +/* 2 for connection refused, 1 for connected, 0 for not yet, -1 for error. */ +int +evutil_socket_connect_(evutil_socket_t *fd_ptr, const struct sockaddr *sa, int socklen) +{ + int made_fd = 0; + + if (*fd_ptr < 0) { + if ((*fd_ptr = socket(sa->sa_family, SOCK_STREAM, 0)) < 0) + goto err; + made_fd = 1; + if (evutil_make_socket_nonblocking(*fd_ptr) < 0) { + goto err; + } + } + + if (connect(*fd_ptr, sa, socklen) < 0) { + int e = evutil_socket_geterror(*fd_ptr); + if (EVUTIL_ERR_CONNECT_RETRIABLE(e)) + return 0; + if (EVUTIL_ERR_CONNECT_REFUSED(e)) + return 2; + goto err; + } else { + return 1; + } + +err: + if (made_fd) { + evutil_closesocket(*fd_ptr); + *fd_ptr = -1; + } + return -1; +} + +/* Check whether a socket on which we called connect() is done + connecting. Return 1 for connected, 0 for not yet, -1 for error. In the + error case, set the current socket errno to the error that happened during + the connect operation. */ +int +evutil_socket_finished_connecting_(evutil_socket_t fd) +{ + int e; + ev_socklen_t elen = sizeof(e); + + if (getsockopt(fd, SOL_SOCKET, SO_ERROR, (void*)&e, &elen) < 0) + return -1; + + if (e) { + if (EVUTIL_ERR_CONNECT_RETRIABLE(e)) + return 0; + EVUTIL_SET_SOCKET_ERROR(e); + return -1; + } + + return 1; +} + +#if (EVUTIL_AI_PASSIVE|EVUTIL_AI_CANONNAME|EVUTIL_AI_NUMERICHOST| \ + EVUTIL_AI_NUMERICSERV|EVUTIL_AI_V4MAPPED|EVUTIL_AI_ALL| \ + EVUTIL_AI_ADDRCONFIG) != \ + (EVUTIL_AI_PASSIVE^EVUTIL_AI_CANONNAME^EVUTIL_AI_NUMERICHOST^ \ + EVUTIL_AI_NUMERICSERV^EVUTIL_AI_V4MAPPED^EVUTIL_AI_ALL^ \ + EVUTIL_AI_ADDRCONFIG) +#error "Some of our EVUTIL_AI_* flags seem to overlap with system AI_* flags" +#endif + +/* We sometimes need to know whether we have an ipv4 address and whether we + have an ipv6 address. If 'have_checked_interfaces', then we've already done + the test. If 'had_ipv4_address', then it turns out we had an ipv4 address. + If 'had_ipv6_address', then it turns out we had an ipv6 address. These are + set by evutil_check_interfaces. */ +static int have_checked_interfaces, had_ipv4_address, had_ipv6_address; + +/* Macro: True iff the IPv4 address 'addr', in host order, is in 127.0.0.0/8 + */ +#define EVUTIL_V4ADDR_IS_LOCALHOST(addr) (((addr)>>24) == 127) + +/* Macro: True iff the IPv4 address 'addr', in host order, is a class D + * (multiclass) address. + */ +#define EVUTIL_V4ADDR_IS_CLASSD(addr) ((((addr)>>24) & 0xf0) == 0xe0) + +static void +evutil_found_ifaddr(const struct sockaddr *sa) +{ + const char ZEROES[] = "\x00\x00\x00\x00\x00\x00\x00\x00" + "\x00\x00\x00\x00\x00\x00\x00\x00"; + + if (sa->sa_family == AF_INET) { + const struct sockaddr_in *sin = (struct sockaddr_in *)sa; + ev_uint32_t addr = ntohl(sin->sin_addr.s_addr); + if (addr == 0 || + EVUTIL_V4ADDR_IS_LOCALHOST(addr) || + EVUTIL_V4ADDR_IS_CLASSD(addr)) { + /* Not actually a usable external address. */ + } else { + event_debug(("Detected an IPv4 interface")); + had_ipv4_address = 1; + } + } else if (sa->sa_family == AF_INET6) { + const struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)sa; + const unsigned char *addr = + (unsigned char*)sin6->sin6_addr.s6_addr; + if (!memcmp(addr, ZEROES, 8) || + ((addr[0] & 0xfe) == 0xfc) || + (addr[0] == 0xfe && (addr[1] & 0xc0) == 0x80) || + (addr[0] == 0xfe && (addr[1] & 0xc0) == 0xc0) || + (addr[0] == 0xff)) { + /* This is a reserved, ipv4compat, ipv4map, loopback, + * link-local, multicast, or unspecified address. */ + } else { + event_debug(("Detected an IPv6 interface")); + had_ipv6_address = 1; + } + } +} + +#ifdef _WIN32 +typedef ULONG (WINAPI *GetAdaptersAddresses_fn_t)( + ULONG, ULONG, PVOID, PIP_ADAPTER_ADDRESSES, PULONG); +#endif + +static int +evutil_check_ifaddrs(void) +{ +#if defined(EVENT__HAVE_GETIFADDRS) + /* Most free Unixy systems provide getifaddrs, which gives us a linked list + * of struct ifaddrs. */ + struct ifaddrs *ifa = NULL; + const struct ifaddrs *i; + if (getifaddrs(&ifa) < 0) { + event_warn("Unable to call getifaddrs()"); + return -1; + } + + for (i = ifa; i; i = i->ifa_next) { + if (!i->ifa_addr) + continue; + evutil_found_ifaddr(i->ifa_addr); + } + + freeifaddrs(ifa); + return 0; +#elif defined(_WIN32) + /* Windows XP began to provide GetAdaptersAddresses. Windows 2000 had a + "GetAdaptersInfo", but that's deprecated; let's just try + GetAdaptersAddresses and fall back to connect+getsockname. + */ + HMODULE lib = evutil_load_windows_system_library_(TEXT("ihplapi.dll")); + GetAdaptersAddresses_fn_t fn; + ULONG size, res; + IP_ADAPTER_ADDRESSES *addresses = NULL, *address; + int result = -1; + +#define FLAGS (GAA_FLAG_SKIP_ANYCAST | \ + GAA_FLAG_SKIP_MULTICAST | \ + GAA_FLAG_SKIP_DNS_SERVER) + + if (!lib) + goto done; + + if (!(fn = (GetAdaptersAddresses_fn_t) GetProcAddress(lib, "GetAdaptersAddresses"))) + goto done; + + /* Guess how much space we need. */ + size = 15*1024; + addresses = mm_malloc(size); + if (!addresses) + goto done; + res = fn(AF_UNSPEC, FLAGS, NULL, addresses, &size); + if (res == ERROR_BUFFER_OVERFLOW) { + /* we didn't guess that we needed enough space; try again */ + mm_free(addresses); + addresses = mm_malloc(size); + if (!addresses) + goto done; + res = fn(AF_UNSPEC, FLAGS, NULL, addresses, &size); + } + if (res != NO_ERROR) + goto done; + + for (address = addresses; address; address = address->Next) { + IP_ADAPTER_UNICAST_ADDRESS *a; + for (a = address->FirstUnicastAddress; a; a = a->Next) { + /* Yes, it's a linked list inside a linked list */ + struct sockaddr *sa = a->Address.lpSockaddr; + evutil_found_ifaddr(sa); + } + } + + result = 0; +done: + if (lib) + FreeLibrary(lib); + if (addresses) + mm_free(addresses); + return result; +#else + return -1; +#endif +} + +/* Test whether we have an ipv4 interface and an ipv6 interface. Return 0 if + * the test seemed successful. */ +static int +evutil_check_interfaces(int force_recheck) +{ + evutil_socket_t fd = -1; + struct sockaddr_in sin, sin_out; + struct sockaddr_in6 sin6, sin6_out; + ev_socklen_t sin_out_len = sizeof(sin_out); + ev_socklen_t sin6_out_len = sizeof(sin6_out); + int r; + if (have_checked_interfaces && !force_recheck) + return 0; + + if (evutil_check_ifaddrs() == 0) { + /* Use a nice sane interface, if this system has one. */ + return 0; + } + + /* Ugh. There was no nice sane interface. So to check whether we have + * an interface open for a given protocol, will try to make a UDP + * 'connection' to a remote host on the internet. We don't actually + * use it, so the address doesn't matter, but we want to pick one that + * keep us from using a host- or link-local interface. */ + memset(&sin, 0, sizeof(sin)); + sin.sin_family = AF_INET; + sin.sin_port = htons(53); + r = evutil_inet_pton(AF_INET, "18.244.0.188", &sin.sin_addr); + EVUTIL_ASSERT(r); + + memset(&sin6, 0, sizeof(sin6)); + sin6.sin6_family = AF_INET6; + sin6.sin6_port = htons(53); + r = evutil_inet_pton(AF_INET6, "2001:4860:b002::68", &sin6.sin6_addr); + EVUTIL_ASSERT(r); + + memset(&sin_out, 0, sizeof(sin_out)); + memset(&sin6_out, 0, sizeof(sin6_out)); + + /* XXX some errnos mean 'no address'; some mean 'not enough sockets'. */ + if ((fd = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP)) >= 0 && + connect(fd, (struct sockaddr*)&sin, sizeof(sin)) == 0 && + getsockname(fd, (struct sockaddr*)&sin_out, &sin_out_len) == 0) { + /* We might have an IPv4 interface. */ + evutil_found_ifaddr((struct sockaddr*) &sin_out); + } + if (fd >= 0) + evutil_closesocket(fd); + + if ((fd = socket(AF_INET6, SOCK_DGRAM, IPPROTO_UDP)) >= 0 && + connect(fd, (struct sockaddr*)&sin6, sizeof(sin6)) == 0 && + getsockname(fd, (struct sockaddr*)&sin6_out, &sin6_out_len) == 0) { + /* We might have an IPv6 interface. */ + evutil_found_ifaddr((struct sockaddr*) &sin6_out); + } + + if (fd >= 0) + evutil_closesocket(fd); + + return 0; +} + +/* Internal addrinfo flag. This one is set when we allocate the addrinfo from + * inside libevent. Otherwise, the built-in getaddrinfo() function allocated + * it, and we should trust what they said. + **/ +#define EVUTIL_AI_LIBEVENT_ALLOCATED 0x80000000 + +/* Helper: construct a new addrinfo containing the socket address in + * 'sa', which must be a sockaddr_in or a sockaddr_in6. Take the + * socktype and protocol info from hints. If they weren't set, then + * allocate both a TCP and a UDP addrinfo. + */ +struct evutil_addrinfo * +evutil_new_addrinfo_(struct sockaddr *sa, ev_socklen_t socklen, + const struct evutil_addrinfo *hints) +{ + struct evutil_addrinfo *res; + EVUTIL_ASSERT(hints); + + if (hints->ai_socktype == 0 && hints->ai_protocol == 0) { + /* Indecisive user! Give them a UDP and a TCP. */ + struct evutil_addrinfo *r1, *r2; + struct evutil_addrinfo tmp; + memcpy(&tmp, hints, sizeof(tmp)); + tmp.ai_socktype = SOCK_STREAM; tmp.ai_protocol = IPPROTO_TCP; + r1 = evutil_new_addrinfo_(sa, socklen, &tmp); + if (!r1) + return NULL; + tmp.ai_socktype = SOCK_DGRAM; tmp.ai_protocol = IPPROTO_UDP; + r2 = evutil_new_addrinfo_(sa, socklen, &tmp); + if (!r2) { + evutil_freeaddrinfo(r1); + return NULL; + } + r1->ai_next = r2; + return r1; + } + + /* We're going to allocate extra space to hold the sockaddr. */ + res = mm_calloc(1,sizeof(struct evutil_addrinfo)+socklen); + if (!res) + return NULL; + res->ai_addr = (struct sockaddr*) + (((char*)res) + sizeof(struct evutil_addrinfo)); + memcpy(res->ai_addr, sa, socklen); + res->ai_addrlen = socklen; + res->ai_family = sa->sa_family; /* Same or not? XXX */ + res->ai_flags = EVUTIL_AI_LIBEVENT_ALLOCATED; + res->ai_socktype = hints->ai_socktype; + res->ai_protocol = hints->ai_protocol; + + return res; +} + +/* Append the addrinfo 'append' to the end of 'first', and return the start of + * the list. Either element can be NULL, in which case we return the element + * that is not NULL. */ +struct evutil_addrinfo * +evutil_addrinfo_append_(struct evutil_addrinfo *first, + struct evutil_addrinfo *append) +{ + struct evutil_addrinfo *ai = first; + if (!ai) + return append; + while (ai->ai_next) + ai = ai->ai_next; + ai->ai_next = append; + + return first; +} + +static int +parse_numeric_servname(const char *servname) +{ + int n; + char *endptr=NULL; + n = (int) strtol(servname, &endptr, 10); + if (n>=0 && n <= 65535 && servname[0] && endptr && !endptr[0]) + return n; + else + return -1; +} + +/** Parse a service name in 'servname', which can be a decimal port. + * Return the port number, or -1 on error. + */ +static int +evutil_parse_servname(const char *servname, const char *protocol, + const struct evutil_addrinfo *hints) +{ + int n = parse_numeric_servname(servname); + if (n>=0) + return n; +#if defined(EVENT__HAVE_GETSERVBYNAME) || defined(_WIN32) + if (!(hints->ai_flags & EVUTIL_AI_NUMERICSERV)) { + struct servent *ent = getservbyname(servname, protocol); + if (ent) { + return ntohs(ent->s_port); + } + } +#endif + return -1; +} + +/* Return a string corresponding to a protocol number that we can pass to + * getservyname. */ +static const char * +evutil_unparse_protoname(int proto) +{ + switch (proto) { + case 0: + return NULL; + case IPPROTO_TCP: + return "tcp"; + case IPPROTO_UDP: + return "udp"; +#ifdef IPPROTO_SCTP + case IPPROTO_SCTP: + return "sctp"; +#endif + default: +#ifdef EVENT__HAVE_GETPROTOBYNUMBER + { + struct protoent *ent = getprotobynumber(proto); + if (ent) + return ent->p_name; + } +#endif + return NULL; + } +} + +static void +evutil_getaddrinfo_infer_protocols(struct evutil_addrinfo *hints) +{ + /* If we can guess the protocol from the socktype, do so. */ + if (!hints->ai_protocol && hints->ai_socktype) { + if (hints->ai_socktype == SOCK_DGRAM) + hints->ai_protocol = IPPROTO_UDP; + else if (hints->ai_socktype == SOCK_STREAM) + hints->ai_protocol = IPPROTO_TCP; + } + + /* Set the socktype if it isn't set. */ + if (!hints->ai_socktype && hints->ai_protocol) { + if (hints->ai_protocol == IPPROTO_UDP) + hints->ai_socktype = SOCK_DGRAM; + else if (hints->ai_protocol == IPPROTO_TCP) + hints->ai_socktype = SOCK_STREAM; +#ifdef IPPROTO_SCTP + else if (hints->ai_protocol == IPPROTO_SCTP) + hints->ai_socktype = SOCK_STREAM; +#endif + } +} + +#if AF_UNSPEC != PF_UNSPEC +#error "I cannot build on a system where AF_UNSPEC != PF_UNSPEC" +#endif + +/** Implements the part of looking up hosts by name that's common to both + * the blocking and nonblocking resolver: + * - Adjust 'hints' to have a reasonable socktype and protocol. + * - Look up the port based on 'servname', and store it in *portnum, + * - Handle the nodename==NULL case + * - Handle some invalid arguments cases. + * - Handle the cases where nodename is an IPv4 or IPv6 address. + * + * If we need the resolver to look up the hostname, we return + * EVUTIL_EAI_NEED_RESOLVE. Otherwise, we can completely implement + * getaddrinfo: we return 0 or an appropriate EVUTIL_EAI_* error, and + * set *res as getaddrinfo would. + */ +int +evutil_getaddrinfo_common_(const char *nodename, const char *servname, + struct evutil_addrinfo *hints, struct evutil_addrinfo **res, int *portnum) +{ + int port = 0; + const char *pname; + + if (nodename == NULL && servname == NULL) + return EVUTIL_EAI_NONAME; + + /* We only understand 3 families */ + if (hints->ai_family != PF_UNSPEC && hints->ai_family != PF_INET && + hints->ai_family != PF_INET6) + return EVUTIL_EAI_FAMILY; + + evutil_getaddrinfo_infer_protocols(hints); + + /* Look up the port number and protocol, if possible. */ + pname = evutil_unparse_protoname(hints->ai_protocol); + if (servname) { + /* XXXX We could look at the protocol we got back from + * getservbyname, but it doesn't seem too useful. */ + port = evutil_parse_servname(servname, pname, hints); + if (port < 0) { + return EVUTIL_EAI_NONAME; + } + } + + /* If we have no node name, then we're supposed to bind to 'any' and + * connect to localhost. */ + if (nodename == NULL) { + struct evutil_addrinfo *res4=NULL, *res6=NULL; + if (hints->ai_family != PF_INET) { /* INET6 or UNSPEC. */ + struct sockaddr_in6 sin6; + memset(&sin6, 0, sizeof(sin6)); + sin6.sin6_family = AF_INET6; + sin6.sin6_port = htons(port); + if (hints->ai_flags & EVUTIL_AI_PASSIVE) { + /* Bind to :: */ + } else { + /* connect to ::1 */ + sin6.sin6_addr.s6_addr[15] = 1; + } + res6 = evutil_new_addrinfo_((struct sockaddr*)&sin6, + sizeof(sin6), hints); + if (!res6) + return EVUTIL_EAI_MEMORY; + } + + if (hints->ai_family != PF_INET6) { /* INET or UNSPEC */ + struct sockaddr_in sin; + memset(&sin, 0, sizeof(sin)); + sin.sin_family = AF_INET; + sin.sin_port = htons(port); + if (hints->ai_flags & EVUTIL_AI_PASSIVE) { + /* Bind to 0.0.0.0 */ + } else { + /* connect to 127.0.0.1 */ + sin.sin_addr.s_addr = htonl(0x7f000001); + } + res4 = evutil_new_addrinfo_((struct sockaddr*)&sin, + sizeof(sin), hints); + if (!res4) { + if (res6) + evutil_freeaddrinfo(res6); + return EVUTIL_EAI_MEMORY; + } + } + *res = evutil_addrinfo_append_(res4, res6); + return 0; + } + + /* If we can, we should try to parse the hostname without resolving + * it. */ + /* Try ipv6. */ + if (hints->ai_family == PF_INET6 || hints->ai_family == PF_UNSPEC) { + struct sockaddr_in6 sin6; + memset(&sin6, 0, sizeof(sin6)); + if (1==evutil_inet_pton(AF_INET6, nodename, &sin6.sin6_addr)) { + /* Got an ipv6 address. */ + sin6.sin6_family = AF_INET6; + sin6.sin6_port = htons(port); + *res = evutil_new_addrinfo_((struct sockaddr*)&sin6, + sizeof(sin6), hints); + if (!*res) + return EVUTIL_EAI_MEMORY; + return 0; + } + } + + /* Try ipv4. */ + if (hints->ai_family == PF_INET || hints->ai_family == PF_UNSPEC) { + struct sockaddr_in sin; + memset(&sin, 0, sizeof(sin)); + if (1==evutil_inet_pton(AF_INET, nodename, &sin.sin_addr)) { + /* Got an ipv6 address. */ + sin.sin_family = AF_INET; + sin.sin_port = htons(port); + *res = evutil_new_addrinfo_((struct sockaddr*)&sin, + sizeof(sin), hints); + if (!*res) + return EVUTIL_EAI_MEMORY; + return 0; + } + } + + + /* If we have reached this point, we definitely need to do a DNS + * lookup. */ + if ((hints->ai_flags & EVUTIL_AI_NUMERICHOST)) { + /* If we're not allowed to do one, then say so. */ + return EVUTIL_EAI_NONAME; + } + *portnum = port; + return EVUTIL_EAI_NEED_RESOLVE; +} + +#ifdef EVENT__HAVE_GETADDRINFO +#define USE_NATIVE_GETADDRINFO +#endif + +#ifdef USE_NATIVE_GETADDRINFO +/* A mask of all the flags that we declare, so we can clear them before calling + * the native getaddrinfo */ +static const unsigned int ALL_NONNATIVE_AI_FLAGS = +#ifndef AI_PASSIVE + EVUTIL_AI_PASSIVE | +#endif +#ifndef AI_CANONNAME + EVUTIL_AI_CANONNAME | +#endif +#ifndef AI_NUMERICHOST + EVUTIL_AI_NUMERICHOST | +#endif +#ifndef AI_NUMERICSERV + EVUTIL_AI_NUMERICSERV | +#endif +#ifndef AI_ADDRCONFIG + EVUTIL_AI_ADDRCONFIG | +#endif +#ifndef AI_ALL + EVUTIL_AI_ALL | +#endif +#ifndef AI_V4MAPPED + EVUTIL_AI_V4MAPPED | +#endif + EVUTIL_AI_LIBEVENT_ALLOCATED; + +static const unsigned int ALL_NATIVE_AI_FLAGS = +#ifdef AI_PASSIVE + AI_PASSIVE | +#endif +#ifdef AI_CANONNAME + AI_CANONNAME | +#endif +#ifdef AI_NUMERICHOST + AI_NUMERICHOST | +#endif +#ifdef AI_NUMERICSERV + AI_NUMERICSERV | +#endif +#ifdef AI_ADDRCONFIG + AI_ADDRCONFIG | +#endif +#ifdef AI_ALL + AI_ALL | +#endif +#ifdef AI_V4MAPPED + AI_V4MAPPED | +#endif + 0; +#endif + +#ifndef USE_NATIVE_GETADDRINFO +/* Helper for systems with no getaddrinfo(): make one or more addrinfos out of + * a struct hostent. + */ +static struct evutil_addrinfo * +addrinfo_from_hostent(const struct hostent *ent, + int port, const struct evutil_addrinfo *hints) +{ + int i; + struct sockaddr_in sin; + struct sockaddr_in6 sin6; + struct sockaddr *sa; + int socklen; + struct evutil_addrinfo *res=NULL, *ai; + void *addrp; + + if (ent->h_addrtype == PF_INET) { + memset(&sin, 0, sizeof(sin)); + sin.sin_family = AF_INET; + sin.sin_port = htons(port); + sa = (struct sockaddr *)&sin; + socklen = sizeof(struct sockaddr_in); + addrp = &sin.sin_addr; + if (ent->h_length != sizeof(sin.sin_addr)) { + event_warnx("Weird h_length from gethostbyname"); + return NULL; + } + } else if (ent->h_addrtype == PF_INET6) { + memset(&sin6, 0, sizeof(sin6)); + sin6.sin6_family = AF_INET6; + sin6.sin6_port = htons(port); + sa = (struct sockaddr *)&sin6; + socklen = sizeof(struct sockaddr_in6); + addrp = &sin6.sin6_addr; + if (ent->h_length != sizeof(sin6.sin6_addr)) { + event_warnx("Weird h_length from gethostbyname"); + return NULL; + } + } else + return NULL; + + for (i = 0; ent->h_addr_list[i]; ++i) { + memcpy(addrp, ent->h_addr_list[i], ent->h_length); + ai = evutil_new_addrinfo_(sa, socklen, hints); + if (!ai) { + evutil_freeaddrinfo(res); + return NULL; + } + res = evutil_addrinfo_append_(res, ai); + } + + if (res && ((hints->ai_flags & EVUTIL_AI_CANONNAME) && ent->h_name)) { + res->ai_canonname = mm_strdup(ent->h_name); + if (res->ai_canonname == NULL) { + evutil_freeaddrinfo(res); + return NULL; + } + } + + return res; +} +#endif + +/* If the EVUTIL_AI_ADDRCONFIG flag is set on hints->ai_flags, and + * hints->ai_family is PF_UNSPEC, then revise the value of hints->ai_family so + * that we'll only get addresses we could maybe connect to. + */ +void +evutil_adjust_hints_for_addrconfig_(struct evutil_addrinfo *hints) +{ + if (!(hints->ai_flags & EVUTIL_AI_ADDRCONFIG)) + return; + if (hints->ai_family != PF_UNSPEC) + return; + if (!have_checked_interfaces) + evutil_check_interfaces(0); + if (had_ipv4_address && !had_ipv6_address) { + hints->ai_family = PF_INET; + } else if (!had_ipv4_address && had_ipv6_address) { + hints->ai_family = PF_INET6; + } +} + +#ifdef USE_NATIVE_GETADDRINFO +static int need_numeric_port_hack_=0; +static int need_socktype_protocol_hack_=0; +static int tested_for_getaddrinfo_hacks=0; + +/* Some older BSDs (like OpenBSD up to 4.6) used to believe that + giving a numeric port without giving an ai_socktype was verboten. + We test for this so we can apply an appropriate workaround. If it + turns out that the bug is present, then: + + - If nodename==NULL and servname is numeric, we build an answer + ourselves using evutil_getaddrinfo_common_(). + + - If nodename!=NULL and servname is numeric, then we set + servname=NULL when calling getaddrinfo, and post-process the + result to set the ports on it. + + We test for this bug at runtime, since otherwise we can't have the + same binary run on multiple BSD versions. + + - Some versions of Solaris believe that it's nice to leave to protocol + field set to 0. We test for this so we can apply an appropriate + workaround. +*/ +static struct evutil_addrinfo *ai_find_protocol(struct evutil_addrinfo *ai) +{ + while (ai) { + if (ai->ai_protocol) + return ai; + ai = ai->ai_next; + } + return NULL; +} +static void +test_for_getaddrinfo_hacks(void) +{ + int r, r2; + struct evutil_addrinfo *ai=NULL, *ai2=NULL, *ai3=NULL; + struct evutil_addrinfo hints; + + memset(&hints,0,sizeof(hints)); + hints.ai_family = PF_UNSPEC; + hints.ai_flags = +#ifdef AI_NUMERICHOST + AI_NUMERICHOST | +#endif +#ifdef AI_NUMERICSERV + AI_NUMERICSERV | +#endif + 0; + r = getaddrinfo("1.2.3.4", "80", &hints, &ai); + getaddrinfo("1.2.3.4", NULL, &hints, &ai3); + hints.ai_socktype = SOCK_STREAM; + r2 = getaddrinfo("1.2.3.4", "80", &hints, &ai2); + if (r2 == 0 && r != 0) { + need_numeric_port_hack_=1; + } + if (!ai_find_protocol(ai2) || !ai_find_protocol(ai3)) { + need_socktype_protocol_hack_=1; + } + + if (ai) + freeaddrinfo(ai); + if (ai2) + freeaddrinfo(ai2); + if (ai3) + freeaddrinfo(ai3); + tested_for_getaddrinfo_hacks=1; +} + +static inline int +need_numeric_port_hack(void) +{ + if (!tested_for_getaddrinfo_hacks) + test_for_getaddrinfo_hacks(); + return need_numeric_port_hack_; +} + +static inline int +need_socktype_protocol_hack(void) +{ + if (!tested_for_getaddrinfo_hacks) + test_for_getaddrinfo_hacks(); + return need_socktype_protocol_hack_; +} + +static void +apply_numeric_port_hack(int port, struct evutil_addrinfo **ai) +{ + /* Now we run through the list and set the ports on all of the + * results where ports would make sense. */ + for ( ; *ai; ai = &(*ai)->ai_next) { + struct sockaddr *sa = (*ai)->ai_addr; + if (sa && sa->sa_family == AF_INET) { + struct sockaddr_in *sin = (struct sockaddr_in*)sa; + sin->sin_port = htons(port); + } else if (sa && sa->sa_family == AF_INET6) { + struct sockaddr_in6 *sin6 = (struct sockaddr_in6*)sa; + sin6->sin6_port = htons(port); + } else { + /* A numeric port makes no sense here; remove this one + * from the list. */ + struct evutil_addrinfo *victim = *ai; + *ai = victim->ai_next; + victim->ai_next = NULL; + freeaddrinfo(victim); + } + } +} + +static int +apply_socktype_protocol_hack(struct evutil_addrinfo *ai) +{ + struct evutil_addrinfo *ai_new; + for (; ai; ai = ai->ai_next) { + evutil_getaddrinfo_infer_protocols(ai); + if (ai->ai_socktype || ai->ai_protocol) + continue; + ai_new = mm_malloc(sizeof(*ai_new)); + if (!ai_new) + return -1; + memcpy(ai_new, ai, sizeof(*ai_new)); + ai->ai_socktype = SOCK_STREAM; + ai->ai_protocol = IPPROTO_TCP; + ai_new->ai_socktype = SOCK_DGRAM; + ai_new->ai_protocol = IPPROTO_UDP; + + ai_new->ai_next = ai->ai_next; + ai->ai_next = ai_new; + } + return 0; +} +#endif + +int +evutil_getaddrinfo(const char *nodename, const char *servname, + const struct evutil_addrinfo *hints_in, struct evutil_addrinfo **res) +{ +#ifdef USE_NATIVE_GETADDRINFO + struct evutil_addrinfo hints; + int portnum=-1, need_np_hack, err; + + if (hints_in) { + memcpy(&hints, hints_in, sizeof(hints)); + } else { + memset(&hints, 0, sizeof(hints)); + hints.ai_family = PF_UNSPEC; + } + +#ifndef AI_ADDRCONFIG + /* Not every system has AI_ADDRCONFIG, so fake it. */ + if (hints.ai_family == PF_UNSPEC && + (hints.ai_flags & EVUTIL_AI_ADDRCONFIG)) { + evutil_adjust_hints_for_addrconfig_(&hints); + } +#endif + +#ifndef AI_NUMERICSERV + /* Not every system has AI_NUMERICSERV, so fake it. */ + if (hints.ai_flags & EVUTIL_AI_NUMERICSERV) { + if (servname && parse_numeric_servname(servname)<0) + return EVUTIL_EAI_NONAME; + } +#endif + + /* Enough operating systems handle enough common non-resolve + * cases here weirdly enough that we are better off just + * overriding them. For example: + * + * - Windows doesn't like to infer the protocol from the + * socket type, or fill in socket or protocol types much at + * all. It also seems to do its own broken implicit + * always-on version of AI_ADDRCONFIG that keeps it from + * ever resolving even a literal IPv6 address when + * ai_addrtype is PF_UNSPEC. + */ +#ifdef _WIN32 + { + int tmp_port; + err = evutil_getaddrinfo_common_(nodename,servname,&hints, + res, &tmp_port); + if (err == 0 || + err == EVUTIL_EAI_MEMORY || + err == EVUTIL_EAI_NONAME) + return err; + /* If we make it here, the system getaddrinfo can + * have a crack at it. */ + } +#endif + + /* See documentation for need_numeric_port_hack above.*/ + need_np_hack = need_numeric_port_hack() && servname && !hints.ai_socktype + && ((portnum=parse_numeric_servname(servname)) >= 0); + if (need_np_hack) { + if (!nodename) + return evutil_getaddrinfo_common_( + NULL,servname,&hints, res, &portnum); + servname = NULL; + } + + if (need_socktype_protocol_hack()) { + evutil_getaddrinfo_infer_protocols(&hints); + } + + /* Make sure that we didn't actually steal any AI_FLAGS values that + * the system is using. (This is a constant expression, and should ge + * optimized out.) + * + * XXXX Turn this into a compile-time failure rather than a run-time + * failure. + */ + EVUTIL_ASSERT((ALL_NONNATIVE_AI_FLAGS & ALL_NATIVE_AI_FLAGS) == 0); + + /* Clear any flags that only libevent understands. */ + hints.ai_flags &= ~ALL_NONNATIVE_AI_FLAGS; + + err = getaddrinfo(nodename, servname, &hints, res); + if (need_np_hack) + apply_numeric_port_hack(portnum, res); + + if (need_socktype_protocol_hack()) { + if (apply_socktype_protocol_hack(*res) < 0) { + evutil_freeaddrinfo(*res); + *res = NULL; + return EVUTIL_EAI_MEMORY; + } + } + return err; +#else + int port=0, err; + struct hostent *ent = NULL; + struct evutil_addrinfo hints; + + if (hints_in) { + memcpy(&hints, hints_in, sizeof(hints)); + } else { + memset(&hints, 0, sizeof(hints)); + hints.ai_family = PF_UNSPEC; + } + + evutil_adjust_hints_for_addrconfig_(&hints); + + err = evutil_getaddrinfo_common_(nodename, servname, &hints, res, &port); + if (err != EVUTIL_EAI_NEED_RESOLVE) { + /* We either succeeded or failed. No need to continue */ + return err; + } + + err = 0; + /* Use any of the various gethostbyname_r variants as available. */ + { +#ifdef EVENT__HAVE_GETHOSTBYNAME_R_6_ARG + /* This one is what glibc provides. */ + char buf[2048]; + struct hostent hostent; + int r; + r = gethostbyname_r(nodename, &hostent, buf, sizeof(buf), &ent, + &err); +#elif defined(EVENT__HAVE_GETHOSTBYNAME_R_5_ARG) + char buf[2048]; + struct hostent hostent; + ent = gethostbyname_r(nodename, &hostent, buf, sizeof(buf), + &err); +#elif defined(EVENT__HAVE_GETHOSTBYNAME_R_3_ARG) + struct hostent_data data; + struct hostent hostent; + memset(&data, 0, sizeof(data)); + err = gethostbyname_r(nodename, &hostent, &data); + ent = err ? NULL : &hostent; +#else + /* fall back to gethostbyname. */ + /* XXXX This needs a lock everywhere but Windows. */ + ent = gethostbyname(nodename); +#ifdef _WIN32 + err = WSAGetLastError(); +#else + err = h_errno; +#endif +#endif + + /* Now we have either ent or err set. */ + if (!ent) { + /* XXX is this right for windows ? */ + switch (err) { + case TRY_AGAIN: + return EVUTIL_EAI_AGAIN; + case NO_RECOVERY: + default: + return EVUTIL_EAI_FAIL; + case HOST_NOT_FOUND: + return EVUTIL_EAI_NONAME; + case NO_ADDRESS: +#if NO_DATA != NO_ADDRESS + case NO_DATA: +#endif + return EVUTIL_EAI_NODATA; + } + } + + if (ent->h_addrtype != hints.ai_family && + hints.ai_family != PF_UNSPEC) { + /* This wasn't the type we were hoping for. Too bad + * we never had a chance to ask gethostbyname for what + * we wanted. */ + return EVUTIL_EAI_NONAME; + } + + /* Make sure we got _some_ answers. */ + if (ent->h_length == 0) + return EVUTIL_EAI_NODATA; + + /* If we got an address type we don't know how to make a + sockaddr for, give up. */ + if (ent->h_addrtype != PF_INET && ent->h_addrtype != PF_INET6) + return EVUTIL_EAI_FAMILY; + + *res = addrinfo_from_hostent(ent, port, &hints); + if (! *res) + return EVUTIL_EAI_MEMORY; + } + + return 0; +#endif +} + +void +evutil_freeaddrinfo(struct evutil_addrinfo *ai) +{ +#ifdef EVENT__HAVE_GETADDRINFO + if (!(ai->ai_flags & EVUTIL_AI_LIBEVENT_ALLOCATED)) { + freeaddrinfo(ai); + return; + } +#endif + while (ai) { + struct evutil_addrinfo *next = ai->ai_next; + if (ai->ai_canonname) + mm_free(ai->ai_canonname); + mm_free(ai); + ai = next; + } +} + +static evdns_getaddrinfo_fn evdns_getaddrinfo_impl = NULL; +static evdns_getaddrinfo_cancel_fn evdns_getaddrinfo_cancel_impl = NULL; + +void +evutil_set_evdns_getaddrinfo_fn_(evdns_getaddrinfo_fn fn) +{ + if (!evdns_getaddrinfo_impl) + evdns_getaddrinfo_impl = fn; +} +void +evutil_set_evdns_getaddrinfo_cancel_fn_(evdns_getaddrinfo_cancel_fn fn) +{ + if (!evdns_getaddrinfo_cancel_impl) + evdns_getaddrinfo_cancel_impl = fn; +} + +/* Internal helper function: act like evdns_getaddrinfo if dns_base is set; + * otherwise do a blocking resolve and pass the result to the callback in the + * way that evdns_getaddrinfo would. + */ +struct evdns_getaddrinfo_request *evutil_getaddrinfo_async_( + struct evdns_base *dns_base, + const char *nodename, const char *servname, + const struct evutil_addrinfo *hints_in, + void (*cb)(int, struct evutil_addrinfo *, void *), void *arg) +{ + if (dns_base && evdns_getaddrinfo_impl) { + return evdns_getaddrinfo_impl( + dns_base, nodename, servname, hints_in, cb, arg); + } else { + struct evutil_addrinfo *ai=NULL; + int err; + err = evutil_getaddrinfo(nodename, servname, hints_in, &ai); + cb(err, ai, arg); + return NULL; + } +} + +void evutil_getaddrinfo_cancel_async_(struct evdns_getaddrinfo_request *data) +{ + if (evdns_getaddrinfo_cancel_impl && data) { + evdns_getaddrinfo_cancel_impl(data); + } +} + +const char * +evutil_gai_strerror(int err) +{ + /* As a sneaky side-benefit, this case statement will get most + * compilers to tell us if any of the error codes we defined + * conflict with the platform's native error codes. */ + switch (err) { + case EVUTIL_EAI_CANCEL: + return "Request canceled"; + case 0: + return "No error"; + + case EVUTIL_EAI_ADDRFAMILY: + return "address family for nodename not supported"; + case EVUTIL_EAI_AGAIN: + return "temporary failure in name resolution"; + case EVUTIL_EAI_BADFLAGS: + return "invalid value for ai_flags"; + case EVUTIL_EAI_FAIL: + return "non-recoverable failure in name resolution"; + case EVUTIL_EAI_FAMILY: + return "ai_family not supported"; + case EVUTIL_EAI_MEMORY: + return "memory allocation failure"; + case EVUTIL_EAI_NODATA: + return "no address associated with nodename"; + case EVUTIL_EAI_NONAME: + return "nodename nor servname provided, or not known"; + case EVUTIL_EAI_SERVICE: + return "servname not supported for ai_socktype"; + case EVUTIL_EAI_SOCKTYPE: + return "ai_socktype not supported"; + case EVUTIL_EAI_SYSTEM: + return "system error"; + default: +#if defined(USE_NATIVE_GETADDRINFO) && defined(_WIN32) + return gai_strerrorA(err); +#elif defined(USE_NATIVE_GETADDRINFO) + return gai_strerror(err); +#else + return "Unknown error code"; +#endif + } +} + +#ifdef _WIN32 +/* destructively remove a trailing line terminator from s */ +static void +chomp (char *s) +{ + size_t len; + if (s && (len = strlen (s)) > 0 && s[len - 1] == '\n') { + s[--len] = 0; + if (len > 0 && s[len - 1] == '\r') + s[--len] = 0; + } +} + +/* FormatMessage returns allocated strings, but evutil_socket_error_to_string + * is supposed to return a string which is good indefinitely without having + * to be freed. To make this work without leaking memory, we cache the + * string the first time FormatMessage is called on a particular error + * code, and then return the cached string on subsequent calls with the + * same code. The strings aren't freed until libevent_global_shutdown + * (or never). We use a linked list to cache the errors, because we + * only expect there to be a few dozen, and that should be fast enough. + */ + +struct cached_sock_errs_entry { + HT_ENTRY(cached_sock_errs_entry) node; + DWORD code; + char *msg; /* allocated with LocalAlloc; free with LocalFree */ +}; + +static inline unsigned +hash_cached_sock_errs(const struct cached_sock_errs_entry *e) +{ + /* Use Murmur3's 32-bit finalizer as an integer hash function */ + DWORD h = e->code; + h ^= h >> 16; + h *= 0x85ebca6b; + h ^= h >> 13; + h *= 0xc2b2ae35; + h ^= h >> 16; + return h; +} + +static inline int +eq_cached_sock_errs(const struct cached_sock_errs_entry *a, + const struct cached_sock_errs_entry *b) +{ + return a->code == b->code; +} + +#ifndef EVENT__DISABLE_THREAD_SUPPORT +static void *windows_socket_errors_lock_ = NULL; +#endif + +static HT_HEAD(cached_sock_errs_map, cached_sock_errs_entry) + windows_socket_errors = HT_INITIALIZER(); + +HT_PROTOTYPE(cached_sock_errs_map, + cached_sock_errs_entry, + node, + hash_cached_sock_errs, + eq_cached_sock_errs); + +HT_GENERATE(cached_sock_errs_map, + cached_sock_errs_entry, + node, + hash_cached_sock_errs, + eq_cached_sock_errs, + 0.5, + mm_malloc, + mm_realloc, + mm_free); + +/** Equivalent to strerror, but for windows socket errors. */ +const char * +evutil_socket_error_to_string(int errcode) +{ + struct cached_sock_errs_entry *errs, *newerr, find; + char *msg = NULL; + + EVLOCK_LOCK(windows_socket_errors_lock_, 0); + + find.code = errcode; + errs = HT_FIND(cached_sock_errs_map, &windows_socket_errors, &find); + if (errs) { + msg = errs->msg; + goto done; + } + + if (0 != FormatMessageA(FORMAT_MESSAGE_FROM_SYSTEM | + FORMAT_MESSAGE_IGNORE_INSERTS | + FORMAT_MESSAGE_ALLOCATE_BUFFER, + NULL, errcode, 0, (char *)&msg, 0, NULL)) + chomp (msg); /* because message has trailing newline */ + else { + size_t len = 50; + /* use LocalAlloc because FormatMessage does */ + msg = LocalAlloc(LMEM_FIXED, len); + if (!msg) { + msg = (char *)"LocalAlloc failed during Winsock error"; + goto done; + } + evutil_snprintf(msg, len, "winsock error 0x%08x", errcode); + } + + newerr = (struct cached_sock_errs_entry *) + mm_malloc(sizeof (struct cached_sock_errs_entry)); + + if (!newerr) { + LocalFree(msg); + msg = (char *)"malloc failed during Winsock error"; + goto done; + } + + newerr->code = errcode; + newerr->msg = msg; + HT_INSERT(cached_sock_errs_map, &windows_socket_errors, newerr); + + done: + EVLOCK_UNLOCK(windows_socket_errors_lock_, 0); + + return msg; +} + +#ifndef EVENT__DISABLE_THREAD_SUPPORT +int +evutil_global_setup_locks_(const int enable_locks) +{ + EVTHREAD_SETUP_GLOBAL_LOCK(windows_socket_errors_lock_, 0); + return 0; +} +#endif + +static void +evutil_free_sock_err_globals(void) +{ + struct cached_sock_errs_entry **errs, *tofree; + + for (errs = HT_START(cached_sock_errs_map, &windows_socket_errors) + ; errs; ) { + tofree = *errs; + errs = HT_NEXT_RMV(cached_sock_errs_map, + &windows_socket_errors, + errs); + LocalFree(tofree->msg); + mm_free(tofree); + } + + HT_CLEAR(cached_sock_errs_map, &windows_socket_errors); + +#ifndef EVENT__DISABLE_THREAD_SUPPORT + if (windows_socket_errors_lock_ != NULL) { + EVTHREAD_FREE_LOCK(windows_socket_errors_lock_, 0); + windows_socket_errors_lock_ = NULL; + } +#endif +} + +#else + +#ifndef EVENT__DISABLE_THREAD_SUPPORT +int +evutil_global_setup_locks_(const int enable_locks) +{ + return 0; +} +#endif + +static void +evutil_free_sock_err_globals(void) +{ +} + +#endif + +int +evutil_snprintf(char *buf, size_t buflen, const char *format, ...) +{ + int r; + va_list ap; + va_start(ap, format); + r = evutil_vsnprintf(buf, buflen, format, ap); + va_end(ap); + return r; +} + +int +evutil_vsnprintf(char *buf, size_t buflen, const char *format, va_list ap) +{ + int r; + if (!buflen) + return 0; +#if defined(_MSC_VER) || defined(_WIN32) + r = _vsnprintf(buf, buflen, format, ap); + if (r < 0) + r = _vscprintf(format, ap); +#elif defined(sgi) + /* Make sure we always use the correct vsnprintf on IRIX */ + extern int _xpg5_vsnprintf(char * __restrict, + __SGI_LIBC_NAMESPACE_QUALIFIER size_t, + const char * __restrict, /* va_list */ char *); + + r = _xpg5_vsnprintf(buf, buflen, format, ap); +#else + r = vsnprintf(buf, buflen, format, ap); +#endif + buf[buflen-1] = '\0'; + return r; +} + +#define USE_INTERNAL_NTOP +#define USE_INTERNAL_PTON + +const char * +evutil_inet_ntop(int af, const void *src, char *dst, size_t len) +{ +#if defined(EVENT__HAVE_INET_NTOP) && !defined(USE_INTERNAL_NTOP) + return inet_ntop(af, src, dst, len); +#else + if (af == AF_INET) { + const struct in_addr *in = src; + const ev_uint32_t a = ntohl(in->s_addr); + int r; + r = evutil_snprintf(dst, len, "%d.%d.%d.%d", + (int)(ev_uint8_t)((a>>24)&0xff), + (int)(ev_uint8_t)((a>>16)&0xff), + (int)(ev_uint8_t)((a>>8 )&0xff), + (int)(ev_uint8_t)((a )&0xff)); + if (r<0||(size_t)r>=len) + return NULL; + else + return dst; +#ifdef AF_INET6 + } else if (af == AF_INET6) { + const struct in6_addr *addr = src; + char buf[64], *cp; + int longestGapLen = 0, longestGapPos = -1, i, + curGapPos = -1, curGapLen = 0; + ev_uint16_t words[8]; + for (i = 0; i < 8; ++i) { + words[i] = + (((ev_uint16_t)addr->s6_addr[2*i])<<8) + addr->s6_addr[2*i+1]; + } + if (words[0] == 0 && words[1] == 0 && words[2] == 0 && words[3] == 0 && + words[4] == 0 && ((words[5] == 0 && words[6] && words[7]) || + (words[5] == 0xffff))) { + /* This is an IPv4 address. */ + if (words[5] == 0) { + evutil_snprintf(buf, sizeof(buf), "::%d.%d.%d.%d", + addr->s6_addr[12], addr->s6_addr[13], + addr->s6_addr[14], addr->s6_addr[15]); + } else { + evutil_snprintf(buf, sizeof(buf), "::%x:%d.%d.%d.%d", words[5], + addr->s6_addr[12], addr->s6_addr[13], + addr->s6_addr[14], addr->s6_addr[15]); + } + if (strlen(buf) > len) + return NULL; + strlcpy(dst, buf, len); + return dst; + } + i = 0; + while (i < 8) { + if (words[i] == 0) { + curGapPos = i++; + curGapLen = 1; + while (i<8 && words[i] == 0) { + ++i; ++curGapLen; + } + if (curGapLen > longestGapLen) { + longestGapPos = curGapPos; + longestGapLen = curGapLen; + } + } else { + ++i; + } + } + if (longestGapLen<=1) + longestGapPos = -1; + + cp = buf; + for (i = 0; i < 8; ++i) { + if (words[i] == 0 && longestGapPos == i) { + if (i == 0) + *cp++ = ':'; + *cp++ = ':'; + while (i < 8 && words[i] == 0) + ++i; + --i; /* to compensate for loop increment. */ + } else { + evutil_snprintf(cp, + sizeof(buf)-(cp-buf), "%x", (unsigned)words[i]); + cp += strlen(cp); + if (i != 7) + *cp++ = ':'; + } + } + *cp = '\0'; + if (strlen(buf) > len) + return NULL; + strlcpy(dst, buf, len); + return dst; +#endif + } else { + return NULL; + } +#endif +} + +int +evutil_inet_pton(int af, const char *src, void *dst) +{ +#if defined(EVENT__HAVE_INET_PTON) && !defined(USE_INTERNAL_PTON) + return inet_pton(af, src, dst); +#else + if (af == AF_INET) { + unsigned a,b,c,d; + char more; + struct in_addr *addr = dst; + if (sscanf(src, "%u.%u.%u.%u%c", &a,&b,&c,&d,&more) != 4) + return 0; + if (a > 255) return 0; + if (b > 255) return 0; + if (c > 255) return 0; + if (d > 255) return 0; + addr->s_addr = htonl((a<<24) | (b<<16) | (c<<8) | d); + return 1; +#ifdef AF_INET6 + } else if (af == AF_INET6) { + struct in6_addr *out = dst; + ev_uint16_t words[8]; + int gapPos = -1, i, setWords=0; + const char *dot = strchr(src, '.'); + const char *eow; /* end of words. */ + if (dot == src) + return 0; + else if (!dot) + eow = src+strlen(src); + else { + unsigned byte1,byte2,byte3,byte4; + char more; + for (eow = dot-1; eow >= src && EVUTIL_ISDIGIT_(*eow); --eow) + ; + ++eow; + + /* We use "scanf" because some platform inet_aton()s are too lax + * about IPv4 addresses of the form "1.2.3" */ + if (sscanf(eow, "%u.%u.%u.%u%c", + &byte1,&byte2,&byte3,&byte4,&more) != 4) + return 0; + + if (byte1 > 255 || + byte2 > 255 || + byte3 > 255 || + byte4 > 255) + return 0; + + words[6] = (byte1<<8) | byte2; + words[7] = (byte3<<8) | byte4; + setWords += 2; + } + + i = 0; + while (src < eow) { + if (i > 7) + return 0; + if (EVUTIL_ISXDIGIT_(*src)) { + char *next; + long r = strtol(src, &next, 16); + if (next > 4+src) + return 0; + if (next == src) + return 0; + if (r<0 || r>65536) + return 0; + + words[i++] = (ev_uint16_t)r; + setWords++; + src = next; + if (*src != ':' && src != eow) + return 0; + ++src; + } else if (*src == ':' && i > 0 && gapPos==-1) { + gapPos = i; + ++src; + } else if (*src == ':' && i == 0 && src[1] == ':' && gapPos==-1) { + gapPos = i; + src += 2; + } else { + return 0; + } + } + + if (setWords > 8 || + (setWords == 8 && gapPos != -1) || + (setWords < 8 && gapPos == -1)) + return 0; + + if (gapPos >= 0) { + int nToMove = setWords - (dot ? 2 : 0) - gapPos; + int gapLen = 8 - setWords; + /* assert(nToMove >= 0); */ + if (nToMove < 0) + return -1; /* should be impossible */ + memmove(&words[gapPos+gapLen], &words[gapPos], + sizeof(ev_uint16_t)*nToMove); + memset(&words[gapPos], 0, sizeof(ev_uint16_t)*gapLen); + } + for (i = 0; i < 8; ++i) { + out->s6_addr[2*i ] = words[i] >> 8; + out->s6_addr[2*i+1] = words[i] & 0xff; + } + + return 1; +#endif + } else { + return -1; + } +#endif +} + +int +evutil_parse_sockaddr_port(const char *ip_as_string, struct sockaddr *out, int *outlen) +{ + int port; + char buf[128]; + const char *cp, *addr_part, *port_part; + int is_ipv6; + /* recognized formats are: + * [ipv6]:port + * ipv6 + * [ipv6] + * ipv4:port + * ipv4 + */ + + cp = strchr(ip_as_string, ':'); + if (*ip_as_string == '[') { + size_t len; + if (!(cp = strchr(ip_as_string, ']'))) { + return -1; + } + len = ( cp-(ip_as_string + 1) ); + if (len > sizeof(buf)-1) { + return -1; + } + memcpy(buf, ip_as_string+1, len); + buf[len] = '\0'; + addr_part = buf; + if (cp[1] == ':') + port_part = cp+2; + else + port_part = NULL; + is_ipv6 = 1; + } else if (cp && strchr(cp+1, ':')) { + is_ipv6 = 1; + addr_part = ip_as_string; + port_part = NULL; + } else if (cp) { + is_ipv6 = 0; + if (cp - ip_as_string > (int)sizeof(buf)-1) { + return -1; + } + memcpy(buf, ip_as_string, cp-ip_as_string); + buf[cp-ip_as_string] = '\0'; + addr_part = buf; + port_part = cp+1; + } else { + addr_part = ip_as_string; + port_part = NULL; + is_ipv6 = 0; + } + + if (port_part == NULL) { + port = 0; + } else { + port = atoi(port_part); + if (port <= 0 || port > 65535) { + return -1; + } + } + + if (!addr_part) + return -1; /* Should be impossible. */ +#ifdef AF_INET6 + if (is_ipv6) + { + struct sockaddr_in6 sin6; + memset(&sin6, 0, sizeof(sin6)); +#ifdef EVENT__HAVE_STRUCT_SOCKADDR_IN6_SIN6_LEN + sin6.sin6_len = sizeof(sin6); +#endif + sin6.sin6_family = AF_INET6; + sin6.sin6_port = htons(port); + if (1 != evutil_inet_pton(AF_INET6, addr_part, &sin6.sin6_addr)) + return -1; + if ((int)sizeof(sin6) > *outlen) + return -1; + memset(out, 0, *outlen); + memcpy(out, &sin6, sizeof(sin6)); + *outlen = sizeof(sin6); + return 0; + } + else +#endif + { + struct sockaddr_in sin; + memset(&sin, 0, sizeof(sin)); +#ifdef EVENT__HAVE_STRUCT_SOCKADDR_IN_SIN_LEN + sin.sin_len = sizeof(sin); +#endif + sin.sin_family = AF_INET; + sin.sin_port = htons(port); + if (1 != evutil_inet_pton(AF_INET, addr_part, &sin.sin_addr)) + return -1; + if ((int)sizeof(sin) > *outlen) + return -1; + memset(out, 0, *outlen); + memcpy(out, &sin, sizeof(sin)); + *outlen = sizeof(sin); + return 0; + } +} + +const char * +evutil_format_sockaddr_port_(const struct sockaddr *sa, char *out, size_t outlen) +{ + char b[128]; + const char *res=NULL; + int port; + if (sa->sa_family == AF_INET) { + const struct sockaddr_in *sin = (const struct sockaddr_in*)sa; + res = evutil_inet_ntop(AF_INET, &sin->sin_addr,b,sizeof(b)); + port = ntohs(sin->sin_port); + if (res) { + evutil_snprintf(out, outlen, "%s:%d", b, port); + return out; + } + } else if (sa->sa_family == AF_INET6) { + const struct sockaddr_in6 *sin6 = (const struct sockaddr_in6*)sa; + res = evutil_inet_ntop(AF_INET6, &sin6->sin6_addr,b,sizeof(b)); + port = ntohs(sin6->sin6_port); + if (res) { + evutil_snprintf(out, outlen, "[%s]:%d", b, port); + return out; + } + } + + evutil_snprintf(out, outlen, "", + (int)sa->sa_family); + return out; +} + +int +evutil_sockaddr_cmp(const struct sockaddr *sa1, const struct sockaddr *sa2, + int include_port) +{ + int r; + if (0 != (r = (sa1->sa_family - sa2->sa_family))) + return r; + + if (sa1->sa_family == AF_INET) { + const struct sockaddr_in *sin1, *sin2; + sin1 = (const struct sockaddr_in *)sa1; + sin2 = (const struct sockaddr_in *)sa2; + if (sin1->sin_addr.s_addr < sin2->sin_addr.s_addr) + return -1; + else if (sin1->sin_addr.s_addr > sin2->sin_addr.s_addr) + return 1; + else if (include_port && + (r = ((int)sin1->sin_port - (int)sin2->sin_port))) + return r; + else + return 0; + } +#ifdef AF_INET6 + else if (sa1->sa_family == AF_INET6) { + const struct sockaddr_in6 *sin1, *sin2; + sin1 = (const struct sockaddr_in6 *)sa1; + sin2 = (const struct sockaddr_in6 *)sa2; + if ((r = memcmp(sin1->sin6_addr.s6_addr, sin2->sin6_addr.s6_addr, 16))) + return r; + else if (include_port && + (r = ((int)sin1->sin6_port - (int)sin2->sin6_port))) + return r; + else + return 0; + } +#endif + return 1; +} + +/* Tables to implement ctypes-replacement EVUTIL_IS*() functions. Each table + * has 256 bits to look up whether a character is in some set or not. This + * fails on non-ASCII platforms, but so does every other place where we + * take a char and write it onto the network. + **/ +static const ev_uint32_t EVUTIL_ISALPHA_TABLE[8] = + { 0, 0, 0x7fffffe, 0x7fffffe, 0, 0, 0, 0 }; +static const ev_uint32_t EVUTIL_ISALNUM_TABLE[8] = + { 0, 0x3ff0000, 0x7fffffe, 0x7fffffe, 0, 0, 0, 0 }; +static const ev_uint32_t EVUTIL_ISSPACE_TABLE[8] = { 0x3e00, 0x1, 0, 0, 0, 0, 0, 0 }; +static const ev_uint32_t EVUTIL_ISXDIGIT_TABLE[8] = + { 0, 0x3ff0000, 0x7e, 0x7e, 0, 0, 0, 0 }; +static const ev_uint32_t EVUTIL_ISDIGIT_TABLE[8] = { 0, 0x3ff0000, 0, 0, 0, 0, 0, 0 }; +static const ev_uint32_t EVUTIL_ISPRINT_TABLE[8] = + { 0, 0xffffffff, 0xffffffff, 0x7fffffff, 0, 0, 0, 0x0 }; +static const ev_uint32_t EVUTIL_ISUPPER_TABLE[8] = { 0, 0, 0x7fffffe, 0, 0, 0, 0, 0 }; +static const ev_uint32_t EVUTIL_ISLOWER_TABLE[8] = { 0, 0, 0, 0x7fffffe, 0, 0, 0, 0 }; +/* Upper-casing and lowercasing tables to map characters to upper/lowercase + * equivalents. */ +static const unsigned char EVUTIL_TOUPPER_TABLE[256] = { + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15, + 16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31, + 32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47, + 48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63, + 64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79, + 80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95, + 96,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79, + 80,81,82,83,84,85,86,87,88,89,90,123,124,125,126,127, + 128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143, + 144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,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,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,253,254,255, +}; +static const unsigned char EVUTIL_TOLOWER_TABLE[256] = { + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15, + 16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31, + 32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47, + 48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63, + 64,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111, + 112,113,114,115,116,117,118,119,120,121,122,91,92,93,94,95, + 96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111, + 112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127, + 128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143, + 144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,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,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,253,254,255, +}; + +#define IMPL_CTYPE_FN(name) \ + int EVUTIL_##name##_(char c) { \ + ev_uint8_t u = c; \ + return !!(EVUTIL_##name##_TABLE[(u >> 5) & 7] & (1 << (u & 31))); \ + } +IMPL_CTYPE_FN(ISALPHA) +IMPL_CTYPE_FN(ISALNUM) +IMPL_CTYPE_FN(ISSPACE) +IMPL_CTYPE_FN(ISDIGIT) +IMPL_CTYPE_FN(ISXDIGIT) +IMPL_CTYPE_FN(ISPRINT) +IMPL_CTYPE_FN(ISLOWER) +IMPL_CTYPE_FN(ISUPPER) + +char EVUTIL_TOLOWER_(char c) +{ + return ((char)EVUTIL_TOLOWER_TABLE[(ev_uint8_t)c]); +} +char EVUTIL_TOUPPER_(char c) +{ + return ((char)EVUTIL_TOUPPER_TABLE[(ev_uint8_t)c]); +} +int +evutil_ascii_strcasecmp(const char *s1, const char *s2) +{ + char c1, c2; + while (1) { + c1 = EVUTIL_TOLOWER_(*s1++); + c2 = EVUTIL_TOLOWER_(*s2++); + if (c1 < c2) + return -1; + else if (c1 > c2) + return 1; + else if (c1 == 0) + return 0; + } +} +int evutil_ascii_strncasecmp(const char *s1, const char *s2, size_t n) +{ + char c1, c2; + while (n--) { + c1 = EVUTIL_TOLOWER_(*s1++); + c2 = EVUTIL_TOLOWER_(*s2++); + if (c1 < c2) + return -1; + else if (c1 > c2) + return 1; + else if (c1 == 0) + return 0; + } + return 0; +} + +void +evutil_rtrim_lws_(char *str) +{ + char *cp; + + if (str == NULL) + return; + + if ((cp = strchr(str, '\0')) == NULL || (cp == str)) + return; + + --cp; + + while (*cp == ' ' || *cp == '\t') { + *cp = '\0'; + if (cp == str) + break; + --cp; + } +} + +static int +evutil_issetugid(void) +{ +#ifdef EVENT__HAVE_ISSETUGID + return issetugid(); +#else + +#ifdef EVENT__HAVE_GETEUID + if (getuid() != geteuid()) + return 1; +#endif +#ifdef EVENT__HAVE_GETEGID + if (getgid() != getegid()) + return 1; +#endif + return 0; +#endif +} + +const char * +evutil_getenv_(const char *varname) +{ + if (evutil_issetugid()) + return NULL; + + return getenv(varname); +} + +ev_uint32_t +evutil_weakrand_seed_(struct evutil_weakrand_state *state, ev_uint32_t seed) +{ + if (seed == 0) { + struct timeval tv; + evutil_gettimeofday(&tv, NULL); + seed = (ev_uint32_t)tv.tv_sec + (ev_uint32_t)tv.tv_usec; +#ifdef _WIN32 + seed += (ev_uint32_t) _getpid(); +#else + seed += (ev_uint32_t) getpid(); +#endif + } + state->seed = seed; + return seed; +} + +ev_int32_t +evutil_weakrand_(struct evutil_weakrand_state *state) +{ + /* This RNG implementation is a linear congruential generator, with + * modulus 2^31, multiplier 1103515245, and addend 12345. It's also + * used by OpenBSD, and by Glibc's TYPE_0 RNG. + * + * The linear congruential generator is not an industrial-strength + * RNG! It's fast, but it can have higher-order patterns. Notably, + * the low bits tend to have periodicity. + */ + state->seed = ((state->seed) * 1103515245 + 12345) & 0x7fffffff; + return (ev_int32_t)(state->seed); +} + +ev_int32_t +evutil_weakrand_range_(struct evutil_weakrand_state *state, ev_int32_t top) +{ + ev_int32_t divisor, result; + + /* We can't just do weakrand() % top, since the low bits of the LCG + * are less random than the high ones. (Specifically, since the LCG + * modulus is 2^N, every 2^m for m= top); + return result; +} + +/** + * Volatile pointer to memset: we use this to keep the compiler from + * eliminating our call to memset. + */ +void * (*volatile evutil_memset_volatile_)(void *, int, size_t) = memset; + +void +evutil_memclear_(void *mem, size_t len) +{ + evutil_memset_volatile_(mem, 0, len); +} + +int +evutil_sockaddr_is_loopback_(const struct sockaddr *addr) +{ + static const char LOOPBACK_S6[16] = + "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1"; + if (addr->sa_family == AF_INET) { + struct sockaddr_in *sin = (struct sockaddr_in *)addr; + return (ntohl(sin->sin_addr.s_addr) & 0xff000000) == 0x7f000000; + } else if (addr->sa_family == AF_INET6) { + struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)addr; + return !memcmp(sin6->sin6_addr.s6_addr, LOOPBACK_S6, 16); + } + return 0; +} + +int +evutil_hex_char_to_int_(char c) +{ + switch(c) + { + case '0': return 0; + case '1': return 1; + case '2': return 2; + case '3': return 3; + case '4': return 4; + case '5': return 5; + case '6': return 6; + case '7': return 7; + case '8': return 8; + case '9': return 9; + case 'A': case 'a': return 10; + case 'B': case 'b': return 11; + case 'C': case 'c': return 12; + case 'D': case 'd': return 13; + case 'E': case 'e': return 14; + case 'F': case 'f': return 15; + } + return -1; +} + +#ifdef _WIN32 +HMODULE +evutil_load_windows_system_library_(const TCHAR *library_name) +{ + TCHAR path[MAX_PATH]; + unsigned n; + n = GetSystemDirectory(path, MAX_PATH); + if (n == 0 || n + _tcslen(library_name) + 2 >= MAX_PATH) + return 0; + _tcscat(path, TEXT("\\")); + _tcscat(path, library_name); + return LoadLibrary(path); +} +#endif + +/* Internal wrapper around 'socket' to provide Linux-style support for + * syscall-saving methods where available. + * + * In addition to regular socket behavior, you can use a bitwise or to set the + * flags EVUTIL_SOCK_NONBLOCK and EVUTIL_SOCK_CLOEXEC in the 'type' argument, + * to make the socket nonblocking or close-on-exec with as few syscalls as + * possible. + */ +evutil_socket_t +evutil_socket_(int domain, int type, int protocol) +{ + evutil_socket_t r; +#if defined(SOCK_NONBLOCK) && defined(SOCK_CLOEXEC) + r = socket(domain, type, protocol); + if (r >= 0) + return r; + else if ((type & (SOCK_NONBLOCK|SOCK_CLOEXEC)) == 0) + return -1; +#endif +#define SOCKET_TYPE_MASK (~(EVUTIL_SOCK_NONBLOCK|EVUTIL_SOCK_CLOEXEC)) + r = socket(domain, type & SOCKET_TYPE_MASK, protocol); + if (r < 0) + return -1; + if (type & EVUTIL_SOCK_NONBLOCK) { + if (evutil_fast_socket_nonblocking(r) < 0) { + evutil_closesocket(r); + return -1; + } + } + if (type & EVUTIL_SOCK_CLOEXEC) { + if (evutil_fast_socket_closeonexec(r) < 0) { + evutil_closesocket(r); + return -1; + } + } + return r; +} + +/* Internal wrapper around 'accept' or 'accept4' to provide Linux-style + * support for syscall-saving methods where available. + * + * In addition to regular accept behavior, you can set one or more of flags + * EVUTIL_SOCK_NONBLOCK and EVUTIL_SOCK_CLOEXEC in the 'flags' argument, to + * make the socket nonblocking or close-on-exec with as few syscalls as + * possible. + */ +evutil_socket_t +evutil_accept4_(evutil_socket_t sockfd, struct sockaddr *addr, + ev_socklen_t *addrlen, int flags) +{ + evutil_socket_t result; +#if defined(EVENT__HAVE_ACCEPT4) && defined(SOCK_CLOEXEC) && defined(SOCK_NONBLOCK) + result = accept4(sockfd, addr, addrlen, flags); + if (result >= 0 || (errno != EINVAL && errno != ENOSYS)) { + /* A nonnegative result means that we succeeded, so return. + * Failing with EINVAL means that an option wasn't supported, + * and failing with ENOSYS means that the syscall wasn't + * there: in those cases we want to fall back. Otherwise, we + * got a real error, and we should return. */ + return result; + } +#endif + result = accept(sockfd, addr, addrlen); + if (result < 0) + return result; + + if (flags & EVUTIL_SOCK_CLOEXEC) { + if (evutil_fast_socket_closeonexec(result) < 0) { + evutil_closesocket(result); + return -1; + } + } + if (flags & EVUTIL_SOCK_NONBLOCK) { + if (evutil_fast_socket_nonblocking(result) < 0) { + evutil_closesocket(result); + return -1; + } + } + return result; +} + +/* Internal function: Set fd[0] and fd[1] to a pair of fds such that writes on + * fd[0] get read from fd[1]. Make both fds nonblocking and close-on-exec. + * Return 0 on success, -1 on failure. + */ +int +evutil_make_internal_pipe_(evutil_socket_t fd[2]) +{ + /* + Making the second socket nonblocking is a bit subtle, given that we + ignore any EAGAIN returns when writing to it, and you don't usally + do that for a nonblocking socket. But if the kernel gives us EAGAIN, + then there's no need to add any more data to the buffer, since + the main thread is already either about to wake up and drain it, + or woken up and in the process of draining it. + */ + +#if defined(EVENT__HAVE_PIPE2) + if (pipe2(fd, O_NONBLOCK|O_CLOEXEC) == 0) + return 0; +#endif +#if defined(EVENT__HAVE_PIPE) + if (pipe(fd) == 0) { + if (evutil_fast_socket_nonblocking(fd[0]) < 0 || + evutil_fast_socket_nonblocking(fd[1]) < 0 || + evutil_fast_socket_closeonexec(fd[0]) < 0 || + evutil_fast_socket_closeonexec(fd[1]) < 0) { + close(fd[0]); + close(fd[1]); + fd[0] = fd[1] = -1; + return -1; + } + return 0; + } else { + event_warn("%s: pipe", __func__); + } +#endif + +#ifdef _WIN32 +#define LOCAL_SOCKETPAIR_AF AF_INET +#else +#define LOCAL_SOCKETPAIR_AF AF_UNIX +#endif + if (evutil_socketpair(LOCAL_SOCKETPAIR_AF, SOCK_STREAM, 0, fd) == 0) { + if (evutil_fast_socket_nonblocking(fd[0]) < 0 || + evutil_fast_socket_nonblocking(fd[1]) < 0 || + evutil_fast_socket_closeonexec(fd[0]) < 0 || + evutil_fast_socket_closeonexec(fd[1]) < 0) { + evutil_closesocket(fd[0]); + evutil_closesocket(fd[1]); + fd[0] = fd[1] = -1; + return -1; + } + return 0; + } + fd[0] = fd[1] = -1; + return -1; +} + +/* Wrapper around eventfd on systems that provide it. Unlike the system + * eventfd, it always supports EVUTIL_EFD_CLOEXEC and EVUTIL_EFD_NONBLOCK as + * flags. Returns -1 on error or if eventfd is not supported. + */ +evutil_socket_t +evutil_eventfd_(unsigned initval, int flags) +{ +#if defined(EVENT__HAVE_EVENTFD) && defined(EVENT__HAVE_SYS_EVENTFD_H) + int r; +#if defined(EFD_CLOEXEC) && defined(EFD_NONBLOCK) + r = eventfd(initval, flags); + if (r >= 0 || flags == 0) + return r; +#endif + r = eventfd(initval, 0); + if (r < 0) + return r; + if (flags & EVUTIL_EFD_CLOEXEC) { + if (evutil_fast_socket_closeonexec(r) < 0) { + evutil_closesocket(r); + return -1; + } + } + if (flags & EVUTIL_EFD_NONBLOCK) { + if (evutil_fast_socket_nonblocking(r) < 0) { + evutil_closesocket(r); + return -1; + } + } + return r; +#else + return -1; +#endif +} + +void +evutil_free_globals_(void) +{ + evutil_free_secure_rng_globals_(); + evutil_free_sock_err_globals(); +} diff -Nru mysql-5.7-5.7.25/extra/libevent/evutil_rand.c mysql-5.7-5.7.26/extra/libevent/evutil_rand.c --- mysql-5.7-5.7.25/extra/libevent/evutil_rand.c 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/evutil_rand.c 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,199 @@ +/* + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ + +/* This file has our secure PRNG code. On platforms that have arc4random(), + * we just use that. Otherwise, we include arc4random.c as a bunch of static + * functions, and wrap it lightly. We don't expose the arc4random*() APIs + * because A) they aren't in our namespace, and B) it's not nice to name your + * APIs after their implementations. We keep them in a separate file + * so that other people can rip it out and use it for whatever. + */ + +#include "event2/event-config.h" +#include "evconfig-private.h" + +#include + +#include "util-internal.h" +#include "evthread-internal.h" + +#ifdef EVENT__HAVE_ARC4RANDOM +#include +#include +int +evutil_secure_rng_set_urandom_device_file(char *fname) +{ + (void) fname; + return -1; +} +int +evutil_secure_rng_init(void) +{ + /* call arc4random() now to force it to self-initialize */ + (void) arc4random(); + return 0; +} +#ifndef EVENT__DISABLE_THREAD_SUPPORT +int +evutil_secure_rng_global_setup_locks_(const int enable_locks) +{ + return 0; +} +#endif +static void +evutil_free_secure_rng_globals_locks(void) +{ +} + +static void +ev_arc4random_buf(void *buf, size_t n) +{ +#if defined(EVENT__HAVE_ARC4RANDOM_BUF) && !defined(__APPLE__) + arc4random_buf(buf, n); + return; +#else + unsigned char *b = buf; + +#if defined(EVENT__HAVE_ARC4RANDOM_BUF) + /* OSX 10.7 introducd arc4random_buf, so if you build your program + * there, you'll get surprised when older versions of OSX fail to run. + * To solve this, we can check whether the function pointer is set, + * and fall back otherwise. (OSX does this using some linker + * trickery.) + */ + { + void (*tptr)(void *,size_t) = + (void (*)(void*,size_t))arc4random_buf; + if (tptr != NULL) { + arc4random_buf(buf, n); + return; + } + } +#endif + /* Make sure that we start out with b at a 4-byte alignment; plenty + * of CPUs care about this for 32-bit access. */ + if (n >= 4 && ((ev_uintptr_t)b) & 3) { + ev_uint32_t u = arc4random(); + int n_bytes = 4 - (((ev_uintptr_t)b) & 3); + memcpy(b, &u, n_bytes); + b += n_bytes; + n -= n_bytes; + } + while (n >= 4) { + *(ev_uint32_t*)b = arc4random(); + b += 4; + n -= 4; + } + if (n) { + ev_uint32_t u = arc4random(); + memcpy(b, &u, n); + } +#endif +} + +#else /* !EVENT__HAVE_ARC4RANDOM { */ + +#ifdef EVENT__ssize_t +#define ssize_t EVENT__ssize_t +#endif +#define ARC4RANDOM_EXPORT static +#define ARC4_LOCK_() EVLOCK_LOCK(arc4rand_lock, 0) +#define ARC4_UNLOCK_() EVLOCK_UNLOCK(arc4rand_lock, 0) +#ifndef EVENT__DISABLE_THREAD_SUPPORT +static void *arc4rand_lock; +#endif + +#define ARC4RANDOM_UINT32 ev_uint32_t +#define ARC4RANDOM_NOSTIR +#define ARC4RANDOM_NORANDOM +#define ARC4RANDOM_NOUNIFORM + +#include "./arc4random.c" + +#ifndef EVENT__DISABLE_THREAD_SUPPORT +int +evutil_secure_rng_global_setup_locks_(const int enable_locks) +{ + EVTHREAD_SETUP_GLOBAL_LOCK(arc4rand_lock, 0); + return 0; +} +#endif + +static void +evutil_free_secure_rng_globals_locks(void) +{ +#ifndef EVENT__DISABLE_THREAD_SUPPORT + if (arc4rand_lock != NULL) { + EVTHREAD_FREE_LOCK(arc4rand_lock, 0); + arc4rand_lock = NULL; + } +#endif + return; +} + +int +evutil_secure_rng_set_urandom_device_file(char *fname) +{ +#ifdef TRY_SEED_URANDOM + ARC4_LOCK_(); + arc4random_urandom_filename = fname; + ARC4_UNLOCK_(); +#endif + return 0; +} + +int +evutil_secure_rng_init(void) +{ + int val; + + ARC4_LOCK_(); + if (!arc4_seeded_ok) + arc4_stir(); + val = arc4_seeded_ok ? 0 : -1; + ARC4_UNLOCK_(); + return val; +} + +static void +ev_arc4random_buf(void *buf, size_t n) +{ + arc4random_buf(buf, n); +} + +#endif /* } !EVENT__HAVE_ARC4RANDOM */ + +void +evutil_secure_rng_get_bytes(void *buf, size_t n) +{ + ev_arc4random_buf(buf, n); +} + +void +evutil_free_secure_rng_globals_(void) +{ + evutil_free_secure_rng_globals_locks(); +} diff -Nru mysql-5.7-5.7.25/extra/libevent/evutil_time.c mysql-5.7-5.7.26/extra/libevent/evutil_time.c --- mysql-5.7-5.7.25/extra/libevent/evutil_time.c 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/evutil_time.c 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,576 @@ +/* + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ + +#include "event2/event-config.h" +#include "evconfig-private.h" + +#ifdef _WIN32 +#include +#define WIN32_LEAN_AND_MEAN +#include +#undef WIN32_LEAN_AND_MEAN +#endif + +#include +#ifdef EVENT__HAVE_STDLIB_H +#include +#endif +#include +#include +#ifndef EVENT__HAVE_GETTIMEOFDAY +#include +#endif +#if !defined(EVENT__HAVE_NANOSLEEP) && !defined(EVENT_HAVE_USLEEP) && \ + !defined(_WIN32) +#include +#endif +#include +#include +#include + +/** evutil_usleep_() */ +#if defined(_WIN32) +#elif defined(EVENT__HAVE_NANOSLEEP) +#elif defined(EVENT__HAVE_USLEEP) +#include +#endif + +#include "event2/util.h" +#include "util-internal.h" +#include "log-internal.h" +#include "mm-internal.h" + +#ifndef EVENT__HAVE_GETTIMEOFDAY +/* No gettimeofday; this must be windows. */ +int +evutil_gettimeofday(struct timeval *tv, struct timezone *tz) +{ +#ifdef _MSC_VER +#define U64_LITERAL(n) n##ui64 +#else +#define U64_LITERAL(n) n##llu +#endif + + /* Conversion logic taken from Tor, which in turn took it + * from Perl. GetSystemTimeAsFileTime returns its value as + * an unaligned (!) 64-bit value containing the number of + * 100-nanosecond intervals since 1 January 1601 UTC. */ +#define EPOCH_BIAS U64_LITERAL(116444736000000000) +#define UNITS_PER_SEC U64_LITERAL(10000000) +#define USEC_PER_SEC U64_LITERAL(1000000) +#define UNITS_PER_USEC U64_LITERAL(10) + union { + FILETIME ft_ft; + ev_uint64_t ft_64; + } ft; + + if (tv == NULL) + return -1; + + GetSystemTimeAsFileTime(&ft.ft_ft); + + if (EVUTIL_UNLIKELY(ft.ft_64 < EPOCH_BIAS)) { + /* Time before the unix epoch. */ + return -1; + } + ft.ft_64 -= EPOCH_BIAS; + tv->tv_sec = (long) (ft.ft_64 / UNITS_PER_SEC); + tv->tv_usec = (long) ((ft.ft_64 / UNITS_PER_USEC) % USEC_PER_SEC); + return 0; +} +#endif + +#define MAX_SECONDS_IN_MSEC_LONG \ + (((LONG_MAX) - 999) / 1000) + +long +evutil_tv_to_msec_(const struct timeval *tv) +{ + if (tv->tv_usec > 1000000 || tv->tv_sec > MAX_SECONDS_IN_MSEC_LONG) + return -1; + + return (tv->tv_sec * 1000) + ((tv->tv_usec + 999) / 1000); +} + +/* + Replacement for usleep on platforms that don't have one. Not guaranteed to + be any more finegrained than 1 msec. + */ +void +evutil_usleep_(const struct timeval *tv) +{ + if (!tv) + return; +#if defined(_WIN32) + { + long msec = evutil_tv_to_msec_(tv); + Sleep((DWORD)msec); + } +#elif defined(EVENT__HAVE_NANOSLEEP) + { + struct timespec ts; + ts.tv_sec = tv->tv_sec; + ts.tv_nsec = tv->tv_usec*1000; + nanosleep(&ts, NULL); + } +#elif defined(EVENT__HAVE_USLEEP) + /* Some systems don't like to usleep more than 999999 usec */ + sleep(tv->tv_sec); + usleep(tv->tv_usec); +#else + select(0, NULL, NULL, NULL, tv); +#endif +} + +int +evutil_date_rfc1123(char *date, const size_t datelen, const struct tm *tm) +{ + static const char *DAYS[] = + { "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" }; + static const char *MONTHS[] = + { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" }; + + time_t t = time(NULL); + +#ifndef _WIN32 + struct tm sys; +#endif + + /* If `tm` is null, set system's current time. */ + if (tm == NULL) { +#ifdef _WIN32 + /** TODO: detect _gmtime64()/_gmtime64_s() */ + tm = gmtime(&t); +#else + gmtime_r(&t, &sys); + tm = &sys; +#endif + } + + return evutil_snprintf( + date, datelen, "%s, %02d %s %4d %02d:%02d:%02d GMT", + DAYS[tm->tm_wday], tm->tm_mday, MONTHS[tm->tm_mon], + 1900 + tm->tm_year, tm->tm_hour, tm->tm_min, tm->tm_sec); +} + +/* + This function assumes it's called repeatedly with a + not-actually-so-monotonic time source whose outputs are in 'tv'. It + implements a trivial ratcheting mechanism so that the values never go + backwards. + */ +static void +adjust_monotonic_time(struct evutil_monotonic_timer *base, + struct timeval *tv) +{ + evutil_timeradd(tv, &base->adjust_monotonic_clock, tv); + + if (evutil_timercmp(tv, &base->last_time, <)) { + /* Guess it wasn't monotonic after all. */ + struct timeval adjust; + evutil_timersub(&base->last_time, tv, &adjust); + evutil_timeradd(&adjust, &base->adjust_monotonic_clock, + &base->adjust_monotonic_clock); + *tv = base->last_time; + } + base->last_time = *tv; +} + +/* + Allocate a new struct evutil_monotonic_timer + */ +struct evutil_monotonic_timer * +evutil_monotonic_timer_new(void) +{ + struct evutil_monotonic_timer *p = NULL; + + p = mm_malloc(sizeof(*p)); + if (!p) goto done; + + memset(p, 0, sizeof(*p)); + + done: + return p; +} + +/* + Free a struct evutil_monotonic_timer + */ +void +evutil_monotonic_timer_free(struct evutil_monotonic_timer *timer) +{ + if (timer) { + mm_free(timer); + } +} + +/* + Set up a struct evutil_monotonic_timer for initial use + */ +int +evutil_configure_monotonic_time(struct evutil_monotonic_timer *timer, + int flags) +{ + return evutil_configure_monotonic_time_(timer, flags); +} + +/* + Query the current monotonic time + */ +int +evutil_gettime_monotonic(struct evutil_monotonic_timer *timer, + struct timeval *tp) +{ + return evutil_gettime_monotonic_(timer, tp); +} + + +#if defined(HAVE_POSIX_MONOTONIC) +/* ===== + The POSIX clock_gettime() interface provides a few ways to get at a + monotonic clock. CLOCK_MONOTONIC is most widely supported. Linux also + provides a CLOCK_MONOTONIC_COARSE with accuracy of about 1-4 msec. + + On all platforms I'm aware of, CLOCK_MONOTONIC really is monotonic. + Platforms don't agree about whether it should jump on a sleep/resume. + */ + +int +evutil_configure_monotonic_time_(struct evutil_monotonic_timer *base, + int flags) +{ + /* CLOCK_MONOTONIC exists on FreeBSD, Linux, and Solaris. You need to + * check for it at runtime, because some older kernel versions won't + * have it working. */ +#ifdef CLOCK_MONOTONIC_COARSE + const int precise = flags & EV_MONOT_PRECISE; +#endif + const int fallback = flags & EV_MONOT_FALLBACK; + struct timespec ts; + +#ifdef CLOCK_MONOTONIC_COARSE + if (CLOCK_MONOTONIC_COARSE < 0) { + /* Technically speaking, nothing keeps CLOCK_* from being + * negative (as far as I know). This check and the one below + * make sure that it's safe for us to use -1 as an "unset" + * value. */ + event_errx(1,"I didn't expect CLOCK_MONOTONIC_COARSE to be < 0"); + } + if (! precise && ! fallback) { + if (clock_gettime(CLOCK_MONOTONIC_COARSE, &ts) == 0) { + base->monotonic_clock = CLOCK_MONOTONIC_COARSE; + return 0; + } + } +#endif + if (!fallback && clock_gettime(CLOCK_MONOTONIC, &ts) == 0) { + base->monotonic_clock = CLOCK_MONOTONIC; + return 0; + } + + if (CLOCK_MONOTONIC < 0) { + event_errx(1,"I didn't expect CLOCK_MONOTONIC to be < 0"); + } + + base->monotonic_clock = -1; + return 0; +} + +int +evutil_gettime_monotonic_(struct evutil_monotonic_timer *base, + struct timeval *tp) +{ + struct timespec ts; + + if (base->monotonic_clock < 0) { + if (evutil_gettimeofday(tp, NULL) < 0) + return -1; + adjust_monotonic_time(base, tp); + return 0; + } + + if (clock_gettime(base->monotonic_clock, &ts) == -1) + return -1; + tp->tv_sec = ts.tv_sec; + tp->tv_usec = ts.tv_nsec / 1000; + + return 0; +} +#endif + +#if defined(HAVE_MACH_MONOTONIC) +/* ====== + Apple is a little late to the POSIX party. And why not? Instead of + clock_gettime(), they provide mach_absolute_time(). Its units are not + fixed; we need to use mach_timebase_info() to get the right functions to + convert its units into nanoseconds. + + To all appearances, mach_absolute_time() seems to be honest-to-goodness + monotonic. Whether it stops during sleep or not is unspecified in + principle, and dependent on CPU architecture in practice. + */ + +int +evutil_configure_monotonic_time_(struct evutil_monotonic_timer *base, + int flags) +{ + const int fallback = flags & EV_MONOT_FALLBACK; + struct mach_timebase_info mi; + memset(base, 0, sizeof(*base)); + /* OSX has mach_absolute_time() */ + if (!fallback && + mach_timebase_info(&mi) == 0 && + mach_absolute_time() != 0) { + /* mach_timebase_info tells us how to convert + * mach_absolute_time() into nanoseconds, but we + * want to use microseconds instead. */ + mi.denom *= 1000; + memcpy(&base->mach_timebase_units, &mi, sizeof(mi)); + } else { + base->mach_timebase_units.numer = 0; + } + return 0; +} + +int +evutil_gettime_monotonic_(struct evutil_monotonic_timer *base, + struct timeval *tp) +{ + ev_uint64_t abstime, usec; + if (base->mach_timebase_units.numer == 0) { + if (evutil_gettimeofday(tp, NULL) < 0) + return -1; + adjust_monotonic_time(base, tp); + return 0; + } + + abstime = mach_absolute_time(); + usec = (abstime * base->mach_timebase_units.numer) + / (base->mach_timebase_units.denom); + tp->tv_sec = usec / 1000000; + tp->tv_usec = usec % 1000000; + + return 0; +} +#endif + +#if defined(HAVE_WIN32_MONOTONIC) +/* ===== + Turn we now to Windows. Want monontonic time on Windows? + + Windows has QueryPerformanceCounter(), which gives time most high- + resolution time. It's a pity it's not so monotonic in practice; it's + also got some fun bugs, especially: with older Windowses, under + virtualizations, with funny hardware, on multiprocessor systems, and so + on. PEP418 [1] has a nice roundup of the issues here. + + There's GetTickCount64() on Vista and later, which gives a number of 1-msec + ticks since startup. The accuracy here might be as bad as 10-20 msec, I + hear. There's an undocumented function (NtSetTimerResolution) that + allegedly increases the accuracy. Good luck! + + There's also GetTickCount(), which is only 32 bits, but seems to be + supported on pre-Vista versions of Windows. Apparently, you can coax + another 14 bits out of it, giving you 2231 years before rollover. + + The less said about timeGetTime() the better. + + "We don't care. We don't have to. We're the Phone Company." + -- Lily Tomlin, SNL + + Our strategy, if precise timers are turned off, is to just use the best + GetTickCount equivalent available. If we've been asked for precise timing, + then we mostly[2] assume that GetTickCount is monotonic, and correct + GetPerformanceCounter to approximate it. + + [1] http://www.python.org/dev/peps/pep-0418 + [2] Of course, we feed the Windows stuff into adjust_monotonic_time() + anyway, just in case it isn't. + + */ +/* + Parts of our logic in the win32 timer code here are closely based on + BitTorrent's libUTP library. That code is subject to the following + license: + + Copyright (c) 2010 BitTorrent, Inc. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +*/ + +static ev_uint64_t +evutil_GetTickCount_(struct evutil_monotonic_timer *base) +{ + if (base->GetTickCount64_fn) { + /* Let's just use GetTickCount64 if we can. */ + return base->GetTickCount64_fn(); + } else if (base->GetTickCount_fn) { + /* Greg Hazel assures me that this works, that BitTorrent has + * done it for years, and this it won't turn around and + * bite us. He says they found it on some game programmers' + * forum some time around 2007. + */ + ev_uint64_t v = base->GetTickCount_fn(); + return (DWORD)v | ((v >> 18) & 0xFFFFFFFF00000000); + } else { + /* Here's the fallback implementation. We have to use + * GetTickCount() with its given signature, so we only get + * 32 bits worth of milliseconds, which will roll ove every + * 49 days or so. */ + DWORD ticks = GetTickCount(); + if (ticks < base->last_tick_count) { + base->adjust_tick_count += ((ev_uint64_t)1) << 32; + } + base->last_tick_count = ticks; + return ticks + base->adjust_tick_count; + } +} + +int +evutil_configure_monotonic_time_(struct evutil_monotonic_timer *base, + int flags) +{ + const int precise = flags & EV_MONOT_PRECISE; + const int fallback = flags & EV_MONOT_FALLBACK; + HANDLE h; + memset(base, 0, sizeof(*base)); + + h = evutil_load_windows_system_library_(TEXT("kernel32.dll")); + if (h != NULL && !fallback) { + base->GetTickCount64_fn = (ev_GetTickCount_func)GetProcAddress(h, "GetTickCount64"); + base->GetTickCount_fn = (ev_GetTickCount_func)GetProcAddress(h, "GetTickCount"); + } + + base->first_tick = base->last_tick_count = evutil_GetTickCount_(base); + if (precise && !fallback) { + LARGE_INTEGER freq; + if (QueryPerformanceFrequency(&freq)) { + LARGE_INTEGER counter; + QueryPerformanceCounter(&counter); + base->first_counter = counter.QuadPart; + base->usec_per_count = 1.0e6 / freq.QuadPart; + base->use_performance_counter = 1; + } + } + + return 0; +} + +static inline ev_int64_t +abs64(ev_int64_t i) +{ + return i < 0 ? -i : i; +} + + +int +evutil_gettime_monotonic_(struct evutil_monotonic_timer *base, + struct timeval *tp) +{ + ev_uint64_t ticks = evutil_GetTickCount_(base); + if (base->use_performance_counter) { + /* Here's a trick we took from BitTorrent's libutp, at Greg + * Hazel's recommendation. We use QueryPerformanceCounter for + * our high-resolution timer, but use GetTickCount*() to keep + * it sane, and adjust_monotonic_time() to keep it monotonic. + */ + LARGE_INTEGER counter; + ev_int64_t counter_elapsed, counter_usec_elapsed, ticks_elapsed; + QueryPerformanceCounter(&counter); + counter_elapsed = (ev_int64_t) + (counter.QuadPart - base->first_counter); + ticks_elapsed = ticks - base->first_tick; + /* TODO: This may upset VC6. If you need this to work with + * VC6, please supply an appropriate patch. */ + counter_usec_elapsed = (ev_int64_t) + (counter_elapsed * base->usec_per_count); + + if (abs64(ticks_elapsed*1000 - counter_usec_elapsed) > 1000000) { + /* It appears that the QueryPerformanceCounter() + * result is more than 1 second away from + * GetTickCount() result. Let's adjust it to be as + * accurate as we can; adjust_monotnonic_time() below + * will keep it monotonic. */ + counter_usec_elapsed = ticks_elapsed * 1000; + base->first_counter = (ev_uint64_t) (counter.QuadPart - counter_usec_elapsed / base->usec_per_count); + } + tp->tv_sec = (time_t) (counter_usec_elapsed / 1000000); + tp->tv_usec = counter_usec_elapsed % 1000000; + + } else { + /* We're just using GetTickCount(). */ + tp->tv_sec = (time_t) (ticks / 1000); + tp->tv_usec = (ticks % 1000) * 1000; + } + adjust_monotonic_time(base, tp); + + return 0; +} +#endif + +#if defined(HAVE_FALLBACK_MONOTONIC) +/* ===== + And if none of the other options work, let's just use gettimeofday(), and + ratchet it forward so that it acts like a monotonic timer, whether it + wants to or not. + */ + +int +evutil_configure_monotonic_time_(struct evutil_monotonic_timer *base, + int precise) +{ + memset(base, 0, sizeof(*base)); + return 0; +} + +int +evutil_gettime_monotonic_(struct evutil_monotonic_timer *base, + struct timeval *tp) +{ + if (evutil_gettimeofday(tp, NULL) < 0) + return -1; + adjust_monotonic_time(base, tp); + return 0; + +} +#endif diff -Nru mysql-5.7-5.7.25/extra/libevent/ht-internal.h mysql-5.7-5.7.26/extra/libevent/ht-internal.h --- mysql-5.7-5.7.25/extra/libevent/ht-internal.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/ht-internal.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,487 @@ +/* Copyright 2002 Christopher Clark */ +/* Copyright 2005-2012 Nick Mathewson */ +/* Copyright 2009-2012 Niels Provos and Nick Mathewson */ +/* See license at end. */ + +/* Based on ideas by Christopher Clark and interfaces from Niels Provos. */ + +#ifndef HT_INTERNAL_H_INCLUDED_ +#define HT_INTERNAL_H_INCLUDED_ + +#define HT_HEAD(name, type) \ + struct name { \ + /* The hash table itself. */ \ + struct type **hth_table; \ + /* How long is the hash table? */ \ + unsigned hth_table_length; \ + /* How many elements does the table contain? */ \ + unsigned hth_n_entries; \ + /* How many elements will we allow in the table before resizing it? */ \ + unsigned hth_load_limit; \ + /* Position of hth_table_length in the primes table. */ \ + int hth_prime_idx; \ + } + +#define HT_INITIALIZER() \ + { NULL, 0, 0, 0, -1 } + +#ifdef HT_NO_CACHE_HASH_VALUES +#define HT_ENTRY(type) \ + struct { \ + struct type *hte_next; \ + } +#else +#define HT_ENTRY(type) \ + struct { \ + struct type *hte_next; \ + unsigned hte_hash; \ + } +#endif + +#define HT_EMPTY(head) \ + ((head)->hth_n_entries == 0) + +/* How many elements in 'head'? */ +#define HT_SIZE(head) \ + ((head)->hth_n_entries) + +/* Return memory usage for a hashtable (not counting the entries themselves) */ +#define HT_MEM_USAGE(head) \ + (sizeof(*head) + (head)->hth_table_length * sizeof(void*)) + +#define HT_FIND(name, head, elm) name##_HT_FIND((head), (elm)) +#define HT_INSERT(name, head, elm) name##_HT_INSERT((head), (elm)) +#define HT_REPLACE(name, head, elm) name##_HT_REPLACE((head), (elm)) +#define HT_REMOVE(name, head, elm) name##_HT_REMOVE((head), (elm)) +#define HT_START(name, head) name##_HT_START(head) +#define HT_NEXT(name, head, elm) name##_HT_NEXT((head), (elm)) +#define HT_NEXT_RMV(name, head, elm) name##_HT_NEXT_RMV((head), (elm)) +#define HT_CLEAR(name, head) name##_HT_CLEAR(head) +#define HT_INIT(name, head) name##_HT_INIT(head) +/* Helper: */ +static inline unsigned +ht_improve_hash_(unsigned h) +{ + /* Aim to protect against poor hash functions by adding logic here + * - logic taken from java 1.4 hashtable source */ + h += ~(h << 9); + h ^= ((h >> 14) | (h << 18)); /* >>> */ + h += (h << 4); + h ^= ((h >> 10) | (h << 22)); /* >>> */ + return h; +} + +#if 0 +/** Basic string hash function, from Java standard String.hashCode(). */ +static inline unsigned +ht_string_hash_(const char *s) +{ + unsigned h = 0; + int m = 1; + while (*s) { + h += ((signed char)*s++)*m; + m = (m<<5)-1; /* m *= 31 */ + } + return h; +} +#endif + +/** Basic string hash function, from Python's str.__hash__() */ +static inline unsigned +ht_string_hash_(const char *s) +{ + unsigned h; + const unsigned char *cp = (const unsigned char *)s; + h = *cp << 7; + while (*cp) { + h = (1000003*h) ^ *cp++; + } + /* This conversion truncates the length of the string, but that's ok. */ + h ^= (unsigned)(cp-(const unsigned char*)s); + return h; +} + +#ifndef HT_NO_CACHE_HASH_VALUES +#define HT_SET_HASH_(elm, field, hashfn) \ + do { (elm)->field.hte_hash = hashfn(elm); } while (0) +#define HT_SET_HASHVAL_(elm, field, val) \ + do { (elm)->field.hte_hash = (val); } while (0) +#define HT_ELT_HASH_(elm, field, hashfn) \ + ((elm)->field.hte_hash) +#else +#define HT_SET_HASH_(elm, field, hashfn) \ + ((void)0) +#define HT_ELT_HASH_(elm, field, hashfn) \ + (hashfn(elm)) +#define HT_SET_HASHVAL_(elm, field, val) \ + ((void)0) +#endif + +/* Helper: alias for the bucket containing 'elm'. */ +#define HT_BUCKET_(head, field, elm, hashfn) \ + ((head)->hth_table[HT_ELT_HASH_(elm,field,hashfn) % head->hth_table_length]) + +#define HT_FOREACH(x, name, head) \ + for ((x) = HT_START(name, head); \ + (x) != NULL; \ + (x) = HT_NEXT(name, head, x)) + +#define HT_PROTOTYPE(name, type, field, hashfn, eqfn) \ + int name##_HT_GROW(struct name *ht, unsigned min_capacity); \ + void name##_HT_CLEAR(struct name *ht); \ + int name##_HT_REP_IS_BAD_(const struct name *ht); \ + static inline void \ + name##_HT_INIT(struct name *head) { \ + head->hth_table_length = 0; \ + head->hth_table = NULL; \ + head->hth_n_entries = 0; \ + head->hth_load_limit = 0; \ + head->hth_prime_idx = -1; \ + } \ + /* Helper: returns a pointer to the right location in the table \ + * 'head' to find or insert the element 'elm'. */ \ + static inline struct type ** \ + name##_HT_FIND_P_(struct name *head, struct type *elm) \ + { \ + struct type **p; \ + if (!head->hth_table) \ + return NULL; \ + p = &HT_BUCKET_(head, field, elm, hashfn); \ + while (*p) { \ + if (eqfn(*p, elm)) \ + return p; \ + p = &(*p)->field.hte_next; \ + } \ + return p; \ + } \ + /* Return a pointer to the element in the table 'head' matching 'elm', \ + * or NULL if no such element exists */ \ + static inline struct type * \ + name##_HT_FIND(const struct name *head, struct type *elm) \ + { \ + struct type **p; \ + struct name *h = (struct name *) head; \ + HT_SET_HASH_(elm, field, hashfn); \ + p = name##_HT_FIND_P_(h, elm); \ + return p ? *p : NULL; \ + } \ + /* Insert the element 'elm' into the table 'head'. Do not call this \ + * function if the table might already contain a matching element. */ \ + static inline void \ + name##_HT_INSERT(struct name *head, struct type *elm) \ + { \ + struct type **p; \ + if (!head->hth_table || head->hth_n_entries >= head->hth_load_limit) \ + name##_HT_GROW(head, head->hth_n_entries+1); \ + ++head->hth_n_entries; \ + HT_SET_HASH_(elm, field, hashfn); \ + p = &HT_BUCKET_(head, field, elm, hashfn); \ + elm->field.hte_next = *p; \ + *p = elm; \ + } \ + /* Insert the element 'elm' into the table 'head'. If there already \ + * a matching element in the table, replace that element and return \ + * it. */ \ + static inline struct type * \ + name##_HT_REPLACE(struct name *head, struct type *elm) \ + { \ + struct type **p, *r; \ + if (!head->hth_table || head->hth_n_entries >= head->hth_load_limit) \ + name##_HT_GROW(head, head->hth_n_entries+1); \ + HT_SET_HASH_(elm, field, hashfn); \ + p = name##_HT_FIND_P_(head, elm); \ + r = *p; \ + *p = elm; \ + if (r && (r!=elm)) { \ + elm->field.hte_next = r->field.hte_next; \ + r->field.hte_next = NULL; \ + return r; \ + } else { \ + ++head->hth_n_entries; \ + return NULL; \ + } \ + } \ + /* Remove any element matching 'elm' from the table 'head'. If such \ + * an element is found, return it; otherwise return NULL. */ \ + static inline struct type * \ + name##_HT_REMOVE(struct name *head, struct type *elm) \ + { \ + struct type **p, *r; \ + HT_SET_HASH_(elm, field, hashfn); \ + p = name##_HT_FIND_P_(head,elm); \ + if (!p || !*p) \ + return NULL; \ + r = *p; \ + *p = r->field.hte_next; \ + r->field.hte_next = NULL; \ + --head->hth_n_entries; \ + return r; \ + } \ + /* Invoke the function 'fn' on every element of the table 'head', \ + * using 'data' as its second argument. If the function returns \ + * nonzero, remove the most recently examined element before invoking \ + * the function again. */ \ + static inline void \ + name##_HT_FOREACH_FN(struct name *head, \ + int (*fn)(struct type *, void *), \ + void *data) \ + { \ + unsigned idx; \ + struct type **p, **nextp, *next; \ + if (!head->hth_table) \ + return; \ + for (idx=0; idx < head->hth_table_length; ++idx) { \ + p = &head->hth_table[idx]; \ + while (*p) { \ + nextp = &(*p)->field.hte_next; \ + next = *nextp; \ + if (fn(*p, data)) { \ + --head->hth_n_entries; \ + *p = next; \ + } else { \ + p = nextp; \ + } \ + } \ + } \ + } \ + /* Return a pointer to the first element in the table 'head', under \ + * an arbitrary order. This order is stable under remove operations, \ + * but not under others. If the table is empty, return NULL. */ \ + static inline struct type ** \ + name##_HT_START(struct name *head) \ + { \ + unsigned b = 0; \ + while (b < head->hth_table_length) { \ + if (head->hth_table[b]) \ + return &head->hth_table[b]; \ + ++b; \ + } \ + return NULL; \ + } \ + /* Return the next element in 'head' after 'elm', under the arbitrary \ + * order used by HT_START. If there are no more elements, return \ + * NULL. If 'elm' is to be removed from the table, you must call \ + * this function for the next value before you remove it. \ + */ \ + static inline struct type ** \ + name##_HT_NEXT(struct name *head, struct type **elm) \ + { \ + if ((*elm)->field.hte_next) { \ + return &(*elm)->field.hte_next; \ + } else { \ + unsigned b = (HT_ELT_HASH_(*elm, field, hashfn) % head->hth_table_length)+1; \ + while (b < head->hth_table_length) { \ + if (head->hth_table[b]) \ + return &head->hth_table[b]; \ + ++b; \ + } \ + return NULL; \ + } \ + } \ + static inline struct type ** \ + name##_HT_NEXT_RMV(struct name *head, struct type **elm) \ + { \ + unsigned h = HT_ELT_HASH_(*elm, field, hashfn); \ + *elm = (*elm)->field.hte_next; \ + --head->hth_n_entries; \ + if (*elm) { \ + return elm; \ + } else { \ + unsigned b = (h % head->hth_table_length)+1; \ + while (b < head->hth_table_length) { \ + if (head->hth_table[b]) \ + return &head->hth_table[b]; \ + ++b; \ + } \ + return NULL; \ + } \ + } + +#define HT_GENERATE(name, type, field, hashfn, eqfn, load, mallocfn, \ + reallocfn, freefn) \ + static unsigned name##_PRIMES[] = { \ + 53, 97, 193, 389, \ + 769, 1543, 3079, 6151, \ + 12289, 24593, 49157, 98317, \ + 196613, 393241, 786433, 1572869, \ + 3145739, 6291469, 12582917, 25165843, \ + 50331653, 100663319, 201326611, 402653189, \ + 805306457, 1610612741 \ + }; \ + static unsigned name##_N_PRIMES = \ + (unsigned)(sizeof(name##_PRIMES)/sizeof(name##_PRIMES[0])); \ + /* Expand the internal table of 'head' until it is large enough to \ + * hold 'size' elements. Return 0 on success, -1 on allocation \ + * failure. */ \ + int \ + name##_HT_GROW(struct name *head, unsigned size) \ + { \ + unsigned new_len, new_load_limit; \ + int prime_idx; \ + struct type **new_table; \ + if (head->hth_prime_idx == (int)name##_N_PRIMES - 1) \ + return 0; \ + if (head->hth_load_limit > size) \ + return 0; \ + prime_idx = head->hth_prime_idx; \ + do { \ + new_len = name##_PRIMES[++prime_idx]; \ + new_load_limit = (unsigned)(load*new_len); \ + } while (new_load_limit <= size && \ + prime_idx < (int)name##_N_PRIMES); \ + if ((new_table = mallocfn(new_len*sizeof(struct type*)))) { \ + unsigned b; \ + memset(new_table, 0, new_len*sizeof(struct type*)); \ + for (b = 0; b < head->hth_table_length; ++b) { \ + struct type *elm, *next; \ + unsigned b2; \ + elm = head->hth_table[b]; \ + while (elm) { \ + next = elm->field.hte_next; \ + b2 = HT_ELT_HASH_(elm, field, hashfn) % new_len; \ + elm->field.hte_next = new_table[b2]; \ + new_table[b2] = elm; \ + elm = next; \ + } \ + } \ + if (head->hth_table) \ + freefn(head->hth_table); \ + head->hth_table = new_table; \ + } else { \ + unsigned b, b2; \ + new_table = reallocfn(head->hth_table, new_len*sizeof(struct type*)); \ + if (!new_table) return -1; \ + memset(new_table + head->hth_table_length, 0, \ + (new_len - head->hth_table_length)*sizeof(struct type*)); \ + for (b=0; b < head->hth_table_length; ++b) { \ + struct type *e, **pE; \ + for (pE = &new_table[b], e = *pE; e != NULL; e = *pE) { \ + b2 = HT_ELT_HASH_(e, field, hashfn) % new_len; \ + if (b2 == b) { \ + pE = &e->field.hte_next; \ + } else { \ + *pE = e->field.hte_next; \ + e->field.hte_next = new_table[b2]; \ + new_table[b2] = e; \ + } \ + } \ + } \ + head->hth_table = new_table; \ + } \ + head->hth_table_length = new_len; \ + head->hth_prime_idx = prime_idx; \ + head->hth_load_limit = new_load_limit; \ + return 0; \ + } \ + /* Free all storage held by 'head'. Does not free 'head' itself, or \ + * individual elements. */ \ + void \ + name##_HT_CLEAR(struct name *head) \ + { \ + if (head->hth_table) \ + freefn(head->hth_table); \ + name##_HT_INIT(head); \ + } \ + /* Debugging helper: return false iff the representation of 'head' is \ + * internally consistent. */ \ + int \ + name##_HT_REP_IS_BAD_(const struct name *head) \ + { \ + unsigned n, i; \ + struct type *elm; \ + if (!head->hth_table_length) { \ + if (!head->hth_table && !head->hth_n_entries && \ + !head->hth_load_limit && head->hth_prime_idx == -1) \ + return 0; \ + else \ + return 1; \ + } \ + if (!head->hth_table || head->hth_prime_idx < 0 || \ + !head->hth_load_limit) \ + return 2; \ + if (head->hth_n_entries > head->hth_load_limit) \ + return 3; \ + if (head->hth_table_length != name##_PRIMES[head->hth_prime_idx]) \ + return 4; \ + if (head->hth_load_limit != (unsigned)(load*head->hth_table_length)) \ + return 5; \ + for (n = i = 0; i < head->hth_table_length; ++i) { \ + for (elm = head->hth_table[i]; elm; elm = elm->field.hte_next) { \ + if (HT_ELT_HASH_(elm, field, hashfn) != hashfn(elm)) \ + return 1000 + i; \ + if ((HT_ELT_HASH_(elm, field, hashfn) % head->hth_table_length) != i) \ + return 10000 + i; \ + ++n; \ + } \ + } \ + if (n != head->hth_n_entries) \ + return 6; \ + return 0; \ + } + +/** Implements an over-optimized "find and insert if absent" block; + * not meant for direct usage by typical code, or usage outside the critical + * path.*/ +#define HT_FIND_OR_INSERT_(name, field, hashfn, head, eltype, elm, var, y, n) \ + { \ + struct name *var##_head_ = head; \ + struct eltype **var; \ + if (!var##_head_->hth_table || \ + var##_head_->hth_n_entries >= var##_head_->hth_load_limit) \ + name##_HT_GROW(var##_head_, var##_head_->hth_n_entries+1); \ + HT_SET_HASH_((elm), field, hashfn); \ + var = name##_HT_FIND_P_(var##_head_, (elm)); \ + if (*var) { \ + y; \ + } else { \ + n; \ + } \ + } +#define HT_FOI_INSERT_(field, head, elm, newent, var) \ + { \ + HT_SET_HASHVAL_(newent, field, (elm)->field.hte_hash); \ + newent->field.hte_next = NULL; \ + *var = newent; \ + ++((head)->hth_n_entries); \ + } + +/* + * Copyright 2005, Nick Mathewson. Implementation logic is adapted from code + * by Christopher Clark, retrofit to allow drop-in memory management, and to + * use the same interface as Niels Provos's tree.h. This is probably still + * a derived work, so the original license below still applies. + * + * Copyright (c) 2002, Christopher Clark + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * * Neither the name of the original author; nor the names of any 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 OWNER + * 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. +*/ + +#endif + diff -Nru mysql-5.7-5.7.25/extra/libevent/http.c mysql-5.7-5.7.26/extra/libevent/http.c --- mysql-5.7-5.7.25/extra/libevent/http.c 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/http.c 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,5024 @@ +/* + * Copyright (c) 2002-2007 Niels Provos + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ + +#include "event2/event-config.h" +#include "evconfig-private.h" + +#ifdef EVENT__HAVE_SYS_PARAM_H +#include +#endif +#ifdef EVENT__HAVE_SYS_TYPES_H +#include +#endif + +#ifdef HAVE_SYS_IOCCOM_H +#include +#endif +#ifdef EVENT__HAVE_SYS_RESOURCE_H +#include +#endif +#ifdef EVENT__HAVE_SYS_TIME_H +#include +#endif +#ifdef EVENT__HAVE_SYS_WAIT_H +#include +#endif + +#ifndef _WIN32 +#include +#include +#else +#include +#include +#endif + +#include + +#ifdef EVENT__HAVE_NETINET_IN_H +#include +#endif +#ifdef EVENT__HAVE_ARPA_INET_H +#include +#endif +#ifdef EVENT__HAVE_NETDB_H +#include +#endif + +#ifdef _WIN32 +#include +#endif + +#include +#include +#include +#include +#ifndef _WIN32 +#include +#endif +#include +#ifdef EVENT__HAVE_UNISTD_H +#include +#endif +#ifdef EVENT__HAVE_FCNTL_H +#include +#endif + +#undef timeout_pending +#undef timeout_initialized + +#include "strlcpy-internal.h" +#include "event2/http.h" +#include "event2/event.h" +#include "event2/buffer.h" +#include "event2/bufferevent.h" +#include "event2/http_struct.h" +#include "event2/http_compat.h" +#include "event2/util.h" +#include "event2/listener.h" +#include "log-internal.h" +#include "util-internal.h" +#include "http-internal.h" +#include "mm-internal.h" +#include "bufferevent-internal.h" + +#ifndef EVENT__HAVE_GETNAMEINFO +#define NI_MAXSERV 32 +#define NI_MAXHOST 1025 + +#ifndef NI_NUMERICHOST +#define NI_NUMERICHOST 1 +#endif + +#ifndef NI_NUMERICSERV +#define NI_NUMERICSERV 2 +#endif + +static int +fake_getnameinfo(const struct sockaddr *sa, size_t salen, char *host, + size_t hostlen, char *serv, size_t servlen, int flags) +{ + struct sockaddr_in *sin = (struct sockaddr_in *)sa; + + if (serv != NULL) { + char tmpserv[16]; + evutil_snprintf(tmpserv, sizeof(tmpserv), + "%d", ntohs(sin->sin_port)); + if (strlcpy(serv, tmpserv, servlen) >= servlen) + return (-1); + } + + if (host != NULL) { + if (flags & NI_NUMERICHOST) { + if (strlcpy(host, inet_ntoa(sin->sin_addr), + hostlen) >= hostlen) + return (-1); + else + return (0); + } else { + struct hostent *hp; + hp = gethostbyaddr((char *)&sin->sin_addr, + sizeof(struct in_addr), AF_INET); + if (hp == NULL) + return (-2); + + if (strlcpy(host, hp->h_name, hostlen) >= hostlen) + return (-1); + else + return (0); + } + } + return (0); +} + +#endif + +#define REQ_VERSION_BEFORE(req, major_v, minor_v) \ + ((req)->major < (major_v) || \ + ((req)->major == (major_v) && (req)->minor < (minor_v))) + +#define REQ_VERSION_ATLEAST(req, major_v, minor_v) \ + ((req)->major > (major_v) || \ + ((req)->major == (major_v) && (req)->minor >= (minor_v))) + +#ifndef MIN +#define MIN(a,b) (((a)<(b))?(a):(b)) +#endif + +extern int debug; + +static evutil_socket_t bind_socket_ai(struct evutil_addrinfo *, int reuse); +static evutil_socket_t bind_socket(const char *, ev_uint16_t, int reuse); +static void name_from_addr(struct sockaddr *, ev_socklen_t, char **, char **); +static int evhttp_associate_new_request_with_connection( + struct evhttp_connection *evcon); +static void evhttp_connection_start_detectclose( + struct evhttp_connection *evcon); +static void evhttp_connection_stop_detectclose( + struct evhttp_connection *evcon); +static void evhttp_request_dispatch(struct evhttp_connection* evcon); +static void evhttp_read_firstline(struct evhttp_connection *evcon, + struct evhttp_request *req); +static void evhttp_read_header(struct evhttp_connection *evcon, + struct evhttp_request *req); +static int evhttp_add_header_internal(struct evkeyvalq *headers, + const char *key, const char *value); +static const char *evhttp_response_phrase_internal(int code); +static void evhttp_get_request(struct evhttp *, evutil_socket_t, struct sockaddr *, ev_socklen_t); +static void evhttp_write_buffer(struct evhttp_connection *, + void (*)(struct evhttp_connection *, void *), void *); +static void evhttp_make_header(struct evhttp_connection *, struct evhttp_request *); + +/* callbacks for bufferevent */ +static void evhttp_read_cb(struct bufferevent *, void *); +static void evhttp_write_cb(struct bufferevent *, void *); +static void evhttp_error_cb(struct bufferevent *bufev, short what, void *arg); +static int evhttp_find_vhost(struct evhttp *http, struct evhttp **outhttp, + const char *hostname); + +#ifndef EVENT__HAVE_STRSEP +/* strsep replacement for platforms that lack it. Only works if + * del is one character long. */ +static char * +strsep(char **s, const char *del) +{ + char *d, *tok; + EVUTIL_ASSERT(strlen(del) == 1); + if (!s || !*s) + return NULL; + tok = *s; + d = strstr(tok, del); + if (d) { + *d = '\0'; + *s = d + 1; + } else + *s = NULL; + return tok; +} +#endif + +static size_t +html_replace(const char ch, const char **escaped) +{ + switch (ch) { + case '<': + *escaped = "<"; + return 4; + case '>': + *escaped = ">"; + return 4; + case '"': + *escaped = """; + return 6; + case '\'': + *escaped = "'"; + return 6; + case '&': + *escaped = "&"; + return 5; + default: + break; + } + + return 1; +} + +/* + * Replaces <, >, ", ' and & with <, >, ", + * ' and & correspondingly. + * + * The returned string needs to be freed by the caller. + */ + +char * +evhttp_htmlescape(const char *html) +{ + size_t i; + size_t new_size = 0, old_size = 0; + char *escaped_html, *p; + + if (html == NULL) + return (NULL); + + old_size = strlen(html); + for (i = 0; i < old_size; ++i) { + const char *replaced = NULL; + const size_t replace_size = html_replace(html[i], &replaced); + if (replace_size > EV_SIZE_MAX - new_size) { + event_warn("%s: html_replace overflow", __func__); + return (NULL); + } + new_size += replace_size; + } + + if (new_size == EV_SIZE_MAX) + return (NULL); + p = escaped_html = mm_malloc(new_size + 1); + if (escaped_html == NULL) { + event_warn("%s: malloc(%lu)", __func__, + (unsigned long)(new_size + 1)); + return (NULL); + } + for (i = 0; i < old_size; ++i) { + const char *replaced = &html[i]; + const size_t len = html_replace(html[i], &replaced); + memcpy(p, replaced, len); + p += len; + } + + *p = '\0'; + + return (escaped_html); +} + +/** Given an evhttp_cmd_type, returns a constant string containing the + * equivalent HTTP command, or NULL if the evhttp_command_type is + * unrecognized. */ +static const char * +evhttp_method(enum evhttp_cmd_type type) +{ + const char *method; + + switch (type) { + case EVHTTP_REQ_GET: + method = "GET"; + break; + case EVHTTP_REQ_POST: + method = "POST"; + break; + case EVHTTP_REQ_HEAD: + method = "HEAD"; + break; + case EVHTTP_REQ_PUT: + method = "PUT"; + break; + case EVHTTP_REQ_DELETE: + method = "DELETE"; + break; + case EVHTTP_REQ_OPTIONS: + method = "OPTIONS"; + break; + case EVHTTP_REQ_TRACE: + method = "TRACE"; + break; + case EVHTTP_REQ_CONNECT: + method = "CONNECT"; + break; + case EVHTTP_REQ_PATCH: + method = "PATCH"; + break; + default: + method = NULL; + break; + } + + return (method); +} + +/** + * Determines if a response should have a body. + * Follows the rules in RFC 2616 section 4.3. + * @return 1 if the response MUST have a body; 0 if the response MUST NOT have + * a body. + */ +static int +evhttp_response_needs_body(struct evhttp_request *req) +{ + return (req->response_code != HTTP_NOCONTENT && + req->response_code != HTTP_NOTMODIFIED && + (req->response_code < 100 || req->response_code >= 200) && + req->type != EVHTTP_REQ_HEAD); +} + +/** Helper: called after we've added some data to an evcon's bufferevent's + * output buffer. Sets the evconn's writing-is-done callback, and puts + * the bufferevent into writing mode. + */ +static void +evhttp_write_buffer(struct evhttp_connection *evcon, + void (*cb)(struct evhttp_connection *, void *), void *arg) +{ + event_debug(("%s: preparing to write buffer\n", __func__)); + + /* Set call back */ + evcon->cb = cb; + evcon->cb_arg = arg; + + /* Disable the read callback: we don't actually care about data; + * we only care about close detection. (We don't disable reading, + * since we *do* want to learn about any close events.) */ + bufferevent_setcb(evcon->bufev, + NULL, /*read*/ + evhttp_write_cb, + evhttp_error_cb, + evcon); + + bufferevent_enable(evcon->bufev, EV_WRITE); +} + +static void +evhttp_send_continue_done(struct evhttp_connection *evcon, void *arg) +{ + bufferevent_disable(evcon->bufev, EV_WRITE); +} + +static void +evhttp_send_continue(struct evhttp_connection *evcon, + struct evhttp_request *req) +{ + bufferevent_enable(evcon->bufev, EV_WRITE); + evbuffer_add_printf(bufferevent_get_output(evcon->bufev), + "HTTP/%d.%d 100 Continue\r\n\r\n", + req->major, req->minor); + evcon->cb = evhttp_send_continue_done; + evcon->cb_arg = NULL; + bufferevent_setcb(evcon->bufev, + evhttp_read_cb, + evhttp_write_cb, + evhttp_error_cb, + evcon); +} + +/** Helper: returns true iff evconn is in any connected state. */ +static int +evhttp_connected(struct evhttp_connection *evcon) +{ + switch (evcon->state) { + case EVCON_DISCONNECTED: + case EVCON_CONNECTING: + return (0); + case EVCON_IDLE: + case EVCON_READING_FIRSTLINE: + case EVCON_READING_HEADERS: + case EVCON_READING_BODY: + case EVCON_READING_TRAILER: + case EVCON_WRITING: + default: + return (1); + } +} + +/* Create the headers needed for an outgoing HTTP request, adds them to + * the request's header list, and writes the request line to the + * connection's output buffer. + */ +static void +evhttp_make_header_request(struct evhttp_connection *evcon, + struct evhttp_request *req) +{ + const char *method; + + evhttp_remove_header(req->output_headers, "Proxy-Connection"); + + /* Generate request line */ + if (!(method = evhttp_method(req->type))) { + method = "NULL"; + } + + evbuffer_add_printf(bufferevent_get_output(evcon->bufev), + "%s %s HTTP/%d.%d\r\n", + method, req->uri, req->major, req->minor); + + /* Add the content length on a post or put request if missing */ + if ((req->type == EVHTTP_REQ_POST || req->type == EVHTTP_REQ_PUT) && + evhttp_find_header(req->output_headers, "Content-Length") == NULL){ + char size[22]; + evutil_snprintf(size, sizeof(size), EV_SIZE_FMT, + EV_SIZE_ARG(evbuffer_get_length(req->output_buffer))); + evhttp_add_header(req->output_headers, "Content-Length", size); + } +} + +/** Return true if the list of headers in 'headers', intepreted with respect + * to flags, means that we should send a "connection: close" when the request + * is done. */ +static int +evhttp_is_connection_close(int flags, struct evkeyvalq* headers) +{ + if (flags & EVHTTP_PROXY_REQUEST) { + /* proxy connection */ + const char *connection = evhttp_find_header(headers, "Proxy-Connection"); + return (connection == NULL || evutil_ascii_strcasecmp(connection, "keep-alive") != 0); + } else { + const char *connection = evhttp_find_header(headers, "Connection"); + return (connection != NULL && evutil_ascii_strcasecmp(connection, "close") == 0); + } +} +static int +evhttp_is_request_connection_close(struct evhttp_request *req) +{ + return + evhttp_is_connection_close(req->flags, req->input_headers) || + evhttp_is_connection_close(req->flags, req->output_headers); +} + +/* Return true iff 'headers' contains 'Connection: keep-alive' */ +static int +evhttp_is_connection_keepalive(struct evkeyvalq* headers) +{ + const char *connection = evhttp_find_header(headers, "Connection"); + return (connection != NULL + && evutil_ascii_strncasecmp(connection, "keep-alive", 10) == 0); +} + +/* Add a correct "Date" header to headers, unless it already has one. */ +static void +evhttp_maybe_add_date_header(struct evkeyvalq *headers) +{ + if (evhttp_find_header(headers, "Date") == NULL) { + char date[50]; + if (sizeof(date) - evutil_date_rfc1123(date, sizeof(date), NULL) > 0) { + evhttp_add_header(headers, "Date", date); + } + } +} + +/* Add a "Content-Length" header with value 'content_length' to headers, + * unless it already has a content-length or transfer-encoding header. */ +static void +evhttp_maybe_add_content_length_header(struct evkeyvalq *headers, + size_t content_length) +{ + if (evhttp_find_header(headers, "Transfer-Encoding") == NULL && + evhttp_find_header(headers, "Content-Length") == NULL) { + char len[22]; + evutil_snprintf(len, sizeof(len), EV_SIZE_FMT, + EV_SIZE_ARG(content_length)); + evhttp_add_header(headers, "Content-Length", len); + } +} + +/* + * Create the headers needed for an HTTP reply in req->output_headers, + * and write the first HTTP response for req line to evcon. + */ +static void +evhttp_make_header_response(struct evhttp_connection *evcon, + struct evhttp_request *req) +{ + int is_keepalive = evhttp_is_connection_keepalive(req->input_headers); + evbuffer_add_printf(bufferevent_get_output(evcon->bufev), + "HTTP/%d.%d %d %s\r\n", + req->major, req->minor, req->response_code, + req->response_code_line); + + if (req->major == 1) { + if (req->minor >= 1) + evhttp_maybe_add_date_header(req->output_headers); + + /* + * if the protocol is 1.0; and the connection was keep-alive + * we need to add a keep-alive header, too. + */ + if (req->minor == 0 && is_keepalive) + evhttp_add_header(req->output_headers, + "Connection", "keep-alive"); + + if ((req->minor >= 1 || is_keepalive) && + evhttp_response_needs_body(req)) { + /* + * we need to add the content length if the + * user did not give it, this is required for + * persistent connections to work. + */ + evhttp_maybe_add_content_length_header( + req->output_headers, + evbuffer_get_length(req->output_buffer)); + } + } + + /* Potentially add headers for unidentified content. */ + if (evhttp_response_needs_body(req)) { + if (evhttp_find_header(req->output_headers, + "Content-Type") == NULL + && evcon->http_server->default_content_type) { + evhttp_add_header(req->output_headers, + "Content-Type", + evcon->http_server->default_content_type); + } + } + + /* if the request asked for a close, we send a close, too */ + if (evhttp_is_connection_close(req->flags, req->input_headers)) { + evhttp_remove_header(req->output_headers, "Connection"); + if (!(req->flags & EVHTTP_PROXY_REQUEST)) + evhttp_add_header(req->output_headers, "Connection", "close"); + evhttp_remove_header(req->output_headers, "Proxy-Connection"); + } +} + +enum expect { NO, CONTINUE, OTHER }; +static enum expect evhttp_have_expect(struct evhttp_request *req, int input) +{ + const char *expect; + struct evkeyvalq *h = input ? req->input_headers : req->output_headers; + + if (!(req->kind == EVHTTP_REQUEST) || !REQ_VERSION_ATLEAST(req, 1, 1)) + return NO; + + expect = evhttp_find_header(h, "Expect"); + if (!expect) + return NO; + + return !evutil_ascii_strcasecmp(expect, "100-continue") ? CONTINUE : OTHER; +} + + +/** Generate all headers appropriate for sending the http request in req (or + * the response, if we're sending a response), and write them to evcon's + * bufferevent. Also writes all data from req->output_buffer */ +static void +evhttp_make_header(struct evhttp_connection *evcon, struct evhttp_request *req) +{ + struct evkeyval *header; + struct evbuffer *output = bufferevent_get_output(evcon->bufev); + + /* + * Depending if this is a HTTP request or response, we might need to + * add some new headers or remove existing headers. + */ + if (req->kind == EVHTTP_REQUEST) { + evhttp_make_header_request(evcon, req); + } else { + evhttp_make_header_response(evcon, req); + } + + TAILQ_FOREACH(header, req->output_headers, next) { + evbuffer_add_printf(output, "%s: %s\r\n", + header->key, header->value); + } + evbuffer_add(output, "\r\n", 2); + + if (evhttp_have_expect(req, 0) != CONTINUE && + evbuffer_get_length(req->output_buffer)) { + /* + * For a request, we add the POST data, for a reply, this + * is the regular data. + */ + evbuffer_add_buffer(output, req->output_buffer); + } +} + +void +evhttp_connection_set_max_headers_size(struct evhttp_connection *evcon, + ev_ssize_t new_max_headers_size) +{ + if (new_max_headers_size<0) + evcon->max_headers_size = EV_SIZE_MAX; + else + evcon->max_headers_size = new_max_headers_size; +} +void +evhttp_connection_set_max_body_size(struct evhttp_connection* evcon, + ev_ssize_t new_max_body_size) +{ + if (new_max_body_size<0) + evcon->max_body_size = EV_UINT64_MAX; + else + evcon->max_body_size = new_max_body_size; +} + +static int +evhttp_connection_incoming_fail(struct evhttp_request *req, + enum evhttp_request_error error) +{ + switch (error) { + case EVREQ_HTTP_DATA_TOO_LONG: + req->response_code = HTTP_ENTITYTOOLARGE; + break; + default: + req->response_code = HTTP_BADREQUEST; + } + + switch (error) { + case EVREQ_HTTP_TIMEOUT: + case EVREQ_HTTP_EOF: + /* + * these are cases in which we probably should just + * close the connection and not send a reply. this + * case may happen when a browser keeps a persistent + * connection open and we timeout on the read. when + * the request is still being used for sending, we + * need to disassociated it from the connection here. + */ + if (!req->userdone) { + /* remove it so that it will not be freed */ + TAILQ_REMOVE(&req->evcon->requests, req, next); + /* indicate that this request no longer has a + * connection object + */ + req->evcon = NULL; + } + return (-1); + case EVREQ_HTTP_INVALID_HEADER: + case EVREQ_HTTP_BUFFER_ERROR: + case EVREQ_HTTP_REQUEST_CANCEL: + case EVREQ_HTTP_DATA_TOO_LONG: + default: /* xxx: probably should just error on default */ + /* the callback looks at the uri to determine errors */ + if (req->uri) { + mm_free(req->uri); + req->uri = NULL; + } + if (req->uri_elems) { + evhttp_uri_free(req->uri_elems); + req->uri_elems = NULL; + } + + /* + * the callback needs to send a reply, once the reply has + * been send, the connection should get freed. + */ + (*req->cb)(req, req->cb_arg); + } + + return (0); +} + +/* Free connection ownership of which can be acquired by user using + * evhttp_request_own(). */ +static inline void +evhttp_request_free_auto(struct evhttp_request *req) +{ + if (!(req->flags & EVHTTP_USER_OWNED)) + evhttp_request_free(req); +} + +static void +evhttp_request_free_(struct evhttp_connection *evcon, struct evhttp_request *req) +{ + TAILQ_REMOVE(&evcon->requests, req, next); + evhttp_request_free_auto(req); +} + +/* Called when evcon has experienced a (non-recoverable? -NM) error, as + * given in error. If it's an outgoing connection, reset the connection, + * retry any pending requests, and inform the user. If it's incoming, + * delegates to evhttp_connection_incoming_fail(). */ +void +evhttp_connection_fail_(struct evhttp_connection *evcon, + enum evhttp_request_error error) +{ + const int errsave = EVUTIL_SOCKET_ERROR(); + struct evhttp_request* req = TAILQ_FIRST(&evcon->requests); + void (*cb)(struct evhttp_request *, void *); + void *cb_arg; + void (*error_cb)(enum evhttp_request_error, void *); + void *error_cb_arg; + EVUTIL_ASSERT(req != NULL); + + bufferevent_disable(evcon->bufev, EV_READ|EV_WRITE); + + if (evcon->flags & EVHTTP_CON_INCOMING) { + /* + * for incoming requests, there are two different + * failure cases. it's either a network level error + * or an http layer error. for problems on the network + * layer like timeouts we just drop the connections. + * For HTTP problems, we might have to send back a + * reply before the connection can be freed. + */ + if (evhttp_connection_incoming_fail(req, error) == -1) + evhttp_connection_free(evcon); + return; + } + + error_cb = req->error_cb; + error_cb_arg = req->cb_arg; + /* when the request was canceled, the callback is not executed */ + if (error != EVREQ_HTTP_REQUEST_CANCEL) { + /* save the callback for later; the cb might free our object */ + cb = req->cb; + cb_arg = req->cb_arg; + } else { + cb = NULL; + cb_arg = NULL; + } + + /* do not fail all requests; the next request is going to get + * send over a new connection. when a user cancels a request, + * all other pending requests should be processed as normal + */ + evhttp_request_free_(evcon, req); + + /* reset the connection */ + evhttp_connection_reset_(evcon); + + /* We are trying the next request that was queued on us */ + if (TAILQ_FIRST(&evcon->requests) != NULL) + evhttp_connection_connect_(evcon); + + /* The call to evhttp_connection_reset_ overwrote errno. + * Let's restore the original errno, so that the user's + * callback can have a better idea of what the error was. + */ + EVUTIL_SET_SOCKET_ERROR(errsave); + + /* inform the user */ + if (error_cb != NULL) + error_cb(error, error_cb_arg); + if (cb != NULL) + (*cb)(NULL, cb_arg); +} + +/* Bufferevent callback: invoked when any data has been written from an + * http connection's bufferevent */ +static void +evhttp_write_cb(struct bufferevent *bufev, void *arg) +{ + struct evhttp_connection *evcon = arg; + + /* Activate our call back */ + if (evcon->cb != NULL) + (*evcon->cb)(evcon, evcon->cb_arg); +} + +/** + * Advance the connection state. + * - If this is an outgoing connection, we've just processed the response; + * idle or close the connection. + * - If this is an incoming connection, we've just processed the request; + * respond. + */ +static void +evhttp_connection_done(struct evhttp_connection *evcon) +{ + struct evhttp_request *req = TAILQ_FIRST(&evcon->requests); + int con_outgoing = evcon->flags & EVHTTP_CON_OUTGOING; + int free_evcon = 0; + + if (con_outgoing) { + /* idle or close the connection */ + int need_close = evhttp_is_request_connection_close(req); + TAILQ_REMOVE(&evcon->requests, req, next); + req->evcon = NULL; + + evcon->state = EVCON_IDLE; + + /* check if we got asked to close the connection */ + if (need_close) + evhttp_connection_reset_(evcon); + + if (TAILQ_FIRST(&evcon->requests) != NULL) { + /* + * We have more requests; reset the connection + * and deal with the next request. + */ + if (!evhttp_connected(evcon)) + evhttp_connection_connect_(evcon); + else + evhttp_request_dispatch(evcon); + } else if (!need_close) { + /* + * The connection is going to be persistent, but we + * need to detect if the other side closes it. + */ + evhttp_connection_start_detectclose(evcon); + } else if ((evcon->flags & EVHTTP_CON_AUTOFREE)) { + /* + * If we have no more requests that need completion + * and we're not waiting for the connection to close + */ + free_evcon = 1; + } + } else { + /* + * incoming connection - we need to leave the request on the + * connection so that we can reply to it. + */ + evcon->state = EVCON_WRITING; + } + + /* notify the user of the request */ + (*req->cb)(req, req->cb_arg); + + /* if this was an outgoing request, we own and it's done. so free it. */ + if (con_outgoing) { + evhttp_request_free_auto(req); + } + + /* If this was the last request of an outgoing connection and we're + * not waiting to receive a connection close event and we want to + * automatically free the connection. We check to ensure our request + * list is empty one last time just in case our callback added a + * new request. + */ + if (free_evcon && TAILQ_FIRST(&evcon->requests) == NULL) { + evhttp_connection_free(evcon); + } +} + +/* + * Handles reading from a chunked request. + * return ALL_DATA_READ: + * all data has been read + * return MORE_DATA_EXPECTED: + * more data is expected + * return DATA_CORRUPTED: + * data is corrupted + * return REQUEST_CANCELED: + * request was canceled by the user calling evhttp_cancel_request + * return DATA_TOO_LONG: + * ran over the maximum limit + */ + +static enum message_read_status +evhttp_handle_chunked_read(struct evhttp_request *req, struct evbuffer *buf) +{ + if (req == NULL || buf == NULL) { + return DATA_CORRUPTED; + } + + while (1) { + size_t buflen; + + if ((buflen = evbuffer_get_length(buf)) == 0) { + break; + } + + /* evbuffer_get_length returns size_t, but len variable is ssize_t, + * check for overflow conditions */ + if (buflen > EV_SSIZE_MAX) { + return DATA_CORRUPTED; + } + + if (req->ntoread < 0) { + /* Read chunk size */ + ev_int64_t ntoread; + char *p = evbuffer_readln(buf, NULL, EVBUFFER_EOL_CRLF); + char *endp; + int error; + if (p == NULL) + break; + /* the last chunk is on a new line? */ + if (strlen(p) == 0) { + mm_free(p); + continue; + } + ntoread = evutil_strtoll(p, &endp, 16); + error = (*p == '\0' || + (*endp != '\0' && *endp != ' ') || + ntoread < 0); + mm_free(p); + if (error) { + /* could not get chunk size */ + return (DATA_CORRUPTED); + } + + /* ntoread is signed int64, body_size is unsigned size_t, check for under/overflow conditions */ + if ((ev_uint64_t)ntoread > EV_SIZE_MAX - req->body_size) { + return DATA_CORRUPTED; + } + + if (req->body_size + (size_t)ntoread > req->evcon->max_body_size) { + /* failed body length test */ + event_debug(("Request body is too long")); + return (DATA_TOO_LONG); + } + + req->body_size += (size_t)ntoread; + req->ntoread = ntoread; + if (req->ntoread == 0) { + /* Last chunk */ + return (ALL_DATA_READ); + } + continue; + } + + /* req->ntoread is signed int64, len is ssize_t, based on arch, + * ssize_t could only be 32b, check for these conditions */ + if (req->ntoread > EV_SSIZE_MAX) { + return DATA_CORRUPTED; + } + + /* don't have enough to complete a chunk; wait for more */ + if (req->ntoread > 0 && buflen < (ev_uint64_t)req->ntoread) + return (MORE_DATA_EXPECTED); + + /* Completed chunk */ + evbuffer_remove_buffer(buf, req->input_buffer, (size_t)req->ntoread); + req->ntoread = -1; + if (req->chunk_cb != NULL) { + req->flags |= EVHTTP_REQ_DEFER_FREE; + (*req->chunk_cb)(req, req->cb_arg); + evbuffer_drain(req->input_buffer, + evbuffer_get_length(req->input_buffer)); + req->flags &= ~EVHTTP_REQ_DEFER_FREE; + if ((req->flags & EVHTTP_REQ_NEEDS_FREE) != 0) { + return (REQUEST_CANCELED); + } + } + } + + return (MORE_DATA_EXPECTED); +} + +static void +evhttp_read_trailer(struct evhttp_connection *evcon, struct evhttp_request *req) +{ + struct evbuffer *buf = bufferevent_get_input(evcon->bufev); + + switch (evhttp_parse_headers_(req, buf)) { + case DATA_CORRUPTED: + case DATA_TOO_LONG: + evhttp_connection_fail_(evcon, EVREQ_HTTP_DATA_TOO_LONG); + break; + case ALL_DATA_READ: + bufferevent_disable(evcon->bufev, EV_READ); + evhttp_connection_done(evcon); + break; + case MORE_DATA_EXPECTED: + case REQUEST_CANCELED: /* ??? */ + default: + break; + } +} + +static void +evhttp_lingering_close(struct evhttp_connection *evcon, + struct evhttp_request *req) +{ + struct evbuffer *buf = bufferevent_get_input(evcon->bufev); + + size_t n = evbuffer_get_length(buf); + if (n > (size_t) req->ntoread) + n = (size_t) req->ntoread; + req->ntoread -= n; + req->body_size += n; + + event_debug(("Request body is too long, left " EV_I64_FMT, + EV_I64_ARG(req->ntoread))); + + evbuffer_drain(buf, n); + if (!req->ntoread) + evhttp_connection_fail_(evcon, EVREQ_HTTP_DATA_TOO_LONG); +} +static void +evhttp_lingering_fail(struct evhttp_connection *evcon, + struct evhttp_request *req) +{ + if (evcon->flags & EVHTTP_CON_LINGERING_CLOSE) + evhttp_lingering_close(evcon, req); + else + evhttp_connection_fail_(evcon, EVREQ_HTTP_DATA_TOO_LONG); +} + +static void +evhttp_read_body(struct evhttp_connection *evcon, struct evhttp_request *req) +{ + struct evbuffer *buf = bufferevent_get_input(evcon->bufev); + + if (req->chunked) { + switch (evhttp_handle_chunked_read(req, buf)) { + case ALL_DATA_READ: + /* finished last chunk */ + evcon->state = EVCON_READING_TRAILER; + evhttp_read_trailer(evcon, req); + return; + case DATA_CORRUPTED: + case DATA_TOO_LONG: + /* corrupted data */ + evhttp_connection_fail_(evcon, + EVREQ_HTTP_DATA_TOO_LONG); + return; + case REQUEST_CANCELED: + /* request canceled */ + evhttp_request_free_auto(req); + return; + case MORE_DATA_EXPECTED: + default: + break; + } + } else if (req->ntoread < 0) { + /* Read until connection close. */ + if ((size_t)(req->body_size + evbuffer_get_length(buf)) < req->body_size) { + evhttp_connection_fail_(evcon, EVREQ_HTTP_INVALID_HEADER); + return; + } + + req->body_size += evbuffer_get_length(buf); + evbuffer_add_buffer(req->input_buffer, buf); + } else if (req->chunk_cb != NULL || evbuffer_get_length(buf) >= (size_t)req->ntoread) { + /* XXX: the above get_length comparison has to be fixed for overflow conditions! */ + /* We've postponed moving the data until now, but we're + * about to use it. */ + size_t n = evbuffer_get_length(buf); + + if (n > (size_t) req->ntoread) + n = (size_t) req->ntoread; + req->ntoread -= n; + req->body_size += n; + evbuffer_remove_buffer(buf, req->input_buffer, n); + } + + if (req->body_size > req->evcon->max_body_size || + (!req->chunked && req->ntoread >= 0 && + (size_t)req->ntoread > req->evcon->max_body_size)) { + /* XXX: The above casted comparison must checked for overflow */ + /* failed body length test */ + + evhttp_lingering_fail(evcon, req); + return; + } + + if (evbuffer_get_length(req->input_buffer) > 0 && req->chunk_cb != NULL) { + req->flags |= EVHTTP_REQ_DEFER_FREE; + (*req->chunk_cb)(req, req->cb_arg); + req->flags &= ~EVHTTP_REQ_DEFER_FREE; + evbuffer_drain(req->input_buffer, + evbuffer_get_length(req->input_buffer)); + if ((req->flags & EVHTTP_REQ_NEEDS_FREE) != 0) { + evhttp_request_free_auto(req); + return; + } + } + + if (!req->ntoread) { + bufferevent_disable(evcon->bufev, EV_READ); + /* Completed content length */ + evhttp_connection_done(evcon); + return; + } +} + +#define get_deferred_queue(evcon) \ + ((evcon)->base) + +/* + * Gets called when more data becomes available + */ + +static void +evhttp_read_cb(struct bufferevent *bufev, void *arg) +{ + struct evhttp_connection *evcon = arg; + struct evhttp_request *req = TAILQ_FIRST(&evcon->requests); + + /* Cancel if it's pending. */ + event_deferred_cb_cancel_(get_deferred_queue(evcon), + &evcon->read_more_deferred_cb); + + switch (evcon->state) { + case EVCON_READING_FIRSTLINE: + evhttp_read_firstline(evcon, req); + /* note the request may have been freed in + * evhttp_read_body */ + break; + case EVCON_READING_HEADERS: + evhttp_read_header(evcon, req); + /* note the request may have been freed in + * evhttp_read_body */ + break; + case EVCON_READING_BODY: + evhttp_read_body(evcon, req); + /* note the request may have been freed in + * evhttp_read_body */ + break; + case EVCON_READING_TRAILER: + evhttp_read_trailer(evcon, req); + break; + case EVCON_IDLE: + { +#ifdef USE_DEBUG + struct evbuffer *input; + size_t total_len; + + input = bufferevent_get_input(evcon->bufev); + total_len = evbuffer_get_length(input); + event_debug(("%s: read "EV_SIZE_FMT + " bytes in EVCON_IDLE state," + " resetting connection", + __func__, EV_SIZE_ARG(total_len))); +#endif + + evhttp_connection_reset_(evcon); + } + break; + case EVCON_DISCONNECTED: + case EVCON_CONNECTING: + case EVCON_WRITING: + default: + event_errx(1, "%s: illegal connection state %d", + __func__, evcon->state); + } +} + +static void +evhttp_deferred_read_cb(struct event_callback *cb, void *data) +{ + struct evhttp_connection *evcon = data; + evhttp_read_cb(evcon->bufev, evcon); +} + +static void +evhttp_write_connectioncb(struct evhttp_connection *evcon, void *arg) +{ + /* This is after writing the request to the server */ + struct evhttp_request *req = TAILQ_FIRST(&evcon->requests); + struct evbuffer *output = bufferevent_get_output(evcon->bufev); + EVUTIL_ASSERT(req != NULL); + + EVUTIL_ASSERT(evcon->state == EVCON_WRITING); + + /* We need to wait until we've written all of our output data before we can + * continue */ + if (evbuffer_get_length(output) > 0) + return; + + /* We are done writing our header and are now expecting the response */ + req->kind = EVHTTP_RESPONSE; + + evhttp_start_read_(evcon); +} + +/* + * Clean up a connection object + */ + +void +evhttp_connection_free(struct evhttp_connection *evcon) +{ + struct evhttp_request *req; + + /* notify interested parties that this connection is going down */ + if (evcon->fd != -1) { + if (evhttp_connected(evcon) && evcon->closecb != NULL) + (*evcon->closecb)(evcon, evcon->closecb_arg); + } + + /* remove all requests that might be queued on this + * connection. for server connections, this should be empty. + * because it gets dequeued either in evhttp_connection_done or + * evhttp_connection_fail_. + */ + while ((req = TAILQ_FIRST(&evcon->requests)) != NULL) { + evhttp_request_free_(evcon, req); + } + + if (evcon->http_server != NULL) { + struct evhttp *http = evcon->http_server; + TAILQ_REMOVE(&http->connections, evcon, next); + } + + if (event_initialized(&evcon->retry_ev)) { + event_del(&evcon->retry_ev); + event_debug_unassign(&evcon->retry_ev); + } + + if (evcon->bufev != NULL) + bufferevent_free(evcon->bufev); + + event_deferred_cb_cancel_(get_deferred_queue(evcon), + &evcon->read_more_deferred_cb); + + if (evcon->fd == -1) + evcon->fd = bufferevent_getfd(evcon->bufev); + + if (evcon->fd != -1) { + bufferevent_disable(evcon->bufev, EV_READ|EV_WRITE); + shutdown(evcon->fd, EVUTIL_SHUT_WR); + if (!(bufferevent_get_options_(evcon->bufev) & BEV_OPT_CLOSE_ON_FREE)) { + evutil_closesocket(evcon->fd); + } + } + + if (evcon->bind_address != NULL) + mm_free(evcon->bind_address); + + if (evcon->address != NULL) + mm_free(evcon->address); + + mm_free(evcon); +} + +void +evhttp_connection_free_on_completion(struct evhttp_connection *evcon) { + evcon->flags |= EVHTTP_CON_AUTOFREE; +} + +void +evhttp_connection_set_local_address(struct evhttp_connection *evcon, + const char *address) +{ + EVUTIL_ASSERT(evcon->state == EVCON_DISCONNECTED); + if (evcon->bind_address) + mm_free(evcon->bind_address); + if ((evcon->bind_address = mm_strdup(address)) == NULL) + event_warn("%s: strdup", __func__); +} + +void +evhttp_connection_set_local_port(struct evhttp_connection *evcon, + ev_uint16_t port) +{ + EVUTIL_ASSERT(evcon->state == EVCON_DISCONNECTED); + evcon->bind_port = port; +} + +static void +evhttp_request_dispatch(struct evhttp_connection* evcon) +{ + struct evhttp_request *req = TAILQ_FIRST(&evcon->requests); + + /* this should not usually happy but it's possible */ + if (req == NULL) + return; + + /* delete possible close detection events */ + evhttp_connection_stop_detectclose(evcon); + + /* we assume that the connection is connected already */ + EVUTIL_ASSERT(evcon->state == EVCON_IDLE); + + evcon->state = EVCON_WRITING; + + /* Create the header from the store arguments */ + evhttp_make_header(evcon, req); + + evhttp_write_buffer(evcon, evhttp_write_connectioncb, NULL); +} + +/* Reset our connection state: disables reading/writing, closes our fd (if +* any), clears out buffers, and puts us in state DISCONNECTED. */ +void +evhttp_connection_reset_(struct evhttp_connection *evcon) +{ + struct evbuffer *tmp; + int err; + + /* XXXX This is not actually an optimal fix. Instead we ought to have + an API for "stop connecting", or use bufferevent_setfd to turn off + connecting. But for Libevent 2.0, this seems like a minimal change + least likely to disrupt the rest of the bufferevent and http code. + + Why is this here? If the fd is set in the bufferevent, and the + bufferevent is connecting, then you can't actually stop the + bufferevent from trying to connect with bufferevent_disable(). The + connect will never trigger, since we close the fd, but the timeout + might. That caused an assertion failure in evhttp_connection_fail_. + */ + bufferevent_disable_hard_(evcon->bufev, EV_READ|EV_WRITE); + + if (evcon->fd == -1) + evcon->fd = bufferevent_getfd(evcon->bufev); + + if (evcon->fd != -1) { + /* inform interested parties about connection close */ + if (evhttp_connected(evcon) && evcon->closecb != NULL) + (*evcon->closecb)(evcon, evcon->closecb_arg); + + shutdown(evcon->fd, EVUTIL_SHUT_WR); + evutil_closesocket(evcon->fd); + evcon->fd = -1; + } + bufferevent_setfd(evcon->bufev, -1); + + /* we need to clean up any buffered data */ + tmp = bufferevent_get_output(evcon->bufev); + err = evbuffer_drain(tmp, -1); + EVUTIL_ASSERT(!err && "drain output"); + tmp = bufferevent_get_input(evcon->bufev); + err = evbuffer_drain(tmp, -1); + EVUTIL_ASSERT(!err && "drain input"); + + evcon->flags &= ~EVHTTP_CON_READING_ERROR; + + evcon->state = EVCON_DISCONNECTED; +} + +static void +evhttp_connection_start_detectclose(struct evhttp_connection *evcon) +{ + evcon->flags |= EVHTTP_CON_CLOSEDETECT; + + bufferevent_enable(evcon->bufev, EV_READ); +} + +static void +evhttp_connection_stop_detectclose(struct evhttp_connection *evcon) +{ + evcon->flags &= ~EVHTTP_CON_CLOSEDETECT; + + bufferevent_disable(evcon->bufev, EV_READ); +} + +static void +evhttp_connection_retry(evutil_socket_t fd, short what, void *arg) +{ + struct evhttp_connection *evcon = arg; + + evcon->state = EVCON_DISCONNECTED; + evhttp_connection_connect_(evcon); +} + +static void +evhttp_connection_cb_cleanup(struct evhttp_connection *evcon) +{ + struct evcon_requestq requests; + + evhttp_connection_reset_(evcon); + if (evcon->retry_max < 0 || evcon->retry_cnt < evcon->retry_max) { + struct timeval tv_retry = evcon->initial_retry_timeout; + int i; + evtimer_assign(&evcon->retry_ev, evcon->base, evhttp_connection_retry, evcon); + /* XXXX handle failure from evhttp_add_event */ + for (i=0; i < evcon->retry_cnt; ++i) { + tv_retry.tv_usec *= 2; + if (tv_retry.tv_usec > 1000000) { + tv_retry.tv_usec -= 1000000; + tv_retry.tv_sec += 1; + } + tv_retry.tv_sec *= 2; + if (tv_retry.tv_sec > 3600) { + tv_retry.tv_sec = 3600; + tv_retry.tv_usec = 0; + } + } + event_add(&evcon->retry_ev, &tv_retry); + evcon->retry_cnt++; + return; + } + + /* + * User callback can do evhttp_make_request() on the same + * evcon so new request will be added to evcon->requests. To + * avoid freeing it prematurely we iterate over the copy of + * the queue. + */ + TAILQ_INIT(&requests); + while (TAILQ_FIRST(&evcon->requests) != NULL) { + struct evhttp_request *request = TAILQ_FIRST(&evcon->requests); + TAILQ_REMOVE(&evcon->requests, request, next); + TAILQ_INSERT_TAIL(&requests, request, next); + } + + /* for now, we just signal all requests by executing their callbacks */ + while (TAILQ_FIRST(&requests) != NULL) { + struct evhttp_request *request = TAILQ_FIRST(&requests); + TAILQ_REMOVE(&requests, request, next); + request->evcon = NULL; + + /* we might want to set an error here */ + request->cb(request, request->cb_arg); + evhttp_request_free_auto(request); + } +} + +static void +evhttp_connection_read_on_write_error(struct evhttp_connection *evcon, + struct evhttp_request *req) +{ + struct evbuffer *buf; + + /** Second time, we can't read anything */ + if (evcon->flags & EVHTTP_CON_READING_ERROR) { + evcon->flags &= ~EVHTTP_CON_READING_ERROR; + evhttp_connection_fail_(evcon, EVREQ_HTTP_EOF); + return; + } + + req->kind = EVHTTP_RESPONSE; + + buf = bufferevent_get_output(evcon->bufev); + evbuffer_unfreeze(buf, 1); + evbuffer_drain(buf, evbuffer_get_length(buf)); + evbuffer_freeze(buf, 1); + + evhttp_start_read_(evcon); + evcon->flags |= EVHTTP_CON_READING_ERROR; +} + +static void +evhttp_error_cb(struct bufferevent *bufev, short what, void *arg) +{ + struct evhttp_connection *evcon = arg; + struct evhttp_request *req = TAILQ_FIRST(&evcon->requests); + + if (evcon->fd == -1) + evcon->fd = bufferevent_getfd(bufev); + + switch (evcon->state) { + case EVCON_CONNECTING: + if (what & BEV_EVENT_TIMEOUT) { + event_debug(("%s: connection timeout for \"%s:%d\" on " + EV_SOCK_FMT, + __func__, evcon->address, evcon->port, + EV_SOCK_ARG(evcon->fd))); + evhttp_connection_cb_cleanup(evcon); + return; + } + break; + + case EVCON_READING_BODY: + if (!req->chunked && req->ntoread < 0 + && what == (BEV_EVENT_READING|BEV_EVENT_EOF)) { + /* EOF on read can be benign */ + evhttp_connection_done(evcon); + return; + } + break; + + case EVCON_DISCONNECTED: + case EVCON_IDLE: + case EVCON_READING_FIRSTLINE: + case EVCON_READING_HEADERS: + case EVCON_READING_TRAILER: + case EVCON_WRITING: + default: + break; + } + + /* when we are in close detect mode, a read error means that + * the other side closed their connection. + */ + if (evcon->flags & EVHTTP_CON_CLOSEDETECT) { + evcon->flags &= ~EVHTTP_CON_CLOSEDETECT; + EVUTIL_ASSERT(evcon->http_server == NULL); + /* For connections from the client, we just + * reset the connection so that it becomes + * disconnected. + */ + EVUTIL_ASSERT(evcon->state == EVCON_IDLE); + evhttp_connection_reset_(evcon); + + /* + * If we have no more requests that need completion + * and we want to auto-free the connection when all + * requests have been completed. + */ + if (TAILQ_FIRST(&evcon->requests) == NULL + && (evcon->flags & EVHTTP_CON_OUTGOING) + && (evcon->flags & EVHTTP_CON_AUTOFREE)) { + evhttp_connection_free(evcon); + } + return; + } + + if (what & BEV_EVENT_TIMEOUT) { + evhttp_connection_fail_(evcon, EVREQ_HTTP_TIMEOUT); + } else if (what & (BEV_EVENT_EOF|BEV_EVENT_ERROR)) { + if (what & BEV_EVENT_WRITING && + evcon->flags & EVHTTP_CON_READ_ON_WRITE_ERROR) { + evhttp_connection_read_on_write_error(evcon, req); + return; + } + + evhttp_connection_fail_(evcon, EVREQ_HTTP_EOF); + } else if (what == BEV_EVENT_CONNECTED) { + } else { + evhttp_connection_fail_(evcon, EVREQ_HTTP_BUFFER_ERROR); + } +} + +/* + * Event callback for asynchronous connection attempt. + */ +static void +evhttp_connection_cb(struct bufferevent *bufev, short what, void *arg) +{ + struct evhttp_connection *evcon = arg; + int error; + ev_socklen_t errsz = sizeof(error); + + if (evcon->fd == -1) + evcon->fd = bufferevent_getfd(bufev); + + if (!(what & BEV_EVENT_CONNECTED)) { + /* some operating systems return ECONNREFUSED immediately + * when connecting to a local address. the cleanup is going + * to reschedule this function call. + */ +#ifndef _WIN32 + if (errno == ECONNREFUSED) + goto cleanup; +#endif + evhttp_error_cb(bufev, what, arg); + return; + } + + if (evcon->fd == -1) { + event_debug(("%s: bufferevent_getfd returned -1", + __func__)); + goto cleanup; + } + + /* Check if the connection completed */ + if (getsockopt(evcon->fd, SOL_SOCKET, SO_ERROR, (void*)&error, + &errsz) == -1) { + event_debug(("%s: getsockopt for \"%s:%d\" on "EV_SOCK_FMT, + __func__, evcon->address, evcon->port, + EV_SOCK_ARG(evcon->fd))); + goto cleanup; + } + + if (error) { + event_debug(("%s: connect failed for \"%s:%d\" on " + EV_SOCK_FMT": %s", + __func__, evcon->address, evcon->port, + EV_SOCK_ARG(evcon->fd), + evutil_socket_error_to_string(error))); + goto cleanup; + } + + /* We are connected to the server now */ + event_debug(("%s: connected to \"%s:%d\" on "EV_SOCK_FMT"\n", + __func__, evcon->address, evcon->port, + EV_SOCK_ARG(evcon->fd))); + + /* Reset the retry count as we were successful in connecting */ + evcon->retry_cnt = 0; + evcon->state = EVCON_IDLE; + + /* reset the bufferevent cbs */ + bufferevent_setcb(evcon->bufev, + evhttp_read_cb, + evhttp_write_cb, + evhttp_error_cb, + evcon); + + if (!evutil_timerisset(&evcon->timeout)) { + const struct timeval read_tv = { HTTP_READ_TIMEOUT, 0 }; + const struct timeval write_tv = { HTTP_WRITE_TIMEOUT, 0 }; + bufferevent_set_timeouts(evcon->bufev, &read_tv, &write_tv); + } else { + bufferevent_set_timeouts(evcon->bufev, &evcon->timeout, &evcon->timeout); + } + + /* try to start requests that have queued up on this connection */ + evhttp_request_dispatch(evcon); + return; + + cleanup: + evhttp_connection_cb_cleanup(evcon); +} + +/* + * Check if we got a valid response code. + */ + +static int +evhttp_valid_response_code(int code) +{ + if (code == 0) + return (0); + + return (1); +} + +static int +evhttp_parse_http_version(const char *version, struct evhttp_request *req) +{ + int major, minor; + char ch; + int n = sscanf(version, "HTTP/%d.%d%c", &major, &minor, &ch); + if (n != 2 || major > 1) { + event_debug(("%s: bad version %s on message %p from %s", + __func__, version, req, req->remote_host)); + return (-1); + } + req->major = major; + req->minor = minor; + return (0); +} + +/* Parses the status line of a web server */ + +static int +evhttp_parse_response_line(struct evhttp_request *req, char *line) +{ + char *protocol; + char *number; + const char *readable = ""; + + protocol = strsep(&line, " "); + if (line == NULL) + return (-1); + number = strsep(&line, " "); + if (line != NULL) + readable = line; + + if (evhttp_parse_http_version(protocol, req) < 0) + return (-1); + + req->response_code = atoi(number); + if (!evhttp_valid_response_code(req->response_code)) { + event_debug(("%s: bad response code \"%s\"", + __func__, number)); + return (-1); + } + + if (req->response_code_line != NULL) + mm_free(req->response_code_line); + if ((req->response_code_line = mm_strdup(readable)) == NULL) { + event_warn("%s: strdup", __func__); + return (-1); + } + + return (0); +} + +/* Parse the first line of a HTTP request */ + +static int +evhttp_parse_request_line(struct evhttp_request *req, char *line) +{ + char *method; + char *uri; + char *version; + const char *hostname; + const char *scheme; + size_t method_len; + enum evhttp_cmd_type type; + + /* Parse the request line */ + method = strsep(&line, " "); + if (line == NULL) + return (-1); + uri = strsep(&line, " "); + if (line == NULL) + return (-1); + version = strsep(&line, " "); + if (line != NULL) + return (-1); + + method_len = (uri - method) - 1; + type = EVHTTP_REQ_UNKNOWN_; + + /* First line */ + switch (method_len) { + case 3: + /* The length of the method string is 3, meaning it can only be one of two methods: GET or PUT */ + + /* Since both GET and PUT share the same character 'T' at the end, + * if the string doesn't have 'T', we can immediately determine this + * is an invalid HTTP method */ + + if (method[2] != 'T') { + break; + } + + switch (*method) { + case 'G': + /* This first byte is 'G', so make sure the next byte is + * 'E', if it isn't then this isn't a valid method */ + + if (method[1] == 'E') { + type = EVHTTP_REQ_GET; + } + + break; + case 'P': + /* First byte is P, check second byte for 'U', if not, + * we know it's an invalid method */ + if (method[1] == 'U') { + type = EVHTTP_REQ_PUT; + } + break; + default: + break; + } + break; + case 4: + /* The method length is 4 bytes, leaving only the methods "POST" and "HEAD" */ + switch (*method) { + case 'P': + if (method[3] == 'T' && method[2] == 'S' && method[1] == 'O') { + type = EVHTTP_REQ_POST; + } + break; + case 'H': + if (method[3] == 'D' && method[2] == 'A' && method[1] == 'E') { + type = EVHTTP_REQ_HEAD; + } + break; + default: + break; + } + break; + case 5: + /* Method length is 5 bytes, which can only encompass PATCH and TRACE */ + switch (*method) { + case 'P': + if (method[4] == 'H' && method[3] == 'C' && method[2] == 'T' && method[1] == 'A') { + type = EVHTTP_REQ_PATCH; + } + break; + case 'T': + if (method[4] == 'E' && method[3] == 'C' && method[2] == 'A' && method[1] == 'R') { + type = EVHTTP_REQ_TRACE; + } + + break; + default: + break; + } + break; + case 6: + /* Method length is 6, only valid method 6 bytes in length is DELEte */ + + /* If the first byte isn't 'D' then it's invalid */ + if (*method != 'D') { + break; + } + + if (method[5] == 'E' && method[4] == 'T' && method[3] == 'E' && method[2] == 'L' && method[1] == 'E') { + type = EVHTTP_REQ_DELETE; + } + + break; + case 7: + /* Method length is 7, only valid methods are "OPTIONS" and "CONNECT" */ + switch (*method) { + case 'O': + if (method[6] == 'S' && method[5] == 'N' && method[4] == 'O' && + method[3] == 'I' && method[2] == 'T' && method[1] == 'P') { + type = EVHTTP_REQ_OPTIONS; + } + + break; + case 'C': + if (method[6] == 'T' && method[5] == 'C' && method[4] == 'E' && + method[3] == 'N' && method[2] == 'N' && method[1] == 'O') { + type = EVHTTP_REQ_CONNECT; + } + + break; + default: + break; + } + break; + } /* switch */ + + if ((int)type == EVHTTP_REQ_UNKNOWN_) { + event_debug(("%s: bad method %s on request %p from %s", + __func__, method, req, req->remote_host)); + /* No error yet; we'll give a better error later when + * we see that req->type is unsupported. */ + } + + req->type = type; + + if (evhttp_parse_http_version(version, req) < 0) + return (-1); + + if ((req->uri = mm_strdup(uri)) == NULL) { + event_debug(("%s: mm_strdup", __func__)); + return (-1); + } + + if ((req->uri_elems = evhttp_uri_parse_with_flags(req->uri, + EVHTTP_URI_NONCONFORMANT)) == NULL) { + return -1; + } + + /* If we have an absolute-URI, check to see if it is an http request + for a known vhost or server alias. If we don't know about this + host, we consider it a proxy request. */ + scheme = evhttp_uri_get_scheme(req->uri_elems); + hostname = evhttp_uri_get_host(req->uri_elems); + if (scheme && (!evutil_ascii_strcasecmp(scheme, "http") || + !evutil_ascii_strcasecmp(scheme, "https")) && + hostname && + !evhttp_find_vhost(req->evcon->http_server, NULL, hostname)) + req->flags |= EVHTTP_PROXY_REQUEST; + + return (0); +} + +const char * +evhttp_find_header(const struct evkeyvalq *headers, const char *key) +{ + struct evkeyval *header; + + TAILQ_FOREACH(header, headers, next) { + if (evutil_ascii_strcasecmp(header->key, key) == 0) + return (header->value); + } + + return (NULL); +} + +void +evhttp_clear_headers(struct evkeyvalq *headers) +{ + struct evkeyval *header; + + for (header = TAILQ_FIRST(headers); + header != NULL; + header = TAILQ_FIRST(headers)) { + TAILQ_REMOVE(headers, header, next); + mm_free(header->key); + mm_free(header->value); + mm_free(header); + } +} + +/* + * Returns 0, if the header was successfully removed. + * Returns -1, if the header could not be found. + */ + +int +evhttp_remove_header(struct evkeyvalq *headers, const char *key) +{ + struct evkeyval *header; + + TAILQ_FOREACH(header, headers, next) { + if (evutil_ascii_strcasecmp(header->key, key) == 0) + break; + } + + if (header == NULL) + return (-1); + + /* Free and remove the header that we found */ + TAILQ_REMOVE(headers, header, next); + mm_free(header->key); + mm_free(header->value); + mm_free(header); + + return (0); +} + +static int +evhttp_header_is_valid_value(const char *value) +{ + const char *p = value; + + while ((p = strpbrk(p, "\r\n")) != NULL) { + /* we really expect only one new line */ + p += strspn(p, "\r\n"); + /* we expect a space or tab for continuation */ + if (*p != ' ' && *p != '\t') + return (0); + } + return (1); +} + +int +evhttp_add_header(struct evkeyvalq *headers, + const char *key, const char *value) +{ + event_debug(("%s: key: %s val: %s\n", __func__, key, value)); + + if (strchr(key, '\r') != NULL || strchr(key, '\n') != NULL) { + /* drop illegal headers */ + event_debug(("%s: dropping illegal header key\n", __func__)); + return (-1); + } + + if (!evhttp_header_is_valid_value(value)) { + event_debug(("%s: dropping illegal header value\n", __func__)); + return (-1); + } + + return (evhttp_add_header_internal(headers, key, value)); +} + +static int +evhttp_add_header_internal(struct evkeyvalq *headers, + const char *key, const char *value) +{ + struct evkeyval *header = mm_calloc(1, sizeof(struct evkeyval)); + if (header == NULL) { + event_warn("%s: calloc", __func__); + return (-1); + } + if ((header->key = mm_strdup(key)) == NULL) { + mm_free(header); + event_warn("%s: strdup", __func__); + return (-1); + } + if ((header->value = mm_strdup(value)) == NULL) { + mm_free(header->key); + mm_free(header); + event_warn("%s: strdup", __func__); + return (-1); + } + + TAILQ_INSERT_TAIL(headers, header, next); + + return (0); +} + +/* + * Parses header lines from a request or a response into the specified + * request object given an event buffer. + * + * Returns + * DATA_CORRUPTED on error + * MORE_DATA_EXPECTED when we need to read more headers + * ALL_DATA_READ when all headers have been read. + */ + +enum message_read_status +evhttp_parse_firstline_(struct evhttp_request *req, struct evbuffer *buffer) +{ + char *line; + enum message_read_status status = ALL_DATA_READ; + + size_t line_length; + /* XXX try */ + line = evbuffer_readln(buffer, &line_length, EVBUFFER_EOL_CRLF); + if (line == NULL) { + if (req->evcon != NULL && + evbuffer_get_length(buffer) > req->evcon->max_headers_size) + return (DATA_TOO_LONG); + else + return (MORE_DATA_EXPECTED); + } + + if (req->evcon != NULL && + line_length > req->evcon->max_headers_size) { + mm_free(line); + return (DATA_TOO_LONG); + } + + req->headers_size = line_length; + + switch (req->kind) { + case EVHTTP_REQUEST: + if (evhttp_parse_request_line(req, line) == -1) + status = DATA_CORRUPTED; + break; + case EVHTTP_RESPONSE: + if (evhttp_parse_response_line(req, line) == -1) + status = DATA_CORRUPTED; + break; + default: + status = DATA_CORRUPTED; + } + + mm_free(line); + return (status); +} + +static int +evhttp_append_to_last_header(struct evkeyvalq *headers, char *line) +{ + struct evkeyval *header = TAILQ_LAST(headers, evkeyvalq); + char *newval; + size_t old_len, line_len; + + if (header == NULL) + return (-1); + + old_len = strlen(header->value); + + /* Strip space from start and end of line. */ + while (*line == ' ' || *line == '\t') + ++line; + evutil_rtrim_lws_(line); + + line_len = strlen(line); + + newval = mm_realloc(header->value, old_len + line_len + 2); + if (newval == NULL) + return (-1); + + newval[old_len] = ' '; + memcpy(newval + old_len + 1, line, line_len + 1); + header->value = newval; + + return (0); +} + +enum message_read_status +evhttp_parse_headers_(struct evhttp_request *req, struct evbuffer* buffer) +{ + enum message_read_status errcode = DATA_CORRUPTED; + char *line; + enum message_read_status status = MORE_DATA_EXPECTED; + + struct evkeyvalq* headers = req->input_headers; + size_t line_length; + while ((line = evbuffer_readln(buffer, &line_length, EVBUFFER_EOL_CRLF)) + != NULL) { + char *skey, *svalue; + + req->headers_size += line_length; + + if (req->evcon != NULL && + req->headers_size > req->evcon->max_headers_size) { + errcode = DATA_TOO_LONG; + goto error; + } + + if (*line == '\0') { /* Last header - Done */ + status = ALL_DATA_READ; + mm_free(line); + break; + } + + /* Check if this is a continuation line */ + if (*line == ' ' || *line == '\t') { + if (evhttp_append_to_last_header(headers, line) == -1) + goto error; + mm_free(line); + continue; + } + + /* Processing of header lines */ + svalue = line; + skey = strsep(&svalue, ":"); + if (svalue == NULL) + goto error; + + svalue += strspn(svalue, " "); + evutil_rtrim_lws_(svalue); + + if (evhttp_add_header(headers, skey, svalue) == -1) + goto error; + + mm_free(line); + } + + if (status == MORE_DATA_EXPECTED) { + if (req->evcon != NULL && + req->headers_size + evbuffer_get_length(buffer) > req->evcon->max_headers_size) + return (DATA_TOO_LONG); + } + + return (status); + + error: + mm_free(line); + return (errcode); +} + +static int +evhttp_get_body_length(struct evhttp_request *req) +{ + struct evkeyvalq *headers = req->input_headers; + const char *content_length; + const char *connection; + + content_length = evhttp_find_header(headers, "Content-Length"); + connection = evhttp_find_header(headers, "Connection"); + + if (content_length == NULL && connection == NULL) + req->ntoread = -1; + else if (content_length == NULL && + evutil_ascii_strcasecmp(connection, "Close") != 0) { + /* Bad combination, we don't know when it will end */ + event_warnx("%s: we got no content length, but the " + "server wants to keep the connection open: %s.", + __func__, connection); + return (-1); + } else if (content_length == NULL) { + req->ntoread = -1; + } else { + char *endp; + ev_int64_t ntoread = evutil_strtoll(content_length, &endp, 10); + if (*content_length == '\0' || *endp != '\0' || ntoread < 0) { + event_debug(("%s: illegal content length: %s", + __func__, content_length)); + return (-1); + } + req->ntoread = ntoread; + } + + event_debug(("%s: bytes to read: "EV_I64_FMT" (in buffer "EV_SIZE_FMT")\n", + __func__, EV_I64_ARG(req->ntoread), + EV_SIZE_ARG(evbuffer_get_length(bufferevent_get_input(req->evcon->bufev))))); + + return (0); +} + +static int +evhttp_method_may_have_body(enum evhttp_cmd_type type) +{ + switch (type) { + case EVHTTP_REQ_POST: + case EVHTTP_REQ_PUT: + case EVHTTP_REQ_PATCH: + return 1; + case EVHTTP_REQ_TRACE: + return 0; + /* XXX May any of the below methods have a body? */ + case EVHTTP_REQ_GET: + case EVHTTP_REQ_HEAD: + case EVHTTP_REQ_DELETE: + case EVHTTP_REQ_OPTIONS: + case EVHTTP_REQ_CONNECT: + return 0; + default: + return 0; + } +} + +static void +evhttp_get_body(struct evhttp_connection *evcon, struct evhttp_request *req) +{ + const char *xfer_enc; + + /* If this is a request without a body, then we are done */ + if (req->kind == EVHTTP_REQUEST && + !evhttp_method_may_have_body(req->type)) { + evhttp_connection_done(evcon); + return; + } + evcon->state = EVCON_READING_BODY; + xfer_enc = evhttp_find_header(req->input_headers, "Transfer-Encoding"); + if (xfer_enc != NULL && evutil_ascii_strcasecmp(xfer_enc, "chunked") == 0) { + req->chunked = 1; + req->ntoread = -1; + } else { + if (evhttp_get_body_length(req) == -1) { + evhttp_connection_fail_(evcon, EVREQ_HTTP_INVALID_HEADER); + return; + } + if (req->kind == EVHTTP_REQUEST && req->ntoread < 1) { + /* An incoming request with no content-length and no + * transfer-encoding has no body. */ + evhttp_connection_done(evcon); + return; + } + } + + /* Should we send a 100 Continue status line? */ + switch (evhttp_have_expect(req, 1)) { + case CONTINUE: + /* XXX It would be nice to do some sanity + checking here. Does the resource exist? + Should the resource accept post requests? If + no, we should respond with an error. For + now, just optimistically tell the client to + send their message body. */ + if (req->ntoread > 0) { + /* ntoread is ev_int64_t, max_body_size is ev_uint64_t */ + if ((req->evcon->max_body_size <= EV_INT64_MAX) && + (ev_uint64_t)req->ntoread > req->evcon->max_body_size) { + evhttp_lingering_fail(evcon, req); + return; + } + } + if (!evbuffer_get_length(bufferevent_get_input(evcon->bufev))) + evhttp_send_continue(evcon, req); + break; + case OTHER: + evhttp_send_error(req, HTTP_EXPECTATIONFAILED, NULL); + return; + case NO: break; + } + + evhttp_read_body(evcon, req); + /* note the request may have been freed in evhttp_read_body */ +} + +static void +evhttp_read_firstline(struct evhttp_connection *evcon, + struct evhttp_request *req) +{ + enum message_read_status res; + + res = evhttp_parse_firstline_(req, bufferevent_get_input(evcon->bufev)); + if (res == DATA_CORRUPTED || res == DATA_TOO_LONG) { + /* Error while reading, terminate */ + event_debug(("%s: bad header lines on "EV_SOCK_FMT"\n", + __func__, EV_SOCK_ARG(evcon->fd))); + evhttp_connection_fail_(evcon, EVREQ_HTTP_INVALID_HEADER); + return; + } else if (res == MORE_DATA_EXPECTED) { + /* Need more header lines */ + return; + } + + evcon->state = EVCON_READING_HEADERS; + evhttp_read_header(evcon, req); +} + +static void +evhttp_read_header(struct evhttp_connection *evcon, + struct evhttp_request *req) +{ + enum message_read_status res; + evutil_socket_t fd = evcon->fd; + + res = evhttp_parse_headers_(req, bufferevent_get_input(evcon->bufev)); + if (res == DATA_CORRUPTED || res == DATA_TOO_LONG) { + /* Error while reading, terminate */ + event_debug(("%s: bad header lines on "EV_SOCK_FMT"\n", + __func__, EV_SOCK_ARG(fd))); + evhttp_connection_fail_(evcon, EVREQ_HTTP_INVALID_HEADER); + return; + } else if (res == MORE_DATA_EXPECTED) { + /* Need more header lines */ + return; + } + + /* Callback can shut down connection with negative return value */ + if (req->header_cb != NULL) { + if ((*req->header_cb)(req, req->cb_arg) < 0) { + evhttp_connection_fail_(evcon, EVREQ_HTTP_EOF); + return; + } + } + + /* Done reading headers, do the real work */ + switch (req->kind) { + case EVHTTP_REQUEST: + event_debug(("%s: checking for post data on "EV_SOCK_FMT"\n", + __func__, EV_SOCK_ARG(fd))); + evhttp_get_body(evcon, req); + /* note the request may have been freed in evhttp_get_body */ + break; + + case EVHTTP_RESPONSE: + /* Start over if we got a 100 Continue response. */ + if (req->response_code == 100) { + struct evbuffer *output = bufferevent_get_output(evcon->bufev); + evbuffer_add_buffer(output, req->output_buffer); + evhttp_start_write_(evcon); + return; + } + if (!evhttp_response_needs_body(req)) { + event_debug(("%s: skipping body for code %d\n", + __func__, req->response_code)); + evhttp_connection_done(evcon); + } else { + event_debug(("%s: start of read body for %s on " + EV_SOCK_FMT"\n", + __func__, req->remote_host, EV_SOCK_ARG(fd))); + evhttp_get_body(evcon, req); + /* note the request may have been freed in + * evhttp_get_body */ + } + break; + + default: + event_warnx("%s: bad header on "EV_SOCK_FMT, __func__, + EV_SOCK_ARG(fd)); + evhttp_connection_fail_(evcon, EVREQ_HTTP_INVALID_HEADER); + break; + } + /* request may have been freed above */ +} + +/* + * Creates a TCP connection to the specified port and executes a callback + * when finished. Failure or success is indicate by the passed connection + * object. + * + * Although this interface accepts a hostname, it is intended to take + * only numeric hostnames so that non-blocking DNS resolution can + * happen elsewhere. + */ + +struct evhttp_connection * +evhttp_connection_new(const char *address, ev_uint16_t port) +{ + return (evhttp_connection_base_new(NULL, NULL, address, port)); +} + +struct evhttp_connection * +evhttp_connection_base_bufferevent_new(struct event_base *base, struct evdns_base *dnsbase, struct bufferevent* bev, + const char *address, ev_uint16_t port) +{ + struct evhttp_connection *evcon = NULL; + + event_debug(("Attempting connection to %s:%d\n", address, port)); + + if ((evcon = mm_calloc(1, sizeof(struct evhttp_connection))) == NULL) { + event_warn("%s: calloc failed", __func__); + goto error; + } + + evcon->fd = -1; + evcon->port = port; + + evcon->max_headers_size = EV_SIZE_MAX; + evcon->max_body_size = EV_SIZE_MAX; + + evutil_timerclear(&evcon->timeout); + evcon->retry_cnt = evcon->retry_max = 0; + + if ((evcon->address = mm_strdup(address)) == NULL) { + event_warn("%s: strdup failed", __func__); + goto error; + } + + if (bev == NULL) { + if (!(bev = bufferevent_socket_new(base, -1, 0))) { + event_warn("%s: bufferevent_socket_new failed", __func__); + goto error; + } + } + + bufferevent_setcb(bev, evhttp_read_cb, evhttp_write_cb, evhttp_error_cb, evcon); + evcon->bufev = bev; + + evcon->state = EVCON_DISCONNECTED; + TAILQ_INIT(&evcon->requests); + + evcon->initial_retry_timeout.tv_sec = 2; + evcon->initial_retry_timeout.tv_usec = 0; + + if (base != NULL) { + evcon->base = base; + if (bufferevent_get_base(bev) != base) + bufferevent_base_set(base, evcon->bufev); + } + + event_deferred_cb_init_( + &evcon->read_more_deferred_cb, + bufferevent_get_priority(bev), + evhttp_deferred_read_cb, evcon); + + evcon->dns_base = dnsbase; + evcon->ai_family = AF_UNSPEC; + + return (evcon); + + error: + if (evcon != NULL) + evhttp_connection_free(evcon); + return (NULL); +} + +struct bufferevent* evhttp_connection_get_bufferevent(struct evhttp_connection *evcon) +{ + return evcon->bufev; +} + +struct evhttp * +evhttp_connection_get_server(struct evhttp_connection *evcon) +{ + return evcon->http_server; +} + +struct evhttp_connection * +evhttp_connection_base_new(struct event_base *base, struct evdns_base *dnsbase, + const char *address, ev_uint16_t port) +{ + return evhttp_connection_base_bufferevent_new(base, dnsbase, NULL, address, port); +} + +void evhttp_connection_set_family(struct evhttp_connection *evcon, + int family) +{ + evcon->ai_family = family; +} + +int evhttp_connection_set_flags(struct evhttp_connection *evcon, + int flags) +{ + int avail_flags = 0; + avail_flags |= EVHTTP_CON_REUSE_CONNECTED_ADDR; + avail_flags |= EVHTTP_CON_READ_ON_WRITE_ERROR; + + if (flags & ~avail_flags || flags > EVHTTP_CON_PUBLIC_FLAGS_END) + return 1; + evcon->flags &= ~avail_flags; + + evcon->flags |= flags; + + return 0; +} + +void +evhttp_connection_set_base(struct evhttp_connection *evcon, + struct event_base *base) +{ + EVUTIL_ASSERT(evcon->base == NULL); + EVUTIL_ASSERT(evcon->state == EVCON_DISCONNECTED); + evcon->base = base; + bufferevent_base_set(base, evcon->bufev); +} + +void +evhttp_connection_set_timeout(struct evhttp_connection *evcon, + int timeout_in_secs) +{ + if (timeout_in_secs == -1) + evhttp_connection_set_timeout_tv(evcon, NULL); + else { + struct timeval tv; + tv.tv_sec = timeout_in_secs; + tv.tv_usec = 0; + evhttp_connection_set_timeout_tv(evcon, &tv); + } +} + +void +evhttp_connection_set_timeout_tv(struct evhttp_connection *evcon, + const struct timeval* tv) +{ + if (tv) { + evcon->timeout = *tv; + bufferevent_set_timeouts(evcon->bufev, &evcon->timeout, &evcon->timeout); + } else { + const struct timeval read_tv = { HTTP_READ_TIMEOUT, 0 }; + const struct timeval write_tv = { HTTP_WRITE_TIMEOUT, 0 }; + evutil_timerclear(&evcon->timeout); + bufferevent_set_timeouts(evcon->bufev, &read_tv, &write_tv); + } +} + +void +evhttp_connection_set_initial_retry_tv(struct evhttp_connection *evcon, + const struct timeval *tv) +{ + if (tv) { + evcon->initial_retry_timeout = *tv; + } else { + evutil_timerclear(&evcon->initial_retry_timeout); + evcon->initial_retry_timeout.tv_sec = 2; + } +} + +void +evhttp_connection_set_retries(struct evhttp_connection *evcon, + int retry_max) +{ + evcon->retry_max = retry_max; +} + +void +evhttp_connection_set_closecb(struct evhttp_connection *evcon, + void (*cb)(struct evhttp_connection *, void *), void *cbarg) +{ + evcon->closecb = cb; + evcon->closecb_arg = cbarg; +} + +void +evhttp_connection_get_peer(struct evhttp_connection *evcon, + char **address, ev_uint16_t *port) +{ + *address = evcon->address; + *port = evcon->port; +} + +const struct sockaddr* +evhttp_connection_get_addr(struct evhttp_connection *evcon) +{ + return bufferevent_socket_get_conn_address_(evcon->bufev); +} + +int +evhttp_connection_connect_(struct evhttp_connection *evcon) +{ + int old_state = evcon->state; + const char *address = evcon->address; + const struct sockaddr *sa = evhttp_connection_get_addr(evcon); + int ret; + + if (evcon->state == EVCON_CONNECTING) + return (0); + + evhttp_connection_reset_(evcon); + + EVUTIL_ASSERT(!(evcon->flags & EVHTTP_CON_INCOMING)); + evcon->flags |= EVHTTP_CON_OUTGOING; + + if (evcon->bind_address || evcon->bind_port) { + evcon->fd = bind_socket( + evcon->bind_address, evcon->bind_port, 0 /*reuse*/); + if (evcon->fd == -1) { + event_debug(("%s: failed to bind to \"%s\"", + __func__, evcon->bind_address)); + return (-1); + } + + bufferevent_setfd(evcon->bufev, evcon->fd); + } else { + bufferevent_setfd(evcon->bufev, -1); + } + + /* Set up a callback for successful connection setup */ + bufferevent_setcb(evcon->bufev, + NULL /* evhttp_read_cb */, + NULL /* evhttp_write_cb */, + evhttp_connection_cb, + evcon); + if (!evutil_timerisset(&evcon->timeout)) { + const struct timeval conn_tv = { HTTP_CONNECT_TIMEOUT, 0 }; + bufferevent_set_timeouts(evcon->bufev, &conn_tv, &conn_tv); + } else { + bufferevent_set_timeouts(evcon->bufev, &evcon->timeout, &evcon->timeout); + } + /* make sure that we get a write callback */ + bufferevent_enable(evcon->bufev, EV_WRITE); + + evcon->state = EVCON_CONNECTING; + + if (evcon->flags & EVHTTP_CON_REUSE_CONNECTED_ADDR && + sa && + (sa->sa_family == AF_INET || sa->sa_family == AF_INET6)) { + int socklen = sizeof(struct sockaddr_in); + if (sa->sa_family == AF_INET6) { + socklen = sizeof(struct sockaddr_in6); + } + ret = bufferevent_socket_connect(evcon->bufev, sa, socklen); + } else { + ret = bufferevent_socket_connect_hostname(evcon->bufev, + evcon->dns_base, evcon->ai_family, address, evcon->port); + } + + if (ret < 0) { + evcon->state = old_state; + event_sock_warn(evcon->fd, "%s: connection to \"%s\" failed", + __func__, evcon->address); + /* some operating systems return ECONNREFUSED immediately + * when connecting to a local address. the cleanup is going + * to reschedule this function call. + */ + evhttp_connection_cb_cleanup(evcon); + return (0); + } + + return (0); +} + +/* + * Starts an HTTP request on the provided evhttp_connection object. + * If the connection object is not connected to the web server already, + * this will start the connection. + */ + +int +evhttp_make_request(struct evhttp_connection *evcon, + struct evhttp_request *req, + enum evhttp_cmd_type type, const char *uri) +{ + /* We are making a request */ + req->kind = EVHTTP_REQUEST; + req->type = type; + if (req->uri != NULL) + mm_free(req->uri); + if ((req->uri = mm_strdup(uri)) == NULL) { + event_warn("%s: strdup", __func__); + evhttp_request_free_auto(req); + return (-1); + } + + /* Set the protocol version if it is not supplied */ + if (!req->major && !req->minor) { + req->major = 1; + req->minor = 1; + } + + EVUTIL_ASSERT(req->evcon == NULL); + req->evcon = evcon; + EVUTIL_ASSERT(!(req->flags & EVHTTP_REQ_OWN_CONNECTION)); + + TAILQ_INSERT_TAIL(&evcon->requests, req, next); + + /* If the connection object is not connected; make it so */ + if (!evhttp_connected(evcon)) { + int res = evhttp_connection_connect_(evcon); + /* evhttp_connection_fail_(), which is called through + * evhttp_connection_connect_(), assumes that req lies in + * evcon->requests. Thus, enqueue the request in advance and + * remove it in the error case. */ + if (res != 0) + TAILQ_REMOVE(&evcon->requests, req, next); + + return res; + } + + /* + * If it's connected already and we are the first in the queue, + * then we can dispatch this request immediately. Otherwise, it + * will be dispatched once the pending requests are completed. + */ + if (TAILQ_FIRST(&evcon->requests) == req) + evhttp_request_dispatch(evcon); + + return (0); +} + +void +evhttp_cancel_request(struct evhttp_request *req) +{ + struct evhttp_connection *evcon = req->evcon; + if (evcon != NULL) { + /* We need to remove it from the connection */ + if (TAILQ_FIRST(&evcon->requests) == req) { + /* it's currently being worked on, so reset + * the connection. + */ + evhttp_connection_fail_(evcon, + EVREQ_HTTP_REQUEST_CANCEL); + + /* connection fail freed the request */ + return; + } else { + /* otherwise, we can just remove it from the + * queue + */ + TAILQ_REMOVE(&evcon->requests, req, next); + } + } + + evhttp_request_free_auto(req); +} + +/* + * Reads data from file descriptor into request structure + * Request structure needs to be set up correctly. + */ + +void +evhttp_start_read_(struct evhttp_connection *evcon) +{ + bufferevent_disable(evcon->bufev, EV_WRITE); + bufferevent_enable(evcon->bufev, EV_READ); + + evcon->state = EVCON_READING_FIRSTLINE; + /* Reset the bufferevent callbacks */ + bufferevent_setcb(evcon->bufev, + evhttp_read_cb, + evhttp_write_cb, + evhttp_error_cb, + evcon); + + /* If there's still data pending, process it next time through the + * loop. Don't do it now; that could get recusive. */ + if (evbuffer_get_length(bufferevent_get_input(evcon->bufev))) { + event_deferred_cb_schedule_(get_deferred_queue(evcon), + &evcon->read_more_deferred_cb); + } +} + +void +evhttp_start_write_(struct evhttp_connection *evcon) +{ + bufferevent_disable(evcon->bufev, EV_WRITE); + bufferevent_enable(evcon->bufev, EV_READ); + + evcon->state = EVCON_WRITING; + evhttp_write_buffer(evcon, evhttp_write_connectioncb, NULL); +} + +static void +evhttp_send_done(struct evhttp_connection *evcon, void *arg) +{ + int need_close; + struct evhttp_request *req = TAILQ_FIRST(&evcon->requests); + TAILQ_REMOVE(&evcon->requests, req, next); + + if (req->on_complete_cb != NULL) { + req->on_complete_cb(req, req->on_complete_cb_arg); + } + + need_close = + (REQ_VERSION_BEFORE(req, 1, 1) && + !evhttp_is_connection_keepalive(req->input_headers)) || + evhttp_is_request_connection_close(req); + + EVUTIL_ASSERT(req->flags & EVHTTP_REQ_OWN_CONNECTION); + evhttp_request_free(req); + + if (need_close) { + evhttp_connection_free(evcon); + return; + } + + /* we have a persistent connection; try to accept another request. */ + if (evhttp_associate_new_request_with_connection(evcon) == -1) { + evhttp_connection_free(evcon); + } +} + +/* + * Returns an error page. + */ + +void +evhttp_send_error(struct evhttp_request *req, int error, const char *reason) +{ + +#define ERR_FORMAT "\n" \ + "%d %s\n" \ + "\n" \ + "

%s

\n" \ + "\n" + + struct evbuffer *buf = evbuffer_new(); + if (buf == NULL) { + /* if we cannot allocate memory; we just drop the connection */ + evhttp_connection_free(req->evcon); + return; + } + if (reason == NULL) { + reason = evhttp_response_phrase_internal(error); + } + + evhttp_response_code_(req, error, reason); + + evbuffer_add_printf(buf, ERR_FORMAT, error, reason, reason); + + evhttp_send_page_(req, buf); + + evbuffer_free(buf); +#undef ERR_FORMAT +} + +/* Requires that headers and response code are already set up */ + +static inline void +evhttp_send(struct evhttp_request *req, struct evbuffer *databuf) +{ + struct evhttp_connection *evcon = req->evcon; + + if (evcon == NULL) { + evhttp_request_free(req); + return; + } + + EVUTIL_ASSERT(TAILQ_FIRST(&evcon->requests) == req); + + /* we expect no more calls form the user on this request */ + req->userdone = 1; + + /* xxx: not sure if we really should expose the data buffer this way */ + if (databuf != NULL) + evbuffer_add_buffer(req->output_buffer, databuf); + + /* Adds headers to the response */ + evhttp_make_header(evcon, req); + + evhttp_write_buffer(evcon, evhttp_send_done, NULL); +} + +void +evhttp_send_reply(struct evhttp_request *req, int code, const char *reason, + struct evbuffer *databuf) +{ + evhttp_response_code_(req, code, reason); + + evhttp_send(req, databuf); +} + +void +evhttp_send_reply_start(struct evhttp_request *req, int code, + const char *reason) +{ + evhttp_response_code_(req, code, reason); + if (evhttp_find_header(req->output_headers, "Content-Length") == NULL && + REQ_VERSION_ATLEAST(req, 1, 1) && + evhttp_response_needs_body(req)) { + /* + * prefer HTTP/1.1 chunked encoding to closing the connection; + * note RFC 2616 section 4.4 forbids it with Content-Length: + * and it's not necessary then anyway. + */ + evhttp_add_header(req->output_headers, "Transfer-Encoding", + "chunked"); + req->chunked = 1; + } else { + req->chunked = 0; + } + evhttp_make_header(req->evcon, req); + evhttp_write_buffer(req->evcon, NULL, NULL); +} + +void +evhttp_send_reply_chunk_with_cb(struct evhttp_request *req, struct evbuffer *databuf, + void (*cb)(struct evhttp_connection *, void *), void *arg) +{ + struct evhttp_connection *evcon = req->evcon; + struct evbuffer *output; + + if (evcon == NULL) + return; + + output = bufferevent_get_output(evcon->bufev); + + if (evbuffer_get_length(databuf) == 0) + return; + if (!evhttp_response_needs_body(req)) + return; + if (req->chunked) { + evbuffer_add_printf(output, "%x\r\n", + (unsigned)evbuffer_get_length(databuf)); + } + evbuffer_add_buffer(output, databuf); + if (req->chunked) { + evbuffer_add(output, "\r\n", 2); + } + evhttp_write_buffer(evcon, cb, arg); +} + +void +evhttp_send_reply_chunk(struct evhttp_request *req, struct evbuffer *databuf) +{ + evhttp_send_reply_chunk_with_cb(req, databuf, NULL, NULL); +} +void +evhttp_send_reply_end(struct evhttp_request *req) +{ + struct evhttp_connection *evcon = req->evcon; + struct evbuffer *output; + + if (evcon == NULL) { + evhttp_request_free(req); + return; + } + + output = bufferevent_get_output(evcon->bufev); + + /* we expect no more calls form the user on this request */ + req->userdone = 1; + + if (req->chunked) { + evbuffer_add(output, "0\r\n\r\n", 5); + evhttp_write_buffer(req->evcon, evhttp_send_done, NULL); + req->chunked = 0; + } else if (evbuffer_get_length(output) == 0) { + /* let the connection know that we are done with the request */ + evhttp_send_done(evcon, NULL); + } else { + /* make the callback execute after all data has been written */ + evcon->cb = evhttp_send_done; + evcon->cb_arg = NULL; + } +} + +static const char *informational_phrases[] = { + /* 100 */ "Continue", + /* 101 */ "Switching Protocols" +}; + +static const char *success_phrases[] = { + /* 200 */ "OK", + /* 201 */ "Created", + /* 202 */ "Accepted", + /* 203 */ "Non-Authoritative Information", + /* 204 */ "No Content", + /* 205 */ "Reset Content", + /* 206 */ "Partial Content" +}; + +static const char *redirection_phrases[] = { + /* 300 */ "Multiple Choices", + /* 301 */ "Moved Permanently", + /* 302 */ "Found", + /* 303 */ "See Other", + /* 304 */ "Not Modified", + /* 305 */ "Use Proxy", + /* 307 */ "Temporary Redirect" +}; + +static const char *client_error_phrases[] = { + /* 400 */ "Bad Request", + /* 401 */ "Unauthorized", + /* 402 */ "Payment Required", + /* 403 */ "Forbidden", + /* 404 */ "Not Found", + /* 405 */ "Method Not Allowed", + /* 406 */ "Not Acceptable", + /* 407 */ "Proxy Authentication Required", + /* 408 */ "Request Time-out", + /* 409 */ "Conflict", + /* 410 */ "Gone", + /* 411 */ "Length Required", + /* 412 */ "Precondition Failed", + /* 413 */ "Request Entity Too Large", + /* 414 */ "Request-URI Too Large", + /* 415 */ "Unsupported Media Type", + /* 416 */ "Requested range not satisfiable", + /* 417 */ "Expectation Failed" +}; + +static const char *server_error_phrases[] = { + /* 500 */ "Internal Server Error", + /* 501 */ "Not Implemented", + /* 502 */ "Bad Gateway", + /* 503 */ "Service Unavailable", + /* 504 */ "Gateway Time-out", + /* 505 */ "HTTP Version not supported" +}; + +struct response_class { + const char *name; + size_t num_responses; + const char **responses; +}; + +#ifndef MEMBERSOF +#define MEMBERSOF(x) (sizeof(x)/sizeof(x[0])) +#endif + +static const struct response_class response_classes[] = { + /* 1xx */ { "Informational", MEMBERSOF(informational_phrases), informational_phrases }, + /* 2xx */ { "Success", MEMBERSOF(success_phrases), success_phrases }, + /* 3xx */ { "Redirection", MEMBERSOF(redirection_phrases), redirection_phrases }, + /* 4xx */ { "Client Error", MEMBERSOF(client_error_phrases), client_error_phrases }, + /* 5xx */ { "Server Error", MEMBERSOF(server_error_phrases), server_error_phrases } +}; + +static const char * +evhttp_response_phrase_internal(int code) +{ + int klass = code / 100 - 1; + int subcode = code % 100; + + /* Unknown class - can't do any better here */ + if (klass < 0 || klass >= (int) MEMBERSOF(response_classes)) + return "Unknown Status Class"; + + /* Unknown sub-code, return class name at least */ + if (subcode >= (int) response_classes[klass].num_responses) + return response_classes[klass].name; + + return response_classes[klass].responses[subcode]; +} + +void +evhttp_response_code_(struct evhttp_request *req, int code, const char *reason) +{ + req->kind = EVHTTP_RESPONSE; + req->response_code = code; + if (req->response_code_line != NULL) + mm_free(req->response_code_line); + if (reason == NULL) + reason = evhttp_response_phrase_internal(code); + req->response_code_line = mm_strdup(reason); + if (req->response_code_line == NULL) { + event_warn("%s: strdup", __func__); + /* XXX what else can we do? */ + } +} + +void +evhttp_send_page_(struct evhttp_request *req, struct evbuffer *databuf) +{ + if (!req->major || !req->minor) { + req->major = 1; + req->minor = 1; + } + + if (req->kind != EVHTTP_RESPONSE) + evhttp_response_code_(req, 200, "OK"); + + evhttp_clear_headers(req->output_headers); + evhttp_add_header(req->output_headers, "Content-Type", "text/html"); + evhttp_add_header(req->output_headers, "Connection", "close"); + + evhttp_send(req, databuf); +} + +static const char uri_chars[256] = { + /* 0 */ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 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, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, + /* 64 */ + 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, + 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 0, + /* 128 */ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + /* 192 */ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +}; + +#define CHAR_IS_UNRESERVED(c) \ + (uri_chars[(unsigned char)(c)]) + +/* + * Helper functions to encode/decode a string for inclusion in a URI. + * The returned string must be freed by the caller. + */ +char * +evhttp_uriencode(const char *uri, ev_ssize_t len, int space_as_plus) +{ + struct evbuffer *buf = evbuffer_new(); + const char *p, *end; + char *result; + + if (buf == NULL) { + return (NULL); + } + + + if (len >= 0) { + if (uri + len < uri) { + return (NULL); + } + + end = uri + len; + } else { + size_t slen = strlen(uri); + + if (slen >= EV_SSIZE_MAX) { + /* we don't want to mix signed and unsigned */ + return (NULL); + } + + if (uri + slen < uri) { + return (NULL); + } + + end = uri + slen; + } + + for (p = uri; p < end; p++) { + if (CHAR_IS_UNRESERVED(*p)) { + evbuffer_add(buf, p, 1); + } else if (*p == ' ' && space_as_plus) { + evbuffer_add(buf, "+", 1); + } else { + evbuffer_add_printf(buf, "%%%02X", (unsigned char)(*p)); + } + } + + evbuffer_add(buf, "", 1); /* NUL-terminator. */ + result = mm_malloc(evbuffer_get_length(buf)); + + if (result) + evbuffer_remove(buf, result, evbuffer_get_length(buf)); + + evbuffer_free(buf); + + return (result); +} + +char * +evhttp_encode_uri(const char *str) +{ + return evhttp_uriencode(str, -1, 0); +} + +/* + * @param decode_plus_ctl: if 1, we decode plus into space. If 0, we don't. + * If -1, when true we transform plus to space only after we've seen + * a ?. -1 is deprecated. + * @return the number of bytes written to 'ret'. + */ +int +evhttp_decode_uri_internal( + const char *uri, size_t length, char *ret, int decode_plus_ctl) +{ + char c; + int j; + int decode_plus = (decode_plus_ctl == 1) ? 1: 0; + unsigned i; + + for (i = j = 0; i < length; i++) { + c = uri[i]; + if (c == '?') { + if (decode_plus_ctl < 0) + decode_plus = 1; + } else if (c == '+' && decode_plus) { + c = ' '; + } else if ((i + 2) < length && c == '%' && + EVUTIL_ISXDIGIT_(uri[i+1]) && EVUTIL_ISXDIGIT_(uri[i+2])) { + char tmp[3]; + tmp[0] = uri[i+1]; + tmp[1] = uri[i+2]; + tmp[2] = '\0'; + c = (char)strtol(tmp, NULL, 16); + i += 2; + } + ret[j++] = c; + } + ret[j] = '\0'; + + return (j); +} + +/* deprecated */ +char * +evhttp_decode_uri(const char *uri) +{ + char *ret; + + if ((ret = mm_malloc(strlen(uri) + 1)) == NULL) { + event_warn("%s: malloc(%lu)", __func__, + (unsigned long)(strlen(uri) + 1)); + return (NULL); + } + + evhttp_decode_uri_internal(uri, strlen(uri), + ret, -1 /*always_decode_plus*/); + + return (ret); +} + +char * +evhttp_uridecode(const char *uri, int decode_plus, size_t *size_out) +{ + char *ret; + int n; + + if ((ret = mm_malloc(strlen(uri) + 1)) == NULL) { + event_warn("%s: malloc(%lu)", __func__, + (unsigned long)(strlen(uri) + 1)); + return (NULL); + } + + n = evhttp_decode_uri_internal(uri, strlen(uri), + ret, !!decode_plus/*always_decode_plus*/); + + if (size_out) { + EVUTIL_ASSERT(n >= 0); + *size_out = (size_t)n; + } + + return (ret); +} + +/* + * Helper function to parse out arguments in a query. + * The arguments are separated by key and value. + */ + +static int +evhttp_parse_query_impl(const char *str, struct evkeyvalq *headers, + int is_whole_uri) +{ + char *line=NULL; + char *argument; + char *p; + const char *query_part; + int result = -1; + struct evhttp_uri *uri=NULL; + + TAILQ_INIT(headers); + + if (is_whole_uri) { + uri = evhttp_uri_parse(str); + if (!uri) + goto error; + query_part = evhttp_uri_get_query(uri); + } else { + query_part = str; + } + + /* No arguments - we are done */ + if (!query_part || !strlen(query_part)) { + result = 0; + goto done; + } + + if ((line = mm_strdup(query_part)) == NULL) { + event_warn("%s: strdup", __func__); + goto error; + } + + p = argument = line; + while (p != NULL && *p != '\0') { + char *key, *value, *decoded_value; + argument = strsep(&p, "&"); + + value = argument; + key = strsep(&value, "="); + if (value == NULL || *key == '\0') { + goto error; + } + + if ((decoded_value = mm_malloc(strlen(value) + 1)) == NULL) { + event_warn("%s: mm_malloc", __func__); + goto error; + } + evhttp_decode_uri_internal(value, strlen(value), + decoded_value, 1 /*always_decode_plus*/); + event_debug(("Query Param: %s -> %s\n", key, decoded_value)); + evhttp_add_header_internal(headers, key, decoded_value); + mm_free(decoded_value); + } + + result = 0; + goto done; +error: + evhttp_clear_headers(headers); +done: + if (line) + mm_free(line); + if (uri) + evhttp_uri_free(uri); + return result; +} + +int +evhttp_parse_query(const char *uri, struct evkeyvalq *headers) +{ + return evhttp_parse_query_impl(uri, headers, 1); +} +int +evhttp_parse_query_str(const char *uri, struct evkeyvalq *headers) +{ + return evhttp_parse_query_impl(uri, headers, 0); +} + +static struct evhttp_cb * +evhttp_dispatch_callback(struct httpcbq *callbacks, struct evhttp_request *req) +{ + struct evhttp_cb *cb; + size_t offset = 0; + char *translated; + const char *path; + + /* Test for different URLs */ + path = evhttp_uri_get_path(req->uri_elems); + offset = strlen(path); + if ((translated = mm_malloc(offset + 1)) == NULL) + return (NULL); + evhttp_decode_uri_internal(path, offset, translated, + 0 /* decode_plus */); + + TAILQ_FOREACH(cb, callbacks, next) { + if (!strcmp(cb->what, translated)) { + mm_free(translated); + return (cb); + } + } + + mm_free(translated); + return (NULL); +} + + +static int +prefix_suffix_match(const char *pattern, const char *name, int ignorecase) +{ + char c; + + while (1) { + switch (c = *pattern++) { + case '\0': + return *name == '\0'; + + case '*': + while (*name != '\0') { + if (prefix_suffix_match(pattern, name, + ignorecase)) + return (1); + ++name; + } + return (0); + default: + if (c != *name) { + if (!ignorecase || + EVUTIL_TOLOWER_(c) != EVUTIL_TOLOWER_(*name)) + return (0); + } + ++name; + } + } + /* NOTREACHED */ +} + +/* + Search the vhost hierarchy beginning with http for a server alias + matching hostname. If a match is found, and outhttp is non-null, + outhttp is set to the matching http object and 1 is returned. +*/ + +static int +evhttp_find_alias(struct evhttp *http, struct evhttp **outhttp, + const char *hostname) +{ + struct evhttp_server_alias *alias; + struct evhttp *vhost; + + TAILQ_FOREACH(alias, &http->aliases, next) { + /* XXX Do we need to handle IP addresses? */ + if (!evutil_ascii_strcasecmp(alias->alias, hostname)) { + if (outhttp) + *outhttp = http; + return 1; + } + } + + /* XXX It might be good to avoid recursion here, but I don't + see a way to do that w/o a list. */ + TAILQ_FOREACH(vhost, &http->virtualhosts, next_vhost) { + if (evhttp_find_alias(vhost, outhttp, hostname)) + return 1; + } + + return 0; +} + +/* + Attempts to find the best http object to handle a request for a hostname. + All aliases for the root http object and vhosts are searched for an exact + match. Then, the vhost hierarchy is traversed again for a matching + pattern. + + If an alias or vhost is matched, 1 is returned, and outhttp, if non-null, + is set with the best matching http object. If there are no matches, the + root http object is stored in outhttp and 0 is returned. +*/ + +static int +evhttp_find_vhost(struct evhttp *http, struct evhttp **outhttp, + const char *hostname) +{ + struct evhttp *vhost; + struct evhttp *oldhttp; + int match_found = 0; + + if (evhttp_find_alias(http, outhttp, hostname)) + return 1; + + do { + oldhttp = http; + TAILQ_FOREACH(vhost, &http->virtualhosts, next_vhost) { + if (prefix_suffix_match(vhost->vhost_pattern, + hostname, 1 /* ignorecase */)) { + http = vhost; + match_found = 1; + break; + } + } + } while (oldhttp != http); + + if (outhttp) + *outhttp = http; + + return match_found; +} + +static void +evhttp_handle_request(struct evhttp_request *req, void *arg) +{ + struct evhttp *http = arg; + struct evhttp_cb *cb = NULL; + const char *hostname; + + /* we have a new request on which the user needs to take action */ + req->userdone = 0; + + if (req->type == 0 || req->uri == NULL) { + evhttp_send_error(req, req->response_code, NULL); + return; + } + + if ((http->allowed_methods & req->type) == 0) { + event_debug(("Rejecting disallowed method %x (allowed: %x)\n", + (unsigned)req->type, (unsigned)http->allowed_methods)); + evhttp_send_error(req, HTTP_NOTIMPLEMENTED, NULL); + return; + } + + /* handle potential virtual hosts */ + hostname = evhttp_request_get_host(req); + if (hostname != NULL) { + evhttp_find_vhost(http, &http, hostname); + } + + if ((cb = evhttp_dispatch_callback(&http->callbacks, req)) != NULL) { + (*cb->cb)(req, cb->cbarg); + return; + } + + /* Generic call back */ + if (http->gencb) { + (*http->gencb)(req, http->gencbarg); + return; + } else { + /* We need to send a 404 here */ +#define ERR_FORMAT "" \ + "404 Not Found" \ + "" \ + "

Not Found

" \ + "

The requested URL %s was not found on this server.

"\ + "\n" + + char *escaped_html; + struct evbuffer *buf; + + if ((escaped_html = evhttp_htmlescape(req->uri)) == NULL) { + evhttp_connection_free(req->evcon); + return; + } + + if ((buf = evbuffer_new()) == NULL) { + mm_free(escaped_html); + evhttp_connection_free(req->evcon); + return; + } + + evhttp_response_code_(req, HTTP_NOTFOUND, "Not Found"); + + evbuffer_add_printf(buf, ERR_FORMAT, escaped_html); + + mm_free(escaped_html); + + evhttp_send_page_(req, buf); + + evbuffer_free(buf); +#undef ERR_FORMAT + } +} + +/* Listener callback when a connection arrives at a server. */ +static void +accept_socket_cb(struct evconnlistener *listener, evutil_socket_t nfd, struct sockaddr *peer_sa, int peer_socklen, void *arg) +{ + struct evhttp *http = arg; + + evhttp_get_request(http, nfd, peer_sa, peer_socklen); +} + +int +evhttp_bind_socket(struct evhttp *http, const char *address, ev_uint16_t port) +{ + struct evhttp_bound_socket *bound = + evhttp_bind_socket_with_handle(http, address, port); + if (bound == NULL) + return (-1); + return (0); +} + +struct evhttp_bound_socket * +evhttp_bind_socket_with_handle(struct evhttp *http, const char *address, ev_uint16_t port) +{ + evutil_socket_t fd; + struct evhttp_bound_socket *bound; + + if ((fd = bind_socket(address, port, 1 /*reuse*/)) == -1) + return (NULL); + + if (listen(fd, 128) == -1) { + event_sock_warn(fd, "%s: listen", __func__); + evutil_closesocket(fd); + return (NULL); + } + + bound = evhttp_accept_socket_with_handle(http, fd); + + if (bound != NULL) { + event_debug(("Bound to port %d - Awaiting connections ... ", + port)); + return (bound); + } + + return (NULL); +} + +int +evhttp_accept_socket(struct evhttp *http, evutil_socket_t fd) +{ + struct evhttp_bound_socket *bound = + evhttp_accept_socket_with_handle(http, fd); + if (bound == NULL) + return (-1); + return (0); +} + +void +evhttp_foreach_bound_socket(struct evhttp *http, + evhttp_bound_socket_foreach_fn *function, + void *argument) +{ + struct evhttp_bound_socket *bound; + + TAILQ_FOREACH(bound, &http->sockets, next) + function(bound, argument); +} + +struct evhttp_bound_socket * +evhttp_accept_socket_with_handle(struct evhttp *http, evutil_socket_t fd) +{ + struct evhttp_bound_socket *bound; + struct evconnlistener *listener; + const int flags = + LEV_OPT_REUSEABLE|LEV_OPT_CLOSE_ON_EXEC|LEV_OPT_CLOSE_ON_FREE; + + listener = evconnlistener_new(http->base, NULL, NULL, + flags, + 0, /* Backlog is '0' because we already said 'listen' */ + fd); + if (!listener) + return (NULL); + + bound = evhttp_bind_listener(http, listener); + if (!bound) { + evconnlistener_free(listener); + return (NULL); + } + return (bound); +} + +struct evhttp_bound_socket * +evhttp_bind_listener(struct evhttp *http, struct evconnlistener *listener) +{ + struct evhttp_bound_socket *bound; + + bound = mm_malloc(sizeof(struct evhttp_bound_socket)); + if (bound == NULL) + return (NULL); + + bound->listener = listener; + TAILQ_INSERT_TAIL(&http->sockets, bound, next); + + evconnlistener_set_cb(listener, accept_socket_cb, http); + return bound; +} + +evutil_socket_t +evhttp_bound_socket_get_fd(struct evhttp_bound_socket *bound) +{ + return evconnlistener_get_fd(bound->listener); +} + +struct evconnlistener * +evhttp_bound_socket_get_listener(struct evhttp_bound_socket *bound) +{ + return bound->listener; +} + +void +evhttp_del_accept_socket(struct evhttp *http, struct evhttp_bound_socket *bound) +{ + TAILQ_REMOVE(&http->sockets, bound, next); + evconnlistener_free(bound->listener); + mm_free(bound); +} + +static struct evhttp* +evhttp_new_object(void) +{ + struct evhttp *http = NULL; + + if ((http = mm_calloc(1, sizeof(struct evhttp))) == NULL) { + event_warn("%s: calloc", __func__); + return (NULL); + } + + evutil_timerclear(&http->timeout); + evhttp_set_max_headers_size(http, EV_SIZE_MAX); + evhttp_set_max_body_size(http, EV_SIZE_MAX); + evhttp_set_default_content_type(http, "text/html; charset=ISO-8859-1"); + evhttp_set_allowed_methods(http, + EVHTTP_REQ_GET | + EVHTTP_REQ_POST | + EVHTTP_REQ_HEAD | + EVHTTP_REQ_PUT | + EVHTTP_REQ_DELETE); + + TAILQ_INIT(&http->sockets); + TAILQ_INIT(&http->callbacks); + TAILQ_INIT(&http->connections); + TAILQ_INIT(&http->virtualhosts); + TAILQ_INIT(&http->aliases); + + return (http); +} + +struct evhttp * +evhttp_new(struct event_base *base) +{ + struct evhttp *http = NULL; + + http = evhttp_new_object(); + if (http == NULL) + return (NULL); + http->base = base; + + return (http); +} + +/* + * Start a web server on the specified address and port. + */ + +struct evhttp * +evhttp_start(const char *address, ev_uint16_t port) +{ + struct evhttp *http = NULL; + + http = evhttp_new_object(); + if (http == NULL) + return (NULL); + if (evhttp_bind_socket(http, address, port) == -1) { + mm_free(http); + return (NULL); + } + + return (http); +} + +void +evhttp_free(struct evhttp* http) +{ + struct evhttp_cb *http_cb; + struct evhttp_connection *evcon; + struct evhttp_bound_socket *bound; + struct evhttp* vhost; + struct evhttp_server_alias *alias; + + /* Remove the accepting part */ + while ((bound = TAILQ_FIRST(&http->sockets)) != NULL) { + TAILQ_REMOVE(&http->sockets, bound, next); + + evconnlistener_free(bound->listener); + + mm_free(bound); + } + + while ((evcon = TAILQ_FIRST(&http->connections)) != NULL) { + /* evhttp_connection_free removes the connection */ + evhttp_connection_free(evcon); + } + + while ((http_cb = TAILQ_FIRST(&http->callbacks)) != NULL) { + TAILQ_REMOVE(&http->callbacks, http_cb, next); + mm_free(http_cb->what); + mm_free(http_cb); + } + + while ((vhost = TAILQ_FIRST(&http->virtualhosts)) != NULL) { + TAILQ_REMOVE(&http->virtualhosts, vhost, next_vhost); + + evhttp_free(vhost); + } + + if (http->vhost_pattern != NULL) + mm_free(http->vhost_pattern); + + while ((alias = TAILQ_FIRST(&http->aliases)) != NULL) { + TAILQ_REMOVE(&http->aliases, alias, next); + mm_free(alias->alias); + mm_free(alias); + } + + mm_free(http); +} + +int +evhttp_add_virtual_host(struct evhttp* http, const char *pattern, + struct evhttp* vhost) +{ + /* a vhost can only be a vhost once and should not have bound sockets */ + if (vhost->vhost_pattern != NULL || + TAILQ_FIRST(&vhost->sockets) != NULL) + return (-1); + + vhost->vhost_pattern = mm_strdup(pattern); + if (vhost->vhost_pattern == NULL) + return (-1); + + TAILQ_INSERT_TAIL(&http->virtualhosts, vhost, next_vhost); + + return (0); +} + +int +evhttp_remove_virtual_host(struct evhttp* http, struct evhttp* vhost) +{ + if (vhost->vhost_pattern == NULL) + return (-1); + + TAILQ_REMOVE(&http->virtualhosts, vhost, next_vhost); + + mm_free(vhost->vhost_pattern); + vhost->vhost_pattern = NULL; + + return (0); +} + +int +evhttp_add_server_alias(struct evhttp *http, const char *alias) +{ + struct evhttp_server_alias *evalias; + + evalias = mm_calloc(1, sizeof(*evalias)); + if (!evalias) + return -1; + + evalias->alias = mm_strdup(alias); + if (!evalias->alias) { + mm_free(evalias); + return -1; + } + + TAILQ_INSERT_TAIL(&http->aliases, evalias, next); + + return 0; +} + +int +evhttp_remove_server_alias(struct evhttp *http, const char *alias) +{ + struct evhttp_server_alias *evalias; + + TAILQ_FOREACH(evalias, &http->aliases, next) { + if (evutil_ascii_strcasecmp(evalias->alias, alias) == 0) { + TAILQ_REMOVE(&http->aliases, evalias, next); + mm_free(evalias->alias); + mm_free(evalias); + return 0; + } + } + + return -1; +} + +void +evhttp_set_timeout(struct evhttp* http, int timeout_in_secs) +{ + if (timeout_in_secs == -1) { + evhttp_set_timeout_tv(http, NULL); + } else { + struct timeval tv; + tv.tv_sec = timeout_in_secs; + tv.tv_usec = 0; + evhttp_set_timeout_tv(http, &tv); + } +} + +void +evhttp_set_timeout_tv(struct evhttp* http, const struct timeval* tv) +{ + if (tv) { + http->timeout = *tv; + } else { + evutil_timerclear(&http->timeout); + } +} + +int evhttp_set_flags(struct evhttp *http, int flags) +{ + int avail_flags = 0; + avail_flags |= EVHTTP_SERVER_LINGERING_CLOSE; + + if (flags & ~avail_flags) + return 1; + http->flags &= ~avail_flags; + + http->flags |= flags; + + return 0; +} + +void +evhttp_set_max_headers_size(struct evhttp* http, ev_ssize_t max_headers_size) +{ + if (max_headers_size < 0) + http->default_max_headers_size = EV_SIZE_MAX; + else + http->default_max_headers_size = max_headers_size; +} + +void +evhttp_set_max_body_size(struct evhttp* http, ev_ssize_t max_body_size) +{ + if (max_body_size < 0) + http->default_max_body_size = EV_UINT64_MAX; + else + http->default_max_body_size = max_body_size; +} + +void +evhttp_set_default_content_type(struct evhttp *http, + const char *content_type) { + http->default_content_type = content_type; +} + +void +evhttp_set_allowed_methods(struct evhttp* http, ev_uint16_t methods) +{ + http->allowed_methods = methods; +} + +int +evhttp_set_cb(struct evhttp *http, const char *uri, + void (*cb)(struct evhttp_request *, void *), void *cbarg) +{ + struct evhttp_cb *http_cb; + + TAILQ_FOREACH(http_cb, &http->callbacks, next) { + if (strcmp(http_cb->what, uri) == 0) + return (-1); + } + + if ((http_cb = mm_calloc(1, sizeof(struct evhttp_cb))) == NULL) { + event_warn("%s: calloc", __func__); + return (-2); + } + + http_cb->what = mm_strdup(uri); + if (http_cb->what == NULL) { + event_warn("%s: strdup", __func__); + mm_free(http_cb); + return (-3); + } + http_cb->cb = cb; + http_cb->cbarg = cbarg; + + TAILQ_INSERT_TAIL(&http->callbacks, http_cb, next); + + return (0); +} + +int +evhttp_del_cb(struct evhttp *http, const char *uri) +{ + struct evhttp_cb *http_cb; + + TAILQ_FOREACH(http_cb, &http->callbacks, next) { + if (strcmp(http_cb->what, uri) == 0) + break; + } + if (http_cb == NULL) + return (-1); + + TAILQ_REMOVE(&http->callbacks, http_cb, next); + mm_free(http_cb->what); + mm_free(http_cb); + + return (0); +} + +void +evhttp_set_gencb(struct evhttp *http, + void (*cb)(struct evhttp_request *, void *), void *cbarg) +{ + http->gencb = cb; + http->gencbarg = cbarg; +} + +void +evhttp_set_bevcb(struct evhttp *http, + struct bufferevent* (*cb)(struct event_base *, void *), void *cbarg) +{ + http->bevcb = cb; + http->bevcbarg = cbarg; +} + +/* + * Request related functions + */ + +struct evhttp_request * +evhttp_request_new(void (*cb)(struct evhttp_request *, void *), void *arg) +{ + struct evhttp_request *req = NULL; + + /* Allocate request structure */ + if ((req = mm_calloc(1, sizeof(struct evhttp_request))) == NULL) { + event_warn("%s: calloc", __func__); + goto error; + } + + req->headers_size = 0; + req->body_size = 0; + + req->kind = EVHTTP_RESPONSE; + req->input_headers = mm_calloc(1, sizeof(struct evkeyvalq)); + if (req->input_headers == NULL) { + event_warn("%s: calloc", __func__); + goto error; + } + TAILQ_INIT(req->input_headers); + + req->output_headers = mm_calloc(1, sizeof(struct evkeyvalq)); + if (req->output_headers == NULL) { + event_warn("%s: calloc", __func__); + goto error; + } + TAILQ_INIT(req->output_headers); + + if ((req->input_buffer = evbuffer_new()) == NULL) { + event_warn("%s: evbuffer_new", __func__); + goto error; + } + + if ((req->output_buffer = evbuffer_new()) == NULL) { + event_warn("%s: evbuffer_new", __func__); + goto error; + } + + req->cb = cb; + req->cb_arg = arg; + + return (req); + + error: + if (req != NULL) + evhttp_request_free(req); + return (NULL); +} + +void +evhttp_request_free(struct evhttp_request *req) +{ + if ((req->flags & EVHTTP_REQ_DEFER_FREE) != 0) { + req->flags |= EVHTTP_REQ_NEEDS_FREE; + return; + } + + if (req->remote_host != NULL) + mm_free(req->remote_host); + if (req->uri != NULL) + mm_free(req->uri); + if (req->uri_elems != NULL) + evhttp_uri_free(req->uri_elems); + if (req->response_code_line != NULL) + mm_free(req->response_code_line); + if (req->host_cache != NULL) + mm_free(req->host_cache); + + evhttp_clear_headers(req->input_headers); + mm_free(req->input_headers); + + evhttp_clear_headers(req->output_headers); + mm_free(req->output_headers); + + if (req->input_buffer != NULL) + evbuffer_free(req->input_buffer); + + if (req->output_buffer != NULL) + evbuffer_free(req->output_buffer); + + mm_free(req); +} + +void +evhttp_request_own(struct evhttp_request *req) +{ + req->flags |= EVHTTP_USER_OWNED; +} + +int +evhttp_request_is_owned(struct evhttp_request *req) +{ + return (req->flags & EVHTTP_USER_OWNED) != 0; +} + +struct evhttp_connection * +evhttp_request_get_connection(struct evhttp_request *req) +{ + return req->evcon; +} + +struct event_base * +evhttp_connection_get_base(struct evhttp_connection *conn) +{ + return conn->base; +} + +void +evhttp_request_set_chunked_cb(struct evhttp_request *req, + void (*cb)(struct evhttp_request *, void *)) +{ + req->chunk_cb = cb; +} + +void +evhttp_request_set_header_cb(struct evhttp_request *req, + int (*cb)(struct evhttp_request *, void *)) +{ + req->header_cb = cb; +} + +void +evhttp_request_set_error_cb(struct evhttp_request *req, + void (*cb)(enum evhttp_request_error, void *)) +{ + req->error_cb = cb; +} + +void +evhttp_request_set_on_complete_cb(struct evhttp_request *req, + void (*cb)(struct evhttp_request *, void *), void *cb_arg) +{ + req->on_complete_cb = cb; + req->on_complete_cb_arg = cb_arg; +} + +/* + * Allows for inspection of the request URI + */ + +const char * +evhttp_request_get_uri(const struct evhttp_request *req) { + if (req->uri == NULL) + event_debug(("%s: request %p has no uri\n", __func__, req)); + return (req->uri); +} + +const struct evhttp_uri * +evhttp_request_get_evhttp_uri(const struct evhttp_request *req) { + if (req->uri_elems == NULL) + event_debug(("%s: request %p has no uri elems\n", + __func__, req)); + return (req->uri_elems); +} + +const char * +evhttp_request_get_host(struct evhttp_request *req) +{ + const char *host = NULL; + + if (req->host_cache) + return req->host_cache; + + if (req->uri_elems) + host = evhttp_uri_get_host(req->uri_elems); + if (!host && req->input_headers) { + const char *p; + size_t len; + + host = evhttp_find_header(req->input_headers, "Host"); + /* The Host: header may include a port. Remove it here + to be consistent with uri_elems case above. */ + if (host) { + p = host + strlen(host) - 1; + while (p > host && EVUTIL_ISDIGIT_(*p)) + --p; + if (p > host && *p == ':') { + len = p - host; + req->host_cache = mm_malloc(len + 1); + if (!req->host_cache) { + event_warn("%s: malloc", __func__); + return NULL; + } + memcpy(req->host_cache, host, len); + req->host_cache[len] = '\0'; + host = req->host_cache; + } + } + } + + return host; +} + +enum evhttp_cmd_type +evhttp_request_get_command(const struct evhttp_request *req) { + return (req->type); +} + +int +evhttp_request_get_response_code(const struct evhttp_request *req) +{ + return req->response_code; +} + +const char * +evhttp_request_get_response_code_line(const struct evhttp_request *req) +{ + return req->response_code_line; +} + +/** Returns the input headers */ +struct evkeyvalq *evhttp_request_get_input_headers(struct evhttp_request *req) +{ + return (req->input_headers); +} + +/** Returns the output headers */ +struct evkeyvalq *evhttp_request_get_output_headers(struct evhttp_request *req) +{ + return (req->output_headers); +} + +/** Returns the input buffer */ +struct evbuffer *evhttp_request_get_input_buffer(struct evhttp_request *req) +{ + return (req->input_buffer); +} + +/** Returns the output buffer */ +struct evbuffer *evhttp_request_get_output_buffer(struct evhttp_request *req) +{ + return (req->output_buffer); +} + + +/* + * Takes a file descriptor to read a request from. + * The callback is executed once the whole request has been read. + */ + +static struct evhttp_connection* +evhttp_get_request_connection( + struct evhttp* http, + evutil_socket_t fd, struct sockaddr *sa, ev_socklen_t salen) +{ + struct evhttp_connection *evcon; + char *hostname = NULL, *portname = NULL; + struct bufferevent* bev = NULL; + + name_from_addr(sa, salen, &hostname, &portname); + if (hostname == NULL || portname == NULL) { + if (hostname) mm_free(hostname); + if (portname) mm_free(portname); + return (NULL); + } + + event_debug(("%s: new request from %s:%s on "EV_SOCK_FMT"\n", + __func__, hostname, portname, EV_SOCK_ARG(fd))); + + /* we need a connection object to put the http request on */ + if (http->bevcb != NULL) { + bev = (*http->bevcb)(http->base, http->bevcbarg); + } + evcon = evhttp_connection_base_bufferevent_new( + http->base, NULL, bev, hostname, atoi(portname)); + mm_free(hostname); + mm_free(portname); + if (evcon == NULL) + return (NULL); + + evcon->max_headers_size = http->default_max_headers_size; + evcon->max_body_size = http->default_max_body_size; + if (http->flags & EVHTTP_SERVER_LINGERING_CLOSE) + evcon->flags |= EVHTTP_CON_LINGERING_CLOSE; + + evcon->flags |= EVHTTP_CON_INCOMING; + evcon->state = EVCON_READING_FIRSTLINE; + + evcon->fd = fd; + + bufferevent_enable(evcon->bufev, EV_READ); + bufferevent_disable(evcon->bufev, EV_WRITE); + bufferevent_setfd(evcon->bufev, fd); + + return (evcon); +} + +static int +evhttp_associate_new_request_with_connection(struct evhttp_connection *evcon) +{ + struct evhttp *http = evcon->http_server; + struct evhttp_request *req; + if ((req = evhttp_request_new(evhttp_handle_request, http)) == NULL) + return (-1); + + if ((req->remote_host = mm_strdup(evcon->address)) == NULL) { + event_warn("%s: strdup", __func__); + evhttp_request_free(req); + return (-1); + } + req->remote_port = evcon->port; + + req->evcon = evcon; /* the request ends up owning the connection */ + req->flags |= EVHTTP_REQ_OWN_CONNECTION; + + /* We did not present the request to the user user yet, so treat it as + * if the user was done with the request. This allows us to free the + * request on a persistent connection if the client drops it without + * sending a request. + */ + req->userdone = 1; + + TAILQ_INSERT_TAIL(&evcon->requests, req, next); + + req->kind = EVHTTP_REQUEST; + + + evhttp_start_read_(evcon); + + return (0); +} + +static void +evhttp_get_request(struct evhttp *http, evutil_socket_t fd, + struct sockaddr *sa, ev_socklen_t salen) +{ + struct evhttp_connection *evcon; + + evcon = evhttp_get_request_connection(http, fd, sa, salen); + if (evcon == NULL) { + event_sock_warn(fd, "%s: cannot get connection on "EV_SOCK_FMT, + __func__, EV_SOCK_ARG(fd)); + evutil_closesocket(fd); + return; + } + + /* the timeout can be used by the server to close idle connections */ + if (evutil_timerisset(&http->timeout)) + evhttp_connection_set_timeout_tv(evcon, &http->timeout); + + /* + * if we want to accept more than one request on a connection, + * we need to know which http server it belongs to. + */ + evcon->http_server = http; + TAILQ_INSERT_TAIL(&http->connections, evcon, next); + + if (evhttp_associate_new_request_with_connection(evcon) == -1) + evhttp_connection_free(evcon); +} + + +/* + * Network helper functions that we do not want to export to the rest of + * the world. + */ + +static void +name_from_addr(struct sockaddr *sa, ev_socklen_t salen, + char **phost, char **pport) +{ + char ntop[NI_MAXHOST]; + char strport[NI_MAXSERV]; + int ni_result; + +#ifdef EVENT__HAVE_GETNAMEINFO + ni_result = getnameinfo(sa, salen, + ntop, sizeof(ntop), strport, sizeof(strport), + NI_NUMERICHOST|NI_NUMERICSERV); + + if (ni_result != 0) { +#ifdef EAI_SYSTEM + /* Windows doesn't have an EAI_SYSTEM. */ + if (ni_result == EAI_SYSTEM) + event_err(1, "getnameinfo failed"); + else +#endif + event_errx(1, "getnameinfo failed: %s", gai_strerror(ni_result)); + return; + } +#else + ni_result = fake_getnameinfo(sa, salen, + ntop, sizeof(ntop), strport, sizeof(strport), + NI_NUMERICHOST|NI_NUMERICSERV); + if (ni_result != 0) + return; +#endif + + *phost = mm_strdup(ntop); + *pport = mm_strdup(strport); +} + +/* Create a non-blocking socket and bind it */ +/* todo: rename this function */ +static evutil_socket_t +bind_socket_ai(struct evutil_addrinfo *ai, int reuse) +{ + evutil_socket_t fd; + + int on = 1, r; + int serrno; + + /* Create listen socket */ + fd = evutil_socket_(ai ? ai->ai_family : AF_INET, + SOCK_STREAM|EVUTIL_SOCK_NONBLOCK|EVUTIL_SOCK_CLOEXEC, 0); + if (fd == -1) { + event_sock_warn(-1, "socket"); + return (-1); + } + + if (setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, (void *)&on, sizeof(on))<0) + goto out; + if (reuse) { + if (evutil_make_listen_socket_reuseable(fd) < 0) + goto out; + } + + if (ai != NULL) { + r = bind(fd, ai->ai_addr, (ev_socklen_t)ai->ai_addrlen); + if (r == -1) + goto out; + } + + return (fd); + + out: + serrno = EVUTIL_SOCKET_ERROR(); + evutil_closesocket(fd); + EVUTIL_SET_SOCKET_ERROR(serrno); + return (-1); +} + +static struct evutil_addrinfo * +make_addrinfo(const char *address, ev_uint16_t port) +{ + struct evutil_addrinfo *ai = NULL; + + struct evutil_addrinfo hints; + char strport[NI_MAXSERV]; + int ai_result; + + memset(&hints, 0, sizeof(hints)); + hints.ai_family = AF_UNSPEC; + hints.ai_socktype = SOCK_STREAM; + /* turn NULL hostname into INADDR_ANY, and skip looking up any address + * types we don't have an interface to connect to. */ + hints.ai_flags = EVUTIL_AI_PASSIVE|EVUTIL_AI_ADDRCONFIG; + evutil_snprintf(strport, sizeof(strport), "%d", port); + if ((ai_result = evutil_getaddrinfo(address, strport, &hints, &ai)) + != 0) { + if (ai_result == EVUTIL_EAI_SYSTEM) + event_warn("getaddrinfo"); + else + event_warnx("getaddrinfo: %s", + evutil_gai_strerror(ai_result)); + return (NULL); + } + + return (ai); +} + +static evutil_socket_t +bind_socket(const char *address, ev_uint16_t port, int reuse) +{ + evutil_socket_t fd; + struct evutil_addrinfo *aitop = NULL; + + /* just create an unbound socket */ + if (address == NULL && port == 0) + return bind_socket_ai(NULL, 0); + + aitop = make_addrinfo(address, port); + + if (aitop == NULL) + return (-1); + + fd = bind_socket_ai(aitop, reuse); + + evutil_freeaddrinfo(aitop); + + return (fd); +} + +struct evhttp_uri { + unsigned flags; + char *scheme; /* scheme; e.g http, ftp etc */ + char *userinfo; /* userinfo (typically username:pass), or NULL */ + char *host; /* hostname, IP address, or NULL */ + int port; /* port, or zero */ + char *path; /* path, or "". */ + char *query; /* query, or NULL */ + char *fragment; /* fragment or NULL */ +}; + +struct evhttp_uri * +evhttp_uri_new(void) +{ + struct evhttp_uri *uri = mm_calloc(sizeof(struct evhttp_uri), 1); + if (uri) + uri->port = -1; + return uri; +} + +void +evhttp_uri_set_flags(struct evhttp_uri *uri, unsigned flags) +{ + uri->flags = flags; +} + +/* Return true if the string starting at s and ending immediately before eos + * is a valid URI scheme according to RFC3986 + */ +static int +scheme_ok(const char *s, const char *eos) +{ + /* scheme = ALPHA *( ALPHA / DIGIT / "+" / "-" / "." ) */ + EVUTIL_ASSERT(eos >= s); + if (s == eos) + return 0; + if (!EVUTIL_ISALPHA_(*s)) + return 0; + while (++s < eos) { + if (! EVUTIL_ISALNUM_(*s) && + *s != '+' && *s != '-' && *s != '.') + return 0; + } + return 1; +} + +#define SUBDELIMS "!$&'()*+,;=" + +/* Return true iff [s..eos) is a valid userinfo */ +static int +userinfo_ok(const char *s, const char *eos) +{ + while (s < eos) { + if (CHAR_IS_UNRESERVED(*s) || + strchr(SUBDELIMS, *s) || + *s == ':') + ++s; + else if (*s == '%' && s+2 < eos && + EVUTIL_ISXDIGIT_(s[1]) && + EVUTIL_ISXDIGIT_(s[2])) + s += 3; + else + return 0; + } + return 1; +} + +static int +regname_ok(const char *s, const char *eos) +{ + while (s && s 65535) + return -1; + ++s; + } + return portnum; +} + +/* returns 0 for bad, 1 for ipv6, 2 for IPvFuture */ +static int +bracket_addr_ok(const char *s, const char *eos) +{ + if (s + 3 > eos || *s != '[' || *(eos-1) != ']') + return 0; + if (s[1] == 'v') { + /* IPvFuture, or junk. + "v" 1*HEXDIG "." 1*( unreserved / sub-delims / ":" ) + */ + s += 2; /* skip [v */ + --eos; + if (!EVUTIL_ISXDIGIT_(*s)) /*require at least one*/ + return 0; + while (s < eos && *s != '.') { + if (EVUTIL_ISXDIGIT_(*s)) + ++s; + else + return 0; + } + if (*s != '.') + return 0; + ++s; + while (s < eos) { + if (CHAR_IS_UNRESERVED(*s) || + strchr(SUBDELIMS, *s) || + *s == ':') + ++s; + else + return 0; + } + return 2; + } else { + /* IPv6, or junk */ + char buf[64]; + ev_ssize_t n_chars = eos-s-2; + struct in6_addr in6; + if (n_chars >= 64) /* way too long */ + return 0; + memcpy(buf, s+1, n_chars); + buf[n_chars]='\0'; + return (evutil_inet_pton(AF_INET6,buf,&in6)==1) ? 1 : 0; + } +} + +static int +parse_authority(struct evhttp_uri *uri, char *s, char *eos) +{ + char *cp, *port; + EVUTIL_ASSERT(eos); + if (eos == s) { + uri->host = mm_strdup(""); + if (uri->host == NULL) { + event_warn("%s: strdup", __func__); + return -1; + } + return 0; + } + + /* Optionally, we start with "userinfo@" */ + + cp = strchr(s, '@'); + if (cp && cp < eos) { + if (! userinfo_ok(s,cp)) + return -1; + *cp++ = '\0'; + uri->userinfo = mm_strdup(s); + if (uri->userinfo == NULL) { + event_warn("%s: strdup", __func__); + return -1; + } + } else { + cp = s; + } + /* Optionally, we end with ":port" */ + for (port=eos-1; port >= cp && EVUTIL_ISDIGIT_(*port); --port) + ; + if (port >= cp && *port == ':') { + if (port+1 == eos) /* Leave port unspecified; the RFC allows a + * nil port */ + uri->port = -1; + else if ((uri->port = parse_port(port+1, eos))<0) + return -1; + eos = port; + } + /* Now, cp..eos holds the "host" port, which can be an IPv4Address, + * an IP-Literal, or a reg-name */ + EVUTIL_ASSERT(eos >= cp); + if (*cp == '[' && eos >= cp+2 && *(eos-1) == ']') { + /* IPv6address, IP-Literal, or junk. */ + if (! bracket_addr_ok(cp, eos)) + return -1; + } else { + /* Make sure the host part is ok. */ + if (! regname_ok(cp,eos)) /* Match IPv4Address or reg-name */ + return -1; + } + uri->host = mm_malloc(eos-cp+1); + if (uri->host == NULL) { + event_warn("%s: malloc", __func__); + return -1; + } + memcpy(uri->host, cp, eos-cp); + uri->host[eos-cp] = '\0'; + return 0; + +} + +static char * +end_of_authority(char *cp) +{ + while (*cp) { + if (*cp == '?' || *cp == '#' || *cp == '/') + return cp; + ++cp; + } + return cp; +} + +enum uri_part { + PART_PATH, + PART_QUERY, + PART_FRAGMENT +}; + +/* Return the character after the longest prefix of 'cp' that matches... + * *pchar / "/" if allow_qchars is false, or + * *(pchar / "/" / "?") if allow_qchars is true. + */ +static char * +end_of_path(char *cp, enum uri_part part, unsigned flags) +{ + if (flags & EVHTTP_URI_NONCONFORMANT) { + /* If NONCONFORMANT: + * Path is everything up to a # or ? or nul. + * Query is everything up a # or nul + * Fragment is everything up to a nul. + */ + switch (part) { + case PART_PATH: + while (*cp && *cp != '#' && *cp != '?') + ++cp; + break; + case PART_QUERY: + while (*cp && *cp != '#') + ++cp; + break; + case PART_FRAGMENT: + cp += strlen(cp); + break; + }; + return cp; + } + + while (*cp) { + if (CHAR_IS_UNRESERVED(*cp) || + strchr(SUBDELIMS, *cp) || + *cp == ':' || *cp == '@' || *cp == '/') + ++cp; + else if (*cp == '%' && EVUTIL_ISXDIGIT_(cp[1]) && + EVUTIL_ISXDIGIT_(cp[2])) + cp += 3; + else if (*cp == '?' && part != PART_PATH) + ++cp; + else + return cp; + } + return cp; +} + +static int +path_matches_noscheme(const char *cp) +{ + while (*cp) { + if (*cp == ':') + return 0; + else if (*cp == '/') + return 1; + ++cp; + } + return 1; +} + +struct evhttp_uri * +evhttp_uri_parse(const char *source_uri) +{ + return evhttp_uri_parse_with_flags(source_uri, 0); +} + +struct evhttp_uri * +evhttp_uri_parse_with_flags(const char *source_uri, unsigned flags) +{ + char *readbuf = NULL, *readp = NULL, *token = NULL, *query = NULL; + char *path = NULL, *fragment = NULL; + int got_authority = 0; + + struct evhttp_uri *uri = mm_calloc(1, sizeof(struct evhttp_uri)); + if (uri == NULL) { + event_warn("%s: calloc", __func__); + goto err; + } + uri->port = -1; + uri->flags = flags; + + readbuf = mm_strdup(source_uri); + if (readbuf == NULL) { + event_warn("%s: strdup", __func__); + goto err; + } + + readp = readbuf; + token = NULL; + + /* We try to follow RFC3986 here as much as we can, and match + the productions + + URI = scheme ":" hier-part [ "?" query ] [ "#" fragment ] + + relative-ref = relative-part [ "?" query ] [ "#" fragment ] + */ + + /* 1. scheme: */ + token = strchr(readp, ':'); + if (token && scheme_ok(readp,token)) { + *token = '\0'; + uri->scheme = mm_strdup(readp); + if (uri->scheme == NULL) { + event_warn("%s: strdup", __func__); + goto err; + } + readp = token+1; /* eat : */ + } + + /* 2. Optionally, "//" then an 'authority' part. */ + if (readp[0]=='/' && readp[1] == '/') { + char *authority; + readp += 2; + authority = readp; + path = end_of_authority(readp); + if (parse_authority(uri, authority, path) < 0) + goto err; + readp = path; + got_authority = 1; + } + + /* 3. Query: path-abempty, path-absolute, path-rootless, or path-empty + */ + path = readp; + readp = end_of_path(path, PART_PATH, flags); + + /* Query */ + if (*readp == '?') { + *readp = '\0'; + ++readp; + query = readp; + readp = end_of_path(readp, PART_QUERY, flags); + } + /* fragment */ + if (*readp == '#') { + *readp = '\0'; + ++readp; + fragment = readp; + readp = end_of_path(readp, PART_FRAGMENT, flags); + } + if (*readp != '\0') { + goto err; + } + + /* These next two cases may be unreachable; I'm leaving them + * in to be defensive. */ + /* If you didn't get an authority, the path can't begin with "//" */ + if (!got_authority && path[0]=='/' && path[1]=='/') + goto err; + /* If you did get an authority, the path must begin with "/" or be + * empty. */ + if (got_authority && path[0] != '/' && path[0] != '\0') + goto err; + /* (End of maybe-unreachable cases) */ + + /* If there was no scheme, the first part of the path (if any) must + * have no colon in it. */ + if (! uri->scheme && !path_matches_noscheme(path)) + goto err; + + EVUTIL_ASSERT(path); + uri->path = mm_strdup(path); + if (uri->path == NULL) { + event_warn("%s: strdup", __func__); + goto err; + } + + if (query) { + uri->query = mm_strdup(query); + if (uri->query == NULL) { + event_warn("%s: strdup", __func__); + goto err; + } + } + if (fragment) { + uri->fragment = mm_strdup(fragment); + if (uri->fragment == NULL) { + event_warn("%s: strdup", __func__); + goto err; + } + } + + mm_free(readbuf); + + return uri; +err: + if (uri) + evhttp_uri_free(uri); + if (readbuf) + mm_free(readbuf); + return NULL; +} + +void +evhttp_uri_free(struct evhttp_uri *uri) +{ +#define URI_FREE_STR_(f) \ + if (uri->f) { \ + mm_free(uri->f); \ + } + + URI_FREE_STR_(scheme); + URI_FREE_STR_(userinfo); + URI_FREE_STR_(host); + URI_FREE_STR_(path); + URI_FREE_STR_(query); + URI_FREE_STR_(fragment); + + mm_free(uri); +#undef URI_FREE_STR_ +} + +char * +evhttp_uri_join(struct evhttp_uri *uri, char *buf, size_t limit) +{ + struct evbuffer *tmp = 0; + size_t joined_size = 0; + char *output = NULL; + +#define URI_ADD_(f) evbuffer_add(tmp, uri->f, strlen(uri->f)) + + if (!uri || !buf || !limit) + return NULL; + + tmp = evbuffer_new(); + if (!tmp) + return NULL; + + if (uri->scheme) { + URI_ADD_(scheme); + evbuffer_add(tmp, ":", 1); + } + if (uri->host) { + evbuffer_add(tmp, "//", 2); + if (uri->userinfo) + evbuffer_add_printf(tmp,"%s@", uri->userinfo); + URI_ADD_(host); + if (uri->port >= 0) + evbuffer_add_printf(tmp,":%d", uri->port); + + if (uri->path && uri->path[0] != '/' && uri->path[0] != '\0') + goto err; + } + + if (uri->path) + URI_ADD_(path); + + if (uri->query) { + evbuffer_add(tmp, "?", 1); + URI_ADD_(query); + } + + if (uri->fragment) { + evbuffer_add(tmp, "#", 1); + URI_ADD_(fragment); + } + + evbuffer_add(tmp, "\0", 1); /* NUL */ + + joined_size = evbuffer_get_length(tmp); + + if (joined_size > limit) { + /* It doesn't fit. */ + evbuffer_free(tmp); + return NULL; + } + evbuffer_remove(tmp, buf, joined_size); + + output = buf; +err: + evbuffer_free(tmp); + + return output; +#undef URI_ADD_ +} + +const char * +evhttp_uri_get_scheme(const struct evhttp_uri *uri) +{ + return uri->scheme; +} +const char * +evhttp_uri_get_userinfo(const struct evhttp_uri *uri) +{ + return uri->userinfo; +} +const char * +evhttp_uri_get_host(const struct evhttp_uri *uri) +{ + return uri->host; +} +int +evhttp_uri_get_port(const struct evhttp_uri *uri) +{ + return uri->port; +} +const char * +evhttp_uri_get_path(const struct evhttp_uri *uri) +{ + return uri->path; +} +const char * +evhttp_uri_get_query(const struct evhttp_uri *uri) +{ + return uri->query; +} +const char * +evhttp_uri_get_fragment(const struct evhttp_uri *uri) +{ + return uri->fragment; +} + +#define URI_SET_STR_(f) do { \ + if (uri->f) \ + mm_free(uri->f); \ + if (f) { \ + if ((uri->f = mm_strdup(f)) == NULL) { \ + event_warn("%s: strdup()", __func__); \ + return -1; \ + } \ + } else { \ + uri->f = NULL; \ + } \ + } while(0) + +int +evhttp_uri_set_scheme(struct evhttp_uri *uri, const char *scheme) +{ + if (scheme && !scheme_ok(scheme, scheme+strlen(scheme))) + return -1; + + URI_SET_STR_(scheme); + return 0; +} +int +evhttp_uri_set_userinfo(struct evhttp_uri *uri, const char *userinfo) +{ + if (userinfo && !userinfo_ok(userinfo, userinfo+strlen(userinfo))) + return -1; + URI_SET_STR_(userinfo); + return 0; +} +int +evhttp_uri_set_host(struct evhttp_uri *uri, const char *host) +{ + if (host) { + if (host[0] == '[') { + if (! bracket_addr_ok(host, host+strlen(host))) + return -1; + } else { + if (! regname_ok(host, host+strlen(host))) + return -1; + } + } + + URI_SET_STR_(host); + return 0; +} +int +evhttp_uri_set_port(struct evhttp_uri *uri, int port) +{ + if (port < -1) + return -1; + uri->port = port; + return 0; +} +#define end_of_cpath(cp,p,f) \ + ((const char*)(end_of_path(((char*)(cp)), (p), (f)))) + +int +evhttp_uri_set_path(struct evhttp_uri *uri, const char *path) +{ + if (path && end_of_cpath(path, PART_PATH, uri->flags) != path+strlen(path)) + return -1; + + URI_SET_STR_(path); + return 0; +} +int +evhttp_uri_set_query(struct evhttp_uri *uri, const char *query) +{ + if (query && end_of_cpath(query, PART_QUERY, uri->flags) != query+strlen(query)) + return -1; + URI_SET_STR_(query); + return 0; +} +int +evhttp_uri_set_fragment(struct evhttp_uri *uri, const char *fragment) +{ + if (fragment && end_of_cpath(fragment, PART_FRAGMENT, uri->flags) != fragment+strlen(fragment)) + return -1; + URI_SET_STR_(fragment); + return 0; +} diff -Nru mysql-5.7-5.7.25/extra/libevent/http-internal.h mysql-5.7-5.7.26/extra/libevent/http-internal.h --- mysql-5.7-5.7.25/extra/libevent/http-internal.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/http-internal.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,205 @@ +/* + * Copyright 2001-2007 Niels Provos + * Copyright 2007-2012 Niels Provos and Nick Mathewson + * + * This header file contains definitions for dealing with HTTP requests + * that are internal to libevent. As user of the library, you should not + * need to know about these. + */ + +#ifndef HTTP_INTERNAL_H_INCLUDED_ +#define HTTP_INTERNAL_H_INCLUDED_ + +#include "event2/event_struct.h" +#include "util-internal.h" +#include "defer-internal.h" + +#define HTTP_CONNECT_TIMEOUT 45 +#define HTTP_WRITE_TIMEOUT 50 +#define HTTP_READ_TIMEOUT 50 + +#define HTTP_PREFIX "http://" +#define HTTP_DEFAULTPORT 80 + +enum message_read_status { + ALL_DATA_READ = 1, + MORE_DATA_EXPECTED = 0, + DATA_CORRUPTED = -1, + REQUEST_CANCELED = -2, + DATA_TOO_LONG = -3 +}; + +struct evbuffer; +struct addrinfo; +struct evhttp_request; + +/* Indicates an unknown request method. */ +#define EVHTTP_REQ_UNKNOWN_ (1<<15) + +enum evhttp_connection_state { + EVCON_DISCONNECTED, /**< not currently connected not trying either*/ + EVCON_CONNECTING, /**< tries to currently connect */ + EVCON_IDLE, /**< connection is established */ + EVCON_READING_FIRSTLINE,/**< reading Request-Line (incoming conn) or + **< Status-Line (outgoing conn) */ + EVCON_READING_HEADERS, /**< reading request/response headers */ + EVCON_READING_BODY, /**< reading request/response body */ + EVCON_READING_TRAILER, /**< reading request/response chunked trailer */ + EVCON_WRITING /**< writing request/response headers/body */ +}; + +struct event_base; + +/* A client or server connection. */ +struct evhttp_connection { + /* we use this tailq only if this connection was created for an http + * server */ + TAILQ_ENTRY(evhttp_connection) next; + + evutil_socket_t fd; + struct bufferevent *bufev; + + struct event retry_ev; /* for retrying connects */ + + char *bind_address; /* address to use for binding the src */ + ev_uint16_t bind_port; /* local port for binding the src */ + + char *address; /* address to connect to */ + ev_uint16_t port; + + size_t max_headers_size; + ev_uint64_t max_body_size; + + int flags; +#define EVHTTP_CON_INCOMING 0x0001 /* only one request on it ever */ +#define EVHTTP_CON_OUTGOING 0x0002 /* multiple requests possible */ +#define EVHTTP_CON_CLOSEDETECT 0x0004 /* detecting if persistent close */ +/* set when we want to auto free the connection */ +#define EVHTTP_CON_AUTOFREE EVHTTP_CON_PUBLIC_FLAGS_END +/* Installed when attempt to read HTTP error after write failed, see + * EVHTTP_CON_READ_ON_WRITE_ERROR */ +#define EVHTTP_CON_READING_ERROR (EVHTTP_CON_AUTOFREE << 1) + + struct timeval timeout; /* timeout for events */ + int retry_cnt; /* retry count */ + int retry_max; /* maximum number of retries */ + struct timeval initial_retry_timeout; /* Timeout for low long to wait + * after first failing attempt + * before retry */ + + enum evhttp_connection_state state; + + /* for server connections, the http server they are connected with */ + struct evhttp *http_server; + + TAILQ_HEAD(evcon_requestq, evhttp_request) requests; + + void (*cb)(struct evhttp_connection *, void *); + void *cb_arg; + + void (*closecb)(struct evhttp_connection *, void *); + void *closecb_arg; + + struct event_callback read_more_deferred_cb; + + struct event_base *base; + struct evdns_base *dns_base; + int ai_family; +}; + +/* A callback for an http server */ +struct evhttp_cb { + TAILQ_ENTRY(evhttp_cb) next; + + char *what; + + void (*cb)(struct evhttp_request *req, void *); + void *cbarg; +}; + +/* both the http server as well as the rpc system need to queue connections */ +TAILQ_HEAD(evconq, evhttp_connection); + +/* each bound socket is stored in one of these */ +struct evhttp_bound_socket { + TAILQ_ENTRY(evhttp_bound_socket) next; + + struct evconnlistener *listener; +}; + +/* server alias list item. */ +struct evhttp_server_alias { + TAILQ_ENTRY(evhttp_server_alias) next; + + char *alias; /* the server alias. */ +}; + +struct evhttp { + /* Next vhost, if this is a vhost. */ + TAILQ_ENTRY(evhttp) next_vhost; + + /* All listeners for this host */ + TAILQ_HEAD(boundq, evhttp_bound_socket) sockets; + + TAILQ_HEAD(httpcbq, evhttp_cb) callbacks; + + /* All live connections on this host. */ + struct evconq connections; + + TAILQ_HEAD(vhostsq, evhttp) virtualhosts; + + TAILQ_HEAD(aliasq, evhttp_server_alias) aliases; + + /* NULL if this server is not a vhost */ + char *vhost_pattern; + + struct timeval timeout; + + size_t default_max_headers_size; + ev_uint64_t default_max_body_size; + int flags; + const char *default_content_type; + + /* Bitmask of all HTTP methods that we accept and pass to user + * callbacks. */ + ev_uint16_t allowed_methods; + + /* Fallback callback if all the other callbacks for this connection + don't match. */ + void (*gencb)(struct evhttp_request *req, void *); + void *gencbarg; + struct bufferevent* (*bevcb)(struct event_base *, void *); + void *bevcbarg; + + struct event_base *base; +}; + +/* XXX most of these functions could be static. */ + +/* resets the connection; can be reused for more requests */ +void evhttp_connection_reset_(struct evhttp_connection *); + +/* connects if necessary */ +int evhttp_connection_connect_(struct evhttp_connection *); + +enum evhttp_request_error; +/* notifies the current request that it failed; resets connection */ +void evhttp_connection_fail_(struct evhttp_connection *, + enum evhttp_request_error error); + +enum message_read_status; + +enum message_read_status evhttp_parse_firstline_(struct evhttp_request *, struct evbuffer*); +enum message_read_status evhttp_parse_headers_(struct evhttp_request *, struct evbuffer*); + +void evhttp_start_read_(struct evhttp_connection *); +void evhttp_start_write_(struct evhttp_connection *); + +/* response sending HTML the data in the buffer */ +void evhttp_response_code_(struct evhttp_request *, int, const char *); +void evhttp_send_page_(struct evhttp_request *, struct evbuffer *); + +int evhttp_decode_uri_internal(const char *uri, size_t length, + char *ret, int decode_plus); + +#endif /* _HTTP_H */ diff -Nru mysql-5.7-5.7.25/extra/libevent/include/evdns.h mysql-5.7-5.7.26/extra/libevent/include/evdns.h --- mysql-5.7-5.7.25/extra/libevent/include/evdns.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/include/evdns.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,45 @@ +/* + * Copyright (c) 2000-2007 Niels Provos + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef EVENT1_EVDNS_H_INCLUDED_ +#define EVENT1_EVDNS_H_INCLUDED_ + +/** @file evdns.h + + A dns subsystem for Libevent. + + The header is deprecated in Libevent 2.0 and later; please + use instead. Depending on what functionality you + need, you may also want to include more of the other + headers. + */ + +#include +#include +#include +#include + +#endif /* EVENT1_EVDNS_H_INCLUDED_ */ diff -Nru mysql-5.7-5.7.25/extra/libevent/include/event2/buffer_compat.h mysql-5.7-5.7.26/extra/libevent/include/event2/buffer_compat.h --- mysql-5.7-5.7.25/extra/libevent/include/event2/buffer_compat.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/include/event2/buffer_compat.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,115 @@ +/* + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ + +#ifndef EVENT2_BUFFER_COMPAT_H_INCLUDED_ +#define EVENT2_BUFFER_COMPAT_H_INCLUDED_ + +#include + +/** @file event2/buffer_compat.h + + Obsolete and deprecated versions of the functions in buffer.h: provided + only for backward compatibility. + */ + + +/** + Obsolete alias for evbuffer_readln(buffer, NULL, EVBUFFER_EOL_ANY). + + @deprecated This function is deprecated because its behavior is not correct + for almost any protocol, and also because it's wholly subsumed by + evbuffer_readln(). + + @param buffer the evbuffer to read from + @return pointer to a single line, or NULL if an error occurred + +*/ +EVENT2_EXPORT_SYMBOL +char *evbuffer_readline(struct evbuffer *buffer); + +/** Type definition for a callback that is invoked whenever data is added or + removed from an evbuffer. + + An evbuffer may have one or more callbacks set at a time. The order + in which they are executed is undefined. + + A callback function may add more callbacks, or remove itself from the + list of callbacks, or add or remove data from the buffer. It may not + remove another callback from the list. + + If a callback adds or removes data from the buffer or from another + buffer, this can cause a recursive invocation of your callback or + other callbacks. If you ask for an infinite loop, you might just get + one: watch out! + + @param buffer the buffer whose size has changed + @param old_len the previous length of the buffer + @param new_len the current length of the buffer + @param arg a pointer to user data +*/ +typedef void (*evbuffer_cb)(struct evbuffer *buffer, size_t old_len, size_t new_len, void *arg); + +/** + Replace all callbacks on an evbuffer with a single new callback, or + remove them. + + Subsequent calls to evbuffer_setcb() replace callbacks set by previous + calls. Setting the callback to NULL removes any previously set callback. + + @deprecated This function is deprecated because it clears all previous + callbacks set on the evbuffer, which can cause confusing behavior if + multiple parts of the code all want to add their own callbacks on a + buffer. Instead, use evbuffer_add(), evbuffer_del(), and + evbuffer_setflags() to manage your own evbuffer callbacks without + interfering with callbacks set by others. + + @param buffer the evbuffer to be monitored + @param cb the callback function to invoke when the evbuffer is modified, + or NULL to remove all callbacks. + @param cbarg an argument to be provided to the callback function + */ +EVENT2_EXPORT_SYMBOL +void evbuffer_setcb(struct evbuffer *buffer, evbuffer_cb cb, void *cbarg); + + +/** + Find a string within an evbuffer. + + @param buffer the evbuffer to be searched + @param what the string to be searched for + @param len the length of the search string + @return a pointer to the beginning of the search string, or NULL if the search failed. + */ +EVENT2_EXPORT_SYMBOL +unsigned char *evbuffer_find(struct evbuffer *buffer, const unsigned char *what, size_t len); + +/** deprecated in favor of calling the functions directly */ +#define EVBUFFER_LENGTH(x) evbuffer_get_length(x) +/** deprecated in favor of calling the functions directly */ +#define EVBUFFER_DATA(x) evbuffer_pullup((x), -1) + +#endif + diff -Nru mysql-5.7-5.7.25/extra/libevent/include/event2/bufferevent_compat.h mysql-5.7-5.7.26/extra/libevent/include/event2/bufferevent_compat.h --- mysql-5.7-5.7.25/extra/libevent/include/event2/bufferevent_compat.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/include/event2/bufferevent_compat.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,100 @@ +/* + * Copyright (c) 2007-2012 Niels Provos, Nick Mathewson + * Copyright (c) 2000-2007 Niels Provos + * All rights reserved. + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef EVENT2_BUFFEREVENT_COMPAT_H_INCLUDED_ +#define EVENT2_BUFFEREVENT_COMPAT_H_INCLUDED_ + +#define evbuffercb bufferevent_data_cb +#define everrorcb bufferevent_event_cb + +/** + Create a new bufferevent for an fd. + + This function is deprecated. Use bufferevent_socket_new and + bufferevent_set_callbacks instead. + + Libevent provides an abstraction on top of the regular event callbacks. + This abstraction is called a buffered event. A buffered event provides + input and output buffers that get filled and drained automatically. The + user of a buffered event no longer deals directly with the I/O, but + instead is reading from input and writing to output buffers. + + Once initialized, the bufferevent structure can be used repeatedly with + bufferevent_enable() and bufferevent_disable(). + + When read enabled the bufferevent will try to read from the file descriptor + and call the read callback. The write callback is executed whenever the + output buffer is drained below the write low watermark, which is 0 by + default. + + If multiple bases are in use, bufferevent_base_set() must be called before + enabling the bufferevent for the first time. + + @deprecated This function is deprecated because it uses the current + event base, and as such can be error prone for multithreaded programs. + Use bufferevent_socket_new() instead. + + @param fd the file descriptor from which data is read and written to. + This file descriptor is not allowed to be a pipe(2). + @param readcb callback to invoke when there is data to be read, or NULL if + no callback is desired + @param writecb callback to invoke when the file descriptor is ready for + writing, or NULL if no callback is desired + @param errorcb callback to invoke when there is an error on the file + descriptor + @param cbarg an argument that will be supplied to each of the callbacks + (readcb, writecb, and errorcb) + @return a pointer to a newly allocated bufferevent struct, or NULL if an + error occurred + @see bufferevent_base_set(), bufferevent_free() + */ +struct bufferevent *bufferevent_new(evutil_socket_t fd, + evbuffercb readcb, evbuffercb writecb, everrorcb errorcb, void *cbarg); + + +/** + Set the read and write timeout for a buffered event. + + @param bufev the bufferevent to be modified + @param timeout_read the read timeout + @param timeout_write the write timeout + */ +void bufferevent_settimeout(struct bufferevent *bufev, + int timeout_read, int timeout_write); + +#define EVBUFFER_READ BEV_EVENT_READING +#define EVBUFFER_WRITE BEV_EVENT_WRITING +#define EVBUFFER_EOF BEV_EVENT_EOF +#define EVBUFFER_ERROR BEV_EVENT_ERROR +#define EVBUFFER_TIMEOUT BEV_EVENT_TIMEOUT + +/** macro for getting access to the input buffer of a bufferevent */ +#define EVBUFFER_INPUT(x) bufferevent_get_input(x) +/** macro for getting access to the output buffer of a bufferevent */ +#define EVBUFFER_OUTPUT(x) bufferevent_get_output(x) + +#endif diff -Nru mysql-5.7-5.7.25/extra/libevent/include/event2/bufferevent.h mysql-5.7-5.7.26/extra/libevent/include/event2/bufferevent.h --- mysql-5.7-5.7.25/extra/libevent/include/event2/bufferevent.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/include/event2/bufferevent.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,1021 @@ +/* + * Copyright (c) 2000-2007 Niels Provos + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef EVENT2_BUFFEREVENT_H_INCLUDED_ +#define EVENT2_BUFFEREVENT_H_INCLUDED_ + +/** + @file event2/bufferevent.h + + Functions for buffering data for network sending or receiving. Bufferevents + are higher level than evbuffers: each has an underlying evbuffer for reading + and one for writing, and callbacks that are invoked under certain + circumstances. + + A bufferevent provides input and output buffers that get filled and + drained automatically. The user of a bufferevent no longer deals + directly with the I/O, but instead is reading from input and writing + to output buffers. + + Once initialized, the bufferevent structure can be used repeatedly + with bufferevent_enable() and bufferevent_disable(). + + When reading is enabled, the bufferevent will try to read from the + file descriptor onto its input buffer, and call the read callback. + When writing is enabled, the bufferevent will try to write data onto its + file descriptor when the output buffer has enough data, and call the write + callback when the output buffer is sufficiently drained. + + Bufferevents come in several flavors, including: + +
+
Socket-based bufferevents
+
A bufferevent that reads and writes data onto a network + socket. Created with bufferevent_socket_new().
+ +
Paired bufferevents
+
A pair of bufferevents that send and receive data to one + another without touching the network. Created with + bufferevent_pair_new().
+ +
Filtering bufferevents
+
A bufferevent that transforms data, and sends or receives it + over another underlying bufferevent. Created with + bufferevent_filter_new().
+ +
SSL-backed bufferevents
+
A bufferevent that uses the openssl library to send and + receive data over an encrypted connection. Created with + bufferevent_openssl_socket_new() or + bufferevent_openssl_filter_new().
+
+ */ + +#include + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#ifdef EVENT__HAVE_SYS_TYPES_H +#include +#endif +#ifdef EVENT__HAVE_SYS_TIME_H +#include +#endif + +/* For int types. */ +#include + +/** @name Bufferevent event codes + + These flags are passed as arguments to a bufferevent's event callback. + + @{ +*/ +#define BEV_EVENT_READING 0x01 /**< error encountered while reading */ +#define BEV_EVENT_WRITING 0x02 /**< error encountered while writing */ +#define BEV_EVENT_EOF 0x10 /**< eof file reached */ +#define BEV_EVENT_ERROR 0x20 /**< unrecoverable error encountered */ +#define BEV_EVENT_TIMEOUT 0x40 /**< user-specified timeout reached */ +#define BEV_EVENT_CONNECTED 0x80 /**< connect operation finished. */ +/**@}*/ + +/** + An opaque type for handling buffered IO + + @see event2/bufferevent.h + */ +struct bufferevent +#ifdef EVENT_IN_DOXYGEN_ +{} +#endif +; +struct event_base; +struct evbuffer; +struct sockaddr; + +/** + A read or write callback for a bufferevent. + + The read callback is triggered when new data arrives in the input + buffer and the amount of readable data exceed the low watermark + which is 0 by default. + + The write callback is triggered if the write buffer has been + exhausted or fell below its low watermark. + + @param bev the bufferevent that triggered the callback + @param ctx the user-specified context for this bufferevent + */ +typedef void (*bufferevent_data_cb)(struct bufferevent *bev, void *ctx); + +/** + An event/error callback for a bufferevent. + + The event callback is triggered if either an EOF condition or another + unrecoverable error was encountered. + + For bufferevents with deferred callbacks, this is a bitwise OR of all errors + that have happened on the bufferevent since the last callback invocation. + + @param bev the bufferevent for which the error condition was reached + @param what a conjunction of flags: BEV_EVENT_READING or BEV_EVENT_WRITING + to indicate if the error was encountered on the read or write path, + and one of the following flags: BEV_EVENT_EOF, BEV_EVENT_ERROR, + BEV_EVENT_TIMEOUT, BEV_EVENT_CONNECTED. + + @param ctx the user-specified context for this bufferevent +*/ +typedef void (*bufferevent_event_cb)(struct bufferevent *bev, short what, void *ctx); + +/** Options that can be specified when creating a bufferevent */ +enum bufferevent_options { + /** If set, we close the underlying file + * descriptor/bufferevent/whatever when this bufferevent is freed. */ + BEV_OPT_CLOSE_ON_FREE = (1<<0), + + /** If set, and threading is enabled, operations on this bufferevent + * are protected by a lock */ + BEV_OPT_THREADSAFE = (1<<1), + + /** If set, callbacks are run deferred in the event loop. */ + BEV_OPT_DEFER_CALLBACKS = (1<<2), + + /** If set, callbacks are executed without locks being held on the + * bufferevent. This option currently requires that + * BEV_OPT_DEFER_CALLBACKS also be set; a future version of Libevent + * might remove the requirement.*/ + BEV_OPT_UNLOCK_CALLBACKS = (1<<3) +}; + +/** + Create a new socket bufferevent over an existing socket. + + @param base the event base to associate with the new bufferevent. + @param fd the file descriptor from which data is read and written to. + This file descriptor is not allowed to be a pipe(2). + It is safe to set the fd to -1, so long as you later + set it with bufferevent_setfd or bufferevent_socket_connect(). + @param options Zero or more BEV_OPT_* flags + @return a pointer to a newly allocated bufferevent struct, or NULL if an + error occurred + @see bufferevent_free() + */ +EVENT2_EXPORT_SYMBOL +struct bufferevent *bufferevent_socket_new(struct event_base *base, evutil_socket_t fd, int options); + +/** + Launch a connect() attempt with a socket-based bufferevent. + + When the connect succeeds, the eventcb will be invoked with + BEV_EVENT_CONNECTED set. + + If the bufferevent does not already have a socket set, we allocate a new + socket here and make it nonblocking before we begin. + + If no address is provided, we assume that the socket is already connecting, + and configure the bufferevent so that a BEV_EVENT_CONNECTED event will be + yielded when it is done connecting. + + @param bufev an existing bufferevent allocated with + bufferevent_socket_new(). + @param addr the address we should connect to + @param socklen The length of the address + @return 0 on success, -1 on failure. + */ +EVENT2_EXPORT_SYMBOL +int bufferevent_socket_connect(struct bufferevent *, const struct sockaddr *, int); + +struct evdns_base; +/** + Resolve the hostname 'hostname' and connect to it as with + bufferevent_socket_connect(). + + @param bufev An existing bufferevent allocated with bufferevent_socket_new() + @param evdns_base Optionally, an evdns_base to use for resolving hostnames + asynchronously. May be set to NULL for a blocking resolve. + @param family A preferred address family to resolve addresses to, or + AF_UNSPEC for no preference. Only AF_INET, AF_INET6, and AF_UNSPEC are + supported. + @param hostname The hostname to resolve; see below for notes on recognized + formats + @param port The port to connect to on the resolved address. + @return 0 if successful, -1 on failure. + + Recognized hostname formats are: + + www.example.com (hostname) + 1.2.3.4 (ipv4address) + ::1 (ipv6address) + [::1] ([ipv6address]) + + Performance note: If you do not provide an evdns_base, this function + may block while it waits for a DNS response. This is probably not + what you want. + */ +EVENT2_EXPORT_SYMBOL +int bufferevent_socket_connect_hostname(struct bufferevent *, + struct evdns_base *, int, const char *, int); + +/** + Return the error code for the last failed DNS lookup attempt made by + bufferevent_socket_connect_hostname(). + + @param bev The bufferevent object. + @return DNS error code. + @see evutil_gai_strerror() +*/ +EVENT2_EXPORT_SYMBOL +int bufferevent_socket_get_dns_error(struct bufferevent *bev); + +/** + Assign a bufferevent to a specific event_base. + + NOTE that only socket bufferevents support this function. + + @param base an event_base returned by event_init() + @param bufev a bufferevent struct returned by bufferevent_new() + or bufferevent_socket_new() + @return 0 if successful, or -1 if an error occurred + @see bufferevent_new() + */ +EVENT2_EXPORT_SYMBOL +int bufferevent_base_set(struct event_base *base, struct bufferevent *bufev); + +/** + Return the event_base used by a bufferevent +*/ +EVENT2_EXPORT_SYMBOL +struct event_base *bufferevent_get_base(struct bufferevent *bev); + +/** + Assign a priority to a bufferevent. + + Only supported for socket bufferevents. + + @param bufev a bufferevent struct + @param pri the priority to be assigned + @return 0 if successful, or -1 if an error occurred + */ +EVENT2_EXPORT_SYMBOL +int bufferevent_priority_set(struct bufferevent *bufev, int pri); + +/** + Return the priority of a bufferevent. + + Only supported for socket bufferevents + */ +EVENT2_EXPORT_SYMBOL +int bufferevent_get_priority(const struct bufferevent *bufev); + +/** + Deallocate the storage associated with a bufferevent structure. + + If there is pending data to write on the bufferevent, it probably won't be + flushed before the bufferevent is freed. + + @param bufev the bufferevent structure to be freed. + */ +EVENT2_EXPORT_SYMBOL +void bufferevent_free(struct bufferevent *bufev); + + +/** + Changes the callbacks for a bufferevent. + + @param bufev the bufferevent object for which to change callbacks + @param readcb callback to invoke when there is data to be read, or NULL if + no callback is desired + @param writecb callback to invoke when the file descriptor is ready for + writing, or NULL if no callback is desired + @param eventcb callback to invoke when there is an event on the file + descriptor + @param cbarg an argument that will be supplied to each of the callbacks + (readcb, writecb, and errorcb) + @see bufferevent_new() + */ +EVENT2_EXPORT_SYMBOL +void bufferevent_setcb(struct bufferevent *bufev, + bufferevent_data_cb readcb, bufferevent_data_cb writecb, + bufferevent_event_cb eventcb, void *cbarg); + +/** + Retrieves the callbacks for a bufferevent. + + @param bufev the bufferevent to examine. + @param readcb_ptr if readcb_ptr is nonnull, *readcb_ptr is set to the current + read callback for the bufferevent. + @param writecb_ptr if writecb_ptr is nonnull, *writecb_ptr is set to the + current write callback for the bufferevent. + @param eventcb_ptr if eventcb_ptr is nonnull, *eventcb_ptr is set to the + current event callback for the bufferevent. + @param cbarg_ptr if cbarg_ptr is nonnull, *cbarg_ptr is set to the current + callback argument for the bufferevent. + @see buffervent_setcb() +*/ +EVENT2_EXPORT_SYMBOL +void bufferevent_getcb(struct bufferevent *bufev, + bufferevent_data_cb *readcb_ptr, + bufferevent_data_cb *writecb_ptr, + bufferevent_event_cb *eventcb_ptr, + void **cbarg_ptr); + +/** + Changes the file descriptor on which the bufferevent operates. + Not supported for all bufferevent types. + + @param bufev the bufferevent object for which to change the file descriptor + @param fd the file descriptor to operate on +*/ +EVENT2_EXPORT_SYMBOL +int bufferevent_setfd(struct bufferevent *bufev, evutil_socket_t fd); + +/** + Returns the file descriptor associated with a bufferevent, or -1 if + no file descriptor is associated with the bufferevent. + */ +EVENT2_EXPORT_SYMBOL +evutil_socket_t bufferevent_getfd(struct bufferevent *bufev); + +/** + Returns the underlying bufferevent associated with a bufferevent (if + the bufferevent is a wrapper), or NULL if there is no underlying bufferevent. + */ +EVENT2_EXPORT_SYMBOL +struct bufferevent *bufferevent_get_underlying(struct bufferevent *bufev); + +/** + Write data to a bufferevent buffer. + + The bufferevent_write() function can be used to write data to the file + descriptor. The data is appended to the output buffer and written to the + descriptor automatically as it becomes available for writing. + + @param bufev the bufferevent to be written to + @param data a pointer to the data to be written + @param size the length of the data, in bytes + @return 0 if successful, or -1 if an error occurred + @see bufferevent_write_buffer() + */ +EVENT2_EXPORT_SYMBOL +int bufferevent_write(struct bufferevent *bufev, + const void *data, size_t size); + + +/** + Write data from an evbuffer to a bufferevent buffer. The evbuffer is + being drained as a result. + + @param bufev the bufferevent to be written to + @param buf the evbuffer to be written + @return 0 if successful, or -1 if an error occurred + @see bufferevent_write() + */ +EVENT2_EXPORT_SYMBOL +int bufferevent_write_buffer(struct bufferevent *bufev, struct evbuffer *buf); + + +/** + Read data from a bufferevent buffer. + + The bufferevent_read() function is used to read data from the input buffer. + + @param bufev the bufferevent to be read from + @param data pointer to a buffer that will store the data + @param size the size of the data buffer, in bytes + @return the amount of data read, in bytes. + */ +EVENT2_EXPORT_SYMBOL +size_t bufferevent_read(struct bufferevent *bufev, void *data, size_t size); + +/** + Read data from a bufferevent buffer into an evbuffer. This avoids + memory copies. + + @param bufev the bufferevent to be read from + @param buf the evbuffer to which to add data + @return 0 if successful, or -1 if an error occurred. + */ +EVENT2_EXPORT_SYMBOL +int bufferevent_read_buffer(struct bufferevent *bufev, struct evbuffer *buf); + +/** + Returns the input buffer. + + The user MUST NOT set the callback on this buffer. + + @param bufev the bufferevent from which to get the evbuffer + @return the evbuffer object for the input buffer + */ + +EVENT2_EXPORT_SYMBOL +struct evbuffer *bufferevent_get_input(struct bufferevent *bufev); + +/** + Returns the output buffer. + + The user MUST NOT set the callback on this buffer. + + When filters are being used, the filters need to be manually + triggered if the output buffer was manipulated. + + @param bufev the bufferevent from which to get the evbuffer + @return the evbuffer object for the output buffer + */ + +EVENT2_EXPORT_SYMBOL +struct evbuffer *bufferevent_get_output(struct bufferevent *bufev); + +/** + Enable a bufferevent. + + @param bufev the bufferevent to be enabled + @param event any combination of EV_READ | EV_WRITE. + @return 0 if successful, or -1 if an error occurred + @see bufferevent_disable() + */ +EVENT2_EXPORT_SYMBOL +int bufferevent_enable(struct bufferevent *bufev, short event); + +/** + Disable a bufferevent. + + @param bufev the bufferevent to be disabled + @param event any combination of EV_READ | EV_WRITE. + @return 0 if successful, or -1 if an error occurred + @see bufferevent_enable() + */ +EVENT2_EXPORT_SYMBOL +int bufferevent_disable(struct bufferevent *bufev, short event); + +/** + Return the events that are enabled on a given bufferevent. + + @param bufev the bufferevent to inspect + @return A combination of EV_READ | EV_WRITE + */ +EVENT2_EXPORT_SYMBOL +short bufferevent_get_enabled(struct bufferevent *bufev); + +/** + Set the read and write timeout for a bufferevent. + + A bufferevent's timeout will fire the first time that the indicated + amount of time has elapsed since a successful read or write operation, + during which the bufferevent was trying to read or write. + + (In other words, if reading or writing is disabled, or if the + bufferevent's read or write operation has been suspended because + there's no data to write, or not enough banwidth, or so on, the + timeout isn't active. The timeout only becomes active when we we're + willing to actually read or write.) + + Calling bufferevent_enable or setting a timeout for a bufferevent + whose timeout is already pending resets its timeout. + + If the timeout elapses, the corresponding operation (EV_READ or + EV_WRITE) becomes disabled until you re-enable it again. The + bufferevent's event callback is called with the + BEV_EVENT_TIMEOUT|BEV_EVENT_READING or + BEV_EVENT_TIMEOUT|BEV_EVENT_WRITING. + + @param bufev the bufferevent to be modified + @param timeout_read the read timeout, or NULL + @param timeout_write the write timeout, or NULL + */ +EVENT2_EXPORT_SYMBOL +int bufferevent_set_timeouts(struct bufferevent *bufev, + const struct timeval *timeout_read, const struct timeval *timeout_write); + +/** + Sets the watermarks for read and write events. + + On input, a bufferevent does not invoke the user read callback unless + there is at least low watermark data in the buffer. If the read buffer + is beyond the high watermark, the bufferevent stops reading from the network. + + On output, the user write callback is invoked whenever the buffered data + falls below the low watermark. Filters that write to this bufev will try + not to write more bytes to this buffer than the high watermark would allow, + except when flushing. + + @param bufev the bufferevent to be modified + @param events EV_READ, EV_WRITE or both + @param lowmark the lower watermark to set + @param highmark the high watermark to set +*/ + +EVENT2_EXPORT_SYMBOL +void bufferevent_setwatermark(struct bufferevent *bufev, short events, + size_t lowmark, size_t highmark); + +/** + Retrieves the watermarks for read or write events. + Returns non-zero if events contains not only EV_READ or EV_WRITE. + Returns zero if events equal EV_READ or EV_WRITE + + @param bufev the bufferevent to be examined + @param events EV_READ or EV_WRITE + @param lowmark receives the lower watermark if not NULL + @param highmark receives the high watermark if not NULL +*/ +EVENT2_EXPORT_SYMBOL +int bufferevent_getwatermark(struct bufferevent *bufev, short events, + size_t *lowmark, size_t *highmark); + +/** + Acquire the lock on a bufferevent. Has no effect if locking was not + enabled with BEV_OPT_THREADSAFE. + */ +EVENT2_EXPORT_SYMBOL +void bufferevent_lock(struct bufferevent *bufev); + +/** + Release the lock on a bufferevent. Has no effect if locking was not + enabled with BEV_OPT_THREADSAFE. + */ +EVENT2_EXPORT_SYMBOL +void bufferevent_unlock(struct bufferevent *bufev); + + +/** + * Public interface to manually increase the reference count of a bufferevent + * this is useful in situations where a user may reference the bufferevent + * somewhere eles (unknown to libevent) + * + * @param bufev the bufferevent to increase the refcount on + * + */ +EVENT2_EXPORT_SYMBOL +void bufferevent_incref(struct bufferevent *bufev); + +/** + * Public interface to manually decrement the reference count of a bufferevent + * + * Warning: make sure you know what you're doing. This is mainly used in + * conjunction with bufferevent_incref(). This will free up all data associated + * with a bufferevent if the reference count hits 0. + * + * @param bufev the bufferevent to decrement the refcount on + * + * @return 1 if the bufferevent was freed, otherwise 0 (still referenced) + */ +EVENT2_EXPORT_SYMBOL +int bufferevent_decref(struct bufferevent *bufev); + +/** + Flags that can be passed into filters to let them know how to + deal with the incoming data. +*/ +enum bufferevent_flush_mode { + /** usually set when processing data */ + BEV_NORMAL = 0, + + /** want to checkpoint all data sent. */ + BEV_FLUSH = 1, + + /** encountered EOF on read or done sending data */ + BEV_FINISHED = 2 +}; + +/** + Triggers the bufferevent to produce more data if possible. + + @param bufev the bufferevent object + @param iotype either EV_READ or EV_WRITE or both. + @param mode either BEV_NORMAL or BEV_FLUSH or BEV_FINISHED + @return -1 on failure, 0 if no data was produces, 1 if data was produced + */ +EVENT2_EXPORT_SYMBOL +int bufferevent_flush(struct bufferevent *bufev, + short iotype, + enum bufferevent_flush_mode mode); + +/** + Flags for bufferevent_trigger(_event) that modify when and how to trigger + the callback. +*/ +enum bufferevent_trigger_options { + /** trigger the callback regardless of the watermarks */ + BEV_TRIG_IGNORE_WATERMARKS = (1<<16), + + /** defer even if the callbacks are not */ + BEV_TRIG_DEFER_CALLBACKS = BEV_OPT_DEFER_CALLBACKS + + /* (Note: for internal reasons, these need to be disjoint from + * bufferevent_options, except when they mean the same thing. */ +}; + +/** + Triggers bufferevent data callbacks. + + The function will honor watermarks unless options contain + BEV_TRIG_IGNORE_WATERMARKS. If the options contain BEV_OPT_DEFER_CALLBACKS, + the callbacks are deferred. + + @param bufev the bufferevent object + @param iotype either EV_READ or EV_WRITE or both. + @param options + */ +EVENT2_EXPORT_SYMBOL +void bufferevent_trigger(struct bufferevent *bufev, short iotype, + int options); + +/** + Triggers the bufferevent event callback. + + If the options contain BEV_OPT_DEFER_CALLBACKS, the callbacks are deferred. + + @param bufev the bufferevent object + @param what the flags to pass onto the event callback + @param options + */ +EVENT2_EXPORT_SYMBOL +void bufferevent_trigger_event(struct bufferevent *bufev, short what, + int options); + +/** + @name Filtering support + + @{ +*/ +/** + Values that filters can return. + */ +enum bufferevent_filter_result { + /** everything is okay */ + BEV_OK = 0, + + /** the filter needs to read more data before output */ + BEV_NEED_MORE = 1, + + /** the filter encountered a critical error, no further data + can be processed. */ + BEV_ERROR = 2 +}; + +/** A callback function to implement a filter for a bufferevent. + + @param src An evbuffer to drain data from. + @param dst An evbuffer to add data to. + @param limit A suggested upper bound of bytes to write to dst. + The filter may ignore this value, but doing so means that + it will overflow the high-water mark associated with dst. + -1 means "no limit". + @param mode Whether we should write data as may be convenient + (BEV_NORMAL), or flush as much data as we can (BEV_FLUSH), + or flush as much as we can, possibly including an end-of-stream + marker (BEV_FINISH). + @param ctx A user-supplied pointer. + + @return BEV_OK if we wrote some data; BEV_NEED_MORE if we can't + produce any more output until we get some input; and BEV_ERROR + on an error. + */ +typedef enum bufferevent_filter_result (*bufferevent_filter_cb)( + struct evbuffer *src, struct evbuffer *dst, ev_ssize_t dst_limit, + enum bufferevent_flush_mode mode, void *ctx); + +/** + Allocate a new filtering bufferevent on top of an existing bufferevent. + + @param underlying the underlying bufferevent. + @param input_filter The filter to apply to data we read from the underlying + bufferevent + @param output_filter The filer to apply to data we write to the underlying + bufferevent + @param options A bitfield of bufferevent options. + @param free_context A function to use to free the filter context when + this bufferevent is freed. + @param ctx A context pointer to pass to the filter functions. + */ +EVENT2_EXPORT_SYMBOL +struct bufferevent * +bufferevent_filter_new(struct bufferevent *underlying, + bufferevent_filter_cb input_filter, + bufferevent_filter_cb output_filter, + int options, + void (*free_context)(void *), + void *ctx); +/**@}*/ + +/** + Allocate a pair of linked bufferevents. The bufferevents behave as would + two bufferevent_sock instances connected to opposite ends of a + socketpair(), except that no internal socketpair is allocated. + + @param base The event base to associate with the socketpair. + @param options A set of options for this bufferevent + @param pair A pointer to an array to hold the two new bufferevent objects. + @return 0 on success, -1 on failure. + */ +EVENT2_EXPORT_SYMBOL +int bufferevent_pair_new(struct event_base *base, int options, + struct bufferevent *pair[2]); + +/** + Given one bufferevent returned by bufferevent_pair_new(), returns the + other one if it still exists. Otherwise returns NULL. + */ +EVENT2_EXPORT_SYMBOL +struct bufferevent *bufferevent_pair_get_partner(struct bufferevent *bev); + +/** + Abstract type used to configure rate-limiting on a bufferevent or a group + of bufferevents. + */ +struct ev_token_bucket_cfg; + +/** + A group of bufferevents which are configured to respect the same rate + limit. +*/ +struct bufferevent_rate_limit_group; + +/** Maximum configurable rate- or burst-limit. */ +#define EV_RATE_LIMIT_MAX EV_SSIZE_MAX + +/** + Initialize and return a new object to configure the rate-limiting behavior + of bufferevents. + + @param read_rate The maximum number of bytes to read per tick on + average. + @param read_burst The maximum number of bytes to read in any single tick. + @param write_rate The maximum number of bytes to write per tick on + average. + @param write_burst The maximum number of bytes to write in any single tick. + @param tick_len The length of a single tick. Defaults to one second. + Any fractions of a millisecond are ignored. + + Note that all rate-limits hare are currently best-effort: future versions + of Libevent may implement them more tightly. + */ +EVENT2_EXPORT_SYMBOL +struct ev_token_bucket_cfg *ev_token_bucket_cfg_new( + size_t read_rate, size_t read_burst, + size_t write_rate, size_t write_burst, + const struct timeval *tick_len); + +/** Free all storage held in 'cfg'. + + Note: 'cfg' is not currently reference-counted; it is not safe to free it + until no bufferevent is using it. + */ +EVENT2_EXPORT_SYMBOL +void ev_token_bucket_cfg_free(struct ev_token_bucket_cfg *cfg); + +/** + Set the rate-limit of a the bufferevent 'bev' to the one specified in + 'cfg'. If 'cfg' is NULL, disable any per-bufferevent rate-limiting on + 'bev'. + + Note that only some bufferevent types currently respect rate-limiting. + They are: socket-based bufferevents (normal and IOCP-based), and SSL-based + bufferevents. + + Return 0 on sucess, -1 on failure. + */ +EVENT2_EXPORT_SYMBOL +int bufferevent_set_rate_limit(struct bufferevent *bev, + struct ev_token_bucket_cfg *cfg); + +/** + Create a new rate-limit group for bufferevents. A rate-limit group + constrains the maximum number of bytes sent and received, in toto, + by all of its bufferevents. + + @param base An event_base to run any necessary timeouts for the group. + Note that all bufferevents in the group do not necessarily need to share + this event_base. + @param cfg The rate-limit for this group. + + Note that all rate-limits hare are currently best-effort: future versions + of Libevent may implement them more tightly. + + Note also that only some bufferevent types currently respect rate-limiting. + They are: socket-based bufferevents (normal and IOCP-based), and SSL-based + bufferevents. + */ +EVENT2_EXPORT_SYMBOL +struct bufferevent_rate_limit_group *bufferevent_rate_limit_group_new( + struct event_base *base, + const struct ev_token_bucket_cfg *cfg); +/** + Change the rate-limiting settings for a given rate-limiting group. + + Return 0 on success, -1 on failure. +*/ +EVENT2_EXPORT_SYMBOL +int bufferevent_rate_limit_group_set_cfg( + struct bufferevent_rate_limit_group *, + const struct ev_token_bucket_cfg *); + +/** + Change the smallest quantum we're willing to allocate to any single + bufferevent in a group for reading or writing at a time. + + The rationale is that, because of TCP/IP protocol overheads and kernel + behavior, if a rate-limiting group is so tight on bandwidth that you're + only willing to send 1 byte per tick per bufferevent, you might instead + want to batch up the reads and writes so that you send N bytes per + 1/N of the bufferevents (chosen at random) each tick, so you still wind + up send 1 byte per tick per bufferevent on average, but you don't send + so many tiny packets. + + The default min-share is currently 64 bytes. + + Returns 0 on success, -1 on faulre. + */ +EVENT2_EXPORT_SYMBOL +int bufferevent_rate_limit_group_set_min_share( + struct bufferevent_rate_limit_group *, size_t); + +/** + Free a rate-limiting group. The group must have no members when + this function is called. +*/ +EVENT2_EXPORT_SYMBOL +void bufferevent_rate_limit_group_free(struct bufferevent_rate_limit_group *); + +/** + Add 'bev' to the list of bufferevents whose aggregate reading and writing + is restricted by 'g'. If 'g' is NULL, remove 'bev' from its current group. + + A bufferevent may belong to no more than one rate-limit group at a time. + If 'bev' is already a member of a group, it will be removed from its old + group before being added to 'g'. + + Return 0 on success and -1 on failure. + */ +EVENT2_EXPORT_SYMBOL +int bufferevent_add_to_rate_limit_group(struct bufferevent *bev, + struct bufferevent_rate_limit_group *g); + +/** Remove 'bev' from its current rate-limit group (if any). */ +EVENT2_EXPORT_SYMBOL +int bufferevent_remove_from_rate_limit_group(struct bufferevent *bev); + +/** + Set the size limit for single read operation. + + Set to 0 for a reasonable default. + + Return 0 on success and -1 on failure. + */ +EVENT2_EXPORT_SYMBOL +int bufferevent_set_max_single_read(struct bufferevent *bev, size_t size); + +/** + Set the size limit for single write operation. + + Set to 0 for a reasonable default. + + Return 0 on success and -1 on failure. + */ +EVENT2_EXPORT_SYMBOL +int bufferevent_set_max_single_write(struct bufferevent *bev, size_t size); + +/** Get the current size limit for single read operation. */ +EVENT2_EXPORT_SYMBOL +ev_ssize_t bufferevent_get_max_single_read(struct bufferevent *bev); + +/** Get the current size limit for single write operation. */ +EVENT2_EXPORT_SYMBOL +ev_ssize_t bufferevent_get_max_single_write(struct bufferevent *bev); + +/** + @name Rate limit inspection + + Return the current read or write bucket size for a bufferevent. + If it is not configured with a per-bufferevent ratelimit, return + EV_SSIZE_MAX. This function does not inspect the group limit, if any. + Note that it can return a negative value if the bufferevent has been + made to read or write more than its limit. + + @{ + */ +EVENT2_EXPORT_SYMBOL +ev_ssize_t bufferevent_get_read_limit(struct bufferevent *bev); +EVENT2_EXPORT_SYMBOL +ev_ssize_t bufferevent_get_write_limit(struct bufferevent *bev); +/*@}*/ + +EVENT2_EXPORT_SYMBOL +ev_ssize_t bufferevent_get_max_to_read(struct bufferevent *bev); +EVENT2_EXPORT_SYMBOL +ev_ssize_t bufferevent_get_max_to_write(struct bufferevent *bev); + +EVENT2_EXPORT_SYMBOL +const struct ev_token_bucket_cfg *bufferevent_get_token_bucket_cfg(const struct bufferevent * bev); + +/** + @name Group Rate limit inspection + + Return the read or write bucket size for a bufferevent rate limit + group. Note that it can return a negative value if bufferevents in + the group have been made to read or write more than their limits. + + @{ + */ +EVENT2_EXPORT_SYMBOL +ev_ssize_t bufferevent_rate_limit_group_get_read_limit( + struct bufferevent_rate_limit_group *); +EVENT2_EXPORT_SYMBOL +ev_ssize_t bufferevent_rate_limit_group_get_write_limit( + struct bufferevent_rate_limit_group *); +/*@}*/ + +/** + @name Rate limit manipulation + + Subtract a number of bytes from a bufferevent's read or write bucket. + The decrement value can be negative, if you want to manually refill + the bucket. If the change puts the bucket above or below zero, the + bufferevent will resume or suspend reading writing as appropriate. + These functions make no change in the buckets for the bufferevent's + group, if any. + + Returns 0 on success, -1 on internal error. + + @{ + */ +EVENT2_EXPORT_SYMBOL +int bufferevent_decrement_read_limit(struct bufferevent *bev, ev_ssize_t decr); +EVENT2_EXPORT_SYMBOL +int bufferevent_decrement_write_limit(struct bufferevent *bev, ev_ssize_t decr); +/*@}*/ + +/** + @name Group rate limit manipulation + + Subtract a number of bytes from a bufferevent rate-limiting group's + read or write bucket. The decrement value can be negative, if you + want to manually refill the bucket. If the change puts the bucket + above or below zero, the bufferevents in the group will resume or + suspend reading writing as appropriate. + + Returns 0 on success, -1 on internal error. + + @{ + */ +EVENT2_EXPORT_SYMBOL +int bufferevent_rate_limit_group_decrement_read( + struct bufferevent_rate_limit_group *, ev_ssize_t); +EVENT2_EXPORT_SYMBOL +int bufferevent_rate_limit_group_decrement_write( + struct bufferevent_rate_limit_group *, ev_ssize_t); +/*@}*/ + + +/** + * Inspect the total bytes read/written on a group. + * + * Set the variable pointed to by total_read_out to the total number of bytes + * ever read on grp, and the variable pointed to by total_written_out to the + * total number of bytes ever written on grp. */ +EVENT2_EXPORT_SYMBOL +void bufferevent_rate_limit_group_get_totals( + struct bufferevent_rate_limit_group *grp, + ev_uint64_t *total_read_out, ev_uint64_t *total_written_out); + +/** + * Reset the total bytes read/written on a group. + * + * Reset the number of bytes read or written on grp as given by + * bufferevent_rate_limit_group_reset_totals(). */ +EVENT2_EXPORT_SYMBOL +void +bufferevent_rate_limit_group_reset_totals( + struct bufferevent_rate_limit_group *grp); + +#ifdef __cplusplus +} +#endif + +#endif /* EVENT2_BUFFEREVENT_H_INCLUDED_ */ diff -Nru mysql-5.7-5.7.25/extra/libevent/include/event2/bufferevent_ssl.h mysql-5.7-5.7.26/extra/libevent/include/event2/bufferevent_ssl.h --- mysql-5.7-5.7.25/extra/libevent/include/event2/bufferevent_ssl.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/include/event2/bufferevent_ssl.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,134 @@ +/* + * Copyright (c) 2009-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef EVENT2_BUFFEREVENT_SSL_H_INCLUDED_ +#define EVENT2_BUFFEREVENT_SSL_H_INCLUDED_ + +/** @file event2/bufferevent_ssl.h + + OpenSSL support for bufferevents. + */ +#include +#include +#include +#include + +#ifdef __cplusplus +extern "C" { +#endif + +/* This is what openssl's SSL objects are underneath. */ +struct ssl_st; + +/** + The state of an SSL object to be used when creating a new + SSL bufferevent. + */ +enum bufferevent_ssl_state { + BUFFEREVENT_SSL_OPEN = 0, + BUFFEREVENT_SSL_CONNECTING = 1, + BUFFEREVENT_SSL_ACCEPTING = 2 +}; + +#if defined(EVENT__HAVE_OPENSSL) || defined(EVENT_IN_DOXYGEN_) +/** + Create a new SSL bufferevent to send its data over another bufferevent. + + @param base An event_base to use to detect reading and writing. It + must also be the base for the underlying bufferevent. + @param underlying A socket to use for this SSL + @param ssl A SSL* object from openssl. + @param state The current state of the SSL connection + @param options One or more bufferevent_options + @return A new bufferevent on success, or NULL on failure +*/ +EVENT2_EXPORT_SYMBOL +struct bufferevent * +bufferevent_openssl_filter_new(struct event_base *base, + struct bufferevent *underlying, + struct ssl_st *ssl, + enum bufferevent_ssl_state state, + int options); + +/** + Create a new SSL bufferevent to send its data over an SSL * on a socket. + + @param base An event_base to use to detect reading and writing + @param fd A socket to use for this SSL + @param ssl A SSL* object from openssl. + @param state The current state of the SSL connection + @param options One or more bufferevent_options + @return A new bufferevent on success, or NULL on failure. +*/ +EVENT2_EXPORT_SYMBOL +struct bufferevent * +bufferevent_openssl_socket_new(struct event_base *base, + evutil_socket_t fd, + struct ssl_st *ssl, + enum bufferevent_ssl_state state, + int options); + +/** Control how to report dirty SSL shutdowns. + + If the peer (or the network, or an attacker) closes the TCP + connection before closing the SSL channel, and the protocol is SSL >= v3, + this is a "dirty" shutdown. If allow_dirty_shutdown is 0 (default), + this is reported as BEV_EVENT_ERROR. + + If instead allow_dirty_shutdown=1, a dirty shutdown is reported as + BEV_EVENT_EOF. + + (Note that if the protocol is < SSLv3, you will always receive + BEV_EVENT_EOF, since SSL 2 and earlier cannot distinguish a secure + connection close from a dirty one. This is one reason (among many) + not to use SSL 2.) +*/ + +EVENT2_EXPORT_SYMBOL +int bufferevent_openssl_get_allow_dirty_shutdown(struct bufferevent *bev); +EVENT2_EXPORT_SYMBOL +void bufferevent_openssl_set_allow_dirty_shutdown(struct bufferevent *bev, + int allow_dirty_shutdown); + +/** Return the underlying openssl SSL * object for an SSL bufferevent. */ +EVENT2_EXPORT_SYMBOL +struct ssl_st * +bufferevent_openssl_get_ssl(struct bufferevent *bufev); + +/** Tells a bufferevent to begin SSL renegotiation. */ +EVENT2_EXPORT_SYMBOL +int bufferevent_ssl_renegotiate(struct bufferevent *bev); + +/** Return the most recent OpenSSL error reported on an SSL bufferevent. */ +EVENT2_EXPORT_SYMBOL +unsigned long bufferevent_get_openssl_error(struct bufferevent *bev); + +#endif + +#ifdef __cplusplus +} +#endif + +#endif /* EVENT2_BUFFEREVENT_SSL_H_INCLUDED_ */ diff -Nru mysql-5.7-5.7.25/extra/libevent/include/event2/bufferevent_struct.h mysql-5.7-5.7.26/extra/libevent/include/event2/bufferevent_struct.h --- mysql-5.7-5.7.25/extra/libevent/include/event2/bufferevent_struct.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/include/event2/bufferevent_struct.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,116 @@ +/* + * Copyright (c) 2000-2007 Niels Provos + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef EVENT2_BUFFEREVENT_STRUCT_H_INCLUDED_ +#define EVENT2_BUFFEREVENT_STRUCT_H_INCLUDED_ + +/** @file event2/bufferevent_struct.h + + Data structures for bufferevents. Using these structures may hurt forward + compatibility with later versions of Libevent: be careful! + + @deprecated Use of bufferevent_struct.h is completely deprecated; these + structures are only exposed for backward compatibility with programs + written before Libevent 2.0 that used them. + */ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#ifdef EVENT__HAVE_SYS_TYPES_H +#include +#endif +#ifdef EVENT__HAVE_SYS_TIME_H +#include +#endif + +/* For int types. */ +#include +/* For struct event */ +#include + +struct event_watermark { + size_t low; + size_t high; +}; + +/** + Shared implementation of a bufferevent. + + This type is exposed only because it was exposed in previous versions, + and some people's code may rely on manipulating it. Otherwise, you + should really not rely on the layout, size, or contents of this structure: + it is fairly volatile, and WILL change in future versions of the code. +**/ +struct bufferevent { + /** Event base for which this bufferevent was created. */ + struct event_base *ev_base; + /** Pointer to a table of function pointers to set up how this + bufferevent behaves. */ + const struct bufferevent_ops *be_ops; + + /** A read event that triggers when a timeout has happened or a socket + is ready to read data. Only used by some subtypes of + bufferevent. */ + struct event ev_read; + /** A write event that triggers when a timeout has happened or a socket + is ready to write data. Only used by some subtypes of + bufferevent. */ + struct event ev_write; + + /** An input buffer. Only the bufferevent is allowed to add data to + this buffer, though the user is allowed to drain it. */ + struct evbuffer *input; + + /** An input buffer. Only the bufferevent is allowed to drain data + from this buffer, though the user is allowed to add it. */ + struct evbuffer *output; + + struct event_watermark wm_read; + struct event_watermark wm_write; + + bufferevent_data_cb readcb; + bufferevent_data_cb writecb; + /* This should be called 'eventcb', but renaming it would break + * backward compatibility */ + bufferevent_event_cb errorcb; + void *cbarg; + + struct timeval timeout_read; + struct timeval timeout_write; + + /** Events that are currently enabled: currently EV_READ and EV_WRITE + are supported. */ + short enabled; +}; + +#ifdef __cplusplus +} +#endif + +#endif /* EVENT2_BUFFEREVENT_STRUCT_H_INCLUDED_ */ diff -Nru mysql-5.7-5.7.25/extra/libevent/include/event2/buffer.h mysql-5.7-5.7.26/extra/libevent/include/event2/buffer.h --- mysql-5.7-5.7.25/extra/libevent/include/event2/buffer.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/include/event2/buffer.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,1076 @@ +/* + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef EVENT2_BUFFER_H_INCLUDED_ +#define EVENT2_BUFFER_H_INCLUDED_ + +/** @file event2/buffer.h + + Functions for buffering data for network sending or receiving. + + An evbuffer can be used for preparing data before sending it to + the network or conversely for reading data from the network. + Evbuffers try to avoid memory copies as much as possible. As a + result, evbuffers can be used to pass data around without actually + incurring the overhead of copying the data. + + A new evbuffer can be allocated with evbuffer_new(), and can be + freed with evbuffer_free(). Most users will be using evbuffers via + the bufferevent interface. To access a bufferevent's evbuffers, use + bufferevent_get_input() and bufferevent_get_output(). + + There are several guidelines for using evbuffers. + + - if you already know how much data you are going to add as a result + of calling evbuffer_add() multiple times, it makes sense to use + evbuffer_expand() first to make sure that enough memory is allocated + before hand. + + - evbuffer_add_buffer() adds the contents of one buffer to the other + without incurring any unnecessary memory copies. + + - evbuffer_add() and evbuffer_add_buffer() do not mix very well: + if you use them, you will wind up with fragmented memory in your + buffer. + + - For high-performance code, you may want to avoid copying data into and out + of buffers. You can skip the copy step by using + evbuffer_reserve_space()/evbuffer_commit_space() when writing into a + buffer, and evbuffer_peek() when reading. + + In Libevent 2.0 and later, evbuffers are represented using a linked + list of memory chunks, with pointers to the first and last chunk in + the chain. + + As the contents of an evbuffer can be stored in multiple different + memory blocks, it cannot be accessed directly. Instead, evbuffer_pullup() + can be used to force a specified number of bytes to be contiguous. This + will cause memory reallocation and memory copies if the data is split + across multiple blocks. It is more efficient, however, to use + evbuffer_peek() if you don't require that the memory to be contiguous. + */ + +#include + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#ifdef EVENT__HAVE_SYS_TYPES_H +#include +#endif +#ifdef EVENT__HAVE_SYS_UIO_H +#include +#endif +#include + +/** + An evbuffer is an opaque data type for efficiently buffering data to be + sent or received on the network. + + @see event2/event.h for more information +*/ +struct evbuffer +#ifdef EVENT_IN_DOXYGEN_ +{} +#endif +; + +/** + Pointer to a position within an evbuffer. + + Used when repeatedly searching through a buffer. Calling any function + that modifies or re-packs the buffer contents may invalidate all + evbuffer_ptrs for that buffer. Do not modify or contruct these values + except with evbuffer_ptr_set. + + An evbuffer_ptr can represent any position from the start of a buffer up + to a position immediately after the end of a buffer. + + @see evbuffer_ptr_set() + */ +struct evbuffer_ptr { + ev_ssize_t pos; + + /* Do not alter or rely on the values of fields: they are for internal + * use */ + struct { + void *chain; + size_t pos_in_chain; + } internal_; +}; + +/** Describes a single extent of memory inside an evbuffer. Used for + direct-access functions. + + @see evbuffer_reserve_space, evbuffer_commit_space, evbuffer_peek + */ +#ifdef EVENT__HAVE_SYS_UIO_H +#define evbuffer_iovec iovec +/* Internal use -- defined only if we are using the native struct iovec */ +#define EVBUFFER_IOVEC_IS_NATIVE_ +#else +struct evbuffer_iovec { + /** The start of the extent of memory. */ + void *iov_base; + /** The length of the extent of memory. */ + size_t iov_len; +}; +#endif + +/** + Allocate storage for a new evbuffer. + + @return a pointer to a newly allocated evbuffer struct, or NULL if an error + occurred + */ +EVENT2_EXPORT_SYMBOL +struct evbuffer *evbuffer_new(void); +/** + Deallocate storage for an evbuffer. + + @param buf pointer to the evbuffer to be freed + */ +EVENT2_EXPORT_SYMBOL +void evbuffer_free(struct evbuffer *buf); + +/** + Enable locking on an evbuffer so that it can safely be used by multiple + threads at the same time. + + NOTE: when locking is enabled, the lock will be held when callbacks are + invoked. This could result in deadlock if you aren't careful. Plan + accordingly! + + @param buf An evbuffer to make lockable. + @param lock A lock object, or NULL if we should allocate our own. + @return 0 on success, -1 on failure. + */ +EVENT2_EXPORT_SYMBOL +int evbuffer_enable_locking(struct evbuffer *buf, void *lock); + +/** + Acquire the lock on an evbuffer. Has no effect if locking was not enabled + with evbuffer_enable_locking. +*/ +EVENT2_EXPORT_SYMBOL +void evbuffer_lock(struct evbuffer *buf); + +/** + Release the lock on an evbuffer. Has no effect if locking was not enabled + with evbuffer_enable_locking. +*/ +EVENT2_EXPORT_SYMBOL +void evbuffer_unlock(struct evbuffer *buf); + + +/** If this flag is set, then we will not use evbuffer_peek(), + * evbuffer_remove(), evbuffer_remove_buffer(), and so on to read bytes + * from this buffer: we'll only take bytes out of this buffer by + * writing them to the network (as with evbuffer_write_atmost), by + * removing them without observing them (as with evbuffer_drain), + * or by copying them all out at once (as with evbuffer_add_buffer). + * + * Using this option allows the implementation to use sendfile-based + * operations for evbuffer_add_file(); see that function for more + * information. + * + * This flag is on by default for bufferevents that can take advantage + * of it; you should never actually need to set it on a bufferevent's + * output buffer. + */ +#define EVBUFFER_FLAG_DRAINS_TO_FD 1 + +/** Change the flags that are set for an evbuffer by adding more. + * + * @param buffer the evbuffer that the callback is watching. + * @param cb the callback whose status we want to change. + * @param flags One or more EVBUFFER_FLAG_* options + * @return 0 on success, -1 on failure. + */ +EVENT2_EXPORT_SYMBOL +int evbuffer_set_flags(struct evbuffer *buf, ev_uint64_t flags); +/** Change the flags that are set for an evbuffer by removing some. + * + * @param buffer the evbuffer that the callback is watching. + * @param cb the callback whose status we want to change. + * @param flags One or more EVBUFFER_FLAG_* options + * @return 0 on success, -1 on failure. + */ +EVENT2_EXPORT_SYMBOL +int evbuffer_clear_flags(struct evbuffer *buf, ev_uint64_t flags); + +/** + Returns the total number of bytes stored in the evbuffer + + @param buf pointer to the evbuffer + @return the number of bytes stored in the evbuffer +*/ +EVENT2_EXPORT_SYMBOL +size_t evbuffer_get_length(const struct evbuffer *buf); + +/** + Returns the number of contiguous available bytes in the first buffer chain. + + This is useful when processing data that might be split into multiple + chains, or that might all be in the first chain. Calls to + evbuffer_pullup() that cause reallocation and copying of data can thus be + avoided. + + @param buf pointer to the evbuffer + @return 0 if no data is available, otherwise the number of available bytes + in the first buffer chain. +*/ +EVENT2_EXPORT_SYMBOL +size_t evbuffer_get_contiguous_space(const struct evbuffer *buf); + +/** + Expands the available space in an evbuffer. + + Expands the available space in the evbuffer to at least datlen, so that + appending datlen additional bytes will not require any new allocations. + + @param buf the evbuffer to be expanded + @param datlen the new minimum length requirement + @return 0 if successful, or -1 if an error occurred +*/ +EVENT2_EXPORT_SYMBOL +int evbuffer_expand(struct evbuffer *buf, size_t datlen); + +/** + Reserves space in the last chain or chains of an evbuffer. + + Makes space available in the last chain or chains of an evbuffer that can + be arbitrarily written to by a user. The space does not become + available for reading until it has been committed with + evbuffer_commit_space(). + + The space is made available as one or more extents, represented by + an initial pointer and a length. You can force the memory to be + available as only one extent. Allowing more extents, however, makes the + function more efficient. + + Multiple subsequent calls to this function will make the same space + available until evbuffer_commit_space() has been called. + + It is an error to do anything that moves around the buffer's internal + memory structures before committing the space. + + NOTE: The code currently does not ever use more than two extents. + This may change in future versions. + + @param buf the evbuffer in which to reserve space. + @param size how much space to make available, at minimum. The + total length of the extents may be greater than the requested + length. + @param vec an array of one or more evbuffer_iovec structures to + hold pointers to the reserved extents of memory. + @param n_vec The length of the vec array. Must be at least 1; + 2 is more efficient. + @return the number of provided extents, or -1 on error. + @see evbuffer_commit_space() +*/ +EVENT2_EXPORT_SYMBOL +int +evbuffer_reserve_space(struct evbuffer *buf, ev_ssize_t size, + struct evbuffer_iovec *vec, int n_vec); + +/** + Commits previously reserved space. + + Commits some of the space previously reserved with + evbuffer_reserve_space(). It then becomes available for reading. + + This function may return an error if the pointer in the extents do + not match those returned from evbuffer_reserve_space, or if data + has been added to the buffer since the space was reserved. + + If you want to commit less data than you got reserved space for, + modify the iov_len pointer of the appropriate extent to a smaller + value. Note that you may have received more space than you + requested if it was available! + + @param buf the evbuffer in which to reserve space. + @param vec one or two extents returned by evbuffer_reserve_space. + @param n_vecs the number of extents. + @return 0 on success, -1 on error + @see evbuffer_reserve_space() +*/ +EVENT2_EXPORT_SYMBOL +int evbuffer_commit_space(struct evbuffer *buf, + struct evbuffer_iovec *vec, int n_vecs); + +/** + Append data to the end of an evbuffer. + + @param buf the evbuffer to be appended to + @param data pointer to the beginning of the data buffer + @param datlen the number of bytes to be copied from the data buffer + @return 0 on success, -1 on failure. + */ +EVENT2_EXPORT_SYMBOL +int evbuffer_add(struct evbuffer *buf, const void *data, size_t datlen); + + +/** + Read data from an evbuffer and drain the bytes read. + + If more bytes are requested than are available in the evbuffer, we + only extract as many bytes as were available. + + @param buf the evbuffer to be read from + @param data the destination buffer to store the result + @param datlen the maximum size of the destination buffer + @return the number of bytes read, or -1 if we can't drain the buffer. + */ +EVENT2_EXPORT_SYMBOL +int evbuffer_remove(struct evbuffer *buf, void *data, size_t datlen); + +/** + Read data from an evbuffer, and leave the buffer unchanged. + + If more bytes are requested than are available in the evbuffer, we + only extract as many bytes as were available. + + @param buf the evbuffer to be read from + @param data_out the destination buffer to store the result + @param datlen the maximum size of the destination buffer + @return the number of bytes read, or -1 if we can't drain the buffer. + */ +EVENT2_EXPORT_SYMBOL +ev_ssize_t evbuffer_copyout(struct evbuffer *buf, void *data_out, size_t datlen); + +/** + Read data from the middle of an evbuffer, and leave the buffer unchanged. + + If more bytes are requested than are available in the evbuffer, we + only extract as many bytes as were available. + + @param buf the evbuffer to be read from + @param pos the position to start reading from + @param data_out the destination buffer to store the result + @param datlen the maximum size of the destination buffer + @return the number of bytes read, or -1 if we can't drain the buffer. + */ +EVENT2_EXPORT_SYMBOL +ev_ssize_t evbuffer_copyout_from(struct evbuffer *buf, const struct evbuffer_ptr *pos, void *data_out, size_t datlen); + +/** + Read data from an evbuffer into another evbuffer, draining + the bytes from the source buffer. This function avoids copy + operations to the extent possible. + + If more bytes are requested than are available in src, the src + buffer is drained completely. + + @param src the evbuffer to be read from + @param dst the destination evbuffer to store the result into + @param datlen the maximum numbers of bytes to transfer + @return the number of bytes read + */ +EVENT2_EXPORT_SYMBOL +int evbuffer_remove_buffer(struct evbuffer *src, struct evbuffer *dst, + size_t datlen); + +/** Used to tell evbuffer_readln what kind of line-ending to look for. + */ +enum evbuffer_eol_style { + /** Any sequence of CR and LF characters is acceptable as an + * EOL. + * + * Note that this style can produce ambiguous results: the + * sequence "CRLF" will be treated as a single EOL if it is + * all in the buffer at once, but if you first read a CR from + * the network and later read an LF from the network, it will + * be treated as two EOLs. + */ + EVBUFFER_EOL_ANY, + /** An EOL is an LF, optionally preceded by a CR. This style is + * most useful for implementing text-based internet protocols. */ + EVBUFFER_EOL_CRLF, + /** An EOL is a CR followed by an LF. */ + EVBUFFER_EOL_CRLF_STRICT, + /** An EOL is a LF. */ + EVBUFFER_EOL_LF, + /** An EOL is a NUL character (that is, a single byte with value 0) */ + EVBUFFER_EOL_NUL +}; + +/** + * Read a single line from an evbuffer. + * + * Reads a line terminated by an EOL as determined by the evbuffer_eol_style + * argument. Returns a newly allocated nul-terminated string; the caller must + * free the returned value. The EOL is not included in the returned string. + * + * @param buffer the evbuffer to read from + * @param n_read_out if non-NULL, points to a size_t that is set to the + * number of characters in the returned string. This is useful for + * strings that can contain NUL characters. + * @param eol_style the style of line-ending to use. + * @return pointer to a single line, or NULL if an error occurred + */ +EVENT2_EXPORT_SYMBOL +char *evbuffer_readln(struct evbuffer *buffer, size_t *n_read_out, + enum evbuffer_eol_style eol_style); + +/** + Move all data from one evbuffer into another evbuffer. + + This is a destructive add. The data from one buffer moves into + the other buffer. However, no unnecessary memory copies occur. + + @param outbuf the output buffer + @param inbuf the input buffer + @return 0 if successful, or -1 if an error occurred + + @see evbuffer_remove_buffer() + */ +EVENT2_EXPORT_SYMBOL +int evbuffer_add_buffer(struct evbuffer *outbuf, struct evbuffer *inbuf); + +/** + Copy data from one evbuffer into another evbuffer. + + This is a non-destructive add. The data from one buffer is copied + into the other buffer. However, no unnecessary memory copies occur. + + Note that buffers already containing buffer references can't be added + to other buffers. + + @param outbuf the output buffer + @param inbuf the input buffer + @return 0 if successful, or -1 if an error occurred + */ +EVENT2_EXPORT_SYMBOL +int evbuffer_add_buffer_reference(struct evbuffer *outbuf, + struct evbuffer *inbuf); + +/** + A cleanup function for a piece of memory added to an evbuffer by + reference. + + @see evbuffer_add_reference() + */ +typedef void (*evbuffer_ref_cleanup_cb)(const void *data, + size_t datalen, void *extra); + +/** + Reference memory into an evbuffer without copying. + + The memory needs to remain valid until all the added data has been + read. This function keeps just a reference to the memory without + actually incurring the overhead of a copy. + + @param outbuf the output buffer + @param data the memory to reference + @param datlen how memory to reference + @param cleanupfn callback to be invoked when the memory is no longer + referenced by this evbuffer. + @param cleanupfn_arg optional argument to the cleanup callback + @return 0 if successful, or -1 if an error occurred + */ +EVENT2_EXPORT_SYMBOL +int evbuffer_add_reference(struct evbuffer *outbuf, + const void *data, size_t datlen, + evbuffer_ref_cleanup_cb cleanupfn, void *cleanupfn_arg); + +/** + Copy data from a file into the evbuffer for writing to a socket. + + This function avoids unnecessary data copies between userland and + kernel. If sendfile is available and the EVBUFFER_FLAG_DRAINS_TO_FD + flag is set, it uses those functions. Otherwise, it tries to use + mmap (or CreateFileMapping on Windows). + + The function owns the resulting file descriptor and will close it + when finished transferring data. + + The results of using evbuffer_remove() or evbuffer_pullup() on + evbuffers whose data was added using this function are undefined. + + For more fine-grained control, use evbuffer_add_file_segment. + + @param outbuf the output buffer + @param fd the file descriptor + @param offset the offset from which to read data + @param length how much data to read, or -1 to read as much as possible. + (-1 requires that 'fd' support fstat.) + @return 0 if successful, or -1 if an error occurred +*/ + +EVENT2_EXPORT_SYMBOL +int evbuffer_add_file(struct evbuffer *outbuf, int fd, ev_off_t offset, + ev_off_t length); + +/** + An evbuffer_file_segment holds a reference to a range of a file -- + possibly the whole file! -- for use in writing from an evbuffer to a + socket. It could be implemented with mmap, sendfile, splice, or (if all + else fails) by just pulling all the data into RAM. A single + evbuffer_file_segment can be added more than once, and to more than one + evbuffer. + */ +struct evbuffer_file_segment; + +/** + Flag for creating evbuffer_file_segment: If this flag is set, then when + the evbuffer_file_segment is freed and no longer in use by any + evbuffer, the underlying fd is closed. + */ +#define EVBUF_FS_CLOSE_ON_FREE 0x01 +/** + Flag for creating evbuffer_file_segment: Disable memory-map based + implementations. + */ +#define EVBUF_FS_DISABLE_MMAP 0x02 +/** + Flag for creating evbuffer_file_segment: Disable direct fd-to-fd + implementations (including sendfile and splice). + + You might want to use this option if data needs to be taken from the + evbuffer by any means other than writing it to the network: the sendfile + backend is fast, but it only works for sending files directly to the + network. + */ +#define EVBUF_FS_DISABLE_SENDFILE 0x04 +/** + Flag for creating evbuffer_file_segment: Do not allocate a lock for this + segment. If this option is set, then neither the segment nor any + evbuffer it is added to may ever be accessed from more than one thread + at a time. + */ +#define EVBUF_FS_DISABLE_LOCKING 0x08 + +/** + A cleanup function for a evbuffer_file_segment added to an evbuffer + for reference. + */ +typedef void (*evbuffer_file_segment_cleanup_cb)( + struct evbuffer_file_segment const* seg, int flags, void* arg); + +/** + Create and return a new evbuffer_file_segment for reading data from a + file and sending it out via an evbuffer. + + This function avoids unnecessary data copies between userland and + kernel. Where available, it uses sendfile or splice. + + The file descriptor must not be closed so long as any evbuffer is using + this segment. + + The results of using evbuffer_remove() or evbuffer_pullup() or any other + function that reads bytes from an evbuffer on any evbuffer containing + the newly returned segment are undefined, unless you pass the + EVBUF_FS_DISABLE_SENDFILE flag to this function. + + @param fd an open file to read from. + @param offset an index within the file at which to start reading + @param length how much data to read, or -1 to read as much as possible. + (-1 requires that 'fd' support fstat.) + @param flags any number of the EVBUF_FS_* flags + @return a new evbuffer_file_segment, or NULL on failure. + **/ +EVENT2_EXPORT_SYMBOL +struct evbuffer_file_segment *evbuffer_file_segment_new( + int fd, ev_off_t offset, ev_off_t length, unsigned flags); + +/** + Free an evbuffer_file_segment + + It is safe to call this function even if the segment has been added to + one or more evbuffers. The evbuffer_file_segment will not be freed + until no more references to it exist. + */ +EVENT2_EXPORT_SYMBOL +void evbuffer_file_segment_free(struct evbuffer_file_segment *seg); + +/** + Add cleanup callback and argument for the callback to an + evbuffer_file_segment. + + The cleanup callback will be invoked when no more references to the + evbuffer_file_segment exist. + **/ +EVENT2_EXPORT_SYMBOL +void evbuffer_file_segment_add_cleanup_cb(struct evbuffer_file_segment *seg, + evbuffer_file_segment_cleanup_cb cb, void* arg); + +/** + Insert some or all of an evbuffer_file_segment at the end of an evbuffer + + Note that the offset and length parameters of this function have a + different meaning from those provided to evbuffer_file_segment_new: When + you create the segment, the offset is the offset _within the file_, and + the length is the length _of the segment_, whereas when you add a + segment to an evbuffer, the offset is _within the segment_ and the + length is the length of the _part of the segment you want to use. + + In other words, if you have a 10 KiB file, and you create an + evbuffer_file_segment for it with offset 20 and length 1000, it will + refer to bytes 20..1019 inclusive. If you then pass this segment to + evbuffer_add_file_segment and specify an offset of 20 and a length of + 50, you will be adding bytes 40..99 inclusive. + + @param buf the evbuffer to append to + @param seg the segment to add + @param offset the offset within the segment to start from + @param length the amount of data to add, or -1 to add it all. + @return 0 on success, -1 on failure. + */ +EVENT2_EXPORT_SYMBOL +int evbuffer_add_file_segment(struct evbuffer *buf, + struct evbuffer_file_segment *seg, ev_off_t offset, ev_off_t length); + +/** + Append a formatted string to the end of an evbuffer. + + The string is formated as printf. + + @param buf the evbuffer that will be appended to + @param fmt a format string + @param ... arguments that will be passed to printf(3) + @return The number of bytes added if successful, or -1 if an error occurred. + + @see evutil_printf(), evbuffer_add_vprintf() + */ +EVENT2_EXPORT_SYMBOL +int evbuffer_add_printf(struct evbuffer *buf, const char *fmt, ...) +#ifdef __GNUC__ + __attribute__((format(printf, 2, 3))) +#endif +; + +/** + Append a va_list formatted string to the end of an evbuffer. + + @param buf the evbuffer that will be appended to + @param fmt a format string + @param ap a varargs va_list argument array that will be passed to vprintf(3) + @return The number of bytes added if successful, or -1 if an error occurred. + */ +EVENT2_EXPORT_SYMBOL +int evbuffer_add_vprintf(struct evbuffer *buf, const char *fmt, va_list ap) +#ifdef __GNUC__ + __attribute__((format(printf, 2, 0))) +#endif +; + + +/** + Remove a specified number of bytes data from the beginning of an evbuffer. + + @param buf the evbuffer to be drained + @param len the number of bytes to drain from the beginning of the buffer + @return 0 on success, -1 on failure. + */ +EVENT2_EXPORT_SYMBOL +int evbuffer_drain(struct evbuffer *buf, size_t len); + + +/** + Write the contents of an evbuffer to a file descriptor. + + The evbuffer will be drained after the bytes have been successfully written. + + @param buffer the evbuffer to be written and drained + @param fd the file descriptor to be written to + @return the number of bytes written, or -1 if an error occurred + @see evbuffer_read() + */ +EVENT2_EXPORT_SYMBOL +int evbuffer_write(struct evbuffer *buffer, evutil_socket_t fd); + +/** + Write some of the contents of an evbuffer to a file descriptor. + + The evbuffer will be drained after the bytes have been successfully written. + + @param buffer the evbuffer to be written and drained + @param fd the file descriptor to be written to + @param howmuch the largest allowable number of bytes to write, or -1 + to write as many bytes as we can. + @return the number of bytes written, or -1 if an error occurred + @see evbuffer_read() + */ +EVENT2_EXPORT_SYMBOL +int evbuffer_write_atmost(struct evbuffer *buffer, evutil_socket_t fd, + ev_ssize_t howmuch); + +/** + Read from a file descriptor and store the result in an evbuffer. + + @param buffer the evbuffer to store the result + @param fd the file descriptor to read from + @param howmuch the number of bytes to be read + @return the number of bytes read, or -1 if an error occurred + @see evbuffer_write() + */ +EVENT2_EXPORT_SYMBOL +int evbuffer_read(struct evbuffer *buffer, evutil_socket_t fd, int howmuch); + +/** + Search for a string within an evbuffer. + + @param buffer the evbuffer to be searched + @param what the string to be searched for + @param len the length of the search string + @param start NULL or a pointer to a valid struct evbuffer_ptr. + @return a struct evbuffer_ptr whose 'pos' field has the offset of the + first occurrence of the string in the buffer after 'start'. The 'pos' + field of the result is -1 if the string was not found. + */ +EVENT2_EXPORT_SYMBOL +struct evbuffer_ptr evbuffer_search(struct evbuffer *buffer, const char *what, size_t len, const struct evbuffer_ptr *start); + +/** + Search for a string within part of an evbuffer. + + @param buffer the evbuffer to be searched + @param what the string to be searched for + @param len the length of the search string + @param start NULL or a pointer to a valid struct evbuffer_ptr that + indicates where we should start searching. + @param end NULL or a pointer to a valid struct evbuffer_ptr that + indicates where we should stop searching. + @return a struct evbuffer_ptr whose 'pos' field has the offset of the + first occurrence of the string in the buffer after 'start'. The 'pos' + field of the result is -1 if the string was not found. + */ +EVENT2_EXPORT_SYMBOL +struct evbuffer_ptr evbuffer_search_range(struct evbuffer *buffer, const char *what, size_t len, const struct evbuffer_ptr *start, const struct evbuffer_ptr *end); + +/** + Defines how to adjust an evbuffer_ptr by evbuffer_ptr_set() + + @see evbuffer_ptr_set() */ +enum evbuffer_ptr_how { + /** Sets the pointer to the position; can be called on with an + uninitialized evbuffer_ptr. */ + EVBUFFER_PTR_SET, + /** Advances the pointer by adding to the current position. */ + EVBUFFER_PTR_ADD +}; + +/** + Sets the search pointer in the buffer to position. + + There are two ways to use this function: you can call + evbuffer_ptr_set(buf, &pos, N, EVBUFFER_PTR_SET) + to move 'pos' to a position 'N' bytes after the start of the buffer, or + evbuffer_ptr_set(buf, &pos, N, EVBUFFER_PTR_ADD) + to move 'pos' forward by 'N' bytes. + + If evbuffer_ptr is not initialized, this function can only be called + with EVBUFFER_PTR_SET. + + An evbuffer_ptr can represent any position from the start of the buffer to + a position immediately after the end of the buffer. + + @param buffer the evbuffer to be search + @param ptr a pointer to a struct evbuffer_ptr + @param position the position at which to start the next search + @param how determines how the pointer should be manipulated. + @returns 0 on success or -1 otherwise +*/ +EVENT2_EXPORT_SYMBOL +int +evbuffer_ptr_set(struct evbuffer *buffer, struct evbuffer_ptr *ptr, + size_t position, enum evbuffer_ptr_how how); + +/** + Search for an end-of-line string within an evbuffer. + + @param buffer the evbuffer to be searched + @param start NULL or a pointer to a valid struct evbuffer_ptr to start + searching at. + @param eol_len_out If non-NULL, the pointed-to value will be set to + the length of the end-of-line string. + @param eol_style The kind of EOL to look for; see evbuffer_readln() for + more information + @return a struct evbuffer_ptr whose 'pos' field has the offset of the + first occurrence EOL in the buffer after 'start'. The 'pos' + field of the result is -1 if the string was not found. + */ +EVENT2_EXPORT_SYMBOL +struct evbuffer_ptr evbuffer_search_eol(struct evbuffer *buffer, + struct evbuffer_ptr *start, size_t *eol_len_out, + enum evbuffer_eol_style eol_style); + +/** Function to peek at data inside an evbuffer without removing it or + copying it out. + + Pointers to the data are returned by filling the 'vec_out' array + with pointers to one or more extents of data inside the buffer. + + The total data in the extents that you get back may be more than + you requested (if there is more data last extent than you asked + for), or less (if you do not provide enough evbuffer_iovecs, or if + the buffer does not have as much data as you asked to see). + + @param buffer the evbuffer to peek into, + @param len the number of bytes to try to peek. If len is negative, we + will try to fill as much of vec_out as we can. If len is negative + and vec_out is not provided, we return the number of evbuffer_iovecs + that would be needed to get all the data in the buffer. + @param start_at an evbuffer_ptr indicating the point at which we + should start looking for data. NULL means, "At the start of the + buffer." + @param vec_out an array of evbuffer_iovec + @param n_vec the length of vec_out. If 0, we only count how many + extents would be necessary to point to the requested amount of + data. + @return The number of extents needed. This may be less than n_vec + if we didn't need all the evbuffer_iovecs we were given, or more + than n_vec if we would need more to return all the data that was + requested. + */ +EVENT2_EXPORT_SYMBOL +int evbuffer_peek(struct evbuffer *buffer, ev_ssize_t len, + struct evbuffer_ptr *start_at, + struct evbuffer_iovec *vec_out, int n_vec); + + +/** Structure passed to an evbuffer_cb_func evbuffer callback + + @see evbuffer_cb_func, evbuffer_add_cb() + */ +struct evbuffer_cb_info { + /** The number of bytes in this evbuffer when callbacks were last + * invoked. */ + size_t orig_size; + /** The number of bytes added since callbacks were last invoked. */ + size_t n_added; + /** The number of bytes removed since callbacks were last invoked. */ + size_t n_deleted; +}; + +/** Type definition for a callback that is invoked whenever data is added or + removed from an evbuffer. + + An evbuffer may have one or more callbacks set at a time. The order + in which they are executed is undefined. + + A callback function may add more callbacks, or remove itself from the + list of callbacks, or add or remove data from the buffer. It may not + remove another callback from the list. + + If a callback adds or removes data from the buffer or from another + buffer, this can cause a recursive invocation of your callback or + other callbacks. If you ask for an infinite loop, you might just get + one: watch out! + + @param buffer the buffer whose size has changed + @param info a structure describing how the buffer changed. + @param arg a pointer to user data +*/ +typedef void (*evbuffer_cb_func)(struct evbuffer *buffer, const struct evbuffer_cb_info *info, void *arg); + +struct evbuffer_cb_entry; +/** Add a new callback to an evbuffer. + + Subsequent calls to evbuffer_add_cb() add new callbacks. To remove this + callback, call evbuffer_remove_cb or evbuffer_remove_cb_entry. + + @param buffer the evbuffer to be monitored + @param cb the callback function to invoke when the evbuffer is modified, + or NULL to remove all callbacks. + @param cbarg an argument to be provided to the callback function + @return a handle to the callback on success, or NULL on failure. + */ +EVENT2_EXPORT_SYMBOL +struct evbuffer_cb_entry *evbuffer_add_cb(struct evbuffer *buffer, evbuffer_cb_func cb, void *cbarg); + +/** Remove a callback from an evbuffer, given a handle returned from + evbuffer_add_cb. + + Calling this function invalidates the handle. + + @return 0 if a callback was removed, or -1 if no matching callback was + found. + */ +EVENT2_EXPORT_SYMBOL +int evbuffer_remove_cb_entry(struct evbuffer *buffer, + struct evbuffer_cb_entry *ent); + +/** Remove a callback from an evbuffer, given the function and argument + used to add it. + + @return 0 if a callback was removed, or -1 if no matching callback was + found. + */ +EVENT2_EXPORT_SYMBOL +int evbuffer_remove_cb(struct evbuffer *buffer, evbuffer_cb_func cb, void *cbarg); + +/** If this flag is not set, then a callback is temporarily disabled, and + * should not be invoked. + * + * @see evbuffer_cb_set_flags(), evbuffer_cb_clear_flags() + */ +#define EVBUFFER_CB_ENABLED 1 + +/** Change the flags that are set for a callback on a buffer by adding more. + + @param buffer the evbuffer that the callback is watching. + @param cb the callback whose status we want to change. + @param flags EVBUFFER_CB_ENABLED to re-enable the callback. + @return 0 on success, -1 on failure. + */ +EVENT2_EXPORT_SYMBOL +int evbuffer_cb_set_flags(struct evbuffer *buffer, + struct evbuffer_cb_entry *cb, ev_uint32_t flags); + +/** Change the flags that are set for a callback on a buffer by removing some + + @param buffer the evbuffer that the callback is watching. + @param cb the callback whose status we want to change. + @param flags EVBUFFER_CB_ENABLED to disable the callback. + @return 0 on success, -1 on failure. + */ +EVENT2_EXPORT_SYMBOL +int evbuffer_cb_clear_flags(struct evbuffer *buffer, + struct evbuffer_cb_entry *cb, ev_uint32_t flags); + +#if 0 +/** Postpone calling a given callback until unsuspend is called later. + + This is different from disabling the callback, since the callback will get + invoked later if the buffer size changes between now and when we unsuspend + it. + + @param the buffer that the callback is watching. + @param cb the callback we want to suspend. + */ +EVENT2_EXPORT_SYMBOL +void evbuffer_cb_suspend(struct evbuffer *buffer, struct evbuffer_cb_entry *cb); +/** Stop postponing a callback that we postponed with evbuffer_cb_suspend. + + If data was added to or removed from the buffer while the callback was + suspended, the callback will get called once now. + + @param the buffer that the callback is watching. + @param cb the callback we want to stop suspending. + */ +EVENT2_EXPORT_SYMBOL +void evbuffer_cb_unsuspend(struct evbuffer *buffer, struct evbuffer_cb_entry *cb); +#endif + +/** + Makes the data at the beginning of an evbuffer contiguous. + + @param buf the evbuffer to make contiguous + @param size the number of bytes to make contiguous, or -1 to make the + entire buffer contiguous. + @return a pointer to the contiguous memory array, or NULL if param size + requested more data than is present in the buffer. +*/ + +EVENT2_EXPORT_SYMBOL +unsigned char *evbuffer_pullup(struct evbuffer *buf, ev_ssize_t size); + +/** + Prepends data to the beginning of the evbuffer + + @param buf the evbuffer to which to prepend data + @param data a pointer to the memory to prepend + @param size the number of bytes to prepend + @return 0 if successful, or -1 otherwise +*/ + +EVENT2_EXPORT_SYMBOL +int evbuffer_prepend(struct evbuffer *buf, const void *data, size_t size); + +/** + Prepends all data from the src evbuffer to the beginning of the dst + evbuffer. + + @param dst the evbuffer to which to prepend data + @param src the evbuffer to prepend; it will be emptied as a result + @return 0 if successful, or -1 otherwise +*/ +EVENT2_EXPORT_SYMBOL +int evbuffer_prepend_buffer(struct evbuffer *dst, struct evbuffer* src); + +/** + Prevent calls that modify an evbuffer from succeeding. A buffer may + frozen at the front, at the back, or at both the front and the back. + + If the front of a buffer is frozen, operations that drain data from + the front of the buffer, or that prepend data to the buffer, will + fail until it is unfrozen. If the back a buffer is frozen, operations + that append data from the buffer will fail until it is unfrozen. + + @param buf The buffer to freeze + @param at_front If true, we freeze the front of the buffer. If false, + we freeze the back. + @return 0 on success, -1 on failure. +*/ +EVENT2_EXPORT_SYMBOL +int evbuffer_freeze(struct evbuffer *buf, int at_front); +/** + Re-enable calls that modify an evbuffer. + + @param buf The buffer to un-freeze + @param at_front If true, we unfreeze the front of the buffer. If false, + we unfreeze the back. + @return 0 on success, -1 on failure. + */ +EVENT2_EXPORT_SYMBOL +int evbuffer_unfreeze(struct evbuffer *buf, int at_front); + +struct event_base; +/** + Force all the callbacks on an evbuffer to be run, not immediately after + the evbuffer is altered, but instead from inside the event loop. + + This can be used to serialize all the callbacks to a single thread + of execution. + */ +EVENT2_EXPORT_SYMBOL +int evbuffer_defer_callbacks(struct evbuffer *buffer, struct event_base *base); + +/** + Append data from 1 or more iovec's to an evbuffer + + Calculates the number of bytes needed for an iovec structure and guarantees + all data will fit into a single chain. Can be used in lieu of functionality + which calls evbuffer_add() constantly before being used to increase + performance. + + @param buffer the destination buffer + @param vec the source iovec + @param n_vec the number of iovec structures. + @return the number of bytes successfully written to the output buffer. +*/ +EVENT2_EXPORT_SYMBOL +size_t evbuffer_add_iovec(struct evbuffer * buffer, struct evbuffer_iovec * vec, int n_vec); + +#ifdef __cplusplus +} +#endif + +#endif /* EVENT2_BUFFER_H_INCLUDED_ */ diff -Nru mysql-5.7-5.7.25/extra/libevent/include/event2/dns_compat.h mysql-5.7-5.7.26/extra/libevent/include/event2/dns_compat.h --- mysql-5.7-5.7.25/extra/libevent/include/event2/dns_compat.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/include/event2/dns_compat.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,336 @@ +/* + * Copyright (c) 2006-2007 Niels Provos + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef EVENT2_DNS_COMPAT_H_INCLUDED_ +#define EVENT2_DNS_COMPAT_H_INCLUDED_ + +/** @file event2/dns_compat.h + + Potentially non-threadsafe versions of the functions in dns.h: provided + only for backwards compatibility. + + + */ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#ifdef EVENT__HAVE_SYS_TYPES_H +#include +#endif +#ifdef EVENT__HAVE_SYS_TIME_H +#include +#endif + +/* For int types. */ +#include + +/** + Initialize the asynchronous DNS library. + + This function initializes support for non-blocking name resolution by + calling evdns_resolv_conf_parse() on UNIX and + evdns_config_windows_nameservers() on Windows. + + @deprecated This function is deprecated because it always uses the current + event base, and is easily confused by multiple calls to event_init(), and + so is not safe for multithreaded use. Additionally, it allocates a global + structure that only one thread can use. The replacement is + evdns_base_new(). + + @return 0 if successful, or -1 if an error occurred + @see evdns_shutdown() + */ +int evdns_init(void); + +struct evdns_base; +/** + Return the global evdns_base created by event_init() and used by the other + deprecated functions. + + @deprecated This function is deprecated because use of the global + evdns_base is error-prone. + */ +struct evdns_base *evdns_get_global_base(void); + +/** + Shut down the asynchronous DNS resolver and terminate all active requests. + + If the 'fail_requests' option is enabled, all active requests will return + an empty result with the error flag set to DNS_ERR_SHUTDOWN. Otherwise, + the requests will be silently discarded. + + @deprecated This function is deprecated because it does not allow the + caller to specify which evdns_base it applies to. The recommended + function is evdns_base_shutdown(). + + @param fail_requests if zero, active requests will be aborted; if non-zero, + active requests will return DNS_ERR_SHUTDOWN. + @see evdns_init() + */ +void evdns_shutdown(int fail_requests); + +/** + Add a nameserver. + + The address should be an IPv4 address in network byte order. + The type of address is chosen so that it matches in_addr.s_addr. + + @deprecated This function is deprecated because it does not allow the + caller to specify which evdns_base it applies to. The recommended + function is evdns_base_nameserver_add(). + + @param address an IP address in network byte order + @return 0 if successful, or -1 if an error occurred + @see evdns_nameserver_ip_add() + */ +int evdns_nameserver_add(unsigned long int address); + +/** + Get the number of configured nameservers. + + This returns the number of configured nameservers (not necessarily the + number of running nameservers). This is useful for double-checking + whether our calls to the various nameserver configuration functions + have been successful. + + @deprecated This function is deprecated because it does not allow the + caller to specify which evdns_base it applies to. The recommended + function is evdns_base_count_nameservers(). + + @return the number of configured nameservers + @see evdns_nameserver_add() + */ +int evdns_count_nameservers(void); + +/** + Remove all configured nameservers, and suspend all pending resolves. + + Resolves will not necessarily be re-attempted until evdns_resume() is called. + + @deprecated This function is deprecated because it does not allow the + caller to specify which evdns_base it applies to. The recommended + function is evdns_base_clear_nameservers_and_suspend(). + + @return 0 if successful, or -1 if an error occurred + @see evdns_resume() + */ +int evdns_clear_nameservers_and_suspend(void); + +/** + Resume normal operation and continue any suspended resolve requests. + + Re-attempt resolves left in limbo after an earlier call to + evdns_clear_nameservers_and_suspend(). + + @deprecated This function is deprecated because it does not allow the + caller to specify which evdns_base it applies to. The recommended + function is evdns_base_resume(). + + @return 0 if successful, or -1 if an error occurred + @see evdns_clear_nameservers_and_suspend() + */ +int evdns_resume(void); + +/** + Add a nameserver. + + This wraps the evdns_nameserver_add() function by parsing a string as an IP + address and adds it as a nameserver. + + @deprecated This function is deprecated because it does not allow the + caller to specify which evdns_base it applies to. The recommended + function is evdns_base_nameserver_ip_add(). + + @return 0 if successful, or -1 if an error occurred + @see evdns_nameserver_add() + */ +int evdns_nameserver_ip_add(const char *ip_as_string); + +/** + Lookup an A record for a given name. + + @deprecated This function is deprecated because it does not allow the + caller to specify which evdns_base it applies to. The recommended + function is evdns_base_resolve_ipv4(). + + @param name a DNS hostname + @param flags either 0, or DNS_QUERY_NO_SEARCH to disable searching for this query. + @param callback a callback function to invoke when the request is completed + @param ptr an argument to pass to the callback function + @return 0 if successful, or -1 if an error occurred + @see evdns_resolve_ipv6(), evdns_resolve_reverse(), evdns_resolve_reverse_ipv6() + */ +int evdns_resolve_ipv4(const char *name, int flags, evdns_callback_type callback, void *ptr); + +/** + Lookup an AAAA record for a given name. + + @param name a DNS hostname + @param flags either 0, or DNS_QUERY_NO_SEARCH to disable searching for this query. + @param callback a callback function to invoke when the request is completed + @param ptr an argument to pass to the callback function + @return 0 if successful, or -1 if an error occurred + @see evdns_resolve_ipv4(), evdns_resolve_reverse(), evdns_resolve_reverse_ipv6() + */ +int evdns_resolve_ipv6(const char *name, int flags, evdns_callback_type callback, void *ptr); + +struct in_addr; +struct in6_addr; + +/** + Lookup a PTR record for a given IP address. + + @deprecated This function is deprecated because it does not allow the + caller to specify which evdns_base it applies to. The recommended + function is evdns_base_resolve_reverse(). + + @param in an IPv4 address + @param flags either 0, or DNS_QUERY_NO_SEARCH to disable searching for this query. + @param callback a callback function to invoke when the request is completed + @param ptr an argument to pass to the callback function + @return 0 if successful, or -1 if an error occurred + @see evdns_resolve_reverse_ipv6() + */ +int evdns_resolve_reverse(const struct in_addr *in, int flags, evdns_callback_type callback, void *ptr); + +/** + Lookup a PTR record for a given IPv6 address. + + @deprecated This function is deprecated because it does not allow the + caller to specify which evdns_base it applies to. The recommended + function is evdns_base_resolve_reverse_ipv6(). + + @param in an IPv6 address + @param flags either 0, or DNS_QUERY_NO_SEARCH to disable searching for this query. + @param callback a callback function to invoke when the request is completed + @param ptr an argument to pass to the callback function + @return 0 if successful, or -1 if an error occurred + @see evdns_resolve_reverse_ipv6() + */ +int evdns_resolve_reverse_ipv6(const struct in6_addr *in, int flags, evdns_callback_type callback, void *ptr); + +/** + Set the value of a configuration option. + + The currently available configuration options are: + + ndots, timeout, max-timeouts, max-inflight, and attempts + + @deprecated This function is deprecated because it does not allow the + caller to specify which evdns_base it applies to. The recommended + function is evdns_base_set_option(). + + @param option the name of the configuration option to be modified + @param val the value to be set + @param flags Ignored. + @return 0 if successful, or -1 if an error occurred + */ +int evdns_set_option(const char *option, const char *val, int flags); + +/** + Parse a resolv.conf file. + + The 'flags' parameter determines what information is parsed from the + resolv.conf file. See the man page for resolv.conf for the format of this + file. + + The following directives are not parsed from the file: sortlist, rotate, + no-check-names, inet6, debug. + + If this function encounters an error, the possible return values are: 1 = + failed to open file, 2 = failed to stat file, 3 = file too large, 4 = out of + memory, 5 = short read from file, 6 = no nameservers listed in the file + + @deprecated This function is deprecated because it does not allow the + caller to specify which evdns_base it applies to. The recommended + function is evdns_base_resolv_conf_parse(). + + @param flags any of DNS_OPTION_NAMESERVERS|DNS_OPTION_SEARCH|DNS_OPTION_MISC| + DNS_OPTIONS_ALL + @param filename the path to the resolv.conf file + @return 0 if successful, or various positive error codes if an error + occurred (see above) + @see resolv.conf(3), evdns_config_windows_nameservers() + */ +int evdns_resolv_conf_parse(int flags, const char *const filename); + +/** + Clear the list of search domains. + + @deprecated This function is deprecated because it does not allow the + caller to specify which evdns_base it applies to. The recommended + function is evdns_base_search_clear(). + */ +void evdns_search_clear(void); + +/** + Add a domain to the list of search domains + + @deprecated This function is deprecated because it does not allow the + caller to specify which evdns_base it applies to. The recommended + function is evdns_base_search_add(). + + @param domain the domain to be added to the search list + */ +void evdns_search_add(const char *domain); + +/** + Set the 'ndots' parameter for searches. + + Sets the number of dots which, when found in a name, causes + the first query to be without any search domain. + + @deprecated This function is deprecated because it does not allow the + caller to specify which evdns_base it applies to. The recommended + function is evdns_base_search_ndots_set(). + + @param ndots the new ndots parameter + */ +void evdns_search_ndots_set(const int ndots); + +/** + As evdns_server_new_with_base. + + @deprecated This function is deprecated because it does not allow the + caller to specify which even_base it uses. The recommended + function is evdns_add_server_port_with_base(). + +*/ +struct evdns_server_port *evdns_add_server_port(evutil_socket_t socket, int flags, evdns_request_callback_fn_type callback, void *user_data); + +#ifdef _WIN32 +int evdns_config_windows_nameservers(void); +#define EVDNS_CONFIG_WINDOWS_NAMESERVERS_IMPLEMENTED +#endif + +#ifdef __cplusplus +} +#endif + +#endif /* EVENT2_EVENT_COMPAT_H_INCLUDED_ */ diff -Nru mysql-5.7-5.7.25/extra/libevent/include/event2/dns.h mysql-5.7-5.7.26/extra/libevent/include/event2/dns.h --- mysql-5.7-5.7.25/extra/libevent/include/event2/dns.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/include/event2/dns.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,717 @@ +/* + * Copyright (c) 2006-2007 Niels Provos + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT + * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF + * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +/* + * The original DNS code is due to Adam Langley with heavy + * modifications by Nick Mathewson. Adam put his DNS software in the + * public domain. You can find his original copyright below. Please, + * aware that the code as part of Libevent is governed by the 3-clause + * BSD license above. + * + * This software is Public Domain. To view a copy of the public domain dedication, + * visit http://creativecommons.org/licenses/publicdomain/ or send a letter to + * Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA. + * + * I ask and expect, but do not require, that all derivative works contain an + * attribution similar to: + * Parts developed by Adam Langley + * + * You may wish to replace the word "Parts" with something else depending on + * the amount of original code. + * + * (Derivative works does not include programs which link against, run or include + * the source verbatim in their source distributions) + */ + +/** @file event2/dns.h + * + * Welcome, gentle reader + * + * Async DNS lookups are really a whole lot harder than they should be, + * mostly stemming from the fact that the libc resolver has never been + * very good at them. Before you use this library you should see if libc + * can do the job for you with the modern async call getaddrinfo_a + * (see http://www.imperialviolet.org/page25.html#e498). Otherwise, + * please continue. + * + * The library keeps track of the state of nameservers and will avoid + * them when they go down. Otherwise it will round robin between them. + * + * Quick start guide: + * #include "evdns.h" + * void callback(int result, char type, int count, int ttl, + * void *addresses, void *arg); + * evdns_resolv_conf_parse(DNS_OPTIONS_ALL, "/etc/resolv.conf"); + * evdns_resolve("www.hostname.com", 0, callback, NULL); + * + * When the lookup is complete the callback function is called. The + * first argument will be one of the DNS_ERR_* defines in evdns.h. + * Hopefully it will be DNS_ERR_NONE, in which case type will be + * DNS_IPv4_A, count will be the number of IP addresses, ttl is the time + * which the data can be cached for (in seconds), addresses will point + * to an array of uint32_t's and arg will be whatever you passed to + * evdns_resolve. + * + * Searching: + * + * In order for this library to be a good replacement for glibc's resolver it + * supports searching. This involves setting a list of default domains, in + * which names will be queried for. The number of dots in the query name + * determines the order in which this list is used. + * + * Searching appears to be a single lookup from the point of view of the API, + * although many DNS queries may be generated from a single call to + * evdns_resolve. Searching can also drastically slow down the resolution + * of names. + * + * To disable searching: + * 1. Never set it up. If you never call evdns_resolv_conf_parse or + * evdns_search_add then no searching will occur. + * + * 2. If you do call evdns_resolv_conf_parse then don't pass + * DNS_OPTION_SEARCH (or DNS_OPTIONS_ALL, which implies it). + * + * 3. When calling evdns_resolve, pass the DNS_QUERY_NO_SEARCH flag. + * + * The order of searches depends on the number of dots in the name. If the + * number is greater than the ndots setting then the names is first tried + * globally. Otherwise each search domain is appended in turn. + * + * The ndots setting can either be set from a resolv.conf, or by calling + * evdns_search_ndots_set. + * + * For example, with ndots set to 1 (the default) and a search domain list of + * ["myhome.net"]: + * Query: www + * Order: www.myhome.net, www. + * + * Query: www.abc + * Order: www.abc., www.abc.myhome.net + * + * Internals: + * + * Requests are kept in two queues. The first is the inflight queue. In + * this queue requests have an allocated transaction id and nameserver. + * They will soon be transmitted if they haven't already been. + * + * The second is the waiting queue. The size of the inflight ring is + * limited and all other requests wait in waiting queue for space. This + * bounds the number of concurrent requests so that we don't flood the + * nameserver. Several algorithms require a full walk of the inflight + * queue and so bounding its size keeps thing going nicely under huge + * (many thousands of requests) loads. + * + * If a nameserver loses too many requests it is considered down and we + * try not to use it. After a while we send a probe to that nameserver + * (a lookup for google.com) and, if it replies, we consider it working + * again. If the nameserver fails a probe we wait longer to try again + * with the next probe. + */ + +#ifndef EVENT2_DNS_H_INCLUDED_ +#define EVENT2_DNS_H_INCLUDED_ + +#include + +#ifdef __cplusplus +extern "C" { +#endif + +/* For integer types. */ +#include + +/** Error codes 0-5 are as described in RFC 1035. */ +#define DNS_ERR_NONE 0 +/** The name server was unable to interpret the query */ +#define DNS_ERR_FORMAT 1 +/** The name server was unable to process this query due to a problem with the + * name server */ +#define DNS_ERR_SERVERFAILED 2 +/** The domain name does not exist */ +#define DNS_ERR_NOTEXIST 3 +/** The name server does not support the requested kind of query */ +#define DNS_ERR_NOTIMPL 4 +/** The name server refuses to reform the specified operation for policy + * reasons */ +#define DNS_ERR_REFUSED 5 +/** The reply was truncated or ill-formatted */ +#define DNS_ERR_TRUNCATED 65 +/** An unknown error occurred */ +#define DNS_ERR_UNKNOWN 66 +/** Communication with the server timed out */ +#define DNS_ERR_TIMEOUT 67 +/** The request was canceled because the DNS subsystem was shut down. */ +#define DNS_ERR_SHUTDOWN 68 +/** The request was canceled via a call to evdns_cancel_request */ +#define DNS_ERR_CANCEL 69 +/** There were no answers and no error condition in the DNS packet. + * This can happen when you ask for an address that exists, but a record + * type that doesn't. */ +#define DNS_ERR_NODATA 70 + +#define DNS_IPv4_A 1 +#define DNS_PTR 2 +#define DNS_IPv6_AAAA 3 + +#define DNS_QUERY_NO_SEARCH 1 + +#define DNS_OPTION_SEARCH 1 +#define DNS_OPTION_NAMESERVERS 2 +#define DNS_OPTION_MISC 4 +#define DNS_OPTION_HOSTSFILE 8 +#define DNS_OPTIONS_ALL 15 + +/* Obsolete name for DNS_QUERY_NO_SEARCH */ +#define DNS_NO_SEARCH DNS_QUERY_NO_SEARCH + +/** + * The callback that contains the results from a lookup. + * - result is one of the DNS_ERR_* values (DNS_ERR_NONE for success) + * - type is either DNS_IPv4_A or DNS_PTR or DNS_IPv6_AAAA + * - count contains the number of addresses of form type + * - ttl is the number of seconds the resolution may be cached for. + * - addresses needs to be cast according to type. It will be an array of + * 4-byte sequences for ipv4, or an array of 16-byte sequences for ipv6, + * or a nul-terminated string for PTR. + */ +typedef void (*evdns_callback_type) (int result, char type, int count, int ttl, void *addresses, void *arg); + +struct evdns_base; +struct event_base; + +/** Flag for evdns_base_new: process resolv.conf. */ +#define EVDNS_BASE_INITIALIZE_NAMESERVERS 1 +/** Flag for evdns_base_new: Do not prevent the libevent event loop from + * exiting when we have no active dns requests. */ +#define EVDNS_BASE_DISABLE_WHEN_INACTIVE 0x8000 + +/** + Initialize the asynchronous DNS library. + + This function initializes support for non-blocking name resolution by + calling evdns_resolv_conf_parse() on UNIX and + evdns_config_windows_nameservers() on Windows. + + @param event_base the event base to associate the dns client with + @param flags any of EVDNS_BASE_INITIALIZE_NAMESERVERS| + EVDNS_BASE_DISABLE_WHEN_INACTIVE + @return evdns_base object if successful, or NULL if an error occurred. + @see evdns_base_free() + */ +EVENT2_EXPORT_SYMBOL +struct evdns_base * evdns_base_new(struct event_base *event_base, int initialize_nameservers); + + +/** + Shut down the asynchronous DNS resolver and terminate all active requests. + + If the 'fail_requests' option is enabled, all active requests will return + an empty result with the error flag set to DNS_ERR_SHUTDOWN. Otherwise, + the requests will be silently discarded. + + @param evdns_base the evdns base to free + @param fail_requests if zero, active requests will be aborted; if non-zero, + active requests will return DNS_ERR_SHUTDOWN. + @see evdns_base_new() + */ +EVENT2_EXPORT_SYMBOL +void evdns_base_free(struct evdns_base *base, int fail_requests); + +/** + Remove all hosts entries that have been loaded into the event_base via + evdns_base_load_hosts or via event_base_resolv_conf_parse. + + @param evdns_base the evdns base to remove outdated host addresses from + */ +EVENT2_EXPORT_SYMBOL +void evdns_base_clear_host_addresses(struct evdns_base *base); + +/** + Convert a DNS error code to a string. + + @param err the DNS error code + @return a string containing an explanation of the error code +*/ +EVENT2_EXPORT_SYMBOL +const char *evdns_err_to_string(int err); + + +/** + Add a nameserver. + + The address should be an IPv4 address in network byte order. + The type of address is chosen so that it matches in_addr.s_addr. + + @param base the evdns_base to which to add the name server + @param address an IP address in network byte order + @return 0 if successful, or -1 if an error occurred + @see evdns_base_nameserver_ip_add() + */ +EVENT2_EXPORT_SYMBOL +int evdns_base_nameserver_add(struct evdns_base *base, + unsigned long int address); + +/** + Get the number of configured nameservers. + + This returns the number of configured nameservers (not necessarily the + number of running nameservers). This is useful for double-checking + whether our calls to the various nameserver configuration functions + have been successful. + + @param base the evdns_base to which to apply this operation + @return the number of configured nameservers + @see evdns_base_nameserver_add() + */ +EVENT2_EXPORT_SYMBOL +int evdns_base_count_nameservers(struct evdns_base *base); + +/** + Remove all configured nameservers, and suspend all pending resolves. + + Resolves will not necessarily be re-attempted until evdns_base_resume() is called. + + @param base the evdns_base to which to apply this operation + @return 0 if successful, or -1 if an error occurred + @see evdns_base_resume() + */ +EVENT2_EXPORT_SYMBOL +int evdns_base_clear_nameservers_and_suspend(struct evdns_base *base); + + +/** + Resume normal operation and continue any suspended resolve requests. + + Re-attempt resolves left in limbo after an earlier call to + evdns_base_clear_nameservers_and_suspend(). + + @param base the evdns_base to which to apply this operation + @return 0 if successful, or -1 if an error occurred + @see evdns_base_clear_nameservers_and_suspend() + */ +EVENT2_EXPORT_SYMBOL +int evdns_base_resume(struct evdns_base *base); + +/** + Add a nameserver by string address. + + This function parses a n IPv4 or IPv6 address from a string and adds it as a + nameserver. It supports the following formats: + - [IPv6Address]:port + - [IPv6Address] + - IPv6Address + - IPv4Address:port + - IPv4Address + + If no port is specified, it defaults to 53. + + @param base the evdns_base to which to apply this operation + @return 0 if successful, or -1 if an error occurred + @see evdns_base_nameserver_add() + */ +EVENT2_EXPORT_SYMBOL +int evdns_base_nameserver_ip_add(struct evdns_base *base, + const char *ip_as_string); + +/** + Add a nameserver by sockaddr. + **/ +EVENT2_EXPORT_SYMBOL +int +evdns_base_nameserver_sockaddr_add(struct evdns_base *base, + const struct sockaddr *sa, ev_socklen_t len, unsigned flags); + +struct evdns_request; + +/** + Lookup an A record for a given name. + + @param base the evdns_base to which to apply this operation + @param name a DNS hostname + @param flags either 0, or DNS_QUERY_NO_SEARCH to disable searching for this query. + @param callback a callback function to invoke when the request is completed + @param ptr an argument to pass to the callback function + @return an evdns_request object if successful, or NULL if an error occurred. + @see evdns_resolve_ipv6(), evdns_resolve_reverse(), evdns_resolve_reverse_ipv6(), evdns_cancel_request() + */ +EVENT2_EXPORT_SYMBOL +struct evdns_request *evdns_base_resolve_ipv4(struct evdns_base *base, const char *name, int flags, evdns_callback_type callback, void *ptr); + +/** + Lookup an AAAA record for a given name. + + @param base the evdns_base to which to apply this operation + @param name a DNS hostname + @param flags either 0, or DNS_QUERY_NO_SEARCH to disable searching for this query. + @param callback a callback function to invoke when the request is completed + @param ptr an argument to pass to the callback function + @return an evdns_request object if successful, or NULL if an error occurred. + @see evdns_resolve_ipv4(), evdns_resolve_reverse(), evdns_resolve_reverse_ipv6(), evdns_cancel_request() + */ +EVENT2_EXPORT_SYMBOL +struct evdns_request *evdns_base_resolve_ipv6(struct evdns_base *base, const char *name, int flags, evdns_callback_type callback, void *ptr); + +struct in_addr; +struct in6_addr; + +/** + Lookup a PTR record for a given IP address. + + @param base the evdns_base to which to apply this operation + @param in an IPv4 address + @param flags either 0, or DNS_QUERY_NO_SEARCH to disable searching for this query. + @param callback a callback function to invoke when the request is completed + @param ptr an argument to pass to the callback function + @return an evdns_request object if successful, or NULL if an error occurred. + @see evdns_resolve_reverse_ipv6(), evdns_cancel_request() + */ +EVENT2_EXPORT_SYMBOL +struct evdns_request *evdns_base_resolve_reverse(struct evdns_base *base, const struct in_addr *in, int flags, evdns_callback_type callback, void *ptr); + + +/** + Lookup a PTR record for a given IPv6 address. + + @param base the evdns_base to which to apply this operation + @param in an IPv6 address + @param flags either 0, or DNS_QUERY_NO_SEARCH to disable searching for this query. + @param callback a callback function to invoke when the request is completed + @param ptr an argument to pass to the callback function + @return an evdns_request object if successful, or NULL if an error occurred. + @see evdns_resolve_reverse_ipv6(), evdns_cancel_request() + */ +EVENT2_EXPORT_SYMBOL +struct evdns_request *evdns_base_resolve_reverse_ipv6(struct evdns_base *base, const struct in6_addr *in, int flags, evdns_callback_type callback, void *ptr); + +/** + Cancels a pending DNS resolution request. + + @param base the evdns_base that was used to make the request + @param req the evdns_request that was returned by calling a resolve function + @see evdns_base_resolve_ipv4(), evdns_base_resolve_ipv6, evdns_base_resolve_reverse +*/ +EVENT2_EXPORT_SYMBOL +void evdns_cancel_request(struct evdns_base *base, struct evdns_request *req); + +/** + Set the value of a configuration option. + + The currently available configuration options are: + + ndots, timeout, max-timeouts, max-inflight, attempts, randomize-case, + bind-to, initial-probe-timeout, getaddrinfo-allow-skew. + + In versions before Libevent 2.0.3-alpha, the option name needed to end with + a colon. + + @param base the evdns_base to which to apply this operation + @param option the name of the configuration option to be modified + @param val the value to be set + @return 0 if successful, or -1 if an error occurred + */ +EVENT2_EXPORT_SYMBOL +int evdns_base_set_option(struct evdns_base *base, const char *option, const char *val); + + +/** + Parse a resolv.conf file. + + The 'flags' parameter determines what information is parsed from the + resolv.conf file. See the man page for resolv.conf for the format of this + file. + + The following directives are not parsed from the file: sortlist, rotate, + no-check-names, inet6, debug. + + If this function encounters an error, the possible return values are: 1 = + failed to open file, 2 = failed to stat file, 3 = file too large, 4 = out of + memory, 5 = short read from file, 6 = no nameservers listed in the file + + @param base the evdns_base to which to apply this operation + @param flags any of DNS_OPTION_NAMESERVERS|DNS_OPTION_SEARCH|DNS_OPTION_MISC| + DNS_OPTION_HOSTSFILE|DNS_OPTIONS_ALL + @param filename the path to the resolv.conf file + @return 0 if successful, or various positive error codes if an error + occurred (see above) + @see resolv.conf(3), evdns_config_windows_nameservers() + */ +EVENT2_EXPORT_SYMBOL +int evdns_base_resolv_conf_parse(struct evdns_base *base, int flags, const char *const filename); + +/** + Load an /etc/hosts-style file from 'hosts_fname' into 'base'. + + If hosts_fname is NULL, add minimal entries for localhost, and nothing + else. + + Note that only evdns_getaddrinfo uses the /etc/hosts entries. + + This function does not replace previously loaded hosts entries; to do that, + call evdns_base_clear_host_addresses first. + + Return 0 on success, negative on failure. +*/ +EVENT2_EXPORT_SYMBOL +int evdns_base_load_hosts(struct evdns_base *base, const char *hosts_fname); + +/** + Obtain nameserver information using the Windows API. + + Attempt to configure a set of nameservers based on platform settings on + a win32 host. Preferentially tries to use GetNetworkParams; if that fails, + looks in the registry. + + @return 0 if successful, or -1 if an error occurred + @see evdns_resolv_conf_parse() + */ +#ifdef _WIN32 +EVENT2_EXPORT_SYMBOL +int evdns_base_config_windows_nameservers(struct evdns_base *); +#define EVDNS_BASE_CONFIG_WINDOWS_NAMESERVERS_IMPLEMENTED +#endif + + +/** + Clear the list of search domains. + */ +EVENT2_EXPORT_SYMBOL +void evdns_base_search_clear(struct evdns_base *base); + + +/** + Add a domain to the list of search domains + + @param domain the domain to be added to the search list + */ +EVENT2_EXPORT_SYMBOL +void evdns_base_search_add(struct evdns_base *base, const char *domain); + + +/** + Set the 'ndots' parameter for searches. + + Sets the number of dots which, when found in a name, causes + the first query to be without any search domain. + + @param ndots the new ndots parameter + */ +EVENT2_EXPORT_SYMBOL +void evdns_base_search_ndots_set(struct evdns_base *base, const int ndots); + +/** + A callback that is invoked when a log message is generated + + @param is_warning indicates if the log message is a 'warning' + @param msg the content of the log message + */ +typedef void (*evdns_debug_log_fn_type)(int is_warning, const char *msg); + + +/** + Set the callback function to handle DNS log messages. If this + callback is not set, evdns log messages are handled with the regular + Libevent logging system. + + @param fn the callback to be invoked when a log message is generated + */ +EVENT2_EXPORT_SYMBOL +void evdns_set_log_fn(evdns_debug_log_fn_type fn); + +/** + Set a callback that will be invoked to generate transaction IDs. By + default, we pick transaction IDs based on the current clock time, which + is bad for security. + + @param fn the new callback, or NULL to use the default. + + NOTE: This function has no effect in Libevent 2.0.4-alpha and later, + since Libevent now provides its own secure RNG. + */ +EVENT2_EXPORT_SYMBOL +void evdns_set_transaction_id_fn(ev_uint16_t (*fn)(void)); + +/** + Set a callback used to generate random bytes. By default, we use + the same function as passed to evdns_set_transaction_id_fn to generate + bytes two at a time. If a function is provided here, it's also used + to generate transaction IDs. + + NOTE: This function has no effect in Libevent 2.0.4-alpha and later, + since Libevent now provides its own secure RNG. +*/ +EVENT2_EXPORT_SYMBOL +void evdns_set_random_bytes_fn(void (*fn)(char *, size_t)); + +/* + * Functions used to implement a DNS server. + */ + +struct evdns_server_request; +struct evdns_server_question; + +/** + A callback to implement a DNS server. The callback function receives a DNS + request. It should then optionally add a number of answers to the reply + using the evdns_server_request_add_*_reply functions, before calling either + evdns_server_request_respond to send the reply back, or + evdns_server_request_drop to decline to answer the request. + + @param req A newly received request + @param user_data A pointer that was passed to + evdns_add_server_port_with_base(). + */ +typedef void (*evdns_request_callback_fn_type)(struct evdns_server_request *, void *); +#define EVDNS_ANSWER_SECTION 0 +#define EVDNS_AUTHORITY_SECTION 1 +#define EVDNS_ADDITIONAL_SECTION 2 + +#define EVDNS_TYPE_A 1 +#define EVDNS_TYPE_NS 2 +#define EVDNS_TYPE_CNAME 5 +#define EVDNS_TYPE_SOA 6 +#define EVDNS_TYPE_PTR 12 +#define EVDNS_TYPE_MX 15 +#define EVDNS_TYPE_TXT 16 +#define EVDNS_TYPE_AAAA 28 + +#define EVDNS_QTYPE_AXFR 252 +#define EVDNS_QTYPE_ALL 255 + +#define EVDNS_CLASS_INET 1 + +/* flags that can be set in answers; as part of the err parameter */ +#define EVDNS_FLAGS_AA 0x400 +#define EVDNS_FLAGS_RD 0x080 + +/** Create a new DNS server port. + + @param base The event base to handle events for the server port. + @param socket A UDP socket to accept DNS requests. + @param flags Always 0 for now. + @param callback A function to invoke whenever we get a DNS request + on the socket. + @param user_data Data to pass to the callback. + @return an evdns_server_port structure for this server port. + */ +EVENT2_EXPORT_SYMBOL +struct evdns_server_port *evdns_add_server_port_with_base(struct event_base *base, evutil_socket_t socket, int flags, evdns_request_callback_fn_type callback, void *user_data); +/** Close down a DNS server port, and free associated structures. */ +EVENT2_EXPORT_SYMBOL +void evdns_close_server_port(struct evdns_server_port *port); + +/** Sets some flags in a reply we're building. + Allows setting of the AA or RD flags + */ +EVENT2_EXPORT_SYMBOL +void evdns_server_request_set_flags(struct evdns_server_request *req, int flags); + +/* Functions to add an answer to an in-progress DNS reply. + */ +EVENT2_EXPORT_SYMBOL +int evdns_server_request_add_reply(struct evdns_server_request *req, int section, const char *name, int type, int dns_class, int ttl, int datalen, int is_name, const char *data); +EVENT2_EXPORT_SYMBOL +int evdns_server_request_add_a_reply(struct evdns_server_request *req, const char *name, int n, const void *addrs, int ttl); +EVENT2_EXPORT_SYMBOL +int evdns_server_request_add_aaaa_reply(struct evdns_server_request *req, const char *name, int n, const void *addrs, int ttl); +EVENT2_EXPORT_SYMBOL +int evdns_server_request_add_ptr_reply(struct evdns_server_request *req, struct in_addr *in, const char *inaddr_name, const char *hostname, int ttl); +EVENT2_EXPORT_SYMBOL +int evdns_server_request_add_cname_reply(struct evdns_server_request *req, const char *name, const char *cname, int ttl); + +/** + Send back a response to a DNS request, and free the request structure. +*/ +EVENT2_EXPORT_SYMBOL +int evdns_server_request_respond(struct evdns_server_request *req, int err); +/** + Free a DNS request without sending back a reply. +*/ +EVENT2_EXPORT_SYMBOL +int evdns_server_request_drop(struct evdns_server_request *req); +struct sockaddr; +/** + Get the address that made a DNS request. + */ +EVENT2_EXPORT_SYMBOL +int evdns_server_request_get_requesting_addr(struct evdns_server_request *req, struct sockaddr *sa, int addr_len); + +/** Callback for evdns_getaddrinfo. */ +typedef void (*evdns_getaddrinfo_cb)(int result, struct evutil_addrinfo *res, void *arg); + +struct evdns_base; +struct evdns_getaddrinfo_request; +/** Make a non-blocking getaddrinfo request using the dns_base in 'dns_base'. + * + * If we can answer the request immediately (with an error or not!), then we + * invoke cb immediately and return NULL. Otherwise we return + * an evdns_getaddrinfo_request and invoke cb later. + * + * When the callback is invoked, we pass as its first argument the error code + * that getaddrinfo would return (or 0 for no error). As its second argument, + * we pass the evutil_addrinfo structures we found (or NULL on error). We + * pass 'arg' as the third argument. + * + * Limitations: + * + * - The AI_V4MAPPED and AI_ALL flags are not currently implemented. + * - For ai_socktype, we only handle SOCKTYPE_STREAM, SOCKTYPE_UDP, and 0. + * - For ai_protocol, we only handle IPPROTO_TCP, IPPROTO_UDP, and 0. + */ +EVENT2_EXPORT_SYMBOL +struct evdns_getaddrinfo_request *evdns_getaddrinfo( + struct evdns_base *dns_base, + const char *nodename, const char *servname, + const struct evutil_addrinfo *hints_in, + evdns_getaddrinfo_cb cb, void *arg); + +/* Cancel an in-progress evdns_getaddrinfo. This MUST NOT be called after the + * getaddrinfo's callback has been invoked. The resolves will be canceled, + * and the callback will be invoked with the error EVUTIL_EAI_CANCEL. */ +EVENT2_EXPORT_SYMBOL +void evdns_getaddrinfo_cancel(struct evdns_getaddrinfo_request *req); + +/** + Retrieve the address of the 'idx'th configured nameserver. + + @param base The evdns_base to examine. + @param idx The index of the nameserver to get the address of. + @param sa A location to receive the server's address. + @param len The number of bytes available at sa. + + @return the number of bytes written into sa on success. On failure, returns + -1 if idx is greater than the number of configured nameservers, or a + value greater than 'len' if len was not high enough. + */ +EVENT2_EXPORT_SYMBOL +int evdns_base_get_nameserver_addr(struct evdns_base *base, int idx, + struct sockaddr *sa, ev_socklen_t len); + +#ifdef __cplusplus +} +#endif + +#endif /* !EVENT2_DNS_H_INCLUDED_ */ diff -Nru mysql-5.7-5.7.25/extra/libevent/include/event2/dns_struct.h mysql-5.7-5.7.26/extra/libevent/include/event2/dns_struct.h --- mysql-5.7-5.7.25/extra/libevent/include/event2/dns_struct.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/include/event2/dns_struct.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,80 @@ +/* + * Copyright (c) 2000-2007 Niels Provos + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef EVENT2_DNS_STRUCT_H_INCLUDED_ +#define EVENT2_DNS_STRUCT_H_INCLUDED_ + +/** @file event2/dns_struct.h + + Data structures for dns. Using these structures may hurt forward + compatibility with later versions of Libevent: be careful! + + */ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#ifdef EVENT__HAVE_SYS_TYPES_H +#include +#endif +#ifdef EVENT__HAVE_SYS_TIME_H +#include +#endif + +/* For int types. */ +#include + +/* + * Structures used to implement a DNS server. + */ + +struct evdns_server_request { + int flags; + int nquestions; + struct evdns_server_question **questions; +}; +struct evdns_server_question { + int type; +#ifdef __cplusplus + int dns_question_class; +#else + /* You should refer to this field as "dns_question_class". The + * name "class" works in C for backward compatibility, and will be + * removed in a future version. (1.5 or later). */ + int class; +#define dns_question_class class +#endif + char name[1]; +}; + +#ifdef __cplusplus +} +#endif + +#endif /* EVENT2_DNS_STRUCT_H_INCLUDED_ */ + diff -Nru mysql-5.7-5.7.25/extra/libevent/include/event2/event_compat.h mysql-5.7-5.7.26/extra/libevent/include/event2/event_compat.h --- mysql-5.7-5.7.25/extra/libevent/include/event2/event_compat.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/include/event2/event_compat.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,230 @@ +/* + * Copyright (c) 2000-2007 Niels Provos + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef EVENT2_EVENT_COMPAT_H_INCLUDED_ +#define EVENT2_EVENT_COMPAT_H_INCLUDED_ + +/** @file event2/event_compat.h + + Potentially non-threadsafe versions of the functions in event.h: provided + only for backwards compatibility. + + In the oldest versions of Libevent, event_base was not a first-class + structure. Instead, there was a single event base that every function + manipulated. Later, when separate event bases were added, the old functions + that didn't take an event_base argument needed to work by manipulating the + "current" event base. This could lead to thread-safety issues, and obscure, + hard-to-diagnose bugs. + + @deprecated All functions in this file are by definition deprecated. + */ +#include + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#ifdef EVENT__HAVE_SYS_TYPES_H +#include +#endif +#ifdef EVENT__HAVE_SYS_TIME_H +#include +#endif + +/* For int types. */ +#include + +/** + Initialize the event API. + + The event API needs to be initialized with event_init() before it can be + used. Sets the global current base that gets used for events that have no + base associated with them. + + @deprecated This function is deprecated because it replaces the "current" + event_base, and is totally unsafe for multithreaded use. The replacement + is event_base_new(). + + @see event_base_set(), event_base_new() + */ +EVENT2_EXPORT_SYMBOL +struct event_base *event_init(void); + +/** + Loop to process events. + + Like event_base_dispatch(), but uses the "current" base. + + @deprecated This function is deprecated because it is easily confused by + multiple calls to event_init(), and because it is not safe for + multithreaded use. The replacement is event_base_dispatch(). + + @see event_base_dispatch(), event_init() + */ +EVENT2_EXPORT_SYMBOL +int event_dispatch(void); + +/** + Handle events. + + This function behaves like event_base_loop(), but uses the "current" base + + @deprecated This function is deprecated because it uses the event base from + the last call to event_init, and is therefore not safe for multithreaded + use. The replacement is event_base_loop(). + + @see event_base_loop(), event_init() +*/ +EVENT2_EXPORT_SYMBOL +int event_loop(int); + + +/** + Exit the event loop after the specified time. + + This function behaves like event_base_loopexit(), except that it uses the + "current" base. + + @deprecated This function is deprecated because it uses the event base from + the last call to event_init, and is therefore not safe for multithreaded + use. The replacement is event_base_loopexit(). + + @see event_init, event_base_loopexit() + */ +EVENT2_EXPORT_SYMBOL +int event_loopexit(const struct timeval *); + + +/** + Abort the active event_loop() immediately. + + This function behaves like event_base_loopbreakt(), except that it uses the + "current" base. + + @deprecated This function is deprecated because it uses the event base from + the last call to event_init, and is therefore not safe for multithreaded + use. The replacement is event_base_loopbreak(). + + @see event_base_loopbreak(), event_init() + */ +EVENT2_EXPORT_SYMBOL +int event_loopbreak(void); + +/** + Schedule a one-time event to occur. + + @deprecated This function is obsolete, and has been replaced by + event_base_once(). Its use is deprecated because it relies on the + "current" base configured by event_init(). + + @see event_base_once() + */ +EVENT2_EXPORT_SYMBOL +int event_once(evutil_socket_t , short, + void (*)(evutil_socket_t, short, void *), void *, const struct timeval *); + + +/** + Get the kernel event notification mechanism used by Libevent. + + @deprecated This function is obsolete, and has been replaced by + event_base_get_method(). Its use is deprecated because it relies on the + "current" base configured by event_init(). + + @see event_base_get_method() + */ +EVENT2_EXPORT_SYMBOL +const char *event_get_method(void); + + +/** + Set the number of different event priorities. + + @deprecated This function is deprecated because it is easily confused by + multiple calls to event_init(), and because it is not safe for + multithreaded use. The replacement is event_base_priority_init(). + + @see event_base_priority_init() + */ +EVENT2_EXPORT_SYMBOL +int event_priority_init(int); + +/** + Prepare an event structure to be added. + + @deprecated event_set() is not recommended for new code, because it requires + a subsequent call to event_base_set() to be safe under most circumstances. + Use event_assign() or event_new() instead. + */ +EVENT2_EXPORT_SYMBOL +void event_set(struct event *, evutil_socket_t, short, void (*)(evutil_socket_t, short, void *), void *); + +#define evtimer_set(ev, cb, arg) event_set((ev), -1, 0, (cb), (arg)) +#define evsignal_set(ev, x, cb, arg) \ + event_set((ev), (x), EV_SIGNAL|EV_PERSIST, (cb), (arg)) + + +/** + @name timeout_* macros + + @deprecated These macros are deprecated because their naming is inconsistent + with the rest of Libevent. Use the evtimer_* macros instead. + @{ + */ +#define timeout_add(ev, tv) event_add((ev), (tv)) +#define timeout_set(ev, cb, arg) event_set((ev), -1, 0, (cb), (arg)) +#define timeout_del(ev) event_del(ev) +#define timeout_pending(ev, tv) event_pending((ev), EV_TIMEOUT, (tv)) +#define timeout_initialized(ev) event_initialized(ev) +/**@}*/ + +/** + @name signal_* macros + + @deprecated These macros are deprecated because their naming is inconsistent + with the rest of Libevent. Use the evsignal_* macros instead. + @{ + */ +#define signal_add(ev, tv) event_add((ev), (tv)) +#define signal_set(ev, x, cb, arg) \ + event_set((ev), (x), EV_SIGNAL|EV_PERSIST, (cb), (arg)) +#define signal_del(ev) event_del(ev) +#define signal_pending(ev, tv) event_pending((ev), EV_SIGNAL, (tv)) +#define signal_initialized(ev) event_initialized(ev) +/**@}*/ + +#ifndef EVENT_FD +/* These macros are obsolete; use event_get_fd and event_get_signal instead. */ +#define EVENT_FD(ev) ((int)event_get_fd(ev)) +#define EVENT_SIGNAL(ev) event_get_signal(ev) +#endif + +#ifdef __cplusplus +} +#endif + +#endif /* EVENT2_EVENT_COMPAT_H_INCLUDED_ */ diff -Nru mysql-5.7-5.7.25/extra/libevent/include/event2/event.h mysql-5.7-5.7.26/extra/libevent/include/event2/event.h --- mysql-5.7-5.7.25/extra/libevent/include/event2/event.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/include/event2/event.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,1675 @@ +/* + * Copyright (c) 2000-2007 Niels Provos + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef EVENT2_EVENT_H_INCLUDED_ +#define EVENT2_EVENT_H_INCLUDED_ + +/** + @mainpage + + @section intro Introduction + + Libevent is an event notification library for developing scalable network + servers. The Libevent API provides a mechanism to execute a callback + function when a specific event occurs on a file descriptor or after a + timeout has been reached. Furthermore, Libevent also support callbacks due + to signals or regular timeouts. + + Libevent is meant to replace the event loop found in event driven network + servers. An application just needs to call event_base_dispatch() and then add or + remove events dynamically without having to change the event loop. + + + Currently, Libevent supports /dev/poll, kqueue(2), select(2), poll(2), + epoll(4), and evports. The internal event mechanism is completely + independent of the exposed event API, and a simple update of Libevent can + provide new functionality without having to redesign the applications. As a + result, Libevent allows for portable application development and provides + the most scalable event notification mechanism available on an operating + system. Libevent can also be used for multithreaded programs. Libevent + should compile on Linux, *BSD, Mac OS X, Solaris and, Windows. + + @section usage Standard usage + + Every program that uses Libevent must include the + header, and pass the -levent flag to the linker. (You can instead link + -levent_core if you only want the main event and buffered IO-based code, + and don't want to link any protocol code.) + + @section setup Library setup + + Before you call any other Libevent functions, you need to set up the + library. If you're going to use Libevent from multiple threads in a + multithreaded application, you need to initialize thread support -- + typically by using evthread_use_pthreads() or + evthread_use_windows_threads(). See for more + information. + + This is also the point where you can replace Libevent's memory + management functions with event_set_mem_functions, and enable debug mode + with event_enable_debug_mode(). + + @section base Creating an event base + + Next, you need to create an event_base structure, using event_base_new() + or event_base_new_with_config(). The event_base is responsible for + keeping track of which events are "pending" (that is to say, being + watched to see if they become active) and which events are "active". + Every event is associated with a single event_base. + + @section event Event notification + + For each file descriptor that you wish to monitor, you must create an + event structure with event_new(). (You may also declare an event + structure and call event_assign() to initialize the members of the + structure.) To enable notification, you add the structure to the list + of monitored events by calling event_add(). The event structure must + remain allocated as long as it is active, so it should generally be + allocated on the heap. + + @section loop Dispatching events. + + Finally, you call event_base_dispatch() to loop and dispatch events. + You can also use event_base_loop() for more fine-grained control. + + Currently, only one thread can be dispatching a given event_base at a + time. If you want to run events in multiple threads at once, you can + either have a single event_base whose events add work to a work queue, + or you can create multiple event_base objects. + + @section bufferevent I/O Buffers + + Libevent provides a buffered I/O abstraction on top of the regular event + callbacks. This abstraction is called a bufferevent. A bufferevent + provides input and output buffers that get filled and drained + automatically. The user of a buffered event no longer deals directly + with the I/O, but instead is reading from input and writing to output + buffers. + + Once initialized via bufferevent_socket_new(), the bufferevent structure + can be used repeatedly with bufferevent_enable() and + bufferevent_disable(). Instead of reading and writing directly to a + socket, you would call bufferevent_read() and bufferevent_write(). + + When read enabled the bufferevent will try to read from the file descriptor + and call the read callback. The write callback is executed whenever the + output buffer is drained below the write low watermark, which is 0 by + default. + + See for more information. + + @section timers Timers + + Libevent can also be used to create timers that invoke a callback after a + certain amount of time has expired. The evtimer_new() macro returns + an event struct to use as a timer. To activate the timer, call + evtimer_add(). Timers can be deactivated by calling evtimer_del(). + (These macros are thin wrappers around event_new(), event_add(), + and event_del(); you can also use those instead.) + + @section evdns Asynchronous DNS resolution + + Libevent provides an asynchronous DNS resolver that should be used instead + of the standard DNS resolver functions. See the + functions for more detail. + + @section evhttp Event-driven HTTP servers + + Libevent provides a very simple event-driven HTTP server that can be + embedded in your program and used to service HTTP requests. + + To use this capability, you need to include the header in your + program. See that header for more information. + + @section evrpc A framework for RPC servers and clients + + Libevent provides a framework for creating RPC servers and clients. It + takes care of marshaling and unmarshaling all data structures. + + @section api API Reference + + To browse the complete documentation of the libevent API, click on any of + the following links. + + event2/event.h + The primary libevent header + + event2/thread.h + Functions for use by multithreaded programs + + event2/buffer.h and event2/bufferevent.h + Buffer management for network reading and writing + + event2/util.h + Utility functions for portable nonblocking network code + + event2/dns.h + Asynchronous DNS resolution + + event2/http.h + An embedded libevent-based HTTP server + + event2/rpc.h + A framework for creating RPC servers and clients + + */ + +/** @file event2/event.h + + Core functions for waiting for and receiving events, and using event bases. +*/ + +#include + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#ifdef EVENT__HAVE_SYS_TYPES_H +#include +#endif +#ifdef EVENT__HAVE_SYS_TIME_H +#include +#endif + +#include + +/* For int types. */ +#include + +/** + * Structure to hold information and state for a Libevent dispatch loop. + * + * The event_base lies at the center of Libevent; every application will + * have one. It keeps track of all pending and active events, and + * notifies your application of the active ones. + * + * This is an opaque structure; you can allocate one using + * event_base_new() or event_base_new_with_config(). + * + * @see event_base_new(), event_base_free(), event_base_loop(), + * event_base_new_with_config() + */ +struct event_base +#ifdef EVENT_IN_DOXYGEN_ +{/*Empty body so that doxygen will generate documentation here.*/} +#endif +; + +/** + * @struct event + * + * Structure to represent a single event. + * + * An event can have some underlying condition it represents: a socket + * becoming readable or writeable (or both), or a signal becoming raised. + * (An event that represents no underlying condition is still useful: you + * can use one to implement a timer, or to communicate between threads.) + * + * Generally, you can create events with event_new(), then make them + * pending with event_add(). As your event_base runs, it will run the + * callbacks of an events whose conditions are triggered. When you + * longer want the event, free it with event_free(). + * + * In more depth: + * + * An event may be "pending" (one whose condition we are watching), + * "active" (one whose condition has triggered and whose callback is about + * to run), neither, or both. Events come into existence via + * event_assign() or event_new(), and are then neither active nor pending. + * + * To make an event pending, pass it to event_add(). When doing so, you + * can also set a timeout for the event. + * + * Events become active during an event_base_loop() call when either their + * condition has triggered, or when their timeout has elapsed. You can + * also activate an event manually using event_active(). The even_base + * loop will run the callbacks of active events; after it has done so, it + * marks them as no longer active. + * + * You can make an event non-pending by passing it to event_del(). This + * also makes the event non-active. + * + * Events can be "persistent" or "non-persistent". A non-persistent event + * becomes non-pending as soon as it is triggered: thus, it only runs at + * most once per call to event_add(). A persistent event remains pending + * even when it becomes active: you'll need to event_del() it manually in + * order to make it non-pending. When a persistent event with a timeout + * becomes active, its timeout is reset: this means you can use persistent + * events to implement periodic timeouts. + * + * This should be treated as an opaque structure; you should never read or + * write any of its fields directly. For backward compatibility with old + * code, it is defined in the event2/event_struct.h header; including this + * header may make your code incompatible with other versions of Libevent. + * + * @see event_new(), event_free(), event_assign(), event_get_assignment(), + * event_add(), event_del(), event_active(), event_pending(), + * event_get_fd(), event_get_base(), event_get_events(), + * event_get_callback(), event_get_callback_arg(), + * event_priority_set() + */ +struct event +#ifdef EVENT_IN_DOXYGEN_ +{/*Empty body so that doxygen will generate documentation here.*/} +#endif +; + +/** + * Configuration for an event_base. + * + * There are many options that can be used to alter the behavior and + * implementation of an event_base. To avoid having to pass them all in a + * complex many-argument constructor, we provide an abstract data type + * wrhere you set up configation information before passing it to + * event_base_new_with_config(). + * + * @see event_config_new(), event_config_free(), event_base_new_with_config(), + * event_config_avoid_method(), event_config_require_features(), + * event_config_set_flag(), event_config_set_num_cpus_hint() + */ +struct event_config +#ifdef EVENT_IN_DOXYGEN_ +{/*Empty body so that doxygen will generate documentation here.*/} +#endif +; + +/** + * Enable some relatively expensive debugging checks in Libevent that + * would normally be turned off. Generally, these checks cause code that + * would otherwise crash mysteriously to fail earlier with an assertion + * failure. Note that this method MUST be called before any events or + * event_bases have been created. + * + * Debug mode can currently catch the following errors: + * An event is re-assigned while it is added + * Any function is called on a non-assigned event + * + * Note that debugging mode uses memory to track every event that has been + * initialized (via event_assign, event_set, or event_new) but not yet + * released (via event_free or event_debug_unassign). If you want to use + * debug mode, and you find yourself running out of memory, you will need + * to use event_debug_unassign to explicitly stop tracking events that + * are no longer considered set-up. + * + * @see event_debug_unassign() + */ +EVENT2_EXPORT_SYMBOL +void event_enable_debug_mode(void); + +/** + * When debugging mode is enabled, informs Libevent that an event should no + * longer be considered as assigned. When debugging mode is not enabled, does + * nothing. + * + * This function must only be called on a non-added event. + * + * @see event_enable_debug_mode() + */ +EVENT2_EXPORT_SYMBOL +void event_debug_unassign(struct event *); + +/** + * Create and return a new event_base to use with the rest of Libevent. + * + * @return a new event_base on success, or NULL on failure. + * + * @see event_base_free(), event_base_new_with_config() + */ +EVENT2_EXPORT_SYMBOL +struct event_base *event_base_new(void); + +/** + Reinitialize the event base after a fork + + Some event mechanisms do not survive across fork. The event base needs + to be reinitialized with the event_reinit() function. + + @param base the event base that needs to be re-initialized + @return 0 if successful, or -1 if some events could not be re-added. + @see event_base_new() +*/ +EVENT2_EXPORT_SYMBOL +int event_reinit(struct event_base *base); + +/** + Event dispatching loop + + This loop will run the event base until either there are no more pending or + active, or until something calls event_base_loopbreak() or + event_base_loopexit(). + + @param base the event_base structure returned by event_base_new() or + event_base_new_with_config() + @return 0 if successful, -1 if an error occurred, or 1 if we exited because + no events were pending or active. + @see event_base_loop() + */ +EVENT2_EXPORT_SYMBOL +int event_base_dispatch(struct event_base *); + +/** + Get the kernel event notification mechanism used by Libevent. + + @param eb the event_base structure returned by event_base_new() + @return a string identifying the kernel event mechanism (kqueue, epoll, etc.) + */ +EVENT2_EXPORT_SYMBOL +const char *event_base_get_method(const struct event_base *); + +/** + Gets all event notification mechanisms supported by Libevent. + + This functions returns the event mechanism in order preferred by + Libevent. Note that this list will include all backends that + Libevent has compiled-in support for, and will not necessarily check + your OS to see whether it has the required resources. + + @return an array with pointers to the names of support methods. + The end of the array is indicated by a NULL pointer. If an + error is encountered NULL is returned. +*/ +EVENT2_EXPORT_SYMBOL +const char **event_get_supported_methods(void); + +/** Query the current monotonic time from a the timer for a struct + * event_base. + */ +EVENT2_EXPORT_SYMBOL +int event_gettime_monotonic(struct event_base *base, struct timeval *tp); + +/** + @name event type flag + + Flags to pass to event_base_get_num_events() to specify the kinds of events + we want to aggregate counts for +*/ +/**@{*/ +/** count the number of active events, which have been triggered.*/ +#define EVENT_BASE_COUNT_ACTIVE 1U +/** count the number of virtual events, which is used to represent an internal + * condition, other than a pending event, that keeps the loop from exiting. */ +#define EVENT_BASE_COUNT_VIRTUAL 2U +/** count the number of events which have been added to event base, including + * internal events. */ +#define EVENT_BASE_COUNT_ADDED 4U +/**@}*/ + +/** + Gets the number of events in event_base, as specified in the flags. + + Since event base has some internal events added to make some of its + functionalities work, EVENT_BASE_COUNT_ADDED may return more than the + number of events you added using event_add(). + + If you pass EVENT_BASE_COUNT_ACTIVE and EVENT_BASE_COUNT_ADDED together, an + active event will be counted twice. However, this might not be the case in + future libevent versions. The return value is an indication of the work + load, but the user shouldn't rely on the exact value as this may change in + the future. + + @param eb the event_base structure returned by event_base_new() + @param flags a bitwise combination of the kinds of events to aggregate + counts for + @return the number of events specified in the flags +*/ +EVENT2_EXPORT_SYMBOL +int event_base_get_num_events(struct event_base *, unsigned int); + +/** + Get the maximum number of events in a given event_base as specified in the + flags. + + @param eb the event_base structure returned by event_base_new() + @param flags a bitwise combination of the kinds of events to aggregate + counts for + @param clear option used to reset the maximum count. + @return the number of events specified in the flags + */ +EVENT2_EXPORT_SYMBOL +int event_base_get_max_events(struct event_base *, unsigned int, int); + +/** + Allocates a new event configuration object. + + The event configuration object can be used to change the behavior of + an event base. + + @return an event_config object that can be used to store configuration, or + NULL if an error is encountered. + @see event_base_new_with_config(), event_config_free(), event_config +*/ +EVENT2_EXPORT_SYMBOL +struct event_config *event_config_new(void); + +/** + Deallocates all memory associated with an event configuration object + + @param cfg the event configuration object to be freed. +*/ +EVENT2_EXPORT_SYMBOL +void event_config_free(struct event_config *cfg); + +/** + Enters an event method that should be avoided into the configuration. + + This can be used to avoid event mechanisms that do not support certain + file descriptor types, or for debugging to avoid certain event + mechanisms. An application can make use of multiple event bases to + accommodate incompatible file descriptor types. + + @param cfg the event configuration object + @param method the name of the event method to avoid + @return 0 on success, -1 on failure. +*/ +EVENT2_EXPORT_SYMBOL +int event_config_avoid_method(struct event_config *cfg, const char *method); + +/** + A flag used to describe which features an event_base (must) provide. + + Because of OS limitations, not every Libevent backend supports every + possible feature. You can use this type with + event_config_require_features() to tell Libevent to only proceed if your + event_base implements a given feature, and you can receive this type from + event_base_get_features() to see which features are available. +*/ +enum event_method_feature { + /** Require an event method that allows edge-triggered events with EV_ET. */ + EV_FEATURE_ET = 0x01, + /** Require an event method where having one event triggered among + * many is [approximately] an O(1) operation. This excludes (for + * example) select and poll, which are approximately O(N) for N + * equal to the total number of possible events. */ + EV_FEATURE_O1 = 0x02, + /** Require an event method that allows file descriptors as well as + * sockets. */ + EV_FEATURE_FDS = 0x04, + /** Require an event method that allows you to use EV_CLOSED to detect + * connection close without the necessity of reading all the pending data. + * + * Methods that do support EV_CLOSED may not be able to provide support on + * all kernel versions. + **/ + EV_FEATURE_EARLY_CLOSE = 0x08 +}; + +/** + A flag passed to event_config_set_flag(). + + These flags change the behavior of an allocated event_base. + + @see event_config_set_flag(), event_base_new_with_config(), + event_method_feature + */ +enum event_base_config_flag { + /** Do not allocate a lock for the event base, even if we have + locking set up. + + Setting this option will make it unsafe and nonfunctional to call + functions on the base concurrently from multiple threads. + */ + EVENT_BASE_FLAG_NOLOCK = 0x01, + /** Do not check the EVENT_* environment variables when configuring + an event_base */ + EVENT_BASE_FLAG_IGNORE_ENV = 0x02, + /** Windows only: enable the IOCP dispatcher at startup + + If this flag is set then bufferevent_socket_new() and + evconn_listener_new() will use IOCP-backed implementations + instead of the usual select-based one on Windows. + */ + EVENT_BASE_FLAG_STARTUP_IOCP = 0x04, + /** Instead of checking the current time every time the event loop is + ready to run timeout callbacks, check after each timeout callback. + */ + EVENT_BASE_FLAG_NO_CACHE_TIME = 0x08, + + /** If we are using the epoll backend, this flag says that it is + safe to use Libevent's internal change-list code to batch up + adds and deletes in order to try to do as few syscalls as + possible. Setting this flag can make your code run faster, but + it may trigger a Linux bug: it is not safe to use this flag + if you have any fds cloned by dup() or its variants. Doing so + will produce strange and hard-to-diagnose bugs. + + This flag can also be activated by setting the + EVENT_EPOLL_USE_CHANGELIST environment variable. + + This flag has no effect if you wind up using a backend other than + epoll. + */ + EVENT_BASE_FLAG_EPOLL_USE_CHANGELIST = 0x10, + + /** Ordinarily, Libevent implements its time and timeout code using + the fastest monotonic timer that we have. If this flag is set, + however, we use less efficient more precise timer, assuming one is + present. + */ + EVENT_BASE_FLAG_PRECISE_TIMER = 0x20 +}; + +/** + Return a bitmask of the features implemented by an event base. This + will be a bitwise OR of one or more of the values of + event_method_feature + + @see event_method_feature + */ +EVENT2_EXPORT_SYMBOL +int event_base_get_features(const struct event_base *base); + +/** + Enters a required event method feature that the application demands. + + Note that not every feature or combination of features is supported + on every platform. Code that requests features should be prepared + to handle the case where event_base_new_with_config() returns NULL, as in: +
+     event_config_require_features(cfg, EV_FEATURE_ET);
+     base = event_base_new_with_config(cfg);
+     if (base == NULL) {
+       // We can't get edge-triggered behavior here.
+       event_config_require_features(cfg, 0);
+       base = event_base_new_with_config(cfg);
+     }
+   
+ + @param cfg the event configuration object + @param feature a bitfield of one or more event_method_feature values. + Replaces values from previous calls to this function. + @return 0 on success, -1 on failure. + @see event_method_feature, event_base_new_with_config() +*/ +EVENT2_EXPORT_SYMBOL +int event_config_require_features(struct event_config *cfg, int feature); + +/** + * Sets one or more flags to configure what parts of the eventual event_base + * will be initialized, and how they'll work. + * + * @see event_base_config_flags, event_base_new_with_config() + **/ +EVENT2_EXPORT_SYMBOL +int event_config_set_flag(struct event_config *cfg, int flag); + +/** + * Records a hint for the number of CPUs in the system. This is used for + * tuning thread pools, etc, for optimal performance. In Libevent 2.0, + * it is only on Windows, and only when IOCP is in use. + * + * @param cfg the event configuration object + * @param cpus the number of cpus + * @return 0 on success, -1 on failure. + */ +EVENT2_EXPORT_SYMBOL +int event_config_set_num_cpus_hint(struct event_config *cfg, int cpus); + +/** + * Record an interval and/or a number of callbacks after which the event base + * should check for new events. By default, the event base will run as many + * events are as activated at the higest activated priority before checking + * for new events. If you configure it by setting max_interval, it will check + * the time after each callback, and not allow more than max_interval to + * elapse before checking for new events. If you configure it by setting + * max_callbacks to a value >= 0, it will run no more than max_callbacks + * callbacks before checking for new events. + * + * This option can decrease the latency of high-priority events, and + * avoid priority inversions where multiple low-priority events keep us from + * polling for high-priority events, but at the expense of slightly decreasing + * the throughput. Use it with caution! + * + * @param cfg The event_base configuration object. + * @param max_interval An interval after which Libevent should stop running + * callbacks and check for more events, or NULL if there should be + * no such interval. + * @param max_callbacks A number of callbacks after which Libevent should + * stop running callbacks and check for more events, or -1 if there + * should be no such limit. + * @param min_priority A priority below which max_interval and max_callbacks + * should not be enforced. If this is set to 0, they are enforced + * for events of every priority; if it's set to 1, they're enforced + * for events of priority 1 and above, and so on. + * @return 0 on success, -1 on failure. + **/ +EVENT2_EXPORT_SYMBOL +int event_config_set_max_dispatch_interval(struct event_config *cfg, + const struct timeval *max_interval, int max_callbacks, + int min_priority); + +/** + Initialize the event API. + + Use event_base_new_with_config() to initialize a new event base, taking + the specified configuration under consideration. The configuration object + can currently be used to avoid certain event notification mechanisms. + + @param cfg the event configuration object + @return an initialized event_base that can be used to registering events, + or NULL if no event base can be created with the requested event_config. + @see event_base_new(), event_base_free(), event_init(), event_assign() +*/ +EVENT2_EXPORT_SYMBOL +struct event_base *event_base_new_with_config(const struct event_config *); + +/** + Deallocate all memory associated with an event_base, and free the base. + + Note that this function will not close any fds or free any memory passed + to event_new as the argument to callback. + + If there are any pending finalizer callbacks, this function will invoke + them. + + @param eb an event_base to be freed + */ +EVENT2_EXPORT_SYMBOL +void event_base_free(struct event_base *); + +/** + As event_free, but do not run finalizers. + + THIS IS AN EXPERIMENTAL API. IT MIGHT CHANGE BEFORE THE LIBEVENT 2.1 SERIES + BECOMES STABLE. + */ +EVENT2_EXPORT_SYMBOL +void event_base_free_nofinalize(struct event_base *); + +/** @name Log severities + */ +/**@{*/ +#define EVENT_LOG_DEBUG 0 +#define EVENT_LOG_MSG 1 +#define EVENT_LOG_WARN 2 +#define EVENT_LOG_ERR 3 +/**@}*/ + +/* Obsolete names: these are deprecated, but older programs might use them. + * They violate the reserved-identifier namespace. */ +#define _EVENT_LOG_DEBUG EVENT_LOG_DEBUG +#define _EVENT_LOG_MSG EVENT_LOG_MSG +#define _EVENT_LOG_WARN EVENT_LOG_WARN +#define _EVENT_LOG_ERR EVENT_LOG_ERR + +/** + A callback function used to intercept Libevent's log messages. + + @see event_set_log_callback + */ +typedef void (*event_log_cb)(int severity, const char *msg); +/** + Redirect Libevent's log messages. + + @param cb a function taking two arguments: an integer severity between + EVENT_LOG_DEBUG and EVENT_LOG_ERR, and a string. If cb is NULL, + then the default log is used. + + NOTE: The function you provide *must not* call any other libevent + functionality. Doing so can produce undefined behavior. + */ +EVENT2_EXPORT_SYMBOL +void event_set_log_callback(event_log_cb cb); + +/** + A function to be called if Libevent encounters a fatal internal error. + + @see event_set_fatal_callback + */ +typedef void (*event_fatal_cb)(int err); + +/** + Override Libevent's behavior in the event of a fatal internal error. + + By default, Libevent will call exit(1) if a programming error makes it + impossible to continue correct operation. This function allows you to supply + another callback instead. Note that if the function is ever invoked, + something is wrong with your program, or with Libevent: any subsequent calls + to Libevent may result in undefined behavior. + + Libevent will (almost) always log an EVENT_LOG_ERR message before calling + this function; look at the last log message to see why Libevent has died. + */ +EVENT2_EXPORT_SYMBOL +void event_set_fatal_callback(event_fatal_cb cb); + +#define EVENT_DBG_ALL 0xffffffffu +#define EVENT_DBG_NONE 0 + +/** + Turn on debugging logs and have them sent to the default log handler. + + This is a global setting; if you are going to call it, you must call this + before any calls that create an event-base. You must call it before any + multithreaded use of Libevent. + + Debug logs are verbose. + + @param which Controls which debug messages are turned on. This option is + unused for now; for forward compatibility, you must pass in the constant + "EVENT_DBG_ALL" to turn debugging logs on, or "EVENT_DBG_NONE" to turn + debugging logs off. + */ +EVENT2_EXPORT_SYMBOL +void event_enable_debug_logging(ev_uint32_t which); + +/** + Associate a different event base with an event. + + The event to be associated must not be currently active or pending. + + @param eb the event base + @param ev the event + @return 0 on success, -1 on failure. + */ +EVENT2_EXPORT_SYMBOL +int event_base_set(struct event_base *, struct event *); + +/** @name Loop flags + + These flags control the behavior of event_base_loop(). + */ +/**@{*/ +/** Block until we have an active event, then exit once all active events + * have had their callbacks run. */ +#define EVLOOP_ONCE 0x01 +/** Do not block: see which events are ready now, run the callbacks + * of the highest-priority ones, then exit. */ +#define EVLOOP_NONBLOCK 0x02 +/** Do not exit the loop because we have no pending events. Instead, keep + * running until event_base_loopexit() or event_base_loopbreak() makes us + * stop. + */ +#define EVLOOP_NO_EXIT_ON_EMPTY 0x04 +/**@}*/ + +/** + Wait for events to become active, and run their callbacks. + + This is a more flexible version of event_base_dispatch(). + + By default, this loop will run the event base until either there are no more + pending or active events, or until something calls event_base_loopbreak() or + event_base_loopexit(). You can override this behavior with the 'flags' + argument. + + @param eb the event_base structure returned by event_base_new() or + event_base_new_with_config() + @param flags any combination of EVLOOP_ONCE | EVLOOP_NONBLOCK + @return 0 if successful, -1 if an error occurred, or 1 if we exited because + no events were pending or active. + @see event_base_loopexit(), event_base_dispatch(), EVLOOP_ONCE, + EVLOOP_NONBLOCK + */ +EVENT2_EXPORT_SYMBOL +int event_base_loop(struct event_base *, int); + +/** + Exit the event loop after the specified time + + The next event_base_loop() iteration after the given timer expires will + complete normally (handling all queued events) then exit without + blocking for events again. + + Subsequent invocations of event_base_loop() will proceed normally. + + @param eb the event_base structure returned by event_init() + @param tv the amount of time after which the loop should terminate, + or NULL to exit after running all currently active events. + @return 0 if successful, or -1 if an error occurred + @see event_base_loopbreak() + */ +EVENT2_EXPORT_SYMBOL +int event_base_loopexit(struct event_base *, const struct timeval *); + +/** + Abort the active event_base_loop() immediately. + + event_base_loop() will abort the loop after the next event is completed; + event_base_loopbreak() is typically invoked from this event's callback. + This behavior is analogous to the "break;" statement. + + Subsequent invocations of event_base_loop() will proceed normally. + + @param eb the event_base structure returned by event_init() + @return 0 if successful, or -1 if an error occurred + @see event_base_loopexit() + */ +EVENT2_EXPORT_SYMBOL +int event_base_loopbreak(struct event_base *); + +/** + Tell the active event_base_loop() to scan for new events immediately. + + Calling this function makes the currently active event_base_loop() + start the loop over again (scanning for new events) after the current + event callback finishes. If the event loop is not running, this + function has no effect. + + event_base_loopbreak() is typically invoked from this event's callback. + This behavior is analogous to the "continue;" statement. + + Subsequent invocations of event loop will proceed normally. + + @param eb the event_base structure returned by event_init() + @return 0 if successful, or -1 if an error occurred + @see event_base_loopbreak() + */ +EVENT2_EXPORT_SYMBOL +int event_base_loopcontinue(struct event_base *); + +/** + Checks if the event loop was told to exit by event_base_loopexit(). + + This function will return true for an event_base at every point after + event_loopexit() is called, until the event loop is next entered. + + @param eb the event_base structure returned by event_init() + @return true if event_base_loopexit() was called on this event base, + or 0 otherwise + @see event_base_loopexit() + @see event_base_got_break() + */ +EVENT2_EXPORT_SYMBOL +int event_base_got_exit(struct event_base *); + +/** + Checks if the event loop was told to abort immediately by event_base_loopbreak(). + + This function will return true for an event_base at every point after + event_base_loopbreak() is called, until the event loop is next entered. + + @param eb the event_base structure returned by event_init() + @return true if event_base_loopbreak() was called on this event base, + or 0 otherwise + @see event_base_loopbreak() + @see event_base_got_exit() + */ +EVENT2_EXPORT_SYMBOL +int event_base_got_break(struct event_base *); + +/** + * @name event flags + * + * Flags to pass to event_new(), event_assign(), event_pending(), and + * anything else with an argument of the form "short events" + */ +/**@{*/ +/** Indicates that a timeout has occurred. It's not necessary to pass + * this flag to event_for new()/event_assign() to get a timeout. */ +#define EV_TIMEOUT 0x01 +/** Wait for a socket or FD to become readable */ +#define EV_READ 0x02 +/** Wait for a socket or FD to become writeable */ +#define EV_WRITE 0x04 +/** Wait for a POSIX signal to be raised*/ +#define EV_SIGNAL 0x08 +/** + * Persistent event: won't get removed automatically when activated. + * + * When a persistent event with a timeout becomes activated, its timeout + * is reset to 0. + */ +#define EV_PERSIST 0x10 +/** Select edge-triggered behavior, if supported by the backend. */ +#define EV_ET 0x20 +/** + * If this option is provided, then event_del() will not block in one thread + * while waiting for the event callback to complete in another thread. + * + * To use this option safely, you may need to use event_finalize() or + * event_free_finalize() in order to safely tear down an event in a + * multithreaded application. See those functions for more information. + * + * THIS IS AN EXPERIMENTAL API. IT MIGHT CHANGE BEFORE THE LIBEVENT 2.1 SERIES + * BECOMES STABLE. + **/ +#define EV_FINALIZE 0x40 +/** + * Detects connection close events. You can use this to detect when a + * connection has been closed, without having to read all the pending data + * from a connection. + * + * Not all backends support EV_CLOSED. To detect or require it, use the + * feature flag EV_FEATURE_EARLY_CLOSE. + **/ +#define EV_CLOSED 0x80 +/**@}*/ + +/** + @name evtimer_* macros + + Aliases for working with one-shot timer events */ +/**@{*/ +#define evtimer_assign(ev, b, cb, arg) \ + event_assign((ev), (b), -1, 0, (cb), (arg)) +#define evtimer_new(b, cb, arg) event_new((b), -1, 0, (cb), (arg)) +#define evtimer_add(ev, tv) event_add((ev), (tv)) +#define evtimer_del(ev) event_del(ev) +#define evtimer_pending(ev, tv) event_pending((ev), EV_TIMEOUT, (tv)) +#define evtimer_initialized(ev) event_initialized(ev) +/**@}*/ + +/** + @name evsignal_* macros + + Aliases for working with signal events + */ +/**@{*/ +#define evsignal_add(ev, tv) event_add((ev), (tv)) +#define evsignal_assign(ev, b, x, cb, arg) \ + event_assign((ev), (b), (x), EV_SIGNAL|EV_PERSIST, cb, (arg)) +#define evsignal_new(b, x, cb, arg) \ + event_new((b), (x), EV_SIGNAL|EV_PERSIST, (cb), (arg)) +#define evsignal_del(ev) event_del(ev) +#define evsignal_pending(ev, tv) event_pending((ev), EV_SIGNAL, (tv)) +#define evsignal_initialized(ev) event_initialized(ev) +/**@}*/ + +/** + A callback function for an event. + + It receives three arguments: + + @param fd An fd or signal + @param events One or more EV_* flags + @param arg A user-supplied argument. + + @see event_new() + */ +typedef void (*event_callback_fn)(evutil_socket_t, short, void *); + +/** + Return a value used to specify that the event itself must be used as the callback argument. + + The function event_new() takes a callback argument which is passed + to the event's callback function. To specify that the argument to be + passed to the callback function is the event that event_new() returns, + pass in the return value of event_self_cbarg() as the callback argument + for event_new(). + + For example: +
+      struct event *ev = event_new(base, sock, events, callback, %event_self_cbarg());
+  
+ + For consistency with event_new(), it is possible to pass the return value + of this function as the callback argument for event_assign() – this + achieves the same result as passing the event in directly. + + @return a value to be passed as the callback argument to event_new() or + event_assign(). + @see event_new(), event_assign() + */ +EVENT2_EXPORT_SYMBOL +void *event_self_cbarg(void); + +/** + Allocate and asssign a new event structure, ready to be added. + + The function event_new() returns a new event that can be used in + future calls to event_add() and event_del(). The fd and events + arguments determine which conditions will trigger the event; the + callback and callback_arg arguments tell Libevent what to do when the + event becomes active. + + If events contains one of EV_READ, EV_WRITE, or EV_READ|EV_WRITE, then + fd is a file descriptor or socket that should get monitored for + readiness to read, readiness to write, or readiness for either operation + (respectively). If events contains EV_SIGNAL, then fd is a signal + number to wait for. If events contains none of those flags, then the + event can be triggered only by a timeout or by manual activation with + event_active(): In this case, fd must be -1. + + The EV_PERSIST flag can also be passed in the events argument: it makes + event_add() persistent until event_del() is called. + + The EV_ET flag is compatible with EV_READ and EV_WRITE, and supported + only by certain backends. It tells Libevent to use edge-triggered + events. + + The EV_TIMEOUT flag has no effect here. + + It is okay to have multiple events all listening on the same fds; but + they must either all be edge-triggered, or all not be edge triggerd. + + When the event becomes active, the event loop will run the provided + callbuck function, with three arguments. The first will be the provided + fd value. The second will be a bitfield of the events that triggered: + EV_READ, EV_WRITE, or EV_SIGNAL. Here the EV_TIMEOUT flag indicates + that a timeout occurred, and EV_ET indicates that an edge-triggered + event occurred. The third event will be the callback_arg pointer that + you provide. + + @param base the event base to which the event should be attached. + @param fd the file descriptor or signal to be monitored, or -1. + @param events desired events to monitor: bitfield of EV_READ, EV_WRITE, + EV_SIGNAL, EV_PERSIST, EV_ET. + @param callback callback function to be invoked when the event occurs + @param callback_arg an argument to be passed to the callback function + + @return a newly allocated struct event that must later be freed with + event_free(). + @see event_free(), event_add(), event_del(), event_assign() + */ +EVENT2_EXPORT_SYMBOL +struct event *event_new(struct event_base *, evutil_socket_t, short, event_callback_fn, void *); + + +/** + Prepare a new, already-allocated event structure to be added. + + The function event_assign() prepares the event structure ev to be used + in future calls to event_add() and event_del(). Unlike event_new(), it + doesn't allocate memory itself: it requires that you have already + allocated a struct event, probably on the heap. Doing this will + typically make your code depend on the size of the event structure, and + thereby create incompatibility with future versions of Libevent. + + The easiest way to avoid this problem is just to use event_new() and + event_free() instead. + + A slightly harder way to future-proof your code is to use + event_get_struct_event_size() to determine the required size of an event + at runtime. + + Note that it is NOT safe to call this function on an event that is + active or pending. Doing so WILL corrupt internal data structures in + Libevent, and lead to strange, hard-to-diagnose bugs. You _can_ use + event_assign to change an existing event, but only if it is not active + or pending! + + The arguments for this function, and the behavior of the events that it + makes, are as for event_new(). + + @param ev an event struct to be modified + @param base the event base to which ev should be attached. + @param fd the file descriptor to be monitored + @param events desired events to monitor; can be EV_READ and/or EV_WRITE + @param callback callback function to be invoked when the event occurs + @param callback_arg an argument to be passed to the callback function + + @return 0 if success, or -1 on invalid arguments. + + @see event_new(), event_add(), event_del(), event_base_once(), + event_get_struct_event_size() + */ +EVENT2_EXPORT_SYMBOL +int event_assign(struct event *, struct event_base *, evutil_socket_t, short, event_callback_fn, void *); + +/** + Deallocate a struct event * returned by event_new(). + + If the event is pending or active, first make it non-pending and + non-active. + */ +EVENT2_EXPORT_SYMBOL +void event_free(struct event *); + +/** + * Callback type for event_finalize and event_free_finalize(). + * + * THIS IS AN EXPERIMENTAL API. IT MIGHT CHANGE BEFORE THE LIBEVENT 2.1 SERIES + * BECOMES STABLE. + * + **/ +typedef void (*event_finalize_callback_fn)(struct event *, void *); +/** + @name Finalization functions + + These functions are used to safely tear down an event in a multithreaded + application. If you construct your events with EV_FINALIZE to avoid + deadlocks, you will need a way to remove an event in the certainty that + it will definitely not be running its callback when you deallocate it + and its callback argument. + + To do this, call one of event_finalize() or event_free_finalize with + 0 for its first argument, the event to tear down as its second argument, + and a callback function as its third argument. The callback will be + invoked as part of the event loop, with the event's priority. + + After you call a finalizer function, event_add() and event_active() will + no longer work on the event, and event_del() will produce a no-op. You + must not try to change the event's fields with event_assign() or + event_set() while the finalize callback is in progress. Once the + callback has been invoked, you should treat the event structure as + containing uninitialized memory. + + The event_free_finalize() function frees the event after it's finalized; + event_finalize() does not. + + A finalizer callback must not make events pending or active. It must not + add events, activate events, or attempt to "resucitate" the event being + finalized in any way. + + THIS IS AN EXPERIMENTAL API. IT MIGHT CHANGE BEFORE THE LIBEVENT 2.1 SERIES + BECOMES STABLE. + + @return 0 on succes, -1 on failure. + */ +/**@{*/ +EVENT2_EXPORT_SYMBOL +int event_finalize(unsigned, struct event *, event_finalize_callback_fn); +EVENT2_EXPORT_SYMBOL +int event_free_finalize(unsigned, struct event *, event_finalize_callback_fn); +/**@}*/ + +/** + Schedule a one-time event + + The function event_base_once() is similar to event_new(). However, it + schedules a callback to be called exactly once, and does not require the + caller to prepare an event structure. + + Note that in Libevent 2.0 and earlier, if the event is never triggered, the + internal memory used to hold it will never be freed. In Libevent 2.1, + the internal memory will get freed by event_base_free() if the event + is never triggered. The 'arg' value, however, will not get freed in either + case--you'll need to free that on your own if you want it to go away. + + @param base an event_base + @param fd a file descriptor to monitor, or -1 for no fd. + @param events event(s) to monitor; can be any of EV_READ | + EV_WRITE, or EV_TIMEOUT + @param callback callback function to be invoked when the event occurs + @param arg an argument to be passed to the callback function + @param timeout the maximum amount of time to wait for the event. NULL + makes an EV_READ/EV_WRITE event make forever; NULL makes an + EV_TIMEOUT event succees immediately. + @return 0 if successful, or -1 if an error occurred + */ +EVENT2_EXPORT_SYMBOL +int event_base_once(struct event_base *, evutil_socket_t, short, event_callback_fn, void *, const struct timeval *); + +/** + Add an event to the set of pending events. + + The function event_add() schedules the execution of the event 'ev' when the + condition specified by event_assign() or event_new() occurs, or when the time + specified in timeout has elapesed. If atimeout is NULL, no timeout + occurs and the function will only be + called if a matching event occurs. The event in the + ev argument must be already initialized by event_assign() or event_new() + and may not be used + in calls to event_assign() until it is no longer pending. + + If the event in the ev argument already has a scheduled timeout, calling + event_add() replaces the old timeout with the new one if tv is non-NULL. + + @param ev an event struct initialized via event_assign() or event_new() + @param timeout the maximum amount of time to wait for the event, or NULL + to wait forever + @return 0 if successful, or -1 if an error occurred + @see event_del(), event_assign(), event_new() + */ +EVENT2_EXPORT_SYMBOL +int event_add(struct event *ev, const struct timeval *timeout); + +/** + Remove a timer from a pending event without removing the event itself. + + If the event has a scheduled timeout, this function unschedules it but + leaves the event otherwise pending. + + @param ev an event struct initialized via event_assign() or event_new() + @return 0 on success, or -1 if an error occurrect. +*/ +EVENT2_EXPORT_SYMBOL +int event_remove_timer(struct event *ev); + +/** + Remove an event from the set of monitored events. + + The function event_del() will cancel the event in the argument ev. If the + event has already executed or has never been added the call will have no + effect. + + @param ev an event struct to be removed from the working set + @return 0 if successful, or -1 if an error occurred + @see event_add() + */ +EVENT2_EXPORT_SYMBOL +int event_del(struct event *); + +/** + As event_del(), but never blocks while the event's callback is running + in another thread, even if the event was constructed without the + EV_FINALIZE flag. + + THIS IS AN EXPERIMENTAL API. IT MIGHT CHANGE BEFORE THE LIBEVENT 2.1 SERIES + BECOMES STABLE. + */ +EVENT2_EXPORT_SYMBOL +int event_del_noblock(struct event *ev); +/** + As event_del(), but always blocks while the event's callback is running + in another thread, even if the event was constructed with the + EV_FINALIZE flag. + + THIS IS AN EXPERIMENTAL API. IT MIGHT CHANGE BEFORE THE LIBEVENT 2.1 SERIES + BECOMES STABLE. + */ +EVENT2_EXPORT_SYMBOL +int event_del_block(struct event *ev); + +/** + Make an event active. + + You can use this function on a pending or a non-pending event to make it + active, so that its callback will be run by event_base_dispatch() or + event_base_loop(). + + One common use in multithreaded programs is to wake the thread running + event_base_loop() from another thread. + + @param ev an event to make active. + @param res a set of flags to pass to the event's callback. + @param ncalls an obsolete argument: this is ignored. + **/ +EVENT2_EXPORT_SYMBOL +void event_active(struct event *ev, int res, short ncalls); + +/** + Checks if a specific event is pending or scheduled. + + @param ev an event struct previously passed to event_add() + @param events the requested event type; any of EV_TIMEOUT|EV_READ| + EV_WRITE|EV_SIGNAL + @param tv if this field is not NULL, and the event has a timeout, + this field is set to hold the time at which the timeout will + expire. + + @return true if the event is pending on any of the events in 'what', (that + is to say, it has been added), or 0 if the event is not added. + */ +EVENT2_EXPORT_SYMBOL +int event_pending(const struct event *ev, short events, struct timeval *tv); + +/** + If called from within the callback for an event, returns that event. + + The behavior of this function is not defined when called from outside the + callback function for an event. + */ +EVENT2_EXPORT_SYMBOL +struct event *event_base_get_running_event(struct event_base *base); + +/** + Test if an event structure might be initialized. + + The event_initialized() function can be used to check if an event has been + initialized. + + Warning: This function is only useful for distinguishing a a zeroed-out + piece of memory from an initialized event, it can easily be confused by + uninitialized memory. Thus, it should ONLY be used to distinguish an + initialized event from zero. + + @param ev an event structure to be tested + @return 1 if the structure might be initialized, or 0 if it has not been + initialized + */ +EVENT2_EXPORT_SYMBOL +int event_initialized(const struct event *ev); + +/** + Get the signal number assigned to a signal event +*/ +#define event_get_signal(ev) ((int)event_get_fd(ev)) + +/** + Get the socket or signal assigned to an event, or -1 if the event has + no socket. +*/ +EVENT2_EXPORT_SYMBOL +evutil_socket_t event_get_fd(const struct event *ev); + +/** + Get the event_base associated with an event. +*/ +EVENT2_EXPORT_SYMBOL +struct event_base *event_get_base(const struct event *ev); + +/** + Return the events (EV_READ, EV_WRITE, etc) assigned to an event. +*/ +EVENT2_EXPORT_SYMBOL +short event_get_events(const struct event *ev); + +/** + Return the callback assigned to an event. +*/ +EVENT2_EXPORT_SYMBOL +event_callback_fn event_get_callback(const struct event *ev); + +/** + Return the callback argument assigned to an event. +*/ +EVENT2_EXPORT_SYMBOL +void *event_get_callback_arg(const struct event *ev); + +/** + Return the priority of an event. + @see event_priority_init(), event_get_priority() +*/ +EVENT2_EXPORT_SYMBOL +int event_get_priority(const struct event *ev); + +/** + Extract _all_ of arguments given to construct a given event. The + event_base is copied into *base_out, the fd is copied into *fd_out, and so + on. + + If any of the "_out" arguments is NULL, it will be ignored. + */ +EVENT2_EXPORT_SYMBOL +void event_get_assignment(const struct event *event, + struct event_base **base_out, evutil_socket_t *fd_out, short *events_out, + event_callback_fn *callback_out, void **arg_out); + +/** + Return the size of struct event that the Libevent library was compiled + with. + + This will be NO GREATER than sizeof(struct event) if you're running with + the same version of Libevent that your application was built with, but + otherwise might not. + + Note that it might be SMALLER than sizeof(struct event) if some future + version of Libevent adds extra padding to the end of struct event. + We might do this to help ensure ABI-compatibility between different + versions of Libevent. + */ +EVENT2_EXPORT_SYMBOL +size_t event_get_struct_event_size(void); + +/** + Get the Libevent version. + + Note that this will give you the version of the library that you're + currently linked against, not the version of the headers that you've + compiled against. + + @return a string containing the version number of Libevent +*/ +EVENT2_EXPORT_SYMBOL +const char *event_get_version(void); + +/** + Return a numeric representation of Libevent's version. + + Note that this will give you the version of the library that you're + currently linked against, not the version of the headers you've used to + compile. + + The format uses one byte each for the major, minor, and patchlevel parts of + the version number. The low-order byte is unused. For example, version + 2.0.1-alpha has a numeric representation of 0x02000100 +*/ +EVENT2_EXPORT_SYMBOL +ev_uint32_t event_get_version_number(void); + +/** As event_get_version, but gives the version of Libevent's headers. */ +#define LIBEVENT_VERSION EVENT__VERSION +/** As event_get_version_number, but gives the version number of Libevent's + * headers. */ +#define LIBEVENT_VERSION_NUMBER EVENT__NUMERIC_VERSION + +/** Largest number of priorities that Libevent can support. */ +#define EVENT_MAX_PRIORITIES 256 +/** + Set the number of different event priorities + + By default Libevent schedules all active events with the same priority. + However, some time it is desirable to process some events with a higher + priority than others. For that reason, Libevent supports strict priority + queues. Active events with a lower priority are always processed before + events with a higher priority. + + The number of different priorities can be set initially with the + event_base_priority_init() function. This function should be called + before the first call to event_base_dispatch(). The + event_priority_set() function can be used to assign a priority to an + event. By default, Libevent assigns the middle priority to all events + unless their priority is explicitly set. + + Note that urgent-priority events can starve less-urgent events: after + running all urgent-priority callbacks, Libevent checks for more urgent + events again, before running less-urgent events. Less-urgent events + will not have their callbacks run until there are no events more urgent + than them that want to be active. + + @param eb the event_base structure returned by event_base_new() + @param npriorities the maximum number of priorities + @return 0 if successful, or -1 if an error occurred + @see event_priority_set() + */ +EVENT2_EXPORT_SYMBOL +int event_base_priority_init(struct event_base *, int); + +/** + Get the number of different event priorities. + + @param eb the event_base structure returned by event_base_new() + @return Number of different event priorities + @see event_base_priority_init() +*/ +EVENT2_EXPORT_SYMBOL +int event_base_get_npriorities(struct event_base *eb); + +/** + Assign a priority to an event. + + @param ev an event struct + @param priority the new priority to be assigned + @return 0 if successful, or -1 if an error occurred + @see event_priority_init(), event_get_priority() + */ +EVENT2_EXPORT_SYMBOL +int event_priority_set(struct event *, int); + +/** + Prepare an event_base to use a large number of timeouts with the same + duration. + + Libevent's default scheduling algorithm is optimized for having a large + number of timeouts with their durations more or less randomly + distributed. But if you have a large number of timeouts that all have + the same duration (for example, if you have a large number of + connections that all have a 10-second timeout), then you can improve + Libevent's performance by telling Libevent about it. + + To do this, call this function with the common duration. It will return a + pointer to a different, opaque timeout value. (Don't depend on its actual + contents!) When you use this timeout value in event_add(), Libevent will + schedule the event more efficiently. + + (This optimization probably will not be worthwhile until you have thousands + or tens of thousands of events with the same timeout.) + */ +EVENT2_EXPORT_SYMBOL +const struct timeval *event_base_init_common_timeout(struct event_base *base, + const struct timeval *duration); + +#if !defined(EVENT__DISABLE_MM_REPLACEMENT) || defined(EVENT_IN_DOXYGEN_) +/** + Override the functions that Libevent uses for memory management. + + Usually, Libevent uses the standard libc functions malloc, realloc, and + free to allocate memory. Passing replacements for those functions to + event_set_mem_functions() overrides this behavior. + + Note that all memory returned from Libevent will be allocated by the + replacement functions rather than by malloc() and realloc(). Thus, if you + have replaced those functions, it will not be appropriate to free() memory + that you get from Libevent. Instead, you must use the free_fn replacement + that you provided. + + Note also that if you are going to call this function, you should do so + before any call to any Libevent function that does allocation. + Otherwise, those funtions will allocate their memory using malloc(), but + then later free it using your provided free_fn. + + @param malloc_fn A replacement for malloc. + @param realloc_fn A replacement for realloc + @param free_fn A replacement for free. + **/ +EVENT2_EXPORT_SYMBOL +void event_set_mem_functions( + void *(*malloc_fn)(size_t sz), + void *(*realloc_fn)(void *ptr, size_t sz), + void (*free_fn)(void *ptr)); +/** This definition is present if Libevent was built with support for + event_set_mem_functions() */ +#define EVENT_SET_MEM_FUNCTIONS_IMPLEMENTED +#endif + +/** + Writes a human-readable description of all inserted and/or active + events to a provided stdio stream. + + This is intended for debugging; its format is not guaranteed to be the same + between libevent versions. + + @param base An event_base on which to scan the events. + @param output A stdio file to write on. + */ +EVENT2_EXPORT_SYMBOL +void event_base_dump_events(struct event_base *, FILE *); + + +/** + Activates all pending events for the given fd and event mask. + + This function activates pending events only. Events which have not been + added will not become active. + + @param base the event_base on which to activate the events. + @param fd An fd to active events on. + @param events One or more of EV_{READ,WRITE}. + */ +EVENT2_EXPORT_SYMBOL +void event_base_active_by_fd(struct event_base *base, evutil_socket_t fd, short events); + +/** + Activates all pending signals with a given signal number + + This function activates pending events only. Events which have not been + added will not become active. + + @param base the event_base on which to activate the events. + @param fd The signal to active events on. + */ +EVENT2_EXPORT_SYMBOL +void event_base_active_by_signal(struct event_base *base, int sig); + +/** + * Callback for iterating events in an event base via event_base_foreach_event + */ +typedef int (*event_base_foreach_event_cb)(const struct event_base *, const struct event *, void *); + +/** + Iterate over all added or active events events in an event loop, and invoke + a given callback on each one. + + The callback must not call any function that modifies the event base, that + modifies any event in the event base, or that adds or removes any event to + the event base. Doing so is unsupported and will lead to undefined + behavior -- likely, to crashes. + + event_base_foreach_event() holds a lock on the event_base() for the whole + time it's running: slow callbacks are not advisable. + + Note that Libevent adds some events of its own to make pieces of its + functionality work. You must not assume that the only events you'll + encounter will be the ones you added yourself. + + The callback function must return 0 to continue iteration, or some other + integer to stop iterating. + + @param base An event_base on which to scan the events. + @param fn A callback function to receive the events. + @param arg An argument passed to the callback function. + @return 0 if we iterated over every event, or the value returned by the + callback function if the loop exited early. +*/ +EVENT2_EXPORT_SYMBOL +int event_base_foreach_event(struct event_base *base, event_base_foreach_event_cb fn, void *arg); + + +/** Sets 'tv' to the current time (as returned by gettimeofday()), + looking at the cached value in 'base' if possible, and calling + gettimeofday() or clock_gettime() as appropriate if there is no + cached time. + + Generally, this value will only be cached while actually + processing event callbacks, and may be very inaccuate if your + callbacks take a long time to execute. + + Returns 0 on success, negative on failure. + */ +EVENT2_EXPORT_SYMBOL +int event_base_gettimeofday_cached(struct event_base *base, + struct timeval *tv); + +/** Update cached_tv in the 'base' to the current time + * + * You can use this function is useful for selectively increasing + * the accuracy of the cached time value in 'base' during callbacks + * that take a long time to execute. + * + * This function has no effect if the base is currently not in its + * event loop, or if timeval caching is disabled via + * EVENT_BASE_FLAG_NO_CACHE_TIME. + * + * @return 0 on success, -1 on failure + */ +EVENT2_EXPORT_SYMBOL +int event_base_update_cache_time(struct event_base *base); + +/** Release up all globally-allocated resources allocated by Libevent. + + This function does not free developer-controlled resources like + event_bases, events, bufferevents, listeners, and so on. It only releases + resources like global locks that there is no other way to free. + + It is not actually necessary to call this function before exit: every + resource that it frees would be released anyway on exit. It mainly exists + so that resource-leak debugging tools don't see Libevent as holding + resources at exit. + + You should only call this function when no other Libevent functions will + be invoked -- e.g., when cleanly exiting a program. + */ +EVENT2_EXPORT_SYMBOL +void libevent_global_shutdown(void); + +#ifdef __cplusplus +} +#endif + +#endif /* EVENT2_EVENT_H_INCLUDED_ */ diff -Nru mysql-5.7-5.7.25/extra/libevent/include/event2/event_struct.h mysql-5.7-5.7.26/extra/libevent/include/event2/event_struct.h --- mysql-5.7-5.7.25/extra/libevent/include/event2/event_struct.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/include/event2/event_struct.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,180 @@ +/* + * Copyright (c) 2000-2007 Niels Provos + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef EVENT2_EVENT_STRUCT_H_INCLUDED_ +#define EVENT2_EVENT_STRUCT_H_INCLUDED_ + +/** @file event2/event_struct.h + + Structures used by event.h. Using these structures directly WILL harm + forward compatibility: be careful. + + No field declared in this file should be used directly in user code. Except + for historical reasons, these fields would not be exposed at all. + */ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#ifdef EVENT__HAVE_SYS_TYPES_H +#include +#endif +#ifdef EVENT__HAVE_SYS_TIME_H +#include +#endif + +/* For int types. */ +#include + +/* For evkeyvalq */ +#include + +#define EVLIST_TIMEOUT 0x01 +#define EVLIST_INSERTED 0x02 +#define EVLIST_SIGNAL 0x04 +#define EVLIST_ACTIVE 0x08 +#define EVLIST_INTERNAL 0x10 +#define EVLIST_ACTIVE_LATER 0x20 +#define EVLIST_FINALIZING 0x40 +#define EVLIST_INIT 0x80 + +#define EVLIST_ALL 0xff + +/* Fix so that people don't have to run with */ +#ifndef TAILQ_ENTRY +#define EVENT_DEFINED_TQENTRY_ +#define TAILQ_ENTRY(type) \ +struct { \ + struct type *tqe_next; /* next element */ \ + struct type **tqe_prev; /* address of previous next element */ \ +} +#endif /* !TAILQ_ENTRY */ + +#ifndef TAILQ_HEAD +#define EVENT_DEFINED_TQHEAD_ +#define TAILQ_HEAD(name, type) \ +struct name { \ + struct type *tqh_first; \ + struct type **tqh_last; \ +} +#endif + +/* Fix so that people don't have to run with */ +#ifndef LIST_ENTRY +#define EVENT_DEFINED_LISTENTRY_ +#define LIST_ENTRY(type) \ +struct { \ + struct type *le_next; /* next element */ \ + struct type **le_prev; /* address of previous next element */ \ +} +#endif /* !LIST_ENTRY */ + +#ifndef LIST_HEAD +#define EVENT_DEFINED_LISTHEAD_ +#define LIST_HEAD(name, type) \ +struct name { \ + struct type *lh_first; /* first element */ \ + } +#endif /* !LIST_HEAD */ + +struct event; + +struct event_callback { + TAILQ_ENTRY(event_callback) evcb_active_next; + short evcb_flags; + ev_uint8_t evcb_pri; /* smaller numbers are higher priority */ + ev_uint8_t evcb_closure; + /* allows us to adopt for different types of events */ + union { + void (*evcb_callback)(evutil_socket_t, short, void *); + void (*evcb_selfcb)(struct event_callback *, void *); + void (*evcb_evfinalize)(struct event *, void *); + void (*evcb_cbfinalize)(struct event_callback *, void *); + } evcb_cb_union; + void *evcb_arg; +}; + +struct event_base; +struct event { + struct event_callback ev_evcallback; + + /* for managing timeouts */ + union { + TAILQ_ENTRY(event) ev_next_with_common_timeout; + int min_heap_idx; + } ev_timeout_pos; + evutil_socket_t ev_fd; + + struct event_base *ev_base; + + union { + /* used for io events */ + struct { + LIST_ENTRY (event) ev_io_next; + struct timeval ev_timeout; + } ev_io; + + /* used by signal events */ + struct { + LIST_ENTRY (event) ev_signal_next; + short ev_ncalls; + /* Allows deletes in callback */ + short *ev_pncalls; + } ev_signal; + } ev_; + + short ev_events; + short ev_res; /* result passed to event callback */ + struct timeval ev_timeout; +}; + +TAILQ_HEAD (event_list, event); + +#ifdef EVENT_DEFINED_TQENTRY_ +#undef TAILQ_ENTRY +#endif + +#ifdef EVENT_DEFINED_TQHEAD_ +#undef TAILQ_HEAD +#endif + +LIST_HEAD (event_dlist, event); + +#ifdef EVENT_DEFINED_LISTENTRY_ +#undef LIST_ENTRY +#endif + +#ifdef EVENT_DEFINED_LISTHEAD_ +#undef LIST_HEAD +#endif + +#ifdef __cplusplus +} +#endif + +#endif /* EVENT2_EVENT_STRUCT_H_INCLUDED_ */ diff -Nru mysql-5.7-5.7.25/extra/libevent/include/event2/http_compat.h mysql-5.7-5.7.26/extra/libevent/include/event2/http_compat.h --- mysql-5.7-5.7.25/extra/libevent/include/event2/http_compat.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/include/event2/http_compat.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,90 @@ +/* + * Copyright (c) 2000-2007 Niels Provos + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef EVENT2_HTTP_COMPAT_H_INCLUDED_ +#define EVENT2_HTTP_COMPAT_H_INCLUDED_ + +/** @file event2/http_compat.h + + Potentially non-threadsafe versions of the functions in http.h: provided + only for backwards compatibility. + + */ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#ifdef EVENT__HAVE_SYS_TYPES_H +#include +#endif +#ifdef EVENT__HAVE_SYS_TIME_H +#include +#endif + +/* For int types. */ +#include + +/** + * Start an HTTP server on the specified address and port + * + * @deprecated It does not allow an event base to be specified + * + * @param address the address to which the HTTP server should be bound + * @param port the port number on which the HTTP server should listen + * @return an struct evhttp object + */ +struct evhttp *evhttp_start(const char *address, ev_uint16_t port); + +/** + * A connection object that can be used to for making HTTP requests. The + * connection object tries to establish the connection when it is given an + * http request object. + * + * @deprecated It does not allow an event base to be specified + */ +struct evhttp_connection *evhttp_connection_new( + const char *address, ev_uint16_t port); + +/** + * Associates an event base with the connection - can only be called + * on a freshly created connection object that has not been used yet. + * + * @deprecated XXXX Why? + */ +void evhttp_connection_set_base(struct evhttp_connection *evcon, + struct event_base *base); + + +/** Returns the request URI */ +#define evhttp_request_uri evhttp_request_get_uri + +#ifdef __cplusplus +} +#endif + +#endif /* EVENT2_EVENT_COMPAT_H_INCLUDED_ */ diff -Nru mysql-5.7-5.7.25/extra/libevent/include/event2/http.h mysql-5.7-5.7.26/extra/libevent/include/event2/http.h --- mysql-5.7-5.7.25/extra/libevent/include/event2/http.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/include/event2/http.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,1189 @@ +/* + * Copyright (c) 2000-2007 Niels Provos + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef EVENT2_HTTP_H_INCLUDED_ +#define EVENT2_HTTP_H_INCLUDED_ + +/* For int types. */ +#include +#include + +#ifdef __cplusplus +extern "C" { +#endif + +/* In case we haven't included the right headers yet. */ +struct evbuffer; +struct event_base; +struct bufferevent; +struct evhttp_connection; + +/** @file event2/http.h + * + * Basic support for HTTP serving. + * + * As Libevent is a library for dealing with event notification and most + * interesting applications are networked today, I have often found the + * need to write HTTP code. The following prototypes and definitions provide + * an application with a minimal interface for making HTTP requests and for + * creating a very simple HTTP server. + */ + +/* Response codes */ +#define HTTP_OK 200 /**< request completed ok */ +#define HTTP_NOCONTENT 204 /**< request does not have content */ +#define HTTP_MOVEPERM 301 /**< the uri moved permanently */ +#define HTTP_MOVETEMP 302 /**< the uri moved temporarily */ +#define HTTP_NOTMODIFIED 304 /**< page was not modified from last */ +#define HTTP_BADREQUEST 400 /**< invalid http request was made */ +#define HTTP_NOTFOUND 404 /**< could not find content for uri */ +#define HTTP_BADMETHOD 405 /**< method not allowed for this uri */ +#define HTTP_ENTITYTOOLARGE 413 /**< */ +#define HTTP_EXPECTATIONFAILED 417 /**< we can't handle this expectation */ +#define HTTP_INTERNAL 500 /**< internal error */ +#define HTTP_NOTIMPLEMENTED 501 /**< not implemented */ +#define HTTP_SERVUNAVAIL 503 /**< the server is not available */ + +struct evhttp; +struct evhttp_request; +struct evkeyvalq; +struct evhttp_bound_socket; +struct evconnlistener; +struct evdns_base; + +/** + * Create a new HTTP server. + * + * @param base (optional) the event base to receive the HTTP events + * @return a pointer to a newly initialized evhttp server structure + * @see evhttp_free() + */ +EVENT2_EXPORT_SYMBOL +struct evhttp *evhttp_new(struct event_base *base); + +/** + * Binds an HTTP server on the specified address and port. + * + * Can be called multiple times to bind the same http server + * to multiple different ports. + * + * @param http a pointer to an evhttp object + * @param address a string containing the IP address to listen(2) on + * @param port the port number to listen on + * @return 0 on success, -1 on failure. + * @see evhttp_accept_socket() + */ +EVENT2_EXPORT_SYMBOL +int evhttp_bind_socket(struct evhttp *http, const char *address, ev_uint16_t port); + +/** + * Like evhttp_bind_socket(), but returns a handle for referencing the socket. + * + * The returned pointer is not valid after \a http is freed. + * + * @param http a pointer to an evhttp object + * @param address a string containing the IP address to listen(2) on + * @param port the port number to listen on + * @return Handle for the socket on success, NULL on failure. + * @see evhttp_bind_socket(), evhttp_del_accept_socket() + */ +EVENT2_EXPORT_SYMBOL +struct evhttp_bound_socket *evhttp_bind_socket_with_handle(struct evhttp *http, const char *address, ev_uint16_t port); + +/** + * Makes an HTTP server accept connections on the specified socket. + * + * This may be useful to create a socket and then fork multiple instances + * of an http server, or when a socket has been communicated via file + * descriptor passing in situations where an http servers does not have + * permissions to bind to a low-numbered port. + * + * Can be called multiple times to have the http server listen to + * multiple different sockets. + * + * @param http a pointer to an evhttp object + * @param fd a socket fd that is ready for accepting connections + * @return 0 on success, -1 on failure. + * @see evhttp_bind_socket() + */ +EVENT2_EXPORT_SYMBOL +int evhttp_accept_socket(struct evhttp *http, evutil_socket_t fd); + +/** + * Like evhttp_accept_socket(), but returns a handle for referencing the socket. + * + * The returned pointer is not valid after \a http is freed. + * + * @param http a pointer to an evhttp object + * @param fd a socket fd that is ready for accepting connections + * @return Handle for the socket on success, NULL on failure. + * @see evhttp_accept_socket(), evhttp_del_accept_socket() + */ +EVENT2_EXPORT_SYMBOL +struct evhttp_bound_socket *evhttp_accept_socket_with_handle(struct evhttp *http, evutil_socket_t fd); + +/** + * The most low-level evhttp_bind/accept method: takes an evconnlistener, and + * returns an evhttp_bound_socket. The listener will be freed when the bound + * socket is freed. + */ +EVENT2_EXPORT_SYMBOL +struct evhttp_bound_socket *evhttp_bind_listener(struct evhttp *http, struct evconnlistener *listener); + +/** + * Return the listener used to implement a bound socket. + */ +EVENT2_EXPORT_SYMBOL +struct evconnlistener *evhttp_bound_socket_get_listener(struct evhttp_bound_socket *bound); + +typedef void evhttp_bound_socket_foreach_fn(struct evhttp_bound_socket *, void *); +/** + * Applies the function specified in the first argument to all + * evhttp_bound_sockets associated with "http". The user must not + * attempt to free or remove any connections, sockets or listeners + * in the callback "function". + * + * @param http pointer to an evhttp object + * @param function function to apply to every bound socket + * @param argument pointer value passed to function for every socket iterated + */ +EVENT2_EXPORT_SYMBOL +void evhttp_foreach_bound_socket(struct evhttp *http, evhttp_bound_socket_foreach_fn *function, void *argument); + +/** + * Makes an HTTP server stop accepting connections on the specified socket + * + * This may be useful when a socket has been sent via file descriptor passing + * and is no longer needed by the current process. + * + * If you created this bound socket with evhttp_bind_socket_with_handle or + * evhttp_accept_socket_with_handle, this function closes the fd you provided. + * If you created this bound socket with evhttp_bind_listener, this function + * frees the listener you provided. + * + * \a bound_socket is an invalid pointer after this call returns. + * + * @param http a pointer to an evhttp object + * @param bound_socket a handle returned by evhttp_{bind,accept}_socket_with_handle + * @see evhttp_bind_socket_with_handle(), evhttp_accept_socket_with_handle() + */ +EVENT2_EXPORT_SYMBOL +void evhttp_del_accept_socket(struct evhttp *http, struct evhttp_bound_socket *bound_socket); + +/** + * Get the raw file descriptor referenced by an evhttp_bound_socket. + * + * @param bound_socket a handle returned by evhttp_{bind,accept}_socket_with_handle + * @return the file descriptor used by the bound socket + * @see evhttp_bind_socket_with_handle(), evhttp_accept_socket_with_handle() + */ +EVENT2_EXPORT_SYMBOL +evutil_socket_t evhttp_bound_socket_get_fd(struct evhttp_bound_socket *bound_socket); + +/** + * Free the previously created HTTP server. + * + * Works only if no requests are currently being served. + * + * @param http the evhttp server object to be freed + * @see evhttp_start() + */ +EVENT2_EXPORT_SYMBOL +void evhttp_free(struct evhttp* http); + +/** XXX Document. */ +EVENT2_EXPORT_SYMBOL +void evhttp_set_max_headers_size(struct evhttp* http, ev_ssize_t max_headers_size); +/** XXX Document. */ +EVENT2_EXPORT_SYMBOL +void evhttp_set_max_body_size(struct evhttp* http, ev_ssize_t max_body_size); + +/** + Set the value to use for the Content-Type header when none was provided. If + the content type string is NULL, the Content-Type header will not be + automatically added. + + @param http the http server on which to set the default content type + @param content_type the value for the Content-Type header +*/ +EVENT2_EXPORT_SYMBOL +void evhttp_set_default_content_type(struct evhttp *http, + const char *content_type); + +/** + Sets the what HTTP methods are supported in requests accepted by this + server, and passed to user callbacks. + + If not supported they will generate a "405 Method not allowed" response. + + By default this includes the following methods: GET, POST, HEAD, PUT, DELETE + + @param http the http server on which to set the methods + @param methods bit mask constructed from evhttp_cmd_type values +*/ +EVENT2_EXPORT_SYMBOL +void evhttp_set_allowed_methods(struct evhttp* http, ev_uint16_t methods); + +/** + Set a callback for a specified URI + + @param http the http sever on which to set the callback + @param path the path for which to invoke the callback + @param cb the callback function that gets invoked on requesting path + @param cb_arg an additional context argument for the callback + @return 0 on success, -1 if the callback existed already, -2 on failure +*/ +EVENT2_EXPORT_SYMBOL +int evhttp_set_cb(struct evhttp *http, const char *path, + void (*cb)(struct evhttp_request *, void *), void *cb_arg); + +/** Removes the callback for a specified URI */ +EVENT2_EXPORT_SYMBOL +int evhttp_del_cb(struct evhttp *, const char *); + +/** + Set a callback for all requests that are not caught by specific callbacks + + Invokes the specified callback for all requests that do not match any of + the previously specified request paths. This is catchall for requests not + specifically configured with evhttp_set_cb(). + + @param http the evhttp server object for which to set the callback + @param cb the callback to invoke for any unmatched requests + @param arg an context argument for the callback +*/ +EVENT2_EXPORT_SYMBOL +void evhttp_set_gencb(struct evhttp *http, + void (*cb)(struct evhttp_request *, void *), void *arg); + +/** + Set a callback used to create new bufferevents for connections + to a given evhttp object. + + You can use this to override the default bufferevent type -- for example, + to make this evhttp object use SSL bufferevents rather than unencrypted + ones. + + New bufferevents must be allocated with no fd set on them. + + @param http the evhttp server object for which to set the callback + @param cb the callback to invoke for incoming connections + @param arg an context argument for the callback + */ +EVENT2_EXPORT_SYMBOL +void evhttp_set_bevcb(struct evhttp *http, + struct bufferevent *(*cb)(struct event_base *, void *), void *arg); + +/** + Adds a virtual host to the http server. + + A virtual host is a newly initialized evhttp object that has request + callbacks set on it via evhttp_set_cb() or evhttp_set_gencb(). It + most not have any listing sockets associated with it. + + If the virtual host has not been removed by the time that evhttp_free() + is called on the main http server, it will be automatically freed, too. + + It is possible to have hierarchical vhosts. For example: A vhost + with the pattern *.example.com may have other vhosts with patterns + foo.example.com and bar.example.com associated with it. + + @param http the evhttp object to which to add a virtual host + @param pattern the glob pattern against which the hostname is matched. + The match is case insensitive and follows otherwise regular shell + matching. + @param vhost the virtual host to add the regular http server. + @return 0 on success, -1 on failure + @see evhttp_remove_virtual_host() +*/ +EVENT2_EXPORT_SYMBOL +int evhttp_add_virtual_host(struct evhttp* http, const char *pattern, + struct evhttp* vhost); + +/** + Removes a virtual host from the http server. + + @param http the evhttp object from which to remove the virtual host + @param vhost the virtual host to remove from the regular http server. + @return 0 on success, -1 on failure + @see evhttp_add_virtual_host() +*/ +EVENT2_EXPORT_SYMBOL +int evhttp_remove_virtual_host(struct evhttp* http, struct evhttp* vhost); + +/** + Add a server alias to an http object. The http object can be a virtual + host or the main server. + + @param http the evhttp object + @param alias the alias to add + @see evhttp_add_remove_alias() +*/ +EVENT2_EXPORT_SYMBOL +int evhttp_add_server_alias(struct evhttp *http, const char *alias); + +/** + Remove a server alias from an http object. + + @param http the evhttp object + @param alias the alias to remove + @see evhttp_add_server_alias() +*/ +EVENT2_EXPORT_SYMBOL +int evhttp_remove_server_alias(struct evhttp *http, const char *alias); + +/** + * Set the timeout for an HTTP request. + * + * @param http an evhttp object + * @param timeout_in_secs the timeout, in seconds + */ +EVENT2_EXPORT_SYMBOL +void evhttp_set_timeout(struct evhttp *http, int timeout_in_secs); + +/** + * Set the timeout for an HTTP request. + * + * @param http an evhttp object + * @param tv the timeout, or NULL + */ +EVENT2_EXPORT_SYMBOL +void evhttp_set_timeout_tv(struct evhttp *http, const struct timeval* tv); + +/* Read all the clients body, and only after this respond with an error if the + * clients body exceed max_body_size */ +#define EVHTTP_SERVER_LINGERING_CLOSE 0x0001 +/** + * Set connection flags for HTTP server. + * + * @see EVHTTP_SERVER_* + * @return 0 on success, otherwise non zero (for example if flag doesn't + * supported). + */ +EVENT2_EXPORT_SYMBOL +int evhttp_set_flags(struct evhttp *http, int flags); + +/* Request/Response functionality */ + +/** + * Send an HTML error message to the client. + * + * @param req a request object + * @param error the HTTP error code + * @param reason a brief explanation of the error. If this is NULL, we'll + * just use the standard meaning of the error code. + */ +EVENT2_EXPORT_SYMBOL +void evhttp_send_error(struct evhttp_request *req, int error, + const char *reason); + +/** + * Send an HTML reply to the client. + * + * The body of the reply consists of the data in databuf. After calling + * evhttp_send_reply() databuf will be empty, but the buffer is still + * owned by the caller and needs to be deallocated by the caller if + * necessary. + * + * @param req a request object + * @param code the HTTP response code to send + * @param reason a brief message to send with the response code + * @param databuf the body of the response + */ +EVENT2_EXPORT_SYMBOL +void evhttp_send_reply(struct evhttp_request *req, int code, + const char *reason, struct evbuffer *databuf); + +/* Low-level response interface, for streaming/chunked replies */ + +/** + Initiate a reply that uses Transfer-Encoding chunked. + + This allows the caller to stream the reply back to the client and is + useful when either not all of the reply data is immediately available + or when sending very large replies. + + The caller needs to supply data chunks with evhttp_send_reply_chunk() + and complete the reply by calling evhttp_send_reply_end(). + + @param req a request object + @param code the HTTP response code to send + @param reason a brief message to send with the response code +*/ +EVENT2_EXPORT_SYMBOL +void evhttp_send_reply_start(struct evhttp_request *req, int code, + const char *reason); + +/** + Send another data chunk as part of an ongoing chunked reply. + + The reply chunk consists of the data in databuf. After calling + evhttp_send_reply_chunk() databuf will be empty, but the buffer is + still owned by the caller and needs to be deallocated by the caller + if necessary. + + @param req a request object + @param databuf the data chunk to send as part of the reply. +*/ +EVENT2_EXPORT_SYMBOL +void evhttp_send_reply_chunk(struct evhttp_request *req, + struct evbuffer *databuf); + +/** + Send another data chunk as part of an ongoing chunked reply. + + The reply chunk consists of the data in databuf. After calling + evhttp_send_reply_chunk() databuf will be empty, but the buffer is + still owned by the caller and needs to be deallocated by the caller + if necessary. + + @param req a request object + @param databuf the data chunk to send as part of the reply. + @param cb callback funcion + @param call back's argument. +*/ +EVENT2_EXPORT_SYMBOL +void evhttp_send_reply_chunk_with_cb(struct evhttp_request *, struct evbuffer *, + void (*cb)(struct evhttp_connection *, void *), void *arg); + +/** + Complete a chunked reply, freeing the request as appropriate. + + @param req a request object +*/ +EVENT2_EXPORT_SYMBOL +void evhttp_send_reply_end(struct evhttp_request *req); + +/* + * Interfaces for making requests + */ + +/** The different request types supported by evhttp. These are as specified + * in RFC2616, except for PATCH which is specified by RFC5789. + * + * By default, only some of these methods are accepted and passed to user + * callbacks; use evhttp_set_allowed_methods() to change which methods + * are allowed. + */ +enum evhttp_cmd_type { + EVHTTP_REQ_GET = 1 << 0, + EVHTTP_REQ_POST = 1 << 1, + EVHTTP_REQ_HEAD = 1 << 2, + EVHTTP_REQ_PUT = 1 << 3, + EVHTTP_REQ_DELETE = 1 << 4, + EVHTTP_REQ_OPTIONS = 1 << 5, + EVHTTP_REQ_TRACE = 1 << 6, + EVHTTP_REQ_CONNECT = 1 << 7, + EVHTTP_REQ_PATCH = 1 << 8 +}; + +/** a request object can represent either a request or a reply */ +enum evhttp_request_kind { EVHTTP_REQUEST, EVHTTP_RESPONSE }; + +/** + * Create and return a connection object that can be used to for making HTTP + * requests. The connection object tries to resolve address and establish the + * connection when it is given an http request object. + * + * @param base the event_base to use for handling the connection + * @param dnsbase the dns_base to use for resolving host names; if not + * specified host name resolution will block. + * @param bev a bufferevent to use for connecting to the server; if NULL, a + * socket-based bufferevent will be created. This buffrevent will be freed + * when the connection closes. It must have no fd set on it. + * @param address the address to which to connect + * @param port the port to connect to + * @return an evhttp_connection object that can be used for making requests + */ +EVENT2_EXPORT_SYMBOL +struct evhttp_connection *evhttp_connection_base_bufferevent_new( + struct event_base *base, struct evdns_base *dnsbase, struct bufferevent* bev, const char *address, ev_uint16_t port); + +/** + * Return the bufferevent that an evhttp_connection is using. + */ +EVENT2_EXPORT_SYMBOL +struct bufferevent* evhttp_connection_get_bufferevent(struct evhttp_connection *evcon); + +/** + * Return the HTTP server associated with this connection, or NULL. + */ +EVENT2_EXPORT_SYMBOL +struct evhttp *evhttp_connection_get_server(struct evhttp_connection *evcon); + +/** + * Creates a new request object that needs to be filled in with the request + * parameters. The callback is executed when the request completed or an + * error occurred. + */ +EVENT2_EXPORT_SYMBOL +struct evhttp_request *evhttp_request_new( + void (*cb)(struct evhttp_request *, void *), void *arg); + +/** + * Enable delivery of chunks to requestor. + * @param cb will be called after every read of data with the same argument + * as the completion callback. Will never be called on an empty + * response. May drain the input buffer; it will be drained + * automatically on return. + */ +EVENT2_EXPORT_SYMBOL +void evhttp_request_set_chunked_cb(struct evhttp_request *, + void (*cb)(struct evhttp_request *, void *)); + +/** + * Register callback for additional parsing of request headers. + * @param cb will be called after receiving and parsing the full header. + * It allows analyzing the header and possibly closing the connection + * by returning a value < 0. + */ +EVENT2_EXPORT_SYMBOL +void evhttp_request_set_header_cb(struct evhttp_request *, + int (*cb)(struct evhttp_request *, void *)); + +/** + * The different error types supported by evhttp + * + * @see evhttp_request_set_error_cb() + */ +enum evhttp_request_error { + /** + * Timeout reached, also @see evhttp_connection_set_timeout() + */ + EVREQ_HTTP_TIMEOUT, + /** + * EOF reached + */ + EVREQ_HTTP_EOF, + /** + * Error while reading header, or invalid header + */ + EVREQ_HTTP_INVALID_HEADER, + /** + * Error encountered while reading or writing + */ + EVREQ_HTTP_BUFFER_ERROR, + /** + * The evhttp_cancel_request() called on this request. + */ + EVREQ_HTTP_REQUEST_CANCEL, + /** + * Body is greater then evhttp_connection_set_max_body_size() + */ + EVREQ_HTTP_DATA_TOO_LONG +}; +/** + * Set a callback for errors + * @see evhttp_request_error for error types. + * + * On error, both the error callback and the regular callback will be called, + * error callback is called before the regular callback. + **/ +EVENT2_EXPORT_SYMBOL +void evhttp_request_set_error_cb(struct evhttp_request *, + void (*)(enum evhttp_request_error, void *)); + +/** + * Set a callback to be called on request completion of evhttp_send_* function. + * + * The callback function will be called on the completion of the request after + * the output data has been written and before the evhttp_request object + * is destroyed. This can be useful for tracking resources associated with a + * request (ex: timing metrics). + * + * @param req a request object + * @param cb callback function that will be called on request completion + * @param cb_arg an additional context argument for the callback + */ +EVENT2_EXPORT_SYMBOL +void evhttp_request_set_on_complete_cb(struct evhttp_request *req, + void (*cb)(struct evhttp_request *, void *), void *cb_arg); + +/** Frees the request object and removes associated events. */ +EVENT2_EXPORT_SYMBOL +void evhttp_request_free(struct evhttp_request *req); + +/** + * Create and return a connection object that can be used to for making HTTP + * requests. The connection object tries to resolve address and establish the + * connection when it is given an http request object. + * + * @param base the event_base to use for handling the connection + * @param dnsbase the dns_base to use for resolving host names; if not + * specified host name resolution will block. + * @param address the address to which to connect + * @param port the port to connect to + * @return an evhttp_connection object that can be used for making requests + */ +EVENT2_EXPORT_SYMBOL +struct evhttp_connection *evhttp_connection_base_new( + struct event_base *base, struct evdns_base *dnsbase, + const char *address, ev_uint16_t port); + +/** + * Set family hint for DNS requests. + */ +EVENT2_EXPORT_SYMBOL +void evhttp_connection_set_family(struct evhttp_connection *evcon, + int family); + +/* reuse connection address on retry */ +#define EVHTTP_CON_REUSE_CONNECTED_ADDR 0x0008 +/* Try to read error, since server may already send and close + * connection, but if at that time we have some data to send then we + * can send get EPIPE and fail, while we can read that HTTP error. */ +#define EVHTTP_CON_READ_ON_WRITE_ERROR 0x0010 +/* @see EVHTTP_SERVER_LINGERING_CLOSE */ +#define EVHTTP_CON_LINGERING_CLOSE 0x0020 +/* Padding for public flags, @see EVHTTP_CON_* in http-internal.h */ +#define EVHTTP_CON_PUBLIC_FLAGS_END 0x100000 +/** + * Set connection flags. + * + * @see EVHTTP_CON_* + * @return 0 on success, otherwise non zero (for example if flag doesn't + * supported). + */ +EVENT2_EXPORT_SYMBOL +int evhttp_connection_set_flags(struct evhttp_connection *evcon, + int flags); + +/** Takes ownership of the request object + * + * Can be used in a request callback to keep onto the request until + * evhttp_request_free() is explicitly called by the user. + */ +EVENT2_EXPORT_SYMBOL +void evhttp_request_own(struct evhttp_request *req); + +/** Returns 1 if the request is owned by the user */ +EVENT2_EXPORT_SYMBOL +int evhttp_request_is_owned(struct evhttp_request *req); + +/** + * Returns the connection object associated with the request or NULL + * + * The user needs to either free the request explicitly or call + * evhttp_send_reply_end(). + */ +EVENT2_EXPORT_SYMBOL +struct evhttp_connection *evhttp_request_get_connection(struct evhttp_request *req); + +/** + * Returns the underlying event_base for this connection + */ +EVENT2_EXPORT_SYMBOL +struct event_base *evhttp_connection_get_base(struct evhttp_connection *req); + +EVENT2_EXPORT_SYMBOL +void evhttp_connection_set_max_headers_size(struct evhttp_connection *evcon, + ev_ssize_t new_max_headers_size); + +EVENT2_EXPORT_SYMBOL +void evhttp_connection_set_max_body_size(struct evhttp_connection* evcon, + ev_ssize_t new_max_body_size); + +/** Frees an http connection */ +EVENT2_EXPORT_SYMBOL +void evhttp_connection_free(struct evhttp_connection *evcon); + +/** Disowns a given connection object + * + * Can be used to tell libevent to free the connection object after + * the last request has completed or failed. + */ +EVENT2_EXPORT_SYMBOL +void evhttp_connection_free_on_completion(struct evhttp_connection *evcon); + +/** sets the ip address from which http connections are made */ +EVENT2_EXPORT_SYMBOL +void evhttp_connection_set_local_address(struct evhttp_connection *evcon, + const char *address); + +/** sets the local port from which http connections are made */ +EVENT2_EXPORT_SYMBOL +void evhttp_connection_set_local_port(struct evhttp_connection *evcon, + ev_uint16_t port); + +/** Sets the timeout in seconds for events related to this connection */ +EVENT2_EXPORT_SYMBOL +void evhttp_connection_set_timeout(struct evhttp_connection *evcon, + int timeout_in_secs); + +/** Sets the timeout for events related to this connection. Takes a struct + * timeval. */ +EVENT2_EXPORT_SYMBOL +void evhttp_connection_set_timeout_tv(struct evhttp_connection *evcon, + const struct timeval *tv); + +/** Sets the delay before retrying requests on this connection. This is only + * used if evhttp_connection_set_retries is used to make the number of retries + * at least one. Each retry after the first is twice as long as the one before + * it. */ +EVENT2_EXPORT_SYMBOL +void evhttp_connection_set_initial_retry_tv(struct evhttp_connection *evcon, + const struct timeval *tv); + +/** Sets the retry limit for this connection - -1 repeats indefinitely */ +EVENT2_EXPORT_SYMBOL +void evhttp_connection_set_retries(struct evhttp_connection *evcon, + int retry_max); + +/** Set a callback for connection close. */ +EVENT2_EXPORT_SYMBOL +void evhttp_connection_set_closecb(struct evhttp_connection *evcon, + void (*)(struct evhttp_connection *, void *), void *); + +/** Get the remote address and port associated with this connection. */ +EVENT2_EXPORT_SYMBOL +void evhttp_connection_get_peer(struct evhttp_connection *evcon, + char **address, ev_uint16_t *port); + +/** Get the remote address associated with this connection. + * extracted from getpeername() OR from nameserver. + * + * @return NULL if getpeername() return non success, + * or connection is not connected, + * otherwise it return pointer to struct sockaddr_storage */ +EVENT2_EXPORT_SYMBOL +const struct sockaddr* +evhttp_connection_get_addr(struct evhttp_connection *evcon); + +/** + Make an HTTP request over the specified connection. + + The connection gets ownership of the request. On failure, the + request object is no longer valid as it has been freed. + + @param evcon the evhttp_connection object over which to send the request + @param req the previously created and configured request object + @param type the request type EVHTTP_REQ_GET, EVHTTP_REQ_POST, etc. + @param uri the URI associated with the request + @return 0 on success, -1 on failure + @see evhttp_cancel_request() +*/ +EVENT2_EXPORT_SYMBOL +int evhttp_make_request(struct evhttp_connection *evcon, + struct evhttp_request *req, + enum evhttp_cmd_type type, const char *uri); + +/** + Cancels a pending HTTP request. + + Cancels an ongoing HTTP request. The callback associated with this request + is not executed and the request object is freed. If the request is + currently being processed, e.g. it is ongoing, the corresponding + evhttp_connection object is going to get reset. + + A request cannot be canceled if its callback has executed already. A request + may be canceled reentrantly from its chunked callback. + + @param req the evhttp_request to cancel; req becomes invalid after this call. +*/ +EVENT2_EXPORT_SYMBOL +void evhttp_cancel_request(struct evhttp_request *req); + +/** + * A structure to hold a parsed URI or Relative-Ref conforming to RFC3986. + */ +struct evhttp_uri; + +/** Returns the request URI */ +EVENT2_EXPORT_SYMBOL +const char *evhttp_request_get_uri(const struct evhttp_request *req); +/** Returns the request URI (parsed) */ +EVENT2_EXPORT_SYMBOL +const struct evhttp_uri *evhttp_request_get_evhttp_uri(const struct evhttp_request *req); +/** Returns the request command */ +EVENT2_EXPORT_SYMBOL +enum evhttp_cmd_type evhttp_request_get_command(const struct evhttp_request *req); + +EVENT2_EXPORT_SYMBOL +int evhttp_request_get_response_code(const struct evhttp_request *req); +EVENT2_EXPORT_SYMBOL +const char * evhttp_request_get_response_code_line(const struct evhttp_request *req); + +/** Returns the input headers */ +EVENT2_EXPORT_SYMBOL +struct evkeyvalq *evhttp_request_get_input_headers(struct evhttp_request *req); +/** Returns the output headers */ +EVENT2_EXPORT_SYMBOL +struct evkeyvalq *evhttp_request_get_output_headers(struct evhttp_request *req); +/** Returns the input buffer */ +EVENT2_EXPORT_SYMBOL +struct evbuffer *evhttp_request_get_input_buffer(struct evhttp_request *req); +/** Returns the output buffer */ +EVENT2_EXPORT_SYMBOL +struct evbuffer *evhttp_request_get_output_buffer(struct evhttp_request *req); +/** Returns the host associated with the request. If a client sends an absolute + URI, the host part of that is preferred. Otherwise, the input headers are + searched for a Host: header. NULL is returned if no absolute URI or Host: + header is provided. */ +EVENT2_EXPORT_SYMBOL +const char *evhttp_request_get_host(struct evhttp_request *req); + +/* Interfaces for dealing with HTTP headers */ + +/** + Finds the value belonging to a header. + + @param headers the evkeyvalq object in which to find the header + @param key the name of the header to find + @returns a pointer to the value for the header or NULL if the header + could not be found. + @see evhttp_add_header(), evhttp_remove_header() +*/ +EVENT2_EXPORT_SYMBOL +const char *evhttp_find_header(const struct evkeyvalq *headers, + const char *key); + +/** + Removes a header from a list of existing headers. + + @param headers the evkeyvalq object from which to remove a header + @param key the name of the header to remove + @returns 0 if the header was removed, -1 otherwise. + @see evhttp_find_header(), evhttp_add_header() +*/ +EVENT2_EXPORT_SYMBOL +int evhttp_remove_header(struct evkeyvalq *headers, const char *key); + +/** + Adds a header to a list of existing headers. + + @param headers the evkeyvalq object to which to add a header + @param key the name of the header + @param value the value belonging to the header + @returns 0 on success, -1 otherwise. + @see evhttp_find_header(), evhttp_clear_headers() +*/ +EVENT2_EXPORT_SYMBOL +int evhttp_add_header(struct evkeyvalq *headers, const char *key, const char *value); + +/** + Removes all headers from the header list. + + @param headers the evkeyvalq object from which to remove all headers +*/ +EVENT2_EXPORT_SYMBOL +void evhttp_clear_headers(struct evkeyvalq *headers); + +/* Miscellaneous utility functions */ + + +/** + Helper function to encode a string for inclusion in a URI. All + characters are replaced by their hex-escaped (%22) equivalents, + except for characters explicitly unreserved by RFC3986 -- that is, + ASCII alphanumeric characters, hyphen, dot, underscore, and tilde. + + The returned string must be freed by the caller. + + @param str an unencoded string + @return a newly allocated URI-encoded string or NULL on failure + */ +EVENT2_EXPORT_SYMBOL +char *evhttp_encode_uri(const char *str); + +/** + As evhttp_encode_uri, but if 'size' is nonnegative, treat the string + as being 'size' bytes long. This allows you to encode strings that + may contain 0-valued bytes. + + The returned string must be freed by the caller. + + @param str an unencoded string + @param size the length of the string to encode, or -1 if the string + is NUL-terminated + @param space_to_plus if true, space characters in 'str' are encoded + as +, not %20. + @return a newly allocate URI-encoded string, or NULL on failure. + */ +EVENT2_EXPORT_SYMBOL +char *evhttp_uriencode(const char *str, ev_ssize_t size, int space_to_plus); + +/** + Helper function to sort of decode a URI-encoded string. Unlike + evhttp_get_decoded_uri, it decodes all plus characters that appear + _after_ the first question mark character, but no plusses that occur + before. This is not a good way to decode URIs in whole or in part. + + The returned string must be freed by the caller + + @deprecated This function is deprecated; you probably want to use + evhttp_get_decoded_uri instead. + + @param uri an encoded URI + @return a newly allocated unencoded URI or NULL on failure + */ +EVENT2_EXPORT_SYMBOL +char *evhttp_decode_uri(const char *uri); + +/** + Helper function to decode a URI-escaped string or HTTP parameter. + + If 'decode_plus' is 1, then we decode the string as an HTTP parameter + value, and convert all plus ('+') characters to spaces. If + 'decode_plus' is 0, we leave all plus characters unchanged. + + The returned string must be freed by the caller. + + @param uri a URI-encode encoded URI + @param decode_plus determines whether we convert '+' to space. + @param size_out if size_out is not NULL, *size_out is set to the size of the + returned string + @return a newly allocated unencoded URI or NULL on failure + */ +EVENT2_EXPORT_SYMBOL +char *evhttp_uridecode(const char *uri, int decode_plus, + size_t *size_out); + +/** + Helper function to parse out arguments in a query. + + Parsing a URI like + + http://foo.com/?q=test&s=some+thing + + will result in two entries in the key value queue. + + The first entry is: key="q", value="test" + The second entry is: key="s", value="some thing" + + @deprecated This function is deprecated as of Libevent 2.0.9. Use + evhttp_uri_parse and evhttp_parse_query_str instead. + + @param uri the request URI + @param headers the head of the evkeyval queue + @return 0 on success, -1 on failure + */ +EVENT2_EXPORT_SYMBOL +int evhttp_parse_query(const char *uri, struct evkeyvalq *headers); + +/** + Helper function to parse out arguments from the query portion of an + HTTP URI. + + Parsing a query string like + + q=test&s=some+thing + + will result in two entries in the key value queue. + + The first entry is: key="q", value="test" + The second entry is: key="s", value="some thing" + + @param query_parse the query portion of the URI + @param headers the head of the evkeyval queue + @return 0 on success, -1 on failure + */ +EVENT2_EXPORT_SYMBOL +int evhttp_parse_query_str(const char *uri, struct evkeyvalq *headers); + +/** + * Escape HTML character entities in a string. + * + * Replaces <, >, ", ' and & with <, >, ", + * ' and & correspondingly. + * + * The returned string needs to be freed by the caller. + * + * @param html an unescaped HTML string + * @return an escaped HTML string or NULL on error + */ +EVENT2_EXPORT_SYMBOL +char *evhttp_htmlescape(const char *html); + +/** + * Return a new empty evhttp_uri with no fields set. + */ +EVENT2_EXPORT_SYMBOL +struct evhttp_uri *evhttp_uri_new(void); + +/** + * Changes the flags set on a given URI. See EVHTTP_URI_* for + * a list of flags. + **/ +EVENT2_EXPORT_SYMBOL +void evhttp_uri_set_flags(struct evhttp_uri *uri, unsigned flags); + +/** Return the scheme of an evhttp_uri, or NULL if there is no scheme has + * been set and the evhttp_uri contains a Relative-Ref. */ +EVENT2_EXPORT_SYMBOL +const char *evhttp_uri_get_scheme(const struct evhttp_uri *uri); +/** + * Return the userinfo part of an evhttp_uri, or NULL if it has no userinfo + * set. + */ +EVENT2_EXPORT_SYMBOL +const char *evhttp_uri_get_userinfo(const struct evhttp_uri *uri); +/** + * Return the host part of an evhttp_uri, or NULL if it has no host set. + * The host may either be a regular hostname (conforming to the RFC 3986 + * "regname" production), or an IPv4 address, or the empty string, or a + * bracketed IPv6 address, or a bracketed 'IP-Future' address. + * + * Note that having a NULL host means that the URI has no authority + * section, but having an empty-string host means that the URI has an + * authority section with no host part. For example, + * "mailto:user@example.com" has a host of NULL, but "file:///etc/motd" + * has a host of "". + */ +EVENT2_EXPORT_SYMBOL +const char *evhttp_uri_get_host(const struct evhttp_uri *uri); +/** Return the port part of an evhttp_uri, or -1 if there is no port set. */ +EVENT2_EXPORT_SYMBOL +int evhttp_uri_get_port(const struct evhttp_uri *uri); +/** Return the path part of an evhttp_uri, or NULL if it has no path set */ +EVENT2_EXPORT_SYMBOL +const char *evhttp_uri_get_path(const struct evhttp_uri *uri); +/** Return the query part of an evhttp_uri (excluding the leading "?"), or + * NULL if it has no query set */ +EVENT2_EXPORT_SYMBOL +const char *evhttp_uri_get_query(const struct evhttp_uri *uri); +/** Return the fragment part of an evhttp_uri (excluding the leading "#"), + * or NULL if it has no fragment set */ +EVENT2_EXPORT_SYMBOL +const char *evhttp_uri_get_fragment(const struct evhttp_uri *uri); + +/** Set the scheme of an evhttp_uri, or clear the scheme if scheme==NULL. + * Returns 0 on success, -1 if scheme is not well-formed. */ +EVENT2_EXPORT_SYMBOL +int evhttp_uri_set_scheme(struct evhttp_uri *uri, const char *scheme); +/** Set the userinfo of an evhttp_uri, or clear the userinfo if userinfo==NULL. + * Returns 0 on success, -1 if userinfo is not well-formed. */ +EVENT2_EXPORT_SYMBOL +int evhttp_uri_set_userinfo(struct evhttp_uri *uri, const char *userinfo); +/** Set the host of an evhttp_uri, or clear the host if host==NULL. + * Returns 0 on success, -1 if host is not well-formed. */ +EVENT2_EXPORT_SYMBOL +int evhttp_uri_set_host(struct evhttp_uri *uri, const char *host); +/** Set the port of an evhttp_uri, or clear the port if port==-1. + * Returns 0 on success, -1 if port is not well-formed. */ +EVENT2_EXPORT_SYMBOL +int evhttp_uri_set_port(struct evhttp_uri *uri, int port); +/** Set the path of an evhttp_uri, or clear the path if path==NULL. + * Returns 0 on success, -1 if path is not well-formed. */ +EVENT2_EXPORT_SYMBOL +int evhttp_uri_set_path(struct evhttp_uri *uri, const char *path); +/** Set the query of an evhttp_uri, or clear the query if query==NULL. + * The query should not include a leading "?". + * Returns 0 on success, -1 if query is not well-formed. */ +EVENT2_EXPORT_SYMBOL +int evhttp_uri_set_query(struct evhttp_uri *uri, const char *query); +/** Set the fragment of an evhttp_uri, or clear the fragment if fragment==NULL. + * The fragment should not include a leading "#". + * Returns 0 on success, -1 if fragment is not well-formed. */ +EVENT2_EXPORT_SYMBOL +int evhttp_uri_set_fragment(struct evhttp_uri *uri, const char *fragment); + +/** + * Helper function to parse a URI-Reference as specified by RFC3986. + * + * This function matches the URI-Reference production from RFC3986, + * which includes both URIs like + * + * scheme://[[userinfo]@]foo.com[:port]]/[path][?query][#fragment] + * + * and relative-refs like + * + * [path][?query][#fragment] + * + * Any optional elements portions not present in the original URI are + * left set to NULL in the resulting evhttp_uri. If no port is + * specified, the port is set to -1. + * + * Note that no decoding is performed on percent-escaped characters in + * the string; if you want to parse them, use evhttp_uridecode or + * evhttp_parse_query_str as appropriate. + * + * Note also that most URI schemes will have additional constraints that + * this function does not know about, and cannot check. For example, + * mailto://www.example.com/cgi-bin/fortune.pl is not a reasonable + * mailto url, http://www.example.com:99999/ is not a reasonable HTTP + * URL, and ftp:username@example.com is not a reasonable FTP URL. + * Nevertheless, all of these URLs conform to RFC3986, and this function + * accepts all of them as valid. + * + * @param source_uri the request URI + * @param flags Zero or more EVHTTP_URI_* flags to affect the behavior + * of the parser. + * @return uri container to hold parsed data, or NULL if there is error + * @see evhttp_uri_free() + */ +EVENT2_EXPORT_SYMBOL +struct evhttp_uri *evhttp_uri_parse_with_flags(const char *source_uri, + unsigned flags); + +/** Tolerate URIs that do not conform to RFC3986. + * + * Unfortunately, some HTTP clients generate URIs that, according to RFC3986, + * are not conformant URIs. If you need to support these URIs, you can + * do so by passing this flag to evhttp_uri_parse_with_flags. + * + * Currently, these changes are: + *
    + *
  • Nonconformant URIs are allowed to contain otherwise unreasonable + * characters in their path, query, and fragment components. + *
+ */ +#define EVHTTP_URI_NONCONFORMANT 0x01 + +/** Alias for evhttp_uri_parse_with_flags(source_uri, 0) */ +EVENT2_EXPORT_SYMBOL +struct evhttp_uri *evhttp_uri_parse(const char *source_uri); + +/** + * Free all memory allocated for a parsed uri. Only use this for URIs + * generated by evhttp_uri_parse. + * + * @param uri container with parsed data + * @see evhttp_uri_parse() + */ +EVENT2_EXPORT_SYMBOL +void evhttp_uri_free(struct evhttp_uri *uri); + +/** + * Join together the uri parts from parsed data to form a URI-Reference. + * + * Note that no escaping of reserved characters is done on the members + * of the evhttp_uri, so the generated string might not be a valid URI + * unless the members of evhttp_uri are themselves valid. + * + * @param uri container with parsed data + * @param buf destination buffer + * @param limit destination buffer size + * @return an joined uri as string or NULL on error + * @see evhttp_uri_parse() + */ +EVENT2_EXPORT_SYMBOL +char *evhttp_uri_join(struct evhttp_uri *uri, char *buf, size_t limit); + +#ifdef __cplusplus +} +#endif + +#endif /* EVENT2_HTTP_H_INCLUDED_ */ diff -Nru mysql-5.7-5.7.25/extra/libevent/include/event2/http_struct.h mysql-5.7-5.7.26/extra/libevent/include/event2/http_struct.h --- mysql-5.7-5.7.25/extra/libevent/include/event2/http_struct.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/include/event2/http_struct.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,152 @@ +/* + * Copyright (c) 2000-2007 Niels Provos + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef EVENT2_HTTP_STRUCT_H_INCLUDED_ +#define EVENT2_HTTP_STRUCT_H_INCLUDED_ + +/** @file event2/http_struct.h + + Data structures for http. Using these structures may hurt forward + compatibility with later versions of Libevent: be careful! + + */ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#ifdef EVENT__HAVE_SYS_TYPES_H +#include +#endif +#ifdef EVENT__HAVE_SYS_TIME_H +#include +#endif + +/* For int types. */ +#include + +/** + * the request structure that a server receives. + * WARNING: expect this structure to change. I will try to provide + * reasonable accessors. + */ +struct evhttp_request { +#if defined(TAILQ_ENTRY) + TAILQ_ENTRY(evhttp_request) next; +#else +struct { + struct evhttp_request *tqe_next; + struct evhttp_request **tqe_prev; +} next; +#endif + + /* the connection object that this request belongs to */ + struct evhttp_connection *evcon; + int flags; +/** The request obj owns the evhttp connection and needs to free it */ +#define EVHTTP_REQ_OWN_CONNECTION 0x0001 +/** Request was made via a proxy */ +#define EVHTTP_PROXY_REQUEST 0x0002 +/** The request object is owned by the user; the user must free it */ +#define EVHTTP_USER_OWNED 0x0004 +/** The request will be used again upstack; freeing must be deferred */ +#define EVHTTP_REQ_DEFER_FREE 0x0008 +/** The request should be freed upstack */ +#define EVHTTP_REQ_NEEDS_FREE 0x0010 + + struct evkeyvalq *input_headers; + struct evkeyvalq *output_headers; + + /* address of the remote host and the port connection came from */ + char *remote_host; + ev_uint16_t remote_port; + + /* cache of the hostname for evhttp_request_get_host */ + char *host_cache; + + enum evhttp_request_kind kind; + enum evhttp_cmd_type type; + + size_t headers_size; + size_t body_size; + + char *uri; /* uri after HTTP request was parsed */ + struct evhttp_uri *uri_elems; /* uri elements */ + + char major; /* HTTP Major number */ + char minor; /* HTTP Minor number */ + + int response_code; /* HTTP Response code */ + char *response_code_line; /* Readable response */ + + struct evbuffer *input_buffer; /* read data */ + ev_int64_t ntoread; + unsigned chunked:1, /* a chunked request */ + userdone:1; /* the user has sent all data */ + + struct evbuffer *output_buffer; /* outgoing post or data */ + + /* Callback */ + void (*cb)(struct evhttp_request *, void *); + void *cb_arg; + + /* + * Chunked data callback - call for each completed chunk if + * specified. If not specified, all the data is delivered via + * the regular callback. + */ + void (*chunk_cb)(struct evhttp_request *, void *); + + /* + * Callback added for forked-daapd so they can collect ICY + * (shoutcast) metadata from the http header. If return + * int is negative the connection will be closed. + */ + int (*header_cb)(struct evhttp_request *, void *); + + /* + * Error callback - called when error is occured. + * @see evhttp_request_error for error types. + * + * @see evhttp_request_set_error_cb() + */ + void (*error_cb)(enum evhttp_request_error, void *); + + /* + * Send complete callback - called when the request is actually + * sent and completed. + */ + void (*on_complete_cb)(struct evhttp_request *, void *); + void *on_complete_cb_arg; +}; + +#ifdef __cplusplus +} +#endif + +#endif /* EVENT2_HTTP_STRUCT_H_INCLUDED_ */ + diff -Nru mysql-5.7-5.7.25/extra/libevent/include/event2/keyvalq_struct.h mysql-5.7-5.7.26/extra/libevent/include/event2/keyvalq_struct.h --- mysql-5.7-5.7.25/extra/libevent/include/event2/keyvalq_struct.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/include/event2/keyvalq_struct.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,80 @@ +/* + * Copyright (c) 2000-2007 Niels Provos + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef EVENT2_KEYVALQ_STRUCT_H_INCLUDED_ +#define EVENT2_KEYVALQ_STRUCT_H_INCLUDED_ + +#ifdef __cplusplus +extern "C" { +#endif + +/* Fix so that people don't have to run with */ +/* XXXX This code is duplicated with event_struct.h */ +#ifndef TAILQ_ENTRY +#define EVENT_DEFINED_TQENTRY_ +#define TAILQ_ENTRY(type) \ +struct { \ + struct type *tqe_next; /* next element */ \ + struct type **tqe_prev; /* address of previous next element */ \ +} +#endif /* !TAILQ_ENTRY */ + +#ifndef TAILQ_HEAD +#define EVENT_DEFINED_TQHEAD_ +#define TAILQ_HEAD(name, type) \ +struct name { \ + struct type *tqh_first; \ + struct type **tqh_last; \ +} +#endif + +/* + * Key-Value pairs. Can be used for HTTP headers but also for + * query argument parsing. + */ +struct evkeyval { + TAILQ_ENTRY(evkeyval) next; + + char *key; + char *value; +}; + +TAILQ_HEAD (evkeyvalq, evkeyval); + +/* XXXX This code is duplicated with event_struct.h */ +#ifdef EVENT_DEFINED_TQENTRY_ +#undef TAILQ_ENTRY +#endif + +#ifdef EVENT_DEFINED_TQHEAD_ +#undef TAILQ_HEAD +#endif + +#ifdef __cplusplus +} +#endif + +#endif diff -Nru mysql-5.7-5.7.25/extra/libevent/include/event2/listener.h mysql-5.7-5.7.26/extra/libevent/include/event2/listener.h --- mysql-5.7-5.7.25/extra/libevent/include/event2/listener.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/include/event2/listener.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,180 @@ +/* + * Copyright (c) 2000-2007 Niels Provos + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef EVENT2_LISTENER_H_INCLUDED_ +#define EVENT2_LISTENER_H_INCLUDED_ + +#include + +#ifdef __cplusplus +extern "C" { +#endif + +#include + +struct sockaddr; +struct evconnlistener; + +/** + A callback that we invoke when a listener has a new connection. + + @param listener The evconnlistener + @param fd The new file descriptor + @param addr The source address of the connection + @param socklen The length of addr + @param user_arg the pointer passed to evconnlistener_new() + */ +typedef void (*evconnlistener_cb)(struct evconnlistener *, evutil_socket_t, struct sockaddr *, int socklen, void *); + +/** + A callback that we invoke when a listener encounters a non-retriable error. + + @param listener The evconnlistener + @param user_arg the pointer passed to evconnlistener_new() + */ +typedef void (*evconnlistener_errorcb)(struct evconnlistener *, void *); + +/** Flag: Indicates that we should not make incoming sockets nonblocking + * before passing them to the callback. */ +#define LEV_OPT_LEAVE_SOCKETS_BLOCKING (1u<<0) +/** Flag: Indicates that freeing the listener should close the underlying + * socket. */ +#define LEV_OPT_CLOSE_ON_FREE (1u<<1) +/** Flag: Indicates that we should set the close-on-exec flag, if possible */ +#define LEV_OPT_CLOSE_ON_EXEC (1u<<2) +/** Flag: Indicates that we should disable the timeout (if any) between when + * this socket is closed and when we can listen again on the same port. */ +#define LEV_OPT_REUSEABLE (1u<<3) +/** Flag: Indicates that the listener should be locked so it's safe to use + * from multiple threadcs at once. */ +#define LEV_OPT_THREADSAFE (1u<<4) +/** Flag: Indicates that the listener should be created in disabled + * state. Use evconnlistener_enable() to enable it later. */ +#define LEV_OPT_DISABLED (1u<<5) +/** Flag: Indicates that the listener should defer accept() until data is + * available, if possible. Ignored on platforms that do not support this. + * + * This option can help performance for protocols where the client transmits + * immediately after connecting. Do not use this option if your protocol + * _doesn't_ start out with the client transmitting data, since in that case + * this option will sometimes cause the kernel to never tell you about the + * connection. + * + * This option is only supported by evconnlistener_new_bind(): it can't + * work with evconnlistener_new_fd(), since the listener needs to be told + * to use the option before it is actually bound. + */ +#define LEV_OPT_DEFERRED_ACCEPT (1u<<6) +/** Flag: Indicates that we ask to allow multiple servers (processes or + * threads) to bind to the same port if they each set the option. + * + * SO_REUSEPORT is what most people would expect SO_REUSEADDR to be, however + * SO_REUSEPORT does not imply SO_REUSEADDR. + * + * This is only available on Linux and kernel 3.9+ + */ +#define LEV_OPT_REUSEABLE_PORT (1u<<7) + +/** + Allocate a new evconnlistener object to listen for incoming TCP connections + on a given file descriptor. + + @param base The event base to associate the listener with. + @param cb A callback to be invoked when a new connection arrives. If the + callback is NULL, the listener will be treated as disabled until the + callback is set. + @param ptr A user-supplied pointer to give to the callback. + @param flags Any number of LEV_OPT_* flags + @param backlog Passed to the listen() call to determine the length of the + acceptable connection backlog. Set to -1 for a reasonable default. + Set to 0 if the socket is already listening. + @param fd The file descriptor to listen on. It must be a nonblocking + file descriptor, and it should already be bound to an appropriate + port and address. +*/ +EVENT2_EXPORT_SYMBOL +struct evconnlistener *evconnlistener_new(struct event_base *base, + evconnlistener_cb cb, void *ptr, unsigned flags, int backlog, + evutil_socket_t fd); +/** + Allocate a new evconnlistener object to listen for incoming TCP connections + on a given address. + + @param base The event base to associate the listener with. + @param cb A callback to be invoked when a new connection arrives. If the + callback is NULL, the listener will be treated as disabled until the + callback is set. + @param ptr A user-supplied pointer to give to the callback. + @param flags Any number of LEV_OPT_* flags + @param backlog Passed to the listen() call to determine the length of the + acceptable connection backlog. Set to -1 for a reasonable default. + @param addr The address to listen for connections on. + @param socklen The length of the address. + */ +EVENT2_EXPORT_SYMBOL +struct evconnlistener *evconnlistener_new_bind(struct event_base *base, + evconnlistener_cb cb, void *ptr, unsigned flags, int backlog, + const struct sockaddr *sa, int socklen); +/** + Disable and deallocate an evconnlistener. + */ +EVENT2_EXPORT_SYMBOL +void evconnlistener_free(struct evconnlistener *lev); +/** + Re-enable an evconnlistener that has been disabled. + */ +EVENT2_EXPORT_SYMBOL +int evconnlistener_enable(struct evconnlistener *lev); +/** + Stop listening for connections on an evconnlistener. + */ +EVENT2_EXPORT_SYMBOL +int evconnlistener_disable(struct evconnlistener *lev); + +/** Return an evconnlistener's associated event_base. */ +EVENT2_EXPORT_SYMBOL +struct event_base *evconnlistener_get_base(struct evconnlistener *lev); + +/** Return the socket that an evconnlistner is listening on. */ +EVENT2_EXPORT_SYMBOL +evutil_socket_t evconnlistener_get_fd(struct evconnlistener *lev); + +/** Change the callback on the listener to cb and its user_data to arg. + */ +EVENT2_EXPORT_SYMBOL +void evconnlistener_set_cb(struct evconnlistener *lev, + evconnlistener_cb cb, void *arg); + +/** Set an evconnlistener's error callback. */ +EVENT2_EXPORT_SYMBOL +void evconnlistener_set_error_cb(struct evconnlistener *lev, + evconnlistener_errorcb errorcb); + +#ifdef __cplusplus +} +#endif + +#endif diff -Nru mysql-5.7-5.7.25/extra/libevent/include/event2/rpc_compat.h mysql-5.7-5.7.26/extra/libevent/include/event2/rpc_compat.h --- mysql-5.7-5.7.25/extra/libevent/include/event2/rpc_compat.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/include/event2/rpc_compat.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,61 @@ +/* + * Copyright (c) 2006-2007 Niels Provos + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef EVENT2_RPC_COMPAT_H_INCLUDED_ +#define EVENT2_RPC_COMPAT_H_INCLUDED_ + +/** @file event2/rpc_compat.h + + Deprecated versions of the functions in rpc.h: provided only for + backwards compatibility. + + */ + +#ifdef __cplusplus +extern "C" { +#endif + +/** backwards compatible accessors that work only with gcc */ +#if defined(__GNUC__) && !defined(__STRICT_ANSI__) + +#undef EVTAG_ASSIGN +#undef EVTAG_GET +#undef EVTAG_ADD + +#define EVTAG_ASSIGN(msg, member, args...) \ + (*(msg)->base->member##_assign)(msg, ## args) +#define EVTAG_GET(msg, member, args...) \ + (*(msg)->base->member##_get)(msg, ## args) +#define EVTAG_ADD(msg, member, args...) \ + (*(msg)->base->member##_add)(msg, ## args) +#endif +#define EVTAG_LEN(msg, member) ((msg)->member##_length) + +#ifdef __cplusplus +} +#endif + +#endif /* EVENT2_EVENT_COMPAT_H_INCLUDED_ */ diff -Nru mysql-5.7-5.7.25/extra/libevent/include/event2/rpc.h mysql-5.7-5.7.26/extra/libevent/include/event2/rpc.h --- mysql-5.7-5.7.25/extra/libevent/include/event2/rpc.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/include/event2/rpc.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,596 @@ +/* + * Copyright (c) 2006-2007 Niels Provos + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef EVENT2_RPC_H_INCLUDED_ +#define EVENT2_RPC_H_INCLUDED_ + +#ifdef __cplusplus +extern "C" { +#endif + +/** @file rpc.h + * + * This header files provides basic support for an RPC server and client. + * + * To support RPCs in a server, every supported RPC command needs to be + * defined and registered. + * + * EVRPC_HEADER(SendCommand, Request, Reply); + * + * SendCommand is the name of the RPC command. + * Request is the name of a structure generated by event_rpcgen.py. + * It contains all parameters relating to the SendCommand RPC. The + * server needs to fill in the Reply structure. + * Reply is the name of a structure generated by event_rpcgen.py. It + * contains the answer to the RPC. + * + * To register an RPC with an HTTP server, you need to first create an RPC + * base with: + * + * struct evrpc_base *base = evrpc_init(http); + * + * A specific RPC can then be registered with + * + * EVRPC_REGISTER(base, SendCommand, Request, Reply, FunctionCB, arg); + * + * when the server receives an appropriately formatted RPC, the user callback + * is invoked. The callback needs to fill in the reply structure. + * + * void FunctionCB(EVRPC_STRUCT(SendCommand)* rpc, void *arg); + * + * To send the reply, call EVRPC_REQUEST_DONE(rpc); + * + * See the regression test for an example. + */ + +/** + Determines if the member has been set in the message + + @param msg the message to inspect + @param member the member variable to test for presences + @return 1 if it's present or 0 otherwise. +*/ +#define EVTAG_HAS(msg, member) \ + ((msg)->member##_set == 1) + +#ifndef EVENT2_RPC_COMPAT_H_INCLUDED_ + +/** + Assigns a value to the member in the message. + + @param msg the message to which to assign a value + @param member the name of the member variable + @param value the value to assign +*/ +#define EVTAG_ASSIGN(msg, member, value) \ + (*(msg)->base->member##_assign)((msg), (value)) +/** + Assigns a value to the member in the message. + + @param msg the message to which to assign a value + @param member the name of the member variable + @param value the value to assign + @param len the length of the value +*/ +#define EVTAG_ASSIGN_WITH_LEN(msg, member, value, len) \ + (*(msg)->base->member##_assign)((msg), (value), (len)) +/** + Returns the value for a member. + + @param msg the message from which to get the value + @param member the name of the member variable + @param pvalue a pointer to the variable to hold the value + @return 0 on success, -1 otherwise. +*/ +#define EVTAG_GET(msg, member, pvalue) \ + (*(msg)->base->member##_get)((msg), (pvalue)) +/** + Returns the value for a member. + + @param msg the message from which to get the value + @param member the name of the member variable + @param pvalue a pointer to the variable to hold the value + @param plen a pointer to the length of the value + @return 0 on success, -1 otherwise. +*/ +#define EVTAG_GET_WITH_LEN(msg, member, pvalue, plen) \ + (*(msg)->base->member##_get)((msg), (pvalue), (plen)) + +#endif /* EVENT2_RPC_COMPAT_H_INCLUDED_ */ + +/** + Adds a value to an array. +*/ +#define EVTAG_ARRAY_ADD_VALUE(msg, member, value) \ + (*(msg)->base->member##_add)((msg), (value)) +/** + Allocates a new entry in the array and returns it. +*/ +#define EVTAG_ARRAY_ADD(msg, member) \ + (*(msg)->base->member##_add)(msg) +/** + Gets a variable at the specified offset from the array. +*/ +#define EVTAG_ARRAY_GET(msg, member, offset, pvalue) \ + (*(msg)->base->member##_get)((msg), (offset), (pvalue)) +/** + Returns the number of entries in the array. +*/ +#define EVTAG_ARRAY_LEN(msg, member) ((msg)->member##_length) + + +struct evbuffer; +struct event_base; +struct evrpc_req_generic; +struct evrpc_request_wrapper; +struct evrpc; + +/** The type of a specific RPC Message + * + * @param rpcname the name of the RPC message + */ +#define EVRPC_STRUCT(rpcname) struct evrpc_req__##rpcname + +struct evhttp_request; +struct evrpc_status; +struct evrpc_hook_meta; + +/** Creates the definitions and prototypes for an RPC + * + * You need to use EVRPC_HEADER to create structures and function prototypes + * needed by the server and client implementation. The structures have to be + * defined in an .rpc file and converted to source code via event_rpcgen.py + * + * @param rpcname the name of the RPC + * @param reqstruct the name of the RPC request structure + * @param replystruct the name of the RPC reply structure + * @see EVRPC_GENERATE() + */ +#define EVRPC_HEADER(rpcname, reqstruct, rplystruct) \ +EVRPC_STRUCT(rpcname) { \ + struct evrpc_hook_meta *hook_meta; \ + struct reqstruct* request; \ + struct rplystruct* reply; \ + struct evrpc* rpc; \ + struct evhttp_request* http_req; \ + struct evbuffer* rpc_data; \ +}; \ +int evrpc_send_request_##rpcname(struct evrpc_pool *, \ + struct reqstruct *, struct rplystruct *, \ + void (*)(struct evrpc_status *, \ + struct reqstruct *, struct rplystruct *, void *cbarg), \ + void *); + +struct evrpc_pool; + +/** use EVRPC_GENERATE instead */ +struct evrpc_request_wrapper *evrpc_make_request_ctx( + struct evrpc_pool *pool, void *request, void *reply, + const char *rpcname, + void (*req_marshal)(struct evbuffer*, void *), + void (*rpl_clear)(void *), + int (*rpl_unmarshal)(void *, struct evbuffer *), + void (*cb)(struct evrpc_status *, void *, void *, void *), + void *cbarg); + +/** Creates a context structure that contains rpc specific information. + * + * EVRPC_MAKE_CTX is used to populate a RPC specific context that + * contains information about marshaling the RPC data types. + * + * @param rpcname the name of the RPC + * @param reqstruct the name of the RPC request structure + * @param replystruct the name of the RPC reply structure + * @param pool the evrpc_pool over which to make the request + * @param request a pointer to the RPC request structure object + * @param reply a pointer to the RPC reply structure object + * @param cb the callback function to call when the RPC has completed + * @param cbarg the argument to supply to the callback + */ +#define EVRPC_MAKE_CTX(rpcname, reqstruct, rplystruct, \ + pool, request, reply, cb, cbarg) \ + evrpc_make_request_ctx(pool, request, reply, \ + #rpcname, \ + (void (*)(struct evbuffer *, void *))reqstruct##_marshal, \ + (void (*)(void *))rplystruct##_clear, \ + (int (*)(void *, struct evbuffer *))rplystruct##_unmarshal, \ + (void (*)(struct evrpc_status *, void *, void *, void *))cb, \ + cbarg) + +/** Generates the code for receiving and sending an RPC message + * + * EVRPC_GENERATE is used to create the code corresponding to sending + * and receiving a particular RPC message + * + * @param rpcname the name of the RPC + * @param reqstruct the name of the RPC request structure + * @param replystruct the name of the RPC reply structure + * @see EVRPC_HEADER() + */ +#define EVRPC_GENERATE(rpcname, reqstruct, rplystruct) \ + int evrpc_send_request_##rpcname(struct evrpc_pool *pool, \ + struct reqstruct *request, struct rplystruct *reply, \ + void (*cb)(struct evrpc_status *, \ + struct reqstruct *, struct rplystruct *, void *cbarg), \ + void *cbarg) { \ + return evrpc_send_request_generic(pool, request, reply, \ + (void (*)(struct evrpc_status *, void *, void *, void *))cb, \ + cbarg, \ + #rpcname, \ + (void (*)(struct evbuffer *, void *))reqstruct##_marshal, \ + (void (*)(void *))rplystruct##_clear, \ + (int (*)(void *, struct evbuffer *))rplystruct##_unmarshal); \ +} + +/** Provides access to the HTTP request object underlying an RPC + * + * Access to the underlying http object; can be used to look at headers or + * for getting the remote ip address + * + * @param rpc_req the rpc request structure provided to the server callback + * @return an struct evhttp_request object that can be inspected for + * HTTP headers or sender information. + */ +#define EVRPC_REQUEST_HTTP(rpc_req) (rpc_req)->http_req + +/** completes the server response to an rpc request */ +void evrpc_request_done(struct evrpc_req_generic *req); + +/** accessors for request and reply */ +void *evrpc_get_request(struct evrpc_req_generic *req); +void *evrpc_get_reply(struct evrpc_req_generic *req); + +/** Creates the reply to an RPC request + * + * EVRPC_REQUEST_DONE is used to answer a request; the reply is expected + * to have been filled in. The request and reply pointers become invalid + * after this call has finished. + * + * @param rpc_req the rpc request structure provided to the server callback + */ +#define EVRPC_REQUEST_DONE(rpc_req) do { \ + struct evrpc_req_generic *req_ = (struct evrpc_req_generic *)(rpc_req); \ + evrpc_request_done(req_); \ +} while (0) + + +struct evrpc_base; +struct evhttp; + +/* functions to start up the rpc system */ + +/** Creates a new rpc base from which RPC requests can be received + * + * @param server a pointer to an existing HTTP server + * @return a newly allocated evrpc_base struct + * @see evrpc_free() + */ +struct evrpc_base *evrpc_init(struct evhttp *server); + +/** + * Frees the evrpc base + * + * For now, you are responsible for making sure that no rpcs are ongoing. + * + * @param base the evrpc_base object to be freed + * @see evrpc_init + */ +void evrpc_free(struct evrpc_base *base); + +/** register RPCs with the HTTP Server + * + * registers a new RPC with the HTTP server, each RPC needs to have + * a unique name under which it can be identified. + * + * @param base the evrpc_base structure in which the RPC should be + * registered. + * @param name the name of the RPC + * @param request the name of the RPC request structure + * @param reply the name of the RPC reply structure + * @param callback the callback that should be invoked when the RPC + * is received. The callback has the following prototype + * void (*callback)(EVRPC_STRUCT(Message)* rpc, void *arg) + * @param cbarg an additional parameter that can be passed to the callback. + * The parameter can be used to carry around state. + */ +#define EVRPC_REGISTER(base, name, request, reply, callback, cbarg) \ + evrpc_register_generic(base, #name, \ + (void (*)(struct evrpc_req_generic *, void *))callback, cbarg, \ + (void *(*)(void *))request##_new, NULL, \ + (void (*)(void *))request##_free, \ + (int (*)(void *, struct evbuffer *))request##_unmarshal, \ + (void *(*)(void *))reply##_new, NULL, \ + (void (*)(void *))reply##_free, \ + (int (*)(void *))reply##_complete, \ + (void (*)(struct evbuffer *, void *))reply##_marshal) + +/** + Low level function for registering an RPC with a server. + + Use EVRPC_REGISTER() instead. + + @see EVRPC_REGISTER() +*/ +int evrpc_register_rpc(struct evrpc_base *, struct evrpc *, + void (*)(struct evrpc_req_generic*, void *), void *); + +/** + * Unregisters an already registered RPC + * + * @param base the evrpc_base object from which to unregister an RPC + * @param name the name of the rpc to unregister + * @return -1 on error or 0 when successful. + * @see EVRPC_REGISTER() + */ +#define EVRPC_UNREGISTER(base, name) evrpc_unregister_rpc((base), #name) + +int evrpc_unregister_rpc(struct evrpc_base *base, const char *name); + +/* + * Client-side RPC support + */ + +struct evhttp_connection; +struct evrpc_status; + +/** launches an RPC and sends it to the server + * + * EVRPC_MAKE_REQUEST() is used by the client to send an RPC to the server. + * + * @param name the name of the RPC + * @param pool the evrpc_pool that contains the connection objects over which + * the request should be sent. + * @param request a pointer to the RPC request structure - it contains the + * data to be sent to the server. + * @param reply a pointer to the RPC reply structure. It is going to be filled + * if the request was answered successfully + * @param cb the callback to invoke when the RPC request has been answered + * @param cbarg an additional argument to be passed to the client + * @return 0 on success, -1 on failure + */ +#define EVRPC_MAKE_REQUEST(name, pool, request, reply, cb, cbarg) \ + evrpc_send_request_##name((pool), (request), (reply), (cb), (cbarg)) + +/** + Makes an RPC request based on the provided context. + + This is a low-level function and should not be used directly + unless a custom context object is provided. Use EVRPC_MAKE_REQUEST() + instead. + + @param ctx a context from EVRPC_MAKE_CTX() + @returns 0 on success, -1 otherwise. + @see EVRPC_MAKE_REQUEST(), EVRPC_MAKE_CTX() +*/ +int evrpc_make_request(struct evrpc_request_wrapper *ctx); + +/** creates an rpc connection pool + * + * a pool has a number of connections associated with it. + * rpc requests are always made via a pool. + * + * @param base a pointer to an struct event_based object; can be left NULL + * in singled-threaded applications + * @return a newly allocated struct evrpc_pool object + * @see evrpc_pool_free() + */ +struct evrpc_pool *evrpc_pool_new(struct event_base *base); +/** frees an rpc connection pool + * + * @param pool a pointer to an evrpc_pool allocated via evrpc_pool_new() + * @see evrpc_pool_new() + */ +void evrpc_pool_free(struct evrpc_pool *pool); + +/** + * Adds a connection over which rpc can be dispatched to the pool. + * + * The connection object must have been newly created. + * + * @param pool the pool to which to add the connection + * @param evcon the connection to add to the pool. + */ +void evrpc_pool_add_connection(struct evrpc_pool *pool, + struct evhttp_connection *evcon); + +/** + * Removes a connection from the pool. + * + * The connection object must have been newly created. + * + * @param pool the pool from which to remove the connection + * @param evcon the connection to remove from the pool. + */ +void evrpc_pool_remove_connection(struct evrpc_pool *pool, + struct evhttp_connection *evcon); + +/** + * Sets the timeout in secs after which a request has to complete. The + * RPC is completely aborted if it does not complete by then. Setting + * the timeout to 0 means that it never timeouts and can be used to + * implement callback type RPCs. + * + * Any connection already in the pool will be updated with the new + * timeout. Connections added to the pool after set_timeout has be + * called receive the pool timeout only if no timeout has been set + * for the connection itself. + * + * @param pool a pointer to a struct evrpc_pool object + * @param timeout_in_secs the number of seconds after which a request should + * timeout and a failure be returned to the callback. + */ +void evrpc_pool_set_timeout(struct evrpc_pool *pool, int timeout_in_secs); + +/** + * Hooks for changing the input and output of RPCs; this can be used to + * implement compression, authentication, encryption, ... + */ + +enum EVRPC_HOOK_TYPE { + EVRPC_INPUT, /**< apply the function to an input hook */ + EVRPC_OUTPUT /**< apply the function to an output hook */ +}; + +#ifndef _WIN32 +/** Deprecated alias for EVRPC_INPUT. Not available on windows, where it + * conflicts with platform headers. */ +#define INPUT EVRPC_INPUT +/** Deprecated alias for EVRPC_OUTPUT. Not available on windows, where it + * conflicts with platform headers. */ +#define OUTPUT EVRPC_OUTPUT +#endif + +/** + * Return value from hook processing functions + */ + +enum EVRPC_HOOK_RESULT { + EVRPC_TERMINATE = -1, /**< indicates the rpc should be terminated */ + EVRPC_CONTINUE = 0, /**< continue processing the rpc */ + EVRPC_PAUSE = 1 /**< pause processing request until resumed */ +}; + +/** adds a processing hook to either an rpc base or rpc pool + * + * If a hook returns TERMINATE, the processing is aborted. On CONTINUE, + * the request is immediately processed after the hook returns. If the + * hook returns PAUSE, request processing stops until evrpc_resume_request() + * has been called. + * + * The add functions return handles that can be used for removing hooks. + * + * @param vbase a pointer to either struct evrpc_base or struct evrpc_pool + * @param hook_type either INPUT or OUTPUT + * @param cb the callback to call when the hook is activated + * @param cb_arg an additional argument for the callback + * @return a handle to the hook so it can be removed later + * @see evrpc_remove_hook() + */ +void *evrpc_add_hook(void *vbase, + enum EVRPC_HOOK_TYPE hook_type, + int (*cb)(void *, struct evhttp_request *, struct evbuffer *, void *), + void *cb_arg); + +/** removes a previously added hook + * + * @param vbase a pointer to either struct evrpc_base or struct evrpc_pool + * @param hook_type either INPUT or OUTPUT + * @param handle a handle returned by evrpc_add_hook() + * @return 1 on success or 0 on failure + * @see evrpc_add_hook() + */ +int evrpc_remove_hook(void *vbase, + enum EVRPC_HOOK_TYPE hook_type, + void *handle); + +/** resume a paused request + * + * @param vbase a pointer to either struct evrpc_base or struct evrpc_pool + * @param ctx the context pointer provided to the original hook call + */ +int +evrpc_resume_request(void *vbase, void *ctx, enum EVRPC_HOOK_RESULT res); + +/** adds meta data to request + * + * evrpc_hook_add_meta() allows hooks to add meta data to a request. for + * a client request, the meta data can be inserted by an outgoing request hook + * and retrieved by the incoming request hook. + * + * @param ctx the context provided to the hook call + * @param key a NUL-terminated c-string + * @param data the data to be associated with the key + * @param data_size the size of the data + */ +void evrpc_hook_add_meta(void *ctx, const char *key, + const void *data, size_t data_size); + +/** retrieves meta data previously associated + * + * evrpc_hook_find_meta() can be used to retrieve meta data associated to a + * request by a previous hook. + * @param ctx the context provided to the hook call + * @param key a NUL-terminated c-string + * @param data pointer to a data pointer that will contain the retrieved data + * @param data_size pointer to the size of the data + * @return 0 on success or -1 on failure + */ +int evrpc_hook_find_meta(void *ctx, const char *key, + void **data, size_t *data_size); + +/** + * returns the connection object associated with the request + * + * @param ctx the context provided to the hook call + * @return a pointer to the evhttp_connection object + */ +struct evhttp_connection *evrpc_hook_get_connection(void *ctx); + +/** + Function for sending a generic RPC request. + + Do not call this function directly, use EVRPC_MAKE_REQUEST() instead. + + @see EVRPC_MAKE_REQUEST() + */ +int evrpc_send_request_generic(struct evrpc_pool *pool, + void *request, void *reply, + void (*cb)(struct evrpc_status *, void *, void *, void *), + void *cb_arg, + const char *rpcname, + void (*req_marshal)(struct evbuffer *, void *), + void (*rpl_clear)(void *), + int (*rpl_unmarshal)(void *, struct evbuffer *)); + +/** + Function for registering a generic RPC with the RPC base. + + Do not call this function directly, use EVRPC_REGISTER() instead. + + @see EVRPC_REGISTER() + */ +int +evrpc_register_generic(struct evrpc_base *base, const char *name, + void (*callback)(struct evrpc_req_generic *, void *), void *cbarg, + void *(*req_new)(void *), void *req_new_arg, void (*req_free)(void *), + int (*req_unmarshal)(void *, struct evbuffer *), + void *(*rpl_new)(void *), void *rpl_new_arg, void (*rpl_free)(void *), + int (*rpl_complete)(void *), + void (*rpl_marshal)(struct evbuffer *, void *)); + +/** accessors for obscure and undocumented functionality */ +struct evrpc_pool* evrpc_request_get_pool(struct evrpc_request_wrapper *ctx); +void evrpc_request_set_pool(struct evrpc_request_wrapper *ctx, + struct evrpc_pool *pool); +void evrpc_request_set_cb(struct evrpc_request_wrapper *ctx, + void (*cb)(struct evrpc_status*, void *request, void *reply, void *arg), + void *cb_arg); + +#ifdef __cplusplus +} +#endif + +#endif /* EVENT2_RPC_H_INCLUDED_ */ diff -Nru mysql-5.7-5.7.25/extra/libevent/include/event2/rpc_struct.h mysql-5.7-5.7.26/extra/libevent/include/event2/rpc_struct.h --- mysql-5.7-5.7.25/extra/libevent/include/event2/rpc_struct.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/include/event2/rpc_struct.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,100 @@ +/* + * Copyright (c) 2006-2007 Niels Provos + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef EVENT2_RPC_STRUCT_H_INCLUDED_ +#define EVENT2_RPC_STRUCT_H_INCLUDED_ + +#ifdef __cplusplus +extern "C" { +#endif + +/** @file event2/rpc_struct.h + + Structures used by rpc.h. Using these structures directly may harm + forward compatibility: be careful! + + */ + +/** + * provides information about the completed RPC request. + */ +struct evrpc_status { +#define EVRPC_STATUS_ERR_NONE 0 +#define EVRPC_STATUS_ERR_TIMEOUT 1 +#define EVRPC_STATUS_ERR_BADPAYLOAD 2 +#define EVRPC_STATUS_ERR_UNSTARTED 3 +#define EVRPC_STATUS_ERR_HOOKABORTED 4 + int error; + + /* for looking at headers or other information */ + struct evhttp_request *http_req; +}; + +/* the structure below needs to be synchronized with evrpc_req_generic */ + +/* Encapsulates a request */ +struct evrpc { + TAILQ_ENTRY(evrpc) next; + + /* the URI at which the request handler lives */ + const char* uri; + + /* creates a new request structure */ + void *(*request_new)(void *); + void *request_new_arg; + + /* frees the request structure */ + void (*request_free)(void *); + + /* unmarshals the buffer into the proper request structure */ + int (*request_unmarshal)(void *, struct evbuffer *); + + /* creates a new reply structure */ + void *(*reply_new)(void *); + void *reply_new_arg; + + /* frees the reply structure */ + void (*reply_free)(void *); + + /* verifies that the reply is valid */ + int (*reply_complete)(void *); + + /* marshals the reply into a buffer */ + void (*reply_marshal)(struct evbuffer*, void *); + + /* the callback invoked for each received rpc */ + void (*cb)(struct evrpc_req_generic *, void *); + void *cb_arg; + + /* reference for further configuration */ + struct evrpc_base *base; +}; + +#ifdef __cplusplus +} +#endif + +#endif /* EVENT2_RPC_STRUCT_H_INCLUDED_ */ diff -Nru mysql-5.7-5.7.25/extra/libevent/include/event2/tag_compat.h mysql-5.7-5.7.26/extra/libevent/include/event2/tag_compat.h --- mysql-5.7-5.7.25/extra/libevent/include/event2/tag_compat.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/include/event2/tag_compat.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,49 @@ +/* + * Copyright (c) 2000-2007 Niels Provos + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef EVENT2_TAG_COMPAT_H_INCLUDED_ +#define EVENT2_TAG_COMPAT_H_INCLUDED_ + +/** @file event2/tag_compat.h + + Obsolete/deprecated functions from tag.h; provided only for backwards + compatibility. + */ + +/** + @name Misnamed functions + + @deprecated These macros are deprecated because their names don't follow + Libevent's naming conventions. Use evtag_encode_int and + evtag_encode_int64 instead. + + @{ +*/ +#define encode_int(evbuf, number) evtag_encode_int((evbuf), (number)) +#define encode_int64(evbuf, number) evtag_encode_int64((evbuf), (number)) +/**@}*/ + +#endif /* EVENT2_TAG_H_INCLUDED_ */ diff -Nru mysql-5.7-5.7.25/extra/libevent/include/event2/tag.h mysql-5.7-5.7.26/extra/libevent/include/event2/tag.h --- mysql-5.7-5.7.25/extra/libevent/include/event2/tag.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/include/event2/tag.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,146 @@ +/* + * Copyright (c) 2000-2007 Niels Provos + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef EVENT2_TAG_H_INCLUDED_ +#define EVENT2_TAG_H_INCLUDED_ + +/** @file event2/tag.h + + Helper functions for reading and writing tagged data onto buffers. + + */ + +#include + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#ifdef EVENT__HAVE_SYS_TYPES_H +#include +#endif +#ifdef EVENT__HAVE_SYS_TIME_H +#include +#endif + +/* For int types. */ +#include + +struct evbuffer; + +/* + * Marshaling tagged data - We assume that all tags are inserted in their + * numeric order - so that unknown tags will always be higher than the + * known ones - and we can just ignore the end of an event buffer. + */ + +EVENT2_EXPORT_SYMBOL +void evtag_init(void); + +/** + Unmarshals the header and returns the length of the payload + + @param evbuf the buffer from which to unmarshal data + @param ptag a pointer in which the tag id is being stored + @returns -1 on failure or the number of bytes in the remaining payload. +*/ +EVENT2_EXPORT_SYMBOL +int evtag_unmarshal_header(struct evbuffer *evbuf, ev_uint32_t *ptag); + +EVENT2_EXPORT_SYMBOL +void evtag_marshal(struct evbuffer *evbuf, ev_uint32_t tag, const void *data, + ev_uint32_t len); +EVENT2_EXPORT_SYMBOL +void evtag_marshal_buffer(struct evbuffer *evbuf, ev_uint32_t tag, + struct evbuffer *data); + +/** + Encode an integer and store it in an evbuffer. + + We encode integers by nybbles; the first nibble contains the number + of significant nibbles - 1; this allows us to encode up to 64-bit + integers. This function is byte-order independent. + + @param evbuf evbuffer to store the encoded number + @param number a 32-bit integer + */ +EVENT2_EXPORT_SYMBOL +void evtag_encode_int(struct evbuffer *evbuf, ev_uint32_t number); +EVENT2_EXPORT_SYMBOL +void evtag_encode_int64(struct evbuffer *evbuf, ev_uint64_t number); + +EVENT2_EXPORT_SYMBOL +void evtag_marshal_int(struct evbuffer *evbuf, ev_uint32_t tag, + ev_uint32_t integer); +EVENT2_EXPORT_SYMBOL +void evtag_marshal_int64(struct evbuffer *evbuf, ev_uint32_t tag, + ev_uint64_t integer); + +EVENT2_EXPORT_SYMBOL +void evtag_marshal_string(struct evbuffer *buf, ev_uint32_t tag, + const char *string); + +EVENT2_EXPORT_SYMBOL +void evtag_marshal_timeval(struct evbuffer *evbuf, ev_uint32_t tag, + struct timeval *tv); + +EVENT2_EXPORT_SYMBOL +int evtag_unmarshal(struct evbuffer *src, ev_uint32_t *ptag, + struct evbuffer *dst); +EVENT2_EXPORT_SYMBOL +int evtag_peek(struct evbuffer *evbuf, ev_uint32_t *ptag); +EVENT2_EXPORT_SYMBOL +int evtag_peek_length(struct evbuffer *evbuf, ev_uint32_t *plength); +EVENT2_EXPORT_SYMBOL +int evtag_payload_length(struct evbuffer *evbuf, ev_uint32_t *plength); +EVENT2_EXPORT_SYMBOL +int evtag_consume(struct evbuffer *evbuf); + +EVENT2_EXPORT_SYMBOL +int evtag_unmarshal_int(struct evbuffer *evbuf, ev_uint32_t need_tag, + ev_uint32_t *pinteger); +EVENT2_EXPORT_SYMBOL +int evtag_unmarshal_int64(struct evbuffer *evbuf, ev_uint32_t need_tag, + ev_uint64_t *pinteger); + +EVENT2_EXPORT_SYMBOL +int evtag_unmarshal_fixed(struct evbuffer *src, ev_uint32_t need_tag, + void *data, size_t len); + +EVENT2_EXPORT_SYMBOL +int evtag_unmarshal_string(struct evbuffer *evbuf, ev_uint32_t need_tag, + char **pstring); + +EVENT2_EXPORT_SYMBOL +int evtag_unmarshal_timeval(struct evbuffer *evbuf, ev_uint32_t need_tag, + struct timeval *ptv); + +#ifdef __cplusplus +} +#endif + +#endif /* EVENT2_TAG_H_INCLUDED_ */ diff -Nru mysql-5.7-5.7.25/extra/libevent/include/event2/thread.h mysql-5.7-5.7.26/extra/libevent/include/event2/thread.h --- mysql-5.7-5.7.25/extra/libevent/include/event2/thread.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/include/event2/thread.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,253 @@ +/* + * Copyright (c) 2008-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef EVENT2_THREAD_H_INCLUDED_ +#define EVENT2_THREAD_H_INCLUDED_ + +/** @file event2/thread.h + + Functions for multi-threaded applications using Libevent. + + When using a multi-threaded application in which multiple threads + add and delete events from a single event base, Libevent needs to + lock its data structures. + + Like the memory-management function hooks, all of the threading functions + _must_ be set up before an event_base is created if you want the base to + use them. + + Most programs will either be using Windows threads or Posix threads. You + can configure Libevent to use one of these event_use_windows_threads() or + event_use_pthreads() respectively. If you're using another threading + library, you'll need to configure threading functions manually using + evthread_set_lock_callbacks() and evthread_set_condition_callbacks(). + + */ + +#include + +#ifdef __cplusplus +extern "C" { +#endif + +#include + +/** + @name Flags passed to lock functions + + @{ +*/ +/** A flag passed to a locking callback when the lock was allocated as a + * read-write lock, and we want to acquire or release the lock for writing. */ +#define EVTHREAD_WRITE 0x04 +/** A flag passed to a locking callback when the lock was allocated as a + * read-write lock, and we want to acquire or release the lock for reading. */ +#define EVTHREAD_READ 0x08 +/** A flag passed to a locking callback when we don't want to block waiting + * for the lock; if we can't get the lock immediately, we will instead + * return nonzero from the locking callback. */ +#define EVTHREAD_TRY 0x10 +/**@}*/ + +#if !defined(EVENT__DISABLE_THREAD_SUPPORT) || defined(EVENT_IN_DOXYGEN_) + +#define EVTHREAD_LOCK_API_VERSION 1 + +/** + @name Types of locks + + @{*/ +/** A recursive lock is one that can be acquired multiple times at once by the + * same thread. No other process can allocate the lock until the thread that + * has been holding it has unlocked it as many times as it locked it. */ +#define EVTHREAD_LOCKTYPE_RECURSIVE 1 +/* A read-write lock is one that allows multiple simultaneous readers, but + * where any one writer excludes all other writers and readers. */ +#define EVTHREAD_LOCKTYPE_READWRITE 2 +/**@}*/ + +/** This structure describes the interface a threading library uses for + * locking. It's used to tell evthread_set_lock_callbacks() how to use + * locking on this platform. + */ +struct evthread_lock_callbacks { + /** The current version of the locking API. Set this to + * EVTHREAD_LOCK_API_VERSION */ + int lock_api_version; + /** Which kinds of locks does this version of the locking API + * support? A bitfield of EVTHREAD_LOCKTYPE_RECURSIVE and + * EVTHREAD_LOCKTYPE_READWRITE. + * + * (Note that RECURSIVE locks are currently mandatory, and + * READWRITE locks are not currently used.) + **/ + unsigned supported_locktypes; + /** Function to allocate and initialize new lock of type 'locktype'. + * Returns NULL on failure. */ + void *(*alloc)(unsigned locktype); + /** Funtion to release all storage held in 'lock', which was created + * with type 'locktype'. */ + void (*free)(void *lock, unsigned locktype); + /** Acquire an already-allocated lock at 'lock' with mode 'mode'. + * Returns 0 on success, and nonzero on failure. */ + int (*lock)(unsigned mode, void *lock); + /** Release a lock at 'lock' using mode 'mode'. Returns 0 on success, + * and nonzero on failure. */ + int (*unlock)(unsigned mode, void *lock); +}; + +/** Sets a group of functions that Libevent should use for locking. + * For full information on the required callback API, see the + * documentation for the individual members of evthread_lock_callbacks. + * + * Note that if you're using Windows or the Pthreads threading library, you + * probably shouldn't call this function; instead, use + * evthread_use_windows_threads() or evthread_use_posix_threads() if you can. + */ +EVENT2_EXPORT_SYMBOL +int evthread_set_lock_callbacks(const struct evthread_lock_callbacks *); + +#define EVTHREAD_CONDITION_API_VERSION 1 + +struct timeval; + +/** This structure describes the interface a threading library uses for + * condition variables. It's used to tell evthread_set_condition_callbacks + * how to use locking on this platform. + */ +struct evthread_condition_callbacks { + /** The current version of the conditions API. Set this to + * EVTHREAD_CONDITION_API_VERSION */ + int condition_api_version; + /** Function to allocate and initialize a new condition variable. + * Returns the condition variable on success, and NULL on failure. + * The 'condtype' argument will be 0 with this API version. + */ + void *(*alloc_condition)(unsigned condtype); + /** Function to free a condition variable. */ + void (*free_condition)(void *cond); + /** Function to signal a condition variable. If 'broadcast' is 1, all + * threads waiting on 'cond' should be woken; otherwise, only on one + * thread is worken. Should return 0 on success, -1 on failure. + * This function will only be called while holding the associated + * lock for the condition. + */ + int (*signal_condition)(void *cond, int broadcast); + /** Function to wait for a condition variable. The lock 'lock' + * will be held when this function is called; should be released + * while waiting for the condition to be come signalled, and + * should be held again when this function returns. + * If timeout is provided, it is interval of seconds to wait for + * the event to become signalled; if it is NULL, the function + * should wait indefinitely. + * + * The function should return -1 on error; 0 if the condition + * was signalled, or 1 on a timeout. */ + int (*wait_condition)(void *cond, void *lock, + const struct timeval *timeout); +}; + +/** Sets a group of functions that Libevent should use for condition variables. + * For full information on the required callback API, see the + * documentation for the individual members of evthread_condition_callbacks. + * + * Note that if you're using Windows or the Pthreads threading library, you + * probably shouldn't call this function; instead, use + * evthread_use_windows_threads() or evthread_use_pthreads() if you can. + */ +EVENT2_EXPORT_SYMBOL +int evthread_set_condition_callbacks( + const struct evthread_condition_callbacks *); + +/** + Sets the function for determining the thread id. + + @param base the event base for which to set the id function + @param id_fn the identify function Libevent should invoke to + determine the identity of a thread. +*/ +EVENT2_EXPORT_SYMBOL +void evthread_set_id_callback( + unsigned long (*id_fn)(void)); + +#if (defined(_WIN32) && !defined(EVENT__DISABLE_THREAD_SUPPORT)) || defined(EVENT_IN_DOXYGEN_) +/** Sets up Libevent for use with Windows builtin locking and thread ID + functions. Unavailable if Libevent is not built for Windows. + + @return 0 on success, -1 on failure. */ +EVENT2_EXPORT_SYMBOL +int evthread_use_windows_threads(void); +/** + Defined if Libevent was built with support for evthread_use_windows_threads() +*/ +#define EVTHREAD_USE_WINDOWS_THREADS_IMPLEMENTED 1 +#endif + +#if defined(EVENT__HAVE_PTHREADS) || defined(EVENT_IN_DOXYGEN_) +/** Sets up Libevent for use with Pthreads locking and thread ID functions. + Unavailable if Libevent is not build for use with pthreads. Requires + libraries to link against Libevent_pthreads as well as Libevent. + + @return 0 on success, -1 on failure. */ +EVENT2_EXPORT_SYMBOL +int evthread_use_pthreads(void); +/** Defined if Libevent was built with support for evthread_use_pthreads() */ +#define EVTHREAD_USE_PTHREADS_IMPLEMENTED 1 + +#endif + +/** Enable debugging wrappers around the current lock callbacks. If Libevent + * makes one of several common locking errors, exit with an assertion failure. + * + * If you're going to call this function, you must do so before any locks are + * allocated. + **/ +EVENT2_EXPORT_SYMBOL +void evthread_enable_lock_debugging(void); + +/* Old (misspelled) version: This is deprecated; use + * evthread_enable_log_debugging instead. */ +EVENT2_EXPORT_SYMBOL +void evthread_enable_lock_debuging(void); + +#endif /* EVENT__DISABLE_THREAD_SUPPORT */ + +struct event_base; +/** Make sure it's safe to tell an event base to wake up from another thread + or a signal handler. + + You shouldn't need to call this by hand; configuring the base with thread + support should be necessary and sufficient. + + @return 0 on success, -1 on failure. + */ +EVENT2_EXPORT_SYMBOL +int evthread_make_base_notifiable(struct event_base *base); + +#ifdef __cplusplus +} +#endif + +#endif /* EVENT2_THREAD_H_INCLUDED_ */ diff -Nru mysql-5.7-5.7.25/extra/libevent/include/event2/util.h mysql-5.7-5.7.26/extra/libevent/include/event2/util.h --- mysql-5.7-5.7.25/extra/libevent/include/event2/util.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/include/event2/util.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,871 @@ +/* + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef EVENT2_UTIL_H_INCLUDED_ +#define EVENT2_UTIL_H_INCLUDED_ + +/** @file event2/util.h + + Common convenience functions for cross-platform portability and + related socket manipulations. + + */ +#include + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#ifdef EVENT__HAVE_SYS_TIME_H +#include +#endif +#ifdef EVENT__HAVE_STDINT_H +#include +#elif defined(EVENT__HAVE_INTTYPES_H) +#include +#endif +#ifdef EVENT__HAVE_SYS_TYPES_H +#include +#endif +#ifdef EVENT__HAVE_STDDEF_H +#include +#endif +#ifdef _MSC_VER +#include +#endif +#include +#ifdef EVENT__HAVE_NETDB_H +#if !defined(_GNU_SOURCE) +#define _GNU_SOURCE +#endif +#include +#endif + +#ifdef _WIN32 +#include +#ifdef EVENT__HAVE_GETADDRINFO +/* for EAI_* definitions. */ +#include +#endif +#else +#ifdef EVENT__HAVE_ERRNO_H +#include +#endif +#include +#endif + +#include + +/* Some openbsd autoconf versions get the name of this macro wrong. */ +#if defined(EVENT__SIZEOF_VOID__) && !defined(EVENT__SIZEOF_VOID_P) +#define EVENT__SIZEOF_VOID_P EVENT__SIZEOF_VOID__ +#endif + +/** + * @name Standard integer types. + * + * Integer type definitions for types that are supposed to be defined in the + * C99-specified stdint.h. Shamefully, some platforms do not include + * stdint.h, so we need to replace it. (If you are on a platform like this, + * your C headers are now over 10 years out of date. You should bug them to + * do something about this.) + * + * We define: + * + *
+ *
ev_uint64_t, ev_uint32_t, ev_uint16_t, ev_uint8_t
+ *
unsigned integer types of exactly 64, 32, 16, and 8 bits + * respectively.
+ *
ev_int64_t, ev_int32_t, ev_int16_t, ev_int8_t
+ *
signed integer types of exactly 64, 32, 16, and 8 bits + * respectively.
+ *
ev_uintptr_t, ev_intptr_t
+ *
unsigned/signed integers large enough + * to hold a pointer without loss of bits.
+ *
ev_ssize_t
+ *
A signed type of the same size as size_t
+ *
ev_off_t
+ *
A signed type typically used to represent offsets within a + * (potentially large) file
+ * + * @{ + */ +#ifdef EVENT__HAVE_UINT64_T +#define ev_uint64_t uint64_t +#define ev_int64_t int64_t +#elif defined(_WIN32) +#define ev_uint64_t unsigned __int64 +#define ev_int64_t signed __int64 +#elif EVENT__SIZEOF_LONG_LONG == 8 +#define ev_uint64_t unsigned long long +#define ev_int64_t long long +#elif EVENT__SIZEOF_LONG == 8 +#define ev_uint64_t unsigned long +#define ev_int64_t long +#elif defined(EVENT_IN_DOXYGEN_) +#define ev_uint64_t ... +#define ev_int64_t ... +#else +#error "No way to define ev_uint64_t" +#endif + +#ifdef EVENT__HAVE_UINT32_T +#define ev_uint32_t uint32_t +#define ev_int32_t int32_t +#elif defined(_WIN32) +#define ev_uint32_t unsigned int +#define ev_int32_t signed int +#elif EVENT__SIZEOF_LONG == 4 +#define ev_uint32_t unsigned long +#define ev_int32_t signed long +#elif EVENT__SIZEOF_INT == 4 +#define ev_uint32_t unsigned int +#define ev_int32_t signed int +#elif defined(EVENT_IN_DOXYGEN_) +#define ev_uint32_t ... +#define ev_int32_t ... +#else +#error "No way to define ev_uint32_t" +#endif + +#ifdef EVENT__HAVE_UINT16_T +#define ev_uint16_t uint16_t +#define ev_int16_t int16_t +#elif defined(_WIN32) +#define ev_uint16_t unsigned short +#define ev_int16_t signed short +#elif EVENT__SIZEOF_INT == 2 +#define ev_uint16_t unsigned int +#define ev_int16_t signed int +#elif EVENT__SIZEOF_SHORT == 2 +#define ev_uint16_t unsigned short +#define ev_int16_t signed short +#elif defined(EVENT_IN_DOXYGEN_) +#define ev_uint16_t ... +#define ev_int16_t ... +#else +#error "No way to define ev_uint16_t" +#endif + +#ifdef EVENT__HAVE_UINT8_T +#define ev_uint8_t uint8_t +#define ev_int8_t int8_t +#elif defined(EVENT_IN_DOXYGEN_) +#define ev_uint8_t ... +#define ev_int8_t ... +#else +#define ev_uint8_t unsigned char +#define ev_int8_t signed char +#endif + +#ifdef EVENT__HAVE_UINTPTR_T +#define ev_uintptr_t uintptr_t +#define ev_intptr_t intptr_t +#elif EVENT__SIZEOF_VOID_P <= 4 +#define ev_uintptr_t ev_uint32_t +#define ev_intptr_t ev_int32_t +#elif EVENT__SIZEOF_VOID_P <= 8 +#define ev_uintptr_t ev_uint64_t +#define ev_intptr_t ev_int64_t +#elif defined(EVENT_IN_DOXYGEN_) +#define ev_uintptr_t ... +#define ev_intptr_t ... +#else +#error "No way to define ev_uintptr_t" +#endif + +#ifdef EVENT__ssize_t +#define ev_ssize_t EVENT__ssize_t +#else +#define ev_ssize_t ssize_t +#endif + +/* Note that we define ev_off_t based on the compile-time size of off_t that + * we used to build Libevent, and not based on the current size of off_t. + * (For example, we don't define ev_off_t to off_t.). We do this because + * some systems let you build your software with different off_t sizes + * at runtime, and so putting in any dependency on off_t would risk API + * mismatch. + */ +#ifdef _WIN32 +#define ev_off_t ev_int64_t +#elif EVENT__SIZEOF_OFF_T == 8 +#define ev_off_t ev_int64_t +#elif EVENT__SIZEOF_OFF_T == 4 +#define ev_off_t ev_int32_t +#elif defined(EVENT_IN_DOXYGEN_) +#define ev_off_t ... +#else +#define ev_off_t off_t +#endif +/**@}*/ + +/* Limits for integer types. + + We're making two assumptions here: + - The compiler does constant folding properly. + - The platform does signed arithmetic in two's complement. +*/ + +/** + @name Limits for integer types + + These macros hold the largest or smallest values possible for the + ev_[u]int*_t types. + + @{ +*/ +#ifndef EVENT__HAVE_STDINT_H +#define EV_UINT64_MAX ((((ev_uint64_t)0xffffffffUL) << 32) | 0xffffffffUL) +#define EV_INT64_MAX ((((ev_int64_t) 0x7fffffffL) << 32) | 0xffffffffL) +#define EV_INT64_MIN ((-EV_INT64_MAX) - 1) +#define EV_UINT32_MAX ((ev_uint32_t)0xffffffffUL) +#define EV_INT32_MAX ((ev_int32_t) 0x7fffffffL) +#define EV_INT32_MIN ((-EV_INT32_MAX) - 1) +#define EV_UINT16_MAX ((ev_uint16_t)0xffffUL) +#define EV_INT16_MAX ((ev_int16_t) 0x7fffL) +#define EV_INT16_MIN ((-EV_INT16_MAX) - 1) +#define EV_UINT8_MAX 255 +#define EV_INT8_MAX 127 +#define EV_INT8_MIN ((-EV_INT8_MAX) - 1) +#else +#define EV_UINT64_MAX UINT64_MAX +#define EV_INT64_MAX INT64_MAX +#define EV_INT64_MIN INT64_MIN +#define EV_UINT32_MAX UINT32_MAX +#define EV_INT32_MAX INT32_MAX +#define EV_INT32_MIN INT32_MIN +#define EV_UINT16_MAX UINT16_MAX +#define EV_INT16_MAX INT16_MAX +#define EV_UINT8_MAX UINT8_MAX +#define EV_INT8_MAX INT8_MAX +#define EV_INT8_MIN INT8_MIN +/** @} */ +#endif + + +/** + @name Limits for SIZE_T and SSIZE_T + + @{ +*/ +#if EVENT__SIZEOF_SIZE_T == 8 +#define EV_SIZE_MAX EV_UINT64_MAX +#define EV_SSIZE_MAX EV_INT64_MAX +#elif EVENT__SIZEOF_SIZE_T == 4 +#define EV_SIZE_MAX EV_UINT32_MAX +#define EV_SSIZE_MAX EV_INT32_MAX +#elif defined(EVENT_IN_DOXYGEN_) +#define EV_SIZE_MAX ... +#define EV_SSIZE_MAX ... +#else +#error "No way to define SIZE_MAX" +#endif + +#define EV_SSIZE_MIN ((-EV_SSIZE_MAX) - 1) +/**@}*/ + +#ifdef _WIN32 +#define ev_socklen_t int +#elif defined(EVENT__socklen_t) +#define ev_socklen_t EVENT__socklen_t +#else +#define ev_socklen_t socklen_t +#endif + +#ifdef EVENT__HAVE_STRUCT_SOCKADDR_STORAGE___SS_FAMILY +#if !defined(EVENT__HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY) \ + && !defined(ss_family) +#define ss_family __ss_family +#endif +#endif + +/** + * A type wide enough to hold the output of "socket()" or "accept()". On + * Windows, this is an intptr_t; elsewhere, it is an int. */ +#ifdef _WIN32 +#define evutil_socket_t intptr_t +#else +#define evutil_socket_t int +#endif + +/** + * Structure to hold information about a monotonic timer + * + * Use this with evutil_configure_monotonic_time() and + * evutil_gettime_monotonic(). + * + * This is an opaque structure; you can allocate one using + * evutil_monotonic_timer_new(). + * + * @see evutil_monotonic_timer_new(), evutil_monotonic_timer_free(), + * evutil_configure_monotonic_time(), evutil_gettime_monotonic() + */ +struct evutil_monotonic_timer +#ifdef EVENT_IN_DOXYGEN_ +{/*Empty body so that doxygen will generate documentation here.*/} +#endif +; + +#define EV_MONOT_PRECISE 1 +#define EV_MONOT_FALLBACK 2 + +/** Format a date string using RFC 1123 format (used in HTTP). + * If `tm` is NULL, current system's time will be used. + * The number of characters written will be returned. + * One should check if the return value is smaller than `datelen` to check if + * the result is truncated or not. + */ +EVENT2_EXPORT_SYMBOL int +evutil_date_rfc1123(char *date, const size_t datelen, const struct tm *tm); + +/** Allocate a new struct evutil_monotonic_timer for use with the + * evutil_configure_monotonic_time() and evutil_gettime_monotonic() + * functions. You must configure the timer with + * evutil_configure_monotonic_time() before using it. + */ +EVENT2_EXPORT_SYMBOL +struct evutil_monotonic_timer * evutil_monotonic_timer_new(void); + +/** Free a struct evutil_monotonic_timer that was allocated using + * evutil_monotonic_timer_new(). + */ +EVENT2_EXPORT_SYMBOL +void evutil_monotonic_timer_free(struct evutil_monotonic_timer *timer); + +/** Set up a struct evutil_monotonic_timer; flags can include + * EV_MONOT_PRECISE and EV_MONOT_FALLBACK. + */ +EVENT2_EXPORT_SYMBOL +int evutil_configure_monotonic_time(struct evutil_monotonic_timer *timer, + int flags); + +/** Query the current monotonic time from a struct evutil_monotonic_timer + * previously configured with evutil_configure_monotonic_time(). Monotonic + * time is guaranteed never to run in reverse, but is not necessarily epoch- + * based, or relative to any other definite point. Use it to make reliable + * measurements of elapsed time between events even when the system time + * may be changed. + * + * It is not safe to use this funtion on the same timer from multiple + * threads. + */ +EVENT2_EXPORT_SYMBOL +int evutil_gettime_monotonic(struct evutil_monotonic_timer *timer, + struct timeval *tp); + +/** Create two new sockets that are connected to each other. + + On Unix, this simply calls socketpair(). On Windows, it uses the + loopback network interface on 127.0.0.1, and only + AF_INET,SOCK_STREAM are supported. + + (This may fail on some Windows hosts where firewall software has cleverly + decided to keep 127.0.0.1 from talking to itself.) + + Parameters and return values are as for socketpair() +*/ +EVENT2_EXPORT_SYMBOL +int evutil_socketpair(int d, int type, int protocol, evutil_socket_t sv[2]); +/** Do platform-specific operations as needed to make a socket nonblocking. + + @param sock The socket to make nonblocking + @return 0 on success, -1 on failure + */ +EVENT2_EXPORT_SYMBOL +int evutil_make_socket_nonblocking(evutil_socket_t sock); + +/** Do platform-specific operations to make a listener socket reusable. + + Specifically, we want to make sure that another program will be able + to bind this address right after we've closed the listener. + + This differs from Windows's interpretation of "reusable", which + allows multiple listeners to bind the same address at the same time. + + @param sock The socket to make reusable + @return 0 on success, -1 on failure + */ +EVENT2_EXPORT_SYMBOL +int evutil_make_listen_socket_reuseable(evutil_socket_t sock); + +/** Do platform-specific operations to make a listener port reusable. + + Specifically, we want to make sure that multiple programs which also + set the same socket option will be able to bind, listen at the same time. + + This is a feature available only to Linux 3.9+ + + @param sock The socket to make reusable + @return 0 on success, -1 on failure + */ +EVENT2_EXPORT_SYMBOL +int evutil_make_listen_socket_reuseable_port(evutil_socket_t sock); + +/** Do platform-specific operations as needed to close a socket upon a + successful execution of one of the exec*() functions. + + @param sock The socket to be closed + @return 0 on success, -1 on failure + */ +EVENT2_EXPORT_SYMBOL +int evutil_make_socket_closeonexec(evutil_socket_t sock); + +/** Do the platform-specific call needed to close a socket returned from + socket() or accept(). + + @param sock The socket to be closed + @return 0 on success, -1 on failure + */ +EVENT2_EXPORT_SYMBOL +int evutil_closesocket(evutil_socket_t sock); +#define EVUTIL_CLOSESOCKET(s) evutil_closesocket(s) + +/** Do platform-specific operations, if possible, to make a tcp listener + * socket defer accept()s until there is data to read. + * + * Not all platforms support this. You don't want to do this for every + * listener socket: only the ones that implement a protocol where the + * client transmits before the server needs to respond. + * + * @param sock The listening socket to to make deferred + * @return 0 on success (whether the operation is supported or not), + * -1 on failure +*/ +EVENT2_EXPORT_SYMBOL +int evutil_make_tcp_listen_socket_deferred(evutil_socket_t sock); + +#ifdef _WIN32 +/** Return the most recent socket error. Not idempotent on all platforms. */ +#define EVUTIL_SOCKET_ERROR() WSAGetLastError() +/** Replace the most recent socket error with errcode */ +#define EVUTIL_SET_SOCKET_ERROR(errcode) \ + do { WSASetLastError(errcode); } while (0) +/** Return the most recent socket error to occur on sock. */ +EVENT2_EXPORT_SYMBOL +int evutil_socket_geterror(evutil_socket_t sock); +/** Convert a socket error to a string. */ +EVENT2_EXPORT_SYMBOL +const char *evutil_socket_error_to_string(int errcode); +#elif defined(EVENT_IN_DOXYGEN_) +/** + @name Socket error functions + + These functions are needed for making programs compatible between + Windows and Unix-like platforms. + + You see, Winsock handles socket errors differently from the rest of + the world. Elsewhere, a socket error is like any other error and is + stored in errno. But winsock functions require you to retrieve the + error with a special function, and don't let you use strerror for + the error codes. And handling EWOULDBLOCK is ... different. + + @{ +*/ +/** Return the most recent socket error. Not idempotent on all platforms. */ +#define EVUTIL_SOCKET_ERROR() ... +/** Replace the most recent socket error with errcode */ +#define EVUTIL_SET_SOCKET_ERROR(errcode) ... +/** Return the most recent socket error to occur on sock. */ +#define evutil_socket_geterror(sock) ... +/** Convert a socket error to a string. */ +#define evutil_socket_error_to_string(errcode) ... +/**@}*/ +#else +#define EVUTIL_SOCKET_ERROR() (errno) +#define EVUTIL_SET_SOCKET_ERROR(errcode) \ + do { errno = (errcode); } while (0) +#define evutil_socket_geterror(sock) (errno) +#define evutil_socket_error_to_string(errcode) (strerror(errcode)) +#endif + + +/** + * @name Manipulation macros for struct timeval. + * + * We define replacements + * for timeradd, timersub, timerclear, timercmp, and timerisset. + * + * @{ + */ +#ifdef EVENT__HAVE_TIMERADD +#define evutil_timeradd(tvp, uvp, vvp) timeradd((tvp), (uvp), (vvp)) +#define evutil_timersub(tvp, uvp, vvp) timersub((tvp), (uvp), (vvp)) +#else +#define evutil_timeradd(tvp, uvp, vvp) \ + do { \ + (vvp)->tv_sec = (tvp)->tv_sec + (uvp)->tv_sec; \ + (vvp)->tv_usec = (tvp)->tv_usec + (uvp)->tv_usec; \ + if ((vvp)->tv_usec >= 1000000) { \ + (vvp)->tv_sec++; \ + (vvp)->tv_usec -= 1000000; \ + } \ + } while (0) +#define evutil_timersub(tvp, uvp, vvp) \ + do { \ + (vvp)->tv_sec = (tvp)->tv_sec - (uvp)->tv_sec; \ + (vvp)->tv_usec = (tvp)->tv_usec - (uvp)->tv_usec; \ + if ((vvp)->tv_usec < 0) { \ + (vvp)->tv_sec--; \ + (vvp)->tv_usec += 1000000; \ + } \ + } while (0) +#endif /* !EVENT__HAVE_TIMERADD */ + +#ifdef EVENT__HAVE_TIMERCLEAR +#define evutil_timerclear(tvp) timerclear(tvp) +#else +#define evutil_timerclear(tvp) (tvp)->tv_sec = (tvp)->tv_usec = 0 +#endif +/**@}*/ + +/** Return true iff the tvp is related to uvp according to the relational + * operator cmp. Recognized values for cmp are ==, <=, <, >=, and >. */ +#define evutil_timercmp(tvp, uvp, cmp) \ + (((tvp)->tv_sec == (uvp)->tv_sec) ? \ + ((tvp)->tv_usec cmp (uvp)->tv_usec) : \ + ((tvp)->tv_sec cmp (uvp)->tv_sec)) + +#ifdef EVENT__HAVE_TIMERISSET +#define evutil_timerisset(tvp) timerisset(tvp) +#else +#define evutil_timerisset(tvp) ((tvp)->tv_sec || (tvp)->tv_usec) +#endif + +/** Replacement for offsetof on platforms that don't define it. */ +#ifdef offsetof +#define evutil_offsetof(type, field) offsetof(type, field) +#else +#define evutil_offsetof(type, field) ((off_t)(&((type *)0)->field)) +#endif + +/* big-int related functions */ +/** Parse a 64-bit value from a string. Arguments are as for strtol. */ +EVENT2_EXPORT_SYMBOL +ev_int64_t evutil_strtoll(const char *s, char **endptr, int base); + +/** Replacement for gettimeofday on platforms that lack it. */ +#ifdef EVENT__HAVE_GETTIMEOFDAY +#define evutil_gettimeofday(tv, tz) gettimeofday((tv), (tz)) +#else +struct timezone; +EVENT2_EXPORT_SYMBOL +int evutil_gettimeofday(struct timeval *tv, struct timezone *tz); +#endif + +/** Replacement for snprintf to get consistent behavior on platforms for + which the return value of snprintf does not conform to C99. + */ +EVENT2_EXPORT_SYMBOL +int evutil_snprintf(char *buf, size_t buflen, const char *format, ...) +#ifdef __GNUC__ + __attribute__((format(printf, 3, 4))) +#endif +; +/** Replacement for vsnprintf to get consistent behavior on platforms for + which the return value of snprintf does not conform to C99. + */ +EVENT2_EXPORT_SYMBOL +int evutil_vsnprintf(char *buf, size_t buflen, const char *format, va_list ap) +#ifdef __GNUC__ + __attribute__((format(printf, 3, 0))) +#endif +; + +/** Replacement for inet_ntop for platforms which lack it. */ +EVENT2_EXPORT_SYMBOL +const char *evutil_inet_ntop(int af, const void *src, char *dst, size_t len); +/** Replacement for inet_pton for platforms which lack it. */ +EVENT2_EXPORT_SYMBOL +int evutil_inet_pton(int af, const char *src, void *dst); +struct sockaddr; + +/** Parse an IPv4 or IPv6 address, with optional port, from a string. + + Recognized formats are: + - [IPv6Address]:port + - [IPv6Address] + - IPv6Address + - IPv4Address:port + - IPv4Address + + If no port is specified, the port in the output is set to 0. + + @param str The string to parse. + @param out A struct sockaddr to hold the result. This should probably be + a struct sockaddr_storage. + @param outlen A pointer to the number of bytes that that 'out' can safely + hold. Set to the number of bytes used in 'out' on success. + @return -1 if the address is not well-formed, if the port is out of range, + or if out is not large enough to hold the result. Otherwise returns + 0 on success. +*/ +EVENT2_EXPORT_SYMBOL +int evutil_parse_sockaddr_port(const char *str, struct sockaddr *out, int *outlen); + +/** Compare two sockaddrs; return 0 if they are equal, or less than 0 if sa1 + * preceeds sa2, or greater than 0 if sa1 follows sa2. If include_port is + * true, consider the port as well as the address. Only implemented for + * AF_INET and AF_INET6 addresses. The ordering is not guaranteed to remain + * the same between Libevent versions. */ +EVENT2_EXPORT_SYMBOL +int evutil_sockaddr_cmp(const struct sockaddr *sa1, const struct sockaddr *sa2, + int include_port); + +/** As strcasecmp, but always compares the characters in locale-independent + ASCII. That's useful if you're handling data in ASCII-based protocols. + */ +EVENT2_EXPORT_SYMBOL +int evutil_ascii_strcasecmp(const char *str1, const char *str2); +/** As strncasecmp, but always compares the characters in locale-independent + ASCII. That's useful if you're handling data in ASCII-based protocols. + */ +EVENT2_EXPORT_SYMBOL +int evutil_ascii_strncasecmp(const char *str1, const char *str2, size_t n); + +/* Here we define evutil_addrinfo to the native addrinfo type, or redefine it + * if this system has no getaddrinfo(). */ +#ifdef EVENT__HAVE_STRUCT_ADDRINFO +#define evutil_addrinfo addrinfo +#else +/** A definition of struct addrinfo for systems that lack it. + + (This is just an alias for struct addrinfo if the system defines + struct addrinfo.) +*/ +struct evutil_addrinfo { + int ai_flags; /* AI_PASSIVE, AI_CANONNAME, AI_NUMERICHOST */ + int ai_family; /* PF_xxx */ + int ai_socktype; /* SOCK_xxx */ + int ai_protocol; /* 0 or IPPROTO_xxx for IPv4 and IPv6 */ + size_t ai_addrlen; /* length of ai_addr */ + char *ai_canonname; /* canonical name for nodename */ + struct sockaddr *ai_addr; /* binary address */ + struct evutil_addrinfo *ai_next; /* next structure in linked list */ +}; +#endif +/** @name evutil_getaddrinfo() error codes + + These values are possible error codes for evutil_getaddrinfo() and + related functions. + + @{ +*/ +#if defined(EAI_ADDRFAMILY) && defined(EVENT__HAVE_GETADDRINFO) +#define EVUTIL_EAI_ADDRFAMILY EAI_ADDRFAMILY +#else +#define EVUTIL_EAI_ADDRFAMILY -901 +#endif +#if defined(EAI_AGAIN) && defined(EVENT__HAVE_GETADDRINFO) +#define EVUTIL_EAI_AGAIN EAI_AGAIN +#else +#define EVUTIL_EAI_AGAIN -902 +#endif +#if defined(EAI_BADFLAGS) && defined(EVENT__HAVE_GETADDRINFO) +#define EVUTIL_EAI_BADFLAGS EAI_BADFLAGS +#else +#define EVUTIL_EAI_BADFLAGS -903 +#endif +#if defined(EAI_FAIL) && defined(EVENT__HAVE_GETADDRINFO) +#define EVUTIL_EAI_FAIL EAI_FAIL +#else +#define EVUTIL_EAI_FAIL -904 +#endif +#if defined(EAI_FAMILY) && defined(EVENT__HAVE_GETADDRINFO) +#define EVUTIL_EAI_FAMILY EAI_FAMILY +#else +#define EVUTIL_EAI_FAMILY -905 +#endif +#if defined(EAI_MEMORY) && defined(EVENT__HAVE_GETADDRINFO) +#define EVUTIL_EAI_MEMORY EAI_MEMORY +#else +#define EVUTIL_EAI_MEMORY -906 +#endif +/* This test is a bit complicated, since some MS SDKs decide to + * remove NODATA or redefine it to be the same as NONAME, in a + * fun interpretation of RFC 2553 and RFC 3493. */ +#if defined(EAI_NODATA) && defined(EVENT__HAVE_GETADDRINFO) && (!defined(EAI_NONAME) || EAI_NODATA != EAI_NONAME) +#define EVUTIL_EAI_NODATA EAI_NODATA +#else +#define EVUTIL_EAI_NODATA -907 +#endif +#if defined(EAI_NONAME) && defined(EVENT__HAVE_GETADDRINFO) +#define EVUTIL_EAI_NONAME EAI_NONAME +#else +#define EVUTIL_EAI_NONAME -908 +#endif +#if defined(EAI_SERVICE) && defined(EVENT__HAVE_GETADDRINFO) +#define EVUTIL_EAI_SERVICE EAI_SERVICE +#else +#define EVUTIL_EAI_SERVICE -909 +#endif +#if defined(EAI_SOCKTYPE) && defined(EVENT__HAVE_GETADDRINFO) +#define EVUTIL_EAI_SOCKTYPE EAI_SOCKTYPE +#else +#define EVUTIL_EAI_SOCKTYPE -910 +#endif +#if defined(EAI_SYSTEM) && defined(EVENT__HAVE_GETADDRINFO) +#define EVUTIL_EAI_SYSTEM EAI_SYSTEM +#else +#define EVUTIL_EAI_SYSTEM -911 +#endif + +#define EVUTIL_EAI_CANCEL -90001 + +#if defined(AI_PASSIVE) && defined(EVENT__HAVE_GETADDRINFO) +#define EVUTIL_AI_PASSIVE AI_PASSIVE +#else +#define EVUTIL_AI_PASSIVE 0x1000 +#endif +#if defined(AI_CANONNAME) && defined(EVENT__HAVE_GETADDRINFO) +#define EVUTIL_AI_CANONNAME AI_CANONNAME +#else +#define EVUTIL_AI_CANONNAME 0x2000 +#endif +#if defined(AI_NUMERICHOST) && defined(EVENT__HAVE_GETADDRINFO) +#define EVUTIL_AI_NUMERICHOST AI_NUMERICHOST +#else +#define EVUTIL_AI_NUMERICHOST 0x4000 +#endif +#if defined(AI_NUMERICSERV) && defined(EVENT__HAVE_GETADDRINFO) +#define EVUTIL_AI_NUMERICSERV AI_NUMERICSERV +#else +#define EVUTIL_AI_NUMERICSERV 0x8000 +#endif +#if defined(AI_V4MAPPED) && defined(EVENT__HAVE_GETADDRINFO) +#define EVUTIL_AI_V4MAPPED AI_V4MAPPED +#else +#define EVUTIL_AI_V4MAPPED 0x10000 +#endif +#if defined(AI_ALL) && defined(EVENT__HAVE_GETADDRINFO) +#define EVUTIL_AI_ALL AI_ALL +#else +#define EVUTIL_AI_ALL 0x20000 +#endif +#if defined(AI_ADDRCONFIG) && defined(EVENT__HAVE_GETADDRINFO) +#define EVUTIL_AI_ADDRCONFIG AI_ADDRCONFIG +#else +#define EVUTIL_AI_ADDRCONFIG 0x40000 +#endif +/**@}*/ + +struct evutil_addrinfo; +/** + * This function clones getaddrinfo for systems that don't have it. For full + * details, see RFC 3493, section 6.1. + * + * Limitations: + * - When the system has no getaddrinfo, we fall back to gethostbyname_r or + * gethostbyname, with their attendant issues. + * - The AI_V4MAPPED and AI_ALL flags are not currently implemented. + * + * For a nonblocking variant, see evdns_getaddrinfo. + */ +EVENT2_EXPORT_SYMBOL +int evutil_getaddrinfo(const char *nodename, const char *servname, + const struct evutil_addrinfo *hints_in, struct evutil_addrinfo **res); + +/** Release storage allocated by evutil_getaddrinfo or evdns_getaddrinfo. */ +EVENT2_EXPORT_SYMBOL +void evutil_freeaddrinfo(struct evutil_addrinfo *ai); + +EVENT2_EXPORT_SYMBOL +const char *evutil_gai_strerror(int err); + +/** Generate n bytes of secure pseudorandom data, and store them in buf. + * + * Current versions of Libevent use an ARC4-based random number generator, + * seeded using the platform's entropy source (/dev/urandom on Unix-like + * systems; CryptGenRandom on Windows). This is not actually as secure as it + * should be: ARC4 is a pretty lousy cipher, and the current implementation + * provides only rudimentary prediction- and backtracking-resistance. Don't + * use this for serious cryptographic applications. + */ +EVENT2_EXPORT_SYMBOL +void evutil_secure_rng_get_bytes(void *buf, size_t n); + +/** + * Seed the secure random number generator if needed, and return 0 on + * success or -1 on failure. + * + * It is okay to call this function more than once; it will still return + * 0 if the RNG has been successfully seeded and -1 if it can't be + * seeded. + * + * Ordinarily you don't need to call this function from your own code; + * Libevent will seed the RNG itself the first time it needs good random + * numbers. You only need to call it if (a) you want to double-check + * that one of the seeding methods did succeed, or (b) you plan to drop + * the capability to seed (by chrooting, or dropping capabilities, or + * whatever), and you want to make sure that seeding happens before your + * program loses the ability to do it. + */ +EVENT2_EXPORT_SYMBOL +int evutil_secure_rng_init(void); + +/** + * Set a filename to use in place of /dev/urandom for seeding the secure + * PRNG. Return 0 on success, -1 on failure. + * + * Call this function BEFORE calling any other initialization or RNG + * functions. + * + * (This string will _NOT_ be copied internally. Do not free it while any + * user of the secure RNG might be running. Don't pass anything other than a + * real /dev/...random device file here, or you might lose security.) + * + * This API is unstable, and might change in a future libevent version. + */ +EVENT2_EXPORT_SYMBOL +int evutil_secure_rng_set_urandom_device_file(char *fname); + +#if 0 +// disabled, as underlying arc4random_addrandom() is not portabled and +// deprecated on those platforms that have it. + +/** Seed the random number generator with extra random bytes. + + You should almost never need to call this function; it should be + sufficient to invoke evutil_secure_rng_init(), or let Libevent take + care of calling evutil_secure_rng_init() on its own. + + If you call this function as a _replacement_ for the regular + entropy sources, then you need to be sure that your input + contains a fairly large amount of strong entropy. Doing so is + notoriously hard: most people who try get it wrong. Watch out! + + @param dat a buffer full of a strong source of random numbers + @param datlen the number of bytes to read from datlen + */ +EVENT2_EXPORT_SYMBOL +void evutil_secure_rng_add_bytes(const char *dat, size_t datlen); +#endif + +#ifdef __cplusplus +} +#endif + +#endif /* EVENT1_EVUTIL_H_INCLUDED_ */ diff -Nru mysql-5.7-5.7.25/extra/libevent/include/event2/visibility.h mysql-5.7-5.7.26/extra/libevent/include/event2/visibility.h --- mysql-5.7-5.7.25/extra/libevent/include/event2/visibility.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/include/event2/visibility.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,50 @@ +/* -*- Mode: C; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- */ +/* + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef EVENT2_VISIBILITY_H_INCLUDED_ +#define EVENT2_VISIBILITY_H_INCLUDED_ + +#include + +#if defined(event_EXPORTS) || defined(event_extra_EXPORTS) || defined(event_core_EXPORTS) +# if defined (__SUNPRO_C) && (__SUNPRO_C >= 0x550) +# define EVENT2_EXPORT_SYMBOL __global +# elif defined __GNUC__ +# define EVENT2_EXPORT_SYMBOL __attribute__ ((visibility("default"))) +# elif defined(_MSC_VER) +# define EVENT2_EXPORT_SYMBOL extern __declspec(dllexport) +# else +# define EVENT2_EXPORT_SYMBOL /* unknown compiler */ +# endif +#else +# if defined(EVENT__NEED_DLLIMPORT) && defined(_MSC_VER) && !defined(EVENT_BUILDING_REGRESS_TEST) +# define EVENT2_EXPORT_SYMBOL extern __declspec(dllimport) +# else +# define EVENT2_EXPORT_SYMBOL +# endif +#endif + +#endif /* EVENT2_VISIBILITY_H_INCLUDED_ */ diff -Nru mysql-5.7-5.7.25/extra/libevent/include/event.h mysql-5.7-5.7.26/extra/libevent/include/event.h --- mysql-5.7-5.7.25/extra/libevent/include/event.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/include/event.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,83 @@ +/* + * Copyright (c) 2000-2007 Niels Provos + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef EVENT1_EVENT_H_INCLUDED_ +#define EVENT1_EVENT_H_INCLUDED_ + +/** @file event.h + + A library for writing event-driven network servers. + + The header is deprecated in Libevent 2.0 and later; please + use instead. Depending on what functionality you + need, you may also want to include more of the other event2/ + headers. + */ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#ifdef EVENT__HAVE_SYS_TYPES_H +#include +#endif +#ifdef EVENT__HAVE_SYS_TIME_H +#include +#endif +#ifdef EVENT__HAVE_STDINT_H +#include +#endif +#include + +/* For int types. */ +#include + +#ifdef _WIN32 +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN +#endif +#include +#include +#undef WIN32_LEAN_AND_MEAN +#endif + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#ifdef __cplusplus +} +#endif + +#endif /* EVENT1_EVENT_H_INCLUDED_ */ diff -Nru mysql-5.7-5.7.25/extra/libevent/include/evhttp.h mysql-5.7-5.7.26/extra/libevent/include/evhttp.h --- mysql-5.7-5.7.25/extra/libevent/include/evhttp.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/include/evhttp.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,45 @@ +/* + * Copyright 2000-2007 Niels Provos + * Copyright 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef EVENT1_EVHTTP_H_INCLUDED_ +#define EVENT1_EVHTTP_H_INCLUDED_ + +/** @file evhttp.h + + An http implementation subsystem for Libevent. + + The header is deprecated in Libevent 2.0 and later; please + use instead. Depending on what functionality you + need, you may also want to include more of the other + headers. + */ + +#include +#include +#include +#include + +#endif /* EVENT1_EVHTTP_H_INCLUDED_ */ diff -Nru mysql-5.7-5.7.25/extra/libevent/include/evrpc.h mysql-5.7-5.7.26/extra/libevent/include/evrpc.h --- mysql-5.7-5.7.25/extra/libevent/include/evrpc.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/include/evrpc.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,45 @@ +/* + * Copyright (c) 2000-2007 Niels Provos + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef EVENT1_EVRPC_H_INCLUDED_ +#define EVENT1_EVRPC_H_INCLUDED_ + +/** @file evrpc.h + + An RPC system for Libevent. + + The header is deprecated in Libevent 2.0 and later; please + use instead. Depending on what functionality you + need, you may also want to include more of the other + headers. + */ + +#include +#include +#include +#include + +#endif /* EVENT1_EVRPC_H_INCLUDED_ */ diff -Nru mysql-5.7-5.7.25/extra/libevent/include/evutil.h mysql-5.7-5.7.26/extra/libevent/include/evutil.h --- mysql-5.7-5.7.25/extra/libevent/include/evutil.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/include/evutil.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,39 @@ +/* + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef EVENT1_EVUTIL_H_INCLUDED_ +#define EVENT1_EVUTIL_H_INCLUDED_ + +/** @file evutil.h + + Utility and compatibility functions for Libevent. + + The header is deprecated in Libevent 2.0 and later; please + use instead. +*/ + +#include + +#endif /* EVENT1_EVUTIL_H_INCLUDED_ */ diff -Nru mysql-5.7-5.7.25/extra/libevent/include/include.am mysql-5.7-5.7.26/extra/libevent/include/include.am --- mysql-5.7-5.7.25/extra/libevent/include/include.am 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/include/include.am 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,46 @@ +# include/Makefile.am for libevent +# Copyright 2000-2007 Niels Provos +# Copyright 2007-2012 Niels Provos and Nick Mathewson +# +# See LICENSE for copying information. + +include_event2dir = $(includedir)/event2 + +EVENT2_EXPORT = \ + include/event2/buffer.h \ + include/event2/buffer_compat.h \ + include/event2/bufferevent.h \ + include/event2/bufferevent_compat.h \ + include/event2/bufferevent_ssl.h \ + include/event2/bufferevent_struct.h \ + include/event2/dns.h \ + include/event2/dns_compat.h \ + include/event2/dns_struct.h \ + include/event2/event.h \ + include/event2/event_compat.h \ + include/event2/event_struct.h \ + include/event2/http.h \ + include/event2/http_compat.h \ + include/event2/http_struct.h \ + include/event2/keyvalq_struct.h \ + include/event2/listener.h \ + include/event2/rpc.h \ + include/event2/rpc_compat.h \ + include/event2/rpc_struct.h \ + include/event2/tag.h \ + include/event2/tag_compat.h \ + include/event2/thread.h \ + include/event2/util.h \ + include/event2/visibility.h + +## Without the nobase_ prefixing, Automake would strip "include/event2/" from +## the source header filename to derive the installed header filename. +## With nobase_ the installed path is $(includedir)/include/event2/ev*.h. + +if INSTALL_LIBEVENT +include_event2_HEADERS = $(EVENT2_EXPORT) +nodist_include_event2_HEADERS = include/event2/event-config.h +else +noinst_HEADERS += $(EVENT2_EXPORT) +nodist_noinst_HEADERS = include/event2/event-config.h +endif diff -Nru mysql-5.7-5.7.25/extra/libevent/iocp-internal.h mysql-5.7-5.7.26/extra/libevent/iocp-internal.h --- mysql-5.7-5.7.25/extra/libevent/iocp-internal.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/iocp-internal.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,201 @@ +/* + * Copyright (c) 2009-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ + +#ifndef IOCP_INTERNAL_H_INCLUDED_ +#define IOCP_INTERNAL_H_INCLUDED_ + +#ifdef __cplusplus +extern "C" { +#endif + +struct event_overlapped; +struct event_iocp_port; +struct evbuffer; +typedef void (*iocp_callback)(struct event_overlapped *, ev_uintptr_t, ev_ssize_t, int success); + +/* This whole file is actually win32 only. We wrap the structures in a win32 + * ifdef so that we can test-compile code that uses these interfaces on + * non-win32 platforms. */ +#ifdef _WIN32 + +/** + Internal use only. Wraps an OVERLAPPED that we're using for libevent + functionality. Whenever an event_iocp_port gets an event for a given + OVERLAPPED*, it upcasts the pointer to an event_overlapped, and calls the + iocp_callback function with the event_overlapped, the iocp key, and the + number of bytes transferred as arguments. + */ +struct event_overlapped { + OVERLAPPED overlapped; + iocp_callback cb; +}; + +/* Mingw's headers don't define LPFN_ACCEPTEX. */ + +typedef BOOL (WINAPI *AcceptExPtr)(SOCKET, SOCKET, PVOID, DWORD, DWORD, DWORD, LPDWORD, LPOVERLAPPED); +typedef BOOL (WINAPI *ConnectExPtr)(SOCKET, const struct sockaddr *, int, PVOID, DWORD, LPDWORD, LPOVERLAPPED); +typedef void (WINAPI *GetAcceptExSockaddrsPtr)(PVOID, DWORD, DWORD, DWORD, LPSOCKADDR *, LPINT, LPSOCKADDR *, LPINT); + +/** Internal use only. Holds pointers to functions that only some versions of + Windows provide. + */ +struct win32_extension_fns { + AcceptExPtr AcceptEx; + ConnectExPtr ConnectEx; + GetAcceptExSockaddrsPtr GetAcceptExSockaddrs; +}; + +/** + Internal use only. Stores a Windows IO Completion port, along with + related data. + */ +struct event_iocp_port { + /** The port itself */ + HANDLE port; + /* A lock to cover internal structures. */ + CRITICAL_SECTION lock; + /** Number of threads ever open on the port. */ + short n_threads; + /** True iff we're shutting down all the threads on this port */ + short shutdown; + /** How often the threads on this port check for shutdown and other + * conditions */ + long ms; + /* The threads that are waiting for events. */ + HANDLE *threads; + /** Number of threads currently open on this port. */ + short n_live_threads; + /** A semaphore to signal when we are done shutting down. */ + HANDLE *shutdownSemaphore; +}; + +const struct win32_extension_fns *event_get_win32_extension_fns_(void); +#else +/* Dummy definition so we can test-compile more things on unix. */ +struct event_overlapped { + iocp_callback cb; +}; +#endif + +/** Initialize the fields in an event_overlapped. + + @param overlapped The struct event_overlapped to initialize + @param cb The callback that should be invoked once the IO operation has + finished. + */ +void event_overlapped_init_(struct event_overlapped *, iocp_callback cb); + +/** Allocate and return a new evbuffer that supports overlapped IO on a given + socket. The socket must be associated with an IO completion port using + event_iocp_port_associate_. +*/ +struct evbuffer *evbuffer_overlapped_new_(evutil_socket_t fd); + +/** XXXX Document (nickm) */ +evutil_socket_t evbuffer_overlapped_get_fd_(struct evbuffer *buf); + +void evbuffer_overlapped_set_fd_(struct evbuffer *buf, evutil_socket_t fd); + +/** Start reading data onto the end of an overlapped evbuffer. + + An evbuffer can only have one read pending at a time. While the read + is in progress, no other data may be added to the end of the buffer. + The buffer must be created with event_overlapped_init_(). + evbuffer_commit_read_() must be called in the completion callback. + + @param buf The buffer to read onto + @param n The number of bytes to try to read. + @param ol Overlapped object with associated completion callback. + @return 0 on success, -1 on error. + */ +int evbuffer_launch_read_(struct evbuffer *buf, size_t n, struct event_overlapped *ol); + +/** Start writing data from the start of an evbuffer. + + An evbuffer can only have one write pending at a time. While the write is + in progress, no other data may be removed from the front of the buffer. + The buffer must be created with event_overlapped_init_(). + evbuffer_commit_write_() must be called in the completion callback. + + @param buf The buffer to read onto + @param n The number of bytes to try to read. + @param ol Overlapped object with associated completion callback. + @return 0 on success, -1 on error. + */ +int evbuffer_launch_write_(struct evbuffer *buf, ev_ssize_t n, struct event_overlapped *ol); + +/** XXX document */ +void evbuffer_commit_read_(struct evbuffer *, ev_ssize_t); +void evbuffer_commit_write_(struct evbuffer *, ev_ssize_t); + +/** Create an IOCP, and launch its worker threads. Internal use only. + + This interface is unstable, and will change. + */ +struct event_iocp_port *event_iocp_port_launch_(int n_cpus); + +/** Associate a file descriptor with an iocp, such that overlapped IO on the + fd will happen on one of the iocp's worker threads. +*/ +int event_iocp_port_associate_(struct event_iocp_port *port, evutil_socket_t fd, + ev_uintptr_t key); + +/** Tell all threads serving an iocp to stop. Wait for up to waitMsec for all + the threads to finish whatever they're doing. If waitMsec is -1, wait + as long as required. If all the threads are done, free the port and return + 0. Otherwise, return -1. If you get a -1 return value, it is safe to call + this function again. +*/ +int event_iocp_shutdown_(struct event_iocp_port *port, long waitMsec); + +/* FIXME document. */ +int event_iocp_activate_overlapped_(struct event_iocp_port *port, + struct event_overlapped *o, + ev_uintptr_t key, ev_uint32_t n_bytes); + +struct event_base; +/* FIXME document. */ +struct event_iocp_port *event_base_get_iocp_(struct event_base *base); + +/* FIXME document. */ +int event_base_start_iocp_(struct event_base *base, int n_cpus); +void event_base_stop_iocp_(struct event_base *base); + +/* FIXME document. */ +struct bufferevent *bufferevent_async_new_(struct event_base *base, + evutil_socket_t fd, int options); + +/* FIXME document. */ +void bufferevent_async_set_connected_(struct bufferevent *bev); +int bufferevent_async_can_connect_(struct bufferevent *bev); +int bufferevent_async_connect_(struct bufferevent *bev, evutil_socket_t fd, + const struct sockaddr *sa, int socklen); + +#ifdef __cplusplus +} +#endif + +#endif diff -Nru mysql-5.7-5.7.25/extra/libevent/ipv6-internal.h mysql-5.7-5.7.26/extra/libevent/ipv6-internal.h --- mysql-5.7-5.7.25/extra/libevent/ipv6-internal.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/ipv6-internal.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,83 @@ +/* + * Copyright (c) 2009-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ + +/* Internal use only: Fake IPv6 structures and values on platforms that + * do not have them */ + +#ifndef IPV6_INTERNAL_H_INCLUDED_ +#define IPV6_INTERNAL_H_INCLUDED_ + +#include "event2/event-config.h" +#include "evconfig-private.h" + +#include +#ifdef EVENT__HAVE_SYS_SOCKET_H +#include +#endif +#include "event2/util.h" + +#ifdef __cplusplus +extern "C" { +#endif + +/** @file ipv6-internal.h + * + * Replacement types and functions for platforms that don't support ipv6 + * properly. + */ + +#ifndef EVENT__HAVE_STRUCT_IN6_ADDR +struct in6_addr { + ev_uint8_t s6_addr[16]; +}; +#endif + +#ifndef EVENT__HAVE_SA_FAMILY_T +typedef int sa_family_t; +#endif + +#ifndef EVENT__HAVE_STRUCT_SOCKADDR_IN6 +struct sockaddr_in6 { + /* This will fail if we find a struct sockaddr that doesn't have + * sa_family as the first element. */ + sa_family_t sin6_family; + ev_uint16_t sin6_port; + struct in6_addr sin6_addr; +}; +#endif + +#ifndef AF_INET6 +#define AF_INET6 3333 +#endif +#ifndef PF_INET6 +#define PF_INET6 AF_INET6 +#endif + +#ifdef __cplusplus +} +#endif + +#endif diff -Nru mysql-5.7-5.7.25/extra/libevent/kqueue.c mysql-5.7-5.7.26/extra/libevent/kqueue.c --- mysql-5.7-5.7.25/extra/libevent/kqueue.c 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/kqueue.c 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,567 @@ +/* $OpenBSD: kqueue.c,v 1.5 2002/07/10 14:41:31 art Exp $ */ + +/* + * Copyright 2000-2007 Niels Provos + * Copyright 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#include "event2/event-config.h" +#include "evconfig-private.h" + +#ifdef EVENT__HAVE_KQUEUE + +#include +#ifdef EVENT__HAVE_SYS_TIME_H +#include +#endif +#include +#include +#include +#include +#include +#include +#include +#include +#ifdef EVENT__HAVE_INTTYPES_H +#include +#endif + +/* Some platforms apparently define the udata field of struct kevent as + * intptr_t, whereas others define it as void*. There doesn't seem to be an + * easy way to tell them apart via autoconf, so we need to use OS macros. */ +#if defined(EVENT__HAVE_INTTYPES_H) && !defined(__OpenBSD__) && !defined(__FreeBSD__) && !defined(__darwin__) && !defined(__APPLE__) && !defined(__CloudABI__) +#define PTR_TO_UDATA(x) ((intptr_t)(x)) +#define INT_TO_UDATA(x) ((intptr_t)(x)) +#else +#define PTR_TO_UDATA(x) (x) +#define INT_TO_UDATA(x) ((void*)(x)) +#endif + +#include "event-internal.h" +#include "log-internal.h" +#include "evmap-internal.h" +#include "event2/thread.h" +#include "evthread-internal.h" +#include "changelist-internal.h" + +#include "kqueue-internal.h" + +#define NEVENT 64 + +struct kqop { + struct kevent *changes; + int changes_size; + + struct kevent *events; + int events_size; + int kq; + int notify_event_added; + pid_t pid; +}; + +static void kqop_free(struct kqop *kqop); + +static void *kq_init(struct event_base *); +static int kq_sig_add(struct event_base *, int, short, short, void *); +static int kq_sig_del(struct event_base *, int, short, short, void *); +static int kq_dispatch(struct event_base *, struct timeval *); +static void kq_dealloc(struct event_base *); + +const struct eventop kqops = { + "kqueue", + kq_init, + event_changelist_add_, + event_changelist_del_, + kq_dispatch, + kq_dealloc, + 1 /* need reinit */, + EV_FEATURE_ET|EV_FEATURE_O1|EV_FEATURE_FDS, + EVENT_CHANGELIST_FDINFO_SIZE +}; + +static const struct eventop kqsigops = { + "kqueue_signal", + NULL, + kq_sig_add, + kq_sig_del, + NULL, + NULL, + 1 /* need reinit */, + 0, + 0 +}; + +static void * +kq_init(struct event_base *base) +{ + int kq = -1; + struct kqop *kqueueop = NULL; + + if (!(kqueueop = mm_calloc(1, sizeof(struct kqop)))) + return (NULL); + +/* Initialize the kernel queue */ + + if ((kq = kqueue()) == -1) { + event_warn("kqueue"); + goto err; + } + + kqueueop->kq = kq; + + kqueueop->pid = getpid(); + + /* Initialize fields */ + kqueueop->changes = mm_calloc(NEVENT, sizeof(struct kevent)); + if (kqueueop->changes == NULL) + goto err; + kqueueop->events = mm_calloc(NEVENT, sizeof(struct kevent)); + if (kqueueop->events == NULL) + goto err; + kqueueop->events_size = kqueueop->changes_size = NEVENT; + + /* Check for Mac OS X kqueue bug. */ + memset(&kqueueop->changes[0], 0, sizeof kqueueop->changes[0]); + kqueueop->changes[0].ident = -1; + kqueueop->changes[0].filter = EVFILT_READ; + kqueueop->changes[0].flags = EV_ADD; + /* + * If kqueue works, then kevent will succeed, and it will + * stick an error in events[0]. If kqueue is broken, then + * kevent will fail. + */ + if (kevent(kq, + kqueueop->changes, 1, kqueueop->events, NEVENT, NULL) != 1 || + (int)kqueueop->events[0].ident != -1 || + !(kqueueop->events[0].flags & EV_ERROR)) { + event_warn("%s: detected broken kqueue; not using.", __func__); + goto err; + } + + base->evsigsel = &kqsigops; + + return (kqueueop); +err: + if (kqueueop) + kqop_free(kqueueop); + + return (NULL); +} + +#define ADD_UDATA 0x30303 + +static void +kq_setup_kevent(struct kevent *out, evutil_socket_t fd, int filter, short change) +{ + memset(out, 0, sizeof(struct kevent)); + out->ident = fd; + out->filter = filter; + + if (change & EV_CHANGE_ADD) { + out->flags = EV_ADD; + /* We set a magic number here so that we can tell 'add' + * errors from 'del' errors. */ + out->udata = INT_TO_UDATA(ADD_UDATA); + if (change & EV_ET) + out->flags |= EV_CLEAR; +#ifdef NOTE_EOF + /* Make it behave like select() and poll() */ + if (filter == EVFILT_READ) + out->fflags = NOTE_EOF; +#endif + } else { + EVUTIL_ASSERT(change & EV_CHANGE_DEL); + out->flags = EV_DELETE; + } +} + +static int +kq_build_changes_list(const struct event_changelist *changelist, + struct kqop *kqop) +{ + int i; + int n_changes = 0; + + for (i = 0; i < changelist->n_changes; ++i) { + struct event_change *in_ch = &changelist->changes[i]; + struct kevent *out_ch; + if (n_changes >= kqop->changes_size - 1) { + int newsize = kqop->changes_size * 2; + struct kevent *newchanges; + + newchanges = mm_realloc(kqop->changes, + newsize * sizeof(struct kevent)); + if (newchanges == NULL) { + event_warn("%s: realloc", __func__); + return (-1); + } + kqop->changes = newchanges; + kqop->changes_size = newsize; + } + if (in_ch->read_change) { + out_ch = &kqop->changes[n_changes++]; + kq_setup_kevent(out_ch, in_ch->fd, EVFILT_READ, + in_ch->read_change); + } + if (in_ch->write_change) { + out_ch = &kqop->changes[n_changes++]; + kq_setup_kevent(out_ch, in_ch->fd, EVFILT_WRITE, + in_ch->write_change); + } + } + return n_changes; +} + +static int +kq_grow_events(struct kqop *kqop, size_t new_size) +{ + struct kevent *newresult; + + newresult = mm_realloc(kqop->events, + new_size * sizeof(struct kevent)); + + if (newresult) { + kqop->events = newresult; + kqop->events_size = new_size; + return 0; + } else { + return -1; + } +} + +static int +kq_dispatch(struct event_base *base, struct timeval *tv) +{ + struct kqop *kqop = base->evbase; + struct kevent *events = kqop->events; + struct kevent *changes; + struct timespec ts, *ts_p = NULL; + int i, n_changes, res; + + if (tv != NULL) { + ts.tv_sec = tv->tv_sec; + ts.tv_nsec = tv->tv_usec * 1000; + ts_p = &ts; + } + + /* Build "changes" from "base->changes" */ + EVUTIL_ASSERT(kqop->changes); + n_changes = kq_build_changes_list(&base->changelist, kqop); + if (n_changes < 0) + return -1; + + event_changelist_remove_all_(&base->changelist, base); + + /* steal the changes array in case some broken code tries to call + * dispatch twice at once. */ + changes = kqop->changes; + kqop->changes = NULL; + + /* Make sure that 'events' is at least as long as the list of changes: + * otherwise errors in the changes can get reported as a -1 return + * value from kevent() rather than as EV_ERROR events in the events + * array. + * + * (We could instead handle -1 return values from kevent() by + * retrying with a smaller changes array or a larger events array, + * but this approach seems less risky for now.) + */ + if (kqop->events_size < n_changes) { + int new_size = kqop->events_size; + do { + new_size *= 2; + } while (new_size < n_changes); + + kq_grow_events(kqop, new_size); + events = kqop->events; + } + + EVBASE_RELEASE_LOCK(base, th_base_lock); + + res = kevent(kqop->kq, changes, n_changes, + events, kqop->events_size, ts_p); + + EVBASE_ACQUIRE_LOCK(base, th_base_lock); + + EVUTIL_ASSERT(kqop->changes == NULL); + kqop->changes = changes; + + if (res == -1) { + if (errno != EINTR) { + event_warn("kevent"); + return (-1); + } + + return (0); + } + + event_debug(("%s: kevent reports %d", __func__, res)); + + for (i = 0; i < res; i++) { + int which = 0; + + if (events[i].flags & EV_ERROR) { + switch (events[i].data) { + + /* Can occur on delete if we are not currently + * watching any events on this fd. That can + * happen when the fd was closed and another + * file was opened with that fd. */ + case ENOENT: + /* Can occur for reasons not fully understood + * on FreeBSD. */ + case EINVAL: + continue; +#if defined(__FreeBSD__) + /* + * This currently occurs if an FD is closed + * before the EV_DELETE makes it out via kevent(). + * The FreeBSD capabilities code sees the blank + * capability set and rejects the request to + * modify an event. + * + * To be strictly correct - when an FD is closed, + * all the registered events are also removed. + * Queuing EV_DELETE to a closed FD is wrong. + * The event(s) should just be deleted from + * the pending changelist. + */ + case ENOTCAPABLE: + continue; +#endif + + /* Can occur on a delete if the fd is closed. */ + case EBADF: + /* XXXX On NetBSD, we can also get EBADF if we + * try to add the write side of a pipe, but + * the read side has already been closed. + * Other BSDs call this situation 'EPIPE'. It + * would be good if we had a way to report + * this situation. */ + continue; + /* These two can occur on an add if the fd was one side + * of a pipe, and the other side was closed. */ + case EPERM: + case EPIPE: + /* Report read events, if we're listening for + * them, so that the user can learn about any + * add errors. (If the operation was a + * delete, then udata should be cleared.) */ + if (events[i].udata) { + /* The operation was an add: + * report the error as a read. */ + which |= EV_READ; + break; + } else { + /* The operation was a del: + * report nothing. */ + continue; + } + + /* Other errors shouldn't occur. */ + default: + errno = events[i].data; + return (-1); + } + } else if (events[i].filter == EVFILT_READ) { + which |= EV_READ; + } else if (events[i].filter == EVFILT_WRITE) { + which |= EV_WRITE; + } else if (events[i].filter == EVFILT_SIGNAL) { + which |= EV_SIGNAL; +#ifdef EVFILT_USER + } else if (events[i].filter == EVFILT_USER) { + base->is_notify_pending = 0; +#endif + } + + if (!which) + continue; + + if (events[i].filter == EVFILT_SIGNAL) { + evmap_signal_active_(base, events[i].ident, 1); + } else { + evmap_io_active_(base, events[i].ident, which | EV_ET); + } + } + + if (res == kqop->events_size) { + /* We used all the events space that we have. Maybe we should + make it bigger. */ + kq_grow_events(kqop, kqop->events_size * 2); + } + + return (0); +} + +static void +kqop_free(struct kqop *kqop) +{ + if (kqop->changes) + mm_free(kqop->changes); + if (kqop->events) + mm_free(kqop->events); + if (kqop->kq >= 0 && kqop->pid == getpid()) + close(kqop->kq); + memset(kqop, 0, sizeof(struct kqop)); + mm_free(kqop); +} + +static void +kq_dealloc(struct event_base *base) +{ + struct kqop *kqop = base->evbase; + evsig_dealloc_(base); + kqop_free(kqop); +} + +/* signal handling */ +static int +kq_sig_add(struct event_base *base, int nsignal, short old, short events, void *p) +{ + struct kqop *kqop = base->evbase; + struct kevent kev; + struct timespec timeout = { 0, 0 }; + (void)p; + + EVUTIL_ASSERT(nsignal >= 0 && nsignal < NSIG); + + memset(&kev, 0, sizeof(kev)); + kev.ident = nsignal; + kev.filter = EVFILT_SIGNAL; + kev.flags = EV_ADD; + + /* Be ready for the signal if it is sent any + * time between now and the next call to + * kq_dispatch. */ + if (kevent(kqop->kq, &kev, 1, NULL, 0, &timeout) == -1) + return (-1); + + /* We can set the handler for most signals to SIG_IGN and + * still have them reported to us in the queue. However, + * if the handler for SIGCHLD is SIG_IGN, the system reaps + * zombie processes for us, and we don't get any notification. + * This appears to be the only signal with this quirk. */ + if (evsig_set_handler_(base, nsignal, + nsignal == SIGCHLD ? SIG_DFL : SIG_IGN) == -1) + return (-1); + + return (0); +} + +static int +kq_sig_del(struct event_base *base, int nsignal, short old, short events, void *p) +{ + struct kqop *kqop = base->evbase; + struct kevent kev; + + struct timespec timeout = { 0, 0 }; + (void)p; + + EVUTIL_ASSERT(nsignal >= 0 && nsignal < NSIG); + + memset(&kev, 0, sizeof(kev)); + kev.ident = nsignal; + kev.filter = EVFILT_SIGNAL; + kev.flags = EV_DELETE; + + /* Because we insert signal events + * immediately, we need to delete them + * immediately, too */ + if (kevent(kqop->kq, &kev, 1, NULL, 0, &timeout) == -1) + return (-1); + + if (evsig_restore_handler_(base, nsignal) == -1) + return (-1); + + return (0); +} + + +/* OSX 10.6 and FreeBSD 8.1 add support for EVFILT_USER, which we can use + * to wake up the event loop from another thread. */ + +/* Magic number we use for our filter ID. */ +#define NOTIFY_IDENT 42 + +int +event_kq_add_notify_event_(struct event_base *base) +{ + struct kqop *kqop = base->evbase; +#if defined(EVFILT_USER) && defined(NOTE_TRIGGER) + struct kevent kev; + struct timespec timeout = { 0, 0 }; +#endif + + if (kqop->notify_event_added) + return 0; + +#if defined(EVFILT_USER) && defined(NOTE_TRIGGER) + memset(&kev, 0, sizeof(kev)); + kev.ident = NOTIFY_IDENT; + kev.filter = EVFILT_USER; + kev.flags = EV_ADD | EV_CLEAR; + + if (kevent(kqop->kq, &kev, 1, NULL, 0, &timeout) == -1) { + event_warn("kevent: adding EVFILT_USER event"); + return -1; + } + + kqop->notify_event_added = 1; + + return 0; +#else + return -1; +#endif +} + +int +event_kq_notify_base_(struct event_base *base) +{ + struct kqop *kqop = base->evbase; +#if defined(EVFILT_USER) && defined(NOTE_TRIGGER) + struct kevent kev; + struct timespec timeout = { 0, 0 }; +#endif + if (! kqop->notify_event_added) + return -1; + +#if defined(EVFILT_USER) && defined(NOTE_TRIGGER) + memset(&kev, 0, sizeof(kev)); + kev.ident = NOTIFY_IDENT; + kev.filter = EVFILT_USER; + kev.fflags = NOTE_TRIGGER; + + if (kevent(kqop->kq, &kev, 1, NULL, 0, &timeout) == -1) { + event_warn("kevent: triggering EVFILT_USER event"); + return -1; + } + + return 0; +#else + return -1; +#endif +} + +#endif /* EVENT__HAVE_KQUEUE */ diff -Nru mysql-5.7-5.7.25/extra/libevent/kqueue-internal.h mysql-5.7-5.7.26/extra/libevent/kqueue-internal.h --- mysql-5.7-5.7.25/extra/libevent/kqueue-internal.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/kqueue-internal.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,39 @@ +/* + * Copyright (c) 2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef KQUEUE_INTERNAL_H_INCLUDED_ +#define KQUEUE_INTERNAL_H_INCLUDED_ + +/** Notification function, used to tell an event base to wake up from another + * thread. Only works when event_kq_add_notify_event_() has previously been + * called successfully on that base. */ +int event_kq_notify_base_(struct event_base *base); + +/** Prepare a kqueue-using event base to receive notifications via an internal + * EVFILT_USER event. Return 0 on sucess, -1 on failure. + */ +int event_kq_add_notify_event_(struct event_base *base); + +#endif diff -Nru mysql-5.7-5.7.25/extra/libevent/libevent_core.pc.in mysql-5.7-5.7.26/extra/libevent/libevent_core.pc.in --- mysql-5.7-5.7.25/extra/libevent/libevent_core.pc.in 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/libevent_core.pc.in 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,16 @@ +#libevent pkg-config source file + +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@ + +Name: libevent_core +Description: libevent_core +Version: @VERSION@ +Requires: +Conflicts: +Libs: -L${libdir} -levent_core +Libs.private: @LIBS@ +Cflags: -I${includedir} + diff -Nru mysql-5.7-5.7.25/extra/libevent/libevent_extra.pc.in mysql-5.7-5.7.26/extra/libevent/libevent_extra.pc.in --- mysql-5.7-5.7.25/extra/libevent/libevent_extra.pc.in 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/libevent_extra.pc.in 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,16 @@ +#libevent pkg-config source file + +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@ + +Name: libevent_extra +Description: libevent_extra +Version: @VERSION@ +Requires: +Conflicts: +Libs: -L${libdir} -levent_extra +Libs.private: @LIBS@ +Cflags: -I${includedir} + diff -Nru mysql-5.7-5.7.25/extra/libevent/libevent_openssl.pc.in mysql-5.7-5.7.26/extra/libevent/libevent_openssl.pc.in --- mysql-5.7-5.7.25/extra/libevent/libevent_openssl.pc.in 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/libevent_openssl.pc.in 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,16 @@ +#libevent pkg-config source file + +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@ + +Name: libevent_openssl +Description: libevent_openssl adds openssl-based TLS support to libevent +Version: @VERSION@ +Requires: libevent +Conflicts: +Libs: -L${libdir} -levent_openssl +Libs.private: @LIBS@ @OPENSSL_LIBS@ +Cflags: -I${includedir} @OPENSSL_INCS@ + diff -Nru mysql-5.7-5.7.25/extra/libevent/libevent.pc.in mysql-5.7-5.7.26/extra/libevent/libevent.pc.in --- mysql-5.7-5.7.25/extra/libevent/libevent.pc.in 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/libevent.pc.in 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,16 @@ +#libevent pkg-config source file + +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@ + +Name: libevent +Description: libevent is an asynchronous notification event loop library +Version: @VERSION@ +Requires: +Conflicts: +Libs: -L${libdir} -levent +Libs.private: @LIBS@ +Cflags: -I${includedir} + diff -Nru mysql-5.7-5.7.25/extra/libevent/libevent_pthreads.pc.in mysql-5.7-5.7.26/extra/libevent/libevent_pthreads.pc.in --- mysql-5.7-5.7.25/extra/libevent/libevent_pthreads.pc.in 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/libevent_pthreads.pc.in 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,16 @@ +#libevent pkg-config source file + +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@ + +Name: libevent_pthreads +Description: libevent_pthreads adds pthreads-based threading support to libevent +Version: @VERSION@ +Requires: libevent +Conflicts: +Libs: -L${libdir} -levent_pthreads +Libs.private: @LIBS@ @PTHREAD_LIBS@ +Cflags: -I${includedir} @PTHREAD_CFLAGS@ + diff -Nru mysql-5.7-5.7.25/extra/libevent/LICENSE mysql-5.7-5.7.26/extra/libevent/LICENSE --- mysql-5.7-5.7.25/extra/libevent/LICENSE 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/LICENSE 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,99 @@ +Libevent is available for use under the following license, commonly known +as the 3-clause (or "modified") BSD license: + +============================== +Copyright (c) 2000-2007 Niels Provos +Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + +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. The name of the author may not be used to endorse or promote products + derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. +============================== + +Portions of Libevent are based on works by others, also made available by +them under the three-clause BSD license above. The copyright notices are +available in the corresponding source files; the license is as above. Here's +a list: + +log.c: + Copyright (c) 2000 Dug Song + Copyright (c) 1993 The Regents of the University of California. + +strlcpy.c: + Copyright (c) 1998 Todd C. Miller + +win32select.c: + Copyright (c) 2003 Michael A. Davis + +evport.c: + Copyright (c) 2007 Sun Microsystems + +ht-internal.h: + Copyright (c) 2002 Christopher Clark + +minheap-internal.h: + Copyright (c) 2006 Maxim Yegorushkin + +============================== + +The arc4module is available under the following, sometimes called the +"OpenBSD" license: + + Copyright (c) 1996, David Mazieres + Copyright (c) 2008, Damien Miller + + Permission to use, copy, modify, and distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +============================== + +The Windows timer code is based on code from libutp, which is +distributed under this license, sometimes called the "MIT" license. + + +Copyright (c) 2010 BitTorrent, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff -Nru mysql-5.7-5.7.25/extra/libevent/listener.c mysql-5.7-5.7.26/extra/libevent/listener.c --- mysql-5.7-5.7.25/extra/libevent/listener.c 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/listener.c 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,890 @@ +/* + * Copyright (c) 2009-2012 Niels Provos, Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ + +#include "event2/event-config.h" +#include "evconfig-private.h" + +#include + +#ifdef _WIN32 +#ifndef _WIN32_WINNT +/* Minimum required for InitializeCriticalSectionAndSpinCount */ +#define _WIN32_WINNT 0x0403 +#endif +#include +#include +#include +#endif +#include +#ifdef EVENT__HAVE_SYS_SOCKET_H +#include +#endif +#ifdef EVENT__HAVE_FCNTL_H +#include +#endif +#ifdef EVENT__HAVE_UNISTD_H +#include +#endif + +#include "event2/listener.h" +#include "event2/util.h" +#include "event2/event.h" +#include "event2/event_struct.h" +#include "mm-internal.h" +#include "util-internal.h" +#include "log-internal.h" +#include "evthread-internal.h" +#ifdef _WIN32 +#include "iocp-internal.h" +#include "defer-internal.h" +#include "event-internal.h" +#endif + +struct evconnlistener_ops { + int (*enable)(struct evconnlistener *); + int (*disable)(struct evconnlistener *); + void (*destroy)(struct evconnlistener *); + void (*shutdown)(struct evconnlistener *); + evutil_socket_t (*getfd)(struct evconnlistener *); + struct event_base *(*getbase)(struct evconnlistener *); +}; + +struct evconnlistener { + const struct evconnlistener_ops *ops; + void *lock; + evconnlistener_cb cb; + evconnlistener_errorcb errorcb; + void *user_data; + unsigned flags; + short refcnt; + int accept4_flags; + unsigned enabled : 1; +}; + +struct evconnlistener_event { + struct evconnlistener base; + struct event listener; +}; + +#ifdef _WIN32 +struct evconnlistener_iocp { + struct evconnlistener base; + evutil_socket_t fd; + struct event_base *event_base; + struct event_iocp_port *port; + short n_accepting; + unsigned shutting_down : 1; + unsigned event_added : 1; + struct accepting_socket **accepting; +}; +#endif + +#define LOCK(listener) EVLOCK_LOCK((listener)->lock, 0) +#define UNLOCK(listener) EVLOCK_UNLOCK((listener)->lock, 0) + +struct evconnlistener * +evconnlistener_new_async(struct event_base *base, + evconnlistener_cb cb, void *ptr, unsigned flags, int backlog, + evutil_socket_t fd); /* XXXX export this? */ + +static int event_listener_enable(struct evconnlistener *); +static int event_listener_disable(struct evconnlistener *); +static void event_listener_destroy(struct evconnlistener *); +static evutil_socket_t event_listener_getfd(struct evconnlistener *); +static struct event_base *event_listener_getbase(struct evconnlistener *); + +#if 0 +static void +listener_incref_and_lock(struct evconnlistener *listener) +{ + LOCK(listener); + ++listener->refcnt; +} +#endif + +static int +listener_decref_and_unlock(struct evconnlistener *listener) +{ + int refcnt = --listener->refcnt; + if (refcnt == 0) { + listener->ops->destroy(listener); + UNLOCK(listener); + EVTHREAD_FREE_LOCK(listener->lock, EVTHREAD_LOCKTYPE_RECURSIVE); + mm_free(listener); + return 1; + } else { + UNLOCK(listener); + return 0; + } +} + +static const struct evconnlistener_ops evconnlistener_event_ops = { + event_listener_enable, + event_listener_disable, + event_listener_destroy, + NULL, /* shutdown */ + event_listener_getfd, + event_listener_getbase +}; + +static void listener_read_cb(evutil_socket_t, short, void *); + +struct evconnlistener * +evconnlistener_new(struct event_base *base, + evconnlistener_cb cb, void *ptr, unsigned flags, int backlog, + evutil_socket_t fd) +{ + struct evconnlistener_event *lev; + +#ifdef _WIN32 + if (base && event_base_get_iocp_(base)) { + const struct win32_extension_fns *ext = + event_get_win32_extension_fns_(); + if (ext->AcceptEx && ext->GetAcceptExSockaddrs) + return evconnlistener_new_async(base, cb, ptr, flags, + backlog, fd); + } +#endif + + if (backlog > 0) { + if (listen(fd, backlog) < 0) + return NULL; + } else if (backlog < 0) { + if (listen(fd, 128) < 0) + return NULL; + } + + lev = mm_calloc(1, sizeof(struct evconnlistener_event)); + if (!lev) + return NULL; + + lev->base.ops = &evconnlistener_event_ops; + lev->base.cb = cb; + lev->base.user_data = ptr; + lev->base.flags = flags; + lev->base.refcnt = 1; + + lev->base.accept4_flags = 0; + if (!(flags & LEV_OPT_LEAVE_SOCKETS_BLOCKING)) + lev->base.accept4_flags |= EVUTIL_SOCK_NONBLOCK; + if (flags & LEV_OPT_CLOSE_ON_EXEC) + lev->base.accept4_flags |= EVUTIL_SOCK_CLOEXEC; + + if (flags & LEV_OPT_THREADSAFE) { + EVTHREAD_ALLOC_LOCK(lev->base.lock, EVTHREAD_LOCKTYPE_RECURSIVE); + } + + event_assign(&lev->listener, base, fd, EV_READ|EV_PERSIST, + listener_read_cb, lev); + + if (!(flags & LEV_OPT_DISABLED)) + evconnlistener_enable(&lev->base); + + return &lev->base; +} + +struct evconnlistener * +evconnlistener_new_bind(struct event_base *base, evconnlistener_cb cb, + void *ptr, unsigned flags, int backlog, const struct sockaddr *sa, + int socklen) +{ + struct evconnlistener *listener; + evutil_socket_t fd; + int on = 1; + int family = sa ? sa->sa_family : AF_UNSPEC; + int socktype = SOCK_STREAM | EVUTIL_SOCK_NONBLOCK; + + if (backlog == 0) + return NULL; + + if (flags & LEV_OPT_CLOSE_ON_EXEC) + socktype |= EVUTIL_SOCK_CLOEXEC; + + fd = evutil_socket_(family, socktype, 0); + if (fd == -1) + return NULL; + + if (setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, (void*)&on, sizeof(on))<0) + goto err; + + if (flags & LEV_OPT_REUSEABLE) { + if (evutil_make_listen_socket_reuseable(fd) < 0) + goto err; + } + + if (flags & LEV_OPT_REUSEABLE_PORT) { + if (evutil_make_listen_socket_reuseable_port(fd) < 0) + goto err; + } + + if (flags & LEV_OPT_DEFERRED_ACCEPT) { + if (evutil_make_tcp_listen_socket_deferred(fd) < 0) + goto err; + } + + if (sa) { + if (bind(fd, sa, socklen)<0) + goto err; + } + + listener = evconnlistener_new(base, cb, ptr, flags, backlog, fd); + if (!listener) + goto err; + + return listener; +err: + evutil_closesocket(fd); + return NULL; +} + +void +evconnlistener_free(struct evconnlistener *lev) +{ + LOCK(lev); + lev->cb = NULL; + lev->errorcb = NULL; + if (lev->ops->shutdown) + lev->ops->shutdown(lev); + listener_decref_and_unlock(lev); +} + +static void +event_listener_destroy(struct evconnlistener *lev) +{ + struct evconnlistener_event *lev_e = + EVUTIL_UPCAST(lev, struct evconnlistener_event, base); + + event_del(&lev_e->listener); + if (lev->flags & LEV_OPT_CLOSE_ON_FREE) + evutil_closesocket(event_get_fd(&lev_e->listener)); + event_debug_unassign(&lev_e->listener); +} + +int +evconnlistener_enable(struct evconnlistener *lev) +{ + int r; + LOCK(lev); + lev->enabled = 1; + if (lev->cb) + r = lev->ops->enable(lev); + else + r = 0; + UNLOCK(lev); + return r; +} + +int +evconnlistener_disable(struct evconnlistener *lev) +{ + int r; + LOCK(lev); + lev->enabled = 0; + r = lev->ops->disable(lev); + UNLOCK(lev); + return r; +} + +static int +event_listener_enable(struct evconnlistener *lev) +{ + struct evconnlistener_event *lev_e = + EVUTIL_UPCAST(lev, struct evconnlistener_event, base); + return event_add(&lev_e->listener, NULL); +} + +static int +event_listener_disable(struct evconnlistener *lev) +{ + struct evconnlistener_event *lev_e = + EVUTIL_UPCAST(lev, struct evconnlistener_event, base); + return event_del(&lev_e->listener); +} + +evutil_socket_t +evconnlistener_get_fd(struct evconnlistener *lev) +{ + evutil_socket_t fd; + LOCK(lev); + fd = lev->ops->getfd(lev); + UNLOCK(lev); + return fd; +} + +static evutil_socket_t +event_listener_getfd(struct evconnlistener *lev) +{ + struct evconnlistener_event *lev_e = + EVUTIL_UPCAST(lev, struct evconnlistener_event, base); + return event_get_fd(&lev_e->listener); +} + +struct event_base * +evconnlistener_get_base(struct evconnlistener *lev) +{ + struct event_base *base; + LOCK(lev); + base = lev->ops->getbase(lev); + UNLOCK(lev); + return base; +} + +static struct event_base * +event_listener_getbase(struct evconnlistener *lev) +{ + struct evconnlistener_event *lev_e = + EVUTIL_UPCAST(lev, struct evconnlistener_event, base); + return event_get_base(&lev_e->listener); +} + +void +evconnlistener_set_cb(struct evconnlistener *lev, + evconnlistener_cb cb, void *arg) +{ + int enable = 0; + LOCK(lev); + if (lev->enabled && !lev->cb) + enable = 1; + lev->cb = cb; + lev->user_data = arg; + if (enable) + evconnlistener_enable(lev); + UNLOCK(lev); +} + +void +evconnlistener_set_error_cb(struct evconnlistener *lev, + evconnlistener_errorcb errorcb) +{ + LOCK(lev); + lev->errorcb = errorcb; + UNLOCK(lev); +} + +static void +listener_read_cb(evutil_socket_t fd, short what, void *p) +{ + struct evconnlistener *lev = p; + int err; + evconnlistener_cb cb; + evconnlistener_errorcb errorcb; + void *user_data; + LOCK(lev); + while (1) { + struct sockaddr_storage ss; + ev_socklen_t socklen = sizeof(ss); + evutil_socket_t new_fd = evutil_accept4_(fd, (struct sockaddr*)&ss, &socklen, lev->accept4_flags); + if (new_fd < 0) + break; + if (socklen == 0) { + /* This can happen with some older linux kernels in + * response to nmap. */ + evutil_closesocket(new_fd); + continue; + } + + if (lev->cb == NULL) { + evutil_closesocket(new_fd); + UNLOCK(lev); + return; + } + ++lev->refcnt; + cb = lev->cb; + user_data = lev->user_data; + UNLOCK(lev); + cb(lev, new_fd, (struct sockaddr*)&ss, (int)socklen, + user_data); + LOCK(lev); + if (lev->refcnt == 1) { + int freed = listener_decref_and_unlock(lev); + EVUTIL_ASSERT(freed); + + evutil_closesocket(new_fd); + return; + } + --lev->refcnt; + } + err = evutil_socket_geterror(fd); + if (EVUTIL_ERR_ACCEPT_RETRIABLE(err)) { + UNLOCK(lev); + return; + } + if (lev->errorcb != NULL) { + ++lev->refcnt; + errorcb = lev->errorcb; + user_data = lev->user_data; + UNLOCK(lev); + errorcb(lev, user_data); + LOCK(lev); + listener_decref_and_unlock(lev); + } else { + event_sock_warn(fd, "Error from accept() call"); + UNLOCK(lev); + } +} + +#ifdef _WIN32 +struct accepting_socket { + CRITICAL_SECTION lock; + struct event_overlapped overlapped; + SOCKET s; + int error; + struct event_callback deferred; + struct evconnlistener_iocp *lev; + ev_uint8_t buflen; + ev_uint8_t family; + unsigned free_on_cb:1; + char addrbuf[1]; +}; + +static void accepted_socket_cb(struct event_overlapped *o, ev_uintptr_t key, + ev_ssize_t n, int ok); +static void accepted_socket_invoke_user_cb(struct event_callback *cb, void *arg); + +static void +iocp_listener_event_add(struct evconnlistener_iocp *lev) +{ + if (lev->event_added) + return; + + lev->event_added = 1; + event_base_add_virtual_(lev->event_base); +} + +static void +iocp_listener_event_del(struct evconnlistener_iocp *lev) +{ + if (!lev->event_added) + return; + + lev->event_added = 0; + event_base_del_virtual_(lev->event_base); +} + +static struct accepting_socket * +new_accepting_socket(struct evconnlistener_iocp *lev, int family) +{ + struct accepting_socket *res; + int addrlen; + int buflen; + + if (family == AF_INET) + addrlen = sizeof(struct sockaddr_in); + else if (family == AF_INET6) + addrlen = sizeof(struct sockaddr_in6); + else + return NULL; + buflen = (addrlen+16)*2; + + res = mm_calloc(1,sizeof(struct accepting_socket)-1+buflen); + if (!res) + return NULL; + + event_overlapped_init_(&res->overlapped, accepted_socket_cb); + res->s = INVALID_SOCKET; + res->lev = lev; + res->buflen = buflen; + res->family = family; + + event_deferred_cb_init_(&res->deferred, + event_base_get_npriorities(lev->event_base) / 2, + accepted_socket_invoke_user_cb, res); + + InitializeCriticalSectionAndSpinCount(&res->lock, 1000); + + return res; +} + +static void +free_and_unlock_accepting_socket(struct accepting_socket *as) +{ + /* requires lock. */ + if (as->s != INVALID_SOCKET) + closesocket(as->s); + + LeaveCriticalSection(&as->lock); + DeleteCriticalSection(&as->lock); + mm_free(as); +} + +static int +start_accepting(struct accepting_socket *as) +{ + /* requires lock */ + const struct win32_extension_fns *ext = event_get_win32_extension_fns_(); + DWORD pending = 0; + SOCKET s = socket(as->family, SOCK_STREAM, 0); + int error = 0; + + if (!as->lev->base.enabled) + return 0; + + if (s == INVALID_SOCKET) { + error = WSAGetLastError(); + goto report_err; + } + + /* XXXX It turns out we need to do this again later. Does this call + * have any effect? */ + setsockopt(s, SOL_SOCKET, SO_UPDATE_ACCEPT_CONTEXT, + (char *)&as->lev->fd, sizeof(&as->lev->fd)); + + if (!(as->lev->base.flags & LEV_OPT_LEAVE_SOCKETS_BLOCKING)) + evutil_make_socket_nonblocking(s); + + if (event_iocp_port_associate_(as->lev->port, s, 1) < 0) { + closesocket(s); + return -1; + } + + as->s = s; + + if (ext->AcceptEx(as->lev->fd, s, as->addrbuf, 0, + as->buflen/2, as->buflen/2, &pending, &as->overlapped.overlapped)) + { + /* Immediate success! */ + accepted_socket_cb(&as->overlapped, 1, 0, 1); + } else { + error = WSAGetLastError(); + if (error != ERROR_IO_PENDING) { + goto report_err; + } + } + + return 0; + +report_err: + as->error = error; + event_deferred_cb_schedule_( + as->lev->event_base, + &as->deferred); + return 0; +} + +static void +stop_accepting(struct accepting_socket *as) +{ + /* requires lock. */ + SOCKET s = as->s; + as->s = INVALID_SOCKET; + closesocket(s); +} + +static void +accepted_socket_invoke_user_cb(struct event_callback *dcb, void *arg) +{ + struct accepting_socket *as = arg; + + struct sockaddr *sa_local=NULL, *sa_remote=NULL; + int socklen_local=0, socklen_remote=0; + const struct win32_extension_fns *ext = event_get_win32_extension_fns_(); + struct evconnlistener *lev = &as->lev->base; + evutil_socket_t sock=-1; + void *data; + evconnlistener_cb cb=NULL; + evconnlistener_errorcb errorcb=NULL; + int error; + + EVUTIL_ASSERT(ext->GetAcceptExSockaddrs); + + LOCK(lev); + EnterCriticalSection(&as->lock); + if (as->free_on_cb) { + free_and_unlock_accepting_socket(as); + listener_decref_and_unlock(lev); + return; + } + + ++lev->refcnt; + + error = as->error; + if (error) { + as->error = 0; + errorcb = lev->errorcb; + } else { + ext->GetAcceptExSockaddrs( + as->addrbuf, 0, as->buflen/2, as->buflen/2, + &sa_local, &socklen_local, &sa_remote, + &socklen_remote); + sock = as->s; + cb = lev->cb; + as->s = INVALID_SOCKET; + + /* We need to call this so getsockname, getpeername, and + * shutdown work correctly on the accepted socket. */ + /* XXXX handle error? */ + setsockopt(sock, SOL_SOCKET, SO_UPDATE_ACCEPT_CONTEXT, + (char *)&as->lev->fd, sizeof(&as->lev->fd)); + } + data = lev->user_data; + + LeaveCriticalSection(&as->lock); + UNLOCK(lev); + + if (errorcb) { + WSASetLastError(error); + errorcb(lev, data); + } else if (cb) { + cb(lev, sock, sa_remote, socklen_remote, data); + } + + LOCK(lev); + if (listener_decref_and_unlock(lev)) + return; + + EnterCriticalSection(&as->lock); + start_accepting(as); + LeaveCriticalSection(&as->lock); +} + +static void +accepted_socket_cb(struct event_overlapped *o, ev_uintptr_t key, ev_ssize_t n, int ok) +{ + struct accepting_socket *as = + EVUTIL_UPCAST(o, struct accepting_socket, overlapped); + + LOCK(&as->lev->base); + EnterCriticalSection(&as->lock); + if (ok) { + /* XXXX Don't do this if some EV_MT flag is set. */ + event_deferred_cb_schedule_( + as->lev->event_base, + &as->deferred); + LeaveCriticalSection(&as->lock); + } else if (as->free_on_cb) { + struct evconnlistener *lev = &as->lev->base; + free_and_unlock_accepting_socket(as); + listener_decref_and_unlock(lev); + return; + } else if (as->s == INVALID_SOCKET) { + /* This is okay; we were disabled by iocp_listener_disable. */ + LeaveCriticalSection(&as->lock); + } else { + /* Some error on accept that we couldn't actually handle. */ + BOOL ok; + DWORD transfer = 0, flags=0; + event_sock_warn(as->s, "Unexpected error on AcceptEx"); + ok = WSAGetOverlappedResult(as->s, &o->overlapped, + &transfer, FALSE, &flags); + if (ok) { + /* well, that was confusing! */ + as->error = 1; + } else { + as->error = WSAGetLastError(); + } + event_deferred_cb_schedule_( + as->lev->event_base, + &as->deferred); + LeaveCriticalSection(&as->lock); + } + UNLOCK(&as->lev->base); +} + +static int +iocp_listener_enable(struct evconnlistener *lev) +{ + int i; + struct evconnlistener_iocp *lev_iocp = + EVUTIL_UPCAST(lev, struct evconnlistener_iocp, base); + + LOCK(lev); + iocp_listener_event_add(lev_iocp); + for (i = 0; i < lev_iocp->n_accepting; ++i) { + struct accepting_socket *as = lev_iocp->accepting[i]; + if (!as) + continue; + EnterCriticalSection(&as->lock); + if (!as->free_on_cb && as->s == INVALID_SOCKET) + start_accepting(as); + LeaveCriticalSection(&as->lock); + } + UNLOCK(lev); + return 0; +} + +static int +iocp_listener_disable_impl(struct evconnlistener *lev, int shutdown) +{ + int i; + struct evconnlistener_iocp *lev_iocp = + EVUTIL_UPCAST(lev, struct evconnlistener_iocp, base); + + LOCK(lev); + iocp_listener_event_del(lev_iocp); + for (i = 0; i < lev_iocp->n_accepting; ++i) { + struct accepting_socket *as = lev_iocp->accepting[i]; + if (!as) + continue; + EnterCriticalSection(&as->lock); + if (!as->free_on_cb && as->s != INVALID_SOCKET) { + if (shutdown) + as->free_on_cb = 1; + stop_accepting(as); + } + LeaveCriticalSection(&as->lock); + } + + if (shutdown && lev->flags & LEV_OPT_CLOSE_ON_FREE) + evutil_closesocket(lev_iocp->fd); + + UNLOCK(lev); + return 0; +} + +static int +iocp_listener_disable(struct evconnlistener *lev) +{ + return iocp_listener_disable_impl(lev,0); +} + +static void +iocp_listener_destroy(struct evconnlistener *lev) +{ + struct evconnlistener_iocp *lev_iocp = + EVUTIL_UPCAST(lev, struct evconnlistener_iocp, base); + + if (! lev_iocp->shutting_down) { + lev_iocp->shutting_down = 1; + iocp_listener_disable_impl(lev,1); + } + +} + +static evutil_socket_t +iocp_listener_getfd(struct evconnlistener *lev) +{ + struct evconnlistener_iocp *lev_iocp = + EVUTIL_UPCAST(lev, struct evconnlistener_iocp, base); + return lev_iocp->fd; +} +static struct event_base * +iocp_listener_getbase(struct evconnlistener *lev) +{ + struct evconnlistener_iocp *lev_iocp = + EVUTIL_UPCAST(lev, struct evconnlistener_iocp, base); + return lev_iocp->event_base; +} + +static const struct evconnlistener_ops evconnlistener_iocp_ops = { + iocp_listener_enable, + iocp_listener_disable, + iocp_listener_destroy, + iocp_listener_destroy, /* shutdown */ + iocp_listener_getfd, + iocp_listener_getbase +}; + +/* XXX define some way to override this. */ +#define N_SOCKETS_PER_LISTENER 4 + +struct evconnlistener * +evconnlistener_new_async(struct event_base *base, + evconnlistener_cb cb, void *ptr, unsigned flags, int backlog, + evutil_socket_t fd) +{ + struct sockaddr_storage ss; + int socklen = sizeof(ss); + struct evconnlistener_iocp *lev; + int i; + + flags |= LEV_OPT_THREADSAFE; + + if (!base || !event_base_get_iocp_(base)) + goto err; + + /* XXXX duplicate code */ + if (backlog > 0) { + if (listen(fd, backlog) < 0) + goto err; + } else if (backlog < 0) { + if (listen(fd, 128) < 0) + goto err; + } + if (getsockname(fd, (struct sockaddr*)&ss, &socklen)) { + event_sock_warn(fd, "getsockname"); + goto err; + } + lev = mm_calloc(1, sizeof(struct evconnlistener_iocp)); + if (!lev) { + event_warn("calloc"); + goto err; + } + lev->base.ops = &evconnlistener_iocp_ops; + lev->base.cb = cb; + lev->base.user_data = ptr; + lev->base.flags = flags; + lev->base.refcnt = 1; + lev->base.enabled = 1; + + lev->port = event_base_get_iocp_(base); + lev->fd = fd; + lev->event_base = base; + + + if (event_iocp_port_associate_(lev->port, fd, 1) < 0) + goto err_free_lev; + + EVTHREAD_ALLOC_LOCK(lev->base.lock, EVTHREAD_LOCKTYPE_RECURSIVE); + + lev->n_accepting = N_SOCKETS_PER_LISTENER; + lev->accepting = mm_calloc(lev->n_accepting, + sizeof(struct accepting_socket *)); + if (!lev->accepting) { + event_warn("calloc"); + goto err_delete_lock; + } + for (i = 0; i < lev->n_accepting; ++i) { + lev->accepting[i] = new_accepting_socket(lev, ss.ss_family); + if (!lev->accepting[i]) { + event_warnx("Couldn't create accepting socket"); + goto err_free_accepting; + } + if (cb && start_accepting(lev->accepting[i]) < 0) { + event_warnx("Couldn't start accepting on socket"); + EnterCriticalSection(&lev->accepting[i]->lock); + free_and_unlock_accepting_socket(lev->accepting[i]); + goto err_free_accepting; + } + ++lev->base.refcnt; + } + + iocp_listener_event_add(lev); + + return &lev->base; + +err_free_accepting: + mm_free(lev->accepting); + /* XXXX free the other elements. */ +err_delete_lock: + EVTHREAD_FREE_LOCK(lev->base.lock, EVTHREAD_LOCKTYPE_RECURSIVE); +err_free_lev: + mm_free(lev); +err: + /* Don't close the fd, it is caller's responsibility. */ + return NULL; +} + +#endif diff -Nru mysql-5.7-5.7.25/extra/libevent/log.c mysql-5.7-5.7.26/extra/libevent/log.c --- mysql-5.7-5.7.25/extra/libevent/log.c 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/log.c 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,253 @@ +/* $OpenBSD: err.c,v 1.2 2002/06/25 15:50:15 mickey Exp $ */ + +/* + * log.c + * + * Based on err.c, which was adapted from OpenBSD libc *err* *warn* code. + * + * Copyright (c) 2005-2012 Niels Provos and Nick Mathewson + * + * Copyright (c) 2000 Dug Song + * + * Copyright (c) 1993 + * The Regents of the University of California. All rights reserved. + * + * 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 University 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 REGENTS 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 REGENTS 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. + */ + +#include "event2/event-config.h" +#include "evconfig-private.h" + +#ifdef _WIN32 +#include +#define WIN32_LEAN_AND_MEAN +#include +#undef WIN32_LEAN_AND_MEAN +#endif +#include +#include +#include +#include +#include +#include +#include "event2/event.h" +#include "event2/util.h" + +#include "log-internal.h" + +static void event_log(int severity, const char *msg); +static void event_exit(int errcode) EV_NORETURN; + +static event_fatal_cb fatal_fn = NULL; + +#ifdef EVENT_DEBUG_LOGGING_ENABLED +#ifdef USE_DEBUG +#define DEFAULT_MASK EVENT_DBG_ALL +#else +#define DEFAULT_MASK 0 +#endif + +#ifdef USE_GLOBAL_FOR_DEBUG_LOGGING +ev_uint32_t event_debug_logging_mask_ = DEFAULT_MASK; +#else +static ev_uint32_t event_debug_logging_mask_ = DEFAULT_MASK; +ev_uint32_t +event_debug_get_logging_mask_(void) +{ + return event_debug_logging_mask_; +} +#endif +#endif /* EVENT_DEBUG_LOGGING_ENABLED */ + +void +event_enable_debug_logging(ev_uint32_t which) +{ +#ifdef EVENT_DEBUG_LOGGING_ENABLED + event_debug_logging_mask_ = which; +#endif +} + +void +event_set_fatal_callback(event_fatal_cb cb) +{ + fatal_fn = cb; +} + +static void +event_exit(int errcode) +{ + if (fatal_fn) { + fatal_fn(errcode); + exit(errcode); /* should never be reached */ + } else if (errcode == EVENT_ERR_ABORT_) + abort(); + else + exit(errcode); +} + +void +event_err(int eval, const char *fmt, ...) +{ + va_list ap; + + va_start(ap, fmt); + event_logv_(EVENT_LOG_ERR, strerror(errno), fmt, ap); + va_end(ap); + event_exit(eval); +} + +void +event_warn(const char *fmt, ...) +{ + va_list ap; + + va_start(ap, fmt); + event_logv_(EVENT_LOG_WARN, strerror(errno), fmt, ap); + va_end(ap); +} + +void +event_sock_err(int eval, evutil_socket_t sock, const char *fmt, ...) +{ + va_list ap; + int err = evutil_socket_geterror(sock); + + va_start(ap, fmt); + event_logv_(EVENT_LOG_ERR, evutil_socket_error_to_string(err), fmt, ap); + va_end(ap); + event_exit(eval); +} + +void +event_sock_warn(evutil_socket_t sock, const char *fmt, ...) +{ + va_list ap; + int err = evutil_socket_geterror(sock); + + va_start(ap, fmt); + event_logv_(EVENT_LOG_WARN, evutil_socket_error_to_string(err), fmt, ap); + va_end(ap); +} + +void +event_errx(int eval, const char *fmt, ...) +{ + va_list ap; + + va_start(ap, fmt); + event_logv_(EVENT_LOG_ERR, NULL, fmt, ap); + va_end(ap); + event_exit(eval); +} + +void +event_warnx(const char *fmt, ...) +{ + va_list ap; + + va_start(ap, fmt); + event_logv_(EVENT_LOG_WARN, NULL, fmt, ap); + va_end(ap); +} + +void +event_msgx(const char *fmt, ...) +{ + va_list ap; + + va_start(ap, fmt); + event_logv_(EVENT_LOG_MSG, NULL, fmt, ap); + va_end(ap); +} + +void +event_debugx_(const char *fmt, ...) +{ + va_list ap; + + va_start(ap, fmt); + event_logv_(EVENT_LOG_DEBUG, NULL, fmt, ap); + va_end(ap); +} + +void +event_logv_(int severity, const char *errstr, const char *fmt, va_list ap) +{ + char buf[1024]; + size_t len; + + if (severity == EVENT_LOG_DEBUG && !event_debug_get_logging_mask_()) + return; + + if (fmt != NULL) + evutil_vsnprintf(buf, sizeof(buf), fmt, ap); + else + buf[0] = '\0'; + + if (errstr) { + len = strlen(buf); + if (len < sizeof(buf) - 3) { + evutil_snprintf(buf + len, sizeof(buf) - len, ": %s", errstr); + } + } + + event_log(severity, buf); +} + +static event_log_cb log_fn = NULL; + +void +event_set_log_callback(event_log_cb cb) +{ + log_fn = cb; +} + +static void +event_log(int severity, const char *msg) +{ + if (log_fn) + log_fn(severity, msg); + else { + const char *severity_str; + switch (severity) { + case EVENT_LOG_DEBUG: + severity_str = "debug"; + break; + case EVENT_LOG_MSG: + severity_str = "msg"; + break; + case EVENT_LOG_WARN: + severity_str = "warn"; + break; + case EVENT_LOG_ERR: + severity_str = "err"; + break; + default: + severity_str = "???"; + break; + } + (void)fprintf(stderr, "[%s] %s\n", severity_str, msg); + } +} diff -Nru mysql-5.7-5.7.25/extra/libevent/log-internal.h mysql-5.7-5.7.26/extra/libevent/log-internal.h --- mysql-5.7-5.7.25/extra/libevent/log-internal.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/log-internal.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,83 @@ +/* + * Copyright (c) 2000-2007 Niels Provos + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef LOG_INTERNAL_H_INCLUDED_ +#define LOG_INTERNAL_H_INCLUDED_ + +#include "event2/util.h" + +#ifdef __GNUC__ +#define EV_CHECK_FMT(a,b) __attribute__((format(printf, a, b))) +#define EV_NORETURN __attribute__((noreturn)) +#else +#define EV_CHECK_FMT(a,b) +#define EV_NORETURN +#endif + +#define EVENT_ERR_ABORT_ ((int)0xdeaddead) + +#define USE_GLOBAL_FOR_DEBUG_LOGGING + +#if !defined(EVENT__DISABLE_DEBUG_MODE) || defined(USE_DEBUG) +#define EVENT_DEBUG_LOGGING_ENABLED +#endif + +#ifdef EVENT_DEBUG_LOGGING_ENABLED +#ifdef USE_GLOBAL_FOR_DEBUG_LOGGING +extern ev_uint32_t event_debug_logging_mask_; +#define event_debug_get_logging_mask_() (event_debug_logging_mask_) +#else +ev_uint32_t event_debug_get_logging_mask_(void); +#endif +#else +#define event_debug_get_logging_mask_() (0) +#endif + +void event_err(int eval, const char *fmt, ...) EV_CHECK_FMT(2,3) EV_NORETURN; +void event_warn(const char *fmt, ...) EV_CHECK_FMT(1,2); +void event_sock_err(int eval, evutil_socket_t sock, const char *fmt, ...) EV_CHECK_FMT(3,4) EV_NORETURN; +void event_sock_warn(evutil_socket_t sock, const char *fmt, ...) EV_CHECK_FMT(2,3); +void event_errx(int eval, const char *fmt, ...) EV_CHECK_FMT(2,3) EV_NORETURN; +void event_warnx(const char *fmt, ...) EV_CHECK_FMT(1,2); +void event_msgx(const char *fmt, ...) EV_CHECK_FMT(1,2); +void event_debugx_(const char *fmt, ...) EV_CHECK_FMT(1,2); + +void event_logv_(int severity, const char *errstr, const char *fmt, va_list ap) + EV_CHECK_FMT(3,0); + +#ifdef EVENT_DEBUG_LOGGING_ENABLED +#define event_debug(x) do { \ + if (event_debug_get_logging_mask_()) { \ + event_debugx_ x; \ + } \ + } while (0) +#else +#define event_debug(x) ((void)0) +#endif + +#undef EV_CHECK_FMT + +#endif diff -Nru mysql-5.7-5.7.25/extra/libevent/minheap-internal.h mysql-5.7-5.7.26/extra/libevent/minheap-internal.h --- mysql-5.7-5.7.25/extra/libevent/minheap-internal.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/minheap-internal.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,188 @@ +/* + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * Copyright (c) 2006 Maxim Yegorushkin + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef MINHEAP_INTERNAL_H_INCLUDED_ +#define MINHEAP_INTERNAL_H_INCLUDED_ + +#include "event2/event-config.h" +#include "evconfig-private.h" +#include "event2/event.h" +#include "event2/event_struct.h" +#include "event2/util.h" +#include "util-internal.h" +#include "mm-internal.h" + +typedef struct min_heap +{ + struct event** p; + unsigned n, a; +} min_heap_t; + +static inline void min_heap_ctor_(min_heap_t* s); +static inline void min_heap_dtor_(min_heap_t* s); +static inline void min_heap_elem_init_(struct event* e); +static inline int min_heap_elt_is_top_(const struct event *e); +static inline int min_heap_empty_(min_heap_t* s); +static inline unsigned min_heap_size_(min_heap_t* s); +static inline struct event* min_heap_top_(min_heap_t* s); +static inline int min_heap_reserve_(min_heap_t* s, unsigned n); +static inline int min_heap_push_(min_heap_t* s, struct event* e); +static inline struct event* min_heap_pop_(min_heap_t* s); +static inline int min_heap_adjust_(min_heap_t *s, struct event* e); +static inline int min_heap_erase_(min_heap_t* s, struct event* e); +static inline void min_heap_shift_up_(min_heap_t* s, unsigned hole_index, struct event* e); +static inline void min_heap_shift_up_unconditional_(min_heap_t* s, unsigned hole_index, struct event* e); +static inline void min_heap_shift_down_(min_heap_t* s, unsigned hole_index, struct event* e); + +#define min_heap_elem_greater(a, b) \ + (evutil_timercmp(&(a)->ev_timeout, &(b)->ev_timeout, >)) + +void min_heap_ctor_(min_heap_t* s) { s->p = 0; s->n = 0; s->a = 0; } +void min_heap_dtor_(min_heap_t* s) { if (s->p) mm_free(s->p); } +void min_heap_elem_init_(struct event* e) { e->ev_timeout_pos.min_heap_idx = -1; } +int min_heap_empty_(min_heap_t* s) { return 0u == s->n; } +unsigned min_heap_size_(min_heap_t* s) { return s->n; } +struct event* min_heap_top_(min_heap_t* s) { return s->n ? *s->p : 0; } + +int min_heap_push_(min_heap_t* s, struct event* e) +{ + if (min_heap_reserve_(s, s->n + 1)) + return -1; + min_heap_shift_up_(s, s->n++, e); + return 0; +} + +struct event* min_heap_pop_(min_heap_t* s) +{ + if (s->n) + { + struct event* e = *s->p; + min_heap_shift_down_(s, 0u, s->p[--s->n]); + e->ev_timeout_pos.min_heap_idx = -1; + return e; + } + return 0; +} + +int min_heap_elt_is_top_(const struct event *e) +{ + return e->ev_timeout_pos.min_heap_idx == 0; +} + +int min_heap_erase_(min_heap_t* s, struct event* e) +{ + if (-1 != e->ev_timeout_pos.min_heap_idx) + { + struct event *last = s->p[--s->n]; + unsigned parent = (e->ev_timeout_pos.min_heap_idx - 1) / 2; + /* we replace e with the last element in the heap. We might need to + shift it upward if it is less than its parent, or downward if it is + greater than one or both its children. Since the children are known + to be less than the parent, it can't need to shift both up and + down. */ + if (e->ev_timeout_pos.min_heap_idx > 0 && min_heap_elem_greater(s->p[parent], last)) + min_heap_shift_up_unconditional_(s, e->ev_timeout_pos.min_heap_idx, last); + else + min_heap_shift_down_(s, e->ev_timeout_pos.min_heap_idx, last); + e->ev_timeout_pos.min_heap_idx = -1; + return 0; + } + return -1; +} + +int min_heap_adjust_(min_heap_t *s, struct event *e) +{ + if (-1 == e->ev_timeout_pos.min_heap_idx) { + return min_heap_push_(s, e); + } else { + unsigned parent = (e->ev_timeout_pos.min_heap_idx - 1) / 2; + /* The position of e has changed; we shift it up or down + * as needed. We can't need to do both. */ + if (e->ev_timeout_pos.min_heap_idx > 0 && min_heap_elem_greater(s->p[parent], e)) + min_heap_shift_up_unconditional_(s, e->ev_timeout_pos.min_heap_idx, e); + else + min_heap_shift_down_(s, e->ev_timeout_pos.min_heap_idx, e); + return 0; + } +} + +int min_heap_reserve_(min_heap_t* s, unsigned n) +{ + if (s->a < n) + { + struct event** p; + unsigned a = s->a ? s->a * 2 : 8; + if (a < n) + a = n; + if (!(p = (struct event**)mm_realloc(s->p, a * sizeof *p))) + return -1; + s->p = p; + s->a = a; + } + return 0; +} + +void min_heap_shift_up_unconditional_(min_heap_t* s, unsigned hole_index, struct event* e) +{ + unsigned parent = (hole_index - 1) / 2; + do + { + (s->p[hole_index] = s->p[parent])->ev_timeout_pos.min_heap_idx = hole_index; + hole_index = parent; + parent = (hole_index - 1) / 2; + } while (hole_index && min_heap_elem_greater(s->p[parent], e)); + (s->p[hole_index] = e)->ev_timeout_pos.min_heap_idx = hole_index; +} + +void min_heap_shift_up_(min_heap_t* s, unsigned hole_index, struct event* e) +{ + unsigned parent = (hole_index - 1) / 2; + while (hole_index && min_heap_elem_greater(s->p[parent], e)) + { + (s->p[hole_index] = s->p[parent])->ev_timeout_pos.min_heap_idx = hole_index; + hole_index = parent; + parent = (hole_index - 1) / 2; + } + (s->p[hole_index] = e)->ev_timeout_pos.min_heap_idx = hole_index; +} + +void min_heap_shift_down_(min_heap_t* s, unsigned hole_index, struct event* e) +{ + unsigned min_child = 2 * (hole_index + 1); + while (min_child <= s->n) + { + min_child -= min_child == s->n || min_heap_elem_greater(s->p[min_child], s->p[min_child - 1]); + if (!(min_heap_elem_greater(e, s->p[min_child]))) + break; + (s->p[hole_index] = s->p[min_child])->ev_timeout_pos.min_heap_idx = hole_index; + hole_index = min_child; + min_child = 2 * (hole_index + 1); + } + (s->p[hole_index] = e)->ev_timeout_pos.min_heap_idx = hole_index; +} + +#endif /* MINHEAP_INTERNAL_H_INCLUDED_ */ diff -Nru mysql-5.7-5.7.25/extra/libevent/mm-internal.h mysql-5.7-5.7.26/extra/libevent/mm-internal.h --- mysql-5.7-5.7.25/extra/libevent/mm-internal.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/mm-internal.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,87 @@ +/* + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef MM_INTERNAL_H_INCLUDED_ +#define MM_INTERNAL_H_INCLUDED_ + +#include + +#ifdef __cplusplus +extern "C" { +#endif + +#ifndef EVENT__DISABLE_MM_REPLACEMENT +/* Internal use only: Memory allocation functions. We give them nice short + * mm_names for our own use, but make sure that the symbols have longer names + * so they don't conflict with other libraries (like, say, libmm). */ + +/** Allocate uninitialized memory. + * + * @return On success, return a pointer to sz newly allocated bytes. + * On failure, set errno to ENOMEM and return NULL. + * If the argument sz is 0, simply return NULL. + */ +void *event_mm_malloc_(size_t sz); + +/** Allocate memory initialized to zero. + * + * @return On success, return a pointer to (count * size) newly allocated + * bytes, initialized to zero. + * On failure, or if the product would result in an integer overflow, + * set errno to ENOMEM and return NULL. + * If either arguments are 0, simply return NULL. + */ +void *event_mm_calloc_(size_t count, size_t size); + +/** Duplicate a string. + * + * @return On success, return a pointer to a newly allocated duplicate + * of a string. + * Set errno to ENOMEM and return NULL if a memory allocation error + * occurs (or would occur) in the process. + * If the argument str is NULL, set errno to EINVAL and return NULL. + */ +char *event_mm_strdup_(const char *str); + +void *event_mm_realloc_(void *p, size_t sz); +void event_mm_free_(void *p); +#define mm_malloc(sz) event_mm_malloc_(sz) +#define mm_calloc(count, size) event_mm_calloc_((count), (size)) +#define mm_strdup(s) event_mm_strdup_(s) +#define mm_realloc(p, sz) event_mm_realloc_((p), (sz)) +#define mm_free(p) event_mm_free_(p) +#else +#define mm_malloc(sz) malloc(sz) +#define mm_calloc(n, sz) calloc((n), (sz)) +#define mm_strdup(s) strdup(s) +#define mm_realloc(p, sz) realloc((p), (sz)) +#define mm_free(p) free(p) +#endif + +#ifdef __cplusplus +} +#endif + +#endif diff -Nru mysql-5.7-5.7.25/extra/libevent/openssl-compat.h mysql-5.7-5.7.26/extra/libevent/openssl-compat.h --- mysql-5.7-5.7.25/extra/libevent/openssl-compat.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/openssl-compat.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,35 @@ +#ifndef OPENSSL_COMPAT_H +#define OPENSSL_COMPAT_H + +#if OPENSSL_VERSION_NUMBER < 0x10100000L + +static inline BIO_METHOD *BIO_meth_new(int type, const char *name) +{ + BIO_METHOD *biom = calloc(1, sizeof(BIO_METHOD)); + + if (biom != NULL) { + biom->type = type; + biom->name = name; + } + return biom; +} + +#define BIO_meth_set_write(b, f) (b)->bwrite = (f) +#define BIO_meth_set_read(b, f) (b)->bread = (f) +#define BIO_meth_set_puts(b, f) (b)->bputs = (f) +#define BIO_meth_set_ctrl(b, f) (b)->ctrl = (f) +#define BIO_meth_set_create(b, f) (b)->create = (f) +#define BIO_meth_set_destroy(b, f) (b)->destroy = (f) + +#define BIO_set_init(b, val) (b)->init = (val) +#define BIO_set_data(b, val) (b)->ptr = (val) +#define BIO_set_shutdown(b, val) (b)->shutdown = (val) +#define BIO_get_init(b) (b)->init +#define BIO_get_data(b) (b)->ptr +#define BIO_get_shutdown(b) (b)->shutdown + +#define TLS_method SSLv23_method + +#endif /* OPENSSL_VERSION_NUMBER < 0x10100000L */ + +#endif /* OPENSSL_COMPAT_H */ diff -Nru mysql-5.7-5.7.25/extra/libevent/poll.c mysql-5.7-5.7.26/extra/libevent/poll.c --- mysql-5.7-5.7.25/extra/libevent/poll.c 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/poll.c 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,341 @@ +/* $OpenBSD: poll.c,v 1.2 2002/06/25 15:50:15 mickey Exp $ */ + +/* + * Copyright 2000-2007 Niels Provos + * Copyright 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#include "event2/event-config.h" +#include "evconfig-private.h" + +#ifdef EVENT__HAVE_POLL + +#include +#ifdef EVENT__HAVE_SYS_TIME_H +#include +#endif +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "event-internal.h" +#include "evsignal-internal.h" +#include "log-internal.h" +#include "evmap-internal.h" +#include "event2/thread.h" +#include "evthread-internal.h" +#include "time-internal.h" + +struct pollidx { + int idxplus1; +}; + +struct pollop { + int event_count; /* Highest number alloc */ + int nfds; /* Highest number used */ + int realloc_copy; /* True iff we must realloc + * event_set_copy */ + struct pollfd *event_set; + struct pollfd *event_set_copy; +}; + +static void *poll_init(struct event_base *); +static int poll_add(struct event_base *, int, short old, short events, void *idx); +static int poll_del(struct event_base *, int, short old, short events, void *idx); +static int poll_dispatch(struct event_base *, struct timeval *); +static void poll_dealloc(struct event_base *); + +const struct eventop pollops = { + "poll", + poll_init, + poll_add, + poll_del, + poll_dispatch, + poll_dealloc, + 0, /* doesn't need_reinit */ + EV_FEATURE_FDS, + sizeof(struct pollidx), +}; + +static void * +poll_init(struct event_base *base) +{ + struct pollop *pollop; + + if (!(pollop = mm_calloc(1, sizeof(struct pollop)))) + return (NULL); + + evsig_init_(base); + + evutil_weakrand_seed_(&base->weakrand_seed, 0); + + return (pollop); +} + +#ifdef CHECK_INVARIANTS +static void +poll_check_ok(struct pollop *pop) +{ + int i, idx; + struct event *ev; + + for (i = 0; i < pop->fd_count; ++i) { + idx = pop->idxplus1_by_fd[i]-1; + if (idx < 0) + continue; + EVUTIL_ASSERT(pop->event_set[idx].fd == i); + } + for (i = 0; i < pop->nfds; ++i) { + struct pollfd *pfd = &pop->event_set[i]; + EVUTIL_ASSERT(pop->idxplus1_by_fd[pfd->fd] == i+1); + } +} +#else +#define poll_check_ok(pop) +#endif + +static int +poll_dispatch(struct event_base *base, struct timeval *tv) +{ + int res, i, j, nfds; + long msec = -1; + struct pollop *pop = base->evbase; + struct pollfd *event_set; + + poll_check_ok(pop); + + nfds = pop->nfds; + +#ifndef EVENT__DISABLE_THREAD_SUPPORT + if (base->th_base_lock) { + /* If we're using this backend in a multithreaded setting, + * then we need to work on a copy of event_set, so that we can + * let other threads modify the main event_set while we're + * polling. If we're not multithreaded, then we'll skip the + * copy step here to save memory and time. */ + if (pop->realloc_copy) { + struct pollfd *tmp = mm_realloc(pop->event_set_copy, + pop->event_count * sizeof(struct pollfd)); + if (tmp == NULL) { + event_warn("realloc"); + return -1; + } + pop->event_set_copy = tmp; + pop->realloc_copy = 0; + } + memcpy(pop->event_set_copy, pop->event_set, + sizeof(struct pollfd)*nfds); + event_set = pop->event_set_copy; + } else { + event_set = pop->event_set; + } +#else + event_set = pop->event_set; +#endif + + if (tv != NULL) { + msec = evutil_tv_to_msec_(tv); + if (msec < 0 || msec > INT_MAX) + msec = INT_MAX; + } + + EVBASE_RELEASE_LOCK(base, th_base_lock); + + res = poll(event_set, nfds, msec); + + EVBASE_ACQUIRE_LOCK(base, th_base_lock); + + if (res == -1) { + if (errno != EINTR) { + event_warn("poll"); + return (-1); + } + + return (0); + } + + event_debug(("%s: poll reports %d", __func__, res)); + + if (res == 0 || nfds == 0) + return (0); + + i = evutil_weakrand_range_(&base->weakrand_seed, nfds); + for (j = 0; j < nfds; j++) { + int what; + if (++i == nfds) + i = 0; + what = event_set[i].revents; + if (!what) + continue; + + res = 0; + + /* If the file gets closed notify */ + if (what & (POLLHUP|POLLERR|POLLNVAL)) + what |= POLLIN|POLLOUT; + if (what & POLLIN) + res |= EV_READ; + if (what & POLLOUT) + res |= EV_WRITE; + if (res == 0) + continue; + + evmap_io_active_(base, event_set[i].fd, res); + } + + return (0); +} + +static int +poll_add(struct event_base *base, int fd, short old, short events, void *idx_) +{ + struct pollop *pop = base->evbase; + struct pollfd *pfd = NULL; + struct pollidx *idx = idx_; + int i; + + EVUTIL_ASSERT((events & EV_SIGNAL) == 0); + if (!(events & (EV_READ|EV_WRITE))) + return (0); + + poll_check_ok(pop); + if (pop->nfds + 1 >= pop->event_count) { + struct pollfd *tmp_event_set; + int tmp_event_count; + + if (pop->event_count < 32) + tmp_event_count = 32; + else + tmp_event_count = pop->event_count * 2; + + /* We need more file descriptors */ + tmp_event_set = mm_realloc(pop->event_set, + tmp_event_count * sizeof(struct pollfd)); + if (tmp_event_set == NULL) { + event_warn("realloc"); + return (-1); + } + pop->event_set = tmp_event_set; + + pop->event_count = tmp_event_count; + pop->realloc_copy = 1; + } + + i = idx->idxplus1 - 1; + + if (i >= 0) { + pfd = &pop->event_set[i]; + } else { + i = pop->nfds++; + pfd = &pop->event_set[i]; + pfd->events = 0; + pfd->fd = fd; + idx->idxplus1 = i + 1; + } + + pfd->revents = 0; + if (events & EV_WRITE) + pfd->events |= POLLOUT; + if (events & EV_READ) + pfd->events |= POLLIN; + poll_check_ok(pop); + + return (0); +} + +/* + * Nothing to be done here. + */ + +static int +poll_del(struct event_base *base, int fd, short old, short events, void *idx_) +{ + struct pollop *pop = base->evbase; + struct pollfd *pfd = NULL; + struct pollidx *idx = idx_; + int i; + + EVUTIL_ASSERT((events & EV_SIGNAL) == 0); + if (!(events & (EV_READ|EV_WRITE))) + return (0); + + poll_check_ok(pop); + i = idx->idxplus1 - 1; + if (i < 0) + return (-1); + + /* Do we still want to read or write? */ + pfd = &pop->event_set[i]; + if (events & EV_READ) + pfd->events &= ~POLLIN; + if (events & EV_WRITE) + pfd->events &= ~POLLOUT; + poll_check_ok(pop); + if (pfd->events) + /* Another event cares about that fd. */ + return (0); + + /* Okay, so we aren't interested in that fd anymore. */ + idx->idxplus1 = 0; + + --pop->nfds; + if (i != pop->nfds) { + /* + * Shift the last pollfd down into the now-unoccupied + * position. + */ + memcpy(&pop->event_set[i], &pop->event_set[pop->nfds], + sizeof(struct pollfd)); + idx = evmap_io_get_fdinfo_(&base->io, pop->event_set[i].fd); + EVUTIL_ASSERT(idx); + EVUTIL_ASSERT(idx->idxplus1 == pop->nfds + 1); + idx->idxplus1 = i + 1; + } + + poll_check_ok(pop); + return (0); +} + +static void +poll_dealloc(struct event_base *base) +{ + struct pollop *pop = base->evbase; + + evsig_dealloc_(base); + if (pop->event_set) + mm_free(pop->event_set); + if (pop->event_set_copy) + mm_free(pop->event_set_copy); + + memset(pop, 0, sizeof(struct pollop)); + mm_free(pop); +} + +#endif /* EVENT__HAVE_POLL */ diff -Nru mysql-5.7-5.7.25/extra/libevent/ratelim-internal.h mysql-5.7-5.7.26/extra/libevent/ratelim-internal.h --- mysql-5.7-5.7.25/extra/libevent/ratelim-internal.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/ratelim-internal.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,105 @@ +/* + * Copyright (c) 2009-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef RATELIM_INTERNAL_H_INCLUDED_ +#define RATELIM_INTERNAL_H_INCLUDED_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include "event2/util.h" + +/** A token bucket is an internal structure that tracks how many bytes we are + * currently willing to read or write on a given bufferevent or group of + * bufferevents */ +struct ev_token_bucket { + /** How many bytes are we willing to read or write right now? These + * values are signed so that we can do "defecit spending" */ + ev_ssize_t read_limit, write_limit; + /** When was this bucket last updated? Measured in abstract 'ticks' + * relative to the token bucket configuration. */ + ev_uint32_t last_updated; +}; + +/** Configuration info for a token bucket or set of token buckets. */ +struct ev_token_bucket_cfg { + /** How many bytes are we willing to read on average per tick? */ + size_t read_rate; + /** How many bytes are we willing to read at most in any one tick? */ + size_t read_maximum; + /** How many bytes are we willing to write on average per tick? */ + size_t write_rate; + /** How many bytes are we willing to write at most in any one tick? */ + size_t write_maximum; + + /* How long is a tick? Note that fractions of a millisecond are + * ignored. */ + struct timeval tick_timeout; + + /* How long is a tick, in milliseconds? Derived from tick_timeout. */ + unsigned msec_per_tick; +}; + +/** The current tick is 'current_tick': add bytes to 'bucket' as specified in + * 'cfg'. */ +int ev_token_bucket_update_(struct ev_token_bucket *bucket, + const struct ev_token_bucket_cfg *cfg, + ev_uint32_t current_tick); + +/** In which tick does 'tv' fall according to 'cfg'? Note that ticks can + * overflow easily; your code needs to handle this. */ +ev_uint32_t ev_token_bucket_get_tick_(const struct timeval *tv, + const struct ev_token_bucket_cfg *cfg); + +/** Adjust 'bucket' to respect 'cfg', and note that it was last updated in + * 'current_tick'. If 'reinitialize' is true, we are changing the + * configuration of 'bucket'; otherwise, we are setting it up for the first + * time. + */ +int ev_token_bucket_init_(struct ev_token_bucket *bucket, + const struct ev_token_bucket_cfg *cfg, + ev_uint32_t current_tick, + int reinitialize); + +int bufferevent_remove_from_rate_limit_group_internal_(struct bufferevent *bev, + int unsuspend); + +/** Decrease the read limit of 'b' by 'n' bytes */ +#define ev_token_bucket_decrement_read(b,n) \ + do { \ + (b)->read_limit -= (n); \ + } while (0) +/** Decrease the write limit of 'b' by 'n' bytes */ +#define ev_token_bucket_decrement_write(b,n) \ + do { \ + (b)->write_limit -= (n); \ + } while (0) + +#ifdef __cplusplus +} +#endif + +#endif diff -Nru mysql-5.7-5.7.25/extra/libevent/README.md mysql-5.7-5.7.26/extra/libevent/README.md --- mysql-5.7-5.7.25/extra/libevent/README.md 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/README.md 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,431 @@ +

+ libevent logo +

+ + + +[![Appveyor Win32 Build Status](https://ci.appveyor.com/api/projects/status/github/libevent/libevent?branch=master&svg=true)](https://ci.appveyor.com/project/nmathewson/libevent) +[![Travis Build Status](https://travis-ci.org/libevent/libevent.svg?branch=master)](https://travis-ci.org/libevent/libevent) +[![Coverage Status](https://coveralls.io/repos/github/libevent/libevent/badge.svg)](https://coveralls.io/github/libevent/libevent) + + + +# 0. BUILDING AND INSTALLATION (Briefly) + +## Autoconf + + $ ./configure + $ make + $ make verify # (optional) + $ sudo make install + +## Cmake (General) + + +The following Libevent specific Cmake variables are as follows (the values being +the default). + +``` +# Installation directory for executables +EVENT_INSTALL_BIN_DIR:PATH=bin + +# Installation directory for CMake files +EVENT_INSTALL_CMAKE_DIR:PATH=lib/cmake/libevent + +## Installation directory for header files +EVENT_INSTALL_INCLUDE_DIR:PATH=include + +## Installation directory for libraries +EVENT_INSTALL_LIB_DIR:PATH=lib + +## Define if libevent should be built with shared libraries instead of archives +EVENT__BUILD_SHARED_LIBRARIES:BOOL=OFF + +# Enable running gcov to get a test coverage report (only works with +# GCC/CLang). Make sure to enable -DCMAKE_BUILD_TYPE=Debug as well. +EVENT__COVERAGE:BOOL=OFF + +# Defines if libevent should build without the benchmark exectuables +EVENT__DISABLE_BENCHMARK:BOOL=OFF + +# Define if libevent should build without support for a debug mode +EVENT__DISABLE_DEBUG_MODE:BOOL=OFF + +# Define if libevent should not allow replacing the mm functions +EVENT__DISABLE_MM_REPLACEMENT:BOOL=OFF + +# Define if libevent should build without support for OpenSSL encrpytion +EVENT__DISABLE_OPENSSL:BOOL=OFF + +# Disable the regress tests +EVENT__DISABLE_REGRESS:BOOL=OFF + +# Disable sample files +EVENT__DISABLE_SAMPLES:BOOL=OFF + +# If tests should be compiled or not +EVENT__DISABLE_TESTS:BOOL=OFF + +# Define if libevent should not be compiled with thread support +EVENT__DISABLE_THREAD_SUPPORT:BOOL=OFF + +# Enables verbose debugging +EVENT__ENABLE_VERBOSE_DEBUG:BOOL=OFF + +# When crosscompiling forces running a test program that verifies that Kqueue +# works with pipes. Note that this requires you to manually run the test program +# on the the cross compilation target to verify that it works. See cmake +# documentation for try_run for more details +EVENT__FORCE_KQUEUE_CHECK:BOOL=OFF + +# set EVENT_STAGE_VERSION +EVENT__STAGE_VERSION:STRING=beta +``` + +__More variables can be found by running `cmake -LAH `__ + + +## CMake (Windows) + +Install CMake: + + + $ md build && cd build + $ cmake -G "Visual Studio 10" .. # Or whatever generator you want to use cmake --help for a list. + $ start libevent.sln + +## CMake (Unix) + + $ mkdir build && cd build + $ cmake .. # Default to Unix Makefiles. + $ make + $ make verify # (optional) + + +# 1. BUILDING AND INSTALLATION (In Depth) + +## Autoconf + +To build libevent, type + + $ ./configure && make + + + (If you got libevent from the git repository, you will + first need to run the included "autogen.sh" script in order to + generate the configure script.) + +You can run the regression tests by running + + $ make verify + +Install as root via + + $ make install + +Before reporting any problems, please run the regression tests. + +To enable the low-level tracing build the library as: + + $ CFLAGS=-DUSE_DEBUG ./configure [...] + +Standard configure flags should work. In particular, see: + + --disable-shared Only build static libraries + --prefix Install all files relative to this directory. + + +The configure script also supports the following flags: + + --enable-gcc-warnings Enable extra compiler checking with GCC. + --disable-malloc-replacement + Don't let applications replace our memory + management functions + --disable-openssl Disable support for OpenSSL encryption. + --disable-thread-support Don't support multithreaded environments. + +## CMake (Windows) + +(Note that autoconf is currently the most mature and supported build +enviroment for libevent; the cmake instructions here are new and +experimental, though they _should_ be solid. We hope that cmake will +still be supported in future versions of Libevent, and will try to +make sure that happens.) + +First of all install . + +To build libevent using Microsoft Visual studio open the "Visual Studio Command prompt" and type: + +``` +$ cd +$ mkdir build && cd build +$ cmake -G "Visual Studio 10" .. # Or whatever generator you want to use cmake --help for a list. +$ start libevent.sln +``` + +In the above, the ".." refers to the dir containing the Libevent source code. +You can build multiple versions (with different compile time settings) from the same source tree +by creating other build directories. + +It is highly recommended to build "out of source" when using +CMake instead of "in source" like the normal behaviour of autoconf for this reason. + +The "NMake Makefiles" CMake generator can be used to build entirely via the command line. + +To get a list of settings available for the project you can type: + +``` +$ cmake -LH .. +``` + +### GUI + +CMake also provides a GUI that lets you specify the source directory and output (binary) directory +that the build should be placed in. + +### OpenSSL support + +To build Libevent with OpenSSL support you will need to have OpenSSL binaries available when building, +these can be found here: + +# 2. USEFUL LINKS: + +For the latest released version of Libevent, see the official website at + . + +There's a pretty good work-in-progress manual up at + . + +For the latest development versions of Libevent, access our Git repository +via + +``` +$ git clone https://github.com/libevent/libevent.git +``` + +You can browse the git repository online at: + + + +To report bugs, issues, or ask for new features: + +__Patches__: https://github.com/libevent/libevent/pulls +> OK, those are not really _patches_ You fork, modify, and hit the "Create Pull Request" button. +> You can still submit normal git patchs via the mailing list. + +__Bugs, Features [RFC], and Issus__: https://github.com/libevent/libevent/issues +> Or you can do it via the mailing list. + +There's also a libevent-users mailing list for talking about Libevent +use and development: + + + +# 3. ACKNOWLEDGMENTS + +The following people have helped with suggestions, ideas, code or +fixing bugs: + + * Samy Al Bahra + * Antony Antony + * Jacob Appelbaum + * Arno Bakker + * Weston Andros Adamson + * William Ahern + * Ivan Andropov + * Sergey Avseyev + * Avi Bab + * Joachim Bauch + * Andrey Belobrov + * Gilad Benjamini + * Stas Bekman + * Denis Bilenko + * Julien Blache + * Kevin Bowling + * Tomash Brechko + * Kelly Brock + * Ralph Castain + * Adrian Chadd + * Lawnstein Chan + * Shuo Chen + * Ka-Hing Cheung + * Andrew Cox + * Paul Croome + * George Danchev + * Andrew Danforth + * Ed Day + * Christopher Davis + * Mike Davis + * Frank Denis + * Antony Dovgal + * Mihai Draghicioiu + * Alexander Drozdov + * Mark Ellzey + * Shie Erlich + * Leonid Evdokimov + * Juan Pablo Fernandez + * Christophe Fillot + * Mike Frysinger + * Remi Gacogne + * Artem Germanov + * Alexander von Gernler + * Diego Giagio + * Artur Grabowski + * Diwaker Gupta + * Kuldeep Gupta + * Sebastian Hahn + * Dave Hart + * Greg Hazel + * Nicholas Heath + * Michael Herf + * Savg He + * Mark Heily + * Maxime Henrion + * Michael Herf + * Greg Hewgill + * Andrew Hochhaus + * Aaron Hopkins + * Tani Hosokawa + * Jamie Iles + * Xiuqiang Jiang + * Claudio Jeker + * Evan Jones + * Marcin Juszkiewicz + * George Kadianakis + * Makoto Kato + * Phua Keat + * Azat Khuzhin + * Alexander Klauer + * Kevin Ko + * Brian Koehmstedt + * Marko Kreen + * Ondřej Kuzník + * Valery Kyholodov + * Ross Lagerwall + * Scott Lamb + * Christopher Layne + * Adam Langley + * Graham Leggett + * Volker Lendecke + * Philip Lewis + * Zhou Li + * David Libenzi + * Yan Lin + * Moshe Litvin + * Simon Liu + * Mitchell Livingston + * Hagne Mahre + * Lubomir Marinov + * Abilio Marques + * Nicolas Martyanoff + * Abel Mathew + * Nick Mathewson + * James Mansion + * Nicholas Marriott + * Andrey Matveev + * Caitlin Mercer + * Dagobert Michelsen + * Andrea Montefusco + * Mansour Moufid + * Mina Naguib + * Felix Nawothnig + * Trond Norbye + * Linus Nordberg + * Richard Nyberg + * Jon Oberheide + * John Ohl + * Phil Oleson + * Alexey Ozeritsky + * Dave Pacheco + * Derrick Pallas + * Tassilo von Parseval + * Catalin Patulea + * Patrick Pelletier + * Simon Perreault + * Dan Petro + * Pierre Phaneuf + * Amarin Phaosawasdi + * Ryan Phillips + * Dimitre Piskyulev + * Pavel Plesov + * Jon Poland + * Roman Puls + * Nate R + * Robert Ransom + * Balint Reczey + * Bert JW Regeer + * Nate Rosenblum + * Peter Rosin + * Maseeb Abdul Qadir + * Wang Qin + * Alex S + * Gyepi Sam + * Hanna Schroeter + * Ralf Schmitt + * Mike Smellie + * Steve Snyder + * Nir Soffer + * Dug Song + * Dongsheng Song + * Hannes Sowa + * Joakim Soderberg + * Joseph Spadavecchia + * Kevin Springborn + * Harlan Stenn + * Andrew Sweeney + * Ferenc Szalai + * Brodie Thiesfield + * Jason Toffaletti + * Brian Utterback + * Gisle Vanem + * Bas Verhoeven + * Constantine Verutin + * Colin Watt + * Zack Weinberg + * Jardel Weyrich + * Jay R. Wren + * Zack Weinberg + * Mobai Zhang + * Alejo + * Alex + * Taral + * propanbutan + * masksqwe + * mmadia + * yangacer + * Andrey Skriabin + * basavesh.as + * billsegall + * Bill Vaughan + * Christopher Wiley + * David Paschich + * Ed Schouten + * Eduardo Panisset + * Jan Heylen + * jer-gentoo + * Joakim Söderberg + * kirillDanshin + * lzmths + * Marcus Sundberg + * Mark Mentovai + * Mattes D + * Matyas Dolak + * Neeraj Badlani + * Nick Mathewson + * Rainer Keller + * Seungmo Koo + * Thomas Bernard + * Xiao Bao Clark + * zeliard + * Zonr Chang + * Kurt Roeckx + * Seven + * Simone Basso + * Vlad Shcherban + * Tim Hentenaar + * Breaker + * johnsonlee + * Philip Prindeville + * Vis Virial + +If we have forgotten your name, please contact us. diff -Nru mysql-5.7-5.7.25/extra/libevent/select.c mysql-5.7-5.7.26/extra/libevent/select.c --- mysql-5.7-5.7.25/extra/libevent/select.c 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/select.c 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,346 @@ +/* $OpenBSD: select.c,v 1.2 2002/06/25 15:50:15 mickey Exp $ */ + +/* + * Copyright 2000-2007 Niels Provos + * Copyright 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#include "event2/event-config.h" +#include "evconfig-private.h" + +#ifdef EVENT__HAVE_SELECT + +#ifdef __APPLE__ +/* Apple wants us to define this if we might ever pass more than + * FD_SETSIZE bits to select(). */ +#define _DARWIN_UNLIMITED_SELECT +#endif + +#include +#ifdef EVENT__HAVE_SYS_TIME_H +#include +#endif +#ifdef EVENT__HAVE_SYS_SELECT_H +#include +#endif +#include +#include +#include +#include +#include +#include +#include + +#include "event-internal.h" +#include "evsignal-internal.h" +#include "event2/thread.h" +#include "evthread-internal.h" +#include "log-internal.h" +#include "evmap-internal.h" + +#ifndef EVENT__HAVE_FD_MASK +/* This type is mandatory, but Android doesn't define it. */ +typedef unsigned long fd_mask; +#endif + +#ifndef NFDBITS +#define NFDBITS (sizeof(fd_mask)*8) +#endif + +/* Divide positive x by y, rounding up. */ +#define DIV_ROUNDUP(x, y) (((x)+((y)-1))/(y)) + +/* How many bytes to allocate for N fds? */ +#define SELECT_ALLOC_SIZE(n) \ + (DIV_ROUNDUP(n, NFDBITS) * sizeof(fd_mask)) + +struct selectop { + int event_fds; /* Highest fd in fd set */ + int event_fdsz; + int resize_out_sets; + fd_set *event_readset_in; + fd_set *event_writeset_in; + fd_set *event_readset_out; + fd_set *event_writeset_out; +}; + +static void *select_init(struct event_base *); +static int select_add(struct event_base *, int, short old, short events, void*); +static int select_del(struct event_base *, int, short old, short events, void*); +static int select_dispatch(struct event_base *, struct timeval *); +static void select_dealloc(struct event_base *); + +const struct eventop selectops = { + "select", + select_init, + select_add, + select_del, + select_dispatch, + select_dealloc, + 0, /* doesn't need reinit. */ + EV_FEATURE_FDS, + 0, +}; + +static int select_resize(struct selectop *sop, int fdsz); +static void select_free_selectop(struct selectop *sop); + +static void * +select_init(struct event_base *base) +{ + struct selectop *sop; + + if (!(sop = mm_calloc(1, sizeof(struct selectop)))) + return (NULL); + + if (select_resize(sop, SELECT_ALLOC_SIZE(32 + 1))) { + select_free_selectop(sop); + return (NULL); + } + + evsig_init_(base); + + evutil_weakrand_seed_(&base->weakrand_seed, 0); + + return (sop); +} + +#ifdef CHECK_INVARIANTS +static void +check_selectop(struct selectop *sop) +{ + /* nothing to be done here */ +} +#else +#define check_selectop(sop) do { (void) sop; } while (0) +#endif + +static int +select_dispatch(struct event_base *base, struct timeval *tv) +{ + int res=0, i, j, nfds; + struct selectop *sop = base->evbase; + + check_selectop(sop); + if (sop->resize_out_sets) { + fd_set *readset_out=NULL, *writeset_out=NULL; + size_t sz = sop->event_fdsz; + if (!(readset_out = mm_realloc(sop->event_readset_out, sz))) + return (-1); + sop->event_readset_out = readset_out; + if (!(writeset_out = mm_realloc(sop->event_writeset_out, sz))) { + /* We don't free readset_out here, since it was + * already successfully reallocated. The next time + * we call select_dispatch, the realloc will be a + * no-op. */ + return (-1); + } + sop->event_writeset_out = writeset_out; + sop->resize_out_sets = 0; + } + + memcpy(sop->event_readset_out, sop->event_readset_in, + sop->event_fdsz); + memcpy(sop->event_writeset_out, sop->event_writeset_in, + sop->event_fdsz); + + nfds = sop->event_fds+1; + + EVBASE_RELEASE_LOCK(base, th_base_lock); + + res = select(nfds, sop->event_readset_out, + sop->event_writeset_out, NULL, tv); + + EVBASE_ACQUIRE_LOCK(base, th_base_lock); + + check_selectop(sop); + + if (res == -1) { + if (errno != EINTR) { + event_warn("select"); + return (-1); + } + + return (0); + } + + event_debug(("%s: select reports %d", __func__, res)); + + check_selectop(sop); + i = evutil_weakrand_range_(&base->weakrand_seed, nfds); + for (j = 0; j < nfds; ++j) { + if (++i >= nfds) + i = 0; + res = 0; + if (FD_ISSET(i, sop->event_readset_out)) + res |= EV_READ; + if (FD_ISSET(i, sop->event_writeset_out)) + res |= EV_WRITE; + + if (res == 0) + continue; + + evmap_io_active_(base, i, res); + } + check_selectop(sop); + + return (0); +} + +static int +select_resize(struct selectop *sop, int fdsz) +{ + fd_set *readset_in = NULL; + fd_set *writeset_in = NULL; + + if (sop->event_readset_in) + check_selectop(sop); + + if ((readset_in = mm_realloc(sop->event_readset_in, fdsz)) == NULL) + goto error; + sop->event_readset_in = readset_in; + if ((writeset_in = mm_realloc(sop->event_writeset_in, fdsz)) == NULL) { + /* Note that this will leave event_readset_in expanded. + * That's okay; we wouldn't want to free it, since that would + * change the semantics of select_resize from "expand the + * readset_in and writeset_in, or return -1" to "expand the + * *set_in members, or trash them and return -1." + */ + goto error; + } + sop->event_writeset_in = writeset_in; + sop->resize_out_sets = 1; + + memset((char *)sop->event_readset_in + sop->event_fdsz, 0, + fdsz - sop->event_fdsz); + memset((char *)sop->event_writeset_in + sop->event_fdsz, 0, + fdsz - sop->event_fdsz); + + sop->event_fdsz = fdsz; + check_selectop(sop); + + return (0); + + error: + event_warn("malloc"); + return (-1); +} + + +static int +select_add(struct event_base *base, int fd, short old, short events, void *p) +{ + struct selectop *sop = base->evbase; + (void) p; + + EVUTIL_ASSERT((events & EV_SIGNAL) == 0); + check_selectop(sop); + /* + * Keep track of the highest fd, so that we can calculate the size + * of the fd_sets for select(2) + */ + if (sop->event_fds < fd) { + int fdsz = sop->event_fdsz; + + if (fdsz < (int)sizeof(fd_mask)) + fdsz = (int)sizeof(fd_mask); + + /* In theory we should worry about overflow here. In + * reality, though, the highest fd on a unixy system will + * not overflow here. XXXX */ + while (fdsz < (int) SELECT_ALLOC_SIZE(fd + 1)) + fdsz *= 2; + + if (fdsz != sop->event_fdsz) { + if (select_resize(sop, fdsz)) { + check_selectop(sop); + return (-1); + } + } + + sop->event_fds = fd; + } + + if (events & EV_READ) + FD_SET(fd, sop->event_readset_in); + if (events & EV_WRITE) + FD_SET(fd, sop->event_writeset_in); + check_selectop(sop); + + return (0); +} + +/* + * Nothing to be done here. + */ + +static int +select_del(struct event_base *base, int fd, short old, short events, void *p) +{ + struct selectop *sop = base->evbase; + (void)p; + + EVUTIL_ASSERT((events & EV_SIGNAL) == 0); + check_selectop(sop); + + if (sop->event_fds < fd) { + check_selectop(sop); + return (0); + } + + if (events & EV_READ) + FD_CLR(fd, sop->event_readset_in); + + if (events & EV_WRITE) + FD_CLR(fd, sop->event_writeset_in); + + check_selectop(sop); + return (0); +} + +static void +select_free_selectop(struct selectop *sop) +{ + if (sop->event_readset_in) + mm_free(sop->event_readset_in); + if (sop->event_writeset_in) + mm_free(sop->event_writeset_in); + if (sop->event_readset_out) + mm_free(sop->event_readset_out); + if (sop->event_writeset_out) + mm_free(sop->event_writeset_out); + + memset(sop, 0, sizeof(struct selectop)); + mm_free(sop); +} + +static void +select_dealloc(struct event_base *base) +{ + evsig_dealloc_(base); + + select_free_selectop(base->evbase); +} + +#endif /* EVENT__HAVE_SELECT */ diff -Nru mysql-5.7-5.7.25/extra/libevent/signal.c mysql-5.7-5.7.26/extra/libevent/signal.c --- mysql-5.7-5.7.25/extra/libevent/signal.c 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/signal.c 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,479 @@ +/* $OpenBSD: select.c,v 1.2 2002/06/25 15:50:15 mickey Exp $ */ + +/* + * Copyright 2000-2007 Niels Provos + * Copyright 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#include "event2/event-config.h" +#include "evconfig-private.h" + +#ifdef _WIN32 +#define WIN32_LEAN_AND_MEAN +#include +#include +#undef WIN32_LEAN_AND_MEAN +#endif +#include +#ifdef EVENT__HAVE_SYS_TIME_H +#include +#endif +#include +#ifdef EVENT__HAVE_SYS_SOCKET_H +#include +#endif +#include +#include +#include +#include +#ifdef EVENT__HAVE_UNISTD_H +#include +#endif +#include +#ifdef EVENT__HAVE_FCNTL_H +#include +#endif + +#include "event2/event.h" +#include "event2/event_struct.h" +#include "event-internal.h" +#include "event2/util.h" +#include "evsignal-internal.h" +#include "log-internal.h" +#include "evmap-internal.h" +#include "evthread-internal.h" + +/* + signal.c + + This is the signal-handling implementation we use for backends that don't + have a better way to do signal handling. It uses sigaction() or signal() + to set a signal handler, and a socket pair to tell the event base when + + Note that I said "the event base" : only one event base can be set up to use + this at a time. For historical reasons and backward compatibility, if you + add an event for a signal to event_base A, then add an event for a signal + (any signal!) to event_base B, event_base B will get informed about the + signal, but event_base A won't. + + It would be neat to change this behavior in some future version of Libevent. + kqueue already does something far more sensible. We can make all backends + on Linux do a reasonable thing using signalfd. +*/ + +#ifndef _WIN32 +/* Windows wants us to call our signal handlers as __cdecl. Nobody else + * expects you to do anything crazy like this. */ +#define __cdecl +#endif + +static int evsig_add(struct event_base *, evutil_socket_t, short, short, void *); +static int evsig_del(struct event_base *, evutil_socket_t, short, short, void *); + +static const struct eventop evsigops = { + "signal", + NULL, + evsig_add, + evsig_del, + NULL, + NULL, + 0, 0, 0 +}; + +#ifndef EVENT__DISABLE_THREAD_SUPPORT +/* Lock for evsig_base and evsig_base_n_signals_added fields. */ +static void *evsig_base_lock = NULL; +#endif +/* The event base that's currently getting informed about signals. */ +static struct event_base *evsig_base = NULL; +/* A copy of evsig_base->sigev_n_signals_added. */ +static int evsig_base_n_signals_added = 0; +static evutil_socket_t evsig_base_fd = -1; + +static void __cdecl evsig_handler(int sig); + +#define EVSIGBASE_LOCK() EVLOCK_LOCK(evsig_base_lock, 0) +#define EVSIGBASE_UNLOCK() EVLOCK_UNLOCK(evsig_base_lock, 0) + +void +evsig_set_base_(struct event_base *base) +{ + EVSIGBASE_LOCK(); + evsig_base = base; + evsig_base_n_signals_added = base->sig.ev_n_signals_added; + evsig_base_fd = base->sig.ev_signal_pair[1]; + EVSIGBASE_UNLOCK(); +} + +/* Callback for when the signal handler write a byte to our signaling socket */ +static void +evsig_cb(evutil_socket_t fd, short what, void *arg) +{ + static char signals[1024]; + ev_ssize_t n; + int i; + int ncaught[NSIG]; + struct event_base *base; + + base = arg; + + memset(&ncaught, 0, sizeof(ncaught)); + + while (1) { +#ifdef _WIN32 + n = recv(fd, signals, sizeof(signals), 0); +#else + n = read(fd, signals, sizeof(signals)); +#endif + if (n == -1) { + int err = evutil_socket_geterror(fd); + if (! EVUTIL_ERR_RW_RETRIABLE(err)) + event_sock_err(1, fd, "%s: recv", __func__); + break; + } else if (n == 0) { + /* XXX warn? */ + break; + } + for (i = 0; i < n; ++i) { + ev_uint8_t sig = signals[i]; + if (sig < NSIG) + ncaught[sig]++; + } + } + + EVBASE_ACQUIRE_LOCK(base, th_base_lock); + for (i = 0; i < NSIG; ++i) { + if (ncaught[i]) + evmap_signal_active_(base, i, ncaught[i]); + } + EVBASE_RELEASE_LOCK(base, th_base_lock); +} + +int +evsig_init_(struct event_base *base) +{ + /* + * Our signal handler is going to write to one end of the socket + * pair to wake up our event loop. The event loop then scans for + * signals that got delivered. + */ + if (evutil_make_internal_pipe_(base->sig.ev_signal_pair) == -1) { +#ifdef _WIN32 + /* Make this nonfatal on win32, where sometimes people + have localhost firewalled. */ + event_sock_warn(-1, "%s: socketpair", __func__); +#else + event_sock_err(1, -1, "%s: socketpair", __func__); +#endif + return -1; + } + + if (base->sig.sh_old) { + mm_free(base->sig.sh_old); + } + base->sig.sh_old = NULL; + base->sig.sh_old_max = 0; + + event_assign(&base->sig.ev_signal, base, base->sig.ev_signal_pair[0], + EV_READ | EV_PERSIST, evsig_cb, base); + + base->sig.ev_signal.ev_flags |= EVLIST_INTERNAL; + event_priority_set(&base->sig.ev_signal, 0); + + base->evsigsel = &evsigops; + + return 0; +} + +/* Helper: set the signal handler for evsignal to handler in base, so that + * we can restore the original handler when we clear the current one. */ +int +evsig_set_handler_(struct event_base *base, + int evsignal, void (__cdecl *handler)(int)) +{ +#ifdef EVENT__HAVE_SIGACTION + struct sigaction sa; +#else + ev_sighandler_t sh; +#endif + struct evsig_info *sig = &base->sig; + void *p; + + /* + * resize saved signal handler array up to the highest signal number. + * a dynamic array is used to keep footprint on the low side. + */ + if (evsignal >= sig->sh_old_max) { + int new_max = evsignal + 1; + event_debug(("%s: evsignal (%d) >= sh_old_max (%d), resizing", + __func__, evsignal, sig->sh_old_max)); + p = mm_realloc(sig->sh_old, new_max * sizeof(*sig->sh_old)); + if (p == NULL) { + event_warn("realloc"); + return (-1); + } + + memset((char *)p + sig->sh_old_max * sizeof(*sig->sh_old), + 0, (new_max - sig->sh_old_max) * sizeof(*sig->sh_old)); + + sig->sh_old_max = new_max; + sig->sh_old = p; + } + + /* allocate space for previous handler out of dynamic array */ + sig->sh_old[evsignal] = mm_malloc(sizeof *sig->sh_old[evsignal]); + if (sig->sh_old[evsignal] == NULL) { + event_warn("malloc"); + return (-1); + } + + /* save previous handler and setup new handler */ +#ifdef EVENT__HAVE_SIGACTION + memset(&sa, 0, sizeof(sa)); + sa.sa_handler = handler; + sa.sa_flags |= SA_RESTART; + sigfillset(&sa.sa_mask); + + if (sigaction(evsignal, &sa, sig->sh_old[evsignal]) == -1) { + event_warn("sigaction"); + mm_free(sig->sh_old[evsignal]); + sig->sh_old[evsignal] = NULL; + return (-1); + } +#else + if ((sh = signal(evsignal, handler)) == SIG_ERR) { + event_warn("signal"); + mm_free(sig->sh_old[evsignal]); + sig->sh_old[evsignal] = NULL; + return (-1); + } + *sig->sh_old[evsignal] = sh; +#endif + + return (0); +} + +static int +evsig_add(struct event_base *base, evutil_socket_t evsignal, short old, short events, void *p) +{ + struct evsig_info *sig = &base->sig; + (void)p; + + EVUTIL_ASSERT(evsignal >= 0 && evsignal < NSIG); + + /* catch signals if they happen quickly */ + EVSIGBASE_LOCK(); + if (evsig_base != base && evsig_base_n_signals_added) { + event_warnx("Added a signal to event base %p with signals " + "already added to event_base %p. Only one can have " + "signals at a time with the %s backend. The base with " + "the most recently added signal or the most recent " + "event_base_loop() call gets preference; do " + "not rely on this behavior in future Libevent versions.", + base, evsig_base, base->evsel->name); + } + evsig_base = base; + evsig_base_n_signals_added = ++sig->ev_n_signals_added; + evsig_base_fd = base->sig.ev_signal_pair[1]; + EVSIGBASE_UNLOCK(); + + event_debug(("%s: %d: changing signal handler", __func__, (int)evsignal)); + if (evsig_set_handler_(base, (int)evsignal, evsig_handler) == -1) { + goto err; + } + + + if (!sig->ev_signal_added) { + if (event_add_nolock_(&sig->ev_signal, NULL, 0)) + goto err; + sig->ev_signal_added = 1; + } + + return (0); + +err: + EVSIGBASE_LOCK(); + --evsig_base_n_signals_added; + --sig->ev_n_signals_added; + EVSIGBASE_UNLOCK(); + return (-1); +} + +int +evsig_restore_handler_(struct event_base *base, int evsignal) +{ + int ret = 0; + struct evsig_info *sig = &base->sig; +#ifdef EVENT__HAVE_SIGACTION + struct sigaction *sh; +#else + ev_sighandler_t *sh; +#endif + + if (evsignal >= sig->sh_old_max) { + /* Can't actually restore. */ + /* XXXX.*/ + return 0; + } + + /* restore previous handler */ + sh = sig->sh_old[evsignal]; + sig->sh_old[evsignal] = NULL; +#ifdef EVENT__HAVE_SIGACTION + if (sigaction(evsignal, sh, NULL) == -1) { + event_warn("sigaction"); + ret = -1; + } +#else + if (signal(evsignal, *sh) == SIG_ERR) { + event_warn("signal"); + ret = -1; + } +#endif + + mm_free(sh); + + return ret; +} + +static int +evsig_del(struct event_base *base, evutil_socket_t evsignal, short old, short events, void *p) +{ + EVUTIL_ASSERT(evsignal >= 0 && evsignal < NSIG); + + event_debug(("%s: "EV_SOCK_FMT": restoring signal handler", + __func__, EV_SOCK_ARG(evsignal))); + + EVSIGBASE_LOCK(); + --evsig_base_n_signals_added; + --base->sig.ev_n_signals_added; + EVSIGBASE_UNLOCK(); + + return (evsig_restore_handler_(base, (int)evsignal)); +} + +static void __cdecl +evsig_handler(int sig) +{ + int save_errno = errno; +#ifdef _WIN32 + int socket_errno = EVUTIL_SOCKET_ERROR(); +#endif + ev_uint8_t msg; + + if (evsig_base == NULL) { + event_warnx( + "%s: received signal %d, but have no base configured", + __func__, sig); + return; + } + +#ifndef EVENT__HAVE_SIGACTION + signal(sig, evsig_handler); +#endif + + /* Wake up our notification mechanism */ + msg = sig; +#ifdef _WIN32 + send(evsig_base_fd, (char*)&msg, 1, 0); +#else + { + int r = write(evsig_base_fd, (char*)&msg, 1); + (void)r; /* Suppress 'unused return value' and 'unused var' */ + } +#endif + errno = save_errno; +#ifdef _WIN32 + EVUTIL_SET_SOCKET_ERROR(socket_errno); +#endif +} + +void +evsig_dealloc_(struct event_base *base) +{ + int i = 0; + if (base->sig.ev_signal_added) { + event_del(&base->sig.ev_signal); + base->sig.ev_signal_added = 0; + } + /* debug event is created in evsig_init_/event_assign even when + * ev_signal_added == 0, so unassign is required */ + event_debug_unassign(&base->sig.ev_signal); + + for (i = 0; i < NSIG; ++i) { + if (i < base->sig.sh_old_max && base->sig.sh_old[i] != NULL) + evsig_restore_handler_(base, i); + } + EVSIGBASE_LOCK(); + if (base == evsig_base) { + evsig_base = NULL; + evsig_base_n_signals_added = 0; + evsig_base_fd = -1; + } + EVSIGBASE_UNLOCK(); + + if (base->sig.ev_signal_pair[0] != -1) { + evutil_closesocket(base->sig.ev_signal_pair[0]); + base->sig.ev_signal_pair[0] = -1; + } + if (base->sig.ev_signal_pair[1] != -1) { + evutil_closesocket(base->sig.ev_signal_pair[1]); + base->sig.ev_signal_pair[1] = -1; + } + base->sig.sh_old_max = 0; + + /* per index frees are handled in evsig_del() */ + if (base->sig.sh_old) { + mm_free(base->sig.sh_old); + base->sig.sh_old = NULL; + } +} + +static void +evsig_free_globals_locks(void) +{ +#ifndef EVENT__DISABLE_THREAD_SUPPORT + if (evsig_base_lock != NULL) { + EVTHREAD_FREE_LOCK(evsig_base_lock, 0); + evsig_base_lock = NULL; + } +#endif + return; +} + +void +evsig_free_globals_(void) +{ + evsig_free_globals_locks(); +} + +#ifndef EVENT__DISABLE_THREAD_SUPPORT +int +evsig_global_setup_locks_(const int enable_locks) +{ + EVTHREAD_SETUP_GLOBAL_LOCK(evsig_base_lock, 0); + return 0; +} + +#endif diff -Nru mysql-5.7-5.7.25/extra/libevent/strlcpy.c mysql-5.7-5.7.26/extra/libevent/strlcpy.c --- mysql-5.7-5.7.25/extra/libevent/strlcpy.c 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/strlcpy.c 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,75 @@ +/* $OpenBSD: strlcpy.c,v 1.5 2001/05/13 15:40:16 deraadt Exp $ */ + +/* + * Copyright (c) 1998 Todd C. Miller + * All rights reserved. + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED ``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 AUTHOR 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. + */ + +#if defined(LIBC_SCCS) && !defined(lint) +static char *rcsid = "$OpenBSD: strlcpy.c,v 1.5 2001/05/13 15:40:16 deraadt Exp $"; +#endif /* LIBC_SCCS and not lint */ + +#include "event2/event-config.h" +#include "evconfig-private.h" + +#include + +#ifndef EVENT__HAVE_STRLCPY +#include "strlcpy-internal.h" + +/* + * Copy src to string dst of size siz. At most siz-1 characters + * will be copied. Always NUL terminates (unless siz == 0). + * Returns strlen(src); if retval >= siz, truncation occurred. + */ +size_t +event_strlcpy_(dst, src, siz) + char *dst; + const char *src; + size_t siz; +{ + register char *d = dst; + register const char *s = src; + register size_t n = siz; + + /* Copy as many bytes as will fit */ + if (n != 0 && --n != 0) { + do { + if ((*d++ = *s++) == 0) + break; + } while (--n != 0); + } + + /* Not enough room in dst, add NUL and traverse rest of src */ + if (n == 0) { + if (siz != 0) + *d = '\0'; /* NUL-terminate dst */ + while (*s++) + ; + } + + return (s - src - 1); /* count does not include NUL */ +} +#endif diff -Nru mysql-5.7-5.7.25/extra/libevent/strlcpy-internal.h mysql-5.7-5.7.26/extra/libevent/strlcpy-internal.h --- mysql-5.7-5.7.25/extra/libevent/strlcpy-internal.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/strlcpy-internal.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,22 @@ +#ifndef STRLCPY_INTERNAL_H_INCLUDED_ +#define STRLCPY_INTERNAL_H_INCLUDED_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include "event2/event-config.h" +#include "evconfig-private.h" + +#ifndef EVENT__HAVE_STRLCPY +#include +size_t event_strlcpy_(char *dst, const char *src, size_t siz); +#define strlcpy event_strlcpy_ +#endif + +#ifdef __cplusplus +} +#endif + +#endif + diff -Nru mysql-5.7-5.7.25/extra/libevent/time-internal.h mysql-5.7-5.7.26/extra/libevent/time-internal.h --- mysql-5.7-5.7.25/extra/libevent/time-internal.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/time-internal.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,98 @@ +/* + * Copyright (c) 2000-2007 Niels Provos + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef TIME_INTERNAL_H_INCLUDED_ +#define TIME_INTERNAL_H_INCLUDED_ + +#include "event2/event-config.h" +#include "evconfig-private.h" + +#ifdef EVENT__HAVE_MACH_MACH_TIME_H +/* For mach_timebase_info */ +#include +#endif + +#include + +#include "event2/util.h" + +#ifdef __cplusplus +extern "C" { +#endif + +#if defined(EVENT__HAVE_CLOCK_GETTIME) && defined(CLOCK_MONOTONIC) +#define HAVE_POSIX_MONOTONIC +#elif defined(EVENT__HAVE_MACH_ABSOLUTE_TIME) +#define HAVE_MACH_MONOTONIC +#elif defined(_WIN32) +#define HAVE_WIN32_MONOTONIC +#else +#define HAVE_FALLBACK_MONOTONIC +#endif + +long evutil_tv_to_msec_(const struct timeval *tv); +void evutil_usleep_(const struct timeval *tv); + +#ifdef _WIN32 +typedef ULONGLONG (WINAPI *ev_GetTickCount_func)(void); +#endif + +struct evutil_monotonic_timer { + +#ifdef HAVE_MACH_MONOTONIC + struct mach_timebase_info mach_timebase_units; +#endif + +#ifdef HAVE_POSIX_MONOTONIC + int monotonic_clock; +#endif + +#ifdef HAVE_WIN32_MONOTONIC + ev_GetTickCount_func GetTickCount64_fn; + ev_GetTickCount_func GetTickCount_fn; + ev_uint64_t last_tick_count; + ev_uint64_t adjust_tick_count; + + ev_uint64_t first_tick; + ev_uint64_t first_counter; + double usec_per_count; + int use_performance_counter; +#endif + + struct timeval adjust_monotonic_clock; + struct timeval last_time; +}; + +int evutil_configure_monotonic_time_(struct evutil_monotonic_timer *mt, + int flags); +int evutil_gettime_monotonic_(struct evutil_monotonic_timer *mt, struct timeval *tv); + + +#ifdef __cplusplus +} +#endif + +#endif /* EVENT_INTERNAL_H_INCLUDED_ */ diff -Nru mysql-5.7-5.7.25/extra/libevent/util-internal.h mysql-5.7-5.7.26/extra/libevent/util-internal.h --- mysql-5.7-5.7.25/extra/libevent/util-internal.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/util-internal.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,483 @@ +/* + * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#ifndef UTIL_INTERNAL_H_INCLUDED_ +#define UTIL_INTERNAL_H_INCLUDED_ + +#include "event2/event-config.h" +#include "evconfig-private.h" + +#include + +/* For EVUTIL_ASSERT */ +#include "log-internal.h" +#include +#include +#ifdef EVENT__HAVE_SYS_SOCKET_H +#include +#endif +#ifdef EVENT__HAVE_SYS_EVENTFD_H +#include +#endif +#include "event2/util.h" + +#include "time-internal.h" +#include "ipv6-internal.h" + +#ifdef __cplusplus +extern "C" { +#endif + +/* If we need magic to say "inline", get it for free internally. */ +#ifdef EVENT__inline +#define inline EVENT__inline +#endif +#if defined(EVENT____func__) && !defined(__func__) +#define __func__ EVENT____func__ +#endif + +/* A good no-op to use in macro definitions. */ +#define EVUTIL_NIL_STMT_ ((void)0) +/* A no-op that tricks the compiler into thinking a condition is used while + * definitely not making any code for it. Used to compile out asserts while + * avoiding "unused variable" warnings. The "!" forces the compiler to + * do the sizeof() on an int, in case "condition" is a bitfield value. + */ +#define EVUTIL_NIL_CONDITION_(condition) do { \ + (void)sizeof(!(condition)); \ +} while(0) + +/* Internal use only: macros to match patterns of error codes in a + cross-platform way. We need these macros because of two historical + reasons: first, nonblocking IO functions are generally written to give an + error on the "blocked now, try later" case, so sometimes an error from a + read, write, connect, or accept means "no error; just wait for more + data," and we need to look at the error code. Second, Windows defines + a different set of error codes for sockets. */ + +#ifndef _WIN32 + +#if EAGAIN == EWOULDBLOCK +#define EVUTIL_ERR_IS_EAGAIN(e) \ + ((e) == EAGAIN) +#else +#define EVUTIL_ERR_IS_EAGAIN(e) \ + ((e) == EAGAIN || (e) == EWOULDBLOCK) +#endif + +/* True iff e is an error that means a read/write operation can be retried. */ +#define EVUTIL_ERR_RW_RETRIABLE(e) \ + ((e) == EINTR || EVUTIL_ERR_IS_EAGAIN(e)) +/* True iff e is an error that means an connect can be retried. */ +#define EVUTIL_ERR_CONNECT_RETRIABLE(e) \ + ((e) == EINTR || (e) == EINPROGRESS) +/* True iff e is an error that means a accept can be retried. */ +#define EVUTIL_ERR_ACCEPT_RETRIABLE(e) \ + ((e) == EINTR || EVUTIL_ERR_IS_EAGAIN(e) || (e) == ECONNABORTED) + +/* True iff e is an error that means the connection was refused */ +#define EVUTIL_ERR_CONNECT_REFUSED(e) \ + ((e) == ECONNREFUSED) + +#else +/* Win32 */ + +#define EVUTIL_ERR_IS_EAGAIN(e) \ + ((e) == WSAEWOULDBLOCK || (e) == EAGAIN) + +#define EVUTIL_ERR_RW_RETRIABLE(e) \ + ((e) == WSAEWOULDBLOCK || \ + (e) == WSAEINTR) + +#define EVUTIL_ERR_CONNECT_RETRIABLE(e) \ + ((e) == WSAEWOULDBLOCK || \ + (e) == WSAEINTR || \ + (e) == WSAEINPROGRESS || \ + (e) == WSAEINVAL) + +#define EVUTIL_ERR_ACCEPT_RETRIABLE(e) \ + EVUTIL_ERR_RW_RETRIABLE(e) + +#define EVUTIL_ERR_CONNECT_REFUSED(e) \ + ((e) == WSAECONNREFUSED) + +#endif + +/* Arguments for shutdown() */ +#ifdef SHUT_RD +#define EVUTIL_SHUT_RD SHUT_RD +#else +#define EVUTIL_SHUT_RD 0 +#endif +#ifdef SHUT_WR +#define EVUTIL_SHUT_WR SHUT_WR +#else +#define EVUTIL_SHUT_WR 1 /* SD_SEND */ +#endif +#ifdef SHUT_BOTH +#define EVUTIL_SHUT_BOTH SHUT_BOTH +#else +#define EVUTIL_SHUT_BOTH 2 +#endif + +/* Helper: Verify that all the elements in 'dlist' are internally consistent. + * Checks for circular lists and bad prev/next pointers. + * + * Example usage: + * EVUTIL_ASSERT_LIST_OK(eventlist, event, ev_next); + */ +#define EVUTIL_ASSERT_LIST_OK(dlist, type, field) do { \ + struct type *elm1, *elm2, **nextp; \ + if (LIST_EMPTY((dlist))) \ + break; \ + \ + /* Check list for circularity using Floyd's */ \ + /* 'Tortoise and Hare' algorithm */ \ + elm1 = LIST_FIRST((dlist)); \ + elm2 = LIST_NEXT(elm1, field); \ + while (elm1 && elm2) { \ + EVUTIL_ASSERT(elm1 != elm2); \ + elm1 = LIST_NEXT(elm1, field); \ + elm2 = LIST_NEXT(elm2, field); \ + if (!elm2) \ + break; \ + EVUTIL_ASSERT(elm1 != elm2); \ + elm2 = LIST_NEXT(elm2, field); \ + } \ + \ + /* Now check next and prev pointers for consistency. */ \ + nextp = &LIST_FIRST((dlist)); \ + elm1 = LIST_FIRST((dlist)); \ + while (elm1) { \ + EVUTIL_ASSERT(*nextp == elm1); \ + EVUTIL_ASSERT(nextp == elm1->field.le_prev); \ + nextp = &LIST_NEXT(elm1, field); \ + elm1 = *nextp; \ + } \ + } while (0) + +/* Helper: Verify that all the elements in a TAILQ are internally consistent. + * Checks for circular lists and bad prev/next pointers. + * + * Example usage: + * EVUTIL_ASSERT_TAILQ_OK(activelist, event, ev_active_next); + */ +#define EVUTIL_ASSERT_TAILQ_OK(tailq, type, field) do { \ + struct type *elm1, *elm2, **nextp; \ + if (TAILQ_EMPTY((tailq))) \ + break; \ + \ + /* Check list for circularity using Floyd's */ \ + /* 'Tortoise and Hare' algorithm */ \ + elm1 = TAILQ_FIRST((tailq)); \ + elm2 = TAILQ_NEXT(elm1, field); \ + while (elm1 && elm2) { \ + EVUTIL_ASSERT(elm1 != elm2); \ + elm1 = TAILQ_NEXT(elm1, field); \ + elm2 = TAILQ_NEXT(elm2, field); \ + if (!elm2) \ + break; \ + EVUTIL_ASSERT(elm1 != elm2); \ + elm2 = TAILQ_NEXT(elm2, field); \ + } \ + \ + /* Now check next and prev pointers for consistency. */ \ + nextp = &TAILQ_FIRST((tailq)); \ + elm1 = TAILQ_FIRST((tailq)); \ + while (elm1) { \ + EVUTIL_ASSERT(*nextp == elm1); \ + EVUTIL_ASSERT(nextp == elm1->field.tqe_prev); \ + nextp = &TAILQ_NEXT(elm1, field); \ + elm1 = *nextp; \ + } \ + EVUTIL_ASSERT(nextp == (tailq)->tqh_last); \ + } while (0) + +/* Locale-independent replacements for some ctypes functions. Use these + * when you care about ASCII's notion of character types, because you are about + * to send those types onto the wire. + */ +int EVUTIL_ISALPHA_(char c); +int EVUTIL_ISALNUM_(char c); +int EVUTIL_ISSPACE_(char c); +int EVUTIL_ISDIGIT_(char c); +int EVUTIL_ISXDIGIT_(char c); +int EVUTIL_ISPRINT_(char c); +int EVUTIL_ISLOWER_(char c); +int EVUTIL_ISUPPER_(char c); +char EVUTIL_TOUPPER_(char c); +char EVUTIL_TOLOWER_(char c); + +/** Remove all trailing horizontal whitespace (space or tab) from the end of a + * string */ +void evutil_rtrim_lws_(char *); + + +/** Helper macro. If we know that a given pointer points to a field in a + structure, return a pointer to the structure itself. Used to implement + our half-baked C OO. Example: + + struct subtype { + int x; + struct supertype common; + int y; + }; + ... + void fn(struct supertype *super) { + struct subtype *sub = EVUTIL_UPCAST(super, struct subtype, common); + ... + } + */ +#define EVUTIL_UPCAST(ptr, type, field) \ + ((type *)(((char*)(ptr)) - evutil_offsetof(type, field))) + +/* As open(pathname, flags, mode), except that the file is always opened with + * the close-on-exec flag set. (And the mode argument is mandatory.) + */ +int evutil_open_closeonexec_(const char *pathname, int flags, unsigned mode); + +int evutil_read_file_(const char *filename, char **content_out, size_t *len_out, + int is_binary); + +int evutil_socket_connect_(evutil_socket_t *fd_ptr, const struct sockaddr *sa, int socklen); + +int evutil_socket_finished_connecting_(evutil_socket_t fd); + +int evutil_ersatz_socketpair_(int, int , int, evutil_socket_t[]); + +int evutil_resolve_(int family, const char *hostname, struct sockaddr *sa, + ev_socklen_t *socklen, int port); + +const char *evutil_getenv_(const char *name); + +/* Structure to hold the state of our weak random number generator. + */ +struct evutil_weakrand_state { + ev_uint32_t seed; +}; + +#define EVUTIL_WEAKRAND_MAX EV_INT32_MAX + +/* Initialize the state of a week random number generator based on 'seed'. If + * the seed is 0, construct a new seed based on not-very-strong platform + * entropy, like the PID and the time of day. + * + * This function, and the other evutil_weakrand* functions, are meant for + * speed, not security or statistical strength. If you need a RNG which an + * attacker can't predict, or which passes strong statistical tests, use the + * evutil_secure_rng* functions instead. + */ +ev_uint32_t evutil_weakrand_seed_(struct evutil_weakrand_state *state, ev_uint32_t seed); +/* Return a pseudorandom value between 0 and EVUTIL_WEAKRAND_MAX inclusive. + * Updates the state in 'seed' as needed -- this value must be protected by a + * lock. + */ +ev_int32_t evutil_weakrand_(struct evutil_weakrand_state *seed); +/* Return a pseudorandom value x such that 0 <= x < top. top must be no more + * than EVUTIL_WEAKRAND_MAX. Updates the state in 'seed' as needed -- this + * value must be proteced by a lock */ +ev_int32_t evutil_weakrand_range_(struct evutil_weakrand_state *seed, ev_int32_t top); + +/* Evaluates to the same boolean value as 'p', and hints to the compiler that + * we expect this value to be false. */ +#if defined(__GNUC__) && __GNUC__ >= 3 /* gcc 3.0 or later */ +#define EVUTIL_UNLIKELY(p) __builtin_expect(!!(p),0) +#else +#define EVUTIL_UNLIKELY(p) (p) +#endif + +/* Replacement for assert() that calls event_errx on failure. */ +#ifdef NDEBUG +#define EVUTIL_ASSERT(cond) EVUTIL_NIL_CONDITION_(cond) +#define EVUTIL_FAILURE_CHECK(cond) 0 +#else +#define EVUTIL_ASSERT(cond) \ + do { \ + if (EVUTIL_UNLIKELY(!(cond))) { \ + event_errx(EVENT_ERR_ABORT_, \ + "%s:%d: Assertion %s failed in %s", \ + __FILE__,__LINE__,#cond,__func__); \ + /* In case a user-supplied handler tries to */ \ + /* return control to us, log and abort here. */ \ + (void)fprintf(stderr, \ + "%s:%d: Assertion %s failed in %s", \ + __FILE__,__LINE__,#cond,__func__); \ + abort(); \ + } \ + } while (0) +#define EVUTIL_FAILURE_CHECK(cond) EVUTIL_UNLIKELY(cond) +#endif + +#ifndef EVENT__HAVE_STRUCT_SOCKADDR_STORAGE +/* Replacement for sockaddr storage that we can use internally on platforms + * that lack it. It is not space-efficient, but neither is sockaddr_storage. + */ +struct sockaddr_storage { + union { + struct sockaddr ss_sa; + struct sockaddr_in ss_sin; + struct sockaddr_in6 ss_sin6; + char ss_padding[128]; + } ss_union; +}; +#define ss_family ss_union.ss_sa.sa_family +#endif + +/* Internal addrinfo error code. This one is returned from only from + * evutil_getaddrinfo_common_, when we are sure that we'll have to hit a DNS + * server. */ +#define EVUTIL_EAI_NEED_RESOLVE -90002 + +struct evdns_base; +struct evdns_getaddrinfo_request; +typedef struct evdns_getaddrinfo_request* (*evdns_getaddrinfo_fn)( + struct evdns_base *base, + const char *nodename, const char *servname, + const struct evutil_addrinfo *hints_in, + void (*cb)(int, struct evutil_addrinfo *, void *), void *arg); +void evutil_set_evdns_getaddrinfo_fn_(evdns_getaddrinfo_fn fn); +typedef void (*evdns_getaddrinfo_cancel_fn)( + struct evdns_getaddrinfo_request *req); +void evutil_set_evdns_getaddrinfo_cancel_fn_(evdns_getaddrinfo_cancel_fn fn); + +struct evutil_addrinfo *evutil_new_addrinfo_(struct sockaddr *sa, + ev_socklen_t socklen, const struct evutil_addrinfo *hints); +struct evutil_addrinfo *evutil_addrinfo_append_(struct evutil_addrinfo *first, + struct evutil_addrinfo *append); +void evutil_adjust_hints_for_addrconfig_(struct evutil_addrinfo *hints); +int evutil_getaddrinfo_common_(const char *nodename, const char *servname, + struct evutil_addrinfo *hints, struct evutil_addrinfo **res, int *portnum); + +struct evdns_getaddrinfo_request *evutil_getaddrinfo_async_( + struct evdns_base *dns_base, + const char *nodename, const char *servname, + const struct evutil_addrinfo *hints_in, + void (*cb)(int, struct evutil_addrinfo *, void *), void *arg); +void evutil_getaddrinfo_cancel_async_(struct evdns_getaddrinfo_request *data); + +/** Return true iff sa is a looback address. (That is, it is 127.0.0.1/8, or + * ::1). */ +int evutil_sockaddr_is_loopback_(const struct sockaddr *sa); + + +/** + Formats a sockaddr sa into a string buffer of size outlen stored in out. + Returns a pointer to out. Always writes something into out, so it's safe + to use the output of this function without checking it for NULL. + */ +const char *evutil_format_sockaddr_port_(const struct sockaddr *sa, char *out, size_t outlen); + +int evutil_hex_char_to_int_(char c); + + +void evutil_free_secure_rng_globals_(void); +void evutil_free_globals_(void); + +#ifdef _WIN32 +HMODULE evutil_load_windows_system_library_(const TCHAR *library_name); +#endif + +#ifndef EV_SIZE_FMT +#if defined(_MSC_VER) || defined(__MINGW32__) || defined(__MINGW64__) +#define EV_U64_FMT "%I64u" +#define EV_I64_FMT "%I64d" +#define EV_I64_ARG(x) ((__int64)(x)) +#define EV_U64_ARG(x) ((unsigned __int64)(x)) +#else +#define EV_U64_FMT "%llu" +#define EV_I64_FMT "%lld" +#define EV_I64_ARG(x) ((long long)(x)) +#define EV_U64_ARG(x) ((unsigned long long)(x)) +#endif +#endif + +#ifdef _WIN32 +#define EV_SOCK_FMT EV_I64_FMT +#define EV_SOCK_ARG(x) EV_I64_ARG((x)) +#else +#define EV_SOCK_FMT "%d" +#define EV_SOCK_ARG(x) (x) +#endif + +#if defined(__STDC__) && defined(__STDC_VERSION__) && !defined(__MINGW64_VERSION_MAJOR) +#if (__STDC_VERSION__ >= 199901L) +#define EV_SIZE_FMT "%zu" +#define EV_SSIZE_FMT "%zd" +#define EV_SIZE_ARG(x) (x) +#define EV_SSIZE_ARG(x) (x) +#endif +#endif + +#ifndef EV_SIZE_FMT +#if (EVENT__SIZEOF_SIZE_T <= EVENT__SIZEOF_LONG) +#define EV_SIZE_FMT "%lu" +#define EV_SSIZE_FMT "%ld" +#define EV_SIZE_ARG(x) ((unsigned long)(x)) +#define EV_SSIZE_ARG(x) ((long)(x)) +#else +#define EV_SIZE_FMT EV_U64_FMT +#define EV_SSIZE_FMT EV_I64_FMT +#define EV_SIZE_ARG(x) EV_U64_ARG(x) +#define EV_SSIZE_ARG(x) EV_I64_ARG(x) +#endif +#endif + +evutil_socket_t evutil_socket_(int domain, int type, int protocol); +evutil_socket_t evutil_accept4_(evutil_socket_t sockfd, struct sockaddr *addr, + ev_socklen_t *addrlen, int flags); + + /* used by one of the test programs.. */ +EVENT2_EXPORT_SYMBOL +int evutil_make_internal_pipe_(evutil_socket_t fd[2]); +evutil_socket_t evutil_eventfd_(unsigned initval, int flags); + +#ifdef SOCK_NONBLOCK +#define EVUTIL_SOCK_NONBLOCK SOCK_NONBLOCK +#else +#define EVUTIL_SOCK_NONBLOCK 0x4000000 +#endif +#ifdef SOCK_CLOEXEC +#define EVUTIL_SOCK_CLOEXEC SOCK_CLOEXEC +#else +#define EVUTIL_SOCK_CLOEXEC 0x80000000 +#endif +#ifdef EFD_NONBLOCK +#define EVUTIL_EFD_NONBLOCK EFD_NONBLOCK +#else +#define EVUTIL_EFD_NONBLOCK 0x4000 +#endif +#ifdef EFD_CLOEXEC +#define EVUTIL_EFD_CLOEXEC EFD_CLOEXEC +#else +#define EVUTIL_EFD_CLOEXEC 0x8000 +#endif + +void evutil_memclear_(void *mem, size_t len); + +#ifdef __cplusplus +} +#endif + +#endif diff -Nru mysql-5.7-5.7.25/extra/libevent/whatsnew-2.0.txt mysql-5.7-5.7.26/extra/libevent/whatsnew-2.0.txt --- mysql-5.7-5.7.25/extra/libevent/whatsnew-2.0.txt 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/whatsnew-2.0.txt 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,609 @@ +What's New In Libevent 2.0 so far: + +1. Meta-issues + +1.1. About this document + + This document describes the key differences between Libevent 1.4 and + Libevent 2.0, from a user's point of view. It was most recently + updated based on features in git master as of August 2010. + + NOTE: I am very sure that I missed some thing on this list. Caveat + haxxor. + +1.2. Better documentation + + There is now a book-in-progress that explains how to use Libevent and its + growing pile of APIs. As of this writing, it covers everything except the + http and rpc code. Check out the latest draft at + http://www.wangafu.net/~nickm/libevent-book/ . + +2. New and Improved Event APIs + + Many APIs are improved, refactored, or deprecated in Libevent 2.0. + + COMPATIBILITY: + + Nearly all existing code that worked with Libevent 1.4 should still + work correctly with Libevent 2.0. However, if you are writing new code, + or if you want to port old code, we strongly recommend using the new APIs + and avoiding deprecated APIs as much as possible. + + Binaries linked against Libevent 1.4 will need to be recompiled to link + against Libevent 2.0. This is nothing new; we have never been good at + preserving binary compatibility between releases. We'll try harder in the + future, though: see 2.1 below. + +2.1. New header layout for improved forward-compatibility + + Libevent 2.0 has a new header layout to make it easier for programmers to + write good, well-supported libevent code. The new headers are divided + into three types. + + There are *regular headers*, like event2/event.h. These headers contain + the functions that most programmers will want to use. + + There are *backward compatibility headers*, like event2/event_compat.h. + These headers contain declarations for deprecated functions from older + versions of Libevent. Documentation in these headers should suggest what's + wrong with the old functions, and what functions you want to start using + instead of the old ones. Some of these functions might be removed in a + future release. New programs should generally not include these headers. + + Finally, there are *structure headers*, like event2/event_struct.h. + These headers contain definitions of some structures that Libevent has + historically exposed. Exposing them caused problems in the past, + since programs that were compiled to work with one version of Libevent + would often stop working with another version that changed the size or + layout of some object. We've moving them into separate headers so + that programmers can know that their code is not depending on any + unstable aspect of the Libvent ABI. New programs should generally not + include these headers unless they really know what they are doing, are + willing to rebuild their software whenever they want to link it + against a new version of Libevent, and are willing to risk their code + breaking if and when data structures change. + + Functionality that once was located in event.h is now more subdivided. + The core event logic is now in event2/event.h. The "evbuffer" functions + for low-level buffer manipulation are in event2/buffer.h. The + "bufferevent" functions for higher-level buffered IO are in + event2/bufferevent.h. + + COMPATIBILITY: + + All of the old headers (event.h, evdns.h, evhttp.h, evrpc.h, and + evutil.h) will continue to work by including the corresponding new + headers. Old code should not be broken by this change. + +2.2. New thread-safe, binary-compatible, harder-to-mess-up APIs + + Some aspects of the historical Libevent API have encouraged + non-threadsafe code, or forced code built against one version of Libevent + to no longer build with another. The problems with now-deprecated APIs + fell into two categories: + + 1) Dependence on the "current" event_base. In an application with + multiple event_bases, Libevent previously had a notion of the + "current" event_base. New events were linked to this base, and + the caller needed to explicitly reattach them to another base. + This was horribly error-prone. + + Functions like "event_set" that worked with the "current" event_base + are now deprecated but still available (see 2.1). There are new + functions like "event_assign" that take an explicit event_base + argument when setting up a structure. Using these functions will help + prevent errors in your applications, and to be more threadsafe. + + 2) Structure dependence. Applications needed to allocate 'struct + event' themselves, since there was no function in Libevent to do it + for them. But since the size and contents of struct event can + change between libevent versions, this created binary-compatibility + nightmares. All structures of this kind are now isolated in + _struct.h header (see 2.1), and there are new allocate-and- + initialize functions you can use instead of the old initialize-only + functions. For example, instead of malloc and event_set, you + can use event_new(). + + (For people who do really want to allocate a struct event on the + stack, or put one inside another structure, you can still use + event2/event_compat.h.) + + So in the case where old code would look like this: + + #include + ... + struct event *ev = malloc(sizeof(struct event)); + /* This call will cause a buffer overrun if you compile with one version + of Libevent and link dynamically against another. */ + event_set(ev, fd, EV_READ, cb, NULL); + /* If you forget this call, your code will break in hard-to-diagnose + ways in the presence of multiple event bases. */ + event_set_base(ev, base); + + New code will look more like this: + + #include + ... + struct event *ev; + ev = event_new(base, fd, EV_READ, cb, NULL); + +2.3. Overrideable allocation functions + + If you want to override the allocation functions used by libevent + (for example, to use a specialized allocator, or debug memory + issues, or so on), you can replace them by calling + event_set_mem_functions. It takes replacements for malloc(), + free(), and realloc(). + + If you're going to use this facility, you need to call it _before_ + Libevent does any memory allocation; otherwise, Libevent may allocate some + memory with malloc(), and free it with the free() function you provide. + + You can disable this feature when you are building Libevent by passing + the --disable-malloc-replacement argument to configure. + +2.4. Configurable event_base creation + + Older versions of Libevent would always got the fastest backend + available, unless you reconfigured their behavior with the environment + variables EVENT_NOSELECT, EVENT_NOPOLL, and so forth. This was annoying + to programmers who wanted to pick a backend explicitly without messing + with the environment. + + Also, despite our best efforts, not every backend supports every + operation we might like. Some features (like edge-triggered events, or + working with non-socket file descriptors) only work with some operating + systems' fast backends. Previously, programmers who cared about this + needed to know which backends supported what. This tended to get quite + ungainly. + + There is now an API to choose backends, either by name or by feature. + Here is an example: + + struct event_config_t *config; + struct event_base *base; + + /* Create a new configuration object. */ + config = event_config_new(); + /* We don't want to use the "select" method. */ + event_config_avoid_method(config, "select"); + /* We want a method that can work with non-socket file descriptors */ + event_config_require_features(config, EV_FEATURE_FDS); + + base = event_base_new_with_config(config); + if (!base) { + /* There is no backend method that does what we want. */ + exit(1); + } + event_config_free(config); + + Supported features are documented in event2/event.h + +2.5. Socket is now an abstract type + + All APIs that formerly accepted int as a socket type now accept + "evutil_socket_t". On Unix, this is just an alias for "int" as + before. On Windows, however, it's an alias for SOCKET, which can + be wider than int on 64-bit platforms. + +2.6. Timeouts and persistent events work together. + + Previously, it wasn't useful to set a timeout on a persistent event: + the timeout would trigger once, and never again. This is not what + applications tend to want. Instead, applications tend to want every + triggering of the event to re-set the timeout. So now, if you set + up an event like this: + struct event *ev; + struct timeval tv; + ev = event_new(base, fd, EV_READ|EV_PERSIST, cb, NULL); + tv.tv_sec = 1; + tv.tv_usec = 0; + event_add(ev, &tv); + + The callback 'cb' will be invoked whenever fd is ready to read, OR whenever + a second has passed since the last invocation of cb. + +2.7. Multiple events allowed per fd + + Older versions of Libevent allowed at most one EV_READ event and at most + one EV_WRITE event per socket, per event base. This restriction is no + longer present. + +2.8. evthread_* functions for thread-safe structures. + + Libevent structures can now be built with locking support. This code + makes it safe to add, remove, and activate events on an event base from a + different thread. (Previously, if you wanted to write multithreaded code + with Libevent, you could only an event_base or its events in one thread at + a time.) + + If you want threading support and you're using pthreads, you can just + call evthread_use_pthreads(). (You'll need to link against the + libevent_pthreads library in addition to libevent_core. These functions are + not in libevent_core.) + + If you want threading support and you're using Windows, you can just + call evthread_use_windows_threads(). + + If you are using some locking system besides Windows and pthreads, You + can enable this on a per-event-base level by writing functions to + implement mutexes, conditions, and thread IDs, and passing them to + evthread_set_lock_callbacks and related functions in event2/thread.h. + + Once locking functions are enabled, every new event_base is created with a + lock. You can prevent a single event_base from being built with a lock + disabled by using the EVENT_BASE_FLAG_NOLOCK flag in its + event_config. If an event_base is created with a lock, it is safe to call + event_del, event_add, and event_active on its events from any thread. The + event callbacks themselves are still all executed from the thread running + the event loop. + + To make an evbuffer or a bufferevent object threadsafe, call its + *_enable_locking() function. + + The HTTP api is not currently threadsafe. + + To build Libevent with threading support disabled, pass + --disable-thread-support to the configure script. + +2.9. Edge-triggered events on some backends. + + With some backends, it's now possible to add the EV_ET flag to an event + in order to request that the event's semantics be edge-triggered. Right + now, epoll and kqueue support this. + + The corresponding event_config feature is EV_FEATURE_ET; see 2.4 for more + information. + +2.10. Better support for huge numbers of timeouts + + The heap-based priority queue timer implementation for Libevent 1.4 is good + for randomly distributed timeouts, but suboptimal if you have huge numbers + of timeouts that all expire in the same amount of time after their + creation. The new event_base_init_common_timeout() logic lets you signal + that a given timeout interval will be very common, and should use a linked + list implementation instead of a priority queue. + +2.11. Improved debugging support + + It's been pretty easy to forget to delete all your events before you + re-initialize them, or otherwise put Libevent in an internally inconsistent + state. You can tell libevent to catch these and other common errors with + the new event_enable_debug_mode() call. Just invoke it before you do + any calls to other libevent functions, and it'll catch many common + event-level errors in your code. + +2.12. Functions to access all event fields + + So that you don't have to access the struct event fields directly, Libevent + now provides accessor functions to retrieve everything from an event that + you set during event_new() or event_assign(). + +3. Backend-specific and performance improvements. + +3.1. Change-minimization on O(1) backends + + With previous versions of Libevent, if you called event_del() and + event_add() repeatedly on a single event between trips to the backend's + dispatch function, the backend might wind up making unnecessary calls or + passing unnecessary data to the kernel. The new backend logic batches up + redundant adds and deletes, and performs no more operations than necessary + at the kernel level. + + This logic is on for the kqueue backend, and available (but off by + default) for the epoll backend. To turn it on for the epoll backend, + set the EVENT_BASE_FLAG_EPOLL_USE_CHANGELIST flag in the + event_base_cofig, or set the EVENT_EPOLL_USE_CHANGELIST environment + variable. Doing this with epoll may result in weird bugs if you give + any fds closed by dup() or its variants. + +3.2. Improved notification on Linux + + When we need to wake the event loop up from another thread, we use + an epollfd to do so, instead of a socketpair. This is supposed to be + faster. + +3.3. Windows: better support for everything + + Bufferevents on Windows can use a new mechanism (off-by-default; see below) + to send their data via Windows overlapped IO and get their notifications + via the IOCP API. This should be much faster than using event-based + notification. + + Other functions throughout the code have been fixed to work more + consistently with Windows. Libevent now builds on Windows using either + mingw, or using MSVC (with nmake). Libevent works fine with UNICODE + defined, or not. + + Data structures are a little smarter: our lookups from socket to pending + event are now done with O(1) hash tables rather than O(lg n) red-black + trees. + + Unfortunately, the main Windows backend is still select()-based: from + testing the IOCP backends on the mailing list, it seems that there isn't + actually a way to tell for certain whether a socket is writable with IOCP. + Libevent 2.1 may add a multithreaded WaitForMultipleEvents-based + backend for better performance with many inactive sockets and better + integration with Windows events. + +4. Improvements to evbuffers + + Libevent has long had an "evbuffer" implementation to wrap access to an + input or output memory buffer. In previous versions, the implementation + was very inefficient and lacked some desirable features. We've made many + improvements in Libevent 2.0. + +4.1. Chunked-memory internal representation + + Previously, each evbuffer was a huge chunk of memory. When we ran out of + space in an evbuffer, we used realloc() to grow the chunk of memory. When + data was misaligned, we used memmove to move the data back to the front + of the buffer. + + Needless to say, this is a terrible interface for networked IO. + + Now, evbuffers are implemented as a linked list of memory chunks, like + most Unix kernels use for network IO. (See Linux's skbuf interfaces, + or *BSD's mbufs). Data is added at the end of the linked list and + removed from the front, so that we don't ever need realloc huge chunks + or memmove the whole buffer contents. + + To avoid excessive calls to read and write, we use the readv/writev + interfaces (or WSASend/WSARecv on Windows) to do IO on multiple chunks at + once with a single system call. + + COMPATIBILITY NOTE: + The evbuffer struct is no longer exposed in a header. The code here is + too volatile to expose an official evbuffer structure, and there was never + any means provided to create an evbuffer except via evbuffer_new which + heap-allocated the buffer. + + If you need access to the whole buffer as a linear chunk of memory, the + EVBUFFER_DATA() function still works. Watch out, though: it needs to copy + the buffer's contents in a linear chunk before you can use it. + +4.2. More flexible readline support + + The old evbuffer_readline() function (which accepted any sequence of + CR and LF characters as a newline, and which couldn't handle lines + containing NUL characters), is now deprecated. The preferred + function is evbuffer_readln(), which supports a variety of + line-ending styles, and which can return the number of characters in + the line returned. + + You can also call evbuffer_search_eol() to find the end of a line + in an evbuffer without ever extracting the line. + +4.3. Support for file-based IO in evbuffers. + + You can now add chunks of a file into a evbuffer, and Libevent will have + your OS use mapped-memory functionality, sendfile, or splice to transfer + the data without ever copying it to userspace. On OSs where this is not + supported, Libevent just loads the data. + + There are probably some bugs remaining in this code. On some platforms + (like Windows), it just reads the relevant parts of the file into RAM. + +4.4. Support for zero-copy ("scatter/gather") writes in evbuffers. + + You can add a piece of memory to an evbuffer without copying it. + Instead, Libevent adds a new element to the evbuffer's linked list of + chunks with a pointer to the memory you supplied. You can do this + either with a reference-counted chunk (via evbuffer_add_reference), or + by asking Libevent for a pointer to its internal vectors (via + evbuffer_reserve_space or evbuffer_peek()). + +4.5. Multiple callbacks per evbuffer + + Previously, you could only have one callback active on an evbuffer at a + time. In practice, this meant that if one part of Libevent was using an + evbuffer callback to notice when an internal evbuffer was reading or + writing data, you couldn't have your own callback on that evbuffer. + + Now, you can now use the evbuffer_add_cb() function to add a callback that + does not interfere with any other callbacks. + + The evbuffer_setcb() function is now deprecated. + +4.6. New callback interface + + Previously, evbuffer callbacks were invoked with the old size of the + buffer and the new size of the buffer. This interface could not capture + operations that simultaneously filled _and_ drained a buffer, or handle + cases where we needed to postpone callbacks until multiple operations were + complete. + + Callbacks that are set with evbuffer_setcb still use the old API. + Callbacks added with evbuffer_add_cb() use a new interface that takes a + pointer to a struct holding the total number of bytes drained read and the + total number of bytes written. See event2/buffer.h for full details. + +4.7. Misc new evbuffer features + + You can use evbuffer_remove() to move a given number of bytes from one + buffer to another. + + The evbuffer_search() function lets you search for repeated instances of + a pattern inside an evbuffer. + + You can use evbuffer_freeze() to temporarily suspend drains from or adds + to a given evbuffer. This is useful for code that exposes an evbuffer as + part of its public API, but wants users to treat it as a pure source or + sink. + + There's an evbuffer_copyout() that looks at the data at the start of an + evbuffer without doing a drain. + + You can have an evbuffer defer all of its callbacks, so that rather than + being invoked immediately when the evbuffer's length changes, they are + invoked from within the event_loop. This is useful when you have a + complex set of callbacks that can change the length of other evbuffers, + and you want to avoid having them recurse and overflow your stack. + +5. Bufferevents improvements + + Libevent has long included a "bufferevents" structure and related + functions that were useful for generic buffered IO on a TCP connection. + This is what Libevent uses for its HTTP implementation. In addition to + the improvements that they get for free from the underlying evbuffer + implementation above, there are many new features in Libevent 2.0's + evbuffers. + +5.1. New OO implementations + + The "bufferevent" structure is now an abstract base type with multiple + implementations. This should not break existing code, which always + allocated bufferevents with bufferevent_new(). + + Current implementations of the bufferevent interface are described below. + +5.2. bufferevent_socket_new() replaces bufferevent_new() + + Since bufferevents that use a socket are not the only kind, + bufferevent_new() is now deprecated. Use bufferevent_socket_new() + instead. + +5.3. Filtered bufferevent IO + + You can use bufferevent_filter_new() to create a bufferevent that wraps + around another bufferevent and transforms data it is sending and + receiving. See test/regress_zlib.c for a toy example that uses zlib to + compress data before sending it over a bufferevent. + +5.3. Linked pairs of bufferevents + + You can use bufferevent_pair_new() to produce two linked + bufferevents. This is like using socketpair, but doesn't require + system-calls. + +5.4. SSL support for bufferevents with OpenSSL + + There is now a bufferevent type that supports SSL/TLS using the + OpenSSL library. The code for this is build in a separate + library, libevent_openssl, so that your programs don't need to + link against OpenSSL unless they actually want SSL support. + + There are two ways to construct one of these bufferevents, both + declared in . If you want to wrap an + SSL layer around an existing bufferevent, you would call the + bufferevent_openssl_filter_new() function. If you want to do SSL + on a socket directly, call bufferevent_openssl_socket_new(). + +5.5. IOCP support for bufferevents on Windows + + There is now a bufferevents backend that supports IOCP on Windows. + Supposedly, this will eventually make Windows IO much faster for + programs using bufferevents. We'll have to see; the code is not + currently optimized at all. To try it out, call the + event_base_start_iocp() method on an event_base before contructing + bufferevents. + + This is tricky code; there are probably some bugs hiding here. + +5.6. Improved connect support for bufferevents. + + You can now create a bufferevent that is not yet connected to any + host, and tell it to connect, either by address or by hostname. + + The functions to do this are bufferevent_socket_connect and + bufferevent_socket_connect_hostname. + +5.7. Rate-limiting for bufferevents + + If you need to limit the number of bytes read/written by a single + bufferevent, or by a group of them, you can do this with a new set of + bufferevent rate-limiting calls. + +6. Other improvements + +6.1. DNS improvements + +6.1.1. DNS: IPv6 nameservers + + The evdns code now lets you have nameservers whose addresses are IPv6. + +6.1.2. DNS: Better security + + Libevent 2.0 tries harder to resist DNS answer-sniping attacks than + earlier versions of evdns. See comments in the code for full details. + + Notably, evdns now supports the "0x20 hack" to make it harder to + impersonate a DNS server. Additionally, Libevent now uses a strong + internal RNG to generate DNS transaction IDs, so you don't need to supply + your own. + +6.1.3. DNS: Getaddrinfo support + + There's now an asynchronous getaddrinfo clone, evdns_getaddrinfo(), + to make the results of the evdns functions more usable. It doesn't + support every feature of a typical platform getaddrinfo() yet, but it + is quite close. + + There is also a blocking evutil_getaddrinfo() declared in + event2/util.h, to provide a getaddrinfo() implementation for + platforms that don't have one, and smooth over the differences in + various platforms implementations of RFC3493. + + Bufferevents provide bufferevent_connect_hostname(), which combines + the name lookup and connect operations. + +6.1.4. DNS: No more evdns globals + + Like an event base, evdns operations are now supposed to use an evdns_base + argument. This makes them easier to wrap for other (more OO) languages, + and easier to control the lifetime of. The old evdns functions will + still, of course, continue working. + +6.2. Listener support + + You can now more easily automate setting up a bound socket to listen for + TCP connections. Just use the evconnlistener_*() functions in the + event2/listener.h header. + + The listener code supports IOCP on Windows if available. + +6.3. Secure RNG support + + Network code very frequently needs a secure, hard-to-predict random number + generator. Some operating systems provide a good C implementation of one; + others do not. Libevent 2.0 now provides a consistent implementation + based on the arc4random code originally from OpenBSD. Libevent (and you) + can use the evutil_secure_rng_*() functions to access a fairly secure + random stream of bytes. + +6.4. HTTP + + The evhttp uriencoding and uridecoding APIs have updated versions + that behave more correctly, and can handle strings with internal NULs. + + The evhttp query parsing and URI parsing logic can now detect errors + more usefully. Moreover, we include an actual URI parsing function + (evhttp_uri_parse()) to correctly parse URIs, so as to discourage + people from rolling their own ad-hoc parsing functions. + + There are now accessor functions for the useful fields of struct http + and friends; it shouldn't be necessary to access them directly any + more. + + Libevent now lets you declare support for all specified HTTP methods, + including OPTIONS, PATCH, and so on. The default list is unchanged. + + Numerous evhttp bugs also got fixed. + +7. Infrastructure improvements + +7.1. Better unit test framework + + We now use a unit test framework that Nick wrote called "tinytest". + The main benefit from Libevent's point of view is that tests which + might mess with global state can all run each in their own + subprocess. This way, when there's a bug that makes one unit test + crash or mess up global state, it doesn't affect any others. + +7.2. Better unit tests + + Despite all the code we've added, our unit tests are much better than + before. Right now, iterating over the different backends on various + platforms, I'm getting between 78% and 81% test coverage, compared + with less than 45% test coverage in Libevent 1.4. + diff -Nru mysql-5.7-5.7.25/extra/libevent/whatsnew-2.1.txt mysql-5.7-5.7.26/extra/libevent/whatsnew-2.1.txt --- mysql-5.7-5.7.25/extra/libevent/whatsnew-2.1.txt 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/whatsnew-2.1.txt 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,768 @@ + What's new in Libevent 2.1 + Nick Mathewson + +0. Before we start + +0.1. About this document + + This document describes the key differences between Libevent 2.0 and + Libevent 2.1, from a user's point of view. It's a work in progress. + + For better documentation about libevent, see the links at + http://libevent.org/ + + Libevent 2.1 would not be possible without the generous help of + numerous volunteers. For a list of who did what in Libevent 2.1, + please see the ChangeLog! + + NOTE: I am very sure that I missed some thing on this list. Caveat + haxxor. + +0.2. Where to get help + + Try looking at the other documentation too. All of the header files + have documentation in the doxygen format; this gets turned into nice + HTML and linked to from the libevent.org website. + + There is a work-in-progress book with reference manual at + http://www.wangafu.net/~nickm/libevent-book/ . + + You can ask questions on the #libevent IRC channel at irc.oftc.net or + on the mailing list at libevent-users@freehaven.net. The mailing list + is subscribers-only, so you will need to subscribe before you post. + +0.3. Compatibility + + Our source-compatibility policy is that correct code (that is to say, + code that uses public interfaces of Libevent and relies only on their + documented behavior) should have forward source compatibility: any + such code that worked with a previous version of Libevent should work + with this version too. + + We don't try to do binary compatibility except within stable release + series, so binaries linked against any version of Libevent 2.0 will + probably need to be recompiled against Libevent 2.1.4-alpha if you + want to use it. It is probable that we'll break binary compatibility + again before Libevent 2.1 is stable. + +1. New APIs and features + +1.1. New ways to build libevent + + We now provide an --enable-gcc-hardening configure option to turn on + GCC features designed for increased code security. + + There is also an --enable-silent-rules configure option to make + compilation run more quietly with automake 1.11 or later. + + You no longer need to use the --enable-gcc-warnings option to turn on + all of the GCC warnings that Libevent uses. The only change from + using that option now is to turn warnings into errors. + + For IDE users, files that are not supposed to be built are now + surrounded with appropriate #ifdef lines to keep your IDE from getting + upset. + + There is now an alternative cmake-based build process; cmake users + should see the relevant sections in the README. + + +1.2. New functions for events and the event loop + + If you're running Libevent with multiple event priorities, you might + want to make sure that Libevent checks for new events frequently, so + that time-consuming or numerous low-priority events don't keep it from + checking for new high-priority events. You can now use the + event_config_set_max_dispatch_interval() interface to ensure that the + loop checks for new events either every N microseconds, every M + callbacks, or both. + + When configuring an event base, you can now choose whether you want + timers to be more efficient, or more precise. (This only has effect + on Linux for now.) Timers are efficient by default: to select more + precise timers, use the EVENT_BASE_FLAG_PRECISE_TIMER flag when + constructing the event_config, or set the EVENT_PRECISE_TIMER + environment variable to a non-empty string. + + There is an EVLOOP_NO_EXIT_ON_EMPTY flag that tells event_base_loop() + to keep looping even when there are no pending events. (Ordinarily, + event_base_loop() will exit as soon as no events are pending.) + + Past versions of Libevent have been annoying to use with some + memory-leak-checking tools, because Libevent allocated some global + singletons but provided no means to free them. There is now a + function, libevent_global_shutdown(), that you can use to free all + globally held resources before exiting, so that your leak-check tools + don't complain. (Note: this function doesn't free non-global things + like events, bufferevents, and so on; and it doesn't free anything + that wouldn't otherwise get cleaned up by the operating system when + your process exit()s. If you aren't using a leak-checking tool, there + is not much reason to call libevent_global_shutdown().) + + There is a new event_base_get_npriorities() function to return the + number of priorities set in the event base. + + Libevent 2.0 added an event_new() function to construct a new struct + event on the heap. Unfortunately, with event_new(), there was no + equivalent for: + + struct event ev; + event_assign(&ev, base, fd, EV_READ, callback, &ev); + + In other words, there was no easy way for event_new() to set up an + event so that the event itself would be its callback argument. + Libevent 2.1 lets you do this by passing "event_self_cbarg()" as the + callback argument: + + struct event *evp; + evp = event_new(base, fd, EV_READ, callback, + event_self_cbarg()); + + There's also a new event_base_get_running_event() function you can + call from within a Libevent callback to get a pointer to the current + event. This should never be strictly necessary, but it's sometimes + convenient. + + The event_base_once() function used to leak some memory if the event + that it added was never actually triggered. Now, its memory is + tracked in the event_base and freed when the event_base is freed. + Note however that Libevent doesn't know how to free any information + passed as the callback argument to event_base_once is still something + you'll might need a way to de-allocate yourself. + + There is an event_get_priority() function to return an event's + priority. + + By analogy to event_base_loopbreak(), there is now an + event_base_loopcontinue() that tells Libevent to stop processing + active event callbacks, and re-scan for new events right away. + + There's a function, event_base_foreach_event(), that can iterate over + every event currently pending or active on an event base, and invoke a + user-supplied callback on each. The callback must not alter the events + or add or remove anything to the event base. + + We now have an event_remove_timer() function to remove the timeout on + an event while leaving its socket and/or signal triggers unchanged. + (If we were designing the API from scratch, this would be the behavior + of "event_add(ev, NULL)" on an already-added event with a timeout. But + that's a no-op in past versions of Libevent, and we don't want to + break compatibility.) + + You can use the new event_base_get_num_events() function to find the + number of events active or pending on an event_base. To find the + largest number of events that there have been since the last call, use + event_base_get_max_events(). + + You can now activate all the events waiting for a given fd or signal + using the event_base_active_by_fd() and event_base_active_by_signal() + APIs. + + On backends that support it (currently epoll), there is now an + EV_CLOSED flag that programs can use to detect when a socket has + closed without having to read all the bytes until receiving an EOF. + +1.3. Event finalization + +1.3.1. Why event finalization? + + Libevent 2.1 now supports an API for safely "finalizing" events that + might be running in multiple threads, and provides a way to slightly + change the semantics of event_del() to prevent deadlocks in + multithreaded programs. + + To motivate this feature, consider the following code, in the context + of a mulithreaded Libevent application: + + struct connection *conn = event_get_callback_arg(ev); + event_del(ev); + connection_free(conn); + + Suppose that the event's callback might be running in another thread, + and using the value of "conn" concurrently. We wouldn't want to + execute the connection_free() call until "conn" is no longer in use. + How can we make this code safe? + + Libevent 2.0 answered that question by saying that the event_del() + call should block if the event's callback is running in another + thread. That way, we can be sure that event_del() has canceled the + callback (if the callback hadn't started running yet), or has waited + for the callback to finish. + + But now suppose that the data structure is protected by a lock, and we + have the following code: + + void check_disable(struct connection *connection) { + lock(connection); + if (should_stop_reading(connection)) + event_del(connection->read_event); + unlock(connection); + } + + What happens when we call check_disable() from a callback and from + another thread? Let's say that the other thread gets the lock + first. If it decides to call event_del(), it will wait for the + callback to finish. But meanwhile, the callback will be waiting for + the lock on the connection. Since each threads is waiting for the + other one to release a resource, the program will deadlock. + + This bug showed up in multithreaded bufferevent programs in 2.1, + particularly when freeing bufferevents. (For more information, see + the "Deadlock when calling bufferevent_free from an other thread" + thread on libevent-users starting on 6 August 2012 and running through + February of 2013. You might also like to read my earlier writeup at + http://archives.seul.org/libevent/users/Feb-2012/msg00053.html and + the ensuing discussion.) + +1.3.2. The EV_FINALIZE flag and avoiding deadlock + + To prevent the deadlock condition described above, Libevent + 2.1.3-alpha adds a new flag, "EV_FINALIZE". You can pass it to + event_new() and event_assign() along with EV_READ, EV_WRITE, and the + other event flags. + + When an event is constructed with the EV_FINALIZE flag, event_del() + will not block on that event, even when the event's callback is + running in another thread. By using EV_FINALIZE, you are therefore + promising not to use the "event_del(ev); free(event_get_callback_arg(ev));" + pattern, but rather to use one of the finalization functions below to + clean up the event. + + EV_FINALIZE has no effect on a single-threaded program, or on a + program where events are only used from one thread. + + + There are also two new variants of event_del() that you can use for + more fine-grained control: + event_del_noblock(ev) + event_del_block(ev) + The event_del_noblock() function will never block, even if the event + callback is running in another thread and doesn't have the EV_FINALIZE + flag. The event_del_block() function will _always_ block if the event + callback is running in another thread, even if the event _does_ have + the EV_FINALIZE flag. + + [A future version of Libevent may have a way to make the EV_FINALIZE + flag the default.] + +1.3.3. Safely finalizing events + + To safely tear down an event that may be running, Libevent 2.1.3-alpha + introduces event_finalize() and event_free_finalize(). You call them + on an event, and provide a finalizer callback to be run on the event + and its callback argument once the event is definitely no longer + running. + + With event_free_finalize(), the event is also freed once the finalizer + callback has been invoked. + + A finalized event cannot be re-added or activated. The finalizer + callback must not add events, activate events, or attempt to + "resucitate" the event being finalized in any way. + + If any finalizer callbacks are pending as the event_base is being + freed, they will be invoked. You can override this behavior with the + new function event_base_free_nofinalize(). + +1.4. New debugging features + + You can now turn on debug logs at runtime using a new function, + event_enable_debug_logging(). + + The event_enable_lock_debugging() function is now spelled correctly. + You can still use the old "event_enable_lock_debuging" name, though, + so your old programs shouldnt' break. + + There's also been some work done to try to make the debugging logs + more generally useful. + +1.5. New evbuffer functions + + In Libevent 2.0, we introduced evbuffer_add_file() to add an entire + file's contents to an evbuffer, and then send them using sendfile() or + mmap() as appropriate. This API had some drawbacks, however. + Notably, it created one mapping or fd for every instance of the same + file added to any evbuffer. Also, adding a file to an evbuffer could + make that buffer unusable with SSL bufferevents, filtering + bufferevents, and any code that tried to read the contents of the + evbuffer. + + Libevent 2.1 adds a new evbuffer_file_segment API to solve these + problems. Now, you can use evbuffer_file_segment_new() to construct a + file-segment object, and evbuffer_add_file_segment() to insert it (or + part of it) into an evbuffer. These segments avoid creating redundant + maps or fds. Better still, the code is smart enough (when the OS + supports sendfile) to map the file when that's necessary, and use + sendfile() otherwise. + + File segments can receive callback functions that are invoked when the + file segments are freed. + + The evbuffer_ptr interface has been extended so that an evbuffer_ptr + can now yield a point just after the end of the buffer. This makes + many algorithms simpler to implement. + + There's a new evbuffer_add_buffer() interface that you can use to add + one buffer to another nondestructively. When you say + evbuffer_add_buffer_reference(outbuf, inbuf), outbuf now contains a + reference to the contents of inbuf. + + To aid in adding data in bulk while minimizing evbuffer calls, there + is an evbuffer_add_iovec() function. + + There's a new evbuffer_copyout_from() variant function to enable + copying data nondestructively from the middle of a buffer. + + evbuffer_readln() now supports an EVBUFFER_EOL_NUL argument to fetch + NUL-terminated strings from buffers. + + There's a new evbuffer_set_flags()/evbuffer_clear_flags() that you can use to + set EVBUFFER_FLAG_DRAINS_TO_FD. + +1.6. New functions and features: bufferevents + + You can now use the bufferevent_getcb() function to find out a + bufferevent's callbacks. Previously, there was no supported way to do + that. + + The largest chunk readable or writeable in a single bufferevent + callback is no longer hardcoded; it's now configurable with + the new functions bufferevent_set_max_single_read() and + bufferevent_set_max_single_write(). + + For consistency, OpenSSL bufferevents now make sure to always set one + of BEV_EVENT_READING or BEV_EVENT_WRITING when invoking an event + callback. + + Calling bufferevent_set_timeouts(bev, NULL, NULL) now removes the + timeouts from socket and ssl bufferevents correctly. + + You can find the priority at which a bufferevent runs with + bufferevent_get_priority(). + + The function bufferevent_get_token_bucket_cfg() can retrieve the + rate-limit settings for a bufferevent; bufferevent_getwatermark() can + return a bufferevent's current watermark settings. + + You can manually trigger a bufferevent's callbacks via + bufferevent_trigger() and bufferevent_trigger_event(). + + Also you can manually increment/decrement reference for bufferevent with + bufferevent_incref()/bufferevent_decref(), it is useful in situations where a + user may reference the bufferevent somewhere else. + + Now bufferevent_openssl supports "dirty" shutdown (when the peer closes the + TCP connection before closing the SSL channel), see + bufferevent_openssl_get_allow_dirty_shutdown() and + bufferevent_openssl_set_allow_dirty_shutdown(). + + And also libevent supports openssl 1.1. + +1.7. New functions and features: evdns + + The previous evdns interface used an "open a test UDP socket" trick in + order to detect IPv6 support. This was a hack, since it would + sometimes badly confuse people's firewall software, even though no + packets were sent. The current evdns interface-detection code uses + the appropriate OS functions to see which interfaces are configured. + + The evdns_base_new() function now has multiple possible values for its + second (flags) argument. Using 1 and 0 have their old meanings, though the + 1 flag now has a symbolic name of EVDNS_BASE_INITIALIZE_NAMESERVERS. + A second flag is now supported too: the EVDNS_BASE_DISABLE_WHEN_INACTIVE + flag, which tells the evdns_base that it should not prevent Libevent from + exiting while it has no DNS requests in progress. + + There is a new evdns_base_clear_host_addresses() function to remove + all the /etc/hosts addresses registered with an evdns instance. + + Also there is evdns_base_get_nameserver_addr() for retrieve the address of + the 'idx'th configured nameserver. + +1.8. New functions and features: evconnlistener + + Libevent 2.1 adds the following evconnlistener flags: + + LEV_OPT_DEFERRED_ACCEPT -- Tells the OS that it doesn't need to + report sockets as having arrived until the initiator has sent some + data too. This can greatly improve performance with protocols like + HTTP where the client always speaks first. On operating systems + that don't support this functionality, this option has no effect. + + LEV_OPT_REUSEABLE_PORT -- Indicates that we ask to allow multiple servers + to bind to the same port if they each set the option Ionly on Linux and + >=3.9) + + LEV_OPT_DISABLED -- Creates an evconnlistener in the disabled (not + listening) state. + + Libevent 2.1 changes the behavior of the LEV_OPT_CLOSE_ON_EXEC + flag. Previously, it would apply to the listener sockets, but not to + the accepted sockets themselves. That's almost never what you want. + Now, it applies both to the listener and the accepted sockets. + +1.9. New functions and features: evhttp + + ********************************************************************** + NOTE: The evhttp module will eventually be deprecated in favor of Mark + Ellzey's libevhtp library. Don't worry -- this won't happen until + libevhtp provides every feature that evhttp does, and provides a + compatible interface that applications can use to migrate. + ********************************************************************** + + Previously, you could only set evhttp timeouts in increments of one + second. Now, you can use evhttp_set_timeout_tv() and + evhttp_connection_set_timeout_tv() to configure + microsecond-granularity timeouts. + + Also there is evhttp_connection_set_initial_retry_tv() to change initial + retry timeout. + + There are a new pair of functions: evhttp_set_bevcb() and + evhttp_connection_base_bufferevent_new(), that you can use to + configure which bufferevents will be used for incoming and outgoing + http connections respectively. These functions, combined with SSL + bufferevents, should enable HTTPS support. + + There's a new evhttp_foreach_bound_socket() function to iterate over + every listener on an evhttp object. + + Whitespace between lines in headers is now folded into a single space; + whitespace at the end of a header is now removed. + + The socket errno value is now preserved when invoking an http error + callback. + + There's a new kind of request callback for errors; you can set it with + evhttp_request_set_error_cb(). It gets called when there's a request error, + and actually reports the error code and lets you figure out which request + failed. + + You can navigate from an evhttp_connection back to its evhttp with the + new evhttp_connection_get_server() function. + + You can override the default HTTP Content-Type with the new + evhttp_set_default_content_type() function + + There's a new evhttp_connection_get_addr() API to return the peer + address of an evhttp_connection. + + The new evhttp_send_reply_chunk_with_cb() is a variant of + evhttp_send_reply_chunk() with a callback to be invoked when the + chunk is sent. + + The evhttp_request_set_header_cb() facility adds a callback to be + invoked while parsing headers. + + The evhttp_request_set_on_complete_cb() facility adds a callback to be + invoked on request completion. + + You can add linger-close for http server by passing + EVHTTP_SERVER_LINGERING_CLOSE to evhttp_set_flags(), with this flag server + read all the clients body, and only after this respond with an error if the + clients body exceed max_body_size (since some clients cannot read response + otherwise). + + The evhttp_connection_set_family() can bypass family hint to evdns. + + There are some flags available for connections, which can be installed with + evhttp_connection_set_flags(): + - EVHTTP_CON_REUSE_CONNECTED_ADDR -- reuse connection address on retry (avoid + extra DNS request). + - EVHTTP_CON_READ_ON_WRITE_ERROR - try read error, since server may already + close the connection. + + The evhttp_connection_free_on_completion() can be used to tell libevent to + free the connection object after the last request has completed or failed. + + There is evhttp_request_get_response_code_line() if + evhttp_request_get_response_code() is not enough for you. + + There are *evhttp_uri_parse_with_flags() that accepts + EVHTTP_URI_NONCONFORMANT to tolerate URIs that do not conform to RFC3986. + The evhttp_uri_set_flags() can changes the flags on URI. + +1.10. New functions and features: evutil + + There's a function "evutil_secure_rng_set_urandom_device_file()" that + you can use to override the default file that Libevent uses to seed + its (sort-of) secure RNG. + + The evutil_date_rfc1123() returns date in RFC1123 + + There are new API to work with monotonic timer -- monotonic time is + guaranteed never to run in reverse, but is not necessarily epoch-based. Use + it to make reliable measurements of elapsed time between events even when the + system time may be changed: + - evutil_monotonic_timer_new()/evutil_monotonic_timer_free() + - evutil_configure_monotonic_time() + - evutil_gettime_monotonic() + + Use evutil_make_listen_socket_reuseable_port() to set SO_REUSEPORT (linux >= + 3.9) + + The evutil_make_tcp_listen_socket_deferred() can make a tcp listener socket + defer accept()s until there is data to read (TCP_DEFER_ACCEPT). + +2. Cross-platform performance improvements + +2.1. Better data structures + + We replaced several users of the sys/queue.h "TAILQ" data structure + with the "LIST" data structure. Because this data type doesn't + require FIFO access, it requires fewer pointer checks and + manipulations to keep it in line. + + All previous versions of Libevent have kept every pending (added) + event in an "eventqueue" data structure. Starting in Libevent 2.0, + however, this structure became redundant: every pending timeout event + is stored in the timeout heap or in one of the common_timeout queues, + and every pending fd or signal event is stored in an evmap. Libevent + 2.1 removes this data structure, and thereby saves all of the code + that we'd been using to keep it updated. + +2.2. Faster activations and timeouts + + It's a common pattern in older code to use event_base_once() with a + 0-second timeout to ensure that a callback will get run 'as soon as + possible' in the current iteration of the Libevent loop. We optimize + this case by calling event_active() directly, and bypassing the + timeout pool. (People who are using this pattern should also consider + using event_active() themselves.) + + Libevent 2.0 would wake up a polling event loop whenever the first + timeout in the event loop was adjusted--whether it had become earlier + or later. We now only notify the event loop when a change causes the + expiration time to become _sooner_ than it would have been otherwise. + + The timeout heap code is now optimized to perform fewer comparisons + and shifts when changing or removing a timeout. + + Instead of checking for a wall-clock time jump every time we call + clock_gettime(), we now check only every 5 seconds. This should save + a huge number of gettimeofday() calls. + +2.3. Microoptimizations + + Internal event list maintainance no longer use the antipattern where + we have one function with multiple totally independent behaviors + depending on an argument: + #define OP1 1 + #define OP2 2 + #define OP3 3 + void func(int operation, struct event *ev) { + switch (op) { + ... + } + } + Instead, these functions are now split into separate functions for + each operation: + void func_op1(struct event *ev) { ... } + void func_op2(struct event *ev) { ... } + void func_op3(struct event *ev) { ... } + + This produces better code generation and inlining decisions on some + compilers, and makes the code easier to read and check. + +2.4. Evbuffer performance improvements + + The EVBUFFER_EOL_CRLF line-ending type is now much faster, thanks to + smart optimizations. + +2.5. HTTP performance improvements + + o Performance tweak to evhttp_parse_request_line. (aee1a97 Mark Ellzey) + o Add missing break to evhttp_parse_request_line (0fcc536) + +2.6. Coarse timers by default on Linux + + Due to limitations of the epoll interface, Libevent programs using epoll + have not previously been able to wait for timeouts with accuracy smaller + than 1 millisecond. But Libevent had been using CLOCK_MONOTONIC for + timekeeping on Linux, which is needlessly expensive: CLOCK_MONOTONIC_COARSE + has approximately the resolution corresponding to epoll, and is much faster + to invoke than CLOCK_MONOTONIC. + + To disable coarse timers, and get a more plausible precision, use the + new EVENT_BASE_FLAG_PRECISE_TIMER flag when setting up your event base. + +3. Backend/OS-specific improvements + +3.1. Linux-specific improvements + + The logic for deciding which arguements to use with epoll_ctl() is now + a table-driven lookup, rather than the previous pile of cascading + branches. This should minimize epoll_ctl() calls and make the epoll + code run a little faster on change-heavy loads. + + Libevent now takes advantage of Linux's support for enhanced APIs + (e.g., SOCK_CLOEXEC, SOCK_NONBLOCK, accept4, pipe2) that allow us to + simultaneously create a socket, make it nonblocking, and make it + close-on-exec. This should save syscalls throughout our codebase, and + avoid race-conditions if an exec() occurs after a socket is socket is + created but before we can make it close-on-execute on it. + +3.2. Windows-specific improvements + + We now use GetSystemTimeAsFileTime to implement gettimeofday. It's + significantly faster and more accurate than our old ftime()-based approach. + +3.3. Improvements in the solaris evport backend. + + The evport backend has been updated to use many of the infrastructure + improvements from Libevent 2.0. Notably, it keeps track of per-fd + information using the evmap infrastructure, and removes a number of + linear scans over recently-added events. This last change makes it + efficient to receive many more events per evport_getn() call, thereby + reducing evport overhead in general. + +3.4. OSX backend improvements + + The OSX select backend doesn't like to have more than a certain number + of fds set unless an "unlimited select" option has been set. + Therefore, we now set it. + +3.5. Monotonic clocks on even more platforms + + Libevent previously used a monotonic clock for its internal timekeeping + only on platforms supporting the POSIX clock_gettime() interface. Now, + Libevent has support for monotonic clocks on OSX and Windows too, and a + fallback implementation for systems without monotonic clocks that will at + least keep time running forwards. + + Using monotonic timers makes Libevent more resilient to changes in the + system time, as can happen in small amounts due to clock adjustments from + NTP, or in large amounts due to users who move their system clocks all over + the timeline in order to keep nagware from nagging them. + +3.6. Faster cross-thread notification on kqueue + + When a thread other than the one in which the main event loop is + running needs to wake the thread running the main event loop, Libevent + usually writes to a socketpair in order to force the main event loop + to wake up. On Linux, we've been able to use eventfd() instead. Now + on BSD and OSX systems (any anywhere else that has kqueue with the + EVFILT_USER extension), we can use EVFILT_USER to wake up the main + thread from kqueue. This should be a tiny bit faster than the + previous approach. + +4. Infrastructure improvements + +4.1. Faster tests + + I've spent some time to try to make the unit tests run faster in + Libevent 2.1. Nearly all of this was a matter of searching slow tests + for unreasonably long timeouts, and cutting them down to reasonably + long delays, though on one or two cases I actually had to parallelize + an operation or improve an algorithm. + + On my desktop, a full "make verify" run of Libevent 2.0.18-stable + requires about 218 seconds. Libevent 2.1.1-alpha cuts this down to + about 78 seconds. + + Faster unit tests are great, since they let programmers test their + changes without losing their train of thought. + +4.2. Finicky tests are now off-by-default + + The Tinytest unit testing framework now supports optional tests, and + Libevent uses them. By default, Libevent's unit testing framework + does not run tests that require a working network, and does not run + tests that tend to fail on heavily loaded systems because of timing + issues. To re-enable all tests, run ./test/regress using the "@all" + alias. + +4.3. Modernized use of autotools + + Our autotools-based build system has been updated to build without + warnings on recent autoconf/automake versions. + + Libevent's autotools makefiles are no longer recursive. This allows + make to use the maximum possible parallelism to do the minimally + necessary amount of work. See Peter Miller's "Recursive Make + Considered Harmful" at http://miller.emu.id.au/pmiller/books/rmch/ for + more information here. + + We now use the "quiet build" option to suppress distracting messages + about which commandlines are running. You can get them back with + "make V=1". + +4.4. Portability + + Libevent now uses large-file support internally on platforms where it + matters. You shouldn't need to set _LARGEFILE or OFFSET_BITS or + anything magic before including the Libevent headers, either, since + Libevent now sets the size of ev_off_t to the size of off_t that it + received at compile time, not to some (possibly different) size based + on current macro definitions when your program is building. + + We now also use the Autoconf AC_USE_SYSTEM_EXTENSIONS mechanism to + enable per-system macros needed to enable not-on-by-default features. + Unlike the rest of the autoconf macros, we output these to an + internal-use-only evconfig-private.h header, since their names need to + survive unmangled. This lets us build correctly on more platforms, + and avoid inconsistencies when some files define _GNU_SOURCE and + others don't. + + Libevent now tries to detect OpenSSL via pkg-config. + +4.5. Standards conformance + + Previous Libevent versions had no consistent convention for internal + vs external identifiers, and used identifiers starting with the "_" + character throughout the codebase. That's no good, since the C + standard says that identifiers beginning with _ are reserved. I'm not + aware of having any collisions with system identifiers, but it's best + to fix these things before they cause trouble. + + We now avoid all use of the _identifiers in the Libevent source code. + These changes were made *mainly* through the use of automated scripts, + so there shouldn't be any mistakes, but you never know. + + As an exception, the names _EVENT_LOG_DEBUG, _EVENT_LOG_MSG_, + _EVENT_LOG_WARN, and _EVENT_LOG_ERR are still exposed in event.h: they + are now deprecated, but to support older code, they will need to stay + around for a while. New code should use EVENT_LOG_DEBUG, + EVENT_LOG_MSG, EVENT_LOG_WARN, and EVENT_LOG_ERR instead. + +4.6. Event and callback refactoring + + As a simplification and optimization to Libevent's "deferred callback" + logic (introduced in 2.0 to avoid callback recursion), Libevent now + treats all of its deferrable callback types using the same logic it + uses for active events. Now deferred events no longer cause priority + inversion, no longer require special code to cancel them, and so on. + + Regular events and deferred callbacks now both descend from an + internal light-weight event_callback supertype, and both support + priorities and take part in the other anti-priority-inversion + mechanisms in Libevent. + + To avoid starvation from callback recursion (which was the reason we + introduced "deferred callbacks" in the first place) the implementation + now allows an event callback to be scheduled as "active later": + instead of running in the current iteration of the event loop, it runs + in the next one. + +5. Testing + + Libevent's test coverage level is more or less unchanged since before: + we still have over 80% line coverage in our tests on Linux, FreeBSD, NetBSD, + Windows, OSX. + There are some under-tested modules, though: we need to fix those. + + And now we have CI: + - https://travis-ci.org/libevent/libevent + - https://ci.appveyor.com/project/nmathewson/libevent + + And code coverage: + - https://coveralls.io/github/libevent/libevent + + Plus there is vagrant boxes if you what to test it on more OS'es then + travis-ci allows, and there is a wrapper (in python) that will parse logs and + provide report: + - https://github.com/libevent/libevent-extras/blob/master/tools/vagrant-tests.py + +6. Contributing + + From now we have contributing guide and checkpatch.sh. diff -Nru mysql-5.7-5.7.25/extra/libevent/WIN32-Code/getopt.c mysql-5.7-5.7.26/extra/libevent/WIN32-Code/getopt.c --- mysql-5.7-5.7.25/extra/libevent/WIN32-Code/getopt.c 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/WIN32-Code/getopt.c 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,149 @@ +/* $NetBSD: getopt.c,v 1.16 1999/12/02 13:15:56 kleink Exp $ */ + +/* + * Copyright (c) 1987, 1993, 1994, 1995 + * The Regents of the University of California. All rights reserved. + * + * 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 names of the copyright holders 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 REGENTS 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. + */ + +#if 0 +static char sccsid[] = "@(#)getopt.c 8.3 (Berkeley) 4/27/95"; +#endif + +#include +#include +#include +#include + +#define __P(x) x +#define _DIAGASSERT(x) assert(x) + +#ifdef __weak_alias +__weak_alias(getopt,_getopt); +#endif + + +int opterr = 1, /* if error message should be printed */ + optind = 1, /* index into parent argv vector */ + optopt, /* character checked for validity */ + optreset; /* reset getopt */ +char *optarg; /* argument associated with option */ + +static char * _progname __P((char *)); +int getopt_internal __P((int, char * const *, const char *)); + +static char * +_progname(nargv0) + char * nargv0; +{ + char * tmp; + + _DIAGASSERT(nargv0 != NULL); + + tmp = strrchr(nargv0, '/'); + if (tmp) + tmp++; + else + tmp = nargv0; + return(tmp); +} + +#define BADCH (int)'?' +#define BADARG (int)':' +#define EMSG "" + +/* + * getopt -- + * Parse argc/argv argument vector. + */ +int +getopt(nargc, nargv, ostr) + int nargc; + char * const nargv[]; + const char *ostr; +{ + static char *__progname = 0; + static char *place = EMSG; /* option letter processing */ + char *oli; /* option letter list index */ + __progname = __progname?__progname:_progname(*nargv); + + _DIAGASSERT(nargv != NULL); + _DIAGASSERT(ostr != NULL); + + if (optreset || !*place) { /* update scanning pointer */ + optreset = 0; + if (optind >= nargc || *(place = nargv[optind]) != '-') { + place = EMSG; + return (-1); + } + if (place[1] && *++place == '-' /* found "--" */ + && place[1] == '\0') { + ++optind; + place = EMSG; + return (-1); + } + } /* option letter okay? */ + if ((optopt = (int)*place++) == (int)':' || + !(oli = strchr(ostr, optopt))) { + /* + * if the user didn't specify '-' as an option, + * assume it means -1. + */ + if (optopt == (int)'-') + return (-1); + if (!*place) + ++optind; + if (opterr && *ostr != ':') + (void)fprintf(stderr, + "%s: illegal option -- %c\n", __progname, optopt); + return (BADCH); + } + if (*++oli != ':') { /* don't need argument */ + optarg = NULL; + if (!*place) + ++optind; + } + else { /* need an argument */ + if (*place) /* no white space */ + optarg = place; + else if (nargc <= ++optind) { /* no arg */ + place = EMSG; + if (*ostr == ':') + return (BADARG); + if (opterr) + (void)fprintf(stderr, + "%s: option requires an argument -- %c\n", + __progname, optopt); + return (BADCH); + } + else /* white space */ + optarg = nargv[optind]; + place = EMSG; + ++optind; + } + return (optopt); /* dump back option letter */ +} + diff -Nru mysql-5.7-5.7.25/extra/libevent/WIN32-Code/getopt.h mysql-5.7-5.7.26/extra/libevent/WIN32-Code/getopt.h --- mysql-5.7-5.7.25/extra/libevent/WIN32-Code/getopt.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/WIN32-Code/getopt.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,33 @@ +#ifndef __GETOPT_H__ +#define __GETOPT_H__ + +#ifdef __cplusplus +extern "C" { +#endif + +extern int opterr; /* if error message should be printed */ +extern int optind; /* index into parent argv vector */ +extern int optopt; /* character checked for validity */ +extern int optreset; /* reset getopt */ +extern char *optarg; /* argument associated with option */ + +struct option +{ + const char *name; + int has_arg; + int *flag; + int val; +}; + +#define no_argument 0 +#define required_argument 1 +#define optional_argument 2 + +int getopt(int, char**, const char*); +int getopt_long(int, char**, const char*, const struct option*, int*); + +#ifdef __cplusplus +} +#endif + +#endif /* __GETOPT_H__ */ diff -Nru mysql-5.7-5.7.25/extra/libevent/WIN32-Code/getopt_long.c mysql-5.7-5.7.26/extra/libevent/WIN32-Code/getopt_long.c --- mysql-5.7-5.7.25/extra/libevent/WIN32-Code/getopt_long.c 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/WIN32-Code/getopt_long.c 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,233 @@ + +/* + * Copyright (c) 1987, 1993, 1994, 1996 + * The Regents of the University of California. All rights reserved. + * + * 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 names of the copyright holders 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 REGENTS 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. + */ +#include +#include +#include +#include +#include +#include "getopt.h" + +extern int opterr; /* if error message should be printed */ +extern int optind; /* index into parent argv vector */ +extern int optopt; /* character checked for validity */ +extern int optreset; /* reset getopt */ +extern char *optarg; /* argument associated with option */ + +#define __P(x) x +#define _DIAGASSERT(x) assert(x) + +static char * __progname __P((char *)); +int getopt_internal __P((int, char * const *, const char *)); + +static char * +__progname(nargv0) + char * nargv0; +{ + char * tmp; + + _DIAGASSERT(nargv0 != NULL); + + tmp = strrchr(nargv0, '/'); + if (tmp) + tmp++; + else + tmp = nargv0; + return(tmp); +} + +#define BADCH (int)'?' +#define BADARG (int)':' +#define EMSG "" + +/* + * getopt -- + * Parse argc/argv argument vector. + */ +int +getopt_internal(nargc, nargv, ostr) + int nargc; + char * const *nargv; + const char *ostr; +{ + static char *place = EMSG; /* option letter processing */ + char *oli; /* option letter list index */ + + _DIAGASSERT(nargv != NULL); + _DIAGASSERT(ostr != NULL); + + if (optreset || !*place) { /* update scanning pointer */ + optreset = 0; + if (optind >= nargc || *(place = nargv[optind]) != '-') { + place = EMSG; + return (-1); + } + if (place[1] && *++place == '-') { /* found "--" */ + /* ++optind; */ + place = EMSG; + return (-2); + } + } /* option letter okay? */ + if ((optopt = (int)*place++) == (int)':' || + !(oli = strchr(ostr, optopt))) { + /* + * if the user didn't specify '-' as an option, + * assume it means -1. + */ + if (optopt == (int)'-') + return (-1); + if (!*place) + ++optind; + if (opterr && *ostr != ':') + (void)fprintf(stderr, + "%s: illegal option -- %c\n", __progname(nargv[0]), optopt); + return (BADCH); + } + if (*++oli != ':') { /* don't need argument */ + optarg = NULL; + if (!*place) + ++optind; + } else { /* need an argument */ + if (*place) /* no white space */ + optarg = place; + else if (nargc <= ++optind) { /* no arg */ + place = EMSG; + if ((opterr) && (*ostr != ':')) + (void)fprintf(stderr, + "%s: option requires an argument -- %c\n", + __progname(nargv[0]), optopt); + return (BADARG); + } else /* white space */ + optarg = nargv[optind]; + place = EMSG; + ++optind; + } + return (optopt); /* dump back option letter */ +} + +#if 0 +/* + * getopt -- + * Parse argc/argv argument vector. + */ +int +getopt2(nargc, nargv, ostr) + int nargc; + char * const *nargv; + const char *ostr; +{ + int retval; + + if ((retval = getopt_internal(nargc, nargv, ostr)) == -2) { + retval = -1; + ++optind; + } + return(retval); +} +#endif + +/* + * getopt_long -- + * Parse argc/argv argument vector. + */ +int +getopt_long(nargc, nargv, options, long_options, index) + int nargc; + char ** nargv; + const char * options; + const struct option * long_options; + int * index; +{ + int retval; + + _DIAGASSERT(nargv != NULL); + _DIAGASSERT(options != NULL); + _DIAGASSERT(long_options != NULL); + /* index may be NULL */ + + if ((retval = getopt_internal(nargc, nargv, options)) == -2) { + char *current_argv = nargv[optind++] + 2, *has_equal; + int i, current_argv_len, match = -1; + + if (*current_argv == '\0') { + return(-1); + } + if ((has_equal = strchr(current_argv, '=')) != NULL) { + current_argv_len = has_equal - current_argv; + has_equal++; + } else + current_argv_len = strlen(current_argv); + + for (i = 0; long_options[i].name; i++) { + if (strncmp(current_argv, long_options[i].name, current_argv_len)) + continue; + + if (strlen(long_options[i].name) == (unsigned)current_argv_len) { + match = i; + break; + } + if (match == -1) + match = i; + } + if (match != -1) { + if (long_options[match].has_arg == required_argument || + long_options[match].has_arg == optional_argument) { + if (has_equal) + optarg = has_equal; + else + optarg = nargv[optind++]; + } + if ((long_options[match].has_arg == required_argument) + && (optarg == NULL)) { + /* + * Missing argument, leading : + * indicates no error should be generated + */ + if ((opterr) && (*options != ':')) + (void)fprintf(stderr, + "%s: option requires an argument -- %s\n", + __progname(nargv[0]), current_argv); + return (BADARG); + } + } else { /* No matching argument */ + if ((opterr) && (*options != ':')) + (void)fprintf(stderr, + "%s: illegal option -- %s\n", __progname(nargv[0]), current_argv); + return (BADCH); + } + if (long_options[match].flag) { + *long_options[match].flag = long_options[match].val; + retval = 0; + } else + retval = long_options[match].val; + if (index) + *index = match; + } + return(retval); +} diff -Nru mysql-5.7-5.7.25/extra/libevent/WIN32-Code/nmake/evconfig-private.h mysql-5.7-5.7.26/extra/libevent/WIN32-Code/nmake/evconfig-private.h --- mysql-5.7-5.7.25/extra/libevent/WIN32-Code/nmake/evconfig-private.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/WIN32-Code/nmake/evconfig-private.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,6 @@ +#if !defined(EVENT_EVCONFIG__PRIVATE_H_) && !defined(__MINGW32__) +#define EVENT_EVCONFIG__PRIVATE_H_ + +/* Nothing to see here. Move along. */ + +#endif diff -Nru mysql-5.7-5.7.25/extra/libevent/WIN32-Code/nmake/event2/event-config.h mysql-5.7-5.7.26/extra/libevent/WIN32-Code/nmake/event2/event-config.h --- mysql-5.7-5.7.25/extra/libevent/WIN32-Code/nmake/event2/event-config.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/WIN32-Code/nmake/event2/event-config.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,360 @@ +/* event2/event-config.h + * + * This file was generated by autoconf when libevent was built, and post- + * processed by Libevent so that its macros would have a uniform prefix. + * + * DO NOT EDIT THIS FILE. + * + * Do not rely on macros in this file existing in later versions. + */ +#ifndef EVENT_CONFIG_H__ +#define EVENT_CONFIG_H__ +/* config.h. Generated by configure. */ +/* config.h.in. Generated from configure.in by autoheader. */ + +/* Define if libevent should not allow replacing the mm functions */ +/* #undef EVENT__DISABLE_MM_REPLACEMENT */ + +/* Define if libevent should not be compiled with thread support */ +/* #undef EVENT__DISABLE_THREAD_SUPPORT */ + +/* Define if clock_gettime is available in libc */ +/* #undef _EVENT_DNS_USE_CPU_CLOCK_FOR_ID */ + +/* Define is no secure id variant is available */ +/* #define _EVENT_DNS_USE_GETTIMEOFDAY_FOR_ID 1 */ +#define EVENT_DNS_USE_FTIME_FOR_ID_ 1 + +/* Define to 1 if you have the header file. */ +/* #undef EVENT__HAVE_ARPA_INET_H */ + +/* Define to 1 if you have the `clock_gettime' function. */ +/* #undef EVENT__HAVE_CLOCK_GETTIME */ + +/* Define if /dev/poll is available */ +/* #undef EVENT__HAVE_DEVPOLL */ + +/* Define to 1 if you have the header file. */ +/* #undef EVENT__HAVE_DLFCN_H */ + +/* Define if your system supports the epoll system calls */ +/* #undef EVENT__HAVE_EPOLL */ + +/* Define to 1 if you have the `epoll_ctl' function. */ +/* #undef EVENT__HAVE_EPOLL_CTL */ + +/* Define to 1 if you have the `eventfd' function. */ +/* #undef EVENT__HAVE_EVENTFD */ + +/* Define if your system supports event ports */ +/* #undef EVENT__HAVE_EVENT_PORTS */ + +/* Define to 1 if you have the `fcntl' function. */ +/* #undef EVENT__HAVE_FCNTL */ + +/* Define to 1 if you have the header file. */ +#define EVENT__HAVE_FCNTL_H 1 + +/* Define to 1 if you have the `getaddrinfo' function. */ +#define EVENT__HAVE_GETADDRINFO 1 + +/* Define to 1 if you have the `getnameinfo' function. */ +#define EVENT__HAVE_GETNAMEINFO 1 + +/* Define to 1 if you have the `getprotobynumber' function. */ +#define EVENT__HAVE_GETPROTOBYNUMBER 1 + +/* Define to 1 if you have the `getservbyname' function. */ +#define EVENT__HAVE_GETSERVBYNAME 1 + +/* Define to 1 if you have the `gettimeofday' function. */ +/* #define EVENT__HAVE_GETTIMEOFDAY 1 */ + +/* Define to 1 if you have the `inet_ntop' function. */ +/* #undef EVENT__HAVE_INET_NTOP */ + +/* Define to 1 if you have the `inet_pton' function. */ +/* #undef EVENT__HAVE_INET_PTON */ + +/* Define to 1 if you have the header file. */ +/* #define EVENT__HAVE_INTTYPES_H 1 */ + +/* Define to 1 if you have the `kqueue' function. */ +/* #undef EVENT__HAVE_KQUEUE */ + +/* Define if the system has zlib */ +/* #undef EVENT__HAVE_LIBZ */ + +/* Define to 1 if you have the header file. */ +#define EVENT__HAVE_MEMORY_H 1 + +/* Define to 1 if you have the `mmap' function. */ +/* #undef EVENT__HAVE_MMAP */ + +/* Define to 1 if you have the header file. */ +/* #undef EVENT__HAVE_NETINET_IN6_H */ + +/* Define to 1 if you have the header file. */ +/* #undef EVENT__HAVE_NETINET_IN_H */ + +/* Define to 1 if you have the `pipe' function. */ +/* #undef EVENT__HAVE_PIPE */ + +/* Define to 1 if you have the `poll' function. */ +/* #undef EVENT__HAVE_POLL */ + +/* Define to 1 if you have the header file. */ +/* #undef EVENT__HAVE_POLL_H */ + +/* Define to 1 if you have the `port_create' function. */ +/* #undef EVENT__HAVE_PORT_CREATE */ + +/* Define to 1 if you have the header file. */ +/* #undef EVENT__HAVE_PORT_H */ + +/* Define if you have POSIX threads libraries and header files. */ +/* #undef EVENT__HAVE_PTHREAD */ + +/* Define if we have pthreads on this system */ +/* #undef EVENT__HAVE_PTHREADS */ + +/* Define to 1 if the system has the type `sa_family_t'. */ +/* #undef EVENT__HAVE_SA_FAMILY_T */ + +/* Define to 1 if you have the `select' function. */ +/* #undef EVENT__HAVE_SELECT */ + +/* Define to 1 if you have the `sendfile' function. */ +/* #undef EVENT__HAVE_SENDFILE */ + +/* Define if F_SETFD is defined in */ +/* #undef EVENT__HAVE_SETFD */ + +/* Define to 1 if you have the `sigaction' function. */ +/* #undef EVENT__HAVE_SIGACTION */ + +/* Define to 1 if you have the `signal' function. */ +#define EVENT__HAVE_SIGNAL 1 + +/* Define to 1 if you have the `splice' function. */ +/* #undef EVENT__HAVE_SPLICE */ + +/* Define to 1 if you have the header file. */ +#define EVENT__HAVE_STDARG_H 1 + +/* Define to 1 if you have the header file. */ +#define EVENT__HAVE_STDDEF_H 1 + +/* Define to 1 if you have the header file. */ +/* #define EVENT__HAVE_STDINT_H 1 */ + +/* Define to 1 if you have the header file. */ +#define EVENT__HAVE_STDLIB_H 1 + +/* Define to 1 if you have the header file. */ +#define EVENT__HAVE_STRINGS_H 1 + +/* Define to 1 if you have the header file. */ +#define EVENT__HAVE_STRING_H 1 + +/* Define to 1 if you have the `strlcpy' function. */ +/* #undef EVENT__HAVE_STRLCPY */ + +/* Define to 1 if you have the `strsep' function. */ +/* #undef EVENT__HAVE_STRSEP */ + +/* Define to 1 if you have the `strtok_r' function. */ +/* #undef EVENT__HAVE_STRTOK_R */ + +/* Define to 1 if you have the `strtoll' function. */ +/* #define EVENT__HAVE_STRTOLL 1 */ + +#define EVENT__HAVE_STRUCT_ADDRINFO 1 + +/* Define to 1 if the system has the type `struct in6_addr'. */ +#define EVENT__HAVE_STRUCT_IN6_ADDR 1 + +/* Define to 1 if `s6_addr16' is member of `struct in6_addr'. */ +#define EVENT__HAVE_STRUCT_IN6_ADDR_S6_ADDR16 1 + +/* Define to 1 if `s6_addr32' is member of `struct in6_addr'. */ +#define EVENT__HAVE_STRUCT_IN6_ADDR_S6_ADDR32 1 + +/* Define to 1 if the system has the type `struct sockaddr_in6'. */ +#define EVENT__HAVE_STRUCT_SOCKADDR_IN6 1 + +/* Define to 1 if `sin6_len' is member of `struct sockaddr_in6'. */ +/* #undef EVENT__HAVE_STRUCT_SOCKADDR_IN6_SIN6_LEN */ + +/* Define to 1 if `sin_len' is member of `struct sockaddr_in'. */ +/* #undef EVENT__HAVE_STRUCT_SOCKADDR_IN_SIN_LEN */ + +/* Define to 1 if the system has the type `struct sockaddr_storage'. */ +#define EVENT__HAVE_STRUCT_SOCKADDR_STORAGE 1 + +/* Define to 1 if you have the header file. */ +/* #undef EVENT__HAVE_SYS_DEVPOLL_H */ + +/* Define to 1 if you have the header file. */ +/* #undef EVENT__HAVE_SYS_EPOLL_H */ + +/* Define to 1 if you have the header file. */ +/* #undef EVENT__HAVE_SYS_EVENTFD_H */ + +/* Define to 1 if you have the header file. */ +/* #undef EVENT__HAVE_SYS_EVENT_H */ + +/* Define to 1 if you have the header file. */ +/* #undef EVENT__HAVE_SYS_IOCTL_H */ + +/* Define to 1 if you have the header file. */ +/* #undef EVENT__HAVE_SYS_MMAN_H */ + +/* Define to 1 if you have the header file. */ +/* #define EVENT__HAVE_SYS_PARAM_H 1 */ + +/* Define to 1 if you have the header file. */ +/* #undef EVENT__HAVE_SYS_QUEUE_H */ + +/* Define to 1 if you have the header file. */ +/* #undef EVENT__HAVE_SYS_SELECT_H */ + +/* Define to 1 if you have the header file. */ +/* #undef EVENT__HAVE_SYS_SENDFILE_H */ + +/* Define to 1 if you have the header file. */ +/* #undef EVENT__HAVE_SYS_SOCKET_H */ + +/* Define to 1 if you have the header file. */ +#define EVENT__HAVE_SYS_STAT_H 1 + +/* Define to 1 if you have the header file. */ +/* #define EVENT__HAVE_SYS_TIME_H 1 */ + +/* Define to 1 if you have the header file. */ +#define EVENT__HAVE_SYS_TYPES_H 1 + +/* Define to 1 if you have the header file. */ +/* #undef EVENT__HAVE_SYS_UIO_H */ + +/* Define if TAILQ_FOREACH is defined in */ +/* #undef EVENT__HAVE_TAILQFOREACH */ + +/* Define if timeradd is defined in */ +/* #undef EVENT__HAVE_TIMERADD */ + +/* Define if timerclear is defined in */ +#define EVENT__HAVE_TIMERCLEAR 1 + +/* Define if timercmp is defined in */ +#define EVENT__HAVE_TIMERCMP 1 + +/* Define if timerisset is defined in */ +#define EVENT__HAVE_TIMERISSET 1 + +/* Define to 1 if the system has the type `uint16_t'. */ +/* #define EVENT__HAVE_UINT16_T 1 */ + +/* Define to 1 if the system has the type `uint32_t'. */ +/* #define EVENT__HAVE_UINT32_T 1 */ + +/* Define to 1 if the system has the type `uint64_t'. */ +/* #define EVENT__HAVE_UINT64_T 1 */ + +/* Define to 1 if the system has the type `uint8_t'. */ +/* #define EVENT__HAVE_UINT8_T 1 */ + +/* Define to 1 if you have the header file. */ +/* #define EVENT__HAVE_UNISTD_H 1 */ + +/* Define to 1 if you have the `vasprintf' function. */ +/* #undef EVENT__HAVE_VASPRINTF */ + +/* Define if kqueue works correctly with pipes */ +/* #undef EVENT__HAVE_WORKING_KQUEUE */ + +/* Numeric representation of the version */ +#define EVENT__NUMERIC_VERSION 0x02010800 + +/* Name of package */ +#define EVENT__PACKAGE "libevent" + +/* Define to the address where bug reports for this package should be sent. */ +#define EVENT__PACKAGE_BUGREPORT "" + +/* Define to the full name of this package. */ +#define EVENT__PACKAGE_NAME "" + +/* Define to the full name and version of this package. */ +#define EVENT__PACKAGE_STRING "" + +/* Define to the one symbol short name of this package. */ +#define EVENT__PACKAGE_TARNAME "" + +/* Define to the version of this package. */ +#define EVENT__PACKAGE_VERSION "" + +/* Define to necessary symbol if this constant uses a non-standard name on + your system. */ +/* #undef EVENT__PTHREAD_CREATE_JOINABLE */ + +/* The size of a `int', as computed by sizeof. */ +#define EVENT__SIZEOF_INT 4 + +/* The size of a `long', as computed by sizeof. */ +#define EVENT__SIZEOF_LONG 4 + +/* The size of a `long long', as computed by sizeof. */ +#define EVENT__SIZEOF_LONG_LONG 8 + +/* The size of a `short', as computed by sizeof. */ +#define EVENT__SIZEOF_SHORT 2 + +/* The size of `size_t', as computed by sizeof. */ +#ifdef _WIN64 +#define EVENT__SIZEOF_SIZE_T 8 +#else +#define EVENT__SIZEOF_SIZE_T 4 +#endif + +/* The size of `void *', as computed by sizeof. */ +#ifdef _WIN64 +#define EVENT__SIZEOF_VOID_P 8 +#else +#define EVENT__SIZEOF_VOID_P 4 +#endif + +/* Define to 1 if you have the ANSI C header files. */ +#define EVENT__STDC_HEADERS 1 + +/* Define to 1 if you can safely include both and . */ +#define EVENT__TIME_WITH_SYS_TIME 1 + +/* Version number of package */ +#define EVENT__VERSION "2.1.8-stable" + +/* Define to appropriate substitue if compiler doesnt have __func__ */ +#define EVENT____func__ __FUNCTION__ + +/* Define to empty if `const' does not conform to ANSI C. */ +/* #undef EVENT__const */ + +/* Define to `__inline__' or `__inline' if that's what the C compiler + calls it, or to nothing if 'inline' is not supported under any name. */ +#ifndef _EVENT___cplusplus +#define EVENT__inline __inline +#endif + +/* Define to `int' if does not define. */ +/* #undef EVENT__pid_t */ + +/* Define to `unsigned' if does not define. */ +/* #undef EVENT__size_t */ + +/* Define to unsigned int if you dont have it */ +#define EVENT__socklen_t unsigned int + +/* Define to `int' if does not define. */ +#define EVENT__ssize_t SSIZE_T + +#endif diff -Nru mysql-5.7-5.7.25/extra/libevent/WIN32-Code/tree.h mysql-5.7-5.7.26/extra/libevent/WIN32-Code/tree.h --- mysql-5.7-5.7.25/extra/libevent/WIN32-Code/tree.h 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/WIN32-Code/tree.h 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,677 @@ +/* $OpenBSD: tree.h,v 1.7 2002/10/17 21:51:54 art Exp $ */ +/* + * Copyright 2002 Niels Provos + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ + +#ifndef _SYS_TREE_H_ +#define _SYS_TREE_H_ + +/* + * This file defines data structures for different types of trees: + * splay trees and red-black trees. + * + * A splay tree is a self-organizing data structure. Every operation + * on the tree causes a splay to happen. The splay moves the requested + * node to the root of the tree and partly rebalances it. + * + * This has the benefit that request locality causes faster lookups as + * the requested nodes move to the top of the tree. On the other hand, + * every lookup causes memory writes. + * + * The Balance Theorem bounds the total access time for m operations + * and n inserts on an initially empty tree as O((m + n)lg n). The + * amortized cost for a sequence of m accesses to a splay tree is O(lg n); + * + * A red-black tree is a binary search tree with the node color as an + * extra attribute. It fulfills a set of conditions: + * - every search path from the root to a leaf consists of the + * same number of black nodes, + * - each red node (except for the root) has a black parent, + * - each leaf node is black. + * + * Every operation on a red-black tree is bounded as O(lg n). + * The maximum height of a red-black tree is 2lg (n+1). + */ + +#define SPLAY_HEAD(name, type) \ +struct name { \ + struct type *sph_root; /* root of the tree */ \ +} + +#define SPLAY_INITIALIZER(root) \ + { NULL } + +#define SPLAY_INIT(root) do { \ + (root)->sph_root = NULL; \ +} while (0) + +#define SPLAY_ENTRY(type) \ +struct { \ + struct type *spe_left; /* left element */ \ + struct type *spe_right; /* right element */ \ +} + +#define SPLAY_LEFT(elm, field) (elm)->field.spe_left +#define SPLAY_RIGHT(elm, field) (elm)->field.spe_right +#define SPLAY_ROOT(head) (head)->sph_root +#define SPLAY_EMPTY(head) (SPLAY_ROOT(head) == NULL) + +/* SPLAY_ROTATE_{LEFT,RIGHT} expect that tmp hold SPLAY_{RIGHT,LEFT} */ +#define SPLAY_ROTATE_RIGHT(head, tmp, field) do { \ + SPLAY_LEFT((head)->sph_root, field) = SPLAY_RIGHT(tmp, field); \ + SPLAY_RIGHT(tmp, field) = (head)->sph_root; \ + (head)->sph_root = tmp; \ +} while (0) + +#define SPLAY_ROTATE_LEFT(head, tmp, field) do { \ + SPLAY_RIGHT((head)->sph_root, field) = SPLAY_LEFT(tmp, field); \ + SPLAY_LEFT(tmp, field) = (head)->sph_root; \ + (head)->sph_root = tmp; \ +} while (0) + +#define SPLAY_LINKLEFT(head, tmp, field) do { \ + SPLAY_LEFT(tmp, field) = (head)->sph_root; \ + tmp = (head)->sph_root; \ + (head)->sph_root = SPLAY_LEFT((head)->sph_root, field); \ +} while (0) + +#define SPLAY_LINKRIGHT(head, tmp, field) do { \ + SPLAY_RIGHT(tmp, field) = (head)->sph_root; \ + tmp = (head)->sph_root; \ + (head)->sph_root = SPLAY_RIGHT((head)->sph_root, field); \ +} while (0) + +#define SPLAY_ASSEMBLE(head, node, left, right, field) do { \ + SPLAY_RIGHT(left, field) = SPLAY_LEFT((head)->sph_root, field); \ + SPLAY_LEFT(right, field) = SPLAY_RIGHT((head)->sph_root, field);\ + SPLAY_LEFT((head)->sph_root, field) = SPLAY_RIGHT(node, field); \ + SPLAY_RIGHT((head)->sph_root, field) = SPLAY_LEFT(node, field); \ +} while (0) + +/* Generates prototypes and inline functions */ + +#define SPLAY_PROTOTYPE(name, type, field, cmp) \ +void name##_SPLAY(struct name *, struct type *); \ +void name##_SPLAY_MINMAX(struct name *, int); \ +struct type *name##_SPLAY_INSERT(struct name *, struct type *); \ +struct type *name##_SPLAY_REMOVE(struct name *, struct type *); \ + \ +/* Finds the node with the same key as elm */ \ +static __inline struct type * \ +name##_SPLAY_FIND(struct name *head, struct type *elm) \ +{ \ + if (SPLAY_EMPTY(head)) \ + return(NULL); \ + name##_SPLAY(head, elm); \ + if ((cmp)(elm, (head)->sph_root) == 0) \ + return (head->sph_root); \ + return (NULL); \ +} \ + \ +static __inline struct type * \ +name##_SPLAY_NEXT(struct name *head, struct type *elm) \ +{ \ + name##_SPLAY(head, elm); \ + if (SPLAY_RIGHT(elm, field) != NULL) { \ + elm = SPLAY_RIGHT(elm, field); \ + while (SPLAY_LEFT(elm, field) != NULL) { \ + elm = SPLAY_LEFT(elm, field); \ + } \ + } else \ + elm = NULL; \ + return (elm); \ +} \ + \ +static __inline struct type * \ +name##_SPLAY_MIN_MAX(struct name *head, int val) \ +{ \ + name##_SPLAY_MINMAX(head, val); \ + return (SPLAY_ROOT(head)); \ +} + +/* Main splay operation. + * Moves node close to the key of elm to top + */ +#define SPLAY_GENERATE(name, type, field, cmp) \ +struct type * \ +name##_SPLAY_INSERT(struct name *head, struct type *elm) \ +{ \ + if (SPLAY_EMPTY(head)) { \ + SPLAY_LEFT(elm, field) = SPLAY_RIGHT(elm, field) = NULL; \ + } else { \ + int __comp; \ + name##_SPLAY(head, elm); \ + __comp = (cmp)(elm, (head)->sph_root); \ + if(__comp < 0) { \ + SPLAY_LEFT(elm, field) = SPLAY_LEFT((head)->sph_root, field);\ + SPLAY_RIGHT(elm, field) = (head)->sph_root; \ + SPLAY_LEFT((head)->sph_root, field) = NULL; \ + } else if (__comp > 0) { \ + SPLAY_RIGHT(elm, field) = SPLAY_RIGHT((head)->sph_root, field);\ + SPLAY_LEFT(elm, field) = (head)->sph_root; \ + SPLAY_RIGHT((head)->sph_root, field) = NULL; \ + } else \ + return ((head)->sph_root); \ + } \ + (head)->sph_root = (elm); \ + return (NULL); \ +} \ + \ +struct type * \ +name##_SPLAY_REMOVE(struct name *head, struct type *elm) \ +{ \ + struct type *__tmp; \ + if (SPLAY_EMPTY(head)) \ + return (NULL); \ + name##_SPLAY(head, elm); \ + if ((cmp)(elm, (head)->sph_root) == 0) { \ + if (SPLAY_LEFT((head)->sph_root, field) == NULL) { \ + (head)->sph_root = SPLAY_RIGHT((head)->sph_root, field);\ + } else { \ + __tmp = SPLAY_RIGHT((head)->sph_root, field); \ + (head)->sph_root = SPLAY_LEFT((head)->sph_root, field);\ + name##_SPLAY(head, elm); \ + SPLAY_RIGHT((head)->sph_root, field) = __tmp; \ + } \ + return (elm); \ + } \ + return (NULL); \ +} \ + \ +void \ +name##_SPLAY(struct name *head, struct type *elm) \ +{ \ + struct type __node, *__left, *__right, *__tmp; \ + int __comp; \ +\ + SPLAY_LEFT(&__node, field) = SPLAY_RIGHT(&__node, field) = NULL;\ + __left = __right = &__node; \ +\ + while ((__comp = (cmp)(elm, (head)->sph_root))) { \ + if (__comp < 0) { \ + __tmp = SPLAY_LEFT((head)->sph_root, field); \ + if (__tmp == NULL) \ + break; \ + if ((cmp)(elm, __tmp) < 0){ \ + SPLAY_ROTATE_RIGHT(head, __tmp, field); \ + if (SPLAY_LEFT((head)->sph_root, field) == NULL)\ + break; \ + } \ + SPLAY_LINKLEFT(head, __right, field); \ + } else if (__comp > 0) { \ + __tmp = SPLAY_RIGHT((head)->sph_root, field); \ + if (__tmp == NULL) \ + break; \ + if ((cmp)(elm, __tmp) > 0){ \ + SPLAY_ROTATE_LEFT(head, __tmp, field); \ + if (SPLAY_RIGHT((head)->sph_root, field) == NULL)\ + break; \ + } \ + SPLAY_LINKRIGHT(head, __left, field); \ + } \ + } \ + SPLAY_ASSEMBLE(head, &__node, __left, __right, field); \ +} \ + \ +/* Splay with either the minimum or the maximum element \ + * Used to find minimum or maximum element in tree. \ + */ \ +void name##_SPLAY_MINMAX(struct name *head, int __comp) \ +{ \ + struct type __node, *__left, *__right, *__tmp; \ +\ + SPLAY_LEFT(&__node, field) = SPLAY_RIGHT(&__node, field) = NULL;\ + __left = __right = &__node; \ +\ + while (1) { \ + if (__comp < 0) { \ + __tmp = SPLAY_LEFT((head)->sph_root, field); \ + if (__tmp == NULL) \ + break; \ + if (__comp < 0){ \ + SPLAY_ROTATE_RIGHT(head, __tmp, field); \ + if (SPLAY_LEFT((head)->sph_root, field) == NULL)\ + break; \ + } \ + SPLAY_LINKLEFT(head, __right, field); \ + } else if (__comp > 0) { \ + __tmp = SPLAY_RIGHT((head)->sph_root, field); \ + if (__tmp == NULL) \ + break; \ + if (__comp > 0) { \ + SPLAY_ROTATE_LEFT(head, __tmp, field); \ + if (SPLAY_RIGHT((head)->sph_root, field) == NULL)\ + break; \ + } \ + SPLAY_LINKRIGHT(head, __left, field); \ + } \ + } \ + SPLAY_ASSEMBLE(head, &__node, __left, __right, field); \ +} + +#define SPLAY_NEGINF -1 +#define SPLAY_INF 1 + +#define SPLAY_INSERT(name, x, y) name##_SPLAY_INSERT(x, y) +#define SPLAY_REMOVE(name, x, y) name##_SPLAY_REMOVE(x, y) +#define SPLAY_FIND(name, x, y) name##_SPLAY_FIND(x, y) +#define SPLAY_NEXT(name, x, y) name##_SPLAY_NEXT(x, y) +#define SPLAY_MIN(name, x) (SPLAY_EMPTY(x) ? NULL \ + : name##_SPLAY_MIN_MAX(x, SPLAY_NEGINF)) +#define SPLAY_MAX(name, x) (SPLAY_EMPTY(x) ? NULL \ + : name##_SPLAY_MIN_MAX(x, SPLAY_INF)) + +#define SPLAY_FOREACH(x, name, head) \ + for ((x) = SPLAY_MIN(name, head); \ + (x) != NULL; \ + (x) = SPLAY_NEXT(name, head, x)) + +/* Macros that define a red-back tree */ +#define RB_HEAD(name, type) \ +struct name { \ + struct type *rbh_root; /* root of the tree */ \ +} + +#define RB_INITIALIZER(root) \ + { NULL } + +#define RB_INIT(root) do { \ + (root)->rbh_root = NULL; \ +} while (0) + +#define RB_BLACK 0 +#define RB_RED 1 +#define RB_ENTRY(type) \ +struct { \ + struct type *rbe_left; /* left element */ \ + struct type *rbe_right; /* right element */ \ + struct type *rbe_parent; /* parent element */ \ + int rbe_color; /* node color */ \ +} + +#define RB_LEFT(elm, field) (elm)->field.rbe_left +#define RB_RIGHT(elm, field) (elm)->field.rbe_right +#define RB_PARENT(elm, field) (elm)->field.rbe_parent +#define RB_COLOR(elm, field) (elm)->field.rbe_color +#define RB_ROOT(head) (head)->rbh_root +#define RB_EMPTY(head) (RB_ROOT(head) == NULL) + +#define RB_SET(elm, parent, field) do { \ + RB_PARENT(elm, field) = parent; \ + RB_LEFT(elm, field) = RB_RIGHT(elm, field) = NULL; \ + RB_COLOR(elm, field) = RB_RED; \ +} while (0) + +#define RB_SET_BLACKRED(black, red, field) do { \ + RB_COLOR(black, field) = RB_BLACK; \ + RB_COLOR(red, field) = RB_RED; \ +} while (0) + +#ifndef RB_AUGMENT +#define RB_AUGMENT(x) +#endif + +#define RB_ROTATE_LEFT(head, elm, tmp, field) do { \ + (tmp) = RB_RIGHT(elm, field); \ + if ((RB_RIGHT(elm, field) = RB_LEFT(tmp, field))) { \ + RB_PARENT(RB_LEFT(tmp, field), field) = (elm); \ + } \ + RB_AUGMENT(elm); \ + if ((RB_PARENT(tmp, field) = RB_PARENT(elm, field))) { \ + if ((elm) == RB_LEFT(RB_PARENT(elm, field), field)) \ + RB_LEFT(RB_PARENT(elm, field), field) = (tmp); \ + else \ + RB_RIGHT(RB_PARENT(elm, field), field) = (tmp); \ + } else \ + (head)->rbh_root = (tmp); \ + RB_LEFT(tmp, field) = (elm); \ + RB_PARENT(elm, field) = (tmp); \ + RB_AUGMENT(tmp); \ + if ((RB_PARENT(tmp, field))) \ + RB_AUGMENT(RB_PARENT(tmp, field)); \ +} while (0) + +#define RB_ROTATE_RIGHT(head, elm, tmp, field) do { \ + (tmp) = RB_LEFT(elm, field); \ + if ((RB_LEFT(elm, field) = RB_RIGHT(tmp, field))) { \ + RB_PARENT(RB_RIGHT(tmp, field), field) = (elm); \ + } \ + RB_AUGMENT(elm); \ + if ((RB_PARENT(tmp, field) = RB_PARENT(elm, field))) { \ + if ((elm) == RB_LEFT(RB_PARENT(elm, field), field)) \ + RB_LEFT(RB_PARENT(elm, field), field) = (tmp); \ + else \ + RB_RIGHT(RB_PARENT(elm, field), field) = (tmp); \ + } else \ + (head)->rbh_root = (tmp); \ + RB_RIGHT(tmp, field) = (elm); \ + RB_PARENT(elm, field) = (tmp); \ + RB_AUGMENT(tmp); \ + if ((RB_PARENT(tmp, field))) \ + RB_AUGMENT(RB_PARENT(tmp, field)); \ +} while (0) + +/* Generates prototypes and inline functions */ +#define RB_PROTOTYPE(name, type, field, cmp) \ +void name##_RB_INSERT_COLOR(struct name *, struct type *); \ +void name##_RB_REMOVE_COLOR(struct name *, struct type *, struct type *);\ +struct type *name##_RB_REMOVE(struct name *, struct type *); \ +struct type *name##_RB_INSERT(struct name *, struct type *); \ +struct type *name##_RB_FIND(struct name *, struct type *); \ +struct type *name##_RB_NEXT(struct type *); \ +struct type *name##_RB_MINMAX(struct name *, int); \ + \ + +/* Main rb operation. + * Moves node close to the key of elm to top + */ +#define RB_GENERATE(name, type, field, cmp) \ +void \ +name##_RB_INSERT_COLOR(struct name *head, struct type *elm) \ +{ \ + struct type *parent, *gparent, *tmp; \ + while ((parent = RB_PARENT(elm, field)) && \ + RB_COLOR(parent, field) == RB_RED) { \ + gparent = RB_PARENT(parent, field); \ + if (parent == RB_LEFT(gparent, field)) { \ + tmp = RB_RIGHT(gparent, field); \ + if (tmp && RB_COLOR(tmp, field) == RB_RED) { \ + RB_COLOR(tmp, field) = RB_BLACK; \ + RB_SET_BLACKRED(parent, gparent, field);\ + elm = gparent; \ + continue; \ + } \ + if (RB_RIGHT(parent, field) == elm) { \ + RB_ROTATE_LEFT(head, parent, tmp, field);\ + tmp = parent; \ + parent = elm; \ + elm = tmp; \ + } \ + RB_SET_BLACKRED(parent, gparent, field); \ + RB_ROTATE_RIGHT(head, gparent, tmp, field); \ + } else { \ + tmp = RB_LEFT(gparent, field); \ + if (tmp && RB_COLOR(tmp, field) == RB_RED) { \ + RB_COLOR(tmp, field) = RB_BLACK; \ + RB_SET_BLACKRED(parent, gparent, field);\ + elm = gparent; \ + continue; \ + } \ + if (RB_LEFT(parent, field) == elm) { \ + RB_ROTATE_RIGHT(head, parent, tmp, field);\ + tmp = parent; \ + parent = elm; \ + elm = tmp; \ + } \ + RB_SET_BLACKRED(parent, gparent, field); \ + RB_ROTATE_LEFT(head, gparent, tmp, field); \ + } \ + } \ + RB_COLOR(head->rbh_root, field) = RB_BLACK; \ +} \ + \ +void \ +name##_RB_REMOVE_COLOR(struct name *head, struct type *parent, struct type *elm) \ +{ \ + struct type *tmp; \ + while ((elm == NULL || RB_COLOR(elm, field) == RB_BLACK) && \ + elm != RB_ROOT(head)) { \ + if (RB_LEFT(parent, field) == elm) { \ + tmp = RB_RIGHT(parent, field); \ + if (RB_COLOR(tmp, field) == RB_RED) { \ + RB_SET_BLACKRED(tmp, parent, field); \ + RB_ROTATE_LEFT(head, parent, tmp, field);\ + tmp = RB_RIGHT(parent, field); \ + } \ + if ((RB_LEFT(tmp, field) == NULL || \ + RB_COLOR(RB_LEFT(tmp, field), field) == RB_BLACK) &&\ + (RB_RIGHT(tmp, field) == NULL || \ + RB_COLOR(RB_RIGHT(tmp, field), field) == RB_BLACK)) {\ + RB_COLOR(tmp, field) = RB_RED; \ + elm = parent; \ + parent = RB_PARENT(elm, field); \ + } else { \ + if (RB_RIGHT(tmp, field) == NULL || \ + RB_COLOR(RB_RIGHT(tmp, field), field) == RB_BLACK) {\ + struct type *oleft; \ + if ((oleft = RB_LEFT(tmp, field)))\ + RB_COLOR(oleft, field) = RB_BLACK;\ + RB_COLOR(tmp, field) = RB_RED; \ + RB_ROTATE_RIGHT(head, tmp, oleft, field);\ + tmp = RB_RIGHT(parent, field); \ + } \ + RB_COLOR(tmp, field) = RB_COLOR(parent, field);\ + RB_COLOR(parent, field) = RB_BLACK; \ + if (RB_RIGHT(tmp, field)) \ + RB_COLOR(RB_RIGHT(tmp, field), field) = RB_BLACK;\ + RB_ROTATE_LEFT(head, parent, tmp, field);\ + elm = RB_ROOT(head); \ + break; \ + } \ + } else { \ + tmp = RB_LEFT(parent, field); \ + if (RB_COLOR(tmp, field) == RB_RED) { \ + RB_SET_BLACKRED(tmp, parent, field); \ + RB_ROTATE_RIGHT(head, parent, tmp, field);\ + tmp = RB_LEFT(parent, field); \ + } \ + if ((RB_LEFT(tmp, field) == NULL || \ + RB_COLOR(RB_LEFT(tmp, field), field) == RB_BLACK) &&\ + (RB_RIGHT(tmp, field) == NULL || \ + RB_COLOR(RB_RIGHT(tmp, field), field) == RB_BLACK)) {\ + RB_COLOR(tmp, field) = RB_RED; \ + elm = parent; \ + parent = RB_PARENT(elm, field); \ + } else { \ + if (RB_LEFT(tmp, field) == NULL || \ + RB_COLOR(RB_LEFT(tmp, field), field) == RB_BLACK) {\ + struct type *oright; \ + if ((oright = RB_RIGHT(tmp, field)))\ + RB_COLOR(oright, field) = RB_BLACK;\ + RB_COLOR(tmp, field) = RB_RED; \ + RB_ROTATE_LEFT(head, tmp, oright, field);\ + tmp = RB_LEFT(parent, field); \ + } \ + RB_COLOR(tmp, field) = RB_COLOR(parent, field);\ + RB_COLOR(parent, field) = RB_BLACK; \ + if (RB_LEFT(tmp, field)) \ + RB_COLOR(RB_LEFT(tmp, field), field) = RB_BLACK;\ + RB_ROTATE_RIGHT(head, parent, tmp, field);\ + elm = RB_ROOT(head); \ + break; \ + } \ + } \ + } \ + if (elm) \ + RB_COLOR(elm, field) = RB_BLACK; \ +} \ + \ +struct type * \ +name##_RB_REMOVE(struct name *head, struct type *elm) \ +{ \ + struct type *child, *parent, *old = elm; \ + int color; \ + if (RB_LEFT(elm, field) == NULL) \ + child = RB_RIGHT(elm, field); \ + else if (RB_RIGHT(elm, field) == NULL) \ + child = RB_LEFT(elm, field); \ + else { \ + struct type *left; \ + elm = RB_RIGHT(elm, field); \ + while ((left = RB_LEFT(elm, field))) \ + elm = left; \ + child = RB_RIGHT(elm, field); \ + parent = RB_PARENT(elm, field); \ + color = RB_COLOR(elm, field); \ + if (child) \ + RB_PARENT(child, field) = parent; \ + if (parent) { \ + if (RB_LEFT(parent, field) == elm) \ + RB_LEFT(parent, field) = child; \ + else \ + RB_RIGHT(parent, field) = child; \ + RB_AUGMENT(parent); \ + } else \ + RB_ROOT(head) = child; \ + if (RB_PARENT(elm, field) == old) \ + parent = elm; \ + (elm)->field = (old)->field; \ + if (RB_PARENT(old, field)) { \ + if (RB_LEFT(RB_PARENT(old, field), field) == old)\ + RB_LEFT(RB_PARENT(old, field), field) = elm;\ + else \ + RB_RIGHT(RB_PARENT(old, field), field) = elm;\ + RB_AUGMENT(RB_PARENT(old, field)); \ + } else \ + RB_ROOT(head) = elm; \ + RB_PARENT(RB_LEFT(old, field), field) = elm; \ + if (RB_RIGHT(old, field)) \ + RB_PARENT(RB_RIGHT(old, field), field) = elm; \ + if (parent) { \ + left = parent; \ + do { \ + RB_AUGMENT(left); \ + } while ((left = RB_PARENT(left, field))); \ + } \ + goto color; \ + } \ + parent = RB_PARENT(elm, field); \ + color = RB_COLOR(elm, field); \ + if (child) \ + RB_PARENT(child, field) = parent; \ + if (parent) { \ + if (RB_LEFT(parent, field) == elm) \ + RB_LEFT(parent, field) = child; \ + else \ + RB_RIGHT(parent, field) = child; \ + RB_AUGMENT(parent); \ + } else \ + RB_ROOT(head) = child; \ +color: \ + if (color == RB_BLACK) \ + name##_RB_REMOVE_COLOR(head, parent, child); \ + return (old); \ +} \ + \ +/* Inserts a node into the RB tree */ \ +struct type * \ +name##_RB_INSERT(struct name *head, struct type *elm) \ +{ \ + struct type *tmp; \ + struct type *parent = NULL; \ + int comp = 0; \ + tmp = RB_ROOT(head); \ + while (tmp) { \ + parent = tmp; \ + comp = (cmp)(elm, parent); \ + if (comp < 0) \ + tmp = RB_LEFT(tmp, field); \ + else if (comp > 0) \ + tmp = RB_RIGHT(tmp, field); \ + else \ + return (tmp); \ + } \ + RB_SET(elm, parent, field); \ + if (parent != NULL) { \ + if (comp < 0) \ + RB_LEFT(parent, field) = elm; \ + else \ + RB_RIGHT(parent, field) = elm; \ + RB_AUGMENT(parent); \ + } else \ + RB_ROOT(head) = elm; \ + name##_RB_INSERT_COLOR(head, elm); \ + return (NULL); \ +} \ + \ +/* Finds the node with the same key as elm */ \ +struct type * \ +name##_RB_FIND(struct name *head, struct type *elm) \ +{ \ + struct type *tmp = RB_ROOT(head); \ + int comp; \ + while (tmp) { \ + comp = cmp(elm, tmp); \ + if (comp < 0) \ + tmp = RB_LEFT(tmp, field); \ + else if (comp > 0) \ + tmp = RB_RIGHT(tmp, field); \ + else \ + return (tmp); \ + } \ + return (NULL); \ +} \ + \ +struct type * \ +name##_RB_NEXT(struct type *elm) \ +{ \ + if (RB_RIGHT(elm, field)) { \ + elm = RB_RIGHT(elm, field); \ + while (RB_LEFT(elm, field)) \ + elm = RB_LEFT(elm, field); \ + } else { \ + if (RB_PARENT(elm, field) && \ + (elm == RB_LEFT(RB_PARENT(elm, field), field))) \ + elm = RB_PARENT(elm, field); \ + else { \ + while (RB_PARENT(elm, field) && \ + (elm == RB_RIGHT(RB_PARENT(elm, field), field)))\ + elm = RB_PARENT(elm, field); \ + elm = RB_PARENT(elm, field); \ + } \ + } \ + return (elm); \ +} \ + \ +struct type * \ +name##_RB_MINMAX(struct name *head, int val) \ +{ \ + struct type *tmp = RB_ROOT(head); \ + struct type *parent = NULL; \ + while (tmp) { \ + parent = tmp; \ + if (val < 0) \ + tmp = RB_LEFT(tmp, field); \ + else \ + tmp = RB_RIGHT(tmp, field); \ + } \ + return (parent); \ +} + +#define RB_NEGINF -1 +#define RB_INF 1 + +#define RB_INSERT(name, x, y) name##_RB_INSERT(x, y) +#define RB_REMOVE(name, x, y) name##_RB_REMOVE(x, y) +#define RB_FIND(name, x, y) name##_RB_FIND(x, y) +#define RB_NEXT(name, x, y) name##_RB_NEXT(y) +#define RB_MIN(name, x) name##_RB_MINMAX(x, RB_NEGINF) +#define RB_MAX(name, x) name##_RB_MINMAX(x, RB_INF) + +#define RB_FOREACH(x, name, head) \ + for ((x) = RB_MIN(name, head); \ + (x) != NULL; \ + (x) = name##_RB_NEXT(x)) + +#endif /* _SYS_TREE_H_ */ diff -Nru mysql-5.7-5.7.25/extra/libevent/win32select.c mysql-5.7-5.7.26/extra/libevent/win32select.c --- mysql-5.7-5.7.25/extra/libevent/win32select.c 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/extra/libevent/win32select.c 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,388 @@ +/* + * Copyright 2007-2012 Niels Provos and Nick Mathewson + * Copyright 2000-2007 Niels Provos + * Copyright 2003 Michael A. Davis + * + * 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. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + */ +#include "event2/event-config.h" +#include "evconfig-private.h" + +#ifdef _WIN32 + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "event2/util.h" +#include "util-internal.h" +#include "log-internal.h" +#include "event2/event.h" +#include "event-internal.h" +#include "evmap-internal.h" +#include "event2/thread.h" +#include "evthread-internal.h" +#include "time-internal.h" + +#define XFREE(ptr) do { if (ptr) mm_free(ptr); } while (0) + +extern struct event_list timequeue; +extern struct event_list addqueue; + +struct win_fd_set { + unsigned int fd_count; + SOCKET fd_array[1]; +}; + +/* MSDN says this is required to handle SIGFPE */ +volatile double SIGFPE_REQ = 0.0f; + +struct idx_info { + int read_pos_plus1; + int write_pos_plus1; +}; + +struct win32op { + unsigned num_fds_in_fd_sets; + int resize_out_sets; + struct win_fd_set *readset_in; + struct win_fd_set *writeset_in; + struct win_fd_set *readset_out; + struct win_fd_set *writeset_out; + struct win_fd_set *exset_out; + unsigned signals_are_broken : 1; +}; + +static void *win32_init(struct event_base *); +static int win32_add(struct event_base *, evutil_socket_t, short old, short events, void *idx_); +static int win32_del(struct event_base *, evutil_socket_t, short old, short events, void *idx_); +static int win32_dispatch(struct event_base *base, struct timeval *); +static void win32_dealloc(struct event_base *); + +struct eventop win32ops = { + "win32", + win32_init, + win32_add, + win32_del, + win32_dispatch, + win32_dealloc, + 0, /* doesn't need reinit */ + 0, /* No features supported. */ + sizeof(struct idx_info), +}; + +#define FD_SET_ALLOC_SIZE(n) ((sizeof(struct win_fd_set) + ((n)-1)*sizeof(SOCKET))) + +static int +grow_fd_sets(struct win32op *op, unsigned new_num_fds) +{ + size_t size; + + EVUTIL_ASSERT(new_num_fds >= op->readset_in->fd_count && + new_num_fds >= op->writeset_in->fd_count); + EVUTIL_ASSERT(new_num_fds >= 1); + + size = FD_SET_ALLOC_SIZE(new_num_fds); + if (!(op->readset_in = mm_realloc(op->readset_in, size))) + return (-1); + if (!(op->writeset_in = mm_realloc(op->writeset_in, size))) + return (-1); + op->resize_out_sets = 1; + op->num_fds_in_fd_sets = new_num_fds; + return (0); +} + +static int +do_fd_set(struct win32op *op, struct idx_info *ent, evutil_socket_t s, int read) +{ + struct win_fd_set *set = read ? op->readset_in : op->writeset_in; + if (read) { + if (ent->read_pos_plus1 > 0) + return (0); + } else { + if (ent->write_pos_plus1 > 0) + return (0); + } + if (set->fd_count == op->num_fds_in_fd_sets) { + if (grow_fd_sets(op, op->num_fds_in_fd_sets*2)) + return (-1); + /* set pointer will have changed and needs reiniting! */ + set = read ? op->readset_in : op->writeset_in; + } + set->fd_array[set->fd_count] = s; + if (read) + ent->read_pos_plus1 = set->fd_count+1; + else + ent->write_pos_plus1 = set->fd_count+1; + return (set->fd_count++); +} + +static int +do_fd_clear(struct event_base *base, + struct win32op *op, struct idx_info *ent, int read) +{ + int i; + struct win_fd_set *set = read ? op->readset_in : op->writeset_in; + if (read) { + i = ent->read_pos_plus1 - 1; + ent->read_pos_plus1 = 0; + } else { + i = ent->write_pos_plus1 - 1; + ent->write_pos_plus1 = 0; + } + if (i < 0) + return (0); + if (--set->fd_count != (unsigned)i) { + struct idx_info *ent2; + SOCKET s2; + s2 = set->fd_array[i] = set->fd_array[set->fd_count]; + + ent2 = evmap_io_get_fdinfo_(&base->io, s2); + + if (!ent2) /* This indicates a bug. */ + return (0); + if (read) + ent2->read_pos_plus1 = i+1; + else + ent2->write_pos_plus1 = i+1; + } + return (0); +} + +#define NEVENT 32 +void * +win32_init(struct event_base *base) +{ + struct win32op *winop; + size_t size; + if (!(winop = mm_calloc(1, sizeof(struct win32op)))) + return NULL; + winop->num_fds_in_fd_sets = NEVENT; + size = FD_SET_ALLOC_SIZE(NEVENT); + if (!(winop->readset_in = mm_malloc(size))) + goto err; + if (!(winop->writeset_in = mm_malloc(size))) + goto err; + if (!(winop->readset_out = mm_malloc(size))) + goto err; + if (!(winop->writeset_out = mm_malloc(size))) + goto err; + if (!(winop->exset_out = mm_malloc(size))) + goto err; + winop->readset_in->fd_count = winop->writeset_in->fd_count = 0; + winop->readset_out->fd_count = winop->writeset_out->fd_count + = winop->exset_out->fd_count = 0; + + if (evsig_init_(base) < 0) + winop->signals_are_broken = 1; + + evutil_weakrand_seed_(&base->weakrand_seed, 0); + + return (winop); + err: + XFREE(winop->readset_in); + XFREE(winop->writeset_in); + XFREE(winop->readset_out); + XFREE(winop->writeset_out); + XFREE(winop->exset_out); + XFREE(winop); + return (NULL); +} + +int +win32_add(struct event_base *base, evutil_socket_t fd, + short old, short events, void *idx_) +{ + struct win32op *win32op = base->evbase; + struct idx_info *idx = idx_; + + if ((events & EV_SIGNAL) && win32op->signals_are_broken) + return (-1); + + if (!(events & (EV_READ|EV_WRITE))) + return (0); + + event_debug(("%s: adding event for %d", __func__, (int)fd)); + if (events & EV_READ) { + if (do_fd_set(win32op, idx, fd, 1)<0) + return (-1); + } + if (events & EV_WRITE) { + if (do_fd_set(win32op, idx, fd, 0)<0) + return (-1); + } + return (0); +} + +int +win32_del(struct event_base *base, evutil_socket_t fd, short old, short events, + void *idx_) +{ + struct win32op *win32op = base->evbase; + struct idx_info *idx = idx_; + + event_debug(("%s: Removing event for "EV_SOCK_FMT, + __func__, EV_SOCK_ARG(fd))); + if (events & EV_READ) + do_fd_clear(base, win32op, idx, 1); + if (events & EV_WRITE) + do_fd_clear(base, win32op, idx, 0); + + return 0; +} + +static void +fd_set_copy(struct win_fd_set *out, const struct win_fd_set *in) +{ + out->fd_count = in->fd_count; + memcpy(out->fd_array, in->fd_array, in->fd_count * (sizeof(SOCKET))); +} + +/* + static void dump_fd_set(struct win_fd_set *s) + { + unsigned int i; + printf("[ "); + for(i=0;ifd_count;++i) + printf("%d ",(int)s->fd_array[i]); + printf("]\n"); + } +*/ + +int +win32_dispatch(struct event_base *base, struct timeval *tv) +{ + struct win32op *win32op = base->evbase; + int res = 0; + unsigned j, i; + int fd_count; + SOCKET s; + + if (win32op->resize_out_sets) { + size_t size = FD_SET_ALLOC_SIZE(win32op->num_fds_in_fd_sets); + if (!(win32op->readset_out = mm_realloc(win32op->readset_out, size))) + return (-1); + if (!(win32op->exset_out = mm_realloc(win32op->exset_out, size))) + return (-1); + if (!(win32op->writeset_out = mm_realloc(win32op->writeset_out, size))) + return (-1); + win32op->resize_out_sets = 0; + } + + fd_set_copy(win32op->readset_out, win32op->readset_in); + fd_set_copy(win32op->exset_out, win32op->writeset_in); + fd_set_copy(win32op->writeset_out, win32op->writeset_in); + + fd_count = + (win32op->readset_out->fd_count > win32op->writeset_out->fd_count) ? + win32op->readset_out->fd_count : win32op->writeset_out->fd_count; + + if (!fd_count) { + long msec = tv ? evutil_tv_to_msec_(tv) : LONG_MAX; + /* Sleep's DWORD argument is unsigned long */ + if (msec < 0) + msec = LONG_MAX; + /* Windows doesn't like you to call select() with no sockets */ + Sleep(msec); + return (0); + } + + EVBASE_RELEASE_LOCK(base, th_base_lock); + + res = select(fd_count, + (struct fd_set*)win32op->readset_out, + (struct fd_set*)win32op->writeset_out, + (struct fd_set*)win32op->exset_out, tv); + + EVBASE_ACQUIRE_LOCK(base, th_base_lock); + + event_debug(("%s: select returned %d", __func__, res)); + + if (res <= 0) { + return res; + } + + if (win32op->readset_out->fd_count) { + i = evutil_weakrand_range_(&base->weakrand_seed, + win32op->readset_out->fd_count); + for (j=0; jreadset_out->fd_count; ++j) { + if (++i >= win32op->readset_out->fd_count) + i = 0; + s = win32op->readset_out->fd_array[i]; + evmap_io_active_(base, s, EV_READ); + } + } + if (win32op->exset_out->fd_count) { + i = evutil_weakrand_range_(&base->weakrand_seed, + win32op->exset_out->fd_count); + for (j=0; jexset_out->fd_count; ++j) { + if (++i >= win32op->exset_out->fd_count) + i = 0; + s = win32op->exset_out->fd_array[i]; + evmap_io_active_(base, s, EV_WRITE); + } + } + if (win32op->writeset_out->fd_count) { + SOCKET s; + i = evutil_weakrand_range_(&base->weakrand_seed, + win32op->writeset_out->fd_count); + for (j=0; jwriteset_out->fd_count; ++j) { + if (++i >= win32op->writeset_out->fd_count) + i = 0; + s = win32op->writeset_out->fd_array[i]; + evmap_io_active_(base, s, EV_WRITE); + } + } + return (0); +} + +void +win32_dealloc(struct event_base *base) +{ + struct win32op *win32op = base->evbase; + + evsig_dealloc_(base); + if (win32op->readset_in) + mm_free(win32op->readset_in); + if (win32op->writeset_in) + mm_free(win32op->writeset_in); + if (win32op->readset_out) + mm_free(win32op->readset_out); + if (win32op->writeset_out) + mm_free(win32op->writeset_out); + if (win32op->exset_out) + mm_free(win32op->exset_out); + /* XXXXX free the tree. */ + + memset(win32op, 0, sizeof(*win32op)); + mm_free(win32op); +} + +#endif diff -Nru mysql-5.7-5.7.25/extra/protobuf/CMakeLists.txt mysql-5.7-5.7.26/extra/protobuf/CMakeLists.txt --- mysql-5.7-5.7.25/extra/protobuf/CMakeLists.txt 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/extra/protobuf/CMakeLists.txt 2019-04-13 13:32:15.000000000 +0000 @@ -28,6 +28,8 @@ SET(PROTOBUF_MSVC_DISABLED_WARNINGS "/wd4018 /wd4005 /wd4244 /wd4267 /wd4065") +INCLUDE(${MYSQL_CMAKE_SCRIPT_DIR}/compile_flags.cmake) + # Turn off some warning flags when compiling protobuf MY_CHECK_CXX_COMPILER_FLAG("-Wno-sign-compare" HAVE_NO_SIGN_COMPARE) IF(HAVE_NO_SIGN_COMPARE) diff -Nru mysql-5.7-5.7.25/include/mysql/thread_pool_priv.h mysql-5.7-5.7.26/include/mysql/thread_pool_priv.h --- mysql-5.7-5.7.25/include/mysql/thread_pool_priv.h 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/include/mysql/thread_pool_priv.h 2019-04-13 13:32:15.000000000 +0000 @@ -1,5 +1,5 @@ /* - Copyright (c) 2010, 2016, Oracle and/or its affiliates. All rights reserved. + Copyright (c) 2010, 2018, Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -178,4 +178,8 @@ */ my_thread_attr_t *get_connection_attrib(void); +/* Increment the status variable 'Aborted_connects'. */ +#ifndef EMBEDDED_LIBRARY +void increment_aborted_connects(); +#endif #endif // THREAD_POOL_PRIV_INCLUDED diff -Nru mysql-5.7-5.7.25/libevent/autogen.sh mysql-5.7-5.7.26/libevent/autogen.sh --- mysql-5.7-5.7.25/libevent/autogen.sh 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/autogen.sh 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -#!/bin/sh -LIBTOOLIZE=libtoolize -SYSNAME=`uname` -if [ "x$SYSNAME" = "xDarwin" ] ; then - LIBTOOLIZE=glibtoolize -fi -aclocal && \ - autoheader && \ - $LIBTOOLIZE && \ - autoconf && \ - automake --add-missing --copy diff -Nru mysql-5.7-5.7.25/libevent/buffer.c mysql-5.7-5.7.26/libevent/buffer.c --- mysql-5.7-5.7.25/libevent/buffer.c 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/buffer.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,451 +0,0 @@ -/* - * Copyright (c) 2002, 2003 Niels Provos - * All rights reserved. - * - * 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. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. - */ - -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -#ifdef WIN32 -#include -#include -#endif - -#ifdef HAVE_VASPRINTF -/* If we have vasprintf, we need to define this before we include stdio.h. */ -#define _GNU_SOURCE -#endif - -#include - -#ifdef HAVE_SYS_TIME_H -#include -#endif - -#ifdef HAVE_SYS_IOCTL_H -#include -#endif - -#include -#include -#include -#include -#include -#ifdef HAVE_STDARG_H -#include -#endif -#ifdef HAVE_UNISTD_H -#include -#endif - -#include "event.h" -#include "config.h" -#include "evutil.h" - -struct evbuffer * -evbuffer_new(void) -{ - struct evbuffer *buffer; - - buffer = calloc(1, sizeof(struct evbuffer)); - - return (buffer); -} - -void -evbuffer_free(struct evbuffer *buffer) -{ - if (buffer->orig_buffer != NULL) - free(buffer->orig_buffer); - free(buffer); -} - -/* - * This is a destructive add. The data from one buffer moves into - * the other buffer. - */ - -#define SWAP(x,y) do { \ - (x)->buffer = (y)->buffer; \ - (x)->orig_buffer = (y)->orig_buffer; \ - (x)->misalign = (y)->misalign; \ - (x)->totallen = (y)->totallen; \ - (x)->off = (y)->off; \ -} while (0) - -int -evbuffer_add_buffer(struct evbuffer *outbuf, struct evbuffer *inbuf) -{ - int res; - - /* Short cut for better performance */ - if (outbuf->off == 0) { - struct evbuffer tmp; - size_t oldoff = inbuf->off; - - /* Swap them directly */ - SWAP(&tmp, outbuf); - SWAP(outbuf, inbuf); - SWAP(inbuf, &tmp); - - /* - * Optimization comes with a price; we need to notify the - * buffer if necessary of the changes. oldoff is the amount - * of data that we transfered from inbuf to outbuf - */ - if (inbuf->off != oldoff && inbuf->cb != NULL) - (*inbuf->cb)(inbuf, oldoff, inbuf->off, inbuf->cbarg); - if (oldoff && outbuf->cb != NULL) - (*outbuf->cb)(outbuf, 0, oldoff, outbuf->cbarg); - - return (0); - } - - res = evbuffer_add(outbuf, inbuf->buffer, inbuf->off); - if (res == 0) { - /* We drain the input buffer on success */ - evbuffer_drain(inbuf, inbuf->off); - } - - return (res); -} - -int -evbuffer_add_vprintf(struct evbuffer *buf, const char *fmt, va_list ap) -{ - char *buffer; - size_t space; - size_t oldoff = buf->off; - int sz; - va_list aq; - - /* make sure that at least some space is available */ - evbuffer_expand(buf, 64); - for (;;) { - size_t used = buf->misalign + buf->off; - buffer = (char *)buf->buffer + buf->off; - assert(buf->totallen >= used); - space = buf->totallen - used; - -#ifndef va_copy -#define va_copy(dst, src) memcpy(&(dst), &(src), sizeof(va_list)) -#endif - va_copy(aq, ap); - - sz = evutil_vsnprintf(buffer, space, fmt, aq); - - va_end(aq); - - if (sz < 0) - return (-1); - if ((size_t)sz < space) { - buf->off += sz; - if (buf->cb != NULL) - (*buf->cb)(buf, oldoff, buf->off, buf->cbarg); - return (sz); - } - if (evbuffer_expand(buf, sz + 1) == -1) - return (-1); - - } - /* NOTREACHED */ -} - -int -evbuffer_add_printf(struct evbuffer *buf, const char *fmt, ...) -{ - int res = -1; - va_list ap; - - va_start(ap, fmt); - res = evbuffer_add_vprintf(buf, fmt, ap); - va_end(ap); - - return (res); -} - -/* Reads data from an event buffer and drains the bytes read */ - -int -evbuffer_remove(struct evbuffer *buf, void *data, size_t datlen) -{ - size_t nread = datlen; - if (nread >= buf->off) - nread = buf->off; - - memcpy(data, buf->buffer, nread); - evbuffer_drain(buf, nread); - - return (nread); -} - -/* - * Reads a line terminated by either '\r\n', '\n\r' or '\r' or '\n'. - * The returned buffer needs to be freed by the called. - */ - -char * -evbuffer_readline(struct evbuffer *buffer) -{ - u_char *data = EVBUFFER_DATA(buffer); - size_t len = EVBUFFER_LENGTH(buffer); - char *line; - unsigned int i; - - for (i = 0; i < len; i++) { - if (data[i] == '\r' || data[i] == '\n') - break; - } - - if (i == len) - return (NULL); - - if ((line = malloc(i + 1)) == NULL) { - fprintf(stderr, "%s: out of memory\n", __func__); - evbuffer_drain(buffer, i); - return (NULL); - } - - memcpy(line, data, i); - line[i] = '\0'; - - /* - * Some protocols terminate a line with '\r\n', so check for - * that, too. - */ - if ( i < len - 1 ) { - char fch = data[i], sch = data[i+1]; - - /* Drain one more character if needed */ - if ( (sch == '\r' || sch == '\n') && sch != fch ) - i += 1; - } - - evbuffer_drain(buffer, i + 1); - - return (line); -} - -/* Adds data to an event buffer */ - -static void -evbuffer_align(struct evbuffer *buf) -{ - memmove(buf->orig_buffer, buf->buffer, buf->off); - buf->buffer = buf->orig_buffer; - buf->misalign = 0; -} - -/* Expands the available space in the event buffer to at least datlen */ - -int -evbuffer_expand(struct evbuffer *buf, size_t datlen) -{ - size_t need = buf->misalign + buf->off + datlen; - - /* If we can fit all the data, then we don't have to do anything */ - if (buf->totallen >= need) - return (0); - - /* - * If the misalignment fulfills our data needs, we just force an - * alignment to happen. Afterwards, we have enough space. - */ - if (buf->misalign >= datlen) { - evbuffer_align(buf); - } else { - void *newbuf; - size_t length = buf->totallen; - - if (length < 256) - length = 256; - while (length < need) - length <<= 1; - - if (buf->orig_buffer != buf->buffer) - evbuffer_align(buf); - if ((newbuf = realloc(buf->buffer, length)) == NULL) - return (-1); - - buf->orig_buffer = buf->buffer = newbuf; - buf->totallen = length; - } - - return (0); -} - -int -evbuffer_add(struct evbuffer *buf, const void *data, size_t datlen) -{ - size_t need = buf->misalign + buf->off + datlen; - size_t oldoff = buf->off; - - if (buf->totallen < need) { - if (evbuffer_expand(buf, datlen) == -1) - return (-1); - } - - memcpy(buf->buffer + buf->off, data, datlen); - buf->off += datlen; - - if (datlen && buf->cb != NULL) - (*buf->cb)(buf, oldoff, buf->off, buf->cbarg); - - return (0); -} - -void -evbuffer_drain(struct evbuffer *buf, size_t len) -{ - size_t oldoff = buf->off; - - if (len >= buf->off) { - buf->off = 0; - buf->buffer = buf->orig_buffer; - buf->misalign = 0; - goto done; - } - - buf->buffer += len; - buf->misalign += len; - - buf->off -= len; - - done: - /* Tell someone about changes in this buffer */ - if (buf->off != oldoff && buf->cb != NULL) - (*buf->cb)(buf, oldoff, buf->off, buf->cbarg); - -} - -/* - * Reads data from a file descriptor into a buffer. - */ - -#define EVBUFFER_MAX_READ 4096 - -int -evbuffer_read(struct evbuffer *buf, int fd, int howmuch) -{ - u_char *p; - size_t oldoff = buf->off; - int n = EVBUFFER_MAX_READ; - -#if defined(FIONREAD) -#ifdef WIN32 - long lng = n; - if (ioctlsocket(fd, FIONREAD, &lng) == -1 || (n=lng) == 0) { -#else - if (ioctl(fd, FIONREAD, &n) == -1 || n == 0) { -#endif - n = EVBUFFER_MAX_READ; - } else if (n > EVBUFFER_MAX_READ && n > howmuch) { - /* - * It's possible that a lot of data is available for - * reading. We do not want to exhaust resources - * before the reader has a chance to do something - * about it. If the reader does not tell us how much - * data we should read, we artifically limit it. - */ - if ((size_t)n > buf->totallen << 2) - n = buf->totallen << 2; - if (n < EVBUFFER_MAX_READ) - n = EVBUFFER_MAX_READ; - } -#endif - if (howmuch < 0 || howmuch > n) - howmuch = n; - - /* If we don't have FIONREAD, we might waste some space here */ - if (evbuffer_expand(buf, howmuch) == -1) - return (-1); - - /* We can append new data at this point */ - p = buf->buffer + buf->off; - -#ifndef WIN32 - n = read(fd, p, howmuch); -#else - n = recv(fd, p, howmuch, 0); -#endif - if (n == -1) - return (-1); - if (n == 0) - return (0); - - buf->off += n; - - /* Tell someone about changes in this buffer */ - if (buf->off != oldoff && buf->cb != NULL) - (*buf->cb)(buf, oldoff, buf->off, buf->cbarg); - - return (n); -} - -int -evbuffer_write(struct evbuffer *buffer, int fd) -{ - int n; - -#ifndef WIN32 - n = write(fd, buffer->buffer, buffer->off); -#else - n = send(fd, buffer->buffer, buffer->off, 0); -#endif - if (n == -1) - return (-1); - if (n == 0) - return (0); - evbuffer_drain(buffer, n); - - return (n); -} - -u_char * -evbuffer_find(struct evbuffer *buffer, const u_char *what, size_t len) -{ - u_char *search = buffer->buffer, *end = search + buffer->off; - u_char *p; - - while (search < end && - (p = memchr(search, *what, end - search)) != NULL) { - if (p + len > end) - break; - if (memcmp(p, what, len) == 0) - return (p); - search = p + 1; - } - - return (NULL); -} - -void evbuffer_setcb(struct evbuffer *buffer, - void (*cb)(struct evbuffer *, size_t, size_t, void *), - void *cbarg) -{ - buffer->cb = cb; - buffer->cbarg = cbarg; -} diff -Nru mysql-5.7-5.7.25/libevent/ChangeLog mysql-5.7-5.7.26/libevent/ChangeLog --- mysql-5.7-5.7.25/libevent/ChangeLog 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/ChangeLog 1970-01-01 00:00:00.000000000 +0000 @@ -1,190 +0,0 @@ -Changes in 1.4.12-stable: - o Try to contain degree of failure when running on a win32 version so heavily firewalled that we can't fake a socketpair. - o Fix an obscure timing-dependent, allocator-dependent crash in the evdns code. - o Use __VA_ARGS__ syntax for varargs macros in event_rpcgen when compiler is not GCC. - o Activate fd events in a pseudorandom order with O(N) backends, so that we don't systematically favor low fds (select) or earlier-added fds (poll, win32). - o Fix another pair of fencepost bugs in epoll.c. [Patch from Adam Langley.] - o Do not break evdns connections to nameservers when our IP changes. - o Set truncated flag correctly in evdns server replies. - o Disable strict aliasing with GCC: our code is not compliant with it. - -Changes in 1.4.11-stable: - o Fix a bug when removing a timeout from the heap. [Patch from Marko Kreen] - o Remove the limit on size of HTTP headers by removing static buffers. - o Fix a nasty dangling pointer bug in epoll.c that could occur after epoll_recalc(). [Patch from Kevin Springborn] - o Distribute Win32-Code/event-config.h, not ./event-config.h - -Changes in 1.4.10-stable: - o clean up buffered http connection data on reset; reported by Brian O'Kelley - o bug fix and potential race condition in signal handling; from Alexander Drozdov - o rename the Solaris event ports backend to evport - o support compilation on Haiku - o fix signal processing when a signal callback delivers a signal; from Alexander Drozdov - o const-ify some arguments to evdns functions. - o off-by-one error in epoll_recalc; reported by Victor Goya - o include Doxyfile in tar ball; from Jeff Garzik - o correctly parse queries with encoded \r, \n or + characters - -Changes in 1.4.9-stable: - o event_add would not return error for some backends; from Dean McNamee - o Clear the timer cache on entering the event loop; reported by Victor Chang - o Only bind the socket on connect when a local address has been provided; reported by Alejo Sanchez - o Allow setting of local port for evhttp connections to support millions of connections from a single system; from Richard Jones. - o Clear the timer cache when leaving the event loop; reported by Robin Haberkorn - o Fix a typo in setting the global event base; reported by lance. - o Fix a memory leak when reading multi-line headers - o Fix a memory leak by not running explicit close detection for server connections - -Changes in 1.4.8-stable: - o Match the query in DNS replies to the query in the request; from Vsevolod Stakhov. - o Fix a merge problem in which name_from_addr returned pointers to the stack; found by Jiang Hong. - o Do not remove Accept-Encoding header - -Changes in 1.4.7-stable: - o Fix a bug where headers arriving in multiple packets were not parsed; fix from Jiang Hong; test by me. - -Changes in 1.4.6-stable: - o evutil.h now includes directly - o switch all uses of [v]snprintf over to evutil - o Correct handling of trailing headers in chunked replies; from Scott Lamb. - o Support multi-line HTTP headers; based on a patch from Moshe Litvin - o Reject negative Content-Length headers; anonymous bug report - o Detect CLOCK_MONOTONIC at runtime for evdns; anonymous bug report - o Fix a bug where deleting signals with the kqueue backend would cause subsequent adds to fail - o Support multiple events listening on the same signal; make signals regular events that go on the same event queue; problem report by Alexander Drozdov. - o Deal with evbuffer_read() returning -1 on EINTR|EAGAIN; from Adam Langley. - o Fix a bug in which the DNS server would incorrectly set the type of a cname reply to a. - o Fix a bug where setting the timeout on a bufferevent would take not effect if the event was already pending. - o Fix a memory leak when using signals for some event bases; reported by Alexander Drozdov. - o Add libevent.vcproj file to distribution to help with Windows build. - o Fix a problem with epoll() and reinit; problem report by Alexander Drozdov. - o Fix off-by-one errors in devpoll; from Ian Bell - o Make event_add not change any state if it fails; reported by Ian Bell. - o Do not warn on accept when errno is either EAGAIN or EINTR - -Changes in 1.4.5-stable: - o Fix connection keep-alive behavior for HTTP/1.0 - o Fix use of freed memory in event_reinit; pointed out by Peter Postma - o Constify struct timeval * where possible; pointed out by Forest Wilkinson - o allow min_heap_erase to be called on removed members; from liusifan. - o Rename INPUT and OUTPUT to EVRPC_INPUT and EVRPC_OUTPUT. Retain INPUT/OUTPUT aliases on on-win32 platforms for backwards compatibility. - o Do not use SO_REUSEADDR when connecting - o Fix Windows build - o Fix a bug in event_rpcgen when generated fixed-sized entries - -Changes in 1.4.4-stable: - o Correct the documentation on buffer printf functions. - o Don't warn on unimplemented epoll_create(): this isn't a problem, just a reason to fall back to poll or select. - o Correctly handle timeouts larger than 35 minutes on Linux with epoll.c. This is probably a kernel defect, but we'll have to support old kernels anyway even if it gets fixed. - o Fix a potential stack corruption bug in tagging on 64-bit CPUs. - o expose bufferevent_setwatermark via header files and fix high watermark on read - o fix a bug in bufferevent read water marks and add a test for them - o introduce bufferevent_setcb and bufferevent_setfd to allow better manipulation of bufferevents - o use libevent's internal timercmp on all platforms, to avoid bugs on old platforms where timercmp(a,b,<=) is buggy. - o reduce system calls for getting current time by caching it. - o fix evhttp_bind_socket() so that multiple sockets can be bound by the same http server. - o Build test directory correctly with CPPFLAGS set. - o Fix build under Visual C++ 2005. - o Expose evhttp_accept_socket() API. - o Merge windows gettimeofday() replacement into a new evutil_gettimeofday() function. - o Fix autoconf script behavior on IRIX. - o Make sure winsock2.h include always comes before windows.h include. - -Changes in 1.4.3-stable: - o include Content-Length in reply for HTTP/1.0 requests with keep-alive - o Patch from Tani Hosokawa: make some functions in http.c threadsafe. - o Do not free the kqop file descriptor in other processes, also allow it to be 0; from Andrei Nigmatulin - o make event_rpcgen.py generate code include event-config.h; reported by Sam Banks. - o make event methods static so that they are not exported; from Andrei Nigmatulin - o make RPC replies use application/octet-stream as mime type - o do not delete uninitialized timeout event in evdns - -Changes in 1.4.2-rc: - o remove pending timeouts on event_base_free() - o also check EAGAIN for Solaris' event ports; from W.C.A. Wijngaards - o devpoll and evport need reinit; tested by W.C.A Wijngaards - o event_base_get_method; from Springande Ulv - o Send CRLF after each chunk in HTTP output, for compliance with RFC2626. Patch from "propanbutan". Fixes bug 1894184. - o Add a int64_t parsing function, with unit tests, so we can apply Scott Lamb's fix to allow large HTTP values. - o Use a 64-bit field to hold HTTP content-lengths. Patch from Scott Lamb. - o Allow regression code to build even without Python installed - o remove NDEBUG ifdefs from evdns.c - o update documentation of event_loop and event_base_loop; from Tani Hosokawa. - o detect integer types properly on platforms without stdint.h - o Remove "AM_MAINTAINER_MODE" declaration in configure.in: now makefiles and configure should get re-generated automatically when Makefile.am or configure.in chanes. - o do not insert event into list when evsel->add fails - -Changes in 1.4.1-beta: - o free minheap on event_base_free(); from Christopher Layne - o debug cleanups in signal.c; from Christopher Layne - o provide event_base_new() that does not set the current_base global - o bufferevent_write now uses a const source argument; report from Charles Kerr - o better documentation for event_base_loopexit; from Scott Lamb. - o Make kqueue have the same behavior as other backends when a signal is caught between event_add() and event_loop(). Previously, it would catch and ignore such signals. - o Make kqueue restore signal handlers correctly when event_del() is called. - o provide event_reinit() to reintialize an event_base after fork - o small improvements to evhttp documentation - o always generate Date and Content-Length headers for HTTP/1.1 replies - o set the correct event base for HTTP close events - o New function, event_{base_}loopbreak. Like event_loopexit, it makes an event loop stop executing and return. Unlike event_loopexit, it keeps subsequent pending events from getting executed. Patch from Scott Lamb - o Removed obsoleted recalc code - o pull setters/getters out of RPC structures into a base class to which we just need to store a pointer; this reduces the memory footprint of these structures. - o fix a bug with event_rpcgen for integers - o move EV_PERSIST handling out of the event backends - o support for 32-bit tag numbers in rpc structures; this is wire compatible, but changes the API slightly. - o prefix {encode,decode}_tag functions with evtag to avoid collisions - o Correctly handle DNS replies with no answers set (Fixes bug 1846282) - o The configure script now takes an --enable-gcc-warnigns option that turns on many optional gcc warnings. (Nick has been building with these for a while, but they might be useful to other developers.) - o When building with GCC, use the "format" attribute to verify type correctness of calls to printf-like functions. - o removed linger from http server socket; reported by Ilya Martynov - o allow \r or \n individually to separate HTTP headers instead of the standard "\r\n"; from Charles Kerr. - o demote most http warnings to debug messages - o Fix Solaris compilation; from Magne Mahre - o Add a "Date" header to HTTP responses, as required by HTTP 1.1. - o Support specifying the local address of an evhttp_connection using set_local_address - o Fix a memory leak in which failed HTTP connections would not free the request object - o Make adding of array members in event_rpcgen more efficient, but doubling memory allocation - o Fix a memory leak in the DNS server - o Fix compilation when DNS_USE_OPENSSL_FOR_ID is enabled - o Fix buffer size and string generation in evdns_resolve_reverse_ipv6(). - o Respond to nonstandard DNS queries with "NOTIMPL" rather than by ignoring them. - o In DNS responses, the CD flag should be preserved, not the TC flag. - o Fix http.c to compile properly with USE_DEBUG; from Christopher Layne - o Handle NULL timeouts correctly on Solaris; from Trond Norbye - o Recalculate pending events properly when reallocating event array on Solaris; from Trond Norbye - o Add Doxygen documentation to header files; from Mark Heily - o Add a evdns_set_transaction_id_fn() function to override the default - transaction ID generation code. - o Add an evutil module (with header evutil.h) to implement our standard cross-platform hacks, on the theory that somebody else would like to use them too. - o Fix signals implementation on windows. - o Fix http module on windows to close sockets properly. - o Make autogen.sh script run correctly on systems where /bin/sh isn't bash. (Patch from Trond Norbye, rewritten by Hagne Mahre and then Hannah Schroeter.) - o Skip calling gettime() in timeout_process if we are not in fact waiting for any events. (Patch from Trond Norbye) - o Make test subdirectory compile under mingw. - o Fix win32 buffer.c behavior so that it is correct for sockets (which do not like ReadFile and WriteFile). - o Make the test.sh script run unit tests for the evpoll method. - o Make the entire evdns.h header enclosed in "extern C" as appropriate. - o Fix implementation of strsep on platforms that lack it - o Fix implementation of getaddrinfo on platforms that lack it; mainly, this will make Windows http.c work better. Original patch by Lubomir Marinov. - o Fix evport implementation: port_disassociate called on unassociated events resulting in bogus errors; more efficient memory management; from Trond Norbye and Prakash Sangappa - o support for hooks on rpc input and output; can be used to implement rpc independent processing such as compression or authentication. - o use a min heap instead of a red-black tree for timeouts; as a result finding the min is a O(1) operation now; from Maxim Yegorushkin - o associate an event base with an rpc pool - o added two additional libraries: libevent_core and libevent_extra in addition to the regular libevent. libevent_core contains only the event core whereas libevent_extra contains dns, http and rpc support - o Begin using libtool's library versioning support correctly. If we don't mess up, this will more or less guarantee binaries linked against old versions of libevent continue working when we make changes to libevent that do not break backward compatibility. - o Fix evhttp.h compilation when TAILQ_ENTRY is not defined. - o Small code cleanups in epoll_dispatch(). - o Increase the maximum number of addresses read from a packet in evdns to 32. - o Remove support for the rtsig method: it hasn't compiled for a while, and nobody seems to miss it very much. Let us know if there's a good reason to put it back in. - o Rename the "class" field in evdns_server_request to dns_question_class, so that it won't break compilation under C++. Use a macro so that old code won't break. Mark the macro as deprecated. - o Fix DNS unit tests so that having a DNS server with broken IPv6 support is no longer cause for aborting the unit tests. - o Make event_base_free() succeed even if there are pending non-internal events on a base. This may still leak memory and fds, but at least it no longer crashes. - o Post-process the config.h file into a new, installed event-config.h file that we can install, and whose macros will be safe to include in header files. - o Remove the long-deprecated acconfig.h file. - o Do not require #include before #include . - o Add new evutil_timer* functions to wrap (or replace) the regular timeval manipulation functions. - o Fix many build issues when using the Microsoft C compiler. - o Remove a bash-ism in autogen.sh - o When calling event_del on a signal, restore the signal handler's previous value rather than setting it to SIG_DFL. Patch from Christopher Layne. - o Make the logic for active events work better with internal events; patch from Christopher Layne. - o We do not need to specially remove a timeout before calling event_del; patch from Christopher Layne. diff -Nru mysql-5.7-5.7.25/libevent/CMakeLists.txt mysql-5.7-5.7.26/libevent/CMakeLists.txt --- mysql-5.7-5.7.25/libevent/CMakeLists.txt 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 @@ -1,96 +0,0 @@ -# Copyright (c) 2011, 2016, Oracle and/or its affiliates. All rights reserved. -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; version 2 of the License. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - -# Common defines and includes - -ADD_DEFINITIONS(-DHAVE_CONFIG_H) -INCLUDE_DIRECTORIES(${LIBEVENT_INCLUDE_DIR}/compat/sys - ${LIBEVENT_INCLUDE_DIR}) - -INCLUDE(${MYSQL_CMAKE_SCRIPT_DIR}/compile_flags.cmake) - -IF ( WIN32 ) - INCLUDE_DIRECTORIES(${LIBEVENT_INCLUDE_DIR}/WIN32-Code - ${LIBEVENT_INCLUDE_DIR}/compat) -ENDIF() - -SET(CMAKE_C_FLAGS - "${CMAKE_C_FLAGS} ${CMAKE_SHARED_LIBRARY_C_FLAGS} -I${LIBEVENT_INCLUDE_DIR}") - -SET(LIBEVENT_CORE_SOURCES - event.h - event-internal.h - evutil.h - log.h - event.c - buffer.c - evbuffer.c - log.c - signal.c - evutil.c) - -SET(LIBEVENT_EXTRA_SOURCES - event_tagging.c - evhttp.h - http-internal.h - evdns.h - evrpc.c - evrpc.h - evrpc-internal.h - strlcpy.c - strlcpy-internal.h) - -IF ( NOT WIN32 ) - SET(LIBEVENT_OS_SPECIFIC_SOURCES select.c http.c) -ELSE() - SET(LIBEVENT_OS_SPECIFIC_SOURCES WIN32-Code/win32.c) -ENDIF() - - -IF(HAVE_POLL_H) - SET(LIBEVENT_POLL_SOURCES poll.c) -ENDIF() - -IF(HAVE_SYS_EPOLL_H) - SET(LIBEVENT_EPOLL_SOURCES epoll.c epoll_sub.c) -ENDIF() - -IF(HAVE_SYS_DEVPOLL_H) - SET(LIBEVENT_DEVPOLL_SOURCES devpoll.c) -ENDIF() - -IF(HAVE_EVENT_PORTS) - SET(LIBEVENT_EVPORT_SOURCES evport.c) -ENDIF() - -IF(HAVE_WORKING_KQUEUE) - SET(LIBEVENT_KQUEUE_SOURCES kqueue.c) -ENDIF() - -SET(LIBEVENT_ALL_SRC ${LIBEVENT_CORE_SOURCES} ${LIBEVENT_EXTRA_SOURCES} - ${LIBEVENT_OS_SPECIFIC_SOURCES} ${LIBEVENT_POLL_SOURCES} - ${LIBEVENT_EPOLL_SOURCES} ${LIBEVENT_DEVPOLL_SOURCES} - ${LIBEVENT_EVPORT_SOURCES} ${LIBEVENT_KQUEUE_SOURCES}) - -IF(MSVC) - # The macro identifier is defined twice. The compiler uses the second macro definition. - ADD_COMPILE_FLAGS(${LIBEVENT_ALL_SRC} COMPILE_FLAGS "/wd4005 /wd4267 /wd4244") -ENDIF() - -ADD_LIBRARY(event STATIC ${LIBEVENT_ALL_SRC}) - -# Use EXCLUDE_FROM_ALL to build only if another component -# which dependens on libevent is built -SET_PROPERTY(TARGET event PROPERTY EXCLUDE_FROM_ALL TRUE) diff -Nru mysql-5.7-5.7.25/libevent/compat/sys/queue.h mysql-5.7-5.7.26/libevent/compat/sys/queue.h --- mysql-5.7-5.7.25/libevent/compat/sys/queue.h 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/compat/sys/queue.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,488 +0,0 @@ -/* $OpenBSD: queue.h,v 1.16 2000/09/07 19:47:59 art Exp $ */ -/* $NetBSD: queue.h,v 1.11 1996/05/16 05:17:14 mycroft Exp $ */ - -/* - * Copyright (c) 1991, 1993 - * The Regents of the University of California. All rights reserved. - * - * 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 University 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 REGENTS 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 REGENTS 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. - * - * @(#)queue.h 8.5 (Berkeley) 8/20/94 - */ - -#ifndef _SYS_QUEUE_H_ -#define _SYS_QUEUE_H_ - -/* - * This file defines five types of data structures: singly-linked lists, - * lists, simple queues, tail queues, and circular queues. - * - * - * A singly-linked list is headed by a single forward pointer. The elements - * are singly linked for minimum space and pointer manipulation overhead at - * the expense of O(n) removal for arbitrary elements. New elements can be - * added to the list after an existing element or at the head of the list. - * Elements being removed from the head of the list should use the explicit - * macro for this purpose for optimum efficiency. A singly-linked list may - * only be traversed in the forward direction. Singly-linked lists are ideal - * for applications with large datasets and few or no removals or for - * implementing a LIFO queue. - * - * A list is headed by a single forward pointer (or an array of forward - * pointers for a hash table header). The elements are doubly linked - * so that an arbitrary element can be removed without a need to - * traverse the list. New elements can be added to the list before - * or after an existing element or at the head of the list. A list - * may only be traversed in the forward direction. - * - * A simple queue is headed by a pair of pointers, one the head of the - * list and the other to the tail of the list. The elements are singly - * linked to save space, so elements can only be removed from the - * head of the list. New elements can be added to the list before or after - * an existing element, at the head of the list, or at the end of the - * list. A simple queue may only be traversed in the forward direction. - * - * A tail queue is headed by a pair of pointers, one to the head of the - * list and the other to the tail of the list. The elements are doubly - * linked so that an arbitrary element can be removed without a need to - * traverse the list. New elements can be added to the list before or - * after an existing element, at the head of the list, or at the end of - * the list. A tail queue may be traversed in either direction. - * - * A circle queue is headed by a pair of pointers, one to the head of the - * list and the other to the tail of the list. The elements are doubly - * linked so that an arbitrary element can be removed without a need to - * traverse the list. New elements can be added to the list before or after - * an existing element, at the head of the list, or at the end of the list. - * A circle queue may be traversed in either direction, but has a more - * complex end of list detection. - * - * For details on the use of these macros, see the queue(3) manual page. - */ - -/* - * Singly-linked List definitions. - */ -#define SLIST_HEAD(name, type) \ -struct name { \ - struct type *slh_first; /* first element */ \ -} - -#define SLIST_HEAD_INITIALIZER(head) \ - { NULL } - -#ifndef WIN32 -#define SLIST_ENTRY(type) \ -struct { \ - struct type *sle_next; /* next element */ \ -} -#endif - -/* - * Singly-linked List access methods. - */ -#define SLIST_FIRST(head) ((head)->slh_first) -#define SLIST_END(head) NULL -#define SLIST_EMPTY(head) (SLIST_FIRST(head) == SLIST_END(head)) -#define SLIST_NEXT(elm, field) ((elm)->field.sle_next) - -#define SLIST_FOREACH(var, head, field) \ - for((var) = SLIST_FIRST(head); \ - (var) != SLIST_END(head); \ - (var) = SLIST_NEXT(var, field)) - -/* - * Singly-linked List functions. - */ -#define SLIST_INIT(head) { \ - SLIST_FIRST(head) = SLIST_END(head); \ -} - -#define SLIST_INSERT_AFTER(slistelm, elm, field) do { \ - (elm)->field.sle_next = (slistelm)->field.sle_next; \ - (slistelm)->field.sle_next = (elm); \ -} while (0) - -#define SLIST_INSERT_HEAD(head, elm, field) do { \ - (elm)->field.sle_next = (head)->slh_first; \ - (head)->slh_first = (elm); \ -} while (0) - -#define SLIST_REMOVE_HEAD(head, field) do { \ - (head)->slh_first = (head)->slh_first->field.sle_next; \ -} while (0) - -/* - * List definitions. - */ -#define LIST_HEAD(name, type) \ -struct name { \ - struct type *lh_first; /* first element */ \ -} - -#define LIST_HEAD_INITIALIZER(head) \ - { NULL } - -#define LIST_ENTRY(type) \ -struct { \ - struct type *le_next; /* next element */ \ - struct type **le_prev; /* address of previous next element */ \ -} - -/* - * List access methods - */ -#define LIST_FIRST(head) ((head)->lh_first) -#define LIST_END(head) NULL -#define LIST_EMPTY(head) (LIST_FIRST(head) == LIST_END(head)) -#define LIST_NEXT(elm, field) ((elm)->field.le_next) - -#define LIST_FOREACH(var, head, field) \ - for((var) = LIST_FIRST(head); \ - (var)!= LIST_END(head); \ - (var) = LIST_NEXT(var, field)) - -/* - * List functions. - */ -#define LIST_INIT(head) do { \ - LIST_FIRST(head) = LIST_END(head); \ -} while (0) - -#define LIST_INSERT_AFTER(listelm, elm, field) do { \ - if (((elm)->field.le_next = (listelm)->field.le_next) != NULL) \ - (listelm)->field.le_next->field.le_prev = \ - &(elm)->field.le_next; \ - (listelm)->field.le_next = (elm); \ - (elm)->field.le_prev = &(listelm)->field.le_next; \ -} while (0) - -#define LIST_INSERT_BEFORE(listelm, elm, field) do { \ - (elm)->field.le_prev = (listelm)->field.le_prev; \ - (elm)->field.le_next = (listelm); \ - *(listelm)->field.le_prev = (elm); \ - (listelm)->field.le_prev = &(elm)->field.le_next; \ -} while (0) - -#define LIST_INSERT_HEAD(head, elm, field) do { \ - if (((elm)->field.le_next = (head)->lh_first) != NULL) \ - (head)->lh_first->field.le_prev = &(elm)->field.le_next;\ - (head)->lh_first = (elm); \ - (elm)->field.le_prev = &(head)->lh_first; \ -} while (0) - -#define LIST_REMOVE(elm, field) do { \ - if ((elm)->field.le_next != NULL) \ - (elm)->field.le_next->field.le_prev = \ - (elm)->field.le_prev; \ - *(elm)->field.le_prev = (elm)->field.le_next; \ -} while (0) - -#define LIST_REPLACE(elm, elm2, field) do { \ - if (((elm2)->field.le_next = (elm)->field.le_next) != NULL) \ - (elm2)->field.le_next->field.le_prev = \ - &(elm2)->field.le_next; \ - (elm2)->field.le_prev = (elm)->field.le_prev; \ - *(elm2)->field.le_prev = (elm2); \ -} while (0) - -/* - * Simple queue definitions. - */ -#define SIMPLEQ_HEAD(name, type) \ -struct name { \ - struct type *sqh_first; /* first element */ \ - struct type **sqh_last; /* addr of last next element */ \ -} - -#define SIMPLEQ_HEAD_INITIALIZER(head) \ - { NULL, &(head).sqh_first } - -#define SIMPLEQ_ENTRY(type) \ -struct { \ - struct type *sqe_next; /* next element */ \ -} - -/* - * Simple queue access methods. - */ -#define SIMPLEQ_FIRST(head) ((head)->sqh_first) -#define SIMPLEQ_END(head) NULL -#define SIMPLEQ_EMPTY(head) (SIMPLEQ_FIRST(head) == SIMPLEQ_END(head)) -#define SIMPLEQ_NEXT(elm, field) ((elm)->field.sqe_next) - -#define SIMPLEQ_FOREACH(var, head, field) \ - for((var) = SIMPLEQ_FIRST(head); \ - (var) != SIMPLEQ_END(head); \ - (var) = SIMPLEQ_NEXT(var, field)) - -/* - * Simple queue functions. - */ -#define SIMPLEQ_INIT(head) do { \ - (head)->sqh_first = NULL; \ - (head)->sqh_last = &(head)->sqh_first; \ -} while (0) - -#define SIMPLEQ_INSERT_HEAD(head, elm, field) do { \ - if (((elm)->field.sqe_next = (head)->sqh_first) == NULL) \ - (head)->sqh_last = &(elm)->field.sqe_next; \ - (head)->sqh_first = (elm); \ -} while (0) - -#define SIMPLEQ_INSERT_TAIL(head, elm, field) do { \ - (elm)->field.sqe_next = NULL; \ - *(head)->sqh_last = (elm); \ - (head)->sqh_last = &(elm)->field.sqe_next; \ -} while (0) - -#define SIMPLEQ_INSERT_AFTER(head, listelm, elm, field) do { \ - if (((elm)->field.sqe_next = (listelm)->field.sqe_next) == NULL)\ - (head)->sqh_last = &(elm)->field.sqe_next; \ - (listelm)->field.sqe_next = (elm); \ -} while (0) - -#define SIMPLEQ_REMOVE_HEAD(head, elm, field) do { \ - if (((head)->sqh_first = (elm)->field.sqe_next) == NULL) \ - (head)->sqh_last = &(head)->sqh_first; \ -} while (0) - -/* - * Tail queue definitions. - */ -#define TAILQ_HEAD(name, type) \ -struct name { \ - struct type *tqh_first; /* first element */ \ - struct type **tqh_last; /* addr of last next element */ \ -} - -#define TAILQ_HEAD_INITIALIZER(head) \ - { NULL, &(head).tqh_first } - -#define TAILQ_ENTRY(type) \ -struct { \ - struct type *tqe_next; /* next element */ \ - struct type **tqe_prev; /* address of previous next element */ \ -} - -/* - * tail queue access methods - */ -#define TAILQ_FIRST(head) ((head)->tqh_first) -#define TAILQ_END(head) NULL -#define TAILQ_NEXT(elm, field) ((elm)->field.tqe_next) -#define TAILQ_LAST(head, headname) \ - (*(((struct headname *)((head)->tqh_last))->tqh_last)) -/* XXX */ -#define TAILQ_PREV(elm, headname, field) \ - (*(((struct headname *)((elm)->field.tqe_prev))->tqh_last)) -#define TAILQ_EMPTY(head) \ - (TAILQ_FIRST(head) == TAILQ_END(head)) - -#define TAILQ_FOREACH(var, head, field) \ - for((var) = TAILQ_FIRST(head); \ - (var) != TAILQ_END(head); \ - (var) = TAILQ_NEXT(var, field)) - -#define TAILQ_FOREACH_REVERSE(var, head, field, headname) \ - for((var) = TAILQ_LAST(head, headname); \ - (var) != TAILQ_END(head); \ - (var) = TAILQ_PREV(var, headname, field)) - -/* - * Tail queue functions. - */ -#define TAILQ_INIT(head) do { \ - (head)->tqh_first = NULL; \ - (head)->tqh_last = &(head)->tqh_first; \ -} while (0) - -#define TAILQ_INSERT_HEAD(head, elm, field) do { \ - if (((elm)->field.tqe_next = (head)->tqh_first) != NULL) \ - (head)->tqh_first->field.tqe_prev = \ - &(elm)->field.tqe_next; \ - else \ - (head)->tqh_last = &(elm)->field.tqe_next; \ - (head)->tqh_first = (elm); \ - (elm)->field.tqe_prev = &(head)->tqh_first; \ -} while (0) - -#define TAILQ_INSERT_TAIL(head, elm, field) do { \ - (elm)->field.tqe_next = NULL; \ - (elm)->field.tqe_prev = (head)->tqh_last; \ - *(head)->tqh_last = (elm); \ - (head)->tqh_last = &(elm)->field.tqe_next; \ -} while (0) - -#define TAILQ_INSERT_AFTER(head, listelm, elm, field) do { \ - if (((elm)->field.tqe_next = (listelm)->field.tqe_next) != NULL)\ - (elm)->field.tqe_next->field.tqe_prev = \ - &(elm)->field.tqe_next; \ - else \ - (head)->tqh_last = &(elm)->field.tqe_next; \ - (listelm)->field.tqe_next = (elm); \ - (elm)->field.tqe_prev = &(listelm)->field.tqe_next; \ -} while (0) - -#define TAILQ_INSERT_BEFORE(listelm, elm, field) do { \ - (elm)->field.tqe_prev = (listelm)->field.tqe_prev; \ - (elm)->field.tqe_next = (listelm); \ - *(listelm)->field.tqe_prev = (elm); \ - (listelm)->field.tqe_prev = &(elm)->field.tqe_next; \ -} while (0) - -#define TAILQ_REMOVE(head, elm, field) do { \ - if (((elm)->field.tqe_next) != NULL) \ - (elm)->field.tqe_next->field.tqe_prev = \ - (elm)->field.tqe_prev; \ - else \ - (head)->tqh_last = (elm)->field.tqe_prev; \ - *(elm)->field.tqe_prev = (elm)->field.tqe_next; \ -} while (0) - -#define TAILQ_REPLACE(head, elm, elm2, field) do { \ - if (((elm2)->field.tqe_next = (elm)->field.tqe_next) != NULL) \ - (elm2)->field.tqe_next->field.tqe_prev = \ - &(elm2)->field.tqe_next; \ - else \ - (head)->tqh_last = &(elm2)->field.tqe_next; \ - (elm2)->field.tqe_prev = (elm)->field.tqe_prev; \ - *(elm2)->field.tqe_prev = (elm2); \ -} while (0) - -/* - * Circular queue definitions. - */ -#define CIRCLEQ_HEAD(name, type) \ -struct name { \ - struct type *cqh_first; /* first element */ \ - struct type *cqh_last; /* last element */ \ -} - -#define CIRCLEQ_HEAD_INITIALIZER(head) \ - { CIRCLEQ_END(&head), CIRCLEQ_END(&head) } - -#define CIRCLEQ_ENTRY(type) \ -struct { \ - struct type *cqe_next; /* next element */ \ - struct type *cqe_prev; /* previous element */ \ -} - -/* - * Circular queue access methods - */ -#define CIRCLEQ_FIRST(head) ((head)->cqh_first) -#define CIRCLEQ_LAST(head) ((head)->cqh_last) -#define CIRCLEQ_END(head) ((void *)(head)) -#define CIRCLEQ_NEXT(elm, field) ((elm)->field.cqe_next) -#define CIRCLEQ_PREV(elm, field) ((elm)->field.cqe_prev) -#define CIRCLEQ_EMPTY(head) \ - (CIRCLEQ_FIRST(head) == CIRCLEQ_END(head)) - -#define CIRCLEQ_FOREACH(var, head, field) \ - for((var) = CIRCLEQ_FIRST(head); \ - (var) != CIRCLEQ_END(head); \ - (var) = CIRCLEQ_NEXT(var, field)) - -#define CIRCLEQ_FOREACH_REVERSE(var, head, field) \ - for((var) = CIRCLEQ_LAST(head); \ - (var) != CIRCLEQ_END(head); \ - (var) = CIRCLEQ_PREV(var, field)) - -/* - * Circular queue functions. - */ -#define CIRCLEQ_INIT(head) do { \ - (head)->cqh_first = CIRCLEQ_END(head); \ - (head)->cqh_last = CIRCLEQ_END(head); \ -} while (0) - -#define CIRCLEQ_INSERT_AFTER(head, listelm, elm, field) do { \ - (elm)->field.cqe_next = (listelm)->field.cqe_next; \ - (elm)->field.cqe_prev = (listelm); \ - if ((listelm)->field.cqe_next == CIRCLEQ_END(head)) \ - (head)->cqh_last = (elm); \ - else \ - (listelm)->field.cqe_next->field.cqe_prev = (elm); \ - (listelm)->field.cqe_next = (elm); \ -} while (0) - -#define CIRCLEQ_INSERT_BEFORE(head, listelm, elm, field) do { \ - (elm)->field.cqe_next = (listelm); \ - (elm)->field.cqe_prev = (listelm)->field.cqe_prev; \ - if ((listelm)->field.cqe_prev == CIRCLEQ_END(head)) \ - (head)->cqh_first = (elm); \ - else \ - (listelm)->field.cqe_prev->field.cqe_next = (elm); \ - (listelm)->field.cqe_prev = (elm); \ -} while (0) - -#define CIRCLEQ_INSERT_HEAD(head, elm, field) do { \ - (elm)->field.cqe_next = (head)->cqh_first; \ - (elm)->field.cqe_prev = CIRCLEQ_END(head); \ - if ((head)->cqh_last == CIRCLEQ_END(head)) \ - (head)->cqh_last = (elm); \ - else \ - (head)->cqh_first->field.cqe_prev = (elm); \ - (head)->cqh_first = (elm); \ -} while (0) - -#define CIRCLEQ_INSERT_TAIL(head, elm, field) do { \ - (elm)->field.cqe_next = CIRCLEQ_END(head); \ - (elm)->field.cqe_prev = (head)->cqh_last; \ - if ((head)->cqh_first == CIRCLEQ_END(head)) \ - (head)->cqh_first = (elm); \ - else \ - (head)->cqh_last->field.cqe_next = (elm); \ - (head)->cqh_last = (elm); \ -} while (0) - -#define CIRCLEQ_REMOVE(head, elm, field) do { \ - if ((elm)->field.cqe_next == CIRCLEQ_END(head)) \ - (head)->cqh_last = (elm)->field.cqe_prev; \ - else \ - (elm)->field.cqe_next->field.cqe_prev = \ - (elm)->field.cqe_prev; \ - if ((elm)->field.cqe_prev == CIRCLEQ_END(head)) \ - (head)->cqh_first = (elm)->field.cqe_next; \ - else \ - (elm)->field.cqe_prev->field.cqe_next = \ - (elm)->field.cqe_next; \ -} while (0) - -#define CIRCLEQ_REPLACE(head, elm, elm2, field) do { \ - if (((elm2)->field.cqe_next = (elm)->field.cqe_next) == \ - CIRCLEQ_END(head)) \ - (head).cqh_last = (elm2); \ - else \ - (elm2)->field.cqe_next->field.cqe_prev = (elm2); \ - if (((elm2)->field.cqe_prev = (elm)->field.cqe_prev) == \ - CIRCLEQ_END(head)) \ - (head).cqh_first = (elm2); \ - else \ - (elm2)->field.cqe_prev->field.cqe_next = (elm2); \ -} while (0) - -#endif /* !_SYS_QUEUE_H_ */ diff -Nru mysql-5.7-5.7.25/libevent/compat/sys/_time.h mysql-5.7-5.7.26/libevent/compat/sys/_time.h --- mysql-5.7-5.7.25/libevent/compat/sys/_time.h 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/compat/sys/_time.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,165 +0,0 @@ -/* $OpenBSD: time.h,v 1.11 2000/10/10 13:36:48 itojun Exp $ */ -/* $NetBSD: time.h,v 1.18 1996/04/23 10:29:33 mycroft Exp $ */ - -/* - * Copyright (c) 1982, 1986, 1993 - * The Regents of the University of California. All rights reserved. - * - * 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 University 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 REGENTS 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 REGENTS 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. - * - * @(#)time.h 8.2 (Berkeley) 7/10/94 - */ - -#ifndef _SYS_TIME_H_ -#define _SYS_TIME_H_ - -#include - -/* - * Structure returned by gettimeofday(2) system call, - * and used in other calls. - */ -struct timeval { - long tv_sec; /* seconds */ - long tv_usec; /* and microseconds */ -}; - -/* - * Structure defined by POSIX.1b to be like a timeval. - */ -#if defined(_MSC_VER) && (_MSC_VER < 1900) -struct timespec { - time_t tv_sec; /* seconds */ - long tv_nsec; /* and nanoseconds */ -}; -#endif - -#define TIMEVAL_TO_TIMESPEC(tv, ts) { \ - (ts)->tv_sec = (tv)->tv_sec; \ - (ts)->tv_nsec = (tv)->tv_usec * 1000; \ -} -#define TIMESPEC_TO_TIMEVAL(tv, ts) { \ - (tv)->tv_sec = (ts)->tv_sec; \ - (tv)->tv_usec = (ts)->tv_nsec / 1000; \ -} - -struct timezone { - int tz_minuteswest; /* minutes west of Greenwich */ - int tz_dsttime; /* type of dst correction */ -}; -#define DST_NONE 0 /* not on dst */ -#define DST_USA 1 /* USA style dst */ -#define DST_AUST 2 /* Australian style dst */ -#define DST_WET 3 /* Western European dst */ -#define DST_MET 4 /* Middle European dst */ -#define DST_EET 5 /* Eastern European dst */ -#define DST_CAN 6 /* Canada */ - -/* Operations on timevals. */ -#define timerclear(tvp) (tvp)->tv_sec = (tvp)->tv_usec = 0 -#define timerisset(tvp) ((tvp)->tv_sec || (tvp)->tv_usec) -#define timercmp(tvp, uvp, cmp) \ - (((tvp)->tv_sec == (uvp)->tv_sec) ? \ - ((tvp)->tv_usec cmp (uvp)->tv_usec) : \ - ((tvp)->tv_sec cmp (uvp)->tv_sec)) -#define timeradd(tvp, uvp, vvp) \ - do { \ - (vvp)->tv_sec = (tvp)->tv_sec + (uvp)->tv_sec; \ - (vvp)->tv_usec = (tvp)->tv_usec + (uvp)->tv_usec; \ - if ((vvp)->tv_usec >= 1000000) { \ - (vvp)->tv_sec++; \ - (vvp)->tv_usec -= 1000000; \ - } \ - } while (0) -#define timersub(tvp, uvp, vvp) \ - do { \ - (vvp)->tv_sec = (tvp)->tv_sec - (uvp)->tv_sec; \ - (vvp)->tv_usec = (tvp)->tv_usec - (uvp)->tv_usec; \ - if ((vvp)->tv_usec < 0) { \ - (vvp)->tv_sec--; \ - (vvp)->tv_usec += 1000000; \ - } \ - } while (0) - -/* Operations on timespecs. */ -#define timespecclear(tsp) (tsp)->tv_sec = (tsp)->tv_nsec = 0 -#define timespecisset(tsp) ((tsp)->tv_sec || (tsp)->tv_nsec) -#define timespeccmp(tsp, usp, cmp) \ - (((tsp)->tv_sec == (usp)->tv_sec) ? \ - ((tsp)->tv_nsec cmp (usp)->tv_nsec) : \ - ((tsp)->tv_sec cmp (usp)->tv_sec)) -#define timespecadd(tsp, usp, vsp) \ - do { \ - (vsp)->tv_sec = (tsp)->tv_sec + (usp)->tv_sec; \ - (vsp)->tv_nsec = (tsp)->tv_nsec + (usp)->tv_nsec; \ - if ((vsp)->tv_nsec >= 1000000000L) { \ - (vsp)->tv_sec++; \ - (vsp)->tv_nsec -= 1000000000L; \ - } \ - } while (0) -#define timespecsub(tsp, usp, vsp) \ - do { \ - (vsp)->tv_sec = (tsp)->tv_sec - (usp)->tv_sec; \ - (vsp)->tv_nsec = (tsp)->tv_nsec - (usp)->tv_nsec; \ - if ((vsp)->tv_nsec < 0) { \ - (vsp)->tv_sec--; \ - (vsp)->tv_nsec += 1000000000L; \ - } \ - } while (0) - -/* - * Names of the interval timers, and structure - * defining a timer setting. - */ -#define ITIMER_REAL 0 -#define ITIMER_VIRTUAL 1 -#define ITIMER_PROF 2 - -struct itimerval { - struct timeval it_interval; /* timer interval */ - struct timeval it_value; /* current value */ -}; - -/* - * Getkerninfo clock information structure - */ -struct clockinfo { - int hz; /* clock frequency */ - int tick; /* micro-seconds per hz tick */ - int tickadj; /* clock skew rate for adjtime() */ - int stathz; /* statistics clock frequency */ - int profhz; /* profiling clock frequency */ -}; - -#define CLOCK_REALTIME 0 -#define CLOCK_VIRTUAL 1 -#define CLOCK_PROF 2 - -#define TIMER_RELTIME 0x0 /* relative timer */ -#define TIMER_ABSTIME 0x1 /* absolute timer */ - -/* --- stuff got cut here - niels --- */ - -#endif /* !_SYS_TIME_H_ */ diff -Nru mysql-5.7-5.7.25/libevent/configure.in mysql-5.7-5.7.26/libevent/configure.in --- mysql-5.7-5.7.25/libevent/configure.in 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/configure.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,387 +0,0 @@ -dnl configure.in for libevent -dnl Dug Song -AC_INIT(event.c) - -AM_INIT_AUTOMAKE(libevent,1.4.12-stable) -AM_CONFIG_HEADER(config.h) -dnl AM_MAINTAINER_MODE - -dnl Initialize prefix. -if test "$prefix" = "NONE"; then - prefix="/usr/local" -fi - -dnl Checks for programs. -AC_PROG_CC -AC_PROG_INSTALL -AC_PROG_LN_S - -AC_PROG_GCC_TRADITIONAL -if test "$GCC" = yes ; then - CFLAGS="$CFLAGS -Wall" - # And disable the strict-aliasing optimization, since it breaks - # our sockaddr-handling code in strange ways. - CFLAGS="$CFLAGS -fno-strict-aliasing" -fi - -AC_ARG_ENABLE(gcc-warnings, - AS_HELP_STRING(--enable-gcc-warnings, enable verbose warnings with GCC)) - -AC_PROG_LIBTOOL - -dnl Uncomment "AC_DISABLE_SHARED" to make shared librraries not get -dnl built by default. You can also turn shared libs on and off from -dnl the command line with --enable-shared and --disable-shared. -dnl AC_DISABLE_SHARED -AC_SUBST(LIBTOOL_DEPS) - -dnl Checks for libraries. -AC_CHECK_LIB(socket, socket) -AC_CHECK_LIB(resolv, inet_aton) -AC_CHECK_LIB(rt, clock_gettime) -AC_CHECK_LIB(nsl, inet_ntoa) - -dnl Checks for header files. -AC_HEADER_STDC -AC_CHECK_HEADERS(fcntl.h stdarg.h inttypes.h stdint.h poll.h signal.h unistd.h sys/epoll.h sys/time.h sys/queue.h sys/event.h sys/param.h sys/ioctl.h sys/select.h sys/devpoll.h port.h netinet/in6.h sys/socket.h) -if test "x$ac_cv_header_sys_queue_h" = "xyes"; then - AC_MSG_CHECKING(for TAILQ_FOREACH in sys/queue.h) - AC_EGREP_CPP(yes, -[ -#include -#ifdef TAILQ_FOREACH - yes -#endif -], [AC_MSG_RESULT(yes) - AC_DEFINE(HAVE_TAILQFOREACH, 1, - [Define if TAILQ_FOREACH is defined in ])], - AC_MSG_RESULT(no) - ) -fi - -if test "x$ac_cv_header_sys_time_h" = "xyes"; then - AC_MSG_CHECKING(for timeradd in sys/time.h) - AC_EGREP_CPP(yes, -[ -#include -#ifdef timeradd - yes -#endif -], [ AC_DEFINE(HAVE_TIMERADD, 1, - [Define if timeradd is defined in ]) - AC_MSG_RESULT(yes)] ,AC_MSG_RESULT(no) -) -fi - -if test "x$ac_cv_header_sys_time_h" = "xyes"; then - AC_MSG_CHECKING(for timercmp in sys/time.h) - AC_EGREP_CPP(yes, -[ -#include -#ifdef timercmp - yes -#endif -], [ AC_DEFINE(HAVE_TIMERCMP, 1, - [Define if timercmp is defined in ]) - AC_MSG_RESULT(yes)] ,AC_MSG_RESULT(no) -) -fi - -if test "x$ac_cv_header_sys_time_h" = "xyes"; then - AC_MSG_CHECKING(for timerclear in sys/time.h) - AC_EGREP_CPP(yes, -[ -#include -#ifdef timerclear - yes -#endif -], [ AC_DEFINE(HAVE_TIMERCLEAR, 1, - [Define if timerclear is defined in ]) - AC_MSG_RESULT(yes)] ,AC_MSG_RESULT(no) -) -fi - -if test "x$ac_cv_header_sys_time_h" = "xyes"; then - AC_MSG_CHECKING(for timerisset in sys/time.h) - AC_EGREP_CPP(yes, -[ -#include -#ifdef timerisset - yes -#endif -], [ AC_DEFINE(HAVE_TIMERISSET, 1, - [Define if timerisset is defined in ]) - AC_MSG_RESULT(yes)] ,AC_MSG_RESULT(no) -) -fi - -dnl - check if the macro WIN32 is defined on this compiler. -dnl - (this is how we check for a windows version of GCC) -AC_MSG_CHECKING(for WIN32) -AC_TRY_COMPILE(, - [ -#ifndef WIN32 -die horribly -#endif - ], - bwin32=true; AC_MSG_RESULT(yes), - bwin32=false; AC_MSG_RESULT(no), -) - -AM_CONDITIONAL(BUILD_WIN32, test x$bwin32 = xtrue) - -dnl Checks for typedefs, structures, and compiler characteristics. -AC_C_CONST -AC_C_INLINE -AC_HEADER_TIME - -dnl Checks for library functions. -AC_CHECK_FUNCS(gettimeofday vasprintf fcntl clock_gettime strtok_r strsep getaddrinfo getnameinfo strlcpy inet_ntop signal sigaction strtoll) - -AC_CHECK_SIZEOF(long) - -if test "x$ac_cv_func_clock_gettime" = "xyes"; then - AC_DEFINE(DNS_USE_CPU_CLOCK_FOR_ID, 1, [Define if clock_gettime is available in libc]) -else - AC_DEFINE(DNS_USE_GETTIMEOFDAY_FOR_ID, 1, [Define is no secure id variant is available]) -fi - -AC_MSG_CHECKING(for F_SETFD in fcntl.h) -AC_EGREP_CPP(yes, -[ -#define _GNU_SOURCE -#include -#ifdef F_SETFD -yes -#endif -], [ AC_DEFINE(HAVE_SETFD, 1, - [Define if F_SETFD is defined in ]) - AC_MSG_RESULT(yes) ], AC_MSG_RESULT(no)) - -needsignal=no -haveselect=no -AC_CHECK_FUNCS(select, [haveselect=yes], ) -if test "x$haveselect" = "xyes" ; then - AC_LIBOBJ(select) - needsignal=yes -fi - -havepoll=no -AC_CHECK_FUNCS(poll, [havepoll=yes], ) -if test "x$havepoll" = "xyes" ; then - AC_LIBOBJ(poll) - needsignal=yes -fi - -haveepoll=no -AC_CHECK_FUNCS(epoll_ctl, [haveepoll=yes], ) -if test "x$haveepoll" = "xyes" ; then - AC_DEFINE(HAVE_EPOLL, 1, - [Define if your system supports the epoll system calls]) - AC_LIBOBJ(epoll) - needsignal=yes -fi - -havedevpoll=no -if test "x$ac_cv_header_sys_devpoll_h" = "xyes"; then - AC_DEFINE(HAVE_DEVPOLL, 1, - [Define if /dev/poll is available]) - AC_LIBOBJ(devpoll) -fi - -havekqueue=no -if test "x$ac_cv_header_sys_event_h" = "xyes"; then - AC_CHECK_FUNCS(kqueue, [havekqueue=yes], ) - if test "x$havekqueue" = "xyes" ; then - AC_MSG_CHECKING(for working kqueue) - AC_TRY_RUN( -#include -#include -#include -#include -#include -#include - -int -main(int argc, char **argv) -{ - int kq; - int n; - int fd[[2]]; - struct kevent ev; - struct timespec ts; - char buf[[8000]]; - - if (pipe(fd) == -1) - exit(1); - if (fcntl(fd[[1]], F_SETFL, O_NONBLOCK) == -1) - exit(1); - - while ((n = write(fd[[1]], buf, sizeof(buf))) == sizeof(buf)) - ; - - if ((kq = kqueue()) == -1) - exit(1); - - ev.ident = fd[[1]]; - ev.filter = EVFILT_WRITE; - ev.flags = EV_ADD | EV_ENABLE; - n = kevent(kq, &ev, 1, NULL, 0, NULL); - if (n == -1) - exit(1); - - read(fd[[0]], buf, sizeof(buf)); - - ts.tv_sec = 0; - ts.tv_nsec = 0; - n = kevent(kq, NULL, 0, &ev, 1, &ts); - if (n == -1 || n == 0) - exit(1); - - exit(0); -}, [AC_MSG_RESULT(yes) - AC_DEFINE(HAVE_WORKING_KQUEUE, 1, - [Define if kqueue works correctly with pipes]) - AC_LIBOBJ(kqueue)], AC_MSG_RESULT(no), AC_MSG_RESULT(no)) - fi -fi - -haveepollsyscall=no -if test "x$ac_cv_header_sys_epoll_h" = "xyes"; then - if test "x$haveepoll" = "xno" ; then - AC_MSG_CHECKING(for epoll system call) - AC_TRY_RUN( -#include -#include -#include -#include -#include -#include - -int -epoll_create(int size) -{ - return (syscall(__NR_epoll_create, size)); -} - -int -main(int argc, char **argv) -{ - int epfd; - - epfd = epoll_create(256); - exit (epfd == -1 ? 1 : 0); -}, [AC_MSG_RESULT(yes) - AC_DEFINE(HAVE_EPOLL, 1, - [Define if your system supports the epoll system calls]) - needsignal=yes - AC_LIBOBJ(epoll_sub) - AC_LIBOBJ(epoll)], AC_MSG_RESULT(no), AC_MSG_RESULT(no)) - fi -fi - -haveeventports=no -AC_CHECK_FUNCS(port_create, [haveeventports=yes], ) -if test "x$haveeventports" = "xyes" ; then - AC_DEFINE(HAVE_EVENT_PORTS, 1, - [Define if your system supports event ports]) - AC_LIBOBJ(evport) - needsignal=yes -fi -if test "x$bwin32" = "xtrue"; then - needsignal=yes -fi -if test "x$bwin32" = "xtrue"; then - needsignal=yes -fi -if test "x$needsignal" = "xyes" ; then - AC_LIBOBJ(signal) -fi - -AC_TYPE_PID_T -AC_TYPE_SIZE_T -AC_CHECK_TYPES([uint64_t, uint32_t, uint16_t, uint8_t], , , -[#ifdef HAVE_STDINT_H -#include -#elif defined(HAVE_INTTYPES_H) -#include -#endif -#ifdef HAVE_SYS_TYPES_H -#include -#endif]) -AC_CHECK_SIZEOF(long long) -AC_CHECK_SIZEOF(int) -AC_CHECK_SIZEOF(short) -AC_CHECK_TYPES([struct in6_addr], , , -[#ifdef WIN32 -#include -#else -#include -#include -#include -#endif -#ifdef HAVE_NETINET_IN6_H -#include -#endif]) - -AC_MSG_CHECKING([for socklen_t]) -AC_TRY_COMPILE([ - #include - #include ], - [socklen_t x;], - AC_MSG_RESULT([yes]), - [AC_MSG_RESULT([no]) - AC_DEFINE(socklen_t, unsigned int, - [Define to unsigned int if you dont have it])] -) - -AC_MSG_CHECKING([whether our compiler supports __func__]) -AC_TRY_COMPILE([], - [ const char *cp = __func__; ], - AC_MSG_RESULT([yes]), - AC_MSG_RESULT([no]) - AC_MSG_CHECKING([whether our compiler supports __FUNCTION__]) - AC_TRY_COMPILE([], - [ const char *cp = __FUNCTION__; ], - AC_MSG_RESULT([yes]) - AC_DEFINE(__func__, __FUNCTION__, - [Define to appropriate substitue if compiler doesnt have __func__]), - AC_MSG_RESULT([no]) - AC_DEFINE(__func__, __FILE__, - [Define to appropriate substitue if compiler doesnt have __func__]))) - - -# Add some more warnings which we use in development but not in the -# released versions. (Some relevant gcc versions can't handle these.) -if test x$enable_gcc_warnings = xyes; then - - AC_COMPILE_IFELSE(AC_LANG_PROGRAM([], [ -#if !defined(__GNUC__) || (__GNUC__ < 4) -#error -#endif]), have_gcc4=yes, have_gcc4=no) - - AC_COMPILE_IFELSE(AC_LANG_PROGRAM([], [ -#if !defined(__GNUC__) || (__GNUC__ < 4) || (__GNUC__ == 4 && __GNUC_MINOR__ < 2) -#error -#endif]), have_gcc42=yes, have_gcc42=no) - - CFLAGS="$CFLAGS -W -Wfloat-equal -Wundef -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wwrite-strings -Wredundant-decls -Wchar-subscripts -Wcomment -Wformat=2 -Wwrite-strings -Wmissing-declarations -Wredundant-decls -Wnested-externs -Wbad-function-cast -Wswitch-enum -Werror" - CFLAGS="$CFLAGS -Wno-unused-parameter -Wno-sign-compare -Wstrict-aliasing" - - if test x$have_gcc4 = xyes ; then - # These warnings break gcc 3.3.5 and work on gcc 4.0.2 - CFLAGS="$CFLAGS -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement" - #CFLAGS="$CFLAGS -Wold-style-definition" - fi - - if test x$have_gcc42 = xyes ; then - # These warnings break gcc 4.0.2 and work on gcc 4.2 - CFLAGS="$CFLAGS -Waddress -Wnormalized=id -Woverride-init" - fi - -##This will break the world on some 64-bit architectures -# CFLAGS="$CFLAGS -Winline" - -fi - -AC_OUTPUT(Makefile test/Makefile sample/Makefile) diff -Nru mysql-5.7-5.7.25/libevent/devpoll.c mysql-5.7-5.7.26/libevent/devpoll.c --- mysql-5.7-5.7.25/libevent/devpoll.c 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/devpoll.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,417 +0,0 @@ -/* - * Copyright 2000-2004 Niels Provos - * All rights reserved. - * - * 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. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. - */ -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -#include -#include -#ifdef HAVE_SYS_TIME_H -#include -#else -#include -#endif -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include "event.h" -#include "event-internal.h" -#include "evsignal.h" -#include "log.h" - -/* due to limitations in the devpoll interface, we need to keep track of - * all file descriptors outself. - */ -struct evdevpoll { - struct event *evread; - struct event *evwrite; -}; - -struct devpollop { - struct evdevpoll *fds; - int nfds; - struct pollfd *events; - int nevents; - int dpfd; - struct pollfd *changes; - int nchanges; -}; - -static void *devpoll_init (struct event_base *); -static int devpoll_add (void *, struct event *); -static int devpoll_del (void *, struct event *); -static int devpoll_dispatch (struct event_base *, void *, struct timeval *); -static void devpoll_dealloc (struct event_base *, void *); - -const struct eventop devpollops = { - "devpoll", - devpoll_init, - devpoll_add, - devpoll_del, - devpoll_dispatch, - devpoll_dealloc, - 1 /* need reinit */ -}; - -#define NEVENT 32000 - -static int -devpoll_commit(struct devpollop *devpollop) -{ - /* - * Due to a bug in Solaris, we have to use pwrite with an offset of 0. - * Write is limited to 2GB of data, until it will fail. - */ - if (pwrite(devpollop->dpfd, devpollop->changes, - sizeof(struct pollfd) * devpollop->nchanges, 0) == -1) - return(-1); - - devpollop->nchanges = 0; - return(0); -} - -static int -devpoll_queue(struct devpollop *devpollop, int fd, int events) { - struct pollfd *pfd; - - if (devpollop->nchanges >= devpollop->nevents) { - /* - * Change buffer is full, must commit it to /dev/poll before - * adding more - */ - if (devpoll_commit(devpollop) != 0) - return(-1); - } - - pfd = &devpollop->changes[devpollop->nchanges++]; - pfd->fd = fd; - pfd->events = events; - pfd->revents = 0; - - return(0); -} - -static void * -devpoll_init(struct event_base *base) -{ - int dpfd, nfiles = NEVENT; - struct rlimit rl; - struct devpollop *devpollop; - - /* Disable devpoll when this environment variable is set */ - if (getenv("EVENT_NODEVPOLL")) - return (NULL); - - if (!(devpollop = calloc(1, sizeof(struct devpollop)))) - return (NULL); - - if (getrlimit(RLIMIT_NOFILE, &rl) == 0 && - rl.rlim_cur != RLIM_INFINITY) - nfiles = rl.rlim_cur; - - /* Initialize the kernel queue */ - if ((dpfd = open("/dev/poll", O_RDWR)) == -1) { - event_warn("open: /dev/poll"); - free(devpollop); - return (NULL); - } - - devpollop->dpfd = dpfd; - - /* Initialize fields */ - devpollop->events = calloc(nfiles, sizeof(struct pollfd)); - if (devpollop->events == NULL) { - free(devpollop); - close(dpfd); - return (NULL); - } - devpollop->nevents = nfiles; - - devpollop->fds = calloc(nfiles, sizeof(struct evdevpoll)); - if (devpollop->fds == NULL) { - free(devpollop->events); - free(devpollop); - close(dpfd); - return (NULL); - } - devpollop->nfds = nfiles; - - devpollop->changes = calloc(nfiles, sizeof(struct pollfd)); - if (devpollop->changes == NULL) { - free(devpollop->fds); - free(devpollop->events); - free(devpollop); - close(dpfd); - return (NULL); - } - - evsignal_init(base); - - return (devpollop); -} - -static int -devpoll_recalc(struct event_base *base, void *arg, int max) -{ - struct devpollop *devpollop = arg; - - if (max >= devpollop->nfds) { - struct evdevpoll *fds; - int nfds; - - nfds = devpollop->nfds; - while (nfds <= max) - nfds <<= 1; - - fds = realloc(devpollop->fds, nfds * sizeof(struct evdevpoll)); - if (fds == NULL) { - event_warn("realloc"); - return (-1); - } - devpollop->fds = fds; - memset(fds + devpollop->nfds, 0, - (nfds - devpollop->nfds) * sizeof(struct evdevpoll)); - devpollop->nfds = nfds; - } - - return (0); -} - -static int -devpoll_dispatch(struct event_base *base, void *arg, struct timeval *tv) -{ - struct devpollop *devpollop = arg; - struct pollfd *events = devpollop->events; - struct dvpoll dvp; - struct evdevpoll *evdp; - int i, res, timeout = -1; - - if (devpollop->nchanges) - devpoll_commit(devpollop); - - if (tv != NULL) - timeout = tv->tv_sec * 1000 + (tv->tv_usec + 999) / 1000; - - dvp.dp_fds = devpollop->events; - dvp.dp_nfds = devpollop->nevents; - dvp.dp_timeout = timeout; - - res = ioctl(devpollop->dpfd, DP_POLL, &dvp); - - if (res == -1) { - if (errno != EINTR) { - event_warn("ioctl: DP_POLL"); - return (-1); - } - - evsignal_process(base); - return (0); - } else if (base->sig.evsignal_caught) { - evsignal_process(base); - } - - event_debug(("%s: devpoll_wait reports %d", __func__, res)); - - for (i = 0; i < res; i++) { - int which = 0; - int what = events[i].revents; - struct event *evread = NULL, *evwrite = NULL; - - assert(events[i].fd < devpollop->nfds); - evdp = &devpollop->fds[events[i].fd]; - - if (what & POLLHUP) - what |= POLLIN | POLLOUT; - else if (what & POLLERR) - what |= POLLIN | POLLOUT; - - if (what & POLLIN) { - evread = evdp->evread; - which |= EV_READ; - } - - if (what & POLLOUT) { - evwrite = evdp->evwrite; - which |= EV_WRITE; - } - - if (!which) - continue; - - if (evread != NULL && !(evread->ev_events & EV_PERSIST)) - event_del(evread); - if (evwrite != NULL && evwrite != evread && - !(evwrite->ev_events & EV_PERSIST)) - event_del(evwrite); - - if (evread != NULL) - event_active(evread, EV_READ, 1); - if (evwrite != NULL) - event_active(evwrite, EV_WRITE, 1); - } - - return (0); -} - - -static int -devpoll_add(void *arg, struct event *ev) -{ - struct devpollop *devpollop = arg; - struct evdevpoll *evdp; - int fd, events; - - if (ev->ev_events & EV_SIGNAL) - return (evsignal_add(ev)); - - fd = ev->ev_fd; - if (fd >= devpollop->nfds) { - /* Extend the file descriptor array as necessary */ - if (devpoll_recalc(ev->ev_base, devpollop, fd) == -1) - return (-1); - } - evdp = &devpollop->fds[fd]; - - /* - * It's not necessary to OR the existing read/write events that we - * are currently interested in with the new event we are adding. - * The /dev/poll driver ORs any new events with the existing events - * that it has cached for the fd. - */ - - events = 0; - if (ev->ev_events & EV_READ) { - if (evdp->evread && evdp->evread != ev) { - /* There is already a different read event registered */ - return(-1); - } - events |= POLLIN; - } - - if (ev->ev_events & EV_WRITE) { - if (evdp->evwrite && evdp->evwrite != ev) { - /* There is already a different write event registered */ - return(-1); - } - events |= POLLOUT; - } - - if (devpoll_queue(devpollop, fd, events) != 0) - return(-1); - - /* Update events responsible */ - if (ev->ev_events & EV_READ) - evdp->evread = ev; - if (ev->ev_events & EV_WRITE) - evdp->evwrite = ev; - - return (0); -} - -static int -devpoll_del(void *arg, struct event *ev) -{ - struct devpollop *devpollop = arg; - struct evdevpoll *evdp; - int fd, events; - int needwritedelete = 1, needreaddelete = 1; - - if (ev->ev_events & EV_SIGNAL) - return (evsignal_del(ev)); - - fd = ev->ev_fd; - if (fd >= devpollop->nfds) - return (0); - evdp = &devpollop->fds[fd]; - - events = 0; - if (ev->ev_events & EV_READ) - events |= POLLIN; - if (ev->ev_events & EV_WRITE) - events |= POLLOUT; - - /* - * The only way to remove an fd from the /dev/poll monitored set is - * to use POLLREMOVE by itself. This removes ALL events for the fd - * provided so if we care about two events and are only removing one - * we must re-add the other event after POLLREMOVE. - */ - - if (devpoll_queue(devpollop, fd, POLLREMOVE) != 0) - return(-1); - - if ((events & (POLLIN|POLLOUT)) != (POLLIN|POLLOUT)) { - /* - * We're not deleting all events, so we must resubmit the - * event that we are still interested in if one exists. - */ - - if ((events & POLLIN) && evdp->evwrite != NULL) { - /* Deleting read, still care about write */ - devpoll_queue(devpollop, fd, POLLOUT); - needwritedelete = 0; - } else if ((events & POLLOUT) && evdp->evread != NULL) { - /* Deleting write, still care about read */ - devpoll_queue(devpollop, fd, POLLIN); - needreaddelete = 0; - } - } - - if (needreaddelete) - evdp->evread = NULL; - if (needwritedelete) - evdp->evwrite = NULL; - - return (0); -} - -static void -devpoll_dealloc(struct event_base *base, void *arg) -{ - struct devpollop *devpollop = arg; - - evsignal_dealloc(base); - if (devpollop->fds) - free(devpollop->fds); - if (devpollop->events) - free(devpollop->events); - if (devpollop->changes) - free(devpollop->changes); - if (devpollop->dpfd >= 0) - close(devpollop->dpfd); - - memset(devpollop, 0, sizeof(struct devpollop)); - free(devpollop); -} diff -Nru mysql-5.7-5.7.25/libevent/Doxyfile mysql-5.7-5.7.26/libevent/Doxyfile --- mysql-5.7-5.7.25/libevent/Doxyfile 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/Doxyfile 1970-01-01 00:00:00.000000000 +0000 @@ -1,230 +0,0 @@ -# Doxyfile 1.5.1 - -# This file describes the settings to be used by the documentation system -# doxygen (www.doxygen.org) for a project -# -# All text after a hash (#) is considered a comment and will be ignored -# The format is: -# TAG = value [value, ...] -# For lists items can also be appended using: -# TAG += value [value, ...] -# Values that contain spaces should be placed between quotes (" ") - -#--------------------------------------------------------------------------- -# Project related configuration options -#--------------------------------------------------------------------------- - -# The PROJECT_NAME tag is a single word (or a sequence of words surrounded -# by quotes) that should identify the project. - -PROJECT_NAME = libevent - -# Place all output under 'doxygen/' - -OUTPUT_DIRECTORY = doxygen/ - -# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen -# will interpret the first line (until the first dot) of a JavaDoc-style -# comment as the brief description. If set to NO, the JavaDoc -# comments will behave just like the Qt-style comments (thus requiring an -# explicit @brief command for a brief description. - -JAVADOC_AUTOBRIEF = YES - -# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C -# sources only. Doxygen will then generate output that is more tailored for C. -# For instance, some of the names that are used will be different. The list -# of all members will be omitted, etc. - -OPTIMIZE_OUTPUT_FOR_C = YES - -# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the -# brief documentation of file, namespace and class members alphabetically -# by member name. If set to NO (the default) the members will appear in -# declaration order. - -SORT_BRIEF_DOCS = YES - -#--------------------------------------------------------------------------- -# configuration options related to the input files -#--------------------------------------------------------------------------- - -# The INPUT tag can be used to specify the files and/or directories that contain -# documented source files. You may enter file names like "myfile.cpp" or -# directories like "/usr/src/myproject". Separate the files or directories -# with spaces. - -INPUT = event.h evdns.h evhttp.h evrpc.h - -#--------------------------------------------------------------------------- -# configuration options related to the HTML output -#--------------------------------------------------------------------------- - -# If the GENERATE_HTML tag is set to YES (the default) Doxygen will -# generate HTML output. - -GENERATE_HTML = YES - -#--------------------------------------------------------------------------- -# configuration options related to the LaTeX output -#--------------------------------------------------------------------------- - -# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will -# generate Latex output. - -GENERATE_LATEX = YES - -# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. -# If a relative path is entered the value of OUTPUT_DIRECTORY will be -# put in front of it. If left blank `latex' will be used as the default path. - -LATEX_OUTPUT = latex - -# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be -# invoked. If left blank `latex' will be used as the default command name. - -LATEX_CMD_NAME = latex - -# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to -# generate index for LaTeX. If left blank `makeindex' will be used as the -# default command name. - -MAKEINDEX_CMD_NAME = makeindex - -# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact -# LaTeX documents. This may be useful for small projects and may help to -# save some trees in general. - -COMPACT_LATEX = NO - -# The PAPER_TYPE tag can be used to set the paper type that is used -# by the printer. Possible values are: a4, a4wide, letter, legal and -# executive. If left blank a4wide will be used. - -PAPER_TYPE = a4wide - -# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX -# packages that should be included in the LaTeX output. - -EXTRA_PACKAGES = - -# The LATEX_HEADER tag can be used to specify a personal LaTeX header for -# the generated latex document. The header should contain everything until -# the first chapter. If it is left blank doxygen will generate a -# standard header. Notice: only use this tag if you know what you are doing! - -LATEX_HEADER = - -# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated -# is prepared for conversion to pdf (using ps2pdf). The pdf file will -# contain links (just like the HTML output) instead of page references -# This makes the output suitable for online browsing using a pdf viewer. - -PDF_HYPERLINKS = NO - -# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of -# plain latex in the generated Makefile. Set this option to YES to get a -# higher quality PDF documentation. - -USE_PDFLATEX = NO - -# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. -# command to the generated LaTeX files. This will instruct LaTeX to keep -# running if errors occur, instead of asking the user for help. -# This option is also used when generating formulas in HTML. - -LATEX_BATCHMODE = NO - -# If LATEX_HIDE_INDICES is set to YES then doxygen will not -# include the index chapters (such as File Index, Compound Index, etc.) -# in the output. - -LATEX_HIDE_INDICES = NO - -#--------------------------------------------------------------------------- -# configuration options related to the man page output -#--------------------------------------------------------------------------- - -# If the GENERATE_MAN tag is set to YES (the default) Doxygen will -# generate man pages - -GENERATE_MAN = YES - -# The MAN_EXTENSION tag determines the extension that is added to -# the generated man pages (default is the subroutine's section .3) - -MAN_EXTENSION = .3 - -# If the MAN_LINKS tag is set to YES and Doxygen generates man output, -# then it will generate one additional man file for each entity -# documented in the real man page(s). These additional files -# only source the real man page, but without them the man command -# would be unable to find the correct page. The default is NO. - -MAN_LINKS = YES - -#--------------------------------------------------------------------------- -# Configuration options related to the preprocessor -#--------------------------------------------------------------------------- - -# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will -# evaluate all C-preprocessor directives found in the sources and include -# files. - -ENABLE_PREPROCESSING = YES - -# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro -# names in the source code. If set to NO (the default) only conditional -# compilation will be performed. Macro expansion can be done in a controlled -# way by setting EXPAND_ONLY_PREDEF to YES. - -MACRO_EXPANSION = NO - -# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES -# then the macro expansion is limited to the macros specified with the -# PREDEFINED and EXPAND_AS_DEFINED tags. - -EXPAND_ONLY_PREDEF = NO - -# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files -# in the INCLUDE_PATH (see below) will be search if a #include is found. - -SEARCH_INCLUDES = YES - -# The INCLUDE_PATH tag can be used to specify one or more directories that -# contain include files that are not input files but should be processed by -# the preprocessor. - -INCLUDE_PATH = - -# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard -# patterns (like *.h and *.hpp) to filter out the header-files in the -# directories. If left blank, the patterns specified with FILE_PATTERNS will -# be used. - -INCLUDE_FILE_PATTERNS = - -# The PREDEFINED tag can be used to specify one or more macro names that -# are defined before the preprocessor is started (similar to the -D option of -# gcc). The argument of the tag is a list of macros of the form: name -# or name=definition (no spaces). If the definition and the = are -# omitted =1 is assumed. To prevent a macro definition from being -# undefined via #undef or recursively expanded use the := operator -# instead of the = operator. - -PREDEFINED = TAILQ_ENTRY RB_ENTRY _EVENT_DEFINED_TQENTRY - -# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then -# this tag can be used to specify a list of macro names that should be expanded. -# The macro definition that is found in the sources will be used. -# Use the PREDEFINED tag if you want to use a different macro definition. - -EXPAND_AS_DEFINED = - -# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then -# doxygen's preprocessor will remove all function-like macros that are alone -# on a line, have an all uppercase name, and do not end with a semicolon. Such -# function macros are typically used for boiler-plate code, and will confuse -# the parser if not removed. - -SKIP_FUNCTION_MACROS = YES diff -Nru mysql-5.7-5.7.25/libevent/epoll.c mysql-5.7-5.7.26/libevent/epoll.c --- mysql-5.7-5.7.25/libevent/epoll.c 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/epoll.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,373 +0,0 @@ -/* - * Copyright 2000-2003 Niels Provos - * All rights reserved. - * - * 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. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. - */ -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -#include -#include -#include -#ifdef HAVE_SYS_TIME_H -#include -#else -#include -#endif -#include -#include -#include -#include -#include -#include -#include -#include -#ifdef HAVE_FCNTL_H -#include -#endif - -#include "event.h" -#include "event-internal.h" -#include "evsignal.h" -#include "log.h" - -/* due to limitations in the epoll interface, we need to keep track of - * all file descriptors outself. - */ -struct evepoll { - struct event *evread; - struct event *evwrite; -}; - -struct epollop { - struct evepoll *fds; - int nfds; - struct epoll_event *events; - int nevents; - int epfd; -}; - -static void *epoll_init (struct event_base *); -static int epoll_add (void *, struct event *); -static int epoll_del (void *, struct event *); -static int epoll_dispatch (struct event_base *, void *, struct timeval *); -static void epoll_dealloc (struct event_base *, void *); - -const struct eventop epollops = { - "epoll", - epoll_init, - epoll_add, - epoll_del, - epoll_dispatch, - epoll_dealloc, - 1 /* need reinit */ -}; - -#ifdef HAVE_SETFD -#define FD_CLOSEONEXEC(x) do { \ - if (fcntl(x, F_SETFD, 1) == -1) \ - event_warn("fcntl(%d, F_SETFD)", x); \ -} while (0) -#else -#define FD_CLOSEONEXEC(x) -#endif - -#define NEVENT 32000 - -/* On Linux kernels at least up to 2.6.24.4, epoll can't handle timeout - * values bigger than (LONG_MAX - 999ULL)/HZ. HZ in the wild can be - * as big as 1000, and LONG_MAX can be as small as (1<<31)-1, so the - * largest number of msec we can support here is 2147482. Let's - * round that down by 47 seconds. - */ -#define MAX_EPOLL_TIMEOUT_MSEC (35*60*1000) - -static void * -epoll_init(struct event_base *base) -{ - int epfd, nfiles = NEVENT; - struct rlimit rl; - struct epollop *epollop; - - /* Disable epollueue when this environment variable is set */ - if (getenv("EVENT_NOEPOLL")) - return (NULL); - - if (getrlimit(RLIMIT_NOFILE, &rl) == 0 && - rl.rlim_cur != RLIM_INFINITY) { - /* - * Solaris is somewhat retarded - it's important to drop - * backwards compatibility when making changes. So, don't - * dare to put rl.rlim_cur here. - */ - nfiles = rl.rlim_cur - 1; - } - - /* Initalize the kernel queue */ - - if ((epfd = epoll_create(nfiles)) == -1) { - if (errno != ENOSYS) - event_warn("epoll_create"); - return (NULL); - } - - FD_CLOSEONEXEC(epfd); - - if (!(epollop = calloc(1, sizeof(struct epollop)))) - return (NULL); - - epollop->epfd = epfd; - - /* Initalize fields */ - epollop->events = malloc(nfiles * sizeof(struct epoll_event)); - if (epollop->events == NULL) { - free(epollop); - return (NULL); - } - epollop->nevents = nfiles; - - epollop->fds = calloc(nfiles, sizeof(struct evepoll)); - if (epollop->fds == NULL) { - free(epollop->events); - free(epollop); - return (NULL); - } - epollop->nfds = nfiles; - - evsignal_init(base); - - return (epollop); -} - -static int -epoll_recalc(struct event_base *base, void *arg, int max) -{ - struct epollop *epollop = arg; - - if (max >= epollop->nfds) { - struct evepoll *fds; - int nfds; - - nfds = epollop->nfds; - while (nfds <= max) - nfds <<= 1; - - fds = realloc(epollop->fds, nfds * sizeof(struct evepoll)); - if (fds == NULL) { - event_warn("realloc"); - return (-1); - } - epollop->fds = fds; - memset(fds + epollop->nfds, 0, - (nfds - epollop->nfds) * sizeof(struct evepoll)); - epollop->nfds = nfds; - } - - return (0); -} - -static int -epoll_dispatch(struct event_base *base, void *arg, struct timeval *tv) -{ - struct epollop *epollop = arg; - struct epoll_event *events = epollop->events; - struct evepoll *evep; - int i, res, timeout = -1; - - if (tv != NULL) - timeout = tv->tv_sec * 1000 + (tv->tv_usec + 999) / 1000; - - if (timeout > MAX_EPOLL_TIMEOUT_MSEC) { - /* Linux kernels can wait forever if the timeout is too big; - * see comment on MAX_EPOLL_TIMEOUT_MSEC. */ - timeout = MAX_EPOLL_TIMEOUT_MSEC; - } - - res = epoll_wait(epollop->epfd, events, epollop->nevents, timeout); - - if (res == -1) { - if (errno != EINTR) { - event_warn("epoll_wait"); - return (-1); - } - - evsignal_process(base); - return (0); - } else if (base->sig.evsignal_caught) { - evsignal_process(base); - } - - event_debug(("%s: epoll_wait reports %d", __func__, res)); - - for (i = 0; i < res; i++) { - int what = events[i].events; - struct event *evread = NULL, *evwrite = NULL; - int fd = events[i].data.fd; - - if (fd < 0 || fd >= epollop->nfds) - continue; - evep = &epollop->fds[fd]; - - if (what & (EPOLLHUP|EPOLLERR)) { - evread = evep->evread; - evwrite = evep->evwrite; - } else { - if (what & EPOLLIN) { - evread = evep->evread; - } - - if (what & EPOLLOUT) { - evwrite = evep->evwrite; - } - } - - if (!(evread||evwrite)) - continue; - - if (evread != NULL) - event_active(evread, EV_READ, 1); - if (evwrite != NULL) - event_active(evwrite, EV_WRITE, 1); - } - - return (0); -} - - -static int -epoll_add(void *arg, struct event *ev) -{ - struct epollop *epollop = arg; - struct epoll_event epev = {0, {0}}; - struct evepoll *evep; - int fd, op, events; - - if (ev->ev_events & EV_SIGNAL) - return (evsignal_add(ev)); - - fd = ev->ev_fd; - if (fd >= epollop->nfds) { - /* Extent the file descriptor array as necessary */ - if (epoll_recalc(ev->ev_base, epollop, fd) == -1) - return (-1); - } - evep = &epollop->fds[fd]; - op = EPOLL_CTL_ADD; - events = 0; - if (evep->evread != NULL) { - events |= EPOLLIN; - op = EPOLL_CTL_MOD; - } - if (evep->evwrite != NULL) { - events |= EPOLLOUT; - op = EPOLL_CTL_MOD; - } - - if (ev->ev_events & EV_READ) - events |= EPOLLIN; - if (ev->ev_events & EV_WRITE) - events |= EPOLLOUT; - - epev.data.fd = fd; - epev.events = events; - if (epoll_ctl(epollop->epfd, op, ev->ev_fd, &epev) == -1) - return (-1); - - /* Update events responsible */ - if (ev->ev_events & EV_READ) - evep->evread = ev; - if (ev->ev_events & EV_WRITE) - evep->evwrite = ev; - - return (0); -} - -static int -epoll_del(void *arg, struct event *ev) -{ - struct epollop *epollop = arg; - struct epoll_event epev = {0, {0}}; - struct evepoll *evep; - int fd, events, op; - int needwritedelete = 1, needreaddelete = 1; - - if (ev->ev_events & EV_SIGNAL) - return (evsignal_del(ev)); - - fd = ev->ev_fd; - if (fd >= epollop->nfds) - return (0); - evep = &epollop->fds[fd]; - - op = EPOLL_CTL_DEL; - events = 0; - - if (ev->ev_events & EV_READ) - events |= EPOLLIN; - if (ev->ev_events & EV_WRITE) - events |= EPOLLOUT; - - if ((events & (EPOLLIN|EPOLLOUT)) != (EPOLLIN|EPOLLOUT)) { - if ((events & EPOLLIN) && evep->evwrite != NULL) { - needwritedelete = 0; - events = EPOLLOUT; - op = EPOLL_CTL_MOD; - } else if ((events & EPOLLOUT) && evep->evread != NULL) { - needreaddelete = 0; - events = EPOLLIN; - op = EPOLL_CTL_MOD; - } - } - - epev.events = events; - epev.data.fd = fd; - - if (needreaddelete) - evep->evread = NULL; - if (needwritedelete) - evep->evwrite = NULL; - - if (epoll_ctl(epollop->epfd, op, fd, &epev) == -1) - return (-1); - - return (0); -} - -static void -epoll_dealloc(struct event_base *base, void *arg) -{ - struct epollop *epollop = arg; - - evsignal_dealloc(base); - if (epollop->fds) - free(epollop->fds); - if (epollop->events) - free(epollop->events); - if (epollop->epfd >= 0) - close(epollop->epfd); - - memset(epollop, 0, sizeof(struct epollop)); - free(epollop); -} diff -Nru mysql-5.7-5.7.25/libevent/epoll_sub.c mysql-5.7-5.7.26/libevent/epoll_sub.c --- mysql-5.7-5.7.25/libevent/epoll_sub.c 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/epoll_sub.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,65 +0,0 @@ -/* - * Copyright 2003-2009 Niels Provos - * Copyright 2009-2012 Niels Provos and Nick Mathewson - * - * 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. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. - */ -#include - -#include -#include -#include -#include -#include -#include - -int -epoll_create(int size) -{ -#if !defined(__NR_epoll_create) && defined(__NR_epoll_create1) - if (size <= 0) { - errno = EINVAL; - return -1; - } - return (syscall(__NR_epoll_create1, 0)); -#else - return (syscall(__NR_epoll_create, size)); -#endif -} - -int -epoll_ctl(int epfd, int op, int fd, struct epoll_event *event) -{ - - return (syscall(__NR_epoll_ctl, epfd, op, fd, event)); -} - -int -epoll_wait(int epfd, struct epoll_event *events, int maxevents, int timeout) -{ -#if !defined(__NR_epoll_wait) && defined(__NR_epoll_pwait) - return (syscall(__NR_epoll_pwait, epfd, events, maxevents, timeout, NULL, 0)); -#else - return (syscall(__NR_epoll_wait, epfd, events, maxevents, timeout)); -#endif -} \ No newline at end of file diff -Nru mysql-5.7-5.7.25/libevent/evbuffer.c mysql-5.7-5.7.26/libevent/evbuffer.c --- mysql-5.7-5.7.25/libevent/evbuffer.c 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/evbuffer.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,455 +0,0 @@ -/* - * Copyright (c) 2002-2004 Niels Provos - * All rights reserved. - * - * 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. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. - */ - -#include - -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -#ifdef HAVE_SYS_TIME_H -#include -#endif - -#include -#include -#include -#include -#ifdef HAVE_STDARG_H -#include -#endif - -#ifdef WIN32 -#include -#endif - -#include "evutil.h" -#include "event.h" - -/* prototypes */ - -void bufferevent_read_pressure_cb(struct evbuffer *, size_t, size_t, void *); - -static int -bufferevent_add(struct event *ev, int timeout) -{ - struct timeval tv, *ptv = NULL; - - if (timeout) { - evutil_timerclear(&tv); - tv.tv_sec = timeout; - ptv = &tv; - } - - return (event_add(ev, ptv)); -} - -/* - * This callback is executed when the size of the input buffer changes. - * We use it to apply back pressure on the reading side. - */ - -void -bufferevent_read_pressure_cb(struct evbuffer *buf, size_t old, size_t now, - void *arg) { - struct bufferevent *bufev = arg; - /* - * If we are below the watermark then reschedule reading if it's - * still enabled. - */ - if (bufev->wm_read.high == 0 || now < bufev->wm_read.high) { - evbuffer_setcb(buf, NULL, NULL); - - if (bufev->enabled & EV_READ) - bufferevent_add(&bufev->ev_read, bufev->timeout_read); - } -} - -static void -bufferevent_readcb(int fd, short event, void *arg) -{ - struct bufferevent *bufev = arg; - int res = 0; - short what = EVBUFFER_READ; - size_t len; - int howmuch = -1; - - if (event == EV_TIMEOUT) { - what |= EVBUFFER_TIMEOUT; - goto error; - } - - /* - * If we have a high watermark configured then we don't want to - * read more data than would make us reach the watermark. - */ - if (bufev->wm_read.high != 0) { - howmuch = bufev->wm_read.high - EVBUFFER_LENGTH(bufev->input); - /* we might have lowered the watermark, stop reading */ - if (howmuch <= 0) { - struct evbuffer *buf = bufev->input; - event_del(&bufev->ev_read); - evbuffer_setcb(buf, - bufferevent_read_pressure_cb, bufev); - return; - } - } - - res = evbuffer_read(bufev->input, fd, howmuch); - if (res == -1) { - if (errno == EAGAIN || errno == EINTR) - goto reschedule; - /* error case */ - what |= EVBUFFER_ERROR; - } else if (res == 0) { - /* eof case */ - what |= EVBUFFER_EOF; - } - - if (res <= 0) - goto error; - - bufferevent_add(&bufev->ev_read, bufev->timeout_read); - - /* See if this callbacks meets the water marks */ - len = EVBUFFER_LENGTH(bufev->input); - if (bufev->wm_read.low != 0 && len < bufev->wm_read.low) - return; - if (bufev->wm_read.high != 0 && len >= bufev->wm_read.high) { - struct evbuffer *buf = bufev->input; - event_del(&bufev->ev_read); - - /* Now schedule a callback for us when the buffer changes */ - evbuffer_setcb(buf, bufferevent_read_pressure_cb, bufev); - } - - /* Invoke the user callback - must always be called last */ - if (bufev->readcb != NULL) - (*bufev->readcb)(bufev, bufev->cbarg); - return; - - reschedule: - bufferevent_add(&bufev->ev_read, bufev->timeout_read); - return; - - error: - (*bufev->errorcb)(bufev, what, bufev->cbarg); -} - -static void -bufferevent_writecb(int fd, short event, void *arg) -{ - struct bufferevent *bufev = arg; - int res = 0; - short what = EVBUFFER_WRITE; - - if (event == EV_TIMEOUT) { - what |= EVBUFFER_TIMEOUT; - goto error; - } - - if (EVBUFFER_LENGTH(bufev->output)) { - res = evbuffer_write(bufev->output, fd); - if (res == -1) { -#ifndef WIN32 -/*todo. evbuffer uses WriteFile when WIN32 is set. WIN32 system calls do not - *set errno. thus this error checking is not portable*/ - if (errno == EAGAIN || - errno == EINTR || - errno == EINPROGRESS) - goto reschedule; - /* error case */ - what |= EVBUFFER_ERROR; - -#else - goto reschedule; -#endif - - } else if (res == 0) { - /* eof case */ - what |= EVBUFFER_EOF; - } - if (res <= 0) - goto error; - } - - if (EVBUFFER_LENGTH(bufev->output) != 0) - bufferevent_add(&bufev->ev_write, bufev->timeout_write); - - /* - * Invoke the user callback if our buffer is drained or below the - * low watermark. - */ - if (bufev->writecb != NULL && - EVBUFFER_LENGTH(bufev->output) <= bufev->wm_write.low) - (*bufev->writecb)(bufev, bufev->cbarg); - - return; - - reschedule: - if (EVBUFFER_LENGTH(bufev->output) != 0) - bufferevent_add(&bufev->ev_write, bufev->timeout_write); - return; - - error: - (*bufev->errorcb)(bufev, what, bufev->cbarg); -} - -/* - * Create a new buffered event object. - * - * The read callback is invoked whenever we read new data. - * The write callback is invoked whenever the output buffer is drained. - * The error callback is invoked on a write/read error or on EOF. - * - * Both read and write callbacks maybe NULL. The error callback is not - * allowed to be NULL and have to be provided always. - */ - -struct bufferevent * -bufferevent_new(int fd, evbuffercb readcb, evbuffercb writecb, - everrorcb errorcb, void *cbarg) -{ - struct bufferevent *bufev; - - if ((bufev = calloc(1, sizeof(struct bufferevent))) == NULL) - return (NULL); - - if ((bufev->input = evbuffer_new()) == NULL) { - free(bufev); - return (NULL); - } - - if ((bufev->output = evbuffer_new()) == NULL) { - evbuffer_free(bufev->input); - free(bufev); - return (NULL); - } - - event_set(&bufev->ev_read, fd, EV_READ, bufferevent_readcb, bufev); - event_set(&bufev->ev_write, fd, EV_WRITE, bufferevent_writecb, bufev); - - bufferevent_setcb(bufev, readcb, writecb, errorcb, cbarg); - - /* - * Set to EV_WRITE so that using bufferevent_write is going to - * trigger a callback. Reading needs to be explicitly enabled - * because otherwise no data will be available. - */ - bufev->enabled = EV_WRITE; - - return (bufev); -} - -void -bufferevent_setcb(struct bufferevent *bufev, - evbuffercb readcb, evbuffercb writecb, everrorcb errorcb, void *cbarg) -{ - bufev->readcb = readcb; - bufev->writecb = writecb; - bufev->errorcb = errorcb; - - bufev->cbarg = cbarg; -} - -void -bufferevent_setfd(struct bufferevent *bufev, int fd) -{ - event_del(&bufev->ev_read); - event_del(&bufev->ev_write); - - event_set(&bufev->ev_read, fd, EV_READ, bufferevent_readcb, bufev); - event_set(&bufev->ev_write, fd, EV_WRITE, bufferevent_writecb, bufev); - if (bufev->ev_base != NULL) { - event_base_set(bufev->ev_base, &bufev->ev_read); - event_base_set(bufev->ev_base, &bufev->ev_write); - } - - /* might have to manually trigger event registration */ -} - -int -bufferevent_priority_set(struct bufferevent *bufev, int priority) -{ - if (event_priority_set(&bufev->ev_read, priority) == -1) - return (-1); - if (event_priority_set(&bufev->ev_write, priority) == -1) - return (-1); - - return (0); -} - -/* Closing the file descriptor is the responsibility of the caller */ - -void -bufferevent_free(struct bufferevent *bufev) -{ - event_del(&bufev->ev_read); - event_del(&bufev->ev_write); - - evbuffer_free(bufev->input); - evbuffer_free(bufev->output); - - free(bufev); -} - -/* - * Returns 0 on success; - * -1 on failure. - */ - -int -bufferevent_write(struct bufferevent *bufev, const void *data, size_t size) -{ - int res; - - res = evbuffer_add(bufev->output, data, size); - - if (res == -1) - return (res); - - /* If everything is okay, we need to schedule a write */ - if (size > 0 && (bufev->enabled & EV_WRITE)) - bufferevent_add(&bufev->ev_write, bufev->timeout_write); - - return (res); -} - -int -bufferevent_write_buffer(struct bufferevent *bufev, struct evbuffer *buf) -{ - int res; - - res = bufferevent_write(bufev, buf->buffer, buf->off); - if (res != -1) - evbuffer_drain(buf, buf->off); - - return (res); -} - -size_t -bufferevent_read(struct bufferevent *bufev, void *data, size_t size) -{ - struct evbuffer *buf = bufev->input; - - if (buf->off < size) - size = buf->off; - - /* Copy the available data to the user buffer */ - memcpy(data, buf->buffer, size); - - if (size) - evbuffer_drain(buf, size); - - return (size); -} - -int -bufferevent_enable(struct bufferevent *bufev, short event) -{ - if (event & EV_READ) { - if (bufferevent_add(&bufev->ev_read, bufev->timeout_read) == -1) - return (-1); - } - if (event & EV_WRITE) { - if (bufferevent_add(&bufev->ev_write, bufev->timeout_write) == -1) - return (-1); - } - - bufev->enabled |= event; - return (0); -} - -int -bufferevent_disable(struct bufferevent *bufev, short event) -{ - if (event & EV_READ) { - if (event_del(&bufev->ev_read) == -1) - return (-1); - } - if (event & EV_WRITE) { - if (event_del(&bufev->ev_write) == -1) - return (-1); - } - - bufev->enabled &= ~event; - return (0); -} - -/* - * Sets the read and write timeout for a buffered event. - */ - -void -bufferevent_settimeout(struct bufferevent *bufev, - int timeout_read, int timeout_write) { - bufev->timeout_read = timeout_read; - bufev->timeout_write = timeout_write; - - if (event_pending(&bufev->ev_read, EV_READ, NULL)) - bufferevent_add(&bufev->ev_read, timeout_read); - if (event_pending(&bufev->ev_write, EV_WRITE, NULL)) - bufferevent_add(&bufev->ev_write, timeout_write); -} - -/* - * Sets the water marks - */ - -void -bufferevent_setwatermark(struct bufferevent *bufev, short events, - size_t lowmark, size_t highmark) -{ - if (events & EV_READ) { - bufev->wm_read.low = lowmark; - bufev->wm_read.high = highmark; - } - - if (events & EV_WRITE) { - bufev->wm_write.low = lowmark; - bufev->wm_write.high = highmark; - } - - /* If the watermarks changed then see if we should call read again */ - bufferevent_read_pressure_cb(bufev->input, - 0, EVBUFFER_LENGTH(bufev->input), bufev); -} - -int -bufferevent_base_set(struct event_base *base, struct bufferevent *bufev) -{ - int res; - - bufev->ev_base = base; - - res = event_base_set(base, &bufev->ev_read); - if (res == -1) - return (res); - - res = event_base_set(base, &bufev->ev_write); - return (res); -} diff -Nru mysql-5.7-5.7.25/libevent/evdns.3 mysql-5.7-5.7.26/libevent/evdns.3 --- mysql-5.7-5.7.25/libevent/evdns.3 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/evdns.3 1970-01-01 00:00:00.000000000 +0000 @@ -1,322 +0,0 @@ -.\" -.\" Copyright (c) 2006 Niels Provos -.\" All rights reserved. -.\" -.\" 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. The name of the author may not be used to endorse or promote products -.\" derived from this software without specific prior written permission. -.\" -.\" THIS SOFTWARE IS PROVIDED ``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 AUTHOR 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. -.\" -.Dd October 7, 2006 -.Dt EVDNS 3 -.Os -.Sh NAME -.Nm evdns_init -.Nm evdns_shutdown -.Nm evdns_err_to_string -.Nm evdns_nameserver_add -.Nm evdns_count_nameservers -.Nm evdns_clear_nameservers_and_suspend -.Nm evdns_resume -.Nm evdns_nameserver_ip_add -.Nm evdns_resolve_ipv4 -.Nm evdns_resolve_reverse -.Nm evdns_resolv_conf_parse -.Nm evdns_config_windows_nameservers -.Nm evdns_search_clear -.Nm evdns_search_add -.Nm evdns_search_ndots_set -.Nm evdns_set_log_fn -.Nd asynchronous functions for DNS resolution. -.Sh SYNOPSIS -.Fd #include -.Fd #include -.Fd #include -.Ft int -.Fn evdns_init -.Ft void -.Fn evdns_shutdown "int fail_requests" -.Ft "const char *" -.Fn evdns_err_to_string "int err" -.Ft int -.Fn evdns_nameserver_add "unsigned long int address" -.Ft int -.Fn evdns_count_nameservers -.Ft int -.Fn evdns_clear_nameservers_and_suspend -.Ft int -.Fn evdns_resume -.Ft int -.Fn evdns_nameserver_ip_add(const char *ip_as_string); -.Ft int -.Fn evdns_resolve_ipv4 "const char *name" "int flags" "evdns_callback_type callback" "void *ptr" -.Ft int -.Fn evdns_resolve_reverse "struct in_addr *in" "int flags" "evdns_callback_type callback" "void *ptr" -.Ft int -.Fn evdns_resolv_conf_parse "int flags" "const char *" -.Ft void -.Fn evdns_search_clear -.Ft void -.Fn evdns_search_add "const char *domain" -.Ft void -.Fn evdns_search_ndots_set "const int ndots" -.Ft void -.Fn evdns_set_log_fn "evdns_debug_log_fn_type fn" -.Ft int -.Fn evdns_config_windows_nameservers -.Sh DESCRIPTION -Welcome, gentle reader -.Pp -Async DNS lookups are really a whole lot harder than they should be, -mostly stemming from the fact that the libc resolver has never been -very good at them. Before you use this library you should see if libc -can do the job for you with the modern async call getaddrinfo_a -(see http://www.imperialviolet.org/page25.html#e498). Otherwise, -please continue. -.Pp -This code is based on libevent and you must call event_init before -any of the APIs in this file. You must also seed the OpenSSL random -source if you are using OpenSSL for ids (see below). -.Pp -This library is designed to be included and shipped with your source -code. You statically link with it. You should also test for the -existence of strtok_r and define HAVE_STRTOK_R if you have it. -.Pp -The DNS protocol requires a good source of id numbers and these -numbers should be unpredictable for spoofing reasons. There are -three methods for generating them here and you must define exactly -one of them. In increasing order of preference: -.Pp -.Bl -tag -width "DNS_USE_GETTIMEOFDAY_FOR_ID" -compact -offset indent -.It DNS_USE_GETTIMEOFDAY_FOR_ID -Using the bottom 16 bits of the usec result from gettimeofday. This -is a pretty poor solution but should work anywhere. -.It DNS_USE_CPU_CLOCK_FOR_ID -Using the bottom 16 bits of the nsec result from the CPU's time -counter. This is better, but may not work everywhere. Requires -POSIX realtime support and you'll need to link against -lrt on -glibc systems at least. -.It DNS_USE_OPENSSL_FOR_ID -Uses the OpenSSL RAND_bytes call to generate the data. You must -have seeded the pool before making any calls to this library. -.El -.Pp -The library keeps track of the state of nameservers and will avoid -them when they go down. Otherwise it will round robin between them. -.Pp -Quick start guide: - #include "evdns.h" - void callback(int result, char type, int count, int ttl, - void *addresses, void *arg); - evdns_resolv_conf_parse(DNS_OPTIONS_ALL, "/etc/resolv.conf"); - evdns_resolve("www.hostname.com", 0, callback, NULL); -.Pp -When the lookup is complete the callback function is called. The -first argument will be one of the DNS_ERR_* defines in evdns.h. -Hopefully it will be DNS_ERR_NONE, in which case type will be -DNS_IPv4_A, count will be the number of IP addresses, ttl is the time -which the data can be cached for (in seconds), addresses will point -to an array of uint32_t's and arg will be whatever you passed to -evdns_resolve. -.Pp -Searching: -.Pp -In order for this library to be a good replacement for glibc's resolver it -supports searching. This involves setting a list of default domains, in -which names will be queried for. The number of dots in the query name -determines the order in which this list is used. -.Pp -Searching appears to be a single lookup from the point of view of the API, -although many DNS queries may be generated from a single call to -evdns_resolve. Searching can also drastically slow down the resolution -of names. -.Pp -To disable searching: -.Bl -enum -compact -offset indent -.It -Never set it up. If you never call -.Fn evdns_resolv_conf_parse, -.Fn evdns_init, -or -.Fn evdns_search_add -then no searching will occur. -.It -If you do call -.Fn evdns_resolv_conf_parse -then don't pass -.Va DNS_OPTION_SEARCH -(or -.Va DNS_OPTIONS_ALL, -which implies it). -.It -When calling -.Fn evdns_resolve, -pass the -.Va DNS_QUERY_NO_SEARCH -flag. -.El -.Pp -The order of searches depends on the number of dots in the name. If the -number is greater than the ndots setting then the names is first tried -globally. Otherwise each search domain is appended in turn. -.Pp -The ndots setting can either be set from a resolv.conf, or by calling -evdns_search_ndots_set. -.Pp -For example, with ndots set to 1 (the default) and a search domain list of -["myhome.net"]: - Query: www - Order: www.myhome.net, www. -.Pp - Query: www.abc - Order: www.abc., www.abc.myhome.net -.Pp -.Sh API reference -.Pp -.Bl -tag -width 0123456 -.It Ft int Fn evdns_init -Initializes support for non-blocking name resolution by calling -.Fn evdns_resolv_conf_parse -on UNIX and -.Fn evdns_config_windows_nameservers -on Windows. -.It Ft int Fn evdns_nameserver_add "unsigned long int address" -Add a nameserver. The address should be an IP address in -network byte order. The type of address is chosen so that -it matches in_addr.s_addr. -Returns non-zero on error. -.It Ft int Fn evdns_nameserver_ip_add "const char *ip_as_string" -This wraps the above function by parsing a string as an IP -address and adds it as a nameserver. -Returns non-zero on error -.It Ft int Fn evdns_resolve "const char *name" "int flags" "evdns_callback_type callback" "void *ptr" -Resolve a name. The name parameter should be a DNS name. -The flags parameter should be 0, or DNS_QUERY_NO_SEARCH -which disables searching for this query. (see defn of -searching above). -.Pp -The callback argument is a function which is called when -this query completes and ptr is an argument which is passed -to that callback function. -.Pp -Returns non-zero on error -.It Ft void Fn evdns_search_clear -Clears the list of search domains -.It Ft void Fn evdns_search_add "const char *domain" -Add a domain to the list of search domains -.It Ft void Fn evdns_search_ndots_set "int ndots" -Set the number of dots which, when found in a name, causes -the first query to be without any search domain. -.It Ft int Fn evdns_count_nameservers "void" -Return the number of configured nameservers (not necessarily the -number of running nameservers). This is useful for double-checking -whether our calls to the various nameserver configuration functions -have been successful. -.It Ft int Fn evdns_clear_nameservers_and_suspend "void" -Remove all currently configured nameservers, and suspend all pending -resolves. Resolves will not necessarily be re-attempted until -evdns_resume() is called. -.It Ft int Fn evdns_resume "void" -Re-attempt resolves left in limbo after an earlier call to -evdns_clear_nameservers_and_suspend(). -.It Ft int Fn evdns_config_windows_nameservers "void" -Attempt to configure a set of nameservers based on platform settings on -a win32 host. Preferentially tries to use GetNetworkParams; if that fails, -looks in the registry. Returns 0 on success, nonzero on failure. -.It Ft int Fn evdns_resolv_conf_parse "int flags" "const char *filename" -Parse a resolv.conf like file from the given filename. -.Pp -See the man page for resolv.conf for the format of this file. -The flags argument determines what information is parsed from -this file: -.Bl -tag -width "DNS_OPTION_NAMESERVERS" -offset indent -compact -nested -.It DNS_OPTION_SEARCH -domain, search and ndots options -.It DNS_OPTION_NAMESERVERS -nameserver lines -.It DNS_OPTION_MISC -timeout and attempts options -.It DNS_OPTIONS_ALL -all of the above -.El -.Pp -The following directives are not parsed from the file: - sortlist, rotate, no-check-names, inet6, debug -.Pp -Returns non-zero on error: -.Bl -tag -width "0" -offset indent -compact -nested -.It 0 -no errors -.It 1 -failed to open file -.It 2 -failed to stat file -.It 3 -file too large -.It 4 -out of memory -.It 5 -short read from file -.El -.El -.Sh Internals: -Requests are kept in two queues. The first is the inflight queue. In -this queue requests have an allocated transaction id and nameserver. -They will soon be transmitted if they haven't already been. -.Pp -The second is the waiting queue. The size of the inflight ring is -limited and all other requests wait in waiting queue for space. This -bounds the number of concurrent requests so that we don't flood the -nameserver. Several algorithms require a full walk of the inflight -queue and so bounding its size keeps thing going nicely under huge -(many thousands of requests) loads. -.Pp -If a nameserver loses too many requests it is considered down and we -try not to use it. After a while we send a probe to that nameserver -(a lookup for google.com) and, if it replies, we consider it working -again. If the nameserver fails a probe we wait longer to try again -with the next probe. -.Sh SEE ALSO -.Xr event 3 , -.Xr gethostbyname 3 , -.Xr resolv.conf 5 -.Sh HISTORY -The -.Nm evdns -API was developed by Adam Langley on top of the -.Nm libevent -API. -The code was integrate into -.Nm Tor -by Nick Mathewson and finally put into -.Nm libevent -itself by Niels Provos. -.Sh AUTHORS -The -.Nm evdns -API and code was written by Adam Langley with significant -contributions by Nick Mathewson. -.Sh BUGS -This documentation is neither complete nor authoritative. -If you are in doubt about the usage of this API then -check the source code to find out how it works, write -up the missing piece of documentation and send it to -me for inclusion in this man page. diff -Nru mysql-5.7-5.7.25/libevent/evdns.c mysql-5.7-5.7.26/libevent/evdns.c --- mysql-5.7-5.7.25/libevent/evdns.c 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/evdns.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,3200 +0,0 @@ -/* $Id: evdns.c 6979 2006-08-04 18:31:13Z nickm $ */ - -/* The original version of this module was written by Adam Langley; for - * a history of modifications, check out the subversion logs. - * - * When editing this module, try to keep it re-mergeable by Adam. Don't - * reformat the whitespace, add Tor dependencies, or so on. - * - * TODO: - * - Support IPv6 and PTR records. - * - Replace all externally visible magic numbers with #defined constants. - * - Write doccumentation for APIs of all external functions. - */ - -/* Async DNS Library - * Adam Langley - * http://www.imperialviolet.org/eventdns.html - * Public Domain code - * - * This software is Public Domain. To view a copy of the public domain dedication, - * visit http://creativecommons.org/licenses/publicdomain/ or send a letter to - * Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA. - * - * I ask and expect, but do not require, that all derivative works contain an - * attribution similar to: - * Parts developed by Adam Langley - * - * You may wish to replace the word "Parts" with something else depending on - * the amount of original code. - * - * (Derivative works does not include programs which link against, run or include - * the source verbatim in their source distributions) - * - * Version: 0.1b - */ - -#include -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -#ifdef DNS_USE_FTIME_FOR_ID -#include -#endif - -#ifndef DNS_USE_CPU_CLOCK_FOR_ID -#ifdef HAVE_GETTIMEOFDAY -#define DNS_USE_GETTIMEOFDAY_FOR_ID 1 -#endif -#endif - -#ifndef DNS_USE_CPU_CLOCK_FOR_ID -#ifdef HAVE_GETTIMEOFDAY -#define DNS_USE_GETTIMEOFDAY_FOR_ID 1 -#endif -#endif - -#ifndef DNS_USE_CPU_CLOCK_FOR_ID -#ifndef DNS_USE_GETTIMEOFDAY_FOR_ID -#ifndef DNS_USE_OPENSSL_FOR_ID -#ifndef DNS_USE_FTIME_FOR_ID -#error Must configure at least one id generation method. -#error Please see the documentation. -#endif -#endif -#endif -#endif - -/* #define _POSIX_C_SOURCE 200507 */ -#define _GNU_SOURCE - -#ifdef DNS_USE_CPU_CLOCK_FOR_ID -#ifdef DNS_USE_OPENSSL_FOR_ID -#error Multiple id options selected -#endif -#ifdef DNS_USE_GETTIMEOFDAY_FOR_ID -#error Multiple id options selected -#endif -#include -#endif - -#ifdef DNS_USE_OPENSSL_FOR_ID -#ifdef DNS_USE_GETTIMEOFDAY_FOR_ID -#error Multiple id options selected -#endif -#include -#endif - -#ifndef _FORTIFY_SOURCE -#define _FORTIFY_SOURCE 3 -#endif - -#include -#include -#ifdef HAVE_SYS_TIME_H -#include -#endif -#ifdef HAVE_STDINT_H -#include -#endif -#include -#include -#include -#include -#ifdef HAVE_UNISTD_H -#include -#endif -#include -#include -#include -#include -#include - -#include "evdns.h" -#include "evutil.h" -#include "log.h" -#ifdef WIN32 -#include -#include -#include -#include -#else -#include -#include -#include -#endif - -#ifdef HAVE_NETINET_IN6_H -#include -#endif - -#define EVDNS_LOG_DEBUG 0 -#define EVDNS_LOG_WARN 1 - -#ifndef HOST_NAME_MAX -#define HOST_NAME_MAX 255 -#endif - -#include - -#undef MIN -#define MIN(a,b) ((a)<(b)?(a):(b)) - -#ifdef __USE_ISOC99B -/* libevent doesn't work without this */ -typedef ev_uint8_t u_char; -typedef unsigned int uint; -#endif -#include - -#define u64 ev_uint64_t -#define u32 ev_uint32_t -#define u16 ev_uint16_t -#define u8 ev_uint8_t - -#ifdef WIN32 -#define open _open -#define read _read -#define close _close -#define strdup _strdup -#endif - -#define MAX_ADDRS 32 /* maximum number of addresses from a single packet */ -/* which we bother recording */ - -#define TYPE_A EVDNS_TYPE_A -#define TYPE_CNAME 5 -#define TYPE_PTR EVDNS_TYPE_PTR -#define TYPE_AAAA EVDNS_TYPE_AAAA - -#define CLASS_INET EVDNS_CLASS_INET - -struct request { - u8 *request; /* the dns packet data */ - unsigned int request_len; - int reissue_count; - int tx_count; /* the number of times that this packet has been sent */ - unsigned int request_type; /* TYPE_PTR or TYPE_A */ - void *user_pointer; /* the pointer given to us for this request */ - evdns_callback_type user_callback; - struct nameserver *ns; /* the server which we last sent it */ - - /* elements used by the searching code */ - int search_index; - struct search_state *search_state; - char *search_origname; /* needs to be free()ed */ - int search_flags; - - /* these objects are kept in a circular list */ - struct request *next, *prev; - - struct event timeout_event; - - u16 trans_id; /* the transaction id */ - char request_appended; /* true if the request pointer is data which follows this struct */ - char transmit_me; /* needs to be transmitted */ -}; - -#ifndef HAVE_STRUCT_IN6_ADDR -struct in6_addr { - u8 s6_addr[16]; -}; -#endif - -struct reply { - unsigned int type; - unsigned int have_answer; - union { - struct { - u32 addrcount; - u32 addresses[MAX_ADDRS]; - } a; - struct { - u32 addrcount; - struct in6_addr addresses[MAX_ADDRS]; - } aaaa; - struct { - char name[HOST_NAME_MAX]; - } ptr; - } data; -}; - -struct nameserver { - int socket; /* a connected UDP socket */ - u32 address; - u16 port; - int failed_times; /* number of times which we have given this server a chance */ - int timedout; /* number of times in a row a request has timed out */ - struct event event; - /* these objects are kept in a circular list */ - struct nameserver *next, *prev; - struct event timeout_event; /* used to keep the timeout for */ - /* when we next probe this server. */ - /* Valid if state == 0 */ - char state; /* zero if we think that this server is down */ - char choked; /* true if we have an EAGAIN from this server's socket */ - char write_waiting; /* true if we are waiting for EV_WRITE events */ -}; - -static struct request *req_head = NULL, *req_waiting_head = NULL; -static struct nameserver *server_head = NULL; - -/* Represents a local port where we're listening for DNS requests. Right now, */ -/* only UDP is supported. */ -struct evdns_server_port { - int socket; /* socket we use to read queries and write replies. */ - int refcnt; /* reference count. */ - char choked; /* Are we currently blocked from writing? */ - char closing; /* Are we trying to close this port, pending writes? */ - evdns_request_callback_fn_type user_callback; /* Fn to handle requests */ - void *user_data; /* Opaque pointer passed to user_callback */ - struct event event; /* Read/write event */ - /* circular list of replies that we want to write. */ - struct server_request *pending_replies; -}; - -/* Represents part of a reply being built. (That is, a single RR.) */ -struct server_reply_item { - struct server_reply_item *next; /* next item in sequence. */ - char *name; /* name part of the RR */ - u16 type : 16; /* The RR type */ - u16 class : 16; /* The RR class (usually CLASS_INET) */ - u32 ttl; /* The RR TTL */ - char is_name; /* True iff data is a label */ - u16 datalen; /* Length of data; -1 if data is a label */ - void *data; /* The contents of the RR */ -}; - -/* Represents a request that we've received as a DNS server, and holds */ -/* the components of the reply as we're constructing it. */ -struct server_request { - /* Pointers to the next and previous entries on the list of replies */ - /* that we're waiting to write. Only set if we have tried to respond */ - /* and gotten EAGAIN. */ - struct server_request *next_pending; - struct server_request *prev_pending; - - u16 trans_id; /* Transaction id. */ - struct evdns_server_port *port; /* Which port received this request on? */ - struct sockaddr_storage addr; /* Where to send the response */ - socklen_t addrlen; /* length of addr */ - - int n_answer; /* how many answer RRs have been set? */ - int n_authority; /* how many authority RRs have been set? */ - int n_additional; /* how many additional RRs have been set? */ - - struct server_reply_item *answer; /* linked list of answer RRs */ - struct server_reply_item *authority; /* linked list of authority RRs */ - struct server_reply_item *additional; /* linked list of additional RRs */ - - /* Constructed response. Only set once we're ready to send a reply. */ - /* Once this is set, the RR fields are cleared, and no more should be set. */ - char *response; - size_t response_len; - - /* Caller-visible fields: flags, questions. */ - struct evdns_server_request base; -}; - -/* helper macro */ -#define OFFSET_OF(st, member) ((off_t) (((char*)&((st*)0)->member)-(char*)0)) - -/* Given a pointer to an evdns_server_request, get the corresponding */ -/* server_request. */ -#define TO_SERVER_REQUEST(base_ptr) \ - ((struct server_request*) \ - (((char*)(base_ptr) - OFFSET_OF(struct server_request, base)))) - -/* The number of good nameservers that we have */ -static int global_good_nameservers = 0; - -/* inflight requests are contained in the req_head list */ -/* and are actually going out across the network */ -static int global_requests_inflight = 0; -/* requests which aren't inflight are in the waiting list */ -/* and are counted here */ -static int global_requests_waiting = 0; - -static int global_max_requests_inflight = 64; - -static struct timeval global_timeout = {5, 0}; /* 5 seconds */ -static int global_max_reissues = 1; /* a reissue occurs when we get some errors from the server */ -static int global_max_retransmits = 3; /* number of times we'll retransmit a request which timed out */ -/* number of timeouts in a row before we consider this server to be down */ -static int global_max_nameserver_timeout = 3; - -/* These are the timeout values for nameservers. If we find a nameserver is down */ -/* we try to probe it at intervals as given below. Values are in seconds. */ -static const struct timeval global_nameserver_timeouts[] = {{10, 0}, {60, 0}, {300, 0}, {900, 0}, {3600, 0}}; -static const int global_nameserver_timeouts_length = sizeof(global_nameserver_timeouts)/sizeof(struct timeval); - -static struct nameserver *nameserver_pick(void); -static void evdns_request_insert(struct request *req, struct request **head); -static void nameserver_ready_callback(int fd, short events, void *arg); -static int evdns_transmit(void); -static int evdns_request_transmit(struct request *req); -static void nameserver_send_probe(struct nameserver *const ns); -static void search_request_finished(struct request *const); -static int search_try_next(struct request *const req); -static int search_request_new(int type, const char *const name, int flags, evdns_callback_type user_callback, void *user_arg); -static void evdns_requests_pump_waiting_queue(void); -static u16 transaction_id_pick(void); -static struct request *request_new(int type, const char *name, int flags, evdns_callback_type callback, void *ptr); -static void request_submit(struct request *const req); - -static int server_request_free(struct server_request *req); -static void server_request_free_answers(struct server_request *req); -static void server_port_free(struct evdns_server_port *port); -static void server_port_ready_callback(int fd, short events, void *arg); - -static int strtoint(const char *const str); - -#ifdef WIN32 -static int -last_error(int sock) -{ - int optval, optvallen=sizeof(optval); - int err = WSAGetLastError(); - if (err == WSAEWOULDBLOCK && sock >= 0) { - if (getsockopt(sock, SOL_SOCKET, SO_ERROR, (void*)&optval, - &optvallen)) - return err; - if (optval) - return optval; - } - return err; - -} -static int -error_is_eagain(int err) -{ - return err == EAGAIN || err == WSAEWOULDBLOCK; -} -static int -inet_aton(const char *c, struct in_addr *addr) -{ - ev_uint32_t r; - if (strcmp(c, "255.255.255.255") == 0) { - addr->s_addr = 0xffffffffu; - } else { - r = inet_addr(c); - if (r == INADDR_NONE) - return 0; - addr->s_addr = r; - } - return 1; -} -#else -#define last_error(sock) (errno) -#define error_is_eagain(err) ((err) == EAGAIN) -#endif -#define CLOSE_SOCKET(s) EVUTIL_CLOSESOCKET(s) - -#define ISSPACE(c) isspace((int)(unsigned char)(c)) -#define ISDIGIT(c) isdigit((int)(unsigned char)(c)) - -static const char * -debug_ntoa(u32 address) -{ - static char buf[32]; - u32 a = ntohl(address); - evutil_snprintf(buf, sizeof(buf), "%d.%d.%d.%d", - (int)(u8)((a>>24)&0xff), - (int)(u8)((a>>16)&0xff), - (int)(u8)((a>>8 )&0xff), - (int)(u8)((a )&0xff)); - return buf; -} - -static evdns_debug_log_fn_type evdns_log_fn = NULL; - -void -evdns_set_log_fn(evdns_debug_log_fn_type fn) -{ - evdns_log_fn = fn; -} - -#ifdef __GNUC__ -#define EVDNS_LOG_CHECK __attribute__ ((format(printf, 2, 3))) -#else -#define EVDNS_LOG_CHECK -#endif - -static void _evdns_log(int warn, const char *fmt, ...) EVDNS_LOG_CHECK; -static void -_evdns_log(int warn, const char *fmt, ...) -{ - va_list args; - static char buf[512]; - if (!evdns_log_fn) - return; - va_start(args,fmt); - evutil_vsnprintf(buf, sizeof(buf), fmt, args); - buf[sizeof(buf)-1] = '\0'; - evdns_log_fn(warn, buf); - va_end(args); -} - -#define log _evdns_log - -/* This walks the list of inflight requests to find the */ -/* one with a matching transaction id. Returns NULL on */ -/* failure */ -static struct request * -request_find_from_trans_id(u16 trans_id) { - struct request *req = req_head, *const started_at = req_head; - - if (req) { - do { - if (req->trans_id == trans_id) return req; - req = req->next; - } while (req != started_at); - } - - return NULL; -} - -/* a libevent callback function which is called when a nameserver */ -/* has gone down and we want to test if it has came back to life yet */ -static void -nameserver_prod_callback(int fd, short events, void *arg) { - struct nameserver *const ns = (struct nameserver *) arg; - (void)fd; - (void)events; - - nameserver_send_probe(ns); -} - -/* a libevent callback which is called when a nameserver probe (to see if */ -/* it has come back to life) times out. We increment the count of failed_times */ -/* and wait longer to send the next probe packet. */ -static void -nameserver_probe_failed(struct nameserver *const ns) { - const struct timeval * timeout; - (void) evtimer_del(&ns->timeout_event); - if (ns->state == 1) { - /* This can happen if the nameserver acts in a way which makes us mark */ - /* it as bad and then starts sending good replies. */ - return; - } - - timeout = - &global_nameserver_timeouts[MIN(ns->failed_times, - global_nameserver_timeouts_length - 1)]; - ns->failed_times++; - - if (evtimer_add(&ns->timeout_event, (struct timeval *) timeout) < 0) { - log(EVDNS_LOG_WARN, - "Error from libevent when adding timer event for %s", - debug_ntoa(ns->address)); - /* ???? Do more? */ - } -} - -/* called when a nameserver has been deemed to have failed. For example, too */ -/* many packets have timed out etc */ -static void -nameserver_failed(struct nameserver *const ns, const char *msg) { - struct request *req, *started_at; - /* if this nameserver has already been marked as failed */ - /* then don't do anything */ - if (!ns->state) return; - - log(EVDNS_LOG_WARN, "Nameserver %s has failed: %s", - debug_ntoa(ns->address), msg); - global_good_nameservers--; - assert(global_good_nameservers >= 0); - if (global_good_nameservers == 0) { - log(EVDNS_LOG_WARN, "All nameservers have failed"); - } - - ns->state = 0; - ns->failed_times = 1; - - if (evtimer_add(&ns->timeout_event, (struct timeval *) &global_nameserver_timeouts[0]) < 0) { - log(EVDNS_LOG_WARN, - "Error from libevent when adding timer event for %s", - debug_ntoa(ns->address)); - /* ???? Do more? */ - } - - /* walk the list of inflight requests to see if any can be reassigned to */ - /* a different server. Requests in the waiting queue don't have a */ - /* nameserver assigned yet */ - - /* if we don't have *any* good nameservers then there's no point */ - /* trying to reassign requests to one */ - if (!global_good_nameservers) return; - - req = req_head; - started_at = req_head; - if (req) { - do { - if (req->tx_count == 0 && req->ns == ns) { - /* still waiting to go out, can be moved */ - /* to another server */ - req->ns = nameserver_pick(); - } - req = req->next; - } while (req != started_at); - } -} - -static void -nameserver_up(struct nameserver *const ns) { - if (ns->state) return; - log(EVDNS_LOG_WARN, "Nameserver %s is back up", - debug_ntoa(ns->address)); - evtimer_del(&ns->timeout_event); - ns->state = 1; - ns->failed_times = 0; - ns->timedout = 0; - global_good_nameservers++; -} - -static void -request_trans_id_set(struct request *const req, const u16 trans_id) { - req->trans_id = trans_id; - *((u16 *) req->request) = htons(trans_id); -} - -/* Called to remove a request from a list and dealloc it. */ -/* head is a pointer to the head of the list it should be */ -/* removed from or NULL if the request isn't in a list. */ -static void -request_finished(struct request *const req, struct request **head) { - if (head) { - if (req->next == req) { - /* only item in the list */ - *head = NULL; - } else { - req->next->prev = req->prev; - req->prev->next = req->next; - if (*head == req) *head = req->next; - } - } - - log(EVDNS_LOG_DEBUG, "Removing timeout for request %lx", - (unsigned long) req); - evtimer_del(&req->timeout_event); - - search_request_finished(req); - global_requests_inflight--; - - if (!req->request_appended) { - /* need to free the request data on it's own */ - free(req->request); - } else { - /* the request data is appended onto the header */ - /* so everything gets free()ed when we: */ - } - - free(req); - - evdns_requests_pump_waiting_queue(); -} - -/* This is called when a server returns a funny error code. */ -/* We try the request again with another server. */ -/* */ -/* return: */ -/* 0 ok */ -/* 1 failed/reissue is pointless */ -static int -request_reissue(struct request *req) { - const struct nameserver *const last_ns = req->ns; - /* the last nameserver should have been marked as failing */ - /* by the caller of this function, therefore pick will try */ - /* not to return it */ - req->ns = nameserver_pick(); - if (req->ns == last_ns) { - /* ... but pick did return it */ - /* not a lot of point in trying again with the */ - /* same server */ - return 1; - } - - req->reissue_count++; - req->tx_count = 0; - req->transmit_me = 1; - - return 0; -} - -/* this function looks for space on the inflight queue and promotes */ -/* requests from the waiting queue if it can. */ -static void -evdns_requests_pump_waiting_queue(void) { - while (global_requests_inflight < global_max_requests_inflight && - global_requests_waiting) { - struct request *req; - /* move a request from the waiting queue to the inflight queue */ - assert(req_waiting_head); - if (req_waiting_head->next == req_waiting_head) { - /* only one item in the queue */ - req = req_waiting_head; - req_waiting_head = NULL; - } else { - req = req_waiting_head; - req->next->prev = req->prev; - req->prev->next = req->next; - req_waiting_head = req->next; - } - - global_requests_waiting--; - global_requests_inflight++; - - req->ns = nameserver_pick(); - request_trans_id_set(req, transaction_id_pick()); - - evdns_request_insert(req, &req_head); - evdns_request_transmit(req); - evdns_transmit(); - } -} - -static void -reply_callback(struct request *const req, u32 ttl, u32 err, struct reply *reply) { - switch (req->request_type) { - case TYPE_A: - if (reply) - req->user_callback(DNS_ERR_NONE, DNS_IPv4_A, - reply->data.a.addrcount, ttl, - reply->data.a.addresses, - req->user_pointer); - else - req->user_callback(err, 0, 0, 0, NULL, req->user_pointer); - return; - case TYPE_PTR: - if (reply) { - char *name = reply->data.ptr.name; - req->user_callback(DNS_ERR_NONE, DNS_PTR, 1, ttl, - &name, req->user_pointer); - } else { - req->user_callback(err, 0, 0, 0, NULL, - req->user_pointer); - } - return; - case TYPE_AAAA: - if (reply) - req->user_callback(DNS_ERR_NONE, DNS_IPv6_AAAA, - reply->data.aaaa.addrcount, ttl, - reply->data.aaaa.addresses, - req->user_pointer); - else - req->user_callback(err, 0, 0, 0, NULL, req->user_pointer); - return; - } - assert(0); -} - -/* this processes a parsed reply packet */ -static void -reply_handle(struct request *const req, u16 flags, u32 ttl, struct reply *reply) { - int error; - static const int error_codes[] = { - DNS_ERR_FORMAT, DNS_ERR_SERVERFAILED, DNS_ERR_NOTEXIST, - DNS_ERR_NOTIMPL, DNS_ERR_REFUSED - }; - - if (flags & 0x020f || !reply || !reply->have_answer) { - /* there was an error */ - if (flags & 0x0200) { - error = DNS_ERR_TRUNCATED; - } else { - u16 error_code = (flags & 0x000f) - 1; - if (error_code > 4) { - error = DNS_ERR_UNKNOWN; - } else { - error = error_codes[error_code]; - } - } - - switch(error) { - case DNS_ERR_NOTIMPL: - case DNS_ERR_REFUSED: - /* we regard these errors as marking a bad nameserver */ - if (req->reissue_count < global_max_reissues) { - char msg[64]; - evutil_snprintf(msg, sizeof(msg), - "Bad response %d (%s)", - error, evdns_err_to_string(error)); - nameserver_failed(req->ns, msg); - if (!request_reissue(req)) return; - } - break; - case DNS_ERR_SERVERFAILED: - /* rcode 2 (servfailed) sometimes means "we - * are broken" and sometimes (with some binds) - * means "that request was very confusing." - * Treat this as a timeout, not a failure. - */ - log(EVDNS_LOG_DEBUG, "Got a SERVERFAILED from nameserver %s; " - "will allow the request to time out.", - debug_ntoa(req->ns->address)); - break; - default: - /* we got a good reply from the nameserver */ - nameserver_up(req->ns); - } - - if (req->search_state && req->request_type != TYPE_PTR) { - /* if we have a list of domains to search in, - * try the next one */ - if (!search_try_next(req)) { - /* a new request was issued so this - * request is finished and */ - /* the user callback will be made when - * that request (or a */ - /* child of it) finishes. */ - request_finished(req, &req_head); - return; - } - } - - /* all else failed. Pass the failure up */ - reply_callback(req, 0, error, NULL); - request_finished(req, &req_head); - } else { - /* all ok, tell the user */ - reply_callback(req, ttl, 0, reply); - nameserver_up(req->ns); - request_finished(req, &req_head); - } -} - -static int -name_parse(u8 *packet, int length, int *idx, char *name_out, int name_out_len) { - int name_end = -1; - int j = *idx; - int ptr_count = 0; -#define GET32(x) do { if (j + 4 > length) goto err; memcpy(&_t32, packet + j, 4); j += 4; x = ntohl(_t32); } while(0) -#define GET16(x) do { if (j + 2 > length) goto err; memcpy(&_t, packet + j, 2); j += 2; x = ntohs(_t); } while(0) -#define GET8(x) do { if (j >= length) goto err; x = packet[j++]; } while(0) - - char *cp = name_out; - const char *const end = name_out + name_out_len; - - /* Normally, names are a series of length prefixed strings terminated */ - /* with a length of 0 (the lengths are u8's < 63). */ - /* However, the length can start with a pair of 1 bits and that */ - /* means that the next 14 bits are a pointer within the current */ - /* packet. */ - - for(;;) { - u8 label_len; - if (j >= length) return -1; - GET8(label_len); - if (!label_len) break; - if (label_len & 0xc0) { - u8 ptr_low; - GET8(ptr_low); - if (name_end < 0) name_end = j; - j = (((int)label_len & 0x3f) << 8) + ptr_low; - /* Make sure that the target offset is in-bounds. */ - if (j < 0 || j >= length) return -1; - /* If we've jumped more times than there are characters in the - * message, we must have a loop. */ - if (++ptr_count > length) return -1; - continue; - } - if (label_len > 63) return -1; - if (cp != name_out) { - if (cp + 1 >= end) return -1; - *cp++ = '.'; - } - if (cp + label_len >= end) return -1; - memcpy(cp, packet + j, label_len); - cp += label_len; - j += label_len; - } - if (cp >= end) return -1; - *cp = '\0'; - if (name_end < 0) - *idx = j; - else - *idx = name_end; - return 0; - err: - return -1; -} - -/* parses a raw request from a nameserver */ -static int -reply_parse(u8 *packet, int length) { - int j = 0, k = 0; /* index into packet */ - u16 _t; /* used by the macros */ - u32 _t32; /* used by the macros */ - char tmp_name[256], cmp_name[256]; /* used by the macros */ - - u16 trans_id, questions, answers, authority, additional, datalength; - u16 flags = 0; - u32 ttl, ttl_r = 0xffffffff; - struct reply reply; - struct request *req = NULL; - unsigned int i; - - GET16(trans_id); - GET16(flags); - GET16(questions); - GET16(answers); - GET16(authority); - GET16(additional); - (void) authority; /* suppress "unused variable" warnings. */ - (void) additional; /* suppress "unused variable" warnings. */ - - req = request_find_from_trans_id(trans_id); - if (!req) return -1; - - memset(&reply, 0, sizeof(reply)); - - /* If it's not an answer, it doesn't correspond to any request. */ - if (!(flags & 0x8000)) return -1; /* must be an answer */ - if (flags & 0x020f) { - /* there was an error */ - goto err; - } - /* if (!answers) return; */ /* must have an answer of some form */ - - /* This macro skips a name in the DNS reply. */ -#define SKIP_NAME \ - do { tmp_name[0] = '\0'; \ - if (name_parse(packet, length, &j, tmp_name, sizeof(tmp_name))<0)\ - goto err; \ - } while(0) -#define TEST_NAME \ - do { tmp_name[0] = '\0'; \ - cmp_name[0] = '\0'; \ - k = j; \ - if (name_parse(packet, length, &j, tmp_name, sizeof(tmp_name))<0)\ - goto err; \ - if (name_parse(req->request, req->request_len, &k, cmp_name, sizeof(cmp_name))<0) \ - goto err; \ - if (memcmp(tmp_name, cmp_name, strlen (tmp_name)) != 0) \ - return (-1); /* we ignore mismatching names */ \ - } while(0) - - reply.type = req->request_type; - - /* skip over each question in the reply */ - for (i = 0; i < questions; ++i) { - /* the question looks like - * - */ - TEST_NAME; - j += 4; - if (j > length) goto err; - } - - /* now we have the answer section which looks like - * - */ - - for (i = 0; i < answers; ++i) { - u16 type, class; - - SKIP_NAME; - GET16(type); - GET16(class); - GET32(ttl); - GET16(datalength); - - if (type == TYPE_A && class == CLASS_INET) { - int addrcount, addrtocopy; - if (req->request_type != TYPE_A) { - j += datalength; continue; - } - if ((datalength & 3) != 0) /* not an even number of As. */ - goto err; - addrcount = datalength >> 2; - addrtocopy = MIN(MAX_ADDRS - reply.data.a.addrcount, (unsigned)addrcount); - - ttl_r = MIN(ttl_r, ttl); - /* we only bother with the first four addresses. */ - if (j + 4*addrtocopy > length) goto err; - memcpy(&reply.data.a.addresses[reply.data.a.addrcount], - packet + j, 4*addrtocopy); - j += 4*addrtocopy; - reply.data.a.addrcount += addrtocopy; - reply.have_answer = 1; - if (reply.data.a.addrcount == MAX_ADDRS) break; - } else if (type == TYPE_PTR && class == CLASS_INET) { - if (req->request_type != TYPE_PTR) { - j += datalength; continue; - } - if (name_parse(packet, length, &j, reply.data.ptr.name, - sizeof(reply.data.ptr.name))<0) - goto err; - ttl_r = MIN(ttl_r, ttl); - reply.have_answer = 1; - break; - } else if (type == TYPE_AAAA && class == CLASS_INET) { - int addrcount, addrtocopy; - if (req->request_type != TYPE_AAAA) { - j += datalength; continue; - } - if ((datalength & 15) != 0) /* not an even number of AAAAs. */ - goto err; - addrcount = datalength >> 4; /* each address is 16 bytes long */ - addrtocopy = MIN(MAX_ADDRS - reply.data.aaaa.addrcount, (unsigned)addrcount); - ttl_r = MIN(ttl_r, ttl); - - /* we only bother with the first four addresses. */ - if (j + 16*addrtocopy > length) goto err; - memcpy(&reply.data.aaaa.addresses[reply.data.aaaa.addrcount], - packet + j, 16*addrtocopy); - reply.data.aaaa.addrcount += addrtocopy; - j += 16*addrtocopy; - reply.have_answer = 1; - if (reply.data.aaaa.addrcount == MAX_ADDRS) break; - } else { - /* skip over any other type of resource */ - j += datalength; - } - } - - reply_handle(req, flags, ttl_r, &reply); - return 0; - err: - if (req) - reply_handle(req, flags, 0, NULL); - return -1; -} - -/* Parse a raw request (packet,length) sent to a nameserver port (port) from */ -/* a DNS client (addr,addrlen), and if it's well-formed, call the corresponding */ -/* callback. */ -static int -request_parse(u8 *packet, int length, struct evdns_server_port *port, struct sockaddr *addr, socklen_t addrlen) -{ - int j = 0; /* index into packet */ - u16 _t; /* used by the macros */ - char tmp_name[256]; /* used by the macros */ - - int i; - u16 trans_id, flags, questions, answers, authority, additional; - struct server_request *server_req = NULL; - - /* Get the header fields */ - GET16(trans_id); - GET16(flags); - GET16(questions); - GET16(answers); - GET16(authority); - GET16(additional); - - if (flags & 0x8000) return -1; /* Must not be an answer. */ - flags &= 0x0110; /* Only RD and CD get preserved. */ - - server_req = malloc(sizeof(struct server_request)); - if (server_req == NULL) return -1; - memset(server_req, 0, sizeof(struct server_request)); - - server_req->trans_id = trans_id; - memcpy(&server_req->addr, addr, addrlen); - server_req->addrlen = addrlen; - - server_req->base.flags = flags; - server_req->base.nquestions = 0; - server_req->base.questions = malloc(sizeof(struct evdns_server_question *) * questions); - if (server_req->base.questions == NULL) - goto err; - - for (i = 0; i < questions; ++i) { - u16 type, class; - struct evdns_server_question *q; - int namelen; - if (name_parse(packet, length, &j, tmp_name, sizeof(tmp_name))<0) - goto err; - GET16(type); - GET16(class); - namelen = strlen(tmp_name); - q = malloc(sizeof(struct evdns_server_question) + namelen); - if (!q) - goto err; - q->type = type; - q->dns_question_class = class; - memcpy(q->name, tmp_name, namelen+1); - server_req->base.questions[server_req->base.nquestions++] = q; - } - - /* Ignore answers, authority, and additional. */ - - server_req->port = port; - port->refcnt++; - - /* Only standard queries are supported. */ - if (flags & 0x7800) { - evdns_server_request_respond(&(server_req->base), DNS_ERR_NOTIMPL); - return -1; - } - - port->user_callback(&(server_req->base), port->user_data); - - return 0; -err: - if (server_req) { - if (server_req->base.questions) { - for (i = 0; i < server_req->base.nquestions; ++i) - free(server_req->base.questions[i]); - free(server_req->base.questions); - } - free(server_req); - } - return -1; - -#undef SKIP_NAME -#undef GET32 -#undef GET16 -#undef GET8 -} - -static u16 -default_transaction_id_fn(void) -{ - u16 trans_id; -#ifdef DNS_USE_CPU_CLOCK_FOR_ID - struct timespec ts; - static int clkid = -1; - if (clkid == -1) { - clkid = CLOCK_REALTIME; -#ifdef CLOCK_MONOTONIC - if (clock_gettime(CLOCK_MONOTONIC, &ts) != -1) - clkid = CLOCK_MONOTONIC; -#endif - } - if (clock_gettime(clkid, &ts) == -1) - event_err(1, "clock_gettime"); - trans_id = ts.tv_nsec & 0xffff; -#endif - -#ifdef DNS_USE_FTIME_FOR_ID - struct _timeb tb; - _ftime(&tb); - trans_id = tb.millitm & 0xffff; -#endif - -#ifdef DNS_USE_GETTIMEOFDAY_FOR_ID - struct timeval tv; - evutil_gettimeofday(&tv, NULL); - trans_id = tv.tv_usec & 0xffff; -#endif - -#ifdef DNS_USE_OPENSSL_FOR_ID - if (RAND_pseudo_bytes((u8 *) &trans_id, 2) == -1) { - /* in the case that the RAND call fails we back */ - /* down to using gettimeofday. */ - /* - struct timeval tv; - evutil_gettimeofday(&tv, NULL); - trans_id = tv.tv_usec & 0xffff; - */ - abort(); - } -#endif - return trans_id; -} - -static ev_uint16_t (*trans_id_function)(void) = default_transaction_id_fn; - -void -evdns_set_transaction_id_fn(ev_uint16_t (*fn)(void)) -{ - if (fn) - trans_id_function = fn; - else - trans_id_function = default_transaction_id_fn; -} - -/* Try to choose a strong transaction id which isn't already in flight */ -static u16 -transaction_id_pick(void) { - for (;;) { - const struct request *req = req_head, *started_at; - u16 trans_id = trans_id_function(); - - if (trans_id == 0xffff) continue; - /* now check to see if that id is already inflight */ - req = started_at = req_head; - if (req) { - do { - if (req->trans_id == trans_id) break; - req = req->next; - } while (req != started_at); - } - /* we didn't find it, so this is a good id */ - if (req == started_at) return trans_id; - } -} - -/* choose a namesever to use. This function will try to ignore */ -/* nameservers which we think are down and load balance across the rest */ -/* by updating the server_head global each time. */ -static struct nameserver * -nameserver_pick(void) { - struct nameserver *started_at = server_head, *picked; - if (!server_head) return NULL; - - /* if we don't have any good nameservers then there's no */ - /* point in trying to find one. */ - if (!global_good_nameservers) { - server_head = server_head->next; - return server_head; - } - - /* remember that nameservers are in a circular list */ - for (;;) { - if (server_head->state) { - /* we think this server is currently good */ - picked = server_head; - server_head = server_head->next; - return picked; - } - - server_head = server_head->next; - if (server_head == started_at) { - /* all the nameservers seem to be down */ - /* so we just return this one and hope for the */ - /* best */ - assert(global_good_nameservers == 0); - picked = server_head; - server_head = server_head->next; - return picked; - } - } -} - -static int -address_is_correct(struct nameserver *ns, struct sockaddr *sa, socklen_t slen) -{ - struct sockaddr_in *sin = (struct sockaddr_in*) sa; - if (sa->sa_family != AF_INET || slen != sizeof(struct sockaddr_in)) - return 0; - if (sin->sin_addr.s_addr != ns->address) - return 0; - return 1; -} - -/* this is called when a namesever socket is ready for reading */ -static void -nameserver_read(struct nameserver *ns) { - u8 packet[1500]; - struct sockaddr_storage ss; - socklen_t addrlen = sizeof(ss); - - for (;;) { - const int r = recvfrom(ns->socket, packet, sizeof(packet), 0, - (struct sockaddr*)&ss, &addrlen); - if (r < 0) { - int err = last_error(ns->socket); - if (error_is_eagain(err)) return; - nameserver_failed(ns, strerror(err)); - return; - } - if (!address_is_correct(ns, (struct sockaddr*)&ss, addrlen)) { - log(EVDNS_LOG_WARN, "Address mismatch on received " - "DNS packet."); - return; - } - ns->timedout = 0; - reply_parse(packet, r); - } -} - -/* Read a packet from a DNS client on a server port s, parse it, and */ -/* act accordingly. */ -static void -server_port_read(struct evdns_server_port *s) { - u8 packet[1500]; - struct sockaddr_storage addr; - socklen_t addrlen; - int r; - - for (;;) { - addrlen = sizeof(struct sockaddr_storage); - r = recvfrom(s->socket, packet, sizeof(packet), 0, - (struct sockaddr*) &addr, &addrlen); - if (r < 0) { - int err = last_error(s->socket); - if (error_is_eagain(err)) return; - log(EVDNS_LOG_WARN, "Error %s (%d) while reading request.", - strerror(err), err); - return; - } - request_parse(packet, r, s, (struct sockaddr*) &addr, addrlen); - } -} - -/* Try to write all pending replies on a given DNS server port. */ -static void -server_port_flush(struct evdns_server_port *port) -{ - while (port->pending_replies) { - struct server_request *req = port->pending_replies; - int r = sendto(port->socket, req->response, req->response_len, 0, - (struct sockaddr*) &req->addr, req->addrlen); - if (r < 0) { - int err = last_error(port->socket); - if (error_is_eagain(err)) - return; - log(EVDNS_LOG_WARN, "Error %s (%d) while writing response to port; dropping", strerror(err), err); - } - if (server_request_free(req)) { - /* we released the last reference to req->port. */ - return; - } - } - - /* We have no more pending requests; stop listening for 'writeable' events. */ - (void) event_del(&port->event); - event_set(&port->event, port->socket, EV_READ | EV_PERSIST, - server_port_ready_callback, port); - if (event_add(&port->event, NULL) < 0) { - log(EVDNS_LOG_WARN, "Error from libevent when adding event for DNS server."); - /* ???? Do more? */ - } -} - -/* set if we are waiting for the ability to write to this server. */ -/* if waiting is true then we ask libevent for EV_WRITE events, otherwise */ -/* we stop these events. */ -static void -nameserver_write_waiting(struct nameserver *ns, char waiting) { - if (ns->write_waiting == waiting) return; - - ns->write_waiting = waiting; - (void) event_del(&ns->event); - event_set(&ns->event, ns->socket, EV_READ | (waiting ? EV_WRITE : 0) | EV_PERSIST, - nameserver_ready_callback, ns); - if (event_add(&ns->event, NULL) < 0) { - log(EVDNS_LOG_WARN, "Error from libevent when adding event for %s", - debug_ntoa(ns->address)); - /* ???? Do more? */ - } -} - -/* a callback function. Called by libevent when the kernel says that */ -/* a nameserver socket is ready for writing or reading */ -static void -nameserver_ready_callback(int fd, short events, void *arg) { - struct nameserver *ns = (struct nameserver *) arg; - (void)fd; - - if (events & EV_WRITE) { - ns->choked = 0; - if (!evdns_transmit()) { - nameserver_write_waiting(ns, 0); - } - } - if (events & EV_READ) { - nameserver_read(ns); - } -} - -/* a callback function. Called by libevent when the kernel says that */ -/* a server socket is ready for writing or reading. */ -static void -server_port_ready_callback(int fd, short events, void *arg) { - struct evdns_server_port *port = (struct evdns_server_port *) arg; - (void) fd; - - if (events & EV_WRITE) { - port->choked = 0; - server_port_flush(port); - } - if (events & EV_READ) { - server_port_read(port); - } -} - -/* This is an inefficient representation; only use it via the dnslabel_table_* - * functions, so that is can be safely replaced with something smarter later. */ -#define MAX_LABELS 128 -/* Structures used to implement name compression */ -struct dnslabel_entry { char *v; off_t pos; }; -struct dnslabel_table { - int n_labels; /* number of current entries */ - /* map from name to position in message */ - struct dnslabel_entry labels[MAX_LABELS]; -}; - -/* Initialize dnslabel_table. */ -static void -dnslabel_table_init(struct dnslabel_table *table) -{ - table->n_labels = 0; -} - -/* Free all storage held by table, but not the table itself. */ -static void -dnslabel_clear(struct dnslabel_table *table) -{ - int i; - for (i = 0; i < table->n_labels; ++i) - free(table->labels[i].v); - table->n_labels = 0; -} - -/* return the position of the label in the current message, or -1 if the label */ -/* hasn't been used yet. */ -static int -dnslabel_table_get_pos(const struct dnslabel_table *table, const char *label) -{ - int i; - for (i = 0; i < table->n_labels; ++i) { - if (!strcmp(label, table->labels[i].v)) - return table->labels[i].pos; - } - return -1; -} - -/* remember that we've used the label at position pos */ -static int -dnslabel_table_add(struct dnslabel_table *table, const char *label, off_t pos) -{ - char *v; - int p; - if (table->n_labels == MAX_LABELS) - return (-1); - v = strdup(label); - if (v == NULL) - return (-1); - p = table->n_labels++; - table->labels[p].v = v; - table->labels[p].pos = pos; - - return (0); -} - -/* Converts a string to a length-prefixed set of DNS labels, starting */ -/* at buf[j]. name and buf must not overlap. name_len should be the length */ -/* of name. table is optional, and is used for compression. */ -/* */ -/* Input: abc.def */ -/* Output: <3>abc<3>def<0> */ -/* */ -/* Returns the first index after the encoded name, or negative on error. */ -/* -1 label was > 63 bytes */ -/* -2 name too long to fit in buffer. */ -/* */ -static off_t -dnsname_to_labels(u8 *const buf, size_t buf_len, off_t j, - const char *name, const int name_len, - struct dnslabel_table *table) { - const char *end = name + name_len; - int ref = 0; - u16 _t; - -#define APPEND16(x) do { \ - if (j + 2 > (off_t)buf_len) \ - goto overflow; \ - _t = htons(x); \ - memcpy(buf + j, &_t, 2); \ - j += 2; \ - } while (0) -#define APPEND32(x) do { \ - if (j + 4 > (off_t)buf_len) \ - goto overflow; \ - _t32 = htonl(x); \ - memcpy(buf + j, &_t32, 4); \ - j += 4; \ - } while (0) - - if (name_len > 255) return -2; - - for (;;) { - const char *const start = name; - if (table && (ref = dnslabel_table_get_pos(table, name)) >= 0) { - APPEND16(ref | 0xc000); - return j; - } - name = strchr(name, '.'); - if (!name) { - const unsigned int label_len = end - start; - if (label_len > 63) return -1; - if ((size_t)(j+label_len+1) > buf_len) return -2; - if (table) dnslabel_table_add(table, start, j); - buf[j++] = label_len; - - memcpy(buf + j, start, end - start); - j += end - start; - break; - } else { - /* append length of the label. */ - const unsigned int label_len = name - start; - if (label_len > 63) return -1; - if ((size_t)(j+label_len+1) > buf_len) return -2; - if (table) dnslabel_table_add(table, start, j); - buf[j++] = label_len; - - memcpy(buf + j, start, name - start); - j += name - start; - /* hop over the '.' */ - name++; - } - } - - /* the labels must be terminated by a 0. */ - /* It's possible that the name ended in a . */ - /* in which case the zero is already there */ - if (!j || buf[j-1]) buf[j++] = 0; - return j; - overflow: - return (-2); -} - -/* Finds the length of a dns request for a DNS name of the given */ -/* length. The actual request may be smaller than the value returned */ -/* here */ -static int -evdns_request_len(const int name_len) { - return 96 + /* length of the DNS standard header */ - name_len + 2 + - 4; /* space for the resource type */ -} - -/* build a dns request packet into buf. buf should be at least as long */ -/* as evdns_request_len told you it should be. */ -/* */ -/* Returns the amount of space used. Negative on error. */ -static int -evdns_request_data_build(const char *const name, const int name_len, - const u16 trans_id, const u16 type, const u16 class, - u8 *const buf, size_t buf_len) { - off_t j = 0; /* current offset into buf */ - u16 _t; /* used by the macros */ - - APPEND16(trans_id); - APPEND16(0x0100); /* standard query, recusion needed */ - APPEND16(1); /* one question */ - APPEND16(0); /* no answers */ - APPEND16(0); /* no authority */ - APPEND16(0); /* no additional */ - - j = dnsname_to_labels(buf, buf_len, j, name, name_len, NULL); - if (j < 0) { - return (int)j; - } - - APPEND16(type); - APPEND16(class); - - return (int)j; - overflow: - return (-1); -} - -/* exported function */ -struct evdns_server_port * -evdns_add_server_port(int socket, int is_tcp, evdns_request_callback_fn_type cb, void *user_data) -{ - struct evdns_server_port *port; - if (!(port = malloc(sizeof(struct evdns_server_port)))) - return NULL; - memset(port, 0, sizeof(struct evdns_server_port)); - - assert(!is_tcp); /* TCP sockets not yet implemented */ - port->socket = socket; - port->refcnt = 1; - port->choked = 0; - port->closing = 0; - port->user_callback = cb; - port->user_data = user_data; - port->pending_replies = NULL; - - event_set(&port->event, port->socket, EV_READ | EV_PERSIST, - server_port_ready_callback, port); - event_add(&port->event, NULL); /* check return. */ - return port; -} - -/* exported function */ -void -evdns_close_server_port(struct evdns_server_port *port) -{ - if (--port->refcnt == 0) - server_port_free(port); - port->closing = 1; -} - -/* exported function */ -int -evdns_server_request_add_reply(struct evdns_server_request *_req, int section, const char *name, int type, int class, int ttl, int datalen, int is_name, const char *data) -{ - struct server_request *req = TO_SERVER_REQUEST(_req); - struct server_reply_item **itemp, *item; - int *countp; - - if (req->response) /* have we already answered? */ - return (-1); - - switch (section) { - case EVDNS_ANSWER_SECTION: - itemp = &req->answer; - countp = &req->n_answer; - break; - case EVDNS_AUTHORITY_SECTION: - itemp = &req->authority; - countp = &req->n_authority; - break; - case EVDNS_ADDITIONAL_SECTION: - itemp = &req->additional; - countp = &req->n_additional; - break; - default: - return (-1); - } - while (*itemp) { - itemp = &((*itemp)->next); - } - item = malloc(sizeof(struct server_reply_item)); - if (!item) - return -1; - item->next = NULL; - if (!(item->name = strdup(name))) { - free(item); - return -1; - } - item->type = type; - item->dns_question_class = class; - item->ttl = ttl; - item->is_name = is_name != 0; - item->datalen = 0; - item->data = NULL; - if (data) { - if (item->is_name) { - if (!(item->data = strdup(data))) { - free(item->name); - free(item); - return -1; - } - item->datalen = (u16)-1; - } else { - if (!(item->data = malloc(datalen))) { - free(item->name); - free(item); - return -1; - } - item->datalen = datalen; - memcpy(item->data, data, datalen); - } - } - - *itemp = item; - ++(*countp); - return 0; -} - -/* exported function */ -int -evdns_server_request_add_a_reply(struct evdns_server_request *req, const char *name, int n, void *addrs, int ttl) -{ - return evdns_server_request_add_reply( - req, EVDNS_ANSWER_SECTION, name, TYPE_A, CLASS_INET, - ttl, n*4, 0, addrs); -} - -/* exported function */ -int -evdns_server_request_add_aaaa_reply(struct evdns_server_request *req, const char *name, int n, void *addrs, int ttl) -{ - return evdns_server_request_add_reply( - req, EVDNS_ANSWER_SECTION, name, TYPE_AAAA, CLASS_INET, - ttl, n*16, 0, addrs); -} - -/* exported function */ -int -evdns_server_request_add_ptr_reply(struct evdns_server_request *req, struct in_addr *in, const char *inaddr_name, const char *hostname, int ttl) -{ - u32 a; - char buf[32]; - assert(in || inaddr_name); - assert(!(in && inaddr_name)); - if (in) { - a = ntohl(in->s_addr); - evutil_snprintf(buf, sizeof(buf), "%d.%d.%d.%d.in-addr.arpa", - (int)(u8)((a )&0xff), - (int)(u8)((a>>8 )&0xff), - (int)(u8)((a>>16)&0xff), - (int)(u8)((a>>24)&0xff)); - inaddr_name = buf; - } - return evdns_server_request_add_reply( - req, EVDNS_ANSWER_SECTION, inaddr_name, TYPE_PTR, CLASS_INET, - ttl, -1, 1, hostname); -} - -/* exported function */ -int -evdns_server_request_add_cname_reply(struct evdns_server_request *req, const char *name, const char *cname, int ttl) -{ - return evdns_server_request_add_reply( - req, EVDNS_ANSWER_SECTION, name, TYPE_CNAME, CLASS_INET, - ttl, -1, 1, cname); -} - - -static int -evdns_server_request_format_response(struct server_request *req, int err) -{ - unsigned char buf[1500]; - size_t buf_len = sizeof(buf); - off_t j = 0, r; - u16 _t; - u32 _t32; - int i; - u16 flags; - struct dnslabel_table table; - - if (err < 0 || err > 15) return -1; - - /* Set response bit and error code; copy OPCODE and RD fields from - * question; copy RA and AA if set by caller. */ - flags = req->base.flags; - flags |= (0x8000 | err); - - dnslabel_table_init(&table); - APPEND16(req->trans_id); - APPEND16(flags); - APPEND16(req->base.nquestions); - APPEND16(req->n_answer); - APPEND16(req->n_authority); - APPEND16(req->n_additional); - - /* Add questions. */ - for (i=0; i < req->base.nquestions; ++i) { - const char *s = req->base.questions[i]->name; - j = dnsname_to_labels(buf, buf_len, j, s, strlen(s), &table); - if (j < 0) { - dnslabel_clear(&table); - return (int) j; - } - APPEND16(req->base.questions[i]->type); - APPEND16(req->base.questions[i]->dns_question_class); - } - - /* Add answer, authority, and additional sections. */ - for (i=0; i<3; ++i) { - struct server_reply_item *item; - if (i==0) - item = req->answer; - else if (i==1) - item = req->authority; - else - item = req->additional; - while (item) { - r = dnsname_to_labels(buf, buf_len, j, item->name, strlen(item->name), &table); - if (r < 0) - goto overflow; - j = r; - - APPEND16(item->type); - APPEND16(item->dns_question_class); - APPEND32(item->ttl); - if (item->is_name) { - off_t len_idx = j, name_start; - j += 2; - name_start = j; - r = dnsname_to_labels(buf, buf_len, j, item->data, strlen(item->data), &table); - if (r < 0) - goto overflow; - j = r; - _t = htons( (short) (j-name_start) ); - memcpy(buf+len_idx, &_t, 2); - } else { - APPEND16(item->datalen); - if (j+item->datalen > (off_t)buf_len) - goto overflow; - memcpy(buf+j, item->data, item->datalen); - j += item->datalen; - } - item = item->next; - } - } - - if (j > 512) { -overflow: - j = 512; - buf[2] |= 0x02; /* set the truncated bit. */ - } - - req->response_len = j; - - if (!(req->response = malloc(req->response_len))) { - server_request_free_answers(req); - dnslabel_clear(&table); - return (-1); - } - memcpy(req->response, buf, req->response_len); - server_request_free_answers(req); - dnslabel_clear(&table); - return (0); -} - -/* exported function */ -int -evdns_server_request_respond(struct evdns_server_request *_req, int err) -{ - struct server_request *req = TO_SERVER_REQUEST(_req); - struct evdns_server_port *port = req->port; - int r; - if (!req->response) { - if ((r = evdns_server_request_format_response(req, err))<0) - return r; - } - - r = sendto(port->socket, req->response, req->response_len, 0, - (struct sockaddr*) &req->addr, req->addrlen); - if (r<0) { - int sock_err = last_error(port->socket); - if (! error_is_eagain(sock_err)) - return -1; - - if (port->pending_replies) { - req->prev_pending = port->pending_replies->prev_pending; - req->next_pending = port->pending_replies; - req->prev_pending->next_pending = - req->next_pending->prev_pending = req; - } else { - req->prev_pending = req->next_pending = req; - port->pending_replies = req; - port->choked = 1; - - (void) event_del(&port->event); - event_set(&port->event, port->socket, (port->closing?0:EV_READ) | EV_WRITE | EV_PERSIST, server_port_ready_callback, port); - - if (event_add(&port->event, NULL) < 0) { - log(EVDNS_LOG_WARN, "Error from libevent when adding event for DNS server"); - } - - } - - return 1; - } - if (server_request_free(req)) - return 0; - - if (port->pending_replies) - server_port_flush(port); - - return 0; -} - -/* Free all storage held by RRs in req. */ -static void -server_request_free_answers(struct server_request *req) -{ - struct server_reply_item *victim, *next, **list; - int i; - for (i = 0; i < 3; ++i) { - if (i==0) - list = &req->answer; - else if (i==1) - list = &req->authority; - else - list = &req->additional; - - victim = *list; - while (victim) { - next = victim->next; - free(victim->name); - if (victim->data) - free(victim->data); - free(victim); - victim = next; - } - *list = NULL; - } -} - -/* Free all storage held by req, and remove links to it. */ -/* return true iff we just wound up freeing the server_port. */ -static int -server_request_free(struct server_request *req) -{ - int i, rc=1; - if (req->base.questions) { - for (i = 0; i < req->base.nquestions; ++i) - free(req->base.questions[i]); - free(req->base.questions); - } - - if (req->port) { - if (req->port->pending_replies == req) { - if (req->next_pending) - req->port->pending_replies = req->next_pending; - else - req->port->pending_replies = NULL; - } - rc = --req->port->refcnt; - } - - if (req->response) { - free(req->response); - } - - server_request_free_answers(req); - - if (req->next_pending && req->next_pending != req) { - req->next_pending->prev_pending = req->prev_pending; - req->prev_pending->next_pending = req->next_pending; - } - - if (rc == 0) { - server_port_free(req->port); - free(req); - return (1); - } - free(req); - return (0); -} - -/* Free all storage held by an evdns_server_port. Only called when */ -static void -server_port_free(struct evdns_server_port *port) -{ - assert(port); - assert(!port->refcnt); - assert(!port->pending_replies); - if (port->socket > 0) { - CLOSE_SOCKET(port->socket); - port->socket = -1; - } - (void) event_del(&port->event); - /* XXXX actually free the port? -NM */ -} - -/* exported function */ -int -evdns_server_request_drop(struct evdns_server_request *_req) -{ - struct server_request *req = TO_SERVER_REQUEST(_req); - server_request_free(req); - return 0; -} - -/* exported function */ -int -evdns_server_request_get_requesting_addr(struct evdns_server_request *_req, struct sockaddr *sa, int addr_len) -{ - struct server_request *req = TO_SERVER_REQUEST(_req); - if (addr_len < (int)req->addrlen) - return -1; - memcpy(sa, &(req->addr), req->addrlen); - return req->addrlen; -} - -#undef APPEND16 -#undef APPEND32 - -/* this is a libevent callback function which is called when a request */ -/* has timed out. */ -static void -evdns_request_timeout_callback(int fd, short events, void *arg) { - struct request *const req = (struct request *) arg; - (void) fd; - (void) events; - - log(EVDNS_LOG_DEBUG, "Request %lx timed out", (unsigned long) arg); - - req->ns->timedout++; - if (req->ns->timedout > global_max_nameserver_timeout) { - req->ns->timedout = 0; - nameserver_failed(req->ns, "request timed out."); - } - - (void) evtimer_del(&req->timeout_event); - if (req->tx_count >= global_max_retransmits) { - /* this request has failed */ - reply_callback(req, 0, DNS_ERR_TIMEOUT, NULL); - request_finished(req, &req_head); - } else { - /* retransmit it */ - evdns_request_transmit(req); - } -} - -/* try to send a request to a given server. */ -/* */ -/* return: */ -/* 0 ok */ -/* 1 temporary failure */ -/* 2 other failure */ -static int -evdns_request_transmit_to(struct request *req, struct nameserver *server) { - struct sockaddr_in sin; - int r; - memset(&sin, 0, sizeof(sin)); - sin.sin_addr.s_addr = req->ns->address; - sin.sin_port = req->ns->port; - sin.sin_family = AF_INET; - - r = sendto(server->socket, req->request, req->request_len, 0, - (struct sockaddr*)&sin, sizeof(sin)); - if (r < 0) { - int err = last_error(server->socket); - if (error_is_eagain(err)) return 1; - nameserver_failed(req->ns, strerror(err)); - return 2; - } else if (r != (int)req->request_len) { - return 1; /* short write */ - } else { - return 0; - } -} - -/* try to send a request, updating the fields of the request */ -/* as needed */ -/* */ -/* return: */ -/* 0 ok */ -/* 1 failed */ -static int -evdns_request_transmit(struct request *req) { - int retcode = 0, r; - - /* if we fail to send this packet then this flag marks it */ - /* for evdns_transmit */ - req->transmit_me = 1; - if (req->trans_id == 0xffff) abort(); - - if (req->ns->choked) { - /* don't bother trying to write to a socket */ - /* which we have had EAGAIN from */ - return 1; - } - - r = evdns_request_transmit_to(req, req->ns); - switch (r) { - case 1: - /* temp failure */ - req->ns->choked = 1; - nameserver_write_waiting(req->ns, 1); - return 1; - case 2: - /* failed in some other way */ - retcode = 1; - /* fall through */ - default: - /* all ok */ - log(EVDNS_LOG_DEBUG, - "Setting timeout for request %lx", (unsigned long) req); - if (evtimer_add(&req->timeout_event, &global_timeout) < 0) { - log(EVDNS_LOG_WARN, - "Error from libevent when adding timer for request %lx", - (unsigned long) req); - /* ???? Do more? */ - } - req->tx_count++; - req->transmit_me = 0; - return retcode; - } -} - -static void -nameserver_probe_callback(int result, char type, int count, int ttl, void *addresses, void *arg) { - struct nameserver *const ns = (struct nameserver *) arg; - (void) type; - (void) count; - (void) ttl; - (void) addresses; - - if (result == DNS_ERR_NONE || result == DNS_ERR_NOTEXIST) { - /* this is a good reply */ - nameserver_up(ns); - } else nameserver_probe_failed(ns); -} - -static void -nameserver_send_probe(struct nameserver *const ns) { - struct request *req; - /* here we need to send a probe to a given nameserver */ - /* in the hope that it is up now. */ - - log(EVDNS_LOG_DEBUG, "Sending probe to %s", debug_ntoa(ns->address)); - - req = request_new(TYPE_A, "www.google.com", DNS_QUERY_NO_SEARCH, nameserver_probe_callback, ns); - if (!req) return; - /* we force this into the inflight queue no matter what */ - request_trans_id_set(req, transaction_id_pick()); - req->ns = ns; - request_submit(req); -} - -/* returns: */ -/* 0 didn't try to transmit anything */ -/* 1 tried to transmit something */ -static int -evdns_transmit(void) { - char did_try_to_transmit = 0; - - if (req_head) { - struct request *const started_at = req_head, *req = req_head; - /* first transmit all the requests which are currently waiting */ - do { - if (req->transmit_me) { - did_try_to_transmit = 1; - evdns_request_transmit(req); - } - - req = req->next; - } while (req != started_at); - } - - return did_try_to_transmit; -} - -/* exported function */ -int -evdns_count_nameservers(void) -{ - const struct nameserver *server = server_head; - int n = 0; - if (!server) - return 0; - do { - ++n; - server = server->next; - } while (server != server_head); - return n; -} - -/* exported function */ -int -evdns_clear_nameservers_and_suspend(void) -{ - struct nameserver *server = server_head, *started_at = server_head; - struct request *req = req_head, *req_started_at = req_head; - - if (!server) - return 0; - while (1) { - struct nameserver *next = server->next; - (void) event_del(&server->event); - if (evtimer_initialized(&server->timeout_event)) - (void) evtimer_del(&server->timeout_event); - if (server->socket >= 0) - CLOSE_SOCKET(server->socket); - free(server); - if (next == started_at) - break; - server = next; - } - server_head = NULL; - global_good_nameservers = 0; - - while (req) { - struct request *next = req->next; - req->tx_count = req->reissue_count = 0; - req->ns = NULL; - /* ???? What to do about searches? */ - (void) evtimer_del(&req->timeout_event); - req->trans_id = 0; - req->transmit_me = 0; - - global_requests_waiting++; - evdns_request_insert(req, &req_waiting_head); - /* We want to insert these suspended elements at the front of - * the waiting queue, since they were pending before any of - * the waiting entries were added. This is a circular list, - * so we can just shift the start back by one.*/ - req_waiting_head = req_waiting_head->prev; - - if (next == req_started_at) - break; - req = next; - } - req_head = NULL; - global_requests_inflight = 0; - - return 0; -} - - -/* exported function */ -int -evdns_resume(void) -{ - evdns_requests_pump_waiting_queue(); - return 0; -} - -static int -_evdns_nameserver_add_impl(unsigned long int address, int port) { - /* first check to see if we already have this nameserver */ - - const struct nameserver *server = server_head, *const started_at = server_head; - struct nameserver *ns; - int err = 0; - if (server) { - do { - if (server->address == address) return 3; - server = server->next; - } while (server != started_at); - } - - ns = (struct nameserver *) malloc(sizeof(struct nameserver)); - if (!ns) return -1; - - memset(ns, 0, sizeof(struct nameserver)); - - evtimer_set(&ns->timeout_event, nameserver_prod_callback, ns); - - ns->socket = socket(PF_INET, SOCK_DGRAM, 0); - if (ns->socket < 0) { err = 1; goto out1; } - evutil_make_socket_nonblocking(ns->socket); - - ns->address = address; - ns->port = htons(port); - ns->state = 1; - event_set(&ns->event, ns->socket, EV_READ | EV_PERSIST, nameserver_ready_callback, ns); - if (event_add(&ns->event, NULL) < 0) { - err = 2; - goto out2; - } - - log(EVDNS_LOG_DEBUG, "Added nameserver %s", debug_ntoa(address)); - - /* insert this nameserver into the list of them */ - if (!server_head) { - ns->next = ns->prev = ns; - server_head = ns; - } else { - ns->next = server_head->next; - ns->prev = server_head; - server_head->next = ns; - if (server_head->prev == server_head) { - server_head->prev = ns; - } - } - - global_good_nameservers++; - - return 0; - -out2: - CLOSE_SOCKET(ns->socket); -out1: - free(ns); - log(EVDNS_LOG_WARN, "Unable to add nameserver %s: error %d", debug_ntoa(address), err); - return err; -} - -/* exported function */ -int -evdns_nameserver_add(unsigned long int address) { - return _evdns_nameserver_add_impl(address, 53); -} - -/* exported function */ -int -evdns_nameserver_ip_add(const char *ip_as_string) { - struct in_addr ina; - int port; - char buf[20]; - const char *cp; - cp = strchr(ip_as_string, ':'); - if (! cp) { - cp = ip_as_string; - port = 53; - } else { - port = strtoint(cp+1); - if (port < 0 || port > 65535) { - return 4; - } - if ((cp-ip_as_string) >= (int)sizeof(buf)) { - return 4; - } - memcpy(buf, ip_as_string, cp-ip_as_string); - buf[cp-ip_as_string] = '\0'; - cp = buf; - } - if (!inet_aton(cp, &ina)) { - return 4; - } - return _evdns_nameserver_add_impl(ina.s_addr, port); -} - -/* insert into the tail of the queue */ -static void -evdns_request_insert(struct request *req, struct request **head) { - if (!*head) { - *head = req; - req->next = req->prev = req; - return; - } - - req->prev = (*head)->prev; - req->prev->next = req; - req->next = *head; - (*head)->prev = req; -} - -static int -string_num_dots(const char *s) { - int count = 0; - while ((s = strchr(s, '.'))) { - s++; - count++; - } - return count; -} - -static struct request * -request_new(int type, const char *name, int flags, - evdns_callback_type callback, void *user_ptr) { - const char issuing_now = - (global_requests_inflight < global_max_requests_inflight) ? 1 : 0; - - const int name_len = strlen(name); - const int request_max_len = evdns_request_len(name_len); - const u16 trans_id = issuing_now ? transaction_id_pick() : 0xffff; - /* the request data is alloced in a single block with the header */ - struct request *const req = - (struct request *) malloc(sizeof(struct request) + request_max_len); - int rlen; - (void) flags; - - if (!req) return NULL; - memset(req, 0, sizeof(struct request)); - - evtimer_set(&req->timeout_event, evdns_request_timeout_callback, req); - - /* request data lives just after the header */ - req->request = ((u8 *) req) + sizeof(struct request); - /* denotes that the request data shouldn't be free()ed */ - req->request_appended = 1; - rlen = evdns_request_data_build(name, name_len, trans_id, - type, CLASS_INET, req->request, request_max_len); - if (rlen < 0) - goto err1; - req->request_len = rlen; - req->trans_id = trans_id; - req->tx_count = 0; - req->request_type = type; - req->user_pointer = user_ptr; - req->user_callback = callback; - req->ns = issuing_now ? nameserver_pick() : NULL; - req->next = req->prev = NULL; - - return req; -err1: - free(req); - return NULL; -} - -static void -request_submit(struct request *const req) { - if (req->ns) { - /* if it has a nameserver assigned then this is going */ - /* straight into the inflight queue */ - evdns_request_insert(req, &req_head); - global_requests_inflight++; - evdns_request_transmit(req); - } else { - evdns_request_insert(req, &req_waiting_head); - global_requests_waiting++; - } -} - -/* exported function */ -int evdns_resolve_ipv4(const char *name, int flags, - evdns_callback_type callback, void *ptr) { - log(EVDNS_LOG_DEBUG, "Resolve requested for %s", name); - if (flags & DNS_QUERY_NO_SEARCH) { - struct request *const req = - request_new(TYPE_A, name, flags, callback, ptr); - if (req == NULL) - return (1); - request_submit(req); - return (0); - } else { - return (search_request_new(TYPE_A, name, flags, callback, ptr)); - } -} - -/* exported function */ -int evdns_resolve_ipv6(const char *name, int flags, - evdns_callback_type callback, void *ptr) { - log(EVDNS_LOG_DEBUG, "Resolve requested for %s", name); - if (flags & DNS_QUERY_NO_SEARCH) { - struct request *const req = - request_new(TYPE_AAAA, name, flags, callback, ptr); - if (req == NULL) - return (1); - request_submit(req); - return (0); - } else { - return (search_request_new(TYPE_AAAA, name, flags, callback, ptr)); - } -} - -int evdns_resolve_reverse(const struct in_addr *in, int flags, evdns_callback_type callback, void *ptr) { - char buf[32]; - struct request *req; - u32 a; - assert(in); - a = ntohl(in->s_addr); - evutil_snprintf(buf, sizeof(buf), "%d.%d.%d.%d.in-addr.arpa", - (int)(u8)((a )&0xff), - (int)(u8)((a>>8 )&0xff), - (int)(u8)((a>>16)&0xff), - (int)(u8)((a>>24)&0xff)); - log(EVDNS_LOG_DEBUG, "Resolve requested for %s (reverse)", buf); - req = request_new(TYPE_PTR, buf, flags, callback, ptr); - if (!req) return 1; - request_submit(req); - return 0; -} - -int evdns_resolve_reverse_ipv6(const struct in6_addr *in, int flags, evdns_callback_type callback, void *ptr) { - /* 32 nybbles, 32 periods, "ip6.arpa", NUL. */ - char buf[73]; - char *cp; - struct request *req; - int i; - assert(in); - cp = buf; - for (i=15; i >= 0; --i) { - u8 byte = in->s6_addr[i]; - *cp++ = "0123456789abcdef"[byte & 0x0f]; - *cp++ = '.'; - *cp++ = "0123456789abcdef"[byte >> 4]; - *cp++ = '.'; - } - assert(cp + strlen("ip6.arpa") < buf+sizeof(buf)); - memcpy(cp, "ip6.arpa", strlen("ip6.arpa")+1); - log(EVDNS_LOG_DEBUG, "Resolve requested for %s (reverse)", buf); - req = request_new(TYPE_PTR, buf, flags, callback, ptr); - if (!req) return 1; - request_submit(req); - return 0; -} - -/*/////////////////////////////////////////////////////////////////// */ -/* Search support */ -/* */ -/* the libc resolver has support for searching a number of domains */ -/* to find a name. If nothing else then it takes the single domain */ -/* from the gethostname() call. */ -/* */ -/* It can also be configured via the domain and search options in a */ -/* resolv.conf. */ -/* */ -/* The ndots option controls how many dots it takes for the resolver */ -/* to decide that a name is non-local and so try a raw lookup first. */ - -struct search_domain { - int len; - struct search_domain *next; - /* the text string is appended to this structure */ -}; - -struct search_state { - int refcount; - int ndots; - int num_domains; - struct search_domain *head; -}; - -static struct search_state *global_search_state = NULL; - -static void -search_state_decref(struct search_state *const state) { - if (!state) return; - state->refcount--; - if (!state->refcount) { - struct search_domain *next, *dom; - for (dom = state->head; dom; dom = next) { - next = dom->next; - free(dom); - } - free(state); - } -} - -static struct search_state * -search_state_new(void) { - struct search_state *state = (struct search_state *) malloc(sizeof(struct search_state)); - if (!state) return NULL; - memset(state, 0, sizeof(struct search_state)); - state->refcount = 1; - state->ndots = 1; - - return state; -} - -static void -search_postfix_clear(void) { - search_state_decref(global_search_state); - - global_search_state = search_state_new(); -} - -/* exported function */ -void -evdns_search_clear(void) { - search_postfix_clear(); -} - -static void -search_postfix_add(const char *domain) { - int domain_len; - struct search_domain *sdomain; - while (domain[0] == '.') domain++; - domain_len = strlen(domain); - - if (!global_search_state) global_search_state = search_state_new(); - if (!global_search_state) return; - global_search_state->num_domains++; - - sdomain = (struct search_domain *) malloc(sizeof(struct search_domain) + domain_len); - if (!sdomain) return; - memcpy( ((u8 *) sdomain) + sizeof(struct search_domain), domain, domain_len); - sdomain->next = global_search_state->head; - sdomain->len = domain_len; - - global_search_state->head = sdomain; -} - -/* reverse the order of members in the postfix list. This is needed because, */ -/* when parsing resolv.conf we push elements in the wrong order */ -static void -search_reverse(void) { - struct search_domain *cur, *prev = NULL, *next; - cur = global_search_state->head; - while (cur) { - next = cur->next; - cur->next = prev; - prev = cur; - cur = next; - } - - global_search_state->head = prev; -} - -/* exported function */ -void -evdns_search_add(const char *domain) { - search_postfix_add(domain); -} - -/* exported function */ -void -evdns_search_ndots_set(const int ndots) { - if (!global_search_state) global_search_state = search_state_new(); - if (!global_search_state) return; - global_search_state->ndots = ndots; -} - -static void -search_set_from_hostname(void) { - char hostname[HOST_NAME_MAX + 1], *domainname; - - search_postfix_clear(); - if (gethostname(hostname, sizeof(hostname))) return; - domainname = strchr(hostname, '.'); - if (!domainname) return; - search_postfix_add(domainname); -} - -/* warning: returns malloced string */ -static char * -search_make_new(const struct search_state *const state, int n, const char *const base_name) { - const int base_len = strlen(base_name); - const char need_to_append_dot = base_name[base_len - 1] == '.' ? 0 : 1; - struct search_domain *dom; - - for (dom = state->head; dom; dom = dom->next) { - if (!n--) { - /* this is the postfix we want */ - /* the actual postfix string is kept at the end of the structure */ - const u8 *const postfix = ((u8 *) dom) + sizeof(struct search_domain); - const int postfix_len = dom->len; - char *const newname = (char *) malloc(base_len + need_to_append_dot + postfix_len + 1); - if (!newname) return NULL; - memcpy(newname, base_name, base_len); - if (need_to_append_dot) newname[base_len] = '.'; - memcpy(newname + base_len + need_to_append_dot, postfix, postfix_len); - newname[base_len + need_to_append_dot + postfix_len] = 0; - return newname; - } - } - - /* we ran off the end of the list and still didn't find the requested string */ - abort(); - return NULL; /* unreachable; stops warnings in some compilers. */ -} - -static int -search_request_new(int type, const char *const name, int flags, evdns_callback_type user_callback, void *user_arg) { - assert(type == TYPE_A || type == TYPE_AAAA); - if ( ((flags & DNS_QUERY_NO_SEARCH) == 0) && - global_search_state && - global_search_state->num_domains) { - /* we have some domains to search */ - struct request *req; - if (string_num_dots(name) >= global_search_state->ndots) { - req = request_new(type, name, flags, user_callback, user_arg); - if (!req) return 1; - req->search_index = -1; - } else { - char *const new_name = search_make_new(global_search_state, 0, name); - if (!new_name) return 1; - req = request_new(type, new_name, flags, user_callback, user_arg); - free(new_name); - if (!req) return 1; - req->search_index = 0; - } - req->search_origname = strdup(name); - req->search_state = global_search_state; - req->search_flags = flags; - global_search_state->refcount++; - request_submit(req); - return 0; - } else { - struct request *const req = request_new(type, name, flags, user_callback, user_arg); - if (!req) return 1; - request_submit(req); - return 0; - } -} - -/* this is called when a request has failed to find a name. We need to check */ -/* if it is part of a search and, if so, try the next name in the list */ -/* returns: */ -/* 0 another request has been submitted */ -/* 1 no more requests needed */ -static int -search_try_next(struct request *const req) { - if (req->search_state) { - /* it is part of a search */ - char *new_name; - struct request *newreq; - req->search_index++; - if (req->search_index >= req->search_state->num_domains) { - /* no more postfixes to try, however we may need to try */ - /* this name without a postfix */ - if (string_num_dots(req->search_origname) < req->search_state->ndots) { - /* yep, we need to try it raw */ - newreq = request_new(req->request_type, req->search_origname, req->search_flags, req->user_callback, req->user_pointer); - log(EVDNS_LOG_DEBUG, "Search: trying raw query %s", req->search_origname); - if (newreq) { - request_submit(newreq); - return 0; - } - } - return 1; - } - - new_name = search_make_new(req->search_state, req->search_index, req->search_origname); - if (!new_name) return 1; - log(EVDNS_LOG_DEBUG, "Search: now trying %s (%d)", new_name, req->search_index); - newreq = request_new(req->request_type, new_name, req->search_flags, req->user_callback, req->user_pointer); - free(new_name); - if (!newreq) return 1; - newreq->search_origname = req->search_origname; - req->search_origname = NULL; - newreq->search_state = req->search_state; - newreq->search_flags = req->search_flags; - newreq->search_index = req->search_index; - newreq->search_state->refcount++; - request_submit(newreq); - return 0; - } - return 1; -} - -static void -search_request_finished(struct request *const req) { - if (req->search_state) { - search_state_decref(req->search_state); - req->search_state = NULL; - } - if (req->search_origname) { - free(req->search_origname); - req->search_origname = NULL; - } -} - -/*/////////////////////////////////////////////////////////////////// */ -/* Parsing resolv.conf files */ - -static void -evdns_resolv_set_defaults(int flags) { - /* if the file isn't found then we assume a local resolver */ - if (flags & DNS_OPTION_SEARCH) search_set_from_hostname(); - if (flags & DNS_OPTION_NAMESERVERS) evdns_nameserver_ip_add("127.0.0.1"); -} - -#ifndef HAVE_STRTOK_R -static char * -strtok_r(char *s, const char *delim, char **state) { - return strtok(s, delim); -} -#endif - -/* helper version of atoi which returns -1 on error */ -static int -strtoint(const char *const str) { - char *endptr; - const int r = strtol(str, &endptr, 10); - if (*endptr) return -1; - return r; -} - -/* helper version of atoi that returns -1 on error and clips to bounds. */ -static int -strtoint_clipped(const char *const str, int min, int max) -{ - int r = strtoint(str); - if (r == -1) - return r; - else if (rmax) - return max; - else - return r; -} - -/* exported function */ -int -evdns_set_option(const char *option, const char *val, int flags) -{ - if (!strncmp(option, "ndots:", 6)) { - const int ndots = strtoint(val); - if (ndots == -1) return -1; - if (!(flags & DNS_OPTION_SEARCH)) return 0; - log(EVDNS_LOG_DEBUG, "Setting ndots to %d", ndots); - if (!global_search_state) global_search_state = search_state_new(); - if (!global_search_state) return -1; - global_search_state->ndots = ndots; - } else if (!strncmp(option, "timeout:", 8)) { - const int timeout = strtoint(val); - if (timeout == -1) return -1; - if (!(flags & DNS_OPTION_MISC)) return 0; - log(EVDNS_LOG_DEBUG, "Setting timeout to %d", timeout); - global_timeout.tv_sec = timeout; - } else if (!strncmp(option, "max-timeouts:", 12)) { - const int maxtimeout = strtoint_clipped(val, 1, 255); - if (maxtimeout == -1) return -1; - if (!(flags & DNS_OPTION_MISC)) return 0; - log(EVDNS_LOG_DEBUG, "Setting maximum allowed timeouts to %d", - maxtimeout); - global_max_nameserver_timeout = maxtimeout; - } else if (!strncmp(option, "max-inflight:", 13)) { - const int maxinflight = strtoint_clipped(val, 1, 65000); - if (maxinflight == -1) return -1; - if (!(flags & DNS_OPTION_MISC)) return 0; - log(EVDNS_LOG_DEBUG, "Setting maximum inflight requests to %d", - maxinflight); - global_max_requests_inflight = maxinflight; - } else if (!strncmp(option, "attempts:", 9)) { - int retries = strtoint(val); - if (retries == -1) return -1; - if (retries > 255) retries = 255; - if (!(flags & DNS_OPTION_MISC)) return 0; - log(EVDNS_LOG_DEBUG, "Setting retries to %d", retries); - global_max_retransmits = retries; - } - return 0; -} - -static void -resolv_conf_parse_line(char *const start, int flags) { - char *strtok_state; - static const char *const delims = " \t"; -#define NEXT_TOKEN strtok_r(NULL, delims, &strtok_state) - - char *const first_token = strtok_r(start, delims, &strtok_state); - if (!first_token) return; - - if (!strcmp(first_token, "nameserver") && (flags & DNS_OPTION_NAMESERVERS)) { - const char *const nameserver = NEXT_TOKEN; - struct in_addr ina; - - if (inet_aton(nameserver, &ina)) { - /* address is valid */ - evdns_nameserver_add(ina.s_addr); - } - } else if (!strcmp(first_token, "domain") && (flags & DNS_OPTION_SEARCH)) { - const char *const domain = NEXT_TOKEN; - if (domain) { - search_postfix_clear(); - search_postfix_add(domain); - } - } else if (!strcmp(first_token, "search") && (flags & DNS_OPTION_SEARCH)) { - const char *domain; - search_postfix_clear(); - - while ((domain = NEXT_TOKEN)) { - search_postfix_add(domain); - } - search_reverse(); - } else if (!strcmp(first_token, "options")) { - const char *option; - while ((option = NEXT_TOKEN)) { - const char *val = strchr(option, ':'); - evdns_set_option(option, val ? val+1 : "", flags); - } - } -#undef NEXT_TOKEN -} - -/* exported function */ -/* returns: */ -/* 0 no errors */ -/* 1 failed to open file */ -/* 2 failed to stat file */ -/* 3 file too large */ -/* 4 out of memory */ -/* 5 short read from file */ -int -evdns_resolv_conf_parse(int flags, const char *const filename) { - struct stat st; - int fd, n, r; - u8 *resolv; - char *start; - int err = 0; - - log(EVDNS_LOG_DEBUG, "Parsing resolv.conf file %s", filename); - - fd = open(filename, O_RDONLY); - if (fd < 0) { - evdns_resolv_set_defaults(flags); - return 1; - } - - if (fstat(fd, &st)) { err = 2; goto out1; } - if (!st.st_size) { - evdns_resolv_set_defaults(flags); - err = (flags & DNS_OPTION_NAMESERVERS) ? 6 : 0; - goto out1; - } - if (st.st_size > 65535) { err = 3; goto out1; } /* no resolv.conf should be any bigger */ - - resolv = (u8 *) malloc((size_t)st.st_size + 1); - if (!resolv) { err = 4; goto out1; } - - n = 0; - while ((r = read(fd, resolv+n, (size_t)st.st_size-n)) > 0) { - n += r; - if (n == st.st_size) - break; - assert(n < st.st_size); - } - if (r < 0) { err = 5; goto out2; } - resolv[n] = 0; /* we malloced an extra byte; this should be fine. */ - - start = (char *) resolv; - for (;;) { - char *const newline = strchr(start, '\n'); - if (!newline) { - resolv_conf_parse_line(start, flags); - break; - } else { - *newline = 0; - resolv_conf_parse_line(start, flags); - start = newline + 1; - } - } - - if (!server_head && (flags & DNS_OPTION_NAMESERVERS)) { - /* no nameservers were configured. */ - evdns_nameserver_ip_add("127.0.0.1"); - err = 6; - } - if (flags & DNS_OPTION_SEARCH && (!global_search_state || global_search_state->num_domains == 0)) { - search_set_from_hostname(); - } - -out2: - free(resolv); -out1: - close(fd); - return err; -} - -#ifdef WIN32 -/* Add multiple nameservers from a space-or-comma-separated list. */ -static int -evdns_nameserver_ip_add_line(const char *ips) { - const char *addr; - char *buf; - int r; - while (*ips) { - while (ISSPACE(*ips) || *ips == ',' || *ips == '\t') - ++ips; - addr = ips; - while (ISDIGIT(*ips) || *ips == '.' || *ips == ':') - ++ips; - buf = malloc(ips-addr+1); - if (!buf) return 4; - memcpy(buf, addr, ips-addr); - buf[ips-addr] = '\0'; - r = evdns_nameserver_ip_add(buf); - free(buf); - if (r) return r; - } - return 0; -} - -typedef DWORD(WINAPI *GetNetworkParams_fn_t)(FIXED_INFO *, DWORD*); - -/* Use the windows GetNetworkParams interface in iphlpapi.dll to */ -/* figure out what our nameservers are. */ -static int -load_nameservers_with_getnetworkparams(void) -{ - /* Based on MSDN examples and inspection of c-ares code. */ - FIXED_INFO *fixed; - HMODULE handle = 0; - ULONG size = sizeof(FIXED_INFO); - void *buf = NULL; - int status = 0, r, added_any; - IP_ADDR_STRING *ns; - GetNetworkParams_fn_t fn; - - if (!(handle = LoadLibrary("iphlpapi.dll"))) { - log(EVDNS_LOG_WARN, "Could not open iphlpapi.dll"); - status = -1; - goto done; - } - if (!(fn = (GetNetworkParams_fn_t) GetProcAddress(handle, "GetNetworkParams"))) { - log(EVDNS_LOG_WARN, "Could not get address of function."); - status = -1; - goto done; - } - - buf = malloc(size); - if (!buf) { status = 4; goto done; } - fixed = buf; - r = fn(fixed, &size); - if (r != ERROR_SUCCESS && r != ERROR_BUFFER_OVERFLOW) { - status = -1; - goto done; - } - if (r != ERROR_SUCCESS) { - free(buf); - buf = malloc(size); - if (!buf) { status = 4; goto done; } - fixed = buf; - r = fn(fixed, &size); - if (r != ERROR_SUCCESS) { - log(EVDNS_LOG_DEBUG, "fn() failed."); - status = -1; - goto done; - } - } - - assert(fixed); - added_any = 0; - ns = &(fixed->DnsServerList); - while (ns) { - r = evdns_nameserver_ip_add_line(ns->IpAddress.String); - if (r) { - log(EVDNS_LOG_DEBUG,"Could not add nameserver %s to list,error: %d", - (ns->IpAddress.String),(int)GetLastError()); - status = r; - goto done; - } else { - log(EVDNS_LOG_DEBUG,"Succesfully added %s as nameserver",ns->IpAddress.String); - } - - added_any++; - ns = ns->Next; - } - - if (!added_any) { - log(EVDNS_LOG_DEBUG, "No nameservers added."); - status = -1; - } - - done: - if (buf) - free(buf); - if (handle) - FreeLibrary(handle); - return status; -} - -static int -config_nameserver_from_reg_key(HKEY key, const char *subkey) -{ - char *buf; - DWORD bufsz = 0, type = 0; - int status = 0; - - if (RegQueryValueEx(key, subkey, 0, &type, NULL, &bufsz) - != ERROR_MORE_DATA) - return -1; - if (!(buf = malloc(bufsz))) - return -1; - - if (RegQueryValueEx(key, subkey, 0, &type, (LPBYTE)buf, &bufsz) - == ERROR_SUCCESS && bufsz > 1) { - status = evdns_nameserver_ip_add_line(buf); - } - - free(buf); - return status; -} - -#define SERVICES_KEY "System\\CurrentControlSet\\Services\\" -#define WIN_NS_9X_KEY SERVICES_KEY "VxD\\MSTCP" -#define WIN_NS_NT_KEY SERVICES_KEY "Tcpip\\Parameters" - -static int -load_nameservers_from_registry(void) -{ - int found = 0; - int r; -#define TRY(k, name) \ - if (!found && config_nameserver_from_reg_key(k,name) == 0) { \ - log(EVDNS_LOG_DEBUG,"Found nameservers in %s/%s",#k,name); \ - found = 1; \ - } else if (!found) { \ - log(EVDNS_LOG_DEBUG,"Didn't find nameservers in %s/%s", \ - #k,#name); \ - } - - if (((int)GetVersion()) > 0) { /* NT */ - HKEY nt_key = 0, interfaces_key = 0; - - if (RegOpenKeyEx(HKEY_LOCAL_MACHINE, WIN_NS_NT_KEY, 0, - KEY_READ, &nt_key) != ERROR_SUCCESS) { - log(EVDNS_LOG_DEBUG,"Couldn't open nt key, %d",(int)GetLastError()); - return -1; - } - r = RegOpenKeyEx(nt_key, "Interfaces", 0, - KEY_QUERY_VALUE|KEY_ENUMERATE_SUB_KEYS, - &interfaces_key); - if (r != ERROR_SUCCESS) { - log(EVDNS_LOG_DEBUG,"Couldn't open interfaces key, %d",(int)GetLastError()); - return -1; - } - TRY(nt_key, "NameServer"); - TRY(nt_key, "DhcpNameServer"); - TRY(interfaces_key, "NameServer"); - TRY(interfaces_key, "DhcpNameServer"); - RegCloseKey(interfaces_key); - RegCloseKey(nt_key); - } else { - HKEY win_key = 0; - if (RegOpenKeyEx(HKEY_LOCAL_MACHINE, WIN_NS_9X_KEY, 0, - KEY_READ, &win_key) != ERROR_SUCCESS) { - log(EVDNS_LOG_DEBUG, "Couldn't open registry key, %d", (int)GetLastError()); - return -1; - } - TRY(win_key, "NameServer"); - RegCloseKey(win_key); - } - - if (found == 0) { - log(EVDNS_LOG_WARN,"Didn't find any nameservers."); - } - - return found ? 0 : -1; -#undef TRY -} - -int -evdns_config_windows_nameservers(void) -{ - if (load_nameservers_with_getnetworkparams() == 0) - return 0; - return load_nameservers_from_registry(); -} -#endif - -int -evdns_init(void) -{ - int res = 0; -#ifdef WIN32 - res = evdns_config_windows_nameservers(); -#else - res = evdns_resolv_conf_parse(DNS_OPTIONS_ALL, "/etc/resolv.conf"); -#endif - - return (res); -} - -const char * -evdns_err_to_string(int err) -{ - switch (err) { - case DNS_ERR_NONE: return "no error"; - case DNS_ERR_FORMAT: return "misformatted query"; - case DNS_ERR_SERVERFAILED: return "server failed"; - case DNS_ERR_NOTEXIST: return "name does not exist"; - case DNS_ERR_NOTIMPL: return "query not implemented"; - case DNS_ERR_REFUSED: return "refused"; - - case DNS_ERR_TRUNCATED: return "reply truncated or ill-formed"; - case DNS_ERR_UNKNOWN: return "unknown"; - case DNS_ERR_TIMEOUT: return "request timed out"; - case DNS_ERR_SHUTDOWN: return "dns subsystem shut down"; - default: return "[Unknown error code]"; - } -} - -void -evdns_shutdown(int fail_requests) -{ - struct nameserver *server, *server_next; - struct search_domain *dom, *dom_next; - - while (req_head) { - if (fail_requests) - reply_callback(req_head, 0, DNS_ERR_SHUTDOWN, NULL); - request_finished(req_head, &req_head); - } - while (req_waiting_head) { - if (fail_requests) - reply_callback(req_waiting_head, 0, DNS_ERR_SHUTDOWN, NULL); - request_finished(req_waiting_head, &req_waiting_head); - } - global_requests_inflight = global_requests_waiting = 0; - - for (server = server_head; server; server = server_next) { - server_next = server->next; - if (server->socket >= 0) - CLOSE_SOCKET(server->socket); - (void) event_del(&server->event); - if (server->state == 0) - (void) event_del(&server->timeout_event); - free(server); - if (server_next == server_head) - break; - } - server_head = NULL; - global_good_nameservers = 0; - - if (global_search_state) { - for (dom = global_search_state->head; dom; dom = dom_next) { - dom_next = dom->next; - free(dom); - } - free(global_search_state); - global_search_state = NULL; - } - evdns_log_fn = NULL; -} - -#ifdef EVDNS_MAIN -void -main_callback(int result, char type, int count, int ttl, - void *addrs, void *orig) { - char *n = (char*)orig; - int i; - for (i = 0; i < count; ++i) { - if (type == DNS_IPv4_A) { - printf("%s: %s\n", n, debug_ntoa(((u32*)addrs)[i])); - } else if (type == DNS_PTR) { - printf("%s: %s\n", n, ((char**)addrs)[i]); - } - } - if (!count) { - printf("%s: No answer (%d)\n", n, result); - } - fflush(stdout); -} -void -evdns_server_callback(struct evdns_server_request *req, void *data) -{ - int i, r; - (void)data; - /* dummy; give 192.168.11.11 as an answer for all A questions, - * give foo.bar.example.com as an answer for all PTR questions. */ - for (i = 0; i < req->nquestions; ++i) { - u32 ans = htonl(0xc0a80b0bUL); - if (req->questions[i]->type == EVDNS_TYPE_A && - req->questions[i]->dns_question_class == EVDNS_CLASS_INET) { - printf(" -- replying for %s (A)\n", req->questions[i]->name); - r = evdns_server_request_add_a_reply(req, req->questions[i]->name, - 1, &ans, 10); - if (r<0) - printf("eeep, didn't work.\n"); - } else if (req->questions[i]->type == EVDNS_TYPE_PTR && - req->questions[i]->dns_question_class == EVDNS_CLASS_INET) { - printf(" -- replying for %s (PTR)\n", req->questions[i]->name); - r = evdns_server_request_add_ptr_reply(req, NULL, req->questions[i]->name, - "foo.bar.example.com", 10); - } else { - printf(" -- skipping %s [%d %d]\n", req->questions[i]->name, - req->questions[i]->type, req->questions[i]->dns_question_class); - } - } - - r = evdns_request_respond(req, 0); - if (r<0) - printf("eeek, couldn't send reply.\n"); -} - -void -logfn(int is_warn, const char *msg) { - (void) is_warn; - fprintf(stderr, "%s\n", msg); -} -int -main(int c, char **v) { - int idx; - int reverse = 0, verbose = 1, servertest = 0; - if (c<2) { - fprintf(stderr, "syntax: %s [-x] [-v] hostname\n", v[0]); - fprintf(stderr, "syntax: %s [-servertest]\n", v[0]); - return 1; - } - idx = 1; - while (idx < c && v[idx][0] == '-') { - if (!strcmp(v[idx], "-x")) - reverse = 1; - else if (!strcmp(v[idx], "-v")) - verbose = 1; - else if (!strcmp(v[idx], "-servertest")) - servertest = 1; - else - fprintf(stderr, "Unknown option %s\n", v[idx]); - ++idx; - } - event_init(); - if (verbose) - evdns_set_log_fn(logfn); - evdns_resolv_conf_parse(DNS_OPTION_NAMESERVERS, "/etc/resolv.conf"); - if (servertest) { - int sock; - struct sockaddr_in my_addr; - sock = socket(PF_INET, SOCK_DGRAM, 0); - evutil_make_socket_nonblocking(sock); - my_addr.sin_family = AF_INET; - my_addr.sin_port = htons(10053); - my_addr.sin_addr.s_addr = INADDR_ANY; - if (bind(sock, (struct sockaddr*)&my_addr, sizeof(my_addr))<0) { - perror("bind"); - exit(1); - } - evdns_add_server_port(sock, 0, evdns_server_callback, NULL); - } - for (; idx < c; ++idx) { - if (reverse) { - struct in_addr addr; - if (!inet_aton(v[idx], &addr)) { - fprintf(stderr, "Skipping non-IP %s\n", v[idx]); - continue; - } - fprintf(stderr, "resolving %s...\n",v[idx]); - evdns_resolve_reverse(&addr, 0, main_callback, v[idx]); - } else { - fprintf(stderr, "resolving (fwd) %s...\n",v[idx]); - evdns_resolve_ipv4(v[idx], 0, main_callback, v[idx]); - } - } - fflush(stdout); - event_dispatch(); - return 0; -} -#endif diff -Nru mysql-5.7-5.7.25/libevent/evdns.h mysql-5.7-5.7.26/libevent/evdns.h --- mysql-5.7-5.7.25/libevent/evdns.h 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/evdns.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,528 +0,0 @@ -/* - * Copyright (c) 2006 Niels Provos - * All rights reserved. - * - * 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. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -/* - * The original DNS code is due to Adam Langley with heavy - * modifications by Nick Mathewson. Adam put his DNS software in the - * public domain. You can find his original copyright below. Please, - * aware that the code as part of libevent is governed by the 3-clause - * BSD license above. - * - * This software is Public Domain. To view a copy of the public domain dedication, - * visit http://creativecommons.org/licenses/publicdomain/ or send a letter to - * Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA. - * - * I ask and expect, but do not require, that all derivative works contain an - * attribution similar to: - * Parts developed by Adam Langley - * - * You may wish to replace the word "Parts" with something else depending on - * the amount of original code. - * - * (Derivative works does not include programs which link against, run or include - * the source verbatim in their source distributions) - */ - -/** @file evdns.h - * - * Welcome, gentle reader - * - * Async DNS lookups are really a whole lot harder than they should be, - * mostly stemming from the fact that the libc resolver has never been - * very good at them. Before you use this library you should see if libc - * can do the job for you with the modern async call getaddrinfo_a - * (see http://www.imperialviolet.org/page25.html#e498). Otherwise, - * please continue. - * - * This code is based on libevent and you must call event_init before - * any of the APIs in this file. You must also seed the OpenSSL random - * source if you are using OpenSSL for ids (see below). - * - * This library is designed to be included and shipped with your source - * code. You statically link with it. You should also test for the - * existence of strtok_r and define HAVE_STRTOK_R if you have it. - * - * The DNS protocol requires a good source of id numbers and these - * numbers should be unpredictable for spoofing reasons. There are - * three methods for generating them here and you must define exactly - * one of them. In increasing order of preference: - * - * DNS_USE_GETTIMEOFDAY_FOR_ID: - * Using the bottom 16 bits of the usec result from gettimeofday. This - * is a pretty poor solution but should work anywhere. - * DNS_USE_CPU_CLOCK_FOR_ID: - * Using the bottom 16 bits of the nsec result from the CPU's time - * counter. This is better, but may not work everywhere. Requires - * POSIX realtime support and you'll need to link against -lrt on - * glibc systems at least. - * DNS_USE_OPENSSL_FOR_ID: - * Uses the OpenSSL RAND_bytes call to generate the data. You must - * have seeded the pool before making any calls to this library. - * - * The library keeps track of the state of nameservers and will avoid - * them when they go down. Otherwise it will round robin between them. - * - * Quick start guide: - * #include "evdns.h" - * void callback(int result, char type, int count, int ttl, - * void *addresses, void *arg); - * evdns_resolv_conf_parse(DNS_OPTIONS_ALL, "/etc/resolv.conf"); - * evdns_resolve("www.hostname.com", 0, callback, NULL); - * - * When the lookup is complete the callback function is called. The - * first argument will be one of the DNS_ERR_* defines in evdns.h. - * Hopefully it will be DNS_ERR_NONE, in which case type will be - * DNS_IPv4_A, count will be the number of IP addresses, ttl is the time - * which the data can be cached for (in seconds), addresses will point - * to an array of uint32_t's and arg will be whatever you passed to - * evdns_resolve. - * - * Searching: - * - * In order for this library to be a good replacement for glibc's resolver it - * supports searching. This involves setting a list of default domains, in - * which names will be queried for. The number of dots in the query name - * determines the order in which this list is used. - * - * Searching appears to be a single lookup from the point of view of the API, - * although many DNS queries may be generated from a single call to - * evdns_resolve. Searching can also drastically slow down the resolution - * of names. - * - * To disable searching: - * 1. Never set it up. If you never call evdns_resolv_conf_parse or - * evdns_search_add then no searching will occur. - * - * 2. If you do call evdns_resolv_conf_parse then don't pass - * DNS_OPTION_SEARCH (or DNS_OPTIONS_ALL, which implies it). - * - * 3. When calling evdns_resolve, pass the DNS_QUERY_NO_SEARCH flag. - * - * The order of searches depends on the number of dots in the name. If the - * number is greater than the ndots setting then the names is first tried - * globally. Otherwise each search domain is appended in turn. - * - * The ndots setting can either be set from a resolv.conf, or by calling - * evdns_search_ndots_set. - * - * For example, with ndots set to 1 (the default) and a search domain list of - * ["myhome.net"]: - * Query: www - * Order: www.myhome.net, www. - * - * Query: www.abc - * Order: www.abc., www.abc.myhome.net - * - * Internals: - * - * Requests are kept in two queues. The first is the inflight queue. In - * this queue requests have an allocated transaction id and nameserver. - * They will soon be transmitted if they haven't already been. - * - * The second is the waiting queue. The size of the inflight ring is - * limited and all other requests wait in waiting queue for space. This - * bounds the number of concurrent requests so that we don't flood the - * nameserver. Several algorithms require a full walk of the inflight - * queue and so bounding its size keeps thing going nicely under huge - * (many thousands of requests) loads. - * - * If a nameserver loses too many requests it is considered down and we - * try not to use it. After a while we send a probe to that nameserver - * (a lookup for google.com) and, if it replies, we consider it working - * again. If the nameserver fails a probe we wait longer to try again - * with the next probe. - */ - -#ifndef EVENTDNS_H -#define EVENTDNS_H - -#ifdef __cplusplus -extern "C" { -#endif - -/* For integer types. */ -#include - -/** Error codes 0-5 are as described in RFC 1035. */ -#define DNS_ERR_NONE 0 -/** The name server was unable to interpret the query */ -#define DNS_ERR_FORMAT 1 -/** The name server was unable to process this query due to a problem with the - * name server */ -#define DNS_ERR_SERVERFAILED 2 -/** The domain name does not exist */ -#define DNS_ERR_NOTEXIST 3 -/** The name server does not support the requested kind of query */ -#define DNS_ERR_NOTIMPL 4 -/** The name server refuses to reform the specified operation for policy - * reasons */ -#define DNS_ERR_REFUSED 5 -/** The reply was truncated or ill-formated */ -#define DNS_ERR_TRUNCATED 65 -/** An unknown error occurred */ -#define DNS_ERR_UNKNOWN 66 -/** Communication with the server timed out */ -#define DNS_ERR_TIMEOUT 67 -/** The request was canceled because the DNS subsystem was shut down. */ -#define DNS_ERR_SHUTDOWN 68 - -#define DNS_IPv4_A 1 -#define DNS_PTR 2 -#define DNS_IPv6_AAAA 3 - -#define DNS_QUERY_NO_SEARCH 1 - -#define DNS_OPTION_SEARCH 1 -#define DNS_OPTION_NAMESERVERS 2 -#define DNS_OPTION_MISC 4 -#define DNS_OPTIONS_ALL 7 - -/** - * The callback that contains the results from a lookup. - * - type is either DNS_IPv4_A or DNS_PTR or DNS_IPv6_AAAA - * - count contains the number of addresses of form type - * - ttl is the number of seconds the resolution may be cached for. - * - addresses needs to be cast according to type - */ -typedef void (*evdns_callback_type) (int result, char type, int count, int ttl, void *addresses, void *arg); - -/** - Initialize the asynchronous DNS library. - - This function initializes support for non-blocking name resolution by - calling evdns_resolv_conf_parse() on UNIX and - evdns_config_windows_nameservers() on Windows. - - @return 0 if successful, or -1 if an error occurred - @see evdns_shutdown() - */ -int evdns_init(void); - - -/** - Shut down the asynchronous DNS resolver and terminate all active requests. - - If the 'fail_requests' option is enabled, all active requests will return - an empty result with the error flag set to DNS_ERR_SHUTDOWN. Otherwise, - the requests will be silently discarded. - - @param fail_requests if zero, active requests will be aborted; if non-zero, - active requests will return DNS_ERR_SHUTDOWN. - @see evdns_init() - */ -void evdns_shutdown(int fail_requests); - - -/** - Convert a DNS error code to a string. - - @param err the DNS error code - @return a string containing an explanation of the error code -*/ -const char *evdns_err_to_string(int err); - - -/** - Add a nameserver. - - The address should be an IPv4 address in network byte order. - The type of address is chosen so that it matches in_addr.s_addr. - - @param address an IP address in network byte order - @return 0 if successful, or -1 if an error occurred - @see evdns_nameserver_ip_add() - */ -int evdns_nameserver_add(unsigned long int address); - - -/** - Get the number of configured nameservers. - - This returns the number of configured nameservers (not necessarily the - number of running nameservers). This is useful for double-checking - whether our calls to the various nameserver configuration functions - have been successful. - - @return the number of configured nameservers - @see evdns_nameserver_add() - */ -int evdns_count_nameservers(void); - - -/** - Remove all configured nameservers, and suspend all pending resolves. - - Resolves will not necessarily be re-attempted until evdns_resume() is called. - - @return 0 if successful, or -1 if an error occurred - @see evdns_resume() - */ -int evdns_clear_nameservers_and_suspend(void); - - -/** - Resume normal operation and continue any suspended resolve requests. - - Re-attempt resolves left in limbo after an earlier call to - evdns_clear_nameservers_and_suspend(). - - @return 0 if successful, or -1 if an error occurred - @see evdns_clear_nameservers_and_suspend() - */ -int evdns_resume(void); - - -/** - Add a nameserver. - - This wraps the evdns_nameserver_add() function by parsing a string as an IP - address and adds it as a nameserver. - - @return 0 if successful, or -1 if an error occurred - @see evdns_nameserver_add() - */ -int evdns_nameserver_ip_add(const char *ip_as_string); - - -/** - Lookup an A record for a given name. - - @param name a DNS hostname - @param flags either 0, or DNS_QUERY_NO_SEARCH to disable searching for this query. - @param callback a callback function to invoke when the request is completed - @param ptr an argument to pass to the callback function - @return 0 if successful, or -1 if an error occurred - @see evdns_resolve_ipv6(), evdns_resolve_reverse(), evdns_resolve_reverse_ipv6() - */ -int evdns_resolve_ipv4(const char *name, int flags, evdns_callback_type callback, void *ptr); - - -/** - Lookup an AAAA record for a given name. - - @param name a DNS hostname - @param flags either 0, or DNS_QUERY_NO_SEARCH to disable searching for this query. - @param callback a callback function to invoke when the request is completed - @param ptr an argument to pass to the callback function - @return 0 if successful, or -1 if an error occurred - @see evdns_resolve_ipv4(), evdns_resolve_reverse(), evdns_resolve_reverse_ipv6() - */ -int evdns_resolve_ipv6(const char *name, int flags, evdns_callback_type callback, void *ptr); - -struct in_addr; -struct in6_addr; - -/** - Lookup a PTR record for a given IP address. - - @param in an IPv4 address - @param flags either 0, or DNS_QUERY_NO_SEARCH to disable searching for this query. - @param callback a callback function to invoke when the request is completed - @param ptr an argument to pass to the callback function - @return 0 if successful, or -1 if an error occurred - @see evdns_resolve_reverse_ipv6() - */ -int evdns_resolve_reverse(const struct in_addr *in, int flags, evdns_callback_type callback, void *ptr); - - -/** - Lookup a PTR record for a given IPv6 address. - - @param in an IPv6 address - @param flags either 0, or DNS_QUERY_NO_SEARCH to disable searching for this query. - @param callback a callback function to invoke when the request is completed - @param ptr an argument to pass to the callback function - @return 0 if successful, or -1 if an error occurred - @see evdns_resolve_reverse_ipv6() - */ -int evdns_resolve_reverse_ipv6(const struct in6_addr *in, int flags, evdns_callback_type callback, void *ptr); - - -/** - Set the value of a configuration option. - - The currently available configuration options are: - - ndots, timeout, max-timeouts, max-inflight, and attempts - - @param option the name of the configuration option to be modified - @param val the value to be set - @param flags either 0 | DNS_OPTION_SEARCH | DNS_OPTION_MISC - @return 0 if successful, or -1 if an error occurred - */ -int evdns_set_option(const char *option, const char *val, int flags); - - -/** - Parse a resolv.conf file. - - The 'flags' parameter determines what information is parsed from the - resolv.conf file. See the man page for resolv.conf for the format of this - file. - - The following directives are not parsed from the file: sortlist, rotate, - no-check-names, inet6, debug. - - If this function encounters an error, the possible return values are: 1 = - failed to open file, 2 = failed to stat file, 3 = file too large, 4 = out of - memory, 5 = short read from file, 6 = no nameservers listed in the file - - @param flags any of DNS_OPTION_NAMESERVERS|DNS_OPTION_SEARCH|DNS_OPTION_MISC| - DNS_OPTIONS_ALL - @param filename the path to the resolv.conf file - @return 0 if successful, or various positive error codes if an error - occurred (see above) - @see resolv.conf(3), evdns_config_windows_nameservers() - */ -int evdns_resolv_conf_parse(int flags, const char *const filename); - - -/** - Obtain nameserver information using the Windows API. - - Attempt to configure a set of nameservers based on platform settings on - a win32 host. Preferentially tries to use GetNetworkParams; if that fails, - looks in the registry. - - @return 0 if successful, or -1 if an error occurred - @see evdns_resolv_conf_parse() - */ -#ifdef WIN32 -int evdns_config_windows_nameservers(void); -#endif - - -/** - Clear the list of search domains. - */ -void evdns_search_clear(void); - - -/** - Add a domain to the list of search domains - - @param domain the domain to be added to the search list - */ -void evdns_search_add(const char *domain); - - -/** - Set the 'ndots' parameter for searches. - - Sets the number of dots which, when found in a name, causes - the first query to be without any search domain. - - @param ndots the new ndots parameter - */ -void evdns_search_ndots_set(const int ndots); - -/** - A callback that is invoked when a log message is generated - - @param is_warning indicates if the log message is a 'warning' - @param msg the content of the log message - */ -typedef void (*evdns_debug_log_fn_type)(int is_warning, const char *msg); - - -/** - Set the callback function to handle log messages. - - @param fn the callback to be invoked when a log message is generated - */ -void evdns_set_log_fn(evdns_debug_log_fn_type fn); - -/** - Set a callback that will be invoked to generate transaction IDs. By - default, we pick transaction IDs based on the current clock time. - - @param fn the new callback, or NULL to use the default. - */ -void evdns_set_transaction_id_fn(ev_uint16_t (*fn)(void)); - -#define DNS_NO_SEARCH 1 - -/* - * Structures and functions used to implement a DNS server. - */ - -struct evdns_server_request { - int flags; - int nquestions; - struct evdns_server_question **questions; -}; -struct evdns_server_question { - int type; -#ifdef __cplusplus - int dns_question_class; -#else - /* You should refer to this field as "dns_question_class". The - * name "class" works in C for backward compatibility, and will be - * removed in a future version. (1.5 or later). */ - int class; -#define dns_question_class class -#endif - char name[1]; -}; -typedef void (*evdns_request_callback_fn_type)(struct evdns_server_request *, void *); -#define EVDNS_ANSWER_SECTION 0 -#define EVDNS_AUTHORITY_SECTION 1 -#define EVDNS_ADDITIONAL_SECTION 2 - -#define EVDNS_TYPE_A 1 -#define EVDNS_TYPE_NS 2 -#define EVDNS_TYPE_CNAME 5 -#define EVDNS_TYPE_SOA 6 -#define EVDNS_TYPE_PTR 12 -#define EVDNS_TYPE_MX 15 -#define EVDNS_TYPE_TXT 16 -#define EVDNS_TYPE_AAAA 28 - -#define EVDNS_QTYPE_AXFR 252 -#define EVDNS_QTYPE_ALL 255 - -#define EVDNS_CLASS_INET 1 - -struct evdns_server_port *evdns_add_server_port(int socket, int is_tcp, evdns_request_callback_fn_type callback, void *user_data); -void evdns_close_server_port(struct evdns_server_port *port); - -int evdns_server_request_add_reply(struct evdns_server_request *req, int section, const char *name, int type, int dns_class, int ttl, int datalen, int is_name, const char *data); -int evdns_server_request_add_a_reply(struct evdns_server_request *req, const char *name, int n, void *addrs, int ttl); -int evdns_server_request_add_aaaa_reply(struct evdns_server_request *req, const char *name, int n, void *addrs, int ttl); -int evdns_server_request_add_ptr_reply(struct evdns_server_request *req, struct in_addr *in, const char *inaddr_name, const char *hostname, int ttl); -int evdns_server_request_add_cname_reply(struct evdns_server_request *req, const char *name, const char *cname, int ttl); - -int evdns_server_request_respond(struct evdns_server_request *req, int err); -int evdns_server_request_drop(struct evdns_server_request *req); -struct sockaddr; -int evdns_server_request_get_requesting_addr(struct evdns_server_request *_req, struct sockaddr *sa, int addr_len); - -#ifdef __cplusplus -} -#endif - -#endif /* !EVENTDNS_H */ diff -Nru mysql-5.7-5.7.25/libevent/event.3 mysql-5.7-5.7.26/libevent/event.3 --- mysql-5.7-5.7.25/libevent/event.3 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/event.3 1970-01-01 00:00:00.000000000 +0000 @@ -1,624 +0,0 @@ -.\" $OpenBSD: event.3,v 1.4 2002/07/12 18:50:48 provos Exp $ -.\" -.\" Copyright (c) 2000 Artur Grabowski -.\" All rights reserved. -.\" -.\" 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. The name of the author may not be used to endorse or promote products -.\" derived from this software without specific prior written permission. -.\" -.\" THIS SOFTWARE IS PROVIDED ``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 AUTHOR 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. -.\" -.Dd August 8, 2000 -.Dt EVENT 3 -.Os -.Sh NAME -.Nm event_init , -.Nm event_dispatch , -.Nm event_loop , -.Nm event_loopexit , -.Nm event_loopbreak , -.Nm event_set , -.Nm event_base_dispatch , -.Nm event_base_loop , -.Nm event_base_loopexit , -.Nm event_base_loopbreak , -.Nm event_base_set , -.Nm event_base_free , -.Nm event_add , -.Nm event_del , -.Nm event_once , -.Nm event_base_once , -.Nm event_pending , -.Nm event_initialized , -.Nm event_priority_init , -.Nm event_priority_set , -.Nm evtimer_set , -.Nm evtimer_add , -.Nm evtimer_del , -.Nm evtimer_pending , -.Nm evtimer_initialized , -.Nm signal_set , -.Nm signal_add , -.Nm signal_del , -.Nm signal_pending , -.Nm signal_initialized , -.Nm bufferevent_new , -.Nm bufferevent_free , -.Nm bufferevent_write , -.Nm bufferevent_write_buffer , -.Nm bufferevent_read , -.Nm bufferevent_enable , -.Nm bufferevent_disable , -.Nm bufferevent_settimeout , -.Nm bufferevent_base_set , -.Nm evbuffer_new , -.Nm evbuffer_free , -.Nm evbuffer_add , -.Nm evbuffer_add_buffer , -.Nm evbuffer_add_printf , -.Nm evbuffer_add_vprintf , -.Nm evbuffer_drain , -.Nm evbuffer_write , -.Nm evbuffer_read , -.Nm evbuffer_find , -.Nm evbuffer_readline , -.Nm evhttp_new , -.Nm evhttp_bind_socket , -.Nm evhttp_free -.Nd execute a function when a specific event occurs -.Sh SYNOPSIS -.Fd #include -.Fd #include -.Ft "struct event_base *" -.Fn "event_init" "void" -.Ft int -.Fn "event_dispatch" "void" -.Ft int -.Fn "event_loop" "int flags" -.Ft int -.Fn "event_loopexit" "struct timeval *tv" -.Ft int -.Fn "event_loopbreak" "void" -.Ft void -.Fn "event_set" "struct event *ev" "int fd" "short event" "void (*fn)(int, short, void *)" "void *arg" -.Ft int -.Fn "event_base_dispatch" "struct event_base *base" -.Ft int -.Fn "event_base_loop" "struct event_base *base" "int flags" -.Ft int -.Fn "event_base_loopexit" "struct event_base *base" "struct timeval *tv" -.Ft int -.Fn "event_base_loopbreak" "struct event_base *base" -.Ft int -.Fn "event_base_set" "struct event_base *base" "struct event *" -.Ft void -.Fn "event_base_free" "struct event_base *base" -.Ft int -.Fn "event_add" "struct event *ev" "struct timeval *tv" -.Ft int -.Fn "event_del" "struct event *ev" -.Ft int -.Fn "event_once" "int fd" "short event" "void (*fn)(int, short, void *)" "void *arg" "struct timeval *tv" -.Ft int -.Fn "event_base_once" "struct event_base *base" "int fd" "short event" "void (*fn)(int, short, void *)" "void *arg" "struct timeval *tv" -.Ft int -.Fn "event_pending" "struct event *ev" "short event" "struct timeval *tv" -.Ft int -.Fn "event_initialized" "struct event *ev" -.Ft int -.Fn "event_priority_init" "int npriorities" -.Ft int -.Fn "event_priority_set" "struct event *ev" "int priority" -.Ft void -.Fn "evtimer_set" "struct event *ev" "void (*fn)(int, short, void *)" "void *arg" -.Ft void -.Fn "evtimer_add" "struct event *ev" "struct timeval *" -.Ft void -.Fn "evtimer_del" "struct event *ev" -.Ft int -.Fn "evtimer_pending" "struct event *ev" "struct timeval *tv" -.Ft int -.Fn "evtimer_initialized" "struct event *ev" -.Ft void -.Fn "signal_set" "struct event *ev" "int signal" "void (*fn)(int, short, void *)" "void *arg" -.Ft void -.Fn "signal_add" "struct event *ev" "struct timeval *" -.Ft void -.Fn "signal_del" "struct event *ev" -.Ft int -.Fn "signal_pending" "struct event *ev" "struct timeval *tv" -.Ft int -.Fn "signal_initialized" "struct event *ev" -.Ft "struct bufferevent *" -.Fn "bufferevent_new" "int fd" "evbuffercb readcb" "evbuffercb writecb" "everrorcb" "void *cbarg" -.Ft void -.Fn "bufferevent_free" "struct bufferevent *bufev" -.Ft int -.Fn "bufferevent_write" "struct bufferevent *bufev" "void *data" "size_t size" -.Ft int -.Fn "bufferevent_write_buffer" "struct bufferevent *bufev" "struct evbuffer *buf" -.Ft size_t -.Fn "bufferevent_read" "struct bufferevent *bufev" "void *data" "size_t size" -.Ft int -.Fn "bufferevent_enable" "struct bufferevent *bufev" "short event" -.Ft int -.Fn "bufferevent_disable" "struct bufferevent *bufev" "short event" -.Ft void -.Fn "bufferevent_settimeout" "struct bufferevent *bufev" "int timeout_read" "int timeout_write" -.Ft int -.Fn "bufferevent_base_set" "struct event_base *base" "struct bufferevent *bufev" -.Ft "struct evbuffer *" -.Fn "evbuffer_new" "void" -.Ft void -.Fn "evbuffer_free" "struct evbuffer *buf" -.Ft int -.Fn "evbuffer_add" "struct evbuffer *buf" "const void *data" "size_t size" -.Ft int -.Fn "evbuffer_add_buffer" "struct evbuffer *dst" "struct evbuffer *src" -.Ft int -.Fn "evbuffer_add_printf" "struct evbuffer *buf" "const char *fmt" "..." -.Ft int -.Fn "evbuffer_add_vprintf" "struct evbuffer *buf" "const char *fmt" "va_list ap" -.Ft void -.Fn "evbuffer_drain" "struct evbuffer *buf" "size_t size" -.Ft int -.Fn "evbuffer_write" "struct evbuffer *buf" "int fd" -.Ft int -.Fn "evbuffer_read" "struct evbuffer *buf" "int fd" "int size" -.Ft "u_char *" -.Fn "evbuffer_find" "struct evbuffer *buf" "const u_char *data" "size_t size" -.Ft "char *" -.Fn "evbuffer_readline" "struct evbuffer *buf" -.Ft "struct evhttp *" -.Fn "evhttp_new" "struct event_base *base" -.Ft int -.Fn "evhttp_bind_socket" "struct evhttp *http" "const char *address" "u_short port" -.Ft "void" -.Fn "evhttp_free" "struct evhttp *http" -.Ft int -.Fa (*event_sigcb)(void) ; -.Ft volatile sig_atomic_t -.Fa event_gotsig ; -.Sh DESCRIPTION -The -.Nm event -API provides a mechanism to execute a function when a specific event -on a file descriptor occurs or after a given time has passed. -.Pp -The -.Nm event -API needs to be initialized with -.Fn event_init -before it can be used. -.Pp -In order to process events, an application needs to call -.Fn event_dispatch . -This function only returns on error, and should replace the event core -of the application program. -.Pp -The function -.Fn event_set -prepares the event structure -.Fa ev -to be used in future calls to -.Fn event_add -and -.Fn event_del . -The event will be prepared to call the function specified by the -.Fa fn -argument with an -.Fa int -argument indicating the file descriptor, a -.Fa short -argument indicating the type of event, and a -.Fa void * -argument given in the -.Fa arg -argument. -The -.Fa fd -indicates the file descriptor that should be monitored for events. -The events can be either -.Va EV_READ , -.Va EV_WRITE , -or both, -indicating that an application can read or write from the file descriptor -respectively without blocking. -.Pp -The function -.Fa fn -will be called with the file descriptor that triggered the event and -the type of event which will be either -.Va EV_TIMEOUT , -.Va EV_SIGNAL , -.Va EV_READ , -or -.Va EV_WRITE . -Additionally, an event which has registered interest in more than one of the -preceding events, via bitwise-OR to -.Fn event_set , -can provide its callback function with a bitwise-OR of more than one triggered -event. -The additional flag -.Va EV_PERSIST -makes an -.Fn event_add -persistent until -.Fn event_del -has been called. -.Pp -Once initialized, the -.Fa ev -structure can be used repeatedly with -.Fn event_add -and -.Fn event_del -and does not need to be reinitialized unless the function called and/or -the argument to it are to be changed. -However, when an -.Fa ev -structure has been added to libevent using -.Fn event_add -the structure must persist until the event occurs (assuming -.Fa EV_PERSIST -is not set) or is removed -using -.Fn event_del . -You may not reuse the same -.Fa ev -structure for multiple monitored descriptors; each descriptor -needs its own -.Fa ev . -.Pp -The function -.Fn event_add -schedules the execution of the -.Fa ev -event when the event specified in -.Fn event_set -occurs or in at least the time specified in the -.Fa tv . -If -.Fa tv -is -.Dv NULL , -no timeout occurs and the function will only be called -if a matching event occurs on the file descriptor. -The event in the -.Fa ev -argument must be already initialized by -.Fn event_set -and may not be used in calls to -.Fn event_set -until it has timed out or been removed with -.Fn event_del . -If the event in the -.Fa ev -argument already has a scheduled timeout, the old timeout will be -replaced by the new one. -.Pp -The function -.Fn event_del -will cancel the event in the argument -.Fa ev . -If the event has already executed or has never been added -the call will have no effect. -.Pp -The functions -.Fn evtimer_set , -.Fn evtimer_add , -.Fn evtimer_del , -.Fn evtimer_initialized , -and -.Fn evtimer_pending -are abbreviations for common situations where only a timeout is required. -The file descriptor passed will be \-1, and the event type will be -.Va EV_TIMEOUT . -.Pp -The functions -.Fn signal_set , -.Fn signal_add , -.Fn signal_del , -.Fn signal_initialized , -and -.Fn signal_pending -are abbreviations. -The event type will be a persistent -.Va EV_SIGNAL . -That means -.Fn signal_set -adds -.Va EV_PERSIST . -.Pp -In order to avoid races in signal handlers, the -.Nm event -API provides two variables: -.Va event_sigcb -and -.Va event_gotsig . -A signal handler -sets -.Va event_gotsig -to indicate that a signal has been received. -The application sets -.Va event_sigcb -to a callback function. -After the signal handler sets -.Va event_gotsig , -.Nm event_dispatch -will execute the callback function to process received signals. -The callback returns 1 when no events are registered any more. -It can return \-1 to indicate an error to the -.Nm event -library, causing -.Fn event_dispatch -to terminate with -.Va errno -set to -.Er EINTR . -.Pp -The function -.Fn event_once -is similar to -.Fn event_set . -However, it schedules a callback to be called exactly once and does not -require the caller to prepare an -.Fa event -structure. -This function supports -.Fa EV_TIMEOUT , -.Fa EV_READ , -and -.Fa EV_WRITE . -.Pp -The -.Fn event_pending -function can be used to check if the event specified by -.Fa event -is pending to run. -If -.Va EV_TIMEOUT -was specified and -.Fa tv -is not -.Dv NULL , -the expiration time of the event will be returned in -.Fa tv . -.Pp -The -.Fn event_initialized -macro can be used to check if an event has been initialized. -.Pp -The -.Nm event_loop -function provides an interface for single pass execution of pending -events. -The flags -.Va EVLOOP_ONCE -and -.Va EVLOOP_NONBLOCK -are recognized. -The -.Nm event_loopexit -function exits from the event loop. The next -.Fn event_loop -iteration after the -given timer expires will complete normally (handling all queued events) then -exit without blocking for events again. Subsequent invocations of -.Fn event_loop -will proceed normally. -The -.Nm event_loopbreak -function exits from the event loop immediately. -.Fn event_loop -will abort after the next event is completed; -.Fn event_loopbreak -is typically invoked from this event's callback. This behavior is analogous -to the "break;" statement. Subsequent invocations of -.Fn event_loop -will proceed normally. -.Pp -It is the responsibility of the caller to provide these functions with -pre-allocated event structures. -.Pp -.Sh EVENT PRIORITIES -By default -.Nm libevent -schedules all active events with the same priority. -However, sometimes it is desirable to process some events with a higher -priority than others. -For that reason, -.Nm libevent -supports strict priority queues. -Active events with a lower priority are always processed before events -with a higher priority. -.Pp -The number of different priorities can be set initially with the -.Fn event_priority_init -function. -This function should be called before the first call to -.Fn event_dispatch . -The -.Fn event_priority_set -function can be used to assign a priority to an event. -By default, -.Nm libevent -assigns the middle priority to all events unless their priority -is explicitly set. -.Sh THREAD SAFE EVENTS -.Nm Libevent -has experimental support for thread-safe events. -When initializing the library via -.Fn event_init , -an event base is returned. -This event base can be used in conjunction with calls to -.Fn event_base_set , -.Fn event_base_dispatch , -.Fn event_base_loop , -.Fn event_base_loopexit , -.Fn bufferevent_base_set -and -.Fn event_base_free . -.Fn event_base_set -should be called after preparing an event with -.Fn event_set , -as -.Fn event_set -assigns the provided event to the most recently created event base. -.Fn bufferevent_base_set -should be called after preparing a bufferevent with -.Fn bufferevent_new . -.Fn event_base_free -should be used to free memory associated with the event base -when it is no longer needed. -.Sh BUFFERED EVENTS -.Nm libevent -provides an abstraction on top of the regular event callbacks. -This abstraction is called a -.Va "buffered event" . -A buffered event provides input and output buffers that get filled -and drained automatically. -The user of a buffered event no longer deals directly with the IO, -but instead is reading from input and writing to output buffers. -.Pp -A new bufferevent is created by -.Fn bufferevent_new . -The parameter -.Fa fd -specifies the file descriptor from which data is read and written to. -This file descriptor is not allowed to be a -.Xr pipe 2 . -The next three parameters are callbacks. -The read and write callback have the following form: -.Ft void -.Fn "(*cb)" "struct bufferevent *bufev" "void *arg" . -The error callback has the following form: -.Ft void -.Fn "(*cb)" "struct bufferevent *bufev" "short what" "void *arg" . -The argument is specified by the fourth parameter -.Fa "cbarg" . -A -.Fa bufferevent struct -pointer is returned on success, NULL on error. -Both the read and the write callback may be NULL. -The error callback has to be always provided. -.Pp -Once initialized, the bufferevent structure can be used repeatedly with -bufferevent_enable() and bufferevent_disable(). -The flags parameter can be a combination of -.Va EV_READ -and -.Va EV_WRITE . -When read enabled the bufferevent will try to read from the file -descriptor and call the read callback. -The write callback is executed -whenever the output buffer is drained below the write low watermark, -which is -.Va 0 -by default. -.Pp -The -.Fn bufferevent_write -function can be used to write data to the file descriptor. -The data is appended to the output buffer and written to the descriptor -automatically as it becomes available for writing. -.Fn bufferevent_write -returns 0 on success or \-1 on failure. -The -.Fn bufferevent_read -function is used to read data from the input buffer, -returning the amount of data read. -.Pp -If multiple bases are in use, bufferevent_base_set() must be called before -enabling the bufferevent for the first time. -.Sh NON-BLOCKING HTTP SUPPORT -.Nm libevent -provides a very thin HTTP layer that can be used both to host an HTTP -server and also to make HTTP requests. -An HTTP server can be created by calling -.Fn evhttp_new . -It can be bound to any port and address with the -.Fn evhttp_bind_socket -function. -When the HTTP server is no longer used, it can be freed via -.Fn evhttp_free . -.Pp -To be notified of HTTP requests, a user needs to register callbacks with the -HTTP server. -This can be done by calling -.Fn evhttp_set_cb . -The second argument is the URI for which a callback is being registered. -The corresponding callback will receive an -.Va struct evhttp_request -object that contains all information about the request. -.Pp -This section does not document all the possible function calls; please -check -.Va event.h -for the public interfaces. -.Sh ADDITIONAL NOTES -It is possible to disable support for -.Va epoll , kqueue , devpoll , poll -or -.Va select -by setting the environment variable -.Va EVENT_NOEPOLL , EVENT_NOKQUEUE , EVENT_NODEVPOLL , EVENT_NOPOLL -or -.Va EVENT_NOSELECT , -respectively. -By setting the environment variable -.Va EVENT_SHOW_METHOD , -.Nm libevent -displays the kernel notification method that it uses. -.Sh RETURN VALUES -Upon successful completion -.Fn event_add -and -.Fn event_del -return 0. -Otherwise, \-1 is returned and the global variable errno is -set to indicate the error. -.Sh SEE ALSO -.Xr kqueue 2 , -.Xr poll 2 , -.Xr select 2 , -.Xr evdns 3 , -.Xr timeout 9 -.Sh HISTORY -The -.Nm event -API manpage is based on the -.Xr timeout 9 -manpage by Artur Grabowski. -The port of -.Nm libevent -to Windows is due to Michael A. Davis. -Support for real-time signals is due to Taral. -.Sh AUTHORS -The -.Nm event -library was written by Niels Provos. -.Sh BUGS -This documentation is neither complete nor authoritative. -If you are in doubt about the usage of this API then -check the source code to find out how it works, write -up the missing piece of documentation and send it to -me for inclusion in this man page. diff -Nru mysql-5.7-5.7.25/libevent/event.c mysql-5.7-5.7.26/libevent/event.c --- mysql-5.7-5.7.25/libevent/event.c 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/event.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,1025 +0,0 @@ -/* - * Copyright (c) 2000-2004 Niels Provos - * All rights reserved. - * - * 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. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. - */ -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -#ifdef WIN32 -#define WIN32_LEAN_AND_MEAN -#include -#undef WIN32_LEAN_AND_MEAN -#endif -#include -#ifdef HAVE_SYS_TIME_H -#include -#else -#include -#endif -#include -#include -#include -#ifndef WIN32 -#include -#endif -#include -#include -#include -#include -#include - -#include "event.h" -#include "event-internal.h" -#include "evutil.h" -#include "log.h" - -#ifdef HAVE_EVENT_PORTS -extern const struct eventop evportops; -#endif -#ifdef HAVE_SELECT -extern const struct eventop selectops; -#endif -#ifdef HAVE_POLL -extern const struct eventop pollops; -#endif -#ifdef HAVE_EPOLL -extern const struct eventop epollops; -#endif -#ifdef HAVE_WORKING_KQUEUE -extern const struct eventop kqops; -#endif -#ifdef HAVE_DEVPOLL -extern const struct eventop devpollops; -#endif -#ifdef WIN32 -extern const struct eventop win32ops; -#endif - -/* In order of preference */ -static const struct eventop *eventops[] = { -#ifdef HAVE_EVENT_PORTS - &evportops, -#endif -#ifdef HAVE_WORKING_KQUEUE - &kqops, -#endif -#ifdef HAVE_EPOLL - &epollops, -#endif -#ifdef HAVE_DEVPOLL - &devpollops, -#endif -#ifdef HAVE_POLL - &pollops, -#endif -#ifdef HAVE_SELECT - &selectops, -#endif -#ifdef WIN32 - &win32ops, -#endif - NULL -}; - -/* Global state */ -struct event_base *current_base = NULL; -extern struct event_base *evsignal_base; -static int use_monotonic; - -/* Handle signals - This is a deprecated interface */ -int (*event_sigcb)(void); /* Signal callback when gotsig is set */ -volatile sig_atomic_t event_gotsig; /* Set in signal handler */ - -/* Prototypes */ -static void event_queue_insert(struct event_base *, struct event *, int); -static void event_queue_remove(struct event_base *, struct event *, int); -static int event_haveevents(struct event_base *); - -static void event_process_active(struct event_base *); - -static int timeout_next(struct event_base *, struct timeval **); -static void timeout_process(struct event_base *); -static void timeout_correct(struct event_base *, struct timeval *); - -static void -detect_monotonic(void) -{ -#if defined(HAVE_CLOCK_GETTIME) && defined(CLOCK_MONOTONIC) - struct timespec ts; - - if (clock_gettime(CLOCK_MONOTONIC, &ts) == 0) - use_monotonic = 1; -#endif -} - -static int -gettime(struct event_base *base, struct timeval *tp) -{ - if (base->tv_cache.tv_sec) { - *tp = base->tv_cache; - return (0); - } - -#if defined(HAVE_CLOCK_GETTIME) && defined(CLOCK_MONOTONIC) - if (use_monotonic) { - struct timespec ts; - - if (clock_gettime(CLOCK_MONOTONIC, &ts) == -1) - return (-1); - - tp->tv_sec = ts.tv_sec; - tp->tv_usec = ts.tv_nsec / 1000; - return (0); - } -#endif - - return (evutil_gettimeofday(tp, NULL)); -} - -struct event_base * -event_init(void) -{ - struct event_base *base = event_base_new(); - - if (base != NULL) - current_base = base; - - return (base); -} - -struct event_base * -event_base_new(void) -{ - int i; - struct event_base *base; - - if ((base = calloc(1, sizeof(struct event_base))) == NULL) - event_err(1, "%s: calloc", __func__); - - event_sigcb = NULL; - event_gotsig = 0; - - detect_monotonic(); - gettime(base, &base->event_tv); - - min_heap_ctor(&base->timeheap); - TAILQ_INIT(&base->eventqueue); - base->sig.ev_signal_pair[0] = -1; - base->sig.ev_signal_pair[1] = -1; - - base->evbase = NULL; - for (i = 0; eventops[i] && !base->evbase; i++) { - base->evsel = eventops[i]; - - base->evbase = base->evsel->init(base); - } - - if (base->evbase == NULL) - event_errx(1, "%s: no event mechanism available", __func__); - - if (getenv("EVENT_SHOW_METHOD")) - event_msgx("libevent using: %s\n", - base->evsel->name); - - /* allocate a single active event queue */ - event_base_priority_init(base, 1); - - return (base); -} - -void -event_base_free(struct event_base *base) -{ - int i, n_deleted=0; - struct event *ev; - - if (base == NULL && current_base) - base = current_base; - if (base == current_base) - current_base = NULL; - - /* XXX(niels) - check for internal events first */ - assert(base); - /* Delete all non-internal events. */ - for (ev = TAILQ_FIRST(&base->eventqueue); ev; ) { - struct event *next = TAILQ_NEXT(ev, ev_next); - if (!(ev->ev_flags & EVLIST_INTERNAL)) { - event_del(ev); - ++n_deleted; - } - ev = next; - } - while ((ev = min_heap_top(&base->timeheap)) != NULL) { - event_del(ev); - ++n_deleted; - } - - for (i = 0; i < base->nactivequeues; ++i) { - for (ev = TAILQ_FIRST(base->activequeues[i]); ev; ) { - struct event *next = TAILQ_NEXT(ev, ev_active_next); - if (!(ev->ev_flags & EVLIST_INTERNAL)) { - event_del(ev); - ++n_deleted; - } - ev = next; - } - } - - if (n_deleted) - event_debug(("%s: %d events were still set in base", - __func__, n_deleted)); - - if (base->evsel->dealloc != NULL) - base->evsel->dealloc(base, base->evbase); - - for (i = 0; i < base->nactivequeues; ++i) - assert(TAILQ_EMPTY(base->activequeues[i])); - - assert(min_heap_empty(&base->timeheap)); - min_heap_dtor(&base->timeheap); - - for (i = 0; i < base->nactivequeues; ++i) - free(base->activequeues[i]); - free(base->activequeues); - - assert(TAILQ_EMPTY(&base->eventqueue)); - - free(base); -} - -/* reinitialized the event base after a fork */ -int -event_reinit(struct event_base *base) -{ - const struct eventop *evsel = base->evsel; - void *evbase = base->evbase; - int res = 0; - struct event *ev; - - /* check if this event mechanism requires reinit */ - if (!evsel->need_reinit) - return (0); - - /* prevent internal delete */ - if (base->sig.ev_signal_added) { - /* we cannot call event_del here because the base has - * not been reinitialized yet. */ - event_queue_remove(base, &base->sig.ev_signal, - EVLIST_INSERTED); - if (base->sig.ev_signal.ev_flags & EVLIST_ACTIVE) - event_queue_remove(base, &base->sig.ev_signal, - EVLIST_ACTIVE); - base->sig.ev_signal_added = 0; - } - - if (base->evsel->dealloc != NULL) - base->evsel->dealloc(base, base->evbase); - evbase = base->evbase = evsel->init(base); - if (base->evbase == NULL) - event_errx(1, "%s: could not reinitialize event mechanism", - __func__); - - TAILQ_FOREACH(ev, &base->eventqueue, ev_next) { - if (evsel->add(evbase, ev) == -1) - res = -1; - } - - return (res); -} - -int -event_priority_init(int npriorities) -{ - return event_base_priority_init(current_base, npriorities); -} - -int -event_base_priority_init(struct event_base *base, int npriorities) -{ - int i; - - if (base->event_count_active) - return (-1); - - if (base->nactivequeues && npriorities != base->nactivequeues) { - for (i = 0; i < base->nactivequeues; ++i) { - free(base->activequeues[i]); - } - free(base->activequeues); - } - - /* Allocate our priority queues */ - base->nactivequeues = npriorities; - base->activequeues = (struct event_list **)calloc(base->nactivequeues, - npriorities * sizeof(struct event_list *)); - if (base->activequeues == NULL) - event_err(1, "%s: calloc", __func__); - - for (i = 0; i < base->nactivequeues; ++i) { - base->activequeues[i] = malloc(sizeof(struct event_list)); - if (base->activequeues[i] == NULL) - event_err(1, "%s: malloc", __func__); - TAILQ_INIT(base->activequeues[i]); - } - - return (0); -} - -int -event_haveevents(struct event_base *base) -{ - return (base->event_count > 0); -} - -/* - * Active events are stored in priority queues. Lower priorities are always - * process before higher priorities. Low priority events can starve high - * priority ones. - */ - -static void -event_process_active(struct event_base *base) -{ - struct event *ev; - struct event_list *activeq = NULL; - int i; - short ncalls; - - for (i = 0; i < base->nactivequeues; ++i) { - if (TAILQ_FIRST(base->activequeues[i]) != NULL) { - activeq = base->activequeues[i]; - break; - } - } - - assert(activeq != NULL); - - for (ev = TAILQ_FIRST(activeq); ev; ev = TAILQ_FIRST(activeq)) { - if (ev->ev_events & EV_PERSIST) - event_queue_remove(base, ev, EVLIST_ACTIVE); - else - event_del(ev); - - /* Allows deletes to work */ - ncalls = ev->ev_ncalls; - ev->ev_pncalls = &ncalls; - while (ncalls) { - ncalls--; - ev->ev_ncalls = ncalls; - (*ev->ev_callback)((int)ev->ev_fd, ev->ev_res, ev->ev_arg); - if (event_gotsig || base->event_break) - return; - } - } -} - -/* - * Wait continously for events. We exit only if no events are left. - */ - -int -event_dispatch(void) -{ - return (event_loop(0)); -} - -int -event_base_dispatch(struct event_base *event_base) -{ - return (event_base_loop(event_base, 0)); -} - -const char * -event_base_get_method(struct event_base *base) -{ - assert(base); - return (base->evsel->name); -} - -static void -event_loopexit_cb(int fd, short what, void *arg) -{ - struct event_base *base = arg; - base->event_gotterm = 1; -} - -/* not thread safe */ -int -event_loopexit(const struct timeval *tv) -{ - return (event_once(-1, EV_TIMEOUT, event_loopexit_cb, - current_base, tv)); -} - -int -event_base_loopexit(struct event_base *event_base, const struct timeval *tv) -{ - return (event_base_once(event_base, -1, EV_TIMEOUT, event_loopexit_cb, - event_base, tv)); -} - -/* not thread safe */ -int -event_loopbreak(void) -{ - return (event_base_loopbreak(current_base)); -} - -int -event_base_loopbreak(struct event_base *event_base) -{ - if (event_base == NULL) - return (-1); - - event_base->event_break = 1; - return (0); -} - - - -/* not thread safe */ - -int -event_loop(int flags) -{ - return event_base_loop(current_base, flags); -} - -int -event_base_loop(struct event_base *base, int flags) -{ - const struct eventop *evsel = base->evsel; - void *evbase = base->evbase; - struct timeval tv; - struct timeval *tv_p; - int res, done; - - /* clear time cache */ - base->tv_cache.tv_sec = 0; - - if (base->sig.ev_signal_added) - evsignal_base = base; - done = 0; - while (!done) { - /* Terminate the loop if we have been asked to */ - if (base->event_gotterm) { - base->event_gotterm = 0; - break; - } - - if (base->event_break) { - base->event_break = 0; - break; - } - - /* You cannot use this interface for multi-threaded apps */ - while (event_gotsig) { - event_gotsig = 0; - if (event_sigcb) { - res = (*event_sigcb)(); - if (res == -1) { - errno = EINTR; - return (-1); - } - } - } - - timeout_correct(base, &tv); - - tv_p = &tv; - if (!base->event_count_active && !(flags & EVLOOP_NONBLOCK)) { - timeout_next(base, &tv_p); - } else { - /* - * if we have active events, we just poll new events - * without waiting. - */ - evutil_timerclear(&tv); - } - - /* If we have no events, we just exit */ - if (!event_haveevents(base)) { - event_debug(("%s: no events registered.", __func__)); - return (1); - } - - /* update last old time */ - gettime(base, &base->event_tv); - - /* clear time cache */ - base->tv_cache.tv_sec = 0; - - res = evsel->dispatch(base, evbase, tv_p); - - if (res == -1) - return (-1); - gettime(base, &base->tv_cache); - - timeout_process(base); - - if (base->event_count_active) { - event_process_active(base); - if (!base->event_count_active && (flags & EVLOOP_ONCE)) - done = 1; - } else if (flags & EVLOOP_NONBLOCK) - done = 1; - } - - /* clear time cache */ - base->tv_cache.tv_sec = 0; - - event_debug(("%s: asked to terminate loop.", __func__)); - return (0); -} - -/* Sets up an event for processing once */ - -struct event_once { - struct event ev; - - void (*cb)(int, short, void *); - void *arg; -}; - -/* One-time callback, it deletes itself */ - -static void -event_once_cb(int fd, short events, void *arg) -{ - struct event_once *eonce = arg; - - (*eonce->cb)(fd, events, eonce->arg); - free(eonce); -} - -/* not threadsafe, event scheduled once. */ -int -event_once(int fd, short events, - void (*callback)(int, short, void *), void *arg, const struct timeval *tv) -{ - return event_base_once(current_base, fd, events, callback, arg, tv); -} - -/* Schedules an event once */ -int -event_base_once(struct event_base *base, int fd, short events, - void (*callback)(int, short, void *), void *arg, const struct timeval *tv) -{ - struct event_once *eonce; - struct timeval etv; - int res; - - /* We cannot support signals that just fire once */ - if (events & EV_SIGNAL) - return (-1); - - if ((eonce = calloc(1, sizeof(struct event_once))) == NULL) - return (-1); - - eonce->cb = callback; - eonce->arg = arg; - - if (events == EV_TIMEOUT) { - if (tv == NULL) { - evutil_timerclear(&etv); - tv = &etv; - } - - evtimer_set(&eonce->ev, event_once_cb, eonce); - } else if (events & (EV_READ|EV_WRITE)) { - events &= EV_READ|EV_WRITE; - - event_set(&eonce->ev, fd, events, event_once_cb, eonce); - } else { - /* Bad event combination */ - free(eonce); - return (-1); - } - - res = event_base_set(base, &eonce->ev); - if (res == 0) - res = event_add(&eonce->ev, tv); - if (res != 0) { - free(eonce); - return (res); - } - - return (0); -} - -void -event_set(struct event *ev, int fd, short events, - void (*callback)(int, short, void *), void *arg) -{ - /* Take the current base - caller needs to set the real base later */ - ev->ev_base = current_base; - - ev->ev_callback = callback; - ev->ev_arg = arg; - ev->ev_fd = fd; - ev->ev_events = events; - ev->ev_res = 0; - ev->ev_flags = EVLIST_INIT; - ev->ev_ncalls = 0; - ev->ev_pncalls = NULL; - - min_heap_elem_init(ev); - - /* by default, we put new events into the middle priority */ - if(current_base) - ev->ev_pri = current_base->nactivequeues/2; -} - -int -event_base_set(struct event_base *base, struct event *ev) -{ - /* Only innocent events may be assigned to a different base */ - if (ev->ev_flags != EVLIST_INIT) - return (-1); - - ev->ev_base = base; - ev->ev_pri = base->nactivequeues/2; - - return (0); -} - -/* - * Set's the priority of an event - if an event is already scheduled - * changing the priority is going to fail. - */ - -int -event_priority_set(struct event *ev, int pri) -{ - if (ev->ev_flags & EVLIST_ACTIVE) - return (-1); - if (pri < 0 || pri >= ev->ev_base->nactivequeues) - return (-1); - - ev->ev_pri = pri; - - return (0); -} - -/* - * Checks if a specific event is pending or scheduled. - */ - -int -event_pending(struct event *ev, short event, struct timeval *tv) -{ - struct timeval now, res; - int flags = 0; - - if (ev->ev_flags & EVLIST_INSERTED) - flags |= (ev->ev_events & (EV_READ|EV_WRITE|EV_SIGNAL)); - if (ev->ev_flags & EVLIST_ACTIVE) - flags |= ev->ev_res; - if (ev->ev_flags & EVLIST_TIMEOUT) - flags |= EV_TIMEOUT; - - event &= (EV_TIMEOUT|EV_READ|EV_WRITE|EV_SIGNAL); - - /* See if there is a timeout that we should report */ - if (tv != NULL && (flags & event & EV_TIMEOUT)) { - gettime(ev->ev_base, &now); - evutil_timersub(&ev->ev_timeout, &now, &res); - /* correctly remap to real time */ - evutil_gettimeofday(&now, NULL); - evutil_timeradd(&now, &res, tv); - } - - return (flags & event); -} - -int -event_add(struct event *ev, const struct timeval *tv) -{ - struct event_base *base = ev->ev_base; - const struct eventop *evsel = base->evsel; - void *evbase = base->evbase; - int res = 0; - - event_debug(( - "event_add: event: %p, %s%s%scall %p", - ev, - ev->ev_events & EV_READ ? "EV_READ " : " ", - ev->ev_events & EV_WRITE ? "EV_WRITE " : " ", - tv ? "EV_TIMEOUT " : " ", - ev->ev_callback)); - - assert(!(ev->ev_flags & ~EVLIST_ALL)); - - /* - * prepare for timeout insertion further below, if we get a - * failure on any step, we should not change any state. - */ - if (tv != NULL && !(ev->ev_flags & EVLIST_TIMEOUT)) { - if (min_heap_reserve(&base->timeheap, - 1 + min_heap_size(&base->timeheap)) == -1) - return (-1); /* ENOMEM == errno */ - } - - if ((ev->ev_events & (EV_READ|EV_WRITE|EV_SIGNAL)) && - !(ev->ev_flags & (EVLIST_INSERTED|EVLIST_ACTIVE))) { - res = evsel->add(evbase, ev); - if (res != -1) - event_queue_insert(base, ev, EVLIST_INSERTED); - } - - /* - * we should change the timout state only if the previous event - * addition succeeded. - */ - if (res != -1 && tv != NULL) { - struct timeval now; - - /* - * we already reserved memory above for the case where we - * are not replacing an exisiting timeout. - */ - if (ev->ev_flags & EVLIST_TIMEOUT) - event_queue_remove(base, ev, EVLIST_TIMEOUT); - - /* Check if it is active due to a timeout. Rescheduling - * this timeout before the callback can be executed - * removes it from the active list. */ - if ((ev->ev_flags & EVLIST_ACTIVE) && - (ev->ev_res & EV_TIMEOUT)) { - /* See if we are just active executing this - * event in a loop - */ - if (ev->ev_ncalls && ev->ev_pncalls) { - /* Abort loop */ - *ev->ev_pncalls = 0; - } - - event_queue_remove(base, ev, EVLIST_ACTIVE); - } - - gettime(base, &now); - evutil_timeradd(&now, tv, &ev->ev_timeout); - - event_debug(( - "event_add: timeout in %ld seconds, call %p", - tv->tv_sec, ev->ev_callback)); - - event_queue_insert(base, ev, EVLIST_TIMEOUT); - } - - return (res); -} - -int -event_del(struct event *ev) -{ - struct event_base *base; - const struct eventop *evsel; - void *evbase; - - event_debug(("event_del: %p, callback %p", - ev, ev->ev_callback)); - - /* An event without a base has not been added */ - if (ev->ev_base == NULL) - return (-1); - - base = ev->ev_base; - evsel = base->evsel; - evbase = base->evbase; - - assert(!(ev->ev_flags & ~EVLIST_ALL)); - - /* See if we are just active executing this event in a loop */ - if (ev->ev_ncalls && ev->ev_pncalls) { - /* Abort loop */ - *ev->ev_pncalls = 0; - } - - if (ev->ev_flags & EVLIST_TIMEOUT) - event_queue_remove(base, ev, EVLIST_TIMEOUT); - - if (ev->ev_flags & EVLIST_ACTIVE) - event_queue_remove(base, ev, EVLIST_ACTIVE); - - if (ev->ev_flags & EVLIST_INSERTED) { - event_queue_remove(base, ev, EVLIST_INSERTED); - return (evsel->del(evbase, ev)); - } - - return (0); -} - -void -event_active(struct event *ev, int res, short ncalls) -{ - /* We get different kinds of events, add them together */ - if (ev->ev_flags & EVLIST_ACTIVE) { - ev->ev_res |= res; - return; - } - - ev->ev_res = res; - ev->ev_ncalls = ncalls; - ev->ev_pncalls = NULL; - event_queue_insert(ev->ev_base, ev, EVLIST_ACTIVE); -} - -static int -timeout_next(struct event_base *base, struct timeval **tv_p) -{ - struct timeval now; - struct event *ev; - struct timeval *tv = *tv_p; - - if ((ev = min_heap_top(&base->timeheap)) == NULL) { - /* if no time-based events are active wait for I/O */ - *tv_p = NULL; - return (0); - } - - if (gettime(base, &now) == -1) - return (-1); - - if (evutil_timercmp(&ev->ev_timeout, &now, <=)) { - evutil_timerclear(tv); - return (0); - } - - evutil_timersub(&ev->ev_timeout, &now, tv); - - assert(tv->tv_sec >= 0); - assert(tv->tv_usec >= 0); - - event_debug(("timeout_next: in %ld seconds", tv->tv_sec)); - return (0); -} - -/* - * Determines if the time is running backwards by comparing the current - * time against the last time we checked. Not needed when using clock - * monotonic. - */ - -static void -timeout_correct(struct event_base *base, struct timeval *tv) -{ - struct event **pev; - unsigned int size; - struct timeval off; - - if (use_monotonic) - return; - - /* Check if time is running backwards */ - gettime(base, tv); - if (evutil_timercmp(tv, &base->event_tv, >=)) { - base->event_tv = *tv; - return; - } - - event_debug(("%s: time is running backwards, corrected", - __func__)); - evutil_timersub(&base->event_tv, tv, &off); - - /* - * We can modify the key element of the node without destroying - * the key, beause we apply it to all in the right order. - */ - pev = base->timeheap.p; - size = base->timeheap.n; - for (; size-- > 0; ++pev) { - struct timeval *ev_tv = &(**pev).ev_timeout; - evutil_timersub(ev_tv, &off, ev_tv); - } - /* Now remember what the new time turned out to be. */ - base->event_tv = *tv; -} - -void -timeout_process(struct event_base *base) -{ - struct timeval now; - struct event *ev; - - if (min_heap_empty(&base->timeheap)) - return; - - gettime(base, &now); - - while ((ev = min_heap_top(&base->timeheap))) { - if (evutil_timercmp(&ev->ev_timeout, &now, >)) - break; - - /* delete this event from the I/O queues */ - event_del(ev); - - event_debug(("timeout_process: call %p", - ev->ev_callback)); - event_active(ev, EV_TIMEOUT, 1); - } -} - -void -event_queue_remove(struct event_base *base, struct event *ev, int queue) -{ - if (!(ev->ev_flags & queue)) - event_errx(1, "%s: %p(fd %d) not on queue %x", __func__, - ev, ev->ev_fd, queue); - - if (~ev->ev_flags & EVLIST_INTERNAL) - base->event_count--; - - ev->ev_flags &= ~queue; - switch (queue) { - case EVLIST_INSERTED: - TAILQ_REMOVE(&base->eventqueue, ev, ev_next); - break; - case EVLIST_ACTIVE: - base->event_count_active--; - TAILQ_REMOVE(base->activequeues[ev->ev_pri], - ev, ev_active_next); - break; - case EVLIST_TIMEOUT: - min_heap_erase(&base->timeheap, ev); - break; - default: - event_errx(1, "%s: unknown queue %x", __func__, queue); - } -} - -void -event_queue_insert(struct event_base *base, struct event *ev, int queue) -{ - if (ev->ev_flags & queue) { - /* Double insertion is possible for active events */ - if (queue & EVLIST_ACTIVE) - return; - - event_errx(1, "%s: %p(fd %d) already on queue %x", __func__, - ev, ev->ev_fd, queue); - } - - if (~ev->ev_flags & EVLIST_INTERNAL) - base->event_count++; - - ev->ev_flags |= queue; - switch (queue) { - case EVLIST_INSERTED: - TAILQ_INSERT_TAIL(&base->eventqueue, ev, ev_next); - break; - case EVLIST_ACTIVE: - base->event_count_active++; - TAILQ_INSERT_TAIL(base->activequeues[ev->ev_pri], - ev,ev_active_next); - break; - case EVLIST_TIMEOUT: { - min_heap_push(&base->timeheap, ev); - break; - } - default: - event_errx(1, "%s: unknown queue %x", __func__, queue); - } -} - -/* Functions for debugging */ - -const char * -event_get_version(void) -{ - return (VERSION); -} - -/* - * No thread-safe interface needed - the information should be the same - * for all threads. - */ - -const char * -event_get_method(void) -{ - return (current_base->evsel->name); -} diff -Nru mysql-5.7-5.7.25/libevent/event.h mysql-5.7-5.7.26/libevent/event.h --- mysql-5.7-5.7.25/libevent/event.h 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/event.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,1175 +0,0 @@ -/* - * Copyright (c) 2000-2007 Niels Provos - * All rights reserved. - * - * 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. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. - */ -#ifndef _EVENT_H_ -#define _EVENT_H_ - -/** @mainpage - - @section intro Introduction - - libevent is an event notification library for developing scalable network - servers. The libevent API provides a mechanism to execute a callback - function when a specific event occurs on a file descriptor or after a - timeout has been reached. Furthermore, libevent also support callbacks due - to signals or regular timeouts. - - libevent is meant to replace the event loop found in event driven network - servers. An application just needs to call event_dispatch() and then add or - remove events dynamically without having to change the event loop. - - Currently, libevent supports /dev/poll, kqueue(2), select(2), poll(2) and - epoll(4). It also has experimental support for real-time signals. The - internal event mechanism is completely independent of the exposed event API, - and a simple update of libevent can provide new functionality without having - to redesign the applications. As a result, Libevent allows for portable - application development and provides the most scalable event notification - mechanism available on an operating system. Libevent can also be used for - multi-threaded aplications; see Steven Grimm's explanation. Libevent should - compile on Linux, *BSD, Mac OS X, Solaris and Windows. - - @section usage Standard usage - - Every program that uses libevent must include the header, and pass - the -levent flag to the linker. Before using any of the functions in the - library, you must call event_init() or event_base_new() to perform one-time - initialization of the libevent library. - - @section event Event notification - - For each file descriptor that you wish to monitor, you must declare an event - structure and call event_set() to initialize the members of the structure. - To enable notification, you add the structure to the list of monitored - events by calling event_add(). The event structure must remain allocated as - long as it is active, so it should be allocated on the heap. Finally, you - call event_dispatch() to loop and dispatch events. - - @section bufferevent I/O Buffers - - libevent provides an abstraction on top of the regular event callbacks. This - abstraction is called a buffered event. A buffered event provides input and - output buffers that get filled and drained automatically. The user of a - buffered event no longer deals directly with the I/O, but instead is reading - from input and writing to output buffers. - - Once initialized via bufferevent_new(), the bufferevent structure can be - used repeatedly with bufferevent_enable() and bufferevent_disable(). - Instead of reading and writing directly to a socket, you would call - bufferevent_read() and bufferevent_write(). - - When read enabled the bufferevent will try to read from the file descriptor - and call the read callback. The write callback is executed whenever the - output buffer is drained below the write low watermark, which is 0 by - default. - - @section timers Timers - - libevent can also be used to create timers that invoke a callback after a - certain amount of time has expired. The evtimer_set() function prepares an - event struct to be used as a timer. To activate the timer, call - evtimer_add(). Timers can be deactivated by calling evtimer_del(). - - @section timeouts Timeouts - - In addition to simple timers, libevent can assign timeout events to file - descriptors that are triggered whenever a certain amount of time has passed - with no activity on a file descriptor. The timeout_set() function - initializes an event struct for use as a timeout. Once initialized, the - event must be activated by using timeout_add(). To cancel the timeout, call - timeout_del(). - - @section evdns Asynchronous DNS resolution - - libevent provides an asynchronous DNS resolver that should be used instead - of the standard DNS resolver functions. These functions can be imported by - including the header in your program. Before using any of the - resolver functions, you must call evdns_init() to initialize the library. To - convert a hostname to an IP address, you call the evdns_resolve_ipv4() - function. To perform a reverse lookup, you would call the - evdns_resolve_reverse() function. All of these functions use callbacks to - avoid blocking while the lookup is performed. - - @section evhttp Event-driven HTTP servers - - libevent provides a very simple event-driven HTTP server that can be - embedded in your program and used to service HTTP requests. - - To use this capability, you need to include the header in your - program. You create the server by calling evhttp_new(). Add addresses and - ports to listen on with evhttp_bind_socket(). You then register one or more - callbacks to handle incoming requests. Each URI can be assigned a callback - via the evhttp_set_cb() function. A generic callback function can also be - registered via evhttp_set_gencb(); this callback will be invoked if no other - callbacks have been registered for a given URI. - - @section evrpc A framework for RPC servers and clients - - libevents provides a framework for creating RPC servers and clients. It - takes care of marshaling and unmarshaling all data structures. - - @section api API Reference - - To browse the complete documentation of the libevent API, click on any of - the following links. - - event.h - The primary libevent header - - evdns.h - Asynchronous DNS resolution - - evhttp.h - An embedded libevent-based HTTP server - - evrpc.h - A framework for creating RPC servers and clients - - */ - -/** @file event.h - - A library for writing event-driven network servers - - */ - -#ifdef __cplusplus -extern "C" { -#endif - -#include -#ifdef HAVE_SYS_TYPES_H -#include -#endif -#ifdef HAVE_SYS_TIME_H -#include -#endif -#ifdef HAVE_STDINT_H -#include -#endif -#include - -/* For int types. */ -#include - -#ifdef WIN32 -#define WIN32_LEAN_AND_MEAN -#include -#undef WIN32_LEAN_AND_MEAN -typedef unsigned char u_char; -typedef unsigned short u_short; -#endif - -#define EVLIST_TIMEOUT 0x01 -#define EVLIST_INSERTED 0x02 -#define EVLIST_SIGNAL 0x04 -#define EVLIST_ACTIVE 0x08 -#define EVLIST_INTERNAL 0x10 -#define EVLIST_INIT 0x80 - -/* EVLIST_X_ Private space: 0x1000-0xf000 */ -#define EVLIST_ALL (0xf000 | 0x9f) - -#define EV_TIMEOUT 0x01 -#define EV_READ 0x02 -#define EV_WRITE 0x04 -#define EV_SIGNAL 0x08 -#define EV_PERSIST 0x10 /* Persistant event */ - -/* Fix so that ppl dont have to run with */ -#ifndef TAILQ_ENTRY -#define _EVENT_DEFINED_TQENTRY -#define TAILQ_ENTRY(type) \ -struct { \ - struct type *tqe_next; /* next element */ \ - struct type **tqe_prev; /* address of previous next element */ \ -} -#endif /* !TAILQ_ENTRY */ - -struct event_base; -struct event { - TAILQ_ENTRY (event) ev_next; - TAILQ_ENTRY (event) ev_active_next; - TAILQ_ENTRY (event) ev_signal_next; - unsigned int min_heap_idx; /* for managing timeouts */ - - struct event_base *ev_base; - - int ev_fd; - short ev_events; - short ev_ncalls; - short *ev_pncalls; /* Allows deletes in callback */ - - struct timeval ev_timeout; - - int ev_pri; /* smaller numbers are higher priority */ - - void (*ev_callback)(int, short, void *arg); - void *ev_arg; - - int ev_res; /* result passed to event callback */ - int ev_flags; -}; - -#define EVENT_SIGNAL(ev) (int)(ev)->ev_fd -#define EVENT_FD(ev) (int)(ev)->ev_fd - -/* - * Key-Value pairs. Can be used for HTTP headers but also for - * query argument parsing. - */ -struct evkeyval { - TAILQ_ENTRY(evkeyval) next; - - char *key; - char *value; -}; - -#ifdef _EVENT_DEFINED_TQENTRY -#undef TAILQ_ENTRY -struct event_list; -struct evkeyvalq; -#undef _EVENT_DEFINED_TQENTRY -#else -TAILQ_HEAD (event_list, event); -TAILQ_HEAD (evkeyvalq, evkeyval); -#endif /* _EVENT_DEFINED_TQENTRY */ - -/** - Initialize the event API. - - Use event_base_new() to initialize a new event base, but does not set - the current_base global. If using only event_base_new(), each event - added must have an event base set with event_base_set() - - @see event_base_set(), event_base_free(), event_init() - */ -struct event_base *event_base_new(void); - -/** - Initialize the event API. - - The event API needs to be initialized with event_init() before it can be - used. Sets the current_base global representing the default base for - events that have no base associated with them. - - @see event_base_set(), event_base_new() - */ -struct event_base *event_init(void); - -/** - Reinitialized the event base after a fork - - Some event mechanisms do not survive across fork. The event base needs - to be reinitialized with the event_reinit() function. - - @param base the event base that needs to be re-initialized - @return 0 if successful, or -1 if some events could not be re-added. - @see event_base_new(), event_init() -*/ -int event_reinit(struct event_base *base); - -/** - Loop to process events. - - In order to process events, an application needs to call - event_dispatch(). This function only returns on error, and should - replace the event core of the application program. - - @see event_base_dispatch() - */ -int event_dispatch(void); - - -/** - Threadsafe event dispatching loop. - - @param eb the event_base structure returned by event_init() - @see event_init(), event_dispatch() - */ -int event_base_dispatch(struct event_base *); - - -/** - Get the kernel event notification mechanism used by libevent. - - @param eb the event_base structure returned by event_base_new() - @return a string identifying the kernel event mechanism (kqueue, epoll, etc.) - */ -const char *event_base_get_method(struct event_base *); - - -/** - Deallocate all memory associated with an event_base, and free the base. - - Note that this function will not close any fds or free any memory passed - to event_set as the argument to callback. - - @param eb an event_base to be freed - */ -void event_base_free(struct event_base *); - - -#define _EVENT_LOG_DEBUG 0 -#define _EVENT_LOG_MSG 1 -#define _EVENT_LOG_WARN 2 -#define _EVENT_LOG_ERR 3 -typedef void (*event_log_cb)(int severity, const char *msg); -/** - Redirect libevent's log messages. - - @param cb a function taking two arguments: an integer severity between - _EVENT_LOG_DEBUG and _EVENT_LOG_ERR, and a string. If cb is NULL, - then the default log is used. - */ -void event_set_log_callback(event_log_cb cb); - -/** - Associate a different event base with an event. - - @param eb the event base - @param ev the event - */ -int event_base_set(struct event_base *, struct event *); - -/** - event_loop() flags - */ -/*@{*/ -#define EVLOOP_ONCE 0x01 /**< Block at most once. */ -#define EVLOOP_NONBLOCK 0x02 /**< Do not block. */ -/*@}*/ - -/** - Handle events. - - This is a more flexible version of event_dispatch(). - - @param flags any combination of EVLOOP_ONCE | EVLOOP_NONBLOCK - @return 0 if successful, -1 if an error occurred, or 1 if no events were - registered. - @see event_loopexit(), event_base_loop() -*/ -int event_loop(int); - -/** - Handle events (threadsafe version). - - This is a more flexible version of event_base_dispatch(). - - @param eb the event_base structure returned by event_init() - @param flags any combination of EVLOOP_ONCE | EVLOOP_NONBLOCK - @return 0 if successful, -1 if an error occurred, or 1 if no events were - registered. - @see event_loopexit(), event_base_loop() - */ -int event_base_loop(struct event_base *, int); - -/** - Exit the event loop after the specified time. - - The next event_loop() iteration after the given timer expires will - complete normally (handling all queued events) then exit without - blocking for events again. - - Subsequent invocations of event_loop() will proceed normally. - - @param tv the amount of time after which the loop should terminate. - @return 0 if successful, or -1 if an error occurred - @see event_loop(), event_base_loop(), event_base_loopexit() - */ -int event_loopexit(const struct timeval *); - - -/** - Exit the event loop after the specified time (threadsafe variant). - - The next event_base_loop() iteration after the given timer expires will - complete normally (handling all queued events) then exit without - blocking for events again. - - Subsequent invocations of event_base_loop() will proceed normally. - - @param eb the event_base structure returned by event_init() - @param tv the amount of time after which the loop should terminate. - @return 0 if successful, or -1 if an error occurred - @see event_loopexit() - */ -int event_base_loopexit(struct event_base *, const struct timeval *); - -/** - Abort the active event_loop() immediately. - - event_loop() will abort the loop after the next event is completed; - event_loopbreak() is typically invoked from this event's callback. - This behavior is analogous to the "break;" statement. - - Subsequent invocations of event_loop() will proceed normally. - - @return 0 if successful, or -1 if an error occurred - @see event_base_loopbreak(), event_loopexit() - */ -int event_loopbreak(void); - -/** - Abort the active event_base_loop() immediately. - - event_base_loop() will abort the loop after the next event is completed; - event_base_loopbreak() is typically invoked from this event's callback. - This behavior is analogous to the "break;" statement. - - Subsequent invocations of event_loop() will proceed normally. - - @param eb the event_base structure returned by event_init() - @return 0 if successful, or -1 if an error occurred - @see event_base_loopexit - */ -int event_base_loopbreak(struct event_base *); - - -/** - Add a timer event. - - @param ev the event struct - @param tv timeval struct - */ -#define evtimer_add(ev, tv) event_add(ev, tv) - - -/** - Define a timer event. - - @param ev event struct to be modified - @param cb callback function - @param arg argument that will be passed to the callback function - */ -#define evtimer_set(ev, cb, arg) event_set(ev, -1, 0, cb, arg) - - -/** - * Delete a timer event. - * - * @param ev the event struct to be disabled - */ -#define evtimer_del(ev) event_del(ev) -#define evtimer_pending(ev, tv) event_pending(ev, EV_TIMEOUT, tv) -#define evtimer_initialized(ev) ((ev)->ev_flags & EVLIST_INIT) - -/** - * Add a timeout event. - * - * @param ev the event struct to be disabled - * @param tv the timeout value, in seconds - */ -#define timeout_add(ev, tv) event_add(ev, tv) - - -/** - * Define a timeout event. - * - * @param ev the event struct to be defined - * @param cb the callback to be invoked when the timeout expires - * @param arg the argument to be passed to the callback - */ -#define timeout_set(ev, cb, arg) event_set(ev, -1, 0, cb, arg) - - -/** - * Disable a timeout event. - * - * @param ev the timeout event to be disabled - */ -#define timeout_del(ev) event_del(ev) - -#define timeout_pending(ev, tv) event_pending(ev, EV_TIMEOUT, tv) -#define timeout_initialized(ev) ((ev)->ev_flags & EVLIST_INIT) - -#define signal_add(ev, tv) event_add(ev, tv) -#define signal_set(ev, x, cb, arg) \ - event_set(ev, x, EV_SIGNAL|EV_PERSIST, cb, arg) -#define signal_del(ev) event_del(ev) -#define signal_pending(ev, tv) event_pending(ev, EV_SIGNAL, tv) -#define signal_initialized(ev) ((ev)->ev_flags & EVLIST_INIT) - -/** - Prepare an event structure to be added. - - The function event_set() prepares the event structure ev to be used in - future calls to event_add() and event_del(). The event will be prepared to - call the function specified by the fn argument with an int argument - indicating the file descriptor, a short argument indicating the type of - event, and a void * argument given in the arg argument. The fd indicates - the file descriptor that should be monitored for events. The events can be - either EV_READ, EV_WRITE, or both. Indicating that an application can read - or write from the file descriptor respectively without blocking. - - The function fn will be called with the file descriptor that triggered the - event and the type of event which will be either EV_TIMEOUT, EV_SIGNAL, - EV_READ, or EV_WRITE. The additional flag EV_PERSIST makes an event_add() - persistent until event_del() has been called. - - @param ev an event struct to be modified - @param fd the file descriptor to be monitored - @param event desired events to monitor; can be EV_READ and/or EV_WRITE - @param fn callback function to be invoked when the event occurs - @param arg an argument to be passed to the callback function - - @see event_add(), event_del(), event_once() - - */ -void event_set(struct event *, int, short, void (*)(int, short, void *), void *); - -/** - Schedule a one-time event to occur. - - The function event_once() is similar to event_set(). However, it schedules - a callback to be called exactly once and does not require the caller to - prepare an event structure. - - @param fd a file descriptor to monitor - @param events event(s) to monitor; can be any of EV_TIMEOUT | EV_READ | - EV_WRITE - @param callback callback function to be invoked when the event occurs - @param arg an argument to be passed to the callback function - @param timeout the maximum amount of time to wait for the event, or NULL - to wait forever - @return 0 if successful, or -1 if an error occurred - @see event_set() - - */ -int event_once(int, short, void (*)(int, short, void *), void *, - const struct timeval *); - - -/** - Schedule a one-time event (threadsafe variant) - - The function event_base_once() is similar to event_set(). However, it - schedules a callback to be called exactly once and does not require the - caller to prepare an event structure. - - @param base an event_base returned by event_init() - @param fd a file descriptor to monitor - @param events event(s) to monitor; can be any of EV_TIMEOUT | EV_READ | - EV_WRITE - @param callback callback function to be invoked when the event occurs - @param arg an argument to be passed to the callback function - @param timeout the maximum amount of time to wait for the event, or NULL - to wait forever - @return 0 if successful, or -1 if an error occurred - @see event_once() - */ -int event_base_once(struct event_base *base, int fd, short events, - void (*callback)(int, short, void *), void *arg, - const struct timeval *timeout); - - -/** - Add an event to the set of monitored events. - - The function event_add() schedules the execution of the ev event when the - event specified in event_set() occurs or in at least the time specified in - the tv. If tv is NULL, no timeout occurs and the function will only be - called if a matching event occurs on the file descriptor. The event in the - ev argument must be already initialized by event_set() and may not be used - in calls to event_set() until it has timed out or been removed with - event_del(). If the event in the ev argument already has a scheduled - timeout, the old timeout will be replaced by the new one. - - @param ev an event struct initialized via event_set() - @param timeout the maximum amount of time to wait for the event, or NULL - to wait forever - @return 0 if successful, or -1 if an error occurred - @see event_del(), event_set() - */ -int event_add(struct event *ev, const struct timeval *timeout); - - -/** - Remove an event from the set of monitored events. - - The function event_del() will cancel the event in the argument ev. If the - event has already executed or has never been added the call will have no - effect. - - @param ev an event struct to be removed from the working set - @return 0 if successful, or -1 if an error occurred - @see event_add() - */ -int event_del(struct event *); - -void event_active(struct event *, int, short); - - -/** - Checks if a specific event is pending or scheduled. - - @param ev an event struct previously passed to event_add() - @param event the requested event type; any of EV_TIMEOUT|EV_READ| - EV_WRITE|EV_SIGNAL - @param tv an alternate timeout (FIXME - is this true?) - - @return 1 if the event is pending, or 0 if the event has not occurred - - */ -int event_pending(struct event *ev, short event, struct timeval *tv); - - -/** - Test if an event structure has been initialized. - - The event_initialized() macro can be used to check if an event has been - initialized. - - @param ev an event structure to be tested - @return 1 if the structure has been initialized, or 0 if it has not been - initialized - */ -#ifdef WIN32 -#define event_initialized(ev) ((ev)->ev_flags & EVLIST_INIT && (ev)->ev_fd != (int)INVALID_HANDLE_VALUE) -#else -#define event_initialized(ev) ((ev)->ev_flags & EVLIST_INIT) -#endif - - -/** - Get the libevent version number. - - @return a string containing the version number of libevent - */ -const char *event_get_version(void); - - -/** - Get the kernel event notification mechanism used by libevent. - - @return a string identifying the kernel event mechanism (kqueue, epoll, etc.) - */ -const char *event_get_method(void); - - -/** - Set the number of different event priorities. - - By default libevent schedules all active events with the same priority. - However, some time it is desirable to process some events with a higher - priority than others. For that reason, libevent supports strict priority - queues. Active events with a lower priority are always processed before - events with a higher priority. - - The number of different priorities can be set initially with the - event_priority_init() function. This function should be called before the - first call to event_dispatch(). The event_priority_set() function can be - used to assign a priority to an event. By default, libevent assigns the - middle priority to all events unless their priority is explicitly set. - - @param npriorities the maximum number of priorities - @return 0 if successful, or -1 if an error occurred - @see event_base_priority_init(), event_priority_set() - - */ -int event_priority_init(int); - - -/** - Set the number of different event priorities (threadsafe variant). - - See the description of event_priority_init() for more information. - - @param eb the event_base structure returned by event_init() - @param npriorities the maximum number of priorities - @return 0 if successful, or -1 if an error occurred - @see event_priority_init(), event_priority_set() - */ -int event_base_priority_init(struct event_base *, int); - - -/** - Assign a priority to an event. - - @param ev an event struct - @param priority the new priority to be assigned - @return 0 if successful, or -1 if an error occurred - @see event_priority_init() - */ -int event_priority_set(struct event *, int); - - -/* These functions deal with buffering input and output */ - -struct evbuffer { - u_char *buffer; - u_char *orig_buffer; - - size_t misalign; - size_t totallen; - size_t off; - - void (*cb)(struct evbuffer *, size_t, size_t, void *); - void *cbarg; -}; - -/* Just for error reporting - use other constants otherwise */ -#define EVBUFFER_READ 0x01 -#define EVBUFFER_WRITE 0x02 -#define EVBUFFER_EOF 0x10 -#define EVBUFFER_ERROR 0x20 -#define EVBUFFER_TIMEOUT 0x40 - -struct bufferevent; -typedef void (*evbuffercb)(struct bufferevent *, void *); -typedef void (*everrorcb)(struct bufferevent *, short what, void *); - -struct event_watermark { - size_t low; - size_t high; -}; - -struct bufferevent { - struct event_base *ev_base; - - struct event ev_read; - struct event ev_write; - - struct evbuffer *input; - struct evbuffer *output; - - struct event_watermark wm_read; - struct event_watermark wm_write; - - evbuffercb readcb; - evbuffercb writecb; - everrorcb errorcb; - void *cbarg; - - int timeout_read; /* in seconds */ - int timeout_write; /* in seconds */ - - short enabled; /* events that are currently enabled */ -}; - - -/** - Create a new bufferevent. - - libevent provides an abstraction on top of the regular event callbacks. - This abstraction is called a buffered event. A buffered event provides - input and output buffers that get filled and drained automatically. The - user of a buffered event no longer deals directly with the I/O, but - instead is reading from input and writing to output buffers. - - Once initialized, the bufferevent structure can be used repeatedly with - bufferevent_enable() and bufferevent_disable(). - - When read enabled the bufferevent will try to read from the file descriptor - and call the read callback. The write callback is executed whenever the - output buffer is drained below the write low watermark, which is 0 by - default. - - If multiple bases are in use, bufferevent_base_set() must be called before - enabling the bufferevent for the first time. - - @param fd the file descriptor from which data is read and written to. - This file descriptor is not allowed to be a pipe(2). - @param readcb callback to invoke when there is data to be read, or NULL if - no callback is desired - @param writecb callback to invoke when the file descriptor is ready for - writing, or NULL if no callback is desired - @param errorcb callback to invoke when there is an error on the file - descriptor - @param cbarg an argument that will be supplied to each of the callbacks - (readcb, writecb, and errorcb) - @return a pointer to a newly allocated bufferevent struct, or NULL if an - error occurred - @see bufferevent_base_set(), bufferevent_free() - */ -struct bufferevent *bufferevent_new(int fd, - evbuffercb readcb, evbuffercb writecb, everrorcb errorcb, void *cbarg); - - -/** - Assign a bufferevent to a specific event_base. - - @param base an event_base returned by event_init() - @param bufev a bufferevent struct returned by bufferevent_new() - @return 0 if successful, or -1 if an error occurred - @see bufferevent_new() - */ -int bufferevent_base_set(struct event_base *base, struct bufferevent *bufev); - - -/** - Assign a priority to a bufferevent. - - @param bufev a bufferevent struct - @param pri the priority to be assigned - @return 0 if successful, or -1 if an error occurred - */ -int bufferevent_priority_set(struct bufferevent *bufev, int pri); - - -/** - Deallocate the storage associated with a bufferevent structure. - - @param bufev the bufferevent structure to be freed. - */ -void bufferevent_free(struct bufferevent *bufev); - - -/** - Changes the callbacks for a bufferevent. - - @param bufev the bufferevent object for which to change callbacks - @param readcb callback to invoke when there is data to be read, or NULL if - no callback is desired - @param writecb callback to invoke when the file descriptor is ready for - writing, or NULL if no callback is desired - @param errorcb callback to invoke when there is an error on the file - descriptor - @param cbarg an argument that will be supplied to each of the callbacks - (readcb, writecb, and errorcb) - @see bufferevent_new() - */ -void bufferevent_setcb(struct bufferevent *bufev, - evbuffercb readcb, evbuffercb writecb, everrorcb errorcb, void *cbarg); - -/** - Changes the file descriptor on which the bufferevent operates. - - @param bufev the bufferevent object for which to change the file descriptor - @param fd the file descriptor to operate on -*/ -void bufferevent_setfd(struct bufferevent *bufev, int fd); - -/** - Write data to a bufferevent buffer. - - The bufferevent_write() function can be used to write data to the file - descriptor. The data is appended to the output buffer and written to the - descriptor automatically as it becomes available for writing. - - @param bufev the bufferevent to be written to - @param data a pointer to the data to be written - @param size the length of the data, in bytes - @return 0 if successful, or -1 if an error occurred - @see bufferevent_write_buffer() - */ -int bufferevent_write(struct bufferevent *bufev, - const void *data, size_t size); - - -/** - Write data from an evbuffer to a bufferevent buffer. The evbuffer is - being drained as a result. - - @param bufev the bufferevent to be written to - @param buf the evbuffer to be written - @return 0 if successful, or -1 if an error occurred - @see bufferevent_write() - */ -int bufferevent_write_buffer(struct bufferevent *bufev, struct evbuffer *buf); - - -/** - Read data from a bufferevent buffer. - - The bufferevent_read() function is used to read data from the input buffer. - - @param bufev the bufferevent to be read from - @param data pointer to a buffer that will store the data - @param size the size of the data buffer, in bytes - @return the amount of data read, in bytes. - */ -size_t bufferevent_read(struct bufferevent *bufev, void *data, size_t size); - -/** - Enable a bufferevent. - - @param bufev the bufferevent to be enabled - @param event any combination of EV_READ | EV_WRITE. - @return 0 if successful, or -1 if an error occurred - @see bufferevent_disable() - */ -int bufferevent_enable(struct bufferevent *bufev, short event); - - -/** - Disable a bufferevent. - - @param bufev the bufferevent to be disabled - @param event any combination of EV_READ | EV_WRITE. - @return 0 if successful, or -1 if an error occurred - @see bufferevent_enable() - */ -int bufferevent_disable(struct bufferevent *bufev, short event); - - -/** - Set the read and write timeout for a buffered event. - - @param bufev the bufferevent to be modified - @param timeout_read the read timeout - @param timeout_write the write timeout - */ -void bufferevent_settimeout(struct bufferevent *bufev, - int timeout_read, int timeout_write); - - -/** - Sets the watermarks for read and write events. - - On input, a bufferevent does not invoke the user read callback unless - there is at least low watermark data in the buffer. If the read buffer - is beyond the high watermark, the buffevent stops reading from the network. - - On output, the user write callback is invoked whenever the buffered data - falls below the low watermark. - - @param bufev the bufferevent to be modified - @param events EV_READ, EV_WRITE or both - @param lowmark the lower watermark to set - @param highmark the high watermark to set -*/ - -void bufferevent_setwatermark(struct bufferevent *bufev, short events, - size_t lowmark, size_t highmark); - -#define EVBUFFER_LENGTH(x) (x)->off -#define EVBUFFER_DATA(x) (x)->buffer -#define EVBUFFER_INPUT(x) (x)->input -#define EVBUFFER_OUTPUT(x) (x)->output - - -/** - Allocate storage for a new evbuffer. - - @return a pointer to a newly allocated evbuffer struct, or NULL if an error - occurred - */ -struct evbuffer *evbuffer_new(void); - - -/** - Deallocate storage for an evbuffer. - - @param pointer to the evbuffer to be freed - */ -void evbuffer_free(struct evbuffer *); - - -/** - Expands the available space in an event buffer. - - Expands the available space in the event buffer to at least datlen - - @param buf the event buffer to be expanded - @param datlen the new minimum length requirement - @return 0 if successful, or -1 if an error occurred -*/ -int evbuffer_expand(struct evbuffer *, size_t); - - -/** - Append data to the end of an evbuffer. - - @param buf the event buffer to be appended to - @param data pointer to the beginning of the data buffer - @param datlen the number of bytes to be copied from the data buffer - */ -int evbuffer_add(struct evbuffer *, const void *, size_t); - - - -/** - Read data from an event buffer and drain the bytes read. - - @param buf the event buffer to be read from - @param data the destination buffer to store the result - @param datlen the maximum size of the destination buffer - @return the number of bytes read - */ -int evbuffer_remove(struct evbuffer *, void *, size_t); - - -/** - * Read a single line from an event buffer. - * - * Reads a line terminated by either '\r\n', '\n\r' or '\r' or '\n'. - * The returned buffer needs to be freed by the caller. - * - * @param buffer the evbuffer to read from - * @return pointer to a single line, or NULL if an error occurred - */ -char *evbuffer_readline(struct evbuffer *); - - -/** - Move data from one evbuffer into another evbuffer. - - This is a destructive add. The data from one buffer moves into - the other buffer. The destination buffer is expanded as needed. - - @param outbuf the output buffer - @param inbuf the input buffer - @return 0 if successful, or -1 if an error occurred - */ -int evbuffer_add_buffer(struct evbuffer *, struct evbuffer *); - - -/** - Append a formatted string to the end of an evbuffer. - - @param buf the evbuffer that will be appended to - @param fmt a format string - @param ... arguments that will be passed to printf(3) - @return The number of bytes added if successful, or -1 if an error occurred. - */ -int evbuffer_add_printf(struct evbuffer *, const char *fmt, ...) -#ifdef __GNUC__ - __attribute__((format(printf, 2, 3))) -#endif -; - - -/** - Append a va_list formatted string to the end of an evbuffer. - - @param buf the evbuffer that will be appended to - @param fmt a format string - @param ap a varargs va_list argument array that will be passed to vprintf(3) - @return The number of bytes added if successful, or -1 if an error occurred. - */ -int evbuffer_add_vprintf(struct evbuffer *, const char *fmt, va_list ap); - - -/** - Remove a specified number of bytes data from the beginning of an evbuffer. - - @param buf the evbuffer to be drained - @param len the number of bytes to drain from the beginning of the buffer - */ -void evbuffer_drain(struct evbuffer *, size_t); - - -/** - Write the contents of an evbuffer to a file descriptor. - - The evbuffer will be drained after the bytes have been successfully written. - - @param buffer the evbuffer to be written and drained - @param fd the file descriptor to be written to - @return the number of bytes written, or -1 if an error occurred - @see evbuffer_read() - */ -int evbuffer_write(struct evbuffer *, int); - - -/** - Read from a file descriptor and store the result in an evbuffer. - - @param buf the evbuffer to store the result - @param fd the file descriptor to read from - @param howmuch the number of bytes to be read - @return the number of bytes read, or -1 if an error occurred - @see evbuffer_write() - */ -int evbuffer_read(struct evbuffer *, int, int); - - -/** - Find a string within an evbuffer. - - @param buffer the evbuffer to be searched - @param what the string to be searched for - @param len the length of the search string - @return a pointer to the beginning of the search string, or NULL if the search failed. - */ -u_char *evbuffer_find(struct evbuffer *, const u_char *, size_t); - -/** - Set a callback to invoke when the evbuffer is modified. - - @param buffer the evbuffer to be monitored - @param cb the callback function to invoke when the evbuffer is modified - @param cbarg an argument to be provided to the callback function - */ -void evbuffer_setcb(struct evbuffer *, void (*)(struct evbuffer *, size_t, size_t, void *), void *); - -/* - * Marshaling tagged data - We assume that all tags are inserted in their - * numeric order - so that unknown tags will always be higher than the - * known ones - and we can just ignore the end of an event buffer. - */ - -void evtag_init(void); - -void evtag_marshal(struct evbuffer *evbuf, ev_uint32_t tag, const void *data, - ev_uint32_t len); - -/** - Encode an integer and store it in an evbuffer. - - We encode integer's by nibbles; the first nibble contains the number - of significant nibbles - 1; this allows us to encode up to 64-bit - integers. This function is byte-order independent. - - @param evbuf evbuffer to store the encoded number - @param number a 32-bit integer - */ -void encode_int(struct evbuffer *evbuf, ev_uint32_t number); - -void evtag_marshal_int(struct evbuffer *evbuf, ev_uint32_t tag, - ev_uint32_t integer); - -void evtag_marshal_string(struct evbuffer *buf, ev_uint32_t tag, - const char *string); - -void evtag_marshal_timeval(struct evbuffer *evbuf, ev_uint32_t tag, - struct timeval *tv); - -int evtag_unmarshal(struct evbuffer *src, ev_uint32_t *ptag, - struct evbuffer *dst); -int evtag_peek(struct evbuffer *evbuf, ev_uint32_t *ptag); -int evtag_peek_length(struct evbuffer *evbuf, ev_uint32_t *plength); -int evtag_payload_length(struct evbuffer *evbuf, ev_uint32_t *plength); -int evtag_consume(struct evbuffer *evbuf); - -int evtag_unmarshal_int(struct evbuffer *evbuf, ev_uint32_t need_tag, - ev_uint32_t *pinteger); - -int evtag_unmarshal_fixed(struct evbuffer *src, ev_uint32_t need_tag, - void *data, size_t len); - -int evtag_unmarshal_string(struct evbuffer *evbuf, ev_uint32_t need_tag, - char **pstring); - -int evtag_unmarshal_timeval(struct evbuffer *evbuf, ev_uint32_t need_tag, - struct timeval *ptv); - -#ifdef __cplusplus -} -#endif - -#endif /* _EVENT_H_ */ diff -Nru mysql-5.7-5.7.25/libevent/event-internal.h mysql-5.7-5.7.26/libevent/event-internal.h --- mysql-5.7-5.7.25/libevent/event-internal.h 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/event-internal.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,102 +0,0 @@ -/* - * Copyright (c) 2000-2004 Niels Provos - * All rights reserved. - * - * 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. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. - */ -#ifndef _EVENT_INTERNAL_H_ -#define _EVENT_INTERNAL_H_ - -#ifdef __cplusplus -extern "C" { -#endif - -#include "config.h" -#include "min_heap.h" -#include "evsignal.h" - -struct eventop { - const char *name; - void *(*init)(struct event_base *); - int (*add)(void *, struct event *); - int (*del)(void *, struct event *); - int (*dispatch)(struct event_base *, void *, struct timeval *); - void (*dealloc)(struct event_base *, void *); - /* set if we need to reinitialize the event base */ - int need_reinit; -}; - -struct event_base { - const struct eventop *evsel; - void *evbase; - int event_count; /* counts number of total events */ - int event_count_active; /* counts number of active events */ - - int event_gotterm; /* Set to terminate loop */ - int event_break; /* Set to terminate loop immediately */ - - /* active event management */ - struct event_list **activequeues; - int nactivequeues; - - /* signal handling info */ - struct evsignal_info sig; - - struct event_list eventqueue; - struct timeval event_tv; - - struct min_heap timeheap; - - struct timeval tv_cache; -}; - -/* Internal use only: Functions that might be missing from */ -#ifndef HAVE_TAILQFOREACH -#define TAILQ_FIRST(head) ((head)->tqh_first) -#define TAILQ_END(head) NULL -#define TAILQ_NEXT(elm, field) ((elm)->field.tqe_next) -#define TAILQ_FOREACH(var, head, field) \ - for((var) = TAILQ_FIRST(head); \ - (var) != TAILQ_END(head); \ - (var) = TAILQ_NEXT(var, field)) -#define TAILQ_INSERT_BEFORE(listelm, elm, field) do { \ - (elm)->field.tqe_prev = (listelm)->field.tqe_prev; \ - (elm)->field.tqe_next = (listelm); \ - *(listelm)->field.tqe_prev = (elm); \ - (listelm)->field.tqe_prev = &(elm)->field.tqe_next; \ -} while (0) -#define TAILQ_LAST(head, headname) \ - (*(((struct headname *)((head)->tqh_last))->tqh_last)) -#define TAILQ_EMPTY(head) ((head)->tqh_first == NULL) - -#endif /* TAILQ_FOREACH */ - -int _evsignal_set_handler(struct event_base *base, int evsignal, - void (*fn)(int)); -int _evsignal_restore_handler(struct event_base *base, int evsignal); - -#ifdef __cplusplus -} -#endif - -#endif /* _EVENT_INTERNAL_H_ */ diff -Nru mysql-5.7-5.7.25/libevent/event_rpcgen.py mysql-5.7-5.7.26/libevent/event_rpcgen.py --- mysql-5.7-5.7.25/libevent/event_rpcgen.py 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/event_rpcgen.py 1970-01-01 00:00:00.000000000 +0000 @@ -1,1417 +0,0 @@ -#!/usr/bin/env python -# -# Copyright (c) 2005 Niels Provos -# All rights reserved. -# -# Generates marshaling code based on libevent. - -import sys -import re - -# -_NAME = "event_rpcgen.py" -_VERSION = "0.1" -_STRUCT_RE = '[a-z][a-z_0-9]*' - -# Globals -line_count = 0 - -white = re.compile(r'^\s+') -cppcomment = re.compile(r'\/\/.*$') -headerdirect = [] -cppdirect = [] - -# Holds everything that makes a struct -class Struct: - def __init__(self, name): - self._name = name - self._entries = [] - self._tags = {} - print >>sys.stderr, ' Created struct: %s' % name - - def AddEntry(self, entry): - if self._tags.has_key(entry.Tag()): - print >>sys.stderr, ( 'Entry "%s" duplicates tag number ' - '%d from "%s" around line %d' ) % ( - entry.Name(), entry.Tag(), - self._tags[entry.Tag()], line_count) - sys.exit(1) - self._entries.append(entry) - self._tags[entry.Tag()] = entry.Name() - print >>sys.stderr, ' Added entry: %s' % entry.Name() - - def Name(self): - return self._name - - def EntryTagName(self, entry): - """Creates the name inside an enumeration for distinguishing data - types.""" - name = "%s_%s" % (self._name, entry.Name()) - return name.upper() - - def PrintIdented(self, file, ident, code): - """Takes an array, add indentation to each entry and prints it.""" - for entry in code: - print >>file, '%s%s' % (ident, entry) - - def PrintTags(self, file): - """Prints the tag definitions for a structure.""" - print >>file, '/* Tag definition for %s */' % self._name - print >>file, 'enum %s_ {' % self._name.lower() - for entry in self._entries: - print >>file, ' %s=%d,' % (self.EntryTagName(entry), - entry.Tag()) - print >>file, ' %s_MAX_TAGS' % (self._name.upper()) - print >>file, '};\n' - - def PrintForwardDeclaration(self, file): - print >>file, 'struct %s;' % self._name - - def PrintDeclaration(self, file): - print >>file, '/* Structure declaration for %s */' % self._name - print >>file, 'struct %s_access_ {' % self._name - for entry in self._entries: - dcl = entry.AssignDeclaration('(*%s_assign)' % entry.Name()) - dcl.extend( - entry.GetDeclaration('(*%s_get)' % entry.Name())) - if entry.Array(): - dcl.extend( - entry.AddDeclaration('(*%s_add)' % entry.Name())) - self.PrintIdented(file, ' ', dcl) - print >>file, '};\n' - - print >>file, 'struct %s {' % self._name - print >>file, ' struct %s_access_ *base;\n' % self._name - for entry in self._entries: - dcl = entry.Declaration() - self.PrintIdented(file, ' ', dcl) - print >>file, '' - for entry in self._entries: - print >>file, ' uint8_t %s_set;' % entry.Name() - print >>file, '};\n' - - print >>file, \ -"""struct %(name)s *%(name)s_new(void); -void %(name)s_free(struct %(name)s *); -void %(name)s_clear(struct %(name)s *); -void %(name)s_marshal(struct evbuffer *, const struct %(name)s *); -int %(name)s_unmarshal(struct %(name)s *, struct evbuffer *); -int %(name)s_complete(struct %(name)s *); -void evtag_marshal_%(name)s(struct evbuffer *, uint32_t, - const struct %(name)s *); -int evtag_unmarshal_%(name)s(struct evbuffer *, uint32_t, - struct %(name)s *);""" % { 'name' : self._name } - - - # Write a setting function of every variable - for entry in self._entries: - self.PrintIdented(file, '', entry.AssignDeclaration( - entry.AssignFuncName())) - self.PrintIdented(file, '', entry.GetDeclaration( - entry.GetFuncName())) - if entry.Array(): - self.PrintIdented(file, '', entry.AddDeclaration( - entry.AddFuncName())) - - print >>file, '/* --- %s done --- */\n' % self._name - - def PrintCode(self, file): - print >>file, ('/*\n' - ' * Implementation of %s\n' - ' */\n') % self._name - - print >>file, \ - 'static struct %(name)s_access_ __%(name)s_base = {' % \ - { 'name' : self._name } - for entry in self._entries: - self.PrintIdented(file, ' ', entry.CodeBase()) - print >>file, '};\n' - - # Creation - print >>file, ( - 'struct %(name)s *\n' - '%(name)s_new(void)\n' - '{\n' - ' struct %(name)s *tmp;\n' - ' if ((tmp = malloc(sizeof(struct %(name)s))) == NULL) {\n' - ' event_warn("%%s: malloc", __func__);\n' - ' return (NULL);\n' - ' }\n' - ' tmp->base = &__%(name)s_base;\n') % { 'name' : self._name } - - for entry in self._entries: - self.PrintIdented(file, ' ', entry.CodeNew('tmp')) - print >>file, ' tmp->%s_set = 0;\n' % entry.Name() - - print >>file, ( - ' return (tmp);\n' - '}\n') - - # Adding - for entry in self._entries: - if entry.Array(): - self.PrintIdented(file, '', entry.CodeAdd()) - print >>file, '' - - # Assigning - for entry in self._entries: - self.PrintIdented(file, '', entry.CodeAssign()) - print >>file, '' - - # Getting - for entry in self._entries: - self.PrintIdented(file, '', entry.CodeGet()) - print >>file, '' - - # Clearing - print >>file, ( 'void\n' - '%(name)s_clear(struct %(name)s *tmp)\n' - '{' - ) % { 'name' : self._name } - for entry in self._entries: - self.PrintIdented(file, ' ', entry.CodeClear('tmp')) - - print >>file, '}\n' - - # Freeing - print >>file, ( 'void\n' - '%(name)s_free(struct %(name)s *tmp)\n' - '{' - ) % { 'name' : self._name } - - for entry in self._entries: - self.PrintIdented(file, ' ', entry.CodeFree('tmp')) - - print >>file, (' free(tmp);\n' - '}\n') - - # Marshaling - print >>file, ('void\n' - '%(name)s_marshal(struct evbuffer *evbuf, ' - 'const struct %(name)s *tmp)' - '{') % { 'name' : self._name } - for entry in self._entries: - indent = ' ' - # Optional entries do not have to be set - if entry.Optional(): - indent += ' ' - print >>file, ' if (tmp->%s_set) {' % entry.Name() - self.PrintIdented( - file, indent, - entry.CodeMarshal('evbuf', self.EntryTagName(entry), 'tmp')) - if entry.Optional(): - print >>file, ' }' - - print >>file, '}\n' - - # Unmarshaling - print >>file, ('int\n' - '%(name)s_unmarshal(struct %(name)s *tmp, ' - ' struct evbuffer *evbuf)\n' - '{\n' - ' uint32_t tag;\n' - ' while (EVBUFFER_LENGTH(evbuf) > 0) {\n' - ' if (evtag_peek(evbuf, &tag) == -1)\n' - ' return (-1);\n' - ' switch (tag) {\n' - ) % { 'name' : self._name } - for entry in self._entries: - print >>file, ' case %s:\n' % self.EntryTagName(entry) - if not entry.Array(): - print >>file, ( - ' if (tmp->%s_set)\n' - ' return (-1);' - ) % (entry.Name()) - - self.PrintIdented( - file, ' ', - entry.CodeUnmarshal('evbuf', - self.EntryTagName(entry), 'tmp')) - - print >>file, ( ' tmp->%s_set = 1;\n' % entry.Name() + - ' break;\n' ) - print >>file, ( ' default:\n' - ' return -1;\n' - ' }\n' - ' }\n' ) - # Check if it was decoded completely - print >>file, ( ' if (%(name)s_complete(tmp) == -1)\n' - ' return (-1);' - ) % { 'name' : self._name } - - # Successfully decoded - print >>file, ( ' return (0);\n' - '}\n') - - # Checking if a structure has all the required data - print >>file, ( - 'int\n' - '%(name)s_complete(struct %(name)s *msg)\n' - '{' ) % { 'name' : self._name } - for entry in self._entries: - self.PrintIdented( - file, ' ', - entry.CodeComplete('msg')) - print >>file, ( - ' return (0);\n' - '}\n' ) - - # Complete message unmarshaling - print >>file, ( - 'int\n' - 'evtag_unmarshal_%(name)s(struct evbuffer *evbuf, ' - 'uint32_t need_tag, struct %(name)s *msg)\n' - '{\n' - ' uint32_t tag;\n' - ' int res = -1;\n' - '\n' - ' struct evbuffer *tmp = evbuffer_new();\n' - '\n' - ' if (evtag_unmarshal(evbuf, &tag, tmp) == -1' - ' || tag != need_tag)\n' - ' goto error;\n' - '\n' - ' if (%(name)s_unmarshal(msg, tmp) == -1)\n' - ' goto error;\n' - '\n' - ' res = 0;\n' - '\n' - ' error:\n' - ' evbuffer_free(tmp);\n' - ' return (res);\n' - '}\n' ) % { 'name' : self._name } - - # Complete message marshaling - print >>file, ( - 'void\n' - 'evtag_marshal_%(name)s(struct evbuffer *evbuf, uint32_t tag, ' - 'const struct %(name)s *msg)\n' - '{\n' - ' struct evbuffer *_buf = evbuffer_new();\n' - ' assert(_buf != NULL);\n' - ' evbuffer_drain(_buf, -1);\n' - ' %(name)s_marshal(_buf, msg);\n' - ' evtag_marshal(evbuf, tag, EVBUFFER_DATA(_buf), ' - 'EVBUFFER_LENGTH(_buf));\n' - ' evbuffer_free(_buf);\n' - '}\n' ) % { 'name' : self._name } - -class Entry: - def __init__(self, type, name, tag): - self._type = type - self._name = name - self._tag = int(tag) - self._ctype = type - self._optional = 0 - self._can_be_array = 0 - self._array = 0 - self._line_count = -1 - self._struct = None - self._refname = None - - def GetTranslation(self): - return { "parent_name" : self._struct.Name(), - "name" : self._name, - "ctype" : self._ctype, - "refname" : self._refname - } - - def SetStruct(self, struct): - self._struct = struct - - def LineCount(self): - assert self._line_count != -1 - return self._line_count - - def SetLineCount(self, number): - self._line_count = number - - def Array(self): - return self._array - - def Optional(self): - return self._optional - - def Tag(self): - return self._tag - - def Name(self): - return self._name - - def Type(self): - return self._type - - def MakeArray(self, yes=1): - self._array = yes - - def MakeOptional(self): - self._optional = 1 - - def GetFuncName(self): - return '%s_%s_get' % (self._struct.Name(), self._name) - - def GetDeclaration(self, funcname): - code = [ 'int %s(struct %s *, %s *);' % ( - funcname, self._struct.Name(), self._ctype ) ] - return code - - def CodeGet(self): - code = ( - 'int', - '%(parent_name)s_%(name)s_get(struct %(parent_name)s *msg, ' - '%(ctype)s *value)', - '{', - ' if (msg->%(name)s_set != 1)', - ' return (-1);', - ' *value = msg->%(name)s_data;', - ' return (0);', - '}' ) - code = '\n'.join(code) - code = code % self.GetTranslation() - return code.split('\n') - - def AssignFuncName(self): - return '%s_%s_assign' % (self._struct.Name(), self._name) - - def AddFuncName(self): - return '%s_%s_add' % (self._struct.Name(), self._name) - - def AssignDeclaration(self, funcname): - code = [ 'int %s(struct %s *, const %s);' % ( - funcname, self._struct.Name(), self._ctype ) ] - return code - - def CodeAssign(self): - code = [ 'int', - '%(parent_name)s_%(name)s_assign(struct %(parent_name)s *msg,' - ' const %(ctype)s value)', - '{', - ' msg->%(name)s_set = 1;', - ' msg->%(name)s_data = value;', - ' return (0);', - '}' ] - code = '\n'.join(code) - code = code % self.GetTranslation() - return code.split('\n') - - def CodeClear(self, structname): - code = [ '%s->%s_set = 0;' % (structname, self.Name()) ] - - return code - - def CodeComplete(self, structname): - if self.Optional(): - return [] - - code = [ 'if (!%s->%s_set)' % (structname, self.Name()), - ' return (-1);' ] - - return code - - def CodeFree(self, name): - return [] - - def CodeBase(self): - code = [ - '%(parent_name)s_%(name)s_assign,', - '%(parent_name)s_%(name)s_get,' - ] - if self.Array(): - code.append('%(parent_name)s_%(name)s_add,') - - code = '\n'.join(code) - code = code % self.GetTranslation() - return code.split('\n') - - def Verify(self): - if self.Array() and not self._can_be_array: - print >>sys.stderr, ( - 'Entry "%s" cannot be created as an array ' - 'around line %d' ) % (self._name, self.LineCount()) - sys.exit(1) - if not self._struct: - print >>sys.stderr, ( - 'Entry "%s" does not know which struct it belongs to ' - 'around line %d' ) % (self._name, self.LineCount()) - sys.exit(1) - if self._optional and self._array: - print >>sys.stderr, ( 'Entry "%s" has illegal combination of ' - 'optional and array around line %d' ) % ( - self._name, self.LineCount() ) - sys.exit(1) - -class EntryBytes(Entry): - def __init__(self, type, name, tag, length): - # Init base class - Entry.__init__(self, type, name, tag) - - self._length = length - self._ctype = 'uint8_t' - - def GetDeclaration(self, funcname): - code = [ 'int %s(struct %s *, %s **);' % ( - funcname, self._struct.Name(), self._ctype ) ] - return code - - def AssignDeclaration(self, funcname): - code = [ 'int %s(struct %s *, const %s *);' % ( - funcname, self._struct.Name(), self._ctype ) ] - return code - - def Declaration(self): - dcl = ['uint8_t %s_data[%s];' % (self._name, self._length)] - - return dcl - - def CodeGet(self): - name = self._name - code = [ 'int', - '%s_%s_get(struct %s *msg, %s **value)' % ( - self._struct.Name(), name, - self._struct.Name(), self._ctype), - '{', - ' if (msg->%s_set != 1)' % name, - ' return (-1);', - ' *value = msg->%s_data;' % name, - ' return (0);', - '}' ] - return code - - def CodeAssign(self): - name = self._name - code = [ 'int', - '%s_%s_assign(struct %s *msg, const %s *value)' % ( - self._struct.Name(), name, - self._struct.Name(), self._ctype), - '{', - ' msg->%s_set = 1;' % name, - ' memcpy(msg->%s_data, value, %s);' % ( - name, self._length), - ' return (0);', - '}' ] - return code - - def CodeUnmarshal(self, buf, tag_name, var_name): - code = [ 'if (evtag_unmarshal_fixed(%s, %s, ' % (buf, tag_name) + - '%s->%s_data, ' % (var_name, self._name) + - 'sizeof(%s->%s_data)) == -1) {' % ( - var_name, self._name), - ' event_warnx("%%s: failed to unmarshal %s", __func__);' % ( - self._name ), - ' return (-1);', - '}' - ] - return code - - def CodeMarshal(self, buf, tag_name, var_name): - code = ['evtag_marshal(%s, %s, %s->%s_data, sizeof(%s->%s_data));' % ( - buf, tag_name, var_name, self._name, var_name, self._name )] - return code - - def CodeClear(self, structname): - code = [ '%s->%s_set = 0;' % (structname, self.Name()), - 'memset(%s->%s_data, 0, sizeof(%s->%s_data));' % ( - structname, self._name, structname, self._name)] - - return code - - def CodeNew(self, name): - code = ['memset(%s->%s_data, 0, sizeof(%s->%s_data));' % ( - name, self._name, name, self._name)] - return code - - def Verify(self): - if not self._length: - print >>sys.stderr, 'Entry "%s" needs a length around line %d' % ( - self._name, self.LineCount() ) - sys.exit(1) - - Entry.Verify(self) - -class EntryInt(Entry): - def __init__(self, type, name, tag): - # Init base class - Entry.__init__(self, type, name, tag) - - self._ctype = 'uint32_t' - - def CodeUnmarshal(self, buf, tag_name, var_name): - code = ['if (evtag_unmarshal_int(%s, %s, &%s->%s_data) == -1) {' % ( - buf, tag_name, var_name, self._name), - ' event_warnx("%%s: failed to unmarshal %s", __func__);' % ( - self._name ), - ' return (-1);', - '}' ] - return code - - def CodeMarshal(self, buf, tag_name, var_name): - code = ['evtag_marshal_int(%s, %s, %s->%s_data);' % ( - buf, tag_name, var_name, self._name)] - return code - - def Declaration(self): - dcl = ['uint32_t %s_data;' % self._name] - - return dcl - - def CodeNew(self, name): - code = ['%s->%s_data = 0;' % (name, self._name)] - return code - -class EntryString(Entry): - def __init__(self, type, name, tag): - # Init base class - Entry.__init__(self, type, name, tag) - - self._ctype = 'char *' - - def CodeAssign(self): - name = self._name - code = """int -%(parent_name)s_%(name)s_assign(struct %(parent_name)s *msg, - const %(ctype)s value) -{ - if (msg->%(name)s_data != NULL) - free(msg->%(name)s_data); - if ((msg->%(name)s_data = strdup(value)) == NULL) - return (-1); - msg->%(name)s_set = 1; - return (0); -}""" % self.GetTranslation() - - return code.split('\n') - - def CodeUnmarshal(self, buf, tag_name, var_name): - code = ['if (evtag_unmarshal_string(%s, %s, &%s->%s_data) == -1) {' % ( - buf, tag_name, var_name, self._name), - ' event_warnx("%%s: failed to unmarshal %s", __func__);' % ( - self._name ), - ' return (-1);', - '}' - ] - return code - - def CodeMarshal(self, buf, tag_name, var_name): - code = ['evtag_marshal_string(%s, %s, %s->%s_data);' % ( - buf, tag_name, var_name, self._name)] - return code - - def CodeClear(self, structname): - code = [ 'if (%s->%s_set == 1) {' % (structname, self.Name()), - ' free (%s->%s_data);' % (structname, self.Name()), - ' %s->%s_data = NULL;' % (structname, self.Name()), - ' %s->%s_set = 0;' % (structname, self.Name()), - '}' - ] - - return code - - def CodeNew(self, name): - code = ['%s->%s_data = NULL;' % (name, self._name)] - return code - - def CodeFree(self, name): - code = ['if (%s->%s_data != NULL)' % (name, self._name), - ' free (%s->%s_data); ' % (name, self._name)] - - return code - - def Declaration(self): - dcl = ['char *%s_data;' % self._name] - - return dcl - -class EntryStruct(Entry): - def __init__(self, type, name, tag, refname): - # Init base class - Entry.__init__(self, type, name, tag) - - self._can_be_array = 1 - self._refname = refname - self._ctype = 'struct %s*' % refname - - def CodeGet(self): - name = self._name - code = [ 'int', - '%s_%s_get(struct %s *msg, %s *value)' % ( - self._struct.Name(), name, - self._struct.Name(), self._ctype), - '{', - ' if (msg->%s_set != 1) {' % name, - ' msg->%s_data = %s_new();' % (name, self._refname), - ' if (msg->%s_data == NULL)' % name, - ' return (-1);', - ' msg->%s_set = 1;' % name, - ' }', - ' *value = msg->%s_data;' % name, - ' return (0);', - '}' ] - return code - - def CodeAssign(self): - name = self._name - code = """int -%(parent_name)s_%(name)s_assign(struct %(parent_name)s *msg, - const %(ctype)s value) -{ - struct evbuffer *tmp = NULL; - if (msg->%(name)s_set) { - %(refname)s_clear(msg->%(name)s_data); - msg->%(name)s_set = 0; - } else { - msg->%(name)s_data = %(refname)s_new(); - if (msg->%(name)s_data == NULL) { - event_warn("%%s: %(refname)s_new()", __func__); - goto error; - } - } - if ((tmp = evbuffer_new()) == NULL) { - event_warn("%%s: evbuffer_new()", __func__); - goto error; - } - %(refname)s_marshal(tmp, value); - if (%(refname)s_unmarshal(msg->%(name)s_data, tmp) == -1) { - event_warnx("%%s: %(refname)s_unmarshal", __func__); - goto error; - } - msg->%(name)s_set = 1; - evbuffer_free(tmp); - return (0); - error: - if (tmp != NULL) - evbuffer_free(tmp); - if (msg->%(name)s_data != NULL) { - %(refname)s_free(msg->%(name)s_data); - msg->%(name)s_data = NULL; - } - return (-1); -}""" % self.GetTranslation() - return code.split('\n') - - def CodeComplete(self, structname): - if self.Optional(): - code = [ 'if (%s->%s_set && %s_complete(%s->%s_data) == -1)' % ( - structname, self.Name(), - self._refname, structname, self.Name()), - ' return (-1);' ] - else: - code = [ 'if (%s_complete(%s->%s_data) == -1)' % ( - self._refname, structname, self.Name()), - ' return (-1);' ] - - return code - - def CodeUnmarshal(self, buf, tag_name, var_name): - code = ['%s->%s_data = %s_new();' % ( - var_name, self._name, self._refname), - 'if (%s->%s_data == NULL)' % (var_name, self._name), - ' return (-1);', - 'if (evtag_unmarshal_%s(%s, %s, %s->%s_data) == -1) {' % ( - self._refname, buf, tag_name, var_name, self._name), - ' event_warnx("%%s: failed to unmarshal %s", __func__);' % ( - self._name ), - ' return (-1);', - '}' - ] - return code - - def CodeMarshal(self, buf, tag_name, var_name): - code = ['evtag_marshal_%s(%s, %s, %s->%s_data);' % ( - self._refname, buf, tag_name, var_name, self._name)] - return code - - def CodeClear(self, structname): - code = [ 'if (%s->%s_set == 1) {' % (structname, self.Name()), - ' %s_free(%s->%s_data);' % ( - self._refname, structname, self.Name()), - ' %s->%s_data = NULL;' % (structname, self.Name()), - ' %s->%s_set = 0;' % (structname, self.Name()), - '}' - ] - - return code - - def CodeNew(self, name): - code = ['%s->%s_data = NULL;' % (name, self._name)] - return code - - def CodeFree(self, name): - code = ['if (%s->%s_data != NULL)' % (name, self._name), - ' %s_free(%s->%s_data); ' % ( - self._refname, name, self._name)] - - return code - - def Declaration(self): - dcl = ['%s %s_data;' % (self._ctype, self._name)] - - return dcl - -class EntryVarBytes(Entry): - def __init__(self, type, name, tag): - # Init base class - Entry.__init__(self, type, name, tag) - - self._ctype = 'uint8_t *' - - def GetDeclaration(self, funcname): - code = [ 'int %s(struct %s *, %s *, uint32_t *);' % ( - funcname, self._struct.Name(), self._ctype ) ] - return code - - def AssignDeclaration(self, funcname): - code = [ 'int %s(struct %s *, const %s, uint32_t);' % ( - funcname, self._struct.Name(), self._ctype ) ] - return code - - def CodeAssign(self): - name = self._name - code = [ 'int', - '%s_%s_assign(struct %s *msg, ' - 'const %s value, uint32_t len)' % ( - self._struct.Name(), name, - self._struct.Name(), self._ctype), - '{', - ' if (msg->%s_data != NULL)' % name, - ' free (msg->%s_data);' % name, - ' msg->%s_data = malloc(len);' % name, - ' if (msg->%s_data == NULL)' % name, - ' return (-1);', - ' msg->%s_set = 1;' % name, - ' msg->%s_length = len;' % name, - ' memcpy(msg->%s_data, value, len);' % name, - ' return (0);', - '}' ] - return code - - def CodeGet(self): - name = self._name - code = [ 'int', - '%s_%s_get(struct %s *msg, %s *value, uint32_t *plen)' % ( - self._struct.Name(), name, - self._struct.Name(), self._ctype), - '{', - ' if (msg->%s_set != 1)' % name, - ' return (-1);', - ' *value = msg->%s_data;' % name, - ' *plen = msg->%s_length;' % name, - ' return (0);', - '}' ] - return code - - def CodeUnmarshal(self, buf, tag_name, var_name): - code = ['if (evtag_payload_length(%s, &%s->%s_length) == -1)' % ( - buf, var_name, self._name), - ' return (-1);', - # We do not want DoS opportunities - 'if (%s->%s_length > EVBUFFER_LENGTH(%s))' % ( - var_name, self._name, buf), - ' return (-1);', - 'if ((%s->%s_data = malloc(%s->%s_length)) == NULL)' % ( - var_name, self._name, var_name, self._name), - ' return (-1);', - 'if (evtag_unmarshal_fixed(%s, %s, %s->%s_data, ' - '%s->%s_length) == -1) {' % ( - buf, tag_name, var_name, self._name, var_name, self._name), - ' event_warnx("%%s: failed to unmarshal %s", __func__);' % ( - self._name ), - ' return (-1);', - '}' - ] - return code - - def CodeMarshal(self, buf, tag_name, var_name): - code = ['evtag_marshal(%s, %s, %s->%s_data, %s->%s_length);' % ( - buf, tag_name, var_name, self._name, var_name, self._name)] - return code - - def CodeClear(self, structname): - code = [ 'if (%s->%s_set == 1) {' % (structname, self.Name()), - ' free (%s->%s_data);' % (structname, self.Name()), - ' %s->%s_data = NULL;' % (structname, self.Name()), - ' %s->%s_length = 0;' % (structname, self.Name()), - ' %s->%s_set = 0;' % (structname, self.Name()), - '}' - ] - - return code - - def CodeNew(self, name): - code = ['%s->%s_data = NULL;' % (name, self._name), - '%s->%s_length = 0;' % (name, self._name) ] - return code - - def CodeFree(self, name): - code = ['if (%s->%s_data != NULL)' % (name, self._name), - ' free (%s->%s_data); ' % (name, self._name)] - - return code - - def Declaration(self): - dcl = ['uint8_t *%s_data;' % self._name, - 'uint32_t %s_length;' % self._name] - - return dcl - -class EntryArray(Entry): - def __init__(self, entry): - # Init base class - Entry.__init__(self, entry._type, entry._name, entry._tag) - - self._entry = entry - self._refname = entry._refname - self._ctype = 'struct %s *' % self._refname - - def GetDeclaration(self, funcname): - """Allows direct access to elements of the array.""" - translate = self.GetTranslation() - translate["funcname"] = funcname - code = [ - 'int %(funcname)s(struct %(parent_name)s *, int, %(ctype)s *);' % - translate ] - return code - - def AssignDeclaration(self, funcname): - code = [ 'int %s(struct %s *, int, const %s);' % ( - funcname, self._struct.Name(), self._ctype ) ] - return code - - def AddDeclaration(self, funcname): - code = [ '%s %s(struct %s *);' % ( - self._ctype, funcname, self._struct.Name() ) ] - return code - - def CodeGet(self): - code = """int -%(parent_name)s_%(name)s_get(struct %(parent_name)s *msg, int offset, - %(ctype)s *value) -{ - if (!msg->%(name)s_set || offset < 0 || offset >= msg->%(name)s_length) - return (-1); - *value = msg->%(name)s_data[offset]; - return (0); -}""" % self.GetTranslation() - - return code.split('\n') - - def CodeAssign(self): - code = """int -%(parent_name)s_%(name)s_assign(struct %(parent_name)s *msg, int off, - const %(ctype)s value) -{ - struct evbuffer *tmp = NULL; - if (!msg->%(name)s_set || off < 0 || off >= msg->%(name)s_length) - return (-1); - %(refname)s_clear(msg->%(name)s_data[off]); - if ((tmp = evbuffer_new()) == NULL) { - event_warn("%%s: evbuffer_new()", __func__); - goto error; - } - %(refname)s_marshal(tmp, value); - if (%(refname)s_unmarshal(msg->%(name)s_data[off], tmp) == -1) { - event_warnx("%%s: %(refname)s_unmarshal", __func__); - goto error; - } - evbuffer_free(tmp); - return (0); -error: - if (tmp != NULL) - evbuffer_free(tmp); - %(refname)s_clear(msg->%(name)s_data[off]); - return (-1); -}""" % self.GetTranslation() - - return code.split('\n') - - def CodeAdd(self): - code = \ -"""%(ctype)s -%(parent_name)s_%(name)s_add(struct %(parent_name)s *msg) -{ - if (++msg->%(name)s_length >= msg->%(name)s_num_allocated) { - int tobe_allocated = msg->%(name)s_num_allocated; - %(ctype)s* new_data = NULL; - tobe_allocated = !tobe_allocated ? 1 : tobe_allocated << 1; - new_data = (%(ctype)s*) realloc(msg->%(name)s_data, - tobe_allocated * sizeof(%(ctype)s)); - if (new_data == NULL) - goto error; - msg->%(name)s_data = new_data; - msg->%(name)s_num_allocated = tobe_allocated; - } - msg->%(name)s_data[msg->%(name)s_length - 1] = %(refname)s_new(); - if (msg->%(name)s_data[msg->%(name)s_length - 1] == NULL) - goto error; - msg->%(name)s_set = 1; - return (msg->%(name)s_data[msg->%(name)s_length - 1]); -error: - --msg->%(name)s_length; - return (NULL); -} - """ % self.GetTranslation() - - return code.split('\n') - - def CodeComplete(self, structname): - code = [] - translate = self.GetTranslation() - - if self.Optional(): - code.append( 'if (%(structname)s->%(name)s_set)' % translate) - - translate["structname"] = structname - tmp = """{ - int i; - for (i = 0; i < %(structname)s->%(name)s_length; ++i) { - if (%(refname)s_complete(%(structname)s->%(name)s_data[i]) == -1) - return (-1); - } -}""" % translate - code.extend(tmp.split('\n')) - - return code - - def CodeUnmarshal(self, buf, tag_name, var_name): - translate = self.GetTranslation() - translate["var_name"] = var_name - translate["buf"] = buf - translate["tag_name"] = tag_name - code = """if (%(parent_name)s_%(name)s_add(%(var_name)s) == NULL) - return (-1); -if (evtag_unmarshal_%(refname)s(%(buf)s, %(tag_name)s, - %(var_name)s->%(name)s_data[%(var_name)s->%(name)s_length - 1]) == -1) { - --%(var_name)s->%(name)s_length; - event_warnx("%%s: failed to unmarshal %(name)s", __func__); - return (-1); -}""" % translate - - return code.split('\n') - - def CodeMarshal(self, buf, tag_name, var_name): - code = ['{', - ' int i;', - ' for (i = 0; i < %s->%s_length; ++i) {' % ( - var_name, self._name), - ' evtag_marshal_%s(%s, %s, %s->%s_data[i]);' % ( - self._refname, buf, tag_name, var_name, self._name), - ' }', - '}' - ] - return code - - def CodeClear(self, structname): - code = [ 'if (%s->%s_set == 1) {' % (structname, self.Name()), - ' int i;', - ' for (i = 0; i < %s->%s_length; ++i) {' % ( - structname, self.Name()), - ' %s_free(%s->%s_data[i]);' % ( - self._refname, structname, self.Name()), - ' }', - ' free(%s->%s_data);' % (structname, self.Name()), - ' %s->%s_data = NULL;' % (structname, self.Name()), - ' %s->%s_set = 0;' % (structname, self.Name()), - ' %s->%s_length = 0;' % (structname, self.Name()), - ' %s->%s_num_allocated = 0;' % (structname, self.Name()), - '}' - ] - - return code - - def CodeNew(self, name): - code = ['%s->%s_data = NULL;' % (name, self._name), - '%s->%s_length = 0;' % (name, self._name), - '%s->%s_num_allocated = 0;' % (name, self._name)] - return code - - def CodeFree(self, name): - code = ['if (%s->%s_data != NULL) {' % (name, self._name), - ' int i;', - ' for (i = 0; i < %s->%s_length; ++i) {' % ( - name, self._name), - ' %s_free(%s->%s_data[i]); ' % ( - self._refname, name, self._name), - ' %s->%s_data[i] = NULL;' % (name, self._name), - ' }', - ' free(%s->%s_data);' % (name, self._name), - ' %s->%s_data = NULL;' % (name, self._name), - ' %s->%s_length = 0;' % (name, self._name), - ' %s->%s_num_allocated = 0;' % (name, self._name), - '}' - ] - - return code - - def Declaration(self): - dcl = ['struct %s **%s_data;' % (self._refname, self._name), - 'int %s_length;' % self._name, - 'int %s_num_allocated;' % self._name ] - - return dcl - -def NormalizeLine(line): - global white - global cppcomment - - line = cppcomment.sub('', line) - line = line.strip() - line = white.sub(' ', line) - - return line - -def ProcessOneEntry(newstruct, entry): - optional = 0 - array = 0 - entry_type = '' - name = '' - tag = '' - tag_set = None - separator = '' - fixed_length = '' - - tokens = entry.split(' ') - while tokens: - token = tokens[0] - tokens = tokens[1:] - - if not entry_type: - if not optional and token == 'optional': - optional = 1 - continue - - if not array and token == 'array': - array = 1 - continue - - if not entry_type: - entry_type = token - continue - - if not name: - res = re.match(r'^([^\[\]]+)(\[.*\])?$', token) - if not res: - print >>sys.stderr, 'Cannot parse name: \"%s\" around %d' % ( - entry, line_count) - sys.exit(1) - name = res.group(1) - fixed_length = res.group(2) - if fixed_length: - fixed_length = fixed_length[1:-1] - continue - - if not separator: - separator = token - if separator != '=': - print >>sys.stderr, 'Expected "=" after name \"%s\" got %s' % ( - name, token) - sys.exit(1) - continue - - if not tag_set: - tag_set = 1 - if not re.match(r'^(0x)?[0-9]+$', token): - print >>sys.stderr, 'Expected tag number: \"%s\"' % entry - sys.exit(1) - tag = int(token, 0) - continue - - print >>sys.stderr, 'Cannot parse \"%s\"' % entry - sys.exit(1) - - if not tag_set: - print >>sys.stderr, 'Need tag number: \"%s\"' % entry - sys.exit(1) - - # Create the right entry - if entry_type == 'bytes': - if fixed_length: - newentry = EntryBytes(entry_type, name, tag, fixed_length) - else: - newentry = EntryVarBytes(entry_type, name, tag) - elif entry_type == 'int' and not fixed_length: - newentry = EntryInt(entry_type, name, tag) - elif entry_type == 'string' and not fixed_length: - newentry = EntryString(entry_type, name, tag) - else: - res = re.match(r'^struct\[(%s)\]$' % _STRUCT_RE, - entry_type, re.IGNORECASE) - if res: - # References another struct defined in our file - newentry = EntryStruct(entry_type, name, tag, res.group(1)) - else: - print >>sys.stderr, 'Bad type: "%s" in "%s"' % (entry_type, entry) - sys.exit(1) - - structs = [] - - if optional: - newentry.MakeOptional() - if array: - newentry.MakeArray() - - newentry.SetStruct(newstruct) - newentry.SetLineCount(line_count) - newentry.Verify() - - if array: - # We need to encapsulate this entry into a struct - newname = newentry.Name()+ '_array' - - # Now borgify the new entry. - newentry = EntryArray(newentry) - newentry.SetStruct(newstruct) - newentry.SetLineCount(line_count) - newentry.MakeArray() - - newstruct.AddEntry(newentry) - - return structs - -def ProcessStruct(data): - tokens = data.split(' ') - - # First three tokens are: 'struct' 'name' '{' - newstruct = Struct(tokens[1]) - - inside = ' '.join(tokens[3:-1]) - - tokens = inside.split(';') - - structs = [] - - for entry in tokens: - entry = NormalizeLine(entry) - if not entry: - continue - - # It's possible that new structs get defined in here - structs.extend(ProcessOneEntry(newstruct, entry)) - - structs.append(newstruct) - return structs - -def GetNextStruct(file): - global line_count - global cppdirect - - got_struct = 0 - - processed_lines = [] - - have_c_comment = 0 - data = '' - while 1: - line = file.readline() - if not line: - break - - line_count += 1 - line = line[:-1] - - if not have_c_comment and re.search(r'/\*', line): - if re.search(r'/\*.*\*/', line): - line = re.sub(r'/\*.*\*/', '', line) - else: - line = re.sub(r'/\*.*$', '', line) - have_c_comment = 1 - - if have_c_comment: - if not re.search(r'\*/', line): - continue - have_c_comment = 0 - line = re.sub(r'^.*\*/', '', line) - - line = NormalizeLine(line) - - if not line: - continue - - if not got_struct: - if re.match(r'#include ["<].*[>"]', line): - cppdirect.append(line) - continue - - if re.match(r'^#(if( |def)|endif)', line): - cppdirect.append(line) - continue - - if re.match(r'^#define', line): - headerdirect.append(line) - continue - - if not re.match(r'^struct %s {$' % _STRUCT_RE, - line, re.IGNORECASE): - print >>sys.stderr, 'Missing struct on line %d: %s' % ( - line_count, line) - sys.exit(1) - else: - got_struct = 1 - data += line - continue - - # We are inside the struct - tokens = line.split('}') - if len(tokens) == 1: - data += ' ' + line - continue - - if len(tokens[1]): - print >>sys.stderr, 'Trailing garbage after struct on line %d' % ( - line_count ) - sys.exit(1) - - # We found the end of the struct - data += ' %s}' % tokens[0] - break - - # Remove any comments, that might be in there - data = re.sub(r'/\*.*\*/', '', data) - - return data - - -def Parse(file): - """ - Parses the input file and returns C code and corresponding header file. - """ - - entities = [] - - while 1: - # Just gets the whole struct nicely formatted - data = GetNextStruct(file) - - if not data: - break - - entities.extend(ProcessStruct(data)) - - return entities - -def GuardName(name): - name = '_'.join(name.split('.')) - name = '_'.join(name.split('/')) - guard = '_'+name.upper()+'_' - - return guard - -def HeaderPreamble(name): - guard = GuardName(name) - pre = ( - '/*\n' - ' * Automatically generated from %s\n' - ' */\n\n' - '#ifndef %s\n' - '#define %s\n\n' ) % ( - name, guard, guard) - - # insert stdint.h - let's hope everyone has it - pre += ( - '#include \n' - '#ifdef _EVENT_HAVE_STDINT_H\n' - '#include \n' - '#endif\n' ) - - for statement in headerdirect: - pre += '%s\n' % statement - if headerdirect: - pre += '\n' - - pre += ( - '#define EVTAG_HAS(msg, member) ((msg)->member##_set == 1)\n' - '#ifdef __GNUC__\n' - '#define EVTAG_ASSIGN(msg, member, args...) ' - '(*(msg)->base->member##_assign)(msg, ## args)\n' - '#define EVTAG_GET(msg, member, args...) ' - '(*(msg)->base->member##_get)(msg, ## args)\n' - '#else\n' - '#define EVTAG_ASSIGN(msg, member, ...) ' - '(*(msg)->base->member##_assign)(msg, ## __VA_ARGS__)\n' - '#define EVTAG_GET(msg, member, ...) ' - '(*(msg)->base->member##_get)(msg, ## __VA_ARGS__)\n' - '#endif\n' - '#define EVTAG_ADD(msg, member) (*(msg)->base->member##_add)(msg)\n' - '#define EVTAG_LEN(msg, member) ((msg)->member##_length)\n' - ) - - return pre - - -def HeaderPostamble(name): - guard = GuardName(name) - return '#endif /* %s */' % guard - -def BodyPreamble(name): - global _NAME - global _VERSION - - header_file = '.'.join(name.split('.')[:-1]) + '.gen.h' - - pre = ( '/*\n' - ' * Automatically generated from %s\n' - ' * by %s/%s. DO NOT EDIT THIS FILE.\n' - ' */\n\n' ) % (name, _NAME, _VERSION) - pre += ( '#include \n' - '#include \n' - '#include \n' - '#include \n' - '#include \n' - '#include \n\n' ) - - for statement in cppdirect: - pre += '%s\n' % statement - - pre += '\n#include "%s"\n\n' % header_file - - pre += 'void event_err(int eval, const char *fmt, ...);\n' - pre += 'void event_warn(const char *fmt, ...);\n' - pre += 'void event_errx(int eval, const char *fmt, ...);\n' - pre += 'void event_warnx(const char *fmt, ...);\n\n' - - return pre - -def main(argv): - if len(argv) < 2 or not argv[1]: - print >>sys.stderr, 'Need RPC description file as first argument.' - sys.exit(1) - - filename = argv[1] - - ext = filename.split('.')[-1] - if ext != 'rpc': - print >>sys.stderr, 'Unrecognized file extension: %s' % ext - sys.exit(1) - - print >>sys.stderr, 'Reading \"%s\"' % filename - - fp = open(filename, 'r') - entities = Parse(fp) - fp.close() - - header_file = '.'.join(filename.split('.')[:-1]) + '.gen.h' - impl_file = '.'.join(filename.split('.')[:-1]) + '.gen.c' - - print >>sys.stderr, '... creating "%s"' % header_file - header_fp = open(header_file, 'w') - print >>header_fp, HeaderPreamble(filename) - - # Create forward declarations: allows other structs to reference - # each other - for entry in entities: - entry.PrintForwardDeclaration(header_fp) - print >>header_fp, '' - - for entry in entities: - entry.PrintTags(header_fp) - entry.PrintDeclaration(header_fp) - print >>header_fp, HeaderPostamble(filename) - header_fp.close() - - print >>sys.stderr, '... creating "%s"' % impl_file - impl_fp = open(impl_file, 'w') - print >>impl_fp, BodyPreamble(filename) - for entry in entities: - entry.PrintCode(impl_fp) - impl_fp.close() - -if __name__ == '__main__': - main(sys.argv) diff -Nru mysql-5.7-5.7.25/libevent/event_tagging.c mysql-5.7-5.7.26/libevent/event_tagging.c --- mysql-5.7-5.7.25/libevent/event_tagging.c 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/event_tagging.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,443 +0,0 @@ -/* - * Copyright (c) 2003, 2004 Niels Provos - * All rights reserved. - * - * 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. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. - */ - -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -#ifdef HAVE_SYS_TYPES_H -#include -#endif -#ifdef HAVE_SYS_PARAM_H -#include -#endif - -#ifdef WIN32 -#define WIN32_LEAN_AND_MEAN -#include -#include -#undef WIN32_LEAN_AND_MEAN -#else -#include -#endif - -#include -#ifdef HAVE_SYS_TIME_H -#include -#endif - -#include -#include -#include -#include -#ifndef WIN32 -#include -#endif -#ifdef HAVE_UNISTD_H -#include -#endif - -#include "event.h" -#include "evutil.h" -#include "log.h" - -int evtag_decode_int(ev_uint32_t *pnumber, struct evbuffer *evbuf); -int evtag_encode_tag(struct evbuffer *evbuf, ev_uint32_t tag); -int evtag_decode_tag(ev_uint32_t *ptag, struct evbuffer *evbuf); - -static struct evbuffer *_buf; /* not thread safe */ - -void -evtag_init(void) -{ - if (_buf != NULL) - return; - - if ((_buf = evbuffer_new()) == NULL) - event_err(1, "%s: malloc", __func__); -} - -/* - * We encode integer's by nibbles; the first nibble contains the number - * of significant nibbles - 1; this allows us to encode up to 64-bit - * integers. This function is byte-order independent. - */ - -void -encode_int(struct evbuffer *evbuf, ev_uint32_t number) -{ - int off = 1, nibbles = 0; - ev_uint8_t data[5]; - - memset(data, 0, sizeof(ev_uint32_t)+1); - while (number) { - if (off & 0x1) - data[off/2] = (data[off/2] & 0xf0) | (number & 0x0f); - else - data[off/2] = (data[off/2] & 0x0f) | - ((number & 0x0f) << 4); - number >>= 4; - off++; - } - - if (off > 2) - nibbles = off - 2; - - /* Off - 1 is the number of encoded nibbles */ - data[0] = (data[0] & 0x0f) | ((nibbles & 0x0f) << 4); - - evbuffer_add(evbuf, data, (off + 1) / 2); -} - -/* - * Support variable length encoding of tags; we use the high bit in each - * octet as a continuation signal. - */ - -int -evtag_encode_tag(struct evbuffer *evbuf, ev_uint32_t tag) -{ - int bytes = 0; - ev_uint8_t data[5]; - - memset(data, 0, sizeof(data)); - do { - ev_uint8_t lower = tag & 0x7f; - tag >>= 7; - - if (tag) - lower |= 0x80; - - data[bytes++] = lower; - } while (tag); - - if (evbuf != NULL) - evbuffer_add(evbuf, data, bytes); - - return (bytes); -} - -static int -decode_tag_internal(ev_uint32_t *ptag, struct evbuffer *evbuf, int dodrain) -{ - ev_uint32_t number = 0; - ev_uint8_t *data = EVBUFFER_DATA(evbuf); - int len = EVBUFFER_LENGTH(evbuf); - int count = 0, shift = 0, done = 0; - - while (count++ < len) { - ev_uint8_t lower = *data++; - number |= (lower & 0x7f) << shift; - shift += 7; - - if (!(lower & 0x80)) { - done = 1; - break; - } - } - - if (!done) - return (-1); - - if (dodrain) - evbuffer_drain(evbuf, count); - - if (ptag != NULL) - *ptag = number; - - return (count); -} - -int -evtag_decode_tag(ev_uint32_t *ptag, struct evbuffer *evbuf) -{ - return (decode_tag_internal(ptag, evbuf, 1 /* dodrain */)); -} - -/* - * Marshal a data type, the general format is as follows: - * - * tag number: one byte; length: var bytes; payload: var bytes - */ - -void -evtag_marshal(struct evbuffer *evbuf, ev_uint32_t tag, - const void *data, ev_uint32_t len) -{ - evtag_encode_tag(evbuf, tag); - encode_int(evbuf, len); - evbuffer_add(evbuf, (void *)data, len); -} - -/* Marshaling for integers */ -void -evtag_marshal_int(struct evbuffer *evbuf, ev_uint32_t tag, ev_uint32_t integer) -{ - evbuffer_drain(_buf, EVBUFFER_LENGTH(_buf)); - encode_int(_buf, integer); - - evtag_encode_tag(evbuf, tag); - encode_int(evbuf, EVBUFFER_LENGTH(_buf)); - evbuffer_add_buffer(evbuf, _buf); -} - -void -evtag_marshal_string(struct evbuffer *buf, ev_uint32_t tag, const char *string) -{ - evtag_marshal(buf, tag, string, strlen(string)); -} - -void -evtag_marshal_timeval(struct evbuffer *evbuf, ev_uint32_t tag, struct timeval *tv) -{ - evbuffer_drain(_buf, EVBUFFER_LENGTH(_buf)); - - encode_int(_buf, tv->tv_sec); - encode_int(_buf, tv->tv_usec); - - evtag_marshal(evbuf, tag, EVBUFFER_DATA(_buf), - EVBUFFER_LENGTH(_buf)); -} - -static int -decode_int_internal(ev_uint32_t *pnumber, struct evbuffer *evbuf, int dodrain) -{ - ev_uint32_t number = 0; - ev_uint8_t *data = EVBUFFER_DATA(evbuf); - int len = EVBUFFER_LENGTH(evbuf); - int nibbles = 0; - - if (!len) - return (-1); - - nibbles = ((data[0] & 0xf0) >> 4) + 1; - if (nibbles > 8 || (nibbles >> 1) + 1 > len) - return (-1); - len = (nibbles >> 1) + 1; - - while (nibbles > 0) { - number <<= 4; - if (nibbles & 0x1) - number |= data[nibbles >> 1] & 0x0f; - else - number |= (data[nibbles >> 1] & 0xf0) >> 4; - nibbles--; - } - - if (dodrain) - evbuffer_drain(evbuf, len); - - *pnumber = number; - - return (len); -} - -int -evtag_decode_int(ev_uint32_t *pnumber, struct evbuffer *evbuf) -{ - return (decode_int_internal(pnumber, evbuf, 1) == -1 ? -1 : 0); -} - -int -evtag_peek(struct evbuffer *evbuf, ev_uint32_t *ptag) -{ - return (decode_tag_internal(ptag, evbuf, 0 /* dodrain */)); -} - -int -evtag_peek_length(struct evbuffer *evbuf, ev_uint32_t *plength) -{ - struct evbuffer tmp; - int res, len; - - len = decode_tag_internal(NULL, evbuf, 0 /* dodrain */); - if (len == -1) - return (-1); - - tmp = *evbuf; - tmp.buffer += len; - tmp.off -= len; - - res = decode_int_internal(plength, &tmp, 0); - if (res == -1) - return (-1); - - *plength += res + len; - - return (0); -} - -int -evtag_payload_length(struct evbuffer *evbuf, ev_uint32_t *plength) -{ - struct evbuffer tmp; - int res, len; - - len = decode_tag_internal(NULL, evbuf, 0 /* dodrain */); - if (len == -1) - return (-1); - - tmp = *evbuf; - tmp.buffer += len; - tmp.off -= len; - - res = decode_int_internal(plength, &tmp, 0); - if (res == -1) - return (-1); - - return (0); -} - -int -evtag_consume(struct evbuffer *evbuf) -{ - ev_uint32_t len; - if (decode_tag_internal(NULL, evbuf, 1 /* dodrain */) == -1) - return (-1); - if (evtag_decode_int(&len, evbuf) == -1) - return (-1); - evbuffer_drain(evbuf, len); - - return (0); -} - -/* Reads the data type from an event buffer */ - -int -evtag_unmarshal(struct evbuffer *src, ev_uint32_t *ptag, struct evbuffer *dst) -{ - ev_uint32_t len; - ev_uint32_t integer; - - if (decode_tag_internal(ptag, src, 1 /* dodrain */) == -1) - return (-1); - if (evtag_decode_int(&integer, src) == -1) - return (-1); - len = integer; - - if (EVBUFFER_LENGTH(src) < len) - return (-1); - - if (evbuffer_add(dst, EVBUFFER_DATA(src), len) == -1) - return (-1); - - evbuffer_drain(src, len); - - return (len); -} - -/* Marshaling for integers */ - -int -evtag_unmarshal_int(struct evbuffer *evbuf, ev_uint32_t need_tag, - ev_uint32_t *pinteger) -{ - ev_uint32_t tag; - ev_uint32_t len; - ev_uint32_t integer; - - if (decode_tag_internal(&tag, evbuf, 1 /* dodrain */) == -1) - return (-1); - if (need_tag != tag) - return (-1); - if (evtag_decode_int(&integer, evbuf) == -1) - return (-1); - len = integer; - - if (EVBUFFER_LENGTH(evbuf) < len) - return (-1); - - evbuffer_drain(_buf, EVBUFFER_LENGTH(_buf)); - if (evbuffer_add(_buf, EVBUFFER_DATA(evbuf), len) == -1) - return (-1); - - evbuffer_drain(evbuf, len); - - return (evtag_decode_int(pinteger, _buf)); -} - -/* Unmarshal a fixed length tag */ - -int -evtag_unmarshal_fixed(struct evbuffer *src, ev_uint32_t need_tag, void *data, - size_t len) -{ - ev_uint32_t tag; - - /* Initialize this event buffer so that we can read into it */ - evbuffer_drain(_buf, EVBUFFER_LENGTH(_buf)); - - /* Now unmarshal a tag and check that it matches the tag we want */ - if (evtag_unmarshal(src, &tag, _buf) == -1 || tag != need_tag) - return (-1); - - if (EVBUFFER_LENGTH(_buf) != len) - return (-1); - - memcpy(data, EVBUFFER_DATA(_buf), len); - return (0); -} - -int -evtag_unmarshal_string(struct evbuffer *evbuf, ev_uint32_t need_tag, - char **pstring) -{ - ev_uint32_t tag; - - evbuffer_drain(_buf, EVBUFFER_LENGTH(_buf)); - - if (evtag_unmarshal(evbuf, &tag, _buf) == -1 || tag != need_tag) - return (-1); - - *pstring = calloc(EVBUFFER_LENGTH(_buf) + 1, 1); - if (*pstring == NULL) - event_err(1, "%s: calloc", __func__); - evbuffer_remove(_buf, *pstring, EVBUFFER_LENGTH(_buf)); - - return (0); -} - -int -evtag_unmarshal_timeval(struct evbuffer *evbuf, ev_uint32_t need_tag, - struct timeval *ptv) -{ - ev_uint32_t tag; - ev_uint32_t integer; - - evbuffer_drain(_buf, EVBUFFER_LENGTH(_buf)); - if (evtag_unmarshal(evbuf, &tag, _buf) == -1 || tag != need_tag) - return (-1); - - if (evtag_decode_int(&integer, _buf) == -1) - return (-1); - ptv->tv_sec = integer; - if (evtag_decode_int(&integer, _buf) == -1) - return (-1); - ptv->tv_usec = integer; - - return (0); -} diff -Nru mysql-5.7-5.7.25/libevent/evhttp.h mysql-5.7-5.7.26/libevent/evhttp.h --- mysql-5.7-5.7.25/libevent/evhttp.h 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/evhttp.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,371 +0,0 @@ -/* - * Copyright (c) 2000-2004 Niels Provos - * All rights reserved. - * - * 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. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. - */ -#ifndef _EVHTTP_H_ -#define _EVHTTP_H_ - -#include - -#ifdef __cplusplus -extern "C" { -#endif - -#ifdef WIN32 -#define WIN32_LEAN_AND_MEAN -#include -#include -#undef WIN32_LEAN_AND_MEAN -#endif - -/** @file evhttp.h - * - * Basic support for HTTP serving. - * - * As libevent is a library for dealing with event notification and most - * interesting applications are networked today, I have often found the - * need to write HTTP code. The following prototypes and definitions provide - * an application with a minimal interface for making HTTP requests and for - * creating a very simple HTTP server. - */ - -/* Response codes */ -#define HTTP_OK 200 -#define HTTP_NOCONTENT 204 -#define HTTP_MOVEPERM 301 -#define HTTP_MOVETEMP 302 -#define HTTP_NOTMODIFIED 304 -#define HTTP_BADREQUEST 400 -#define HTTP_NOTFOUND 404 -#define HTTP_SERVUNAVAIL 503 - -struct evhttp; -struct evhttp_request; -struct evkeyvalq; - -/** Create a new HTTP server - * - * @param base (optional) the event base to receive the HTTP events - * @return a pointer to a newly initialized evhttp server structure - */ -struct evhttp *evhttp_new(struct event_base *base); - -/** - * Binds an HTTP server on the specified address and port. - * - * Can be called multiple times to bind the same http server - * to multiple different ports. - * - * @param http a pointer to an evhttp object - * @param address a string containing the IP address to listen(2) on - * @param port the port number to listen on - * @return a newly allocated evhttp struct - * @see evhttp_free() - */ -int evhttp_bind_socket(struct evhttp *http, const char *address, u_short port); - -/** - * Makes an HTTP server accept connections on the specified socket - * - * This may be useful to create a socket and then fork multiple instances - * of an http server, or when a socket has been communicated via file - * descriptor passing in situations where an http servers does not have - * permissions to bind to a low-numbered port. - * - * Can be called multiple times to have the http server listen to - * multiple different sockets. - * - * @param http a pointer to an evhttp object - * @param fd a socket fd that is ready for accepting connections - * @return 0 on success, -1 on failure. - * @see evhttp_free(), evhttp_bind_socket() - */ -int evhttp_accept_socket(struct evhttp *http, int fd); - -/** - * Free the previously created HTTP server. - * - * Works only if no requests are currently being served. - * - * @param http the evhttp server object to be freed - * @see evhttp_start() - */ -void evhttp_free(struct evhttp* http); - -/** Set a callback for a specified URI */ -void evhttp_set_cb(struct evhttp *, const char *, - void (*)(struct evhttp_request *, void *), void *); - -/** Removes the callback for a specified URI */ -int evhttp_del_cb(struct evhttp *, const char *); - -/** Set a callback for all requests that are not caught by specific callbacks - */ -void evhttp_set_gencb(struct evhttp *, - void (*)(struct evhttp_request *, void *), void *); - -/** - * Set the timeout for an HTTP request. - * - * @param http an evhttp object - * @param timeout_in_secs the timeout, in seconds - */ -void evhttp_set_timeout(struct evhttp *, int timeout_in_secs); - -/* Request/Response functionality */ - -/** - * Send an HTML error message to the client. - * - * @param req a request object - * @param error the HTTP error code - * @param reason a brief explanation of the error - */ -void evhttp_send_error(struct evhttp_request *req, int error, - const char *reason); - -/** - * Send an HTML reply to the client. - * - * @param req a request object - * @param code the HTTP response code to send - * @param reason a brief message to send with the response code - * @param databuf the body of the response - */ -void evhttp_send_reply(struct evhttp_request *req, int code, - const char *reason, struct evbuffer *databuf); - -/* Low-level response interface, for streaming/chunked replies */ -void evhttp_send_reply_start(struct evhttp_request *, int, const char *); -void evhttp_send_reply_chunk(struct evhttp_request *, struct evbuffer *); -void evhttp_send_reply_end(struct evhttp_request *); - -/** - * Start an HTTP server on the specified address and port - * - * DEPRECATED: it does not allow an event base to be specified - * - * @param address the address to which the HTTP server should be bound - * @param port the port number on which the HTTP server should listen - * @return an struct evhttp object - */ -struct evhttp *evhttp_start(const char *address, u_short port); - -/* - * Interfaces for making requests - */ -enum evhttp_cmd_type { EVHTTP_REQ_GET, EVHTTP_REQ_POST, EVHTTP_REQ_HEAD }; - -enum evhttp_request_kind { EVHTTP_REQUEST, EVHTTP_RESPONSE }; - -/** - * the request structure that a server receives. - * WARNING: expect this structure to change. I will try to provide - * reasonable accessors. - */ -struct evhttp_request { -#if defined(TAILQ_ENTRY) - TAILQ_ENTRY(evhttp_request) next; -#else -struct { - struct evhttp_request *tqe_next; - struct evhttp_request **tqe_prev; -} next; -#endif - - /* the connection object that this request belongs to */ - struct evhttp_connection *evcon; - int flags; -#define EVHTTP_REQ_OWN_CONNECTION 0x0001 -#define EVHTTP_PROXY_REQUEST 0x0002 - - struct evkeyvalq *input_headers; - struct evkeyvalq *output_headers; - - /* address of the remote host and the port connection came from */ - char *remote_host; - u_short remote_port; - - enum evhttp_request_kind kind; - enum evhttp_cmd_type type; - - char *uri; /* uri after HTTP request was parsed */ - - char major; /* HTTP Major number */ - char minor; /* HTTP Minor number */ - - int response_code; /* HTTP Response code */ - char *response_code_line; /* Readable response */ - - struct evbuffer *input_buffer; /* read data */ - ev_int64_t ntoread; - int chunked; - - struct evbuffer *output_buffer; /* outgoing post or data */ - - /* Callback */ - void (*cb)(struct evhttp_request *, void *); - void *cb_arg; - - /* - * Chunked data callback - call for each completed chunk if - * specified. If not specified, all the data is delivered via - * the regular callback. - */ - void (*chunk_cb)(struct evhttp_request *, void *); -}; - -/** - * Creates a new request object that needs to be filled in with the request - * parameters. The callback is executed when the request completed or an - * error occurred. - */ -struct evhttp_request *evhttp_request_new( - void (*cb)(struct evhttp_request *, void *), void *arg); - -/** enable delivery of chunks to requestor */ -void evhttp_request_set_chunked_cb(struct evhttp_request *, - void (*cb)(struct evhttp_request *, void *)); - -/** Frees the request object and removes associated events. */ -void evhttp_request_free(struct evhttp_request *req); - -/** - * A connection object that can be used to for making HTTP requests. The - * connection object tries to establish the connection when it is given an - * http request object. - */ -struct evhttp_connection *evhttp_connection_new( - const char *address, unsigned short port); - -/** Frees an http connection */ -void evhttp_connection_free(struct evhttp_connection *evcon); - -/** sets the ip address from which http connections are made */ -void evhttp_connection_set_local_address(struct evhttp_connection *evcon, - const char *address); - -/** sets the local port from which http connections are made */ -void evhttp_connection_set_local_port(struct evhttp_connection *evcon, - unsigned short port); - -/** Sets the timeout for events related to this connection */ -void evhttp_connection_set_timeout(struct evhttp_connection *evcon, - int timeout_in_secs); - -/** Sets the retry limit for this connection - -1 repeats indefnitely */ -void evhttp_connection_set_retries(struct evhttp_connection *evcon, - int retry_max); - -/** Set a callback for connection close. */ -void evhttp_connection_set_closecb(struct evhttp_connection *evcon, - void (*)(struct evhttp_connection *, void *), void *); - -/** - * Associates an event base with the connection - can only be called - * on a freshly created connection object that has not been used yet. - */ -void evhttp_connection_set_base(struct evhttp_connection *evcon, - struct event_base *base); - -/** Get the remote address and port associated with this connection. */ -void evhttp_connection_get_peer(struct evhttp_connection *evcon, - char **address, u_short *port); - -/** The connection gets ownership of the request */ -int evhttp_make_request(struct evhttp_connection *evcon, - struct evhttp_request *req, - enum evhttp_cmd_type type, const char *uri); - -const char *evhttp_request_uri(struct evhttp_request *req); - -/* Interfaces for dealing with HTTP headers */ - -const char *evhttp_find_header(const struct evkeyvalq *, const char *); -int evhttp_remove_header(struct evkeyvalq *, const char *); -int evhttp_add_header(struct evkeyvalq *, const char *, const char *); -void evhttp_clear_headers(struct evkeyvalq *); - -/* Miscellaneous utility functions */ - - -/** - Helper function to encode a URI. - - The returned string must be freed by the caller. - - @param uri an unencoded URI - @return a newly allocated URI-encoded string - */ -char *evhttp_encode_uri(const char *uri); - - -/** - Helper function to decode a URI. - - The returned string must be freed by the caller. - - @param uri an encoded URI - @return a newly allocated unencoded URI - */ -char *evhttp_decode_uri(const char *uri); - - -/** - * Helper function to parse out arguments in a query. - * - * Parsing a uri like - * - * http://foo.com/?q=test&s=some+thing - * - * will result in two entries in the key value queue. - - * The first entry is: key="q", value="test" - * The second entry is: key="s", value="some thing" - * - * @param uri the request URI - * @param headers the head of the evkeyval queue - */ -void evhttp_parse_query(const char *uri, struct evkeyvalq *headers); - - -/** - * Escape HTML character entities in a string. - * - * Replaces <, >, ", ' and & with <, >, ", - * ' and & correspondingly. - * - * The returned string needs to be freed by the caller. - * - * @param html an unescaped HTML string - * @return an escaped HTML string - */ -char *evhttp_htmlescape(const char *html); - -#ifdef __cplusplus -} -#endif - -#endif /* _EVHTTP_H_ */ diff -Nru mysql-5.7-5.7.25/libevent/evport.c mysql-5.7-5.7.26/libevent/evport.c --- mysql-5.7-5.7.25/libevent/evport.c 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/evport.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,513 +0,0 @@ -/* - * Submitted by David Pacheco (dp.spambait@gmail.com) - * - * 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. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY SUN MICROSYSTEMS, INC. ``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 SUN MICROSYSTEMS, INC. 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. - */ - -/* - * Copyright (c) 2007 Sun Microsystems. All rights reserved. - * Use is subject to license terms. - */ - -/* - * evport.c: event backend using Solaris 10 event ports. See port_create(3C). - * This implementation is loosely modeled after the one used for select(2) (in - * select.c). - * - * The outstanding events are tracked in a data structure called evport_data. - * Each entry in the ed_fds array corresponds to a file descriptor, and contains - * pointers to the read and write events that correspond to that fd. (That is, - * when the file is readable, the "read" event should handle it, etc.) - * - * evport_add and evport_del update this data structure. evport_dispatch uses it - * to determine where to callback when an event occurs (which it gets from - * port_getn). - * - * Helper functions are used: grow() grows the file descriptor array as - * necessary when large fd's come in. reassociate() takes care of maintaining - * the proper file-descriptor/event-port associations. - * - * As in the select(2) implementation, signals are handled by evsignal. - */ - -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#ifdef CHECK_INVARIANTS -#include -#endif - -#include "event.h" -#include "event-internal.h" -#include "log.h" -#include "evsignal.h" - - -/* - * Default value for ed_nevents, which is the maximum file descriptor number we - * can handle. If an event comes in for a file descriptor F > nevents, we will - * grow the array of file descriptors, doubling its size. - */ -#define DEFAULT_NFDS 16 - - -/* - * EVENTS_PER_GETN is the maximum number of events to retrieve from port_getn on - * any particular call. You can speed things up by increasing this, but it will - * (obviously) require more memory. - */ -#define EVENTS_PER_GETN 8 - -/* - * Per-file-descriptor information about what events we're subscribed to. These - * fields are NULL if no event is subscribed to either of them. - */ - -struct fd_info { - struct event* fdi_revt; /* the event responsible for the "read" */ - struct event* fdi_wevt; /* the event responsible for the "write" */ -}; - -#define FDI_HAS_READ(fdi) ((fdi)->fdi_revt != NULL) -#define FDI_HAS_WRITE(fdi) ((fdi)->fdi_wevt != NULL) -#define FDI_HAS_EVENTS(fdi) (FDI_HAS_READ(fdi) || FDI_HAS_WRITE(fdi)) -#define FDI_TO_SYSEVENTS(fdi) (FDI_HAS_READ(fdi) ? POLLIN : 0) | \ - (FDI_HAS_WRITE(fdi) ? POLLOUT : 0) - -struct evport_data { - int ed_port; /* event port for system events */ - int ed_nevents; /* number of allocated fdi's */ - struct fd_info *ed_fds; /* allocated fdi table */ - /* fdi's that we need to reassoc */ - int ed_pending[EVENTS_PER_GETN]; /* fd's with pending events */ -}; - -static void* evport_init (struct event_base *); -static int evport_add (void *, struct event *); -static int evport_del (void *, struct event *); -static int evport_dispatch (struct event_base *, void *, struct timeval *); -static void evport_dealloc (struct event_base *, void *); - -const struct eventop evportops = { - "evport", - evport_init, - evport_add, - evport_del, - evport_dispatch, - evport_dealloc, - 1 /* need reinit */ -}; - -/* - * Initialize the event port implementation. - */ - -static void* -evport_init(struct event_base *base) -{ - struct evport_data *evpd; - int i; - /* - * Disable event ports when this environment variable is set - */ - if (getenv("EVENT_NOEVPORT")) - return (NULL); - - if (!(evpd = calloc(1, sizeof(struct evport_data)))) - return (NULL); - - if ((evpd->ed_port = port_create()) == -1) { - free(evpd); - return (NULL); - } - - /* - * Initialize file descriptor structure - */ - evpd->ed_fds = calloc(DEFAULT_NFDS, sizeof(struct fd_info)); - if (evpd->ed_fds == NULL) { - close(evpd->ed_port); - free(evpd); - return (NULL); - } - evpd->ed_nevents = DEFAULT_NFDS; - for (i = 0; i < EVENTS_PER_GETN; i++) - evpd->ed_pending[i] = -1; - - evsignal_init(base); - - return (evpd); -} - -#ifdef CHECK_INVARIANTS -/* - * Checks some basic properties about the evport_data structure. Because it - * checks all file descriptors, this function can be expensive when the maximum - * file descriptor ever used is rather large. - */ - -static void -check_evportop(struct evport_data *evpd) -{ - assert(evpd); - assert(evpd->ed_nevents > 0); - assert(evpd->ed_port > 0); - assert(evpd->ed_fds > 0); - - /* - * Verify the integrity of the fd_info struct as well as the events to - * which it points (at least, that they're valid references and correct - * for their position in the structure). - */ - int i; - for (i = 0; i < evpd->ed_nevents; ++i) { - struct event *ev; - struct fd_info *fdi; - - fdi = &evpd->ed_fds[i]; - if ((ev = fdi->fdi_revt) != NULL) { - assert(ev->ev_fd == i); - } - if ((ev = fdi->fdi_wevt) != NULL) { - assert(ev->ev_fd == i); - } - } -} - -/* - * Verifies very basic integrity of a given port_event. - */ -static void -check_event(port_event_t* pevt) -{ - /* - * We've only registered for PORT_SOURCE_FD events. The only - * other thing we can legitimately receive is PORT_SOURCE_ALERT, - * but since we're not using port_alert either, we can assume - * PORT_SOURCE_FD. - */ - assert(pevt->portev_source == PORT_SOURCE_FD); - assert(pevt->portev_user == NULL); -} - -#else -#define check_evportop(epop) -#define check_event(pevt) -#endif /* CHECK_INVARIANTS */ - -/* - * Doubles the size of the allocated file descriptor array. - */ -static int -grow(struct evport_data *epdp, int factor) -{ - struct fd_info *tmp; - int oldsize = epdp->ed_nevents; - int newsize = factor * oldsize; - assert(factor > 1); - - check_evportop(epdp); - - tmp = realloc(epdp->ed_fds, sizeof(struct fd_info) * newsize); - if (NULL == tmp) - return -1; - epdp->ed_fds = tmp; - memset((char*) (epdp->ed_fds + oldsize), 0, - (newsize - oldsize)*sizeof(struct fd_info)); - epdp->ed_nevents = newsize; - - check_evportop(epdp); - - return 0; -} - - -/* - * (Re)associates the given file descriptor with the event port. The OS events - * are specified (implicitly) from the fd_info struct. - */ -static int -reassociate(struct evport_data *epdp, struct fd_info *fdip, int fd) -{ - int sysevents = FDI_TO_SYSEVENTS(fdip); - - if (sysevents != 0) { - if (port_associate(epdp->ed_port, PORT_SOURCE_FD, - fd, sysevents, NULL) == -1) { - event_warn("port_associate"); - return (-1); - } - } - - check_evportop(epdp); - - return (0); -} - -/* - * Main event loop - polls port_getn for some number of events, and processes - * them. - */ - -static int -evport_dispatch(struct event_base *base, void *arg, struct timeval *tv) -{ - int i, res; - struct evport_data *epdp = arg; - port_event_t pevtlist[EVENTS_PER_GETN]; - - /* - * port_getn will block until it has at least nevents events. It will - * also return how many it's given us (which may be more than we asked - * for, as long as it's less than our maximum (EVENTS_PER_GETN)) in - * nevents. - */ - int nevents = 1; - - /* - * We have to convert a struct timeval to a struct timespec - * (only difference is nanoseconds vs. microseconds). If no time-based - * events are active, we should wait for I/O (and tv == NULL). - */ - struct timespec ts; - struct timespec *ts_p = NULL; - if (tv != NULL) { - ts.tv_sec = tv->tv_sec; - ts.tv_nsec = tv->tv_usec * 1000; - ts_p = &ts; - } - - /* - * Before doing anything else, we need to reassociate the events we hit - * last time which need reassociation. See comment at the end of the - * loop below. - */ - for (i = 0; i < EVENTS_PER_GETN; ++i) { - struct fd_info *fdi = NULL; - if (epdp->ed_pending[i] != -1) { - fdi = &(epdp->ed_fds[epdp->ed_pending[i]]); - } - - if (fdi != NULL && FDI_HAS_EVENTS(fdi)) { - int fd = FDI_HAS_READ(fdi) ? fdi->fdi_revt->ev_fd : - fdi->fdi_wevt->ev_fd; - reassociate(epdp, fdi, fd); - epdp->ed_pending[i] = -1; - } - } - - if ((res = port_getn(epdp->ed_port, pevtlist, EVENTS_PER_GETN, - (unsigned int *) &nevents, ts_p)) == -1) { - if (errno == EINTR || errno == EAGAIN) { - evsignal_process(base); - return (0); - } else if (errno == ETIME) { - if (nevents == 0) - return (0); - } else { - event_warn("port_getn"); - return (-1); - } - } else if (base->sig.evsignal_caught) { - evsignal_process(base); - } - - event_debug(("%s: port_getn reports %d events", __func__, nevents)); - - for (i = 0; i < nevents; ++i) { - struct event *ev; - struct fd_info *fdi; - port_event_t *pevt = &pevtlist[i]; - int fd = (int) pevt->portev_object; - - check_evportop(epdp); - check_event(pevt); - epdp->ed_pending[i] = fd; - - /* - * Figure out what kind of event it was - * (because we have to pass this to the callback) - */ - res = 0; - if (pevt->portev_events & POLLIN) - res |= EV_READ; - if (pevt->portev_events & POLLOUT) - res |= EV_WRITE; - - assert(epdp->ed_nevents > fd); - fdi = &(epdp->ed_fds[fd]); - - /* - * We now check for each of the possible events (READ - * or WRITE). Then, we activate the event (which will - * cause its callback to be executed). - */ - - if ((res & EV_READ) && ((ev = fdi->fdi_revt) != NULL)) { - event_active(ev, res, 1); - } - - if ((res & EV_WRITE) && ((ev = fdi->fdi_wevt) != NULL)) { - event_active(ev, res, 1); - } - } /* end of all events gotten */ - - check_evportop(epdp); - - return (0); -} - - -/* - * Adds the given event (so that you will be notified when it happens via - * the callback function). - */ - -static int -evport_add(void *arg, struct event *ev) -{ - struct evport_data *evpd = arg; - struct fd_info *fdi; - int factor; - - check_evportop(evpd); - - /* - * Delegate, if it's not ours to handle. - */ - if (ev->ev_events & EV_SIGNAL) - return (evsignal_add(ev)); - - /* - * If necessary, grow the file descriptor info table - */ - - factor = 1; - while (ev->ev_fd >= factor * evpd->ed_nevents) - factor *= 2; - - if (factor > 1) { - if (-1 == grow(evpd, factor)) { - return (-1); - } - } - - fdi = &evpd->ed_fds[ev->ev_fd]; - if (ev->ev_events & EV_READ) - fdi->fdi_revt = ev; - if (ev->ev_events & EV_WRITE) - fdi->fdi_wevt = ev; - - return reassociate(evpd, fdi, ev->ev_fd); -} - -/* - * Removes the given event from the list of events to wait for. - */ - -static int -evport_del(void *arg, struct event *ev) -{ - struct evport_data *evpd = arg; - struct fd_info *fdi; - int i; - int associated = 1; - - check_evportop(evpd); - - /* - * Delegate, if it's not ours to handle - */ - if (ev->ev_events & EV_SIGNAL) { - return (evsignal_del(ev)); - } - - if (evpd->ed_nevents < ev->ev_fd) { - return (-1); - } - - for (i = 0; i < EVENTS_PER_GETN; ++i) { - if (evpd->ed_pending[i] == ev->ev_fd) { - associated = 0; - break; - } - } - - fdi = &evpd->ed_fds[ev->ev_fd]; - if (ev->ev_events & EV_READ) - fdi->fdi_revt = NULL; - if (ev->ev_events & EV_WRITE) - fdi->fdi_wevt = NULL; - - if (associated) { - if (!FDI_HAS_EVENTS(fdi) && - port_dissociate(evpd->ed_port, PORT_SOURCE_FD, - ev->ev_fd) == -1) { - /* - * Ignre EBADFD error the fd could have been closed - * before event_del() was called. - */ - if (errno != EBADFD) { - event_warn("port_dissociate"); - return (-1); - } - } else { - if (FDI_HAS_EVENTS(fdi)) { - return (reassociate(evpd, fdi, ev->ev_fd)); - } - } - } else { - if (fdi->fdi_revt == NULL && fdi->fdi_wevt == NULL) { - evpd->ed_pending[i] = -1; - } - } - return 0; -} - - -static void -evport_dealloc(struct event_base *base, void *arg) -{ - struct evport_data *evpd = arg; - - evsignal_dealloc(base); - - close(evpd->ed_port); - - if (evpd->ed_fds) - free(evpd->ed_fds); - free(evpd); -} diff -Nru mysql-5.7-5.7.25/libevent/evrpc.c mysql-5.7-5.7.26/libevent/evrpc.c --- mysql-5.7-5.7.25/libevent/evrpc.c 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/evrpc.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,661 +0,0 @@ -/* - * Copyright (c) 2000-2004 Niels Provos - * All rights reserved. - * - * 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. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. - */ -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -#ifdef WIN32 -#define WIN32_LEAN_AND_MEAN -#include -#include -#undef WIN32_LEAN_AND_MEAN -#endif - -#include -#ifndef WIN32 -#include -#endif -#ifdef HAVE_SYS_TIME_H -#include -#endif -#include -#include -#include -#ifndef WIN32 -#include -#endif -#ifndef HAVE_TAILQFOREACH -#include -#endif - -#include -#include -#include -#include - -#include "event.h" -#include "evrpc.h" -#include "evrpc-internal.h" -#include "evhttp.h" -#include "evutil.h" -#include "log.h" - -struct evrpc_base * -evrpc_init(struct evhttp *http_server) -{ - struct evrpc_base* base = calloc(1, sizeof(struct evrpc_base)); - if (base == NULL) - return (NULL); - - /* we rely on the tagging sub system */ - evtag_init(); - - TAILQ_INIT(&base->registered_rpcs); - TAILQ_INIT(&base->input_hooks); - TAILQ_INIT(&base->output_hooks); - base->http_server = http_server; - - return (base); -} - -void -evrpc_free(struct evrpc_base *base) -{ - struct evrpc *rpc; - struct evrpc_hook *hook; - - while ((rpc = TAILQ_FIRST(&base->registered_rpcs)) != NULL) { - assert(evrpc_unregister_rpc(base, rpc->uri)); - } - while ((hook = TAILQ_FIRST(&base->input_hooks)) != NULL) { - assert(evrpc_remove_hook(base, EVRPC_INPUT, hook)); - } - while ((hook = TAILQ_FIRST(&base->output_hooks)) != NULL) { - assert(evrpc_remove_hook(base, EVRPC_OUTPUT, hook)); - } - free(base); -} - -void * -evrpc_add_hook(void *vbase, - enum EVRPC_HOOK_TYPE hook_type, - int (*cb)(struct evhttp_request *, struct evbuffer *, void *), - void *cb_arg) -{ - struct _evrpc_hooks *base = vbase; - struct evrpc_hook_list *head = NULL; - struct evrpc_hook *hook = NULL; - switch (hook_type) { - case EVRPC_INPUT: - head = &base->in_hooks; - break; - case EVRPC_OUTPUT: - head = &base->out_hooks; - break; - default: - assert(hook_type == EVRPC_INPUT || hook_type == EVRPC_OUTPUT); - } - - hook = calloc(1, sizeof(struct evrpc_hook)); - assert(hook != NULL); - - hook->process = cb; - hook->process_arg = cb_arg; - TAILQ_INSERT_TAIL(head, hook, next); - - return (hook); -} - -static int -evrpc_remove_hook_internal(struct evrpc_hook_list *head, void *handle) -{ - struct evrpc_hook *hook = NULL; - TAILQ_FOREACH(hook, head, next) { - if (hook == handle) { - TAILQ_REMOVE(head, hook, next); - free(hook); - return (1); - } - } - - return (0); -} - -/* - * remove the hook specified by the handle - */ - -int -evrpc_remove_hook(void *vbase, enum EVRPC_HOOK_TYPE hook_type, void *handle) -{ - struct _evrpc_hooks *base = vbase; - struct evrpc_hook_list *head = NULL; - switch (hook_type) { - case EVRPC_INPUT: - head = &base->in_hooks; - break; - case EVRPC_OUTPUT: - head = &base->out_hooks; - break; - default: - assert(hook_type == EVRPC_INPUT || hook_type == EVRPC_OUTPUT); - } - - return (evrpc_remove_hook_internal(head, handle)); -} - -static int -evrpc_process_hooks(struct evrpc_hook_list *head, - struct evhttp_request *req, struct evbuffer *evbuf) -{ - struct evrpc_hook *hook; - TAILQ_FOREACH(hook, head, next) { - if (hook->process(req, evbuf, hook->process_arg) == -1) - return (-1); - } - - return (0); -} - -static void evrpc_pool_schedule(struct evrpc_pool *pool); -static void evrpc_request_cb(struct evhttp_request *, void *); -void evrpc_request_done(struct evrpc_req_generic*); - -/* - * Registers a new RPC with the HTTP server. The evrpc object is expected - * to have been filled in via the EVRPC_REGISTER_OBJECT macro which in turn - * calls this function. - */ - -static char * -evrpc_construct_uri(const char *uri) -{ - char *constructed_uri; - int constructed_uri_len; - - constructed_uri_len = strlen(EVRPC_URI_PREFIX) + strlen(uri) + 1; - if ((constructed_uri = malloc(constructed_uri_len)) == NULL) - event_err(1, "%s: failed to register rpc at %s", - __func__, uri); - memcpy(constructed_uri, EVRPC_URI_PREFIX, strlen(EVRPC_URI_PREFIX)); - memcpy(constructed_uri + strlen(EVRPC_URI_PREFIX), uri, strlen(uri)); - constructed_uri[constructed_uri_len - 1] = '\0'; - - return (constructed_uri); -} - -int -evrpc_register_rpc(struct evrpc_base *base, struct evrpc *rpc, - void (*cb)(struct evrpc_req_generic *, void *), void *cb_arg) -{ - char *constructed_uri = evrpc_construct_uri(rpc->uri); - - rpc->base = base; - rpc->cb = cb; - rpc->cb_arg = cb_arg; - - TAILQ_INSERT_TAIL(&base->registered_rpcs, rpc, next); - - evhttp_set_cb(base->http_server, - constructed_uri, - evrpc_request_cb, - rpc); - - free(constructed_uri); - - return (0); -} - -int -evrpc_unregister_rpc(struct evrpc_base *base, const char *name) -{ - char *registered_uri = NULL; - struct evrpc *rpc; - - /* find the right rpc; linear search might be slow */ - TAILQ_FOREACH(rpc, &base->registered_rpcs, next) { - if (strcmp(rpc->uri, name) == 0) - break; - } - if (rpc == NULL) { - /* We did not find an RPC with this name */ - return (-1); - } - TAILQ_REMOVE(&base->registered_rpcs, rpc, next); - - free((char *)rpc->uri); - free(rpc); - - registered_uri = evrpc_construct_uri(name); - - /* remove the http server callback */ - assert(evhttp_del_cb(base->http_server, registered_uri) == 0); - - free(registered_uri); - return (0); -} - -static void -evrpc_request_cb(struct evhttp_request *req, void *arg) -{ - struct evrpc *rpc = arg; - struct evrpc_req_generic *rpc_state = NULL; - - /* let's verify the outside parameters */ - if (req->type != EVHTTP_REQ_POST || - EVBUFFER_LENGTH(req->input_buffer) <= 0) - goto error; - - /* - * we might want to allow hooks to suspend the processing, - * but at the moment, we assume that they just act as simple - * filters. - */ - if (evrpc_process_hooks(&rpc->base->input_hooks, - req, req->input_buffer) == -1) - goto error; - - rpc_state = calloc(1, sizeof(struct evrpc_req_generic)); - if (rpc_state == NULL) - goto error; - - /* let's check that we can parse the request */ - rpc_state->request = rpc->request_new(); - if (rpc_state->request == NULL) - goto error; - - rpc_state->rpc = rpc; - - if (rpc->request_unmarshal( - rpc_state->request, req->input_buffer) == -1) { - /* we failed to parse the request; that's a bummer */ - goto error; - } - - /* at this point, we have a well formed request, prepare the reply */ - - rpc_state->reply = rpc->reply_new(); - if (rpc_state->reply == NULL) - goto error; - - rpc_state->http_req = req; - rpc_state->done = evrpc_request_done; - - /* give the rpc to the user; they can deal with it */ - rpc->cb(rpc_state, rpc->cb_arg); - - return; - -error: - evrpc_reqstate_free(rpc_state); - evhttp_send_error(req, HTTP_SERVUNAVAIL, "Service Error"); - return; -} - -void -evrpc_reqstate_free(struct evrpc_req_generic* rpc_state) -{ - /* clean up all memory */ - if (rpc_state != NULL) { - struct evrpc *rpc = rpc_state->rpc; - - if (rpc_state->request != NULL) - rpc->request_free(rpc_state->request); - if (rpc_state->reply != NULL) - rpc->reply_free(rpc_state->reply); - free(rpc_state); - } -} - -void -evrpc_request_done(struct evrpc_req_generic* rpc_state) -{ - struct evhttp_request *req = rpc_state->http_req; - struct evrpc *rpc = rpc_state->rpc; - struct evbuffer* data = NULL; - - if (rpc->reply_complete(rpc_state->reply) == -1) { - /* the reply was not completely filled in. error out */ - goto error; - } - - if ((data = evbuffer_new()) == NULL) { - /* out of memory */ - goto error; - } - - /* serialize the reply */ - rpc->reply_marshal(data, rpc_state->reply); - - /* do hook based tweaks to the request */ - if (evrpc_process_hooks(&rpc->base->output_hooks, - req, data) == -1) - goto error; - - /* on success, we are going to transmit marshaled binary data */ - if (evhttp_find_header(req->output_headers, "Content-Type") == NULL) { - evhttp_add_header(req->output_headers, - "Content-Type", "application/octet-stream"); - } - - evhttp_send_reply(req, HTTP_OK, "OK", data); - - evbuffer_free(data); - - evrpc_reqstate_free(rpc_state); - - return; - -error: - if (data != NULL) - evbuffer_free(data); - evrpc_reqstate_free(rpc_state); - evhttp_send_error(req, HTTP_SERVUNAVAIL, "Service Error"); - return; -} - -/* Client implementation of RPC site */ - -static int evrpc_schedule_request(struct evhttp_connection *connection, - struct evrpc_request_wrapper *ctx); - -struct evrpc_pool * -evrpc_pool_new(struct event_base *base) -{ - struct evrpc_pool *pool = calloc(1, sizeof(struct evrpc_pool)); - if (pool == NULL) - return (NULL); - - TAILQ_INIT(&pool->connections); - TAILQ_INIT(&pool->requests); - - TAILQ_INIT(&pool->input_hooks); - TAILQ_INIT(&pool->output_hooks); - - pool->base = base; - pool->timeout = -1; - - return (pool); -} - -static void -evrpc_request_wrapper_free(struct evrpc_request_wrapper *request) -{ - free(request->name); - free(request); -} - -void -evrpc_pool_free(struct evrpc_pool *pool) -{ - struct evhttp_connection *connection; - struct evrpc_request_wrapper *request; - struct evrpc_hook *hook; - - while ((request = TAILQ_FIRST(&pool->requests)) != NULL) { - TAILQ_REMOVE(&pool->requests, request, next); - /* if this gets more complicated we need our own function */ - evrpc_request_wrapper_free(request); - } - - while ((connection = TAILQ_FIRST(&pool->connections)) != NULL) { - TAILQ_REMOVE(&pool->connections, connection, next); - evhttp_connection_free(connection); - } - - while ((hook = TAILQ_FIRST(&pool->input_hooks)) != NULL) { - assert(evrpc_remove_hook(pool, EVRPC_INPUT, hook)); - } - - while ((hook = TAILQ_FIRST(&pool->output_hooks)) != NULL) { - assert(evrpc_remove_hook(pool, EVRPC_OUTPUT, hook)); - } - - free(pool); -} - -/* - * Add a connection to the RPC pool. A request scheduled on the pool - * may use any available connection. - */ - -void -evrpc_pool_add_connection(struct evrpc_pool *pool, - struct evhttp_connection *connection) { - assert(connection->http_server == NULL); - TAILQ_INSERT_TAIL(&pool->connections, connection, next); - - /* - * associate an event base with this connection - */ - if (pool->base != NULL) - evhttp_connection_set_base(connection, pool->base); - - /* - * unless a timeout was specifically set for a connection, - * the connection inherits the timeout from the pool. - */ - if (connection->timeout == -1) - connection->timeout = pool->timeout; - - /* - * if we have any requests pending, schedule them with the new - * connections. - */ - - if (TAILQ_FIRST(&pool->requests) != NULL) { - struct evrpc_request_wrapper *request = - TAILQ_FIRST(&pool->requests); - TAILQ_REMOVE(&pool->requests, request, next); - evrpc_schedule_request(connection, request); - } -} - -void -evrpc_pool_set_timeout(struct evrpc_pool *pool, int timeout_in_secs) -{ - struct evhttp_connection *evcon; - TAILQ_FOREACH(evcon, &pool->connections, next) { - evcon->timeout = timeout_in_secs; - } - pool->timeout = timeout_in_secs; -} - - -static void evrpc_reply_done(struct evhttp_request *, void *); -static void evrpc_request_timeout(int, short, void *); - -/* - * Finds a connection object associated with the pool that is currently - * idle and can be used to make a request. - */ -static struct evhttp_connection * -evrpc_pool_find_connection(struct evrpc_pool *pool) -{ - struct evhttp_connection *connection; - TAILQ_FOREACH(connection, &pool->connections, next) { - if (TAILQ_FIRST(&connection->requests) == NULL) - return (connection); - } - - return (NULL); -} - -/* - * We assume that the ctx is no longer queued on the pool. - */ -static int -evrpc_schedule_request(struct evhttp_connection *connection, - struct evrpc_request_wrapper *ctx) -{ - struct evhttp_request *req = NULL; - struct evrpc_pool *pool = ctx->pool; - struct evrpc_status status; - char *uri = NULL; - int res = 0; - - if ((req = evhttp_request_new(evrpc_reply_done, ctx)) == NULL) - goto error; - - /* serialize the request data into the output buffer */ - ctx->request_marshal(req->output_buffer, ctx->request); - - uri = evrpc_construct_uri(ctx->name); - if (uri == NULL) - goto error; - - /* we need to know the connection that we might have to abort */ - ctx->evcon = connection; - - /* apply hooks to the outgoing request */ - if (evrpc_process_hooks(&pool->output_hooks, - req, req->output_buffer) == -1) - goto error; - - if (pool->timeout > 0) { - /* - * a timeout after which the whole rpc is going to be aborted. - */ - struct timeval tv; - evutil_timerclear(&tv); - tv.tv_sec = pool->timeout; - evtimer_add(&ctx->ev_timeout, &tv); - } - - /* start the request over the connection */ - res = evhttp_make_request(connection, req, EVHTTP_REQ_POST, uri); - free(uri); - - if (res == -1) - goto error; - - return (0); - -error: - memset(&status, 0, sizeof(status)); - status.error = EVRPC_STATUS_ERR_UNSTARTED; - (*ctx->cb)(&status, ctx->request, ctx->reply, ctx->cb_arg); - evrpc_request_wrapper_free(ctx); - return (-1); -} - -int -evrpc_make_request(struct evrpc_request_wrapper *ctx) -{ - struct evrpc_pool *pool = ctx->pool; - - /* initialize the event structure for this rpc */ - evtimer_set(&ctx->ev_timeout, evrpc_request_timeout, ctx); - if (pool->base != NULL) - event_base_set(pool->base, &ctx->ev_timeout); - - /* we better have some available connections on the pool */ - assert(TAILQ_FIRST(&pool->connections) != NULL); - - /* - * if no connection is available, we queue the request on the pool, - * the next time a connection is empty, the rpc will be send on that. - */ - TAILQ_INSERT_TAIL(&pool->requests, ctx, next); - - evrpc_pool_schedule(pool); - - return (0); -} - -static void -evrpc_reply_done(struct evhttp_request *req, void *arg) -{ - struct evrpc_request_wrapper *ctx = arg; - struct evrpc_pool *pool = ctx->pool; - struct evrpc_status status; - int res = -1; - - /* cancel any timeout we might have scheduled */ - event_del(&ctx->ev_timeout); - - memset(&status, 0, sizeof(status)); - status.http_req = req; - - /* we need to get the reply now */ - if (req != NULL) { - /* apply hooks to the incoming request */ - if (evrpc_process_hooks(&pool->input_hooks, - req, req->input_buffer) == -1) { - status.error = EVRPC_STATUS_ERR_HOOKABORTED; - res = -1; - } else { - res = ctx->reply_unmarshal(ctx->reply, - req->input_buffer); - if (res == -1) { - status.error = EVRPC_STATUS_ERR_BADPAYLOAD; - } - } - } else { - status.error = EVRPC_STATUS_ERR_TIMEOUT; - } - - if (res == -1) { - /* clear everything that we might have written previously */ - ctx->reply_clear(ctx->reply); - } - - (*ctx->cb)(&status, ctx->request, ctx->reply, ctx->cb_arg); - - evrpc_request_wrapper_free(ctx); - - /* the http layer owns the request structure */ - - /* see if we can schedule another request */ - evrpc_pool_schedule(pool); -} - -static void -evrpc_pool_schedule(struct evrpc_pool *pool) -{ - struct evrpc_request_wrapper *ctx = TAILQ_FIRST(&pool->requests); - struct evhttp_connection *evcon; - - /* if no requests are pending, we have no work */ - if (ctx == NULL) - return; - - if ((evcon = evrpc_pool_find_connection(pool)) != NULL) { - TAILQ_REMOVE(&pool->requests, ctx, next); - evrpc_schedule_request(evcon, ctx); - } -} - -static void -evrpc_request_timeout(int fd, short what, void *arg) -{ - struct evrpc_request_wrapper *ctx = arg; - struct evhttp_connection *evcon = ctx->evcon; - assert(evcon != NULL); - - evhttp_connection_fail(evcon, EVCON_HTTP_TIMEOUT); -} diff -Nru mysql-5.7-5.7.25/libevent/evrpc.h mysql-5.7-5.7.26/libevent/evrpc.h --- mysql-5.7-5.7.25/libevent/evrpc.h 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/evrpc.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,486 +0,0 @@ -/* - * Copyright (c) 2006 Niels Provos - * All rights reserved. - * - * 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. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. - */ -#ifndef _EVRPC_H_ -#define _EVRPC_H_ - -#ifdef __cplusplus -extern "C" { -#endif - -/** @file evrpc.h - * - * This header files provides basic support for an RPC server and client. - * - * To support RPCs in a server, every supported RPC command needs to be - * defined and registered. - * - * EVRPC_HEADER(SendCommand, Request, Reply); - * - * SendCommand is the name of the RPC command. - * Request is the name of a structure generated by event_rpcgen.py. - * It contains all parameters relating to the SendCommand RPC. The - * server needs to fill in the Reply structure. - * Reply is the name of a structure generated by event_rpcgen.py. It - * contains the answer to the RPC. - * - * To register an RPC with an HTTP server, you need to first create an RPC - * base with: - * - * struct evrpc_base *base = evrpc_init(http); - * - * A specific RPC can then be registered with - * - * EVRPC_REGISTER(base, SendCommand, Request, Reply, FunctionCB, arg); - * - * when the server receives an appropriately formatted RPC, the user callback - * is invokved. The callback needs to fill in the reply structure. - * - * void FunctionCB(EVRPC_STRUCT(SendCommand)* rpc, void *arg); - * - * To send the reply, call EVRPC_REQUEST_DONE(rpc); - * - * See the regression test for an example. - */ - -struct evbuffer; -struct event_base; -struct evrpc_req_generic; - -/* Encapsulates a request */ -struct evrpc { - TAILQ_ENTRY(evrpc) next; - - /* the URI at which the request handler lives */ - const char* uri; - - /* creates a new request structure */ - void *(*request_new)(void); - - /* frees the request structure */ - void (*request_free)(void *); - - /* unmarshals the buffer into the proper request structure */ - int (*request_unmarshal)(void *, struct evbuffer *); - - /* creates a new reply structure */ - void *(*reply_new)(void); - - /* creates a new reply structure */ - void (*reply_free)(void *); - - /* verifies that the reply is valid */ - int (*reply_complete)(void *); - - /* marshals the reply into a buffer */ - void (*reply_marshal)(struct evbuffer*, void *); - - /* the callback invoked for each received rpc */ - void (*cb)(struct evrpc_req_generic *, void *); - void *cb_arg; - - /* reference for further configuration */ - struct evrpc_base *base; -}; - -/** The type of a specific RPC Message - * - * @param rpcname the name of the RPC message - */ -#define EVRPC_STRUCT(rpcname) struct evrpc_req__##rpcname - -struct evhttp_request; -struct evrpc_status; - -/* We alias the RPC specific structs to this voided one */ -struct evrpc_req_generic { - /* the unmarshaled request object */ - void *request; - - /* the empty reply object that needs to be filled in */ - void *reply; - - /* - * the static structure for this rpc; that can be used to - * automatically unmarshal and marshal the http buffers. - */ - struct evrpc *rpc; - - /* - * the http request structure on which we need to answer. - */ - struct evhttp_request* http_req; - - /* - * callback to reply and finish answering this rpc - */ - void (*done)(struct evrpc_req_generic* rpc); -}; - -/** Creates the definitions and prototypes for an RPC - * - * You need to use EVRPC_HEADER to create structures and function prototypes - * needed by the server and client implementation. The structures have to be - * defined in an .rpc file and converted to source code via event_rpcgen.py - * - * @param rpcname the name of the RPC - * @param reqstruct the name of the RPC request structure - * @param replystruct the name of the RPC reply structure - * @see EVRPC_GENERATE() - */ -#define EVRPC_HEADER(rpcname, reqstruct, rplystruct) \ -EVRPC_STRUCT(rpcname) { \ - struct reqstruct* request; \ - struct rplystruct* reply; \ - struct evrpc* rpc; \ - struct evhttp_request* http_req; \ - void (*done)(struct evrpc_status *, \ - struct evrpc* rpc, void *request, void *reply); \ -}; \ -int evrpc_send_request_##rpcname(struct evrpc_pool *, \ - struct reqstruct *, struct rplystruct *, \ - void (*)(struct evrpc_status *, \ - struct reqstruct *, struct rplystruct *, void *cbarg), \ - void *); - -/** Generates the code for receiving and sending an RPC message - * - * EVRPC_GENERATE is used to create the code corresponding to sending - * and receiving a particular RPC message - * - * @param rpcname the name of the RPC - * @param reqstruct the name of the RPC request structure - * @param replystruct the name of the RPC reply structure - * @see EVRPC_HEADER() - */ -#define EVRPC_GENERATE(rpcname, reqstruct, rplystruct) \ -int evrpc_send_request_##rpcname(struct evrpc_pool *pool, \ - struct reqstruct *request, struct rplystruct *reply, \ - void (*cb)(struct evrpc_status *, \ - struct reqstruct *, struct rplystruct *, void *cbarg), \ - void *cbarg) { \ - struct evrpc_status status; \ - struct evrpc_request_wrapper *ctx; \ - ctx = (struct evrpc_request_wrapper *) \ - malloc(sizeof(struct evrpc_request_wrapper)); \ - if (ctx == NULL) \ - goto error; \ - ctx->pool = pool; \ - ctx->evcon = NULL; \ - ctx->name = strdup(#rpcname); \ - if (ctx->name == NULL) { \ - free(ctx); \ - goto error; \ - } \ - ctx->cb = (void (*)(struct evrpc_status *, \ - void *, void *, void *))cb; \ - ctx->cb_arg = cbarg; \ - ctx->request = (void *)request; \ - ctx->reply = (void *)reply; \ - ctx->request_marshal = (void (*)(struct evbuffer *, void *))reqstruct##_marshal; \ - ctx->reply_clear = (void (*)(void *))rplystruct##_clear; \ - ctx->reply_unmarshal = (int (*)(void *, struct evbuffer *))rplystruct##_unmarshal; \ - return (evrpc_make_request(ctx)); \ -error: \ - memset(&status, 0, sizeof(status)); \ - status.error = EVRPC_STATUS_ERR_UNSTARTED; \ - (*(cb))(&status, request, reply, cbarg); \ - return (-1); \ -} - -/** Provides access to the HTTP request object underlying an RPC - * - * Access to the underlying http object; can be used to look at headers or - * for getting the remote ip address - * - * @param rpc_req the rpc request structure provided to the server callback - * @return an struct evhttp_request object that can be inspected for - * HTTP headers or sender information. - */ -#define EVRPC_REQUEST_HTTP(rpc_req) (rpc_req)->http_req - -/** Creates the reply to an RPC request - * - * EVRPC_REQUEST_DONE is used to answer a request; the reply is expected - * to have been filled in. The request and reply pointers become invalid - * after this call has finished. - * - * @param rpc_req the rpc request structure provided to the server callback - */ -#define EVRPC_REQUEST_DONE(rpc_req) do { \ - struct evrpc_req_generic *_req = (struct evrpc_req_generic *)(rpc_req); \ - _req->done(_req); \ -} while (0) - - -/* Takes a request object and fills it in with the right magic */ -#define EVRPC_REGISTER_OBJECT(rpc, name, request, reply) \ - do { \ - (rpc)->uri = strdup(#name); \ - if ((rpc)->uri == NULL) { \ - fprintf(stderr, "failed to register object\n"); \ - exit(1); \ - } \ - (rpc)->request_new = (void *(*)(void))request##_new; \ - (rpc)->request_free = (void (*)(void *))request##_free; \ - (rpc)->request_unmarshal = (int (*)(void *, struct evbuffer *))request##_unmarshal; \ - (rpc)->reply_new = (void *(*)(void))reply##_new; \ - (rpc)->reply_free = (void (*)(void *))reply##_free; \ - (rpc)->reply_complete = (int (*)(void *))reply##_complete; \ - (rpc)->reply_marshal = (void (*)(struct evbuffer*, void *))reply##_marshal; \ - } while (0) - -struct evrpc_base; -struct evhttp; - -/* functions to start up the rpc system */ - -/** Creates a new rpc base from which RPC requests can be received - * - * @param server a pointer to an existing HTTP server - * @return a newly allocated evrpc_base struct - * @see evrpc_free() - */ -struct evrpc_base *evrpc_init(struct evhttp *server); - -/** - * Frees the evrpc base - * - * For now, you are responsible for making sure that no rpcs are ongoing. - * - * @param base the evrpc_base object to be freed - * @see evrpc_init - */ -void evrpc_free(struct evrpc_base *base); - -/** register RPCs with the HTTP Server - * - * registers a new RPC with the HTTP server, each RPC needs to have - * a unique name under which it can be identified. - * - * @param base the evrpc_base structure in which the RPC should be - * registered. - * @param name the name of the RPC - * @param request the name of the RPC request structure - * @param reply the name of the RPC reply structure - * @param callback the callback that should be invoked when the RPC - * is received. The callback has the following prototype - * void (*callback)(EVRPC_STRUCT(Message)* rpc, void *arg) - * @param cbarg an additional parameter that can be passed to the callback. - * The parameter can be used to carry around state. - */ -#define EVRPC_REGISTER(base, name, request, reply, callback, cbarg) \ - do { \ - struct evrpc* rpc = (struct evrpc *)calloc(1, sizeof(struct evrpc)); \ - EVRPC_REGISTER_OBJECT(rpc, name, request, reply); \ - evrpc_register_rpc(base, rpc, \ - (void (*)(struct evrpc_req_generic*, void *))callback, cbarg); \ - } while (0) - -int evrpc_register_rpc(struct evrpc_base *, struct evrpc *, - void (*)(struct evrpc_req_generic*, void *), void *); - -/** - * Unregisters an already registered RPC - * - * @param base the evrpc_base object from which to unregister an RPC - * @param name the name of the rpc to unregister - * @return -1 on error or 0 when successful. - * @see EVRPC_REGISTER() - */ -#define EVRPC_UNREGISTER(base, name) evrpc_unregister_rpc(base, #name) - -int evrpc_unregister_rpc(struct evrpc_base *base, const char *name); - -/* - * Client-side RPC support - */ - -struct evrpc_pool; -struct evhttp_connection; - -/** - * provides information about the completed RPC request. - */ -struct evrpc_status { -#define EVRPC_STATUS_ERR_NONE 0 -#define EVRPC_STATUS_ERR_TIMEOUT 1 -#define EVRPC_STATUS_ERR_BADPAYLOAD 2 -#define EVRPC_STATUS_ERR_UNSTARTED 3 -#define EVRPC_STATUS_ERR_HOOKABORTED 4 - int error; - - /* for looking at headers or other information */ - struct evhttp_request *http_req; -}; - -struct evrpc_request_wrapper { - TAILQ_ENTRY(evrpc_request_wrapper) next; - - /* pool on which this rpc request is being made */ - struct evrpc_pool *pool; - - /* connection on which the request is being sent */ - struct evhttp_connection *evcon; - - /* event for implementing request timeouts */ - struct event ev_timeout; - - /* the name of the rpc */ - char *name; - - /* callback */ - void (*cb)(struct evrpc_status*, void *request, void *reply, void *arg); - void *cb_arg; - - void *request; - void *reply; - - /* unmarshals the buffer into the proper request structure */ - void (*request_marshal)(struct evbuffer *, void *); - - /* removes all stored state in the reply */ - void (*reply_clear)(void *); - - /* marshals the reply into a buffer */ - int (*reply_unmarshal)(void *, struct evbuffer*); -}; - -/** launches an RPC and sends it to the server - * - * EVRPC_MAKE_REQUEST() is used by the client to send an RPC to the server. - * - * @param name the name of the RPC - * @param pool the evrpc_pool that contains the connection objects over which - * the request should be sent. - * @param request a pointer to the RPC request structure - it contains the - * data to be sent to the server. - * @param reply a pointer to the RPC reply structure. It is going to be filled - * if the request was answered successfully - * @param cb the callback to invoke when the RPC request has been answered - * @param cbarg an additional argument to be passed to the client - * @return 0 on success, -1 on failure - */ -#define EVRPC_MAKE_REQUEST(name, pool, request, reply, cb, cbarg) \ - evrpc_send_request_##name(pool, request, reply, cb, cbarg) - -int evrpc_make_request(struct evrpc_request_wrapper *); - -/** creates an rpc connection pool - * - * a pool has a number of connections associated with it. - * rpc requests are always made via a pool. - * - * @param base a pointer to an struct event_based object; can be left NULL - * in singled-threaded applications - * @return a newly allocated struct evrpc_pool object - * @see evrpc_pool_free() - */ -struct evrpc_pool *evrpc_pool_new(struct event_base *base); -/** frees an rpc connection pool - * - * @param pool a pointer to an evrpc_pool allocated via evrpc_pool_new() - * @see evrpc_pool_new() - */ -void evrpc_pool_free(struct evrpc_pool *pool); -/* - * adds a connection over which rpc can be dispatched. the connection - * object must have been newly created. - */ -void evrpc_pool_add_connection(struct evrpc_pool *, - struct evhttp_connection *); - -/** - * Sets the timeout in secs after which a request has to complete. The - * RPC is completely aborted if it does not complete by then. Setting - * the timeout to 0 means that it never timeouts and can be used to - * implement callback type RPCs. - * - * Any connection already in the pool will be updated with the new - * timeout. Connections added to the pool after set_timeout has be - * called receive the pool timeout only if no timeout has been set - * for the connection itself. - * - * @param pool a pointer to a struct evrpc_pool object - * @param timeout_in_secs the number of seconds after which a request should - * timeout and a failure be returned to the callback. - */ -void evrpc_pool_set_timeout(struct evrpc_pool *pool, int timeout_in_secs); - -/** - * Hooks for changing the input and output of RPCs; this can be used to - * implement compression, authentication, encryption, ... - */ - -enum EVRPC_HOOK_TYPE { - EVRPC_INPUT, /**< apply the function to an input hook */ - EVRPC_OUTPUT /**< apply the function to an output hook */ -}; - -#ifndef WIN32 -/** Deprecated alias for EVRPC_INPUT. Not available on windows, where it - * conflicts with platform headers. */ -#define INPUT EVRPC_INPUT -/** Deprecated alias for EVRPC_OUTPUT. Not available on windows, where it - * conflicts with platform headers. */ -#define OUTPUT EVRPC_OUTPUT -#endif - -/** adds a processing hook to either an rpc base or rpc pool - * - * If a hook returns -1, the processing is aborted. - * - * The add functions return handles that can be used for removing hooks. - * - * @param vbase a pointer to either struct evrpc_base or struct evrpc_pool - * @param hook_type either INPUT or OUTPUT - * @param cb the callback to call when the hook is activated - * @param cb_arg an additional argument for the callback - * @return a handle to the hook so it can be removed later - * @see evrpc_remove_hook() - */ -void *evrpc_add_hook(void *vbase, - enum EVRPC_HOOK_TYPE hook_type, - int (*cb)(struct evhttp_request *, struct evbuffer *, void *), - void *cb_arg); - -/** removes a previously added hook - * - * @param vbase a pointer to either struct evrpc_base or struct evrpc_pool - * @param hook_type either INPUT or OUTPUT - * @param handle a handle returned by evrpc_add_hook() - * @return 1 on success or 0 on failure - * @see evrpc_add_hook() - */ -int evrpc_remove_hook(void *vbase, - enum EVRPC_HOOK_TYPE hook_type, - void *handle); - -#ifdef __cplusplus -} -#endif - -#endif /* _EVRPC_H_ */ diff -Nru mysql-5.7-5.7.25/libevent/evrpc-internal.h mysql-5.7-5.7.26/libevent/evrpc-internal.h --- mysql-5.7-5.7.25/libevent/evrpc-internal.h 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/evrpc-internal.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,87 +0,0 @@ -/* - * Copyright (c) 2006 Niels Provos - * All rights reserved. - * - * 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. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. - */ -#ifndef _EVRPC_INTERNAL_H_ -#define _EVRPC_INTERNAL_H_ - -#include "http-internal.h" - -struct evrpc; - -#define EVRPC_URI_PREFIX "/.rpc." - -struct evrpc_hook { - TAILQ_ENTRY(evrpc_hook) (next); - - /* returns -1; if the rpc should be aborted, is allowed to rewrite */ - int (*process)(struct evhttp_request *, struct evbuffer *, void *); - void *process_arg; -}; - -TAILQ_HEAD(evrpc_hook_list, evrpc_hook); - -/* - * this is shared between the base and the pool, so that we can reuse - * the hook adding functions; we alias both evrpc_pool and evrpc_base - * to this common structure. - */ -struct _evrpc_hooks { - /* hooks for processing outbound and inbound rpcs */ - struct evrpc_hook_list in_hooks; - struct evrpc_hook_list out_hooks; -}; - -#define input_hooks common.in_hooks -#define output_hooks common.out_hooks - -struct evrpc_base { - struct _evrpc_hooks common; - - /* the HTTP server under which we register our RPC calls */ - struct evhttp* http_server; - - /* a list of all RPCs registered with us */ - TAILQ_HEAD(evrpc_list, evrpc) registered_rpcs; -}; - -struct evrpc_req_generic; -void evrpc_reqstate_free(struct evrpc_req_generic* rpc_state); - -/* A pool for holding evhttp_connection objects */ -struct evrpc_pool { - struct _evrpc_hooks common; - - struct event_base *base; - - struct evconq connections; - - int timeout; - - TAILQ_HEAD(evrpc_requestq, evrpc_request_wrapper) requests; -}; - - -#endif /* _EVRPC_INTERNAL_H_ */ diff -Nru mysql-5.7-5.7.25/libevent/evsignal.h mysql-5.7-5.7.26/libevent/evsignal.h --- mysql-5.7-5.7.25/libevent/evsignal.h 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/evsignal.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,54 +0,0 @@ -/* - * Copyright 2000-2002 Niels Provos - * All rights reserved. - * - * 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. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. - */ -#ifndef _EVSIGNAL_H_ -#define _EVSIGNAL_H_ - -#include - -typedef void (*ev_sighandler_t)(int); - -struct evsignal_info { - struct event ev_signal; - int ev_signal_pair[2]; - int ev_signal_added; - volatile sig_atomic_t evsignal_caught; - struct event_list evsigevents[NSIG]; - sig_atomic_t evsigcaught[NSIG]; -#ifdef HAVE_SIGACTION - struct sigaction **sh_old; -#else - ev_sighandler_t **sh_old; -#endif - int sh_old_max; -}; -int evsignal_init(struct event_base *); -void evsignal_process(struct event_base *); -int evsignal_add(struct event *); -int evsignal_del(struct event *); -void evsignal_dealloc(struct event_base *); - -#endif /* _EVSIGNAL_H_ */ diff -Nru mysql-5.7-5.7.25/libevent/evutil.c mysql-5.7-5.7.26/libevent/evutil.c --- mysql-5.7-5.7.25/libevent/evutil.c 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/evutil.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,245 +0,0 @@ -/* - * Copyright (c) 2007 Niels Provos - * All rights reserved. - * - * 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. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. - */ -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -#ifdef WIN32 -#include -#define WIN32_LEAN_AND_MEAN -#include -#undef WIN32_LEAN_AND_MEAN -#endif - -#include -#ifdef HAVE_SYS_SOCKET_H -#include -#endif -#ifdef HAVE_UNISTD_H -#include -#endif -#ifdef HAVE_FCNTL_H -#include -#endif -#ifdef HAVE_STDLIB_H -#include -#endif -#include -#if defined WIN32 -#include -#endif -#include - -#include "evutil.h" -#include "log.h" - -int -evutil_socketpair(int family, int type, int protocol, int fd[2]) -{ -#ifndef WIN32 - return socketpair(family, type, protocol, fd); -#else - /* This code is originally from Tor. Used with permission. */ - - /* This socketpair does not work when localhost is down. So - * it's really not the same thing at all. But it's close enough - * for now, and really, when localhost is down sometimes, we - * have other problems too. - */ - int listener = -1; - int connector = -1; - int acceptor = -1; - struct sockaddr_in listen_addr; - struct sockaddr_in connect_addr; - int size; - int saved_errno = -1; - - if (protocol -#ifdef AF_UNIX - || family != AF_UNIX -#endif - ) { - EVUTIL_SET_SOCKET_ERROR(WSAEAFNOSUPPORT); - return -1; - } - if (!fd) { - EVUTIL_SET_SOCKET_ERROR(WSAEINVAL); - return -1; - } - - listener = socket(AF_INET, type, 0); - if (listener < 0) - return -1; - memset(&listen_addr, 0, sizeof(listen_addr)); - listen_addr.sin_family = AF_INET; - listen_addr.sin_addr.s_addr = htonl(INADDR_LOOPBACK); - listen_addr.sin_port = 0; /* kernel chooses port. */ - if (bind(listener, (struct sockaddr *) &listen_addr, sizeof (listen_addr)) - == -1) - goto tidy_up_and_fail; - if (listen(listener, 1) == -1) - goto tidy_up_and_fail; - - connector = socket(AF_INET, type, 0); - if (connector < 0) - goto tidy_up_and_fail; - /* We want to find out the port number to connect to. */ - size = sizeof(connect_addr); - if (getsockname(listener, (struct sockaddr *) &connect_addr, &size) == -1) - goto tidy_up_and_fail; - if (size != sizeof (connect_addr)) - goto abort_tidy_up_and_fail; - if (connect(connector, (struct sockaddr *) &connect_addr, - sizeof(connect_addr)) == -1) - goto tidy_up_and_fail; - - size = sizeof(listen_addr); - acceptor = accept(listener, (struct sockaddr *) &listen_addr, &size); - if (acceptor < 0) - goto tidy_up_and_fail; - if (size != sizeof(listen_addr)) - goto abort_tidy_up_and_fail; - EVUTIL_CLOSESOCKET(listener); - /* Now check we are talking to ourself by matching port and host on the - two sockets. */ - if (getsockname(connector, (struct sockaddr *) &connect_addr, &size) == -1) - goto tidy_up_and_fail; - if (size != sizeof (connect_addr) - || listen_addr.sin_family != connect_addr.sin_family - || listen_addr.sin_addr.s_addr != connect_addr.sin_addr.s_addr - || listen_addr.sin_port != connect_addr.sin_port) - goto abort_tidy_up_and_fail; - fd[0] = connector; - fd[1] = acceptor; - - return 0; - - abort_tidy_up_and_fail: - saved_errno = WSAECONNABORTED; - tidy_up_and_fail: - if (saved_errno < 0) - saved_errno = WSAGetLastError(); - if (listener != -1) - EVUTIL_CLOSESOCKET(listener); - if (connector != -1) - EVUTIL_CLOSESOCKET(connector); - if (acceptor != -1) - EVUTIL_CLOSESOCKET(acceptor); - - EVUTIL_SET_SOCKET_ERROR(saved_errno); - return -1; -#endif -} - -int -evutil_make_socket_nonblocking(int fd) -{ -#ifdef WIN32 - { - unsigned long nonblocking = 1; - ioctlsocket(fd, FIONBIO, (unsigned long*) &nonblocking); - } -#else - if (fcntl(fd, F_SETFL, O_NONBLOCK) == -1) { - event_warn("fcntl(O_NONBLOCK)"); - return -1; -} -#endif - return 0; -} - -ev_int64_t -evutil_strtoll(const char *s, char **endptr, int base) -{ -#ifdef HAVE_STRTOLL - return (ev_int64_t)strtoll(s, endptr, base); -#elif SIZEOF_LONG == 8 - return (ev_int64_t)strtol(s, endptr, base); -#elif defined(WIN32) && defined(_MSC_VER) && _MSC_VER < 1300 - /* XXXX on old versions of MS APIs, we only support base - * 10. */ - ev_int64_t r; - if (base != 10) - return 0; - r = (ev_int64_t) _atoi64(s); - while (isspace(*s)) - ++s; - while (isdigit(*s)) - ++s; - if (endptr) - *endptr = (char*) s; - return r; -#elif defined(WIN32) - return (ev_int64_t) _strtoi64(s, endptr, base); -#else -#error "I don't know how to parse 64-bit integers." -#endif -} - -#ifndef HAVE_GETTIMEOFDAY -int -evutil_gettimeofday(struct timeval *tv, struct timezone *tz) -{ - struct _timeb tb; - - if(tv == NULL) - return -1; - - _ftime(&tb); - tv->tv_sec = (long) tb.time; - tv->tv_usec = ((int) tb.millitm) * 1000; - return 0; -} -#endif - -int -evutil_snprintf(char *buf, size_t buflen, const char *format, ...) -{ - int r; - va_list ap; - va_start(ap, format); - r = evutil_vsnprintf(buf, buflen, format, ap); - va_end(ap); - return r; -} - -int -evutil_vsnprintf(char *buf, size_t buflen, const char *format, va_list ap) -{ -#ifdef _MSC_VER - int r = _vsnprintf(buf, buflen, format, ap); - buf[buflen-1] = '\0'; - if (r >= 0) - return r; - else - return _vscprintf(format, ap); -#else - int r = vsnprintf(buf, buflen, format, ap); - buf[buflen-1] = '\0'; - return r; -#endif -} diff -Nru mysql-5.7-5.7.25/libevent/evutil.h mysql-5.7-5.7.26/libevent/evutil.h --- mysql-5.7-5.7.25/libevent/evutil.h 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/evutil.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,193 +0,0 @@ -/* - * Copyright (c) 2007 Niels Provos - * All rights reserved. - * - * 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. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. - */ -#ifndef _EVUTIL_H_ -#define _EVUTIL_H_ - -/** @file evutil.h - - Common convenience functions for cross-platform portability and - related socket manipulations. - - */ - -#ifdef __cplusplus -extern "C" { -#endif - -#include -#ifdef HAVE_SYS_TIME_H -#include -#endif -#ifdef HAVE_STDINT_H -#include -#elif defined(HAVE_INTTYPES_H) -#include -#endif -#ifdef HAVE_SYS_TYPES_H -#include -#endif -#include - -#ifdef HAVE_UINT64_T -#define ev_uint64_t uint64_t -#define ev_int64_t int64_t -#elif defined(WIN32) -#define ev_uint64_t unsigned __int64 -#define ev_int64_t signed __int64 -#elif SIZEOF_LONG_LONG == 8 -#define ev_uint64_t unsigned long long -#define ev_int64_t long long -#elif SIZEOF_LONG == 8 -#define ev_uint64_t unsigned long -#define ev_int64_t long -#else -#error "No way to define ev_uint64_t" -#endif - -#ifdef HAVE_UINT32_T -#define ev_uint32_t uint32_t -#elif defined(WIN32) -#define ev_uint32_t unsigned int -#elif SIZEOF_LONG == 4 -#define ev_uint32_t unsigned long -#elif SIZEOF_INT == 4 -#define ev_uint32_t unsigned int -#else -#error "No way to define ev_uint32_t" -#endif - -#ifdef HAVE_UINT16_T -#define ev_uint16_t uint16_t -#elif defined(WIN32) -#define ev_uint16_t unsigned short -#elif SIZEOF_INT == 2 -#define ev_uint16_t unsigned int -#elif SIZEOF_SHORT == 2 -#define ev_uint16_t unsigned short -#else -#error "No way to define ev_uint16_t" -#endif - -#ifdef HAVE_UINT8_T -#define ev_uint8_t uint8_t -#else -#define ev_uint8_t unsigned char -#endif - -#if !defined(__cplusplus) && defined(_MSC_VER) -#define inline __inline -#endif - -#if defined(_MSC_VER) -#define __func__ __FUNCTION__ -#endif - -int evutil_socketpair(int d, int type, int protocol, int sv[2]); -int evutil_make_socket_nonblocking(int sock); -#ifdef WIN32 -#define EVUTIL_CLOSESOCKET(s) closesocket(s) -#else -#define EVUTIL_CLOSESOCKET(s) close(s) -#endif - -#ifdef WIN32 -#define EVUTIL_SOCKET_ERROR() WSAGetLastError() -#define EVUTIL_SET_SOCKET_ERROR(errcode) \ - do { WSASetLastError(errcode); } while (0) -#else -#define EVUTIL_SOCKET_ERROR() (errno) -#define EVUTIL_SET_SOCKET_ERROR(errcode) \ - do { errno = (errcode); } while (0) -#endif - -/* - * Manipulation functions for struct timeval - */ -#ifdef HAVE_TIMERADD -#define evutil_timeradd(tvp, uvp, vvp) timeradd((tvp), (uvp), (vvp)) -#define evutil_timersub(tvp, uvp, vvp) timersub((tvp), (uvp), (vvp)) -#else -#define evutil_timeradd(tvp, uvp, vvp) \ - do { \ - (vvp)->tv_sec = (tvp)->tv_sec + (uvp)->tv_sec; \ - (vvp)->tv_usec = (tvp)->tv_usec + (uvp)->tv_usec; \ - if ((vvp)->tv_usec >= 1000000) { \ - (vvp)->tv_sec++; \ - (vvp)->tv_usec -= 1000000; \ - } \ - } while (0) -#define evutil_timersub(tvp, uvp, vvp) \ - do { \ - (vvp)->tv_sec = (tvp)->tv_sec - (uvp)->tv_sec; \ - (vvp)->tv_usec = (tvp)->tv_usec - (uvp)->tv_usec; \ - if ((vvp)->tv_usec < 0) { \ - (vvp)->tv_sec--; \ - (vvp)->tv_usec += 1000000; \ - } \ - } while (0) -#endif /* !HAVE_HAVE_TIMERADD */ - -#ifdef HAVE_TIMERCLEAR -#define evutil_timerclear(tvp) timerclear(tvp) -#else -#define evutil_timerclear(tvp) (tvp)->tv_sec = (tvp)->tv_usec = 0 -#endif - -#define evutil_timercmp(tvp, uvp, cmp) \ - (((tvp)->tv_sec == (uvp)->tv_sec) ? \ - ((tvp)->tv_usec cmp (uvp)->tv_usec) : \ - ((tvp)->tv_sec cmp (uvp)->tv_sec)) - -#ifdef HAVE_TIMERISSET -#define evutil_timerisset(tvp) timerisset(tvp) -#else -#define evutil_timerisset(tvp) ((tvp)->tv_sec || (tvp)->tv_usec) -#endif - - -/* big-int related functions */ -ev_int64_t evutil_strtoll(const char *s, char **endptr, int base); - - -#ifdef HAVE_GETTIMEOFDAY -#define evutil_gettimeofday(tv, tz) gettimeofday((tv), (tz)) -#else -int evutil_gettimeofday(struct timeval *tv, struct timezone *tz); -#endif - -int evutil_snprintf(char *buf, size_t buflen, const char *format, ...) -#ifdef __GNUC__ - __attribute__((format(printf, 3, 4))) -#endif - ; -int evutil_vsnprintf(char *buf, size_t buflen, const char *format, va_list ap); - -#ifdef __cplusplus -} -#endif - -#endif /* _EVUTIL_H_ */ diff -Nru mysql-5.7-5.7.25/libevent/http.c mysql-5.7-5.7.26/libevent/http.c --- mysql-5.7-5.7.25/libevent/http.c 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/http.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,2842 +0,0 @@ -/* - * Copyright (c) 2002-2006 Niels Provos - * All rights reserved. - * This file was modified by Oracle on 28-08-2015. - * Modifications copyright (c) 2015, Oracle and/or its affiliates. - * All rights reserved. - * - * 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. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. - */ - -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -#ifdef HAVE_SYS_PARAM_H -#include -#endif -#ifdef HAVE_SYS_TYPES_H -#include -#endif - -#ifdef HAVE_SYS_TIME_H -#include -#endif -#ifdef HAVE_SYS_IOCCOM_H -#include -#endif - -#ifndef WIN32 -#include -#include -#include -#include -#endif - -#include - -#ifndef HAVE_TAILQFOREACH -#include -#endif - -#ifndef WIN32 -#include -#include -#endif - -#ifdef WIN32 -#include -#endif - -#include -#include -#include -#include -#include -#include -#ifndef WIN32 -#include -#endif -#include -#include -#ifdef HAVE_UNISTD_H -#include -#endif -#ifdef HAVE_FCNTL_H -#include -#endif - -#undef timeout_pending -#undef timeout_initialized - -#include "strlcpy-internal.h" -#include "event.h" -#include "evhttp.h" -#include "evutil.h" -#include "log.h" -#include "http-internal.h" - -#ifdef WIN32 -#define strcasecmp _stricmp -#define strncasecmp _strnicmp -#define strdup _strdup -#endif - -#ifndef HAVE_GETNAMEINFO -#define NI_MAXSERV 32 -#define NI_MAXHOST 1025 - -#define NI_NUMERICHOST 1 -#define NI_NUMERICSERV 2 -#define INNODB_CHANGED - -static int -fake_getnameinfo(const struct sockaddr *sa, size_t salen, char *host, - size_t hostlen, char *serv, size_t servlen, int flags) -{ - struct sockaddr_in *sin = (struct sockaddr_in *)sa; - - if (serv != NULL) { - char tmpserv[16]; - evutil_snprintf(tmpserv, sizeof(tmpserv), - "%d", ntohs(sin->sin_port)); - if (strlcpy(serv, tmpserv, servlen) >= servlen) - return (-1); - } - - if (host != NULL) { - if (flags & NI_NUMERICHOST) { - if (strlcpy(host, inet_ntoa(sin->sin_addr), - hostlen) >= hostlen) - return (-1); - else - return (0); - } else { - struct hostent *hp; - hp = gethostbyaddr((char *)&sin->sin_addr, - sizeof(struct in_addr), AF_INET); - if (hp == NULL) - return (-2); - - if (strlcpy(host, hp->h_name, hostlen) >= hostlen) - return (-1); - else - return (0); - } - } - return (0); -} - -#endif - -#ifndef HAVE_GETADDRINFO -struct addrinfo { - int ai_family; - int ai_socktype; - int ai_protocol; - size_t ai_addrlen; - struct sockaddr *ai_addr; - struct addrinfo *ai_next; -}; -static int -fake_getaddrinfo(const char *hostname, struct addrinfo *ai) -{ - struct hostent *he = NULL; - struct sockaddr_in *sa; - if (hostname) { - he = gethostbyname(hostname); - if (!he) - return (-1); - } - ai->ai_family = he ? he->h_addrtype : AF_INET; - ai->ai_socktype = SOCK_STREAM; - ai->ai_protocol = 0; - ai->ai_addrlen = sizeof(struct sockaddr_in); - if (NULL == (ai->ai_addr = malloc(ai->ai_addrlen))) - return (-1); - sa = (struct sockaddr_in*)ai->ai_addr; - memset(sa, 0, ai->ai_addrlen); - if (he) { - sa->sin_family = he->h_addrtype; - memcpy(&sa->sin_addr, he->h_addr_list[0], he->h_length); - } else { - sa->sin_family = AF_INET; - sa->sin_addr.s_addr = INADDR_ANY; - } - ai->ai_next = NULL; - return (0); -} -static void -fake_freeaddrinfo(struct addrinfo *ai) -{ - free(ai->ai_addr); -} -#endif - -#ifndef MIN -#define MIN(a,b) (((a)<(b))?(a):(b)) -#endif - -/* wrapper for setting the base from the http server */ -#define EVHTTP_BASE_SET(x, y) do { \ - if ((x)->base != NULL) event_base_set((x)->base, y); \ -} while (0) - -extern int debug; - -static int socket_connect(int fd, const char *address, unsigned short port); -static int bind_socket_ai(struct addrinfo *, int reuse); -static int bind_socket(const char *, u_short, int reuse); -static void name_from_addr(struct sockaddr *, socklen_t, char **, char **); -static int evhttp_associate_new_request_with_connection( - struct evhttp_connection *evcon); -static void evhttp_connection_start_detectclose( - struct evhttp_connection *evcon); -static void evhttp_connection_stop_detectclose( - struct evhttp_connection *evcon); -static void evhttp_request_dispatch(struct evhttp_connection* evcon); -static void evhttp_read_firstline(struct evhttp_connection *evcon, - struct evhttp_request *req); -static void evhttp_read_header(struct evhttp_connection *evcon, - struct evhttp_request *req); -static int evhttp_add_header_internal(struct evkeyvalq *headers, - const char *key, const char *value); -static int evhttp_decode_uri_internal(const char *uri, size_t length, - char *ret, int always_decode_plus); - -void evhttp_read(int, short, void *); -void evhttp_write(int, short, void *); - -#ifndef HAVE_STRSEP -/* strsep replacement for platforms that lack it. Only works if - * del is one character long. */ -static char * -strsep(char **s, const char *del) -{ - char *d, *tok; - assert(strlen(del) == 1); - if (!s || !*s) - return NULL; - tok = *s; - d = strstr(tok, del); - if (d) { - *d = '\0'; - *s = d + 1; - } else - *s = NULL; - return tok; -} -#endif - -static const char * -html_replace(char ch, char *buf) -{ - switch (ch) { - case '<': - return "<"; - case '>': - return ">"; - case '"': - return """; - case '\'': - return "'"; - case '&': - return "&"; - default: - break; - } - - /* Echo the character back */ - buf[0] = ch; - buf[1] = '\0'; - - return buf; -} - -/* - * Replaces <, >, ", ' and & with <, >, ", - * ' and & correspondingly. - * - * The returned string needs to be freed by the caller. - */ - -char * -evhttp_htmlescape(const char *html) -{ - int i, new_size = 0, old_size = strlen(html); - char *escaped_html, *p; - char scratch_space[2]; - - for (i = 0; i < old_size; ++i) - new_size += strlen(html_replace(html[i], scratch_space)); - - p = escaped_html = malloc(new_size + 1); - if (escaped_html == NULL) - event_err(1, "%s: malloc(%d)", __func__, new_size + 1); - for (i = 0; i < old_size; ++i) { - const char *replaced = html_replace(html[i], scratch_space); - /* this is length checked */ - strcpy(p, replaced); - p += strlen(replaced); - } - - *p = '\0'; - - return (escaped_html); -} - -static const char * -evhttp_method(enum evhttp_cmd_type type) -{ - const char *method; - - switch (type) { - case EVHTTP_REQ_GET: - method = "GET"; - break; - case EVHTTP_REQ_POST: - method = "POST"; - break; - case EVHTTP_REQ_HEAD: - method = "HEAD"; - break; - default: - method = NULL; - break; - } - - return (method); -} - -static void -evhttp_add_event(struct event *ev, int timeout, int default_timeout) -{ - if (timeout != 0) { - struct timeval tv; - - evutil_timerclear(&tv); - tv.tv_sec = timeout != -1 ? timeout : default_timeout; - event_add(ev, &tv); - } else { - event_add(ev, NULL); - } -} - -void -evhttp_write_buffer(struct evhttp_connection *evcon, - void (*cb)(struct evhttp_connection *, void *), void *arg) -{ - event_debug(("%s: preparing to write buffer\n", __func__)); - - /* Set call back */ - evcon->cb = cb; - evcon->cb_arg = arg; - - /* check if the event is already pending */ - if (event_pending(&evcon->ev, EV_WRITE|EV_TIMEOUT, NULL)) - event_del(&evcon->ev); - - event_set(&evcon->ev, evcon->fd, EV_WRITE, evhttp_write, evcon); - EVHTTP_BASE_SET(evcon, &evcon->ev); - evhttp_add_event(&evcon->ev, evcon->timeout, HTTP_WRITE_TIMEOUT); -} - -static int -evhttp_connected(struct evhttp_connection *evcon) -{ - switch (evcon->state) { - case EVCON_DISCONNECTED: - case EVCON_CONNECTING: - return (0); - case EVCON_IDLE: - case EVCON_READING_FIRSTLINE: - case EVCON_READING_HEADERS: - case EVCON_READING_BODY: - case EVCON_READING_TRAILER: - case EVCON_WRITING: - default: - return (1); - } -} - -/* - * Create the headers needed for an HTTP request - */ -static void -evhttp_make_header_request(struct evhttp_connection *evcon, - struct evhttp_request *req) -{ - const char *method; - - evhttp_remove_header(req->output_headers, "Proxy-Connection"); - - /* Generate request line */ - method = evhttp_method(req->type); - evbuffer_add_printf(evcon->output_buffer, "%s %s HTTP/%d.%d\r\n", - method, req->uri, req->major, req->minor); - - /* Add the content length on a post request if missing */ - if (req->type == EVHTTP_REQ_POST && - evhttp_find_header(req->output_headers, "Content-Length") == NULL){ - char size[12]; - evutil_snprintf(size, sizeof(size), "%ld", - (long)EVBUFFER_LENGTH(req->output_buffer)); - evhttp_add_header(req->output_headers, "Content-Length", size); - } -} - -static int -evhttp_is_connection_close(int flags, struct evkeyvalq* headers) -{ - if (flags & EVHTTP_PROXY_REQUEST) { - /* proxy connection */ - const char *connection = evhttp_find_header(headers, "Proxy-Connection"); - return (connection == NULL || strcasecmp(connection, "keep-alive") != 0); - } else { - const char *connection = evhttp_find_header(headers, "Connection"); - return (connection != NULL && strcasecmp(connection, "close") == 0); - } -} - -static int -evhttp_is_connection_keepalive(struct evkeyvalq* headers) -{ - const char *connection = evhttp_find_header(headers, "Connection"); - return (connection != NULL - && strncasecmp(connection, "keep-alive", 10) == 0); -} - -static void -evhttp_maybe_add_date_header(struct evkeyvalq *headers) -{ - if (evhttp_find_header(headers, "Date") == NULL) { - char date[50]; -#ifndef WIN32 - struct tm cur; -#endif - struct tm *cur_p; - time_t t = time(NULL); -#ifdef WIN32 - cur_p = gmtime(&t); -#else - gmtime_r(&t, &cur); - cur_p = &cur; -#endif - if (strftime(date, sizeof(date), - "%a, %d %b %Y %H:%M:%S GMT", cur_p) != 0) { - evhttp_add_header(headers, "Date", date); - } - } -} - -static void -evhttp_maybe_add_content_length_header(struct evkeyvalq *headers, - long content_length) -{ - if (evhttp_find_header(headers, "Transfer-Encoding") == NULL && - evhttp_find_header(headers, "Content-Length") == NULL) { - char len[12]; - evutil_snprintf(len, sizeof(len), "%ld", content_length); - evhttp_add_header(headers, "Content-Length", len); - } -} - -/* - * Create the headers needed for an HTTP reply - */ - -static void -evhttp_make_header_response(struct evhttp_connection *evcon, - struct evhttp_request *req) -{ - int is_keepalive = evhttp_is_connection_keepalive(req->input_headers); - evbuffer_add_printf(evcon->output_buffer, "HTTP/%d.%d %d %s\r\n", - req->major, req->minor, req->response_code, - req->response_code_line); - - if (req->major == 1) { - if (req->minor == 1) - evhttp_maybe_add_date_header(req->output_headers); - - /* - * if the protocol is 1.0; and the connection was keep-alive - * we need to add a keep-alive header, too. - */ - if (req->minor == 0 && is_keepalive) - evhttp_add_header(req->output_headers, - "Connection", "keep-alive"); - - if (req->minor == 1 || is_keepalive) { - /* - * we need to add the content length if the - * user did not give it, this is required for - * persistent connections to work. - */ - evhttp_maybe_add_content_length_header( - req->output_headers, - (long)EVBUFFER_LENGTH(req->output_buffer)); - } - } - - /* Potentially add headers for unidentified content. */ - if (EVBUFFER_LENGTH(req->output_buffer)) { - if (evhttp_find_header(req->output_headers, - "Content-Type") == NULL) { - evhttp_add_header(req->output_headers, - "Content-Type", "text/html; charset=ISO-8859-1"); - } - } - - /* if the request asked for a close, we send a close, too */ - if (evhttp_is_connection_close(req->flags, req->input_headers)) { - evhttp_remove_header(req->output_headers, "Connection"); - if (!(req->flags & EVHTTP_PROXY_REQUEST)) - evhttp_add_header(req->output_headers, "Connection", "close"); - evhttp_remove_header(req->output_headers, "Proxy-Connection"); - } -} - -void -evhttp_make_header(struct evhttp_connection *evcon, struct evhttp_request *req) -{ - struct evkeyval *header; - - /* - * Depending if this is a HTTP request or response, we might need to - * add some new headers or remove existing headers. - */ - if (req->kind == EVHTTP_REQUEST) { - evhttp_make_header_request(evcon, req); - } else { - evhttp_make_header_response(evcon, req); - } - - TAILQ_FOREACH(header, req->output_headers, next) { - evbuffer_add_printf(evcon->output_buffer, "%s: %s\r\n", - header->key, header->value); - } - evbuffer_add(evcon->output_buffer, "\r\n", 2); - - if (EVBUFFER_LENGTH(req->output_buffer) > 0) { - /* - * For a request, we add the POST data, for a reply, this - * is the regular data. - */ - evbuffer_add_buffer(evcon->output_buffer, req->output_buffer); - } -} - -/* Separated host, port and file from URI */ - -int -evhttp_hostportfile(char *url, char **phost, u_short *pport, char **pfile) -{ - /* XXX not threadsafe. */ - static char host[1024]; - static char file[1024]; - char *p; - const char *p2; - int len; - u_short port; - - len = strlen(HTTP_PREFIX); - if (strncasecmp(url, HTTP_PREFIX, len)) - return (-1); - - url += len; - - /* We might overrun */ - if (strlcpy(host, url, sizeof (host)) >= sizeof(host)) - return (-1); - - p = strchr(host, '/'); - if (p != NULL) { - *p = '\0'; - p2 = p + 1; - } else - p2 = NULL; - - if (pfile != NULL) { - /* Generate request file */ - if (p2 == NULL) - p2 = ""; - evutil_snprintf(file, sizeof(file), "/%s", p2); - } - - p = strchr(host, ':'); - if (p != NULL) { - *p = '\0'; - port = atoi(p + 1); - - if (port == 0) - return (-1); - } else - port = HTTP_DEFAULTPORT; - - if (phost != NULL) - *phost = host; - if (pport != NULL) - *pport = port; - if (pfile != NULL) - *pfile = file; - - return (0); -} - -static int -evhttp_connection_incoming_fail(struct evhttp_request *req, - enum evhttp_connection_error error) -{ - switch (error) { - case EVCON_HTTP_TIMEOUT: - case EVCON_HTTP_EOF: - /* - * these are cases in which we probably should just - * close the connection and not send a reply. this - * case may happen when a browser keeps a persistent - * connection open and we timeout on the read. - */ - return (-1); - case EVCON_HTTP_INVALID_HEADER: - default: /* xxx: probably should just error on default */ - /* the callback looks at the uri to determine errors */ - if (req->uri) { - free(req->uri); - req->uri = NULL; - } - - /* - * the callback needs to send a reply, once the reply has - * been send, the connection should get freed. - */ - (*req->cb)(req, req->cb_arg); - } - - return (0); -} - -void -evhttp_connection_fail(struct evhttp_connection *evcon, - enum evhttp_connection_error error) -{ - struct evhttp_request* req = TAILQ_FIRST(&evcon->requests); - void (*cb)(struct evhttp_request *, void *); - void *cb_arg; - assert(req != NULL); - - if (evcon->flags & EVHTTP_CON_INCOMING) { - /* - * for incoming requests, there are two different - * failure cases. it's either a network level error - * or an http layer error. for problems on the network - * layer like timeouts we just drop the connections. - * For HTTP problems, we might have to send back a - * reply before the connection can be freed. - */ - if (evhttp_connection_incoming_fail(req, error) == -1) - evhttp_connection_free(evcon); - return; - } - - /* save the callback for later; the cb might free our object */ - cb = req->cb; - cb_arg = req->cb_arg; - - TAILQ_REMOVE(&evcon->requests, req, next); - evhttp_request_free(req); - - /* xxx: maybe we should fail all requests??? */ - - /* reset the connection */ - evhttp_connection_reset(evcon); - - /* We are trying the next request that was queued on us */ - if (TAILQ_FIRST(&evcon->requests) != NULL) - evhttp_connection_connect(evcon); - - /* inform the user */ - if (cb != NULL) - (*cb)(NULL, cb_arg); -} - -void -evhttp_write(int fd, short what, void *arg) -{ - struct evhttp_connection *evcon = arg; - int n; - - if (what == EV_TIMEOUT) { - evhttp_connection_fail(evcon, EVCON_HTTP_TIMEOUT); - return; - } - - n = evbuffer_write(evcon->output_buffer, fd); - if (n == -1) { - event_debug(("%s: evbuffer_write", __func__)); - evhttp_connection_fail(evcon, EVCON_HTTP_EOF); - return; - } - - if (n == 0) { - event_debug(("%s: write nothing", __func__)); - evhttp_connection_fail(evcon, EVCON_HTTP_EOF); - return; - } - - if (EVBUFFER_LENGTH(evcon->output_buffer) != 0) { - evhttp_add_event(&evcon->ev, - evcon->timeout, HTTP_WRITE_TIMEOUT); - return; - } - - /* Activate our call back */ - if (evcon->cb != NULL) - (*evcon->cb)(evcon, evcon->cb_arg); -} - -/** - * Advance the connection state. - * - If this is an outgoing connection, we've just processed the response; - * idle or close the connection. - * - If this is an incoming connection, we've just processed the request; - * respond. - */ -static void -evhttp_connection_done(struct evhttp_connection *evcon) -{ - struct evhttp_request *req = TAILQ_FIRST(&evcon->requests); - int con_outgoing = evcon->flags & EVHTTP_CON_OUTGOING; - - if (con_outgoing) { - /* idle or close the connection */ - int need_close; - TAILQ_REMOVE(&evcon->requests, req, next); - req->evcon = NULL; - - evcon->state = EVCON_IDLE; - - need_close = - evhttp_is_connection_close(req->flags, req->input_headers)|| - evhttp_is_connection_close(req->flags, req->output_headers); - - /* check if we got asked to close the connection */ - if (need_close) - evhttp_connection_reset(evcon); - - if (TAILQ_FIRST(&evcon->requests) != NULL) { - /* - * We have more requests; reset the connection - * and deal with the next request. - */ - if (!evhttp_connected(evcon)) - evhttp_connection_connect(evcon); - else - evhttp_request_dispatch(evcon); - } else if (!need_close) { - /* - * The connection is going to be persistent, but we - * need to detect if the other side closes it. - */ - evhttp_connection_start_detectclose(evcon); - } - } else { - /* - * incoming connection - we need to leave the request on the - * connection so that we can reply to it. - */ - evcon->state = EVCON_WRITING; - } - - /* notify the user of the request */ - (*req->cb)(req, req->cb_arg); - - /* if this was an outgoing request, we own and it's done. so free it */ - if (con_outgoing) { - evhttp_request_free(req); - } -} - -/* - * Handles reading from a chunked request. - * return ALL_DATA_READ: - * all data has been read - * return MORE_DATA_EXPECTED: - * more data is expected - * return DATA_CORRUPTED: - * data is corrupted - * return REQUEST_CANCLED: - * request was canceled by the user calling evhttp_cancel_request - */ - -static enum message_read_status -evhttp_handle_chunked_read(struct evhttp_request *req, struct evbuffer *buf) -{ - int len; - - while ((len = EVBUFFER_LENGTH(buf)) > 0) { - if (req->ntoread < 0) { - /* Read chunk size */ - ev_int64_t ntoread; - char *p = evbuffer_readline(buf); - char *endp; - int error; - if (p == NULL) - break; - /* the last chunk is on a new line? */ - if (strlen(p) == 0) { - free(p); - continue; - } - ntoread = evutil_strtoll(p, &endp, 16); - error = (*p == '\0' || - (*endp != '\0' && *endp != ' ') || - ntoread < 0); - free(p); - if (error) { - /* could not get chunk size */ - return (DATA_CORRUPTED); - } - req->ntoread = ntoread; - if (req->ntoread == 0) { - /* Last chunk */ - return (ALL_DATA_READ); - } - continue; - } - - /* don't have enough to complete a chunk; wait for more */ - if (len < req->ntoread) - return (MORE_DATA_EXPECTED); - - /* Completed chunk */ - evbuffer_add(req->input_buffer, - EVBUFFER_DATA(buf), (size_t)req->ntoread); - evbuffer_drain(buf, (size_t)req->ntoread); - req->ntoread = -1; - if (req->chunk_cb != NULL) { - (*req->chunk_cb)(req, req->cb_arg); - evbuffer_drain(req->input_buffer, - EVBUFFER_LENGTH(req->input_buffer)); - } - } - - return (MORE_DATA_EXPECTED); -} - -static void -evhttp_read_trailer(struct evhttp_connection *evcon, struct evhttp_request *req) -{ - struct evbuffer *buf = evcon->input_buffer; - - switch (evhttp_parse_headers(req, buf)) { - case DATA_CORRUPTED: - evhttp_connection_fail(evcon, EVCON_HTTP_INVALID_HEADER); - break; - case ALL_DATA_READ: - event_del(&evcon->ev); - evhttp_connection_done(evcon); - break; - case MORE_DATA_EXPECTED: - default: - evhttp_add_event(&evcon->ev, evcon->timeout, - HTTP_READ_TIMEOUT); - break; - } -} - -static void -evhttp_read_body(struct evhttp_connection *evcon, struct evhttp_request *req) -{ - struct evbuffer *buf = evcon->input_buffer; - - if (req->chunked) { - switch (evhttp_handle_chunked_read(req, buf)) { - case ALL_DATA_READ: - /* finished last chunk */ - evcon->state = EVCON_READING_TRAILER; - evhttp_read_trailer(evcon, req); - return; - case DATA_CORRUPTED: - /* corrupted data */ - evhttp_connection_fail(evcon, - EVCON_HTTP_INVALID_HEADER); - return; - case REQUEST_CANCELED: - /* request canceled */ - evhttp_request_free(req); - return; - case MORE_DATA_EXPECTED: - default: - break; - } - } else if (req->ntoread < 0) { - /* Read until connection close. */ - evbuffer_add_buffer(req->input_buffer, buf); - } else if (EVBUFFER_LENGTH(buf) >= req->ntoread) { - /* Completed content length */ - evbuffer_add(req->input_buffer, EVBUFFER_DATA(buf), - (size_t)req->ntoread); - evbuffer_drain(buf, (size_t)req->ntoread); - req->ntoread = 0; - evhttp_connection_done(evcon); - return; - } - /* Read more! */ - event_set(&evcon->ev, evcon->fd, EV_READ, evhttp_read, evcon); - EVHTTP_BASE_SET(evcon, &evcon->ev); - evhttp_add_event(&evcon->ev, evcon->timeout, HTTP_READ_TIMEOUT); -} - -/* - * Reads data into a buffer structure until no more data - * can be read on the file descriptor or we have read all - * the data that we wanted to read. - * Execute callback when done. - */ - -void -evhttp_read(int fd, short what, void *arg) -{ - struct evhttp_connection *evcon = arg; - struct evhttp_request *req = TAILQ_FIRST(&evcon->requests); - struct evbuffer *buf = evcon->input_buffer; - int n, len; - - if (what == EV_TIMEOUT) { - evhttp_connection_fail(evcon, EVCON_HTTP_TIMEOUT); - return; - } - n = evbuffer_read(buf, fd, -1); - len = EVBUFFER_LENGTH(buf); - event_debug(("%s: got %d on %d\n", __func__, n, fd)); - - if (n == -1) { - if (errno != EINTR && errno != EAGAIN) { - event_debug(("%s: evbuffer_read", __func__)); - evhttp_connection_fail(evcon, EVCON_HTTP_EOF); - } else { - evhttp_add_event(&evcon->ev, evcon->timeout, - HTTP_READ_TIMEOUT); - } - return; - } else if (n == 0) { - /* Connection closed */ - evhttp_connection_done(evcon); - return; - } - - switch (evcon->state) { - case EVCON_READING_FIRSTLINE: - evhttp_read_firstline(evcon, req); - break; - case EVCON_READING_HEADERS: - evhttp_read_header(evcon, req); - break; - case EVCON_READING_BODY: - evhttp_read_body(evcon, req); - break; - case EVCON_READING_TRAILER: - evhttp_read_trailer(evcon, req); - break; - case EVCON_DISCONNECTED: - case EVCON_CONNECTING: - case EVCON_IDLE: - case EVCON_WRITING: - default: - event_errx(1, "%s: illegal connection state %d", - __func__, evcon->state); - } -} - -static void -evhttp_write_connectioncb(struct evhttp_connection *evcon, void *arg) -{ - /* This is after writing the request to the server */ - struct evhttp_request *req = TAILQ_FIRST(&evcon->requests); - assert(req != NULL); - - assert(evcon->state == EVCON_WRITING); - - /* We are done writing our header and are now expecting the response */ - req->kind = EVHTTP_RESPONSE; - - evhttp_start_read(evcon); -} - -/* - * Clean up a connection object - */ - -void -evhttp_connection_free(struct evhttp_connection *evcon) -{ - struct evhttp_request *req; - - /* notify interested parties that this connection is going down */ - if (evcon->fd != -1) { - if (evhttp_connected(evcon) && evcon->closecb != NULL) - (*evcon->closecb)(evcon, evcon->closecb_arg); - } - - /* remove all requests that might be queued on this connection */ - while ((req = TAILQ_FIRST(&evcon->requests)) != NULL) { - TAILQ_REMOVE(&evcon->requests, req, next); - evhttp_request_free(req); - } - - if (evcon->http_server != NULL) { - struct evhttp *http = evcon->http_server; - TAILQ_REMOVE(&http->connections, evcon, next); - } - - if (event_initialized(&evcon->close_ev)) - event_del(&evcon->close_ev); - - if (event_initialized(&evcon->ev)) - event_del(&evcon->ev); - - if (evcon->fd != -1) - EVUTIL_CLOSESOCKET(evcon->fd); - - if (evcon->bind_address != NULL) - free(evcon->bind_address); - - if (evcon->address != NULL) - free(evcon->address); - - if (evcon->input_buffer != NULL) - evbuffer_free(evcon->input_buffer); - - if (evcon->output_buffer != NULL) - evbuffer_free(evcon->output_buffer); - - free(evcon); -} - -void -evhttp_connection_set_local_address(struct evhttp_connection *evcon, - const char *address) -{ - assert(evcon->state == EVCON_DISCONNECTED); - if (evcon->bind_address) - free(evcon->bind_address); - if ((evcon->bind_address = strdup(address)) == NULL) - event_err(1, "%s: strdup", __func__); -} - -void -evhttp_connection_set_local_port(struct evhttp_connection *evcon, - unsigned short port) -{ - assert(evcon->state == EVCON_DISCONNECTED); - evcon->bind_port = port; -} - -static void -evhttp_request_dispatch(struct evhttp_connection* evcon) -{ - struct evhttp_request *req = TAILQ_FIRST(&evcon->requests); - - /* this should not usually happy but it's possible */ - if (req == NULL) - return; - - /* delete possible close detection events */ - evhttp_connection_stop_detectclose(evcon); - - /* we assume that the connection is connected already */ - assert(evcon->state == EVCON_IDLE); - - evcon->state = EVCON_WRITING; - - /* Create the header from the store arguments */ - evhttp_make_header(evcon, req); - - evhttp_write_buffer(evcon, evhttp_write_connectioncb, NULL); -} - -/* Reset our connection state */ -void -evhttp_connection_reset(struct evhttp_connection *evcon) -{ - if (event_initialized(&evcon->ev)) - event_del(&evcon->ev); - - if (evcon->fd != -1) { - /* inform interested parties about connection close */ - if (evhttp_connected(evcon) && evcon->closecb != NULL) - (*evcon->closecb)(evcon, evcon->closecb_arg); - - EVUTIL_CLOSESOCKET(evcon->fd); - evcon->fd = -1; - } - evcon->state = EVCON_DISCONNECTED; - - evbuffer_drain(evcon->input_buffer, - EVBUFFER_LENGTH(evcon->input_buffer)); - evbuffer_drain(evcon->output_buffer, - EVBUFFER_LENGTH(evcon->output_buffer)); -} - -static void -evhttp_detect_close_cb(int fd, short what, void *arg) -{ - struct evhttp_connection *evcon = arg; - evhttp_connection_reset(evcon); -} - -static void -evhttp_connection_start_detectclose(struct evhttp_connection *evcon) -{ - evcon->flags |= EVHTTP_CON_CLOSEDETECT; - - if (event_initialized(&evcon->close_ev)) - event_del(&evcon->close_ev); - event_set(&evcon->close_ev, evcon->fd, EV_READ, - evhttp_detect_close_cb, evcon); - EVHTTP_BASE_SET(evcon, &evcon->close_ev); - event_add(&evcon->close_ev, NULL); -} - -static void -evhttp_connection_stop_detectclose(struct evhttp_connection *evcon) -{ - evcon->flags &= ~EVHTTP_CON_CLOSEDETECT; - event_del(&evcon->close_ev); -} - -static void -evhttp_connection_retry(int fd, short what, void *arg) -{ - struct evhttp_connection *evcon = arg; - - evcon->state = EVCON_DISCONNECTED; - evhttp_connection_connect(evcon); -} - -/* - * Call back for asynchronous connection attempt. - */ - -static void -evhttp_connectioncb(int fd, short what, void *arg) -{ - struct evhttp_connection *evcon = arg; - int error; - socklen_t errsz = sizeof(error); - - if (what == EV_TIMEOUT) { - event_debug(("%s: connection timeout for \"%s:%d\" on %d", - __func__, evcon->address, evcon->port, evcon->fd)); - goto cleanup; - } - - /* Check if the connection completed */ - if (getsockopt(evcon->fd, SOL_SOCKET, SO_ERROR, (void*)&error, - &errsz) == -1) { - event_debug(("%s: getsockopt for \"%s:%d\" on %d", - __func__, evcon->address, evcon->port, evcon->fd)); - goto cleanup; - } - - if (error) { - event_debug(("%s: connect failed for \"%s:%d\" on %d: %s", - __func__, evcon->address, evcon->port, evcon->fd, - strerror(error))); - goto cleanup; - } - - /* We are connected to the server now */ - event_debug(("%s: connected to \"%s:%d\" on %d\n", - __func__, evcon->address, evcon->port, evcon->fd)); - - /* Reset the retry count as we were successful in connecting */ - evcon->retry_cnt = 0; - evcon->state = EVCON_IDLE; - - /* try to start requests that have queued up on this connection */ - evhttp_request_dispatch(evcon); - return; - - cleanup: - if (evcon->retry_max < 0 || evcon->retry_cnt < evcon->retry_max) { - evtimer_set(&evcon->ev, evhttp_connection_retry, evcon); - EVHTTP_BASE_SET(evcon, &evcon->ev); - evhttp_add_event(&evcon->ev, MIN(3600, 2 << evcon->retry_cnt), - HTTP_CONNECT_TIMEOUT); - evcon->retry_cnt++; - return; - } - evhttp_connection_reset(evcon); - - /* for now, we just signal all requests by executing their callbacks */ - while (TAILQ_FIRST(&evcon->requests) != NULL) { - struct evhttp_request *request = TAILQ_FIRST(&evcon->requests); - TAILQ_REMOVE(&evcon->requests, request, next); - request->evcon = NULL; - - /* we might want to set an error here */ - request->cb(request, request->cb_arg); - evhttp_request_free(request); - } -} - -/* - * Check if we got a valid response code. - */ - -static int -evhttp_valid_response_code(int code) -{ - if (code == 0) - return (0); - - return (1); -} - -/* Parses the status line of a web server */ - -static int -evhttp_parse_response_line(struct evhttp_request *req, char *line) -{ - char *protocol; - char *number; - char *readable; - - protocol = strsep(&line, " "); - if (line == NULL) - return (-1); - number = strsep(&line, " "); - if (line == NULL) - return (-1); - readable = line; - - if (strcmp(protocol, "HTTP/1.0") == 0) { - req->major = 1; - req->minor = 0; - } else if (strcmp(protocol, "HTTP/1.1") == 0) { - req->major = 1; - req->minor = 1; - } else { - event_debug(("%s: bad protocol \"%s\"", - __func__, protocol)); - return (-1); - } - - req->response_code = atoi(number); - if (!evhttp_valid_response_code(req->response_code)) { - event_debug(("%s: bad response code \"%s\"", - __func__, number)); - return (-1); - } - - if ((req->response_code_line = strdup(readable)) == NULL) - event_err(1, "%s: strdup", __func__); - - return (0); -} - -/* Parse the first line of a HTTP request */ - -static int -evhttp_parse_request_line(struct evhttp_request *req, char *line) -{ - char *method; - char *uri; - char *version; - - /* Parse the request line */ - method = strsep(&line, " "); - if (line == NULL) - return (-1); - uri = strsep(&line, " "); - if (line == NULL) - return (-1); - version = strsep(&line, " "); - if (line != NULL) - return (-1); - - /* First line */ - if (strcmp(method, "GET") == 0) { - req->type = EVHTTP_REQ_GET; - } else if (strcmp(method, "POST") == 0) { - req->type = EVHTTP_REQ_POST; - } else if (strcmp(method, "HEAD") == 0) { - req->type = EVHTTP_REQ_HEAD; - } else { - event_debug(("%s: bad method %s on request %p from %s", - __func__, method, req, req->remote_host)); - return (-1); - } - - if (strcmp(version, "HTTP/1.0") == 0) { - req->major = 1; - req->minor = 0; - } else if (strcmp(version, "HTTP/1.1") == 0) { - req->major = 1; - req->minor = 1; - } else { - event_debug(("%s: bad version %s on request %p from %s", - __func__, version, req, req->remote_host)); - return (-1); - } - - if ((req->uri = strdup(uri)) == NULL) { - event_debug(("%s: evhttp_decode_uri", __func__)); - return (-1); - } - - /* determine if it's a proxy request */ - if (strlen(req->uri) > 0 && req->uri[0] != '/') - req->flags |= EVHTTP_PROXY_REQUEST; - - return (0); -} - -const char * -evhttp_find_header(const struct evkeyvalq *headers, const char *key) -{ - struct evkeyval *header; - - TAILQ_FOREACH(header, headers, next) { - if (strcasecmp(header->key, key) == 0) - return (header->value); - } - - return (NULL); -} - -void -evhttp_clear_headers(struct evkeyvalq *headers) -{ - struct evkeyval *header; - - for (header = TAILQ_FIRST(headers); - header != NULL; - header = TAILQ_FIRST(headers)) { - TAILQ_REMOVE(headers, header, next); - free(header->key); - free(header->value); - free(header); - } -} - -/* - * Returns 0, if the header was successfully removed. - * Returns -1, if the header could not be found. - */ - -int -evhttp_remove_header(struct evkeyvalq *headers, const char *key) -{ - struct evkeyval *header; - - TAILQ_FOREACH(header, headers, next) { - if (strcasecmp(header->key, key) == 0) - break; - } - - if (header == NULL) - return (-1); - - /* Free and remove the header that we found */ - TAILQ_REMOVE(headers, header, next); - free(header->key); - free(header->value); - free(header); - - return (0); -} - -static int -evhttp_header_is_valid_value(const char *value) -{ - const char *p = value; - - while ((p = strpbrk(p, "\r\n")) != NULL) { - /* we really expect only one new line */ - p += strspn(p, "\r\n"); - /* we expect a space or tab for continuation */ - if (*p != ' ' && *p != '\t') - return (0); - } - return (1); -} - -int -evhttp_add_header(struct evkeyvalq *headers, - const char *key, const char *value) -{ - event_debug(("%s: key: %s val: %s\n", __func__, key, value)); - - if (strchr(key, '\r') != NULL || strchr(key, '\n') != NULL) { - /* drop illegal headers */ - event_debug(("%s: dropping illegal header key\n", __func__)); - return (-1); - } - - if (!evhttp_header_is_valid_value(value)) { - event_debug(("%s: dropping illegal header value\n", __func__)); - return (-1); - } - - return (evhttp_add_header_internal(headers, key, value)); -} - -static int -evhttp_add_header_internal(struct evkeyvalq *headers, - const char *key, const char *value) -{ - struct evkeyval *header = calloc(1, sizeof(struct evkeyval)); - if (header == NULL) { - event_warn("%s: calloc", __func__); - return (-1); - } - if ((header->key = strdup(key)) == NULL) { - free(header); - event_warn("%s: strdup", __func__); - return (-1); - } - if ((header->value = strdup(value)) == NULL) { - free(header->key); - free(header); - event_warn("%s: strdup", __func__); - return (-1); - } - - TAILQ_INSERT_TAIL(headers, header, next); - - return (0); -} - -/* - * Parses header lines from a request or a response into the specified - * request object given an event buffer. - * - * Returns - * DATA_CORRUPTED on error - * MORE_DATA_EXPECTED when we need to read more headers - * ALL_DATA_READ when all headers have been read. - */ - -enum message_read_status -evhttp_parse_firstline(struct evhttp_request *req, struct evbuffer *buffer) -{ - char *line; - enum message_read_status status = ALL_DATA_READ; - - line = evbuffer_readline(buffer); - if (line == NULL) - return (MORE_DATA_EXPECTED); - - switch (req->kind) { - case EVHTTP_REQUEST: - if (evhttp_parse_request_line(req, line) == -1) - status = DATA_CORRUPTED; - break; - case EVHTTP_RESPONSE: - if (evhttp_parse_response_line(req, line) == -1) - status = DATA_CORRUPTED; - break; - default: - status = DATA_CORRUPTED; - } - - free(line); - return (status); -} - -static int -evhttp_append_to_last_header(struct evkeyvalq *headers, const char *line) -{ - struct evkeyval *header = TAILQ_LAST(headers, evkeyvalq); - char *newval; - size_t old_len, line_len; - - if (header == NULL) - return (-1); - - old_len = strlen(header->value); - line_len = strlen(line); - - newval = realloc(header->value, old_len + line_len + 1); - if (newval == NULL) - return (-1); - - memcpy(newval + old_len, line, line_len + 1); - header->value = newval; - - return (0); -} - -enum message_read_status -evhttp_parse_headers(struct evhttp_request *req, struct evbuffer* buffer) -{ - char *line; - enum message_read_status status = MORE_DATA_EXPECTED; - - struct evkeyvalq* headers = req->input_headers; - while ((line = evbuffer_readline(buffer)) - != NULL) { - char *skey, *svalue; - - if (*line == '\0') { /* Last header - Done */ - status = ALL_DATA_READ; - free(line); - break; - } - - /* Check if this is a continuation line */ - if (*line == ' ' || *line == '\t') { - if (evhttp_append_to_last_header(headers, line) == -1) - goto error; - free(line); - continue; - } - - /* Processing of header lines */ - svalue = line; - skey = strsep(&svalue, ":"); - if (svalue == NULL) - goto error; - - svalue += strspn(svalue, " "); - - if (evhttp_add_header(headers, skey, svalue) == -1) - goto error; - - free(line); - } - - return (status); - - error: - free(line); - return (DATA_CORRUPTED); -} - -static int -evhttp_get_body_length(struct evhttp_request *req) -{ - struct evkeyvalq *headers = req->input_headers; - const char *content_length; - const char *connection; - - content_length = evhttp_find_header(headers, "Content-Length"); - connection = evhttp_find_header(headers, "Connection"); - - if (content_length == NULL && connection == NULL) - req->ntoread = -1; - else if (content_length == NULL && - strcasecmp(connection, "Close") != 0) { - /* Bad combination, we don't know when it will end */ - event_warnx("%s: we got no content length, but the " - "server wants to keep the connection open: %s.", - __func__, connection); - return (-1); - } else if (content_length == NULL) { - req->ntoread = -1; - } else { - char *endp; - ev_int64_t ntoread = evutil_strtoll(content_length, &endp, 10); - if (*content_length == '\0' || *endp != '\0' || ntoread < 0) { - event_debug(("%s: illegal content length: %s", - __func__, content_length)); - return (-1); - } - req->ntoread = ntoread; - } - - event_debug(("%s: bytes to read: %lld (in buffer %ld)\n", - __func__, req->ntoread, - EVBUFFER_LENGTH(req->evcon->input_buffer))); - - return (0); -} - -static void -evhttp_get_body(struct evhttp_connection *evcon, struct evhttp_request *req) -{ - const char *xfer_enc; - - /* If this is a request without a body, then we are done */ - if (req->kind == EVHTTP_REQUEST && req->type != EVHTTP_REQ_POST) { - evhttp_connection_done(evcon); - return; - } - evcon->state = EVCON_READING_BODY; - xfer_enc = evhttp_find_header(req->input_headers, "Transfer-Encoding"); - if (xfer_enc != NULL && strcasecmp(xfer_enc, "chunked") == 0) { - req->chunked = 1; - req->ntoread = -1; - } else { - if (evhttp_get_body_length(req) == -1) { - evhttp_connection_fail(evcon, - EVCON_HTTP_INVALID_HEADER); - return; - } - } - evhttp_read_body(evcon, req); -} - -static void -evhttp_read_firstline(struct evhttp_connection *evcon, - struct evhttp_request *req) -{ - enum message_read_status res; - - res = evhttp_parse_firstline(req, evcon->input_buffer); - if (res == DATA_CORRUPTED) { - /* Error while reading, terminate */ - event_debug(("%s: bad header lines on %d\n", - __func__, evcon->fd)); - evhttp_connection_fail(evcon, EVCON_HTTP_INVALID_HEADER); - return; - } else if (res == MORE_DATA_EXPECTED) { - /* Need more header lines */ - evhttp_add_event(&evcon->ev, - evcon->timeout, HTTP_READ_TIMEOUT); - return; - } - - evcon->state = EVCON_READING_HEADERS; - evhttp_read_header(evcon, req); -} - -static void -evhttp_read_header(struct evhttp_connection *evcon, struct evhttp_request *req) -{ - enum message_read_status res; - int fd = evcon->fd; - - res = evhttp_parse_headers(req, evcon->input_buffer); - if (res == DATA_CORRUPTED) { - /* Error while reading, terminate */ - event_debug(("%s: bad header lines on %d\n", __func__, fd)); - evhttp_connection_fail(evcon, EVCON_HTTP_INVALID_HEADER); - return; - } else if (res == MORE_DATA_EXPECTED) { - /* Need more header lines */ - evhttp_add_event(&evcon->ev, - evcon->timeout, HTTP_READ_TIMEOUT); - return; - } - - /* Done reading headers, do the real work */ - switch (req->kind) { - case EVHTTP_REQUEST: - event_debug(("%s: checking for post data on %d\n", - __func__, fd)); - evhttp_get_body(evcon, req); - break; - - case EVHTTP_RESPONSE: - if (req->response_code == HTTP_NOCONTENT || - req->response_code == HTTP_NOTMODIFIED || - (req->response_code >= 100 && req->response_code < 200)) { - event_debug(("%s: skipping body for code %d\n", - __func__, req->response_code)); - evhttp_connection_done(evcon); - } else { - event_debug(("%s: start of read body for %s on %d\n", - __func__, req->remote_host, fd)); - evhttp_get_body(evcon, req); - } - break; - - default: - event_warnx("%s: bad header on %d", __func__, fd); - evhttp_connection_fail(evcon, EVCON_HTTP_INVALID_HEADER); - break; - } -} - -/* - * Creates a TCP connection to the specified port and executes a callback - * when finished. Failure or sucess is indicate by the passed connection - * object. - * - * Although this interface accepts a hostname, it is intended to take - * only numeric hostnames so that non-blocking DNS resolution can - * happen elsewhere. - */ - -struct evhttp_connection * -evhttp_connection_new(const char *address, unsigned short port) -{ - struct evhttp_connection *evcon = NULL; - - event_debug(("Attempting connection to %s:%d\n", address, port)); - - if ((evcon = calloc(1, sizeof(struct evhttp_connection))) == NULL) { - event_warn("%s: calloc failed", __func__); - goto error; - } - - evcon->fd = -1; - evcon->port = port; - - evcon->timeout = -1; - evcon->retry_cnt = evcon->retry_max = 0; - - if ((evcon->address = strdup(address)) == NULL) { - event_warn("%s: strdup failed", __func__); - goto error; - } - - if ((evcon->input_buffer = evbuffer_new()) == NULL) { - event_warn("%s: evbuffer_new failed", __func__); - goto error; - } - - if ((evcon->output_buffer = evbuffer_new()) == NULL) { - event_warn("%s: evbuffer_new failed", __func__); - goto error; - } - - evcon->state = EVCON_DISCONNECTED; - TAILQ_INIT(&evcon->requests); - - return (evcon); - - error: - if (evcon != NULL) - evhttp_connection_free(evcon); - return (NULL); -} - -void evhttp_connection_set_base(struct evhttp_connection *evcon, - struct event_base *base) -{ - assert(evcon->base == NULL); - assert(evcon->state == EVCON_DISCONNECTED); - evcon->base = base; -} - -void -evhttp_connection_set_timeout(struct evhttp_connection *evcon, - int timeout_in_secs) -{ - evcon->timeout = timeout_in_secs; -} - -void -evhttp_connection_set_retries(struct evhttp_connection *evcon, - int retry_max) -{ - evcon->retry_max = retry_max; -} - -void -evhttp_connection_set_closecb(struct evhttp_connection *evcon, - void (*cb)(struct evhttp_connection *, void *), void *cbarg) -{ - evcon->closecb = cb; - evcon->closecb_arg = cbarg; -} - -void -evhttp_connection_get_peer(struct evhttp_connection *evcon, - char **address, u_short *port) -{ - *address = evcon->address; - *port = evcon->port; -} - -int -evhttp_connection_connect(struct evhttp_connection *evcon) -{ - if (evcon->state == EVCON_CONNECTING) - return (0); - - evhttp_connection_reset(evcon); - - assert(!(evcon->flags & EVHTTP_CON_INCOMING)); - evcon->flags |= EVHTTP_CON_OUTGOING; - - evcon->fd = bind_socket( - evcon->bind_address, evcon->bind_port, 0 /*reuse*/); - if (evcon->fd == -1) { - event_debug(("%s: failed to bind to \"%s\"", - __func__, evcon->bind_address)); - return (-1); - } - - if (socket_connect(evcon->fd, evcon->address, evcon->port) == -1) { - EVUTIL_CLOSESOCKET(evcon->fd); evcon->fd = -1; - return (-1); - } - - /* Set up a callback for successful connection setup */ - event_set(&evcon->ev, evcon->fd, EV_WRITE, evhttp_connectioncb, evcon); - EVHTTP_BASE_SET(evcon, &evcon->ev); - evhttp_add_event(&evcon->ev, evcon->timeout, HTTP_CONNECT_TIMEOUT); - - evcon->state = EVCON_CONNECTING; - - return (0); -} - -/* - * Starts an HTTP request on the provided evhttp_connection object. - * If the connection object is not connected to the web server already, - * this will start the connection. - */ - -int -evhttp_make_request(struct evhttp_connection *evcon, - struct evhttp_request *req, - enum evhttp_cmd_type type, const char *uri) -{ - /* We are making a request */ - req->kind = EVHTTP_REQUEST; - req->type = type; - if (req->uri != NULL) - free(req->uri); - if ((req->uri = strdup(uri)) == NULL) - event_err(1, "%s: strdup", __func__); - - /* Set the protocol version if it is not supplied */ - if (!req->major && !req->minor) { - req->major = 1; - req->minor = 1; - } - - assert(req->evcon == NULL); - req->evcon = evcon; - assert(!(req->flags & EVHTTP_REQ_OWN_CONNECTION)); - - TAILQ_INSERT_TAIL(&evcon->requests, req, next); - - /* If the connection object is not connected; make it so */ - if (!evhttp_connected(evcon)) - return (evhttp_connection_connect(evcon)); - - /* - * If it's connected already and we are the first in the queue, - * then we can dispatch this request immediately. Otherwise, it - * will be dispatched once the pending requests are completed. - */ - if (TAILQ_FIRST(&evcon->requests) == req) - evhttp_request_dispatch(evcon); - - return (0); -} - -/* - * Reads data from file descriptor into request structure - * Request structure needs to be set up correctly. - */ - -void -evhttp_start_read(struct evhttp_connection *evcon) -{ - /* Set up an event to read the headers */ - if (event_initialized(&evcon->ev)) - event_del(&evcon->ev); - event_set(&evcon->ev, evcon->fd, EV_READ, evhttp_read, evcon); - EVHTTP_BASE_SET(evcon, &evcon->ev); - - evhttp_add_event(&evcon->ev, evcon->timeout, HTTP_READ_TIMEOUT); - evcon->state = EVCON_READING_FIRSTLINE; -} - -static void -evhttp_send_done(struct evhttp_connection *evcon, void *arg) -{ - int need_close; - struct evhttp_request *req = TAILQ_FIRST(&evcon->requests); - TAILQ_REMOVE(&evcon->requests, req, next); - - /* delete possible close detection events */ - evhttp_connection_stop_detectclose(evcon); - - need_close = - (req->minor == 0 && - !evhttp_is_connection_keepalive(req->input_headers))|| - evhttp_is_connection_close(req->flags, req->input_headers) || - evhttp_is_connection_close(req->flags, req->output_headers); - - assert(req->flags & EVHTTP_REQ_OWN_CONNECTION); - evhttp_request_free(req); - - if (need_close) { - evhttp_connection_free(evcon); - return; - } - - /* we have a persistent connection; try to accept another request. */ - if (evhttp_associate_new_request_with_connection(evcon) == -1) - evhttp_connection_free(evcon); -} - -/* - * Returns an error page. - */ - -void -evhttp_send_error(struct evhttp_request *req, int error, const char *reason) -{ -#define ERR_FORMAT "\n" \ - "%d %s\n" \ - "\n" \ - "

Method Not Implemented

\n" \ - "Invalid method in request

\n" \ - "\n" - - struct evbuffer *buf = evbuffer_new(); - - /* close the connection on error */ - evhttp_add_header(req->output_headers, "Connection", "close"); - - evhttp_response_code(req, error, reason); - - evbuffer_add_printf(buf, ERR_FORMAT, error, reason); - - evhttp_send_page(req, buf); - - evbuffer_free(buf); -#undef ERR_FORMAT -} - -/* Requires that headers and response code are already set up */ - -static inline void -evhttp_send(struct evhttp_request *req, struct evbuffer *databuf) -{ - struct evhttp_connection *evcon = req->evcon; - - assert(TAILQ_FIRST(&evcon->requests) == req); - - /* xxx: not sure if we really should expose the data buffer this way */ - if (databuf != NULL) - evbuffer_add_buffer(req->output_buffer, databuf); - - /* Adds headers to the response */ - evhttp_make_header(evcon, req); - - evhttp_write_buffer(evcon, evhttp_send_done, NULL); -} - -void -evhttp_send_reply(struct evhttp_request *req, int code, const char *reason, - struct evbuffer *databuf) -{ - evhttp_response_code(req, code, reason); - - evhttp_send(req, databuf); -} - -void -evhttp_send_reply_start(struct evhttp_request *req, int code, - const char *reason) -{ - evhttp_response_code(req, code, reason); - if (req->major == 1 && req->minor == 1) { - /* use chunked encoding for HTTP/1.1 */ - evhttp_add_header(req->output_headers, "Transfer-Encoding", - "chunked"); - req->chunked = 1; - } - evhttp_make_header(req->evcon, req); - evhttp_write_buffer(req->evcon, NULL, NULL); -} - -void -evhttp_send_reply_chunk(struct evhttp_request *req, struct evbuffer *databuf) -{ - if (req->chunked) { - evbuffer_add_printf(req->evcon->output_buffer, "%x\r\n", - (unsigned)EVBUFFER_LENGTH(databuf)); - } - evbuffer_add_buffer(req->evcon->output_buffer, databuf); - if (req->chunked) { - evbuffer_add(req->evcon->output_buffer, "\r\n", 2); - } - evhttp_write_buffer(req->evcon, NULL, NULL); -} - -void -evhttp_send_reply_end(struct evhttp_request *req) -{ - struct evhttp_connection *evcon = req->evcon; - - if (req->chunked) { - evbuffer_add(req->evcon->output_buffer, "0\r\n\r\n", 5); - evhttp_write_buffer(req->evcon, evhttp_send_done, NULL); - req->chunked = 0; - } else if (!event_pending(&evcon->ev, EV_WRITE|EV_TIMEOUT, NULL)) { - /* let the connection know that we are done with the request */ - evhttp_send_done(evcon, NULL); - } else { - /* make the callback execute after all data has been written */ - evcon->cb = evhttp_send_done; - evcon->cb_arg = NULL; - } -} - -void -evhttp_response_code(struct evhttp_request *req, int code, const char *reason) -{ - req->kind = EVHTTP_RESPONSE; - req->response_code = code; - if (req->response_code_line != NULL) - free(req->response_code_line); - req->response_code_line = strdup(reason); -} - -void -evhttp_send_page(struct evhttp_request *req, struct evbuffer *databuf) -{ - if (!req->major || !req->minor) { - req->major = 1; - req->minor = 1; - } - - if (req->kind != EVHTTP_RESPONSE) - evhttp_response_code(req, 200, "OK"); - - evhttp_clear_headers(req->output_headers); - evhttp_add_header(req->output_headers, "Content-Type", "text/html"); - evhttp_add_header(req->output_headers, "Connection", "close"); - - evhttp_send(req, databuf); -} - -static const char uri_chars[256] = { - 0, 0, 0, 0, 0, 0, 0, 0, 0, 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, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, - /* 64 */ - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, - 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 0, - /* 128 */ - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - /* 192 */ - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -}; - -/* - * Helper functions to encode/decode a URI. - * The returned string must be freed by the caller. - */ -char * -evhttp_encode_uri(const char *uri) -{ - struct evbuffer *buf = evbuffer_new(); - char *p; - - for (p = (char *)uri; *p != '\0'; p++) { - if (uri_chars[(u_char)(*p)]) { - evbuffer_add(buf, p, 1); - } else { - evbuffer_add_printf(buf, "%%%02X", (u_char)(*p)); - } - } - evbuffer_add(buf, "", 1); - p = strdup((char *)EVBUFFER_DATA(buf)); - evbuffer_free(buf); - - return (p); -} - -/* - * @param always_decode_plus: when true we transform plus to space even - * if we have not seen a ?. - */ -static int -evhttp_decode_uri_internal( - const char *uri, size_t length, char *ret, int always_decode_plus) -{ - char c; - int i, j, in_query = always_decode_plus; - - for (i = j = 0; uri[i] != '\0'; i++) { - c = uri[i]; - if (c == '?') { - in_query = 1; - } else if (c == '+' && in_query) { - c = ' '; - } else if (c == '%' && isxdigit((unsigned char)uri[i+1]) && - isxdigit((unsigned char)uri[i+2])) { - char tmp[] = { uri[i+1], uri[i+2], '\0' }; - c = (char)strtol(tmp, NULL, 16); - i += 2; - } - ret[j++] = c; - } - ret[j] = '\0'; - - return (j); -} - -char * -evhttp_decode_uri(const char *uri) -{ - char *ret; - - if ((ret = malloc(strlen(uri) + 1)) == NULL) - event_err(1, "%s: malloc(%lu)", __func__, - (unsigned long)(strlen(uri) + 1)); - - evhttp_decode_uri_internal(uri, strlen(uri), - ret, 0 /*always_decode_plus*/); - - return (ret); -} - -/* - * Helper function to parse out arguments in a query. - * The arguments are separated by key and value. - */ - -void -evhttp_parse_query(const char *uri, struct evkeyvalq *headers) -{ - char *line; - char *argument; - char *p; - - TAILQ_INIT(headers); - - /* No arguments - we are done */ - if (strchr(uri, '?') == NULL) - return; - - if ((line = strdup(uri)) == NULL) - event_err(1, "%s: strdup", __func__); - - - argument = line; - - /* We already know that there has to be a ? */ - strsep(&argument, "?"); - - p = argument; - while (p != NULL && *p != '\0') { - char *key, *value, *decoded_value; - argument = strsep(&p, "&"); - - value = argument; - key = strsep(&value, "="); - if (value == NULL) - goto error; - - if ((decoded_value = malloc(strlen(value) + 1)) == NULL) - event_err(1, "%s: malloc", __func__); - - evhttp_decode_uri_internal(value, strlen(value), - decoded_value, 1 /*always_decode_plus*/); - event_debug(("Query Param: %s -> %s\n", key, decoded_value)); - evhttp_add_header_internal(headers, key, decoded_value); - free(decoded_value); - } - - error: - free(line); -} - -static struct evhttp_cb * -evhttp_dispatch_callback(struct httpcbq *callbacks, struct evhttp_request *req) -{ - struct evhttp_cb *cb; - size_t offset = 0; - - /* Test for different URLs */ - char *p = strchr(req->uri, '?'); - if (p != NULL) - offset = (size_t)(p - req->uri); - - TAILQ_FOREACH(cb, callbacks, next) { - int res = 0; - if (p == NULL) { - res = strcmp(cb->what, req->uri) == 0; - } else { - res = ((strncmp(cb->what, req->uri, offset) == 0) && - (cb->what[offset] == '\0')); - } - - if (res) - return (cb); - } - - return (NULL); -} - -static void -evhttp_handle_request(struct evhttp_request *req, void *arg) -{ - struct evhttp *http = arg; - struct evhttp_cb *cb = NULL; - - if (req->uri == NULL) { - evhttp_send_error(req, HTTP_BADREQUEST, "Bad Request"); - return; - } - - if ((cb = evhttp_dispatch_callback(&http->callbacks, req)) != NULL) { - (*cb->cb)(req, cb->cbarg); - return; - } - - /* Generic call back */ - if (http->gencb) { - (*http->gencb)(req, http->gencbarg); - return; - } else { - /* We need to send a 404 here */ -#define ERR_FORMAT "" \ - "404 Not Found" \ - "" \ - "

Not Found

" \ - "

The requested URL %s was not found on this server.

"\ - "\n" - - char *escaped_html = evhttp_htmlescape(req->uri); - struct evbuffer *buf = evbuffer_new(); - - evhttp_response_code(req, HTTP_NOTFOUND, "Not Found"); - - evbuffer_add_printf(buf, ERR_FORMAT, escaped_html); - - free(escaped_html); - - evhttp_send_page(req, buf); - - evbuffer_free(buf); -#undef ERR_FORMAT - } -} - -static void -accept_socket(int fd, short what, void *arg) -{ - struct evhttp *http = arg; - struct sockaddr_storage ss; - socklen_t addrlen = sizeof(ss); - int nfd; - - if ((nfd = accept(fd, (struct sockaddr *)&ss, &addrlen)) == -1) { - if (errno != EAGAIN && errno != EINTR) - event_warn("%s: bad accept", __func__); - return; - } - if (evutil_make_socket_nonblocking(nfd) < 0) - return; - - evhttp_get_request(http, nfd, (struct sockaddr *)&ss, addrlen); -} - -int -evhttp_bind_socket(struct evhttp *http, const char *address, u_short port) -{ - int fd; - int res; - - if ((fd = bind_socket(address, port, 1 /*reuse*/)) == -1) - return (-1); - - if (listen(fd, 128) == -1) { - event_warn("%s: listen", __func__); - EVUTIL_CLOSESOCKET(fd); - return (-1); - } - - res = evhttp_accept_socket(http, fd); - - if (res != -1) - event_debug(("Bound to port %d - Awaiting connections ... ", - port)); - - return (res); -} - -int -evhttp_accept_socket(struct evhttp *http, int fd) -{ - struct evhttp_bound_socket *bound; - struct event *ev; - int res; - - bound = malloc(sizeof(struct evhttp_bound_socket)); - if (bound == NULL) - return (-1); - - ev = &bound->bind_ev; - - /* Schedule the socket for accepting */ - event_set(ev, fd, EV_READ | EV_PERSIST, accept_socket, http); - EVHTTP_BASE_SET(http, ev); - - res = event_add(ev, NULL); - - if (res == -1) { - free(bound); - return (-1); - } - - TAILQ_INSERT_TAIL(&http->sockets, bound, next); - - return (0); -} - -static struct evhttp* -evhttp_new_object(void) -{ - struct evhttp *http = NULL; - - if ((http = calloc(1, sizeof(struct evhttp))) == NULL) { - event_warn("%s: calloc", __func__); - return (NULL); - } - - http->timeout = -1; - - TAILQ_INIT(&http->sockets); - TAILQ_INIT(&http->callbacks); - TAILQ_INIT(&http->connections); - - return (http); -} - -struct evhttp * -evhttp_new(struct event_base *base) -{ - struct evhttp *http = evhttp_new_object(); - - http->base = base; - - return (http); -} - -/* - * Start a web server on the specified address and port. - */ - -struct evhttp * -evhttp_start(const char *address, u_short port) -{ - struct evhttp *http = evhttp_new_object(); - - if (evhttp_bind_socket(http, address, port) == -1) { - free(http); - return (NULL); - } - - return (http); -} - -void -evhttp_free(struct evhttp* http) -{ - struct evhttp_cb *http_cb; - struct evhttp_connection *evcon; - struct evhttp_bound_socket *bound; - int fd; - - /* Remove the accepting part */ - while ((bound = TAILQ_FIRST(&http->sockets)) != NULL) { - TAILQ_REMOVE(&http->sockets, bound, next); - - fd = bound->bind_ev.ev_fd; - event_del(&bound->bind_ev); - EVUTIL_CLOSESOCKET(fd); - - free(bound); - } - - while ((evcon = TAILQ_FIRST(&http->connections)) != NULL) { - /* evhttp_connection_free removes the connection */ - evhttp_connection_free(evcon); - } - - while ((http_cb = TAILQ_FIRST(&http->callbacks)) != NULL) { - TAILQ_REMOVE(&http->callbacks, http_cb, next); - free(http_cb->what); - free(http_cb); - } - - free(http); -} - -void -evhttp_set_timeout(struct evhttp* http, int timeout_in_secs) -{ - http->timeout = timeout_in_secs; -} - -void -evhttp_set_cb(struct evhttp *http, const char *uri, - void (*cb)(struct evhttp_request *, void *), void *cbarg) -{ - struct evhttp_cb *http_cb; - - if ((http_cb = calloc(1, sizeof(struct evhttp_cb))) == NULL) - event_err(1, "%s: calloc", __func__); - - http_cb->what = strdup(uri); - -#ifdef INNODB_CHANGED - if (http_cb->what == NULL) { - free(http_cb); - event_err(1, "%s: strdup",__func__); - } -#endif - - http_cb->cb = cb; - http_cb->cbarg = cbarg; - - TAILQ_INSERT_TAIL(&http->callbacks, http_cb, next); -} - -int -evhttp_del_cb(struct evhttp *http, const char *uri) -{ - struct evhttp_cb *http_cb; - - TAILQ_FOREACH(http_cb, &http->callbacks, next) { - if (strcmp(http_cb->what, uri) == 0) - break; - } - if (http_cb == NULL) - return (-1); - - TAILQ_REMOVE(&http->callbacks, http_cb, next); - free(http_cb->what); - free(http_cb); - - return (0); -} - -void -evhttp_set_gencb(struct evhttp *http, - void (*cb)(struct evhttp_request *, void *), void *cbarg) -{ - http->gencb = cb; - http->gencbarg = cbarg; -} - -/* - * Request related functions - */ - -struct evhttp_request * -evhttp_request_new(void (*cb)(struct evhttp_request *, void *), void *arg) -{ - struct evhttp_request *req = NULL; - - /* Allocate request structure */ - if ((req = calloc(1, sizeof(struct evhttp_request))) == NULL) { - event_warn("%s: calloc", __func__); - goto error; - } - - req->kind = EVHTTP_RESPONSE; - req->input_headers = calloc(1, sizeof(struct evkeyvalq)); - if (req->input_headers == NULL) { - event_warn("%s: calloc", __func__); - goto error; - } - TAILQ_INIT(req->input_headers); - - req->output_headers = calloc(1, sizeof(struct evkeyvalq)); - if (req->output_headers == NULL) { - event_warn("%s: calloc", __func__); - goto error; - } - TAILQ_INIT(req->output_headers); - - if ((req->input_buffer = evbuffer_new()) == NULL) { - event_warn("%s: evbuffer_new", __func__); - goto error; - } - - if ((req->output_buffer = evbuffer_new()) == NULL) { - event_warn("%s: evbuffer_new", __func__); - goto error; - } - - req->cb = cb; - req->cb_arg = arg; - - return (req); - - error: - if (req != NULL) - evhttp_request_free(req); - return (NULL); -} - -void -evhttp_request_free(struct evhttp_request *req) -{ - if (req->remote_host != NULL) - free(req->remote_host); - if (req->uri != NULL) - free(req->uri); - if (req->response_code_line != NULL) - free(req->response_code_line); - - evhttp_clear_headers(req->input_headers); - free(req->input_headers); - - evhttp_clear_headers(req->output_headers); - free(req->output_headers); - - if (req->input_buffer != NULL) - evbuffer_free(req->input_buffer); - - if (req->output_buffer != NULL) - evbuffer_free(req->output_buffer); - - free(req); -} - -void -evhttp_request_set_chunked_cb(struct evhttp_request *req, - void (*cb)(struct evhttp_request *, void *)) -{ - req->chunk_cb = cb; -} - -/* - * Allows for inspection of the request URI - */ - -const char * -evhttp_request_uri(struct evhttp_request *req) { - if (req->uri == NULL) - event_debug(("%s: request %p has no uri\n", __func__, req)); - return (req->uri); -} - -/* - * Takes a file descriptor to read a request from. - * The callback is executed once the whole request has been read. - */ - -static struct evhttp_connection* -evhttp_get_request_connection( - struct evhttp* http, - int fd, struct sockaddr *sa, socklen_t salen) -{ - struct evhttp_connection *evcon; - char *hostname = NULL, *portname = NULL; - - name_from_addr(sa, salen, &hostname, &portname); - if (hostname == NULL || portname == NULL) { - if (hostname) free(hostname); - if (portname) free(portname); - return (NULL); - } - - event_debug(("%s: new request from %s:%s on %d\n", - __func__, hostname, portname, fd)); - - /* we need a connection object to put the http request on */ - evcon = evhttp_connection_new(hostname, atoi(portname)); - free(hostname); - free(portname); - if (evcon == NULL) - return (NULL); - - /* associate the base if we have one*/ - evhttp_connection_set_base(evcon, http->base); - - evcon->flags |= EVHTTP_CON_INCOMING; - evcon->state = EVCON_READING_FIRSTLINE; - - evcon->fd = fd; - - return (evcon); -} - -static int -evhttp_associate_new_request_with_connection(struct evhttp_connection *evcon) -{ - struct evhttp *http = evcon->http_server; - struct evhttp_request *req; - if ((req = evhttp_request_new(evhttp_handle_request, http)) == NULL) - return (-1); - - req->evcon = evcon; /* the request ends up owning the connection */ - req->flags |= EVHTTP_REQ_OWN_CONNECTION; - - TAILQ_INSERT_TAIL(&evcon->requests, req, next); - - req->kind = EVHTTP_REQUEST; - - if ((req->remote_host = strdup(evcon->address)) == NULL) - event_err(1, "%s: strdup", __func__); - req->remote_port = evcon->port; - - evhttp_start_read(evcon); - - return (0); -} - -void -evhttp_get_request(struct evhttp *http, int fd, - struct sockaddr *sa, socklen_t salen) -{ - struct evhttp_connection *evcon; - - evcon = evhttp_get_request_connection(http, fd, sa, salen); - if (evcon == NULL) - return; - - /* the timeout can be used by the server to close idle connections */ - if (http->timeout != -1) - evhttp_connection_set_timeout(evcon, http->timeout); - - /* - * if we want to accept more than one request on a connection, - * we need to know which http server it belongs to. - */ - evcon->http_server = http; - TAILQ_INSERT_TAIL(&http->connections, evcon, next); - - if (evhttp_associate_new_request_with_connection(evcon) == -1) - evhttp_connection_free(evcon); -} - - -/* - * Network helper functions that we do not want to export to the rest of - * the world. - */ -#if 0 /* Unused */ -static struct addrinfo * -addr_from_name(char *address) -{ -#ifdef HAVE_GETADDRINFO - struct addrinfo ai, *aitop; - int ai_result; - - memset(&ai, 0, sizeof(ai)); - ai.ai_family = AF_INET; - ai.ai_socktype = SOCK_RAW; - ai.ai_flags = 0; - if ((ai_result = getaddrinfo(address, NULL, &ai, &aitop)) != 0) { - if ( ai_result == EAI_SYSTEM ) - event_warn("getaddrinfo"); - else - event_warnx("getaddrinfo: %s", gai_strerror(ai_result)); - } - - return (aitop); -#else - assert(0); - return NULL; /* XXXXX Use gethostbyname, if this function is ever used. */ -#endif -} -#endif - -static void -name_from_addr(struct sockaddr *sa, socklen_t salen, - char **phost, char **pport) -{ - char ntop[NI_MAXHOST]; - char strport[NI_MAXSERV]; - int ni_result; - -#ifdef HAVE_GETNAMEINFO - ni_result = getnameinfo(sa, salen, - ntop, sizeof(ntop), strport, sizeof(strport), - NI_NUMERICHOST|NI_NUMERICSERV); - - if (ni_result != 0) { - if (ni_result == EAI_SYSTEM) - event_err(1, "getnameinfo failed"); - else - event_errx(1, "getnameinfo failed: %s", gai_strerror(ni_result)); - return; - } -#else - ni_result = fake_getnameinfo(sa, salen, - ntop, sizeof(ntop), strport, sizeof(strport), - NI_NUMERICHOST|NI_NUMERICSERV); - if (ni_result != 0) - return; -#endif - *phost = strdup(ntop); - *pport = strdup(strport); -} - -/* Create a non-blocking socket and bind it */ -/* todo: rename this function */ -static int -bind_socket_ai(struct addrinfo *ai, int reuse) -{ - int fd, on = 1, r; - int serrno; - - /* Create listen socket */ - fd = socket(AF_INET, SOCK_STREAM, 0); - if (fd == -1) { - event_warn("socket"); - return (-1); - } - - if (evutil_make_socket_nonblocking(fd) < 0) - goto out; - -#ifndef WIN32 - if (fcntl(fd, F_SETFD, 1) == -1) { - event_warn("fcntl(F_SETFD)"); - goto out; - } -#endif - - setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, (void *)&on, sizeof(on)); - if (reuse) { - setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, - (void *)&on, sizeof(on)); - } - - if (ai != NULL) { - r = bind(fd, ai->ai_addr, ai->ai_addrlen); - if (r == -1) - goto out; - } - - return (fd); - - out: - serrno = EVUTIL_SOCKET_ERROR(); - EVUTIL_CLOSESOCKET(fd); - EVUTIL_SET_SOCKET_ERROR(serrno); - return (-1); -} - -static struct addrinfo * -make_addrinfo(const char *address, u_short port) -{ - struct addrinfo *aitop = NULL; - -#ifdef HAVE_GETADDRINFO - struct addrinfo ai; - char strport[NI_MAXSERV]; - int ai_result; - - memset(&ai, 0, sizeof(ai)); - ai.ai_family = AF_INET; - ai.ai_socktype = SOCK_STREAM; - ai.ai_flags = AI_PASSIVE; /* turn NULL host name into INADDR_ANY */ - evutil_snprintf(strport, sizeof(strport), "%d", port); - if ((ai_result = getaddrinfo(address, strport, &ai, &aitop)) != 0) { - if ( ai_result == EAI_SYSTEM ) - event_warn("getaddrinfo"); - else - event_warnx("getaddrinfo: %s", gai_strerror(ai_result)); - return (NULL); - } -#else - static int cur; - static struct addrinfo ai[2]; /* We will be returning the address of some of this memory so it has to last even after this call. */ - if (++cur == 2) cur = 0; /* allow calling this function twice */ - - if (fake_getaddrinfo(address, &ai[cur]) < 0) { - event_warn("fake_getaddrinfo"); - return (NULL); - } - aitop = &ai[cur]; - ((struct sockaddr_in *) aitop->ai_addr)->sin_port = htons(port); -#endif - - return (aitop); -} - -static int -bind_socket(const char *address, u_short port, int reuse) -{ - int fd; - struct addrinfo *aitop = NULL; - - /* just create an unbound socket */ - if (address == NULL && port == 0) - return bind_socket_ai(NULL, 0); - - aitop = make_addrinfo(address, port); - - if (aitop == NULL) - return (-1); - - fd = bind_socket_ai(aitop, reuse); - -#ifdef HAVE_GETADDRINFO - freeaddrinfo(aitop); -#else - fake_freeaddrinfo(aitop); -#endif - - return (fd); -} - -static int -socket_connect(int fd, const char *address, unsigned short port) -{ - struct addrinfo *ai = make_addrinfo(address, port); - int res = -1; - - if (ai == NULL) { - event_debug(("%s: make_addrinfo: \"%s:%d\"", - __func__, address, port)); - return (-1); - } - - if (connect(fd, ai->ai_addr, ai->ai_addrlen) == -1) { -#ifdef WIN32 - int tmp_error = WSAGetLastError(); - if (tmp_error != WSAEWOULDBLOCK && tmp_error != WSAEINVAL && - tmp_error != WSAEINPROGRESS) { - goto out; - } -#else - if (errno != EINPROGRESS) { - goto out; - } -#endif - } - - /* everything is fine */ - res = 0; - -out: -#ifdef HAVE_GETADDRINFO - freeaddrinfo(ai); -#else - fake_freeaddrinfo(ai); -#endif - - return (res); -} diff -Nru mysql-5.7-5.7.25/libevent/http-internal.h mysql-5.7-5.7.26/libevent/http-internal.h --- mysql-5.7-5.7.25/libevent/http-internal.h 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/http-internal.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,159 +0,0 @@ -/* - * Copyright 2001 Niels Provos - * All rights reserved. - * - * This header file contains definitions for dealing with HTTP requests - * that are internal to libevent. As user of the library, you should not - * need to know about these. - */ - -#ifndef _HTTP_H_ -#define _HTTP_H_ - -#define HTTP_CONNECT_TIMEOUT 45 -#define HTTP_WRITE_TIMEOUT 50 -#define HTTP_READ_TIMEOUT 50 - -#define HTTP_PREFIX "http://" -#define HTTP_DEFAULTPORT 80 - -#ifndef HAVE_SOCKLEN_T -#define socklen_t unsigned int -#endif - - -enum message_read_status { - ALL_DATA_READ = 1, - MORE_DATA_EXPECTED = 0, - DATA_CORRUPTED = -1, - REQUEST_CANCELED = -2 -}; - -enum evhttp_connection_error { - EVCON_HTTP_TIMEOUT, - EVCON_HTTP_EOF, - EVCON_HTTP_INVALID_HEADER -}; - -struct evbuffer; -struct addrinfo; -struct evhttp_request; - -/* A stupid connection object - maybe make this a bufferevent later */ - -enum evhttp_connection_state { - EVCON_DISCONNECTED, /**< not currently connected not trying either*/ - EVCON_CONNECTING, /**< tries to currently connect */ - EVCON_IDLE, /**< connection is established */ - EVCON_READING_FIRSTLINE,/**< reading Request-Line (incoming conn) or - **< Status-Line (outgoing conn) */ - EVCON_READING_HEADERS, /**< reading request/response headers */ - EVCON_READING_BODY, /**< reading request/response body */ - EVCON_READING_TRAILER, /**< reading request/response chunked trailer */ - EVCON_WRITING /**< writing request/response headers/body */ -}; - -struct event_base; - -struct evhttp_connection { - /* we use tailq only if they were created for an http server */ - TAILQ_ENTRY(evhttp_connection) (next); - - int fd; - struct event ev; - struct event close_ev; - struct evbuffer *input_buffer; - struct evbuffer *output_buffer; - - char *bind_address; /* address to use for binding the src */ - u_short bind_port; /* local port for binding the src */ - - char *address; /* address to connect to */ - u_short port; - - int flags; -#define EVHTTP_CON_INCOMING 0x0001 /* only one request on it ever */ -#define EVHTTP_CON_OUTGOING 0x0002 /* multiple requests possible */ -#define EVHTTP_CON_CLOSEDETECT 0x0004 /* detecting if persistent close */ - - int timeout; /* timeout in seconds for events */ - int retry_cnt; /* retry count */ - int retry_max; /* maximum number of retries */ - - enum evhttp_connection_state state; - - /* for server connections, the http server they are connected with */ - struct evhttp *http_server; - - TAILQ_HEAD(evcon_requestq, evhttp_request) requests; - - void (*cb)(struct evhttp_connection *, void *); - void *cb_arg; - - void (*closecb)(struct evhttp_connection *, void *); - void *closecb_arg; - - struct event_base *base; -}; - -struct evhttp_cb { - TAILQ_ENTRY(evhttp_cb) next; - - char *what; - - void (*cb)(struct evhttp_request *req, void *); - void *cbarg; -}; - -/* both the http server as well as the rpc system need to queue connections */ -TAILQ_HEAD(evconq, evhttp_connection); - -/* each bound socket is stored in one of these */ -struct evhttp_bound_socket { - TAILQ_ENTRY(evhttp_bound_socket) (next); - - struct event bind_ev; -}; - -struct evhttp { - TAILQ_HEAD(boundq, evhttp_bound_socket) sockets; - - TAILQ_HEAD(httpcbq, evhttp_cb) callbacks; - struct evconq connections; - - int timeout; - - void (*gencb)(struct evhttp_request *req, void *); - void *gencbarg; - - struct event_base *base; -}; - -/* resets the connection; can be reused for more requests */ -void evhttp_connection_reset(struct evhttp_connection *); - -/* connects if necessary */ -int evhttp_connection_connect(struct evhttp_connection *); - -/* notifies the current request that it failed; resets connection */ -void evhttp_connection_fail(struct evhttp_connection *, - enum evhttp_connection_error error); - -void evhttp_get_request(struct evhttp *, int, struct sockaddr *, socklen_t); - -int evhttp_hostportfile(char *, char **, u_short *, char **); - -int evhttp_parse_firstline(struct evhttp_request *, struct evbuffer*); -int evhttp_parse_headers(struct evhttp_request *, struct evbuffer*); - -void evhttp_start_read(struct evhttp_connection *); -void evhttp_make_header(struct evhttp_connection *, struct evhttp_request *); - -void evhttp_write_buffer(struct evhttp_connection *, - void (*)(struct evhttp_connection *, void *), void *); - -/* response sending HTML the data in the buffer */ -void evhttp_response_code(struct evhttp_request *, int, const char *); -void evhttp_send_page(struct evhttp_request *, struct evbuffer *); - -#endif /* _HTTP_H */ diff -Nru mysql-5.7-5.7.25/libevent/kqueue.c mysql-5.7-5.7.26/libevent/kqueue.c --- mysql-5.7-5.7.25/libevent/kqueue.c 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/kqueue.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,449 +0,0 @@ -/* $OpenBSD: kqueue.c,v 1.5 2002/07/10 14:41:31 art Exp $ */ - -/* - * Copyright 2000-2002 Niels Provos - * All rights reserved. - * - * 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. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. - */ -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -#include -#ifdef HAVE_SYS_TIME_H -#include -#else -#include -#endif -#include -#include -#include -#include -#include -#include -#include -#include -#include -#ifdef HAVE_INTTYPES_H -#include -#endif - -/* Some platforms apparently define the udata field of struct kevent as - * intptr_t, whereas others define it as void*. There doesn't seem to be an - * easy way to tell them apart via autoconf, so we need to use OS macros. */ -#if defined(HAVE_INTTYPES_H) && !defined(__OpenBSD__) && !defined(__FreeBSD__) && !defined(__darwin__) && !defined(__APPLE__) -#define PTR_TO_UDATA(x) ((intptr_t)(x)) -#else -#define PTR_TO_UDATA(x) (x) -#endif - -#include "event.h" -#include "event-internal.h" -#include "log.h" -#include "event-internal.h" - -#define EVLIST_X_KQINKERNEL 0x1000 - -#define NEVENT 64 - -struct kqop { - struct kevent *changes; - int nchanges; - struct kevent *events; - struct event_list evsigevents[NSIG]; - int nevents; - int kq; - pid_t pid; -}; - -static void *kq_init (struct event_base *); -static int kq_add (void *, struct event *); -static int kq_del (void *, struct event *); -static int kq_dispatch (struct event_base *, void *, struct timeval *); -static int kq_insert (struct kqop *, struct kevent *); -static void kq_dealloc (struct event_base *, void *); - -const struct eventop kqops = { - "kqueue", - kq_init, - kq_add, - kq_del, - kq_dispatch, - kq_dealloc, - 1 /* need reinit */ -}; - -static void * -kq_init(struct event_base *base) -{ - int i, kq; - struct kqop *kqueueop; - - /* Disable kqueue when this environment variable is set */ - if (getenv("EVENT_NOKQUEUE")) - return (NULL); - - if (!(kqueueop = calloc(1, sizeof(struct kqop)))) - return (NULL); - - /* Initalize the kernel queue */ - - if ((kq = kqueue()) == -1) { - event_warn("kqueue"); - free (kqueueop); - return (NULL); - } - - kqueueop->kq = kq; - - kqueueop->pid = getpid(); - - /* Initalize fields */ - kqueueop->changes = malloc(NEVENT * sizeof(struct kevent)); - if (kqueueop->changes == NULL) { - free (kqueueop); - return (NULL); - } - kqueueop->events = malloc(NEVENT * sizeof(struct kevent)); - if (kqueueop->events == NULL) { - free (kqueueop->changes); - free (kqueueop); - return (NULL); - } - kqueueop->nevents = NEVENT; - - /* we need to keep track of multiple events per signal */ - for (i = 0; i < NSIG; ++i) { - TAILQ_INIT(&kqueueop->evsigevents[i]); - } - - /* Check for Mac OS X kqueue bug. */ - kqueueop->changes[0].ident = -1; - kqueueop->changes[0].filter = EVFILT_READ; - kqueueop->changes[0].flags = EV_ADD; - /* - * If kqueue works, then kevent will succeed, and it will - * stick an error in events[0]. If kqueue is broken, then - * kevent will fail. - */ - if (kevent(kq, - kqueueop->changes, 1, kqueueop->events, NEVENT, NULL) != 1 || - kqueueop->events[0].ident != -1 || - kqueueop->events[0].flags != EV_ERROR) { - event_warn("%s: detected broken kqueue; not using.", __func__); - free(kqueueop->changes); - free(kqueueop->events); - free(kqueueop); - close(kq); - return (NULL); - } - - return (kqueueop); -} - -static int -kq_insert(struct kqop *kqop, struct kevent *kev) -{ - int nevents = kqop->nevents; - - if (kqop->nchanges == nevents) { - struct kevent *newchange; - struct kevent *newresult; - - nevents *= 2; - - newchange = realloc(kqop->changes, - nevents * sizeof(struct kevent)); - if (newchange == NULL) { - event_warn("%s: malloc", __func__); - return (-1); - } - kqop->changes = newchange; - - newresult = realloc(kqop->events, - nevents * sizeof(struct kevent)); - - /* - * If we fail, we don't have to worry about freeing, - * the next realloc will pick it up. - */ - if (newresult == NULL) { - event_warn("%s: malloc", __func__); - return (-1); - } - kqop->events = newresult; - - kqop->nevents = nevents; - } - - memcpy(&kqop->changes[kqop->nchanges++], kev, sizeof(struct kevent)); - - event_debug(("%s: fd %d %s%s", - __func__, (int)kev->ident, - kev->filter == EVFILT_READ ? "EVFILT_READ" : "EVFILT_WRITE", - kev->flags == EV_DELETE ? " (del)" : "")); - - return (0); -} - -static void -kq_sighandler(int sig) -{ - /* Do nothing here */ -} - -static int -kq_dispatch(struct event_base *base, void *arg, struct timeval *tv) -{ - struct kqop *kqop = arg; - struct kevent *changes = kqop->changes; - struct kevent *events = kqop->events; - struct event *ev; - struct timespec ts, *ts_p = NULL; - int i, res; - - if (tv != NULL) { - TIMEVAL_TO_TIMESPEC(tv, &ts); - ts_p = &ts; - } - - res = kevent(kqop->kq, changes, kqop->nchanges, - events, kqop->nevents, ts_p); - kqop->nchanges = 0; - if (res == -1) { - if (errno != EINTR) { - event_warn("kevent"); - return (-1); - } - - return (0); - } - - event_debug(("%s: kevent reports %d", __func__, res)); - - for (i = 0; i < res; i++) { - int which = 0; - - if (events[i].flags & EV_ERROR) { - /* - * Error messages that can happen, when a delete fails. - * EBADF happens when the file discriptor has been - * closed, - * ENOENT when the file discriptor was closed and - * then reopened. - * EINVAL for some reasons not understood; EINVAL - * should not be returned ever; but FreeBSD does :-\ - * An error is also indicated when a callback deletes - * an event we are still processing. In that case - * the data field is set to ENOENT. - */ - if (events[i].data == EBADF || - events[i].data == EINVAL || - events[i].data == ENOENT) - continue; - errno = events[i].data; - return (-1); - } - - if (events[i].filter == EVFILT_READ) { - which |= EV_READ; - } else if (events[i].filter == EVFILT_WRITE) { - which |= EV_WRITE; - } else if (events[i].filter == EVFILT_SIGNAL) { - which |= EV_SIGNAL; - } - - if (!which) - continue; - - if (events[i].filter == EVFILT_SIGNAL) { - struct event_list *head = - (struct event_list *)events[i].udata; - TAILQ_FOREACH(ev, head, ev_signal_next) { - event_active(ev, which, events[i].data); - } - } else { - ev = (struct event *)events[i].udata; - - if (!(ev->ev_events & EV_PERSIST)) - ev->ev_flags &= ~EVLIST_X_KQINKERNEL; - - event_active(ev, which, 1); - } - } - - return (0); -} - - -static int -kq_add(void *arg, struct event *ev) -{ - struct kqop *kqop = arg; - struct kevent kev; - - if (ev->ev_events & EV_SIGNAL) { - int nsignal = EVENT_SIGNAL(ev); - - assert(nsignal >= 0 && nsignal < NSIG); - if (TAILQ_EMPTY(&kqop->evsigevents[nsignal])) { - struct timespec timeout = { 0, 0 }; - - memset(&kev, 0, sizeof(kev)); - kev.ident = nsignal; - kev.filter = EVFILT_SIGNAL; - kev.flags = EV_ADD; - kev.udata = PTR_TO_UDATA(&kqop->evsigevents[nsignal]); - - /* Be ready for the signal if it is sent any - * time between now and the next call to - * kq_dispatch. */ - if (kevent(kqop->kq, &kev, 1, NULL, 0, &timeout) == -1) - return (-1); - - if (_evsignal_set_handler(ev->ev_base, nsignal, - kq_sighandler) == -1) - return (-1); - } - - TAILQ_INSERT_TAIL(&kqop->evsigevents[nsignal], ev, - ev_signal_next); - ev->ev_flags |= EVLIST_X_KQINKERNEL; - return (0); - } - - if (ev->ev_events & EV_READ) { - memset(&kev, 0, sizeof(kev)); - kev.ident = ev->ev_fd; - kev.filter = EVFILT_READ; -#ifdef NOTE_EOF - /* Make it behave like select() and poll() */ - kev.fflags = NOTE_EOF; -#endif - kev.flags = EV_ADD; - if (!(ev->ev_events & EV_PERSIST)) - kev.flags |= EV_ONESHOT; - kev.udata = PTR_TO_UDATA(ev); - - if (kq_insert(kqop, &kev) == -1) - return (-1); - - ev->ev_flags |= EVLIST_X_KQINKERNEL; - } - - if (ev->ev_events & EV_WRITE) { - memset(&kev, 0, sizeof(kev)); - kev.ident = ev->ev_fd; - kev.filter = EVFILT_WRITE; - kev.flags = EV_ADD; - if (!(ev->ev_events & EV_PERSIST)) - kev.flags |= EV_ONESHOT; - kev.udata = PTR_TO_UDATA(ev); - - if (kq_insert(kqop, &kev) == -1) - return (-1); - - ev->ev_flags |= EVLIST_X_KQINKERNEL; - } - - return (0); -} - -static int -kq_del(void *arg, struct event *ev) -{ - struct kqop *kqop = arg; - struct kevent kev; - - if (!(ev->ev_flags & EVLIST_X_KQINKERNEL)) - return (0); - - if (ev->ev_events & EV_SIGNAL) { - int nsignal = EVENT_SIGNAL(ev); - struct timespec timeout = { 0, 0 }; - - assert(nsignal >= 0 && nsignal < NSIG); - TAILQ_REMOVE(&kqop->evsigevents[nsignal], ev, ev_signal_next); - if (TAILQ_EMPTY(&kqop->evsigevents[nsignal])) { - memset(&kev, 0, sizeof(kev)); - kev.ident = nsignal; - kev.filter = EVFILT_SIGNAL; - kev.flags = EV_DELETE; - - /* Because we insert signal events - * immediately, we need to delete them - * immediately, too */ - if (kevent(kqop->kq, &kev, 1, NULL, 0, &timeout) == -1) - return (-1); - - if (_evsignal_restore_handler(ev->ev_base, - nsignal) == -1) - return (-1); - } - - ev->ev_flags &= ~EVLIST_X_KQINKERNEL; - return (0); - } - - if (ev->ev_events & EV_READ) { - memset(&kev, 0, sizeof(kev)); - kev.ident = ev->ev_fd; - kev.filter = EVFILT_READ; - kev.flags = EV_DELETE; - - if (kq_insert(kqop, &kev) == -1) - return (-1); - - ev->ev_flags &= ~EVLIST_X_KQINKERNEL; - } - - if (ev->ev_events & EV_WRITE) { - memset(&kev, 0, sizeof(kev)); - kev.ident = ev->ev_fd; - kev.filter = EVFILT_WRITE; - kev.flags = EV_DELETE; - - if (kq_insert(kqop, &kev) == -1) - return (-1); - - ev->ev_flags &= ~EVLIST_X_KQINKERNEL; - } - - return (0); -} - -static void -kq_dealloc(struct event_base *base, void *arg) -{ - struct kqop *kqop = arg; - - if (kqop->changes) - free(kqop->changes); - if (kqop->events) - free(kqop->events); - if (kqop->kq >= 0 && kqop->pid == getpid()) - close(kqop->kq); - memset(kqop, 0, sizeof(struct kqop)); - free(kqop); -} diff -Nru mysql-5.7-5.7.25/libevent/log.c mysql-5.7-5.7.26/libevent/log.c --- mysql-5.7-5.7.25/libevent/log.c 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/log.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,187 +0,0 @@ -/* $OpenBSD: err.c,v 1.2 2002/06/25 15:50:15 mickey Exp $ */ - -/* - * log.c - * - * Based on err.c, which was adapted from OpenBSD libc *err* *warn* code. - * - * Copyright (c) 2005 Nick Mathewson - * - * Copyright (c) 2000 Dug Song - * - * Copyright (c) 1993 - * The Regents of the University of California. All rights reserved. - * - * 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 University 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 REGENTS 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 REGENTS 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. - */ - -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -#ifdef WIN32 -#define WIN32_LEAN_AND_MEAN -#include -#undef WIN32_LEAN_AND_MEAN -#endif -#include -#ifdef HAVE_SYS_TIME_H -#include -#else -#include -#endif -#include -#include -#include -#include -#include -#include "event.h" - -#include "log.h" -#include "evutil.h" - -static void _warn_helper(int severity, int log_errno, const char *fmt, - va_list ap); -static void event_log(int severity, const char *msg); - -void -event_err(int eval, const char *fmt, ...) -{ - va_list ap; - - va_start(ap, fmt); - _warn_helper(_EVENT_LOG_ERR, errno, fmt, ap); - va_end(ap); - exit(eval); -} - -void -event_warn(const char *fmt, ...) -{ - va_list ap; - - va_start(ap, fmt); - _warn_helper(_EVENT_LOG_WARN, errno, fmt, ap); - va_end(ap); -} - -void -event_errx(int eval, const char *fmt, ...) -{ - va_list ap; - - va_start(ap, fmt); - _warn_helper(_EVENT_LOG_ERR, -1, fmt, ap); - va_end(ap); - exit(eval); -} - -void -event_warnx(const char *fmt, ...) -{ - va_list ap; - - va_start(ap, fmt); - _warn_helper(_EVENT_LOG_WARN, -1, fmt, ap); - va_end(ap); -} - -void -event_msgx(const char *fmt, ...) -{ - va_list ap; - - va_start(ap, fmt); - _warn_helper(_EVENT_LOG_MSG, -1, fmt, ap); - va_end(ap); -} - -void -_event_debugx(const char *fmt, ...) -{ - va_list ap; - - va_start(ap, fmt); - _warn_helper(_EVENT_LOG_DEBUG, -1, fmt, ap); - va_end(ap); -} - -static void -_warn_helper(int severity, int log_errno, const char *fmt, va_list ap) -{ - char buf[1024]; - size_t len; - - if (fmt != NULL) - evutil_vsnprintf(buf, sizeof(buf), fmt, ap); - else - buf[0] = '\0'; - - if (log_errno >= 0) { - len = strlen(buf); - if (len < sizeof(buf) - 3) { - evutil_snprintf(buf + len, sizeof(buf) - len, ": %s", - strerror(log_errno)); - } - } - - event_log(severity, buf); -} - -static event_log_cb log_fn = NULL; - -void -event_set_log_callback(event_log_cb cb) -{ - log_fn = cb; -} - -static void -event_log(int severity, const char *msg) -{ - if (log_fn) - log_fn(severity, msg); - else { - const char *severity_str; - switch (severity) { - case _EVENT_LOG_DEBUG: - severity_str = "debug"; - break; - case _EVENT_LOG_MSG: - severity_str = "msg"; - break; - case _EVENT_LOG_WARN: - severity_str = "warn"; - break; - case _EVENT_LOG_ERR: - severity_str = "err"; - break; - default: - severity_str = "???"; - break; - } - (void)fprintf(stderr, "[%s] %s\n", severity_str, msg); - } -} diff -Nru mysql-5.7-5.7.25/libevent/log.h mysql-5.7-5.7.26/libevent/log.h --- mysql-5.7-5.7.25/libevent/log.h 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/log.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,51 +0,0 @@ -/* - * Copyright (c) 2000-2004 Niels Provos - * All rights reserved. - * - * 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. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. - */ -#ifndef _LOG_H_ -#define _LOG_H_ - -#ifdef __GNUC__ -#define EV_CHECK_FMT(a,b) __attribute__((format(printf, a, b))) -#else -#define EV_CHECK_FMT(a,b) -#endif - -void event_err(int eval, const char *fmt, ...) EV_CHECK_FMT(2,3); -void event_warn(const char *fmt, ...) EV_CHECK_FMT(1,2); -void event_errx(int eval, const char *fmt, ...) EV_CHECK_FMT(2,3); -void event_warnx(const char *fmt, ...) EV_CHECK_FMT(1,2); -void event_msgx(const char *fmt, ...) EV_CHECK_FMT(1,2); -void _event_debugx(const char *fmt, ...) EV_CHECK_FMT(1,2); - -#ifdef USE_DEBUG -#define event_debug(x) _event_debugx x -#else -#define event_debug(x) do {;} while (0) -#endif - -#undef EV_CHECK_FMT - -#endif diff -Nru mysql-5.7-5.7.25/libevent/Makefile.am mysql-5.7-5.7.26/libevent/Makefile.am --- mysql-5.7-5.7.25/libevent/Makefile.am 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/Makefile.am 1970-01-01 00:00:00.000000000 +0000 @@ -1,124 +0,0 @@ -AUTOMAKE_OPTIONS = foreign no-dependencies - -# This is the point release for libevent. It shouldn't include any -# a/b/c/d/e notations. -RELEASE = 1.4 - -# This is the version info for the libevent binary API. It has three -# numbers: -# Current -- the number of the binary API that we're implementing -# Revision -- which iteration of the implementation of the binary -# API are we supplying? -# Age -- How many previous binary API versions do we also -# support? -# -# If we release a new version that does not change the binary API, -# increment Revision. -# -# If we release a new version that changes the binary API, but does -# not break programs compiled against the old binary API, increment -# Current and Age. Set Revision to 0, since this is the first -# implementation of the new API. -# -# Otherwise, we're changing the binary API and breaking bakward -# compatibility with old binaries. Increment Current. Set Age to 0, -# since we're backward compatible with no previous APIs. Set Revision -# to 0 too. - -# History: -# Libevent 1.4.1 was 2:0:0 -# Libevent 1.4.2 should be 3:0:0 -# Libevent 1.4.5 is 3:0:1 (we forgot to increment in the past) -VERSION_INFO = 3:3:1 - -bin_SCRIPTS = event_rpcgen.py - -EXTRA_DIST = autogen.sh event.h event-internal.h log.h evsignal.h evdns.3 \ - evrpc.h evrpc-internal.h min_heap.h \ - event.3 \ - Doxyfile \ - kqueue.c epoll_sub.c epoll.c select.c poll.c signal.c \ - evport.c devpoll.c event_rpcgen.py \ - sample/Makefile.am sample/Makefile.in sample/event-test.c \ - sample/signal-test.c sample/time-test.c \ - test/Makefile.am test/Makefile.in test/bench.c test/regress.c \ - test/test-eof.c test/test-weof.c test/test-time.c \ - test/test-init.c test/test.sh \ - compat/sys/queue.h compat/sys/_time.h \ - WIN32-Code/config.h \ - WIN32-Code/event-config.h \ - WIN32-Code/win32.c \ - WIN32-Code/tree.h \ - WIN32-Prj/event_test/event_test.dsp \ - WIN32-Prj/event_test/test.txt WIN32-Prj/libevent.dsp \ - WIN32-Prj/libevent.dsw WIN32-Prj/signal_test/signal_test.dsp \ - WIN32-Prj/time_test/time_test.dsp WIN32-Prj/regress/regress.vcproj \ - WIN32-Prj/libevent.sln WIN32-Prj/libevent.vcproj - -lib_LTLIBRARIES = libevent.la libevent_core.la libevent_extra.la - -if BUILD_WIN32 - -SUBDIRS = . sample -SYS_LIBS = -lws2_32 -SYS_SRC = WIN32-Code/win32.c -SYS_INCLUDES = -IWIN32-Code - -else - -SUBDIRS = . sample test -SYS_LIBS = -SYS_SRC = -SYS_INCLUDES = - -endif - -BUILT_SOURCES = event-config.h - -event-config.h: config.h - echo '/* event-config.h' > $@ - echo ' * Generated by autoconf; post-processed by libevent.' >> $@ - echo ' * Do not edit this file.' >> $@ - echo ' * Do not rely on macros in this file existing in later versions.'>> $@ - echo ' */' >> $@ - echo '#ifndef _EVENT_CONFIG_H_' >> $@ - echo '#define _EVENT_CONFIG_H_' >> $@ - - sed -e 's/#define /#define _EVENT_/' \ - -e 's/#undef /#undef _EVENT_/' \ - -e 's/#ifndef /#ifndef _EVENT_/' < config.h >> $@ - echo "#endif" >> $@ - -CORE_SRC = event.c buffer.c evbuffer.c log.c evutil.c $(SYS_SRC) -EXTRA_SRC = event_tagging.c http.c evhttp.h http-internal.h evdns.c \ - evdns.h evrpc.c evrpc.h evrpc-internal.h \ - strlcpy.c strlcpy-internal.h strlcpy-internal.h - -libevent_la_SOURCES = $(CORE_SRC) $(EXTRA_SRC) -libevent_la_LIBADD = @LTLIBOBJS@ $(SYS_LIBS) -libevent_la_LDFLAGS = -release $(RELEASE) -version-info $(VERSION_INFO) - -libevent_core_la_SOURCES = $(CORE_SRC) -libevent_core_la_LIBADD = @LTLIBOBJS@ $(SYS_LIBS) -libevent_core_la_LDFLAGS = -release $(RELEASE) -version-info $(VERSION_INFO) - -libevent_extra_la_SOURCES = $(EXTRA_SRC) -libevent_extra_la_LIBADD = @LTLIBOBJS@ $(SYS_LIBS) -libevent_extra_la_LDFLAGS = -release $(RELEASE) -version-info $(VERSION_INFO) - -include_HEADERS = event.h evhttp.h evdns.h evrpc.h evutil.h - -nodist_include_HEADERS = event-config.h - -INCLUDES = -I$(srcdir)/compat $(SYS_INCLUDES) - -man_MANS = event.3 evdns.3 - -verify: libevent.la - cd test && make verify - -doxygen: FORCE - doxygen $(srcdir)/Doxyfile -FORCE: - -DISTCLEANFILES = *~ event-config.h diff -Nru mysql-5.7-5.7.25/libevent/min_heap.h mysql-5.7-5.7.26/libevent/min_heap.h --- mysql-5.7-5.7.25/libevent/min_heap.h 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/min_heap.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,150 +0,0 @@ -/* - * Copyright (c) 2006 Maxim Yegorushkin - * All rights reserved. - * - * 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. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. - */ -#ifndef _MIN_HEAP_H_ -#define _MIN_HEAP_H_ - -#include "event.h" -#include "evutil.h" -#include "stdlib.h" - -typedef struct min_heap -{ - struct event** p; - unsigned n, a; -} min_heap_t; - -static inline void min_heap_ctor(min_heap_t* s); -static inline void min_heap_dtor(min_heap_t* s); -static inline void min_heap_elem_init(struct event* e); -static inline int min_heap_elem_greater(struct event *a, struct event *b); -static inline int min_heap_empty(min_heap_t* s); -static inline unsigned min_heap_size(min_heap_t* s); -static inline struct event* min_heap_top(min_heap_t* s); -static inline int min_heap_reserve(min_heap_t* s, unsigned n); -static inline int min_heap_push(min_heap_t* s, struct event* e); -static inline struct event* min_heap_pop(min_heap_t* s); -static inline int min_heap_erase(min_heap_t* s, struct event* e); -static inline void min_heap_shift_up_(min_heap_t* s, unsigned hole_index, struct event* e); -static inline void min_heap_shift_down_(min_heap_t* s, unsigned hole_index, struct event* e); - -int min_heap_elem_greater(struct event *a, struct event *b) -{ - return evutil_timercmp(&a->ev_timeout, &b->ev_timeout, >); -} - -void min_heap_ctor(min_heap_t* s) { s->p = 0; s->n = 0; s->a = 0; } -void min_heap_dtor(min_heap_t* s) { free(s->p); } -void min_heap_elem_init(struct event* e) { e->min_heap_idx = -1; } -int min_heap_empty(min_heap_t* s) { return 0u == s->n; } -unsigned min_heap_size(min_heap_t* s) { return s->n; } -struct event* min_heap_top(min_heap_t* s) { return s->n ? *s->p : 0; } - -int min_heap_push(min_heap_t* s, struct event* e) -{ - if(min_heap_reserve(s, s->n + 1)) - return -1; - min_heap_shift_up_(s, s->n++, e); - return 0; -} - -struct event* min_heap_pop(min_heap_t* s) -{ - if(s->n) - { - struct event* e = *s->p; - min_heap_shift_down_(s, 0u, s->p[--s->n]); - e->min_heap_idx = -1; - return e; - } - return 0; -} - -int min_heap_erase(min_heap_t* s, struct event* e) -{ - if(((unsigned int)-1) != e->min_heap_idx) - { - struct event *last = s->p[--s->n]; - unsigned parent = (e->min_heap_idx - 1) / 2; - /* we replace e with the last element in the heap. We might need to - shift it upward if it is less than its parent, or downward if it is - greater than one or both its children. Since the children are known - to be less than the parent, it can't need to shift both up and - down. */ - if (e->min_heap_idx > 0 && min_heap_elem_greater(s->p[parent], last)) - min_heap_shift_up_(s, e->min_heap_idx, last); - else - min_heap_shift_down_(s, e->min_heap_idx, last); - e->min_heap_idx = -1; - return 0; - } - return -1; -} - -int min_heap_reserve(min_heap_t* s, unsigned n) -{ - if(s->a < n) - { - struct event** p; - unsigned a = s->a ? s->a * 2 : 8; - if(a < n) - a = n; - if(!(p = (struct event**)realloc(s->p, a * sizeof *p))) - return -1; - s->p = p; - s->a = a; - } - return 0; -} - -void min_heap_shift_up_(min_heap_t* s, unsigned hole_index, struct event* e) -{ - unsigned parent = (hole_index - 1) / 2; - while(hole_index && min_heap_elem_greater(s->p[parent], e)) - { - (s->p[hole_index] = s->p[parent])->min_heap_idx = hole_index; - hole_index = parent; - parent = (hole_index - 1) / 2; - } - (s->p[hole_index] = e)->min_heap_idx = hole_index; -} - -void min_heap_shift_down_(min_heap_t* s, unsigned hole_index, struct event* e) -{ - unsigned min_child = 2 * (hole_index + 1); - while(min_child <= s->n) - { - min_child -= min_child == s->n || min_heap_elem_greater(s->p[min_child], s->p[min_child - 1]); - if(!(min_heap_elem_greater(e, s->p[min_child]))) - break; - (s->p[hole_index] = s->p[min_child])->min_heap_idx = hole_index; - hole_index = min_child; - min_child = 2 * (hole_index + 1); - } - min_heap_shift_up_(s, hole_index, e); -} - -#endif /* _MIN_HEAP_H_ */ diff -Nru mysql-5.7-5.7.25/libevent/poll.c mysql-5.7-5.7.26/libevent/poll.c --- mysql-5.7-5.7.25/libevent/poll.c 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/poll.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,379 +0,0 @@ -/* $OpenBSD: poll.c,v 1.2 2002/06/25 15:50:15 mickey Exp $ */ - -/* - * Copyright 2000-2003 Niels Provos - * All rights reserved. - * - * 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. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. - */ -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -#include -#ifdef HAVE_SYS_TIME_H -#include -#else -#include -#endif -#include -#include -#include -#include -#include -#include -#include -#include -#ifdef CHECK_INVARIANTS -#include -#endif - -#include "event.h" -#include "event-internal.h" -#include "evsignal.h" -#include "log.h" - -struct pollop { - int event_count; /* Highest number alloc */ - int nfds; /* Size of event_* */ - int fd_count; /* Size of idxplus1_by_fd */ - struct pollfd *event_set; - struct event **event_r_back; - struct event **event_w_back; - int *idxplus1_by_fd; /* Index into event_set by fd; we add 1 so - * that 0 (which is easy to memset) can mean - * "no entry." */ -}; - -static void *poll_init (struct event_base *); -static int poll_add (void *, struct event *); -static int poll_del (void *, struct event *); -static int poll_dispatch (struct event_base *, void *, struct timeval *); -static void poll_dealloc (struct event_base *, void *); - -const struct eventop pollops = { - "poll", - poll_init, - poll_add, - poll_del, - poll_dispatch, - poll_dealloc, - 0 -}; - -static void * -poll_init(struct event_base *base) -{ - struct pollop *pollop; - - /* Disable poll when this environment variable is set */ - if (getenv("EVENT_NOPOLL")) - return (NULL); - - if (!(pollop = calloc(1, sizeof(struct pollop)))) - return (NULL); - - evsignal_init(base); - - return (pollop); -} - -#ifdef CHECK_INVARIANTS -static void -poll_check_ok(struct pollop *pop) -{ - int i, idx; - struct event *ev; - - for (i = 0; i < pop->fd_count; ++i) { - idx = pop->idxplus1_by_fd[i]-1; - if (idx < 0) - continue; - assert(pop->event_set[idx].fd == i); - if (pop->event_set[idx].events & POLLIN) { - ev = pop->event_r_back[idx]; - assert(ev); - assert(ev->ev_events & EV_READ); - assert(ev->ev_fd == i); - } - if (pop->event_set[idx].events & POLLOUT) { - ev = pop->event_w_back[idx]; - assert(ev); - assert(ev->ev_events & EV_WRITE); - assert(ev->ev_fd == i); - } - } - for (i = 0; i < pop->nfds; ++i) { - struct pollfd *pfd = &pop->event_set[i]; - assert(pop->idxplus1_by_fd[pfd->fd] == i+1); - } -} -#else -#define poll_check_ok(pop) -#endif - -static int -poll_dispatch(struct event_base *base, void *arg, struct timeval *tv) -{ - int res, i, j, msec = -1, nfds; - struct pollop *pop = arg; - - poll_check_ok(pop); - - if (tv != NULL) - msec = tv->tv_sec * 1000 + (tv->tv_usec + 999) / 1000; - - nfds = pop->nfds; - res = poll(pop->event_set, nfds, msec); - - if (res == -1) { - if (errno != EINTR) { - event_warn("poll"); - return (-1); - } - - evsignal_process(base); - return (0); - } else if (base->sig.evsignal_caught) { - evsignal_process(base); - } - - event_debug(("%s: poll reports %d", __func__, res)); - - if (res == 0 || nfds == 0) - return (0); - - i = random() % nfds; - for (j = 0; j < nfds; j++) { - struct event *r_ev = NULL, *w_ev = NULL; - int what; - if (++i == nfds) - i = 0; - what = pop->event_set[i].revents; - - if (!what) - continue; - - res = 0; - - /* If the file gets closed notify */ - if (what & (POLLHUP|POLLERR)) - what |= POLLIN|POLLOUT; - if (what & POLLIN) { - res |= EV_READ; - r_ev = pop->event_r_back[i]; - } - if (what & POLLOUT) { - res |= EV_WRITE; - w_ev = pop->event_w_back[i]; - } - if (res == 0) - continue; - - if (r_ev && (res & r_ev->ev_events)) { - event_active(r_ev, res & r_ev->ev_events, 1); - } - if (w_ev && w_ev != r_ev && (res & w_ev->ev_events)) { - event_active(w_ev, res & w_ev->ev_events, 1); - } - } - - return (0); -} - -static int -poll_add(void *arg, struct event *ev) -{ - struct pollop *pop = arg; - struct pollfd *pfd = NULL; - int i; - - if (ev->ev_events & EV_SIGNAL) - return (evsignal_add(ev)); - if (!(ev->ev_events & (EV_READ|EV_WRITE))) - return (0); - - poll_check_ok(pop); - if (pop->nfds + 1 >= pop->event_count) { - struct pollfd *tmp_event_set; - struct event **tmp_event_r_back; - struct event **tmp_event_w_back; - int tmp_event_count; - - if (pop->event_count < 32) - tmp_event_count = 32; - else - tmp_event_count = pop->event_count * 2; - - /* We need more file descriptors */ - tmp_event_set = realloc(pop->event_set, - tmp_event_count * sizeof(struct pollfd)); - if (tmp_event_set == NULL) { - event_warn("realloc"); - return (-1); - } - pop->event_set = tmp_event_set; - - tmp_event_r_back = realloc(pop->event_r_back, - tmp_event_count * sizeof(struct event *)); - if (tmp_event_r_back == NULL) { - /* event_set overallocated; that's okay. */ - event_warn("realloc"); - return (-1); - } - pop->event_r_back = tmp_event_r_back; - - tmp_event_w_back = realloc(pop->event_w_back, - tmp_event_count * sizeof(struct event *)); - if (tmp_event_w_back == NULL) { - /* event_set and event_r_back overallocated; that's - * okay. */ - event_warn("realloc"); - return (-1); - } - pop->event_w_back = tmp_event_w_back; - - pop->event_count = tmp_event_count; - } - if (ev->ev_fd >= pop->fd_count) { - int *tmp_idxplus1_by_fd; - int new_count; - if (pop->fd_count < 32) - new_count = 32; - else - new_count = pop->fd_count * 2; - while (new_count <= ev->ev_fd) - new_count *= 2; - tmp_idxplus1_by_fd = - realloc(pop->idxplus1_by_fd, new_count * sizeof(int)); - if (tmp_idxplus1_by_fd == NULL) { - event_warn("realloc"); - return (-1); - } - pop->idxplus1_by_fd = tmp_idxplus1_by_fd; - memset(pop->idxplus1_by_fd + pop->fd_count, - 0, sizeof(int)*(new_count - pop->fd_count)); - pop->fd_count = new_count; - } - - i = pop->idxplus1_by_fd[ev->ev_fd] - 1; - if (i >= 0) { - pfd = &pop->event_set[i]; - } else { - i = pop->nfds++; - pfd = &pop->event_set[i]; - pfd->events = 0; - pfd->fd = ev->ev_fd; - pop->event_w_back[i] = pop->event_r_back[i] = NULL; - pop->idxplus1_by_fd[ev->ev_fd] = i + 1; - } - - pfd->revents = 0; - if (ev->ev_events & EV_WRITE) { - pfd->events |= POLLOUT; - pop->event_w_back[i] = ev; - } - if (ev->ev_events & EV_READ) { - pfd->events |= POLLIN; - pop->event_r_back[i] = ev; - } - poll_check_ok(pop); - - return (0); -} - -/* - * Nothing to be done here. - */ - -static int -poll_del(void *arg, struct event *ev) -{ - struct pollop *pop = arg; - struct pollfd *pfd = NULL; - int i; - - if (ev->ev_events & EV_SIGNAL) - return (evsignal_del(ev)); - - if (!(ev->ev_events & (EV_READ|EV_WRITE))) - return (0); - - poll_check_ok(pop); - i = pop->idxplus1_by_fd[ev->ev_fd] - 1; - if (i < 0) - return (-1); - - /* Do we still want to read or write? */ - pfd = &pop->event_set[i]; - if (ev->ev_events & EV_READ) { - pfd->events &= ~POLLIN; - pop->event_r_back[i] = NULL; - } - if (ev->ev_events & EV_WRITE) { - pfd->events &= ~POLLOUT; - pop->event_w_back[i] = NULL; - } - poll_check_ok(pop); - if (pfd->events) - /* Another event cares about that fd. */ - return (0); - - /* Okay, so we aren't interested in that fd anymore. */ - pop->idxplus1_by_fd[ev->ev_fd] = 0; - - --pop->nfds; - if (i != pop->nfds) { - /* - * Shift the last pollfd down into the now-unoccupied - * position. - */ - memcpy(&pop->event_set[i], &pop->event_set[pop->nfds], - sizeof(struct pollfd)); - pop->event_r_back[i] = pop->event_r_back[pop->nfds]; - pop->event_w_back[i] = pop->event_w_back[pop->nfds]; - pop->idxplus1_by_fd[pop->event_set[i].fd] = i + 1; - } - - poll_check_ok(pop); - return (0); -} - -static void -poll_dealloc(struct event_base *base, void *arg) -{ - struct pollop *pop = arg; - - evsignal_dealloc(base); - if (pop->event_set) - free(pop->event_set); - if (pop->event_r_back) - free(pop->event_r_back); - if (pop->event_w_back) - free(pop->event_w_back); - if (pop->idxplus1_by_fd) - free(pop->idxplus1_by_fd); - - memset(pop, 0, sizeof(struct pollop)); - free(pop); -} diff -Nru mysql-5.7-5.7.25/libevent/README mysql-5.7-5.7.26/libevent/README --- mysql-5.7-5.7.25/libevent/README 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/README 1970-01-01 00:00:00.000000000 +0000 @@ -1,57 +0,0 @@ -To build libevent, type - -$ ./configure && make - - (If you got libevent from the subversion repository, you will - first need to run the included "autogen.sh" script in order to - generate the configure script.) - -Install as root via - -# make install - -You can run the regression tests by - -$ make verify - -Before, reporting any problems, please run the regression tests. - -To enable the low-level tracing build the library as: - -CFLAGS=-DUSE_DEBUG ./configure [...] - -Acknowledgements: ------------------ - -The following people have helped with suggestions, ideas, code or -fixing bugs: - - Alejo - Weston Andros Adamson - William Ahern - Stas Bekman - Andrew Danforth - Mike Davis - Shie Erlich - Alexander von Gernler - Artur Grabowski - Aaron Hopkins - Claudio Jeker - Scott Lamb - Adam Langley - Philip Lewis - David Libenzi - Nick Mathewson - Andrey Matveev - Richard Nyberg - Jon Oberheide - Phil Oleson - Dave Pacheco - Tassilo von Parseval - Pierre Phaneuf - Jon Poland - Bert JW Regeer - Dug Song - Taral - -If I have forgotten your name, please contact me. diff -Nru mysql-5.7-5.7.25/libevent/sample/event-test.c mysql-5.7-5.7.26/libevent/sample/event-test.c --- mysql-5.7-5.7.25/libevent/sample/event-test.c 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/sample/event-test.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,139 +0,0 @@ -/* - * Compile with: - * cc -I/usr/local/include -o event-test event-test.c -L/usr/local/lib -levent - */ - -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -#include -#include -#ifndef WIN32 -#include -#include -#include -#else -#include -#endif -#include -#include -#include -#include -#include - -#include - -static void -fifo_read(int fd, short event, void *arg) -{ - char buf[255]; - int len; - struct event *ev = arg; -#ifdef WIN32 - DWORD dwBytesRead; -#endif - - /* Reschedule this event */ - event_add(ev, NULL); - - fprintf(stderr, "fifo_read called with fd: %d, event: %d, arg: %p\n", - fd, event, arg); -#ifdef WIN32 - len = ReadFile((HANDLE)fd, buf, sizeof(buf) - 1, &dwBytesRead, NULL); - - // Check for end of file. - if(len && dwBytesRead == 0) { - fprintf(stderr, "End Of File"); - event_del(ev); - return; - } - - buf[dwBytesRead] = '\0'; -#else - len = read(fd, buf, sizeof(buf) - 1); - - if (len == -1) { - perror("read"); - return; - } else if (len == 0) { - fprintf(stderr, "Connection closed\n"); - return; - } - - buf[len] = '\0'; -#endif - fprintf(stdout, "Read: %s\n", buf); -} - -int -main (int argc, char **argv) -{ - struct event evfifo; -#ifdef WIN32 - HANDLE socket; - // Open a file. - socket = CreateFile("test.txt", // open File - GENERIC_READ, // open for reading - 0, // do not share - NULL, // no security - OPEN_EXISTING, // existing file only - FILE_ATTRIBUTE_NORMAL, // normal file - NULL); // no attr. template - - if(socket == INVALID_HANDLE_VALUE) - return 1; - -#else - struct stat st; - const char *fifo = "event.fifo"; - int socket; - - if (lstat (fifo, &st) == 0) { - if ((st.st_mode & S_IFMT) == S_IFREG) { - errno = EEXIST; - perror("lstat"); - exit (1); - } - } - - unlink (fifo); - if (mkfifo (fifo, 0600) == -1) { - perror("mkfifo"); - exit (1); - } - - /* Linux pipes are broken, we need O_RDWR instead of O_RDONLY */ -#ifdef __linux - socket = open (fifo, O_RDWR | O_NONBLOCK, 0); -#else - socket = open (fifo, O_RDONLY | O_NONBLOCK, 0); -#endif - - if (socket == -1) { - perror("open"); - exit (1); - } - - fprintf(stderr, "Write data to %s\n", fifo); -#endif - /* Initalize the event library */ - event_init(); - - /* Initalize one event */ -#ifdef WIN32 - event_set(&evfifo, (int)socket, EV_READ, fifo_read, &evfifo); -#else - event_set(&evfifo, socket, EV_READ, fifo_read, &evfifo); -#endif - - /* Add it to the active events, without a timeout */ - event_add(&evfifo, NULL); - - event_dispatch(); -#ifdef WIN32 - CloseHandle(socket); -#endif - return (0); -} - diff -Nru mysql-5.7-5.7.25/libevent/sample/Makefile.am mysql-5.7-5.7.26/libevent/sample/Makefile.am --- mysql-5.7-5.7.25/libevent/sample/Makefile.am 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/sample/Makefile.am 1970-01-01 00:00:00.000000000 +0000 @@ -1,14 +0,0 @@ -AUTOMAKE_OPTIONS = foreign no-dependencies - -LDADD = ../libevent.la -AM_CFLAGS = -I$(top_srcdir) -I$(top_srcdir)/compat - -noinst_PROGRAMS = event-test time-test signal-test - -event_test_sources = event-test.c -time_test_sources = time-test.c -signal_test_sources = signal-test.c - -verify: - -DISTCLEANFILES = *~ diff -Nru mysql-5.7-5.7.25/libevent/sample/signal-test.c mysql-5.7-5.7.26/libevent/sample/signal-test.c --- mysql-5.7-5.7.25/libevent/sample/signal-test.c 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/sample/signal-test.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,63 +0,0 @@ -/* - * Compile with: - * cc -I/usr/local/include -o signal-test \ - * signal-test.c -L/usr/local/lib -levent - */ - -#include - -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -#include -#ifndef WIN32 -#include -#include -#include -#else -#include -#endif -#include -#include -#include -#include -#include -#include - -#include - -int called = 0; - -static void -signal_cb(int fd, short event, void *arg) -{ - struct event *signal = arg; - - printf("%s: got signal %d\n", __func__, EVENT_SIGNAL(signal)); - - if (called >= 2) - event_del(signal); - - called++; -} - -int -main (int argc, char **argv) -{ - struct event signal_int; - - /* Initalize the event library */ - event_init(); - - /* Initalize one event */ - event_set(&signal_int, SIGINT, EV_SIGNAL|EV_PERSIST, signal_cb, - &signal_int); - - event_add(&signal_int, NULL); - - event_dispatch(); - - return (0); -} - diff -Nru mysql-5.7-5.7.25/libevent/sample/time-test.c mysql-5.7-5.7.26/libevent/sample/time-test.c --- mysql-5.7-5.7.25/libevent/sample/time-test.c 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/sample/time-test.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,70 +0,0 @@ -/* - * Compile with: - * cc -I/usr/local/include -o time-test time-test.c -L/usr/local/lib -levent - */ - -#include - -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -#include -#ifndef WIN32 -#include -#include -#endif -#include -#ifdef HAVE_SYS_TIME_H -#include -#endif -#include -#include -#include -#include -#include - -#include -#include - -int lasttime; - -static void -timeout_cb(int fd, short event, void *arg) -{ - struct timeval tv; - struct event *timeout = arg; - int newtime = time(NULL); - - printf("%s: called at %d: %d\n", __func__, newtime, - newtime - lasttime); - lasttime = newtime; - - evutil_timerclear(&tv); - tv.tv_sec = 2; - event_add(timeout, &tv); -} - -int -main (int argc, char **argv) -{ - struct event timeout; - struct timeval tv; - - /* Initalize the event library */ - event_init(); - - /* Initalize one event */ - evtimer_set(&timeout, timeout_cb, &timeout); - - evutil_timerclear(&tv); - tv.tv_sec = 2; - event_add(&timeout, &tv); - - lasttime = time(NULL); - - event_dispatch(); - - return (0); -} - diff -Nru mysql-5.7-5.7.25/libevent/select.c mysql-5.7-5.7.26/libevent/select.c --- mysql-5.7-5.7.25/libevent/select.c 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/select.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,356 +0,0 @@ -/* $OpenBSD: select.c,v 1.2 2002/06/25 15:50:15 mickey Exp $ */ - -/* - * Copyright 2000-2002 Niels Provos - * All rights reserved. - * - * 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. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. - */ -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -#include -#ifdef HAVE_SYS_TIME_H -#include -#else -#include -#endif -#ifdef HAVE_SYS_SELECT_H -#include -#endif -#include -#include -#include -#include -#include -#include -#include -#ifdef CHECK_INVARIANTS -#include -#endif - -#include "event.h" -#include "event-internal.h" -#include "evsignal.h" -#include "log.h" - -#ifndef howmany -#define howmany(x, y) (((x)+((y)-1))/(y)) -#endif - -struct selectop { - int event_fds; /* Highest fd in fd set */ - int event_fdsz; - fd_set *event_readset_in; - fd_set *event_writeset_in; - fd_set *event_readset_out; - fd_set *event_writeset_out; - struct event **event_r_by_fd; - struct event **event_w_by_fd; -}; - -static void *select_init (struct event_base *); -static int select_add (void *, struct event *); -static int select_del (void *, struct event *); -static int select_dispatch (struct event_base *, void *, struct timeval *); -static void select_dealloc (struct event_base *, void *); - -const struct eventop selectops = { - "select", - select_init, - select_add, - select_del, - select_dispatch, - select_dealloc, - 0 -}; - -static int select_resize(struct selectop *sop, int fdsz); - -static void * -select_init(struct event_base *base) -{ - struct selectop *sop; - - /* Disable select when this environment variable is set */ - if (getenv("EVENT_NOSELECT")) - return (NULL); - - if (!(sop = calloc(1, sizeof(struct selectop)))) - return (NULL); - - select_resize(sop, howmany(32 + 1, NFDBITS)*sizeof(fd_mask)); - - evsignal_init(base); - - return (sop); -} - -#ifdef CHECK_INVARIANTS -static void -check_selectop(struct selectop *sop) -{ - int i; - for (i = 0; i <= sop->event_fds; ++i) { - if (FD_ISSET(i, sop->event_readset_in)) { - assert(sop->event_r_by_fd[i]); - assert(sop->event_r_by_fd[i]->ev_events & EV_READ); - assert(sop->event_r_by_fd[i]->ev_fd == i); - } else { - assert(! sop->event_r_by_fd[i]); - } - if (FD_ISSET(i, sop->event_writeset_in)) { - assert(sop->event_w_by_fd[i]); - assert(sop->event_w_by_fd[i]->ev_events & EV_WRITE); - assert(sop->event_w_by_fd[i]->ev_fd == i); - } else { - assert(! sop->event_w_by_fd[i]); - } - } - -} -#else -#define check_selectop(sop) do { (void) sop; } while (0) -#endif - -static int -select_dispatch(struct event_base *base, void *arg, struct timeval *tv) -{ - int res, i, j; - struct selectop *sop = arg; - - check_selectop(sop); - - memcpy(sop->event_readset_out, sop->event_readset_in, - sop->event_fdsz); - memcpy(sop->event_writeset_out, sop->event_writeset_in, - sop->event_fdsz); - - res = select(sop->event_fds + 1, sop->event_readset_out, - sop->event_writeset_out, NULL, tv); - - check_selectop(sop); - - if (res == -1) { - if (errno != EINTR) { - event_warn("select"); - return (-1); - } - - evsignal_process(base); - return (0); - } else if (base->sig.evsignal_caught) { - evsignal_process(base); - } - - event_debug(("%s: select reports %d", __func__, res)); - - check_selectop(sop); - i = random() % (sop->event_fds+1); - for (j = 0; j <= sop->event_fds; ++j) { - struct event *r_ev = NULL, *w_ev = NULL; - if (++i >= sop->event_fds+1) - i = 0; - - res = 0; - if (FD_ISSET(i, sop->event_readset_out)) { - r_ev = sop->event_r_by_fd[i]; - res |= EV_READ; - } - if (FD_ISSET(i, sop->event_writeset_out)) { - w_ev = sop->event_w_by_fd[i]; - res |= EV_WRITE; - } - if (r_ev && (res & r_ev->ev_events)) { - event_active(r_ev, res & r_ev->ev_events, 1); - } - if (w_ev && w_ev != r_ev && (res & w_ev->ev_events)) { - event_active(w_ev, res & w_ev->ev_events, 1); - } - } - check_selectop(sop); - - return (0); -} - - -static int -select_resize(struct selectop *sop, int fdsz) -{ - int n_events, n_events_old; - - fd_set *readset_in = NULL; - fd_set *writeset_in = NULL; - fd_set *readset_out = NULL; - fd_set *writeset_out = NULL; - struct event **r_by_fd = NULL; - struct event **w_by_fd = NULL; - - n_events = (fdsz/sizeof(fd_mask)) * NFDBITS; - n_events_old = (sop->event_fdsz/sizeof(fd_mask)) * NFDBITS; - - if (sop->event_readset_in) - check_selectop(sop); - - if ((readset_in = realloc(sop->event_readset_in, fdsz)) == NULL) - goto error; - sop->event_readset_in = readset_in; - if ((readset_out = realloc(sop->event_readset_out, fdsz)) == NULL) - goto error; - sop->event_readset_out = readset_out; - if ((writeset_in = realloc(sop->event_writeset_in, fdsz)) == NULL) - goto error; - sop->event_writeset_in = writeset_in; - if ((writeset_out = realloc(sop->event_writeset_out, fdsz)) == NULL) - goto error; - sop->event_writeset_out = writeset_out; - if ((r_by_fd = realloc(sop->event_r_by_fd, - n_events*sizeof(struct event*))) == NULL) - goto error; - sop->event_r_by_fd = r_by_fd; - if ((w_by_fd = realloc(sop->event_w_by_fd, - n_events * sizeof(struct event*))) == NULL) - goto error; - sop->event_w_by_fd = w_by_fd; - - memset((char *)sop->event_readset_in + sop->event_fdsz, 0, - fdsz - sop->event_fdsz); - memset((char *)sop->event_writeset_in + sop->event_fdsz, 0, - fdsz - sop->event_fdsz); - memset(sop->event_r_by_fd + n_events_old, 0, - (n_events-n_events_old) * sizeof(struct event*)); - memset(sop->event_w_by_fd + n_events_old, 0, - (n_events-n_events_old) * sizeof(struct event*)); - - sop->event_fdsz = fdsz; - check_selectop(sop); - - return (0); - - error: - event_warn("malloc"); - return (-1); -} - - -static int -select_add(void *arg, struct event *ev) -{ - struct selectop *sop = arg; - - if (ev->ev_events & EV_SIGNAL) - return (evsignal_add(ev)); - - check_selectop(sop); - /* - * Keep track of the highest fd, so that we can calculate the size - * of the fd_sets for select(2) - */ - if (sop->event_fds < ev->ev_fd) { - int fdsz = sop->event_fdsz; - - if (fdsz < sizeof(fd_mask)) - fdsz = sizeof(fd_mask); - - while (fdsz < - (howmany(ev->ev_fd + 1, NFDBITS) * sizeof(fd_mask))) - fdsz *= 2; - - if (fdsz != sop->event_fdsz) { - if (select_resize(sop, fdsz)) { - check_selectop(sop); - return (-1); - } - } - - sop->event_fds = ev->ev_fd; - } - - if (ev->ev_events & EV_READ) { - FD_SET(ev->ev_fd, sop->event_readset_in); - sop->event_r_by_fd[ev->ev_fd] = ev; - } - if (ev->ev_events & EV_WRITE) { - FD_SET(ev->ev_fd, sop->event_writeset_in); - sop->event_w_by_fd[ev->ev_fd] = ev; - } - check_selectop(sop); - - return (0); -} - -/* - * Nothing to be done here. - */ - -static int -select_del(void *arg, struct event *ev) -{ - struct selectop *sop = arg; - - check_selectop(sop); - if (ev->ev_events & EV_SIGNAL) - return (evsignal_del(ev)); - - if (sop->event_fds < ev->ev_fd) { - check_selectop(sop); - return (0); - } - - if (ev->ev_events & EV_READ) { - FD_CLR(ev->ev_fd, sop->event_readset_in); - sop->event_r_by_fd[ev->ev_fd] = NULL; - } - - if (ev->ev_events & EV_WRITE) { - FD_CLR(ev->ev_fd, sop->event_writeset_in); - sop->event_w_by_fd[ev->ev_fd] = NULL; - } - - check_selectop(sop); - return (0); -} - -static void -select_dealloc(struct event_base *base, void *arg) -{ - struct selectop *sop = arg; - - evsignal_dealloc(base); - if (sop->event_readset_in) - free(sop->event_readset_in); - if (sop->event_writeset_in) - free(sop->event_writeset_in); - if (sop->event_readset_out) - free(sop->event_readset_out); - if (sop->event_writeset_out) - free(sop->event_writeset_out); - if (sop->event_r_by_fd) - free(sop->event_r_by_fd); - if (sop->event_w_by_fd) - free(sop->event_w_by_fd); - - memset(sop, 0, sizeof(struct selectop)); - free(sop); -} diff -Nru mysql-5.7-5.7.25/libevent/signal.c mysql-5.7-5.7.26/libevent/signal.c --- mysql-5.7-5.7.25/libevent/signal.c 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/signal.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,357 +0,0 @@ -/* $OpenBSD: select.c,v 1.2 2002/06/25 15:50:15 mickey Exp $ */ - -/* - * Copyright 2000-2002 Niels Provos - * All rights reserved. - * - * 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. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. - */ -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -#ifdef WIN32 -#define WIN32_LEAN_AND_MEAN -#include -#include -#undef WIN32_LEAN_AND_MEAN -#endif -#include -#ifdef HAVE_SYS_TIME_H -#include -#endif -#include -#ifdef HAVE_SYS_SOCKET_H -#include -#endif -#include -#include -#include -#include -#ifdef HAVE_UNISTD_H -#include -#endif -#include -#ifdef HAVE_FCNTL_H -#include -#endif -#include - -#include "event.h" -#include "event-internal.h" -#include "evsignal.h" -#include "evutil.h" -#include "log.h" - -struct event_base *evsignal_base = NULL; - -static void evsignal_handler(int sig); - -/* Callback for when the signal handler write a byte to our signaling socket */ -static void -evsignal_cb(int fd, short what, void *arg) -{ - static char signals[1]; -#ifdef WIN32 - SSIZE_T n; -#else - ssize_t n; -#endif - - n = recv(fd, signals, sizeof(signals), 0); - if (n == -1) - event_err(1, "%s: read", __func__); -} - -#ifdef HAVE_SETFD -#define FD_CLOSEONEXEC(x) do { \ - if (fcntl(x, F_SETFD, 1) == -1) \ - event_warn("fcntl(%d, F_SETFD)", x); \ -} while (0) -#else -#define FD_CLOSEONEXEC(x) -#endif - -int -evsignal_init(struct event_base *base) -{ - int i; - - /* - * Our signal handler is going to write to one end of the socket - * pair to wake up our event loop. The event loop then scans for - * signals that got delivered. - */ - if (evutil_socketpair( - AF_UNIX, SOCK_STREAM, 0, base->sig.ev_signal_pair) == -1) { -#ifdef WIN32 - /* Make this nonfatal on win32, where sometimes people - have localhost firewalled. */ - event_warn("%s: socketpair", __func__); -#else - event_err(1, "%s: socketpair", __func__); -#endif - return -1; - } - - FD_CLOSEONEXEC(base->sig.ev_signal_pair[0]); - FD_CLOSEONEXEC(base->sig.ev_signal_pair[1]); - base->sig.sh_old = NULL; - base->sig.sh_old_max = 0; - base->sig.evsignal_caught = 0; - memset(&base->sig.evsigcaught, 0, sizeof(sig_atomic_t)*NSIG); - /* initialize the queues for all events */ - for (i = 0; i < NSIG; ++i) - TAILQ_INIT(&base->sig.evsigevents[i]); - - evutil_make_socket_nonblocking(base->sig.ev_signal_pair[0]); - - event_set(&base->sig.ev_signal, base->sig.ev_signal_pair[1], - EV_READ | EV_PERSIST, evsignal_cb, &base->sig.ev_signal); - base->sig.ev_signal.ev_base = base; - base->sig.ev_signal.ev_flags |= EVLIST_INTERNAL; - - return 0; -} - -/* Helper: set the signal handler for evsignal to handler in base, so that - * we can restore the original handler when we clear the current one. */ -int -_evsignal_set_handler(struct event_base *base, - int evsignal, void (*handler)(int)) -{ -#ifdef HAVE_SIGACTION - struct sigaction sa; -#else - ev_sighandler_t sh; -#endif - struct evsignal_info *sig = &base->sig; - void *p; - - /* - * resize saved signal handler array up to the highest signal number. - * a dynamic array is used to keep footprint on the low side. - */ - if (evsignal >= sig->sh_old_max) { - int new_max = evsignal + 1; - event_debug(("%s: evsignal (%d) >= sh_old_max (%d), resizing", - __func__, evsignal, sig->sh_old_max)); - p = realloc(sig->sh_old, new_max * sizeof(*sig->sh_old)); - if (p == NULL) { - event_warn("realloc"); - return (-1); - } - - memset((char *)p + sig->sh_old_max * sizeof(*sig->sh_old), - 0, (new_max - sig->sh_old_max) * sizeof(*sig->sh_old)); - - sig->sh_old_max = new_max; - sig->sh_old = p; - } - - /* allocate space for previous handler out of dynamic array */ - sig->sh_old[evsignal] = malloc(sizeof *sig->sh_old[evsignal]); - if (sig->sh_old[evsignal] == NULL) { - event_warn("malloc"); - return (-1); - } - - /* save previous handler and setup new handler */ -#ifdef HAVE_SIGACTION - memset(&sa, 0, sizeof(sa)); - sa.sa_handler = handler; - sa.sa_flags |= SA_RESTART; - sigfillset(&sa.sa_mask); - - if (sigaction(evsignal, &sa, sig->sh_old[evsignal]) == -1) { - event_warn("sigaction"); - free(sig->sh_old[evsignal]); - return (-1); - } -#else - if ((sh = signal(evsignal, handler)) == SIG_ERR) { - event_warn("signal"); - free(sig->sh_old[evsignal]); - return (-1); - } - *sig->sh_old[evsignal] = sh; -#endif - - return (0); -} - -int -evsignal_add(struct event *ev) -{ - int evsignal; - struct event_base *base = ev->ev_base; - struct evsignal_info *sig = &ev->ev_base->sig; - - if (ev->ev_events & (EV_READ|EV_WRITE)) - event_errx(1, "%s: EV_SIGNAL incompatible use", __func__); - evsignal = EVENT_SIGNAL(ev); - assert(evsignal >= 0 && evsignal < NSIG); - if (TAILQ_EMPTY(&sig->evsigevents[evsignal])) { - event_debug(("%s: %p: changing signal handler", __func__, ev)); - if (_evsignal_set_handler( - base, evsignal, evsignal_handler) == -1) - return (-1); - - /* catch signals if they happen quickly */ - evsignal_base = base; - - if (!sig->ev_signal_added) { - if (event_add(&sig->ev_signal, NULL)) - return (-1); - sig->ev_signal_added = 1; - } - } - - /* multiple events may listen to the same signal */ - TAILQ_INSERT_TAIL(&sig->evsigevents[evsignal], ev, ev_signal_next); - - return (0); -} - -int -_evsignal_restore_handler(struct event_base *base, int evsignal) -{ - int ret = 0; - struct evsignal_info *sig = &base->sig; -#ifdef HAVE_SIGACTION - struct sigaction *sh; -#else - ev_sighandler_t *sh; -#endif - - /* restore previous handler */ - sh = sig->sh_old[evsignal]; - sig->sh_old[evsignal] = NULL; -#ifdef HAVE_SIGACTION - if (sigaction(evsignal, sh, NULL) == -1) { - event_warn("sigaction"); - ret = -1; - } -#else - if (signal(evsignal, *sh) == SIG_ERR) { - event_warn("signal"); - ret = -1; - } -#endif - free(sh); - - return ret; -} - -int -evsignal_del(struct event *ev) -{ - struct event_base *base = ev->ev_base; - struct evsignal_info *sig = &base->sig; - int evsignal = EVENT_SIGNAL(ev); - - assert(evsignal >= 0 && evsignal < NSIG); - - /* multiple events may listen to the same signal */ - TAILQ_REMOVE(&sig->evsigevents[evsignal], ev, ev_signal_next); - - if (!TAILQ_EMPTY(&sig->evsigevents[evsignal])) - return (0); - - event_debug(("%s: %p: restoring signal handler", __func__, ev)); - - return (_evsignal_restore_handler(ev->ev_base, EVENT_SIGNAL(ev))); -} - -static void -evsignal_handler(int sig) -{ - int save_errno = errno; - - if (evsignal_base == NULL) { - event_warn( - "%s: received signal %d, but have no base configured", - __func__, sig); - return; - } - - evsignal_base->sig.evsigcaught[sig]++; - evsignal_base->sig.evsignal_caught = 1; - -#ifndef HAVE_SIGACTION - signal(sig, evsignal_handler); -#endif - - /* Wake up our notification mechanism */ - send(evsignal_base->sig.ev_signal_pair[0], "a", 1, 0); - errno = save_errno; -} - -void -evsignal_process(struct event_base *base) -{ - struct evsignal_info *sig = &base->sig; - struct event *ev, *next_ev; - sig_atomic_t ncalls; - int i; - - base->sig.evsignal_caught = 0; - for (i = 1; i < NSIG; ++i) { - ncalls = sig->evsigcaught[i]; - if (ncalls == 0) - continue; - sig->evsigcaught[i] -= ncalls; - - for (ev = TAILQ_FIRST(&sig->evsigevents[i]); - ev != NULL; ev = next_ev) { - next_ev = TAILQ_NEXT(ev, ev_signal_next); - if (!(ev->ev_events & EV_PERSIST)) - event_del(ev); - event_active(ev, EV_SIGNAL, ncalls); - } - - } -} - -void -evsignal_dealloc(struct event_base *base) -{ - int i = 0; - if (base->sig.ev_signal_added) { - event_del(&base->sig.ev_signal); - base->sig.ev_signal_added = 0; - } - for (i = 0; i < NSIG; ++i) { - if (i < base->sig.sh_old_max && base->sig.sh_old[i] != NULL) - _evsignal_restore_handler(base, i); - } - - EVUTIL_CLOSESOCKET(base->sig.ev_signal_pair[0]); - base->sig.ev_signal_pair[0] = -1; - EVUTIL_CLOSESOCKET(base->sig.ev_signal_pair[1]); - base->sig.ev_signal_pair[1] = -1; - base->sig.sh_old_max = 0; - - /* per index frees are handled in evsignal_del() */ - free(base->sig.sh_old); -} diff -Nru mysql-5.7-5.7.25/libevent/strlcpy.c mysql-5.7-5.7.26/libevent/strlcpy.c --- mysql-5.7-5.7.25/libevent/strlcpy.c 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/strlcpy.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,76 +0,0 @@ -/* $OpenBSD: strlcpy.c,v 1.5 2001/05/13 15:40:16 deraadt Exp $ */ - -/* - * Copyright (c) 1998 Todd C. Miller - * All rights reserved. - * - * 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. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED ``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 AUTHOR 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. - */ - -#if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: strlcpy.c,v 1.5 2001/05/13 15:40:16 deraadt Exp $"; -#endif /* LIBC_SCCS and not lint */ - -#include - -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif /* HAVE_CONFIG_H */ - -#ifndef HAVE_STRLCPY -#include "strlcpy-internal.h" - -/* - * Copy src to string dst of size siz. At most siz-1 characters - * will be copied. Always NUL terminates (unless siz == 0). - * Returns strlen(src); if retval >= siz, truncation occurred. - */ -size_t -_event_strlcpy(dst, src, siz) - char *dst; - const char *src; - size_t siz; -{ - char *d = dst; - const char *s = src; - size_t n = siz; - - /* Copy as many bytes as will fit */ - if (n != 0 && --n != 0) { - do { - if ((*d++ = *s++) == 0) - break; - } while (--n != 0); - } - - /* Not enough room in dst, add NUL and traverse rest of src */ - if (n == 0) { - if (siz != 0) - *d = '\0'; /* NUL-terminate dst */ - while (*s++) - ; - } - - return(s - src - 1); /* count does not include NUL */ -} -#endif diff -Nru mysql-5.7-5.7.25/libevent/strlcpy-internal.h mysql-5.7-5.7.26/libevent/strlcpy-internal.h --- mysql-5.7-5.7.25/libevent/strlcpy-internal.h 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/strlcpy-internal.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,23 +0,0 @@ -#ifndef _STRLCPY_INTERNAL_H_ -#define _STRLCPY_INTERNAL_H_ - -#ifdef __cplusplus -extern "C" { -#endif - -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif /* HAVE_CONFIG_H */ - -#ifndef HAVE_STRLCPY -#include -size_t _event_strlcpy(char *dst, const char *src, size_t siz); -#define strlcpy _event_strlcpy -#endif - -#ifdef __cplusplus -} -#endif - -#endif - diff -Nru mysql-5.7-5.7.25/libevent/test/bench.c mysql-5.7-5.7.26/libevent/test/bench.c --- mysql-5.7-5.7.25/libevent/test/bench.c 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/test/bench.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,188 +0,0 @@ -/* - * Copyright 2003 Niels Provos - * All rights reserved. - * - * 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. - * 4. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. - * - * - * Mon 03/10/2003 - Modified by Davide Libenzi - * - * Added chain event propagation to improve the sensitivity of - * the measure respect to the event loop efficency. - * - * - */ - -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -#include -#include -#include -#ifdef WIN32 -#include -#else -#include -#include -#include -#endif -#include -#include -#include -#include -#include -#include - -#include -#include - - -static int count, writes, fired; -static int *pipes; -static int num_pipes, num_active, num_writes; -static struct event *events; - -static void -read_cb(int fd, short which, void *arg) -{ - long idx = (long) arg, widx = idx + 1; - u_char ch; - - count += read(fd, &ch, sizeof(ch)); - if (writes) { - if (widx >= num_pipes) - widx -= num_pipes; - write(pipes[2 * widx + 1], "e", 1); - writes--; - fired++; - } -} - -static struct timeval * -run_once(void) -{ - int *cp, space; - long i; - static struct timeval ts, te; - - for (cp = pipes, i = 0; i < num_pipes; i++, cp += 2) { - event_del(&events[i]); - event_set(&events[i], cp[0], EV_READ | EV_PERSIST, read_cb, (void *) i); - event_add(&events[i], NULL); - } - - event_loop(EVLOOP_ONCE | EVLOOP_NONBLOCK); - - fired = 0; - space = num_pipes / num_active; - space = space * 2; - for (i = 0; i < num_active; i++, fired++) - write(pipes[i * space + 1], "e", 1); - - count = 0; - writes = num_writes; - { int xcount = 0; - gettimeofday(&ts, NULL); - do { - event_loop(EVLOOP_ONCE | EVLOOP_NONBLOCK); - xcount++; - } while (count != fired); - gettimeofday(&te, NULL); - - if (xcount != count) fprintf(stderr, "Xcount: %d, Rcount: %d\n", xcount, count); - } - - evutil_timersub(&te, &ts, &te); - - return (&te); -} - -int -main (int argc, char **argv) -{ -#ifndef WIN32 - struct rlimit rl; -#endif - int i, c; - struct timeval *tv; - int *cp; - - num_pipes = 100; - num_active = 1; - num_writes = num_pipes; - while ((c = getopt(argc, argv, "n:a:w:")) != -1) { - switch (c) { - case 'n': - num_pipes = atoi(optarg); - break; - case 'a': - num_active = atoi(optarg); - break; - case 'w': - num_writes = atoi(optarg); - break; - default: - fprintf(stderr, "Illegal argument \"%c\"\n", c); - exit(1); - } - } - -#ifndef WIN32 - rl.rlim_cur = rl.rlim_max = num_pipes * 2 + 50; - if (setrlimit(RLIMIT_NOFILE, &rl) == -1) { - perror("setrlimit"); - exit(1); - } -#endif - - events = calloc(num_pipes, sizeof(struct event)); - pipes = calloc(num_pipes * 2, sizeof(int)); - if (events == NULL || pipes == NULL) { - perror("malloc"); - exit(1); - } - - event_init(); - - for (cp = pipes, i = 0; i < num_pipes; i++, cp += 2) { -#ifdef USE_PIPES - if (pipe(cp) == -1) { -#else - if (evutil_socketpair(AF_UNIX, SOCK_STREAM, 0, cp) == -1) { -#endif - perror("pipe"); - exit(1); - } - } - - for (i = 0; i < 25; i++) { - tv = run_once(); - if (tv == NULL) - exit(1); - fprintf(stdout, "%ld\n", - tv->tv_sec * 1000000L + tv->tv_usec); - } - - exit(0); -} diff -Nru mysql-5.7-5.7.25/libevent/test/Makefile.am mysql-5.7-5.7.26/libevent/test/Makefile.am --- mysql-5.7-5.7.25/libevent/test/Makefile.am 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/test/Makefile.am 1970-01-01 00:00:00.000000000 +0000 @@ -1,35 +0,0 @@ -AUTOMAKE_OPTIONS = foreign no-dependencies - -AM_CFLAGS = -I$(top_srcdir) -I$(top_srcdir)/compat - -EXTRA_DIST = regress.rpc regress.gen.h regress.gen.c - -noinst_PROGRAMS = test-init test-eof test-weof test-time regress bench - -BUILT_SOURCES = regress.gen.c regress.gen.h -test_init_SOURCES = test-init.c -test_init_LDADD = ../libevent_core.la -test_eof_SOURCES = test-eof.c -test_eof_LDADD = ../libevent_core.la -test_weof_SOURCES = test-weof.c -test_weof_LDADD = ../libevent_core.la -test_time_SOURCES = test-time.c -test_time_LDADD = ../libevent_core.la -regress_SOURCES = regress.c regress.h regress_http.c regress_dns.c \ - regress_rpc.c \ - regress.gen.c regress.gen.h -regress_LDADD = ../libevent.la -bench_SOURCES = bench.c -bench_LDADD = ../libevent.la - -regress.gen.c regress.gen.h: regress.rpc $(top_srcdir)/event_rpcgen.py - $(top_srcdir)/event_rpcgen.py $(srcdir)/regress.rpc || echo "No Python installed" - -DISTCLEANFILES = *~ - -test: test-init test-eof test-weof test-time regress - -verify: test - @$(srcdir)/test.sh - -bench test-init test-eof test-weof test-time: ../libevent.la diff -Nru mysql-5.7-5.7.25/libevent/test/regress.c mysql-5.7-5.7.26/libevent/test/regress.c --- mysql-5.7-5.7.25/libevent/test/regress.c 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/test/regress.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,1703 +0,0 @@ -/* - * Copyright (c) 2003, 2004 Niels Provos - * All rights reserved. - * - * 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. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. - */ - -#ifdef WIN32 -#include -#include -#endif - -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -#include -#include -#ifdef HAVE_SYS_TIME_H -#include -#endif -#include -#ifndef WIN32 -#include -#include -#include -#include -#include -#endif -#include -#include -#include -#include -#include -#include -#include - -#include "event.h" -#include "evutil.h" -#include "event-internal.h" -#include "log.h" - -#include "regress.h" -#ifndef WIN32 -#include "regress.gen.h" -#endif - -int pair[2]; -int test_ok; -static int called; -static char wbuf[4096]; -static char rbuf[4096]; -static int woff; -static int roff; -static int usepersist; -static struct timeval tset; -static struct timeval tcalled; -static struct event_base *global_base; - -#define TEST1 "this is a test" -#define SECONDS 1 - -#ifndef SHUT_WR -#define SHUT_WR 1 -#endif - -#ifdef WIN32 -#define write(fd,buf,len) send((fd),(buf),(len),0) -#define read(fd,buf,len) recv((fd),(buf),(len),0) -#endif - -static void -simple_read_cb(int fd, short event, void *arg) -{ - char buf[256]; - int len; - - if (arg == NULL) - return; - - len = read(fd, buf, sizeof(buf)); - - if (len) { - if (!called) { - if (event_add(arg, NULL) == -1) - exit(1); - } - } else if (called == 1) - test_ok = 1; - - called++; -} - -static void -simple_write_cb(int fd, short event, void *arg) -{ - int len; - - if (arg == NULL) - return; - - len = write(fd, TEST1, strlen(TEST1) + 1); - if (len == -1) - test_ok = 0; - else - test_ok = 1; -} - -static void -multiple_write_cb(int fd, short event, void *arg) -{ - struct event *ev = arg; - int len; - - len = 128; - if (woff + len >= sizeof(wbuf)) - len = sizeof(wbuf) - woff; - - len = write(fd, wbuf + woff, len); - if (len == -1) { - fprintf(stderr, "%s: write\n", __func__); - if (usepersist) - event_del(ev); - return; - } - - woff += len; - - if (woff >= sizeof(wbuf)) { - shutdown(fd, SHUT_WR); - if (usepersist) - event_del(ev); - return; - } - - if (!usepersist) { - if (event_add(ev, NULL) == -1) - exit(1); - } -} - -static void -multiple_read_cb(int fd, short event, void *arg) -{ - struct event *ev = arg; - int len; - - len = read(fd, rbuf + roff, sizeof(rbuf) - roff); - if (len == -1) - fprintf(stderr, "%s: read\n", __func__); - if (len <= 0) { - if (usepersist) - event_del(ev); - return; - } - - roff += len; - if (!usepersist) { - if (event_add(ev, NULL) == -1) - exit(1); - } -} - -static void -timeout_cb(int fd, short event, void *arg) -{ - struct timeval tv; - int diff; - - evutil_gettimeofday(&tcalled, NULL); - if (evutil_timercmp(&tcalled, &tset, >)) - evutil_timersub(&tcalled, &tset, &tv); - else - evutil_timersub(&tset, &tcalled, &tv); - - diff = tv.tv_sec*1000 + tv.tv_usec/1000 - SECONDS * 1000; - if (diff < 0) - diff = -diff; - - if (diff < 100) - test_ok = 1; -} - -#ifndef WIN32 -static void -signal_cb_sa(int sig) -{ - test_ok = 2; -} - -static void -signal_cb(int fd, short event, void *arg) -{ - struct event *ev = arg; - - signal_del(ev); - test_ok = 1; -} -#endif - -struct both { - struct event ev; - int nread; -}; - -static void -combined_read_cb(int fd, short event, void *arg) -{ - struct both *both = arg; - char buf[128]; - int len; - - len = read(fd, buf, sizeof(buf)); - if (len == -1) - fprintf(stderr, "%s: read\n", __func__); - if (len <= 0) - return; - - both->nread += len; - if (event_add(&both->ev, NULL) == -1) - exit(1); -} - -static void -combined_write_cb(int fd, short event, void *arg) -{ - struct both *both = arg; - char buf[128]; - int len; - - len = sizeof(buf); - if (len > both->nread) - len = both->nread; - - len = write(fd, buf, len); - if (len == -1) - fprintf(stderr, "%s: write\n", __func__); - if (len <= 0) { - shutdown(fd, SHUT_WR); - return; - } - - both->nread -= len; - if (event_add(&both->ev, NULL) == -1) - exit(1); -} - -/* Test infrastructure */ - -static int -setup_test(const char *name) -{ - - fprintf(stdout, "%s", name); - - if (evutil_socketpair(AF_UNIX, SOCK_STREAM, 0, pair) == -1) { - fprintf(stderr, "%s: socketpair\n", __func__); - exit(1); - } - -#ifdef HAVE_FCNTL - if (fcntl(pair[0], F_SETFL, O_NONBLOCK) == -1) - fprintf(stderr, "fcntl(O_NONBLOCK)"); - - if (fcntl(pair[1], F_SETFL, O_NONBLOCK) == -1) - fprintf(stderr, "fcntl(O_NONBLOCK)"); -#endif - - test_ok = 0; - called = 0; - return (0); -} - -static int -cleanup_test(void) -{ -#ifndef WIN32 - close(pair[0]); - close(pair[1]); -#else - CloseHandle((HANDLE)pair[0]); - CloseHandle((HANDLE)pair[1]); -#endif - if (test_ok) - fprintf(stdout, "OK\n"); - else { - fprintf(stdout, "FAILED\n"); - exit(1); - } - test_ok = 0; - return (0); -} - -static void -test_registerfds(void) -{ - int i, j; - int pair[2]; - struct event read_evs[512]; - struct event write_evs[512]; - - struct event_base *base = event_base_new(); - - fprintf(stdout, "Testing register fds: "); - - for (i = 0; i < 512; ++i) { - if (evutil_socketpair(AF_UNIX, SOCK_STREAM, 0, pair) == -1) { - /* run up to the limit of file descriptors */ - break; - } - event_set(&read_evs[i], pair[0], - EV_READ|EV_PERSIST, simple_read_cb, NULL); - event_base_set(base, &read_evs[i]); - event_add(&read_evs[i], NULL); - event_set(&write_evs[i], pair[1], - EV_WRITE|EV_PERSIST, simple_write_cb, NULL); - event_base_set(base, &write_evs[i]); - event_add(&write_evs[i], NULL); - - /* just loop once */ - event_base_loop(base, EVLOOP_ONCE); - } - - /* now delete everything */ - for (j = 0; j < i; ++j) { - event_del(&read_evs[j]); - event_del(&write_evs[j]); -#ifndef WIN32 - close(read_evs[j].ev_fd); - close(write_evs[j].ev_fd); -#else - CloseHandle((HANDLE)read_evs[j].ev_fd); - CloseHandle((HANDLE)write_evs[j].ev_fd); -#endif - - /* just loop once */ - event_base_loop(base, EVLOOP_ONCE); - } - - event_base_free(base); - - fprintf(stdout, "OK\n"); -} - -static void -test_simpleread(void) -{ - struct event ev; - - /* Very simple read test */ - setup_test("Simple read: "); - - write(pair[0], TEST1, strlen(TEST1)+1); - shutdown(pair[0], SHUT_WR); - - event_set(&ev, pair[1], EV_READ, simple_read_cb, &ev); - if (event_add(&ev, NULL) == -1) - exit(1); - event_dispatch(); - - cleanup_test(); -} - -static void -test_simplewrite(void) -{ - struct event ev; - - /* Very simple write test */ - setup_test("Simple write: "); - - event_set(&ev, pair[0], EV_WRITE, simple_write_cb, &ev); - if (event_add(&ev, NULL) == -1) - exit(1); - event_dispatch(); - - cleanup_test(); -} - -static void -test_multiple(void) -{ - struct event ev, ev2; - int i; - - /* Multiple read and write test */ - setup_test("Multiple read/write: "); - memset(rbuf, 0, sizeof(rbuf)); - for (i = 0; i < sizeof(wbuf); i++) - wbuf[i] = i; - - roff = woff = 0; - usepersist = 0; - - event_set(&ev, pair[0], EV_WRITE, multiple_write_cb, &ev); - if (event_add(&ev, NULL) == -1) - exit(1); - event_set(&ev2, pair[1], EV_READ, multiple_read_cb, &ev2); - if (event_add(&ev2, NULL) == -1) - exit(1); - event_dispatch(); - - if (roff == woff) - test_ok = memcmp(rbuf, wbuf, sizeof(wbuf)) == 0; - - cleanup_test(); -} - -static void -test_persistent(void) -{ - struct event ev, ev2; - int i; - - /* Multiple read and write test with persist */ - setup_test("Persist read/write: "); - memset(rbuf, 0, sizeof(rbuf)); - for (i = 0; i < sizeof(wbuf); i++) - wbuf[i] = i; - - roff = woff = 0; - usepersist = 1; - - event_set(&ev, pair[0], EV_WRITE|EV_PERSIST, multiple_write_cb, &ev); - if (event_add(&ev, NULL) == -1) - exit(1); - event_set(&ev2, pair[1], EV_READ|EV_PERSIST, multiple_read_cb, &ev2); - if (event_add(&ev2, NULL) == -1) - exit(1); - event_dispatch(); - - if (roff == woff) - test_ok = memcmp(rbuf, wbuf, sizeof(wbuf)) == 0; - - cleanup_test(); -} - -static void -test_combined(void) -{ - struct both r1, r2, w1, w2; - - setup_test("Combined read/write: "); - memset(&r1, 0, sizeof(r1)); - memset(&r2, 0, sizeof(r2)); - memset(&w1, 0, sizeof(w1)); - memset(&w2, 0, sizeof(w2)); - - w1.nread = 4096; - w2.nread = 8192; - - event_set(&r1.ev, pair[0], EV_READ, combined_read_cb, &r1); - event_set(&w1.ev, pair[0], EV_WRITE, combined_write_cb, &w1); - event_set(&r2.ev, pair[1], EV_READ, combined_read_cb, &r2); - event_set(&w2.ev, pair[1], EV_WRITE, combined_write_cb, &w2); - if (event_add(&r1.ev, NULL) == -1) - exit(1); - if (event_add(&w1.ev, NULL)) - exit(1); - if (event_add(&r2.ev, NULL)) - exit(1); - if (event_add(&w2.ev, NULL)) - exit(1); - - event_dispatch(); - - if (r1.nread == 8192 && r2.nread == 4096) - test_ok = 1; - - cleanup_test(); -} - -static void -test_simpletimeout(void) -{ - struct timeval tv; - struct event ev; - - setup_test("Simple timeout: "); - - tv.tv_usec = 0; - tv.tv_sec = SECONDS; - evtimer_set(&ev, timeout_cb, NULL); - evtimer_add(&ev, &tv); - - evutil_gettimeofday(&tset, NULL); - event_dispatch(); - - cleanup_test(); -} - -#ifndef WIN32 -extern struct event_base *current_base; - -static void -child_signal_cb(int fd, short event, void *arg) -{ - struct timeval tv; - int *pint = arg; - - *pint = 1; - - tv.tv_usec = 500000; - tv.tv_sec = 0; - event_loopexit(&tv); -} - -static void -test_fork(void) -{ - int status, got_sigchld = 0; - struct event ev, sig_ev; - pid_t pid; - - setup_test("After fork: "); - - write(pair[0], TEST1, strlen(TEST1)+1); - - event_set(&ev, pair[1], EV_READ, simple_read_cb, &ev); - if (event_add(&ev, NULL) == -1) - exit(1); - - signal_set(&sig_ev, SIGCHLD, child_signal_cb, &got_sigchld); - signal_add(&sig_ev, NULL); - - if ((pid = fork()) == 0) { - /* in the child */ - if (event_reinit(current_base) == -1) { - fprintf(stderr, "FAILED (reinit)\n"); - exit(1); - } - - signal_del(&sig_ev); - - called = 0; - - event_dispatch(); - - /* we do not send an EOF; simple_read_cb requires an EOF - * to set test_ok. we just verify that the callback was - * called. */ - exit(test_ok != 0 || called != 2 ? -2 : 76); - } - - /* wait for the child to read the data */ - sleep(1); - - write(pair[0], TEST1, strlen(TEST1)+1); - - if (waitpid(pid, &status, 0) == -1) { - fprintf(stderr, "FAILED (fork)\n"); - exit(1); - } - - if (WEXITSTATUS(status) != 76) { - fprintf(stderr, "FAILED (exit): %d\n", WEXITSTATUS(status)); - exit(1); - } - - /* test that the current event loop still works */ - write(pair[0], TEST1, strlen(TEST1)+1); - shutdown(pair[0], SHUT_WR); - - event_dispatch(); - - if (!got_sigchld) { - fprintf(stdout, "FAILED (sigchld)\n"); - exit(1); - } - - signal_del(&sig_ev); - - cleanup_test(); -} - -static void -test_simplesignal(void) -{ - struct event ev; - struct itimerval itv; - - setup_test("Simple signal: "); - signal_set(&ev, SIGALRM, signal_cb, &ev); - signal_add(&ev, NULL); - /* find bugs in which operations are re-ordered */ - signal_del(&ev); - signal_add(&ev, NULL); - - memset(&itv, 0, sizeof(itv)); - itv.it_value.tv_sec = 1; - if (setitimer(ITIMER_REAL, &itv, NULL) == -1) - goto skip_simplesignal; - - event_dispatch(); - skip_simplesignal: - if (signal_del(&ev) == -1) - test_ok = 0; - - cleanup_test(); -} - -static void -test_multiplesignal(void) -{ - struct event ev_one, ev_two; - struct itimerval itv; - - setup_test("Multiple signal: "); - - signal_set(&ev_one, SIGALRM, signal_cb, &ev_one); - signal_add(&ev_one, NULL); - - signal_set(&ev_two, SIGALRM, signal_cb, &ev_two); - signal_add(&ev_two, NULL); - - memset(&itv, 0, sizeof(itv)); - itv.it_value.tv_sec = 1; - if (setitimer(ITIMER_REAL, &itv, NULL) == -1) - goto skip_simplesignal; - - event_dispatch(); - - skip_simplesignal: - if (signal_del(&ev_one) == -1) - test_ok = 0; - if (signal_del(&ev_two) == -1) - test_ok = 0; - - cleanup_test(); -} - -static void -test_immediatesignal(void) -{ - struct event ev; - - test_ok = 0; - printf("Immediate signal: "); - signal_set(&ev, SIGUSR1, signal_cb, &ev); - signal_add(&ev, NULL); - raise(SIGUSR1); - event_loop(EVLOOP_NONBLOCK); - signal_del(&ev); - cleanup_test(); -} - -static void -test_signal_dealloc(void) -{ - /* make sure that signal_event is event_del'ed and pipe closed */ - struct event ev; - struct event_base *base = event_init(); - printf("Signal dealloc: "); - signal_set(&ev, SIGUSR1, signal_cb, &ev); - signal_add(&ev, NULL); - signal_del(&ev); - event_base_free(base); - /* If we got here without asserting, we're fine. */ - test_ok = 1; - cleanup_test(); -} - -static void -test_signal_pipeloss(void) -{ - /* make sure that the base1 pipe is closed correctly. */ - struct event_base *base1, *base2; - int pipe1; - test_ok = 0; - printf("Signal pipeloss: "); - base1 = event_init(); - pipe1 = base1->sig.ev_signal_pair[0]; - base2 = event_init(); - event_base_free(base2); - event_base_free(base1); - if (close(pipe1) != -1 || errno!=EBADF) { - /* fd must be closed, so second close gives -1, EBADF */ - printf("signal pipe not closed. "); - test_ok = 0; - } else { - test_ok = 1; - } - cleanup_test(); -} - -/* - * make two bases to catch signals, use both of them. this only works - * for event mechanisms that use our signal pipe trick. kqueue handles - * signals internally, and all interested kqueues get all the signals. - */ -static void -test_signal_switchbase(void) -{ - struct event ev1, ev2; - struct event_base *base1, *base2; - int is_kqueue; - test_ok = 0; - printf("Signal switchbase: "); - base1 = event_init(); - base2 = event_init(); - is_kqueue = !strcmp(event_get_method(),"kqueue"); - signal_set(&ev1, SIGUSR1, signal_cb, &ev1); - signal_set(&ev2, SIGUSR1, signal_cb, &ev2); - if (event_base_set(base1, &ev1) || - event_base_set(base2, &ev2) || - event_add(&ev1, NULL) || - event_add(&ev2, NULL)) { - fprintf(stderr, "%s: cannot set base, add\n", __func__); - exit(1); - } - - test_ok = 0; - /* can handle signal before loop is called */ - raise(SIGUSR1); - event_base_loop(base2, EVLOOP_NONBLOCK); - if (is_kqueue) { - if (!test_ok) - goto done; - test_ok = 0; - } - event_base_loop(base1, EVLOOP_NONBLOCK); - if (test_ok && !is_kqueue) { - test_ok = 0; - - /* set base1 to handle signals */ - event_base_loop(base1, EVLOOP_NONBLOCK); - raise(SIGUSR1); - event_base_loop(base1, EVLOOP_NONBLOCK); - event_base_loop(base2, EVLOOP_NONBLOCK); - } - done: - event_base_free(base1); - event_base_free(base2); - cleanup_test(); -} - -/* - * assert that a signal event removed from the event queue really is - * removed - with no possibility of it's parent handler being fired. - */ -static void -test_signal_assert(void) -{ - struct event ev; - struct event_base *base = event_init(); - test_ok = 0; - printf("Signal handler assert: "); - /* use SIGCONT so we don't kill ourselves when we signal to nowhere */ - signal_set(&ev, SIGCONT, signal_cb, &ev); - signal_add(&ev, NULL); - /* - * if signal_del() fails to reset the handler, it's current handler - * will still point to evsignal_handler(). - */ - signal_del(&ev); - - raise(SIGCONT); - /* only way to verify we were in evsignal_handler() */ - if (base->sig.evsignal_caught) - test_ok = 0; - else - test_ok = 1; - - event_base_free(base); - cleanup_test(); - return; -} - -/* - * assert that we restore our previous signal handler properly. - */ -static void -test_signal_restore(void) -{ - struct event ev; - struct event_base *base = event_init(); -#ifdef HAVE_SIGACTION - struct sigaction sa; -#endif - - test_ok = 0; - printf("Signal handler restore: "); -#ifdef HAVE_SIGACTION - sa.sa_handler = signal_cb_sa; - sa.sa_flags = 0x0; - sigemptyset(&sa.sa_mask); - if (sigaction(SIGUSR1, &sa, NULL) == -1) - goto out; -#else - if (signal(SIGUSR1, signal_cb_sa) == SIG_ERR) - goto out; -#endif - signal_set(&ev, SIGUSR1, signal_cb, &ev); - signal_add(&ev, NULL); - signal_del(&ev); - - raise(SIGUSR1); - /* 1 == signal_cb, 2 == signal_cb_sa, we want our previous handler */ - if (test_ok != 2) - test_ok = 0; -out: - event_base_free(base); - cleanup_test(); - return; -} - -static void -signal_cb_swp(int sig, short event, void *arg) -{ - called++; - if (called < 5) - raise(sig); - else - event_loopexit(NULL); -} -static void -timeout_cb_swp(int fd, short event, void *arg) -{ - if (called == -1) { - struct timeval tv = {5, 0}; - - called = 0; - evtimer_add((struct event *)arg, &tv); - raise(SIGUSR1); - return; - } - test_ok = 0; - event_loopexit(NULL); -} - -static void -test_signal_while_processing(void) -{ - struct event_base *base = event_init(); - struct event ev, ev_timer; - struct timeval tv = {0, 0}; - - setup_test("Receiving a signal while processing other signal: "); - - called = -1; - test_ok = 1; - signal_set(&ev, SIGUSR1, signal_cb_swp, NULL); - signal_add(&ev, NULL); - evtimer_set(&ev_timer, timeout_cb_swp, &ev_timer); - evtimer_add(&ev_timer, &tv); - event_dispatch(); - - event_base_free(base); - cleanup_test(); - return; -} -#endif - -static void -test_free_active_base(void) -{ - struct event_base *base1; - struct event ev1; - setup_test("Free active base: "); - base1 = event_init(); - event_set(&ev1, pair[1], EV_READ, simple_read_cb, &ev1); - event_base_set(base1, &ev1); - event_add(&ev1, NULL); - /* event_del(&ev1); */ - event_base_free(base1); - test_ok = 1; - cleanup_test(); -} - -static void -test_event_base_new(void) -{ - struct event_base *base; - struct event ev1; - setup_test("Event base new: "); - - write(pair[0], TEST1, strlen(TEST1)+1); - shutdown(pair[0], SHUT_WR); - - base = event_base_new(); - event_set(&ev1, pair[1], EV_READ, simple_read_cb, &ev1); - event_base_set(base, &ev1); - event_add(&ev1, NULL); - - event_base_dispatch(base); - - event_base_free(base); - test_ok = 1; - cleanup_test(); -} - -static void -test_loopexit(void) -{ - struct timeval tv, tv_start, tv_end; - struct event ev; - - setup_test("Loop exit: "); - - tv.tv_usec = 0; - tv.tv_sec = 60*60*24; - evtimer_set(&ev, timeout_cb, NULL); - evtimer_add(&ev, &tv); - - tv.tv_usec = 0; - tv.tv_sec = 1; - event_loopexit(&tv); - - evutil_gettimeofday(&tv_start, NULL); - event_dispatch(); - evutil_gettimeofday(&tv_end, NULL); - evutil_timersub(&tv_end, &tv_start, &tv_end); - - evtimer_del(&ev); - - if (tv.tv_sec < 2) - test_ok = 1; - - cleanup_test(); -} - -static void -test_loopexit_multiple(void) -{ - struct timeval tv; - struct event_base *base; - - setup_test("Loop Multiple exit: "); - - base = event_base_new(); - - tv.tv_usec = 0; - tv.tv_sec = 1; - event_base_loopexit(base, &tv); - - tv.tv_usec = 0; - tv.tv_sec = 2; - event_base_loopexit(base, &tv); - - event_base_dispatch(base); - - event_base_free(base); - - test_ok = 1; - - cleanup_test(); -} - -static void -break_cb(int fd, short events, void *arg) -{ - test_ok = 1; - event_loopbreak(); -} - -static void -fail_cb(int fd, short events, void *arg) -{ - test_ok = 0; -} - -static void -test_loopbreak(void) -{ - struct event ev1, ev2; - struct timeval tv; - - setup_test("Loop break: "); - - tv.tv_sec = 0; - tv.tv_usec = 0; - evtimer_set(&ev1, break_cb, NULL); - evtimer_add(&ev1, &tv); - evtimer_set(&ev2, fail_cb, NULL); - evtimer_add(&ev2, &tv); - - event_dispatch(); - - evtimer_del(&ev1); - evtimer_del(&ev2); - - cleanup_test(); -} - -static void -test_evbuffer(void) { - - struct evbuffer *evb = evbuffer_new(); - setup_test("Testing Evbuffer: "); - - evbuffer_add_printf(evb, "%s/%d", "hello", 1); - - if (EVBUFFER_LENGTH(evb) == 7 && - strcmp((char*)EVBUFFER_DATA(evb), "hello/1") == 0) - test_ok = 1; - - evbuffer_free(evb); - - cleanup_test(); -} - -static void -test_evbuffer_find(void) -{ - u_char* p; - const char* test1 = "1234567890\r\n"; - const char* test2 = "1234567890\r"; -#define EVBUFFER_INITIAL_LENGTH 256 - char test3[EVBUFFER_INITIAL_LENGTH]; - unsigned int i; - struct evbuffer * buf = evbuffer_new(); - - /* make sure evbuffer_find doesn't match past the end of the buffer */ - fprintf(stdout, "Testing evbuffer_find 1: "); - evbuffer_add(buf, (u_char*)test1, strlen(test1)); - evbuffer_drain(buf, strlen(test1)); - evbuffer_add(buf, (u_char*)test2, strlen(test2)); - p = evbuffer_find(buf, (u_char*)"\r\n", 2); - if (p == NULL) { - fprintf(stdout, "OK\n"); - } else { - fprintf(stdout, "FAILED\n"); - exit(1); - } - - /* - * drain the buffer and do another find; in r309 this would - * read past the allocated buffer causing a valgrind error. - */ - fprintf(stdout, "Testing evbuffer_find 2: "); - evbuffer_drain(buf, strlen(test2)); - for (i = 0; i < EVBUFFER_INITIAL_LENGTH; ++i) - test3[i] = 'a'; - test3[EVBUFFER_INITIAL_LENGTH - 1] = 'x'; - evbuffer_add(buf, (u_char *)test3, EVBUFFER_INITIAL_LENGTH); - p = evbuffer_find(buf, (u_char *)"xy", 2); - if (p == NULL) { - printf("OK\n"); - } else { - fprintf(stdout, "FAILED\n"); - exit(1); - } - - /* simple test for match at end of allocated buffer */ - fprintf(stdout, "Testing evbuffer_find 3: "); - p = evbuffer_find(buf, (u_char *)"ax", 2); - if (p != NULL && strncmp((char*)p, "ax", 2) == 0) { - printf("OK\n"); - } else { - fprintf(stdout, "FAILED\n"); - exit(1); - } - - evbuffer_free(buf); -} - -/* - * simple bufferevent test - */ - -static void -readcb(struct bufferevent *bev, void *arg) -{ - if (EVBUFFER_LENGTH(bev->input) == 8333) { - bufferevent_disable(bev, EV_READ); - test_ok++; - } -} - -static void -writecb(struct bufferevent *bev, void *arg) -{ - if (EVBUFFER_LENGTH(bev->output) == 0) - test_ok++; -} - -static void -errorcb(struct bufferevent *bev, short what, void *arg) -{ - test_ok = -2; -} - -static void -test_bufferevent(void) -{ - struct bufferevent *bev1, *bev2; - char buffer[8333]; - int i; - - setup_test("Bufferevent: "); - - bev1 = bufferevent_new(pair[0], readcb, writecb, errorcb, NULL); - bev2 = bufferevent_new(pair[1], readcb, writecb, errorcb, NULL); - - bufferevent_disable(bev1, EV_READ); - bufferevent_enable(bev2, EV_READ); - - for (i = 0; i < sizeof(buffer); i++) - buffer[i] = i; - - bufferevent_write(bev1, buffer, sizeof(buffer)); - - event_dispatch(); - - bufferevent_free(bev1); - bufferevent_free(bev2); - - if (test_ok != 2) - test_ok = 0; - - cleanup_test(); -} - -/* - * test watermarks and bufferevent - */ - -static void -wm_readcb(struct bufferevent *bev, void *arg) -{ - int len = EVBUFFER_LENGTH(bev->input); - static int nread; - - assert(len >= 10 && len <= 20); - - evbuffer_drain(bev->input, len); - - nread += len; - if (nread == 65000) { - bufferevent_disable(bev, EV_READ); - test_ok++; - } -} - -static void -wm_writecb(struct bufferevent *bev, void *arg) -{ - if (EVBUFFER_LENGTH(bev->output) == 0) - test_ok++; -} - -static void -wm_errorcb(struct bufferevent *bev, short what, void *arg) -{ - test_ok = -2; -} - -static void -test_bufferevent_watermarks(void) -{ - struct bufferevent *bev1, *bev2; - char buffer[65000]; - int i; - - setup_test("Bufferevent Watermarks: "); - - bev1 = bufferevent_new(pair[0], NULL, wm_writecb, wm_errorcb, NULL); - bev2 = bufferevent_new(pair[1], wm_readcb, NULL, wm_errorcb, NULL); - - bufferevent_disable(bev1, EV_READ); - bufferevent_enable(bev2, EV_READ); - - for (i = 0; i < sizeof(buffer); i++) - buffer[i] = i; - - bufferevent_write(bev1, buffer, sizeof(buffer)); - - /* limit the reading on the receiving bufferevent */ - bufferevent_setwatermark(bev2, EV_READ, 10, 20); - - event_dispatch(); - - bufferevent_free(bev1); - bufferevent_free(bev2); - - if (test_ok != 2) - test_ok = 0; - - cleanup_test(); -} - -struct test_pri_event { - struct event ev; - int count; -}; - -static void -test_priorities_cb(int fd, short what, void *arg) -{ - struct test_pri_event *pri = arg; - struct timeval tv; - - if (pri->count == 3) { - event_loopexit(NULL); - return; - } - - pri->count++; - - evutil_timerclear(&tv); - event_add(&pri->ev, &tv); -} - -static void -test_priorities(int npriorities) -{ - char buf[32]; - struct test_pri_event one, two; - struct timeval tv; - - evutil_snprintf(buf, sizeof(buf), "Testing Priorities %d: ", npriorities); - setup_test(buf); - - event_base_priority_init(global_base, npriorities); - - memset(&one, 0, sizeof(one)); - memset(&two, 0, sizeof(two)); - - timeout_set(&one.ev, test_priorities_cb, &one); - if (event_priority_set(&one.ev, 0) == -1) { - fprintf(stderr, "%s: failed to set priority", __func__); - exit(1); - } - - timeout_set(&two.ev, test_priorities_cb, &two); - if (event_priority_set(&two.ev, npriorities - 1) == -1) { - fprintf(stderr, "%s: failed to set priority", __func__); - exit(1); - } - - evutil_timerclear(&tv); - - if (event_add(&one.ev, &tv) == -1) - exit(1); - if (event_add(&two.ev, &tv) == -1) - exit(1); - - event_dispatch(); - - event_del(&one.ev); - event_del(&two.ev); - - if (npriorities == 1) { - if (one.count == 3 && two.count == 3) - test_ok = 1; - } else if (npriorities == 2) { - /* Two is called once because event_loopexit is priority 1 */ - if (one.count == 3 && two.count == 1) - test_ok = 1; - } else { - if (one.count == 3 && two.count == 0) - test_ok = 1; - } - - cleanup_test(); -} - -static void -test_multiple_cb(int fd, short event, void *arg) -{ - if (event & EV_READ) - test_ok |= 1; - else if (event & EV_WRITE) - test_ok |= 2; -} - -static void -test_multiple_events_for_same_fd(void) -{ - struct event e1, e2; - - setup_test("Multiple events for same fd: "); - - event_set(&e1, pair[0], EV_READ, test_multiple_cb, NULL); - event_add(&e1, NULL); - event_set(&e2, pair[0], EV_WRITE, test_multiple_cb, NULL); - event_add(&e2, NULL); - event_loop(EVLOOP_ONCE); - event_del(&e2); - write(pair[1], TEST1, strlen(TEST1)+1); - event_loop(EVLOOP_ONCE); - event_del(&e1); - - if (test_ok != 3) - test_ok = 0; - - cleanup_test(); -} - -int evtag_decode_int(uint32_t *pnumber, struct evbuffer *evbuf); -int evtag_encode_tag(struct evbuffer *evbuf, uint32_t number); -int evtag_decode_tag(uint32_t *pnumber, struct evbuffer *evbuf); - -static void -read_once_cb(int fd, short event, void *arg) -{ - char buf[256]; - int len; - - len = read(fd, buf, sizeof(buf)); - - if (called) { - test_ok = 0; - } else if (len) { - /* Assumes global pair[0] can be used for writing */ - write(pair[0], TEST1, strlen(TEST1)+1); - test_ok = 1; - } - - called++; -} - -static void -test_want_only_once(void) -{ - struct event ev; - struct timeval tv; - - /* Very simple read test */ - setup_test("Want read only once: "); - - write(pair[0], TEST1, strlen(TEST1)+1); - - /* Setup the loop termination */ - evutil_timerclear(&tv); - tv.tv_sec = 1; - event_loopexit(&tv); - - event_set(&ev, pair[1], EV_READ, read_once_cb, &ev); - if (event_add(&ev, NULL) == -1) - exit(1); - event_dispatch(); - - cleanup_test(); -} - -#define TEST_MAX_INT 6 - -static void -evtag_int_test(void) -{ - struct evbuffer *tmp = evbuffer_new(); - uint32_t integers[TEST_MAX_INT] = { - 0xaf0, 0x1000, 0x1, 0xdeadbeef, 0x00, 0xbef000 - }; - uint32_t integer; - int i; - - for (i = 0; i < TEST_MAX_INT; i++) { - int oldlen, newlen; - oldlen = EVBUFFER_LENGTH(tmp); - encode_int(tmp, integers[i]); - newlen = EVBUFFER_LENGTH(tmp); - fprintf(stdout, "\t\tencoded 0x%08x with %d bytes\n", - integers[i], newlen - oldlen); - } - - for (i = 0; i < TEST_MAX_INT; i++) { - if (evtag_decode_int(&integer, tmp) == -1) { - fprintf(stderr, "decode %d failed", i); - exit(1); - } - if (integer != integers[i]) { - fprintf(stderr, "got %x, wanted %x", - integer, integers[i]); - exit(1); - } - } - - if (EVBUFFER_LENGTH(tmp) != 0) { - fprintf(stderr, "trailing data"); - exit(1); - } - evbuffer_free(tmp); - - fprintf(stdout, "\t%s: OK\n", __func__); -} - -static void -evtag_fuzz(void) -{ - u_char buffer[4096]; - struct evbuffer *tmp = evbuffer_new(); - struct timeval tv; - int i, j; - - int not_failed = 0; - for (j = 0; j < 100; j++) { - for (i = 0; i < sizeof(buffer); i++) - buffer[i] = rand(); - evbuffer_drain(tmp, -1); - evbuffer_add(tmp, buffer, sizeof(buffer)); - - if (evtag_unmarshal_timeval(tmp, 0, &tv) != -1) - not_failed++; - } - - /* The majority of decodes should fail */ - if (not_failed >= 10) { - fprintf(stderr, "evtag_unmarshal should have failed"); - exit(1); - } - - /* Now insert some corruption into the tag length field */ - evbuffer_drain(tmp, -1); - evutil_timerclear(&tv); - tv.tv_sec = 1; - evtag_marshal_timeval(tmp, 0, &tv); - evbuffer_add(tmp, buffer, sizeof(buffer)); - - EVBUFFER_DATA(tmp)[1] = 0xff; - if (evtag_unmarshal_timeval(tmp, 0, &tv) != -1) { - fprintf(stderr, "evtag_unmarshal_timeval should have failed"); - exit(1); - } - - evbuffer_free(tmp); - - fprintf(stdout, "\t%s: OK\n", __func__); -} - -static void -evtag_tag_encoding(void) -{ - struct evbuffer *tmp = evbuffer_new(); - uint32_t integers[TEST_MAX_INT] = { - 0xaf0, 0x1000, 0x1, 0xdeadbeef, 0x00, 0xbef000 - }; - uint32_t integer; - int i; - - for (i = 0; i < TEST_MAX_INT; i++) { - int oldlen, newlen; - oldlen = EVBUFFER_LENGTH(tmp); - evtag_encode_tag(tmp, integers[i]); - newlen = EVBUFFER_LENGTH(tmp); - fprintf(stdout, "\t\tencoded 0x%08x with %d bytes\n", - integers[i], newlen - oldlen); - } - - for (i = 0; i < TEST_MAX_INT; i++) { - if (evtag_decode_tag(&integer, tmp) == -1) { - fprintf(stderr, "decode %d failed", i); - exit(1); - } - if (integer != integers[i]) { - fprintf(stderr, "got %x, wanted %x", - integer, integers[i]); - exit(1); - } - } - - if (EVBUFFER_LENGTH(tmp) != 0) { - fprintf(stderr, "trailing data"); - exit(1); - } - evbuffer_free(tmp); - - fprintf(stdout, "\t%s: OK\n", __func__); -} - -static void -evtag_test(void) -{ - fprintf(stdout, "Testing Tagging:\n"); - - evtag_init(); - evtag_int_test(); - evtag_fuzz(); - - evtag_tag_encoding(); - - fprintf(stdout, "OK\n"); -} - -#ifndef WIN32 -static void -rpc_test(void) -{ - struct msg *msg, *msg2; - struct kill *attack; - struct run *run; - struct evbuffer *tmp = evbuffer_new(); - struct timeval tv_start, tv_end; - uint32_t tag; - int i; - - fprintf(stdout, "Testing RPC: "); - - msg = msg_new(); - EVTAG_ASSIGN(msg, from_name, "niels"); - EVTAG_ASSIGN(msg, to_name, "phoenix"); - - if (EVTAG_GET(msg, attack, &attack) == -1) { - fprintf(stderr, "Failed to set kill message.\n"); - exit(1); - } - - EVTAG_ASSIGN(attack, weapon, "feather"); - EVTAG_ASSIGN(attack, action, "tickle"); - - evutil_gettimeofday(&tv_start, NULL); - for (i = 0; i < 1000; ++i) { - run = EVTAG_ADD(msg, run); - if (run == NULL) { - fprintf(stderr, "Failed to add run message.\n"); - exit(1); - } - EVTAG_ASSIGN(run, how, "very fast but with some data in it"); - EVTAG_ASSIGN(run, fixed_bytes, - (unsigned char*)"012345678901234567890123"); - } - - if (msg_complete(msg) == -1) { - fprintf(stderr, "Failed to make complete message.\n"); - exit(1); - } - - evtag_marshal_msg(tmp, 0xdeaf, msg); - - if (evtag_peek(tmp, &tag) == -1) { - fprintf(stderr, "Failed to peak tag.\n"); - exit (1); - } - - if (tag != 0xdeaf) { - fprintf(stderr, "Got incorrect tag: %0x.\n", tag); - exit (1); - } - - msg2 = msg_new(); - if (evtag_unmarshal_msg(tmp, 0xdeaf, msg2) == -1) { - fprintf(stderr, "Failed to unmarshal message.\n"); - exit(1); - } - - evutil_gettimeofday(&tv_end, NULL); - evutil_timersub(&tv_end, &tv_start, &tv_end); - fprintf(stderr, "(%.1f us/add) ", - (float)tv_end.tv_sec/(float)i * 1000000.0 + - tv_end.tv_usec / (float)i); - - if (!EVTAG_HAS(msg2, from_name) || - !EVTAG_HAS(msg2, to_name) || - !EVTAG_HAS(msg2, attack)) { - fprintf(stderr, "Missing data structures.\n"); - exit(1); - } - - if (EVTAG_LEN(msg2, run) != i) { - fprintf(stderr, "Wrong number of run messages.\n"); - exit(1); - } - - msg_free(msg); - msg_free(msg2); - - evbuffer_free(tmp); - - fprintf(stdout, "OK\n"); -} -#endif - -static void -test_evutil_strtoll(void) -{ - const char *s; - char *endptr; - setup_test("evutil_stroll: "); - test_ok = 0; - - if (evutil_strtoll("5000000000", NULL, 10) != ((ev_int64_t)5000000)*1000) - goto err; - if (evutil_strtoll("-5000000000", NULL, 10) != ((ev_int64_t)5000000)*-1000) - goto err; - s = " 99999stuff"; - if (evutil_strtoll(s, &endptr, 10) != (ev_int64_t)99999) - goto err; - if (endptr != s+6) - goto err; - if (evutil_strtoll("foo", NULL, 10) != 0) - goto err; - - test_ok = 1; - err: - cleanup_test(); -} - - -int -main (int argc, char **argv) -{ -#ifdef WIN32 - WORD wVersionRequested; - WSADATA wsaData; - int err; - - wVersionRequested = MAKEWORD( 2, 2 ); - - err = WSAStartup( wVersionRequested, &wsaData ); -#endif - -#ifndef WIN32 - if (signal(SIGPIPE, SIG_IGN) == SIG_ERR) - return (1); -#endif - setvbuf(stdout, NULL, _IONBF, 0); - - /* Initalize the event library */ - global_base = event_init(); - - test_registerfds(); - - test_evutil_strtoll(); - - /* use the global event base and need to be called first */ - test_priorities(1); - test_priorities(2); - test_priorities(3); - - test_evbuffer(); - test_evbuffer_find(); - - test_bufferevent(); - test_bufferevent_watermarks(); - - test_free_active_base(); - - test_event_base_new(); - - http_suite(); - -#ifndef WIN32 - rpc_suite(); -#endif - - dns_suite(); - -#ifndef WIN32 - test_fork(); -#endif - - test_simpleread(); - - test_simplewrite(); - - test_multiple(); - - test_persistent(); - - test_combined(); - - test_simpletimeout(); -#ifndef WIN32 - test_simplesignal(); - test_multiplesignal(); - test_immediatesignal(); -#endif - test_loopexit(); - test_loopbreak(); - - test_loopexit_multiple(); - - test_multiple_events_for_same_fd(); - - test_want_only_once(); - - evtag_test(); - -#ifndef WIN32 - rpc_test(); - - test_signal_dealloc(); - test_signal_pipeloss(); - test_signal_switchbase(); - test_signal_restore(); - test_signal_assert(); - test_signal_while_processing(); -#endif - - return (0); -} - diff -Nru mysql-5.7-5.7.25/libevent/test/regress_dns.c mysql-5.7-5.7.26/libevent/test/regress_dns.c --- mysql-5.7-5.7.25/libevent/test/regress_dns.c 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/test/regress_dns.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,376 +0,0 @@ -/* - * Copyright (c) 2003-2006 Niels Provos - * All rights reserved. - * - * 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. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. - */ - -#ifdef WIN32 -#include -#include -#endif - -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -#include -#include -#ifdef HAVE_SYS_TIME_H -#include -#endif -#include -#ifndef WIN32 -#include -#include -#include -#include -#include -#endif -#ifdef HAVE_NETINET_IN6_H -#include -#endif -#ifdef HAVE_NETDB_H -#include -#endif -#include -#include -#include -#include -#include - -#include "event.h" -#include "evdns.h" -#include "log.h" - -static int dns_ok = 0; -static int dns_err = 0; - -void dns_suite(void); - -static void -dns_gethostbyname_cb(int result, char type, int count, int ttl, - void *addresses, void *arg) -{ - dns_ok = dns_err = 0; - - if (result == DNS_ERR_TIMEOUT) { - fprintf(stdout, "[Timed out] "); - dns_err = result; - goto out; - } - - if (result != DNS_ERR_NONE) { - fprintf(stdout, "[Error code %d] ", result); - goto out; - } - - fprintf(stderr, "type: %d, count: %d, ttl: %d: ", type, count, ttl); - - switch (type) { - case DNS_IPv6_AAAA: { -#if defined(HAVE_STRUCT_IN6_ADDR) && defined(HAVE_INET_NTOP) && defined(INET6_ADDRSTRLEN) - struct in6_addr *in6_addrs = addresses; - char buf[INET6_ADDRSTRLEN+1]; - int i; - /* a resolution that's not valid does not help */ - if (ttl < 0) - goto out; - for (i = 0; i < count; ++i) { - const char *b = inet_ntop(AF_INET6, &in6_addrs[i], buf,sizeof(buf)); - if (b) - fprintf(stderr, "%s ", b); - else - fprintf(stderr, "%s ", strerror(errno)); - } -#endif - break; - } - case DNS_IPv4_A: { - struct in_addr *in_addrs = addresses; - int i; - /* a resolution that's not valid does not help */ - if (ttl < 0) - goto out; - for (i = 0; i < count; ++i) - fprintf(stderr, "%s ", inet_ntoa(in_addrs[i])); - break; - } - case DNS_PTR: - /* may get at most one PTR */ - if (count != 1) - goto out; - - fprintf(stderr, "%s ", *(char **)addresses); - break; - default: - goto out; - } - - dns_ok = type; - -out: - event_loopexit(NULL); -} - -static void -dns_gethostbyname(void) -{ - fprintf(stdout, "Simple DNS resolve: "); - dns_ok = 0; - evdns_resolve_ipv4("www.monkey.org", 0, dns_gethostbyname_cb, NULL); - event_dispatch(); - - if (dns_ok == DNS_IPv4_A) { - fprintf(stdout, "OK\n"); - } else { - fprintf(stdout, "FAILED\n"); - exit(1); - } -} - -static void -dns_gethostbyname6(void) -{ - fprintf(stdout, "IPv6 DNS resolve: "); - dns_ok = 0; - evdns_resolve_ipv6("www.ietf.org", 0, dns_gethostbyname_cb, NULL); - event_dispatch(); - - if (dns_ok == DNS_IPv6_AAAA) { - fprintf(stdout, "OK\n"); - } else if (!dns_ok && dns_err == DNS_ERR_TIMEOUT) { - fprintf(stdout, "SKIPPED\n"); - } else { - fprintf(stdout, "FAILED (%d)\n", dns_ok); - exit(1); - } -} - -static void -dns_gethostbyaddr(void) -{ - struct in_addr in; - in.s_addr = htonl(0x7f000001ul); /* 127.0.0.1 */ - fprintf(stdout, "Simple reverse DNS resolve: "); - dns_ok = 0; - evdns_resolve_reverse(&in, 0, dns_gethostbyname_cb, NULL); - event_dispatch(); - - if (dns_ok == DNS_PTR) { - fprintf(stdout, "OK\n"); - } else { - fprintf(stdout, "FAILED\n"); - exit(1); - } -} - -static int n_server_responses = 0; - -static void -dns_server_request_cb(struct evdns_server_request *req, void *data) -{ - int i, r; - const char TEST_ARPA[] = "11.11.168.192.in-addr.arpa"; - for (i = 0; i < req->nquestions; ++i) { - struct in_addr ans; - ans.s_addr = htonl(0xc0a80b0bUL); /* 192.168.11.11 */ - if (req->questions[i]->type == EVDNS_TYPE_A && - req->questions[i]->dns_question_class == EVDNS_CLASS_INET && - !strcmp(req->questions[i]->name, "zz.example.com")) { - r = evdns_server_request_add_a_reply(req, "zz.example.com", - 1, &ans.s_addr, 12345); - if (r<0) - dns_ok = 0; - } else if (req->questions[i]->type == EVDNS_TYPE_AAAA && - req->questions[i]->dns_question_class == EVDNS_CLASS_INET && - !strcmp(req->questions[i]->name, "zz.example.com")) { - char addr6[17] = "abcdefghijklmnop"; - r = evdns_server_request_add_aaaa_reply(req, "zz.example.com", - 1, addr6, 123); - if (r<0) - dns_ok = 0; - } else if (req->questions[i]->type == EVDNS_TYPE_PTR && - req->questions[i]->dns_question_class == EVDNS_CLASS_INET && - !strcmp(req->questions[i]->name, TEST_ARPA)) { - r = evdns_server_request_add_ptr_reply(req, NULL, TEST_ARPA, - "ZZ.EXAMPLE.COM", 54321); - if (r<0) - dns_ok = 0; - } else { - fprintf(stdout, "Unexpected question %d %d \"%s\" ", - req->questions[i]->type, - req->questions[i]->dns_question_class, - req->questions[i]->name); - dns_ok = 0; - } - } - r = evdns_server_request_respond(req, 0); - if (r<0) { - fprintf(stdout, "Couldn't send reply. "); - dns_ok = 0; - } -} - -static void -dns_server_gethostbyname_cb(int result, char type, int count, int ttl, - void *addresses, void *arg) -{ - if (result != DNS_ERR_NONE) { - fprintf(stdout, "Unexpected result %d. ", result); - dns_ok = 0; - goto out; - } - if (count != 1) { - fprintf(stdout, "Unexpected answer count %d. ", count); - dns_ok = 0; - goto out; - } - switch (type) { - case DNS_IPv4_A: { - struct in_addr *in_addrs = addresses; - if (in_addrs[0].s_addr != htonl(0xc0a80b0bUL) || ttl != 12345) { - fprintf(stdout, "Bad IPv4 response \"%s\" %d. ", - inet_ntoa(in_addrs[0]), ttl); - dns_ok = 0; - goto out; - } - break; - } - case DNS_IPv6_AAAA: { -#if defined (HAVE_STRUCT_IN6_ADDR) && defined(HAVE_INET_NTOP) && defined(INET6_ADDRSTRLEN) - struct in6_addr *in6_addrs = addresses; - char buf[INET6_ADDRSTRLEN+1]; - if (memcmp(&in6_addrs[0].s6_addr, "abcdefghijklmnop", 16) - || ttl != 123) { - const char *b = inet_ntop(AF_INET6, &in6_addrs[0],buf,sizeof(buf)); - fprintf(stdout, "Bad IPv6 response \"%s\" %d. ", b, ttl); - dns_ok = 0; - goto out; - } -#endif - break; - } - case DNS_PTR: { - char **addrs = addresses; - if (strcmp(addrs[0], "ZZ.EXAMPLE.COM") || ttl != 54321) { - fprintf(stdout, "Bad PTR response \"%s\" %d. ", - addrs[0], ttl); - dns_ok = 0; - goto out; - } - break; - } - default: - fprintf(stdout, "Bad response type %d. ", type); - dns_ok = 0; - } - - out: - if (++n_server_responses == 3) { - event_loopexit(NULL); - } -} - -static void -dns_server(void) -{ - int sock; - struct sockaddr_in my_addr; - struct evdns_server_port *port; - struct in_addr resolve_addr; - - dns_ok = 1; - fprintf(stdout, "DNS server support: "); - - /* Add ourself as the only nameserver, and make sure we really are - * the only nameserver. */ - evdns_nameserver_ip_add("127.0.0.1:35353"); - if (evdns_count_nameservers() != 1) { - fprintf(stdout, "Couldn't set up.\n"); - exit(1); - } - - /* Now configure a nameserver port. */ - sock = socket(AF_INET, SOCK_DGRAM, 0); - if (sock == -1) { - perror("socket"); - exit(1); - } -#ifdef WIN32 - { - u_long nonblocking = 1; - ioctlsocket(sock, FIONBIO, &nonblocking); - } -#else - fcntl(sock, F_SETFL, O_NONBLOCK); -#endif - memset(&my_addr, 0, sizeof(my_addr)); - my_addr.sin_family = AF_INET; - my_addr.sin_port = htons(35353); - my_addr.sin_addr.s_addr = htonl(0x7f000001UL); - if (bind(sock, (struct sockaddr*)&my_addr, sizeof(my_addr)) < 0) { - perror("bind"); - exit (1); - } - port = evdns_add_server_port(sock, 0, dns_server_request_cb, NULL); - - /* Send two queries. */ - evdns_resolve_ipv4("zz.example.com", DNS_QUERY_NO_SEARCH, - dns_server_gethostbyname_cb, NULL); - evdns_resolve_ipv6("zz.example.com", DNS_QUERY_NO_SEARCH, - dns_server_gethostbyname_cb, NULL); - resolve_addr.s_addr = htonl(0xc0a80b0bUL); /* 192.168.11.11 */ - evdns_resolve_reverse(&resolve_addr, 0, - dns_server_gethostbyname_cb, NULL); - - event_dispatch(); - - if (dns_ok) { - fprintf(stdout, "OK\n"); - } else { - fprintf(stdout, "FAILED\n"); - exit(1); - } - - evdns_close_server_port(port); - evdns_shutdown(0); /* remove ourself as nameserver. */ -#ifdef WIN32 - closesocket(sock); -#else - close(sock); -#endif -} - -void -dns_suite(void) -{ - dns_server(); /* Do this before we call evdns_init. */ - - evdns_init(); - dns_gethostbyname(); - dns_gethostbyname6(); - dns_gethostbyaddr(); - - evdns_shutdown(0); -} diff -Nru mysql-5.7-5.7.25/libevent/test/regress.gen.c mysql-5.7-5.7.26/libevent/test/regress.gen.c --- mysql-5.7-5.7.25/libevent/test/regress.gen.c 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/test/regress.gen.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,872 +0,0 @@ -/* - * Automatically generated from ./regress.rpc - * by event_rpcgen.py/0.1. DO NOT EDIT THIS FILE. - */ - -#include -#include -#include -#include -#include -#include - - -#include "./regress.gen.h" - -void event_err(int eval, const char *fmt, ...); -void event_warn(const char *fmt, ...); -void event_errx(int eval, const char *fmt, ...); -void event_warnx(const char *fmt, ...); - - -/* - * Implementation of msg - */ - -static struct msg_access_ __msg_base = { - msg_from_name_assign, - msg_from_name_get, - msg_to_name_assign, - msg_to_name_get, - msg_attack_assign, - msg_attack_get, - msg_run_assign, - msg_run_get, - msg_run_add, -}; - -struct msg * -msg_new(void) -{ - struct msg *tmp; - if ((tmp = malloc(sizeof(struct msg))) == NULL) { - event_warn("%s: malloc", __func__); - return (NULL); - } - tmp->base = &__msg_base; - - tmp->from_name_data = NULL; - tmp->from_name_set = 0; - - tmp->to_name_data = NULL; - tmp->to_name_set = 0; - - tmp->attack_data = NULL; - tmp->attack_set = 0; - - tmp->run_data = NULL; - tmp->run_length = 0; - tmp->run_num_allocated = 0; - tmp->run_set = 0; - - return (tmp); -} - - - - -struct run * -msg_run_add(struct msg *msg) -{ - if (++msg->run_length >= msg->run_num_allocated) { - int tobe_allocated = msg->run_num_allocated; - struct run ** new_data = NULL; - tobe_allocated = !tobe_allocated ? 1 : tobe_allocated << 1; - new_data = (struct run **) realloc(msg->run_data, - tobe_allocated * sizeof(struct run *)); - if (new_data == NULL) - goto error; - msg->run_data = new_data; - msg->run_num_allocated = tobe_allocated; - } - msg->run_data[msg->run_length - 1] = run_new(); - if (msg->run_data[msg->run_length - 1] == NULL) - goto error; - msg->run_set = 1; - return (msg->run_data[msg->run_length - 1]); -error: - --msg->run_length; - return (NULL); -} - - -int -msg_from_name_assign(struct msg *msg, - const char * value) -{ - if (msg->from_name_data != NULL) - free(msg->from_name_data); - if ((msg->from_name_data = strdup(value)) == NULL) - return (-1); - msg->from_name_set = 1; - return (0); -} - -int -msg_to_name_assign(struct msg *msg, - const char * value) -{ - if (msg->to_name_data != NULL) - free(msg->to_name_data); - if ((msg->to_name_data = strdup(value)) == NULL) - return (-1); - msg->to_name_set = 1; - return (0); -} - -int -msg_attack_assign(struct msg *msg, - const struct kill* value) -{ - struct evbuffer *tmp = NULL; - if (msg->attack_set) { - kill_clear(msg->attack_data); - msg->attack_set = 0; - } else { - msg->attack_data = kill_new(); - if (msg->attack_data == NULL) { - event_warn("%s: kill_new()", __func__); - goto error; - } - } - if ((tmp = evbuffer_new()) == NULL) { - event_warn("%s: evbuffer_new()", __func__); - goto error; - } - kill_marshal(tmp, value); - if (kill_unmarshal(msg->attack_data, tmp) == -1) { - event_warnx("%s: kill_unmarshal", __func__); - goto error; - } - msg->attack_set = 1; - evbuffer_free(tmp); - return (0); - error: - if (tmp != NULL) - evbuffer_free(tmp); - if (msg->attack_data != NULL) { - kill_free(msg->attack_data); - msg->attack_data = NULL; - } - return (-1); -} - -int -msg_run_assign(struct msg *msg, int off, - const struct run * value) -{ - struct evbuffer *tmp = NULL; - if (!msg->run_set || off < 0 || off >= msg->run_length) - return (-1); - run_clear(msg->run_data[off]); - if ((tmp = evbuffer_new()) == NULL) { - event_warn("%s: evbuffer_new()", __func__); - goto error; - } - run_marshal(tmp, value); - if (run_unmarshal(msg->run_data[off], tmp) == -1) { - event_warnx("%s: run_unmarshal", __func__); - goto error; - } - evbuffer_free(tmp); - return (0); -error: - if (tmp != NULL) - evbuffer_free(tmp); - run_clear(msg->run_data[off]); - return (-1); -} - -int -msg_from_name_get(struct msg *msg, char * *value) -{ - if (msg->from_name_set != 1) - return (-1); - *value = msg->from_name_data; - return (0); -} - -int -msg_to_name_get(struct msg *msg, char * *value) -{ - if (msg->to_name_set != 1) - return (-1); - *value = msg->to_name_data; - return (0); -} - -int -msg_attack_get(struct msg *msg, struct kill* *value) -{ - if (msg->attack_set != 1) { - msg->attack_data = kill_new(); - if (msg->attack_data == NULL) - return (-1); - msg->attack_set = 1; - } - *value = msg->attack_data; - return (0); -} - -int -msg_run_get(struct msg *msg, int offset, - struct run * *value) -{ - if (!msg->run_set || offset < 0 || offset >= msg->run_length) - return (-1); - *value = msg->run_data[offset]; - return (0); -} - -void -msg_clear(struct msg *tmp) -{ - if (tmp->from_name_set == 1) { - free (tmp->from_name_data); - tmp->from_name_data = NULL; - tmp->from_name_set = 0; - } - if (tmp->to_name_set == 1) { - free (tmp->to_name_data); - tmp->to_name_data = NULL; - tmp->to_name_set = 0; - } - if (tmp->attack_set == 1) { - kill_free(tmp->attack_data); - tmp->attack_data = NULL; - tmp->attack_set = 0; - } - if (tmp->run_set == 1) { - int i; - for (i = 0; i < tmp->run_length; ++i) { - run_free(tmp->run_data[i]); - } - free(tmp->run_data); - tmp->run_data = NULL; - tmp->run_set = 0; - tmp->run_length = 0; - tmp->run_num_allocated = 0; - } -} - -void -msg_free(struct msg *tmp) -{ - if (tmp->from_name_data != NULL) - free (tmp->from_name_data); - if (tmp->to_name_data != NULL) - free (tmp->to_name_data); - if (tmp->attack_data != NULL) - kill_free(tmp->attack_data); - if (tmp->run_data != NULL) { - int i; - for (i = 0; i < tmp->run_length; ++i) { - run_free(tmp->run_data[i]); - tmp->run_data[i] = NULL; - } - free(tmp->run_data); - tmp->run_data = NULL; - tmp->run_length = 0; - tmp->run_num_allocated = 0; - } - free(tmp); -} - -void -msg_marshal(struct evbuffer *evbuf, const struct msg *tmp){ - evtag_marshal_string(evbuf, MSG_FROM_NAME, tmp->from_name_data); - evtag_marshal_string(evbuf, MSG_TO_NAME, tmp->to_name_data); - if (tmp->attack_set) { - evtag_marshal_kill(evbuf, MSG_ATTACK, tmp->attack_data); - } - { - int i; - for (i = 0; i < tmp->run_length; ++i) { - evtag_marshal_run(evbuf, MSG_RUN, tmp->run_data[i]); - } - } -} - -int -msg_unmarshal(struct msg *tmp, struct evbuffer *evbuf) -{ - uint32_t tag; - while (EVBUFFER_LENGTH(evbuf) > 0) { - if (evtag_peek(evbuf, &tag) == -1) - return (-1); - switch (tag) { - - case MSG_FROM_NAME: - - if (tmp->from_name_set) - return (-1); - if (evtag_unmarshal_string(evbuf, MSG_FROM_NAME, &tmp->from_name_data) == -1) { - event_warnx("%s: failed to unmarshal from_name", __func__); - return (-1); - } - tmp->from_name_set = 1; - break; - - case MSG_TO_NAME: - - if (tmp->to_name_set) - return (-1); - if (evtag_unmarshal_string(evbuf, MSG_TO_NAME, &tmp->to_name_data) == -1) { - event_warnx("%s: failed to unmarshal to_name", __func__); - return (-1); - } - tmp->to_name_set = 1; - break; - - case MSG_ATTACK: - - if (tmp->attack_set) - return (-1); - tmp->attack_data = kill_new(); - if (tmp->attack_data == NULL) - return (-1); - if (evtag_unmarshal_kill(evbuf, MSG_ATTACK, tmp->attack_data) == -1) { - event_warnx("%s: failed to unmarshal attack", __func__); - return (-1); - } - tmp->attack_set = 1; - break; - - case MSG_RUN: - - if (msg_run_add(tmp) == NULL) - return (-1); - if (evtag_unmarshal_run(evbuf, MSG_RUN, - tmp->run_data[tmp->run_length - 1]) == -1) { - --tmp->run_length; - event_warnx("%s: failed to unmarshal run", __func__); - return (-1); - } - tmp->run_set = 1; - break; - - default: - return -1; - } - } - - if (msg_complete(tmp) == -1) - return (-1); - return (0); -} - -int -msg_complete(struct msg *msg) -{ - if (!msg->from_name_set) - return (-1); - if (!msg->to_name_set) - return (-1); - if (msg->attack_set && kill_complete(msg->attack_data) == -1) - return (-1); - { - int i; - for (i = 0; i < msg->run_length; ++i) { - if (run_complete(msg->run_data[i]) == -1) - return (-1); - } - } - return (0); -} - -int -evtag_unmarshal_msg(struct evbuffer *evbuf, uint32_t need_tag, struct msg *msg) -{ - uint32_t tag; - int res = -1; - - struct evbuffer *tmp = evbuffer_new(); - - if (evtag_unmarshal(evbuf, &tag, tmp) == -1 || tag != need_tag) - goto error; - - if (msg_unmarshal(msg, tmp) == -1) - goto error; - - res = 0; - - error: - evbuffer_free(tmp); - return (res); -} - -void -evtag_marshal_msg(struct evbuffer *evbuf, uint32_t tag, const struct msg *msg) -{ - struct evbuffer *_buf = evbuffer_new(); - assert(_buf != NULL); - evbuffer_drain(_buf, -1); - msg_marshal(_buf, msg); - evtag_marshal(evbuf, tag, EVBUFFER_DATA(_buf), EVBUFFER_LENGTH(_buf)); - evbuffer_free(_buf); -} - -/* - * Implementation of kill - */ - -static struct kill_access_ __kill_base = { - kill_weapon_assign, - kill_weapon_get, - kill_action_assign, - kill_action_get, - kill_how_often_assign, - kill_how_often_get, -}; - -struct kill * -kill_new(void) -{ - struct kill *tmp; - if ((tmp = malloc(sizeof(struct kill))) == NULL) { - event_warn("%s: malloc", __func__); - return (NULL); - } - tmp->base = &__kill_base; - - tmp->weapon_data = NULL; - tmp->weapon_set = 0; - - tmp->action_data = NULL; - tmp->action_set = 0; - - tmp->how_often_data = 0; - tmp->how_often_set = 0; - - return (tmp); -} - - - - -int -kill_weapon_assign(struct kill *msg, - const char * value) -{ - if (msg->weapon_data != NULL) - free(msg->weapon_data); - if ((msg->weapon_data = strdup(value)) == NULL) - return (-1); - msg->weapon_set = 1; - return (0); -} - -int -kill_action_assign(struct kill *msg, - const char * value) -{ - if (msg->action_data != NULL) - free(msg->action_data); - if ((msg->action_data = strdup(value)) == NULL) - return (-1); - msg->action_set = 1; - return (0); -} - -int -kill_how_often_assign(struct kill *msg, const uint32_t value) -{ - msg->how_often_set = 1; - msg->how_often_data = value; - return (0); -} - -int -kill_weapon_get(struct kill *msg, char * *value) -{ - if (msg->weapon_set != 1) - return (-1); - *value = msg->weapon_data; - return (0); -} - -int -kill_action_get(struct kill *msg, char * *value) -{ - if (msg->action_set != 1) - return (-1); - *value = msg->action_data; - return (0); -} - -int -kill_how_often_get(struct kill *msg, uint32_t *value) -{ - if (msg->how_often_set != 1) - return (-1); - *value = msg->how_often_data; - return (0); -} - -void -kill_clear(struct kill *tmp) -{ - if (tmp->weapon_set == 1) { - free (tmp->weapon_data); - tmp->weapon_data = NULL; - tmp->weapon_set = 0; - } - if (tmp->action_set == 1) { - free (tmp->action_data); - tmp->action_data = NULL; - tmp->action_set = 0; - } - tmp->how_often_set = 0; -} - -void -kill_free(struct kill *tmp) -{ - if (tmp->weapon_data != NULL) - free (tmp->weapon_data); - if (tmp->action_data != NULL) - free (tmp->action_data); - free(tmp); -} - -void -kill_marshal(struct evbuffer *evbuf, const struct kill *tmp){ - evtag_marshal_string(evbuf, KILL_WEAPON, tmp->weapon_data); - evtag_marshal_string(evbuf, KILL_ACTION, tmp->action_data); - if (tmp->how_often_set) { - evtag_marshal_int(evbuf, KILL_HOW_OFTEN, tmp->how_often_data); - } -} - -int -kill_unmarshal(struct kill *tmp, struct evbuffer *evbuf) -{ - uint32_t tag; - while (EVBUFFER_LENGTH(evbuf) > 0) { - if (evtag_peek(evbuf, &tag) == -1) - return (-1); - switch (tag) { - - case KILL_WEAPON: - - if (tmp->weapon_set) - return (-1); - if (evtag_unmarshal_string(evbuf, KILL_WEAPON, &tmp->weapon_data) == -1) { - event_warnx("%s: failed to unmarshal weapon", __func__); - return (-1); - } - tmp->weapon_set = 1; - break; - - case KILL_ACTION: - - if (tmp->action_set) - return (-1); - if (evtag_unmarshal_string(evbuf, KILL_ACTION, &tmp->action_data) == -1) { - event_warnx("%s: failed to unmarshal action", __func__); - return (-1); - } - tmp->action_set = 1; - break; - - case KILL_HOW_OFTEN: - - if (tmp->how_often_set) - return (-1); - if (evtag_unmarshal_int(evbuf, KILL_HOW_OFTEN, &tmp->how_often_data) == -1) { - event_warnx("%s: failed to unmarshal how_often", __func__); - return (-1); - } - tmp->how_often_set = 1; - break; - - default: - return -1; - } - } - - if (kill_complete(tmp) == -1) - return (-1); - return (0); -} - -int -kill_complete(struct kill *msg) -{ - if (!msg->weapon_set) - return (-1); - if (!msg->action_set) - return (-1); - return (0); -} - -int -evtag_unmarshal_kill(struct evbuffer *evbuf, uint32_t need_tag, struct kill *msg) -{ - uint32_t tag; - int res = -1; - - struct evbuffer *tmp = evbuffer_new(); - - if (evtag_unmarshal(evbuf, &tag, tmp) == -1 || tag != need_tag) - goto error; - - if (kill_unmarshal(msg, tmp) == -1) - goto error; - - res = 0; - - error: - evbuffer_free(tmp); - return (res); -} - -void -evtag_marshal_kill(struct evbuffer *evbuf, uint32_t tag, const struct kill *msg) -{ - struct evbuffer *_buf = evbuffer_new(); - assert(_buf != NULL); - evbuffer_drain(_buf, -1); - kill_marshal(_buf, msg); - evtag_marshal(evbuf, tag, EVBUFFER_DATA(_buf), EVBUFFER_LENGTH(_buf)); - evbuffer_free(_buf); -} - -/* - * Implementation of run - */ - -static struct run_access_ __run_base = { - run_how_assign, - run_how_get, - run_some_bytes_assign, - run_some_bytes_get, - run_fixed_bytes_assign, - run_fixed_bytes_get, -}; - -struct run * -run_new(void) -{ - struct run *tmp; - if ((tmp = malloc(sizeof(struct run))) == NULL) { - event_warn("%s: malloc", __func__); - return (NULL); - } - tmp->base = &__run_base; - - tmp->how_data = NULL; - tmp->how_set = 0; - - tmp->some_bytes_data = NULL; - tmp->some_bytes_length = 0; - tmp->some_bytes_set = 0; - - memset(tmp->fixed_bytes_data, 0, sizeof(tmp->fixed_bytes_data)); - tmp->fixed_bytes_set = 0; - - return (tmp); -} - - - - -int -run_how_assign(struct run *msg, - const char * value) -{ - if (msg->how_data != NULL) - free(msg->how_data); - if ((msg->how_data = strdup(value)) == NULL) - return (-1); - msg->how_set = 1; - return (0); -} - -int -run_some_bytes_assign(struct run *msg, const uint8_t * value, uint32_t len) -{ - if (msg->some_bytes_data != NULL) - free (msg->some_bytes_data); - msg->some_bytes_data = malloc(len); - if (msg->some_bytes_data == NULL) - return (-1); - msg->some_bytes_set = 1; - msg->some_bytes_length = len; - memcpy(msg->some_bytes_data, value, len); - return (0); -} - -int -run_fixed_bytes_assign(struct run *msg, const uint8_t *value) -{ - msg->fixed_bytes_set = 1; - memcpy(msg->fixed_bytes_data, value, 24); - return (0); -} - -int -run_how_get(struct run *msg, char * *value) -{ - if (msg->how_set != 1) - return (-1); - *value = msg->how_data; - return (0); -} - -int -run_some_bytes_get(struct run *msg, uint8_t * *value, uint32_t *plen) -{ - if (msg->some_bytes_set != 1) - return (-1); - *value = msg->some_bytes_data; - *plen = msg->some_bytes_length; - return (0); -} - -int -run_fixed_bytes_get(struct run *msg, uint8_t **value) -{ - if (msg->fixed_bytes_set != 1) - return (-1); - *value = msg->fixed_bytes_data; - return (0); -} - -void -run_clear(struct run *tmp) -{ - if (tmp->how_set == 1) { - free (tmp->how_data); - tmp->how_data = NULL; - tmp->how_set = 0; - } - if (tmp->some_bytes_set == 1) { - free (tmp->some_bytes_data); - tmp->some_bytes_data = NULL; - tmp->some_bytes_length = 0; - tmp->some_bytes_set = 0; - } - tmp->fixed_bytes_set = 0; - memset(tmp->fixed_bytes_data, 0, sizeof(tmp->fixed_bytes_data)); -} - -void -run_free(struct run *tmp) -{ - if (tmp->how_data != NULL) - free (tmp->how_data); - if (tmp->some_bytes_data != NULL) - free (tmp->some_bytes_data); - free(tmp); -} - -void -run_marshal(struct evbuffer *evbuf, const struct run *tmp){ - evtag_marshal_string(evbuf, RUN_HOW, tmp->how_data); - if (tmp->some_bytes_set) { - evtag_marshal(evbuf, RUN_SOME_BYTES, tmp->some_bytes_data, tmp->some_bytes_length); - } - evtag_marshal(evbuf, RUN_FIXED_BYTES, tmp->fixed_bytes_data, sizeof(tmp->fixed_bytes_data)); -} - -int -run_unmarshal(struct run *tmp, struct evbuffer *evbuf) -{ - uint32_t tag; - while (EVBUFFER_LENGTH(evbuf) > 0) { - if (evtag_peek(evbuf, &tag) == -1) - return (-1); - switch (tag) { - - case RUN_HOW: - - if (tmp->how_set) - return (-1); - if (evtag_unmarshal_string(evbuf, RUN_HOW, &tmp->how_data) == -1) { - event_warnx("%s: failed to unmarshal how", __func__); - return (-1); - } - tmp->how_set = 1; - break; - - case RUN_SOME_BYTES: - - if (tmp->some_bytes_set) - return (-1); - if (evtag_payload_length(evbuf, &tmp->some_bytes_length) == -1) - return (-1); - if (tmp->some_bytes_length > EVBUFFER_LENGTH(evbuf)) - return (-1); - if ((tmp->some_bytes_data = malloc(tmp->some_bytes_length)) == NULL) - return (-1); - if (evtag_unmarshal_fixed(evbuf, RUN_SOME_BYTES, tmp->some_bytes_data, tmp->some_bytes_length) == -1) { - event_warnx("%s: failed to unmarshal some_bytes", __func__); - return (-1); - } - tmp->some_bytes_set = 1; - break; - - case RUN_FIXED_BYTES: - - if (tmp->fixed_bytes_set) - return (-1); - if (evtag_unmarshal_fixed(evbuf, RUN_FIXED_BYTES, tmp->fixed_bytes_data, sizeof(tmp->fixed_bytes_data)) == -1) { - event_warnx("%s: failed to unmarshal fixed_bytes", __func__); - return (-1); - } - tmp->fixed_bytes_set = 1; - break; - - default: - return -1; - } - } - - if (run_complete(tmp) == -1) - return (-1); - return (0); -} - -int -run_complete(struct run *msg) -{ - if (!msg->how_set) - return (-1); - if (!msg->fixed_bytes_set) - return (-1); - return (0); -} - -int -evtag_unmarshal_run(struct evbuffer *evbuf, uint32_t need_tag, struct run *msg) -{ - uint32_t tag; - int res = -1; - - struct evbuffer *tmp = evbuffer_new(); - - if (evtag_unmarshal(evbuf, &tag, tmp) == -1 || tag != need_tag) - goto error; - - if (run_unmarshal(msg, tmp) == -1) - goto error; - - res = 0; - - error: - evbuffer_free(tmp); - return (res); -} - -void -evtag_marshal_run(struct evbuffer *evbuf, uint32_t tag, const struct run *msg) -{ - struct evbuffer *_buf = evbuffer_new(); - assert(_buf != NULL); - evbuffer_drain(_buf, -1); - run_marshal(_buf, msg); - evtag_marshal(evbuf, tag, EVBUFFER_DATA(_buf), EVBUFFER_LENGTH(_buf)); - evbuffer_free(_buf); -} - diff -Nru mysql-5.7-5.7.25/libevent/test/regress.gen.h mysql-5.7-5.7.26/libevent/test/regress.gen.h --- mysql-5.7-5.7.25/libevent/test/regress.gen.h 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/test/regress.gen.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,183 +0,0 @@ -/* - * Automatically generated from ./regress.rpc - */ - -#ifndef ___REGRESS_RPC_ -#define ___REGRESS_RPC_ - -#include -#ifdef _EVENT_HAVE_STDINT_H -#include -#endif -#define EVTAG_HAS(msg, member) ((msg)->member##_set == 1) -#ifdef __GNUC__ -#define EVTAG_ASSIGN(msg, member, args...) (*(msg)->base->member##_assign)(msg, ## args) -#define EVTAG_GET(msg, member, args...) (*(msg)->base->member##_get)(msg, ## args) -#else -#define EVTAG_ASSIGN(msg, member, ...) (*(msg)->base->member##_assign)(msg, ## __VA_ARGS__) -#define EVTAG_GET(msg, member, ...) (*(msg)->base->member##_get)(msg, ## __VA_ARGS__) -#endif -#define EVTAG_ADD(msg, member) (*(msg)->base->member##_add)(msg) -#define EVTAG_LEN(msg, member) ((msg)->member##_length) - -struct msg; -struct kill; -struct run; - -/* Tag definition for msg */ -enum msg_ { - MSG_FROM_NAME=1, - MSG_TO_NAME=2, - MSG_ATTACK=3, - MSG_RUN=4, - MSG_MAX_TAGS -}; - -/* Structure declaration for msg */ -struct msg_access_ { - int (*from_name_assign)(struct msg *, const char *); - int (*from_name_get)(struct msg *, char * *); - int (*to_name_assign)(struct msg *, const char *); - int (*to_name_get)(struct msg *, char * *); - int (*attack_assign)(struct msg *, const struct kill*); - int (*attack_get)(struct msg *, struct kill* *); - int (*run_assign)(struct msg *, int, const struct run *); - int (*run_get)(struct msg *, int, struct run * *); - struct run * (*run_add)(struct msg *); -}; - -struct msg { - struct msg_access_ *base; - - char *from_name_data; - char *to_name_data; - struct kill* attack_data; - struct run **run_data; - int run_length; - int run_num_allocated; - - uint8_t from_name_set; - uint8_t to_name_set; - uint8_t attack_set; - uint8_t run_set; -}; - -struct msg *msg_new(void); -void msg_free(struct msg *); -void msg_clear(struct msg *); -void msg_marshal(struct evbuffer *, const struct msg *); -int msg_unmarshal(struct msg *, struct evbuffer *); -int msg_complete(struct msg *); -void evtag_marshal_msg(struct evbuffer *, uint32_t, - const struct msg *); -int evtag_unmarshal_msg(struct evbuffer *, uint32_t, - struct msg *); -int msg_from_name_assign(struct msg *, const char *); -int msg_from_name_get(struct msg *, char * *); -int msg_to_name_assign(struct msg *, const char *); -int msg_to_name_get(struct msg *, char * *); -int msg_attack_assign(struct msg *, const struct kill*); -int msg_attack_get(struct msg *, struct kill* *); -int msg_run_assign(struct msg *, int, const struct run *); -int msg_run_get(struct msg *, int, struct run * *); -struct run * msg_run_add(struct msg *); -/* --- msg done --- */ - -/* Tag definition for kill */ -enum kill_ { - KILL_WEAPON=65825, - KILL_ACTION=2, - KILL_HOW_OFTEN=3, - KILL_MAX_TAGS -}; - -/* Structure declaration for kill */ -struct kill_access_ { - int (*weapon_assign)(struct kill *, const char *); - int (*weapon_get)(struct kill *, char * *); - int (*action_assign)(struct kill *, const char *); - int (*action_get)(struct kill *, char * *); - int (*how_often_assign)(struct kill *, const uint32_t); - int (*how_often_get)(struct kill *, uint32_t *); -}; - -struct kill { - struct kill_access_ *base; - - char *weapon_data; - char *action_data; - uint32_t how_often_data; - - uint8_t weapon_set; - uint8_t action_set; - uint8_t how_often_set; -}; - -struct kill *kill_new(void); -void kill_free(struct kill *); -void kill_clear(struct kill *); -void kill_marshal(struct evbuffer *, const struct kill *); -int kill_unmarshal(struct kill *, struct evbuffer *); -int kill_complete(struct kill *); -void evtag_marshal_kill(struct evbuffer *, uint32_t, - const struct kill *); -int evtag_unmarshal_kill(struct evbuffer *, uint32_t, - struct kill *); -int kill_weapon_assign(struct kill *, const char *); -int kill_weapon_get(struct kill *, char * *); -int kill_action_assign(struct kill *, const char *); -int kill_action_get(struct kill *, char * *); -int kill_how_often_assign(struct kill *, const uint32_t); -int kill_how_often_get(struct kill *, uint32_t *); -/* --- kill done --- */ - -/* Tag definition for run */ -enum run_ { - RUN_HOW=1, - RUN_SOME_BYTES=2, - RUN_FIXED_BYTES=3, - RUN_MAX_TAGS -}; - -/* Structure declaration for run */ -struct run_access_ { - int (*how_assign)(struct run *, const char *); - int (*how_get)(struct run *, char * *); - int (*some_bytes_assign)(struct run *, const uint8_t *, uint32_t); - int (*some_bytes_get)(struct run *, uint8_t * *, uint32_t *); - int (*fixed_bytes_assign)(struct run *, const uint8_t *); - int (*fixed_bytes_get)(struct run *, uint8_t **); -}; - -struct run { - struct run_access_ *base; - - char *how_data; - uint8_t *some_bytes_data; - uint32_t some_bytes_length; - uint8_t fixed_bytes_data[24]; - - uint8_t how_set; - uint8_t some_bytes_set; - uint8_t fixed_bytes_set; -}; - -struct run *run_new(void); -void run_free(struct run *); -void run_clear(struct run *); -void run_marshal(struct evbuffer *, const struct run *); -int run_unmarshal(struct run *, struct evbuffer *); -int run_complete(struct run *); -void evtag_marshal_run(struct evbuffer *, uint32_t, - const struct run *); -int evtag_unmarshal_run(struct evbuffer *, uint32_t, - struct run *); -int run_how_assign(struct run *, const char *); -int run_how_get(struct run *, char * *); -int run_some_bytes_assign(struct run *, const uint8_t *, uint32_t); -int run_some_bytes_get(struct run *, uint8_t * *, uint32_t *); -int run_fixed_bytes_assign(struct run *, const uint8_t *); -int run_fixed_bytes_get(struct run *, uint8_t **); -/* --- run done --- */ - -#endif /* ___REGRESS_RPC_ */ diff -Nru mysql-5.7-5.7.25/libevent/test/regress.h mysql-5.7-5.7.26/libevent/test/regress.h --- mysql-5.7-5.7.25/libevent/test/regress.h 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/test/regress.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,45 +0,0 @@ -/* - * Copyright (c) 2000-2004 Niels Provos - * All rights reserved. - * - * 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. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. - */ -#ifndef _REGRESS_H_ -#define _REGRESS_H_ - -#ifdef __cplusplus -extern "C" { -#endif - -void http_suite(void); -void http_basic_test(void); - -void rpc_suite(void); - -void dns_suite(void); - -#ifdef __cplusplus -} -#endif - -#endif /* _REGRESS_H_ */ diff -Nru mysql-5.7-5.7.25/libevent/test/regress_http.c mysql-5.7-5.7.26/libevent/test/regress_http.c --- mysql-5.7-5.7.25/libevent/test/regress_http.c 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/test/regress_http.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,1490 +0,0 @@ -/* - * Copyright (c) 2003-2006 Niels Provos - * All rights reserved. - * This file was modified by Oracle on 28-08-2015. - * Modifications copyright (c) 2015, Oracle and/or its affiliates. - * All rights reserved. - * - * 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. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. - */ - -#ifdef WIN32 -#include -#include -#endif - -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -#include -#include -#ifdef HAVE_SYS_TIME_H -#include -#endif -#include -#ifndef WIN32 -#include -#include -#include -#include -#endif -#include -#include -#include -#include -#include - -#include "event.h" -#include "evhttp.h" -#include "log.h" -#include "http-internal.h" - -#define INNODB_CHANGED - -extern int pair[]; -extern int test_ok; - -static struct evhttp *http; -/* set if a test needs to call loopexit on a base */ -static struct event_base *base; - -void http_suite(void); - -void http_basic_cb(struct evhttp_request *req, void *arg); -static void http_chunked_cb(struct evhttp_request *req, void *arg); -void http_post_cb(struct evhttp_request *req, void *arg); -void http_dispatcher_cb(struct evhttp_request *req, void *arg); -static void http_large_delay_cb(struct evhttp_request *req, void *arg); - -static struct evhttp * -http_setup(short *pport, struct event_base *base) -{ - int i; - struct evhttp *myhttp; - short port = -1; - - /* Try a few different ports */ - myhttp = evhttp_new(base); - for (i = 0; i < 50; ++i) { - if (evhttp_bind_socket(myhttp, "127.0.0.1", 8080 + i) != -1) { - port = 8080 + i; - break; - } - } - - if (port == -1) - event_errx(1, "Could not start web server"); - - /* Register a callback for certain types of requests */ - evhttp_set_cb(myhttp, "/test", http_basic_cb, NULL); - evhttp_set_cb(myhttp, "/chunked", http_chunked_cb, NULL); - evhttp_set_cb(myhttp, "/postit", http_post_cb, NULL); - evhttp_set_cb(myhttp, "/largedelay", http_large_delay_cb, NULL); - evhttp_set_cb(myhttp, "/", http_dispatcher_cb, NULL); - - *pport = port; - return (myhttp); -} - -#ifndef NI_MAXSERV -#define NI_MAXSERV 1024 -#endif - -static int -http_connect(const char *address, u_short port) -{ - /* Stupid code for connecting */ -#ifdef WIN32 - struct hostent *he; - struct sockaddr_in sin; -#else - struct addrinfo ai, *aitop; - char strport[NI_MAXSERV]; -#endif - struct sockaddr *sa; - int slen; - int fd; - -#ifdef WIN32 - if (!(he = gethostbyname(address))) { - event_warn("gethostbyname"); - } - memcpy(&sin.sin_addr, he->h_addr_list[0], he->h_length); - sin.sin_family = AF_INET; - sin.sin_port = htons(port); - slen = sizeof(struct sockaddr_in); - sa = (struct sockaddr*)&sin; -#else - memset(&ai, 0, sizeof (ai)); - ai.ai_family = AF_INET; - ai.ai_socktype = SOCK_STREAM; - snprintf(strport, sizeof (strport), "%d", port); - if (getaddrinfo(address, strport, &ai, &aitop) != 0) { - event_warn("getaddrinfo"); - return (-1); - } - sa = aitop->ai_addr; - slen = aitop->ai_addrlen; -#endif - - fd = socket(AF_INET, SOCK_STREAM, 0); - if (fd == -1) - event_err(1, "socket failed"); - - if (connect(fd, sa, slen) == -1) - event_err(1, "connect failed"); - -#ifndef WIN32 - freeaddrinfo(aitop); -#endif - - return (fd); -} - -static void -http_readcb(struct bufferevent *bev, void *arg) -{ - const char *what = "This is funny"; - - event_debug(("%s: %s\n", __func__, EVBUFFER_DATA(bev->input))); - - if (evbuffer_find(bev->input, - (const unsigned char*) what, strlen(what)) != NULL) { - struct evhttp_request *req = evhttp_request_new(NULL, NULL); - enum message_read_status done; - - req->kind = EVHTTP_RESPONSE; - done = evhttp_parse_firstline(req, bev->input); - if (done != ALL_DATA_READ) - goto out; - - done = evhttp_parse_headers(req, bev->input); - if (done != ALL_DATA_READ) - goto out; - - if (done == 1 && - evhttp_find_header(req->input_headers, - "Content-Type") != NULL) - test_ok++; - - out: - evhttp_request_free(req); - bufferevent_disable(bev, EV_READ); - if (base) - event_base_loopexit(base, NULL); - else - event_loopexit(NULL); - } -} - -static void -http_writecb(struct bufferevent *bev, void *arg) -{ - if (EVBUFFER_LENGTH(bev->output) == 0) { - /* enable reading of the reply */ - bufferevent_enable(bev, EV_READ); - test_ok++; - } -} - -static void -http_errorcb(struct bufferevent *bev, short what, void *arg) -{ - test_ok = -2; - event_loopexit(NULL); -} - -void -http_basic_cb(struct evhttp_request *req, void *arg) -{ - struct evbuffer *evb = evbuffer_new(); - int empty = evhttp_find_header(req->input_headers, "Empty") != NULL; - event_debug(("%s: called\n", __func__)); - evbuffer_add_printf(evb, "This is funny"); - - /* For multi-line headers test */ - { - const char *multi = - evhttp_find_header(req->input_headers,"X-multi"); - if (multi) { - if (strcmp("END", multi + strlen(multi) - 3) == 0) - test_ok++; - if (evhttp_find_header(req->input_headers, "X-Last")) - test_ok++; - } - } - - /* injecting a bad content-length */ - if (evhttp_find_header(req->input_headers, "X-Negative")) - evhttp_add_header(req->output_headers, - "Content-Length", "-100"); - - /* allow sending of an empty reply */ - evhttp_send_reply(req, HTTP_OK, "Everything is fine", - !empty ? evb : NULL); - - evbuffer_free(evb); -} - -static char const* const CHUNKS[] = { - "This is funny", - "but not hilarious.", - "bwv 1052" -}; - -struct chunk_req_state { - struct evhttp_request *req; - int i; -}; - -static void -http_chunked_trickle_cb(int fd, short events, void *arg) -{ - struct evbuffer *evb = evbuffer_new(); - struct chunk_req_state *state = arg; - struct timeval when = { 0, 0 }; - - evbuffer_add_printf(evb, "%s", CHUNKS[state->i]); - evhttp_send_reply_chunk(state->req, evb); - evbuffer_free(evb); - - if (++state->i < sizeof(CHUNKS)/sizeof(CHUNKS[0])) { - event_once(-1, EV_TIMEOUT, - http_chunked_trickle_cb, state, &when); - } else { - evhttp_send_reply_end(state->req); - free(state); - } -} - -static void -http_chunked_cb(struct evhttp_request *req, void *arg) -{ - struct timeval when = { 0, 0 }; - struct chunk_req_state *state = malloc(sizeof(struct chunk_req_state)); - -#ifdef INNODB_CHANGED - if (!state) { - fprintf(stderr, "Unable to allocate memory in" - "http_chunked_cb...\n"); - exit (1); - } -#endif - - event_debug(("%s: called\n", __func__)); - - memset(state, 0, sizeof(struct chunk_req_state)); - state->req = req; - - /* generate a chunked reply */ - evhttp_send_reply_start(req, HTTP_OK, "Everything is fine"); - - /* but trickle it across several iterations to ensure we're not - * assuming it comes all at once */ - event_once(-1, EV_TIMEOUT, http_chunked_trickle_cb, state, &when); -} - -static void -http_complete_write(int fd, short what, void *arg) -{ - struct bufferevent *bev = arg; - const char *http_request = "host\r\n" - "Connection: close\r\n" - "\r\n"; - bufferevent_write(bev, http_request, strlen(http_request)); -} - -static void -http_basic_test(void) -{ - struct timeval tv; - struct bufferevent *bev; - int fd; - const char *http_request; - short port = -1; - - test_ok = 0; - fprintf(stdout, "Testing Basic HTTP Server: "); - - http = http_setup(&port, NULL); - - /* bind to a second socket */ - if (evhttp_bind_socket(http, "127.0.0.1", port + 1) == -1) { - fprintf(stdout, "FAILED (bind)\n"); - exit(1); - } - - fd = http_connect("127.0.0.1", port); - - /* Stupid thing to send a request */ - bev = bufferevent_new(fd, http_readcb, http_writecb, - http_errorcb, NULL); - - /* first half of the http request */ - http_request = - "GET /test HTTP/1.1\r\n" - "Host: some"; - - bufferevent_write(bev, http_request, strlen(http_request)); - timerclear(&tv); - tv.tv_usec = 10000; - event_once(-1, EV_TIMEOUT, http_complete_write, bev, &tv); - - event_dispatch(); - - if (test_ok != 3) { - fprintf(stdout, "FAILED\n"); - exit(1); - } - - /* connect to the second port */ - bufferevent_free(bev); - EVUTIL_CLOSESOCKET(fd); - - fd = http_connect("127.0.0.1", port + 1); - - /* Stupid thing to send a request */ - bev = bufferevent_new(fd, http_readcb, http_writecb, - http_errorcb, NULL); - - http_request = - "GET /test HTTP/1.1\r\n" - "Host: somehost\r\n" - "Connection: close\r\n" - "\r\n"; - - bufferevent_write(bev, http_request, strlen(http_request)); - - event_dispatch(); - - bufferevent_free(bev); - EVUTIL_CLOSESOCKET(fd); - - evhttp_free(http); - - if (test_ok != 5) { - fprintf(stdout, "FAILED\n"); - exit(1); - } - - fprintf(stdout, "OK\n"); -} - -static struct evhttp_connection *delayed_client; - -static void -http_delay_reply(int fd, short what, void *arg) -{ - struct evhttp_request *req = arg; - - evhttp_send_reply(req, HTTP_OK, "Everything is fine", NULL); - - ++test_ok; -} - -static void -http_large_delay_cb(struct evhttp_request *req, void *arg) -{ - struct timeval tv; - timerclear(&tv); - tv.tv_sec = 3; - - event_once(-1, EV_TIMEOUT, http_delay_reply, req, &tv); - - /* here we close the client connection which will cause an EOF */ - evhttp_connection_fail(delayed_client, EVCON_HTTP_EOF); -} - -void http_request_done(struct evhttp_request *, void *); -void http_request_empty_done(struct evhttp_request *, void *); - -static void -http_connection_test(int persistent) -{ - short port = -1; - struct evhttp_connection *evcon = NULL; - struct evhttp_request *req = NULL; - - test_ok = 0; - fprintf(stdout, "Testing Request Connection Pipeline %s: ", - persistent ? "(persistent)" : ""); - - http = http_setup(&port, NULL); - - evcon = evhttp_connection_new("127.0.0.1", port); - if (evcon == NULL) { - fprintf(stdout, "FAILED\n"); - exit(1); - } - - /* - * At this point, we want to schedule a request to the HTTP - * server using our make request method. - */ - - req = evhttp_request_new(http_request_done, NULL); - - /* Add the information that we care about */ - evhttp_add_header(req->output_headers, "Host", "somehost"); - - /* We give ownership of the request to the connection */ - if (evhttp_make_request(evcon, req, EVHTTP_REQ_GET, "/test") == -1) { - fprintf(stdout, "FAILED\n"); - exit(1); - } - - event_dispatch(); - - if (test_ok != 1) { - fprintf(stdout, "FAILED\n"); - exit(1); - } - - /* try to make another request over the same connection */ - test_ok = 0; - - req = evhttp_request_new(http_request_done, NULL); - - /* Add the information that we care about */ - evhttp_add_header(req->output_headers, "Host", "somehost"); - - /* - * if our connections are not supposed to be persistent; request - * a close from the server. - */ - if (!persistent) - evhttp_add_header(req->output_headers, "Connection", "close"); - - /* We give ownership of the request to the connection */ - if (evhttp_make_request(evcon, req, EVHTTP_REQ_GET, "/test") == -1) { - fprintf(stdout, "FAILED\n"); - exit(1); - } - - event_dispatch(); - - /* make another request: request empty reply */ - test_ok = 0; - - req = evhttp_request_new(http_request_empty_done, NULL); - - /* Add the information that we care about */ - evhttp_add_header(req->output_headers, "Empty", "itis"); - - /* We give ownership of the request to the connection */ - if (evhttp_make_request(evcon, req, EVHTTP_REQ_GET, "/test") == -1) { - fprintf(stdout, "FAILED\n"); - exit(1); - } - - event_dispatch(); - - if (test_ok != 1) { - fprintf(stdout, "FAILED\n"); - exit(1); - } - - evhttp_connection_free(evcon); - evhttp_free(http); - - fprintf(stdout, "OK\n"); -} - -void -http_request_done(struct evhttp_request *req, void *arg) -{ - const char *what = "This is funny"; - - if (req->response_code != HTTP_OK) { - fprintf(stderr, "FAILED\n"); - exit(1); - } - - if (evhttp_find_header(req->input_headers, "Content-Type") == NULL) { - fprintf(stderr, "FAILED\n"); - exit(1); - } - - if (EVBUFFER_LENGTH(req->input_buffer) != strlen(what)) { - fprintf(stderr, "FAILED\n"); - exit(1); - } - - if (memcmp(EVBUFFER_DATA(req->input_buffer), what, strlen(what)) != 0) { - fprintf(stderr, "FAILED\n"); - exit(1); - } - - test_ok = 1; - event_loopexit(NULL); -} - -/* test date header and content length */ - -void -http_request_empty_done(struct evhttp_request *req, void *arg) -{ - if (req->response_code != HTTP_OK) { - fprintf(stderr, "FAILED\n"); - exit(1); - } - - if (evhttp_find_header(req->input_headers, "Date") == NULL) { - fprintf(stderr, "FAILED\n"); - exit(1); - } - - - if (evhttp_find_header(req->input_headers, "Content-Length") == NULL) { - fprintf(stderr, "FAILED\n"); - exit(1); - } - - if (strcmp(evhttp_find_header(req->input_headers, "Content-Length"), - "0")) { - fprintf(stderr, "FAILED\n"); - exit(1); - } - - if (EVBUFFER_LENGTH(req->input_buffer) != 0) { - fprintf(stderr, "FAILED\n"); - exit(1); - } - - test_ok = 1; - event_loopexit(NULL); -} - -/* - * HTTP DISPATCHER test - */ - -void -http_dispatcher_cb(struct evhttp_request *req, void *arg) -{ - - struct evbuffer *evb = evbuffer_new(); - event_debug(("%s: called\n", __func__)); - evbuffer_add_printf(evb, "DISPATCHER_TEST"); - - evhttp_send_reply(req, HTTP_OK, "Everything is fine", evb); - - evbuffer_free(evb); -} - -static void -http_dispatcher_test_done(struct evhttp_request *req, void *arg) -{ - const char *what = "DISPATCHER_TEST"; - - if (req->response_code != HTTP_OK) { - fprintf(stderr, "FAILED\n"); - exit(1); - } - - if (evhttp_find_header(req->input_headers, "Content-Type") == NULL) { - fprintf(stderr, "FAILED (content type)\n"); - exit(1); - } - - if (EVBUFFER_LENGTH(req->input_buffer) != strlen(what)) { - fprintf(stderr, "FAILED (length %zu vs %zu)\n", - EVBUFFER_LENGTH(req->input_buffer), strlen(what)); - exit(1); - } - - if (memcmp(EVBUFFER_DATA(req->input_buffer), what, strlen(what)) != 0) { - fprintf(stderr, "FAILED (data)\n"); - exit(1); - } - - test_ok = 1; - event_loopexit(NULL); -} - -static void -http_dispatcher_test(void) -{ - short port = -1; - struct evhttp_connection *evcon = NULL; - struct evhttp_request *req = NULL; - - test_ok = 0; - fprintf(stdout, "Testing HTTP Dispatcher: "); - - http = http_setup(&port, NULL); - - evcon = evhttp_connection_new("127.0.0.1", port); - if (evcon == NULL) { - fprintf(stdout, "FAILED\n"); - exit(1); - } - - /* also bind to local host */ - evhttp_connection_set_local_address(evcon, "127.0.0.1"); - - /* - * At this point, we want to schedule an HTTP GET request - * server using our make request method. - */ - - req = evhttp_request_new(http_dispatcher_test_done, NULL); - if (req == NULL) { - fprintf(stdout, "FAILED\n"); - exit(1); - } - - /* Add the information that we care about */ - evhttp_add_header(req->output_headers, "Host", "somehost"); - - if (evhttp_make_request(evcon, req, EVHTTP_REQ_GET, "/?arg=val") == -1) { - fprintf(stdout, "FAILED\n"); - exit(1); - } - - event_dispatch(); - - evhttp_connection_free(evcon); - evhttp_free(http); - - if (test_ok != 1) { - fprintf(stdout, "FAILED: %d\n", test_ok); - exit(1); - } - - fprintf(stdout, "OK\n"); -} - -/* - * HTTP POST test. - */ - -void http_postrequest_done(struct evhttp_request *, void *); - -#define POST_DATA "Okay. Not really printf" - -static void -http_post_test(void) -{ - short port = -1; - struct evhttp_connection *evcon = NULL; - struct evhttp_request *req = NULL; - - test_ok = 0; - fprintf(stdout, "Testing HTTP POST Request: "); - - http = http_setup(&port, NULL); - - evcon = evhttp_connection_new("127.0.0.1", port); - if (evcon == NULL) { - fprintf(stdout, "FAILED\n"); - exit(1); - } - - /* - * At this point, we want to schedule an HTTP POST request - * server using our make request method. - */ - - req = evhttp_request_new(http_postrequest_done, NULL); - if (req == NULL) { - fprintf(stdout, "FAILED\n"); - exit(1); - } - - /* Add the information that we care about */ - evhttp_add_header(req->output_headers, "Host", "somehost"); - evbuffer_add_printf(req->output_buffer, POST_DATA); - - if (evhttp_make_request(evcon, req, EVHTTP_REQ_POST, "/postit") == -1) { - fprintf(stdout, "FAILED\n"); - exit(1); - } - - event_dispatch(); - - evhttp_connection_free(evcon); - evhttp_free(http); - - if (test_ok != 1) { - fprintf(stdout, "FAILED: %d\n", test_ok); - exit(1); - } - - fprintf(stdout, "OK\n"); -} - -void -http_post_cb(struct evhttp_request *req, void *arg) -{ - struct evbuffer *evb; - event_debug(("%s: called\n", __func__)); - - /* Yes, we are expecting a post request */ - if (req->type != EVHTTP_REQ_POST) { - fprintf(stdout, "FAILED (post type)\n"); - exit(1); - } - - if (EVBUFFER_LENGTH(req->input_buffer) != strlen(POST_DATA)) { - fprintf(stdout, "FAILED (length: %zu vs %zu)\n", - EVBUFFER_LENGTH(req->input_buffer), strlen(POST_DATA)); - exit(1); - } - - if (memcmp(EVBUFFER_DATA(req->input_buffer), POST_DATA, - strlen(POST_DATA))) { - fprintf(stdout, "FAILED (data)\n"); - fprintf(stdout, "Got :%s\n", EVBUFFER_DATA(req->input_buffer)); - fprintf(stdout, "Want:%s\n", POST_DATA); - exit(1); - } - - evb = evbuffer_new(); - evbuffer_add_printf(evb, "This is funny"); - - evhttp_send_reply(req, HTTP_OK, "Everything is fine", evb); - - evbuffer_free(evb); -} - -void -http_postrequest_done(struct evhttp_request *req, void *arg) -{ - const char *what = "This is funny"; - - if (req == NULL) { - fprintf(stderr, "FAILED (timeout)\n"); - exit(1); - } - - if (req->response_code != HTTP_OK) { - - fprintf(stderr, "FAILED (response code)\n"); - exit(1); - } - - if (evhttp_find_header(req->input_headers, "Content-Type") == NULL) { - fprintf(stderr, "FAILED (content type)\n"); - exit(1); - } - - if (EVBUFFER_LENGTH(req->input_buffer) != strlen(what)) { - fprintf(stderr, "FAILED (length %zu vs %zu)\n", - EVBUFFER_LENGTH(req->input_buffer), strlen(what)); - exit(1); - } - - if (memcmp(EVBUFFER_DATA(req->input_buffer), what, strlen(what)) != 0) { - fprintf(stderr, "FAILED (data)\n"); - exit(1); - } - - test_ok = 1; - event_loopexit(NULL); -} - -static void -http_failure_readcb(struct bufferevent *bev, void *arg) -{ - const char *what = "400 Bad Request"; - if (evbuffer_find(bev->input, (const unsigned char*) what, strlen(what)) != NULL) { - test_ok = 2; - bufferevent_disable(bev, EV_READ); - event_loopexit(NULL); - } -} - -/* - * Testing that the HTTP server can deal with a malformed request. - */ -static void -http_failure_test(void) -{ - struct bufferevent *bev; - int fd; - const char *http_request; - short port = -1; - - test_ok = 0; - fprintf(stdout, "Testing Bad HTTP Request: "); - - http = http_setup(&port, NULL); - - fd = http_connect("127.0.0.1", port); - - /* Stupid thing to send a request */ - bev = bufferevent_new(fd, http_failure_readcb, http_writecb, - http_errorcb, NULL); - - http_request = "illegal request\r\n"; - - bufferevent_write(bev, http_request, strlen(http_request)); - - event_dispatch(); - - bufferevent_free(bev); - EVUTIL_CLOSESOCKET(fd); - - evhttp_free(http); - - if (test_ok != 2) { - fprintf(stdout, "FAILED\n"); - exit(1); - } - - fprintf(stdout, "OK\n"); -} - -static void -close_detect_done(struct evhttp_request *req, void *arg) -{ - struct timeval tv; - if (req == NULL || req->response_code != HTTP_OK) { - - fprintf(stderr, "FAILED\n"); - exit(1); - } - - test_ok = 1; - - timerclear(&tv); - tv.tv_sec = 3; /* longer than the http time out */ - - event_loopexit(&tv); -} - -static void -close_detect_launch(int fd, short what, void *arg) -{ - struct evhttp_connection *evcon = arg; - struct evhttp_request *req; - - req = evhttp_request_new(close_detect_done, NULL); - - /* Add the information that we care about */ - evhttp_add_header(req->output_headers, "Host", "somehost"); - - /* We give ownership of the request to the connection */ - if (evhttp_make_request(evcon, req, EVHTTP_REQ_GET, "/test") == -1) { - fprintf(stdout, "FAILED\n"); - exit(1); - } -} - -static void -close_detect_cb(struct evhttp_request *req, void *arg) -{ - struct evhttp_connection *evcon = arg; - struct timeval tv; - - if (req != NULL && req->response_code != HTTP_OK) { - - fprintf(stderr, "FAILED\n"); - exit(1); - } - - timerclear(&tv); - tv.tv_sec = 3; /* longer than the http time out */ - - /* launch a new request on the persistent connection in 6 seconds */ - event_once(-1, EV_TIMEOUT, close_detect_launch, evcon, &tv); -} - - -static void -http_close_detection(int with_delay) -{ - short port = -1; - struct evhttp_connection *evcon = NULL; - struct evhttp_request *req = NULL; - - test_ok = 0; - fprintf(stdout, "Testing Connection Close Detection%s: ", - with_delay ? " (with delay)" : ""); - - http = http_setup(&port, NULL); - - /* 2 second timeout */ - evhttp_set_timeout(http, 2); - - evcon = evhttp_connection_new("127.0.0.1", port); - if (evcon == NULL) { - fprintf(stdout, "FAILED\n"); - exit(1); - } - - delayed_client = evcon; - - /* - * At this point, we want to schedule a request to the HTTP - * server using our make request method. - */ - - req = evhttp_request_new(close_detect_cb, evcon); - - /* Add the information that we care about */ - evhttp_add_header(req->output_headers, "Host", "somehost"); - - /* We give ownership of the request to the connection */ - if (evhttp_make_request(evcon, - req, EVHTTP_REQ_GET, with_delay ? "/largedelay" : "/test") == -1) { - fprintf(stdout, "FAILED\n"); - exit(1); - } - - event_dispatch(); - - if (test_ok != 1) { - fprintf(stdout, "FAILED\n"); - exit(1); - } - - /* at this point, the http server should have no connection */ - if (TAILQ_FIRST(&http->connections) != NULL) { - fprintf(stdout, "FAILED (left connections)\n"); - exit(1); - } - - evhttp_connection_free(evcon); - evhttp_free(http); - - fprintf(stdout, "OK\n"); -} - -static void -http_highport_test(void) -{ - int i = -1; - struct evhttp *myhttp = NULL; - - fprintf(stdout, "Testing HTTP Server with high port: "); - - /* Try a few different ports */ - for (i = 0; i < 50; ++i) { - myhttp = evhttp_start("127.0.0.1", 65535 - i); - if (myhttp != NULL) { - fprintf(stdout, "OK\n"); - evhttp_free(myhttp); - return; - } - } - - fprintf(stdout, "FAILED\n"); - exit(1); -} - -static void -http_bad_header_test(void) -{ - struct evkeyvalq headers; - - fprintf(stdout, "Testing HTTP Header filtering: "); - - TAILQ_INIT(&headers); - - if (evhttp_add_header(&headers, "One", "Two") != 0) - goto fail; - - if (evhttp_add_header(&headers, "One\r", "Two") != -1) - goto fail; - if (evhttp_add_header(&headers, "One", "Two") != 0) - goto fail; - if (evhttp_add_header(&headers, "One", "Two\r\n Three") != 0) - goto fail; - if (evhttp_add_header(&headers, "One\r", "Two") != -1) - goto fail; - if (evhttp_add_header(&headers, "One\n", "Two") != -1) - goto fail; - if (evhttp_add_header(&headers, "One", "Two\r") != -1) - goto fail; - if (evhttp_add_header(&headers, "One", "Two\n") != -1) - goto fail; - - evhttp_clear_headers(&headers); - - fprintf(stdout, "OK\n"); - return; -fail: - fprintf(stdout, "FAILED\n"); - exit(1); -} - -static int validate_header( - const struct evkeyvalq* headers, - const char *key, const char *value) -{ - const char *real_val = evhttp_find_header(headers, key); - if (real_val == NULL) - return (-1); - if (strcmp(real_val, value) != 0) - return (-1); - return (0); -} - -static void -http_parse_query_test(void) -{ - struct evkeyvalq headers; - - fprintf(stdout, "Testing HTTP query parsing: "); - - TAILQ_INIT(&headers); - - evhttp_parse_query("http://www.test.com/?q=test", &headers); - if (validate_header(&headers, "q", "test") != 0) - goto fail; - evhttp_clear_headers(&headers); - - evhttp_parse_query("http://www.test.com/?q=test&foo=bar", &headers); - if (validate_header(&headers, "q", "test") != 0) - goto fail; - if (validate_header(&headers, "foo", "bar") != 0) - goto fail; - evhttp_clear_headers(&headers); - - evhttp_parse_query("http://www.test.com/?q=test+foo", &headers); - if (validate_header(&headers, "q", "test foo") != 0) - goto fail; - evhttp_clear_headers(&headers); - - evhttp_parse_query("http://www.test.com/?q=test%0Afoo", &headers); - if (validate_header(&headers, "q", "test\nfoo") != 0) - goto fail; - evhttp_clear_headers(&headers); - - evhttp_parse_query("http://www.test.com/?q=test%0Dfoo", &headers); - if (validate_header(&headers, "q", "test\rfoo") != 0) - goto fail; - evhttp_clear_headers(&headers); - - fprintf(stdout, "OK\n"); - return; -fail: - fprintf(stdout, "FAILED\n"); - exit(1); -} - -static void -http_base_test(void) -{ - struct bufferevent *bev; - int fd; - const char *http_request; - short port = -1; - - test_ok = 0; - fprintf(stdout, "Testing HTTP Server Event Base: "); - - base = event_init(); - - /* - * create another bogus base - which is being used by all subsequen - * tests - yuck! - */ - event_init(); - - http = http_setup(&port, base); - - fd = http_connect("127.0.0.1", port); - - /* Stupid thing to send a request */ - bev = bufferevent_new(fd, http_readcb, http_writecb, - http_errorcb, NULL); - bufferevent_base_set(base, bev); - - http_request = - "GET /test HTTP/1.1\r\n" - "Host: somehost\r\n" - "Connection: close\r\n" - "\r\n"; - - bufferevent_write(bev, http_request, strlen(http_request)); - - event_base_dispatch(base); - - bufferevent_free(bev); - EVUTIL_CLOSESOCKET(fd); - - evhttp_free(http); - - event_base_free(base); - base = NULL; - - if (test_ok != 2) { - fprintf(stdout, "FAILED\n"); - exit(1); - } - - fprintf(stdout, "OK\n"); -} - -/* - * the server is going to reply with chunked data. - */ - -static void -http_chunked_readcb(struct bufferevent *bev, void *arg) -{ - /* nothing here */ -} - -static void -http_chunked_errorcb(struct bufferevent *bev, short what, void *arg) -{ - if (!test_ok) - goto out; - - test_ok = -1; - - if ((what & EVBUFFER_EOF) != 0) { - struct evhttp_request *req = evhttp_request_new(NULL, NULL); - const char *header; - enum message_read_status done; - - req->kind = EVHTTP_RESPONSE; - done = evhttp_parse_firstline(req, EVBUFFER_INPUT(bev)); - if (done != ALL_DATA_READ) - goto out; - - done = evhttp_parse_headers(req, EVBUFFER_INPUT(bev)); - if (done != ALL_DATA_READ) - goto out; - - header = evhttp_find_header(req->input_headers, "Transfer-Encoding"); - if (header == NULL || strcmp(header, "chunked")) - goto out; - - header = evhttp_find_header(req->input_headers, "Connection"); - if (header == NULL || strcmp(header, "close")) - goto out; - - header = evbuffer_readline(EVBUFFER_INPUT(bev)); - if (header == NULL) - goto out; - /* 13 chars */ - if (strcmp(header, "d")) - goto out; - free((char*)header); - - if (strncmp((char *)EVBUFFER_DATA(EVBUFFER_INPUT(bev)), - "This is funny", 13)) - goto out; - - evbuffer_drain(EVBUFFER_INPUT(bev), 13 + 2); - - header = evbuffer_readline(EVBUFFER_INPUT(bev)); - if (header == NULL) - goto out; - /* 18 chars */ - if (strcmp(header, "12")) - goto out; - free((char *)header); - - if (strncmp((char *)EVBUFFER_DATA(EVBUFFER_INPUT(bev)), - "but not hilarious.", 18)) - goto out; - - evbuffer_drain(EVBUFFER_INPUT(bev), 18 + 2); - - header = evbuffer_readline(EVBUFFER_INPUT(bev)); - if (header == NULL) - goto out; - /* 8 chars */ - if (strcmp(header, "8")) - goto out; - free((char *)header); - - if (strncmp((char *)EVBUFFER_DATA(EVBUFFER_INPUT(bev)), - "bwv 1052.", 8)) - goto out; - - evbuffer_drain(EVBUFFER_INPUT(bev), 8 + 2); - - header = evbuffer_readline(EVBUFFER_INPUT(bev)); - if (header == NULL) - goto out; - /* 0 chars */ - if (strcmp(header, "0")) - goto out; - free((char *)header); - - test_ok = 2; - } - -out: - event_loopexit(NULL); -} - -static void -http_chunked_writecb(struct bufferevent *bev, void *arg) -{ - if (EVBUFFER_LENGTH(EVBUFFER_OUTPUT(bev)) == 0) { - /* enable reading of the reply */ - bufferevent_enable(bev, EV_READ); - test_ok++; - } -} - -static void -http_chunked_request_done(struct evhttp_request *req, void *arg) -{ - if (req->response_code != HTTP_OK) { - fprintf(stderr, "FAILED\n"); - exit(1); - } - - if (evhttp_find_header(req->input_headers, - "Transfer-Encoding") == NULL) { - fprintf(stderr, "FAILED\n"); - exit(1); - } - - if (EVBUFFER_LENGTH(req->input_buffer) != 13 + 18 + 8) { - fprintf(stderr, "FAILED\n"); - exit(1); - } - - if (strncmp((char *)EVBUFFER_DATA(req->input_buffer), - "This is funnybut not hilarious.bwv 1052", - 13 + 18 + 8)) { - fprintf(stderr, "FAILED\n"); - exit(1); - } - - test_ok = 1; - event_loopexit(NULL); -} - -static void -http_chunked_test(void) -{ - struct bufferevent *bev; - int fd; - const char *http_request; - short port = -1; - struct timeval tv_start, tv_end; - struct evhttp_connection *evcon = NULL; - struct evhttp_request *req = NULL; - int i; - - test_ok = 0; - fprintf(stdout, "Testing Chunked HTTP Reply: "); - - http = http_setup(&port, NULL); - - fd = http_connect("127.0.0.1", port); - - /* Stupid thing to send a request */ - bev = bufferevent_new(fd, - http_chunked_readcb, http_chunked_writecb, - http_chunked_errorcb, NULL); - - http_request = - "GET /chunked HTTP/1.1\r\n" - "Host: somehost\r\n" - "Connection: close\r\n" - "\r\n"; - - bufferevent_write(bev, http_request, strlen(http_request)); - - evutil_gettimeofday(&tv_start, NULL); - - event_dispatch(); - - evutil_gettimeofday(&tv_end, NULL); - evutil_timersub(&tv_end, &tv_start, &tv_end); - - if (tv_end.tv_sec >= 1) { - fprintf(stdout, "FAILED (time)\n"); - exit (1); - } - - - if (test_ok != 2) { - fprintf(stdout, "FAILED\n"); - exit(1); - } - - /* now try again with the regular connection object */ - evcon = evhttp_connection_new("127.0.0.1", port); - if (evcon == NULL) { - fprintf(stdout, "FAILED\n"); - exit(1); - } - - /* make two requests to check the keepalive behavior */ - for (i = 0; i < 2; i++) { - test_ok = 0; - req = evhttp_request_new(http_chunked_request_done, NULL); - - /* Add the information that we care about */ - evhttp_add_header(req->output_headers, "Host", "somehost"); - - /* We give ownership of the request to the connection */ - if (evhttp_make_request(evcon, req, - EVHTTP_REQ_GET, "/chunked") == -1) { - fprintf(stdout, "FAILED\n"); - exit(1); - } - - event_dispatch(); - - if (test_ok != 1) { - fprintf(stdout, "FAILED\n"); - exit(1); - } - } - - evhttp_connection_free(evcon); - evhttp_free(http); - - fprintf(stdout, "OK\n"); -} - -static void -http_multi_line_header_test(void) -{ - struct bufferevent *bev; - int fd; - const char *http_start_request; - short port = -1; - - test_ok = 0; - fprintf(stdout, "Testing HTTP Server with multi line: "); - - http = http_setup(&port, NULL); - - fd = http_connect("127.0.0.1", port); - - /* Stupid thing to send a request */ - bev = bufferevent_new(fd, http_readcb, http_writecb, - http_errorcb, NULL); - - http_start_request = - "GET /test HTTP/1.1\r\n" - "Host: somehost\r\n" - "Connection: close\r\n" - "X-Multi: aaaaaaaa\r\n" - " a\r\n" - "\tEND\r\n" - "X-Last: last\r\n" - "\r\n"; - - bufferevent_write(bev, http_start_request, strlen(http_start_request)); - - event_dispatch(); - - bufferevent_free(bev); - EVUTIL_CLOSESOCKET(fd); - - evhttp_free(http); - - if (test_ok != 4) { - fprintf(stdout, "FAILED\n"); - exit(1); - } - - fprintf(stdout, "OK\n"); -} - -static void -http_request_bad(struct evhttp_request *req, void *arg) -{ - if (req != NULL) { - fprintf(stderr, "FAILED\n"); - exit(1); - } - - test_ok = 1; - event_loopexit(NULL); -} - -static void -http_negative_content_length_test(void) -{ - short port = -1; - struct evhttp_connection *evcon = NULL; - struct evhttp_request *req = NULL; - - test_ok = 0; - fprintf(stdout, "Testing HTTP Negative Content Length: "); - - http = http_setup(&port, NULL); - - evcon = evhttp_connection_new("127.0.0.1", port); - if (evcon == NULL) { - fprintf(stdout, "FAILED\n"); - exit(1); - } - - /* - * At this point, we want to schedule a request to the HTTP - * server using our make request method. - */ - - req = evhttp_request_new(http_request_bad, NULL); - - /* Cause the response to have a negative content-length */ - evhttp_add_header(req->output_headers, "X-Negative", "makeitso"); - - /* We give ownership of the request to the connection */ - if (evhttp_make_request(evcon, req, EVHTTP_REQ_GET, "/test") == -1) { - fprintf(stdout, "FAILED\n"); - exit(1); - } - - event_dispatch(); - - evhttp_free(http); - - if (test_ok != 1) { - fprintf(stdout, "FAILED\n"); - exit(1); - } - - fprintf(stdout, "OK\n"); -} - -void -http_suite(void) -{ - http_base_test(); - http_bad_header_test(); - http_parse_query_test(); - http_basic_test(); - http_connection_test(0 /* not-persistent */); - http_connection_test(1 /* persistent */); - http_close_detection(0 /* with delay */); - http_close_detection(1 /* with delay */); - http_post_test(); - http_failure_test(); - http_highport_test(); - http_dispatcher_test(); - - http_multi_line_header_test(); - http_negative_content_length_test(); - - http_chunked_test(); -} diff -Nru mysql-5.7-5.7.25/libevent/test/regress.rpc mysql-5.7-5.7.26/libevent/test/regress.rpc --- mysql-5.7-5.7.25/libevent/test/regress.rpc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/test/regress.rpc 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -/* tests data packing and unpacking */ - -struct msg { - string from_name = 1; - string to_name = 2; - optional struct[kill] attack = 3; - array struct[run] run = 4; -} - -struct kill { - string weapon = 0x10121; - string action = 2; - optional int how_often = 3; -} - -struct run { - string how = 1; - optional bytes some_bytes = 2; - bytes fixed_bytes[24] = 3; -} diff -Nru mysql-5.7-5.7.25/libevent/test/regress_rpc.c mysql-5.7-5.7.26/libevent/test/regress_rpc.c --- mysql-5.7-5.7.25/libevent/test/regress_rpc.c 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/test/regress_rpc.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,631 +0,0 @@ -/* - * Copyright (c) 2003-2006 Niels Provos - * All rights reserved. - * - * 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. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. - */ - -#ifdef WIN32 -#include -#include -#endif - -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -#include -#include -#ifdef HAVE_SYS_TIME_H -#include -#endif -#include -#ifndef WIN32 -#include -#include -#include -#include -#endif -#include -#include -#include -#include -#include -#include - -#include "event.h" -#include "evhttp.h" -#include "log.h" -#include "evrpc.h" - -#include "regress.gen.h" - -void rpc_suite(void); - -extern int test_ok; - -static struct evhttp * -http_setup(short *pport) -{ - int i; - struct evhttp *myhttp; - short port = -1; - - /* Try a few different ports */ - for (i = 0; i < 50; ++i) { - myhttp = evhttp_start("127.0.0.1", 8080 + i); - if (myhttp != NULL) { - port = 8080 + i; - break; - } - } - - if (port == -1) - event_errx(1, "Could not start web server"); - - *pport = port; - return (myhttp); -} - -EVRPC_HEADER(Message, msg, kill); -EVRPC_HEADER(NeverReply, msg, kill); - -EVRPC_GENERATE(Message, msg, kill); -EVRPC_GENERATE(NeverReply, msg, kill); - -static int need_input_hook = 0; -static int need_output_hook = 0; - -static void -MessageCb(EVRPC_STRUCT(Message)* rpc, void *arg) -{ - struct kill* kill_reply = rpc->reply; - - if (need_input_hook) { - struct evhttp_request* req = EVRPC_REQUEST_HTTP(rpc); - const char *header = evhttp_find_header( - req->input_headers, "X-Hook"); - assert(strcmp(header, "input") == 0); - } - - /* we just want to fill in some non-sense */ - EVTAG_ASSIGN(kill_reply, weapon, "dagger"); - EVTAG_ASSIGN(kill_reply, action, "wave around like an idiot"); - - /* no reply to the RPC */ - EVRPC_REQUEST_DONE(rpc); -} - -static EVRPC_STRUCT(NeverReply) *saved_rpc; - -static void -NeverReplyCb(EVRPC_STRUCT(NeverReply)* rpc, void *arg) -{ - test_ok += 1; - saved_rpc = rpc; -} - -static void -rpc_setup(struct evhttp **phttp, short *pport, struct evrpc_base **pbase) -{ - short port; - struct evhttp *http = NULL; - struct evrpc_base *base = NULL; - - http = http_setup(&port); - base = evrpc_init(http); - - EVRPC_REGISTER(base, Message, msg, kill, MessageCb, NULL); - EVRPC_REGISTER(base, NeverReply, msg, kill, NeverReplyCb, NULL); - - *phttp = http; - *pport = port; - *pbase = base; - - need_input_hook = 0; - need_output_hook = 0; -} - -static void -rpc_teardown(struct evrpc_base *base) -{ - assert(EVRPC_UNREGISTER(base, Message) == 0); - assert(EVRPC_UNREGISTER(base, NeverReply) == 0); - - evrpc_free(base); -} - -static void -rpc_postrequest_failure(struct evhttp_request *req, void *arg) -{ - if (req->response_code != HTTP_SERVUNAVAIL) { - - fprintf(stderr, "FAILED (response code)\n"); - exit(1); - } - - test_ok = 1; - event_loopexit(NULL); -} - -/* - * Test a malformed payload submitted as an RPC - */ - -static void -rpc_basic_test(void) -{ - short port; - struct evhttp *http = NULL; - struct evrpc_base *base = NULL; - struct evhttp_connection *evcon = NULL; - struct evhttp_request *req = NULL; - - fprintf(stdout, "Testing Basic RPC Support: "); - - rpc_setup(&http, &port, &base); - - evcon = evhttp_connection_new("127.0.0.1", port); - if (evcon == NULL) { - fprintf(stdout, "FAILED\n"); - exit(1); - } - - /* - * At this point, we want to schedule an HTTP POST request - * server using our make request method. - */ - - req = evhttp_request_new(rpc_postrequest_failure, NULL); - if (req == NULL) { - fprintf(stdout, "FAILED\n"); - exit(1); - } - - /* Add the information that we care about */ - evhttp_add_header(req->output_headers, "Host", "somehost"); - evbuffer_add_printf(req->output_buffer, "Some Nonsense"); - - if (evhttp_make_request(evcon, req, - EVHTTP_REQ_POST, - "/.rpc.Message") == -1) { - fprintf(stdout, "FAILED\n"); - exit(1); - } - - test_ok = 0; - - event_dispatch(); - - evhttp_connection_free(evcon); - - rpc_teardown(base); - - if (test_ok != 1) { - fprintf(stdout, "FAILED\n"); - exit(1); - } - - fprintf(stdout, "OK\n"); - - evhttp_free(http); -} - -static void -rpc_postrequest_done(struct evhttp_request *req, void *arg) -{ - struct kill* kill_reply = NULL; - - if (req->response_code != HTTP_OK) { - - fprintf(stderr, "FAILED (response code)\n"); - exit(1); - } - - kill_reply = kill_new(); - - if ((kill_unmarshal(kill_reply, req->input_buffer)) == -1) { - fprintf(stderr, "FAILED (unmarshal)\n"); - exit(1); - } - - kill_free(kill_reply); - - test_ok = 1; - event_loopexit(NULL); -} - -static void -rpc_basic_message(void) -{ - short port; - struct evhttp *http = NULL; - struct evrpc_base *base = NULL; - struct evhttp_connection *evcon = NULL; - struct evhttp_request *req = NULL; - struct msg *msg; - - fprintf(stdout, "Testing Good RPC Post: "); - - rpc_setup(&http, &port, &base); - - evcon = evhttp_connection_new("127.0.0.1", port); - if (evcon == NULL) { - fprintf(stdout, "FAILED\n"); - exit(1); - } - - /* - * At this point, we want to schedule an HTTP POST request - * server using our make request method. - */ - - req = evhttp_request_new(rpc_postrequest_done, NULL); - if (req == NULL) { - fprintf(stdout, "FAILED\n"); - exit(1); - } - - /* Add the information that we care about */ - evhttp_add_header(req->output_headers, "Host", "somehost"); - - /* set up the basic message */ - msg = msg_new(); - EVTAG_ASSIGN(msg, from_name, "niels"); - EVTAG_ASSIGN(msg, to_name, "tester"); - msg_marshal(req->output_buffer, msg); - msg_free(msg); - - if (evhttp_make_request(evcon, req, - EVHTTP_REQ_POST, - "/.rpc.Message") == -1) { - fprintf(stdout, "FAILED\n"); - exit(1); - } - - test_ok = 0; - - event_dispatch(); - - evhttp_connection_free(evcon); - - rpc_teardown(base); - - if (test_ok != 1) { - fprintf(stdout, "FAILED\n"); - exit(1); - } - - fprintf(stdout, "OK\n"); - - evhttp_free(http); -} - -static struct evrpc_pool * -rpc_pool_with_connection(short port) -{ - struct evhttp_connection *evcon; - struct evrpc_pool *pool; - - pool = evrpc_pool_new(NULL); - assert(pool != NULL); - - evcon = evhttp_connection_new("127.0.0.1", port); - assert(evcon != NULL); - - evrpc_pool_add_connection(pool, evcon); - - return (pool); -} - -static void -GotKillCb(struct evrpc_status *status, - struct msg *msg, struct kill *kill, void *arg) -{ - char *weapon; - char *action; - - if (need_output_hook) { - struct evhttp_request *req = status->http_req; - const char *header = evhttp_find_header( - req->input_headers, "X-Pool-Hook"); - assert(strcmp(header, "ran") == 0); - } - - if (status->error != EVRPC_STATUS_ERR_NONE) - goto done; - - if (EVTAG_GET(kill, weapon, &weapon) == -1) { - fprintf(stderr, "get weapon\n"); - goto done; - } - if (EVTAG_GET(kill, action, &action) == -1) { - fprintf(stderr, "get action\n"); - goto done; - } - - if (strcmp(weapon, "dagger")) - goto done; - - if (strcmp(action, "wave around like an idiot")) - goto done; - - test_ok += 1; - -done: - event_loopexit(NULL); -} - -static void -GotKillCbTwo(struct evrpc_status *status, - struct msg *msg, struct kill *kill, void *arg) -{ - char *weapon; - char *action; - - if (status->error != EVRPC_STATUS_ERR_NONE) - goto done; - - if (EVTAG_GET(kill, weapon, &weapon) == -1) { - fprintf(stderr, "get weapon\n"); - goto done; - } - if (EVTAG_GET(kill, action, &action) == -1) { - fprintf(stderr, "get action\n"); - goto done; - } - - if (strcmp(weapon, "dagger")) - goto done; - - if (strcmp(action, "wave around like an idiot")) - goto done; - - test_ok += 1; - -done: - if (test_ok == 2) - event_loopexit(NULL); -} - -static int -rpc_hook_add_header(struct evhttp_request *req, - struct evbuffer *evbuf, void *arg) -{ - const char *hook_type = arg; - if (strcmp("input", hook_type) == 0) - evhttp_add_header(req->input_headers, "X-Hook", hook_type); - else - evhttp_add_header(req->output_headers, "X-Hook", hook_type); - return (0); -} - -static int -rpc_hook_remove_header(struct evhttp_request *req, - struct evbuffer *evbuf, void *arg) -{ - const char *header = evhttp_find_header(req->input_headers, "X-Hook"); - assert(header != NULL); - assert(strcmp(header, arg) == 0); - evhttp_remove_header(req->input_headers, "X-Hook"); - evhttp_add_header(req->input_headers, "X-Pool-Hook", "ran"); - - return (0); -} - -static void -rpc_basic_client(void) -{ - short port; - struct evhttp *http = NULL; - struct evrpc_base *base = NULL; - struct evrpc_pool *pool = NULL; - struct msg *msg; - struct kill *kill; - - fprintf(stdout, "Testing RPC Client: "); - - rpc_setup(&http, &port, &base); - - need_input_hook = 1; - need_output_hook = 1; - - assert(evrpc_add_hook(base, EVRPC_INPUT, rpc_hook_add_header, (void*)"input") - != NULL); - assert(evrpc_add_hook(base, EVRPC_OUTPUT, rpc_hook_add_header, (void*)"output") - != NULL); - - pool = rpc_pool_with_connection(port); - - assert(evrpc_add_hook(pool, EVRPC_INPUT, rpc_hook_remove_header, (void*)"output")); - - /* set up the basic message */ - msg = msg_new(); - EVTAG_ASSIGN(msg, from_name, "niels"); - EVTAG_ASSIGN(msg, to_name, "tester"); - - kill = kill_new(); - - EVRPC_MAKE_REQUEST(Message, pool, msg, kill, GotKillCb, NULL); - - test_ok = 0; - - event_dispatch(); - - if (test_ok != 1) { - fprintf(stdout, "FAILED (1)\n"); - exit(1); - } - - /* we do it twice to make sure that reuse works correctly */ - kill_clear(kill); - - EVRPC_MAKE_REQUEST(Message, pool, msg, kill, GotKillCb, NULL); - - event_dispatch(); - - rpc_teardown(base); - - if (test_ok != 2) { - fprintf(stdout, "FAILED (2)\n"); - exit(1); - } - - fprintf(stdout, "OK\n"); - - msg_free(msg); - kill_free(kill); - - evrpc_pool_free(pool); - evhttp_free(http); -} - -/* - * We are testing that the second requests gets send over the same - * connection after the first RPCs completes. - */ -static void -rpc_basic_queued_client(void) -{ - short port; - struct evhttp *http = NULL; - struct evrpc_base *base = NULL; - struct evrpc_pool *pool = NULL; - struct msg *msg; - struct kill *kill_one, *kill_two; - - fprintf(stdout, "Testing RPC (Queued) Client: "); - - rpc_setup(&http, &port, &base); - - pool = rpc_pool_with_connection(port); - - /* set up the basic message */ - msg = msg_new(); - EVTAG_ASSIGN(msg, from_name, "niels"); - EVTAG_ASSIGN(msg, to_name, "tester"); - - kill_one = kill_new(); - kill_two = kill_new(); - - EVRPC_MAKE_REQUEST(Message, pool, msg, kill_one, GotKillCbTwo, NULL); - EVRPC_MAKE_REQUEST(Message, pool, msg, kill_two, GotKillCb, NULL); - - test_ok = 0; - - event_dispatch(); - - rpc_teardown(base); - - if (test_ok != 2) { - fprintf(stdout, "FAILED (1)\n"); - exit(1); - } - - fprintf(stdout, "OK\n"); - - msg_free(msg); - kill_free(kill_one); - kill_free(kill_two); - - evrpc_pool_free(pool); - evhttp_free(http); -} - -static void -GotErrorCb(struct evrpc_status *status, - struct msg *msg, struct kill *kill, void *arg) -{ - if (status->error != EVRPC_STATUS_ERR_TIMEOUT) - goto done; - - /* should never be complete but just to check */ - if (kill_complete(kill) == 0) - goto done; - - test_ok += 1; - -done: - event_loopexit(NULL); -} - -static void -rpc_client_timeout(void) -{ - short port; - struct evhttp *http = NULL; - struct evrpc_base *base = NULL; - struct evrpc_pool *pool = NULL; - struct msg *msg; - struct kill *kill; - - fprintf(stdout, "Testing RPC Client Timeout: "); - - rpc_setup(&http, &port, &base); - - pool = rpc_pool_with_connection(port); - - /* set the timeout to 5 seconds */ - evrpc_pool_set_timeout(pool, 5); - - /* set up the basic message */ - msg = msg_new(); - EVTAG_ASSIGN(msg, from_name, "niels"); - EVTAG_ASSIGN(msg, to_name, "tester"); - - kill = kill_new(); - - EVRPC_MAKE_REQUEST(NeverReply, pool, msg, kill, GotErrorCb, NULL); - - test_ok = 0; - - event_dispatch(); - - /* free the saved RPC structure up */ - EVRPC_REQUEST_DONE(saved_rpc); - - rpc_teardown(base); - - if (test_ok != 2) { - fprintf(stdout, "FAILED (1)\n"); - exit(1); - } - - fprintf(stdout, "OK\n"); - - msg_free(msg); - kill_free(kill); - - evrpc_pool_free(pool); - evhttp_free(http); -} - -void -rpc_suite(void) -{ - rpc_basic_test(); - rpc_basic_message(); - rpc_basic_client(); - rpc_basic_queued_client(); - rpc_client_timeout(); -} diff -Nru mysql-5.7-5.7.25/libevent/test/test-eof.c mysql-5.7-5.7.26/libevent/test/test-eof.c --- mysql-5.7-5.7.25/libevent/test/test-eof.c 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/test/test-eof.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,82 +0,0 @@ -/* - * Compile with: - * cc -I/usr/local/include -o time-test time-test.c -L/usr/local/lib -levent - */ -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - - -#ifdef WIN32 -#include -#endif -#include -#include -#include -#ifdef HAVE_SYS_SOCKET_H -#include -#endif -#include -#include -#include -#include -#include -#include - -#include -#include - -int test_okay = 1; -int called = 0; - -static void -read_cb(int fd, short event, void *arg) -{ - char buf[256]; - int len; - - len = read(fd, buf, sizeof(buf)); - - printf("%s: read %d%s\n", __func__, - len, len ? "" : " - means EOF"); - - if (len) { - if (!called) - event_add(arg, NULL); - } else if (called == 1) - test_okay = 0; - - called++; -} - -#ifndef SHUT_WR -#define SHUT_WR 1 -#endif - -int -main (int argc, char **argv) -{ - struct event ev; - const char *test = "test string"; - int pair[2]; - - if (evutil_socketpair(AF_UNIX, SOCK_STREAM, 0, pair) == -1) - return (1); - - - write(pair[0], test, strlen(test)+1); - shutdown(pair[0], SHUT_WR); - - /* Initalize the event library */ - event_init(); - - /* Initalize one event */ - event_set(&ev, pair[1], EV_READ, read_cb, &ev); - - event_add(&ev, NULL); - - event_dispatch(); - - return (test_okay); -} - diff -Nru mysql-5.7-5.7.25/libevent/test/test-init.c mysql-5.7-5.7.26/libevent/test/test-init.c --- mysql-5.7-5.7.25/libevent/test/test-init.c 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/test/test-init.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,33 +0,0 @@ -/* - * Compile with: - * cc -I/usr/local/include -o time-test time-test.c -L/usr/local/lib -levent - */ -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - - -#include -#include -#include -#ifdef HAVE_SYS_SOCKET_H -#include -#endif -#include -#include -#include -#include -#include -#include - -#include - -int -main(int argc, char **argv) -{ - /* Initalize the event library */ - event_init(); - - return (0); -} - diff -Nru mysql-5.7-5.7.25/libevent/test/test.sh mysql-5.7-5.7.26/libevent/test/test.sh --- mysql-5.7-5.7.25/libevent/test/test.sh 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/test/test.sh 1970-01-01 00:00:00.000000000 +0000 @@ -1,91 +0,0 @@ -#!/bin/sh - -setup () { - EVENT_NOKQUEUE=yes; export EVENT_NOKQUEUE - EVENT_NODEVPOLL=yes; export EVENT_NODEVPOLL - EVENT_NOPOLL=yes; export EVENT_NOPOLL - EVENT_NOSELECT=yes; export EVENT_NOSELECT - EVENT_NOEPOLL=yes; export EVENT_NOEPOLL - EVENT_NOEVPORT=yes; export EVENT_NOEVPORT -} - -test () { - if ./test-init 2>/dev/null ; - then - true - else - echo Skipping test - return - fi - -echo -n " test-eof: " -if ./test-eof >/dev/null ; -then - echo OKAY ; -else - echo FAILED ; -fi -echo -n " test-weof: " -if ./test-weof >/dev/null ; -then - echo OKAY ; -else - echo FAILED ; -fi -echo -n " test-time: " -if ./test-time >/dev/null ; -then - echo OKAY ; -else - echo FAILED ; -fi -echo -n " regress: " -if ./regress >/dev/null ; -then - echo OKAY ; -else - echo FAILED ; -fi -} - -echo "Running tests:" - -# Need to do this by hand? -setup -unset EVENT_NOKQUEUE -export EVENT_NOKQUEUE -echo "KQUEUE" -test - -setup -unset EVENT_NODEVPOLL -export EVENT_NODEVPOLL -echo "DEVPOLL" -test - -setup -unset EVENT_NOPOLL -export EVENT_NOPOLL -echo "POLL" -test - -setup -unset EVENT_NOSELECT -export EVENT_NOSELECT -echo "SELECT" -test - -setup -unset EVENT_NOEPOLL -export EVENT_NOEPOLL -echo "EPOLL" -test - -setup -unset EVENT_NOEVPORT -export EVENT_NOEVPORT -echo "EVPORT" -test - - - diff -Nru mysql-5.7-5.7.25/libevent/test/test-time.c mysql-5.7-5.7.26/libevent/test/test-time.c --- mysql-5.7-5.7.25/libevent/test/test-time.c 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/test/test-time.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,82 +0,0 @@ -/* - * Compile with: - * cc -I/usr/local/include -o time-test time-test.c -L/usr/local/lib -levent - */ -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - - -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include - -int called = 0; - -#define NEVENT 20000 - -struct event *ev[NEVENT]; - -static int -rand_int(int n) -{ -#ifdef WIN32 - return (int)(rand() * n); -#else - return (int)(random() % n); -#endif -} - -static void -time_cb(int fd, short event, void *arg) -{ - struct timeval tv; - int i, j; - - called++; - - if (called < 10*NEVENT) { - for (i = 0; i < 10; i++) { - j = rand_int(NEVENT); - tv.tv_sec = 0; - tv.tv_usec = rand_int(50000); - if (tv.tv_usec % 2) - evtimer_add(ev[j], &tv); - else - evtimer_del(ev[j]); - } - } -} - -int -main (int argc, char **argv) -{ - struct timeval tv; - int i; - - /* Initalize the event library */ - event_init(); - - for (i = 0; i < NEVENT; i++) { - ev[i] = malloc(sizeof(struct event)); - - /* Initalize one event */ - evtimer_set(ev[i], time_cb, ev[i]); - tv.tv_sec = 0; - tv.tv_usec = rand_int(50000); - evtimer_add(ev[i], &tv); - } - - event_dispatch(); - - return (called < NEVENT); -} - diff -Nru mysql-5.7-5.7.25/libevent/test/test-weof.c mysql-5.7-5.7.26/libevent/test/test-weof.c --- mysql-5.7-5.7.25/libevent/test/test-weof.c 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/test/test-weof.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,80 +0,0 @@ -/* - * Compile with: - * cc -I/usr/local/include -o time-test time-test.c -L/usr/local/lib -levent - */ -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - - -#ifdef WIN32 -#include -#endif -#include -#include -#include -#ifdef HAVE_SYS_SOCKET_H -#include -#endif -#include -#include -#include -#include -#include -#include -#include - -#include -#include - -int pair[2]; -int test_okay = 1; -int called = 0; - -static void -write_cb(int fd, short event, void *arg) -{ - const char *test = "test string"; - int len; - - len = write(fd, test, strlen(test) + 1); - - printf("%s: write %d%s\n", __func__, - len, len ? "" : " - means EOF"); - - if (len > 0) { - if (!called) - event_add(arg, NULL); - close(pair[0]); - } else if (called == 1) - test_okay = 0; - - called++; -} - -int -main (int argc, char **argv) -{ - struct event ev; - -#ifndef WIN32 - if (signal(SIGPIPE, SIG_IGN) == SIG_ERR) - return (1); -#endif - - if (evutil_socketpair(AF_UNIX, SOCK_STREAM, 0, pair) == -1) - return (1); - - /* Initalize the event library */ - event_init(); - - /* Initalize one event */ - event_set(&ev, pair[1], EV_WRITE, write_cb, &ev); - - event_add(&ev, NULL); - - event_dispatch(); - - return (test_okay); -} - diff -Nru mysql-5.7-5.7.25/libevent/WIN32-Code/event-config.h mysql-5.7-5.7.26/libevent/WIN32-Code/event-config.h --- mysql-5.7-5.7.25/libevent/WIN32-Code/event-config.h 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/WIN32-Code/event-config.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,244 +0,0 @@ -/* event-config.h - * Generated by autoconf; post-processed by libevent. - * Do not edit this file. - * Do not rely on macros in this file existing in later versions. - */ -#ifndef _EVENT_CONFIG_H_ -#define _EVENT_CONFIG_H_ -/* config.h. Generated by configure. */ -/* config.h.in. Generated from configure.in by autoheader. */ - -/* Define if clock_gettime is available in libc */ -/* #undef _EVENT_DNS_USE_CPU_CLOCK_FOR_ID */ - -/* Define is no secure id variant is available */ -#define _EVENT_DNS_USE_GETTIMEOFDAY_FOR_ID 1 - -/* Define to 1 if you have the `clock_gettime' function. */ -/* #undef _EVENT_HAVE_CLOCK_GETTIME */ - -/* Define if /dev/poll is available */ -/* #undef _EVENT_HAVE_DEVPOLL */ - -/* Define to 1 if you have the header file. */ -/* #undef _EVENT_HAVE_DLFCN_H */ - -/* Define if your system supports the epoll system calls */ -/* #undef _EVENT_HAVE_EPOLL */ - -/* Define to 1 if you have the `epoll_ctl' function. */ -/* #undef _EVENT_HAVE_EPOLL_CTL */ - -/* Define if your system supports event ports */ -/* #undef _EVENT_HAVE_EVENT_PORTS */ - -/* Define to 1 if you have the `fcntl' function. */ -/* #undef _EVENT_HAVE_FCNTL */ - -/* Define to 1 if you have the header file. */ -#define _EVENT_HAVE_FCNTL_H 1 - -/* Define to 1 if you have the `getaddrinfo' function. */ -/* #undef _EVENT_HAVE_GETADDRINFO */ - -/* Define to 1 if you have the `getnameinfo' function. */ -/* #undef _EVENT_HAVE_GETNAMEINFO */ - -/* Define to 1 if you have the `gettimeofday' function. */ -/* #define _EVENT_HAVE_GETTIMEOFDAY 1 */ - -/* Define to 1 if you have the `inet_ntop' function. */ -/* #undef _EVENT_HAVE_INET_NTOP */ - -/* Define to 1 if you have the header file. */ -/* #undef _EVENT_HAVE_INTTYPES_H 1 */ - -/* Define to 1 if you have the `kqueue' function. */ -/* #undef _EVENT_HAVE_KQUEUE */ - -/* Define to 1 if you have the `nsl' library (-lnsl). */ -/* #undef _EVENT_HAVE_LIBNSL */ - -/* Define to 1 if you have the `resolv' library (-lresolv). */ -/* #undef _EVENT_HAVE_LIBRESOLV */ - -/* Define to 1 if you have the `rt' library (-lrt). */ -/* #undef _EVENT_HAVE_LIBRT */ - -/* Define to 1 if you have the `socket' library (-lsocket). */ -/* #undef _EVENT_HAVE_LIBSOCKET */ - -/* Define to 1 if you have the header file. */ -#define _EVENT_HAVE_MEMORY_H 1 - -/* Define to 1 if you have the header file. */ -/* #undef _EVENT_HAVE_NETINET_IN6_H */ - -/* Define to 1 if you have the `poll' function. */ -/* #undef _EVENT_HAVE_POLL */ - -/* Define to 1 if you have the header file. */ -/* #undef _EVENT_HAVE_POLL_H */ - -/* Define to 1 if you have the `port_create' function. */ -/* #undef _EVENT_HAVE_PORT_CREATE */ - -/* Define to 1 if you have the header file. */ -/* #undef _EVENT_HAVE_PORT_H */ - -/* Define to 1 if you have the `select' function. */ -/* #undef _EVENT_HAVE_SELECT */ - -/* Define if F_SETFD is defined in */ -/* #undef _EVENT_HAVE_SETFD */ - -/* Define to 1 if you have the `sigaction' function. */ -/* #undef _EVENT_HAVE_SIGACTION */ - -/* Define to 1 if you have the `signal' function. */ -#define _EVENT_HAVE_SIGNAL 1 - -/* Define to 1 if you have the header file. */ -#define _EVENT_HAVE_SIGNAL_H 1 - -/* Define to 1 if you have the header file. */ -#define _EVENT_HAVE_STDARG_H 1 - -/* Define to 1 if you have the header file. */ -/* #define _EVENT_HAVE_STDINT_H 1 */ - -/* Define to 1 if you have the header file. */ -#define _EVENT_HAVE_STDLIB_H 1 - -/* Define to 1 if you have the header file. */ -#define _EVENT_HAVE_STRINGS_H 1 - -/* Define to 1 if you have the header file. */ -#define _EVENT_HAVE_STRING_H 1 - -/* Define to 1 if you have the `strlcpy' function. */ -/* #undef _EVENT_HAVE_STRLCPY */ - -/* Define to 1 if you have the `strsep' function. */ -/* #undef _EVENT_HAVE_STRSEP */ - -/* Define to 1 if you have the `strtok_r' function. */ -/* #undef _EVENT_HAVE_STRTOK_R */ - -/* Define to 1 if the system has the type `struct in6_addr'. */ -#define _EVENT_HAVE_STRUCT_IN6_ADDR 1 - -/* Define to 1 if you have the header file. */ -/* #undef _EVENT_HAVE_SYS_DEVPOLL_H */ - -/* Define to 1 if you have the header file. */ -/* #undef _EVENT_HAVE_SYS_EPOLL_H */ - -/* Define to 1 if you have the header file. */ -/* #undef _EVENT_HAVE_SYS_EVENT_H */ - -/* Define to 1 if you have the header file. */ -/* #undef _EVENT_HAVE_SYS_IOCTL_H */ - -/* Define to 1 if you have the header file. */ -/* #undef _EVENT_HAVE_SYS_QUEUE_H */ - -/* Define to 1 if you have the header file. */ -/* #undef _EVENT_HAVE_SYS_SELECT_H */ - -/* Define to 1 if you have the header file. */ -/* #undef _EVENT_HAVE_SYS_SOCKET_H */ - -/* Define to 1 if you have the header file. */ -#define _EVENT_HAVE_SYS_STAT_H 1 - -/* Define to 1 if you have the header file. */ -/* #define _EVENT_HAVE_SYS_TIME_H 1 */ - -/* Define to 1 if you have the header file. */ -/* #define _EVENT_HAVE_SYS_TYPES_H 1 */ - -/* Define if TAILQ_FOREACH is defined in */ -/* #undef _EVENT_HAVE_TAILQFOREACH */ - -/* Define if timeradd is defined in */ -/* #undef _EVENT_HAVE_TIMERADD */ - -/* Define if timerclear is defined in */ -/* #define _EVENT_HAVE_TIMERCLEAR 1 */ - -/* Define if timercmp is defined in */ -#define _EVENT_HAVE_TIMERCMP 1 - -/* Define if timerisset is defined in */ -#define _EVENT_HAVE_TIMERISSET 1 - -/* Define to 1 if you have the header file. */ -/* #define _EVENT_HAVE_UNISTD_H 1 */ - -/* Define to 1 if you have the `vasprintf' function. */ -/* #undef _EVENT_HAVE_VASPRINTF */ - -/* Define if kqueue works correctly with pipes */ -/* #undef _EVENT_HAVE_WORKING_KQUEUE */ - -/* Name of package */ -#define _EVENT_PACKAGE "libevent" - -/* Define to the address where bug reports for this package should be sent. */ -#define _EVENT_PACKAGE_BUGREPORT "" - -/* Define to the full name of this package. */ -#define _EVENT_PACKAGE_NAME "" - -/* Define to the full name and version of this package. */ -#define _EVENT_PACKAGE_STRING "" - -/* Define to the one symbol short name of this package. */ -#define _EVENT_PACKAGE_TARNAME "" - -/* Define to the version of this package. */ -#define _EVENT_PACKAGE_VERSION "" - -/* Define to 1 if you have the ANSI C header files. */ -#define _EVENT_STDC_HEADERS 1 - -/* Define to 1 if you can safely include both and . */ -#define _EVENT_TIME_WITH_SYS_TIME 1 - -/* Version number of package */ -#define _EVENT_VERSION "1.3.99-trunk" - -/* Define to appropriate substitue if compiler doesnt have __func__ */ -/* #undef _EVENT___func__ */ - -/* Define to empty if `const' does not conform to ANSI C. */ -/* #undef _EVENT_const */ - -/* Define to `__inline__' or `__inline' if that's what the C compiler - calls it, or to nothing if 'inline' is not supported under any name. */ -#ifndef _EVENT___cplusplus -#define _EVENT_inline __inline -#endif - -/* Define to `int' if does not define. */ -/* #undef _EVENT_pid_t */ - -/* Define to `unsigned' if does not define. */ -/* #undef _EVENT_size_t */ - -/* Define to unsigned int if you dont have it */ -#define _EVENT_socklen_t unsigned int - -/* Define to `unsigned short' if does not define. */ -/* #undef _EVENT_uint16_t */ - -/* Define to `unsigned int' if does not define. */ -/* #undef _EVENT_uint32_t */ - -/* Define to `unsigned long long' if does not define. */ -/* #undef _EVENT_uint64_t */ - -/* Define to `unsigned char' if does not define. */ -/* #undef _EVENT_uint8_t */ -#endif diff -Nru mysql-5.7-5.7.25/libevent/WIN32-Code/misc.c mysql-5.7-5.7.26/libevent/WIN32-Code/misc.c --- mysql-5.7-5.7.25/libevent/WIN32-Code/misc.c 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/WIN32-Code/misc.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,93 +0,0 @@ -#include -#include -#include -#include -#include - -#ifdef __GNUC__ -/*our prototypes for timeval and timezone are in here, just in case the above - headers don't have them*/ -#include "misc.h" -#endif - -/**************************************************************************** - * - * Function: gettimeofday(struct timeval *, struct timezone *) - * - * Purpose: Get current time of day. - * - * Arguments: tv => Place to store the curent time of day. - * tz => Ignored. - * - * Returns: 0 => Success. - * - ****************************************************************************/ - -#ifndef HAVE_GETTIMEOFDAY -int gettimeofday(struct timeval *tv, struct timezone *tz) { - struct _timeb tb; - - if(tv == NULL) - return -1; - - _ftime(&tb); - tv->tv_sec = (long) tb.time; - tv->tv_usec = ((int) tb.millitm) * 1000; - return 0; -} -#endif - -#if 0 -int -win_read(int fd, void *buf, unsigned int length) -{ - DWORD dwBytesRead; - int res = ReadFile((HANDLE) fd, buf, length, &dwBytesRead, NULL); - if (res == 0) { - DWORD error = GetLastError(); - if (error == ERROR_NO_DATA) - return (0); - return (-1); - } else - return (dwBytesRead); -} - -int -win_write(int fd, void *buf, unsigned int length) -{ - DWORD dwBytesWritten; - int res = WriteFile((HANDLE) fd, buf, length, &dwBytesWritten, NULL); - if (res == 0) { - DWORD error = GetLastError(); - if (error == ERROR_NO_DATA) - return (0); - return (-1); - } else - return (dwBytesWritten); -} - -int -socketpair(int d, int type, int protocol, int *sv) -{ - static int count; - char buf[64]; - HANDLE fd; - DWORD dwMode; - sprintf(buf, "\\\\.\\pipe\\levent-%d", count++); - /* Create a duplex pipe which will behave like a socket pair */ - fd = CreateNamedPipe(buf, PIPE_ACCESS_DUPLEX, PIPE_TYPE_BYTE | PIPE_NOWAIT, - PIPE_UNLIMITED_INSTANCES, 4096, 4096, 0, NULL); - if (fd == INVALID_HANDLE_VALUE) - return (-1); - sv[0] = (int)fd; - - fd = CreateFile(buf, GENERIC_READ|GENERIC_WRITE, 0, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL); - if (fd == INVALID_HANDLE_VALUE) - return (-1); - dwMode = PIPE_NOWAIT; - SetNamedPipeHandleState(fd, &dwMode, NULL, NULL); - sv[1] = (int)fd; - - return (0); -} -#endif diff -Nru mysql-5.7-5.7.25/libevent/WIN32-Code/misc.h mysql-5.7-5.7.26/libevent/WIN32-Code/misc.h --- mysql-5.7-5.7.25/libevent/WIN32-Code/misc.h 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/WIN32-Code/misc.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -#ifndef MISC_H -#define MISC_H - -struct timezone; -struct timeval; - -#ifndef HAVE_GETTIMEOFDAY -int gettimeofday(struct timeval *,struct timezone *); -#endif - -#endif diff -Nru mysql-5.7-5.7.25/libevent/WIN32-Code/tree.h mysql-5.7-5.7.26/libevent/WIN32-Code/tree.h --- mysql-5.7-5.7.25/libevent/WIN32-Code/tree.h 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/WIN32-Code/tree.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,1354 +0,0 @@ -/* $OpenBSD: tree.h,v 1.7 2002/10/17 21:51:54 art Exp $ */ -/* - * Copyright 2002 Niels Provos - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. - */ - -#ifndef _SYS_TREE_H_ -#define _SYS_TREE_H_ - -/* - * This file defines data structures for different types of trees: - * splay trees and red-black trees. - * - * A splay tree is a self-organizing data structure. Every operation - * on the tree causes a splay to happen. The splay moves the requested - * node to the root of the tree and partly rebalances it. - * - * This has the benefit that request locality causes faster lookups as - * the requested nodes move to the top of the tree. On the other hand, - * every lookup causes memory writes. - * - * The Balance Theorem bounds the total access time for m operations - * and n inserts on an initially empty tree as O((m + n)lg n). The - * amortized cost for a sequence of m accesses to a splay tree is O(lg n); - * - * A red-black tree is a binary search tree with the node color as an - * extra attribute. It fulfills a set of conditions: - * - every search path from the root to a leaf consists of the - * same number of black nodes, - * - each red node (except for the root) has a black parent, - * - each leaf node is black. - * - * Every operation on a red-black tree is bounded as O(lg n). - * The maximum height of a red-black tree is 2lg (n+1). - */ - -#define SPLAY_HEAD(name, type) \ -struct name { \ - struct type *sph_root; /* root of the tree */ \ -} - -#define SPLAY_INITIALIZER(root) \ - { NULL } - -#define SPLAY_INIT(root) do { \ - (root)->sph_root = NULL; \ -} while (0) - -#define SPLAY_ENTRY(type) \ -struct { \ - struct type *spe_left; /* left element */ \ - struct type *spe_right; /* right element */ \ -} - -#define SPLAY_LEFT(elm, field) (elm)->field.spe_left -#define SPLAY_RIGHT(elm, field) (elm)->field.spe_right -#define SPLAY_ROOT(head) (head)->sph_root -#define SPLAY_EMPTY(head) (SPLAY_ROOT(head) == NULL) - -/* SPLAY_ROTATE_{LEFT,RIGHT} expect that tmp hold SPLAY_{RIGHT,LEFT} */ -#define SPLAY_ROTATE_RIGHT(head, tmp, field) do { \ - SPLAY_LEFT((head)->sph_root, field) = SPLAY_RIGHT(tmp, field); \ - SPLAY_RIGHT(tmp, field) = (head)->sph_root; \ - (head)->sph_root = tmp; \ -} while (0) - -#define SPLAY_ROTATE_LEFT(head, tmp, field) do { \ - SPLAY_RIGHT((head)->sph_root, field) = SPLAY_LEFT(tmp, field); \ - SPLAY_LEFT(tmp, field) = (head)->sph_root; \ - (head)->sph_root = tmp; \ -} while (0) - -#define SPLAY_LINKLEFT(head, tmp, field) do { \ - SPLAY_LEFT(tmp, field) = (head)->sph_root; \ - tmp = (head)->sph_root; \ - (head)->sph_root = SPLAY_LEFT((head)->sph_root, field); \ -} while (0) - -#define SPLAY_LINKRIGHT(head, tmp, field) do { \ - SPLAY_RIGHT(tmp, field) = (head)->sph_root; \ - tmp = (head)->sph_root; \ - (head)->sph_root = SPLAY_RIGHT((head)->sph_root, field); \ -} while (0) - -#define SPLAY_ASSEMBLE(head, node, left, right, field) do { \ - SPLAY_RIGHT(left, field) = SPLAY_LEFT((head)->sph_root, field); \ - SPLAY_LEFT(right, field) = SPLAY_RIGHT((head)->sph_root, field);\ - SPLAY_LEFT((head)->sph_root, field) = SPLAY_RIGHT(node, field); \ - SPLAY_RIGHT((head)->sph_root, field) = SPLAY_LEFT(node, field); \ -} while (0) - -/* Generates prototypes and inline functions */ - -#define SPLAY_PROTOTYPE(name, type, field, cmp) \ -void name##_SPLAY(struct name *, struct type *); \ -void name##_SPLAY_MINMAX(struct name *, int); \ -struct type *name##_SPLAY_INSERT(struct name *, struct type *); \ -struct type *name##_SPLAY_REMOVE(struct name *, struct type *); \ - \ -/* Finds the node with the same key as elm */ \ -static __inline struct type * \ -name##_SPLAY_FIND(struct name *head, struct type *elm) \ -{ \ - if (SPLAY_EMPTY(head)) \ - return(NULL); \ - name##_SPLAY(head, elm); \ - if ((cmp)(elm, (head)->sph_root) == 0) \ - return (head->sph_root); \ - return (NULL); \ -} \ - \ -static __inline struct type * \ -name##_SPLAY_NEXT(struct name *head, struct type *elm) \ -{ \ - name##_SPLAY(head, elm); \ - if (SPLAY_RIGHT(elm, field) != NULL) { \ - elm = SPLAY_RIGHT(elm, field); \ - while (SPLAY_LEFT(elm, field) != NULL) { \ - elm = SPLAY_LEFT(elm, field); \ - } \ - } else \ - elm = NULL; \ - return (elm); \ -} \ - \ -static __inline struct type * \ -name##_SPLAY_MIN_MAX(struct name *head, int val) \ -{ \ - name##_SPLAY_MINMAX(head, val); \ - return (SPLAY_ROOT(head)); \ -} - -/* Main splay operation. - * Moves node close to the key of elm to top - */ -#define SPLAY_GENERATE(name, type, field, cmp) \ -struct type * \ -name##_SPLAY_INSERT(struct name *head, struct type *elm) \ -{ \ - if (SPLAY_EMPTY(head)) { \ - SPLAY_LEFT(elm, field) = SPLAY_RIGHT(elm, field) = NULL; \ - } else { \ - int __comp; \ - name##_SPLAY(head, elm); \ - __comp = (cmp)(elm, (head)->sph_root); \ - if(__comp < 0) { \ - SPLAY_LEFT(elm, field) = SPLAY_LEFT((head)->sph_root, field);\ - SPLAY_RIGHT(elm, field) = (head)->sph_root; \ - SPLAY_LEFT((head)->sph_root, field) = NULL; \ - } else if (__comp > 0) { \ - SPLAY_RIGHT(elm, field) = SPLAY_RIGHT((head)->sph_root, field);\ - SPLAY_LEFT(elm, field) = (head)->sph_root; \ - SPLAY_RIGHT((head)->sph_root, field) = NULL; \ - } else \ - return ((head)->sph_root); \ - } \ - (head)->sph_root = (elm); \ - return (NULL); \ -} \ - \ -struct type * \ -name##_SPLAY_REMOVE(struct name *head, struct type *elm) \ -{ \ - struct type *__tmp; \ - if (SPLAY_EMPTY(head)) \ - return (NULL); \ - name##_SPLAY(head, elm); \ - if ((cmp)(elm, (head)->sph_root) == 0) { \ - if (SPLAY_LEFT((head)->sph_root, field) == NULL) { \ - (head)->sph_root = SPLAY_RIGHT((head)->sph_root, field);\ - } else { \ - __tmp = SPLAY_RIGHT((head)->sph_root, field); \ - (head)->sph_root = SPLAY_LEFT((head)->sph_root, field);\ - name##_SPLAY(head, elm); \ - SPLAY_RIGHT((head)->sph_root, field) = __tmp; \ - } \ - return (elm); \ - } \ - return (NULL); \ -} \ - \ -void \ -name##_SPLAY(struct name *head, struct type *elm) \ -{ \ - struct type __node, *__left, *__right, *__tmp; \ - int __comp; \ -\ - SPLAY_LEFT(&__node, field) = SPLAY_RIGHT(&__node, field) = NULL;\ - __left = __right = &__node; \ -\ - while ((__comp = (cmp)(elm, (head)->sph_root))) { \ - if (__comp < 0) { \ - __tmp = SPLAY_LEFT((head)->sph_root, field); \ - if (__tmp == NULL) \ - break; \ - if ((cmp)(elm, __tmp) < 0){ \ - SPLAY_ROTATE_RIGHT(head, __tmp, field); \ - if (SPLAY_LEFT((head)->sph_root, field) == NULL)\ - break; \ - } \ - SPLAY_LINKLEFT(head, __right, field); \ - } else if (__comp > 0) { \ - __tmp = SPLAY_RIGHT((head)->sph_root, field); \ - if (__tmp == NULL) \ - break; \ - if ((cmp)(elm, __tmp) > 0){ \ - SPLAY_ROTATE_LEFT(head, __tmp, field); \ - if (SPLAY_RIGHT((head)->sph_root, field) == NULL)\ - break; \ - } \ - SPLAY_LINKRIGHT(head, __left, field); \ - } \ - } \ - SPLAY_ASSEMBLE(head, &__node, __left, __right, field); \ -} \ - \ -/* Splay with either the minimum or the maximum element \ - * Used to find minimum or maximum element in tree. \ - */ \ -void name##_SPLAY_MINMAX(struct name *head, int __comp) \ -{ \ - struct type __node, *__left, *__right, *__tmp; \ -\ - SPLAY_LEFT(&__node, field) = SPLAY_RIGHT(&__node, field) = NULL;\ - __left = __right = &__node; \ -\ - while (1) { \ - if (__comp < 0) { \ - __tmp = SPLAY_LEFT((head)->sph_root, field); \ - if (__tmp == NULL) \ - break; \ - if (__comp < 0){ \ - SPLAY_ROTATE_RIGHT(head, __tmp, field); \ - if (SPLAY_LEFT((head)->sph_root, field) == NULL)\ - break; \ - } \ - SPLAY_LINKLEFT(head, __right, field); \ - } else if (__comp > 0) { \ - __tmp = SPLAY_RIGHT((head)->sph_root, field); \ - if (__tmp == NULL) \ - break; \ - if (__comp > 0) { \ - SPLAY_ROTATE_LEFT(head, __tmp, field); \ - if (SPLAY_RIGHT((head)->sph_root, field) == NULL)\ - break; \ - } \ - SPLAY_LINKRIGHT(head, __left, field); \ - } \ - } \ - SPLAY_ASSEMBLE(head, &__node, __left, __right, field); \ -} - -#define SPLAY_NEGINF -1 -#define SPLAY_INF 1 - -#define SPLAY_INSERT(name, x, y) name##_SPLAY_INSERT(x, y) -#define SPLAY_REMOVE(name, x, y) name##_SPLAY_REMOVE(x, y) -#define SPLAY_FIND(name, x, y) name##_SPLAY_FIND(x, y) -#define SPLAY_NEXT(name, x, y) name##_SPLAY_NEXT(x, y) -#define SPLAY_MIN(name, x) (SPLAY_EMPTY(x) ? NULL \ - : name##_SPLAY_MIN_MAX(x, SPLAY_NEGINF)) -#define SPLAY_MAX(name, x) (SPLAY_EMPTY(x) ? NULL \ - : name##_SPLAY_MIN_MAX(x, SPLAY_INF)) - -#define SPLAY_FOREACH(x, name, head) \ - for ((x) = SPLAY_MIN(name, head); \ - (x) != NULL; \ - (x) = SPLAY_NEXT(name, head, x)) - -/* Macros that define a red-back tree */ -#define RB_HEAD(name, type) \ -struct name { \ - struct type *rbh_root; /* root of the tree */ \ -} - -#define RB_INITIALIZER(root) \ - { NULL } - -#define RB_INIT(root) do { \ - (root)->rbh_root = NULL; \ -} while (0) - -#define RB_BLACK 0 -#define RB_RED 1 -#define RB_ENTRY(type) \ -struct { \ - struct type *rbe_left; /* left element */ \ - struct type *rbe_right; /* right element */ \ - struct type *rbe_parent; /* parent element */ \ - int rbe_color; /* node color */ \ -} - -#define RB_LEFT(elm, field) (elm)->field.rbe_left -#define RB_RIGHT(elm, field) (elm)->field.rbe_right -#define RB_PARENT(elm, field) (elm)->field.rbe_parent -#define RB_COLOR(elm, field) (elm)->field.rbe_color -#define RB_ROOT(head) (head)->rbh_root -#define RB_EMPTY(head) (RB_ROOT(head) == NULL) - -#define RB_SET(elm, parent, field) do { \ - RB_PARENT(elm, field) = parent; \ - RB_LEFT(elm, field) = RB_RIGHT(elm, field) = NULL; \ - RB_COLOR(elm, field) = RB_RED; \ -} while (0) - -#define RB_SET_BLACKRED(black, red, field) do { \ - RB_COLOR(black, field) = RB_BLACK; \ - RB_COLOR(red, field) = RB_RED; \ -} while (0) - -#ifndef RB_AUGMENT -#define RB_AUGMENT(x) -#endif - -#define RB_ROTATE_LEFT(head, elm, tmp, field) do { \ - (tmp) = RB_RIGHT(elm, field); \ - if ((RB_RIGHT(elm, field) = RB_LEFT(tmp, field))) { \ - RB_PARENT(RB_LEFT(tmp, field), field) = (elm); \ - } \ - RB_AUGMENT(elm); \ - if ((RB_PARENT(tmp, field) = RB_PARENT(elm, field))) { \ - if ((elm) == RB_LEFT(RB_PARENT(elm, field), field)) \ - RB_LEFT(RB_PARENT(elm, field), field) = (tmp); \ - else \ - RB_RIGHT(RB_PARENT(elm, field), field) = (tmp); \ - } else \ - (head)->rbh_root = (tmp); \ - RB_LEFT(tmp, field) = (elm); \ - RB_PARENT(elm, field) = (tmp); \ - RB_AUGMENT(tmp); \ - if ((RB_PARENT(tmp, field))) \ - RB_AUGMENT(RB_PARENT(tmp, field)); \ -} while (0) - -#define RB_ROTATE_RIGHT(head, elm, tmp, field) do { \ - (tmp) = RB_LEFT(elm, field); \ - if ((RB_LEFT(elm, field) = RB_RIGHT(tmp, field))) { \ - RB_PARENT(RB_RIGHT(tmp, field), field) = (elm); \ - } \ - RB_AUGMENT(elm); \ - if ((RB_PARENT(tmp, field) = RB_PARENT(elm, field))) { \ - if ((elm) == RB_LEFT(RB_PARENT(elm, field), field)) \ - RB_LEFT(RB_PARENT(elm, field), field) = (tmp); \ - else \ - RB_RIGHT(RB_PARENT(elm, field), field) = (tmp); \ - } else \ - (head)->rbh_root = (tmp); \ - RB_RIGHT(tmp, field) = (elm); \ - RB_PARENT(elm, field) = (tmp); \ - RB_AUGMENT(tmp); \ - if ((RB_PARENT(tmp, field))) \ - RB_AUGMENT(RB_PARENT(tmp, field)); \ -} while (0) - -/* Generates prototypes and inline functions */ -#define RB_PROTOTYPE(name, type, field, cmp) \ -void name##_RB_INSERT_COLOR(struct name *, struct type *); \ -void name##_RB_REMOVE_COLOR(struct name *, struct type *, struct type *);\ -struct type *name##_RB_REMOVE(struct name *, struct type *); \ -struct type *name##_RB_INSERT(struct name *, struct type *); \ -struct type *name##_RB_FIND(struct name *, struct type *); \ -struct type *name##_RB_NEXT(struct type *); \ -struct type *name##_RB_MINMAX(struct name *, int); \ - \ - -/* Main rb operation. - * Moves node close to the key of elm to top - */ -#define RB_GENERATE(name, type, field, cmp) \ -void \ -name##_RB_INSERT_COLOR(struct name *head, struct type *elm) \ -{ \ - struct type *parent, *gparent, *tmp; \ - while ((parent = RB_PARENT(elm, field)) && \ - RB_COLOR(parent, field) == RB_RED) { \ - gparent = RB_PARENT(parent, field); \ - if (parent == RB_LEFT(gparent, field)) { \ - tmp = RB_RIGHT(gparent, field); \ - if (tmp && RB_COLOR(tmp, field) == RB_RED) { \ - RB_COLOR(tmp, field) = RB_BLACK; \ - RB_SET_BLACKRED(parent, gparent, field);\ - elm = gparent; \ - continue; \ - } \ - if (RB_RIGHT(parent, field) == elm) { \ - RB_ROTATE_LEFT(head, parent, tmp, field);\ - tmp = parent; \ - parent = elm; \ - elm = tmp; \ - } \ - RB_SET_BLACKRED(parent, gparent, field); \ - RB_ROTATE_RIGHT(head, gparent, tmp, field); \ - } else { \ - tmp = RB_LEFT(gparent, field); \ - if (tmp && RB_COLOR(tmp, field) == RB_RED) { \ - RB_COLOR(tmp, field) = RB_BLACK; \ - RB_SET_BLACKRED(parent, gparent, field);\ - elm = gparent; \ - continue; \ - } \ - if (RB_LEFT(parent, field) == elm) { \ - RB_ROTATE_RIGHT(head, parent, tmp, field);\ - tmp = parent; \ - parent = elm; \ - elm = tmp; \ - } \ - RB_SET_BLACKRED(parent, gparent, field); \ - RB_ROTATE_LEFT(head, gparent, tmp, field); \ - } \ - } \ - RB_COLOR(head->rbh_root, field) = RB_BLACK; \ -} \ - \ -void \ -name##_RB_REMOVE_COLOR(struct name *head, struct type *parent, struct type *elm) \ -{ \ - struct type *tmp; \ - while ((elm == NULL || RB_COLOR(elm, field) == RB_BLACK) && \ - elm != RB_ROOT(head)) { \ - if (RB_LEFT(parent, field) == elm) { \ - tmp = RB_RIGHT(parent, field); \ - if (RB_COLOR(tmp, field) == RB_RED) { \ - RB_SET_BLACKRED(tmp, parent, field); \ - RB_ROTATE_LEFT(head, parent, tmp, field);\ - tmp = RB_RIGHT(parent, field); \ - } \ - if ((RB_LEFT(tmp, field) == NULL || \ - RB_COLOR(RB_LEFT(tmp, field), field) == RB_BLACK) &&\ - (RB_RIGHT(tmp, field) == NULL || \ - RB_COLOR(RB_RIGHT(tmp, field), field) == RB_BLACK)) {\ - RB_COLOR(tmp, field) = RB_RED; \ - elm = parent; \ - parent = RB_PARENT(elm, field); \ - } else { \ - if (RB_RIGHT(tmp, field) == NULL || \ - RB_COLOR(RB_RIGHT(tmp, field), field) == RB_BLACK) {\ - struct type *oleft; \ - if ((oleft = RB_LEFT(tmp, field)))\ - RB_COLOR(oleft, field) = RB_BLACK;\ - RB_COLOR(tmp, field) = RB_RED; \ - RB_ROTATE_RIGHT(head, tmp, oleft, field);\ - tmp = RB_RIGHT(parent, field); \ - } \ - RB_COLOR(tmp, field) = RB_COLOR(parent, field);\ - RB_COLOR(parent, field) = RB_BLACK; \ - if (RB_RIGHT(tmp, field)) \ - RB_COLOR(RB_RIGHT(tmp, field), field) = RB_BLACK;\ - RB_ROTATE_LEFT(head, parent, tmp, field);\ - elm = RB_ROOT(head); \ - break; \ - } \ - } else { \ - tmp = RB_LEFT(parent, field); \ - if (RB_COLOR(tmp, field) == RB_RED) { \ - RB_SET_BLACKRED(tmp, parent, field); \ - RB_ROTATE_RIGHT(head, parent, tmp, field);\ - tmp = RB_LEFT(parent, field); \ - } \ - if ((RB_LEFT(tmp, field) == NULL || \ - RB_COLOR(RB_LEFT(tmp, field), field) == RB_BLACK) &&\ - (RB_RIGHT(tmp, field) == NULL || \ - RB_COLOR(RB_RIGHT(tmp, field), field) == RB_BLACK)) {\ - RB_COLOR(tmp, field) = RB_RED; \ - elm = parent; \ - parent = RB_PARENT(elm, field); \ - } else { \ - if (RB_LEFT(tmp, field) == NULL || \ - RB_COLOR(RB_LEFT(tmp, field), field) == RB_BLACK) {\ - struct type *oright; \ - if ((oright = RB_RIGHT(tmp, field)))\ - RB_COLOR(oright, field) = RB_BLACK;\ - RB_COLOR(tmp, field) = RB_RED; \ - RB_ROTATE_LEFT(head, tmp, oright, field);\ - tmp = RB_LEFT(parent, field); \ - } \ - RB_COLOR(tmp, field) = RB_COLOR(parent, field);\ - RB_COLOR(parent, field) = RB_BLACK; \ - if (RB_LEFT(tmp, field)) \ - RB_COLOR(RB_LEFT(tmp, field), field) = RB_BLACK;\ - RB_ROTATE_RIGHT(head, parent, tmp, field);\ - elm = RB_ROOT(head); \ - break; \ - } \ - } \ - } \ - if (elm) \ - RB_COLOR(elm, field) = RB_BLACK; \ -} \ - \ -struct type * \ -name##_RB_REMOVE(struct name *head, struct type *elm) \ -{ \ - struct type *child, *parent, *old = elm; \ - int color; \ - if (RB_LEFT(elm, field) == NULL) \ - child = RB_RIGHT(elm, field); \ - else if (RB_RIGHT(elm, field) == NULL) \ - child = RB_LEFT(elm, field); \ - else { \ - struct type *left; \ - elm = RB_RIGHT(elm, field); \ - while ((left = RB_LEFT(elm, field))) \ - elm = left; \ - child = RB_RIGHT(elm, field); \ - parent = RB_PARENT(elm, field); \ - color = RB_COLOR(elm, field); \ - if (child) \ - RB_PARENT(child, field) = parent; \ - if (parent) { \ - if (RB_LEFT(parent, field) == elm) \ - RB_LEFT(parent, field) = child; \ - else \ - RB_RIGHT(parent, field) = child; \ - RB_AUGMENT(parent); \ - } else \ - RB_ROOT(head) = child; \ - if (RB_PARENT(elm, field) == old) \ - parent = elm; \ - (elm)->field = (old)->field; \ - if (RB_PARENT(old, field)) { \ - if (RB_LEFT(RB_PARENT(old, field), field) == old)\ - RB_LEFT(RB_PARENT(old, field), field) = elm;\ - else \ - RB_RIGHT(RB_PARENT(old, field), field) = elm;\ - RB_AUGMENT(RB_PARENT(old, field)); \ - } else \ - RB_ROOT(head) = elm; \ - RB_PARENT(RB_LEFT(old, field), field) = elm; \ - if (RB_RIGHT(old, field)) \ - RB_PARENT(RB_RIGHT(old, field), field) = elm; \ - if (parent) { \ - left = parent; \ - do { \ - RB_AUGMENT(left); \ - } while ((left = RB_PARENT(left, field))); \ - } \ - goto color; \ - } \ - parent = RB_PARENT(elm, field); \ - color = RB_COLOR(elm, field); \ - if (child) \ - RB_PARENT(child, field) = parent; \ - if (parent) { \ - if (RB_LEFT(parent, field) == elm) \ - RB_LEFT(parent, field) = child; \ - else \ - RB_RIGHT(parent, field) = child; \ - RB_AUGMENT(parent); \ - } else \ - RB_ROOT(head) = child; \ -color: \ - if (color == RB_BLACK) \ - name##_RB_REMOVE_COLOR(head, parent, child); \ - return (old); \ -} \ - \ -/* Inserts a node into the RB tree */ \ -struct type * \ -name##_RB_INSERT(struct name *head, struct type *elm) \ -{ \ - struct type *tmp; \ - struct type *parent = NULL; \ - int comp = 0; \ - tmp = RB_ROOT(head); \ - while (tmp) { \ - parent = tmp; \ - comp = (cmp)(elm, parent); \ - if (comp < 0) \ - tmp = RB_LEFT(tmp, field); \ - else if (comp > 0) \ - tmp = RB_RIGHT(tmp, field); \ - else \ - return (tmp); \ - } \ - RB_SET(elm, parent, field); \ - if (parent != NULL) { \ - if (comp < 0) \ - RB_LEFT(parent, field) = elm; \ - else \ - RB_RIGHT(parent, field) = elm; \ - RB_AUGMENT(parent); \ - } else \ - RB_ROOT(head) = elm; \ - name##_RB_INSERT_COLOR(head, elm); \ - return (NULL); \ -} \ - \ -/* Finds the node with the same key as elm */ \ -struct type * \ -name##_RB_FIND(struct name *head, struct type *elm) \ -{ \ - struct type *tmp = RB_ROOT(head); \ - int comp; \ - while (tmp) { \ - comp = cmp(elm, tmp); \ - if (comp < 0) \ - tmp = RB_LEFT(tmp, field); \ - else if (comp > 0) \ - tmp = RB_RIGHT(tmp, field); \ - else \ - return (tmp); \ - } \ - return (NULL); \ -} \ - \ -struct type * \ -name##_RB_NEXT(struct type *elm) \ -{ \ - if (RB_RIGHT(elm, field)) { \ - elm = RB_RIGHT(elm, field); \ - while (RB_LEFT(elm, field)) \ - elm = RB_LEFT(elm, field); \ - } else { \ - if (RB_PARENT(elm, field) && \ - (elm == RB_LEFT(RB_PARENT(elm, field), field))) \ - elm = RB_PARENT(elm, field); \ - else { \ - while (RB_PARENT(elm, field) && \ - (elm == RB_RIGHT(RB_PARENT(elm, field), field)))\ - elm = RB_PARENT(elm, field); \ - elm = RB_PARENT(elm, field); \ - } \ - } \ - return (elm); \ -} \ - \ -struct type * \ -name##_RB_MINMAX(struct name *head, int val) \ -{ \ - struct type *tmp = RB_ROOT(head); \ - struct type *parent = NULL; \ - while (tmp) { \ - parent = tmp; \ - if (val < 0) \ - tmp = RB_LEFT(tmp, field); \ - else \ - tmp = RB_RIGHT(tmp, field); \ - } \ - return (parent); \ -} - -#define RB_NEGINF -1 -#define RB_INF 1 - -#define RB_INSERT(name, x, y) name##_RB_INSERT(x, y) -#define RB_REMOVE(name, x, y) name##_RB_REMOVE(x, y) -#define RB_FIND(name, x, y) name##_RB_FIND(x, y) -#define RB_NEXT(name, x, y) name##_RB_NEXT(y) -#define RB_MIN(name, x) name##_RB_MINMAX(x, RB_NEGINF) -#define RB_MAX(name, x) name##_RB_MINMAX(x, RB_INF) - -#define RB_FOREACH(x, name, head) \ - for ((x) = RB_MIN(name, head); \ - (x) != NULL; \ - (x) = name##_RB_NEXT(x)) - -#endif /* _SYS_TREE_H_ */ -/* $OpenBSD: tree.h,v 1.7 2002/10/17 21:51:54 art Exp $ */ -/* - * Copyright 2002 Niels Provos - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. - */ - -#ifndef _SYS_TREE_H_ -#define _SYS_TREE_H_ - -/* - * This file defines data structures for different types of trees: - * splay trees and red-black trees. - * - * A splay tree is a self-organizing data structure. Every operation - * on the tree causes a splay to happen. The splay moves the requested - * node to the root of the tree and partly rebalances it. - * - * This has the benefit that request locality causes faster lookups as - * the requested nodes move to the top of the tree. On the other hand, - * every lookup causes memory writes. - * - * The Balance Theorem bounds the total access time for m operations - * and n inserts on an initially empty tree as O((m + n)lg n). The - * amortized cost for a sequence of m accesses to a splay tree is O(lg n); - * - * A red-black tree is a binary search tree with the node color as an - * extra attribute. It fulfills a set of conditions: - * - every search path from the root to a leaf consists of the - * same number of black nodes, - * - each red node (except for the root) has a black parent, - * - each leaf node is black. - * - * Every operation on a red-black tree is bounded as O(lg n). - * The maximum height of a red-black tree is 2lg (n+1). - */ - -#define SPLAY_HEAD(name, type) \ -struct name { \ - struct type *sph_root; /* root of the tree */ \ -} - -#define SPLAY_INITIALIZER(root) \ - { NULL } - -#define SPLAY_INIT(root) do { \ - (root)->sph_root = NULL; \ -} while (0) - -#define SPLAY_ENTRY(type) \ -struct { \ - struct type *spe_left; /* left element */ \ - struct type *spe_right; /* right element */ \ -} - -#define SPLAY_LEFT(elm, field) (elm)->field.spe_left -#define SPLAY_RIGHT(elm, field) (elm)->field.spe_right -#define SPLAY_ROOT(head) (head)->sph_root -#define SPLAY_EMPTY(head) (SPLAY_ROOT(head) == NULL) - -/* SPLAY_ROTATE_{LEFT,RIGHT} expect that tmp hold SPLAY_{RIGHT,LEFT} */ -#define SPLAY_ROTATE_RIGHT(head, tmp, field) do { \ - SPLAY_LEFT((head)->sph_root, field) = SPLAY_RIGHT(tmp, field); \ - SPLAY_RIGHT(tmp, field) = (head)->sph_root; \ - (head)->sph_root = tmp; \ -} while (0) - -#define SPLAY_ROTATE_LEFT(head, tmp, field) do { \ - SPLAY_RIGHT((head)->sph_root, field) = SPLAY_LEFT(tmp, field); \ - SPLAY_LEFT(tmp, field) = (head)->sph_root; \ - (head)->sph_root = tmp; \ -} while (0) - -#define SPLAY_LINKLEFT(head, tmp, field) do { \ - SPLAY_LEFT(tmp, field) = (head)->sph_root; \ - tmp = (head)->sph_root; \ - (head)->sph_root = SPLAY_LEFT((head)->sph_root, field); \ -} while (0) - -#define SPLAY_LINKRIGHT(head, tmp, field) do { \ - SPLAY_RIGHT(tmp, field) = (head)->sph_root; \ - tmp = (head)->sph_root; \ - (head)->sph_root = SPLAY_RIGHT((head)->sph_root, field); \ -} while (0) - -#define SPLAY_ASSEMBLE(head, node, left, right, field) do { \ - SPLAY_RIGHT(left, field) = SPLAY_LEFT((head)->sph_root, field); \ - SPLAY_LEFT(right, field) = SPLAY_RIGHT((head)->sph_root, field);\ - SPLAY_LEFT((head)->sph_root, field) = SPLAY_RIGHT(node, field); \ - SPLAY_RIGHT((head)->sph_root, field) = SPLAY_LEFT(node, field); \ -} while (0) - -/* Generates prototypes and inline functions */ - -#define SPLAY_PROTOTYPE(name, type, field, cmp) \ -void name##_SPLAY(struct name *, struct type *); \ -void name##_SPLAY_MINMAX(struct name *, int); \ -struct type *name##_SPLAY_INSERT(struct name *, struct type *); \ -struct type *name##_SPLAY_REMOVE(struct name *, struct type *); \ - \ -/* Finds the node with the same key as elm */ \ -static __inline struct type * \ -name##_SPLAY_FIND(struct name *head, struct type *elm) \ -{ \ - if (SPLAY_EMPTY(head)) \ - return(NULL); \ - name##_SPLAY(head, elm); \ - if ((cmp)(elm, (head)->sph_root) == 0) \ - return (head->sph_root); \ - return (NULL); \ -} \ - \ -static __inline struct type * \ -name##_SPLAY_NEXT(struct name *head, struct type *elm) \ -{ \ - name##_SPLAY(head, elm); \ - if (SPLAY_RIGHT(elm, field) != NULL) { \ - elm = SPLAY_RIGHT(elm, field); \ - while (SPLAY_LEFT(elm, field) != NULL) { \ - elm = SPLAY_LEFT(elm, field); \ - } \ - } else \ - elm = NULL; \ - return (elm); \ -} \ - \ -static __inline struct type * \ -name##_SPLAY_MIN_MAX(struct name *head, int val) \ -{ \ - name##_SPLAY_MINMAX(head, val); \ - return (SPLAY_ROOT(head)); \ -} - -/* Main splay operation. - * Moves node close to the key of elm to top - */ -#define SPLAY_GENERATE(name, type, field, cmp) \ -struct type * \ -name##_SPLAY_INSERT(struct name *head, struct type *elm) \ -{ \ - if (SPLAY_EMPTY(head)) { \ - SPLAY_LEFT(elm, field) = SPLAY_RIGHT(elm, field) = NULL; \ - } else { \ - int __comp; \ - name##_SPLAY(head, elm); \ - __comp = (cmp)(elm, (head)->sph_root); \ - if(__comp < 0) { \ - SPLAY_LEFT(elm, field) = SPLAY_LEFT((head)->sph_root, field);\ - SPLAY_RIGHT(elm, field) = (head)->sph_root; \ - SPLAY_LEFT((head)->sph_root, field) = NULL; \ - } else if (__comp > 0) { \ - SPLAY_RIGHT(elm, field) = SPLAY_RIGHT((head)->sph_root, field);\ - SPLAY_LEFT(elm, field) = (head)->sph_root; \ - SPLAY_RIGHT((head)->sph_root, field) = NULL; \ - } else \ - return ((head)->sph_root); \ - } \ - (head)->sph_root = (elm); \ - return (NULL); \ -} \ - \ -struct type * \ -name##_SPLAY_REMOVE(struct name *head, struct type *elm) \ -{ \ - struct type *__tmp; \ - if (SPLAY_EMPTY(head)) \ - return (NULL); \ - name##_SPLAY(head, elm); \ - if ((cmp)(elm, (head)->sph_root) == 0) { \ - if (SPLAY_LEFT((head)->sph_root, field) == NULL) { \ - (head)->sph_root = SPLAY_RIGHT((head)->sph_root, field);\ - } else { \ - __tmp = SPLAY_RIGHT((head)->sph_root, field); \ - (head)->sph_root = SPLAY_LEFT((head)->sph_root, field);\ - name##_SPLAY(head, elm); \ - SPLAY_RIGHT((head)->sph_root, field) = __tmp; \ - } \ - return (elm); \ - } \ - return (NULL); \ -} \ - \ -void \ -name##_SPLAY(struct name *head, struct type *elm) \ -{ \ - struct type __node, *__left, *__right, *__tmp; \ - int __comp; \ -\ - SPLAY_LEFT(&__node, field) = SPLAY_RIGHT(&__node, field) = NULL;\ - __left = __right = &__node; \ -\ - while ((__comp = (cmp)(elm, (head)->sph_root))) { \ - if (__comp < 0) { \ - __tmp = SPLAY_LEFT((head)->sph_root, field); \ - if (__tmp == NULL) \ - break; \ - if ((cmp)(elm, __tmp) < 0){ \ - SPLAY_ROTATE_RIGHT(head, __tmp, field); \ - if (SPLAY_LEFT((head)->sph_root, field) == NULL)\ - break; \ - } \ - SPLAY_LINKLEFT(head, __right, field); \ - } else if (__comp > 0) { \ - __tmp = SPLAY_RIGHT((head)->sph_root, field); \ - if (__tmp == NULL) \ - break; \ - if ((cmp)(elm, __tmp) > 0){ \ - SPLAY_ROTATE_LEFT(head, __tmp, field); \ - if (SPLAY_RIGHT((head)->sph_root, field) == NULL)\ - break; \ - } \ - SPLAY_LINKRIGHT(head, __left, field); \ - } \ - } \ - SPLAY_ASSEMBLE(head, &__node, __left, __right, field); \ -} \ - \ -/* Splay with either the minimum or the maximum element \ - * Used to find minimum or maximum element in tree. \ - */ \ -void name##_SPLAY_MINMAX(struct name *head, int __comp) \ -{ \ - struct type __node, *__left, *__right, *__tmp; \ -\ - SPLAY_LEFT(&__node, field) = SPLAY_RIGHT(&__node, field) = NULL;\ - __left = __right = &__node; \ -\ - while (1) { \ - if (__comp < 0) { \ - __tmp = SPLAY_LEFT((head)->sph_root, field); \ - if (__tmp == NULL) \ - break; \ - if (__comp < 0){ \ - SPLAY_ROTATE_RIGHT(head, __tmp, field); \ - if (SPLAY_LEFT((head)->sph_root, field) == NULL)\ - break; \ - } \ - SPLAY_LINKLEFT(head, __right, field); \ - } else if (__comp > 0) { \ - __tmp = SPLAY_RIGHT((head)->sph_root, field); \ - if (__tmp == NULL) \ - break; \ - if (__comp > 0) { \ - SPLAY_ROTATE_LEFT(head, __tmp, field); \ - if (SPLAY_RIGHT((head)->sph_root, field) == NULL)\ - break; \ - } \ - SPLAY_LINKRIGHT(head, __left, field); \ - } \ - } \ - SPLAY_ASSEMBLE(head, &__node, __left, __right, field); \ -} - -#define SPLAY_NEGINF -1 -#define SPLAY_INF 1 - -#define SPLAY_INSERT(name, x, y) name##_SPLAY_INSERT(x, y) -#define SPLAY_REMOVE(name, x, y) name##_SPLAY_REMOVE(x, y) -#define SPLAY_FIND(name, x, y) name##_SPLAY_FIND(x, y) -#define SPLAY_NEXT(name, x, y) name##_SPLAY_NEXT(x, y) -#define SPLAY_MIN(name, x) (SPLAY_EMPTY(x) ? NULL \ - : name##_SPLAY_MIN_MAX(x, SPLAY_NEGINF)) -#define SPLAY_MAX(name, x) (SPLAY_EMPTY(x) ? NULL \ - : name##_SPLAY_MIN_MAX(x, SPLAY_INF)) - -#define SPLAY_FOREACH(x, name, head) \ - for ((x) = SPLAY_MIN(name, head); \ - (x) != NULL; \ - (x) = SPLAY_NEXT(name, head, x)) - -/* Macros that define a red-back tree */ -#define RB_HEAD(name, type) \ -struct name { \ - struct type *rbh_root; /* root of the tree */ \ -} - -#define RB_INITIALIZER(root) \ - { NULL } - -#define RB_INIT(root) do { \ - (root)->rbh_root = NULL; \ -} while (0) - -#define RB_BLACK 0 -#define RB_RED 1 -#define RB_ENTRY(type) \ -struct { \ - struct type *rbe_left; /* left element */ \ - struct type *rbe_right; /* right element */ \ - struct type *rbe_parent; /* parent element */ \ - int rbe_color; /* node color */ \ -} - -#define RB_LEFT(elm, field) (elm)->field.rbe_left -#define RB_RIGHT(elm, field) (elm)->field.rbe_right -#define RB_PARENT(elm, field) (elm)->field.rbe_parent -#define RB_COLOR(elm, field) (elm)->field.rbe_color -#define RB_ROOT(head) (head)->rbh_root -#define RB_EMPTY(head) (RB_ROOT(head) == NULL) - -#define RB_SET(elm, parent, field) do { \ - RB_PARENT(elm, field) = parent; \ - RB_LEFT(elm, field) = RB_RIGHT(elm, field) = NULL; \ - RB_COLOR(elm, field) = RB_RED; \ -} while (0) - -#define RB_SET_BLACKRED(black, red, field) do { \ - RB_COLOR(black, field) = RB_BLACK; \ - RB_COLOR(red, field) = RB_RED; \ -} while (0) - -#ifndef RB_AUGMENT -#define RB_AUGMENT(x) -#endif - -#define RB_ROTATE_LEFT(head, elm, tmp, field) do { \ - (tmp) = RB_RIGHT(elm, field); \ - if ((RB_RIGHT(elm, field) = RB_LEFT(tmp, field))) { \ - RB_PARENT(RB_LEFT(tmp, field), field) = (elm); \ - } \ - RB_AUGMENT(elm); \ - if ((RB_PARENT(tmp, field) = RB_PARENT(elm, field))) { \ - if ((elm) == RB_LEFT(RB_PARENT(elm, field), field)) \ - RB_LEFT(RB_PARENT(elm, field), field) = (tmp); \ - else \ - RB_RIGHT(RB_PARENT(elm, field), field) = (tmp); \ - } else \ - (head)->rbh_root = (tmp); \ - RB_LEFT(tmp, field) = (elm); \ - RB_PARENT(elm, field) = (tmp); \ - RB_AUGMENT(tmp); \ - if ((RB_PARENT(tmp, field))) \ - RB_AUGMENT(RB_PARENT(tmp, field)); \ -} while (0) - -#define RB_ROTATE_RIGHT(head, elm, tmp, field) do { \ - (tmp) = RB_LEFT(elm, field); \ - if ((RB_LEFT(elm, field) = RB_RIGHT(tmp, field))) { \ - RB_PARENT(RB_RIGHT(tmp, field), field) = (elm); \ - } \ - RB_AUGMENT(elm); \ - if ((RB_PARENT(tmp, field) = RB_PARENT(elm, field))) { \ - if ((elm) == RB_LEFT(RB_PARENT(elm, field), field)) \ - RB_LEFT(RB_PARENT(elm, field), field) = (tmp); \ - else \ - RB_RIGHT(RB_PARENT(elm, field), field) = (tmp); \ - } else \ - (head)->rbh_root = (tmp); \ - RB_RIGHT(tmp, field) = (elm); \ - RB_PARENT(elm, field) = (tmp); \ - RB_AUGMENT(tmp); \ - if ((RB_PARENT(tmp, field))) \ - RB_AUGMENT(RB_PARENT(tmp, field)); \ -} while (0) - -/* Generates prototypes and inline functions */ -#define RB_PROTOTYPE(name, type, field, cmp) \ -void name##_RB_INSERT_COLOR(struct name *, struct type *); \ -void name##_RB_REMOVE_COLOR(struct name *, struct type *, struct type *);\ -struct type *name##_RB_REMOVE(struct name *, struct type *); \ -struct type *name##_RB_INSERT(struct name *, struct type *); \ -struct type *name##_RB_FIND(struct name *, struct type *); \ -struct type *name##_RB_NEXT(struct type *); \ -struct type *name##_RB_MINMAX(struct name *, int); \ - \ - -/* Main rb operation. - * Moves node close to the key of elm to top - */ -#define RB_GENERATE(name, type, field, cmp) \ -void \ -name##_RB_INSERT_COLOR(struct name *head, struct type *elm) \ -{ \ - struct type *parent, *gparent, *tmp; \ - while ((parent = RB_PARENT(elm, field)) && \ - RB_COLOR(parent, field) == RB_RED) { \ - gparent = RB_PARENT(parent, field); \ - if (parent == RB_LEFT(gparent, field)) { \ - tmp = RB_RIGHT(gparent, field); \ - if (tmp && RB_COLOR(tmp, field) == RB_RED) { \ - RB_COLOR(tmp, field) = RB_BLACK; \ - RB_SET_BLACKRED(parent, gparent, field);\ - elm = gparent; \ - continue; \ - } \ - if (RB_RIGHT(parent, field) == elm) { \ - RB_ROTATE_LEFT(head, parent, tmp, field);\ - tmp = parent; \ - parent = elm; \ - elm = tmp; \ - } \ - RB_SET_BLACKRED(parent, gparent, field); \ - RB_ROTATE_RIGHT(head, gparent, tmp, field); \ - } else { \ - tmp = RB_LEFT(gparent, field); \ - if (tmp && RB_COLOR(tmp, field) == RB_RED) { \ - RB_COLOR(tmp, field) = RB_BLACK; \ - RB_SET_BLACKRED(parent, gparent, field);\ - elm = gparent; \ - continue; \ - } \ - if (RB_LEFT(parent, field) == elm) { \ - RB_ROTATE_RIGHT(head, parent, tmp, field);\ - tmp = parent; \ - parent = elm; \ - elm = tmp; \ - } \ - RB_SET_BLACKRED(parent, gparent, field); \ - RB_ROTATE_LEFT(head, gparent, tmp, field); \ - } \ - } \ - RB_COLOR(head->rbh_root, field) = RB_BLACK; \ -} \ - \ -void \ -name##_RB_REMOVE_COLOR(struct name *head, struct type *parent, struct type *elm) \ -{ \ - struct type *tmp; \ - while ((elm == NULL || RB_COLOR(elm, field) == RB_BLACK) && \ - elm != RB_ROOT(head)) { \ - if (RB_LEFT(parent, field) == elm) { \ - tmp = RB_RIGHT(parent, field); \ - if (RB_COLOR(tmp, field) == RB_RED) { \ - RB_SET_BLACKRED(tmp, parent, field); \ - RB_ROTATE_LEFT(head, parent, tmp, field);\ - tmp = RB_RIGHT(parent, field); \ - } \ - if ((RB_LEFT(tmp, field) == NULL || \ - RB_COLOR(RB_LEFT(tmp, field), field) == RB_BLACK) &&\ - (RB_RIGHT(tmp, field) == NULL || \ - RB_COLOR(RB_RIGHT(tmp, field), field) == RB_BLACK)) {\ - RB_COLOR(tmp, field) = RB_RED; \ - elm = parent; \ - parent = RB_PARENT(elm, field); \ - } else { \ - if (RB_RIGHT(tmp, field) == NULL || \ - RB_COLOR(RB_RIGHT(tmp, field), field) == RB_BLACK) {\ - struct type *oleft; \ - if ((oleft = RB_LEFT(tmp, field)))\ - RB_COLOR(oleft, field) = RB_BLACK;\ - RB_COLOR(tmp, field) = RB_RED; \ - RB_ROTATE_RIGHT(head, tmp, oleft, field);\ - tmp = RB_RIGHT(parent, field); \ - } \ - RB_COLOR(tmp, field) = RB_COLOR(parent, field);\ - RB_COLOR(parent, field) = RB_BLACK; \ - if (RB_RIGHT(tmp, field)) \ - RB_COLOR(RB_RIGHT(tmp, field), field) = RB_BLACK;\ - RB_ROTATE_LEFT(head, parent, tmp, field);\ - elm = RB_ROOT(head); \ - break; \ - } \ - } else { \ - tmp = RB_LEFT(parent, field); \ - if (RB_COLOR(tmp, field) == RB_RED) { \ - RB_SET_BLACKRED(tmp, parent, field); \ - RB_ROTATE_RIGHT(head, parent, tmp, field);\ - tmp = RB_LEFT(parent, field); \ - } \ - if ((RB_LEFT(tmp, field) == NULL || \ - RB_COLOR(RB_LEFT(tmp, field), field) == RB_BLACK) &&\ - (RB_RIGHT(tmp, field) == NULL || \ - RB_COLOR(RB_RIGHT(tmp, field), field) == RB_BLACK)) {\ - RB_COLOR(tmp, field) = RB_RED; \ - elm = parent; \ - parent = RB_PARENT(elm, field); \ - } else { \ - if (RB_LEFT(tmp, field) == NULL || \ - RB_COLOR(RB_LEFT(tmp, field), field) == RB_BLACK) {\ - struct type *oright; \ - if ((oright = RB_RIGHT(tmp, field)))\ - RB_COLOR(oright, field) = RB_BLACK;\ - RB_COLOR(tmp, field) = RB_RED; \ - RB_ROTATE_LEFT(head, tmp, oright, field);\ - tmp = RB_LEFT(parent, field); \ - } \ - RB_COLOR(tmp, field) = RB_COLOR(parent, field);\ - RB_COLOR(parent, field) = RB_BLACK; \ - if (RB_LEFT(tmp, field)) \ - RB_COLOR(RB_LEFT(tmp, field), field) = RB_BLACK;\ - RB_ROTATE_RIGHT(head, parent, tmp, field);\ - elm = RB_ROOT(head); \ - break; \ - } \ - } \ - } \ - if (elm) \ - RB_COLOR(elm, field) = RB_BLACK; \ -} \ - \ -struct type * \ -name##_RB_REMOVE(struct name *head, struct type *elm) \ -{ \ - struct type *child, *parent, *old = elm; \ - int color; \ - if (RB_LEFT(elm, field) == NULL) \ - child = RB_RIGHT(elm, field); \ - else if (RB_RIGHT(elm, field) == NULL) \ - child = RB_LEFT(elm, field); \ - else { \ - struct type *left; \ - elm = RB_RIGHT(elm, field); \ - while ((left = RB_LEFT(elm, field))) \ - elm = left; \ - child = RB_RIGHT(elm, field); \ - parent = RB_PARENT(elm, field); \ - color = RB_COLOR(elm, field); \ - if (child) \ - RB_PARENT(child, field) = parent; \ - if (parent) { \ - if (RB_LEFT(parent, field) == elm) \ - RB_LEFT(parent, field) = child; \ - else \ - RB_RIGHT(parent, field) = child; \ - RB_AUGMENT(parent); \ - } else \ - RB_ROOT(head) = child; \ - if (RB_PARENT(elm, field) == old) \ - parent = elm; \ - (elm)->field = (old)->field; \ - if (RB_PARENT(old, field)) { \ - if (RB_LEFT(RB_PARENT(old, field), field) == old)\ - RB_LEFT(RB_PARENT(old, field), field) = elm;\ - else \ - RB_RIGHT(RB_PARENT(old, field), field) = elm;\ - RB_AUGMENT(RB_PARENT(old, field)); \ - } else \ - RB_ROOT(head) = elm; \ - RB_PARENT(RB_LEFT(old, field), field) = elm; \ - if (RB_RIGHT(old, field)) \ - RB_PARENT(RB_RIGHT(old, field), field) = elm; \ - if (parent) { \ - left = parent; \ - do { \ - RB_AUGMENT(left); \ - } while ((left = RB_PARENT(left, field))); \ - } \ - goto color; \ - } \ - parent = RB_PARENT(elm, field); \ - color = RB_COLOR(elm, field); \ - if (child) \ - RB_PARENT(child, field) = parent; \ - if (parent) { \ - if (RB_LEFT(parent, field) == elm) \ - RB_LEFT(parent, field) = child; \ - else \ - RB_RIGHT(parent, field) = child; \ - RB_AUGMENT(parent); \ - } else \ - RB_ROOT(head) = child; \ -color: \ - if (color == RB_BLACK) \ - name##_RB_REMOVE_COLOR(head, parent, child); \ - return (old); \ -} \ - \ -/* Inserts a node into the RB tree */ \ -struct type * \ -name##_RB_INSERT(struct name *head, struct type *elm) \ -{ \ - struct type *tmp; \ - struct type *parent = NULL; \ - int comp = 0; \ - tmp = RB_ROOT(head); \ - while (tmp) { \ - parent = tmp; \ - comp = (cmp)(elm, parent); \ - if (comp < 0) \ - tmp = RB_LEFT(tmp, field); \ - else if (comp > 0) \ - tmp = RB_RIGHT(tmp, field); \ - else \ - return (tmp); \ - } \ - RB_SET(elm, parent, field); \ - if (parent != NULL) { \ - if (comp < 0) \ - RB_LEFT(parent, field) = elm; \ - else \ - RB_RIGHT(parent, field) = elm; \ - RB_AUGMENT(parent); \ - } else \ - RB_ROOT(head) = elm; \ - name##_RB_INSERT_COLOR(head, elm); \ - return (NULL); \ -} \ - \ -/* Finds the node with the same key as elm */ \ -struct type * \ -name##_RB_FIND(struct name *head, struct type *elm) \ -{ \ - struct type *tmp = RB_ROOT(head); \ - int comp; \ - while (tmp) { \ - comp = cmp(elm, tmp); \ - if (comp < 0) \ - tmp = RB_LEFT(tmp, field); \ - else if (comp > 0) \ - tmp = RB_RIGHT(tmp, field); \ - else \ - return (tmp); \ - } \ - return (NULL); \ -} \ - \ -struct type * \ -name##_RB_NEXT(struct type *elm) \ -{ \ - if (RB_RIGHT(elm, field)) { \ - elm = RB_RIGHT(elm, field); \ - while (RB_LEFT(elm, field)) \ - elm = RB_LEFT(elm, field); \ - } else { \ - if (RB_PARENT(elm, field) && \ - (elm == RB_LEFT(RB_PARENT(elm, field), field))) \ - elm = RB_PARENT(elm, field); \ - else { \ - while (RB_PARENT(elm, field) && \ - (elm == RB_RIGHT(RB_PARENT(elm, field), field)))\ - elm = RB_PARENT(elm, field); \ - elm = RB_PARENT(elm, field); \ - } \ - } \ - return (elm); \ -} \ - \ -struct type * \ -name##_RB_MINMAX(struct name *head, int val) \ -{ \ - struct type *tmp = RB_ROOT(head); \ - struct type *parent = NULL; \ - while (tmp) { \ - parent = tmp; \ - if (val < 0) \ - tmp = RB_LEFT(tmp, field); \ - else \ - tmp = RB_RIGHT(tmp, field); \ - } \ - return (parent); \ -} - -#define RB_NEGINF -1 -#define RB_INF 1 - -#define RB_INSERT(name, x, y) name##_RB_INSERT(x, y) -#define RB_REMOVE(name, x, y) name##_RB_REMOVE(x, y) -#define RB_FIND(name, x, y) name##_RB_FIND(x, y) -#define RB_NEXT(name, x, y) name##_RB_NEXT(y) -#define RB_MIN(name, x) name##_RB_MINMAX(x, RB_NEGINF) -#define RB_MAX(name, x) name##_RB_MINMAX(x, RB_INF) - -#define RB_FOREACH(x, name, head) \ - for ((x) = RB_MIN(name, head); \ - (x) != NULL; \ - (x) = name##_RB_NEXT(x)) - -#endif /* _SYS_TREE_H_ */ diff -Nru mysql-5.7-5.7.25/libevent/WIN32-Code/win32.c mysql-5.7-5.7.26/libevent/WIN32-Code/win32.c --- mysql-5.7-5.7.25/libevent/WIN32-Code/win32.c 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/WIN32-Code/win32.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,486 +0,0 @@ -/* - * Copyright 2000-2002 Niels Provos - * Copyright 2003 Michael A. Davis - * All rights reserved. - * - * 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. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. - */ -#ifdef _MSC_VER -#include "./config.h" -#else -/* Avoid the windows/msvc thing. */ -#include "../config.h" -#endif - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#define RB_AUGMENT(x) (void)(x) -#include "./tree.h" -#include "log.h" -#include "event.h" -#include "event-internal.h" - -#define XFREE(ptr) do { if (ptr) free(ptr); } while(0) - -extern struct event_list timequeue; -extern struct event_list addqueue; -#if 0 -extern struct event_list signalqueue; -#endif - -struct win_fd_set { - u_int fd_count; - SOCKET fd_array[1]; -}; - -int evsigcaught[NSIG]; -volatile sig_atomic_t signal_caught = 0; -/* MSDN says this is required to handle SIGFPE */ -volatile double SIGFPE_REQ = 0.0f; - -#if 0 -static void signal_handler(int sig); - -void signal_process(void); -int signal_recalc(void); -#endif - -struct event_entry { - RB_ENTRY(event_entry) node; - SOCKET sock; - int read_pos; - int write_pos; - struct event *read_event; - struct event *write_event; -}; - -static int -compare(struct event_entry *a, struct event_entry *b) -{ - if (a->sock < b->sock) - return -1; - else if (a->sock > b->sock) - return 1; - else - return 0; -} - -struct win32op { - int fd_setsz; - struct win_fd_set *readset_in; - struct win_fd_set *writeset_in; - struct win_fd_set *readset_out; - struct win_fd_set *writeset_out; - struct win_fd_set *exset_out; - RB_HEAD(event_map, event_entry) event_root; - - unsigned signals_are_broken : 1; -}; - -RB_PROTOTYPE(event_map, event_entry, node, compare); -RB_GENERATE(event_map, event_entry, node, compare); - -void *win32_init (struct event_base *); -int win32_insert (void *, struct event *); -int win32_del (void *, struct event *); -int win32_dispatch (struct event_base *base, void *, struct timeval *); -void win32_dealloc (struct event_base *, void *); - -struct eventop win32ops = { - "win32", - win32_init, - win32_insert, - win32_del, - win32_dispatch, - win32_dealloc, - 0 -}; - -#define FD_SET_ALLOC_SIZE(n) ((sizeof(struct win_fd_set) + ((n)-1)*sizeof(SOCKET))) - -static int -realloc_fd_sets(struct win32op *op, size_t new_size) -{ - size_t size; - - assert(new_size >= op->readset_in->fd_count && - new_size >= op->writeset_in->fd_count); - assert(new_size >= 1); - - size = FD_SET_ALLOC_SIZE(new_size); - if (!(op->readset_in = realloc(op->readset_in, size))) - return (-1); - if (!(op->writeset_in = realloc(op->writeset_in, size))) - return (-1); - if (!(op->readset_out = realloc(op->readset_out, size))) - return (-1); - if (!(op->exset_out = realloc(op->exset_out, size))) - return (-1); - if (!(op->writeset_out = realloc(op->writeset_out, size))) - return (-1); - op->fd_setsz = new_size; - return (0); -} - -static int -timeval_to_ms(struct timeval *tv) -{ - return ((tv->tv_sec * 1000) + (tv->tv_usec / 1000)); -} - -static struct event_entry* -get_event_entry(struct win32op *op, SOCKET s, int create) -{ - struct event_entry key, *val; - key.sock = s; - val = RB_FIND(event_map, &op->event_root, &key); - if (val || !create) - return val; - if (!(val = calloc(1, sizeof(struct event_entry)))) { - event_warn("%s: calloc", __func__); - return NULL; - } - val->sock = s; - val->read_pos = val->write_pos = -1; - RB_INSERT(event_map, &op->event_root, val); - return val; -} - -static int -do_fd_set(struct win32op *op, struct event_entry *ent, int read) -{ - SOCKET s = ent->sock; - struct win_fd_set *set = read ? op->readset_in : op->writeset_in; - if (read) { - if (ent->read_pos >= 0) - return (0); - } else { - if (ent->write_pos >= 0) - return (0); - } - if (set->fd_count == op->fd_setsz) { - if (realloc_fd_sets(op, op->fd_setsz*2)) - return (-1); - /* set pointer will have changed and needs reiniting! */ - set = read ? op->readset_in : op->writeset_in; - } - set->fd_array[set->fd_count] = s; - if (read) - ent->read_pos = set->fd_count; - else - ent->write_pos = set->fd_count; - return (set->fd_count++); -} - -static int -do_fd_clear(struct win32op *op, struct event_entry *ent, int read) -{ - int i; - struct win_fd_set *set = read ? op->readset_in : op->writeset_in; - if (read) { - i = ent->read_pos; - ent->read_pos = -1; - } else { - i = ent->write_pos; - ent->write_pos = -1; - } - if (i < 0) - return (0); - if (--set->fd_count != i) { - struct event_entry *ent2; - SOCKET s2; - s2 = set->fd_array[i] = set->fd_array[set->fd_count]; - ent2 = get_event_entry(op, s2, 0); - if (!ent) /* This indicates a bug. */ - return (0); - if (read) - ent2->read_pos = i; - else - ent2->write_pos = i; - } - return (0); -} - -#define NEVENT 64 -void * -win32_init(struct event_base *_base) -{ - struct win32op *winop; - size_t size; - if (!(winop = calloc(1, sizeof(struct win32op)))) - return NULL; - winop->fd_setsz = NEVENT; - size = FD_SET_ALLOC_SIZE(NEVENT); - if (!(winop->readset_in = malloc(size))) - goto err; - if (!(winop->writeset_in = malloc(size))) - goto err; - if (!(winop->readset_out = malloc(size))) - goto err; - if (!(winop->writeset_out = malloc(size))) - goto err; - if (!(winop->exset_out = malloc(size))) - goto err; - RB_INIT(&winop->event_root); - winop->readset_in->fd_count = winop->writeset_in->fd_count = 0; - winop->readset_out->fd_count = winop->writeset_out->fd_count - = winop->exset_out->fd_count = 0; - - if (evsignal_init(_base) < 0) - winop->signals_are_broken = 1; - - return (winop); - err: - XFREE(winop->readset_in); - XFREE(winop->writeset_in); - XFREE(winop->readset_out); - XFREE(winop->writeset_out); - XFREE(winop->exset_out); - XFREE(winop); - return (NULL); -} - -int -win32_insert(void *op, struct event *ev) -{ - struct win32op *win32op = op; - struct event_entry *ent; - - if (ev->ev_events & EV_SIGNAL) { - if (win32op->signals_are_broken) - return (-1); - return (evsignal_add(ev)); - } - if (!(ev->ev_events & (EV_READ|EV_WRITE))) - return (0); - ent = get_event_entry(win32op, ev->ev_fd, 1); - if (!ent) - return (-1); /* out of memory */ - - event_debug(("%s: adding event for %d", __func__, (int)ev->ev_fd)); - if (ev->ev_events & EV_READ) { - if (do_fd_set(win32op, ent, 1)<0) - return (-1); - ent->read_event = ev; - } - if (ev->ev_events & EV_WRITE) { - if (do_fd_set(win32op, ent, 0)<0) - return (-1); - ent->write_event = ev; - } - return (0); -} - -int -win32_del(void *op, struct event *ev) -{ - struct win32op *win32op = op; - struct event_entry *ent; - - if (ev->ev_events & EV_SIGNAL) - return (evsignal_del(ev)); - - if (!(ent = get_event_entry(win32op, ev->ev_fd, 0))) - return (-1); - event_debug(("%s: Removing event for %d", __func__, ev->ev_fd)); - if (ev == ent->read_event) { - do_fd_clear(win32op, ent, 1); - ent->read_event = NULL; - } - if (ev == ent->write_event) { - do_fd_clear(win32op, ent, 0); - ent->write_event = NULL; - } - if (!ent->read_event && !ent->write_event) { - RB_REMOVE(event_map, &win32op->event_root, ent); - free(ent); - } - - return 0; -} - -static void -fd_set_copy(struct win_fd_set *out, const struct win_fd_set *in) -{ - out->fd_count = in->fd_count; - memcpy(out->fd_array, in->fd_array, in->fd_count * (sizeof(SOCKET))); -} - -/* - static void dump_fd_set(struct win_fd_set *s) - { - unsigned int i; - printf("[ "); - for(i=0;ifd_count;++i) - printf("%d ",(int)s->fd_array[i]); - printf("]\n"); - } -*/ - -int -win32_dispatch(struct event_base *base, void *op, - struct timeval *tv) -{ - struct win32op *win32op = op; - int res = 0; - unsigned j, i; - int fd_count; - SOCKET s; - struct event_entry *ent; - - fd_set_copy(win32op->readset_out, win32op->readset_in); - fd_set_copy(win32op->exset_out, win32op->readset_in); - fd_set_copy(win32op->writeset_out, win32op->writeset_in); - - fd_count = - (win32op->readset_out->fd_count > win32op->writeset_out->fd_count) ? - win32op->readset_out->fd_count : win32op->writeset_out->fd_count; - - if (!fd_count) { - /* Windows doesn't like you to call select() with no sockets */ - Sleep(timeval_to_ms(tv)); - evsignal_process(base); - return (0); - } - - res = select(fd_count, - (struct fd_set*)win32op->readset_out, - (struct fd_set*)win32op->writeset_out, - (struct fd_set*)win32op->exset_out, tv); - - event_debug(("%s: select returned %d", __func__, res)); - - if(res <= 0) { - evsignal_process(base); - return res; - } else if (base->sig.evsignal_caught) { - evsignal_process(base); - } - - if (win32op->readset_out->fd_count) { - i = rand() % win32op->readset_out->fd_count; - for (j=0; jreadset_out->fd_count; ++j) { - if (++i >= win32op->readset_out->fd_count) - i = 0; - s = win32op->readset_out->fd_array[i]; - if ((ent = get_event_entry(win32op, s, 0)) && ent->read_event) - event_active(ent->read_event, EV_READ, 1); - } - } - if (win32op->exset_out->fd_count) { - i = rand() % win32op->exset_out->fd_count; - for (j=0; jexset_out->fd_count; ++j) { - if (++i >= win32op->exset_out->fd_count) - i = 0; - s = win32op->exset_out->fd_array[i]; - if ((ent = get_event_entry(win32op, s, 0)) && ent->read_event) - event_active(ent->read_event, EV_READ, 1); - } - } - if (win32op->writeset_out->fd_count) { - i = rand() % win32op->writeset_out->fd_count; - for (j=0; jwriteset_out->fd_count; ++j) { - if (++i >= win32op->exset_out->fd_count) - i = 0; - s = win32op->writeset_out->fd_array[i]; - if ((ent = get_event_entry(win32op, s, 0)) && ent->write_event) - event_active(ent->write_event, EV_WRITE, 1); - - } - } - - return (0); -} - -void -win32_dealloc(struct event_base *_base, void *arg) -{ - struct win32op *win32op = arg; - - evsignal_dealloc(_base); - if (win32op->readset_in) - free(win32op->readset_in); - if (win32op->writeset_in) - free(win32op->writeset_in); - if (win32op->readset_out) - free(win32op->readset_out); - if (win32op->writeset_out) - free(win32op->writeset_out); - if (win32op->exset_out) - free(win32op->exset_out); - /* XXXXX free the tree. */ - - memset(win32op, 0, sizeof(win32op)); - free(win32op); -} - -#if 0 -static void -signal_handler(int sig) -{ - evsigcaught[sig]++; - signal_caught = 1; -} - -int -signal_recalc(void) -{ - struct event *ev; - - /* Reinstall our signal handler. */ - TAILQ_FOREACH(ev, &signalqueue, ev_signal_next) { - if((int)signal(EVENT_SIGNAL(ev), signal_handler) == -1) - return (-1); - } - return (0); -} - -void -signal_process(void) -{ - struct event *ev; - short ncalls; - - TAILQ_FOREACH(ev, &signalqueue, ev_signal_next) { - ncalls = evsigcaught[EVENT_SIGNAL(ev)]; - if (ncalls) { - if (!(ev->ev_events & EV_PERSIST)) - event_del(ev); - event_active(ev, EV_SIGNAL, ncalls); - } - } - - memset(evsigcaught, 0, sizeof(evsigcaught)); - signal_caught = 0; -} -#endif - diff -Nru mysql-5.7-5.7.25/libevent/WIN32-Prj/libevent.dsp mysql-5.7-5.7.26/libevent/WIN32-Prj/libevent.dsp --- mysql-5.7-5.7.25/libevent/WIN32-Prj/libevent.dsp 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/WIN32-Prj/libevent.dsp 1970-01-01 00:00:00.000000000 +0000 @@ -1,128 +0,0 @@ -# Microsoft Developer Studio Project File - Name="libevent" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=libevent - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "libevent.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "libevent.mak" CFG="libevent - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "libevent - Win32 Release" (based on "Win32 (x86) Static Library") -!MESSAGE "libevent - Win32 Debug" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "libevent - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD CPP /nologo /W3 /GX /O2 /I "..\\" /I "..\WIN32-Code" /I "..\compat" /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo - -!ELSEIF "$(CFG)" == "libevent - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /I "..\\" /I "..\WIN32-Code" /I "..\compat" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo - -!ENDIF - -# Begin Target - -# Name "libevent - Win32 Release" -# Name "libevent - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\log.c -# End Source File -# Begin Source File - -SOURCE=..\event.c -# End Source File -# Begin Source File - -SOURCE="..\WIN32-Code\misc.c" -# End Source File -# Begin Source File - -SOURCE="..\WIN32-Code\win32.c" -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\acconfig.h -# End Source File -# Begin Source File - -SOURCE="..\WIN32-Code\config.h" -# End Source File -# Begin Source File - -SOURCE=..\compat\err.h -# End Source File -# Begin Source File - -SOURCE=..\event.h -# End Source File -# Begin Source File - -SOURCE="..\WIN32-Code\misc.h" -# End Source File -# End Group -# End Target -# End Project diff -Nru mysql-5.7-5.7.25/libevent/WIN32-Prj/libevent.dsw mysql-5.7-5.7.26/libevent/WIN32-Prj/libevent.dsw --- mysql-5.7-5.7.25/libevent/WIN32-Prj/libevent.dsw 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/WIN32-Prj/libevent.dsw 1970-01-01 00:00:00.000000000 +0000 @@ -1,74 +0,0 @@ -Microsoft Developer Studio Workspace File, Format Version 6.00 -# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! - -############################################################################### - -Project: "event_test"=".\event_test\event_test.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name libevent - End Project Dependency -}}} - -############################################################################### - -Project: "libevent"=".\libevent.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "signal_test"=".\signal_test\signal_test.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name libevent - End Project Dependency -}}} - -############################################################################### - -Project: "time_test"=".\time_test\time_test.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name libevent - End Project Dependency -}}} - -############################################################################### - -Global: - -Package=<5> -{{{ -}}} - -Package=<3> -{{{ -}}} - -############################################################################### - diff -Nru mysql-5.7-5.7.25/libevent/WIN32-Prj/libevent.sln mysql-5.7-5.7.26/libevent/WIN32-Prj/libevent.sln --- mysql-5.7-5.7.25/libevent/WIN32-Prj/libevent.sln 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/libevent/WIN32-Prj/libevent.sln 1970-01-01 00:00:00.000000000 +0000 @@ -1,53 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 9.00 -# Visual Studio 2005 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "event_test", "event_test\event_test.vcproj", "{52099A8B-455B-4BE9-8E61-A3D6E8A4338D}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libevent", "libevent.vcproj", "{B98ABFCE-24D4-4B70-94DE-EF7F1E0662F9}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "signal_test", "signal_test\signal_test.vcproj", "{768DB9DD-2694-4274-89B8-74106E8F7786}" - ProjectSection(ProjectDependencies) = postProject - {B98ABFCE-24D4-4B70-94DE-EF7F1E0662F9} = {B98ABFCE-24D4-4B70-94DE-EF7F1E0662F9} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "time_test", "time_test\time_test.vcproj", "{D4BE29FB-E45C-4177-9647-74BBAFDC1257}" - ProjectSection(ProjectDependencies) = postProject - {B98ABFCE-24D4-4B70-94DE-EF7F1E0662F9} = {B98ABFCE-24D4-4B70-94DE-EF7F1E0662F9} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "regress", "regress\regress.vcproj", "{F7C26008-6066-4AD3-8543-452EFE58BD2E}" - ProjectSection(ProjectDependencies) = postProject - {B98ABFCE-24D4-4B70-94DE-EF7F1E0662F9} = {B98ABFCE-24D4-4B70-94DE-EF7F1E0662F9} - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Release|Win32 = Release|Win32 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {52099A8B-455B-4BE9-8E61-A3D6E8A4338D}.Debug|Win32.ActiveCfg = Debug|Win32 - {52099A8B-455B-4BE9-8E61-A3D6E8A4338D}.Debug|Win32.Build.0 = Debug|Win32 - {52099A8B-455B-4BE9-8E61-A3D6E8A4338D}.Release|Win32.ActiveCfg = Release|Win32 - {52099A8B-455B-4BE9-8E61-A3D6E8A4338D}.Release|Win32.Build.0 = Release|Win32 - {B98ABFCE-24D4-4B70-94DE-EF7F1E0662F9}.Debug|Win32.ActiveCfg = Debug|Win32 - {B98ABFCE-24D4-4B70-94DE-EF7F1E0662F9}.Debug|Win32.Build.0 = Debug|Win32 - {B98ABFCE-24D4-4B70-94DE-EF7F1E0662F9}.Release|Win32.ActiveCfg = Release|Win32 - {B98ABFCE-24D4-4B70-94DE-EF7F1E0662F9}.Release|Win32.Build.0 = Release|Win32 - {768DB9DD-2694-4274-89B8-74106E8F7786}.Debug|Win32.ActiveCfg = Debug|Win32 - {768DB9DD-2694-4274-89B8-74106E8F7786}.Debug|Win32.Build.0 = Debug|Win32 - {768DB9DD-2694-4274-89B8-74106E8F7786}.Release|Win32.ActiveCfg = Release|Win32 - {768DB9DD-2694-4274-89B8-74106E8F7786}.Release|Win32.Build.0 = Release|Win32 - {D4BE29FB-E45C-4177-9647-74BBAFDC1257}.Debug|Win32.ActiveCfg = Debug|Win32 - {D4BE29FB-E45C-4177-9647-74BBAFDC1257}.Debug|Win32.Build.0 = Debug|Win32 - {D4BE29FB-E45C-4177-9647-74BBAFDC1257}.Release|Win32.ActiveCfg = Release|Win32 - {D4BE29FB-E45C-4177-9647-74BBAFDC1257}.Release|Win32.Build.0 = Release|Win32 - {F7C26008-6066-4AD3-8543-452EFE58BD2E}.Debug|Win32.ActiveCfg = Debug|Win32 - {F7C26008-6066-4AD3-8543-452EFE58BD2E}.Debug|Win32.Build.0 = Debug|Win32 - {F7C26008-6066-4AD3-8543-452EFE58BD2E}.Release|Win32.ActiveCfg = Release|Win32 - {F7C26008-6066-4AD3-8543-452EFE58BD2E}.Release|Win32.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff -Nru mysql-5.7-5.7.25/man/comp_err.1 mysql-5.7-5.7.26/man/comp_err.1 --- mysql-5.7-5.7.25/man/comp_err.1 2018-12-21 10:52:19.000000000 +0000 +++ mysql-5.7-5.7.26/man/comp_err.1 2019-04-13 13:46:47.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: \fBcomp_err\fR .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/20/2018 +.\" Date: 04/12/2019 .\" Manual: MySQL Database System .\" Source: MySQL 5.7 .\" Language: English .\" -.TH "\FBCOMP_ERR\FR" "1" "12/20/2018" "MySQL 5\&.7" "MySQL Database System" +.TH "\FBCOMP_ERR\FR" "1" "04/12/2019" "MySQL 5\&.7" "MySQL Database System" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -241,7 +241,7 @@ .SH "COPYRIGHT" .br .PP -Copyright \(co 1997, 2018, Oracle and/or its affiliates. All rights reserved. +Copyright \(co 1997, 2019, Oracle and/or its affiliates. All rights reserved. .PP This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. .PP diff -Nru mysql-5.7-5.7.25/man/innochecksum.1 mysql-5.7-5.7.26/man/innochecksum.1 --- mysql-5.7-5.7.25/man/innochecksum.1 2018-12-21 10:52:19.000000000 +0000 +++ mysql-5.7-5.7.26/man/innochecksum.1 2019-04-13 13:46:47.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: \fBinnochecksum\fR .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/20/2018 +.\" Date: 04/12/2019 .\" Manual: MySQL Database System .\" Source: MySQL 5.7 .\" Language: English .\" -.TH "\FBINNOCHECKSUM\FR" "1" "12/20/2018" "MySQL 5\&.7" "MySQL Database System" +.TH "\FBINNOCHECKSUM\FR" "1" "04/12/2019" "MySQL 5\&.7" "MySQL Database System" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -1014,7 +1014,7 @@ .SH "COPYRIGHT" .br .PP -Copyright \(co 1997, 2018, Oracle and/or its affiliates. All rights reserved. +Copyright \(co 1997, 2019, Oracle and/or its affiliates. All rights reserved. .PP This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. .PP diff -Nru mysql-5.7-5.7.25/man/lz4_decompress.1 mysql-5.7-5.7.26/man/lz4_decompress.1 --- mysql-5.7-5.7.25/man/lz4_decompress.1 2018-12-21 10:52:19.000000000 +0000 +++ mysql-5.7-5.7.26/man/lz4_decompress.1 2019-04-13 13:46:47.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: \fBlz4_decompress\fR .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/20/2018 +.\" Date: 04/12/2019 .\" Manual: MySQL Database System .\" Source: MySQL 5.7 .\" Language: English .\" -.TH "\FBLZ4_DECOMPRESS\FR" "1" "12/20/2018" "MySQL 5\&.7" "MySQL Database System" +.TH "\FBLZ4_DECOMPRESS\FR" "1" "04/12/2019" "MySQL 5\&.7" "MySQL Database System" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -81,7 +81,7 @@ .SH "COPYRIGHT" .br .PP -Copyright \(co 1997, 2018, Oracle and/or its affiliates. All rights reserved. +Copyright \(co 1997, 2019, Oracle and/or its affiliates. All rights reserved. .PP This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. .PP diff -Nru mysql-5.7-5.7.25/man/myisamchk.1 mysql-5.7-5.7.26/man/myisamchk.1 --- mysql-5.7-5.7.25/man/myisamchk.1 2018-12-21 10:52:19.000000000 +0000 +++ mysql-5.7-5.7.26/man/myisamchk.1 2019-04-13 13:46:47.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: \fBmyisamchk\fR .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/20/2018 +.\" Date: 04/12/2019 .\" Manual: MySQL Database System .\" Source: MySQL 5.7 .\" Language: English .\" -.TH "\FBMYISAMCHK\FR" "1" "12/20/2018" "MySQL 5\&.7" "MySQL Database System" +.TH "\FBMYISAMCHK\FR" "1" "04/12/2019" "MySQL 5\&.7" "MySQL Database System" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -2470,7 +2470,7 @@ .SH "COPYRIGHT" .br .PP -Copyright \(co 1997, 2018, Oracle and/or its affiliates. All rights reserved. +Copyright \(co 1997, 2019, Oracle and/or its affiliates. All rights reserved. .PP This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. .PP diff -Nru mysql-5.7-5.7.25/man/myisam_ftdump.1 mysql-5.7-5.7.26/man/myisam_ftdump.1 --- mysql-5.7-5.7.25/man/myisam_ftdump.1 2018-12-21 10:52:19.000000000 +0000 +++ mysql-5.7-5.7.26/man/myisam_ftdump.1 2019-04-13 13:46:47.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: \fBmyisam_ftdump\fR .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/20/2018 +.\" Date: 04/12/2019 .\" Manual: MySQL Database System .\" Source: MySQL 5.7 .\" Language: English .\" -.TH "\FBMYISAM_FTDUMP\FR" "1" "12/20/2018" "MySQL 5\&.7" "MySQL Database System" +.TH "\FBMYISAM_FTDUMP\FR" "1" "04/12/2019" "MySQL 5\&.7" "MySQL Database System" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -250,7 +250,7 @@ .SH "COPYRIGHT" .br .PP -Copyright \(co 1997, 2018, Oracle and/or its affiliates. All rights reserved. +Copyright \(co 1997, 2019, Oracle and/or its affiliates. All rights reserved. .PP This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. .PP diff -Nru mysql-5.7-5.7.25/man/myisamlog.1 mysql-5.7-5.7.26/man/myisamlog.1 --- mysql-5.7-5.7.25/man/myisamlog.1 2018-12-21 10:52:19.000000000 +0000 +++ mysql-5.7-5.7.26/man/myisamlog.1 2019-04-13 13:46:47.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: \fBmyisamlog\fR .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/20/2018 +.\" Date: 04/12/2019 .\" Manual: MySQL Database System .\" Source: MySQL 5.7 .\" Language: English .\" -.TH "\FBMYISAMLOG\FR" "1" "12/20/2018" "MySQL 5\&.7" "MySQL Database System" +.TH "\FBMYISAMLOG\FR" "1" "04/12/2019" "MySQL 5\&.7" "MySQL Database System" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -240,7 +240,7 @@ .SH "COPYRIGHT" .br .PP -Copyright \(co 1997, 2018, Oracle and/or its affiliates. All rights reserved. +Copyright \(co 1997, 2019, Oracle and/or its affiliates. All rights reserved. .PP This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. .PP diff -Nru mysql-5.7-5.7.25/man/myisampack.1 mysql-5.7-5.7.26/man/myisampack.1 --- mysql-5.7-5.7.25/man/myisampack.1 2018-12-21 10:52:19.000000000 +0000 +++ mysql-5.7-5.7.26/man/myisampack.1 2019-04-13 13:46:47.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: \fBmyisampack\fR .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/20/2018 +.\" Date: 04/12/2019 .\" Manual: MySQL Database System .\" Source: MySQL 5.7 .\" Language: English .\" -.TH "\FBMYISAMPACK\FR" "1" "12/20/2018" "MySQL 5\&.7" "MySQL Database System" +.TH "\FBMYISAMPACK\FR" "1" "04/12/2019" "MySQL 5\&.7" "MySQL Database System" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -825,7 +825,7 @@ .SH "COPYRIGHT" .br .PP -Copyright \(co 1997, 2018, Oracle and/or its affiliates. All rights reserved. +Copyright \(co 1997, 2019, Oracle and/or its affiliates. All rights reserved. .PP This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. .PP diff -Nru mysql-5.7-5.7.25/man/my_print_defaults.1 mysql-5.7-5.7.26/man/my_print_defaults.1 --- mysql-5.7-5.7.25/man/my_print_defaults.1 2018-12-21 10:52:19.000000000 +0000 +++ mysql-5.7-5.7.26/man/my_print_defaults.1 2019-04-13 13:46:47.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: \fBmy_print_defaults\fR .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/20/2018 +.\" Date: 04/12/2019 .\" Manual: MySQL Database System .\" Source: MySQL 5.7 .\" Language: English .\" -.TH "\FBMY_PRINT_DEFAULTS\FR" "1" "12/20/2018" "MySQL 5\&.7" "MySQL Database System" +.TH "\FBMY_PRINT_DEFAULTS\FR" "1" "04/12/2019" "MySQL 5\&.7" "MySQL Database System" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -232,7 +232,7 @@ .SH "COPYRIGHT" .br .PP -Copyright \(co 1997, 2018, Oracle and/or its affiliates. All rights reserved. +Copyright \(co 1997, 2019, Oracle and/or its affiliates. All rights reserved. .PP This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. .PP diff -Nru mysql-5.7-5.7.25/man/mysql.1 mysql-5.7-5.7.26/man/mysql.1 --- mysql-5.7-5.7.25/man/mysql.1 2018-12-21 10:52:19.000000000 +0000 +++ mysql-5.7-5.7.26/man/mysql.1 2019-04-13 13:46:47.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: \fBmysql\fR .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/20/2018 +.\" Date: 04/12/2019 .\" Manual: MySQL Database System .\" Source: MySQL 5.7 .\" Language: English .\" -.TH "\FBMYSQL\FR" "1" "12/20/2018" "MySQL 5\&.7" "MySQL Database System" +.TH "\FBMYSQL\FR" "1" "04/12/2019" "MySQL 5\&.7" "MySQL Database System" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -267,7 +267,7 @@ charset and delimiter -in non\-interactive mode (for input piped to +in noninteractive mode (for input piped to \fBmysql\fR or loaded using the source @@ -397,7 +397,7 @@ Indicate to the server that the client can handle sandbox mode if the account used to connect has an expired password\&. This can be useful for noninteractive invocations of \fBmysql\fR because normally the server disconnects noninteractive clients that attempt to connect using an account with an expired password\&. (See -Section\ \&6.3.8, \(lqPassword Expiration and Sandbox Mode\(rq\&.) +Section\ \&6.2.12, \(lqPassword Expiration and Sandbox Mode\(rq\&.) .RE .sp .RS 4 @@ -475,7 +475,7 @@ \fB\-\-default\-auth=\fR\fB\fIplugin\fR\fR .sp A hint about the client\-side authentication plugin to use\&. See -Section\ \&6.3.9, \(lqPluggable Authentication\(rq\&. +Section\ \&6.2.13, \(lqPluggable Authentication\(rq\&. .RE .sp .RS 4 @@ -618,7 +618,7 @@ Enable the mysql_clear_password cleartext authentication plugin\&. (See -Section\ \&6.5.1.6, \(lqClient-Side Cleartext Pluggable Authentication\(rq\&.) +Section\ \&6.4.1.6, \(lqClient-Side Cleartext Pluggable Authentication\(rq\&.) .RE .sp .RS 4 @@ -675,7 +675,7 @@ For information about the caching_sha2_password plugin, see -Section\ \&6.5.1.5, \(lqCaching SHA-2 Pluggable Authentication\(rq\&. +Section\ \&6.4.1.5, \(lqCaching SHA-2 Pluggable Authentication\(rq\&. .sp The \fB\-\-get\-server\-public\-key\fR @@ -692,7 +692,7 @@ .\} \fB\-\-histignore\fR .sp -A colon\-separated list of one or more patterns specifying statements to ignore for logging purposes\&. These patterns are added to the default pattern list ("*IDENTIFIED*:*PASSWORD*")\&. The value specified for this option affects logging of statements written to the history file, and to +A list of one or more colon\-separated patterns specifying statements to ignore for logging purposes\&. These patterns are added to the default pattern list ("*IDENTIFIED*:*PASSWORD*")\&. The value specified for this option affects logging of statements written to the history file, and to syslog if the \fB\-\-syslog\fR @@ -785,7 +785,7 @@ Enable or disable LOCAL capability for -LOAD DATA INFILE\&. For +LOAD DATA\&. For \fBmysql\fR, this capability is disabled by default\&. With no value, the option enables LOCAL\&. The option may be given as \fB\-\-local\-infile=0\fR @@ -1078,7 +1078,7 @@ option is used to specify an authentication plugin but \fBmysql\fR does not find it\&. See -Section\ \&6.3.9, \(lqPluggable Authentication\(rq\&. +Section\ \&6.2.13, \(lqPluggable Authentication\(rq\&. .RE .sp .RS 4 @@ -1278,7 +1278,7 @@ .ps -1 .br Passwords that use the pre\-4\&.1 hashing method are less secure than passwords that use the native password hashing method and should be avoided\&. Pre\-4\&.1 passwords are deprecated and support for them was removed in MySQL 5\&.7\&.5\&. For account upgrade instructions, see -Section\ \&6.5.1.3, \(lqMigrating Away from Pre-4.1 Password Hashing and the mysql_old_password Plugin\(rq\&. +Section\ \&6.4.1.3, \(lqMigrating Away from Pre-4.1 Password Hashing and the mysql_old_password Plugin\(rq\&. .sp .5v .RE .RE @@ -1304,8 +1304,8 @@ and caching_sha2_password plugins, see -Section\ \&6.5.1.4, \(lqSHA-256 Pluggable Authentication\(rq, and -Section\ \&6.5.1.5, \(lqCaching SHA-2 Pluggable Authentication\(rq\&. +Section\ \&6.4.1.4, \(lqSHA-256 Pluggable Authentication\(rq, and +Section\ \&6.4.1.5, \(lqCaching SHA-2 Pluggable Authentication\(rq\&. .RE .sp .RS 4 @@ -1429,7 +1429,7 @@ Options that begin with \fB\-\-ssl\fR specify whether to connect to the server using SSL and indicate where to find SSL keys and certificates\&. See -Section\ \&6.4.2, \(lqCommand Options for Encrypted Connections\(rq\&. +Section\ \&6.3.2, \(lqCommand Options for Encrypted Connections\(rq\&. .RE .sp .RS 4 @@ -1514,8 +1514,8 @@ .\} \fB\-\-tls\-version=\fR\fB\fIprotocol_list\fR\fR .sp -The protocols permitted by the client for encrypted connections\&. The value is a comma\-separated list containing one or more protocol names\&. The protocols that can be named for this option depend on the SSL library used to compile MySQL\&. For details, see -Section\ \&6.4.6, \(lqEncrypted Connection Protocols and Ciphers\(rq\&. +The protocols the client permits for encrypted connections\&. The value is a list of one or more comma\-separated protocol names\&. The protocols that can be named for this option depend on the SSL library used to compile MySQL\&. For details, see +Section\ \&6.3.6, \(lqEncrypted Connection Protocols and Ciphers\(rq\&. .sp This option was added in MySQL 5\&.7\&.10\&. .RE @@ -1808,7 +1808,7 @@ charset and delimiter -in non\-interactive mode (for input piped to +in noninteractive mode (for input piped to \fBmysql\fR or loaded using the source @@ -3019,7 +3019,7 @@ \fB\-\-histignore\fR option or set the MYSQL_HISTIGNORE -environment variable\&. (If both are specified, the option value takes precedence\&.) The value should be a colon\-separated list of one or more patterns, which are appended to the default pattern list\&. +environment variable\&. (If both are specified, the option value takes precedence\&.) The value should be a list of one or more colon\-separated patterns, which are appended to the default pattern list\&. .PP Patterns specified on the command line might need to be quoted or escaped to prevent your command interpreter from treating them specially\&. For example, to suppress logging for UPDATE @@ -3121,7 +3121,7 @@ .\} SYSTEM_USER .sp -The system user name (login name) or +The operating system user name (login name) or \-\- if the user is unknown\&. .RE @@ -3237,7 +3237,7 @@ uses it as a search string to access server\-side help from the contents of the MySQL Reference Manual\&. The proper operation of this command requires that the help tables in the mysql database be initialized with help topic information (see -Section\ \&5.1.14, \(lqServer-Side Help\(rq)\&. +Section\ \&5.1.13, \(lqServer-Side Help Support\(rq)\&. .PP If there is no match for the search string, the search fails: .sp @@ -3906,7 +3906,7 @@ .SH "COPYRIGHT" .br .PP -Copyright \(co 1997, 2018, Oracle and/or its affiliates. All rights reserved. +Copyright \(co 1997, 2019, Oracle and/or its affiliates. All rights reserved. .PP This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. .PP diff -Nru mysql-5.7-5.7.25/man/mysqladmin.1 mysql-5.7-5.7.26/man/mysqladmin.1 --- mysql-5.7-5.7.25/man/mysqladmin.1 2018-12-21 10:52:19.000000000 +0000 +++ mysql-5.7-5.7.26/man/mysqladmin.1 2019-04-13 13:46:47.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: \fBmysqladmin\fR .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/20/2018 +.\" Date: 04/12/2019 .\" Manual: MySQL Database System .\" Source: MySQL 5.7 .\" Language: English .\" -.TH "\FBMYSQLADMIN\FR" "1" "12/20/2018" "MySQL 5\&.7" "MySQL Database System" +.TH "\FBMYSQLADMIN\FR" "1" "04/12/2019" "MySQL 5\&.7" "MySQL Database System" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -732,7 +732,7 @@ \fB\-\-default\-auth=\fR\fB\fIplugin\fR\fR .sp A hint about the client\-side authentication plugin to use\&. See -Section\ \&6.3.9, \(lqPluggable Authentication\(rq\&. +Section\ \&6.2.13, \(lqPluggable Authentication\(rq\&. .RE .sp .RS 4 @@ -835,7 +835,7 @@ Enable the mysql_clear_password cleartext authentication plugin\&. (See -Section\ \&6.5.1.6, \(lqClient-Side Cleartext Pluggable Authentication\(rq\&.) +Section\ \&6.4.1.6, \(lqClient-Side Cleartext Pluggable Authentication\(rq\&.) .RE .sp .RS 4 @@ -876,7 +876,7 @@ For information about the caching_sha2_password plugin, see -Section\ \&6.5.1.5, \(lqCaching SHA-2 Pluggable Authentication\(rq\&. +Section\ \&6.4.1.5, \(lqCaching SHA-2 Pluggable Authentication\(rq\&. .sp The \fB\-\-get\-server\-public\-key\fR @@ -1018,7 +1018,7 @@ option is used to specify an authentication plugin but \fBmysqladmin\fR does not find it\&. See -Section\ \&6.3.9, \(lqPluggable Authentication\(rq\&. +Section\ \&6.2.13, \(lqPluggable Authentication\(rq\&. .RE .sp .RS 4 @@ -1123,7 +1123,7 @@ .ps -1 .br Passwords that use the pre\-4\&.1 hashing method are less secure than passwords that use the native password hashing method and should be avoided\&. Pre\-4\&.1 passwords are deprecated and support for them was removed in MySQL 5\&.7\&.5\&. For account upgrade instructions, see -Section\ \&6.5.1.3, \(lqMigrating Away from Pre-4.1 Password Hashing and the mysql_old_password Plugin\(rq\&. +Section\ \&6.4.1.3, \(lqMigrating Away from Pre-4.1 Password Hashing and the mysql_old_password Plugin\(rq\&. .sp .5v .RE .RE @@ -1157,8 +1157,8 @@ and caching_sha2_password plugins, see -Section\ \&6.5.1.4, \(lqSHA-256 Pluggable Authentication\(rq, and -Section\ \&6.5.1.5, \(lqCaching SHA-2 Pluggable Authentication\(rq\&. +Section\ \&6.4.1.4, \(lqSHA-256 Pluggable Authentication\(rq, and +Section\ \&6.4.1.5, \(lqCaching SHA-2 Pluggable Authentication\(rq\&. .sp The \fB\-\-server\-public\-key\-path\fR @@ -1247,7 +1247,7 @@ Options that begin with \fB\-\-ssl\fR specify whether to connect to the server using SSL and indicate where to find SSL keys and certificates\&. See -Section\ \&6.4.2, \(lqCommand Options for Encrypted Connections\(rq\&. +Section\ \&6.3.2, \(lqCommand Options for Encrypted Connections\(rq\&. .RE .sp .RS 4 @@ -1260,8 +1260,8 @@ .\} \fB\-\-tls\-version=\fR\fB\fIprotocol_list\fR\fR .sp -The protocols permitted by the client for encrypted connections\&. The value is a comma\-separated list containing one or more protocol names\&. The protocols that can be named for this option depend on the SSL library used to compile MySQL\&. For details, see -Section\ \&6.4.6, \(lqEncrypted Connection Protocols and Ciphers\(rq\&. +The protocols the client permits for encrypted connections\&. The value is a list of one or more comma\-separated protocol names\&. The protocols that can be named for this option depend on the SSL library used to compile MySQL\&. For details, see +Section\ \&6.3.6, \(lqEncrypted Connection Protocols and Ciphers\(rq\&. .sp This option was added in MySQL 5\&.7\&.10\&. .RE @@ -1370,7 +1370,7 @@ .SH "COPYRIGHT" .br .PP -Copyright \(co 1997, 2018, Oracle and/or its affiliates. All rights reserved. +Copyright \(co 1997, 2019, Oracle and/or its affiliates. All rights reserved. .PP This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. .PP diff -Nru mysql-5.7-5.7.25/man/mysqlbinlog.1 mysql-5.7-5.7.26/man/mysqlbinlog.1 --- mysql-5.7-5.7.25/man/mysqlbinlog.1 2018-12-21 10:52:19.000000000 +0000 +++ mysql-5.7-5.7.26/man/mysqlbinlog.1 2019-04-13 13:46:47.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: \fBmysqlbinlog\fR .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/20/2018 +.\" Date: 04/12/2019 .\" Manual: MySQL Database System .\" Source: MySQL 5.7 .\" Language: English .\" -.TH "\FBMYSQLBINLOG\FR" "1" "12/20/2018" "MySQL 5\&.7" "MySQL Database System" +.TH "\FBMYSQLBINLOG\FR" "1" "04/12/2019" "MySQL 5\&.7" "MySQL Database System" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -587,7 +587,7 @@ \fB\-\-default\-auth=\fR\fB\fIplugin\fR\fR .sp A hint about the client\-side authentication plugin to use\&. See -Section\ \&6.3.9, \(lqPluggable Authentication\(rq\&. +Section\ \&6.2.13, \(lqPluggable Authentication\(rq\&. .RE .sp .RS 4 @@ -754,7 +754,7 @@ For information about the caching_sha2_password plugin, see -Section\ \&6.5.1.5, \(lqCaching SHA-2 Pluggable Authentication\(rq\&. +Section\ \&6.4.1.5, \(lqCaching SHA-2 Pluggable Authentication\(rq\&. .sp The \fB\-\-get\-server\-public\-key\fR @@ -833,7 +833,7 @@ \fB\-l \fR\fB\fIdir_name\fR\fR .sp Prepare local temporary files for -LOAD DATA INFILE +LOAD DATA in the specified directory\&. .if n \{\ .sp @@ -929,6 +929,18 @@ .sp -1 .IP \(bu 2.3 .\} +\fB\-\-open\-files\-limit=\fR\fB\fIN\fR\fR +Specify the number of open file descriptors to reserve\&. +.RE +.sp +.RS 4 +.ie n \{\ +\h'-04'\(bu\h'+03'\c +.\} +.el \{\ +.sp -1 +.IP \(bu 2.3 +.\} \fB\-\-password[=\fR\fB\fIpassword\fR\fR\fB]\fR, \fB\-p[\fR\fB\fIpassword\fR\fR\fB]\fR .sp @@ -963,7 +975,7 @@ option is used to specify an authentication plugin but \fBmysqlbinlog\fR does not find it\&. See -Section\ \&6.3.9, \(lqPluggable Authentication\(rq\&. +Section\ \&6.2.13, \(lqPluggable Authentication\(rq\&. .RE .sp .RS 4 @@ -1220,7 +1232,7 @@ .ps -1 .br Passwords that use the pre\-4\&.1 hashing method are less secure than passwords that use the native password hashing method and should be avoided\&. Pre\-4\&.1 passwords are deprecated and support for them was removed in MySQL 5\&.7\&.5\&. For account upgrade instructions, see -Section\ \&6.5.1.3, \(lqMigrating Away from Pre-4.1 Password Hashing and the mysql_old_password Plugin\(rq\&. +Section\ \&6.4.1.3, \(lqMigrating Away from Pre-4.1 Password Hashing and the mysql_old_password Plugin\(rq\&. .sp .5v .RE .RE @@ -1294,8 +1306,8 @@ and caching_sha2_password plugins, see -Section\ \&6.5.1.4, \(lqSHA-256 Pluggable Authentication\(rq, and -Section\ \&6.5.1.5, \(lqCaching SHA-2 Pluggable Authentication\(rq\&. +Section\ \&6.4.1.4, \(lqSHA-256 Pluggable Authentication\(rq, and +Section\ \&6.4.1.5, \(lqCaching SHA-2 Pluggable Authentication\(rq\&. .sp The \fB\-\-server\-public\-key\-path\fR @@ -1404,7 +1416,7 @@ Options that begin with \fB\-\-ssl\fR specify whether to connect to the server using SSL and indicate where to find SSL keys and certificates\&. See -Section\ \&6.4.2, \(lqCommand Options for Encrypted Connections\(rq\&. +Section\ \&6.3.2, \(lqCommand Options for Encrypted Connections\(rq\&. .RE .sp .RS 4 @@ -1558,8 +1570,8 @@ .\} \fB\-\-tls\-version=\fR\fB\fIprotocol_list\fR\fR .sp -The protocols permitted by the client for encrypted connections\&. The value is a comma\-separated list containing one or more protocol names\&. The protocols that can be named for this option depend on the SSL library used to compile MySQL\&. For details, see -Section\ \&6.4.6, \(lqEncrypted Connection Protocols and Ciphers\(rq\&. +The protocols the client permits for encrypted connections\&. The value is a list of one or more comma\-separated protocol names\&. The protocols that can be named for this option depend on the SSL library used to compile MySQL\&. For details, see +Section\ \&6.3.6, \(lqEncrypted Connection Protocols and Ciphers\(rq\&. .sp This option was added in MySQL 5\&.7\&.10\&. .RE @@ -1646,23 +1658,6 @@ version number is 3\&.4\&. .RE .PP -You can also set the following variable by using -\fB\-\-\fR\fB\fIvar_name\fR\fR\fB=\fR\fB\fIvalue\fR\fR -syntax: -.sp -.RS 4 -.ie n \{\ -\h'-04'\(bu\h'+03'\c -.\} -.el \{\ -.sp -1 -.IP \(bu 2.3 -.\} -open_files_limit -.sp -Specify the number of open file descriptors to reserve\&. -.RE -.PP You can pipe the output of \fBmysqlbinlog\fR into the @@ -1785,11 +1780,11 @@ .PP \fBmysqlbinlog\fR can produce output that reproduces a -LOAD DATA INFILE +LOAD DATA operation without the original data file\&. \fBmysqlbinlog\fR copies the data to a temporary file and writes a -LOAD DATA LOCAL INFILE +LOAD DATA LOCAL statement that refers to the file\&. The default location of the directory where these files are written is system\-specific\&. To specify a directory explicitly, use the \fB\-\-local\-load\fR option\&. @@ -1797,9 +1792,9 @@ Because \fBmysqlbinlog\fR converts -LOAD DATA INFILE +LOAD DATA statements to -LOAD DATA LOCAL INFILE +LOAD DATA LOCAL statements (that is, it adds LOCAL), both the client and the server that you use to process the statements must be configured with the LOCAL @@ -2759,7 +2754,7 @@ .SH "COPYRIGHT" .br .PP -Copyright \(co 1997, 2018, Oracle and/or its affiliates. All rights reserved. +Copyright \(co 1997, 2019, Oracle and/or its affiliates. All rights reserved. .PP This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. .PP diff -Nru mysql-5.7-5.7.25/man/mysqlcheck.1 mysql-5.7-5.7.26/man/mysqlcheck.1 --- mysql-5.7-5.7.25/man/mysqlcheck.1 2018-12-21 10:52:19.000000000 +0000 +++ mysql-5.7-5.7.26/man/mysqlcheck.1 2019-04-13 13:46:47.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: \fBmysqlcheck\fR .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/20/2018 +.\" Date: 04/12/2019 .\" Manual: MySQL Database System .\" Source: MySQL 5.7 .\" Language: English .\" -.TH "\FBMYSQLCHECK\FR" "1" "12/20/2018" "MySQL 5\&.7" "MySQL Database System" +.TH "\FBMYSQLCHECK\FR" "1" "04/12/2019" "MySQL 5\&.7" "MySQL Database System" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -51,11 +51,7 @@ \fB\-\-all\-databases\fR option to process all tables in one or more databases, an invocation of \fBmysqlcheck\fR -might take a long time\&. (This is also true for -\fBmysql_upgrade\fR -because that program invokes -\fBmysqlcheck\fR -to check all tables and repair them if necessary\&.) +might take a long time\&. (This is also true for the MySQL upgrade procedure if it determines that table checking is needed because it processes tables the same way\&.) .PP \fBmysqlcheck\fR must be used when the @@ -92,7 +88,7 @@ If \fBmysqlcheck\fR is unable to repair a table, see -Section\ \&2.11.3, \(lqRebuilding or Repairing Tables or Indexes\(rq +Section\ \&2.11.12, \(lqRebuilding or Repairing Tables or Indexes\(rq for manual table repair strategies\&. This will be the case, for example, for InnoDB tables, which can be checked with @@ -530,7 +526,7 @@ \fB\-\-default\-auth=\fR\fB\fIplugin\fR\fR .sp A hint about the client\-side authentication plugin to use\&. See -Section\ \&6.3.9, \(lqPluggable Authentication\(rq\&. +Section\ \&6.2.13, \(lqPluggable Authentication\(rq\&. .RE .sp .RS 4 @@ -546,7 +542,7 @@ Enable the mysql_clear_password cleartext authentication plugin\&. (See -Section\ \&6.5.1.6, \(lqClient-Side Cleartext Pluggable Authentication\(rq\&.) +Section\ \&6.4.1.6, \(lqClient-Side Cleartext Pluggable Authentication\(rq\&.) .sp This option was added in MySQL 5\&.7\&.10\&. .RE @@ -631,7 +627,7 @@ For information about the caching_sha2_password plugin, see -Section\ \&6.5.1.5, \(lqCaching SHA-2 Pluggable Authentication\(rq\&. +Section\ \&6.4.1.5, \(lqCaching SHA-2 Pluggable Authentication\(rq\&. .sp The \fB\-\-get\-server\-public\-key\fR @@ -789,7 +785,7 @@ option is used to specify an authentication plugin but \fBmysqlcheck\fR does not find it\&. See -Section\ \&6.3.9, \(lqPluggable Authentication\(rq\&. +Section\ \&6.2.13, \(lqPluggable Authentication\(rq\&. .RE .sp .RS 4 @@ -893,7 +889,7 @@ .ps -1 .br Passwords that use the pre\-4\&.1 hashing method are less secure than passwords that use the native password hashing method and should be avoided\&. Pre\-4\&.1 passwords are deprecated and support for them was removed in MySQL 5\&.7\&.5\&. For account upgrade instructions, see -Section\ \&6.5.1.3, \(lqMigrating Away from Pre-4.1 Password Hashing and the mysql_old_password Plugin\(rq\&. +Section\ \&6.4.1.3, \(lqMigrating Away from Pre-4.1 Password Hashing and the mysql_old_password Plugin\(rq\&. .sp .5v .RE .RE @@ -927,8 +923,8 @@ and caching_sha2_password plugins, see -Section\ \&6.5.1.4, \(lqSHA-256 Pluggable Authentication\(rq, and -Section\ \&6.5.1.5, \(lqCaching SHA-2 Pluggable Authentication\(rq\&. +Section\ \&6.4.1.4, \(lqSHA-256 Pluggable Authentication\(rq, and +Section\ \&6.4.1.5, \(lqCaching SHA-2 Pluggable Authentication\(rq\&. .sp The \fB\-\-server\-public\-key\-path\fR @@ -1009,7 +1005,7 @@ Options that begin with \fB\-\-ssl\fR specify whether to connect to the server using SSL and indicate where to find SSL keys and certificates\&. See -Section\ \&6.4.2, \(lqCommand Options for Encrypted Connections\(rq\&. +Section\ \&6.3.2, \(lqCommand Options for Encrypted Connections\(rq\&. .RE .sp .RS 4 @@ -1039,8 +1035,8 @@ .\} \fB\-\-tls\-version=\fR\fB\fIprotocol_list\fR\fR .sp -The protocols permitted by the client for encrypted connections\&. The value is a comma\-separated list containing one or more protocol names\&. The protocols that can be named for this option depend on the SSL library used to compile MySQL\&. For details, see -Section\ \&6.4.6, \(lqEncrypted Connection Protocols and Ciphers\(rq\&. +The protocols the client permits for encrypted connections\&. The value is a list of one or more comma\-separated protocol names\&. The protocols that can be named for this option depend on the SSL library used to compile MySQL\&. For details, see +Section\ \&6.3.6, \(lqEncrypted Connection Protocols and Ciphers\(rq\&. .sp This option was added in MySQL 5\&.7\&.10\&. .RE @@ -1133,7 +1129,7 @@ .SH "COPYRIGHT" .br .PP -Copyright \(co 1997, 2018, Oracle and/or its affiliates. All rights reserved. +Copyright \(co 1997, 2019, Oracle and/or its affiliates. All rights reserved. .PP This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. .PP diff -Nru mysql-5.7-5.7.25/man/mysql_config.1 mysql-5.7-5.7.26/man/mysql_config.1 --- mysql-5.7-5.7.25/man/mysql_config.1 2018-12-21 10:52:19.000000000 +0000 +++ mysql-5.7-5.7.26/man/mysql_config.1 2019-04-13 13:46:47.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: \fBmysql_config\fR .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/20/2018 +.\" Date: 04/12/2019 .\" Manual: MySQL Database System .\" Source: MySQL 5.7 .\" Language: English .\" -.TH "\FBMYSQL_CONFIG\FR" "1" "12/20/2018" "MySQL 5\&.7" "MySQL Database System" +.TH "\FBMYSQL_CONFIG\FR" "1" "04/12/2019" "MySQL 5\&.7" "MySQL Database System" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -311,7 +311,7 @@ .SH "COPYRIGHT" .br .PP -Copyright \(co 1997, 2018, Oracle and/or its affiliates. All rights reserved. +Copyright \(co 1997, 2019, Oracle and/or its affiliates. All rights reserved. .PP This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. .PP diff -Nru mysql-5.7-5.7.25/man/mysql_config_editor.1 mysql-5.7-5.7.26/man/mysql_config_editor.1 --- mysql-5.7-5.7.25/man/mysql_config_editor.1 2018-12-21 10:52:19.000000000 +0000 +++ mysql-5.7-5.7.26/man/mysql_config_editor.1 2019-04-13 13:46:47.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: \fBmysql_config_editor\fR .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/20/2018 +.\" Date: 04/12/2019 .\" Manual: MySQL Database System .\" Source: MySQL 5.7 .\" Language: English .\" -.TH "\FBMYSQL_CONFIG_EDITOR\FR" "1" "12/20/2018" "MySQL 5\&.7" "MySQL Database System" +.TH "\FBMYSQL_CONFIG_EDITOR\FR" "1" "04/12/2019" "MySQL 5\&.7" "MySQL Database System" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -1075,7 +1075,7 @@ .SH "COPYRIGHT" .br .PP -Copyright \(co 1997, 2018, Oracle and/or its affiliates. All rights reserved. +Copyright \(co 1997, 2019, Oracle and/or its affiliates. All rights reserved. .PP This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. .PP diff -Nru mysql-5.7-5.7.25/man/mysqld.8 mysql-5.7-5.7.26/man/mysqld.8 --- mysql-5.7-5.7.25/man/mysqld.8 2018-12-21 10:52:19.000000000 +0000 +++ mysql-5.7-5.7.26/man/mysqld.8 2019-04-13 13:46:47.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: \fBmysqld\fR .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/20/2018 +.\" Date: 04/12/2019 .\" Manual: MySQL Database System .\" Source: MySQL 5.7 .\" Language: English .\" -.TH "\FBMYSQLD\FR" "8" "12/20/2018" "MySQL 5\&.7" "MySQL Database System" +.TH "\FBMYSQLD\FR" "8" "04/12/2019" "MySQL 5\&.7" "MySQL Database System" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -80,7 +80,7 @@ .SH "COPYRIGHT" .br .PP -Copyright \(co 1997, 2018, Oracle and/or its affiliates. All rights reserved. +Copyright \(co 1997, 2019, Oracle and/or its affiliates. All rights reserved. .PP This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. .PP diff -Nru mysql-5.7-5.7.25/man/mysqld_multi.1 mysql-5.7-5.7.26/man/mysqld_multi.1 --- mysql-5.7-5.7.25/man/mysqld_multi.1 2018-12-21 10:52:19.000000000 +0000 +++ mysql-5.7-5.7.26/man/mysqld_multi.1 2019-04-13 13:46:47.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: \fBmysqld_multi\fR .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/20/2018 +.\" Date: 04/12/2019 .\" Manual: MySQL Database System .\" Source: MySQL 5.7 .\" Language: English .\" -.TH "\FBMYSQLD_MULTI\FR" "1" "12/20/2018" "MySQL 5\&.7" "MySQL Database System" +.TH "\FBMYSQLD_MULTI\FR" "1" "04/12/2019" "MySQL 5\&.7" "MySQL Database System" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -514,7 +514,7 @@ .\} .sp See -Section\ \&6.2, \(lqThe MySQL Access Privilege System\(rq\&. You have to do this for each +Section\ \&6.2, \(lqAccess Control and Account Management\(rq\&. You have to do this for each \fBmysqld\fR server\&. Change the connection parameters appropriately when connecting to each one\&. Note that the host name part of the account name must permit you to connect as multi_admin @@ -531,9 +531,9 @@ .IP \(bu 2.3 .\} The Unix socket file and the TCP/IP port number must be different for every -\fBmysqld\fR\&. (Alternatively, if the host has multiple network addresses, you can use -\fB\-\-bind\-address\fR -to cause different servers to listen to different interfaces\&.) +\fBmysqld\fR\&. (Alternatively, if the host has multiple network addresses, you can set the +bind_address +system variable to cause different servers to listen to different interfaces\&.) .RE .sp .RS 4 @@ -645,7 +645,7 @@ .SH "COPYRIGHT" .br .PP -Copyright \(co 1997, 2018, Oracle and/or its affiliates. All rights reserved. +Copyright \(co 1997, 2019, Oracle and/or its affiliates. All rights reserved. .PP This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. .PP diff -Nru mysql-5.7-5.7.25/man/mysqld_safe.1 mysql-5.7-5.7.26/man/mysqld_safe.1 --- mysql-5.7-5.7.25/man/mysqld_safe.1 2018-12-21 10:52:19.000000000 +0000 +++ mysql-5.7-5.7.26/man/mysqld_safe.1 2019-04-13 13:46:47.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: \fBmysqld_safe\fR .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/20/2018 +.\" Date: 04/12/2019 .\" Manual: MySQL Database System .\" Source: MySQL 5.7 .\" Language: English .\" -.TH "\FBMYSQLD_SAFE\FR" "1" "12/20/2018" "MySQL 5\&.7" "MySQL Database System" +.TH "\FBMYSQLD_SAFE\FR" "1" "04/12/2019" "MySQL 5\&.7" "MySQL Database System" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -679,7 +679,7 @@ .sp The port number that the server should use when listening for TCP/IP connections\&. The port number must be 1024 or higher unless the server is started by the root -system user\&. +operating system user\&. .RE .sp .RS 4 @@ -1016,7 +1016,7 @@ .SH "COPYRIGHT" .br .PP -Copyright \(co 1997, 2018, Oracle and/or its affiliates. All rights reserved. +Copyright \(co 1997, 2019, Oracle and/or its affiliates. All rights reserved. .PP This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. .PP diff -Nru mysql-5.7-5.7.25/man/mysqldump.1 mysql-5.7-5.7.26/man/mysqldump.1 --- mysql-5.7-5.7.25/man/mysqldump.1 2018-12-21 10:52:19.000000000 +0000 +++ mysql-5.7-5.7.26/man/mysqldump.1 2019-04-13 13:46:47.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: \fBmysqldump\fR .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/20/2018 +.\" Date: 04/12/2019 .\" Manual: MySQL Database System .\" Source: MySQL 5.7 .\" Language: English .\" -.TH "\FBMYSQLDUMP\FR" "1" "12/20/2018" "MySQL 5\&.7" "MySQL Database System" +.TH "\FBMYSQLDUMP\FR" "1" "04/12/2019" "MySQL 5\&.7" "MySQL Database System" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -448,7 +448,7 @@ \fB\-\-default\-auth=\fR\fB\fIplugin\fR\fR .sp A hint about the client\-side authentication plugin to use\&. See -Section\ \&6.3.9, \(lqPluggable Authentication\(rq\&. +Section\ \&6.2.13, \(lqPluggable Authentication\(rq\&. .RE .sp .RS 4 @@ -464,7 +464,7 @@ Enable the mysql_clear_password cleartext authentication plugin\&. (See -Section\ \&6.5.1.6, \(lqClient-Side Cleartext Pluggable Authentication\(rq\&.) +Section\ \&6.4.1.6, \(lqClient-Side Cleartext Pluggable Authentication\(rq\&.) .sp This option was added in MySQL 5\&.7\&.10\&. .RE @@ -491,7 +491,7 @@ For information about the caching_sha2_password plugin, see -Section\ \&6.5.1.5, \(lqCaching SHA-2 Pluggable Authentication\(rq\&. +Section\ \&6.4.1.5, \(lqCaching SHA-2 Pluggable Authentication\(rq\&. .sp The \fB\-\-get\-server\-public\-key\fR @@ -592,7 +592,7 @@ option is used to specify an authentication plugin but \fBmysqldump\fR does not find it\&. See -Section\ \&6.3.9, \(lqPluggable Authentication\(rq\&. +Section\ \&6.2.13, \(lqPluggable Authentication\(rq\&. .RE .sp .RS 4 @@ -650,7 +650,7 @@ .ps -1 .br Passwords that use the pre\-4\&.1 hashing method are less secure than passwords that use the native password hashing method and should be avoided\&. Pre\-4\&.1 passwords are deprecated and support for them was removed in MySQL 5\&.7\&.5\&. For account upgrade instructions, see -Section\ \&6.5.1.3, \(lqMigrating Away from Pre-4.1 Password Hashing and the mysql_old_password Plugin\(rq\&. +Section\ \&6.4.1.3, \(lqMigrating Away from Pre-4.1 Password Hashing and the mysql_old_password Plugin\(rq\&. .sp .5v .RE .RE @@ -684,8 +684,8 @@ and caching_sha2_password plugins, see -Section\ \&6.5.1.4, \(lqSHA-256 Pluggable Authentication\(rq, and -Section\ \&6.5.1.5, \(lqCaching SHA-2 Pluggable Authentication\(rq\&. +Section\ \&6.4.1.4, \(lqSHA-256 Pluggable Authentication\(rq, and +Section\ \&6.4.1.5, \(lqCaching SHA-2 Pluggable Authentication\(rq\&. .sp The \fB\-\-server\-public\-key\-path\fR @@ -720,7 +720,7 @@ Options that begin with \fB\-\-ssl\fR specify whether to connect to the server using SSL and indicate where to find SSL keys and certificates\&. See -Section\ \&6.4.2, \(lqCommand Options for Encrypted Connections\(rq\&. +Section\ \&6.3.2, \(lqCommand Options for Encrypted Connections\(rq\&. .RE .sp .RS 4 @@ -733,8 +733,8 @@ .\} \fB\-\-tls\-version=\fR\fB\fIprotocol_list\fR\fR .sp -The protocols permitted by the client for encrypted connections\&. The value is a comma\-separated list containing one or more protocol names\&. The protocols that can be named for this option depend on the SSL library used to compile MySQL\&. For details, see -Section\ \&6.4.6, \(lqEncrypted Connection Protocols and Ciphers\(rq\&. +The protocols the client permits for encrypted connections\&. The value is a list of one or more comma\-separated protocol names\&. The protocols that can be named for this option depend on the SSL library used to compile MySQL\&. For details, see +Section\ \&6.3.6, \(lqEncrypted Connection Protocols and Ciphers\(rq\&. .sp This option was added in MySQL 5\&.7\&.10\&. .RE @@ -1451,7 +1451,7 @@ .ps -1 .br Inconsistencies in the sequence of transactions from the relay log which have been executed can cause the wrong position to be used\&. See -Section\ \&16.4.1.33, \(lqReplication and Transaction Inconsistencies\(rq +Section\ \&16.4.1.32, \(lqReplication and Transaction Inconsistencies\(rq for more information\&. .sp .5v .RE @@ -1781,8 +1781,8 @@ option and have the same meaning as the corresponding FIELDS clauses for -LOAD DATA INFILE\&. See -Section\ \&13.2.6, \(lqLOAD DATA INFILE Syntax\(rq\&. +LOAD DATA\&. See +Section\ \&13.2.6, \(lqLOAD DATA Syntax\(rq\&. .RE .sp .RS 4 @@ -1821,8 +1821,8 @@ option and has the same meaning as the corresponding LINES clause for -LOAD DATA INFILE\&. See -Section\ \&13.2.6, \(lqLOAD DATA INFILE Syntax\(rq\&. +LOAD DATA\&. See +Section\ \&13.2.6, \(lqLOAD DATA Syntax\(rq\&. .RE .sp .RS 4 @@ -2153,7 +2153,7 @@ .\} \fB\-\-ignore\-error=\fR\fB\fIerror[,error]\&.\&.\&.\fR\fR .sp -Ignore the specified errors\&. The option value is a comma\-separated list of error numbers specifying the errors to ignore during +Ignore the specified errors\&. The option value is a list of comma\-separated error numbers specifying the errors to ignore during \fBmysqldump\fR execution\&. If the \fB\-\-force\fR @@ -2265,7 +2265,7 @@ dumps triggers in activation order so that when the dump file is reloaded, triggers are created in the same activation order\&. However, if a \fBmysqldump\fR dump file contains multiple triggers for a table that have the same trigger event and action time, an error occurs for attempts to load the dump file into an older server that does not support multiple triggers\&. (For a workaround, see -Section\ \&2.11.2.3, \(lqDowngrade Notes\(rq; you can convert triggers to be compatible with older servers\&.) +Section\ \&2.12.3, \(lqDowngrade Notes\(rq; you can convert triggers to be compatible with older servers\&.) .RE .sp .RS 4 @@ -2507,7 +2507,7 @@ .br For upgrades to MySQL 5\&.7 or higher from older versions, do not use \fB\-\-flush\-privileges\fR\&. For upgrade instructions in this case, see -Section\ \&2.11.1.3, \(lqChanges in MySQL 5.7\(rq\&. +Section\ \&2.11.3, \(lqChanges in MySQL 5.7\(rq\&. .sp .5v .RE .RE @@ -2932,7 +2932,7 @@ .SH "COPYRIGHT" .br .PP -Copyright \(co 1997, 2018, Oracle and/or its affiliates. All rights reserved. +Copyright \(co 1997, 2019, Oracle and/or its affiliates. All rights reserved. .PP This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. .PP diff -Nru mysql-5.7-5.7.25/man/mysqldumpslow.1 mysql-5.7-5.7.26/man/mysqldumpslow.1 --- mysql-5.7-5.7.25/man/mysqldumpslow.1 2018-12-21 10:52:19.000000000 +0000 +++ mysql-5.7-5.7.26/man/mysqldumpslow.1 2019-04-13 13:46:47.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: \fBmysqldumpslow\fR .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/20/2018 +.\" Date: 04/12/2019 .\" Manual: MySQL Database System .\" Source: MySQL 5.7 .\" Language: English .\" -.TH "\FBMYSQLDUMPSLOW\FR" "1" "12/20/2018" "MySQL 5\&.7" "MySQL Database System" +.TH "\FBMYSQLDUMPSLOW\FR" "1" "04/12/2019" "MySQL 5\&.7" "MySQL Database System" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -316,7 +316,7 @@ .SH "COPYRIGHT" .br .PP -Copyright \(co 1997, 2018, Oracle and/or its affiliates. All rights reserved. +Copyright \(co 1997, 2019, Oracle and/or its affiliates. All rights reserved. .PP This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. .PP diff -Nru mysql-5.7-5.7.25/man/mysqlimport.1 mysql-5.7-5.7.26/man/mysqlimport.1 --- mysql-5.7-5.7.25/man/mysqlimport.1 2018-12-21 10:52:19.000000000 +0000 +++ mysql-5.7-5.7.26/man/mysqlimport.1 2019-04-13 13:46:47.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: \fBmysqlimport\fR .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/20/2018 +.\" Date: 04/12/2019 .\" Manual: MySQL Database System .\" Source: MySQL 5.7 .\" Language: English .\" -.TH "\FBMYSQLIMPORT\FR" "1" "12/20/2018" "MySQL 5\&.7" "MySQL Database System" +.TH "\FBMYSQLIMPORT\FR" "1" "04/12/2019" "MySQL 5\&.7" "MySQL Database System" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -37,13 +37,13 @@ The \fBmysqlimport\fR client provides a command\-line interface to the -LOAD DATA INFILE +LOAD DATA SQL statement\&. Most options to \fBmysqlimport\fR correspond directly to clauses of -LOAD DATA INFILE +LOAD DATA syntax\&. See -Section\ \&13.2.6, \(lqLOAD DATA INFILE Syntax\(rq\&. +Section\ \&13.2.6, \(lqLOAD DATA Syntax\(rq\&. .PP Invoke \fBmysqlimport\fR @@ -128,7 +128,7 @@ \fB\-\-columns=\fR\fB\fIcolumn_list\fR\fR, \fB\-c \fR\fB\fIcolumn_list\fR\fR .sp -This option takes a comma\-separated list of column names as its value\&. The order of the column names indicates how to match data file columns with table columns\&. +This option takes a list of comma\-separated column names as its value\&. The order of the column names indicates how to match data file columns with table columns\&. .RE .sp .RS 4 @@ -216,7 +216,7 @@ \fB\-\-default\-auth=\fR\fB\fIplugin\fR\fR .sp A hint about the client\-side authentication plugin to use\&. See -Section\ \&6.3.9, \(lqPluggable Authentication\(rq\&. +Section\ \&6.2.13, \(lqPluggable Authentication\(rq\&. .RE .sp .RS 4 @@ -317,7 +317,7 @@ Enable the mysql_clear_password cleartext authentication plugin\&. (See -Section\ \&6.5.1.6, \(lqClient-Side Cleartext Pluggable Authentication\(rq\&.) +Section\ \&6.4.1.6, \(lqClient-Side Cleartext Pluggable Authentication\(rq\&.) .sp This option was added in MySQL 5\&.7\&.10\&. .RE @@ -336,8 +336,8 @@ \fB\-\-fields\-escaped\-by=\&.\&.\&.\fR .sp These options have the same meaning as the corresponding clauses for -LOAD DATA INFILE\&. See -Section\ \&13.2.6, \(lqLOAD DATA INFILE Syntax\(rq\&. +LOAD DATA\&. See +Section\ \&13.2.6, \(lqLOAD DATA Syntax\(rq\&. .RE .sp .RS 4 @@ -379,7 +379,7 @@ For information about the caching_sha2_password plugin, see -Section\ \&6.5.1.5, \(lqCaching SHA-2 Pluggable Authentication\(rq\&. +Section\ \&6.4.1.5, \(lqCaching SHA-2 Pluggable Authentication\(rq\&. .sp The \fB\-\-get\-server\-public\-key\fR @@ -443,9 +443,9 @@ \fB\-\-lines\-terminated\-by=\&.\&.\&.\fR .sp This option has the same meaning as the corresponding clause for -LOAD DATA INFILE\&. For example, to import Windows files that have lines terminated with carriage return/linefeed pairs, use +LOAD DATA\&. For example, to import Windows files that have lines terminated with carriage return/linefeed pairs, use \fB\-\-lines\-terminated\-by="\er\en"\fR\&. (You might have to double the backslashes, depending on the escaping conventions of your command interpreter\&.) See -Section\ \&13.2.6, \(lqLOAD DATA INFILE Syntax\(rq\&. +Section\ \&13.2.6, \(lqLOAD DATA Syntax\(rq\&. .RE .sp .RS 4 @@ -606,7 +606,7 @@ option is used to specify an authentication plugin but \fBmysqlimport\fR does not find it\&. See -Section\ \&6.3.9, \(lqPluggable Authentication\(rq\&. +Section\ \&6.2.13, \(lqPluggable Authentication\(rq\&. .RE .sp .RS 4 @@ -700,7 +700,7 @@ .ps -1 .br Passwords that use the pre\-4\&.1 hashing method are less secure than passwords that use the native password hashing method and should be avoided\&. Pre\-4\&.1 passwords are deprecated and support for them was removed in MySQL 5\&.7\&.5\&. For account upgrade instructions, see -Section\ \&6.5.1.3, \(lqMigrating Away from Pre-4.1 Password Hashing and the mysql_old_password Plugin\(rq\&. +Section\ \&6.4.1.3, \(lqMigrating Away from Pre-4.1 Password Hashing and the mysql_old_password Plugin\(rq\&. .sp .5v .RE .RE @@ -734,8 +734,8 @@ and caching_sha2_password plugins, see -Section\ \&6.5.1.4, \(lqSHA-256 Pluggable Authentication\(rq, and -Section\ \&6.5.1.5, \(lqCaching SHA-2 Pluggable Authentication\(rq\&. +Section\ \&6.4.1.4, \(lqSHA-256 Pluggable Authentication\(rq, and +Section\ \&6.4.1.5, \(lqCaching SHA-2 Pluggable Authentication\(rq\&. .sp The \fB\-\-server\-public\-key\-path\fR @@ -802,7 +802,7 @@ Options that begin with \fB\-\-ssl\fR specify whether to connect to the server using SSL and indicate where to find SSL keys and certificates\&. See -Section\ \&6.4.2, \(lqCommand Options for Encrypted Connections\(rq\&. +Section\ \&6.3.2, \(lqCommand Options for Encrypted Connections\(rq\&. .RE .sp .RS 4 @@ -815,8 +815,8 @@ .\} \fB\-\-tls\-version=\fR\fB\fIprotocol_list\fR\fR .sp -The protocols permitted by the client for encrypted connections\&. The value is a comma\-separated list containing one or more protocol names\&. The protocols that can be named for this option depend on the SSL library used to compile MySQL\&. For details, see -Section\ \&6.4.6, \(lqEncrypted Connection Protocols and Ciphers\(rq\&. +The protocols the client permits for encrypted connections\&. The value is a list of one or more comma\-separated protocol names\&. The protocols that can be named for this option depend on the SSL library used to compile MySQL\&. For details, see +Section\ \&6.3.6, \(lqEncrypted Connection Protocols and Ciphers\(rq\&. .sp This option was added in MySQL 5\&.7\&.10\&. .RE @@ -914,7 +914,7 @@ .SH "COPYRIGHT" .br .PP -Copyright \(co 1997, 2018, Oracle and/or its affiliates. All rights reserved. +Copyright \(co 1997, 2019, Oracle and/or its affiliates. All rights reserved. .PP This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. .PP diff -Nru mysql-5.7-5.7.25/man/mysql_install_db.1 mysql-5.7-5.7.26/man/mysql_install_db.1 --- mysql-5.7-5.7.25/man/mysql_install_db.1 2018-12-21 10:52:19.000000000 +0000 +++ mysql-5.7-5.7.26/man/mysql_install_db.1 2019-04-13 13:46:47.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: \fBmysql_install_db\fR .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/20/2018 +.\" Date: 04/12/2019 .\" Manual: MySQL Database System .\" Source: MySQL 5.7 .\" Language: English .\" -.TH "\FBMYSQL_INSTALL_DB\FR" "1" "12/20/2018" "MySQL 5\&.7" "MySQL Database System" +.TH "\FBMYSQL_INSTALL_DB\FR" "1" "04/12/2019" "MySQL 5\&.7" "MySQL Database System" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -55,7 +55,7 @@ or \fB\-\-initialize\-insecure\fR option\&. For more information, see -Section\ \&2.10.1.1, \(lqInitializing the Data Directory Manually Using mysqld\(rq\&. +Section\ \&2.10.1, \(lqInitializing the Data Directory\(rq\&. \fBmysql_install_db\fR will be removed in a future MySQL release\&. .sp .5v @@ -333,7 +333,7 @@ \&.mysql_secret in the home directory of the effective user running the script\&. \&.mysql_secret -is created with mode 600 to be accessible only to the system user for whom it is created\&. +is created with mode 600 to be accessible only to the operating system user for whom it is created\&. .if n \{\ .sp .\} @@ -610,8 +610,8 @@ .PP \fBmysql_install_db\fR assigns -user -table rows a nonempty +mysql\&.user +system table rows a nonempty plugin column value to set the authentication plugin\&. The default value is mysql_native_password\&. The value can be changed using the @@ -1310,7 +1310,7 @@ root system user\&. \&.mysql_secret -is created with mode 600 to be accessible only to the system user for whom it is created\&. +is created with mode 600 to be accessible only to the operating system user for whom it is created\&. .sp If \&.mysql_secret @@ -1462,7 +1462,7 @@ \&.mysql_secret file in the home directory of the effective user running the script\&. \&.mysql_secret -is created with mode 600 to be accessible only to the system user for whom it is created\&. +is created with mode 600 to be accessible only to the operating system user for whom it is created\&. .sp If \&.mysql_secret @@ -1647,7 +1647,7 @@ .SH "COPYRIGHT" .br .PP -Copyright \(co 1997, 2018, Oracle and/or its affiliates. All rights reserved. +Copyright \(co 1997, 2019, Oracle and/or its affiliates. All rights reserved. .PP This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. .PP diff -Nru mysql-5.7-5.7.25/man/mysql_plugin.1 mysql-5.7-5.7.26/man/mysql_plugin.1 --- mysql-5.7-5.7.25/man/mysql_plugin.1 2018-12-21 10:52:19.000000000 +0000 +++ mysql-5.7-5.7.26/man/mysql_plugin.1 2019-04-13 13:46:47.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: \fBmysql_plugin\fR .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/20/2018 +.\" Date: 04/12/2019 .\" Manual: MySQL Database System .\" Source: MySQL 5.7 .\" Language: English .\" -.TH "\FBMYSQL_PLUGIN\FR" "1" "12/20/2018" "MySQL 5\&.7" "MySQL Database System" +.TH "\FBMYSQL_PLUGIN\FR" "1" "04/12/2019" "MySQL 5\&.7" "MySQL Database System" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -368,7 +368,7 @@ .SH "COPYRIGHT" .br .PP -Copyright \(co 1997, 2018, Oracle and/or its affiliates. All rights reserved. +Copyright \(co 1997, 2019, Oracle and/or its affiliates. All rights reserved. .PP This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. .PP diff -Nru mysql-5.7-5.7.25/man/mysqlpump.1 mysql-5.7-5.7.26/man/mysqlpump.1 --- mysql-5.7-5.7.25/man/mysqlpump.1 2018-12-21 10:52:19.000000000 +0000 +++ mysql-5.7-5.7.26/man/mysqlpump.1 2019-04-13 13:46:47.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: \fBmysqlpump\fR .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/20/2018 +.\" Date: 04/12/2019 .\" Manual: MySQL Database System .\" Source: MySQL 5.7 .\" Language: English .\" -.TH "\FBMYSQLPUMP\FR" "1" "12/20/2018" "MySQL 5\&.7" "MySQL Database System" +.TH "\FBMYSQLPUMP\FR" "1" "04/12/2019" "MySQL 5\&.7" "MySQL Database System" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -668,7 +668,7 @@ \fB\-\-default\-auth=\fR\fB\fIplugin\fR\fR .sp A hint about the client\-side authentication plugin to use\&. See -Section\ \&6.3.9, \(lqPluggable Authentication\(rq\&. +Section\ \&6.2.13, \(lqPluggable Authentication\(rq\&. .RE .sp .RS 4 @@ -882,7 +882,7 @@ \fB\-\-exclude\-databases=\fR\fB\fIdb_list\fR\fR .sp Do not dump the databases in -\fIdb_list\fR, which is a comma\-separated list of one or more database names\&. Multiple instances of this option are additive\&. For more information, see +\fIdb_list\fR, which is a list of one or more comma\-separated database names\&. Multiple instances of this option are additive\&. For more information, see mysqlpump Object Selection\&. .RE .sp @@ -897,7 +897,7 @@ \fB\-\-exclude\-events=\fR\fB\fIevent_list\fR\fR .sp Do not dump the databases in -\fIevent_list\fR, which is a comma\-separated list of one or more event names\&. Multiple instances of this option are additive\&. For more information, see +\fIevent_list\fR, which is a list of one or more comma\-separated event names\&. Multiple instances of this option are additive\&. For more information, see mysqlpump Object Selection\&. .RE .sp @@ -912,7 +912,7 @@ \fB\-\-exclude\-routines=\fR\fB\fIroutine_list\fR\fR .sp Do not dump the events in -\fIroutine_list\fR, which is a comma\-separated list of one or more routine (stored procedure or function) names\&. Multiple instances of this option are additive\&. For more information, see +\fIroutine_list\fR, which is a list of one or more comma\-separated routine (stored procedure or function) names\&. Multiple instances of this option are additive\&. For more information, see mysqlpump Object Selection\&. .RE .sp @@ -927,7 +927,7 @@ \fB\-\-exclude\-tables=\fR\fB\fItable_list\fR\fR .sp Do not dump the tables in -\fItable_list\fR, which is a comma\-separated list of one or more table names\&. Multiple instances of this option are additive\&. For more information, see +\fItable_list\fR, which is a list of one or more comma\-separated table names\&. Multiple instances of this option are additive\&. For more information, see mysqlpump Object Selection\&. .RE .sp @@ -942,7 +942,7 @@ \fB\-\-exclude\-triggers=\fR\fB\fItrigger_list\fR\fR .sp Do not dump the triggers in -\fItrigger_list\fR, which is a comma\-separated list of one or more trigger names\&. Multiple instances of this option are additive\&. For more information, see +\fItrigger_list\fR, which is a list of one or more comma\-separated trigger names\&. Multiple instances of this option are additive\&. For more information, see mysqlpump Object Selection\&. .RE .sp @@ -957,7 +957,7 @@ \fB\-\-exclude\-users=\fR\fB\fIuser_list\fR\fR .sp Do not dump the user accounts in -\fIuser_list\fR, which is a comma\-separated list of one or more account names\&. Multiple instances of this option are additive\&. For more information, see +\fIuser_list\fR, which is a list of one or more comma\-separated account names\&. Multiple instances of this option are additive\&. For more information, see mysqlpump Object Selection\&. .RE .sp @@ -1006,7 +1006,7 @@ For information about the caching_sha2_password plugin, see -Section\ \&6.5.1.5, \(lqCaching SHA-2 Pluggable Authentication\(rq\&. +Section\ \&6.4.1.5, \(lqCaching SHA-2 Pluggable Authentication\(rq\&. .sp The \fB\-\-get\-server\-public\-key\fR @@ -1059,7 +1059,7 @@ \fB\-\-include\-databases=\fR\fB\fIdb_list\fR\fR .sp Dump the databases in -\fIdb_list\fR, which is a comma\-separated list of one or more database names\&. The dump includes all objects in the named databases\&. Multiple instances of this option are additive\&. For more information, see +\fIdb_list\fR, which is a list of one or more comma\-separated database names\&. The dump includes all objects in the named databases\&. Multiple instances of this option are additive\&. For more information, see mysqlpump Object Selection\&. .RE .sp @@ -1074,7 +1074,7 @@ \fB\-\-include\-events=\fR\fB\fIevent_list\fR\fR .sp Dump the events in -\fIevent_list\fR, which is a comma\-separated list of one or more event names\&. Multiple instances of this option are additive\&. For more information, see +\fIevent_list\fR, which is a list of one or more comma\-separated event names\&. Multiple instances of this option are additive\&. For more information, see mysqlpump Object Selection\&. .RE .sp @@ -1089,7 +1089,7 @@ \fB\-\-include\-routines=\fR\fB\fIroutine_list\fR\fR .sp Dump the routines in -\fIroutine_list\fR, which is a comma\-separated list of one or more routine (stored procedure or function) names\&. Multiple instances of this option are additive\&. For more information, see +\fIroutine_list\fR, which is a list of one or more comma\-separated routine (stored procedure or function) names\&. Multiple instances of this option are additive\&. For more information, see mysqlpump Object Selection\&. .RE .sp @@ -1104,7 +1104,7 @@ \fB\-\-include\-tables=\fR\fB\fItable_list\fR\fR .sp Dump the tables in -\fItable_list\fR, which is a comma\-separated list of one or more table names\&. Multiple instances of this option are additive\&. For more information, see +\fItable_list\fR, which is a list of one or more comma\-separated table names\&. Multiple instances of this option are additive\&. For more information, see mysqlpump Object Selection\&. .RE .sp @@ -1119,7 +1119,7 @@ \fB\-\-include\-triggers=\fR\fB\fItrigger_list\fR\fR .sp Dump the triggers in -\fItrigger_list\fR, which is a comma\-separated list of one or more trigger names\&. Multiple instances of this option are additive\&. For more information, see +\fItrigger_list\fR, which is a list of one or more comma\-separated trigger names\&. Multiple instances of this option are additive\&. For more information, see mysqlpump Object Selection\&. .RE .sp @@ -1134,7 +1134,7 @@ \fB\-\-include\-users=\fR\fB\fIuser_list\fR\fR .sp Dump the user accounts in -\fIuser_list\fR, which is a comma\-separated list of one or more user names\&. Multiple instances of this option are additive\&. For more information, see +\fIuser_list\fR, which is a list of one or more comma\-separated user names\&. Multiple instances of this option are additive\&. For more information, see mysqlpump Object Selection\&. .RE .sp @@ -1299,7 +1299,7 @@ \fB\-\-parallel\-schemas=[\fR\fB\fIN\fR\fR\fB:]\fR\fB\fIdb_list\fR\fR .sp Create a queue for processing the databases in -\fIdb_list\fR, which is a comma\-separated list of one or more database names\&. If +\fIdb_list\fR, which is a list of one or more comma\-separated database names\&. If \fIN\fR is given, the queue uses \fIN\fR @@ -1359,7 +1359,7 @@ option is used to specify an authentication plugin but \fBmysqlpump\fR does not find it\&. See -Section\ \&6.3.9, \(lqPluggable Authentication\(rq\&. +Section\ \&6.2.13, \(lqPluggable Authentication\(rq\&. .RE .sp .RS 4 @@ -1523,8 +1523,8 @@ and caching_sha2_password plugins, see -Section\ \&6.5.1.4, \(lqSHA-256 Pluggable Authentication\(rq, and -Section\ \&6.5.1.5, \(lqCaching SHA-2 Pluggable Authentication\(rq\&. +Section\ \&6.4.1.4, \(lqSHA-256 Pluggable Authentication\(rq, and +Section\ \&6.4.1.5, \(lqCaching SHA-2 Pluggable Authentication\(rq\&. .sp The \fB\-\-server\-public\-key\-path\fR @@ -1745,7 +1745,7 @@ and SQL SECURITY values\&. See -Section\ \&23.6, \(lqAccess Control for Stored Programs and Views\(rq\&. +Section\ \&23.6, \(lqStored Object Access Control\(rq\&. .RE .sp .RS 4 @@ -1790,7 +1790,7 @@ Options that begin with \fB\-\-ssl\fR specify whether to connect to the server using SSL and indicate where to find SSL keys and certificates\&. See -Section\ \&6.4.2, \(lqCommand Options for Encrypted Connections\(rq\&. +Section\ \&6.3.2, \(lqCommand Options for Encrypted Connections\(rq\&. .RE .sp .RS 4 @@ -1803,8 +1803,8 @@ .\} \fB\-\-tls\-version=\fR\fB\fIprotocol_list\fR\fR .sp -The protocols permitted by the client for encrypted connections\&. The value is a comma\-separated list containing one or more protocol names\&. The protocols that can be named for this option depend on the SSL library used to compile MySQL\&. For details, see -Section\ \&6.4.6, \(lqEncrypted Connection Protocols and Ciphers\(rq\&. +The protocols the client permits for encrypted connections\&. The value is a list of one or more comma\-separated protocol names\&. The protocols that can be named for this option depend on the SSL library used to compile MySQL\&. For details, see +Section\ \&6.3.6, \(lqEncrypted Connection Protocols and Ciphers\(rq\&. .sp This option was added in MySQL 5\&.7\&.10\&. .RE @@ -2024,7 +2024,7 @@ .PP Any inclusion or exclusion option may be given multiple times\&. The effect is additive\&. Order of these options does not matter\&. .PP -The value of each inclusion and exclusion option is a comma\-separated list of names of the appropriate object type\&. For example: +The value of each inclusion and exclusion option is a list of comma\-separated names of the appropriate object type\&. For example: .sp .if n \{\ .RS 4 @@ -2076,7 +2076,7 @@ and u1@% are equivalent\&. This is the same equivalence that applies in MySQL generally (see -Section\ \&6.2.3, \(lqSpecifying Account Names\(rq)\&. +Section\ \&6.2.4, \(lqSpecifying Account Names\(rq)\&. .PP Inclusion and exclusion options interact as follows: .sp @@ -2221,7 +2221,7 @@ \fIdb_list\fR and optionally specifies how many threads the queue uses\&. \fIdb_list\fR -is a comma\-separated list of database names\&. If the option argument begins with +is a list of comma\-separated database names\&. If the option argument begins with \fIN\fR:, the queue uses \fIN\fR threads\&. Otherwise, the @@ -2402,7 +2402,7 @@ .SH "COPYRIGHT" .br .PP -Copyright \(co 1997, 2018, Oracle and/or its affiliates. All rights reserved. +Copyright \(co 1997, 2019, Oracle and/or its affiliates. All rights reserved. .PP This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. .PP diff -Nru mysql-5.7-5.7.25/man/mysql_secure_installation.1 mysql-5.7-5.7.26/man/mysql_secure_installation.1 --- mysql-5.7-5.7.25/man/mysql_secure_installation.1 2018-12-21 10:52:19.000000000 +0000 +++ mysql-5.7-5.7.26/man/mysql_secure_installation.1 2019-04-13 13:46:47.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: \fBmysql_secure_installation\fR .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/20/2018 +.\" Date: 04/12/2019 .\" Manual: MySQL Database System .\" Source: MySQL 5.7 .\" Language: English .\" -.TH "\FBMYSQL_SECURE_INSTALLATION\FR" "1" "12/20/2018" "MySQL 5\&.7" "MySQL Database System" +.TH "\FBMYSQL_SECURE_INSTALLATION\FR" "1" "04/12/2019" "MySQL 5\&.7" "MySQL Database System" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -350,7 +350,7 @@ Options that begin with \fB\-\-ssl\fR specify whether to connect to the server using SSL and indicate where to find SSL keys and certificates\&. See -Section\ \&6.4.2, \(lqCommand Options for Encrypted Connections\(rq\&. +Section\ \&6.3.2, \(lqCommand Options for Encrypted Connections\(rq\&. .RE .sp .RS 4 @@ -363,8 +363,8 @@ .\} \fB\-\-tls\-version=\fR\fB\fIprotocol_list\fR\fR .sp -The protocols permitted by the client for encrypted connections\&. The value is a comma\-separated list containing one or more protocol names\&. The protocols that can be named for this option depend on the SSL library used to compile MySQL\&. For details, see -Section\ \&6.4.6, \(lqEncrypted Connection Protocols and Ciphers\(rq\&. +The protocols the client permits for encrypted connections\&. The value is a list of one or more comma\-separated protocol names\&. The protocols that can be named for this option depend on the SSL library used to compile MySQL\&. For details, see +Section\ \&6.3.6, \(lqEncrypted Connection Protocols and Ciphers\(rq\&. .sp This option was added in MySQL 5\&.7\&.10\&. .RE @@ -398,7 +398,7 @@ .SH "COPYRIGHT" .br .PP -Copyright \(co 1997, 2018, Oracle and/or its affiliates. All rights reserved. +Copyright \(co 1997, 2019, Oracle and/or its affiliates. All rights reserved. .PP This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. .PP diff -Nru mysql-5.7-5.7.25/man/mysql.server.1 mysql-5.7-5.7.26/man/mysql.server.1 --- mysql-5.7-5.7.25/man/mysql.server.1 2018-12-21 10:52:19.000000000 +0000 +++ mysql-5.7-5.7.26/man/mysql.server.1 2019-04-13 13:46:47.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: \fBmysql.server\fR .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/20/2018 +.\" Date: 04/12/2019 .\" Manual: MySQL Database System .\" Source: MySQL 5.7 .\" Language: English .\" -.TH "\FBMYSQL\&.SERVER\FR" "1" "12/20/2018" "MySQL 5\&.7" "MySQL Database System" +.TH "\FBMYSQL\&.SERVER\FR" "1" "04/12/2019" "MySQL 5\&.7" "MySQL Database System" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -419,7 +419,7 @@ .SH "COPYRIGHT" .br .PP -Copyright \(co 1997, 2018, Oracle and/or its affiliates. All rights reserved. +Copyright \(co 1997, 2019, Oracle and/or its affiliates. All rights reserved. .PP This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. .PP diff -Nru mysql-5.7-5.7.25/man/mysqlshow.1 mysql-5.7-5.7.26/man/mysqlshow.1 --- mysql-5.7-5.7.25/man/mysqlshow.1 2018-12-21 10:52:19.000000000 +0000 +++ mysql-5.7-5.7.26/man/mysqlshow.1 2019-04-13 13:46:47.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: \fBmysqlshow\fR .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/20/2018 +.\" Date: 04/12/2019 .\" Manual: MySQL Database System .\" Source: MySQL 5.7 .\" Language: English .\" -.TH "\FBMYSQLSHOW\FR" "1" "12/20/2018" "MySQL 5\&.7" "MySQL Database System" +.TH "\FBMYSQLSHOW\FR" "1" "04/12/2019" "MySQL 5\&.7" "MySQL Database System" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -262,7 +262,7 @@ \fB\-\-default\-auth=\fR\fB\fIplugin\fR\fR .sp A hint about the client\-side authentication plugin to use\&. See -Section\ \&6.3.9, \(lqPluggable Authentication\(rq\&. +Section\ \&6.2.13, \(lqPluggable Authentication\(rq\&. .RE .sp .RS 4 @@ -349,7 +349,7 @@ Enable the mysql_clear_password cleartext authentication plugin\&. (See -Section\ \&6.5.1.6, \(lqClient-Side Cleartext Pluggable Authentication\(rq\&.) +Section\ \&6.4.1.6, \(lqClient-Side Cleartext Pluggable Authentication\(rq\&.) .sp This option was added in MySQL 5\&.7\&.10\&. .RE @@ -376,7 +376,7 @@ For information about the caching_sha2_password plugin, see -Section\ \&6.5.1.5, \(lqCaching SHA-2 Pluggable Authentication\(rq\&. +Section\ \&6.4.1.5, \(lqCaching SHA-2 Pluggable Authentication\(rq\&. .sp The \fB\-\-get\-server\-public\-key\fR @@ -518,7 +518,7 @@ option is used to specify an authentication plugin but \fBmysqlshow\fR does not find it\&. See -Section\ \&6.3.9, \(lqPluggable Authentication\(rq\&. +Section\ \&6.2.13, \(lqPluggable Authentication\(rq\&. .RE .sp .RS 4 @@ -592,7 +592,7 @@ .ps -1 .br Passwords that use the pre\-4\&.1 hashing method are less secure than passwords that use the native password hashing method and should be avoided\&. Pre\-4\&.1 passwords are deprecated and support for them was removed in MySQL 5\&.7\&.5\&. For account upgrade instructions, see -Section\ \&6.5.1.3, \(lqMigrating Away from Pre-4.1 Password Hashing and the mysql_old_password Plugin\(rq\&. +Section\ \&6.4.1.3, \(lqMigrating Away from Pre-4.1 Password Hashing and the mysql_old_password Plugin\(rq\&. .sp .5v .RE .RE @@ -626,8 +626,8 @@ and caching_sha2_password plugins, see -Section\ \&6.5.1.4, \(lqSHA-256 Pluggable Authentication\(rq, and -Section\ \&6.5.1.5, \(lqCaching SHA-2 Pluggable Authentication\(rq\&. +Section\ \&6.4.1.4, \(lqSHA-256 Pluggable Authentication\(rq, and +Section\ \&6.4.1.5, \(lqCaching SHA-2 Pluggable Authentication\(rq\&. .sp The \fB\-\-server\-public\-key\-path\fR @@ -698,7 +698,7 @@ Options that begin with \fB\-\-ssl\fR specify whether to connect to the server using SSL and indicate where to find SSL keys and certificates\&. See -Section\ \&6.4.2, \(lqCommand Options for Encrypted Connections\(rq\&. +Section\ \&6.3.2, \(lqCommand Options for Encrypted Connections\(rq\&. .RE .sp .RS 4 @@ -725,8 +725,8 @@ .\} \fB\-\-tls\-version=\fR\fB\fIprotocol_list\fR\fR .sp -The protocols permitted by the client for encrypted connections\&. The value is a comma\-separated list containing one or more protocol names\&. The protocols that can be named for this option depend on the SSL library used to compile MySQL\&. For details, see -Section\ \&6.4.6, \(lqEncrypted Connection Protocols and Ciphers\(rq\&. +The protocols the client permits for encrypted connections\&. The value is a list of one or more comma\-separated protocol names\&. The protocols that can be named for this option depend on the SSL library used to compile MySQL\&. For details, see +Section\ \&6.3.6, \(lqEncrypted Connection Protocols and Ciphers\(rq\&. .sp This option was added in MySQL 5\&.7\&.10\&. .RE @@ -775,7 +775,7 @@ .SH "COPYRIGHT" .br .PP -Copyright \(co 1997, 2018, Oracle and/or its affiliates. All rights reserved. +Copyright \(co 1997, 2019, Oracle and/or its affiliates. All rights reserved. .PP This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. .PP diff -Nru mysql-5.7-5.7.25/man/mysqlslap.1 mysql-5.7-5.7.26/man/mysqlslap.1 --- mysql-5.7-5.7.25/man/mysqlslap.1 2018-12-21 10:52:19.000000000 +0000 +++ mysql-5.7-5.7.26/man/mysqlslap.1 2019-04-13 13:46:47.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: \fBmysqlslap\fR .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/20/2018 +.\" Date: 04/12/2019 .\" Manual: MySQL Database System .\" Source: MySQL 5.7 .\" Language: English .\" -.TH "\FBMYSQLSLAP\FR" "1" "12/20/2018" "MySQL 5\&.7" "MySQL Database System" +.TH "\FBMYSQLSLAP\FR" "1" "04/12/2019" "MySQL 5\&.7" "MySQL Database System" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -468,7 +468,7 @@ \fB\-\-default\-auth=\fR\fB\fIplugin\fR\fR .sp A hint about the client\-side authentication plugin to use\&. See -Section\ \&6.3.9, \(lqPluggable Authentication\(rq\&. +Section\ \&6.2.13, \(lqPluggable Authentication\(rq\&. .RE .sp .RS 4 @@ -584,7 +584,7 @@ Enable the mysql_clear_password cleartext authentication plugin\&. (See -Section\ \&6.5.1.6, \(lqClient-Side Cleartext Pluggable Authentication\(rq\&.) +Section\ \&6.4.1.6, \(lqClient-Side Cleartext Pluggable Authentication\(rq\&.) .RE .sp .RS 4 @@ -623,7 +623,7 @@ For information about the caching_sha2_password plugin, see -Section\ \&6.5.1.5, \(lqCaching SHA-2 Pluggable Authentication\(rq\&. +Section\ \&6.4.1.5, \(lqCaching SHA-2 Pluggable Authentication\(rq\&. .sp The \fB\-\-get\-server\-public\-key\fR @@ -859,7 +859,7 @@ option is used to specify an authentication plugin but \fBmysqlslap\fR does not find it\&. See -Section\ \&6.3.9, \(lqPluggable Authentication\(rq\&. +Section\ \&6.2.13, \(lqPluggable Authentication\(rq\&. .RE .sp .RS 4 @@ -1005,7 +1005,7 @@ .ps -1 .br Passwords that use the pre\-4\&.1 hashing method are less secure than passwords that use the native password hashing method and should be avoided\&. Pre\-4\&.1 passwords are deprecated and support for them was removed in MySQL 5\&.7\&.5\&. For account upgrade instructions, see -Section\ \&6.5.1.3, \(lqMigrating Away from Pre-4.1 Password Hashing and the mysql_old_password Plugin\(rq\&. +Section\ \&6.4.1.3, \(lqMigrating Away from Pre-4.1 Password Hashing and the mysql_old_password Plugin\(rq\&. .sp .5v .RE .RE @@ -1039,8 +1039,8 @@ and caching_sha2_password plugins, see -Section\ \&6.5.1.4, \(lqSHA-256 Pluggable Authentication\(rq, and -Section\ \&6.5.1.5, \(lqCaching SHA-2 Pluggable Authentication\(rq\&. +Section\ \&6.4.1.4, \(lqSHA-256 Pluggable Authentication\(rq, and +Section\ \&6.4.1.5, \(lqCaching SHA-2 Pluggable Authentication\(rq\&. .sp The \fB\-\-server\-public\-key\-path\fR @@ -1115,7 +1115,7 @@ Options that begin with \fB\-\-ssl\fR specify whether to connect to the server using SSL and indicate where to find SSL keys and certificates\&. See -Section\ \&6.4.2, \(lqCommand Options for Encrypted Connections\(rq\&. +Section\ \&6.3.2, \(lqCommand Options for Encrypted Connections\(rq\&. .RE .sp .RS 4 @@ -1128,8 +1128,8 @@ .\} \fB\-\-tls\-version=\fR\fB\fIprotocol_list\fR\fR .sp -The protocols permitted by the client for encrypted connections\&. The value is a comma\-separated list containing one or more protocol names\&. The protocols that can be named for this option depend on the SSL library used to compile MySQL\&. For details, see -Section\ \&6.4.6, \(lqEncrypted Connection Protocols and Ciphers\(rq\&. +The protocols the client permits for encrypted connections\&. The value is a list of one or more comma\-separated protocol names\&. The protocols that can be named for this option depend on the SSL library used to compile MySQL\&. For details, see +Section\ \&6.3.6, \(lqEncrypted Connection Protocols and Ciphers\(rq\&. .sp This option was added in MySQL 5\&.7\&.10\&. .RE @@ -1178,7 +1178,7 @@ .SH "COPYRIGHT" .br .PP -Copyright \(co 1997, 2018, Oracle and/or its affiliates. All rights reserved. +Copyright \(co 1997, 2019, Oracle and/or its affiliates. All rights reserved. .PP This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. .PP diff -Nru mysql-5.7-5.7.25/man/mysql_ssl_rsa_setup.1 mysql-5.7-5.7.26/man/mysql_ssl_rsa_setup.1 --- mysql-5.7-5.7.25/man/mysql_ssl_rsa_setup.1 2018-12-21 10:52:19.000000000 +0000 +++ mysql-5.7-5.7.26/man/mysql_ssl_rsa_setup.1 2019-04-13 13:46:47.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: \fBmysql_ssl_rsa_setup\fR .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/20/2018 +.\" Date: 04/12/2019 .\" Manual: MySQL Database System .\" Source: MySQL 5.7 .\" Language: English .\" -.TH "\FBMYSQL_SSL_RSA_SETUP\FR" "1" "12/20/2018" "MySQL 5\&.7" "MySQL Database System" +.TH "\FBMYSQL_SSL_RSA_SETUP\FR" "1" "04/12/2019" "MySQL 5\&.7" "MySQL Database System" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -56,7 +56,7 @@ command, so its use is contingent on having OpenSSL installed on your machine\&. .PP Another way to generate SSL and RSA files, for MySQL distributions compiled using OpenSSL, is to have the server generate them automatically\&. See -Section\ \&6.4.3.1, \(lqCreating SSL and RSA Certificates and Keys using MySQL\(rq\&. +Section\ \&6.3.3.1, \(lqCreating SSL and RSA Certificates and Keys using MySQL\(rq\&. .sp .5v .RE .if n \{\ @@ -189,7 +189,7 @@ .\} .sp These files enable secure client connections using SSL; see -Section\ \&6.4.1, \(lqConfiguring MySQL to Use Encrypted Connections\(rq\&. +Section\ \&6.3.1, \(lqConfiguring MySQL to Use Encrypted Connections\(rq\&. .RE .sp .RS 4 @@ -230,12 +230,12 @@ to create them\&. These files enable secure password exchange using RSA over unencrypted connections for accounts authenticated by the sha256_password plugin; see -Section\ \&6.5.1.4, \(lqSHA-256 Pluggable Authentication\(rq\&. +Section\ \&6.4.1.4, \(lqSHA-256 Pluggable Authentication\(rq\&. .RE .PP For information about the characteristics of files created by \fBmysql_ssl_rsa_setup\fR, see -Section\ \&6.4.3.1, \(lqCreating SSL and RSA Certificates and Keys using MySQL\(rq\&. +Section\ \&6.3.3.1, \(lqCreating SSL and RSA Certificates and Keys using MySQL\(rq\&. .PP At startup, the MySQL server automatically uses the SSL files created by \fBmysql_ssl_rsa_setup\fR @@ -458,7 +458,7 @@ .SH "COPYRIGHT" .br .PP -Copyright \(co 1997, 2018, Oracle and/or its affiliates. All rights reserved. +Copyright \(co 1997, 2019, Oracle and/or its affiliates. All rights reserved. .PP This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. .PP diff -Nru mysql-5.7-5.7.25/man/mysql_tzinfo_to_sql.1 mysql-5.7-5.7.26/man/mysql_tzinfo_to_sql.1 --- mysql-5.7-5.7.25/man/mysql_tzinfo_to_sql.1 2018-12-21 10:52:19.000000000 +0000 +++ mysql-5.7-5.7.26/man/mysql_tzinfo_to_sql.1 2019-04-13 13:46:47.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: \fBmysql_tzinfo_to_sql\fR .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/20/2018 +.\" Date: 04/12/2019 .\" Manual: MySQL Database System .\" Source: MySQL 5.7 .\" Language: English .\" -.TH "\FBMYSQL_TZINFO_TO_SQL\FR" "1" "12/20/2018" "MySQL 5\&.7" "MySQL Database System" +.TH "\FBMYSQL_TZINFO_TO_SQL\FR" "1" "04/12/2019" "MySQL 5\&.7" "MySQL Database System" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -120,7 +120,7 @@ .SH "COPYRIGHT" .br .PP -Copyright \(co 1997, 2018, Oracle and/or its affiliates. All rights reserved. +Copyright \(co 1997, 2019, Oracle and/or its affiliates. All rights reserved. .PP This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. .PP diff -Nru mysql-5.7-5.7.25/man/mysql_upgrade.1 mysql-5.7-5.7.26/man/mysql_upgrade.1 --- mysql-5.7-5.7.25/man/mysql_upgrade.1 2018-12-21 10:52:19.000000000 +0000 +++ mysql-5.7-5.7.26/man/mysql_upgrade.1 2019-04-13 13:46:47.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: \fBmysql_upgrade\fR .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/20/2018 +.\" Date: 04/12/2019 .\" Manual: MySQL Database System .\" Source: MySQL 5.7 .\" Language: English .\" -.TH "\FBMYSQL_UPGRADE\FR" "1" "12/20/2018" "MySQL 5\&.7" "MySQL Database System" +.TH "\FBMYSQL_UPGRADE\FR" "1" "04/12/2019" "MySQL 5\&.7" "MySQL Database System" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -34,34 +34,54 @@ \fBmysql_upgrade [\fR\fB\fIoptions\fR\fR\fB]\fR .SH "DESCRIPTION" .PP -\fBmysql_upgrade\fR -examines all tables in all databases for incompatibilities with the current version of MySQL Server\&. -\fBmysql_upgrade\fR -also upgrades the system tables so that you can take advantage of new privileges or capabilities that might have been added\&. +Each time you upgrade MySQL, you should execute +\fBmysql_upgrade\fR, which looks for incompatibilities with the upgraded MySQL server: +.sp +.RS 4 +.ie n \{\ +\h'-04'\(bu\h'+03'\c +.\} +.el \{\ +.sp -1 +.IP \(bu 2.3 +.\} +It upgrades the system tables in the +mysql +schema so that you can take advantage of new privileges or capabilities that might have been added\&. +.RE +.sp +.RS 4 +.ie n \{\ +\h'-04'\(bu\h'+03'\c +.\} +.el \{\ +.sp -1 +.IP \(bu 2.3 +.\} +It upgrades the Performance Schema and +sys +schema\&. +.RE +.sp +.RS 4 +.ie n \{\ +\h'-04'\(bu\h'+03'\c +.\} +.el \{\ +.sp -1 +.IP \(bu 2.3 +.\} +It examines user schemas\&. +.RE .PP If \fBmysql_upgrade\fR finds that a table has a possible incompatibility, it performs a table check and, if problems are found, attempts a table repair\&. If the table cannot be repaired, see -Section\ \&2.11.3, \(lqRebuilding or Repairing Tables or Indexes\(rq +Section\ \&2.11.12, \(lqRebuilding or Repairing Tables or Indexes\(rq for manual table repair strategies\&. .PP -You should execute -\fBmysql_upgrade\fR -each time you upgrade MySQL\&. -.PP -As of MySQL 5\&.7\&.5, -\fBmysql_upgrade\fR -communicates directly with the MySQL server, sending it the SQL statements required to perform an upgrade\&. Before 5\&.7\&.5, -\fBmysql_upgrade\fR -invokes the -\fBmysql\fR -and -\fBmysqlcheck\fR -client programs to perform the required operations\&. For the older implementation, if you install MySQL from RPM packages on Linux, you must install the server and client RPMs\&. \fBmysql_upgrade\fR -is included in the server RPM but requires the client RPM because the latter includes -\fBmysqlcheck\fR\&. (See -Section\ \&2.5.5, \(lqInstalling MySQL on Linux Using RPM Packages from Oracle\(rq\&.) +communicates directly with the MySQL server, sending it the SQL statements required to perform an upgrade\&. .if n \{\ .sp .\} @@ -100,7 +120,7 @@ plugin: Start the server with an \fB\-\-early\-plugin\-load\fR option that names the plugin library file\&. For additional information, see -Section\ \&6.5.4, \(lqThe MySQL Keyring\(rq\&. +Section\ \&6.4.4, \(lqThe MySQL Keyring\(rq\&. .sp .5v .RE .if n \{\ @@ -120,7 +140,7 @@ mysql\&.user table requires a special sequence of steps to perform an upgrade using \fBmysql_upgrade\fR\&. For details, see -Section\ \&2.11.1.3, \(lqChanges in MySQL 5.7\(rq\&. +Section\ \&2.11.3, \(lqChanges in MySQL 5.7\(rq\&. .sp .5v .RE .if n \{\ @@ -159,14 +179,42 @@ performing an upgrade\&. See Section\ \&7.2, \(lqDatabase Backup Methods\(rq\&. .PP -Some upgrade incompatibilities may require special handling before you upgrade your MySQL installation and run +Some upgrade incompatibilities may require special handling +\fIbefore\fR +upgrading your MySQL installation and running \fBmysql_upgrade\fR\&. See -Section\ \&2.11.1, \(lqUpgrading MySQL\(rq, for instructions on determining whether any such incompatibilities apply to your installation and how to handle them\&. +Section\ \&2.11, \(lqUpgrading MySQL\(rq, for instructions on determining whether any such incompatibilities apply to your installation and how to handle them\&. .sp .5v .RE .PP -To use -\fBmysql_upgrade\fR, make sure that the server is running\&. Then invoke it like this to check and repair tables and to upgrade the system tables: +Use +\fBmysql_upgrade\fR +like this: +.sp +.RS 4 +.ie n \{\ +\h'-04' 1.\h'+01'\c +.\} +.el \{\ +.sp -1 +.IP " 1." 4.2 +.\} +Ensure that the server is running\&. +.RE +.sp +.RS 4 +.ie n \{\ +\h'-04' 2.\h'+01'\c +.\} +.el \{\ +.sp -1 +.IP " 2." 4.2 +.\} +Invoke +\fBmysql_upgrade\fR +to upgrade the system tables in the +mysql +schema and check and repair tables in other schemas: .sp .if n \{\ .RS 4 @@ -177,13 +225,22 @@ .if n \{\ .RE .\} +.RE +.sp +.RS 4 +.ie n \{\ +\h'-04' 3.\h'+01'\c +.\} +.el \{\ +.sp -1 +.IP " 3." 4.2 +.\} +Stop the server and restart it so that any system table changes take effect\&. +.RE .PP -After running -\fBmysql_upgrade\fR, stop the server and restart it so that any changes made to the system tables take effect\&. -.PP -If you have multiple MySQL server instances running, invoke +If you have multiple MySQL server instances to upgrade, invoke \fBmysql_upgrade\fR -with connection parameters appropriate for connecting to the desired server\&. For example, with servers running on the local host on parts 3306 through 3308, upgrade each of them by connecting to the appropriate port: +with connection parameters appropriate for connecting to each of the desired servers\&. For example, with servers running on the local host on parts 3306 through 3308, upgrade each of them by connecting to the appropriate port: .sp .if n \{\ .RS 4 @@ -200,6 +257,63 @@ For local host connections on Unix, the \fB\-\-protocol=tcp\fR option forces a connection using TCP/IP rather than the Unix socket file\&. +.PP +By default, +\fBmysql_upgrade\fR +runs as the MySQL +root +user\&. If the +root +password is expired when you run +\fBmysql_upgrade\fR, you will see a message that your password is expired and that +\fBmysql_upgrade\fR +failed as a result\&. To correct this, reset the +root +password to unexpire it and run +\fBmysql_upgrade\fR +again\&. First, connect to the server as +root: +.sp +.if n \{\ +.RS 4 +.\} +.nf +shell> \fBmysql \-u root \-p\fR +Enter password: \fB****\fR <\- enter root password here +.fi +.if n \{\ +.RE +.\} +.PP +Reset the password using +ALTER USER: +.sp +.if n \{\ +.RS 4 +.\} +.nf +mysql> \fBALTER USER USER() IDENTIFIED BY \*(Aq\fR\fB\fIroot\-password\fR\fR\fB\*(Aq;\fR +.fi +.if n \{\ +.RE +.\} +.PP +Then exit +\fBmysql\fR +and run +\fBmysql_upgrade\fR +again: +.sp +.if n \{\ +.RS 4 +.\} +.nf +shell> \fBmysql_upgrade [\fR\fB\fIoptions\fR\fR\fB]\fR +.fi +.if n \{\ +.RE +.\} +.sp .if n \{\ .sp .\} @@ -241,22 +355,24 @@ .sp .5v .RE .PP +Unless invoked with the +\fB\-\-upgrade\-system\-tables\fR +option, \fBmysql_upgrade\fR -processes all tables in all databases, which might take a long time to complete\&. Each table is locked and therefore unavailable to other sessions while it is being processed\&. Check and repair operations can be time\-consuming, particularly for large tables\&. -.PP -For details about what table\-checking operations entail, see the description of the +processes all tables in all user schemas as necessary\&. Table checking might take a long time to complete\&. Each table is locked and therefore unavailable to other sessions while it is being processed\&. Check and repair operations can be time\-consuming, particularly for large tables\&. Table checking uses the FOR UPGRADE option of the CHECK TABLE -statement (see -Section\ \&13.7.2.2, \(lqCHECK TABLE Syntax\(rq)\&. +statement\&. For details about what this option entails, see +Section\ \&13.7.2.2, \(lqCHECK TABLE Syntax\(rq\&. .PP -All checked and repaired tables are marked with the current MySQL version number\&. This ensures that next time you run \fBmysql_upgrade\fR -with the same version of the server, it can tell whether there is any need to check or repair the table again\&. +marks all checked and repaired tables with the current MySQL version number\&. This ensures that the next time you run +\fBmysql_upgrade\fR +with the same version of the server, it can be determined whether there is any need to check or repair a given table again\&. .PP \fBmysql_upgrade\fR -also saves the MySQL version number in a file named +saves the MySQL version number in a file named mysql_upgrade_info in the data directory\&. This is used to quickly check whether all tables have been checked for this release so that table\-checking can be skipped\&. To ignore this file and perform the check regardless, use the \fB\-\-force\fR @@ -265,8 +381,8 @@ As of MySQL 5\&.7\&.2, \fBmysql_upgrade\fR checks -user -table rows and, for any row with an empty +mysql\&.user +system table rows and, for any row with an empty plugin column, sets that column to \*(Aqmysql_native_password\*(Aq @@ -283,11 +399,12 @@ values to \*(Aqmysql_native_password\*(Aq if the credentials use a hash format compatible with that plugin\&. Rows with a pre\-4\&.1 password hash must be upgraded manually\&. For account upgrade instructions, see -Section\ \&6.5.1.3, \(lqMigrating Away from Pre-4.1 Password Hashing and the mysql_old_password Plugin\(rq\&. +Section\ \&6.4.1.3, \(lqMigrating Away from Pre-4.1 Password Hashing and the mysql_old_password Plugin\(rq\&. .PP \fBmysql_upgrade\fR -does not upgrade the contents of the help tables\&. For upgrade instructions, see -Section\ \&5.1.14, \(lqServer-Side Help\(rq\&. +does not upgrade the contents of the time zone tables or help tables\&. For upgrade instructions, see +Section\ \&5.1.12, \(lqMySQL Server Time Zone Support\(rq, and +Section\ \&5.1.13, \(lqServer-Side Help Support\(rq\&. .PP As of MySQL 5\&.7\&.7, unless invoked with the \fB\-\-skip\-sys\-schema\fR @@ -295,9 +412,7 @@ \fBmysql_upgrade\fR installs the sys -schema if it is not installed, and upgrades it to the current version otherwise\&. -\fBmysql_upgrade\fR -returns an error if a +schema if it is not installed, and upgrades it to the current version otherwise\&. An error occurs if a sys schema exists but has no version @@ -307,7 +422,7 @@ .RS 4 .\} .nf -Error occurred: A sys schema exists with no sys\&.version view\&. If +A sys schema exists with no sys\&.version view\&. If you have a user created sys schema, this must be renamed for the upgrade to succeed\&. .fi @@ -331,75 +446,6 @@ ALTER TABLE \&.\&.\&. UPGRADE PARTITIONING SQL statement\&. .PP -By default, -\fBmysql_upgrade\fR -runs as the MySQL -root -user\&. If the -root -password is expired when you run -\fBmysql_upgrade\fR, you will see a message that your password is expired and that -\fBmysql_upgrade\fR -failed as a result\&. To correct this, reset the -root -password to unexpire it and run -\fBmysql_upgrade\fR -again\&. First, connect to the server as -root: -.sp -.if n \{\ -.RS 4 -.\} -.nf -shell> \fBmysql \-u root \-p\fR -Enter password: \fB****\fR <\- enter root password here -.fi -.if n \{\ -.RE -.\} -.PP -Reset the password using the appropriate SQL statement\&. As of MySQL 5\&.7\&.6, use -ALTER USER: -.sp -.if n \{\ -.RS 4 -.\} -.nf -mysql> \fBALTER USER USER() IDENTIFIED BY \*(Aq\fR\fB\fIroot\-password\fR\fR\fB\*(Aq;\fR -.fi -.if n \{\ -.RE -.\} -.PP -Before 5\&.7\&.6, use -SET PASSWORD: -.sp -.if n \{\ -.RS 4 -.\} -.nf -mysql> \fBSET PASSWORD = PASSWORD(\*(Aqroot\-password\*(Aq);\fR -.fi -.if n \{\ -.RE -.\} -.PP -Then exit -\fBmysql\fR -and run -\fBmysql_upgrade\fR -again: -.sp -.if n \{\ -.RS 4 -.\} -.nf -shell> \fBmysql_upgrade [\fR\fB\fIoptions\fR\fR\fB]\fR -.fi -.if n \{\ -.RE -.\} -.PP \fBmysql_upgrade\fR supports the following options, which can be specified on the command line or in the [mysql_upgrade] @@ -544,7 +590,7 @@ \fB\-\-default\-auth=\fR\fB\fIplugin\fR\fR .sp A hint about the client\-side authentication plugin to use\&. See -Section\ \&6.3.9, \(lqPluggable Authentication\(rq\&. +Section\ \&6.2.13, \(lqPluggable Authentication\(rq\&. .RE .sp .RS 4 @@ -707,7 +753,7 @@ .\} \fB\-\-net\-buffer\-length=\fR\fB\fIvalue\fR\fR .sp -The initial size of the buffer for client/server communication\&. The default value is 1MB − 1KB\&. The minimum and maximum values are 4KB and 16MB\&. This option was added in MySQL 5\&.7\&.5\&. +The initial size of the buffer for client/server communication\&. The default value is 1MB − 1KB\&. The minimum and maximum values are 4KB and 16MB\&. .RE .sp .RS 4 @@ -794,7 +840,7 @@ option is used to specify an authentication plugin but \fBmysql_upgrade\fR does not find it\&. See -Section\ \&6.3.9, \(lqPluggable Authentication\(rq\&. +Section\ \&6.2.13, \(lqPluggable Authentication\(rq\&. .RE .sp .RS 4 @@ -866,6 +912,7 @@ .\} \fB\-\-skip\-sys\-schema\fR .sp +By default, \fBmysql_upgrade\fR installs the sys @@ -902,7 +949,7 @@ Options that begin with \fB\-\-ssl\fR specify whether to connect to the server using SSL and indicate where to find SSL keys and certificates\&. See -Section\ \&6.4.2, \(lqCommand Options for Encrypted Connections\(rq\&. +Section\ \&6.3.2, \(lqCommand Options for Encrypted Connections\(rq\&. .RE .sp .RS 4 @@ -915,8 +962,8 @@ .\} \fB\-\-tls\-version=\fR\fB\fIprotocol_list\fR\fR .sp -The protocols permitted by the client for encrypted connections\&. The value is a comma\-separated list containing one or more protocol names\&. The protocols that can be named for this option depend on the SSL library used to compile MySQL\&. For details, see -Section\ \&6.4.6, \(lqEncrypted Connection Protocols and Ciphers\(rq\&. +The protocols the client permits for encrypted connections\&. The value is a list of one or more comma\-separated protocol names\&. The protocols that can be named for this option depend on the SSL library used to compile MySQL\&. For details, see +Section\ \&6.3.6, \(lqEncrypted Connection Protocols and Ciphers\(rq\&. .sp This option was added in MySQL 5\&.7\&.10\&. .RE @@ -946,7 +993,9 @@ \fB\-\-upgrade\-system\-tables\fR, \fB\-s\fR .sp -Upgrade only the system tables, do not upgrade data\&. +Upgrade only the system tables in the +mysql +schema, do not upgrade user schemas\&. .RE .sp .RS 4 @@ -1020,7 +1069,7 @@ .SH "COPYRIGHT" .br .PP -Copyright \(co 1997, 2018, Oracle and/or its affiliates. All rights reserved. +Copyright \(co 1997, 2019, Oracle and/or its affiliates. All rights reserved. .PP This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. .PP diff -Nru mysql-5.7-5.7.25/man/perror.1 mysql-5.7-5.7.26/man/perror.1 --- mysql-5.7-5.7.25/man/perror.1 2018-12-21 10:52:19.000000000 +0000 +++ mysql-5.7-5.7.26/man/perror.1 2019-04-13 13:46:47.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: \fBperror\fR .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/20/2018 +.\" Date: 04/12/2019 .\" Manual: MySQL Database System .\" Source: MySQL 5.7 .\" Language: English .\" -.TH "\FBPERROR\FR" "1" "12/20/2018" "MySQL 5\&.7" "MySQL Database System" +.TH "\FBPERROR\FR" "1" "04/12/2019" "MySQL 5\&.7" "MySQL Database System" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -182,7 +182,7 @@ .SH "COPYRIGHT" .br .PP -Copyright \(co 1997, 2018, Oracle and/or its affiliates. All rights reserved. +Copyright \(co 1997, 2019, Oracle and/or its affiliates. All rights reserved. .PP This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. .PP diff -Nru mysql-5.7-5.7.25/man/replace.1 mysql-5.7-5.7.26/man/replace.1 --- mysql-5.7-5.7.25/man/replace.1 2018-12-21 10:52:19.000000000 +0000 +++ mysql-5.7-5.7.26/man/replace.1 2019-04-13 13:46:47.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: \fBreplace\fR .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/20/2018 +.\" Date: 04/12/2019 .\" Manual: MySQL Database System .\" Source: MySQL 5.7 .\" Language: English .\" -.TH "\FBREPLACE\FR" "1" "12/20/2018" "MySQL 5\&.7" "MySQL Database System" +.TH "\FBREPLACE\FR" "1" "04/12/2019" "MySQL 5\&.7" "MySQL Database System" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -179,7 +179,7 @@ .SH "COPYRIGHT" .br .PP -Copyright \(co 1997, 2018, Oracle and/or its affiliates. All rights reserved. +Copyright \(co 1997, 2019, Oracle and/or its affiliates. All rights reserved. .PP This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. .PP diff -Nru mysql-5.7-5.7.25/man/resolveip.1 mysql-5.7-5.7.26/man/resolveip.1 --- mysql-5.7-5.7.25/man/resolveip.1 2018-12-21 10:52:19.000000000 +0000 +++ mysql-5.7-5.7.26/man/resolveip.1 2019-04-13 13:46:47.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: \fBresolveip\fR .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/20/2018 +.\" Date: 04/12/2019 .\" Manual: MySQL Database System .\" Source: MySQL 5.7 .\" Language: English .\" -.TH "\FBRESOLVEIP\FR" "1" "12/20/2018" "MySQL 5\&.7" "MySQL Database System" +.TH "\FBRESOLVEIP\FR" "1" "04/12/2019" "MySQL 5\&.7" "MySQL Database System" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -122,7 +122,7 @@ .SH "COPYRIGHT" .br .PP -Copyright \(co 1997, 2018, Oracle and/or its affiliates. All rights reserved. +Copyright \(co 1997, 2019, Oracle and/or its affiliates. All rights reserved. .PP This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. .PP diff -Nru mysql-5.7-5.7.25/man/resolve_stack_dump.1 mysql-5.7-5.7.26/man/resolve_stack_dump.1 --- mysql-5.7-5.7.25/man/resolve_stack_dump.1 2018-12-21 10:52:19.000000000 +0000 +++ mysql-5.7-5.7.26/man/resolve_stack_dump.1 2019-04-13 13:46:47.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: \fBresolve_stack_dump\fR .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/20/2018 +.\" Date: 04/12/2019 .\" Manual: MySQL Database System .\" Source: MySQL 5.7 .\" Language: English .\" -.TH "\FBRESOLVE_STACK_DUMP\FR" "1" "12/20/2018" "MySQL 5\&.7" "MySQL Database System" +.TH "\FBRESOLVE_STACK_DUMP\FR" "1" "04/12/2019" "MySQL 5\&.7" "MySQL Database System" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -138,7 +138,7 @@ .SH "COPYRIGHT" .br .PP -Copyright \(co 1997, 2018, Oracle and/or its affiliates. All rights reserved. +Copyright \(co 1997, 2019, Oracle and/or its affiliates. All rights reserved. .PP This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. .PP diff -Nru mysql-5.7-5.7.25/man/zlib_decompress.1 mysql-5.7-5.7.26/man/zlib_decompress.1 --- mysql-5.7-5.7.25/man/zlib_decompress.1 2018-12-21 10:52:19.000000000 +0000 +++ mysql-5.7-5.7.26/man/zlib_decompress.1 2019-04-13 13:46:47.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: \fBzlib_decompress\fR .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/20/2018 +.\" Date: 04/12/2019 .\" Manual: MySQL Database System .\" Source: MySQL 5.7 .\" Language: English .\" -.TH "\FBZLIB_DECOMPRESS\FR" "1" "12/20/2018" "MySQL 5\&.7" "MySQL Database System" +.TH "\FBZLIB_DECOMPRESS\FR" "1" "04/12/2019" "MySQL 5\&.7" "MySQL Database System" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -81,7 +81,7 @@ .SH "COPYRIGHT" .br .PP -Copyright \(co 1997, 2018, Oracle and/or its affiliates. All rights reserved. +Copyright \(co 1997, 2019, Oracle and/or its affiliates. All rights reserved. .PP This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. .PP diff -Nru mysql-5.7-5.7.25/mysql-test/collections/default.experimental mysql-5.7-5.7.26/mysql-test/collections/default.experimental --- mysql-5.7-5.7.25/mysql-test/collections/default.experimental 2018-12-21 10:51:06.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/collections/default.experimental 2019-04-13 13:46:17.000000000 +0000 @@ -36,9 +36,6 @@ # For easier human reading (MTR doesn't care), please keep entries # in alphabetical order. This also helps with merge conflict resolution. - -group_replication.gr_exit_state_action_on_join_wrong_gtid_assignment_block_size # Bug#28763561 2018-10-08 msundell Fails for mysql-5.7 -group_replication.gr_exit_state_action_on_join_wrong_hash_algorithm # Bug#28763637 2018-10-08 msundell Fails in PB2 # For easier human reading (MTR doesn't care), please keep entries # in alphabetical order. This also helps with merge conflict resolution. diff -Nru mysql-5.7-5.7.25/mysql-test/collections/default.release.done mysql-5.7-5.7.26/mysql-test/collections/default.release.done --- mysql-5.7-5.7.25/mysql-test/collections/default.release.done 2018-12-21 10:51:11.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/collections/default.release.done 2019-04-13 13:46:17.000000000 +0000 @@ -1 +1 @@ -/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/mysql-test/collections/default.release.in +/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/mysql-test/collections/default.release.in diff -Nru mysql-5.7-5.7.25/mysql-test/collections/disabled-asan.list mysql-5.7-5.7.26/mysql-test/collections/disabled-asan.list --- mysql-5.7-5.7.25/mysql-test/collections/disabled-asan.list 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/collections/disabled-asan.list 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,2 @@ +# Tests in this file are disabled for ASAN runs in pushbuild. +# This is in addition to tests disabled by normal disabled.def files diff -Nru mysql-5.7-5.7.25/mysql-test/extra/rpl_tests/create_recursive_construct_stmt_capable_engine.inc mysql-5.7-5.7.26/mysql-test/extra/rpl_tests/create_recursive_construct_stmt_capable_engine.inc --- mysql-5.7-5.7.25/mysql-test/extra/rpl_tests/create_recursive_construct_stmt_capable_engine.inc 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/extra/rpl_tests/create_recursive_construct_stmt_capable_engine.inc 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,399 @@ +# ==== Purpose ==== +# +# Creates a stored routine, stored function, trigger, view, or +# prepared statement (commonly referred to as "recursive construct") +# that invokes a given unsafe statement. +# +# Then, it invokes the created recursive construct several times: +# +# - With SQL_LOG_BIN = 1 and binlog_format = STATEMENT, to verify +# that it gives a warning. +# +# - With SQL_LOG_BIN = 0 and binlog_format = STATEMENT, to verify that +# there is no warning and nothing is logged. +# +# - With SQL_LOG_BIN = 1 and binlog_format = MIXED, to verify that it +# errors out when the engine is a only statement capable. +# +# - In some cases, the recursive construct can be invoked so that it +# has no side-effects but returns a value that may be +# nondeterministic. An example is a function that returns UUID(). +# The function does not have side effects but its a return value +# that may differ on slave. Such statements are invoked so that +# the return value is discarded (e.g., SELECT func()), with +# SQL_LOG_BIN = 1 and binlog_format = STATEMENT. In this case, no +# warning should be given and nothing should be written to the +# binlog. +# +# This is an auxiliary file particularly targeted to being used by the +# test binlog_unsafe_stmt_capable_engine. In this context, the purpose is to +# check how warnings for unsafe statements are propagated in recursive +# constructs. +# +# The statement to invoke ("input") is described using mtr variables, +# and the resulting recursive construct ("output") is stored in mtr +# variables in a similar fashion. To create several levels of nested +# recursive constructs, source this file once, then copy the values of +# appropriate output variables to the input variables, and then source +# this file again. +# +# +# ==== Usage ==== +# +# See the test binlog_unsafe_stmt_capable_engine for an example of how to use this file. +# +# let $CRC_ARG_level= ; +# let $CRC_ARG_type= ; +# let $CRC_ARG_stmt_sidef= ; +# let $CRC_ARG_value= ; +# let $CRC_ARG_sel_retval= ; +# let $CRC_ARG_sel_sidef= ; +# let $CRC_ARG_desc= ; +# source extra/rpl_tests/create_recursive_construct.inc; +# let $my_stmt_sidef= $CRC_RET_stmt_sidef; +# let $my_value= $CRC_RET_value; +# let $my_sel_sidef= $CRC_RET_sel_sidef; +# let $my_sel_retval= $CRC_RET_sel_retval; +# let $my_drop= $CRC_RET_drop; +# let $my_is_toplevel= $CRC_RET_top_is_toplevel; +# let $my_desc= $CRC_RET_desc; +# +# $CRC_ARG_* are used as input parameters (arguments) to this file: +# +# $CRC_ARG_level is the recursion depth: 1 for the innermost +# statement created, 2 for a statement that invokes a statement on +# level 1, etc. +# +# $CRC_ARG_type is an integer from 0 to 6, indicating what type of +# statement shall be created: +# 0 - Create a stored function where the return value depends on +# the value of the given statement. +# 1 - Create a stored function that invokes the given statement as +# a side-effect but may not return a value that depends on it. +# 2 - Create a stored routine that invokes the given statement. +# 3 - Create a trigger (on table trigger_table_$CRC_ARG_level) that +# invokes the given statement. +# 4 - Create a view that returns a value that depends on the value +# of the given statement. +# 5 - Create a view that invokes the given statement but may return +# a value that does not depend on it. +# 6 - Create a prepared statement that invokes the given statement. +# +# $CRC_ARG_stmt_sidef is the statement to invoke. It should be a +# statement that can be invoked on its own (not sub-statement), +# which causes something unsafe to be written to the binlog. +# +# $CRC_ARG_value is a sub-statement holding the value of the given +# statement. Can be empty if the given statement does not have a +# value. Typically, this is non-empty if the given statement is a +# function call or user variable, but not if it is a stored routine +# call, INSERT, SELECT, etc (because none of them has a value). +# $CRC_ARG_value is used only when $CRC_ARG_type=6. +# +# $CRC_ARG_sel_sidef is a SELECT sub-statement that invokes the +# statement as a side-effect, but returns a result set that may not +# depend on the statement. Can be empty if the statement cannot +# produce a result set from a SELECT. $CRC_ARG_sel_sidef is used +# only if $CRC_ARG_type=2 +# +# $CRC_ARG_sel_retval is a SELECT sub-statement that does not have +# side-effects, but returns a result set that depends on the unsafe +# statement. Can be empty if the statement cannot be invoked from a +# SELECT. $CRC_ARG_sel_retval is used only if $CRC_ARG_type=3. +# +# $CRC_ARG_desc is a human-readable description of the statement to +# invoke. +# +# $CRC_RET_* are used as output parameters (return values) of this +# file: +# +# $CRC_RET_stmt_sidef is a statement invoking the resulting recursive +# construct. +# +# $CRC_RET_value is a sub-statement invoking the resulting recursive +# construct and returning the value of the recursive construct. +# This is the empty string if the resulting recursive construct does +# not have a value. In particular, this is non-empty only if +# $CRC_ARG_value=7. +# +# $CRC_RET_sel_sidef is a SELECT sub-statement that invokes the +# resulting recursive construct as a side-effect but where the +# result set may not depend on the recursive construct. This is the +# empty string if the recursive construct cannot be invoked from a +# SELECT. In particular, this is non-empty only if $CRC_ARG_value=6 +# or $CRC_ARG_value=2. +# +# $CRC_RET_sel_retval is a SELECT sub-statement that does not have +# side-effects, but returns a result set depending on the unsafe +# statement. This is the empty string if the recursive construct +# cannot produce a result set from a SELECT. In particular, this is +# non-empty only if $CRC_ARG_value=7 or $CRC_ARG_value=3. +# +# $CRC_RET_drop is a statement that drops the created object. I.e., +# it is one of 'DROP FUNCTION ', 'DROP PROCEDURE ', etc. +# +# $CRC_RET_top_is_toplevel is 0 normally, or 1 if the resulting +# recursive construct can only be called from a top-level statement. +# In particular, this is 1 only when $CRC_ARG_value=1, because +# prepared statements cannot be invoked from other recursive +# constructs. +# +# $CRC_RET_desc is a text string that describes the invokation of +# the recursive construct in a human-readable fashion. +# +# Assumptions +# +# Before sourcing this file with $CRC_ARG_level=X, you need to +# create three tables: tX, taX and trigger_table_X. These are used +# as auxiliary tables. + + +#--echo debug: >>>>ENTER create_recursive_construct +#--echo debug: level=$CRC_ARG_level +#--echo debug: type=$CRC_ARG_type +#--echo debug: stmt_sidef=$CRC_ARG_stmt_sidef +#--echo debug: value=$CRC_ARG_value +#--echo debug: sel_retval=$CRC_ARG_sel_retval +#--echo debug: sel_sidef=$CRC_ARG_sel_sidef + +--let $CRC_RET_stmt_sidef= +--let $CRC_RET_value= +--let $CRC_RET_sel_retval= +--let $CRC_RET_sel_sidef= +--let $CRC_RET_drop= +--let $CRC_RET_is_toplevel= 1 +--let $CRC_RET_desc= +--let $CRC_name= +--let $CRC_create= +--let $CRC_expected_number_of_warnings= $CRC_ARG_expected_number_of_warnings +--let $CRC_expected_number_of_warnings_normal_protocol= $CRC_ARG_expected_number_of_warnings +--let $CRC_expected_number_of_warnings_ps_protocol= $CRC_ARG_expected_number_of_warnings +--let $CRC_expected_number_of_warnings_after_reset= 0 + +######## func_retval ######## +# if inside if in lieu of AND operand +if ($CRC_ARG_type == 0) { + if ($CRC_ARG_value) { + # It will be safe to call this function and discard the return + # value, but it will be unsafe to use return value (e.g., in + # INSERT...SELECT). + --let $CRC_name= func_retval_$CRC_ARG_level + --let $CRC_create= CREATE FUNCTION $CRC_name() RETURNS VARCHAR(100) BEGIN INSERT INTO ta$CRC_ARG_level VALUES (47); RETURN $CRC_ARG_value; END + --let $CRC_RET_stmt_sidef= INSERT INTO t$CRC_ARG_level VALUES ($CRC_name()) + --let $CRC_RET_value= $CRC_name() + --let $CRC_RET_sel_sidef= + --let $CRC_RET_sel_retval= SELECT $CRC_name() + --let $CRC_RET_drop= DROP FUNCTION $CRC_name + --let $CRC_RET_is_toplevel= 0 + --let $CRC_RET_desc= function $CRC_name returning value from $CRC_ARG_desc + } +} + +######## func_sidef ######## +if ($CRC_ARG_type == 1) { + # It will be unsafe to call func even if you discard return value. + --let $CRC_name= func_sidef_$CRC_ARG_level + --let $CRC_create= CREATE FUNCTION $CRC_name() RETURNS VARCHAR(100) BEGIN INSERT INTO ta$CRC_ARG_level VALUES (47); $CRC_ARG_stmt_sidef; RETURN 0; END + --let $CRC_RET_stmt_sidef= INSERT INTO t$CRC_ARG_level SELECT $CRC_name() + --let $CRC_RET_value= + --let $CRC_RET_sel_retval= + --let $CRC_RET_sel_sidef= SELECT $CRC_name() + --let $CRC_RET_drop= DROP FUNCTION $CRC_name + --let $CRC_RET_is_toplevel= 0 + --let $CRC_RET_desc= function $CRC_name invoking $CRC_ARG_desc +} + +######## proc ######## +if ($CRC_ARG_type == 2) { + # It will be unsafe to call this procedure. + --let $CRC_name= proc_$CRC_ARG_level + --let $CRC_create= CREATE PROCEDURE $CRC_name() BEGIN $CRC_ARG_stmt_sidef; INSERT INTO ta$CRC_ARG_level VALUES (47); END + --let $CRC_RET_stmt_sidef= CALL $CRC_name() + --let $CRC_RET_value= + --let $CRC_RET_sel_retval= + --let $CRC_RET_sel_sidef= + --let $CRC_RET_drop= DROP PROCEDURE $CRC_name + --let $CRC_RET_is_toplevel= 0 + --let $CRC_RET_desc= procedure $CRC_name invoking $CRC_ARG_desc +} + +######## trig ######## +if ($CRC_ARG_type == 3) { + # It will be unsafe to invoke this trigger. + --let $CRC_name= trig_$CRC_ARG_level + --let $CRC_create= CREATE TRIGGER $CRC_name BEFORE INSERT ON trigger_table_$CRC_ARG_level FOR EACH ROW BEGIN INSERT INTO ta$CRC_ARG_level VALUES (47); $CRC_ARG_stmt_sidef; END + --let $CRC_RET_stmt_sidef= INSERT INTO trigger_table_$CRC_ARG_level VALUES (1) + --let $CRC_RET_value= + --let $CRC_RET_sel_retval= + --let $CRC_RET_sel_sidef= + --let $CRC_RET_drop= DROP TRIGGER $CRC_name + --let $CRC_RET_is_toplevel= 0 + --let $CRC_RET_desc= trigger $CRC_name invoking $CRC_ARG_desc +} + +######## view_retval ######## +if ($CRC_ARG_type == 4) { + if ($CRC_ARG_sel_retval) { + # It will be safe to select from this view if you discard the result + # set, but unsafe to use result set (e.g., in INSERT..SELECT). + --let $CRC_name= view_retval_$CRC_ARG_level + --let $CRC_create= CREATE VIEW $CRC_name AS $CRC_ARG_sel_retval + --let $CRC_RET_stmt_sidef= INSERT INTO t$CRC_ARG_LEVEL SELECT * FROM $CRC_name + --let $CRC_RET_value= + --let $CRC_RET_sel_retval= SELECT * FROM $CRC_name + --let $CRC_RET_sel_sidef= + --let $CRC_RET_drop= DROP VIEW $CRC_name + --let $CRC_RET_is_toplevel= 0 + --let $CRC_RET_desc= view $CRC_name returning value from $CRC_ARG_desc + } +} + +######## view_sidef ######## +if ($CRC_ARG_type == 5) { + if ($CRC_ARG_sel_sidef) { + # It will be unsafe to select from this view, even if you discard + # the return value. + --let $CRC_name= view_sidef_$CRC_ARG_level + --let $CRC_create= CREATE VIEW $CRC_name AS $CRC_ARG_sel_sidef + --let $CRC_RET_stmt_sidef= INSERT INTO t$CRC_ARG_level SELECT * FROM $CRC_name + --let $CRC_RET_value= + --let $CRC_RET_sel_retval= + --let $CRC_RET_sel_sidef= SELECT * FROM $CRC_name + --let $CRC_RET_drop= DROP VIEW $CRC_name + --let $CRC_RET_is_toplevel= 0 + --let $CRC_RET_desc= view $CRC_name invoking $CRC_ARG_desc + } +} + +######## prep ######## +if ($CRC_ARG_type == 6) { + # It will be unsafe to execute this prepared statement + --let $CRC_name= prep_$CRC_ARG_level + --let $CRC_create= PREPARE $CRC_name FROM "$CRC_ARG_stmt_sidef" + --let $CRC_RET_stmt_sidef= EXECUTE $CRC_name + --let $CRC_RET_value= + --let $CRC_RET_sel_retval= + --let $CRC_RET_sel_sidef= + --let $CRC_RET_drop= DROP PREPARE $CRC_name + --let $CRC_RET_is_toplevel= 1 + --let $CRC_RET_desc= prepared statement $CRC_name invoking $CRC_ARG_desc +} + +######## no recursive construct: just return the given statement ######## +if ($CRC_ARG_type == 7) { + # CRC_ARG_type=7 is a special case. We just set $CRC_RET_x = + # $CRC_ARG_x. This way, the $CRC_ARG_stmt gets executed directly + # (below). In binlog_unsafe.test, it is used to invoke the unsafe + # statement created in the outermost loop directly, without + # enclosing it in a recursive construct. + --let $CRC_RET_stmt_sidef= $CRC_ARG_stmt_sidef + --let $CRC_RET_value= $CRC_ARG_value + --let $CRC_RET_sel_retval= $CRC_ARG_sel_retval + --let $CRC_RET_sel_sidef= $CRC_ARG_sel_sidef + --let $CRC_RET_drop= + --let $CRC_RET_is_toplevel= 1 + --let $CRC_RET_desc= $CRC_ARG_desc + --let $CRC_expected_number_of_warnings_normal_protocol= `select $CRC_ARG_expected_number_of_deprecation_warnings + $CRC_ARG_expected_number_of_warnings` + --let $CRC_expected_number_of_warnings_ps_protocol= $CRC_ARG_expected_number_of_warnings + --let $CRC_expected_number_of_warnings_after_reset_normal_protocol= `select $CRC_ARG_expected_number_of_deprecation_warnings + $CRC_expected_number_of_warnings_after_reset` + --let $CRC_expected_number_of_warnings_after_reset_ps_protocol= $CRC_expected_number_of_warnings_after_reset + + --let $CRC_expected_number_of_warnings= $CRC_expected_number_of_warnings_normal_protocol + --let $CRC_expected_number_of_warnings_after_reset= $CRC_expected_number_of_warnings_after_reset_normal_protocol + if ($PS_PROTOCOL) + { + --let $CRC_expected_number_of_warnings= $CRC_expected_number_of_warnings_ps_protocol + --let $CRC_expected_number_of_warnings_after_reset= $CRC_expected_number_of_warnings_after_reset_ps_protocol + } +} + +######## execute! ######## +if ($CRC_RET_stmt_sidef) { + --echo + --echo Invoking $CRC_RET_desc. + if ($CRC_create) { + --eval $CRC_create + } + + if ($CRC_expected_number_of_warnings_normal_protocol == $CRC_expected_number_of_warnings_ps_protocol) + { + --echo * binlog_format = STATEMENT: expect $CRC_expected_number_of_warnings warnings. + } + if ($CRC_expected_number_of_warnings_normal_protocol != $CRC_expected_number_of_warnings_ps_protocol) + { + --echo * binlog_format = STATEMENT: expect $CRC_expected_number_of_warnings_normal_protocol warnings. $CRC_expected_number_of_warnings_ps_protocol with ps-protocol. + } + --eval $CRC_RET_stmt_sidef + --let $n_warnings= `SHOW COUNT(*) WARNINGS` + + --let $assert_cond= $n_warnings = $CRC_expected_number_of_warnings + --let $assert_text= There should be $CRC_expected_number_of_warnings warning(s) + --source include/assert.inc + + + # These queries are run without query log, to make result file more + # readable. Debug info is only printed if something abnormal + # happens. + --disable_query_log + + --echo * SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. + SET SQL_LOG_BIN = 0; + RESET MASTER; + --eval $CRC_RET_stmt_sidef + + --let $n_warnings= `SHOW COUNT(*) WARNINGS` + --let $assert_cond= $n_warnings = $CRC_expected_number_of_warnings_after_reset + --let $assert_text= There should be $CRC_expected_number_of_warnings_after_reset warning(s) + --source include/assert.inc + + --let $assert_text= Only two events should exist in the binary log + --let $assert_cond= "[SHOW BINLOG EVENTS, Event_type, 3]" = "No such row" + --source include/assert.inc + SET SQL_LOG_BIN = 1; + + --echo * binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. + SET binlog_format = MIXED; + RESET MASTER; + --let $CRC_expected_number_of_warnings_after_reset = $CRC_expected_number_of_warnings + --error ER_BINLOG_UNSAFE_AND_STMT_ENGINE + --eval $CRC_RET_stmt_sidef + --let $n_warnings= `SHOW COUNT(*) WARNINGS` + if ($n_warnings != $CRC_expected_number_of_warnings_after_reset) { + --echo ******** Failure! Expected $CRC_expected_number_of_warnings_after_reset warnings, got $n_warnings warnings. ******** + --source include/show_rpl_debug_info.inc + --die Wrong number of warnings + } + SET binlog_format = STATEMENT; + + --enable_query_log +} + +# Invoke created object, discarding the return value. This should not +# give any warning. +if ($CRC_RET_sel_retval) { + --echo * Invoke statement so that return value is discarded: expect no warning. + --disable_result_log + --eval $CRC_RET_sel_retval + --enable_result_log + + # Currently, due to a bug, we do get warnings here, so we don't + # fail. When the bug is fixed, we should execute the following. + + #--let $n_warnings= `SHOW COUNT(*) WARNINGS` + #if ($n_warnings) { + # --enable_query_log + # --echo Failure! Expected 0 warnings, got $n_warnings warnings. + # SHOW WARNINGS; + # SHOW BINLOG EVENTS; + # --die Wrong number of warnings. + #} +} + +#--echo debug: <<<.list" file. + if ($::opt_sanitize) { + # Check for disabled-asan.list + if ($::mysql_version_extra =~ /asan/i && + !grep (/disabled-asan\.list$/, @{$opt_skip_test_list})) { + push(@disabled_collection, "collections/disabled-asan.list"); + } + } + for my $skip (@disabled_collection) { if ( open(DISABLED, $skip ) ) diff -Nru mysql-5.7-5.7.25/mysql-test/lib/My/SafeProcess/CMakeLists.txt mysql-5.7-5.7.26/mysql-test/lib/My/SafeProcess/CMakeLists.txt --- mysql-5.7-5.7.25/mysql-test/lib/My/SafeProcess/CMakeLists.txt 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/lib/My/SafeProcess/CMakeLists.txt 2019-04-13 13:32:15.000000000 +0000 @@ -22,13 +22,6 @@ COMPONENT Test ) -UNSET(HAVE_TIRPC) -# rpcgen.cmake will store RPC_INCLUDE_DIR in the cache -IF(RPC_INCLUDE_DIR STREQUAL "/usr/include/tirpc") - ADD_DEFINITIONS(-DHAVE_TIRPC) - SET(HAVE_TIRPC 1) -ENDIF() - IF (WIN32) MYSQL_ADD_EXECUTABLE(my_safe_process safe_process_win.cc ${INSTALL_ARGS}) MYSQL_ADD_EXECUTABLE(my_safe_kill safe_kill_win.cc ${INSTALL_ARGS}) @@ -36,12 +29,15 @@ MYSQL_ADD_EXECUTABLE(my_safe_process safe_process.cc ${INSTALL_ARGS}) ENDIF() +IF(LINUX AND HAVE_ASAN) + MYSQL_CHECK_RPC() +ENDIF() # Sun RPC, and XDR, is being removed from glibc, and into a separate libtirpc # library. This is not compatible with libasan. The interceptor functions # inserted into the code will segfault. # As a workaround, do LD_PRELOAD=/lib64/libtirpc.so # For dynamically linked libasan (default for gcc), we must preload that as well -IF(HAVE_ASAN AND HAVE_TIRPC) +IF(HAVE_ASAN AND TIRPC_FOUND) TARGET_INCLUDE_DIRECTORIES(my_safe_process PRIVATE ${CMAKE_CURRENT_BINARY_DIR}) diff -Nru mysql-5.7-5.7.25/mysql-test/mysql-test-run.pl mysql-5.7-5.7.26/mysql-test/mysql-test-run.pl --- mysql-5.7-5.7.25/mysql-test/mysql-test-run.pl 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/mysql-test-run.pl 2019-04-13 13:32:15.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/perl # -*- cperl -*- -# Copyright (c) 2004, 2018, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2004, 2019, Oracle and/or its affiliates. All rights reserved. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -113,7 +113,7 @@ $SIG{INT}= sub { mtr_error("Got ^C signal"); }; our $mysql_version_id; -my $mysql_version_extra; +our $mysql_version_extra; our $glob_mysql_test_dir; our $basedir; our $bindir; @@ -313,6 +313,7 @@ our $opt_user = "root"; +our $opt_sanitize= 0; our $opt_valgrind= 0; my $opt_valgrind_mysqld= 0; my $opt_valgrind_clients= 0; @@ -456,6 +457,12 @@ $opt_parallel= 1; } + # When either --valgrind or --sanitize option is enabled, a dummy + # test is created. + if ($opt_valgrind_mysqld or $opt_sanitize) { + $num_tests_for_report = $num_tests_for_report + 1; + } + # Create server socket on any free port my $server = new IO::Socket::INET ( @@ -584,17 +591,23 @@ push @$completed, run_ctest() if $opt_ctest; - if ($opt_valgrind_mysqld) { + if ($opt_valgrind_mysqld or $opt_sanitize) { # Create minimalistic "test" for the reporting - my $tinfo = My::Test->new - ( - name => 'valgrind_report', - ); + my $tinfo = My::Test->new( + name => $opt_valgrind_mysqld ? 'valgrind_report' : 'sanitize_report', + shortname => $opt_valgrind_mysqld ? 'valgrind_report' : 'sanitize_report', + ); + # Set dummy worker id to align report with normal tests $tinfo->{worker} = 0 if $opt_parallel > 1; if ($valgrind_reports) { $tinfo->{result}= 'MTR_RES_FAILED'; - $tinfo->{comment}= "Valgrind reported failures at shutdown, see above"; + if ($opt_valgrind_mysqld) { + $tinfo->{comment} = "Valgrind reported failures at shutdown, see above"; + } else { + $tinfo->{comment} = + "Sanitizer reported failures at shutdown, see above"; + } $tinfo->{failures}= 1; } else { $tinfo->{result}= 'MTR_RES_PASSED'; @@ -817,7 +830,10 @@ elsif ($line =~ /^SPENT/) { add_total_times($line); } - elsif ($line eq 'VALGREP' && $opt_valgrind) { + elsif ($line eq 'VALGREP' && ($opt_valgrind or $opt_sanitize)) { + # 'VALGREP' means that the worker found some valgrind reports in the + # server logs. This will cause the master to flag the pseudo test + # valgrind_report as failed. $valgrind_reports= 1; } else { @@ -1003,7 +1019,7 @@ stop_all_servers($opt_shutdown_timeout); mark_time_used('restart'); my $valgrind_reports= 0; - if ($opt_valgrind_mysqld) { + if ($opt_valgrind_mysqld or $opt_sanitize) { $valgrind_reports= valgrind_exit_reports(); print $server "VALGREP\n" if $valgrind_reports; } @@ -1068,6 +1084,7 @@ resfile_global("debug", $opt_debug ? 1 : 0); resfile_global("gcov", $opt_gcov ? 1 : 0); resfile_global("gprof", $opt_gprof ? 1 : 0); + resfile_global("sanitize", $opt_sanitize ? 1 : 0); resfile_global("valgrind", $opt_valgrind ? 1 : 0); resfile_global("callgrind", $opt_callgrind ? 1 : 0); resfile_global("mem", $opt_mem ? 1 : 0); @@ -1201,6 +1218,7 @@ # Coverage, profiling etc 'gcov' => \$opt_gcov, 'gprof' => \$opt_gprof, + 'sanitize' => \$opt_sanitize, 'valgrind|valgrind-all' => \$opt_valgrind, 'valgrind-clients' => \$opt_valgrind_clients, 'valgrind-mysqltest' => \$opt_valgrind_mysqltest, @@ -2765,6 +2783,13 @@ "$path_client_bindir/innochecksum", "$basedir/extra/innochecksum"); $ENV{'INNOCHECKSUM'}= native_path($exe_innochecksum); + if ( $opt_valgrind_clients ) + { + my $args; + mtr_init_args(\$args); + valgrind_client_arguments($args, \$exe_innochecksum); + $ENV{'INNOCHECKSUM'}= mtr_args2str($exe_innochecksum, @$args); + } # ---------------------------------------------------- # Setup env so childs can execute myisampack and myisamchk @@ -2854,9 +2879,12 @@ $ENV{'VALGRIND_TEST'}= $opt_valgrind; # Make sure LeakSanitizer exits if leaks are found - $ENV{'LSAN_OPTIONS'} = "exitcode=42,suppressions=${glob_mysql_test_dir}/lsan.supp"; + $ENV{'LSAN_OPTIONS'} = + "exitcode=42,suppressions=${glob_mysql_test_dir}/lsan.supp" + if $opt_sanitize; - $ENV{'ASAN_OPTIONS'} = "suppressions=${glob_mysql_test_dir}/asan.supp"; + $ENV{'ASAN_OPTIONS'} = "suppressions=${glob_mysql_test_dir}/asan.supp" + if $opt_sanitize; # Add dir of this perl to aid mysqltest in finding perl my $perldir= dirname($^X); @@ -5945,8 +5973,10 @@ unlink($mysqld->value('pid-file')); my $output= $mysqld->value('#log-error'); + # Remember this log file for valgrind error report search - $mysqld_logs{$output}= 1 if $opt_valgrind; + $mysqld_logs{$output}= 1 if $opt_valgrind or $opt_sanitize; + # Remember data dir for gmon.out files if using gprof $gprof_dirs{$mysqld->value('datadir')}= 1 if $opt_gprof; @@ -7064,6 +7094,7 @@ # # Search server logs for valgrind reports printed at mysqld termination +# Also search for sanitize reports. # sub valgrind_exit_reports() { @@ -7076,6 +7107,7 @@ my $found_report= 0; my $err_in_report= 0; my $ignore_report= 0; + my $tool_name= $opt_sanitize ? "Sanitizer" : "Valgrind"; my $LOGF = IO::File->new($log_file) or mtr_error("Could not open file '$log_file' for reading: $!"); @@ -7090,7 +7122,7 @@ { if ($err_in_report) { - mtr_print ("Valgrind report from $log_file after tests:\n", + mtr_print ("$tool_name report from $log_file after tests:\n", @culprits); mtr_print_line(); print ("$valgrind_rep\n"); @@ -7107,9 +7139,13 @@ } # This line marks a report to be ignored $ignore_report=1 if $line =~ /VALGRIND_DO_QUICK_LEAK_CHECK/; + # This line marks the start of a valgrind report $found_report= 1 if $line =~ /^==\d+== .* SUMMARY:/; + # This line marks the start of ASAN memory leaks + $found_report = 1 if $line =~ /^==\d+==ERROR:.*/; + if ($ignore_report && $found_report) { $ignore_report= 0; $found_report= 0; @@ -7119,6 +7155,7 @@ $line=~ s/^==\d+== //; $valgrind_rep .= $line; $err_in_report= 1 if $line =~ /ERROR SUMMARY: [1-9]/; + $err_in_report= 1 if $line =~ /^==\d+==ERROR:.*/; $err_in_report= 1 if $line =~ /definitely lost: [1-9]/; $err_in_report= 1 if $line =~ /possibly lost: [1-9]/; $err_in_report= 1 if $line =~ /still reachable: [1-9]/; @@ -7128,7 +7165,7 @@ $LOGF= undef; if ($err_in_report) { - mtr_print ("Valgrind report from $log_file after tests:\n", @culprits); + mtr_print ("$tool_name report from $log_file after tests:\n", @culprits); mtr_print_line(); print ("$valgrind_rep\n"); $found_err= 1; @@ -7480,6 +7517,9 @@ xml-report=FILE Generate a XML report file compatible with JUnit. summary-report=FILE Generate a plain text file of the test summary only, suitable for sending by email. + sanitize Scan server log files for warnings from various + sanitizers. Assumes that you have built with + -DWITH_ASAN. Some options that control enabling a feature for normal test runs, can be turned off by prepending 'no' to the option, e.g. --notimer. diff -Nru mysql-5.7-5.7.25/mysql-test/r/connect.result mysql-5.7-5.7.26/mysql-test/r/connect.result --- mysql-5.7-5.7.25/mysql-test/r/connect.result 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/r/connect.result 2019-04-13 13:32:15.000000000 +0000 @@ -368,5 +368,8 @@ ERROR 42000: Access denied for user 'new1'@'localhost' to database 'test1' # Case 4: SSL connection attempt without necessary certificates +SHOW STATUS LIKE 'Aborted_connects'; +Variable_name Value +Aborted_connects 4 DROP USER 'new1'@'localhost'; DROP DATABASE test1; diff -Nru mysql-5.7-5.7.25/mysql-test/r/join_file_handler.result mysql-5.7-5.7.26/mysql-test/r/join_file_handler.result --- mysql-5.7-5.7.25/mysql-test/r/join_file_handler.result 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/r/join_file_handler.result 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,33 @@ +# +# Bug#28039829: SELECT QUERY WITH COMPLEX JOINS LEAKS FILE HANDLES +# +CREATE DATABASE db_28039829; +USE db_28039829; +CREATE TABLE t1 (c1 CHAR(36) NOT NULL, +c2 CHAR(36) DEFAULT NULL, +c3 VARCHAR(100) DEFAULT NULL, +c4 VARCHAR(100) DEFAULT NULL, +PRIMARY KEY (c1), +KEY idx_1 (c2), +KEY idx_2 (c3, c4), +KEY idx_3 (c4, c3)) +ENGINE=InnoDB; +CREATE TABLE t2 (c1 CHAR(36) DEFAULT NULL) +ENGINE=InnoDB DEFAULT CHARSET=utf8; +LOAD DATA INFILE '../../std_data/bug28039829.dat' INTO TABLE t1; +INSERT INTO t2 VALUES ('63dfcd94-143a-11e7-bec8-fa163e4dd901'), +('dcda6718-143a-11e7-82e5-fa163e4dd901'); +SET optimizer_switch="block_nested_loop=OFF"; +SELECT t1.c1 FROM t1 INNER JOIN t2 ON t1.c2 = t2.c1 +WHERE (t1.c3 LIKE 'James' OR t1.c4 LIKE 'abc'); +c1 +0e6a4474-9703-11e7-bb28-fa163e8624cc +116be260-96f2-11e7-bc89-fa163e8624cc +1b1857e4-8a3b-11e7-9579-fa163e8624cc +458320fe-0b1e-11e8-b68a-fa163e8624cc +6f002136-0ff9-11e8-9fab-fa163e8624cc +767eb9fe-fcfd-11e7-98ee-fa163e8624cc +98c2aebe-0a57-11e8-8111-fa163e8624cc +DROP TABLE t1, t2; +DROP DATABASE db_28039829; +SET optimizer_switch=DEFAULT; diff -Nru mysql-5.7-5.7.25/mysql-test/r/join_outer_innodb.result mysql-5.7-5.7.26/mysql-test/r/join_outer_innodb.result --- mysql-5.7-5.7.25/mysql-test/r/join_outer_innodb.result 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/r/join_outer_innodb.result 2019-04-13 13:32:15.000000000 +0000 @@ -61,3 +61,22 @@ DROP TABLE t1,t2; # End BUG#58456 +# +# Bug #20939184:INNODB: UNLOCK ROW COULD NOT FIND A 2 MODE LOCK ON THE +# RECORD +# +CREATE TABLE t1 (c1 INT, c2 INT, c3 INT, PRIMARY KEY (c1,c2) ); +CREATE TABLE t2 (c1 INT, c2 INT, c3 INT, PRIMARY KEY (c1), KEY (c2)); +INSERT INTO t1 VALUES (1,2,3),(2,3,4),(3,4,5); +INSERT INTO t2 SELECT * FROM t1; +SET TRANSACTION ISOLATION LEVEL READ COMMITTED; +START TRANSACTION; +SELECT * FROM t1 LEFT JOIN t2 ON t1.c2=t2.c2 AND t2.c1=1 FOR UPDATE; +c1 c2 c3 c1 c2 c3 +1 2 3 1 2 3 +2 3 4 NULL NULL NULL +3 4 5 NULL NULL NULL +UPDATE t1 LEFT JOIN t2 ON t1.c1 = t2.c2 AND t2.c1 = 3 SET t1.c3 = RAND()*10; +COMMIT; +SET TRANSACTION ISOLATION LEVEL REPEATABLE READ; +DROP TABLE t1,t2; diff -Nru mysql-5.7-5.7.25/mysql-test/r/mysqladmin_shutdown.result mysql-5.7-5.7.26/mysql-test/r/mysqladmin_shutdown.result --- mysql-5.7-5.7.25/mysql-test/r/mysqladmin_shutdown.result 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/r/mysqladmin_shutdown.result 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,4 @@ +# +# Bug#28466137 MYSQLADMIN SHUTDOWN DOES NOT WAIT FOR MYSQL TO SHUT DOWN ANYMORE +# +mysqladmin: [Warning] Using a password on the command line interface can be insecure. diff -Nru mysql-5.7-5.7.25/mysql-test/r/mysqldump.result mysql-5.7-5.7.26/mysql-test/r/mysqldump.result --- mysql-5.7-5.7.25/mysql-test/r/mysqldump.result 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/r/mysqldump.result 2019-04-13 13:32:15.000000000 +0000 @@ -4192,12 +4192,12 @@ show create event ee1; Event sql_mode time_zone Create Event character_set_client collation_connection Database Collation ee1 UTC CREATE DEFINER=`root`@`localhost` EVENT `ee1` ON SCHEDULE AT '2035-12-31 20:01:23' ON COMPLETION NOT PRESERVE ENABLE DO set @a=5 latin1 latin1_swedish_ci latin1_swedish_ci -create event ee2 on schedule at '2018-12-31 21:01:23' do set @a=5; +create event ee2 on schedule at '2029-12-31 21:01:23' do set @a=5; create event ee3 on schedule at '2030-12-31 22:01:23' do set @a=5; show events; Db Name Definer Time zone Type Execute at Interval value Interval field Starts Ends Status Originator character_set_client collation_connection Database Collation second ee1 root@localhost UTC ONE TIME 2035-12-31 20:01:23 NULL NULL NULL NULL ENABLED 1 latin1 latin1_swedish_ci latin1_swedish_ci -second ee2 root@localhost UTC ONE TIME 2018-12-31 21:01:23 NULL NULL NULL NULL ENABLED 1 latin1 latin1_swedish_ci latin1_swedish_ci +second ee2 root@localhost UTC ONE TIME 2029-12-31 21:01:23 NULL NULL NULL NULL ENABLED 1 latin1 latin1_swedish_ci latin1_swedish_ci second ee3 root@localhost UTC ONE TIME 2030-12-31 22:01:23 NULL NULL NULL NULL ENABLED 1 latin1 latin1_swedish_ci latin1_swedish_ci drop database second; create database third; @@ -4205,7 +4205,7 @@ show events; Db Name Definer Time zone Type Execute at Interval value Interval field Starts Ends Status Originator character_set_client collation_connection Database Collation third ee1 root@localhost UTC ONE TIME 2035-12-31 20:01:23 NULL NULL NULL NULL ENABLED 1 latin1 latin1_swedish_ci latin1_swedish_ci -third ee2 root@localhost UTC ONE TIME 2018-12-31 21:01:23 NULL NULL NULL NULL ENABLED 1 latin1 latin1_swedish_ci latin1_swedish_ci +third ee2 root@localhost UTC ONE TIME 2029-12-31 21:01:23 NULL NULL NULL NULL ENABLED 1 latin1 latin1_swedish_ci latin1_swedish_ci third ee3 root@localhost UTC ONE TIME 2030-12-31 22:01:23 NULL NULL NULL NULL ENABLED 1 latin1 latin1_swedish_ci latin1_swedish_ci drop database third; set time_zone = 'SYSTEM'; diff -Nru mysql-5.7-5.7.25/mysql-test/r/mysqlpump_basic.result mysql-5.7-5.7.26/mysql-test/r/mysqlpump_basic.result --- mysql-5.7-5.7.25/mysql-test/r/mysqlpump_basic.result 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/r/mysqlpump_basic.result 2019-04-13 13:32:15.000000000 +0000 @@ -736,3 +736,36 @@ ) /*!50100 TABLESPACE `mytbsp` */ ENGINE=InnoDB DEFAULT CHARSET=latin1 DROP TABLE `test`.`t1`; DROP TABLESPACE `mytbsp`; +# +# Bug#29023216: MYSQLPUMP SHOULD WRITE USERS AND GRANTS BEFORE VIEWS AND STORED PROGRAMS +# +CREATE DATABASE DB29023216; +CREATE USER 'VIEWUSER'@'LOCALHOST'; +GRANT ALL ON *.* TO 'VIEWUSER'@'LOCALHOST'; +USE DB29023216; +CREATE TABLE T1 (ID INT UNSIGNED NOT NULL PRIMARY KEY, VAL VARCHAR(10)); +CREATE DEFINER=VIEWUSER@LOCALHOST SQL SECURITY INVOKER VIEW V_T1_A AS SELECT * FROM T1; +CREATE DEFINER=VIEWUSER@LOCALHOST SQL SECURITY DEFINER VIEW V_T1_B AS SELECT * FROM T1; +CREATE SQL SECURITY DEFINER VIEW V_T1_A2 AS SELECT * FROM V_T1_A; +CREATE SQL SECURITY DEFINER VIEW V_T1_B2 AS SELECT * FROM V_T1_B; +DROP DATABASE DB29023216; +DROP USER 'VIEWUSER'@'LOCALHOST'; +USE DB29023216; +SELECT * FROM V_T1_A; +ID VAL +SELECT * FROM V_T1_B; +ID VAL +SELECT * FROM V_T1_A2; +ID VAL +SELECT * FROM V_T1_B2; +ID VAL +CREATE DEFINER=VIEWUSER@LOCALHOST FUNCTION TESTFUNC() RETURNS BOOL RETURN TRUE; +CREATE VIEW V_T1_C AS SELECT DB29023216.TESTFUNC(); +DROP DATABASE DB29023216; +DROP USER 'VIEWUSER'@'LOCALHOST'; +USE DB29023216; +SELECT * FROM V_T1_C; +DB29023216.TESTFUNC() +1 +DROP DATABASE DB29023216; +DROP USER 'VIEWUSER'@'LOCALHOST'; diff -Nru mysql-5.7-5.7.25/mysql-test/r/partition.result mysql-5.7-5.7.26/mysql-test/r/partition.result --- mysql-5.7-5.7.25/mysql-test/r/partition.result 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/r/partition.result 2019-04-13 13:32:15.000000000 +0000 @@ -3179,3 +3179,27 @@ SELECT 1 FROM t1 WHERE EXP(10000); ERROR 22003: DOUBLE value is out of range in 'exp(10000)' DROP TABLE t1; +# +# Bug#28573894 ALTER PARTITIONED TABLE ADD AUTO_INCREMENT DIFF RESULT +# +CREATE TABLE t (a VARCHAR(10) NOT NULL,b INT,PRIMARY KEY (b)) ENGINE=INNODB +PARTITION BY RANGE (b) +(PARTITION pa VALUES LESS THAN (2), +PARTITION pb VALUES LESS THAN (20), +PARTITION pc VALUES LESS THAN (30), +PARTITION pd VALUES LESS THAN (40)); +INSERT INTO t +VALUES('A',0),('B',1),('C',2),('D',3),('E',4),('F',5),('G',25),('H',35); +ALTER TABLE t ADD COLUMN r INT UNSIGNED NOT NULL AUTO_INCREMENT, ADD UNIQUE +KEY (r,b), ALGORITHM=INPLACE, LOCK=SHARED; +SELECT * FROM t; +a b r +A 0 1 +B 1 2 +C 2 3 +D 3 4 +E 4 5 +F 5 6 +G 25 7 +H 35 8 +DROP TABLE t; diff -Nru mysql-5.7-5.7.25/mysql-test/r/ps_1general.result mysql-5.7-5.7.26/mysql-test/r/ps_1general.result --- mysql-5.7-5.7.25/mysql-test/r/ps_1general.result 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/r/ps_1general.result 2019-04-13 13:32:15.000000000 +0000 @@ -293,7 +293,7 @@ prepare stmt4 from ' show table status from test like ''t2%'' '; execute stmt4; Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment -t2 InnoDB 10 Dynamic 0 0 16384 # 0 0 NULL # # # latin1_swedish_ci NULL +t2 InnoDB 10 Dynamic 0 0 16384 # 16384 0 NULL # # # latin1_swedish_ci NULL prepare stmt4 from ' show table status from test like ''t9%'' '; execute stmt4; Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment diff -Nru mysql-5.7-5.7.25/mysql-test/r/skip_name_resolve.result mysql-5.7-5.7.26/mysql-test/r/skip_name_resolve.result --- mysql-5.7-5.7.25/mysql-test/r/skip_name_resolve.result 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/r/skip_name_resolve.result 2019-04-13 13:32:15.000000000 +0000 @@ -50,10 +50,20 @@ # CREATE USER b20438524@'%' IDENTIFIED BY 'pwd'; # set some valid addresses -UPDATE mysql.user SET host='localhost' WHERE user='b20438524'; +UPDATE mysql.user SET host='localhost1' WHERE user='b20438524'; FLUSH PRIVILEGES; # cleanup DELETE FROM mysql.user WHERE user='b20438524'; FLUSH PRIVILEGES; # must find the pattern +# +# Bug #23329861: WARNING ABOUT LOCALHOST WHEN USING SKIP-NAME-RESOLVE +# +CREATE USER b20438524@'%' IDENTIFIED BY 'pwd'; +# set some valid addresses +UPDATE mysql.user SET host='localhost' WHERE user='b20438524'; +FLUSH PRIVILEGES; +# must not find the pattern +Pattern "'user' entry 'b20438524@localhost' ignored in --skip-name-resolve mode" not found +DELETE FROM mysql.user WHERE user='b20438524'; End of 5.7 tests diff -Nru mysql-5.7-5.7.25/mysql-test/std_data/bug28039829.dat mysql-5.7-5.7.26/mysql-test/std_data/bug28039829.dat --- mysql-5.7-5.7.25/mysql-test/std_data/bug28039829.dat 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/std_data/bug28039829.dat 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,77701 @@ +000582dc-89a9-4fba-82ad-7fc25d6dc5b6 1 \N Other +00097a7d-f0eb-438c-bc27-5eca5a6f79ba 1 \N Other +000c07b9-317b-4873-8f8c-76cf5cf94e53 1 James Other +0010ab54-8aa8-4e77-bf63-69bc6a778eec 1 James Other +001648bb-39cc-4dad-afcc-b576a36266ea 1 \N Other +00194317-467d-48f5-908c-13dc5ad048da 1 \N Other +001cb3df-20fa-47e6-a9be-349e01c83f7b 1 \N Other +001d4d33-078f-4b79-8b46-b271f1f67ae5 1 \N Other +001f8e76-0b39-4b8a-9c66-19af2966f4bd 1 James Other +00210a9a-1de8-4347-a926-81f0afb3283b 1 James Other +00213d0f-10d4-4cf6-88e4-7ac5ff32abf4 1 James Other +0027c487-624d-44ec-a080-8e8b6afdf3e4 1 \N Other +002a005f-df99-4312-8fea-c060e994f853 1 \N Other +002b1999-e6fb-4184-8937-21c80ebc25ab 1 \N Other +002ec7b5-974c-411d-bba2-e5b2c55b5997 1 \N Other +003019d0-2ed3-4af3-ba30-02ef7386f0de 1 \N Other +0030906f-1695-46a0-b07e-c5467aec8b97 1 James Other +0031bd2c-8a42-44f2-98f5-261b8a278f51 1 \N Other +00330b68-9847-4acc-9603-47d44a65cb8d 1 \N Other +00337441-c0fe-4d5b-be29-fa766e00549a 1 \N Other +0035449e-d758-418e-9a7d-19b27166d288 1 \N Other +003e8d5c-383e-4801-b658-89b39669b4dd 1 \N Other +00428dc1-8bc4-4ce5-a7eb-dd7cc21effad 1 \N Other +00429fd7-35c0-4fc6-81a1-85f228716dfb 1 \N Other +0043e89f-8171-4084-8ab8-4ae740a3fda9 1 \N Other +00468604-a36a-45cf-98ee-fac112bebf8a 1 \N Other +00518c41-520e-43bc-bba7-820e9da19b18 1 \N Other +0052cead-6589-46f6-a773-c45aa9d6d466 1 \N Other +0053675e-8e40-4885-9d62-66e277f94378 1 James Other +0054e7e3-5be7-4ee4-a324-8de16d6280af 1 \N Other +0058a628-5268-4b8e-8996-380847da6413 1 \N Other +005babf0-0950-4bce-ab28-2e82e31334f5 1 \N Other +005cda18-427b-4160-9e20-4fe75aa0bb34 1 \N Other +005e5a42-844b-4777-9775-3373499123c5 1 James Other +0064194d-4953-4447-a55a-87031f8f0f0f 1 \N Other +00663147-93b9-4b34-add6-e8813ff5dcd8 1 \N Other +006a4cc2-56aa-4709-a1db-1c0308254b72 1 \N Other +006c0721-c66a-484a-99a8-d1d6f1ad8ce1 1 \N Other +006d6bbc-c0f1-4f1e-a1b4-cbb729d8b306 1 \N Other +0070809a-37d0-4d19-ac6d-e62841022bdb 1 James Other +00742188-2593-40b0-98f2-4ca6da4ecc64 1 James Other +0074c8cf-8928-4885-becc-c565d11500fd 1 \N Other +00775ca6-6dd0-49f2-9aae-e6ec7be1032b 1 \N Other +0079a5ec-184b-4870-a39c-ef017c5947de 1 \N Other +0079af35-0e42-48f4-93c5-af48b5926e1c 1 \N Other +007f4fc8-3b06-4784-87e2-86d3825cc452 1 \N Other +007fc58a-0320-48bb-a884-27104c344f2c 1 James Other +00806d6f-6977-4302-b1c8-95d2f26108dc 1 \N Other +0080b718-3336-4148-8b69-9120772e1822 1 \N Other +0081ca0f-e7de-4060-b1d0-350fd7f5d159 1 \N Other +008507fc-6657-4c78-b9a1-80b66345d500 1 \N Other +0086c693-086d-47b6-8fc1-e1e357b6c2ef 1 \N Other +008cb37a-a0b7-4742-b235-a0ced3316abe 1 \N Other +008d0237-67de-4be9-a675-509c03fed32d 1 James Other +008f8caf-c164-4eca-a82b-e893750732b7 1 James Other +0090c2bc-fc9a-44c3-bd1a-38c3eadca7df 1 \N Other +0091fb68-7d08-409c-8db9-f3b166493d0b 1 James Other +00926071-839c-4ce4-b46b-b4c2caa17a73 1 James Other +00930989-5647-4c1e-98a5-fcee65d0e13c 1 \N Other +0098e74f-ba9f-4c61-80c7-447d808d69e7 1 James Other +00993e97-30b1-4b46-ab90-31daf44f7757 1 \N Other +00994da2-b358-4e0d-ac64-93cbf8b9bdf3 1 \N Other +00997f36-bc05-43ce-9efa-075c76ce4ede 1 \N Other +009a470e-5305-4e13-a91e-e9b45894c4ff 1 \N Other +009c6e82-29b5-4c67-addd-3d7f27be11c2 1 James Other +009cab13-6757-4ba8-a318-4d5d93cdbd1b 1 \N Other +009e8bee-f7ce-4455-9241-dc8a2e39180c 1 \N Other +00a618de-a7b9-4df0-944a-66bea31bc51c 1 James Other +00a8d01e-607a-42e1-934a-4192ba344efa 1 \N Other +00aade34-6464-44d4-aaf7-ae5855e959f1 1 \N Other +00ab7a6e-4fbf-4b43-869d-66eff4e8355b 1 \N Other +00adc1e8-93de-42fc-b1d2-d58f3f67f5ad 1 \N Other +00ae521d-c910-4187-b8a5-eb6bbf74d322 1 \N Other +00b0e14c-03d2-4379-97d1-6a6fafcdfc26 1 James Other +00b11668-7499-4660-98ba-92fedae74209 1 James Other +00b33e93-65d8-4210-b6bc-09b60eb8e0e6 1 \N Other +00b994ba-db93-41b4-8db5-fe371631d8dc 1 James Other +00bef118-6461-4e27-bbac-85ad04465e4f 1 \N Other +00c104a9-be78-4e2d-9779-6a0344fdc17f 1 James Other +00c1a0fc-00ff-4cf1-87eb-e3dff5882e8e 1 \N Other +00c2b72d-7485-429e-8791-38eb306f86c0 1 James Other +00c5e380-885c-47b9-8031-1e8989054e7e 1 \N Other +00c856f8-fcda-4c33-ba6b-5d7740fb4670 1 James Other +00c93829-219f-45cf-9f70-649ed273f681 1 \N Other +00c9704f-be21-474f-8a74-1c42f79b128d 1 \N Other +00ca1da4-c4ff-4368-8499-8026af933b3a 1 James Other +00ccc632-41ff-45f6-a356-1591a85b70c4 1 \N Other +00cdea0c-c4a0-436b-8c7a-c424f3652bb3 1 James Other +00d9ead5-c8b0-445f-917a-ca79086d3175 1 \N Other +00dcf306-1890-421f-9f62-e0b5ff2baf48 1 \N Other +00e318ff-1ade-432f-9373-2d57972f2962 1 James Other +00e45c8b-573c-4e5b-af1f-fb704a3ded1b 1 \N Other +00e4edb6-a2d3-4edd-b8f2-5742a3ea5c49 1 \N Other +00e6e79f-7b07-419b-969c-0409436005e7 1 \N Other +00e93086-0db9-43da-a98e-3c731070da77 1 \N Other +00e98311-96d9-4fa7-bc8d-4ec1948db50e 1 James Other +00ed91ab-5486-43c3-be30-611f9084dcf4 1 \N Other +00ee66bc-41e6-4fce-b852-c74f77f80967 1 \N Other +00ef7b75-5a05-425b-bcb6-9bb3caef7535 1 \N Other +00f15405-bd9a-43f0-91d9-1e799f8bc961 1 \N Other +00f32a1b-b383-4794-8f1c-f118de7b52be 1 James Other +00f39214-ba66-4888-abfb-e0dfc174effe 1 James Other +00f7828c-0b8c-4506-9f0e-eee0e4c2fc0b 1 \N Other +00f9dd73-b60b-41e8-ab68-6c44cbc14412 1 \N Other +00fbca7c-617b-4d47-9ac8-6b2208eccf48 1 \N Other +010166d6-4356-46d9-a670-83aa9b1cecd8 1 James Other +01030849-0d1e-4cb1-8251-eb80df7bc751 1 James Other +0103a12f-5084-451e-bf46-152a040c4ca4 1 \N Other +0107b352-7445-4d13-8f2d-6aa74c0d5b0c 1 \N Other +0111e36a-ca58-4538-965d-f6148f1a62f1 1 James Other +0118a59e-abf6-4b19-aabb-465ebecd68e3 1 \N Other +0118b633-af00-4bc0-b34b-35b2f7309c18 1 \N Other +01201c82-2b3f-11e8-9bdc-fa163e8624cc 1 \N Other +01223eb8-381e-47f9-8e42-a2a1b74c53da 1 \N Other +01237c2a-1051-4067-925f-7b9e787ff206 1 James Other +0128b6e0-b73e-492d-840f-f064ed91ea5f 1 \N Other +012ad983-501b-4023-ac57-bd35083c2aee 1 \N Other +012cc014-f373-4ac4-8dba-0c04d3508818 1 \N Other +0130598f-9544-44e4-b435-cfc242c30f74 1 James Other +01311b69-478d-469a-98ed-54730daa6528 1 James Other +01345431-cd0f-4e25-8791-2afefdaded8f 1 \N Other +0139a5b7-897d-4d1b-8fa4-24e3c758e246 1 \N Other +013e7a53-8c63-489f-b914-15c27bc069c5 1 \N Other +0144223c-56a9-4733-bd4f-8215a01014f7 1 \N Other +014542cc-d637-457b-b302-a3239b08e182 1 \N Other +01469039-a5de-496a-ae0d-984ae13f3617 1 James Other +0148e7d6-6609-49cb-bc7d-1f5b7727983b 1 James Other +014a6baf-a262-4100-9527-f97114189f3a 1 \N Other +014dff6c-2b3f-11e8-bff3-fa163e8624cc 1 \N Other +01555141-83e9-4c92-8954-ddf9c22613e2 1 \N Other +015ac6b1-ee90-4211-91d8-c097846d0de4 1 \N Other +015dd924-3a9e-4717-b5c6-af50de6973fb 1 \N Other +0160691f-bd3b-48f7-8745-10f56bf91893 1 \N Other +0168f752-a2eb-46bf-9a63-51c6afdb65f3 1 \N Other +016bb571-4d9c-48a6-8001-dad4f3b88d8e 1 \N Other +016c5c5d-78bd-47b6-a621-18fb70033bd3 1 \N Other +016dd2f9-bf42-4212-9720-ea8a04867048 1 James Other +016f1122-e121-450b-9768-e27c5b25a5ae 1 \N Other +01718d45-f2e9-494e-8145-41e2d2919e80 1 \N Other +01755c07-d41a-46d4-8c45-9457b33aa11d 1 James Other +01763c7e-e674-425e-be8b-091418858cd0 1 \N Other +01786fd6-4557-4645-8a76-20723a4aae78 1 \N Other +0178ad29-b2ab-483b-ae74-1f703aa34ae8 1 \N Other +0184916e-84f4-489a-908f-00407db24b70 1 \N Other +018537e7-9834-4267-a4df-55bb47607494 1 James Other +0185c549-3d8c-4106-848b-1181bfa3523b 1 \N Other +018a72f3-b2b7-4f81-8f91-756a1f605a35 1 \N Other +018a85d7-fe01-48c2-a696-4cf225faf538 1 \N Other +018be0e7-eaad-4bed-add8-1419583b1f7d 1 \N Other +01932fdc-dce4-4011-8aec-7afd2ec71a0c 1 \N Other +0196aeaf-b4db-4cb9-87a5-769aacd0439a 1 James Other +019758ac-8608-4467-ba9d-0b12dccdd731 1 \N Other +019bc4f0-b884-4a13-a0be-43f8b3229409 1 \N Other +019c6399-c6de-4289-aac2-2a1651204d5b 1 \N Other +019ce311-7dac-4f8b-b0ba-5911eda392f8 1 James Other +019f885e-0774-4c13-b350-0e7bef0b425e 1 \N Other +01a52dd3-8703-43d8-b38e-73994f69f9a7 1 \N Other +01a98834-dd38-4aff-abba-ed82d67c68a5 1 \N Other +01aab341-7dc1-449f-a536-63767a1243ea 1 \N Other +01ad8af1-f852-4629-9f1d-08a5e871abfd 1 \N Other +01af6410-af96-4d70-97ef-d14b24ec11b9 1 \N Other +01b607bb-369e-40dc-a22b-1f631b54a3e9 1 James Other +01bb3cc0-43f8-43ba-90e4-575d3419546b 1 James Other +01bc0663-9864-484c-a3d2-8ecacbc22f6e 1 \N Other +01bdb186-ce87-49dd-9486-2e6745137bff 1 \N Other +01c1dcab-1a8a-4ad5-94a9-231e63eb6abc 1 \N Other +01c40e93-b210-4ee5-8cc1-8fc4a4ce18ff 1 James Other +01c5a42b-2c75-44bb-8a3d-1a25c648f4ee 1 \N Other +01c7c7d9-4b59-4f53-ab20-04563c1068b0 1 \N Other +01c81334-cd78-4dc0-bd46-ed6074941c14 1 \N Other +01cb7a0c-d1c4-47f8-b5ea-2b539e285af7 1 \N Other +01d2fe51-fc74-42db-a4de-24f5a394ebb2 1 \N Other +01ddf6b0-120d-4b68-94fc-b7950d8838f2 1 \N Other +01de99ec-e3c5-4589-9c6d-cf2fd22cacb1 1 \N Other +01e02ea8-a6fd-42b2-bf96-073367b6facb 1 James Other +01e1b988-1ddc-4090-851a-dea7e7e28965 1 \N Other +01e1e381-7072-4714-bf87-d01709f7f879 1 \N Other +01f32903-1cbf-4b0f-9f41-0a83303809d3 1 James Other +01f6102b-c8e9-4b7a-b9e7-75783eef6eca 1 \N Other +01f9368c-31d5-4be4-8ecf-28fcfdbd4d04 1 \N Other +01fb0ec7-d533-4ecf-ab29-d53e74b93826 1 James Other +01fd3534-48a1-419e-b1d0-1d41dc1a1558 1 \N Other +01fdc82c-c14c-4bb6-a153-51e49d545801 1 \N Other +01fe8935-a512-4ad4-a96f-692c74d5121f 1 \N Other +02005e6d-7ea4-438a-b4df-4ca908f0f2da 1 James Other +02026128-0d70-4b18-82aa-a68f4bde5328 1 \N Other +02036508-154b-4c01-b327-9a463fff4e5f 1 James Other +02061365-2664-4953-89bc-6a9caf0ac904 1 James Other +020b6240-fd48-4ad0-acde-ada37a88ca64 1 James Other +020c3626-7532-4691-9fad-419029c88099 1 James Other +020ff506-70af-458a-ae04-7e106546bcef 1 \N Other +0210e656-9e63-4335-92e4-2ad91b7dd9ed 1 \N Other +0212777c-eb71-44f9-b13e-e6bcd6200c16 1 \N Other +0212f052-bada-423b-bfae-81d2a26c19ba 1 \N Other +021c0b9a-8ee4-4379-a930-e8efeb3dc3fe 1 \N Other +021cc979-f397-4483-a844-91c2791423ce 1 James Other +021eb1f6-1f8f-4f38-a63a-702011f32422 1 James Other +021efffe-0acb-4283-943f-69123bed960b 1 James Other +022090e5-8b8b-4877-9703-92d1fad43d0c 1 James Other +02263504-b8ed-490b-ba04-c8ff4f11d78a 1 \N Other +02265ec9-88c0-47c6-8095-89a903bd44b7 1 James Other +0226cb44-0d64-4815-9962-7069756ad23d 1 \N Other +0229c18b-7a29-46d3-af70-7123db390072 1 \N Other +022bd9dd-e5c6-4470-8d99-3b3974a6d4ee 1 \N Other +022c9924-65e4-4f3e-9087-9083fb20ad34 1 James Other +022c9e60-5a29-448b-b53f-5efc315899ae 1 James Other +0232437c-844c-45ef-856a-8138983b4a2a 1 \N Other +02347b8e-719f-461f-9344-c072428e39ad 1 \N Other +02379e50-a8ea-43b1-8f19-f5c506b99f1f 1 \N Other +02384990-9180-45df-94f6-5cf03a9fb696 1 James Other +023aee03-d815-4eed-910c-b7fcd436fcc9 1 \N Other +023b68e9-2ad1-41d3-8ea2-bc8054eea4f5 1 \N Other +023cebc6-4573-4469-8d43-5247fd90d37d 1 James Other +0245d6f2-eac0-48db-a6db-97a1da4171fb 1 \N Other +024ab26e-17a5-4ed3-8ef9-9f8195ca2ae2 1 \N Other +024f14ac-a639-460d-a7b1-eb2be3e38e41 1 James Other +0256ad9a-645d-4629-8af9-2239e59f56e3 1 \N Other +025b1284-8d28-4cae-80bc-5114693a4cfa 1 \N Other +02638ede-1b61-462f-90f6-0e9e25ea5ede 1 \N Other +02641648-3d00-42ea-a662-8f30e3d18294 1 \N Other +0265549c-b2a1-448f-a03d-792136b91f9e 1 \N Other +02670fae-c08f-4afe-bdd8-ac3e8a01abd7 1 James Other +026c5e75-d6c9-4b77-a66c-05d160171988 1 James Other +026cb84e-4815-4e2c-b512-da37ba089156 1 \N Other +026d5afa-f612-47e8-b3ec-ad7d39400aaf 1 \N Other +026fc12f-8b24-40ea-a5d2-ecc2a0c7095a 1 \N Other +027103b1-e623-4320-ab3c-adc8e8c8851e 1 \N Other +0273af35-720e-47c8-ba55-b1ca77f07ce6 1 \N Other +0277258f-c1a5-4f6c-a75c-c1073c7c018e 1 James Other +02776c66-bb83-47b1-b8fc-b063f14ecef9 1 \N Other +027db981-4bc0-4c9b-a27a-e2915306aee5 1 James Other +027e69e3-58a5-4180-93b4-8b2a7f943341 1 \N Other +027e7c21-28ca-4311-8e2e-fc193986347a 1 James Other +0280582b-3264-4514-9b7f-70ef36da6280 1 \N Other +02805d3f-5e5d-4fc7-9421-1555d026cd75 1 \N Other +02812486-b73c-41f4-9b92-001e85bd9488 1 \N Other +0283fb87-f822-4513-a348-4167205710ba 1 \N Other +0285db76-b2b2-4290-94cb-9e6e8737d8ca 1 \N Other +028a1865-ea07-44b0-bd69-69972f2d3523 1 \N Other +028b549a-e0d3-4e3f-bcac-7c223655aa80 1 \N Other +028cb06a-e4dd-4329-9519-c5ad8e3476f5 1 \N Other +0292b2b1-79fd-42a3-8882-a105d8e576ab 1 James Other +02943447-4083-456c-ba48-8b35e372df84 1 \N Other +029a4809-16b1-4032-a4e2-60ac16eb95cb 1 James Other +029c54ff-20f0-4a97-90fe-72c8285e71f3 1 \N Other +02a0ec23-52dc-4f72-bf18-5b87ed4ea558 1 \N Other +02a100f9-640a-4cae-b328-af29bb773c69 1 \N Other +02a38ed9-5c5c-43a9-9783-92ca71b8cc73 1 James Other +02a3bb0b-a242-4ba5-8381-1f3e1734fe44 1 \N Other +02aa7b34-4526-4471-a576-bac305bf4753 1 \N Other +02ad7cff-9ffa-4486-b61f-13e94f0080c0 1 \N Other +02b01cc6-f163-4d60-8cad-e30756856b49 1 \N Other +02b05aec-69bc-4179-b2e9-cda997b35c05 1 \N Other +02b3e51b-e96c-4fa9-a263-7dff55c7785f 1 \N Other +02b40e45-34cb-4755-b1f4-9c3098aa3ded 1 \N Other +02b5bdbb-753b-4082-9b51-7a273718b021 1 \N Other +02b6152d-d88e-4c19-82c2-31f9f5579e78 1 James Other +02bbd3bb-56e6-49fa-ab89-7d83edfe4925 1 James Other +02c26dcb-bc78-46f8-8042-6ce7c1c382ec 1 \N Other +02c3485f-22ad-46a2-82c8-4d7fc14f7df8 1 James Other +02c509e7-cc66-4c4a-a3af-57d8dbb268a7 1 \N Other +02ca6818-ee2a-4795-8902-5413a1ff2ce5 1 \N Other +02cbcfd2-c6c8-450c-a112-c74fa2bec214 1 \N Other +02cbf957-671e-4e11-9f35-89d323ac24f1 1 \N Other +02cff7d0-f8b1-45b4-a923-a1339788fe8d 1 \N Other +02d90e37-edc8-4b7f-a8c0-0200a100d5a0 1 James Other +02da9c35-83e5-4ca0-9914-cf70f33f8f36 1 \N Other +02daf760-be36-470b-a01c-b7b49edde417 1 \N Other +02dc740e-37d5-4c4a-a726-7817f25591e3 1 James Other +02ddeb6d-0f7c-4326-9570-e0c1bda419fe 1 James Other +02df0232-5a56-430a-b69b-4a5a95b21699 1 \N Other +02df639f-7070-4e71-bc62-f07f23c8cb14 1 \N Other +02e342d2-32bd-43c3-8c5e-77932ac27e98 1 \N Other +02e3c4b7-aafe-410a-a3ea-5994903034f3 1 \N Other +02e51feb-f40b-4f6a-8d88-cddb3a56be72 1 \N Other +02f4de54-c31d-47f8-a0d5-8e77782453bd 1 \N Other +02f91c26-3a4a-4ca5-b775-6ff882f39114 1 \N Other +02fc2a37-5758-4099-9641-65abb9acdf1c 1 \N Other +02fc7063-d1f6-4c19-8904-d82ffff95e50 1 James Other +02fda4f8-9394-46ea-8b2c-04b80e47f4ff 1 James Other +02fded98-1bee-4802-962c-25d4a414bdc0 1 \N Other +02ffb46f-d2b1-4c46-8d86-4369f23969b4 1 \N Other +02ffc6ba-8de1-49a5-93aa-345d91f7496c 1 James Other +03015e84-feac-41cb-8ab1-f5f28e5d2d58 1 \N Other +03047e60-ae2e-46f6-bfb0-c00ddf383735 1 \N Other +0308ab10-cea6-4ad6-86c0-3d65c838fbac 1 \N Other +030bf937-b38f-4147-b075-87bd6a375e6e 1 \N Other +030e0050-0ad4-4fdb-a85d-4f5e9c96ac7e 1 \N Other +03157386-36bd-4a30-b2d0-7b859721bf6e 1 \N Other +03169eee-a207-4baa-8d8c-d88f0e5c2fde 1 \N Other +0317935a-18ef-459d-9b00-13889d808fcf 1 \N Other +031ae134-ebdc-49fd-b1b1-e5f99376b75e 1 \N Other +031b5bb0-454b-4eb2-82f5-82a25e055d3c 1 James Other +031b7390-519a-4a21-8b93-5b6458e3b766 1 \N Other +031b7e6c-2195-4a32-b3e3-8a4198f65ef0 1 James Other +031d5cb2-f3d1-4fcb-a2de-917860ea6e86 1 \N Other +031f44f5-0e24-4414-be77-fefabed803c9 1 \N Other +03209c01-b85d-4a53-8220-49d25b2a1581 1 \N Other +0323641a-6a6e-415c-9b53-ce490b5300a4 1 James Other +03236fc7-81ca-4328-ace7-a9a64aa15fea 1 James Other +0324b04d-5ee3-44dd-b528-1db4b0fd5fec 1 \N Other +03276820-5d73-4dbf-b6c9-04afe31ebcf6 1 \N Other +0327ab24-75fd-443c-8980-7664ed49da9a 1 \N Other +0328712c-8ca6-4f69-8d40-d8054026ae14 1 \N Other +03289989-2d09-435f-88fc-9424eea4dd6e 1 \N Other +03296cc5-b1db-4220-b31f-96d12ec04fd2 1 James Other +032bd0a4-9df5-4b9b-a00e-208220e89787 1 \N Other +032d38d5-f101-472c-817a-0fe3f9b77219 1 \N Other +032e8f16-97ac-485b-8266-b2369ac16674 1 \N Other +03310c47-77b1-4405-ada1-3402ed7f212b 1 James Other +03315745-384c-4d37-a029-93c919800349 1 \N Other +0334a18b-2f5f-46ca-904a-00ea0acd7f36 1 \N Other +033643d5-1683-4fb1-b589-934e616ec94e 1 \N Other +033d2e8f-bad9-471a-a329-15060e1487dd 1 James Other +0345c46f-813f-4fe6-bd07-5b2621273d5c 1 \N Other +034c4573-45de-4626-b096-8f03c0aff262 1 \N Other +034c6ab6-680b-4135-90c4-4c82e7913533 1 \N Other +034cab76-08fe-4aca-b660-982c436b1dee 1 \N Other +035087a6-728b-4ff5-a4cf-4574124502fd 1 \N Other +0354c8b4-9443-408f-a6c1-0c3c0c6182ec 1 \N Other +0359cda5-425b-4137-8b58-d34a1f9f9268 1 \N Other +035e0219-828b-49c5-8d97-9abb5f28d5ac 1 \N Other +035eff07-540f-40d7-bff6-bc9a9f60c09f 1 James Other +03625f94-36a3-4c10-affb-48af7d717684 1 \N Other +03638026-b817-4888-b5bc-a38f781f0d61 1 \N Other +036e4a32-c845-4583-b372-46df297a79e7 1 \N Other +036e5cff-a6e9-43bf-bc3d-21f0e7a63281 1 \N Other +036f6f6a-c477-4a05-b45b-8941861ea5a4 1 James Other +0371f943-a7fe-4979-ab8f-3f07349e0255 1 \N Other +03739b62-5bb5-4056-adac-fe04c5ad3e42 1 \N Other +0374ea02-4eff-4808-bb9f-36064276c437 1 \N Other +037b9a83-1a69-45c9-8524-0818e248fd55 1 James Other +03800a79-2245-4913-9132-0aa0019ceb68 1 \N Other +038155be-1b99-40c6-965d-e455f9daad2b 1 \N Other +038156d0-a5fc-4ed0-bce3-8d1a5f2c1717 1 James Other +038427bf-3c32-43a2-9d9b-d38c3f721a75 1 \N Other +038693bd-78ee-4bd3-a86b-0f1b3e01541e 1 \N Other +0386a493-14ee-47d0-8d54-74e75a70d3b0 1 James Other +03895281-eac5-4d7e-928c-03222970a8dd 1 James Other +038c4c43-bcf4-4313-bd48-cd4e8cf35b68 1 \N Other +038e95ba-8cd9-4673-995d-2014f4a50c13 1 James Other +038f9876-49a4-44a2-8a1b-772711e00f9f 1 \N Other +038fea7b-5f76-4f95-bfb6-50c711a9989e 1 James Other +0396254c-8729-4873-ba2b-164415dca344 1 \N Other +0397f8eb-f13f-4b07-8244-e06462dbdc4c 1 \N Other +039ce1e2-83d6-422c-8045-d1ef5667101a 1 \N Other +039fdfca-2700-4b5f-949f-09ddbec8f75e 1 \N Other +03a32a6f-7626-4b1c-97e3-1e4bdf6b8016 1 \N Other +03adbd88-9c29-439b-bd8e-765f98924495 1 \N Other +03af75ab-55ce-4919-ae51-02ddc4ddc700 1 \N Other +03b4a272-996d-4621-a79f-1a8f78e66ce4 1 \N Other +03b581e6-0a32-4ad8-894f-e9b477bacba3 1 James Other +03b5d071-441c-4928-9139-cdeb0acaceda 1 James Other +03b5e535-b4c5-446a-b90a-f814cae0a53e 1 James Other +03b8515f-8c7b-41aa-b1b8-024ba4222567 1 \N Other +03b8d9c3-0698-46ae-bcf5-b9c0a3b4821e 1 \N Other +03b908df-2b72-4121-96cd-dcd8aff15e85 1 \N Other +03bb0654-d303-47e5-8340-b7e3a49417bb 1 \N Other +03bc814d-45e3-419e-aa83-cdc30147456d 1 \N Other +03bcafc0-a5fe-45be-82c5-0e6085f4d20b 1 James Other +03bcd8da-427b-4e1b-9364-218d7f13af7f 1 \N Other +03c43d17-78b4-464b-a62b-4e55d5423ad1 1 \N Other +03c526b5-07b9-4cb9-964b-5d797a39ab6e 1 \N Other +03cc8713-2b45-48ad-b48e-a597f423ceb3 1 \N Other +03cd956f-94f8-421f-875c-bcf65d4bb630 1 \N Other +03cde652-d69b-4008-86f6-a87dfeea87ce 1 \N Other +03cef858-5dea-4523-9076-2de0e5e73888 1 \N Other +03cf9e41-a466-48e6-94f8-caed0c710c99 1 James Other +03db18d6-e7fd-4d1b-a9d0-3f52c0856576 1 \N Other +03db8e9b-dc3a-473a-a626-81c4df67c7d1 1 \N Other +03dde15c-80ac-47dd-8117-1cc4a5af88f9 1 James Other +03e2de16-abf0-43db-ae75-eefdb1ea4ad7 1 James Other +03e4254a-d8de-4b47-816d-e66d8dcf8a2e 1 \N Other +03eb160b-3366-47f1-beae-3752baf0516b 1 \N Other +03f25d57-1d4f-4e24-8aa7-52605239a863 1 James Other +03f36be6-158c-4f03-84e7-745986f84f61 1 James Other +03f4b775-9eaf-4f1c-af80-e81b2b12b08e 1 \N Other +03f4fdec-e9c8-4038-bc0d-153c7974560b 1 \N Other +03f756e5-f751-4904-8d25-2e583cc0a2f0 1 \N Other +03faeb2d-24ff-441e-bd86-aba41c85f4a9 1 James Other +03fb9b2f-86cc-4dff-b379-7c9abe5be6fb 1 James Other +04072400-50e9-46a6-80d0-006b941f156f 1 James Other +0408b21f-ad7a-4171-aeb1-6e221df29bbe 1 \N Other +040c8afe-0752-4640-b6dc-ce58940b89b7 1 \N Other +040db095-f860-483e-a819-68b02e07e351 1 \N Other +04108d4b-f5d8-4d73-a7ca-31421f5d241c 1 \N Other +04125317-0883-4857-8d8a-c93e590eccf3 1 James Other +04130f30-c173-4134-862f-16c7c9afb590 1 \N Other +0413ceef-daf5-442e-92eb-abf2dbff7ea9 1 \N Other +04151558-1e74-430d-83da-af56f3e3ad76 1 \N Other +0415cba4-2ea5-4877-8572-2bbc6cd23833 1 James Other +0415eb61-38dd-43cf-a81a-047ad3b311eb 1 \N Other +041a22c9-7fb0-4119-a036-b1b7db132c0f 1 \N Other +041dc6c4-731b-4c48-83cb-00882da32f9c 1 \N Other +04216152-f084-4d45-a3ff-1f5d7755c564 1 James Other +042d034b-d007-4cd5-8c5b-ae83353363e7 1 \N Other +042dc737-e846-4030-bd7c-91c01c056ed4 1 \N Other +042ec986-d569-4584-9bf9-80661f2bf983 1 \N Other +042f3174-c9a4-4100-a24c-d107727a2506 1 \N Other +043073a4-7a41-4085-8833-e1921b94c662 1 James Other +04329dfe-220f-4cda-a585-1278405043c5 1 \N Other +0438b85e-4759-4d87-8374-1dc8064c73fa 1 James Other +043f15bb-3691-4b66-9727-4767355bf787 1 \N Other +04403131-d63d-48da-84d8-161208627d15 1 \N Other +04420514-e9a4-4e3e-ad01-27edf9adf419 1 \N Other +04470217-e53c-4706-863d-92ab71b9f3af 1 \N Other +044aa03c-898b-4a98-9824-b6395537bf62 1 \N Other +044d240f-0374-4427-bcbd-1a052b5761bb 1 \N Other +044dae2d-d1ae-4b72-bec3-fe1ff8308116 1 \N Other +04503b68-f527-4a44-a754-96d34610151c 1 \N Other +0455da68-fea4-44a4-9b09-3dedda1851ce 1 \N Other +0459e85b-79ae-41d1-b0e5-9ef0c91aabd8 1 \N Other +045ddf9e-52b5-4ef0-8b79-607a54df31b6 1 \N Other +0461db6c-22bc-412e-a09f-9487e6579112 1 \N Other +0466429a-4797-4480-b28d-fb500d951710 1 \N Other +04668f96-32ce-403c-a3d4-62b8c1589101 1 \N Other +046ded96-7649-4d28-80a6-a733f962d9d7 1 \N Other +04720e02-774a-425a-95a9-c3bf5ffb0bb4 1 \N Other +0478f9f2-472f-4d34-922a-778f5faf82e0 1 \N Other +047b59b1-ea45-40fd-9571-3e86e75d4114 1 James Other +047d3e63-9123-4de2-8c5a-4462cc14772d 1 James Other +047de5f8-13c6-4bc3-a8ed-cf64c73e884b 1 James Other +0486ab3b-7e19-4482-bf58-34a9b2bcb930 1 \N Other +0486e635-9ebc-409a-a155-03ab8505a3bd 1 \N Other +049014da-17ce-4c1b-9879-89ce1237852a 1 \N Other +04927d8e-504b-4715-b1df-f7c0bc7d849e 1 \N Other +049284af-73f8-45d8-aba2-10e3b3d24776 1 James Other +04958d2d-d923-49bd-b529-8746827a935c 1 \N Other +049c6f6e-f07e-414c-9133-69fea9bab8f2 1 \N Other +049ce93c-9773-43db-92e6-5ead9abc981d 1 \N Other +04a3763a-49e7-11e8-a193-fa163e8624cc 1 \N Other +04a3b41b-aafd-414f-8a94-81dde5c6fdb8 1 \N Other +04a550d2-a0ba-4be8-90ee-bcfbfdd6b56c 1 \N Other +04aa96c6-f513-42af-82ba-2bc43a5fb156 1 \N Other +04ab37ea-0689-466d-9f61-80cf19e2209e 1 \N Other +04abfe40-49e7-11e8-ae63-fa163e8624cc 1 \N Other +04b69a45-e4a8-43ac-866e-3b9163935eda 1 \N Other +04b9b261-d9bd-4d6d-ab7c-3fa38eba6362 1 \N Other +04bcc8bd-0925-4f23-afc3-30cdbde69b1f 1 \N Other +04bd71cf-1391-45e8-8416-fe877e19bb7c 1 \N Other +04bde9c9-cd37-4c23-9a99-dbd134049c9a 1 \N Other +04c199f8-d3bf-477b-b70a-daf2d24d5a29 1 James Other +04c2cfb8-14ef-4987-9a99-90c0870b7845 1 \N Other +04c3b336-1b5d-11e8-9b3b-fa163e8624cc 1 \N Other +04c402b0-d48b-4e37-b457-64a97e2f0baf 1 \N Other +04ca6c4e-e67f-47d9-a863-52b878a36c3b 1 \N Other +04cd5605-1d70-485a-84f8-66bf483a2c3e 1 \N Other +04d3f7e3-2580-4b32-9282-b0183a586304 1 James Other +04d7b62d-23ce-4629-be03-a37926b82d48 1 \N Other +04decf28-196b-4564-8110-44468dd230e9 1 \N Other +04df6080-15a8-4434-a4c8-aa972b06c307 1 \N Other +04e08be1-83a4-4c68-8b8d-adddae240f26 1 \N Other +04e1a210-1b5d-11e8-b2f9-fa163e8624cc 1 \N Other +04e2be2d-0aa3-40bf-b1c8-ae676dda7d3e 1 \N Other +04e75f73-c0af-4e98-92c5-5e846d9d0803 1 \N Other +04e92d74-49e7-11e8-9d0e-fa163e8624cc 1 \N Other +04e9a559-e5ee-4652-baf4-02b760359b1b 1 \N Other +04ea491d-d105-4d20-bc21-7fd6a737ca80 1 \N Other +04ea63ce-c946-4076-b54e-ec5e1056d210 1 \N Other +04ea77cf-0b89-420c-939d-6fa2710f85d5 1 \N Other +04ee40af-2fe0-48ab-ac99-2a7f7834ac85 1 James Other +04f1c2b8-e6c2-4a74-8f0e-089600e2f72d 1 \N Other +04f24e67-8ce6-4408-b738-a83cf7c174c3 1 James Other +04f27b56-78bd-4b6a-92cf-14d776a04698 1 \N Other +04f59339-5d2e-439f-abef-6499f4970d22 1 James Other +04f9f1e0-49e7-11e8-a21d-fa163e8624cc 1 \N Other +04fa5f7b-a673-49b6-8c90-5fa6c0a8599c 1 \N Other +04fb2460-1b5d-11e8-ac82-fa163e8624cc 1 \N Other +04fbd6bd-5b4d-4458-8da6-56d18a176771 1 James Other +04fcbde0-dda5-4012-9e1d-70e3fbe6c2e2 1 \N Other +0501ccfd-cfd7-4017-8dfe-0cbd3e9be984 1 \N Other +05021df8-9f28-46e8-a697-e05b15b6bd73 1 James Other +050b1071-8ad0-4bf1-b971-1bc8ff76edee 1 \N Other +050ffb13-2b42-41c0-86b0-14211a748ee9 1 \N Other +05181dfb-c9d1-4c1a-96c4-3724a7f17db2 1 \N Other +051a1b18-1b5d-11e8-8584-fa163e8624cc 1 \N Other +051dc033-3939-4238-a07b-28600d643a7f 1 \N Other +051e732d-f23e-43f7-ac25-dbf61765a627 1 James Other +051f802a-6f99-4d79-ac38-54794a9220ab 1 \N Other +05201d28-3fa9-4b30-b89d-78dc6f6d7a60 1 \N Other +05207bcc-5961-44e5-a9f2-ebbd40683c9f 1 \N Other +0520c23c-1d49-496f-810e-20f65ffaf038 1 James Other +05224037-a083-4d86-96ad-99d5cee62ffa 1 James Other +05225dd0-41fb-4777-82ac-1c78a29bca28 1 James Other +05271a5c-042d-4fc8-ab5a-a36b057b7441 1 \N Other +05273f40-5536-4235-a708-2360f62380b3 1 \N Other +052760bd-2aac-4247-ac33-fe053dcf8e0c 1 \N Other +05293c8f-a852-42f0-8076-6127535f772e 1 James Other +052dbc24-0c05-43c7-83aa-2fe520a3b9a0 1 \N Other +052f0d51-5f2b-401b-8b05-d2ac67804bc4 1 \N Other +0536a7fc-fd4f-40b8-9424-cbed40be5097 1 \N Other +05374933-a833-468c-84d0-2a69b6b1d285 1 \N Other +053a0c55-41a1-4b40-8fef-ec1584ebf3a0 1 \N Other +053a9568-10f3-4b2c-a968-e0ad72d77890 1 \N Other +053b14c2-a66e-4e45-a070-5dc481b2585c 1 \N Other +053c157f-085e-47ca-94fa-feb6d24fd8c4 1 \N Other +053c1ab3-4a45-46d9-a1dc-932aa5ecdba1 1 \N Other +053ca718-18b7-410e-8953-34292efd80eb 1 \N Other +053cf43a-5f62-41cf-bf13-fdcc31684f87 1 James Other +054dd0cb-e318-4391-839f-8f2c5586965d 1 James Other +0551dd43-c13c-40d8-a799-902cc9cde4a4 1 \N Other +0552e59a-306c-4a21-b74a-c275de1e8452 1 James Other +05542b0a-14c0-464a-b903-ad0ffbbd271e 1 James Other +05567df5-8b59-41c1-a39c-b2934e5a33b8 1 James Other +05569b39-3e01-4bf1-a7f6-1c51be86dd58 1 \N Other +0559ba52-2165-4dcc-9283-46436448c481 1 \N Other +055bc7e6-a9c2-4e5d-a4b4-280cf8a805c7 1 James Other +055dbeb6-ae3e-4dc0-b0ac-60619b86cec4 1 James Other +055f117d-1fe8-41cc-a426-ba68e425c060 1 James Other +0561b379-8e72-4b89-9974-5ed241e42059 1 James Other +0562202c-8741-4a59-bcfb-608307843d0c 1 \N Other +05643fb9-ff09-43f4-87dd-68b5ccc6b1d7 1 \N Other +0564e019-2c20-407f-9263-d5d7b6be7d8c 1 James Other +0568b2d5-1ac6-4a8e-a7b4-97aa22228fb4 1 \N Other +056a28cb-6615-41c6-8b11-1cbb0a6c8430 1 James Other +056b5fe6-b109-4ed0-bd9a-2abd928ba824 1 \N Other +056db3ac-65b6-4780-8f84-e4461dd9bc7e 1 James Other +056e54b4-6272-4724-98d3-33f8bf601178 1 \N Other +057038be-0261-4300-ae82-f7535904a9f0 1 \N Other +05709a4a-b8bb-4f90-9c34-a0ecfab6c8ec 1 \N Other +0573f3ad-4636-467a-99e1-17916e74c8c1 1 \N Other +05768d2e-2911-43d1-ae39-2fce2d99f222 1 \N Other +057801fd-f5ea-4f28-a7d2-cc192dcd73a0 1 \N Other +057b2aaa-1c34-472b-9bbe-9abc87494019 1 James Other +057f7422-a396-43d9-a38d-397cca34549c 1 \N Other +05818dc2-9c5d-4f95-aaf1-7a301f87325e 1 James Other +0583f33f-b46f-4c18-b7eb-6529aa42a272 1 \N Other +05848084-18f9-414c-b43a-80710ebe3cb3 1 \N Other +05862365-0f63-4f56-be8e-a654ea68f467 1 James Other +058804f5-1c7c-4655-b69e-f2d93ebbe191 1 \N Other +058c56a3-3489-47ca-9376-5115190d5cd5 1 \N Other +05914449-6751-48a4-996b-2a1b3b5a7152 1 \N Other +0598c9b6-1beb-4f6f-9880-760b80f43942 1 James Other +0599887f-aaa2-42b3-9ce7-3d869fe98991 1 \N Other +059a4646-809c-412d-9c3f-5e139e0028da 1 \N Other +059a660c-9ba0-4bb9-bad9-6f3d8950bf7f 1 \N Other +059c6bcf-1d9f-4ab3-ba05-11b5c37b99a1 1 \N Other +059f41cf-d3d6-40cc-86a3-5e4ebe6040f2 1 \N Other +05a0ebd4-e654-41b0-bb49-29c28517eacf 1 \N Other +05a416d9-1c99-4859-a756-f58c462b484f 1 James Other +05a4a181-bebd-4905-a449-93c88fe19290 1 \N Other +05a58e3e-0595-423e-89a6-4a9c3f082bc0 1 \N Other +05a7e5bc-50d1-41e3-a4e4-a919bcb17d68 1 \N Other +05aca2a3-840e-4356-bf69-3a07c044adbc 1 \N Other +05b22047-f74a-4294-8b88-5fb857e63f0f 1 \N Other +05b4be6b-af7d-48ba-9170-365827c6397b 1 \N Other +05b54499-e4e6-4c39-a610-3182419b89d5 1 \N Other +05b8ac93-4494-4c8d-bf35-517bc74619f9 1 \N Other +05be2a56-bd1d-4eb4-b98a-c84f38fef8c7 1 \N Other +05be6ad2-a052-40ef-8562-4b0242864568 1 \N Other +05c3e205-414e-45cf-9c15-70eba2ef684c 1 \N Other +05c93660-7d23-408f-86fe-6413ebb6920e 1 James Other +05c98142-a63d-472c-a26c-32cdf5e66a00 1 \N Other +05cfcac9-d832-4be0-ad28-95be44d11fc3 1 James Other +05cfda59-8a23-4697-b1dd-2a81ffafee6c 1 \N Other +05d01032-cd63-41ce-acd3-972e1ad148f1 1 \N Other +05d0b1c9-080e-4494-be2f-f0dc14ef75d6 1 \N Other +05d0c6aa-fcdb-4ede-b7dd-71ed093573e3 1 \N Other +05d62b21-dac5-45ae-8344-d8801fb09152 1 \N Other +05d893e3-32cc-45b4-ac52-2ddca8d1a12a 1 \N Other +05daae12-03ff-48df-94af-0a3147f6dfa1 1 \N Other +05dd05cc-0fec-401b-b85c-2fd50c295fb3 1 \N Other +05de44df-0030-4650-98fc-228bbe99e8d3 1 \N Other +05e1473d-36ce-40e9-b1d2-d764d42a24fb 1 \N Other +05e58f45-f67b-4098-bea8-d93539d7c3ff 1 \N Other +05e83d94-220a-4c56-87fd-29c6c0fcb588 1 James Other +05ea20da-0d47-4b3e-a893-b5d2939e32de 1 \N Other +05eacdc6-c63c-4cdc-a498-ceed7efca796 1 James Other +05f0569d-3a49-41bb-bdc6-4e36d3593f40 1 \N Other +05f418ef-d5f0-424e-ab1e-cc874105388b 1 \N Other +05f93941-8dae-48a2-8f0a-9023faeb03fa 1 \N Other +05fdbcce-7d0c-4955-af6f-28c9fbf760b0 1 \N Other +05fe8550-6b6c-447b-88d7-d0cbe92c7fa6 1 \N Other +05ffbede-ce4a-49b7-a592-bb650aa2eef4 1 James Other +0607b6b8-7c76-4497-878b-7ba6bf2bc9de 1 James Other +0609167a-add0-4182-a2e6-dba44dc5e972 1 \N Other +060a25c0-c408-4152-a7c1-190da8ebfccc 1 \N Other +06102821-c833-4973-8d6d-a4478112b99b 1 \N Other +0610ee84-911d-4ab0-b3cd-f5e4e0df9332 1 \N Other +061277bf-ad8f-4201-b030-c24acaa8e331 1 \N Other +0612e892-3f36-410c-9bf2-775709b77670 1 \N Other +06146c7d-e1bb-4ba6-b70b-9dc5329f2966 1 \N Other +061521d4-09c0-4ab4-a299-e1821d7b5a88 1 \N Other +06155efd-cdd7-411c-b465-cad2b8e1da1b 1 \N Other +06187596-83c8-4d9f-8895-46a94160bebf 1 \N Other +061df7d9-d3e7-4cfb-835b-5e73efe347f8 1 James Other +061e411e-9c97-45bd-8554-84e45fd61627 1 James Other +06237d5a-aaf3-4aa9-a317-551dba0c66d2 1 James Other +06253ff7-db3b-4992-8d22-91e583aa6852 1 \N Other +06286f12-c0f6-4636-87fc-03becbe7f9fa 1 James Other +062b6eab-097a-4b97-b796-6c884322fb0a 1 \N Other +062e9d09-27ea-4e9e-952d-905106a3cebd 1 \N Other +0630dc0f-c133-4b49-9470-a316f2af9851 1 James Other +0632525d-e86b-448b-a4fa-8c9a955c8ef9 1 \N Other +0634724a-7f40-4b21-a3e5-7bb62f116b98 1 \N Other +0639ca7d-3c06-4648-b303-da4699e0b2ab 1 James Other +0639d080-cce1-482c-8042-8c31d4a3bda7 1 \N Other +063bb207-eeb7-449d-a3ec-002f142f2c2c 1 \N Other +063e33da-2631-4128-bb9c-b470d0994edb 1 \N Other +064345cc-6176-4554-91de-b9d1a16454ff 1 \N Other +0645543a-2284-4ce6-adc4-59e880efbe11 1 James Other +064607b4-e9c1-4d61-9ebd-8f781b5f72dd 1 \N Other +0648e1cb-2531-43f6-81b4-2fbbba4475d4 1 James Other +064d0bc9-25d9-4415-9c4d-213bc147d2f9 1 James Other +064dc7de-1429-437f-a437-016047ddc8d8 1 \N Other +065306e1-4dc9-450c-8e31-76a44e1488b8 1 \N Other +0655feac-a666-477b-9e9a-9791f5e468d4 1 \N Other +0658a305-800c-47a6-9450-b0fbb6a9c1a9 1 \N Other +065fc134-ca35-4a00-aab3-635096cbe67f 1 \N Other +06624c84-ce59-4337-9e62-e96a3d810a9d 1 James Other +066a91fb-485e-4518-849e-c5abc8586d46 1 James Other +066aef88-fb34-49e4-8000-097519c82bb9 1 \N Other +066ea419-6bb1-4760-84ed-b5a5f018f6f5 1 \N Other +066f76fa-ec56-4245-a5fe-0cd5e860fba7 1 \N Other +0674c0b0-f875-4f53-8c54-09557a108cbc 1 James Other +06754e64-f4d4-4d79-991c-8059aba0b9f5 1 \N Other +06757cfd-3c45-4654-b65b-cd22d7bfb571 1 James Other +067ede0d-561c-4f06-bd84-1fa5307505f9 1 \N Other +067f3473-8fb7-4ed2-bce3-33555fb36509 1 James Other +067fc851-267d-45a2-8ed2-e696aea0cda0 1 \N Other +06879ee8-8734-4a7f-851d-64e5ce3c700d 1 \N Other +068951fe-59d4-4bd3-8e90-693a697f44a4 1 \N Other +068a0566-4141-4e89-9ce5-9a1ace690510 1 \N Other +068aef62-3b57-4f50-9e45-b14bf59c27a9 1 \N Other +068ee843-dd5e-4f2e-918b-4406424bb840 1 \N Other +069207a8-5b82-4359-9405-42eeb0f42a68 1 \N Other +0698c9ee-8c8c-4f7f-a2d9-94e0693899d2 1 James Other +069c9fad-acd5-419f-9356-f768d3a48808 1 \N Other +069d12d8-dbce-4d58-a2c9-00e6b2d85c26 1 James Other +069e8ae7-977a-456c-812a-d364e282c0e7 1 \N Other +069f4788-6a33-4bc2-a133-51df6ef11270 1 \N Other +069fece7-6ef4-4958-8916-8f7ddce828c7 1 \N Other +06a2ce2d-54df-4652-8511-1bb983238ba9 1 \N Other +06a8f412-cb66-4f74-b4aa-b10e410f521f 1 James Other +06aa529c-814a-41ce-a8cb-a10d402fcdf1 1 \N Other +06abff8d-b441-4d75-9e57-1313a5212588 1 James Other +06ac1c26-4934-44b5-aacd-4d4a9c8b3e2d 1 \N Other +06ae2a2d-3c92-4ad6-9925-84ce2535e96e 1 \N Other +06b4e0c5-88ad-45f3-bf8d-95dba5d802ff 1 \N Other +06b544d6-d0f9-45e4-85fd-5e0ff6f3b82f 1 James Other +06b5f0aa-3ac9-4586-8770-9f88fc4ac4db 1 \N Other +06b7592e-5c09-4b59-9ab5-b944150039f6 1 \N Other +06b839a0-7f84-4f82-bdbc-7707c69d6be1 1 \N Other +06bedcac-7ba9-4c5b-a2ba-7256576daff0 1 \N Other +06c24bbd-0b92-4ff4-b24f-66bc5de4f895 1 James Other +06c3da07-8970-4963-8afd-0712ece0d8c1 1 \N Other +06c9c60b-1e01-41ca-a530-259bb3c566ef 1 James Other +06cf0d25-c624-4127-82a6-cb51e341ff79 1 \N Other +06cf0f64-1fa9-4802-a0d1-b7dbd9c78609 1 \N Other +06d0e1d9-7b51-436a-bfbf-83b8e1c9ddf7 1 James Other +06d129e6-f3db-4be3-b407-7f98d2caacdb 1 James Other +06d51240-4355-4344-8170-a72b9c3a7e1a 1 \N Other +06d5fddd-e4e0-406a-9501-fc7b76ef38c7 1 \N Other +06d6020a-22fe-45e8-b981-c65fa23615ef 1 \N Other +06d9992a-2038-4d02-a588-448704f39aae 1 \N Other +06d9c5d4-f9f3-4e20-bb49-38fe6658834b 1 \N Other +06e1f70d-64d8-4491-8b84-3754b9f12f00 1 James Other +06e417b8-f999-4d4a-8992-c257acd10485 1 \N Other +06e574a8-4fe9-456d-93c0-75d0c8174ca4 1 \N Other +06eaed42-de97-40a4-935b-2843597e2d82 1 \N Other +06f249d9-8a2c-4502-8379-86ef46e70902 1 \N Other +06f633ea-583d-4c78-8e76-fd1985950d10 1 \N Other +06f660ee-cf8c-4d12-a9e4-2b78b1789ad4 1 \N Other +06f743b5-e3a7-4851-8952-a9c526e1b1e6 1 \N Other +06fabdaa-b836-48a8-92af-7a44d3047725 1 \N Other +06fecfda-870a-4a47-a281-7c45ec010018 1 James Other +07068fbe-fdbc-4e87-a10f-e074245f6bf5 1 \N Other +0706f6b9-2d31-448d-8205-d3dab4a70fc5 1 \N Other +070918c0-a474-487b-ad05-af3a70235530 1 \N Other +070f83ba-d29d-4c4a-a56b-0abf4fcbd580 1 \N Other +0712bebe-0226-491f-88aa-de7890c8fbd0 1 \N Other +07180857-7032-44c0-80b0-a444857ac933 1 \N Other +071db1d3-43f5-45df-8ed2-a0617a9ba07e 1 \N Other +071f457a-fb7f-40db-820e-a3c5e4c8ee66 1 James Other +0720eb03-d615-42d3-951c-bd7b28b78490 1 \N Other +0723e2a9-8794-403b-8712-66db690d9ef0 1 \N Other +07276857-6310-4b71-9b4a-aea9561a3be9 1 \N Other +07283f05-4947-41f9-9239-d3d14f00088a 1 James Other +072fc31f-d12d-45c3-9439-0ebb1b8252a0 1 James Other +0735ad60-c2e9-4f4c-b032-3917bcd7ad76 1 \N Other +07393d21-480d-414d-b85f-06e23e8da3db 1 \N Other +073cd021-3fca-435c-a70a-320f191a6939 1 James Other +073cf71f-5a8f-4329-915a-7f74fc271d31 1 \N Other +0741579b-2c4b-4feb-8b86-965388183638 1 \N Other +07421de5-2379-457d-8e93-60865006d5b0 1 \N Other +07486840-0998-4cdf-af7e-7594f1eb002b 1 \N Other +074f39c8-a0c7-4300-b1b6-9da8439a797e 1 \N Other +074f86ff-52d1-43b7-a055-f22f6151af0f 1 \N Other +07504208-9135-40aa-b77f-4e0a7cbb0c2d 1 \N Other +07526bf3-4726-4c7f-bdd6-58cbe3b3fd87 1 \N Other +0755c472-b9e1-4c6b-83d2-85b056992856 1 \N Other +075a625e-cc71-4f78-857e-a77e8496afa5 1 \N Other +075b2800-19c8-4f84-a46e-29519ad76162 1 James Other +075c6cf3-149a-498c-a784-5bc5c1acf50f 1 James Other +07604e99-a7e8-4fc5-a8aa-d0cb61499410 1 \N Other +0769055b-d73c-4fb4-ad33-e1be1700a579 1 \N Other +076e0fc6-2367-4fe3-80bd-4908d6b75606 1 James Other +076f1810-1834-4b65-be3d-9a94dd54f866 1 \N Other +0770da2c-6dcd-47c0-a4d5-29357f629a19 1 \N Other +077949f0-b1ce-4b16-a827-d1924478d370 1 \N Other +077c1691-448c-46e1-994d-f00fa6a821d8 1 \N Other +077d002b-92fc-45bd-9f80-5ec51358aa1a 1 \N Other +077d06c0-dee9-4d5f-aa5f-b23189ccf6e6 1 \N Other +077f6217-e161-4dd7-b588-a0c1f040717d 1 \N Other +0780b8a0-ee3d-4568-8598-f6ce7f134637 1 James Other +0788f00f-6c9f-4bb6-9b68-ae9bbe5173f7 1 \N Other +0788f2b0-1cff-45f4-9845-b7bf0257fc7c 1 \N Other +078d3ff0-bf21-46d1-b6e4-ab8f6c63139b 1 \N Other +078fbce4-e80c-4585-b2cf-984079414b9a 1 \N Other +079133ad-5028-4551-a365-5edc5d665e0d 1 \N Other +079186a4-e3c5-4bf3-803e-c8c4cdafeefc 1 \N Other +0791aef5-cf13-4775-aaf9-4e59497cdfb1 1 \N Other +0792d5ec-162f-4445-b47e-f360630ace41 1 \N Other +07942804-b478-4dd4-bbe8-b05d7ccbe0eb 1 \N Other +07976179-d96c-48f9-82eb-3cff7f397077 1 \N Other +07980d01-d9a7-4da9-a724-83bdb1813abf 1 \N Other +07983f78-100a-4482-ae42-fc4c2dca3c82 1 James Other +079ba040-2998-43d3-b92b-866a54106df8 1 \N Other +07a18010-2874-4816-be64-cc9ae564f523 1 James Other +07a2a72b-7c0f-4f05-a45e-3032a45ae987 1 \N Other +07a49b3f-3e8f-4fd5-96b0-9d0dcced8ba3 1 James Other +07ac2368-3ac4-499d-8317-a6168d43e271 1 \N Other +07ace670-191b-43e5-b38f-8a2e8b509eed 1 James Other +07ad0e13-2ff5-48b1-8d81-e8d2c0d3bf5c 1 James Other +07b78721-a6d7-4d5b-b6d9-2630b6b3e367 1 \N Other +07baa1d7-2479-4d60-932c-3ee013567567 1 \N Other +07bb8344-2b6f-468f-91d5-9eb694817d79 1 James Other +07bb8e1d-00e5-4e95-813d-9b1d47cb5b4a 1 \N Other +07bbc3b4-ff3d-43ec-a280-2cdbde8723ba 1 James Other +07c4964d-1cfe-4f15-bea1-c35b17940a61 1 James Other +07ca0939-fc94-4bb1-9d85-c327e724cc81 1 \N Other +07cfd5f0-0a0a-11e8-a6a1-fa163e8624cc 1 \N Other +07d38967-df12-48c0-a310-66697358aa06 1 \N Other +07d812dd-7e96-403d-b168-bbde2df4f7ee 1 \N Other +07d98012-375c-458b-84e1-945185e345bc 1 \N Other +07d98627-2418-44f0-8775-8244f6e3144e 1 \N Other +07dbd659-37ef-4f90-8a6e-43378db9dffd 1 James Other +07deb704-83cf-46bc-94ba-6f048dc6d67f 1 James Other +07e11559-1b62-4a3b-aa93-58c5c7d61d2e 1 \N Other +07e1a6aa-1535-4b08-ad36-fdd5f94b3e0b 1 \N Other +07e25c5b-cd08-41c0-944f-6169c837210f 1 \N Other +07e33fe1-c005-477c-af8a-1a58cc5ac7ee 1 \N Other +07e6fa91-5f6e-42b9-9451-2de9c02e2f00 1 \N Other +07e90830-d338-4170-92a1-29ae44d71b9c 1 James Other +07edd2f2-2403-4c5b-b882-21f3a282ec0b 1 James Other +07eddafe-4ee2-48f9-9aac-7d533e040c87 1 James Other +07ef9d94-1ce4-402a-8702-6c34828934ee 1 \N Other +07f19e95-9675-41a3-a2e7-40826ee39835 1 \N Other +07f6a16e-72da-4dc8-8c91-7eb6c2830884 1 \N Other +07f70bb8-be4c-4ef3-a5c0-2b9459f3c696 1 \N Other +07f8795e-8f67-4f8c-95c3-519934d0df6f 1 James Other +07f8d58f-3d3d-47ed-8018-4695ca7c34b9 1 \N Other +07fa5f03-810c-4ac7-8b45-1e8afc087cb5 1 \N Other +08011645-e714-4fdc-8952-85b894545462 1 \N Other +0809ba12-f02a-4151-8280-4e6796bb1c96 1 \N Other +080b6913-5bc3-418e-956c-ac74d4f22aa6 1 \N Other +080f426c-0a0a-11e8-95d4-fa163e8624cc 1 \N Other +0815522e-198b-4c3f-aa73-87b50b40bd12 1 \N Other +0815f7f4-e466-4166-9f02-6684026f7681 1 \N Other +081a7146-c317-4b4a-bb5c-dddba8faa8e2 1 \N Other +081ac3aa-45f6-4284-bf90-c4fdad28aeb1 1 James Other +081b4873-6d25-4b61-b5c4-31db38a18197 1 \N Other +081ec174-62f6-4a0b-8b38-76e9a8ff18e7 1 \N Other +081fbdc4-c60f-40d1-a9ab-3fec8e94321b 1 \N Other +08200dd3-a285-407c-bc4d-fd975c2d089f 1 James Other +08298af4-cd75-45f2-b650-c843d00eaa28 1 \N Other +082b222f-5b47-4f8d-965f-e0bf17562532 1 James Other +082e4d09-8c22-412e-acc6-d08f9b017042 1 \N Other +08354894-b779-46fc-8d1d-6130fab61813 1 \N Other +08356e2a-40df-4efb-b347-cb72938d1ca9 1 \N Other +08375dba-1ee6-4d88-884d-1c4e9cd4ee2e 1 \N Other +083dae8f-977d-4eb0-9fd3-bbd685de8315 1 \N Other +08402cfc-74a7-4a13-8935-f91530752fcd 1 James Other +08464840-8deb-4449-8a6a-1fd4514f43c1 1 \N Other +0847c1c4-d6f0-4d3b-b7fa-bd3e607e8383 1 James Other +084b7fd3-e793-44be-b63a-7feef01df8f7 1 James Other +084f7e9b-8ff8-45a4-b21a-a7803895914d 1 James Other +0851615a-5d78-4a02-91fb-c2aeb4361f41 1 \N Other +0855f8ce-7a32-454b-bad7-f0f2c85dd50a 1 \N Other +0856ae4c-ecf0-4e8a-8aa3-858fcd671308 1 James Other +085a9e0f-5470-44e4-b96c-5a74b2b25fce 1 \N Other +085e5c8d-57e1-4a47-a559-7f3697a5456c 1 James Other +08650485-efd6-4e59-b757-f9f64908d10a 1 \N Other +0865cb00-5000-4c15-8e04-195155dc8579 1 James Other +086b4c31-8206-4ad4-88e6-79c9267297b2 1 James Other +086c04c6-9323-4373-8ac3-e5e0667e91ed 1 James Other +086f75bc-e0e7-402e-8526-0a5c18f88de7 1 \N Other +0876f6a2-cbd7-420d-b12d-8b4202204ddd 1 \N Other +087a6496-a7ca-4f28-ba0a-54073d3a47c6 1 \N Other +087c8cdc-7ccf-4df7-bf26-9a7994e1ea27 1 \N Other +087fe20b-acd6-4531-9ed2-c9c742a02c66 1 James Other +088087e1-fad2-43b4-b61c-d87bac427922 1 \N Other +0883887e-8800-4628-b2de-44cae85a702e 1 James Other +0883e6e2-851f-4050-82e8-3cc65fa0465c 1 \N Other +08844d1b-517a-4146-a909-488569c83f26 1 \N Other +0888ad75-4972-4a92-9966-e444d3e35f18 1 \N Other +088a06ca-171a-4673-9cb2-aa9ef83e7bc3 1 \N Other +088a24cb-b120-4d41-95eb-9bbd38404a33 1 \N Other +0890bea6-2ddd-407d-8a94-72ee7234a2a2 1 James Other +089343ed-0196-47ac-87b7-e571e84d1dd1 1 \N Other +08979a9e-acee-4fea-bee0-3b077107e67d 1 \N Other +08981e9f-87a4-4339-98ed-b2c40b93f5a1 1 \N Other +089fd3cf-5bd6-4844-b691-6efeba686baa 1 \N Other +08a07350-8229-4e9b-88fe-6e3de887dca6 1 \N Other +08a159d4-0324-4ac0-b4c1-777416356dea 1 \N Other +08a35661-85d4-4be1-bde7-0553adb50b94 1 \N Other +08a7d8c4-7f1e-4e57-87cb-cf983c9d4243 1 James Other +08a8fef6-813f-45ef-99c3-bffb862c46d6 1 \N Other +08abcce7-feef-4787-ae89-b0c9fdf00217 1 \N Other +08ac1544-6db7-473c-9424-fc7bcf3ab8dc 1 \N Other +08aecb94-520a-494a-ad5a-3d8c0147e7fd 1 \N Other +08b4824a-dfdb-4e6c-b9f7-c4195e5e1c15 1 James Other +08b4867b-be5d-42e6-a369-782dda424952 1 \N Other +08b7caf5-a3bd-4493-b623-5eaeb74e8b35 1 James Other +08b925ba-7729-46b9-a184-bf3e85121545 1 James Other +08baca6d-b2fd-40dc-be12-1577c2b23f42 1 \N Other +08bba2d2-222e-4c48-9037-f97ef498c26b 1 \N Other +08bc1ede-9ee3-4654-a559-15c4267beb5e 1 \N Other +08be4d4b-6224-4309-b973-29950dfec9b7 1 \N Other +08c04e42-27d9-46a3-b93e-d724ec343eb2 1 \N Other +08c45196-cfa9-4573-b988-46b6f27dd04b 1 \N Other +08c54804-148e-45e8-a7ef-2fd45acc7f10 1 \N Other +08c60b71-682b-4962-951a-1ddf4406fc55 1 James Other +08ca000b-d07e-4e08-8ad1-041174ec8f51 1 \N Other +08cd8111-8dc0-47c8-851a-38f6a7db7367 1 \N Other +08ce33e5-4f08-4cc0-a770-67fef740f782 1 James Other +08cea296-5d8f-4a51-a54e-376667b1032a 1 \N Other +08d315a8-0ee6-11e8-8020-fa163e8624cc 1 \N Other +08d496b0-ee24-4b56-8302-b8f76097b15f 1 \N Other +08d4ae1d-370a-443a-8af9-109bf280b29a 1 \N Other +08d6e998-16a3-11e8-a732-fa163e8624cc 1 \N Other +08da9264-16a3-11e8-9d7e-fa163e8624cc 1 \N Other +08dcac15-7236-4a25-af3e-bd9ca1f58899 1 James Other +08e3650b-80b3-4f99-a1e2-f48f33cf0793 1 \N Other +08e3e74d-665e-4136-8781-ee4eb7f24f04 1 \N Other +08e3e8a6-4bd1-4cce-9dc7-13b59cf114a6 1 \N Other +08e539b1-4b6e-448f-832c-501deb549941 1 James Other +08e83468-840c-47ae-ac63-568c0b2c409b 1 \N Other +08e88d3b-5923-4596-b4fa-cd975c1f74e1 1 \N Other +08f0541e-5a43-4e8a-baee-a51d89ca3634 1 James Other +08f37ee7-118d-4042-8be4-da3e9dafd014 1 \N Other +08f47f30-16a3-11e8-887a-fa163e8624cc 1 \N Other +08fc7c0e-0ae8-4a91-9b26-fb885ce22c35 1 \N Other +0900abdb-94be-48f5-b9ad-4b703ebc7024 1 \N Other +09063f53-6f5b-404e-b459-89c73fda0ffa 1 \N Other +09065c3c-cfed-453c-b027-39e8e135afee 1 James Other +0907eb00-082f-42f4-9c21-8e8cd673b261 1 \N Other +09095cc0-4782-4706-896c-1088a577c962 1 \N Other +0909e4e7-d9d4-4e17-965c-09be0ca08d6f 1 James Other +090d7af2-fbd7-4185-a271-83d036d8025b 1 James Other +09132218-786a-4bdf-a409-738ba557d4b7 1 \N Other +0915f5ca-370f-41e7-a118-83939573b14b 1 \N Other +09169c24-0ee6-11e8-a7a6-fa163e8624cc 1 \N Other +0917bc42-0e8b-4a2c-a2e5-ac3dbcfdbf2f 1 \N Other +091bcf40-919e-432f-b62e-4ab0b96f7648 1 \N Other +091c6cf5-5373-4ff7-9da3-ef26de221820 1 \N Other +091dd244-9d84-48b2-9bc3-4bdc62ab3b11 1 James Other +091e4e2e-fae4-435a-a9a3-a1c47f462e7c 1 \N Other +091e8149-f519-4aca-a489-486e5c80bd5f 1 \N Other +091fbec0-7587-4b9d-b6fb-3de51eccfae5 1 \N Other +0925f3bc-c004-4537-948e-88c2f60b8986 1 James Other +0929643c-8857-4795-b2ae-2694bb0e6a43 1 \N Other +092a54ce-1fdc-4f97-8287-502ec07bd91e 1 \N Other +092d4e98-5a33-4011-91e2-b8c5cacf0254 1 \N Other +092d9737-3188-44ce-8060-d607df052d04 1 \N Other +092fbef3-9c3d-4ecc-aea9-a13e04e8de6d 1 \N Other +09328273-40fd-42c9-b804-0f87822f2a5c 1 James Other +093686a0-16a3-11e8-ab3d-fa163e8624cc 1 \N Other +0939dd74-5e40-487a-94be-48bcf3b9ab94 1 \N Other +093e09e7-09c3-47c5-a83b-42684d73df62 1 \N Other +093e5b9a-76e3-44c2-b513-4e021d297266 1 \N Other +093ecbea-cdd5-40b6-8834-6fa6716d6aeb 1 James Other +093fb848-0bf6-410c-b775-26e778d12b03 1 \N Other +09407900-d3f6-4dfc-9d38-57c56b54bbc4 1 \N Other +0943b55e-dcaa-4a72-94fb-cd0a46af191a 1 James Other +0944c436-16a3-11e8-9304-fa163e8624cc 1 \N Other +0949abb7-a559-4874-a3eb-361c957e9a1e 1 James Other +094a3240-16a3-11e8-9cbb-fa163e8624cc 1 \N Other +094fd3be-8ade-458f-ab5b-a34533d161a9 1 \N Other +094ff3bd-0f12-488a-beb5-06d9a67588c0 1 James Other +0950c96e-a246-4a2c-9782-f3598e5736d9 1 James Other +0954260d-5569-4416-b29e-82a6fee53fb6 1 \N Other +0959a670-a844-4a5a-9a7a-985ff24bd32b 1 \N Other +095a7efe-3712-4e66-accb-817fce69a2c1 1 James Other +095c5413-a5b9-4a09-a342-d522f7e580d7 1 \N Other +095cbfbb-8c84-4d7d-814f-a2e8edd7d718 1 \N Other +095cceaa-40a0-427a-a1bc-89c56a095cc4 1 \N Other +095f1fbe-e15c-48f7-806f-51c4a6d373d0 1 \N Other +095f59fe-381e-47e6-af57-60436cb8366a 1 James Other +09612d4a-bbe2-4daa-9c58-02054a62be2e 1 James Other +09636384-c456-4d3b-83e4-984909efb2b9 1 \N Other +0964d98a-ece0-41c7-a776-f340273ba548 1 \N Other +0966bb70-38b5-11e8-a5b0-fa163e8624cc 1 James Other +0966c39c-16a3-11e8-a413-fa163e8624cc 1 \N Other +09683d58-16a3-11e8-9c66-fa163e8624cc 1 \N Other +096849e1-c51a-4924-9a3e-92568538db8a 1 \N Other +0974d0ca-b287-11e7-ac6a-fa163e8624cc 1 James Other +0975be45-af19-4b9a-b527-f0c18b956121 1 \N Other +09766747-d86e-4019-9526-2ecf57cda4cc 1 \N Other +097b20da-44ae-4a38-9b7f-3c2b36efe24d 1 James Other +09869a8f-3611-4c66-bf73-e21ba008fe23 1 \N Other +0987aea8-aa41-4aa7-aaa5-ed2c795fd0f6 1 \N Other +098998a3-3b31-4088-b622-de076cbc634f 1 \N Other +0989fd14-6447-4cae-bdbd-cdde38edf87b 1 \N Other +098b0aae-2527-4fb2-a8d2-1172194948a3 1 James Other +098ba12f-345e-423f-84d4-b490cc2b5110 1 \N Other +098c1ff2-7a5f-443a-9fe1-9906727a11b0 1 James Other +0993b7b3-4bd0-494f-af9b-3688f7221cb7 1 \N Other +0994695a-4f00-4ffa-ae0e-aebfe5cd63bb 1 \N Other +09951206-9f5a-4f9f-b071-d11c1251136f 1 \N Other +09983310-3c1b-4dca-9d23-424085c585ed 1 \N Other +099a8a71-37c1-45e9-8ca3-ae4fbf897fd3 1 \N Other +099d6a16-cf76-4c8f-a967-ea54ae60f239 1 James Other +09a1e3a3-2c21-4203-82d0-9d6dfecdc2ee 1 \N Other +09a51490-87bd-4606-aeb2-ac277e9cb3cf 1 James Other +09a6b1e1-684d-4fca-8786-34ad4c359f86 1 \N Other +09a86fa2-fad6-4bde-8e9c-b8b06df44048 1 \N Other +09aa4d2d-d5b4-4d61-9f81-83b5b83b8854 1 \N Other +09afa080-c9ea-4205-a6a8-5233a81cb93a 1 \N Other +09b279b1-efdc-4ff2-9f0a-fbf5a8f940a1 1 \N Other +09b52c66-2ccb-4ebc-b5c7-0c3f262acecd 1 \N Other +09bc75be-a2ca-4d2a-9aef-e1aa392e88ec 1 \N Other +09be9b43-7449-46f4-9f1c-795a2287ade1 1 \N Other +09bf3a9a-324f-4652-95b8-a8a9220f5763 1 \N Other +09c21417-7bf9-4f46-8d32-ebcf88d5048a 1 \N Other +09c258b2-b705-4cd9-b865-fd5520cfab58 1 \N Other +09c79e2b-9ebe-4840-a8cf-024053971740 1 \N Other +09c874a8-81d4-4055-8c80-c5840bf71c20 1 \N Other +09ce58ca-0ea3-11e8-a75b-fa163e8624cc 1 \N Other +09d0bacf-5e3e-4306-8b9c-14bc220e9a94 1 James Other +09d42452-03cc-4288-acad-6c0622266069 1 \N Other +09d571a7-658f-456d-a452-c225021fc797 1 \N Other +09db214b-2ad5-4761-8a30-5a191e8687e0 1 James Other +09db3577-5f0b-467d-b942-b73a6e6c10bd 1 \N Other +09dbd423-62be-4c91-940f-407fa899c5ac 1 \N Other +09dbd807-412a-41d2-bba1-cdee4b85374b 1 \N Other +09df5c43-7d10-4c4b-8182-23f3e2a6b0c1 1 \N Other +09e4ea1b-71a5-488b-8db5-c3d5b922e495 1 James Other +09e81be5-ee28-40e0-b316-530fb5de34d3 1 \N Other +09e82600-354b-40b9-ab68-0a9c246b2138 1 \N Other +09e969fe-f1a3-4030-8485-e251728ed1bb 1 James Other +09ecd04d-989d-40cf-b650-8abc3a25539d 1 James Other +09f1d9d3-41b6-43b7-aca1-793dd3a4c8ac 1 \N Other +09f5b69c-76ad-40af-97b2-8aa8f37b5f4b 1 \N Other +09f63aad-714e-4ebf-bc05-385b88db47d7 1 \N Other +09f7bb8a-0730-4e12-be7f-7753c1b8ec0a 1 \N Other +09fb9213-fa03-4a62-8ca4-699811be45fa 1 \N Other +0a0062db-306e-4c9a-96ce-e42ff9185112 1 James Other +0a00d806-9045-40e9-afb9-a0ae14279089 1 \N Other +0a018433-a74f-4247-b1ac-0ecf41500b11 1 \N Other +0a028b0e-0ea3-11e8-8073-fa163e8624cc 1 \N Other +0a03dd87-ed36-4fed-9461-77b2b50855a2 1 \N Other +0a1035f2-a719-4fd5-99d4-b83a4acc7411 1 \N Other +0a10f09a-0ea3-11e8-a416-fa163e8624cc 1 \N Other +0a164bb2-2537-45d8-97e9-1b6ef513aac2 1 \N Other +0a1a0d58-28a0-473e-98e3-a181ea1c5101 1 \N Other +0a1c0705-4780-4f0f-86bb-81e80590df36 1 \N Other +0a1c356f-716c-46a8-bb5a-5a908c6189b8 1 \N Other +0a1fac8b-24b2-40cf-aba0-632aa566e9db 1 \N Other +0a21df2d-3e36-435c-80a4-209de546964f 1 \N Other +0a232915-ff83-46a2-8d60-eb9da7c19320 1 \N Other +0a235d76-ef25-43ea-822a-355c061700fd 1 \N Other +0a24a666-5266-45f0-96d6-897b2233c551 1 \N Other +0a399c34-0ea3-11e8-9ba6-fa163e8624cc 1 \N Other +0a3a1575-e96d-4c9f-bc71-9f236336f70a 1 \N Other +0a405f96-87c2-4a43-b3bc-4173280f3df4 1 \N Other +0a428e92-c59b-4c00-a5e2-45632b6991d5 1 \N Other +0a434087-9ba5-4b2f-9b62-d76097cabf63 1 \N Other +0a4a7036-3456-470c-bc54-79893a862efe 1 \N Other +0a4a9f60-7908-4aa0-84d3-0c77e6c82e8c 1 \N Other +0a4d96cc-359a-47a1-b97f-dbe9293c0632 1 \N Other +0a4d9ba3-c991-403e-9f6c-fe983d6420ef 1 \N Other +0a50c6af-28d2-4bd8-9801-b4c7db0e5860 1 \N Other +0a50da66-b579-42e2-8129-95d40f417976 1 \N Other +0a50f7a0-dee8-47ab-94b3-9c734dd53bfa 1 \N Other +0a532cec-790a-4287-9051-6f366d9544b3 1 \N Other +0a548992-31a8-46f3-891a-19403399732f 1 \N Other +0a56c683-6977-4ff5-8f02-8b3429bc0b75 1 \N Other +0a578827-8de2-48f2-95dd-ab9ac302d832 1 \N Other +0a58d9fc-82b7-4899-974c-f3488f7d6e22 1 James Other +0a596d2f-8ec0-4d4c-9adb-a9d16d7b7760 1 \N Other +0a5b9e8d-ce40-4214-bc1f-c7d1415213a1 1 James Other +0a5bd63c-7e76-44b5-a156-2ebe145a38cb 1 James Other +0a61c511-4732-45d8-8661-93d12d2ee77d 1 James Other +0a632e48-28d3-413b-9389-1b4cf32906f8 1 \N Other +0a6474e2-0ed3-4151-9530-fa7018fa409a 1 \N Other +0a65f23c-bc8b-421c-ba0f-9da802d9c81a 1 James Other +0a6d56c9-dbc9-4237-9d7a-5c57a7717c3a 1 \N Other +0a6dc546-c74f-43e0-9eb2-3ad4fa78c200 1 \N Other +0a6e348b-598e-48c1-9e0d-3d103609549f 1 \N Other +0a6e559d-f348-4ed4-9d3a-2e98641b0695 1 James Other +0a73e179-82bd-4155-b04b-7f898cb127b3 1 \N Other +0a76c836-d1ba-4d66-aa15-3c3bc4e7c05a 1 James Other +0a7ad143-f689-4afe-a7b1-8480b7691f8b 1 \N Other +0a7b9ac0-27cc-4430-a930-da993c107185 1 James Other +0a7dd419-ded0-4110-8755-7454f14fc4b8 1 \N Other +0a7ec50e-4411-4312-971f-2fdb8e1de3d2 1 \N Other +0a80fd29-78b8-47fd-a646-5db902027fcc 1 \N Other +0a832d03-321d-45a6-b658-e3438313d557 1 James Other +0a83c271-dcd4-44a1-b67b-1cfd2b83a1ba 1 James Other +0a846748-c3dc-45c8-99f4-a360edae626c 1 James Other +0a847b7f-62f4-4334-b64d-21c5e7f14f98 1 James Other +0a86d7ec-8e76-4262-9455-cd23210142aa 1 \N Other +0a87fec9-06a7-4fe2-abdd-6441e4633d35 1 \N Other +0a883c15-6949-413d-9321-f1a7cd14b84b 1 \N Other +0a89ea61-a8bb-4553-81a2-b8ff703cbc56 1 \N Other +0a8ad4c0-fe27-4d8c-ad9a-b76470004097 1 \N Other +0a8f1aa2-b99b-4981-9721-b5546e983e73 1 James Other +0a991ea2-7a71-447f-9df3-9e34f573239c 1 \N Other +0a9c24ac-2753-4a40-8d08-ff7f5550a84d 1 \N Other +0aa0beaa-9058-47a6-a152-3f7ddd6416b6 1 \N Other +0aa3a209-0a65-4819-88c8-65f8f08c1d7c 1 \N Other +0aad2f11-65b3-4ca3-9554-d14213b8d7c6 1 \N Other +0aaffa20-0dcf-11e8-8fca-fa163e8624cc 1 \N Other +0aaffaa0-47e5-4d32-9d24-317375b2c695 1 \N Other +0ab15f3e-cee2-4c15-851b-622bce11ffe1 1 James Other +0ab1b183-2c04-4fc9-8fdb-0c6db220ed5e 1 James Other +0ab1c7f2-e8c7-4626-8aa7-404600cb84be 1 \N Other +0ab1fdc4-f84b-4ca7-bcc3-778eb815700f 1 \N Other +0ab3f36d-df2b-467d-86f4-e0a20f4775d1 1 \N Other +0ab5bc27-7e1b-4bbb-b03c-bb96218b44d7 1 \N Other +0ab7a7c8-fd14-4363-8403-e55ef60f0582 1 James Other +0ab80af8-bbe2-4c25-8e60-e9c6547b1d89 1 \N Other +0ab80c88-ebf7-4b27-8698-1f336a0299ab 1 James Other +0aba19b8-ef8a-4227-9f7a-1c9a68b548c7 1 \N Other +0aba90de-9c60-4288-943e-b2eecb602d41 1 \N Other +0abac568-5756-43a0-a030-a96349f7cec4 1 \N Other +0abbf8d7-3086-4edf-bcee-d45aff65ecc9 1 \N Other +0abc95d8-9e7a-4571-859f-8f2fe5de7167 1 \N Other +0abdacd3-1aec-45f4-a96d-917abc3ccd09 1 \N Other +0abdd93b-6487-42cc-aca2-dddff14e8d8e 1 James Other +0ac42598-3c6c-40b6-a9a3-19ac20f14db1 1 \N Other +0ac9b54a-b16e-4afb-8eda-0bc740d4d36a 1 \N Other +0aca1d93-d532-4a85-871d-d7488518d2b8 1 \N Other +0ad149c0-5cbe-4708-b0dd-ba1b9ec78224 1 James Other +0ad1962a-0ca1-4163-9824-bf801274b1ff 1 James Other +0ad6143c-d299-43e1-b7df-ae4bc66f8833 1 \N Other +0ada6c79-c09e-4001-a4f3-63b00b52d25b 1 \N Other +0adc92a8-0c4b-4327-bce6-2c60014887ee 1 \N Other +0add6cec-0e68-49b2-a5f6-d8ac2c6aa1fc 1 \N Other +0adf0e7e-3249-4c30-9465-fa8f1d91e787 1 James Other +0adfd308-991a-4f59-b504-12207176581d 1 \N Other +0ae005c6-0dcf-11e8-8060-fa163e8624cc 1 \N Other +0ae3b255-fdb5-4fa7-8d96-4d254d6dbfde 1 \N Other +0ae74f77-582b-42e5-b552-ed28cd580fa2 1 \N Other +0aea0e78-d340-4f86-afdb-d0dc5da2dc14 1 \N Other +0aea9aa6-1ff8-4fec-94a6-26c0a21bcfc6 1 \N Other +0aedf63d-1a3f-419f-87a2-d9cf700cb25a 1 \N Other +0af347cd-9c8a-4849-9637-fc08f593790a 1 James Other +0af432b5-ba0b-4d8b-9966-38a8d1b3ca94 1 \N Other +0af4cd99-3b5a-4552-9ac7-57aae6567fcb 1 James Other +0af67c78-715f-495c-8f58-b1308a2a4ebf 1 \N Other +0afa1e69-148a-4de8-b39d-268785d1b90f 1 James Other +0afb35ba-7693-4356-b8ef-68d0e37ab047 1 \N Other +0b00f90b-e0a5-4c2c-9f97-81721ec6e1bc 1 \N Other +0b033fac-e4a4-475a-bdff-0f3dba442177 1 \N Other +0b06f43c-3a65-4fc0-8803-438ec2b3286e 1 \N Other +0b07bad9-e188-4678-b238-95a74bdd6863 1 \N Other +0b08f68c-2c6e-462d-ad50-df57bb774349 1 \N Other +0b0b50ba-57eb-40ab-8d21-95a240dd9a76 1 \N Other +0b1023e0-80cc-4cdc-8139-f7f99a7ce09d 1 \N Other +0b110be7-77de-465a-a869-2fcdc4283423 1 \N Other +0b111999-96c0-48b8-b289-83725cc8e7bb 1 James Other +0b124bcd-da07-4886-8cf7-4ac5fdd921b7 1 James Other +0b1520fb-1202-4470-bbf8-8fdfe1b60d86 1 \N Other +0b15e43d-bbbf-43e3-995e-99b36c87138a 1 \N Other +0b19fcff-3b77-4c99-96b5-3caf4e9c5cd4 1 \N Other +0b1c2e89-6bbb-4fe3-8238-91dd1b1af859 1 \N Other +0b1d5878-7423-41c0-b970-47c208a2e2f5 1 \N Other +0b1dce1b-c1b6-45c2-9cae-f1ba6ffacc6c 1 \N Other +0b1eb868-e048-48f7-9660-6facbdb67219 1 \N Other +0b1ec6e4-441c-4e51-a336-8386b1988d99 1 \N Other +0b2142fb-ee5b-4fe6-aeaf-4e8c10baeeb8 1 James Other +0b2b7010-d79e-447f-826b-93edace6f5ad 1 James Other +0b2bcfda-de6e-4120-9420-1a909a0d74c5 1 \N Other +0b2e10c4-baf9-453a-889a-2dc63685e446 1 \N Other +0b2e9355-196e-4b22-baa3-9b5712e2276b 1 \N Other +0b307af1-8b75-4485-b800-241881449a6c 1 James Other +0b349939-472e-4ff1-b95c-f61bad04e850 1 \N Other +0b3c617d-4521-49a5-b307-6b1d1a81b8e3 1 James Other +0b3d3be9-66da-4433-b0af-5b29b4f25bd3 1 James Other +0b44f04b-fa5e-4d75-816a-0d261a2bbe2e 1 James Other +0b4d6d90-14f3-405a-825c-73cca5571312 1 \N Other +0b5466cc-c6e9-4bda-a66c-8c69b0710f46 1 James Other +0b5684bd-8372-4661-a3c4-7eb4ba62096a 1 \N Other +0b5b7821-9371-46e9-8774-345e92f6bf13 1 \N Other +0b5bf7b0-789d-4aaa-8931-b6b43eb1c5dd 1 \N Other +0b5d82f1-2dc9-4c7c-b5b5-d5698dec9396 1 James Other +0b61f004-3690-4d77-9901-d7ac0620d848 1 James Other +0b6bea24-2c67-41fe-97d4-75e8723b39ff 1 \N Other +0b6c97c7-957c-4a9d-bdc2-31668f2e752e 1 \N Other +0b6f1561-33f3-4970-bc93-5113b4fff851 1 \N Other +0b711bb2-a871-43a4-922c-4c68370b9e35 1 \N Other +0b78d8e1-0742-446e-932a-7be73c64f7f2 1 \N Other +0b7b152e-6f8f-4d0c-b136-b1fc3eeb4186 1 James Other +0b7e0387-becc-499c-abfd-040fb8b2597b 1 James Other +0b7f45bc-9804-4897-832c-dd1489e75ddc 1 \N Other +0b82dca3-f95c-4f06-ba31-1be99411a7d2 1 James Other +0b83f986-36c1-45c0-8a52-d17c8495dce8 1 \N Other +0b85eba4-64a6-49c2-8402-73049dc90cd6 1 \N Other +0b8783ac-db0c-4517-adf3-4162fd365667 1 James Other +0b8dbf55-ad55-451a-a921-e361467735d0 1 James Other +0b8fdcc6-f0b5-4df2-a3bd-37ea5f77ed59 1 \N Other +0b900cf1-c879-4312-b997-4907198d5b93 1 \N Other +0b938571-b833-4a87-afc6-f6cc983db5dd 1 \N Other +0b939f39-e923-490e-9e57-650abc11c8c4 1 James Other +0b968855-71d2-4d23-b920-394555806b8e 1 James Other +0ba0529b-7d71-456e-9955-e76b6c0f27ae 1 \N Other +0ba59387-4427-49e1-aa8d-fbab360ef82b 1 \N Other +0bab2a6e-cf27-4537-b5a8-b93251be887e 1 \N Other +0bbc8473-ed05-4e6a-8e92-876b89d1a8ce 1 \N Other +0bc1eb5e-8950-45ca-b988-26a242673200 1 James Other +0bcb96e4-6906-4008-a318-b5e4ea6b2e76 1 \N Other +0bcd07b7-2595-4332-91d8-772bc326513f 1 \N Other +0bcda7c4-29d6-43a3-9797-d4e467eabd64 1 \N Other +0bcde6e1-b3f8-4f03-81a1-f85b15b05887 1 \N Other +0bce57a4-adf7-4c4e-8eb3-cc50aa90f337 1 \N Other +0bdb2c63-7d86-445a-915b-165662b259c4 1 \N Other +0bdd5d80-3dfe-417c-84bb-e6b94e362d04 1 \N Other +0bdeaa54-3843-409a-b6b2-a425bc7838eb 1 \N Other +0bdead9f-97f7-4b2e-a3aa-f8a859b5366b 1 \N Other +0be07a2e-616c-43f6-86da-dd3e24320320 1 \N Other +0be2cb79-e2e1-4ecc-9af6-7cdd6bc0d70e 1 \N Other +0be70757-0ad4-498d-9d77-e5789fb2df01 1 \N Other +0be796c1-112f-4e03-9544-40d0e8b224f3 1 \N Other +0be9107e-d34f-42e6-8477-51823dbf332b 1 James Other +0bebb5a9-5dee-4467-95de-aa144bbd9de9 1 \N Other +0beea0b0-361a-42a6-a9df-398892870cd8 1 \N Other +0bf468b4-d648-40a7-972d-f372fd4e8d81 1 \N Other +0bfd078a-e780-4ae1-8fea-2f4be4dc6ee6 1 \N Other +0bfe2225-af10-4e79-b5c2-c2ee2cfc8920 1 \N Other +0bfefa7a-82ed-4ed3-b61c-cc0e790b2e3e 1 \N Other +0c001bfc-1c01-480a-9109-3cd23da1445d 1 \N Other +0c0270bd-519e-439b-83d5-6ad914fd8d93 1 James Other +0c03339b-ecc0-4e21-88df-829660bafbb2 1 \N Other +0c033f97-62cb-4582-8645-b23ebea0b7ad 1 \N Other +0c069cbc-1017-4dcb-af56-ce7c235b17d8 1 James Other +0c095d94-8786-47df-a5c9-ba1fe24348c0 1 \N Other +0c09b84b-9ca5-4248-815a-83125d10ec8e 1 James Other +0c0aeb89-38aa-4767-8a30-514f38bfe02e 1 \N Other +0c0d2171-a67f-4338-a7e2-d0ed2d4ff0f9 1 \N Other +0c0da27d-c826-4d92-9b00-c93c2ec79e75 1 \N Other +0c1100fa-34e1-45d3-96ca-afd6023e6875 1 James Other +0c12c796-509a-43ea-bd1e-b84927418de7 1 \N Other +0c17a7ee-fd0d-4407-b192-21db14ce9307 1 James Other +0c17b285-4e06-4f1d-9d48-f8fc22b0c058 1 \N Other +0c190dd7-8018-42ce-8200-ef8ca060805d 1 \N Other +0c19a934-281c-42b1-b47d-3f03212184df 1 \N Other +0c1dd636-2a06-4b0a-8235-6f9bd2c3bbe2 1 James Other +0c1df0fc-f19a-4ed6-9d30-f354de731349 1 \N Other +0c1edc30-3f75-4ea1-86a7-09eeb6e44d5a 1 James Other +0c247a5b-3b85-4828-93b0-fcaf675ac094 1 James Other +0c25fa7b-b63f-4199-b58b-aa814ec51219 1 \N Other +0c26075f-512b-42e5-acea-9b62c57cf2dd 1 \N Other +0c29a4ca-1aec-4017-b6b2-6429d8b6f783 1 \N Other +0c2a44e9-db18-420a-a7b0-a53e9158bd21 1 \N Other +0c2cb5d2-2b3f-476c-9b93-089fbfdaf369 1 \N Other +0c31d428-9dca-4edc-89cc-4450544ecff8 1 James Other +0c366af1-29aa-4c4e-be01-b4905af5f699 1 James Other +0c37e9f6-a1c0-4634-9639-335738be6b64 1 \N Other +0c38967f-6ef4-4574-8035-d1bc3d2c5a38 1 James Other +0c3a32ae-263c-11e8-821d-fa163e8624cc 1 \N Other +0c3fb4ee-fef2-4dc7-a6b6-1d1c0e3cc5e8 1 James Other +0c4161c5-552d-4353-af46-5b1bd0371aff 1 James Other +0c4acec3-20b7-44a3-918d-5c8a0ff8bd09 1 \N Other +0c4c3e55-4d50-41fa-847f-7790cbcb2045 1 \N Other +0c53918c-fd0b-4a2d-a886-10fdb5e46898 1 \N Other +0c567205-12b5-4e74-b29a-032efbe1e796 1 \N Other +0c56b4bc-aefd-4420-a388-efdfcfc50fc2 1 \N Other +0c611ce9-c072-47dd-bff0-2b48ff3bbb60 1 \N Other +0c6848ff-7f8f-425a-b67c-8dde3c4fcd7d 1 James Other +0c6bc2c5-c9da-47d9-9dde-cae952cfccc6 1 \N Other +0c6ef5c4-44a5-497e-a1da-e3a920553937 1 \N Other +0c6f73cf-57b5-414f-b6c0-cbb8ee9ca8fb 1 \N Other +0c730c78-d31c-47c4-99a7-bd75f483b882 1 \N Other +0c736d22-e88e-4032-a772-81d879f7ee1a 1 James Other +0c767e97-30c9-461d-a187-008d64cffd2d 1 \N Other +0c7799ab-02c1-4654-98fb-5eaae0ef43a9 1 \N Other +0c7a6474-4952-4a7d-a7e3-4ef69e73acb1 1 \N Other +0c7c4a40-263c-11e8-a55e-fa163e8624cc 1 \N Other +0c857680-1b6f-4a90-8784-03c764b12eda 1 \N Other +0c870ec2-79f7-4d70-a763-91c64252b20e 1 \N Other +0c8c5fe1-1cb2-4883-9b9d-0e1a9e6b403c 1 \N Other +0c8e58fd-93ca-4eeb-a60b-43a182c3ab69 1 \N Other +0c90149e-511f-48c5-8b15-0038ea3ee2b0 1 \N Other +0c90d736-a61d-410c-9bd2-3088641dea69 1 \N Other +0c9366f3-e05d-4518-baf2-2cd8099ea516 1 \N Other +0c9523f4-8017-4c26-9efb-4b88670f8860 1 \N Other +0c97178c-6de6-4681-b8e8-49e7f6aa5606 1 \N Other +0c9918c7-1ac3-48de-92b9-eaf5523e74c9 1 \N Other +0c9b7813-d045-42bc-8f6a-a7a4314792de 1 \N Other +0c9d0cff-9b58-4397-9adb-f0ce225c40af 1 \N Other +0c9e5e42-f1d4-4aac-893f-95345d5922c7 1 \N Other +0c9fc607-c100-4c1b-81eb-e2d74ccf6ee0 1 James Other +0ca22044-d884-425a-bfdf-f1ccd798e982 1 James Other +0ca6b71e-3b37-4202-b299-a50caf1b1693 1 \N Other +0caef93f-990a-42c4-bf89-b8c11df7cfc7 1 \N Other +0caf80a8-0ddf-4196-9338-7680bae78ff2 1 \N Other +0cb3031d-7368-4ae6-afc5-ee64682a2791 1 \N Other +0cb3aa5d-60a8-4e06-abfb-6e0acde5de37 1 \N Other +0cb4bad4-eaea-4079-84d8-943c7cfad4bb 1 \N Other +0cb78489-a0e5-41ee-920e-20b0981f63c3 1 \N Other +0cba361a-2732-4a3b-b72f-c8f6242a780f 1 \N Other +0cbb027f-a9a2-418b-bf38-6c6c98d04798 1 James Other +0cbbd296-88e3-4946-9110-2bcfdd51e8f0 1 \N Other +0cbcd100-15ee-4100-aaa6-f4720cb043d4 1 \N Other +0cc0a335-cd6e-4a2e-8d7a-86ba0772d79e 1 \N Other +0cc31896-4bec-4aac-a5e6-2d8599a60952 1 \N Other +0cc83e89-b745-4a80-8815-a5bf4c2d4c80 1 James Other +0cc86e9c-5373-4e73-9646-2b760baa9d0d 1 \N Other +0cca3248-d685-4239-99b9-3162cee61fd0 1 \N Other +0cccf72f-328f-4ddf-9390-3264e4c10ec3 1 \N Other +0ccd752e-c4fa-447a-be1d-ff2c7554026b 1 \N Other +0cd06992-b2c9-44b4-99e7-a768e9d4c055 1 \N Other +0cd2aa64-d874-4055-bad2-2a289231b4f4 1 James Other +0cd3bd62-77cb-4b46-8be0-e93386e3b1ae 1 \N Other +0cd643f1-f381-4ed5-be94-d4f7d051b068 1 James Other +0cd88578-efd1-4e8c-b91a-963274ea88a3 1 \N Other +0cda752c-4f98-4615-a7cd-d30a6de38187 1 James Other +0cdb4d13-3d60-4b6d-baed-5774ade88739 1 \N Other +0cdb9e43-9af5-4534-98ce-d04ad77862cf 1 James Other +0cdd9f55-217f-42a9-9f79-957a3c0c5953 1 \N Other +0cdec6e4-910e-4f40-82c7-c99fd4f42abe 1 \N Other +0ce1628f-e4be-465b-aa98-a9fbabb57f7e 1 \N Other +0ce19960-393e-4f6d-8060-19e811bc9255 1 James Other +0ce4bc2c-f7cb-4ee3-a3b6-64bc11bf1a34 1 \N Other +0ce5eabd-ef5d-4e2d-9cf5-df956d4f4b23 1 \N Other +0ce668c0-ea1f-41cd-b403-92b198090f69 1 \N Other +0ced19f6-5077-41fa-ad9a-22f9952e5643 1 \N Other +0cee30b8-21a2-4211-8420-0da975760780 1 \N Other +0cf75262-f92b-46be-b581-ed7292e1d90f 1 \N Other +0cf9a8d1-5a0c-4d17-a902-d70c519f3727 1 \N Other +0cfb6333-a126-4fbf-a2ba-8ccaccc909e6 1 James Other +0cfdca6d-fe88-438e-8b9c-604fdf261b5b 1 \N Other +0cffc53b-0796-416e-9fd7-e92a5d161a58 1 James Other +0cffdd56-1b3e-484b-b3f8-a6ec20fceb27 1 \N Other +0cfff5f4-a43b-42c8-818a-ba33c55f505c 1 \N Other +0d018f80-8de2-426b-903e-93e3e603b551 1 James Other +0d02cfb0-57a0-4864-be57-1b9ab8d39393 1 \N Other +0d053f21-1059-4826-82be-24defc30a30f 1 \N Other +0d0e39d9-e445-438b-9305-dc9f1addf3ea 1 \N Other +0d11edc8-7f8d-4874-be0f-137cd17aa3b6 1 \N Other +0d138bb7-022f-42ae-9997-b3f8de2d7157 1 \N Other +0d154e43-72f7-4296-9be5-e30640aff3f6 1 \N Other +0d1a670c-3a38-48c5-8d3f-17a4138af889 1 \N Other +0d1b8506-a655-4330-84d5-fe546edb34e1 1 \N Other +0d1fa3d3-92cf-468d-a71e-97633a2ea55a 1 \N Other +0d2687fe-78f1-48e8-9095-e31af0a993a7 1 \N Other +0d29ddd2-b63b-4255-bf55-6d8a37149f25 1 \N Other +0d33a66b-735f-4ddd-ba1b-4b31646dde8d 1 \N Other +0d394ec9-7558-40e8-bfdb-2156c402babd 1 \N Other +0d3ca6b3-7354-4046-909b-818a63e8e447 1 \N Other +0d3d62a1-72e8-49f2-a339-b1ac66d905b5 1 \N Other +0d3dd0de-bcb9-49f3-9bc0-3897c450c47a 1 \N Other +0d3ddc6f-211d-478d-9ee8-e3879face5fb 1 \N Other +0d40fdd7-dfb4-4a0f-acc9-21c4cda687e5 1 \N Other +0d43afa3-8c46-4716-a9bb-1867eaa56f76 1 James Other +0d492116-4ba3-42e6-b327-610763b2e0a1 1 \N Other +0d4a5353-783e-4000-ad4f-6cd6b1585a6c 1 \N Other +0d4a5633-0739-4296-a4e3-62e4457c1d4c 1 James Other +0d4ac6c0-b4a1-4022-8dd6-fe7d20fd76d4 1 \N Other +0d4e101e-a7e3-4cc7-afd0-ff2f3eb3ae57 1 James Other +0d50645c-9765-45ee-994f-43e483df2091 1 James Other +0d528caf-4829-45a0-aa1f-1b9d3168a76c 1 \N Other +0d53de7f-9ac0-48cf-b3bc-beec41014808 1 \N Other +0d5559b2-6b2e-4d19-8731-a5e77684d141 1 \N Other +0d59b57d-c1de-456b-8793-a1795b75ea2e 1 \N Other +0d5bee6a-70a3-476b-9d50-729c52803ef5 1 \N Other +0d63b3a1-31d6-483f-a66f-58f310594df2 1 \N Other +0d66b8f6-5ee9-4f84-9955-7df4d3f21454 1 James Other +0d684920-35b4-4433-8ca3-2c694e2d45a7 1 \N Other +0d6a3048-22ca-47f3-a55c-12fffc2e2ae8 1 \N Other +0d6d8b6d-0a5a-468d-8d03-1d4e6ce67af3 1 James Other +0d712472-1eb5-4c22-af60-38d234e0b1e8 1 James Other +0d726877-7c5f-482a-ae75-6ce3dc0d9261 1 \N Other +0d738043-661c-4765-ac74-720fe9a89dd5 1 James Other +0d77fefa-62d4-4eec-bf58-dc77ffd1a65c 1 \N Other +0d79f77d-6fc1-468d-ab7f-5931a1994a66 1 \N Other +0d7c9e7d-ffa0-4f08-b517-d0f30693327a 1 \N Other +0d7f59d3-53cf-4001-8294-9bfc1698db56 1 \N Other +0d83c3e4-f7a4-4b6a-b707-99a8fc088295 1 \N Other +0d864453-82d5-4a0e-9ee6-a85f7b5ae4fc 1 \N Other +0d8ab856-d005-4d31-92f0-4d44ea71af8f 1 \N Other +0d8d1c1c-0ffe-4bcb-81fc-3b44d9aec32b 1 \N Other +0d901304-364f-40fe-8e10-c5a36fe0a383 1 \N Other +0d919f62-cd24-4b95-a717-971f847ce8f6 1 James Other +0d934bab-b50f-4dcb-88f3-aee23e531eba 1 James Other +0d948769-d6b6-4d52-9377-22e78d458a21 1 \N Other +0d95f0c2-666a-4a4d-8672-cd31b74e8d1b 1 \N Other +0d970754-f876-4e21-977b-54b4faf4a363 1 \N Other +0d98f3f5-f631-4cc9-a50b-a8ec943ec93e 1 \N Other +0d9a3028-3a69-40ed-8e6a-2705d7c56198 1 James Other +0d9b5ee0-bd64-47d0-a2b6-d5e0ca420a13 1 James Other +0d9f360a-7aa8-423a-a9bc-be243c39919c 1 \N Other +0da16d30-4f39-4727-9beb-380bedc1b3f3 1 \N Other +0da6f4be-8622-4f5f-bcee-0608bd48fbc2 1 \N Other +0da75b82-e558-4e78-b5a5-29f6425c2e15 1 \N Other +0da8e7e6-8b0f-4cee-ad92-97438b15a524 1 \N Other +0dae588b-e9c8-4080-a8f0-b21828873886 1 \N Other +0db963de-c8ee-4540-bcd0-630ac8ffd85e 1 \N Other +0dbbf34a-9fbf-448c-8195-9a49833beda2 1 \N Other +0dbc0d85-03bd-446f-b86c-e67bb5f73c1b 1 James Other +0dbeb503-b7e0-46ba-bf1c-00a14c100310 1 \N Other +0dbf2526-d07d-4efd-a253-580429432c07 1 James Other +0dc191a7-7003-4a52-8092-2fc052c40f1c 1 James Other +0dc54340-0fec-4881-b4aa-e833579c4ce3 1 \N Other +0dc676c0-943e-4fa9-b3e0-82d22f4b1dd6 1 \N Other +0dc8347b-9d52-4f01-b85a-a86c2165a322 1 James Other +0dce80e3-536c-4057-927c-494ef303289c 1 James Other +0dd28cbf-3473-48d4-a0a5-c5bcd58a8af0 1 \N Other +0dd388e5-40b6-4482-b40a-709b5731f653 1 \N Other +0dd6c50a-b57e-4e7c-9aa4-3efd79fc523c 1 \N Other +0dd7aebb-0c92-4c6e-8db3-e98548881897 1 James Other +0dd853fe-7af5-4299-81c8-ee8105980796 1 \N Other +0dd9312c-59a9-4772-a133-7f35554ad385 1 James Other +0de01ac7-7d78-4c37-986d-f9c1142ca7aa 1 James Other +0de1a1f6-cc61-44df-a774-fcd8c6c1298f 1 \N Other +0de2393e-52be-4c3f-8eac-c5b221eeffea 1 \N Other +0de45290-6c70-4ed6-8536-1684e0af43b4 1 \N Other +0de8ef7d-228f-4c20-9081-1eaa9ca8fb38 1 \N Other +0de8fd1f-31f1-49fa-afe5-bc8a8f048be5 1 \N Other +0dea76e2-90fd-49af-a92d-57b1af9469f3 1 James Other +0dee76c5-585e-4183-9ff8-ab3d666cdcd6 1 James Other +0df175a4-9a2e-40cb-b4d0-19d61a4875c7 1 \N Other +0df1fce2-d201-41c5-8726-d3390618f3e7 1 \N Other +0df4b153-a061-4795-9fdd-e7f91636f058 1 James Other +0df683e0-5dee-4eae-a603-714a9d59b64e 1 \N Other +0dff5f1f-5e00-4729-b265-8b9f0256382d 1 \N Other +0e00d6f0-8dee-4b21-b834-3657001cbfd2 1 James Other +0e011f23-a1ab-46d6-87e4-ee61453db9d2 1 James Other +0e065a17-1832-4854-ac17-54928537c5ef 1 James Other +0e080755-883d-48bc-9520-28b8d0ecd688 1 \N Other +0e0927eb-a4bf-44ba-a674-44fd64026d16 1 \N Other +0e096e1b-5a6d-434b-9238-fca00d566f50 1 \N Other +0e0ac399-253b-48ee-8734-07d456c23435 1 James Other +0e0ed941-45f9-450e-b091-62f2766880ff 1 \N Other +0e1a03f7-66f7-4b9f-b959-209d67d6b49b 1 \N Other +0e1a5464-2531-4a6e-bfaf-e2ec5c2e2202 1 James Other +0e1d5865-b212-4437-a82b-77ca160b5488 1 \N Other +0e1dc834-1868-49e9-8de0-6210412204fb 1 \N Other +0e1e93f6-ca8d-4a91-8748-2b2ecee406a9 1 \N Other +0e1fa0fd-6b9d-49c4-9af3-e21aebef63fc 1 \N Other +0e260cb2-6e02-45ed-8d72-a8b984328fb6 1 \N Other +0e2ce042-857a-478f-87c5-bc686b82cd33 1 James Other +0e2e06e8-dbc7-4e28-83c3-6a0584d51056 1 \N Other +0e327ceb-fc90-4939-b46a-0df6eaa59440 1 \N Other +0e35ba88-a014-43ef-994c-aabfc308975b 1 \N Other +0e395081-9b5b-4e3a-9855-0e0599c4d78a 1 \N Other +0e3a39bf-42ad-4bc5-9577-84e4d45551d1 1 \N Other +0e40ca7d-969a-4d49-8688-1e085d711551 1 \N Other +0e435ed8-f871-4c04-a57d-5f51d3f1edb6 1 James Other +0e444792-7b56-4b79-967f-21dc5586d605 1 James Other +0e48066d-cd72-491d-a28f-1226288b692b 1 \N Other +0e4818cb-901d-482c-9255-c53a0cfa0631 1 \N Other +0e483fa8-3482-4c49-8ddd-7acfca9b4e9c 1 James Other +0e49aec6-8cf8-4282-9d2d-dd2d2912cc40 1 James Other +0e4b58ec-eb37-41c1-8b00-aa068d88e0ef 1 \N Other +0e4cecef-504c-40a9-b5ef-d226885f4b4f 1 James Other +0e51cda9-2558-4622-adb5-f7feb68980a8 1 \N Other +0e53314f-9fa3-40a1-a52e-36ec612dd0a6 1 \N Other +0e559945-68b2-48fd-8654-7579083c8a44 1 James Other +0e577dce-a715-4f1b-9832-92c631369e9c 1 \N Other +0e5a1fd0-bafe-44ff-b80e-551639148605 1 James Other +0e5d067e-17d9-4af3-aed2-3c6a34c60774 1 James Other +0e5d2005-77bf-44f7-935e-c095effef640 1 James Other +0e5e4b6f-3a32-4022-9402-17cfe92b4244 1 \N Other +0e60676a-2b49-4ff9-8cb3-c5b1720abcbc 1 \N Other +0e6338d1-472c-48ff-855e-766e4befedb4 1 \N Other +0e6a4474-9703-11e7-bb28-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 James Other +0e6dd60c-887d-42d8-b7c3-2fdcfd793743 1 James Other +0e6f952d-1858-426c-9b9f-fe2c37bbfaba 1 James Other +0e7183ea-0506-4aa1-a096-1fa3066b17ff 1 \N Other +0e743cb4-89e1-49c2-b25e-5667011534fe 1 James Other +0e750880-a5cd-4256-b88a-b1a0e6fa746d 1 \N Other +0e77bd2f-a312-408a-b144-4dd13c72a341 1 \N Other +0e781716-37d5-4212-8a37-9aed02f1411d 1 James Other +0e79da58-11f7-4f9b-a7cb-af3660387955 1 James Other +0e7a6d16-a91e-458f-b15d-9b693774cc8a 1 \N Other +0e7c2c1f-03c2-473e-9aad-6ad62a6610ff 1 \N Other +0e7db127-de34-4723-a69b-a31c697be367 1 \N Other +0e8627a7-ae9d-4b0a-85bf-2f38f4bd6bd6 1 \N Other +0e876013-c79e-4893-b077-a2e1a381c4b9 1 \N Other +0e915a91-ebba-4c9f-93a9-7506ab6bab08 1 James Other +0e98fe14-b59b-4b4a-a844-21693ad22326 1 James Other +0e99aed0-cdf6-48e0-9332-cb3891d5361d 1 \N Other +0e9b93b0-fba4-45a5-a36f-89bcd9ac402e 1 \N Other +0e9cc6b8-1049-4f2a-b940-e023e3c568d6 1 \N Other +0e9eb624-f580-4f4a-bb22-317493fc3d9c 1 \N Other +0ea06984-bd27-4e31-9bbd-6058115bb63e 1 James Other +0ea43995-33be-4e29-81a2-4d430653a219 1 \N Other +0ea76040-522f-46e0-84e1-7fa172f60a75 1 \N Other +0ea7d505-f8ca-4ef1-be4a-784905a2bb57 1 James Other +0eaad4fe-fdbf-4602-a21d-e5d0f4374d24 1 \N Other +0eadcc1a-88e9-41a7-9c1f-9b6c0941c928 1 \N Other +0eae6f5e-46e1-48c5-ad52-9696d54635c9 1 James Other +0eb4bd6b-a9f8-4793-85d8-64832344b7c3 1 James Other +0eb742fe-bc7d-4d57-bf4a-264daa8b030f 1 \N Other +0eb798c2-397e-4e5f-a058-ffb257466d09 1 \N Other +0eb80e07-f294-4527-b6a1-1e7fe7bc8417 1 \N Other +0ebdb98c-ea18-4d5f-98f3-5aa8cf2fbc41 1 \N Other +0ec4415f-7973-4b9b-a9a5-afbd69fd046f 1 James Other +0ec707db-688b-42e5-bea3-110d8b2922ed 1 James Other +0ecd48c0-6c6a-407e-ba5f-2daefbcad756 1 \N Other +0eceb18e-a465-4952-ae56-9a125df4f936 1 \N Other +0ed2bd21-60cc-4179-8f79-a87b5f8833e3 1 \N Other +0ed3cf79-ab90-4055-bd36-7a58988e743e 1 James Other +0ed5a867-2cdc-4cd4-9ecb-4908e8b388a4 1 \N Other +0ed7d007-98f0-4b2a-8a1e-5968e765ec31 1 \N Other +0ed89aae-3461-4388-816c-57b7ca73b12d 1 \N Other +0ed9e705-e4a2-40e1-a6b8-7fb8c217e298 1 \N Other +0eda8a87-a5fe-4e63-bfdc-24f283e07a50 1 \N Other +0edcbbbd-804f-4b14-a25a-78db5d0622f3 1 James Other +0eddc08e-be39-4e13-980a-b81c82680d23 1 James Other +0eddc592-dee4-4ebd-bf99-1c233a82169a 1 \N Other +0ede46af-1f03-47bb-9e0e-06d788103dcc 1 \N Other +0ee69259-199b-4a0c-a50e-8cff92b5c74e 1 \N Other +0eea9fc7-3a80-4af7-ac59-139a281958d8 1 James Other +0eeaf3de-c265-421a-9fa9-683d9120a2e5 1 James Other +0eec389a-f3ad-49c8-a0bf-57e9d1d1eeb2 1 \N Other +0eef2196-63d4-4076-a76f-7b18256ce26d 1 James Other +0eef8785-902a-4e59-9ef3-ab5ea1084916 1 James Other +0ef1599a-4fc5-4558-86b0-cdb0768dbbde 1 \N Other +0ef1e90d-013f-4c0b-a215-fe2382b2a626 1 \N Other +0ef2718b-d031-4f17-8749-52c8a00d5c3a 1 \N Other +0ef5fa28-cc69-45e5-8f64-9aa82485502d 1 James Other +0ef5fbf0-c21e-43fe-9f50-10771210bfd9 1 \N Other +0ef78e72-a4f6-4ffc-be0c-33a1ca476587 1 James Other +0efc5f3b-afc8-44ee-908c-29a99c9c2099 1 \N Other +0efee260-5edf-4a2b-b57a-23ca9ce70363 1 James Other +0f028e94-f711-45cd-98fe-1e3bc180e90c 1 \N Other +0f040be4-896b-486e-9f19-48b8981276f5 1 \N Other +0f057b32-3010-4eb6-9160-923122b791f4 1 James Other +0f0ea716-945c-4841-b674-ab8fa77a2114 1 James Other +0f1382fb-a604-4190-93d7-ce2790a276d7 1 James Other +0f19eb8b-5bfe-44c9-9c9f-87019edc53da 1 \N Other +0f1a843b-489d-4abd-9522-d3244d178692 1 \N Other +0f1b2a8c-dcfc-4d20-abe4-818c0ca61e46 1 \N Other +0f2058b6-6f75-48de-ae11-3a01cf00fcd4 1 James Other +0f221ca8-0b2b-4b86-9201-91d5191a836f 1 \N Other +0f26fa21-d26a-401f-8d71-8a265a472589 1 James Other +0f27fdd9-27b0-49d8-b142-240a426f7e85 1 James Other +0f2a0005-3ca7-42f0-a47c-150fa193b0df 1 \N Other +0f2a090d-2854-49dd-8dde-6665760a7788 1 \N Other +0f2a1511-952a-4069-997c-cc00ea029d9b 1 \N Other +0f2c82b2-1210-4cd9-9c2e-4dd9c82c8b88 1 \N Other +0f325260-0dfe-4edd-bca9-0cb5b9f3663e 1 James Other +0f336550-2102-40b5-8ab1-b57c7b3bdc03 1 \N Other +0f3446dc-3f58-4938-a146-2cd943eca940 1 \N Other +0f34ae32-64a5-46c5-91c7-d97835b77780 1 James Other +0f352c3a-c259-4790-aee5-075c81c7735d 1 James Other +0f36434b-4ef8-488a-9d5f-a62c204b3ca3 1 \N Other +0f3adc98-eafe-4c8f-89c3-bb38ef9e4b29 1 James Other +0f3c236c-9ce4-41dd-86e3-932e4b82b897 1 \N Other +0f4171ed-fec3-4718-ab49-749dd7c72209 1 \N Other +0f464ace-9cea-4a70-8c94-9ddceb257755 1 \N Other +0f47d87e-484b-4eb2-82e9-95ddd54e6de6 1 James Other +0f4ab77e-35fd-4c2e-97ec-1fa64a6455e4 1 \N Other +0f4b05db-b112-4196-b97a-2fca0d79978c 1 \N Other +0f4bbb8c-45a6-48df-8f1e-a60e26d303e8 1 \N Other +0f4d4364-e045-4738-a2fe-4e464edb91e8 1 \N Other +0f4e70e6-0389-4eed-b8fc-443255e23bad 1 James Other +0f508320-cfb2-4232-ad70-f3ea8216e666 1 James Other +0f50a4c0-f6d9-4c24-ba44-24bf7da46c35 1 \N Other +0f51f0d2-f575-4238-8e46-482b296896e1 1 James Other +0f52f21d-735e-4839-8acd-1bbe1d3fc5a8 1 James Other +0f5826e6-7914-4be8-b324-5f3c84823aea 1 James Other +0f5b7b71-da3a-476a-8dbb-ccfc1a25bf63 1 \N Other +0f5c2c76-a0e3-4648-8917-a366a4e3478f 1 \N Other +0f650dcd-d51b-4a5a-ba8c-bd0bff55652d 1 \N Other +0f654833-c8fe-44a1-958a-ec2b76af3b07 1 \N Other +0f664fcf-78b8-497a-b6bc-d3d753037132 1 \N Other +0f6bb70e-cb5b-48f8-a247-17bf9defc58a 1 \N Other +0f6fb1ca-f29e-470a-8a30-a2059f5a778c 1 James Other +0f70dba3-c120-4511-9843-69530336cb58 1 \N Other +0f714477-442d-4c8d-8f93-60d20266d9a1 1 \N Other +0f765d6a-b829-4bdb-93c8-db1f7c4b18bd 1 \N Other +0f79de65-6a4b-4088-83e9-0c8a0127a119 1 James Other +0f7a5106-0f84-4c05-98a4-76b7f166c986 1 James Other +0f7bc8c9-948d-4513-8d65-94ad4c077f58 1 \N Other +0f7f149a-dae9-4fb3-9368-1e24f28c97da 1 James Other +0f82faeb-abfb-4849-8964-b14b5d5c1cf8 1 \N Other +0f887897-0450-4b00-b2c6-7dad82856f49 1 \N Other +0f8a9b4b-35e6-4362-a5af-b158467a51f0 1 \N Other +0f903237-98d7-4fcb-bf3b-a9973fd36f4e 1 \N Other +0f925d4d-e78d-4fe5-9d6c-13300339c6b2 1 James Other +0f93dee5-c2b0-463e-99fc-ec98d1e973fc 1 James Other +0f977180-e8b2-41f1-bb2e-2c4a687e04d2 1 \N Other +0f9d9349-0392-43ac-a9e0-9d9c19762b6b 1 James Other +0fa10af3-babf-492d-98f1-d3dc12d26056 1 James Other +0fa6336f-b90c-4ad9-8983-fd5034381dc7 1 \N Other +0fa714c5-42f6-44a3-b446-aef994237f60 1 \N Other +0fafd8be-5136-4b71-9a65-66948e3ac8fd 1 James Other +0fb668b1-0f73-48b8-9cb2-e9167f1a997e 1 James Other +0fb7c9d1-fba6-4114-84ca-310b032aa40a 1 \N Other +0fbe70ee-4a1f-4c88-a260-20ad2a6c98f8 1 \N Other +0fbf267c-7f8f-4ff7-b393-3b59de0abbbd 1 \N Other +0fbf8403-8d62-496d-a67b-082416baa4d0 1 \N Other +0fc24bd8-311b-4b2f-b89f-04d01d45e28c 1 \N Other +0fc69ecf-9a8a-4ea7-b51a-f75363d80cc6 1 James Other +0fcae876-6481-4366-b08d-f0dc5e891a0f 1 \N Other +0fcb7e35-1ea3-4c14-872a-9b9134d801df 1 \N Other +0fd4d8ca-78f2-4b1b-b0ca-54c021d5b92d 1 \N Other +0fd4d8f0-e77a-4990-aec8-406898fd0082 1 James Other +0fd8b8d6-e5e4-4f52-a261-caadc923d167 1 James Other +0fd95ae8-4766-443f-8c29-714e495db99c 1 \N Other +0fe07ecc-0e9b-4553-b7dd-3a34f32bcf79 1 James Other +0fe784ee-9b0f-4775-be51-c4d1b43669c4 1 \N Other +0fe9367b-18ab-40e2-98e0-8ece7c2fc8b9 1 \N Other +0fed0e2d-d091-48b2-b3a1-dc28c4d26a86 1 \N Other +0ff024cf-0e3e-42b2-9207-c8359337a873 1 \N Other +0ff3bea3-b509-4553-9296-1bb2021f4982 1 James Other +0ff7c680-80a1-4f77-9d52-d1ec2be9cf40 1 \N Other +0ffe8b5d-a241-486b-b572-5f5c22d4da58 1 \N Other +10024212-6bb7-4936-834e-b2c5494c79df 1 James Other +1003f16e-9d1a-4812-8b78-03d02ab43b75 1 \N Other +100b79a5-4be1-4542-8b12-1d5ba5aefac6 1 \N Other +100bc7d0-25dd-456f-8834-2fb6adf4bc6b 1 \N Other +1010063f-ac4b-448a-9c8b-05d4527d6295 1 \N Other +10185937-2359-4b82-93f0-96f3cb157ed5 1 \N Other +1018c920-1ac6-4839-94c9-2fa4e5a5b491 1 \N Other +101af3c7-841f-4849-9f12-560125843aaf 1 James Other +10205ca2-9ad2-4974-8c32-c05708b744a7 1 James Other +10260d7c-e0d8-47ac-970b-07b2312c6c21 1 \N Other +1028eb13-a868-48ef-be90-c43258314d78 1 \N Other +10327dea-3e43-4e38-9f86-e2199d351a4d 1 \N Other +10389b34-881d-433c-9914-efb391dbcdc3 1 \N Other +103fe6be-dac8-4121-9718-694a0272c493 1 \N Other +1044755e-878f-4e13-b90c-d794c577f566 1 James Other +104b6c0e-af55-4b64-8394-04c6d38410b1 1 \N Other +104be3a3-4282-493a-8caa-290bc53e14cc 1 \N Other +104eecfe-3185-4d3e-aebf-f3992644e42f 1 \N Other +104f8ea3-5f9f-4510-8e47-7b08748489f7 1 \N Other +1057b65b-eb38-4bfa-8fc9-f333f3ae822c 1 \N Other +1057d2eb-519e-4e45-8d4d-096f4699a6e6 1 \N Other +105d70de-46cd-47be-8e49-ff8ee31b12eb 1 \N Other +10618805-cbf1-4ebb-bc69-edd90cc2595b 1 \N Other +10650954-f33b-4feb-bb99-af15541688de 1 James Other +106ca2a4-ad02-44aa-b4a1-19285f8b0030 1 \N Other +1075a95e-c49c-40b1-83df-a582156b1a96 1 \N Other +1077c5ef-a090-4d51-992f-180be10beb71 1 \N Other +10788d38-42b8-4521-b427-a89dc629bec1 1 \N Other +107af7f6-02ec-404d-a1eb-920aae828431 1 \N Other +107f7d93-1cf3-420a-9ebe-77b739517061 1 \N Other +1081481d-4bf3-43ab-b705-5c72f2c50e1b 1 \N Other +10845ea2-93ef-42eb-bf6f-b7226db86e9e 1 \N Other +1087ebd9-ece0-44c8-81ab-5e625ae69584 1 \N Other +10880535-bace-4dbb-b5af-fc55fea01f5c 1 \N Other +1088bad5-bcf3-4815-903b-2945addc5d45 1 \N Other +108b780b-87ff-4890-b2c0-10ab12106fb4 1 \N Other +109217eb-e3ca-4183-8f2d-0355edab1e70 1 \N Other +1093ddff-6419-41e6-a263-8eacbf24b648 1 \N Other +109d6c4b-955f-4400-855d-fca79d91bb08 1 \N Other +10a10213-eeb6-498c-8444-8dc13c4109d4 1 \N Other +10a27359-f980-4585-a8b5-1b3254f0b4bb 1 \N Other +10a52415-5217-4673-b9ef-e3e7299809f3 1 James Other +10ab78ed-e1bd-4b85-8f7f-c8bc0445072b 1 \N Other +10b2823c-6f37-4498-a95a-bbd2c169c61f 1 \N Other +10b34930-8e18-4b9a-a38e-e7e33fb84fbb 1 \N Other +10b3eacc-b002-4f1b-9895-94b05fc9bbc6 1 \N Other +10ba81fe-02b2-4b24-9301-948813468883 1 \N Other +10bbd9dc-2b31-11e8-902f-fa163e8624cc 1 \N Other +10bd3df1-4545-4bf1-9286-2982e1e0f531 1 \N Other +10bd6e52-7ec7-4fe4-8de7-58f9ba82bd14 1 \N Other +10bd7ba5-10f6-41fc-af3d-a72c4d278b8e 1 \N Other +10bd99e0-4cbe-4b12-ab00-c26096529b59 1 \N Other +10c0e147-f56e-47ea-9bbb-71a1e858c555 1 James Other +10c19804-1dcc-4f6a-9836-12c971021df3 1 James Other +10c21d12-9299-4e24-bf6f-924e52e0103f 1 James Other +10c24c7f-47cb-453f-8972-ed37c9882bf2 1 James Other +10c3cada-c581-4c60-ab37-334b6a7e108e 1 \N Other +10c723e2-17c9-4980-b0e5-bbf9d62075a7 1 \N Other +10c78c00-abd2-4a68-8d45-75f07ebc53f1 1 \N Other +10cc7036-2940-491f-b7da-58cb0fa629ed 1 \N Other +10cf38f4-5c50-4c75-b718-2640b1d457a3 1 James Other +10d0b6b6-872c-4323-a34f-479685cab934 1 \N Other +10d1bef9-aa8c-49be-85f1-29c533397f94 1 James Other +10d3097f-d408-47e2-aa0c-8797c7f9516b 1 \N Other +10d3483a-f280-428a-9330-edc18508cbab 1 James Other +10d36ae6-dfc4-4133-bb6e-bf9e01524d6a 1 James Other +10d75721-b4b2-4108-bcee-07d2343d0b51 1 \N Other +10d7ced1-0adb-4695-8df1-c712ac5a9499 1 \N Other +10dfb4ed-b554-455d-8a55-b319158c1aa7 1 \N Other +10e1e637-ff8d-456c-bc67-8472e984002e 1 James Other +10e54089-d4e3-4e29-868f-694335ded170 1 James Other +10e5e345-221f-49be-96c3-72760f7aa6ed 1 James Other +10ebd4cd-fe96-4e89-b8ba-618b9c609dab 1 \N Other +10ee61a9-94bc-4beb-a1dd-b3b992702142 1 \N Other +10eef88d-fa41-49f2-8626-92f404b06bb3 1 James Other +10f164a0-f5b7-4e72-b1e4-5ca74f566cd3 1 James Other +10f3b829-3c49-4b53-9eee-9515848eb5ae 1 \N Other +110199d0-0f1c-4ee2-afb8-eb037ce7dae9 1 \N Other +11041237-279e-49b3-b43d-ef5e6efbd9af 1 \N Other +11085d02-6a3a-4c7d-99f6-1403491e51db 1 \N Other +1109dfd8-2b31-11e8-841e-fa163e8624cc 1 \N Other +110dfdff-b10d-4926-bb76-878ec82a0b26 1 \N Other +110e7426-f5dc-42bf-aa40-9b2481a6eb4c 1 \N Other +111355e8-edc7-49d7-9589-0301dd9396a7 1 \N Other +111403b1-5ac2-4dd8-9edb-4221107dbdd9 1 James Other +11174414-147a-46c2-ae24-4184ed7b83f5 1 \N Other +1119310d-f2b5-4251-98e2-ad47a1faa392 1 \N Other +111bd5cf-f4f9-4e4d-8a57-ea53aefb11cc 1 \N Other +111d54c1-5400-4307-8e59-ce4ed4251735 1 James Other +111f709a-4555-4588-afa9-b3eb6b1cdcda 1 James Other +11226a3f-c3e9-4a45-bb81-c51749d0a948 1 \N Other +1122f594-17b7-4e99-8fe8-725abb43f647 1 \N Other +1122f893-c194-4a23-8302-488703f73aa5 1 \N Other +1123455a-61f9-47d5-a689-c00d2ac64e01 1 James Other +112463d2-1134-4e38-8192-7ca3e16690e7 1 James Other +11273c94-235d-4a95-ba75-757ad012be8c 1 \N Other +112b666c-a54f-49cb-896f-81f3abb9ebe8 1 \N Other +112c8fa8-1863-48fa-bf8d-2ac775793a4f 1 James Other +11317027-f14f-4023-8296-c0e1cee366d4 1 James Other +11335c9d-dc7e-4e62-9310-1a1a38dde56c 1 \N Other +1137dfae-d947-4d0f-b1e5-ac47be73c173 1 \N Other +113ae132-fb12-40d7-865a-01dc66dcacb3 1 \N Other +113ca07b-59b3-4a90-aa34-e77a11aa8139 1 \N Other +114b66ac-bbb8-4278-ad7d-3293d143f646 1 \N Other +1157b6ee-e7b1-4793-bfc2-2a4f1f07941a 1 James Other +115b583d-8542-4021-b8cf-83e888cd1dab 1 \N Other +115b60b2-7f87-41f5-8711-c6af5e21b74f 1 \N Other +1161b9c6-1724-4d11-a049-61cb6c990865 1 \N Other +1163ccd8-5864-43d9-b12e-3a4aaad1ed23 1 James Other +11640d58-e8b0-452b-b120-429b369e40db 1 \N Other +11667b6d-f4df-4c93-8036-c2eaca347600 1 \N Other +1167000b-9468-48cb-a5ef-c9944255547a 1 \N Other +11677e2a-acd5-401d-aa46-bd0aa8f956f5 1 \N Other +116be260-96f2-11e7-bc89-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 James Other +116c8628-e331-41f2-8995-907957c7d051 1 \N Other +11749c71-9260-4ef4-98e9-b647a7f00d53 1 James Other +1178064c-ffc6-4d23-809a-d8efaf04071f 1 \N Other +1178b843-4ac8-4974-b5ee-d68de1aed46b 1 \N Other +1179cbfd-6ef0-41e0-a875-b173bf6803dc 1 \N Other +117ab833-876f-4135-a6d4-b050c5c291fb 1 \N Other +117ae85b-dc5d-41eb-b3e8-980022925848 1 \N Other +117e39c0-78f4-4f74-841b-67e4c8ea245b 1 \N Other +11849651-bea2-4744-a3a5-84e144659cba 1 James Other +118ce75d-b2b4-4330-b8c4-6b580e11f399 1 James Other +118d4463-c58f-4248-bb69-3def4813b951 1 \N Other +11939c86-4e7d-4f8e-b8c9-e3791bfe7cd2 1 James Other +1193c05e-1687-11e8-ad3c-fa163e8624cc 1 \N Other +119508bf-ab35-471e-99b5-5f47bbb45f13 1 James Other +119786e4-6286-4b6a-8111-ec697d6a1510 1 \N Other +1198650d-9b6e-41e2-9ff5-c81af53a8a4f 1 \N Other +119bf61d-d30a-46c0-ae98-49c2cfadddd4 1 \N Other +11a33aca-182b-4c26-8557-ecfdeb1ec03c 1 \N Other +11a6be47-8894-4759-bdb0-4b3c0d5f9624 1 \N Other +11ada872-8c50-45a9-a775-542bf4ce1723 1 \N Other +11b0c316-4c95-4893-b424-42c4431bb477 1 \N Other +11b43901-4c2a-49ea-945b-9a6fbea9a8dd 1 James Other +11b5d34e-fd61-483b-babf-3208a75180cc 1 \N Other +11b7c01d-2f59-4fa3-b758-1142d0452561 1 \N Other +11bcbda5-3e99-40c5-b6fb-e53f9a668cb6 1 \N Other +11bdd9d5-240d-4d95-8678-d92df4ff09c6 1 \N Other +11c0ce18-6788-4ca7-af5e-09ff019dabe0 1 \N Other +11c14f89-7782-4755-8458-abb4abd6f029 1 \N Other +11c71b95-2073-47f5-86ec-7ec858fffc36 1 James Other +11cbc5f4-4b69-40eb-b3c1-60f8d0021a7e 1 James Other +11cbff3c-1687-11e8-a8e5-fa163e8624cc 1 \N Other +11cc424e-e1c9-4637-8366-2a8f6dce667c 1 \N Other +11cdb33b-cd18-404a-a63d-dd3848233234 1 James Other +11d0c5e3-0df2-4f81-8a33-b6c7555836c2 1 \N Other +11d0d23d-4d67-4e46-8803-c71f2f509029 1 \N Other +11de5e16-5152-4525-af96-b5c3f1f4fecd 1 James Other +11e349ba-201d-4652-b108-a55498e73535 1 \N Other +11e37ae2-4137-47cc-8437-ec6f11c79ec6 1 James Other +11e4892a-e276-45e6-ba86-15cdb5b55529 1 James Other +11e5a674-90f2-4e53-bfa8-a3940a2673c2 1 \N Other +11e71bed-c8f1-4fb0-98b3-671e05852425 1 James Other +11e7643c-4167-40bd-9dca-1699e887c45b 1 \N Other +11e7c395-a33b-47f8-b603-983b7e0d87b3 1 \N Other +11ec654d-f719-4f71-a5a2-668c33b0ba88 1 \N Other +11ec6a33-620a-4177-adf1-50682510e6bf 1 \N Other +11efd17b-7a69-4676-856e-5b94504dae9b 1 \N Other +11f1fba5-de4b-453c-9ce5-04e4a1cbc443 1 \N Other +11f58979-afe9-4bfb-8d02-42a27cd24712 1 \N Other +11fbb5cb-0e0b-443f-854b-8d4bfe790359 1 \N Other +12002ac5-13d2-43d0-8928-3eb5e9cbd905 1 James Other +1200771f-7f6d-4bc8-b923-9983291d8bb5 1 James Other +12070ca5-0ee9-460d-ac5e-cbc98c6bed30 1 \N Other +120a44f1-8d75-46b5-882f-601bc2a873b2 1 \N Other +120bcc51-4621-489a-82dd-303e3d545632 1 James Other +120bd662-6ac1-4cc1-98c8-3109ecbbba33 1 \N Other +120eeb20-5a32-40e6-9e5a-fd4d5a13201e 1 \N Other +120f746d-c16f-4f41-aade-e1152d465533 1 \N Other +1212c698-eb98-41c0-bdbc-cc8fe4861d96 1 \N Other +1215bbb1-9771-4e40-b584-c2ba3041df78 1 James Other +12171834-dc57-42c1-b79d-18f7ba02ef22 1 \N Other +12195f02-d45b-49dd-b596-13f2006c502f 1 James Other +1226347f-3686-4222-856a-2af65af224e4 1 \N Other +122ab43b-6b61-458b-9167-393fb48bf6be 1 James Other +122b2911-65c7-46f7-ba38-4b7556e167d4 1 \N Other +1234fba3-38c1-485a-a9c9-b085224ec30b 1 \N Other +12360091-de4a-468e-a334-233b83c75f03 1 \N Other +12372f69-4940-42dc-87c4-14b931f99446 1 James Other +1237e83c-41ee-42e5-ab52-a14ae1442993 1 \N Other +12382d70-0ada-4dfa-b549-e07be2451e5b 1 \N Other +123c6e07-38a1-45e0-8e1d-296b9be6abd3 1 \N Other +123ea813-37a4-47cb-a44b-9792b0a74a4a 1 James Other +12400ea1-1e47-4bf2-a1c4-08497b84f81c 1 \N Other +12403420-6ea9-49e9-b95e-ffbe02c8a0a0 1 \N Other +124372e7-ac41-4a83-b440-5aee319ca1e3 1 \N Other +12440a3a-01cc-4230-a855-a886236e25c4 1 \N Other +1245204d-a77e-4867-93af-891c0ffdbb80 1 \N Other +12467776-d50e-42eb-8efb-b099f903d20b 1 James Other +12495e8b-4b53-4a1f-ac4c-80dcdaea0f68 1 \N Other +124a88cb-f13a-4200-a111-62db2c12264f 1 \N Other +124dda84-026f-4cdb-b077-2d1cdff0b7b8 1 \N Other +124ead7c-e4ff-4172-b4d4-deac98ea6975 1 \N Other +12508670-8f9a-49d7-b18b-b4f6740e3b1a 1 \N Other +1253be7a-d4c0-4e89-aca9-7861db7320b1 1 \N Other +1254b144-6a08-494f-a7b1-13972359dc89 1 James Other +1255d82a-feff-4b8d-9977-22557a31b3bc 1 James Other +125729cc-634a-41db-b8fc-16ab34772584 1 \N Other +12580214-99a4-4247-9576-454ca84575d3 1 \N Other +125fc5c9-d49e-4a4f-a845-713d8b501b71 1 \N Other +1262d3b5-bde4-4e75-bf15-c46e8623fc7f 1 James Other +12697405-ebf5-4cae-a218-573b2c4f88a3 1 \N Other +126d5657-23f4-4c83-8244-5691b50f283a 1 \N Other +1271cee6-f4e1-427e-bfd8-41e8ee5e4287 1 \N Other +1277bedb-194b-425f-9017-31d1f5420606 1 \N Other +127960df-1c7a-4f2b-b5c9-edffb8ffc112 1 \N Other +1279b4e8-40c4-4553-b3f0-fff2542c3d19 1 \N Other +1286a84a-3665-4544-8080-67d5cacd259f 1 \N Other +128769a1-dc5d-4db2-a29c-42565bf4db04 1 \N Other +1287cda4-976c-4339-b4f5-2a6a0304444b 1 \N Other +128a3048-8b1b-4b53-825e-de159e1bc1cc 1 James Other +128aadad-c02e-4520-afb4-9ced94309926 1 \N Other +128bd435-119b-49d0-a5d8-5f4de7d5251c 1 James Other +128d11cd-cd10-4e5b-a4ea-113743bce5e8 1 \N Other +12947b2f-08d3-4f60-a14f-74c937712f5c 1 James Other +12956ce8-7cc7-4504-a9f1-657681c9dcd8 1 \N Other +12967846-ab08-47fe-97c2-1816456c3e0d 1 \N Other +129b08a3-25f1-45be-aa08-67f60c536cae 1 \N Other +129b6bac-5eec-4b25-8912-44c842c4a92f 1 \N Other +129c9923-8ead-4ffd-a226-68079e2daa05 1 \N Other +129dddbe-53f6-4108-a723-92aab49c2c3b 1 James Other +129e57d4-9a9d-4b75-ac8e-8d34bae7face 1 \N Other +129fc0dd-1761-4c28-b9d7-3cc5a68d0465 1 \N Other +12a000a7-7687-467f-b59c-ab0ad9377762 1 \N Other +12a10da4-d50d-4df7-8b9d-8ffdd1899ae9 1 \N Other +12a23e29-4372-45de-91d9-ad90770018ce 1 \N Other +12a24c47-32c8-4ce8-b224-d4bf60a64aec 1 \N Other +12a3cbb1-54ff-4c46-8169-eb947e1ef995 1 James Other +12a4bcd6-7bf1-494a-8539-5f62e579e959 1 \N Other +12a4dd92-8407-41ef-ba08-f5e3d2adbbee 1 \N Other +12a66ca4-af29-4307-84c8-0264debf195e 1 \N Other +12aeeb29-dbc0-4018-bdac-acdfd4262add 1 \N Other +12af031d-81c2-4890-8152-6cd7f35fbce4 1 \N Other +12af8093-1ca1-4554-b9e7-f2b9718021f6 1 \N Other +12b0c2bb-062c-4509-8755-3356d4fb57fd 1 James Other +12b30848-aad9-4042-8970-a521c4ea5ba4 1 James Other +12b96633-42bb-4fee-afa7-ada47349fa7f 1 \N Other +12ba9c64-3921-4465-a159-646e10080f5a 1 \N Other +12bd713b-15c6-4903-83c3-f1e1f8ff09d2 1 \N Other +12c22bba-b0e0-4b70-a62d-ae2733b0bba5 1 \N Other +12c4d920-1c5d-4644-aae1-acd4ba30f7b8 1 \N Other +12c66570-1132-4533-9b88-9f7629d603c0 1 \N Other +12cae05e-a29a-4944-a41f-4ca7c4461d29 1 James Other +12ce139c-6a8d-4219-ba67-f8110bcf475c 1 \N Other +12cf6b98-7cce-43a3-8287-448869359881 1 \N Other +12d69eaa-22f0-4bab-9fd4-a9de2b8bc633 1 \N Other +12d9b019-641a-4432-9aa8-6260852fe55b 1 James Other +12dad71e-7914-4dc6-8b1d-b1efe84e1830 1 \N Other +12dc747c-fb03-4a65-ac57-47deaabdd269 1 James Other +12dcfa99-92a9-4d5e-852b-872913b1aeea 1 \N Other +12ddd824-7f27-4996-b80e-ab744c2ad270 1 \N Other +12de86ad-833f-4527-98b3-30fcbc264794 1 James Other +12e27ab5-dd88-4177-bf54-bc90a936747d 1 \N Other +12e4e1a9-472a-4e45-8980-eeaf5d438cd2 1 James Other +12e61b9b-8258-41b6-92e1-e7834eb9c5e1 1 James Other +12eb27d2-0dfa-40d6-afa0-8146a8a1677f 1 \N Other +12ed3822-1622-4b4c-b81a-e8405107c08b 1 \N Other +12ef78c4-8f41-46c9-8207-e70c406fb89d 1 James Other +12f05661-f5c9-40db-ba3a-57a8ddacf2be 1 \N Other +12f41f60-e983-461b-9046-5b23fc7b2b86 1 \N Other +12f4ba8c-173a-4b2e-b618-ff68a7960087 1 \N Other +12fa4f2e-d404-4e6b-8127-39f67ed0c301 1 James Other +12fcc2bf-724e-4394-b6e0-9d43bb29bdc3 1 James Other +1303d2cc-f416-4b65-8848-d8db74592fbb 1 \N Other +13061c96-cfe1-4687-b81a-0070632078a2 1 \N Other +1307ce49-732c-40a1-9a93-4cfbbdb99ea4 1 \N Other +130f3143-8614-4ab8-9030-bd297ede0b4e 1 \N Other +131657c0-9949-42fe-b030-42b264cee457 1 James Other +13183f5d-4606-4870-8c20-c0eb719ceabd 1 \N Other +1318b1ba-85bd-4036-bfeb-3b71dc4d9c04 1 \N Other +13205ecc-bdd6-47fa-b321-23d981e731c9 1 \N Other +13209fac-1d0b-11e8-a10a-fa163e8624cc 1 \N Other +13298333-0fde-4abd-bac7-a2279509d832 1 \N Other +132a1cc4-d7b7-4ec6-a5fc-578c3bc335fa 1 \N Other +132b4a2c-a2e8-4caf-9645-2ae9c7903dda 1 \N Other +132d3b5d-c635-4d57-91a8-8d6a437ff309 1 \N Other +132ec958-78f6-49dd-b59e-7a6856be35b3 1 \N Other +1331b447-7f4e-4f3b-ab55-cc8b97578b7a 1 \N Other +133a3e3f-086b-498e-b558-66e9bbd4fda8 1 \N Other +133d2208-e248-418e-8be4-fc5f26db4798 1 \N Other +133d3f3e-1e24-47c3-8c37-837122d8a570 1 \N Other +133d5c6a-93cb-4775-8700-229e226692d1 1 \N Other +13450fbc-3933-4783-99bf-754c818e0df0 1 James Other +1345a6ca-feb3-4076-93e5-f9e289833716 1 James Other +134b30fa-1b80-11e8-8b26-fa163e8624cc 1 \N Other +134baeae-dfb6-4247-be57-ebc02e27965f 1 \N Other +134bb24b-c45c-47f2-ae98-d6a78a991707 1 James Other +134bdf88-fac6-4c6f-bef3-c664116a4e75 1 James Other +134f934e-d86d-42e5-a1e6-1f97fd1d51d8 1 \N Other +135347b9-9933-49c4-81f8-e4d26b60fd1a 1 James Other +1361b0e0-aaf0-4ee1-81cc-7f90647411d9 1 \N Other +13623e6a-13b6-4fe8-9407-9200611da176 1 James Other +13630e6a-db43-4016-b2e1-e8b16b5edf2d 1 \N Other +1364ec70-8e95-40e0-abb5-d06fcbfef702 1 James Other +13671d60-1d0b-11e8-b8f1-fa163e8624cc 1 \N Other +136c2e05-bc8d-4b66-8006-70bb64088727 1 \N Other +1378e865-d51c-48a0-8a30-4c4ebc537c25 1 James Other +137979b2-a31b-45e9-900b-e67655cb32ba 1 James Other +13803eb2-1b80-11e8-a940-fa163e8624cc 1 \N Other +138413c2-2e3a-4e36-886f-1e8e1301e78b 1 \N Other +1385ba26-49b4-4646-8682-3056253e1b1e 1 \N Other +1387c9e7-fc91-451e-9a7f-734792519051 1 \N Other +13899da6-a097-48b3-8c14-dec9992b5253 1 James Other +1393aef7-8409-4f09-89fc-c91f974657dd 1 \N Other +1398493a-dbd3-4ab3-84d5-bbc314f279ac 1 \N Other +139c9c2b-e2fb-4836-831f-d2d2b5ab870d 1 James Other +139de5fa-383a-415e-bbc6-a81bccffaaa0 1 James Other +13a107a0-35cd-4fa3-9103-c6a15a8efa65 1 \N Other +13a54a91-47e3-4648-827e-bcd7709d9c89 1 \N Other +13a5d244-542c-4c4f-bad4-2833941a4619 1 \N Other +13a674f7-05d3-4790-ad02-0a4ae7422513 1 \N Other +13aabebe-3fd5-412a-a2bb-0d1f3bd350d6 1 \N Other +13b03bcb-b059-4911-b855-1f898a5f09d5 1 \N Other +13b0652e-2cca-4806-8672-5e245538d293 1 \N Other +13b3b4b4-8513-4e5a-8c10-4921876aced6 1 \N Other +13b47b1d-503b-4b8c-bc17-201c5f5dfefa 1 James Other +13b6a846-8ad2-48dd-9f50-9695cb7c5250 1 James Other +13b8b5e3-82eb-4b20-bf5b-8a17299af699 1 James Other +13bb5324-ab27-49d4-adf8-7fade1a8fc17 1 \N Other +13bf0f0f-6f9c-4dbc-8cb0-116d01551f1b 1 \N Other +13bfe1f1-7b2d-41df-85ab-0aa469df01e7 1 \N Other +13c312ed-c411-4b74-a6ff-93416f08586e 1 James Other +13c6af1a-da08-4b1a-82f0-f546c971d708 1 James Other +13c77c17-764e-4e0e-8654-9407107923b3 1 \N Other +13c833c3-44c3-463d-a1fe-9614668354aa 1 \N Other +13cf9225-b14a-4d73-9834-85faf38f68d0 1 James Other +13d13c36-d080-4f2e-821a-4cc288198eb0 1 \N Other +13d3079d-c60e-4f61-8c01-3a2d2d4061d1 1 \N Other +13dadb73-ba68-4b8e-9832-3c6199bb79df 1 \N Other +13dd1ae4-f2a9-4819-8961-3439bbd0cdc4 1 \N Other +13dfb3ee-054c-43da-8222-90cd595178f8 1 \N Other +13e31165-faca-43e5-b488-5c8b2f4e0fb7 1 \N Other +13e3f474-a360-4076-90cf-fc522510c6f9 1 \N Other +13e84dc5-2af9-4b4e-bf7b-7daaad5e421a 1 \N Other +13ea6e8b-073b-43fa-8825-ab51db858e2f 1 \N Other +13ec4281-192b-463e-95ef-ac7abd4746fb 1 \N Other +13ec9469-1841-4e50-99ef-3b88b6233be1 1 \N Other +13ee7c31-f2ea-4824-a8e8-76a6f96d961a 1 \N Other +13f3f6fc-7ca1-49d6-a169-af043e716c9b 1 \N Other +13f454c2-c498-4da8-b2c4-05b70bee8755 1 \N Other +13fc9d58-35b7-41cb-addf-06202b8984e6 1 \N Other +13feac5d-21ef-4b4d-857e-6dbea60a6fc8 1 \N Other +13ff850a-1531-4732-b35e-2dcd21b8a019 1 \N Other +1403b938-2237-4f83-86c8-8bc4e4190d36 1 James Other +1403db21-64cf-462d-bc97-5fcd23a01433 1 \N Other +14043081-b336-4804-814e-6659e4accffe 1 \N Other +14066fa3-af7e-4e08-b940-fb0f1344ac2c 1 \N Other +140d2449-3445-4794-ba5c-84b938d2e199 1 \N Other +14159f5d-10b7-4972-984f-a68d95d8f94d 1 \N Other +1416be4d-9dc9-4b33-8b8c-150cff92c234 1 \N Other +1423197e-5367-481c-aba5-5b10cf16a3c4 1 \N Other +1424da33-4a05-422e-92fd-67f6b06f240f 1 \N Other +142b938c-15a6-481a-b999-550f65071663 1 \N Other +1435baae-eda6-4db8-a50d-e43b7edc8093 1 \N Other +1436ac03-9d56-4b44-8fce-0f87e024736d 1 \N Other +1436f5ba-46fd-429a-b0e9-07fba46ed8be 1 \N Other +143963bd-3bcd-4d85-a6a4-e32394e83ab4 1 James Other +143edb6a-244e-4963-abb5-3edbbfcf5156 1 James Other +143f649e-dda4-42ab-a38c-0d639b001e6e 1 \N Other +1442bbfe-3e87-4a1c-9aca-6dc2482a09d7 1 \N Other +14436cda-7b20-486b-9d8e-368a37ce70d1 1 \N Other +1448aff0-3c40-428f-847b-0f6f543868d5 1 James Other +144acf40-2538-4fff-8556-f45166c0309e 1 James Other +144cf1c7-023c-43eb-a037-b52603542623 1 \N Other +144f8f0e-4202-407b-9689-93f854bc5f4e 1 \N Other +1451186f-33dc-45ae-af96-480e2b3bab58 1 \N Other +1464dde4-50be-4192-a00e-90faf7d57bdb 1 \N Other +146abeeb-a6da-4f81-89ef-84b4e0a88b51 1 \N Other +146b173f-c9d0-4b3e-802c-42a38319c76b 1 \N Other +146e29db-3228-4003-bd63-72442d186268 1 \N Other +146fc7e6-5111-4f9f-bc1b-0c696059673e 1 \N Other +14706aff-25c5-40cc-82c1-20618fea80eb 1 \N Other +1470e174-07f7-4bcc-8d40-84db91dbea2f 1 James Other +14738bdb-e956-4f00-95cd-d457694fda5d 1 \N Other +1479f7ba-6942-4815-87ab-63261a8d73a9 1 \N Other +147ebc32-4029-44cd-ad3a-9119640aa084 1 \N Other +148022c5-8f37-49a0-8d84-5256666b1d00 1 \N Other +14863a25-7557-4abd-a2ba-345a03d682e4 1 James Other +148a14ff-452a-4e77-ac01-8f064b1724cc 1 \N Other +148c73b1-b1fb-4a1b-825e-1bbe0d8c68f1 1 \N Other +148db1f9-1660-43c2-96bf-f2db86a3a515 1 \N Other +149027cf-4dc3-46e7-946e-94cf4abc4ded 1 \N Other +149348db-cc78-41b4-ad3f-646db604e7db 1 \N Other +1497f0e4-acdc-4355-b00e-b5354c4b4993 1 \N Other +149c26b3-212f-45be-83e3-b031d4f74a27 1 \N Other +149d2fce-7ea1-497a-87d8-2d48c39eff14 1 \N Other +149de1f6-282d-4648-9854-e28a5b8ae645 1 \N Other +14a17e34-64c3-404b-bc59-d1024b6cd783 1 \N Other +14a361a7-7a36-4179-99bb-4e6ba465c47b 1 \N Other +14a6cee6-bf7c-40a0-a3a3-6f2199fde377 1 \N Other +14ad8fd9-e6ed-40b0-aa06-227aaeab9ec6 1 \N Other +14adecf8-78f2-47f3-9ccc-91e73857258c 1 \N Other +14ae7909-2a4b-4677-bc0b-d6822db56fda 1 James Other +14afb626-0b25-4759-ac19-e757d0e97f1c 1 \N Other +14b44823-4027-4035-8a02-793cc0e12058 1 \N Other +14b552b0-2597-11e8-a235-fa163e8624cc 1 \N Other +14bffc95-77ad-4771-9332-d4a01d8ae758 1 \N Other +14c2ca6e-b66b-4b04-9943-524334378c5a 1 \N Other +14c38d61-a34b-402f-8049-f250650bf6e7 1 \N Other +14c3f7d0-3638-444a-aba9-d2d6787ce30b 1 James Other +14c6487d-84c7-4498-9b99-0b1638da6300 1 \N Other +14c764c7-461d-4c18-9851-e502e98e15da 1 \N Other +14c87de6-0d89-4fb6-a14b-2684ed39e22d 1 James Other +14c9b02a-2c52-4aa5-835e-7268ca0237a2 1 \N Other +14ce9bf8-2597-11e8-b760-fa163e8624cc 1 \N Other +14cf5cf5-9be3-42bb-b58e-dffb2baf472c 1 \N Other +14d141a0-c1ad-4ee8-b91e-151a0ef6f737 1 James Other +14d31a75-f266-4b30-8846-df26bab4f996 1 James Other +14d7ce11-75fc-4342-b6ae-71fb1145d625 1 James Other +14de0771-094c-403c-89a5-953fa129c5ba 1 \N Other +14e9b08b-e428-4935-874f-bc18beb97fdf 1 \N Other +14ea2e14-da9c-4a6b-981a-2e87835ea742 1 \N Other +14ed2d63-59a9-4bd7-8253-1e553421a0e4 1 James Other +14f2afa3-37f8-4e19-ad64-109d91f317ac 1 \N Other +14f32e88-3272-4e47-b33c-af1baf7bdabd 1 \N Other +14f5927d-277c-499f-9f86-8214b3b732d0 1 James Other +14f5ad69-cbd7-4bbe-94e8-e498c7c98ba2 1 \N Other +14f64ab8-c4db-414b-b326-fb60b65ca7f2 1 James Other +14f8cae8-8abb-4064-bfce-325c77f30008 1 James Other +14fbea17-5ca3-43d0-aec8-b5682b60a125 1 \N Other +14ff76d3-bd6f-4707-bda8-bf013d9fbc69 1 \N Other +14ffde91-3a2b-46dc-9a67-1afdfad36a3e 1 \N Other +15012a0b-e39d-4a0a-8ffa-58a2aa0d4376 1 \N Other +1505d033-b82d-4bb8-9110-cbba44d71f87 1 \N Other +15071c39-5087-4123-a119-75954936a51f 1 \N Other +150b1a6b-e3aa-4126-8646-513cfb8ab6dc 1 \N Other +150c1f29-b84b-400c-ae9e-fc0ce0987231 1 James Other +150f4afb-28d9-404c-a3ff-fedbdfd2049c 1 \N Other +150f8013-ae9e-40c5-96f5-58c7cb817450 1 James Other +1511d84f-bac5-4362-a0f4-549b719e1a5f 1 James Other +15120909-4da5-498b-be94-bfbbccc86403 1 \N Other +1512a535-7e2f-4f65-887b-dedd01a8e882 1 \N Other +15175c76-2597-11e8-ae3b-fa163e8624cc 1 \N Other +151e4eab-72a7-41da-84c4-78c9a031b37d 1 James Other +151fc616-1a3a-4455-bdd3-1b51c75cb8f8 1 James Other +151fd450-427f-4505-bbb7-153917b045ed 1 James Other +15201b23-7e7c-4ff9-93b0-e2abc263643b 1 James Other +15219be6-2597-11e8-97f5-fa163e8624cc 1 \N Other +152af247-6cad-4b4b-b624-59165289f5a1 1 James Other +152b226a-c2df-4068-a413-844bdafc661d 1 \N Other +152ba965-f38f-4a16-abe4-1f7b8e098ed0 1 \N Other +152c46a2-a898-4f1d-9eed-f8ef41eb318d 1 James Other +152cc6b4-5030-43be-ac8a-8c17aed02746 1 \N Other +152d69bf-b9ba-4df7-9bff-66f5b11d2799 1 James Other +15306470-adb6-4153-8085-a39ae9b030d7 1 \N Other +15333334-b980-11e7-97dd-fa163e8624cc 257f6774-64eb-11e7-954b-fa163e4dd901 James Other +1534a189-39e0-41ac-80f5-c37fcd135ca4 1 \N Other +153817ce-ee1f-481e-8954-cb62aebbb945 1 \N Other +15396063-2e9b-4395-b14a-584f080d6a1e 1 \N Other +15396992-58ea-4320-9e6a-312ea592cae6 1 \N Other +153d943c-c1f4-41e5-ac12-9364da6acf2f 1 \N Other +154c3f92-f20b-4e47-9713-e26baee71fb7 1 \N Other +154f8133-80c3-4572-be15-4afda7c1c3e4 1 \N Other +155ccdca-9430-4974-93fb-6cd786a6a6c7 1 \N Other +155ce3e2-6f8e-4b51-b597-3d03afd1c374 1 \N Other +155dccb1-3e1b-4001-b7a8-a311ee5ec695 1 \N Other +155e5175-a7fa-4b4d-83a4-1fe59daa50f8 1 James Other +155eaeef-a559-4bc8-84c7-810c879b4675 1 \N Other +156103d8-767f-4e78-9bf6-58d0435b33e0 1 \N Other +15612d43-d2ae-4f67-bf9e-d762da7ea3e3 1 James Other +156234ec-6991-49ae-9885-87830a18c63c 1 James Other +156869a6-b084-4e56-b2cb-6034c76b47f2 1 \N Other +156910a9-a311-4b9b-8a0c-4493d1047c3c 1 \N Other +156921e9-528c-4720-b737-c9a41e90bfb0 1 James Other +1569b8b6-4dc9-44da-8506-6547d8c6d39e 1 \N Other +156bb092-5a0f-4792-b0b2-911880278017 1 James Other +156dc91a-7c68-467a-b00c-b6256a01dfc2 1 James Other +15762b98-64c4-41c5-840e-466158e37dba 1 James Other +1579f8f0-48c8-477d-9a64-4f1826a4decb 1 \N Other +157c470f-1194-4ad6-9391-e9f430a29d8a 1 \N Other +15814dd6-3148-4f69-b586-256403c1ca0e 1 \N Other +1582a7b5-a7b6-4d1c-84bd-1ad488affede 1 \N Other +15833ef9-8be6-420e-93a5-1e775612e2fd 1 James Other +15836040-984c-46b1-a200-4da22051fd32 1 \N Other +1584ba82-d027-45eb-90a9-2886c347bfcf 1 James Other +15883b4d-eea6-46a7-aa27-ea6b9eb7c411 1 \N Other +1588fe92-c872-4779-a072-94049527a56e 1 James Other +158b141e-3b2c-4215-b3d3-28830a6bc2ad 1 \N Other +1591b2a7-a299-4e0d-9982-f817c4804515 1 \N Other +1594ccee-b179-4c2a-968e-d2e207ff722c 1 \N Other +15971e14-affd-4aa4-98c7-534101b4bf72 1 \N Other +15978a53-b62e-44c0-b9d8-4f7e25eb4e07 1 \N Other +159b5ac2-dcd1-4c6c-adf0-2ce1460e0e04 1 James Other +159bd4e2-2ddb-47b8-94e8-2e57043d059c 1 James Other +159c1d6a-9ba9-4ae0-a4e6-8185a4ed790c 1 \N Other +159d8cf4-f083-4892-a4eb-40a9de367fab 1 \N Other +159fa78c-a310-495a-bec4-17e0cfa3acc7 1 \N Other +15a56815-5ce1-406a-9d1f-9c15d725aa88 1 \N Other +15a7d130-02af-4476-96d9-ec73c7535577 1 James Other +15abd3c4-710b-4b4d-b2f1-7ec525b9674c 1 \N Other +15abf3cf-4ab3-46a2-bce4-4e5a93bcfcda 1 James Other +15ac1066-b7cc-4390-868a-077bfa95254e 1 James Other +15b809ac-19fd-4e12-bfb8-1bc6760855e7 1 \N Other +15b8b58c-845d-4091-ba12-98cfb43c900d 1 \N Other +15bb5b8a-5c43-4d8e-b604-229d1bc91eef 1 \N Other +15bb6a60-75f2-4c21-bffe-29049f76ba16 1 \N Other +15bbe648-2730-4296-b474-2608d360a43f 1 \N Other +15c35e5c-d34d-407b-8e55-c27533a2cfda 1 \N Other +15c53e60-0097-4a9f-aa7c-1b6c520bdadf 1 \N Other +15c99ce4-234b-4208-bb4b-1ee73e9877d0 1 \N Other +15d017de-b52d-42c7-a700-eece69e459c7 1 \N Other +15d073e7-891d-4c47-847d-21e06ebd0770 1 \N Other +15d0837c-5fec-40eb-880c-6e3859e8a36a 1 \N Other +15d11515-48f2-45ed-8df0-d386058ee2a6 1 \N Other +15dc556c-715b-414d-982f-09a08679c06c 1 \N Other +15e0a6d6-66fd-436c-afd9-fb2f97e6cf9a 1 \N Other +15ed1ed6-88d7-48b3-ba05-4ff265283147 1 \N Other +15ee12e1-4d73-413f-93b1-100fc682fdb4 1 \N Other +15efd02e-4328-4ce7-9eb7-4c0db0d1b3f1 1 \N Other +15f09629-c1aa-49de-85d0-fcaafaa415ce 1 \N Other +15f0ba69-81dd-420e-83d8-6bd55bb3e584 1 James Other +15f4685f-61f5-48a2-9160-74899f2f48d1 1 James Other +15f96994-4d2c-46fe-863f-39030fd8262e 1 \N Other +1600a386-95b7-4de7-b10c-1cd827c21f71 1 James Other +1609f9dc-e0d8-47df-acde-f14c702191ad 1 \N Other +160f4364-ebdf-4382-ac7c-1866538913b1 1 \N Other +161279dc-90c6-413d-a1dd-6df0f9751a41 1 \N Other +16178e3f-973f-4a91-b481-d51da109e82c 1 \N Other +1619134e-f323-499a-9d11-518cd511c886 1 \N Other +1619579d-5af0-476d-84f6-6d548843756c 1 \N Other +161c6bd7-9522-408d-b360-aeb6c1e48c7f 1 \N Other +161ed42f-fdc9-42dc-8f21-d337b76ef2e7 1 \N Other +161f8d85-ad80-45bd-93ef-1e74141993cd 1 \N Other +16230671-f696-4e70-82f4-aa5743d71036 1 James Other +1624199f-1c36-4d9c-944c-0980c1d85b77 1 \N Other +162b238f-8e89-4d9e-a3a5-467b1b3bbc80 1 \N Other +162b6727-23ca-4679-97ca-f7e9a245ee8c 1 James Other +162c4769-8998-419c-838e-24653b77727a 1 \N Other +16301bb4-91e9-405f-a677-3e198b8c072d 1 \N Other +163348dc-b069-491b-8019-e3e99dd82615 1 \N Other +163383a2-39d0-473d-95bc-ba00093901dd 1 \N Other +16383129-887e-421a-93fb-6df16832e5c2 1 \N Other +163f0d4d-a8a0-4196-9e84-b3ebf2ec2373 1 James Other +163f2fcd-947d-45fb-8b00-f52162b76f75 1 \N Other +1641d982-80f2-4b08-bf11-cb465e01e57e 1 James Other +1643ff92-fa6e-439f-a2c8-caf53f6952e6 1 James Other +164b37d8-8704-42e4-91be-911752a21a83 1 James Other +164d54ef-f74b-416c-803f-9953b86a8dba 1 \N Other +164f443a-8ef3-4649-b3ee-9c923af5f3d9 1 \N Other +165d5028-e16b-4cfa-9716-c86daf1d8da9 1 \N Other +165ed01a-54c7-47b9-97a0-66dcec192115 1 James Other +16666871-01bb-4146-b0b8-f1b81444bd43 1 \N Other +166c8509-5b2a-4455-a2cf-70ae14bc15ec 1 \N Other +16700ff4-e3b3-4e3b-b333-7cf31ffc3dbf 1 \N Other +1672e65e-8990-41bf-92f6-fddbc3e65e29 1 James Other +16749788-53d5-48fe-aca5-8b563ba5a57d 1 \N Other +1676351c-d007-4369-9d75-d495112e7f8f 1 \N Other +1676b92a-28d5-45c4-a0f6-81e392663f87 1 \N Other +1676f7af-2538-4811-9aa3-1eacb650c09f 1 James Other +16775ae9-3a40-4866-b9fa-8749d52e3027 1 \N Other +167dba2b-9480-4edd-a501-d2e3f46b7a46 1 \N Other +167e8ea6-4205-4b10-ae0a-94371e9a0fdd 1 \N Other +167fb411-828c-4864-943a-aab4b5778b4f 1 \N Other +168295f7-81ac-4c6b-9015-506191a509d5 1 \N Other +168c43b8-91b4-4b6f-90f7-447d322526db 1 \N Other +169b79a4-149d-4195-9ecf-85f28ed4ca28 1 James Other +169d1d02-3102-409e-b89f-5c43835bcdf6 1 \N Other +16a004a7-6fbe-4d9d-92e0-9339b15538cb 1 James Other +16a0a47f-8434-4272-9ff1-2b39ec186d15 1 James Other +16a27269-62f3-406f-8855-1e33f5b963fd 1 James Other +16a6902e-acd5-41bf-ae15-6964c770efef 1 \N Other +16aaeb28-3d3b-4dae-bc7e-e50ff9f427e4 1 James Other +16accd0b-6ef5-4892-9df0-40b55bf304f8 1 \N Other +16ad2d4f-d237-4127-a998-de3a4c255d7f 1 \N Other +16afe7f4-dd57-474f-9f03-64ee599be161 1 \N Other +16b3c6c4-b383-4f5b-b7d0-385c98d968de 1 \N Other +16b7c503-32a7-4a0c-9dac-5b41692ec59b 1 \N Other +16b7f6f8-2672-41aa-b647-431d22835b0a 1 \N Other +16bdaeec-fcdc-4a80-be60-30bcf7ba8569 1 James Other +16c2a831-c9ad-4d27-9860-8ad791de91f2 1 \N Other +16c42a12-8035-4599-b9f7-a21bbeee4f72 1 \N Other +16c7a5a6-34d4-41bb-8fee-02368a55ca86 1 James Other +16c86f6a-2933-4f37-9b19-94074d101c43 1 James Other +16c9a9ed-3638-4178-99ac-dd1f5d4ef2f5 1 \N Other +16cd84da-d940-4094-b961-734ffd6c45b4 1 \N Other +16cfcf48-2850-43ad-8295-64a23eb755f7 1 \N Other +16d3bd67-59ff-465d-a99b-f56e418a58e1 1 James Other +16dbba0d-5b1f-478f-b0ce-f0740cfdc13d 1 \N Other +16df5dde-2cfb-4809-805a-63fce9ca2e9f 1 James Other +16e1a547-5bae-4cb4-aa66-d2be3cb527cf 1 \N Other +16e1b219-e617-4151-babe-6c3324850e03 1 \N Other +16e1d67c-367a-4b55-b439-d941365cee19 1 \N Other +16e28356-547a-4717-b0cc-8ca3d05b3180 1 \N Other +16e54279-12a8-468b-bd7d-f19a74928bdc 1 \N Other +16e72da9-3489-4321-8eb1-d8d9614bedf2 1 James Other +16ebc262-c1d1-4814-9800-bdab7713d723 1 \N Other +16ec5cad-b79a-445d-b18d-16dd4df2cc2a 1 \N Other +16ee006d-b6a2-43f5-85dc-4b3d5f17ec9e 1 \N Other +16ef3d6c-08f7-493f-91e5-d7aab6a8d5e9 1 \N Other +16f2b8a1-9e1b-420e-b23b-90eb7c8137da 1 \N Other +16f50294-5a0f-4fcc-989f-06e4a1fa1286 1 \N Other +16fc2a32-fd18-465d-9360-a74592711eeb 1 \N Other +16fc2b47-6460-49f1-aaab-1bba618d4954 1 James Other +16fca439-e047-4102-9c09-f08479eac437 1 \N Other +1701ba47-fc54-41bf-8df7-8023808733d5 1 \N Other +17036256-fee6-4644-a56e-e9e85f462de2 1 \N Other +1706e27d-a730-4f41-bd9a-85f200c7025b 1 \N Other +171084f4-b1ff-4db3-9df3-7dff210fda74 1 \N Other +17108bb3-1594-416b-91c8-ebb7a449bc54 1 \N Other +1714b12d-bbe7-4da5-8d0d-6d08428d1bfe 1 \N Other +171e00cd-fa3c-4f2c-928b-23dd5aea7eb3 1 \N Other +171ee390-7095-43b4-9271-7ba7bfd2776a 1 James Other +17201bfc-90b1-417a-8f21-6a61dbdec770 1 \N Other +172190b3-ab70-4742-8bc0-907c2d7b2374 1 James Other +1727d92e-4309-4f5b-883a-56e6a511ab58 1 \N Other +172b051f-d072-41e8-a788-93afc5f13073 1 \N Other +1738cfad-bb80-4c25-a7eb-cc227a49d1c1 1 \N Other +173b7441-f892-44bb-9f69-3b60518c88c2 1 \N Other +173c5cc1-60f2-4669-a2e0-2a627722eeae 1 \N Other +173e2255-d5ca-4fdb-ba56-f3f837f9e3df 1 \N Other +173edf2b-b25f-4acb-a654-d4da32859d50 1 \N Other +17401ae6-7988-4201-ab47-5f5c02e27a6a 1 \N Other +17459685-92cc-4c85-b0ca-e6e3d2359eb3 1 \N Other +174847a2-3876-4e40-b44e-2e6e130fb965 1 \N Other +174d74d2-2b8a-4e5f-9816-16638f24c95d 1 \N Other +174e04a0-9c75-4852-ad65-7e235db52ff2 1 \N Other +174e0635-e6f0-4ed5-a607-335cb6939394 1 \N Other +17556d06-159e-489b-8821-3749439372c5 1 \N Other +1756525c-0cb8-434d-bcb9-846341fd20a2 1 James Other +175f3623-81ca-402c-895f-e700c8f6e8c2 1 \N Other +175f3bdb-28d2-4ecb-98ea-395120b420c9 1 \N Other +175fc5f1-8b79-4c4a-95c2-6d7907394547 1 \N Other +17618667-e1c6-48e2-a8ca-d4f71cf63435 1 \N Other +1762976e-a278-4205-a9f5-147915dfb801 1 \N Other +1764bd78-8274-41c1-9dd1-02a550be1237 1 \N Other +17651a11-1ed5-4ae8-be0a-ea86eccd8f13 1 \N Other +1765ad44-dc22-45d0-ba28-cae638f478bd 1 \N Other +176cfe1d-e635-4caf-9b7f-ff6482bc2f66 1 \N Other +176d0c29-eba1-4313-9c00-9836c7a883d4 1 \N Other +1770e152-7c26-4186-86e7-b88feaa9a9c1 1 \N Other +17710a72-98d3-41ef-aa12-84e6cb2ee70f 1 \N Other +1775f9ef-e635-4b63-bb86-74624917bfb6 1 \N Other +17794718-fbbb-41fb-8c79-2fcab3725518 1 James Other +177e1a31-1ce9-461b-95b7-8f9e97f957b2 1 \N Other +17811c99-808f-40aa-964c-6957b952cf17 1 \N Other +1783ccd5-2957-4343-8c5c-8bb38f93faaa 1 \N Other +17864ef0-33fb-4c02-96a9-2f7e3d3fff9a 1 James Other +1789647e-b12e-4e9a-ac6a-1fcfc2d6ac04 1 \N Other +178c1e00-fb6b-4136-b78d-00dc28716d78 1 James Other +178c6db7-e204-4f98-8e55-215b92c5bc13 1 \N Other +179539cc-430a-4f56-a035-570e575631a3 1 \N Other +1798732c-3012-4d8e-ac66-bad50f4ff353 1 \N Other +179984bd-69be-4c54-9c09-91cd1367c801 1 \N Other +179a103c-3d2f-4ebb-95ff-a12e7b7756ea 1 James Other +179acbec-9fad-48ca-9647-d64790b00c5e 1 James Other +179e143f-eff6-4400-8aaa-b64388252f36 1 \N Other +179fa313-a208-4993-b423-893512f60877 1 \N Other +17a09acb-1cbd-44c2-9dc8-458fbb58f19d 1 James Other +17a24ca0-9698-436d-9817-dd60287abdc4 1 \N Other +17aa1a2c-aac1-4734-bbca-343ca5eac70f 1 James Other +17ac6424-8db1-45fa-8946-23727793fb80 1 \N Other +17ad3ec6-b74d-41a7-8f57-f8fd21fb0609 1 \N Other +17aeebc1-83aa-457b-aa5f-8926993e900d 1 \N Other +17b42f5a-af42-4a02-bf7e-31f9700cb461 1 James Other +17b65d02-50c6-4318-a077-5bab13376d1b 1 \N Other +17b83a4c-a7a0-439c-98f8-7541d0c30d1e 1 \N Other +17b89241-110b-43af-81bf-7cdd603efd98 1 James Other +17bb1ccf-cda5-40eb-a4b1-f5d3ec24d216 1 \N Other +17bd312f-3cc4-46d3-aa11-3a90c2dcac61 1 \N Other +17bd4f99-bdaf-4796-a686-9099d3cffaa7 1 \N Other +17bdbf56-42dc-4dd1-a14f-cf91bc2cc9fa 1 James Other +17c330b5-72a4-4edb-9799-2cb97db7a43e 1 \N Other +17c47010-4d0c-4374-a0f2-c7fc59380362 1 James Other +17c66d38-fcb5-41b9-a640-25dbd622fbed 1 \N Other +17c6e2e4-7f2f-4a84-b5db-406472c9e333 1 \N Other +17c7df43-147a-46a0-96be-376760f8b36b 1 \N Other +17c8e388-c898-44fd-a300-508b55b5c4d7 1 James Other +17c98733-17ce-4948-91d7-46e1fb7aa2f1 1 \N Other +17cc2de1-796d-4fe5-85d1-ecbf56488478 1 \N Other +17cc8cfe-50c4-4d58-88dc-79ae6074fef3 1 James Other +17d7ee89-421d-4bd1-a562-58feac5959f7 1 \N Other +17dbdff9-020f-425f-b2eb-b7bd6f620321 1 \N Other +17dd5e1f-360f-47af-b001-1a639d0b5fca 1 \N Other +17dec2b7-c7ea-48fb-a8a2-af27fe526f8c 1 \N Other +17e9cb49-edfb-4833-9d73-667fa5e2f576 1 James Other +17ec2f70-ffba-4ab3-8b34-6102002650a2 1 \N Other +17ef6830-640f-436b-af96-551444d6bd6b 1 \N Other +17f0f06b-4be6-4fd2-93c1-b7a0a699747d 1 \N Other +17f11b6a-1c11-11e8-b21b-fa163e8624cc 1 \N Other +17f3c800-9a7b-41bf-be19-09bcffe5a098 1 \N Other +17f415fd-abdd-49de-b108-4f464faf4f49 1 \N Other +17f56a3e-e571-4648-acf0-1245e7711908 1 James Other +17fa24a0-71b4-4f10-a85b-038a8ed49b39 1 \N Other +17fece50-a517-433d-a4d9-e13d7fcc0a95 1 \N Other +17ff23d6-ddbb-4798-bcfd-5e5893d31510 1 \N Other +17ff2e48-b64f-4dcb-b0c6-51fb3b29352c 1 \N Other +18014b11-6ce6-4818-a5b8-d8b30c57836c 1 \N Other +18153b8a-28b8-4f22-9245-e3019b35cfe3 1 \N Other +18194806-1c11-11e8-adce-fa163e8624cc 1 \N Other +181b92ba-fb51-4846-a967-d962b9fec1fd 1 James Other +181c3c7f-f227-483f-9607-e433702f51f4 1 James Other +181e1e81-15b5-4eb2-ab9d-2ac86e4b9077 1 James Other +181e8910-3441-4f90-b034-6eaa418a04e0 1 \N Other +181fc9e0-0fe2-4f35-b2aa-dd076e333542 1 \N Other +182bab27-f8ae-4363-8061-7ee7fcd2fba6 1 \N Other +182f0bdc-794b-46e6-83a3-b56c215eb7cd 1 \N Other +18308f34-87ee-4dfb-9717-6e393884b7c7 1 \N Other +1830edcd-f875-4f89-8d08-76fa23f77488 1 James Other +1831e84c-8306-4c4c-9aeb-3de36298e0ba 1 \N Other +1832c3ab-de15-44d6-b12a-b59bb8c64ffa 1 \N Other +1833965a-bc61-4e23-8ce5-bfa26da9af28 1 James Other +18342ef0-4879-4ac2-974c-fdf207de37dd 1 James Other +1834db9d-a485-4138-8f6a-2b3e8319c0b5 1 \N Other +1835ee79-9d9f-48ad-abb6-ac13283e1ecc 1 James Other +1836eaa7-f7b9-4954-b0fa-61882e2ad591 1 \N Other +1838bcd0-ffe1-4328-b573-c98e2586bb96 1 \N Other +1838fe26-978f-4975-9697-e373be57945d 1 \N Other +183faf4e-d000-493a-b11c-9c954c1cc21a 1 James Other +18481c56-127d-40da-b275-753a725749b9 1 \N Other +18548e13-9226-4d88-af8c-bf892dbbf8c6 1 \N Other +1857f248-abf6-4b87-8f5c-860c2016b960 1 \N Other +185911ca-1c11-11e8-a030-fa163e8624cc 1 \N Other +185a9590-1c11-11e8-aeac-fa163e8624cc 1 \N Other +185d086a-fc33-4361-b310-1ef144075b50 1 \N Other +185faf3e-f3fd-4911-bf93-5a8490f24275 1 \N Other +1861a62a-6106-41d3-a56d-5736f5c50379 1 \N Other +18648e4d-f016-4a37-9b97-3817a5435d99 1 \N Other +18671c0b-6cb4-4587-8fdb-8134fec91a30 1 James Other +18679b31-4e6d-412e-b250-b5750ca283b3 1 \N Other +1869581e-a1af-427b-8cd7-d07a2f072b88 1 \N Other +186a321c-8ebf-41c3-ae15-7864b1c78648 1 \N Other +186ff5d8-ba2e-4f16-8ead-e26bf027f58a 1 James Other +187348e4-e783-49f4-96da-ad471a844fed 1 \N Other +18740680-e189-4619-ad37-ae3ef7a0e540 1 \N Other +1879bb49-3e26-4d31-ada5-e1f4287d39a8 1 \N Other +188008b1-9946-4a22-b6ac-18e220a4d4ef 1 \N Other +1880dd5e-270c-4928-9e09-4584403511a3 1 \N Other +1884b449-74f8-487d-ae58-389bcc900131 1 \N Other +1885c01f-24f9-4693-bb3b-095f0cf11057 1 \N Other +18881704-1c11-11e8-8ada-fa163e8624cc 1 \N Other +188a015e-1c11-11e8-b1d7-fa163e8624cc 1 \N Other +188c4ee9-a592-4b4f-96de-df659887a1a0 1 \N Other +188cd59b-f1b0-4f0b-bdd6-48f97e9ed862 1 \N Other +1890188d-4f6c-4ea3-890a-17413cbb7b82 1 James Other +189251af-715d-4a14-8086-7b9151fb609c 1 \N Other +1892b36d-b5ca-4604-a642-2c34a731f64e 1 \N Other +189ac951-c30d-465c-87a5-bbc86a41695d 1 \N Other +189b3cc0-9979-431a-bf37-cefe78cedcce 1 \N Other +189ea6cb-25ea-4817-b599-9c0fcf32ca6e 1 \N Other +189ffe31-285e-48df-913d-b8749e374d22 1 \N Other +18a3cd5b-7cf0-48a0-ad76-c27be40afc57 1 \N Other +18a55d77-82ec-4e6a-878c-5bc569eeab18 1 \N Other +18b09a61-8d1f-4aa5-980c-0d582561cccd 1 \N Other +18b98da2-1c11-11e8-83ef-fa163e8624cc 1 \N Other +18ba1281-5dcb-4009-a909-fdca8c8c64bd 1 \N Other +18ba38f3-bcb5-45b3-acde-b456ee1c6b49 1 \N Other +18baf8ef-83dd-41aa-b9f1-3acd2dce16ce 1 \N Other +18bbdc89-b041-456d-a4f7-b6b995a93038 1 \N Other +18bfec74-ed86-4929-a7eb-c01392c021ab 1 \N Other +18c17c41-d646-4160-a491-0cd09a53d327 1 \N Other +18c383cd-fd03-4372-a32f-cb542e384bcd 1 \N Other +18c3d12c-aeef-41ca-986a-025461a23070 1 \N Other +18c890f7-6504-4f08-8730-39149753ef93 1 James Other +18c8d63e-e9b3-495a-99be-ae2b3cb5b1e0 1 \N Other +18c999bb-bad7-429b-b817-18a0cb90def8 1 \N Other +18cdf943-79bf-40f6-9079-384dc3d19637 1 \N Other +18cef76f-07c7-4d70-a54b-6404d149534e 1 James Other +18d050df-0db7-4ec9-b9b6-66f6b0cf1c51 1 \N Other +18d0ec8a-56f1-4b7f-87a3-63d6c9283d07 1 \N Other +18d3644e-b00c-4a5d-b788-83973f28d552 1 \N Other +18d3df82-0f90-4fa0-95ce-e5f447ff2492 1 \N Other +18d5ab86-7d98-4f2e-9dfe-6aef0c522bf1 1 \N Other +18da4230-b328-4ad4-8cff-5d5f15008c71 1 \N Other +18da7adb-8fa0-4a10-8777-836438a6c483 1 \N Other +18e01b6d-583b-4c6a-9465-d41ef29c0f94 1 James Other +18e0b47d-be6b-40ff-b74f-84d0ec3e5830 1 \N Other +18e1c5fa-c29b-46a5-a827-e13c87001052 1 \N Other +18e3a6e7-89b4-4168-84d7-fdc5b8a32d30 1 James Other +18e81cd4-d197-4698-ba8f-ff774a572f65 1 \N Other +18ea3662-4602-4a13-b4da-5eb4a8692529 1 \N Other +18eb0076-1c11-11e8-9ee0-fa163e8624cc 1 \N Other +18f246ee-fd28-4c9f-84c9-76b850bff697 1 \N Other +18f40c10-ee41-468a-b905-0d72d3bca167 1 \N Other +18f4592c-8cdf-40a8-8288-47695c935b9c 1 \N Other +18f610f9-a62e-4078-a720-490ca73fc8dc 1 James Other +18f81cf6-2c19-4899-9f6c-f0fcd7cd9ec5 1 \N Other +18f81f47-48f4-4f58-95f1-c946a1f9a078 1 \N Other +18f9c3ba-1236-49b7-8383-46613c431734 1 James Other +19034f0f-55a0-4ecf-a2f3-e6e81495e243 1 \N Other +190781a0-dfbd-4ccf-a7aa-3ee2166043e6 1 \N Other +190a0810-ba9a-465c-ab18-cca5568ef5e9 1 James Other +190d3c68-694b-4325-a91a-9bee1cb5f297 1 James Other +190d761e-93de-46be-8523-1a7fbe91bd64 1 \N Other +19126ccf-dccf-4efa-b855-d2f5e0f1a15e 1 \N Other +1914acd1-1af6-4f53-8244-5d76cc54d64c 1 James Other +19170583-1087-4670-a64c-21007dedd170 1 \N Other +191a918c-8e61-4d10-8c8b-fcb4dc223fe5 1 \N Other +191bd315-274a-4854-990c-26f3c9ef2325 1 \N Other +19261e74-dfe2-4db8-aa68-802c31b4f382 1 \N Other +19276b46-1595-4b7b-b00d-ba2fb4ed0b8b 1 \N Other +1927ee3c-47ca-4948-a726-2a159182b886 1 \N Other +1929fb2d-e88f-4b9d-be01-ca526ece5b1f 1 \N Other +192bbb16-0be7-4208-aded-91c2bf4f4da3 1 James Other +19302828-fad7-4227-b579-f7ad126c9e93 1 \N Other +19330853-70a1-4c2c-b48c-bfd83d8bffd6 1 \N Other +1935b3ac-7df5-498d-a9d4-8f8833a652d7 1 James Other +19361e1d-5ce5-4179-a7c9-51d249f47d2c 1 James Other +193ad095-c26b-442e-9cc1-eda4f21ec097 1 \N Other +193c454f-2cc7-45ab-bae4-9b69d4c37634 1 \N Other +193c9bc3-a0ca-4d61-a243-023fbe65df70 1 \N Other +1940a1ed-1d76-4b48-93e6-2be20e913d14 1 James Other +1942a2a4-3b9d-4999-9868-70ca28c51d40 1 \N Other +194318f2-39c7-485a-b255-24512dc27907 1 James Other +19453f9e-50ed-467c-9f45-7af252edfadd 1 \N Other +19458b2b-ab78-4cdb-a3d4-a89abc95595e 1 James Other +1947174a-6f9a-4e1f-8843-65bdeccb0da1 1 \N Other +19479376-e588-4a04-93b2-a3b3d348ed33 1 \N Other +1948df6f-af50-4741-9659-b46a871a1b96 1 James Other +194b1d32-24bc-4306-a196-adfbd556e7bc 1 James Other +194b7eba-2600-44c3-9530-0f6f39616fb9 1 \N Other +194c8db3-db26-4cf4-a263-bd7412da9ccb 1 \N Other +194c95a1-80ec-49ca-9f38-9cc918527fb6 1 \N Other +194d6e6e-aa3f-4a84-8d1e-0ad13201e4c4 1 \N Other +1952cd25-ee0c-4e31-b724-f8028870b393 1 James Other +1953da6b-52dd-47a7-b687-edd8dbd426e5 1 \N Other +19568f3b-9eac-4271-8788-c4d40e3909dc 1 \N Other +195fce22-edff-4c33-9a58-5a922b5ad36a 1 \N Other +195ffd76-2961-43cc-8079-fd86a9276648 1 \N Other +196233f1-c129-4b61-a399-c669f944e33d 1 \N Other +19661f53-8f48-418d-8cec-1b9a9556a579 1 \N Other +196d9586-b183-4b1c-8165-09f28c413572 1 James Other +196e4ec7-3c64-4b02-8ffc-652de4af82f6 1 \N Other +196f9589-2073-4291-aa48-027a7fe4c59d 1 James Other +1970dcf7-ccda-49ea-be4a-c30be8d96008 1 \N Other +197502d5-dc3b-43dc-8015-19dfd8ec0372 1 \N Other +19752f85-2641-45b7-8f27-faec1af2f5e5 1 \N Other +19756033-ddec-4404-923b-c0150d555bc8 1 James Other +19779d3d-77f7-4d14-beae-e9018bef6385 1 James Other +198fa4cf-b0e3-4001-b8fd-ad88f48eca4e 1 \N Other +198fb719-457c-4a38-a26c-801dac783ded 1 James Other +198fde2a-0158-4880-8bdb-d70432e2a000 1 \N Other +19907ff9-7769-4034-857f-a7125983b441 1 James Other +19912641-7f97-447a-b348-d46a88603984 1 \N Other +1991524d-84b6-4d3c-8514-54d04b352451 1 \N Other +199204be-79dd-4c14-93ea-49e6251763c0 1 \N Other +19978357-48fb-4567-a556-c13c763d1e66 1 James Other +199c1eac-1035-4b72-93b3-3048de140682 1 \N Other +19a16670-5b58-424c-9225-b8a1cb22678b 1 James Other +19a91af8-0e35-478b-b4eb-11efe56b8514 1 \N Other +19ace40f-7730-4e38-a9f9-38050d6e1740 1 \N Other +19ad45c2-b0a7-41c2-8140-7f02e67c1979 1 \N Other +19b5eaed-91eb-4001-b07d-2cb90af9c776 1 \N Other +19b7b5a8-5f54-4960-ac08-2d189c11506f 1 \N Other +19beffa4-1c51-4711-b36a-350a31b20b17 1 \N Other +19c05edc-843b-49be-84e8-a0dec86160e7 1 \N Other +19c1e768-cc58-46c5-b4b2-0164ec54d9c9 1 \N Other +19c359b7-6c76-492f-98fe-0932916477ed 1 James Other +19c89e1f-7ed6-4a67-89fd-96bcefa4b769 1 \N Other +19ca026d-25f3-4fd3-b10b-68fe26ba1797 1 \N Other +19cabc70-de60-4661-9ab6-d8d6f1d88655 1 \N Other +19d5c4d9-59de-4b07-ac49-f91ed2aad7e2 1 James Other +19d79730-7743-4fdd-8b1c-39e4a018407e 1 \N Other +19da185f-35cd-46e5-ad17-a593e3dd5716 1 \N Other +19da4380-159b-47ff-befb-d5aa9af33c90 1 \N Other +19daa722-fda4-4f8a-aaf9-c15930f920bf 1 James Other +19dcfe10-c27e-4da5-bc29-04b121139e6d 1 James Other +19df62ce-2c2e-41d4-aee0-1e49e897aa58 1 James Other +19df9498-4acc-46e6-809a-7969b9a16345 1 James Other +19e21c7b-8371-40ea-b994-5ef8e69d5686 1 James Other +19e4cbda-575e-4ebd-9c0e-f9004de1064f 1 \N Other +19ebd8e0-de93-4645-9c8c-82359f66b81d 1 James Other +19ed78c0-3b9b-457b-9f4e-843444ab9152 1 \N Other +19edb841-fd9d-4935-9af5-6c7dfce71b5d 1 \N Other +19eedb8e-fa80-412a-98b5-df90fe76a80d 1 James Other +19efbf13-194f-4eb6-af5a-e9da23a1b017 1 \N Other +19f11184-445b-4aab-991e-e177134af9a8 1 \N Other +19f3bdf9-cdc0-4087-b0ed-fea5456bdd2e 1 James Other +19f4ce95-55b5-4792-85c7-9befb750cbe5 1 \N Other +19f6c08b-c9b2-4a4e-9ae0-2b033bfd08ef 1 James Other +19f7544b-0b08-4f22-82a1-5c5cc3b42da1 1 James Other +19f90030-2120-4955-bba2-7682fbb3fca0 1 \N Other +19fd8862-85ff-4e15-b4ec-5dcb4aaeb669 1 \N Other +19ff1ffb-927f-41f9-a774-1df4e2c45515 1 \N Other +1a005c1b-7daf-4bfe-80db-d2903fc27be9 1 \N Other +1a01329e-e0a0-4d5a-9025-253355dc7728 1 \N Other +1a0b22df-7cf4-4827-8f22-476d8c1782f2 1 James Other +1a0bdc93-1a52-4dd7-b133-b24f02d6617d 1 \N Other +1a0fe8a8-fe70-4a88-b6e7-03d1492e18a8 1 James Other +1a106259-108a-4a0d-b860-3cc3bcb6491f 1 \N Other +1a11428f-ce5e-4972-aa8a-57b70837ee46 1 \N Other +1a12eaa5-ed37-486c-91ce-3c5ed2715983 1 \N Other +1a1329f7-67b8-444e-855b-6222bb861f5a 1 \N Other +1a156c66-f7ba-469a-ace7-30e3134cd6ec 1 \N Other +1a168a27-e06b-4042-940c-bfbb6306d1e0 1 \N Other +1a1b67a0-11c9-4782-aaaf-23f15bee3beb 1 \N Other +1a2284ab-fd2f-4b4e-96e6-ab7f8abf706e 1 \N Other +1a26f59e-e36b-4fd0-ae9f-45b453f67d2d 1 \N Other +1a29a8ee-f87b-47f3-a890-6ab9f32255f8 1 \N Other +1a2f9a44-dafa-40cb-9ba4-790dd973b6fd 1 \N Other +1a33a588-e56f-4ab8-806e-50258fb10852 1 \N Other +1a35349c-73e8-4358-b1aa-703872b881b7 1 James Other +1a368a0c-b8d1-404d-a5d7-f2314811873e 1 \N Other +1a3a11c7-65a4-4c40-bb00-4fa9ccc54762 1 James Other +1a40295d-35b6-447d-ac0e-1ab5c8982669 1 \N Other +1a40c51b-e0f5-4128-a0c0-d9e6f5f547b7 1 \N Other +1a431d22-79a3-4a0e-83d1-2958821eae3b 1 James Other +1a4dbc78-90f1-4036-aa07-e66d552bd60f 1 James Other +1a52a751-9aab-4afe-8bdc-9cdbacf615a2 1 \N Other +1a538839-7b2f-42ce-a260-e129838e906d 1 James Other +1a589315-00b3-4bfc-b87c-d6beeb3ba1d9 1 \N Other +1a59fd65-5bc1-4e28-9c94-7dbc4ceb1f43 1 \N Other +1a5d5224-baa5-43eb-be6c-8b738478f923 1 \N Other +1a5de43a-3c55-466f-92aa-e02ea79e76a6 1 \N Other +1a69e3e2-ccf5-4021-8303-d5e7df9a93cc 1 \N Other +1a6dbde6-9894-4ad5-ac23-175d95491bbe 1 \N Other +1a6eff94-b8af-4009-ba3f-a4e48e595e57 1 \N Other +1a72e240-0746-466a-bf1f-d021f487a2f6 1 \N Other +1a786d55-d488-455a-ad49-dc33a7425966 1 James Other +1a7dbdc7-b243-4b0a-a359-08503df2c5e1 1 \N Other +1a7f4c43-f333-461e-952a-c7428b37c20a 1 James Other +1a83ccf9-3815-44d5-ab78-86380d704dd5 1 \N Other +1a865585-9ec0-44a7-8f19-245cf21599e1 1 James Other +1a86561f-5915-43be-b787-d44d3abf3060 1 \N Other +1a882903-2516-4376-a92c-46204e3f1e8e 1 \N Other +1a8a4570-d7e2-4d31-9be6-179a1770a027 1 \N Other +1a8b1883-5e6d-465d-bd1a-127956911905 1 James Other +1a8e8872-8917-4bfc-86cb-40e8082a7209 1 James Other +1a915f86-33aa-4b69-b9bf-36921af3765b 1 James Other +1a935589-ad47-49ab-8e2c-bfdbb5fe2b4e 1 \N Other +1a980d7b-97fb-4c37-885a-8e436799834a 1 \N Other +1a9cd51f-f290-452a-9cb9-bbd707200bc2 1 \N Other +1a9ec8c6-99a1-43f9-a18f-66afacf828c1 1 \N Other +1a9f1436-c93b-463d-bb83-43817f99af95 1 \N Other +1a9fe88d-d7c4-4d64-ba15-1fb68d307397 1 \N Other +1aa11990-7e59-4fb3-9846-37c3a4ffc0c8 1 \N Other +1aa2839a-985b-4a57-bd62-e82068b494dc 1 James Other +1aa2d982-537e-4e28-a03d-385d090a0a98 1 James Other +1aa887fb-1f84-4d4d-b05c-edf507169e40 1 \N Other +1aa8e010-d8f9-47f8-8444-9fb5a7b2668c 1 \N Other +1aaa4016-bf60-4299-8f8a-8c3430888043 1 James Other +1aaa756b-f562-43e8-b1e3-a86809afa8fc 1 \N Other +1aab99ca-3166-4c00-ba29-c0bd9f120b7a 1 \N Other +1ab473b8-611f-481f-bda2-7a9b2cadbd25 1 James Other +1ab58de7-df6e-4ca6-accf-3b389d2947ce 1 \N Other +1ab890c1-ba04-44ae-9513-a86e1be7734c 1 James Other +1abc82b7-d1ee-4e43-bfd7-49bfce0b1f8a 1 James Other +1ac1114d-93c5-4bf7-b188-22af7723fac9 1 \N Other +1ac66c10-baf9-4630-8c0d-4ebfb3e947b7 1 \N Other +1ac7fed4-84b7-494d-a381-bf6af5e72382 1 \N Other +1acdb7a8-fc0a-432f-aba6-2b2e91ccccab 1 James Other +1ace8306-db64-4a8e-954b-b3c3b0b090a4 1 \N Other +1acef1fd-3180-4096-ba67-9af562d43d60 1 James Other +1ad248b4-3d5f-4496-8eec-e2dda392318b 1 \N Other +1ad255ee-8190-4060-9298-49810e5c6919 1 \N Other +1ad6c279-c1d1-4974-932b-e12ba105473f 1 \N Other +1ad772b3-d761-461b-bd83-a6d5fb847164 1 \N Other +1ad7ed70-17c0-4fbd-893f-4ab8eab790a4 1 James Other +1add39f9-cc6e-45b4-b225-327fdc7ffd5d 1 \N Other +1ae0ccdd-6e80-46d2-b9a2-2712b36847a9 1 \N Other +1ae2414b-37aa-48a9-a49c-5f9e284898a9 1 \N Other +1ae29336-9ef4-428f-818b-198fd415bb90 1 \N Other +1ae440b3-95fa-4ea9-8e24-8fb0400c7aaf 1 James Other +1ae48a8b-07e4-4bbb-b198-87454abdc2d1 1 \N Other +1ae5201c-50f4-403f-9b01-093f46265efe 1 \N Other +1ae566b2-4978-4a9d-9231-5b1e9c3c17b1 1 \N Other +1ae91294-bcd2-45fc-98ac-c0312b8effcb 1 \N Other +1aea65c8-467d-44ae-b0de-e458252a8639 1 \N Other +1aebc216-eaba-4a65-99ae-fa5451609be1 1 \N Other +1aecd505-7267-469e-9dab-1f3c6e294c28 1 James Other +1aee3abd-fba2-4f82-a3e9-b16bd769f484 1 \N Other +1af35843-d19e-4834-8857-b6cea4b49607 1 James Other +1af66562-0c07-4042-b52a-62c88277d753 1 \N Other +1afccf6d-28d0-48ff-a618-0d41b02f67b9 1 James Other +1aff68ca-fdb8-459d-91ec-1396ccffe77c 1 James Other +1b01e09c-c2c6-448f-b548-3bc1089964d1 1 \N Other +1b04069b-ec88-4515-b217-b6c88e7bcac8 1 \N Other +1b0d85a7-5e76-484a-922d-0b2a0c0b2ea4 1 \N Other +1b10af76-1d8b-4206-92ec-38ed1eb654f8 1 \N Other +1b184aa3-8e6f-41fe-99a4-77083e398643 1 \N Other +1b1857e4-8a3b-11e7-9579-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 James Other +1b1bad8c-e4b1-4ea9-9ca8-08941f862012 1 James Other +1b1c65c0-e446-419a-b6d8-cd1a5ca051a7 1 \N Other +1b24e111-2534-4087-a823-35200a007541 1 \N Other +1b2b0dbd-70d1-435f-b755-91466df6e314 1 \N Other +1b2d727d-6f18-458a-a25a-f639e964e715 1 \N Other +1b2effa9-c864-4cd5-b685-72c1fc4dcd13 1 \N Other +1b2f4165-a749-4b05-b545-3b0f8cd4ac24 1 \N Other +1b30a6c6-f801-416f-9440-5071c245d4d9 1 \N Other +1b3739bd-425f-4eca-bcd5-84827c672506 1 James Other +1b3741ee-cc46-48e9-ac3a-cb8af92a389e 1 \N Other +1b39f2fc-08f8-4bd8-84ac-efd588bbd4b8 1 \N Other +1b3eac09-183a-499c-ae96-2b6e6b7423e0 1 \N Other +1b42b7ba-f082-4c1f-a1fb-7ecdac138be0 1 \N Other +1b442ce3-9f83-4c3e-9427-1d31a36b3ac7 1 \N Other +1b452d48-fb7a-43be-99bd-0082b71e79e2 1 \N Other +1b453a01-31c0-4f9a-84a8-4f47a8f0c2cf 1 \N Other +1b47d17f-0335-4640-a519-4e9f6049293f 1 \N Other +1b484311-4251-4980-96fc-3e6468f578dd 1 James Other +1b4cfd54-7324-4f91-8ee3-a0c4a143fee4 1 \N Other +1b4e94bb-526b-40f4-9687-e2d506c96439 1 \N Other +1b4ead4a-fefa-4bdc-a2f1-9b89f2bbaf69 1 \N Other +1b5172b7-f60d-40d4-b1cb-aebc31f929ad 1 \N Other +1b53c660-7daf-4c32-a837-0ca93c2f415a 1 \N Other +1b54115e-68ba-49fc-a0a5-7f167ef248af 1 \N Other +1b5ee209-5cce-45fd-b8dd-2d6066115e67 1 \N Other +1b5fb04b-12ba-4ba3-8f97-5790852b3735 1 \N Other +1b6cdf3e-635d-4f54-947c-52d0cb99b5a6 1 \N Other +1b6d29ec-dcd8-428b-b5ce-b07ac391939a 1 \N Other +1b6d8e1c-60ca-46b8-bffe-2c6049761d05 1 \N Other +1b6e2f4e-f747-484f-b1e7-dab671f15127 1 James Other +1b7031f5-f0ac-4674-b3f4-cf8f8853a41c 1 James Other +1b71cef0-34ab-4cdc-a5a7-a201b8ef49be 1 James Other +1b72b76f-4df5-4138-a40b-2f413e13a86a 1 \N Other +1b78755b-a35d-408c-9b4f-f71e42be395e 1 \N Other +1b7ac9ad-4e57-478f-978f-9972d0352449 1 \N Other +1b7ae3f5-bbce-486d-a64e-930f06314a09 1 \N Other +1b7b12e1-bf3b-4be2-9d1c-96981de28827 1 James Other +1b82efc4-ef7b-4d20-98cc-ef4f068749a3 1 \N Other +1b8738b5-a08e-4e13-9f09-219d82decca7 1 \N Other +1b875e93-ba68-4041-9798-5032af14c039 1 \N Other +1b8eb32e-fc6d-4106-ab86-caeb005fdebc 1 \N Other +1b918710-2f07-4dbc-bc96-9a2ba5e48173 1 James Other +1b92c91a-228a-498d-912e-ed345da6a4d2 1 \N Other +1b949ac5-32b6-4903-9787-38ce48156489 1 \N Other +1b960ba0-f371-427e-ac64-7e44b45ae80a 1 James Other +1ba1eb68-e17b-4f29-98a3-be2e314648c1 1 James Other +1ba5f5a5-a238-41e8-a81a-bb61cf5214d8 1 \N Other +1bad3f9a-35a1-4537-84c2-5f7710399bd1 1 James Other +1bb30ca4-6a80-4b4b-931b-263bf88f04aa 1 \N Other +1bb35f96-2536-4a6d-9cf0-c69b1bfa4dad 1 \N Other +1bb40edf-b8c1-40b5-9a97-807ed0cc48ad 1 \N Other +1bbc28a5-c561-4db2-9e01-3f2829b5acc6 1 James Other +1bbd9dac-b1c3-408c-8fd9-7a52796bbdc2 1 \N Other +1bc07cef-d115-4146-a933-9dc019b981dd 1 \N Other +1bc7bda9-11b8-4318-b992-b721ee445c8e 1 James Other +1bc96a00-c274-4d6a-a7f9-78904361c132 1 James Other +1bd320fd-7a80-4eca-8264-f8fe421e1b04 1 \N Other +1bd7116c-dea1-4f1b-a053-fc6f71fdc1da 1 \N Other +1bd7ddcc-6215-4047-a520-451060ad81ed 1 \N Other +1bdcfe69-5eee-416b-9340-a4d7ebef97ce 1 James Other +1be4e1a5-25c3-4504-9343-47c7c3486ab6 1 James Other +1be825b1-c105-4161-9b16-aeff1a4e1568 1 \N Other +1be8b19d-489f-4415-9839-92e5e2ebfc59 1 James Other +1bf0da68-171a-4306-889a-ab5ea14bb6ee 1 \N Other +1bf3d49c-ed12-4770-b9d8-30ce0e774dac 1 \N Other +1bf52df2-fa10-424b-9f7f-ee3196f2d900 1 James Other +1bfbd29a-332b-4d95-9919-fe8eac46c90a 1 \N Other +1c02de2d-c7b1-4b22-92ae-8ebe9620ef87 1 James Other +1c0a0212-dacc-46b5-97d4-93f3cf136ddf 1 \N Other +1c0b698f-e054-424f-b026-b65d1b553413 1 \N Other +1c0cc429-8ec9-4673-8ec2-9522108450cb 1 James Other +1c124a04-16de-4ff5-b87d-bac13affc3d5 1 \N Other +1c153f77-c7af-4cf7-9fd1-f0fe18fc8dfe 1 \N Other +1c195edb-be29-4227-970c-93b4ab9ea17c 1 \N Other +1c1a2411-b72b-47da-85c7-822632ddc9a2 1 \N Other +1c1e82fa-9cc4-42e8-b298-aaa84d8a6469 1 \N Other +1c223192-9668-42a5-b4af-9e15faea7711 1 \N Other +1c2469dd-d0f0-4200-b640-febf210f2142 1 James Other +1c28db84-d2bf-4541-8506-d6fb8d7017d3 1 \N Other +1c2911ac-99ff-40a8-9d28-7338fcdcfddc 1 \N Other +1c2e4700-a1b5-4d41-92a5-d2b50d137c02 1 \N Other +1c2fb1b7-d927-43ff-ac90-04a54293d63d 1 \N Other +1c362e0f-ebf6-42f4-97a3-ca2fb956fb05 1 James Other +1c3dbe14-2d43-4b5c-9690-2dee21548b74 1 \N Other +1c40df2a-d783-4020-805a-e4fa179ecde6 1 \N Other +1c438bfa-6486-475b-a471-9b1299af945e 1 \N Other +1c47ccad-a98c-437b-83f4-bf50149467cf 1 \N Other +1c544151-6e38-4a17-a2fa-7b2f2598c89f 1 \N Other +1c603ad2-7f90-4da8-b82b-34262b49e950 1 \N Other +1c61189d-1869-4ea4-9ad3-cb49002201a8 1 James Other +1c632a64-4330-477f-9ff6-aa694dc48310 1 \N Other +1c635077-e6cf-4d67-bf80-00cb639a7bcd 1 \N Other +1c6442ad-1727-436a-8e25-a4adfb3fed1d 1 James Other +1c6abbdb-fefb-43cc-ad57-add25281f277 1 James Other +1c6ccb53-02a8-4864-b9a4-154e54b0173a 1 James Other +1c6e9c2c-1462-4e7a-a80f-8e5bfd436fe9 1 \N Other +1c706d84-0df6-43b8-a878-5b14def570d3 1 \N Other +1c73a3af-6bdd-4858-a27f-b1fd1368a6bb 1 \N Other +1c7d1aa7-ce0b-474d-9fda-53a1e333ad48 1 James Other +1c83a067-485c-43eb-9374-8503c466838a 1 \N Other +1c875f0b-f6f6-4823-8d99-933ee379af15 1 \N Other +1c88f510-d0c3-4170-8f64-111b87748199 1 James Other +1c8c6637-89fd-4c1f-ac96-e38599a56dce 1 \N Other +1c8e7a84-bc15-40ed-a96c-24ab940a6ece 1 \N Other +1c94414f-1195-44fd-9028-c0170391bf67 1 James Other +1c944ba4-b159-4e1b-8839-6451e4333265 1 \N Other +1c9509b9-b4e2-4c93-ba12-3be1787a1535 1 James Other +1c95ad95-fe26-4b46-b1c3-1c1ce9ef5833 1 James Other +1c971492-fa3a-4bf7-aaf7-fa1997e53865 1 James Other +1c9db08a-3ec9-495a-ba9e-a57f0967ebb5 1 \N Other +1c9e6256-a7e2-447f-b964-e02e214e2c4a 1 \N Other +1c9f5720-5b8d-4e5c-8830-bb82431e5cfe 1 James Other +1c9f9ebd-f7c7-445a-a8df-1d83fb6820ac 1 James Other +1ca0d4ff-be2a-469c-999b-8db3f8014277 1 \N Other +1ca11195-dcdf-47a7-aefd-5617c73c57cc 1 James Other +1ca18c33-caba-4f9a-81fc-65bfd80148c1 1 James Other +1ca1ccdf-e941-42d8-a1b4-86fc2ae324c8 1 \N Other +1ca28797-7618-417a-a262-2381fc2c7dfd 1 \N Other +1ca68a67-0e13-4f64-821d-36e821d4f954 1 James Other +1ca7c7de-72c6-4679-8451-f969f1f4311e 1 \N Other +1cb33e07-da0f-46b0-ba6a-6648e41bdb88 1 \N Other +1cbd5102-ad07-437c-9266-d87362051bdc 1 James Other +1cbd72a2-df04-4132-a993-98e06b8426de 1 \N Other +1cbeae71-ec8e-40fd-89e2-ba7424f0147a 1 \N Other +1cbff42a-cf56-4ac2-b4bf-65df0b89550a 1 \N Other +1cc3f992-a74d-46a3-8e4c-7bd3e7ffef5e 1 James Other +1cc6f9d7-99e5-45e0-8ab4-869392e0393a 1 James Other +1ccc199a-b3fd-40f9-a166-d2cfcd97f9c7 1 \N Other +1cd7babb-1026-4015-ba6b-2638ce3695e9 1 \N Other +1ce3e272-e582-44b6-89df-be1a6eb177cd 1 \N Other +1ce6757c-651c-4220-b026-28a09bd219e2 1 \N Other +1ce6ff14-acf2-4f90-9347-d51926219d3f 1 James Other +1ce9807a-b56b-4ba3-8134-b8083256c43d 1 James Other +1ceac2ae-2ad7-4dc9-9cc0-a6e61b070dc4 1 \N Other +1cee2044-fd1a-4c82-8250-c1248bbc797d 1 \N Other +1ceff572-daf4-4ee5-b885-314e28f4e199 1 \N Other +1cf144a9-6c6a-4ac9-acb9-0cb271c223e6 1 \N Other +1cf3243c-9503-4e7f-b989-8dbed937b590 1 James Other +1cf450b0-152f-4249-b185-2f2cff4d6f5b 1 \N Other +1cf45331-bc24-4062-ab0c-ad45ad9b6e9d 1 \N Other +1cf5a568-c9b3-497e-aaf8-41afb747a999 1 \N Other +1cf5fba4-9832-46f3-b862-08df40509827 1 \N Other +1cf6afd1-d05c-425d-81e5-e66a7520980b 1 \N Other +1cf7fa10-70e5-4911-97ec-0a53cfe2a191 1 \N Other +1cf8186e-b9ff-4d59-81a2-ed748c7dcd03 1 James Other +1d070191-42d5-4bd0-880b-d1a636fd39e9 1 \N Other +1d081b06-0ac0-11e8-a5cd-fa163e8624cc 1 \N Other +1d0d7dcc-54ce-4b07-8d7e-89a5e60d6a58 1 \N Other +1d1754dc-5f6d-41df-aeb2-dbff8238c6b5 1 \N Other +1d17e8ea-5193-4ba2-acf4-30d72f913059 1 \N Other +1d1a1fd5-eab1-421e-a752-3314efbf1269 1 \N Other +1d1cd8c2-1e80-40bc-8408-26591647fce0 1 James Other +1d1fcb55-aaf4-49a7-8df8-658ebe32c282 1 \N Other +1d233f79-d881-4a8a-8539-8590b86abe0c 1 \N Other +1d29b17d-0ba9-41fc-89ed-91959498417f 1 \N Other +1d2e02ac-a704-4723-a51a-ae1444d2b148 1 \N Other +1d2fc094-1fe9-4511-912e-be1fb688ee7d 1 James Other +1d31586c-91f0-4ed5-af61-132f0115393b 1 James Other +1d3280fc-6f23-416f-8dfb-7eac6301d6c4 1 James Other +1d34b932-7191-4964-a815-9417ce829108 1 \N Other +1d353897-64c8-4471-9f72-fd7f0669c13b 1 James Other +1d371403-df32-4b46-8782-ee6b698d9a43 1 James Other +1d3b5e04-c994-4cc5-b16c-884872a296f5 1 James Other +1d3ce256-6523-4ce3-9144-df5e75c0cb1a 1 \N Other +1d3e4d9b-f1e4-49d2-8c32-607849d394c3 1 \N Other +1d412f59-b623-4de6-a0cd-0359987180b0 1 \N Other +1d43368b-44cd-41f0-9ef8-7a1064cb684d 1 \N Other +1d44e5dd-0a0b-4b2c-8f74-c4fe173f1ec9 1 \N Other +1d467fb1-d57f-4438-9bbd-87066e9b44d4 1 \N Other +1d4d3f70-60e8-41b1-89f3-fc517b9d0896 1 \N Other +1d4d9a36-527e-462a-9490-ccccc2cd548b 1 \N Other +1d4debc3-7fc1-4588-803f-87299858c5ca 1 \N Other +1d4efbca-b12f-4993-af9e-2016e25363c9 1 \N Other +1d4f19ec-86a0-46f0-92f6-598754193fe9 1 \N Other +1d56c03a-ac7e-4d1e-99f5-4b0d540c2912 1 \N Other +1d5852d5-f8f0-43e3-b085-09393697d0b5 1 \N Other +1d5a9f09-5759-406a-9c69-e2bf426eaa69 1 \N Other +1d5c06aa-0ed3-4afe-b205-a4754bf10530 1 \N Other +1d5d7a6f-4fa5-43d4-8fc7-005f89e84e56 1 \N Other +1d5dac70-4e70-4a21-84f0-df5b1056f49c 1 \N Other +1d63b0ea-7b10-4c03-851e-7f3cddf454f9 1 James Other +1d67ca74-0ac0-11e8-ad6e-fa163e8624cc 1 \N Other +1d6801f2-ac59-4cf5-92dd-f6b6d8064e26 1 \N Other +1d68f45a-9c56-4d89-8936-5aa8dabbcfb8 1 \N Other +1d69a610-64ce-4d9f-af66-dbb7d6ce5c84 1 James Other +1d6ad930-3c67-474a-b1d2-cf49767ee415 1 \N Other +1d6e3404-b56d-4e6e-9b63-c17b6b18e699 1 James Other +1d6ef5c6-bfd7-41e3-bc80-40b17b79f924 1 \N Other +1d716e7c-3b5c-4f85-a3a4-25568250ab96 1 \N Other +1d72ae6b-3ed9-4980-b108-d402bd375af1 1 \N Other +1d73f8f1-d81e-4364-8960-2d74b1500c55 1 \N Other +1d7619f1-e610-4329-9114-f1298b928c0d 1 \N Other +1d7ba15a-a29a-4052-bed6-ad74df929586 1 \N Other +1d7e6a1a-a25d-4277-bc81-159f711200cd 1 \N Other +1d7f0315-649f-4e40-8ea8-7d46b848bd8e 1 \N Other +1d801afa-0dd8-4a04-ab71-d92dfc0da2ac 1 \N Other +1d835440-8845-4607-ad3d-ff4b5c7cd258 1 James Other +1d838391-2bae-46eb-824d-a7dac6c849ad 1 \N Other +1d88b7f9-f24f-448b-9540-fe04b366b928 1 James Other +1d8a4a0c-a132-4905-b47c-3712d1fd4cfb 1 \N Other +1d8b6a6a-5260-47d4-8ef6-43108d5df543 1 James Other +1d8b6e8a-1e73-459f-8eab-3488946ae205 1 \N Other +1d8dc8f4-c562-4b66-9339-114779dbe5cc 1 \N Other +1d8f20e0-ff7d-46ca-9291-ef8b133f3813 1 \N Other +1d95f86f-84b9-4df2-a45d-a6f80e830514 1 \N Other +1d960f1d-ff4a-4080-9b91-b5a75994ae21 1 \N Other +1d96d03c-07d7-458d-9298-54c88da31d92 1 James Other +1d993525-ac4f-47e9-9b6d-f11dbe62c70d 1 James Other +1d9c4ea3-c5cc-4858-8b16-3f68a5be71ca 1 James Other +1d9c9af8-3231-48bf-bdb2-56e5348c76b8 1 James Other +1d9da27c-6936-44be-b1db-be52a9aabab1 1 \N Other +1da04ba0-afbc-45b7-8470-9f7f45e04281 1 James Other +1da6a268-db71-46d0-a94b-58db43f59097 1 \N Other +1da6c8ab-c063-470b-8f22-dff08480cc6d 1 \N Other +1da7ed7c-bc79-4f79-a858-564e22be1f64 1 \N Other +1daa88ba-cca9-4502-9674-a7f4e51277c6 1 \N Other +1db12a73-2c17-4d8e-aee9-6aabcd7b026d 1 James Other +1db7b14e-3e8d-48ee-90f7-22d508f2e74d 1 \N Other +1db9fdc1-fc1f-4984-8bb5-e3220f25e8fa 1 James Other +1dbfa5a7-78fe-49f6-a18b-151a2d2ca1d6 1 \N Other +1dc2eb1a-6c3c-4b74-a9ca-6af46e0baf48 1 \N Other +1dc7d8fc-2914-4419-8719-3a1117f806ef 1 \N Other +1dc92bd2-e8ef-4cf7-b74a-d56b5f4adb75 1 \N Other +1dcba2bc-5b26-433f-8963-7595d5d56366 1 \N Other +1dcd2af5-635f-4c27-8d5d-dae96df24413 1 \N Other +1dce2f72-ae73-47a4-9297-01782fb16c92 1 \N Other +1dcf336a-c09c-4f65-a381-f5027f47d800 1 \N Other +1dcfada0-b060-45a9-b98e-d4570991726a 1 \N Other +1dd136c9-9eee-47d1-ba00-59a59c6939c1 1 \N Other +1dd511df-3c5a-4a3d-88dd-ec3102b8ea40 1 \N Other +1ddb5e3a-8886-44a9-9ff2-424e93c92f42 1 \N Other +1ddd4b5a-25e9-4bff-b955-a11bfe8203ea 1 James Other +1dddb436-9b1f-4847-b479-a8fb74bf52b6 1 James Other +1de05797-9313-4030-a138-0a0f78688beb 1 \N Other +1de17d45-69de-4b3c-8954-a1c4d7380a26 1 \N Other +1debebba-e5e7-4ad3-8ba9-b46ff5873bb9 1 \N Other +1dedbfcb-8e27-41fe-8d60-aa1059fbe1b2 1 \N Other +1df06f3f-7930-43e2-91f5-726de1ef4d41 1 \N Other +1df0d1f9-e2e6-4038-a218-3f319fdd0203 1 \N Other +1df3ddd5-cf4b-401e-b50c-39ceb3a23dfd 1 James Other +1df4a16c-768b-4b57-9933-f015b1bbdaef 1 James Other +1df6c4eb-6810-468c-b603-fbdf7379bff8 1 \N Other +1df8b2a0-d7d5-4167-bca9-2a0fb6ce49de 1 \N Other +1df9a254-99af-472e-8e3e-994e6c7ddcd0 1 \N Other +1dfd14d8-0601-43e6-884c-c6aea0e2ff98 1 \N Other +1e039e61-2e3d-4f22-aece-aea6a6d8434b 1 James Other +1e0fc882-3558-4018-a84b-6782183580a3 1 \N Other +1e1233ae-35d8-4cb9-b5fb-266d96a68b8b 1 \N Other +1e12d845-c4ca-4489-84d2-b489af93241b 1 \N Other +1e143617-1a28-4929-818e-929c4332e14e 1 James Other +1e14d39e-8f2b-41f7-a074-7cd94415ac7f 1 \N Other +1e167def-21d4-4c2a-980f-dc5ee2caff12 1 \N Other +1e17d2c5-49fb-4b76-ba7e-62f53507eaaf 1 James Other +1e1a1a90-c86d-4792-b3d3-a2ce8cd6e4b4 1 \N Other +1e1aa9b6-8318-4f78-9543-9454949227d4 1 James Other +1e1ae58e-c4f2-4be5-96f8-2b2906fc3b68 1 James Other +1e1e238d-b275-48a9-910f-b84c3d76bde3 1 \N Other +1e201806-ac20-4f66-82f7-36b24ce1a3cc 1 \N Other +1e23954a-3020-407a-be83-c13a939bc560 1 \N Other +1e261800-e517-45b6-856c-d8a6833fb677 1 \N Other +1e27c53d-868f-4765-b11d-e9f1d8f281c8 1 James Other +1e28aa48-09b4-4038-b404-9275d84b880d 1 \N Other +1e2aa544-2761-40ca-b67e-fa0214834886 1 James Other +1e3293df-083c-4beb-ad4e-32bdd538c221 1 James Other +1e32a8d9-d041-4299-a4ea-f60ef5ba54a6 1 \N Other +1e3320b7-8a7d-474e-b185-92b21914ff9f 1 \N Other +1e33af05-0313-4e06-8be3-751b3dd9701f 1 \N Other +1e34074a-7d92-44c4-96b6-b544e87e0e53 1 James Other +1e354111-abab-48bd-b9ea-3b8b87fecb94 1 James Other +1e3c0c43-2bfe-4f7a-89d7-2bc6af3576ed 1 \N Other +1e3c831b-5972-476e-8bbc-752b995f0e47 1 James Other +1e427601-40ac-41e3-a591-dcc44e8ef5a2 1 \N Other +1e4343aa-6325-467d-9ee1-4a12ff13d80b 1 \N Other +1e43901a-72e7-4b88-922d-9c86b2f0f584 1 James Other +1e49c668-6d9b-4aa0-a41c-e04fcea2ec81 1 \N Other +1e49d10d-bea3-416a-9caa-c9cd388dde27 1 \N Other +1e4c3035-b520-4972-9bd1-f3e059e1631f 1 \N Other +1e556d30-8bf9-4a03-9006-17ad7fcd8b2c 1 \N Other +1e598215-ade7-4a7f-b324-8cd410090126 1 \N Other +1e5b94cc-7717-46a0-81be-355ca272eb7a 1 \N Other +1e5bb0d7-b3e6-4b87-9267-3cc7b97493d2 1 James Other +1e5f7b78-927e-4d77-b5de-72bd3f03c853 1 \N Other +1e654a47-7f9a-4ea4-84b1-ff5bf13b3a6a 1 \N Other +1e656f6b-98bf-481d-9409-4841e933cffd 1 \N Other +1e69f811-1027-43e6-b770-bcb5b228a52d 1 \N Other +1e6b9ba3-b9ce-4c89-8437-5c2634724064 1 \N Other +1e6d39ea-8113-4c0d-aa2d-4c2300e6a300 1 \N Other +1e6fe6f4-aadd-4a82-b8d7-e33bda57e011 1 James Other +1e6ff153-1a85-43b6-9736-f6161a4fc1f6 1 James Other +1e73661b-b473-4829-b7ea-2594cb9a6970 1 \N Other +1e73b2bc-9c75-4e8b-a42b-a6c259bb15ba 1 \N Other +1e775dae-ccbb-4f57-8557-e6d18267dcb8 1 \N Other +1e7a7d5c-29e0-46af-b771-77a9fc60dda3 1 James Other +1e7e8e5f-67df-4e0f-885e-b8e036bb34af 1 James Other +1e7ec2f6-c723-4648-8a74-e5e47aa8cd84 1 \N Other +1e800edf-f251-4c6c-8670-beac6a0edc25 1 James Other +1e81d126-2418-4b41-bb0f-9d2dcbcdb65a 1 \N Other +1e83656f-8a38-480f-8865-39297a7d3a96 1 \N Other +1e87c643-aabe-46f7-9018-fee875722418 1 \N Other +1e8cd2cb-d490-4c18-abdd-fa3e24e08723 1 \N Other +1e8dbebe-5597-4ade-9874-99846adc73be 1 \N Other +1e8e0c28-616f-44d9-8306-1f30ae2327a2 1 \N Other +1e90b438-d8f0-472e-aa89-fc1090def1c8 1 James Other +1e90d00f-50e2-4532-aea0-89dfc2d4c27e 1 \N Other +1e99ba3e-9d69-4a7a-b382-052a6ca4ee08 1 \N Other +1e9cb056-8d15-4201-9578-deedfe14dab1 1 James Other +1e9e13a1-5269-47ec-848a-ae719b219245 1 James Other +1e9e8643-20f4-45f4-938b-37781054246f 1 \N Other +1ea3214a-ccf9-415d-b013-c74e4ca01d59 1 \N Other +1eaa01b2-778c-4310-9bc9-05a5eab4e47a 1 James Other +1ead1b62-15f0-42d0-aa6a-0888e8d9a5e2 1 \N Other +1eafd489-4d65-4557-83cf-9208b3f62f33 1 \N Other +1eb8c4e9-6b80-431d-a2b0-7b72dd39bdd0 1 \N Other +1eb9167d-cbfa-41f9-8b37-14651a23ade5 1 \N Other +1eb9b242-97da-43de-9970-41e69b7fc4ba 1 \N Other +1ebc3385-30b9-4515-ab17-6a809283f254 1 James Other +1ebfc280-04cb-4b5a-9ac6-e3bb352e9aad 1 \N Other +1ebff96f-6a75-4d39-9729-c43bb4e5bf34 1 \N Other +1ec2b45e-92b8-4f4d-a10e-83a51a934eac 1 \N Other +1ecf8fb1-87a0-47dc-8fc6-ee353628ab80 1 \N Other +1ed11766-f9d7-45ac-9503-60b56e5f0e18 1 \N Other +1ed78d5b-0f7a-42b6-b431-82126b2b8515 1 \N Other +1ee4cc8c-4f5d-4638-8a1b-7bab28b0ca3c 1 \N Other +1ee6159d-3784-493d-be54-4c538487e3b7 1 \N Other +1ee6f2ad-b6a5-41b2-bab4-0eefa38aec45 1 \N Other +1ee86397-09e8-4b0b-a2dc-c4ebe129e0b7 1 \N Other +1ee999ef-4285-47ce-81a3-71dd6695a9ed 1 \N Other +1eeb8a41-5ac7-40b5-b78c-809f3462bb1f 1 \N Other +1eebd337-1200-4824-9e2b-8fc646957b4d 1 \N Other +1eec8f25-a78c-4624-b0ca-f9f102a2827f 1 \N Other +1eee033e-9418-4b75-aae2-6c0a18ec0675 1 \N Other +1eef0a33-1119-42af-b427-e144a41f294d 1 \N Other +1ef1c6a5-2af6-447a-a826-b36fce072bee 1 \N Other +1ef2c09f-940c-4f8e-95ec-585cbb4579ca 1 \N Other +1ef7d639-078c-4b2e-8af9-b3444e5c51b8 1 James Other +1ef87204-0f33-4ead-98aa-66ae6be758a2 1 \N Other +1efd1df4-1f17-4b51-92ef-e5a5c10e3659 1 James Other +1f019bd0-9cc8-4afc-aa5d-a0fb54aff522 1 \N Other +1f023bff-2a46-45f8-bcca-8c793f131d89 1 \N Other +1f03eca8-311c-4a15-a7ae-6fcf2e6644a3 1 \N Other +1f08552c-0eb9-11e8-bc4f-fa163e8624cc 1 \N Other +1f090663-eb48-42a3-ae4c-e22acd140269 1 \N Other +1f09161f-e2b9-434b-a32f-b8c7385c3bfa 1 James Other +1f09fad2-0f87-40a2-82ae-3a652ae612f3 1 \N Other +1f17bbba-30fb-4f05-b24a-486dda572248 1 \N Other +1f1bb3e2-3887-42d4-b7f0-aae9ccb0acf3 1 \N Other +1f1bf6a8-e1d0-4c92-83a6-97a872e6f4fb 1 \N Other +1f1d73ea-ef69-4b61-81e4-ab7ac086c307 1 \N Other +1f1f74cd-de39-4ea4-9fbf-50f393dfd606 1 \N Other +1f21f979-90b2-4735-9859-a8e7c23aec85 1 James Other +1f26eed6-e9d3-471b-ad98-40e2549aac06 1 James Other +1f29891a-02a4-480e-af82-02f330ffcebf 1 \N Other +1f2a4e99-b9d1-40f0-8546-dd604b42b0b7 1 \N Other +1f2e10d6-48cb-47fc-96e4-840ae37b06a1 1 \N Other +1f3216d2-0bfb-4ed2-89ce-04dd53519bdc 1 \N Other +1f3586e2-ce15-4a71-828d-b1a69d2e0d55 1 \N Other +1f35cc90-1c50-4603-a1e7-6743aa81f982 1 \N Other +1f3a3e34-0eb9-11e8-8398-fa163e8624cc 1 \N Other +1f3a40c9-aff8-49fa-9790-c034804facc8 1 \N Other +1f3c3213-a292-45ac-87ed-4bfd0b082c53 1 \N Other +1f3c9467-f412-4744-b60b-2028c3351d97 1 James Other +1f45a38f-bb0c-4ddd-aa5f-c7f38e3dd9ed 1 James Other +1f474464-4d9a-4414-b9a6-56715107c971 1 James Other +1f47811d-74dd-472b-9223-a94e2ed9c394 1 James Other +1f4c5fe8-bd23-45c8-811f-2c615b04aaa6 1 \N Other +1f4f1ab1-98af-44af-9fa9-db76a48371ee 1 \N Other +1f5de64b-307e-4b5c-b11c-83178c149c09 1 \N Other +1f5e372d-d5bc-4a0b-ae25-d6b78a145fa5 1 \N Other +1f5fbd0a-5e94-4e2b-9a40-1d420256c7b6 1 \N Other +1f603528-513f-43f1-aa0e-5236e968774c 1 \N Other +1f60e4e7-d29d-4b70-839c-f9c219f192d5 1 James Other +1f66ad4a-b27e-4fa1-b4ca-472185b46c28 1 \N Other +1f685315-ecdb-4f56-b84d-726962a6561e 1 \N Other +1f6eb325-7e2d-40d7-a484-9871d0f1de45 1 \N Other +1f73e22e-83a3-400f-9284-306de6add2c6 1 \N Other +1f7a7e01-fb0e-4aa8-8f2c-8aded16d999a 1 \N Other +1f7b7f0f-1682-4b7a-a3ed-fd19be5a3287 1 \N Other +1f7cc4b4-fa1e-413b-b131-c4aa35fd52fd 1 \N Other +1f7df8f6-e9f7-44ec-a267-b95b74a24205 1 \N Other +1f7f2522-842d-4294-a05c-da120e6d34b7 1 \N Other +1f80a8fb-ba34-4aa6-91f5-9f398bcf079e 1 James Other +1f80c5d9-f728-4541-9773-ff84440e42ef 1 \N Other +1f84e121-3004-4611-a5b0-fcf06dc0ebb0 1 \N Other +1f860345-379a-4d4e-9c98-26de1fe9aa7f 1 James Other +1f90d658-807e-458d-aff6-a37102f21e5c 1 James Other +1f955600-c7fc-430e-9d85-0a07afa257aa 1 \N Other +1f99f354-305e-4172-972f-ecfdf88a7e99 1 \N Other +1f9a0a99-b8af-495b-bb1a-49898f82c4af 1 \N Other +1f9c3b9d-0143-41ca-8b4b-3773673f7928 1 James Other +1f9c782c-5c6f-4b80-9555-03feb1bfed45 1 \N Other +1f9e0fdc-84cc-48bc-bea8-f00403eb6870 1 James Other +1fa2c6fd-85e4-47ce-9fcd-4b7dbfb8113c 1 \N Other +1fa41707-f4f4-4288-8c95-5a66f5e7286b 1 James Other +1fa80c8e-ba34-4f1b-8641-56af2e89694d 1 \N Other +1fa84725-cfc4-44de-99f5-99277036e3fd 1 \N Other +1fa9282e-447d-4c61-868e-6ec2f72ca568 1 James Other +1fa9bad8-52b5-4690-b71a-6b25ca0ba10d 1 \N Other +1faa504d-9da8-42c1-9ce4-1ae3640c8286 1 \N Other +1faaabd3-a655-47ce-8c1e-1018c5302762 1 James Other +1fab86e1-0bed-4338-9307-7d02c0d316ae 1 \N Other +1fae1364-c5aa-4186-b8ad-1e4531e085d5 1 \N Other +1fb37fc6-1c28-4392-8e76-cc7f29cdf25d 1 \N Other +1fb52942-ae68-452e-b23c-c464ca4dbeba 1 \N Other +1fb7886e-9d48-4c62-b402-d82c40a35309 1 James Other +1fbb085e-3cb1-4779-a991-65a105e326df 1 \N Other +1fbb20a3-0f3d-4e3d-bdf3-1e2ca1657be3 1 James Other +1fbd3957-1de9-4073-859f-22a73e62e963 1 \N Other +1fbe92c7-db83-4026-84a8-fc16968f5863 1 \N Other +1fc0f1b2-5f4a-4d49-846a-ea13feeda410 1 \N Other +1fc1cb27-9587-4492-9194-e9cd5a5600b0 1 \N Other +1fc323d5-5adc-42b1-b0b4-ce44b20a2821 1 \N Other +1fc43f71-9db5-4148-addb-61d13f560332 1 \N Other +1fc9d2e3-4795-4240-9065-3ce37144481f 1 James Other +1fd300d7-4172-4ce4-91c0-5117a5364fd8 1 \N Other +1fd380c9-381d-46f6-9010-6bc9df89ab8f 1 \N Other +1fd75877-6c00-4d8b-8a3d-20a8b589af33 1 James Other +1fdc27c9-4505-48e9-a8b0-46e925c15185 1 James Other +1fe140a8-a53a-49ae-8229-4753f56f4395 1 James Other +1fe1e65a-1174-4d25-bbed-6e94a532b887 1 \N Other +1fe23f77-1f1b-4e4e-8092-c16e1f8c1a9a 1 \N Other +1fe6cdc0-0810-4f8c-9f3b-04b9fbb462ac 1 \N Other +1fefccea-d37c-4ed4-976d-7217dac709cb 1 \N Other +1ff0f93a-90b1-49f9-81c7-74b941824684 1 \N Other +1ff13566-9fdb-453f-88cd-d61ebf11df2b 1 \N Other +1ff29051-d6ab-44bf-ba6c-46d3a0ce252d 1 James Other +1ff9b967-57e1-4c33-bcc2-73658b769b02 1 \N Other +1ffc0b67-9750-4f4c-bef4-01afdb4207aa 1 James Other +1ffff10a-c5ae-4496-9c04-91ca90ad7546 1 \N Other +2001f5fc-ef01-458b-9662-4cdd5bb4a0d4 1 \N Other +20033f84-44c0-4584-82e1-d4868c084020 1 \N Other +20069693-a7e7-44a6-a99a-c93842926849 1 \N Other +20079ec4-d5d1-4842-9e9c-18852b161309 1 \N Other +20092868-98ae-4875-8cd4-ebfc3640e442 1 \N Other +201a2e50-6d37-48d1-87d8-a89d4679908a 1 \N Other +201e532b-db13-40e8-a0af-00e888400e94 1 James Other +2020a19c-dad4-42ac-bdd1-278fe9b5ceb4 1 \N Other +2021b045-aed9-4cad-b654-35da60a4a4f4 1 James Other +20230877-9176-40a7-87bb-42fcca6b7b58 1 James Other +2025a854-7456-465f-bcb1-c2f5db61515d 1 James Other +202ca397-8802-4dee-ba24-42b0916d56eb 1 \N Other +202e8760-8664-443f-917e-bf1151712967 1 James Other +202fac43-5e63-4445-b9a3-338a8b9ead94 1 James Other +2031de98-6031-4935-b5c5-b0201acd7cc7 1 James Other +203360f8-442a-41d9-8252-6018a5f7c394 1 James Other +20399d72-37d2-4924-97a7-c0f34226e035 1 \N Other +203bb21c-dd6a-4f69-ad07-15633073aa04 1 \N Other +203de53a-780d-4805-a526-f1a46b751561 1 \N Other +2043c2d0-c814-437b-baf0-213d642e6507 1 \N Other +2048519e-c3e8-4f9e-b594-11202657d6a3 1 \N Other +204cfa73-1e5d-4236-afdf-4678d3e88a19 1 \N Other +2051a0bb-825a-48ee-8964-5415cee0053c 1 \N Other +2057ff9e-9446-4f81-9d94-7d91cd34a24c 1 James Other +2059c457-b19e-40a0-9bd8-235afdd7a751 1 \N Other +205cd1ae-deea-4273-a756-87db3be7441e 1 \N Other +205d56f7-e3b4-4771-b064-f4dad6cdd090 1 \N Other +20607168-605c-4def-a89f-096fcab0c14a 1 \N Other +206257e7-148d-441d-b197-e5a57fa6e8f8 1 James Other +206c958c-490a-4a2e-a3ea-9ee012bc5b01 1 James Other +206cd105-718f-4f56-80f8-fe200334aacf 1 James Other +206dd627-894a-4c01-84d8-6481802483c3 1 James Other +206e902a-aa6e-4a7d-9285-1b6a563f294c 1 \N Other +207381eb-ba6a-49ec-a46a-e5240b78b77e 1 \N Other +207858fe-ea86-4093-9e07-c3153e2c7d84 1 \N Other +2078f463-e6fb-4264-a78d-9dd207d1636d 1 \N Other +207d2594-e371-4fa0-87d9-2076f7052b94 1 \N Other +207e99ff-300a-4374-9c40-8c01b27f7eee 1 James Other +208317f9-3b0d-471c-b5f8-0c9c1fbdb647 1 \N Other +20834b48-7680-4dbb-87a9-e4bdcbb433ab 1 \N Other +208b0065-3c23-45c7-b9b5-bf97d7ae00e3 1 James Other +208ef070-8b76-4d7d-9fa6-f5660c453991 1 \N Other +208f1166-accf-4c9b-bc87-4bc8d54c72ee 1 \N Other +2093140d-1433-4a52-bfcb-e8bf69badf15 1 \N Other +2093d538-2da3-4c41-8e1f-ef4a24b950a5 1 \N Other +20959f97-76ac-4bf9-8fe2-b04c8490fb43 1 \N Other +209a0a07-3e37-402f-9297-ba53fc9dd0cd 1 \N Other +209b4ec6-cf2e-40b5-a046-af76bac2e801 1 James Other +209d7652-76a1-4439-92df-43687fa27a42 1 \N Other +20a0a4bf-d50e-4016-b81d-9fb9adf69d27 1 \N Other +20a54d21-0a86-4d24-88b9-890440e17034 1 \N Other +20a5640b-5fb0-45d9-90cc-7c333005f36a 1 James Other +20a97b31-9d32-4a85-a252-d2263a1721b0 1 \N Other +20aa0346-d972-46da-82f8-190ba363d8bb 1 \N Other +20aa0f04-9dec-40a8-8cd1-0b93095e7eb0 1 \N Other +20aecddc-90ac-42ee-9ce2-f85f655703e2 1 James Other +20af4cd3-dd9a-41ff-9585-87013e47d84e 1 James Other +20b633ae-4eda-42fe-b6b6-63db1d1544f3 1 \N Other +20b8d40f-3a81-4adf-be53-645f0a821af3 1 \N Other +20b9448f-0da0-4184-9479-31da661d2169 1 James Other +20bb32f9-1619-471a-9371-5c032b99dcd3 1 \N Other +20bbcd27-145e-44d1-9672-92b651aa54bd 1 \N Other +20bdd4fb-c3c6-4474-969c-b24bbe98d5c1 1 James Other +20be1fbf-d117-4a25-8bbb-3d8f17287a8c 1 \N Other +20c05b9d-13bd-46f7-ac54-aac9cdd0c974 1 \N Other +20c1857b-7825-4496-868a-869513b1a678 1 \N Other +20c22760-bd54-4c67-96e9-d254745aa0dc 1 \N Other +20c2634d-b77f-423c-bb04-710874da8d04 1 James Other +20c295d1-0440-4c00-8429-51d0da7bee6b 1 \N Other +20c4285e-4487-43f9-aeb2-b6190b583fc7 1 James Other +20c6682d-474e-4108-b2d2-b4ef93b2fcaa 1 \N Other +20c6e539-76db-4732-8f66-864a0a4afb3b 1 James Other +20cc7c45-7bd1-4bfa-8cf2-43160ff1b221 1 \N Other +20d0983e-462c-4abb-9fd7-46b8d8c81a76 1 \N Other +20d24a1a-4786-4a54-bc56-bdf39a171782 1 \N Other +20d57cf3-31d0-47d7-8d31-d8cf0e10d505 1 \N Other +20d815e5-a437-4c3d-aa62-82eb4814e4c7 1 \N Other +20da0250-d80f-48ed-bb59-ab611ce720b5 1 \N Other +20e5bbd5-c567-409e-97d8-a13f91a3a793 1 James Other +20e9183e-3911-4e4b-8050-ff64054c1234 1 \N Other +20f26c5d-96a1-4b53-bfb0-8b800431853d 1 James Other +20f8ead2-4e8b-49ff-bdfa-bc3b15336b48 1 \N Other +20f8f2fa-aaf8-494a-822b-fc91ade5b82b 1 \N Other +20fbb3d8-3f66-4579-8b6b-581b8e9b46de 1 \N Other +20ffcc8d-6d6e-4311-ac14-4a99042e8aa7 1 \N Other +2100991e-5a70-41d4-ae21-cc95be6c4e6c 1 James Other +2100e9ff-e822-437a-8ec6-a2ea1bf8c4d3 1 \N Other +2102a3b3-144f-4d4a-a7c1-c984419c7544 1 \N Other +210475f1-d155-42c6-b07f-d4912299ce63 1 \N Other +210a5f60-1f40-4c37-8bdc-bea48e68ebc4 1 \N Other +210a6f4f-34c1-4f2f-a0aa-58bb7ef96f7e 1 James Other +210ecbfb-a45a-413c-ba54-25ced3357987 1 James Other +211308d0-514b-424c-a47f-f9599c91cd89 1 \N Other +211cf509-0e6e-4d06-9545-667937e43023 1 James Other +211f75f9-0b9b-4047-9465-7a522c58ebd7 1 \N Other +211fc219-5a9a-4c85-82aa-44e89d68429b 1 \N Other +211fccae-ebb7-42ee-a22b-0e2a7aeec608 1 \N Other +2127acd4-ba69-4a3e-94c0-e7fe50d517f3 1 \N Other +2127cd25-b1dc-4c93-a93b-dfa3c4b10afa 1 \N Other +212e34f9-a2bd-4be7-be3f-5aa37c8bb6db 1 \N Other +2135c89f-6392-4c86-b8ac-d9b92fdd4272 1 \N Other +21431df3-9d33-4e11-b368-76325d83044a 1 \N Other +21436234-f619-4899-b1b7-d57e70d44d16 1 James Other +2143f6fc-b42b-4df2-9c3f-57bffea8e822 1 \N Other +2149a926-034d-459c-9852-d571dba66eeb 1 \N Other +214a158f-f83d-4169-8b33-11afe1d56ed6 1 \N Other +214caa6a-c265-4318-a019-04056b8d5a0c 1 \N Other +214e2609-98f9-4a09-962e-1f017175c699 1 James Other +214e30aa-fb05-4ab2-b40d-3966b76bfbb9 1 \N Other +214e4f55-db71-43a3-8342-f9fa4ede50f8 1 \N Other +2151f398-f3b8-4604-87ee-56a58e0ac926 1 \N Other +21525b0f-9eaf-4802-b5ba-c96c555bf680 1 James Other +2152dad7-8af9-4682-8f0e-ec60c6f70bdb 1 \N Other +21539c07-c1f0-413b-bdf0-8cb251d1c0cd 1 \N Other +2154d03b-cd0b-47e1-9d3d-7f9baf88a5ef 1 \N Other +215a8876-05b1-4cb5-88ba-2636924cfcef 1 James Other +215af0bc-a378-4e24-9e21-398aa16f5a24 1 \N Other +215ccb1a-6d48-41d6-ac96-c2b416b98fa0 1 James Other +215ff418-15ab-48d2-bf75-518cec1d659c 1 \N Other +21625de2-8a5d-4972-a633-4ed453f0757c 1 \N Other +2162e373-4b40-4538-9ee1-aa3885deeb70 1 \N Other +216384f8-d7f2-4b77-8b1d-6ed3f6d3f981 1 \N Other +2164a0b2-e34a-4d3a-aa21-5d4bd8b11960 1 \N Other +21651c5f-2647-4c85-b843-5e65a0bfbb86 1 \N Other +2167c47f-477e-4770-a0de-5b16ee0e565e 1 \N Other +21685377-3f79-4dae-9f07-fa87e00d7013 1 \N Other +216b1c0c-f7c5-439b-8b8d-9420150f9d0a 1 \N Other +216c9d7e-fdb9-4412-b59b-0ea830741150 1 \N Other +216d83b2-f812-4ad3-a7be-bac630c219a6 1 \N Other +2170c9de-9966-43ea-a635-d8780a7739fd 1 \N Other +2173a5c8-08e0-471d-be5d-dbfcfde23bd5 1 \N Other +21749855-367b-499b-8e38-db8b8cad4c6e 1 James Other +2175bab9-e0e6-4c62-9878-c7c0fe3d6275 1 James Other +21774cdd-008e-4771-96f7-db4df0c3c6c6 1 James Other +217913e3-2103-4704-9c73-763c6b7d530a 1 James Other +21794845-e27b-4521-bc27-55f81c4c1019 1 \N Other +217d53d7-65e2-4957-a6a4-69ac94648e8a 1 \N Other +217de3f7-04c5-4678-acf7-f8334f060729 1 \N Other +218087e9-f1ce-4cbc-9c3a-80b523185cdb 1 \N Other +21826670-6ad6-4a67-a9f2-71c5264d1a65 1 James Other +218e66b8-52fe-40fa-be46-0b039b3876f8 1 \N Other +218e96c7-b088-427f-a8ed-335c3fe4b2fc 1 \N Other +218f2801-e0d1-488e-934d-8735e3ad4e45 1 \N Other +21920d31-164c-4cab-b3b4-5e232935871b 1 \N Other +21922761-e33e-4620-a128-2dd958c6bc12 1 \N Other +21995795-e7b1-47fe-a21b-1240b39ba533 1 James Other +219d74e6-1bac-40c3-a076-9f177369455c 1 \N Other +219df0cb-5426-4ca1-b1b3-2692fcbec1b8 1 \N Other +21a7a52d-1de5-4302-846f-d0bb297aedbe 1 \N Other +21b17c96-89a8-41f9-befc-8184ca6c69fe 1 \N Other +21b56945-01ce-4442-b032-8a3856128816 1 \N Other +21b7972b-9c44-45c7-98db-375be294ad0c 1 \N Other +21bbac43-24d9-4174-b377-3673a700a851 1 \N Other +21c1fa20-c9dd-43e6-be0b-b47d442cfd89 1 James Other +21c205e1-ad91-46f8-8e69-3eb5ef49f32d 1 \N Other +21c69bb1-695e-4f0b-8013-a91b8a585240 1 \N Other +21c7e2e4-2e04-4a2b-b122-e15ae751fe39 1 \N Other +21ca0109-5700-459f-85d5-da8b32578794 1 James Other +21ce679f-2b41-4ddd-8d98-6b027348697b 1 \N Other +21d2d78b-5e5e-4542-8210-d8ee8fc975e0 1 \N Other +21db5d76-3f05-4103-9b3f-4bf9b9f6390e 1 James Other +21dcf643-0556-41d7-96ce-1e47912aa7b1 1 \N Other +21dfbc82-0447-4450-88e9-1fef2bc3bb10 1 James Other +21e137ea-1656-4bc2-812c-d93ec3948602 1 James Other +21e21a9f-dc42-4c49-bb3e-77dedd1e4607 1 \N Other +21e411eb-269b-4fa7-bd8e-e4d223a84554 1 \N Other +21e5ffce-01b9-4edd-b6cc-459efbb49e45 1 \N Other +21e6adc4-badb-4d58-8485-59bf4ff2ff3e 1 \N Other +21e6f91e-54b8-48d4-98b7-090e03deae3e 1 \N Other +21e8a9f6-21be-4084-931f-eec53a6d3b1b 1 \N Other +21f0002f-a601-4774-9f12-dcca8ddd90b1 1 \N Other +21f37d5b-9f21-4924-9714-04f3cf2e6e64 1 \N Other +21f6f924-9775-420c-9381-dc5a7dfc7c29 1 \N Other +21f7d581-2818-445e-ba27-8dcb1c73231b 1 James Other +21fb7baf-c0f8-48a0-8199-8952302fb0f6 1 \N Other +21fc1dc4-7867-4c2d-8368-7f7e712da458 1 \N Other +22028afc-e71e-4473-ac28-9b6bb24f7c2c 1 \N Other +2206bb7d-5fc8-4fbc-b94b-5351ee2374e8 1 James Other +22076758-c998-4ec6-958e-67d64dca5263 1 \N Other +22080728-1c28-11e8-8117-fa163e8624cc 1 \N Other +220a720d-5575-4b69-8c01-28e772e29826 1 \N Other +2211d8d6-3440-4ddd-8b9a-08c7b6987aab 1 James Other +22137184-7204-4580-99c2-813e07d5bb8c 1 \N Other +221b3114-919d-4066-9689-1eecc46ad96d 1 James Other +221e2f7c-fc19-48b2-8bc7-ec5a8c87b58f 1 \N Other +2220251a-0eaa-450b-887a-bd3fa370665b 1 James Other +2225f141-4d4e-48df-922b-0b9d8af8363f 1 James Other +222940ef-9986-455f-9b81-9f6f3c48a252 1 \N Other +22381b5b-402d-451f-b7ec-1f154c3b6dcd 1 James Other +223aaa20-1c28-11e8-ae47-fa163e8624cc 1 \N Other +2241f261-cab0-4ccd-baa6-8051b25e41ba 1 \N Other +2241fd76-d366-4ae4-906b-74fa2d14b622 1 James Other +224482d8-ac0c-49fc-9e5a-a656cae91f19 1 \N Other +2244bb5a-453e-410b-b07a-9d348705906d 1 \N Other +2244c454-3e76-4471-9d09-c6c9bdf6f484 1 \N Other +224747ec-8fb5-4e06-b864-2920c5aead1a 1 James Other +224cae3a-53ab-42f9-a9e7-ac94eeff3e79 1 James Other +224d58b8-f9a7-4829-ace4-7c1f16654c10 1 \N Other +224de123-a3e6-46cb-9021-763b251aea9c 1 \N Other +224fcaf8-28fb-44a3-ac74-751e75a59794 1 \N Other +224fd9cf-6b1e-4cbe-afd0-558929ab1e9b 1 \N Other +2254dec1-614e-4e96-adc8-c0b47f2c5321 1 \N Other +225887f1-daa4-4adc-bd98-8a867858c194 1 James Other +225cbab4-9f3f-4a33-a87c-8027697a793a 1 \N Other +225ee842-5afc-4e43-a21d-d67d5aaa135c 1 \N Other +225f1217-9ff8-433f-a1c5-7127fc4e7cda 1 \N Other +22605cb5-0f1e-4fab-a8c1-77deb1f9eaae 1 \N Other +2262d1d4-a817-48c0-90c5-9403a7908511 1 James Other +22648c9a-a9f8-4668-a9fb-943978ad74c1 1 \N Other +226d0888-62c5-461a-b910-bb3e3a740df5 1 \N Other +226e8779-1fef-48fc-a99e-34f9ab6c2857 1 \N Other +22755f43-124d-4299-b202-b4b27c72087f 1 James Other +227a75d6-563a-4cbd-ad82-019e3731e415 1 \N Other +22801431-e7ae-4986-8b08-f12310706163 1 \N Other +228458b2-3a48-4d02-b42b-5a8213e49eb4 1 \N Other +228a7d80-2259-4968-83a2-c1e8067a03c8 1 James Other +22930be5-7aa8-41f4-a54a-f9ae087a7170 1 \N Other +229979ff-4655-4cf5-bac2-dc1ad676d6cf 1 \N Other +229c4752-1e2a-4548-9c42-633cee209f2a 1 \N Other +229e3d38-9957-4b8c-a734-cda52f95cd25 1 \N Other +22a0469d-f42a-47fd-96bc-e880644dd052 1 \N Other +22a2c7b2-a0b0-49b0-83c7-dd44baceb703 1 \N Other +22ae1e24-d9e1-47ca-9c38-b6ea49ded380 1 James Other +22aeb472-7474-43d5-9bd8-c64ef022563b 1 James Other +22b13341-ef40-4e67-80aa-9f0f86bb0c16 1 \N Other +22b5f988-e020-4de3-b9fa-b4e237376cef 1 James Other +22b6a7d0-11cf-480e-aa90-26e4d825a8b4 1 James Other +22b8a900-f02e-4abd-9d8e-b5d8c4566dd1 1 \N Other +22ba58d8-2fcc-47ee-81ad-36774d9f4ebb 1 \N Other +22bd2398-61c1-4b06-bd32-4536e261baf3 1 \N Other +22bf4379-d556-4d2d-9692-d1905e5145f6 1 \N Other +22c01f98-f39a-45c6-9328-9f0deec9d540 1 \N Other +22c055d5-535f-49d4-86a4-e19075a0ae9d 1 \N Other +22c0c475-7124-4404-a50e-66779cf1fa78 1 \N Other +22c1a0e1-b685-4b29-89aa-bfed9b16e013 1 James Other +22c3724f-505b-4374-8773-3d4b40ad5c3b 1 \N Other +22c484e0-f22c-49c3-9804-cde9f0ea48a1 1 \N Other +22c7c107-1d3b-40d1-aad3-ae700c3d05b3 1 James Other +22c9375c-dd91-4259-b0b6-b3afb20b890f 1 \N Other +22cd145e-11cd-4390-a46b-7649a7446b24 1 \N Other +22cea2ac-4ef4-4aab-ad20-c20995c1b45d 1 James Other +22d2577f-c803-443f-ba45-b8a0ca223129 1 James Other +22d40ca4-7898-40c6-a3c4-4d2192a83e9b 1 James Other +22d44984-742c-4db9-a2e8-686f8aa5a474 1 \N Other +22d525f4-fceb-4166-b94a-2592a8cbf593 1 \N Other +22db35c0-621f-4f7e-9db9-10e3d7d9c882 1 \N Other +22e0a04a-fbbc-498a-ba67-d14648a1b194 1 \N Other +22e1112e-71b3-41cc-85df-901d98f9bd4f 1 \N Other +22e32c2c-a684-4d06-9122-d2793a58776d 1 James Other +22e994bf-2e72-434a-b116-ccedebd74cbf 1 James Other +22f110c3-589a-4223-b42b-1f6d5cf0d84e 1 \N Other +22f19f10-3f16-408d-9723-50a6bca8d40e 1 James Other +22f29bc2-489d-49e6-af70-b7b146ccaf0c 1 \N Other +22f506ad-c361-4192-8ab0-167f37a5c138 1 James Other +22f53c09-6c05-42bb-88f5-2fb589bc267a 1 James Other +22f94017-db11-4d5f-b1fc-773c366c539e 1 \N Other +22fca3e5-4896-472f-83df-d5494a3af26c 1 James Other +22fefcce-6924-432e-980f-f46ff7cc1d49 1 \N Other +23052fa1-03b3-4d97-8062-48a58c56ca33 1 James Other +230b0b26-008b-4a70-b1fb-ad6a973e7de4 1 \N Other +230b65bc-2400-4105-9c39-5540ac0997ba 1 \N Other +230c72ff-75d6-4479-8ef4-861baefba0a7 1 \N Other +230ead41-9ce5-4ce7-856c-2e2d2c02d75a 1 \N Other +2310bb95-59d0-41f5-8e6e-d4918e9e4ced 1 \N Other +23138f9a-dd5d-4952-b5e5-279a5f2e764e 1 \N Other +2315400c-2748-4070-ac00-10f27cf4af2d 1 \N Other +231b9235-8420-4404-9196-d29f18b6e199 1 \N Other +23214d36-fc70-47c4-9ce4-7dd0ad9dfc35 1 James Other +23328687-eb0f-42ab-b852-75d27ef0211f 1 James Other +2337ee80-2f90-443e-bddc-263d52b99b40 1 \N Other +233b885b-18c6-436e-8f69-36137656d6cf 1 \N Other +233f0533-335c-47e9-a936-b92f03cb6641 1 \N Other +23420997-7964-41d7-aece-d0a5abaa5786 1 \N Other +2346b7cd-1c63-43b7-bccf-7bea43c22c21 1 \N Other +2346c609-1ab1-422e-bf75-9ba71b563cdd 1 \N Other +2348ab58-48d3-4755-898b-5e858f7d607d 1 James Other +234f4646-1004-46bb-ac11-8959bd9b6377 1 James Other +23512463-4414-46d0-aca4-374a9ef23808 1 \N Other +23521444-ae5f-4659-858b-008b86e8ddd4 1 \N Other +2354ac05-e4e6-4e1c-a6e6-e9671eccd495 1 \N Other +23575256-7fcd-438f-aa07-d073f3b98174 1 \N Other +2359f916-6135-4a7c-9997-4fbd934048f7 1 James Other +23607fe4-4bda-47ca-a566-09f8a7dd4cdf 1 \N Other +23613a7a-e4ff-4ce8-9ff9-fd2b4603e388 1 \N Other +2362a698-0fa0-47d7-93db-179e1d1e7f9d 1 \N Other +23662c12-c307-4512-9336-74f2cc7f9210 1 James Other +2367e545-02eb-4375-99a0-a94575d5efbd 1 \N Other +2370c743-841c-42b5-84e7-05ee8ab10cb9 1 \N Other +2372f592-dea3-4752-a828-0e4130ecdbe7 1 James Other +237329c6-c5dd-4883-b7d9-2948015fb9d6 1 \N Other +23843ec3-1d94-42f8-badc-8226ae13ad82 1 \N Other +23870ef1-092e-4ab5-b54c-7b32a8283f6a 1 \N Other +238b4836-90c6-4322-bd5d-d3a174296e28 1 \N Other +238f6434-594e-467e-b061-8cd2695fe42f 1 James Other +23920815-4ef5-44e5-9aee-9b8a5ebe839e 1 James Other +2394271d-a176-478e-8126-1f133a44e1fe 1 \N Other +2395ae11-2680-42f5-8719-41b0d2483ed4 1 \N Other +23977844-dac8-4d09-9499-b5777c0001d9 1 James Other +23987d4f-a76f-42b6-87ff-e5768c0f6736 1 \N Other +239df016-1f24-43d0-9816-5014a10dcef4 1 \N Other +239ebbf4-abca-45ef-bd29-6893af81c34d 1 \N Other +239ec82e-0cc3-44b3-8485-a00519d08dbb 1 James Other +23a4bf71-fc8d-485d-af36-f8516de6186b 1 \N Other +23abd742-0bc5-47b8-ba86-9051fe43daa5 1 \N Other +23abde86-12a5-453e-bf95-5664216e329e 1 \N Other +23afccd3-4a99-4b07-ac83-68b9ab491816 1 \N Other +23affa8b-da24-4059-b041-ac95b99250ed 1 \N Other +23b54353-d442-43e8-b818-0e6d2f70e197 1 \N Other +23b7877e-1673-4209-b05b-b0c334ddc9fc 1 James Other +23ba4c4d-536f-436b-85b9-f6a81539aa00 1 \N Other +23bc17e0-aca0-455f-bb4c-0cd83369e387 1 \N Other +23bc735c-ae88-422f-874b-9472207e8a7d 1 \N Other +23beaea2-b91c-4df5-bad1-986fa0901f9b 1 \N Other +23c39a92-703c-49a2-a022-a8180964706f 1 James Other +23c3b7fc-cdfd-11e7-ab3a-fa163e8624cc 1 \N Other +23c5fd11-aae8-4fbb-88a5-817f54dbc1a9 1 \N Other +23c6b1ee-c1d8-4638-963e-4533a2578d58 1 \N Other +23ce9c66-036b-4727-abf7-dd3d3dd98cb9 1 \N Other +23d97ffe-4795-4c6d-99a5-e8ab95c66d5a 1 \N Other +23da7bab-288f-426b-ac1c-6ab71f648d6a 1 James Other +23e48a82-567a-4920-b9d5-b3769ddd6bd8 1 \N Other +23e85ae2-1b6b-11e8-a4ad-fa163e8624cc 1 \N Other +23e94087-e4a8-428c-b028-e3ecc743bb37 1 James Other +23f063d7-965b-45cc-a2fa-1d60645b0d2f 1 \N Other +23f0c191-d779-4581-a921-5916b11a7ad1 1 James Other +23f1436a-16c5-4164-8318-3cfdc2085dd2 1 \N Other +23f1ad02-5cf4-47c4-8469-36088675d282 1 \N Other +23f6196d-8ee2-48e5-8fe6-b734eca70c66 1 James Other +23f695a9-eb1d-4185-aad2-d9b88bdc567e 1 James Other +23f953d2-3d70-49be-bf1d-27169cc50118 1 \N Other +23fc3f82-1079-4e89-9646-c9ab0906c70e 1 \N Other +23fd5803-9667-40bc-bbdb-fa6ddf0441e0 1 James Other +2401bc48-b264-4307-9e49-5dccb3702fee 1 James Other +24086b65-3bdd-42d2-b417-3d84e7aa1e1e 1 James Other +240ba6a4-912c-4526-b1eb-9ea2285eb71f 1 \N Other +240d2551-0be1-4dfc-86bb-91ac9970d475 1 James Other +240d8b3c-5666-40a8-90ca-6d9ca81452e1 1 \N Other +24101217-ce41-48a6-98e4-08fdae938d59 1 \N Other +2412b2fc-f961-47c4-a14e-1c69f7b740a6 1 \N Other +24161884-6bb1-499c-9941-a83559e2a6ff 1 \N Other +2419f638-1b6b-11e8-9165-fa163e8624cc 1 \N Other +241b93cc-ab02-495e-8096-ce1f1be206c3 1 \N Other +241bee4b-63ad-4fdc-a417-de500233e42c 1 \N Other +241eb2ee-84ae-493d-a853-b3d8bc79d2f3 1 \N Other +241f5b5b-cbcb-44d1-91dc-adbf0049cad9 1 James Other +24202639-f397-4bf2-bae4-83c26c9c919a 1 James Other +242f70c7-8f1e-46d5-8574-9175bf7e4995 1 James Other +2434f90c-9fc1-49df-a772-873efbeb4135 1 \N Other +24383c3d-d4b6-4853-829e-71e63c2ecc37 1 \N Other +243f5dd4-40b7-435e-aa01-d3bb4d5c33bb 1 \N Other +244020d4-9038-475a-9824-6239052b10b8 1 \N Other +2441bad0-9e82-4cd7-920e-d8453d918674 1 James Other +24441815-94a0-4a41-b44d-5a0ac5e119af 1 \N Other +2447fff0-2abd-4eae-9759-5b2eafe3a872 1 \N Other +24578cc6-8810-44ef-8d80-a018f8567f01 1 \N Other +245c37c8-25c7-4a89-b1e1-5b50147f421c 1 James Other +245de380-6ac0-4c9a-a8ff-e27ccf0bb40f 1 James Other +24624925-7b1f-4480-a6e8-15dc8902d638 1 \N Other +24660ad7-4c57-4346-bea5-c2a3c7a67276 1 \N Other +2468f5f7-46be-40eb-b793-0db61a035247 1 \N Other +2469ceaa-7bf7-4c79-854e-4dacdec98954 1 James Other +246f1472-5d18-479e-832f-721edc7cd7c0 1 James Other +246fd0fe-632c-4609-861b-f94f3c083d7d 1 James Other +2472dc77-00ff-4aaa-9afa-3fd2caf8d267 1 \N Other +247392f6-6053-43eb-8a49-28e7a95ee8ac 1 James Other +2476b384-2b3f-4801-b0a7-14ae70b4847a 1 James Other +24773a1e-ffc9-4724-8499-dccf2253f06e 1 James Other +24798810-7de8-4973-8439-e6b7066a7e2c 1 \N Other +247a1326-5a72-4f2a-acca-736d669c04a3 1 James Other +2480835b-74e8-49ce-9722-26e0a936c2cb 1 James Other +2480f7e6-086c-4b5b-b0cd-dc4b68d352ef 1 James Other +24816a6b-dddf-4a08-b937-bb3e382082f6 1 James Other +24827310-fa87-49f2-a440-a6d99d88e74e 1 \N Other +248f4200-27c9-4042-b517-54da720db18e 1 \N Other +2492a175-1e61-424e-928a-611dd032baf6 1 \N Other +2492afea-b5cc-4a55-901c-8758391785eb 1 James Other +2498cf37-7e71-4871-96f2-b88e64222e5b 1 \N Other +249b3d0f-05ca-4377-9cea-624e102c4105 1 \N Other +249c5581-4a75-4ac0-9133-ba10b8bc6720 1 \N Other +24a240e1-33a7-4be7-9f3b-8cf65c2e4f27 1 \N Other +24a42ba5-41a6-4d21-802a-972c517fdeb2 1 James Other +24a726eb-d7a9-47ae-bec1-b1d8adcc14a2 1 James Other +24a75409-55e6-458e-975b-7a7d4323fe0e 1 \N Other +24ac752c-0a22-401e-820d-223113903a6c 1 James Other +24aee34b-ff89-4752-96fb-9eb8a84e9b71 1 \N Other +24b2663a-4b23-4d47-88d3-20a4788f4586 1 James Other +24b55746-22b6-48c7-9a7c-81c0bc80edb6 1 \N Other +24baad26-e8d9-454e-8f83-f8867713c335 1 \N Other +24c1fe6b-3890-4e3d-b390-d6386adb9836 1 \N Other +24c30eb0-0e46-449d-bc64-58e7c78afc4f 1 James Other +24c35936-e065-4c42-9f05-f2ac48f8f694 1 \N Other +24c4a7c3-fb3d-4421-8c41-2e63222bb7ce 1 \N Other +24c9eb67-b34c-41b2-92a6-ec6b88f6621c 1 \N Other +24cd1145-91e8-4cea-8ed5-c7c6fea1f290 1 \N Other +24cd8f13-03ba-4018-98a1-c30a34e4ff70 1 \N Other +24cf80c5-71e6-4956-a3f7-9960d0a54ddd 1 James Other +24d064ce-711a-4201-a7fc-d2f29df9cb72 1 \N Other +24d2889e-09f1-495a-a6de-5eee83d52c18 1 \N Other +24d4a422-1e0a-484f-9f93-d96f7a3ab48f 1 \N Other +24d5a96b-9743-4287-9db5-669f206b2da4 1 \N Other +24d80ec8-72db-4744-b1cd-a26c12f6c84c 1 \N Other +24dcda2b-3fea-474d-b387-5599d9f5d85d 1 \N Other +24dff8b3-b015-4fe3-b42a-5718a7b78aaa 1 \N Other +24e32748-4eed-4604-84dd-a51cdf758779 1 \N Other +24e453f4-bad2-4762-ab96-a0c60ab8dd8a 1 \N Other +24eb0cd7-54b5-4a86-8471-19d5e4cf056a 1 \N Other +24eb8bcd-c3f8-4ab2-8738-12f83741a1f7 1 James Other +24ee53e1-89d2-415a-9f93-1582787d35e6 1 \N Other +24ef202b-2077-496c-b901-b5c4fd7965c5 1 \N Other +24f2c376-9c97-48ea-a911-7340ac787f6f 1 \N Other +24f4bd30-af9a-48b8-a13c-69a412823f2b 1 \N Other +24f698e4-512e-42ed-b392-533c2652d57b 1 \N Other +24f868db-58f9-412b-899c-b5cb02098e27 1 \N Other +24fa884f-d15a-4b48-bab3-d73b7c3f0f22 1 \N Other +24fea653-39cf-45d0-9da0-52a4da57de66 1 James Other +24ff38e2-528a-494b-8fb2-bdb9d8d54d37 1 \N Other +25008c85-46f5-488f-bf8f-1e194ef81ccf 1 \N Other +2505ec8c-b29e-45fb-86a0-68c5394a0361 1 \N Other +2506b7db-ba29-43c4-8094-2c9faa2f4238 1 James Other +25093be4-c808-45c6-b08d-6cef24942e62 1 \N Other +250c132c-c93b-4786-8a71-81abe928a924 1 \N Other +25106c08-2c75-4df4-948f-11a5e4bd143b 1 \N Other +2514b2c4-f106-4efe-97de-c4ef862fbc5d 1 \N Other +251959ae-4f05-4b06-86e6-d55e88233d65 1 \N Other +2520a9d3-fe0c-4531-b11e-a98009687263 1 \N Other +2522c7d9-4cad-47e2-9555-b648f8d79d25 1 \N Other +252e5c3d-7b51-408d-88a4-8ee9aa8b7024 1 \N Other +25337f45-7dfc-4be8-b3ab-644dca97601f 1 James Other +2538241b-37e6-47a6-81bd-1f99e13c077a 1 \N Other +253e804a-2986-4691-9baa-77face9fe839 1 \N Other +25406a04-e4a0-4def-bf78-02d36d6e0526 1 \N Other +2543d1bb-41d2-4238-ad3c-25f1c7a4f644 1 James Other +25452124-9237-4833-88a6-143d16cb2f3c 1 \N Other +254d89ce-0694-4351-b82a-86a46fcad8fa 1 \N Other +25541885-909c-47e2-8493-d8a0a86096a2 1 \N Other +255778e3-dbd0-440c-8a1e-85a871649482 1 \N Other +2557a513-1d7a-4dd2-9fdc-d931f80a4c7c 1 \N Other +25586a52-33d5-41f1-aeb9-45068b9c5137 1 \N Other +256048bf-6c3e-4245-8c50-43be71bc87b9 1 James Other +2561525f-9ffc-4aca-bc74-09e52202ea89 1 James Other +25625fc2-3eb7-4cf4-be03-5859aa4a2da2 1 James Other +2566a01c-2c4d-4503-be19-35d7adee8aa9 1 \N Other +2566ea08-902f-4d01-9de9-84aa770b24b4 1 \N Other +2566fb51-0cb4-4858-a46a-e243483e1a3f 1 \N Other +256c802c-96a3-4d9f-9c45-951a9c0aa87d 1 \N Other +256cf4b7-aec6-4ed5-9db0-574169e87eb6 1 James Other +25788d46-80d2-4460-80ff-0409a29d10ae 1 \N Other +257c24a9-ef6e-4ac8-a1b5-d4effbab6ffa 1 \N Other +257e8c9b-80c7-4e1e-a5ec-794279aca56b 1 James Other +25812dc2-be28-4af6-9382-1fc732b0815e 1 \N Other +2585ffec-2d0c-4234-a56d-de87ef1100fe 1 \N Other +2588937f-e327-4f31-939a-ea2d7692d1d0 1 \N Other +258ad4be-2efb-4b0f-af43-237f2dae139c 1 James Other +258c1edf-8617-41ae-b0fa-ef9e8d0adc23 1 \N Other +258cb3c1-4b94-4b9d-a4c5-41f558ea7e06 1 \N Other +258ce425-5977-4650-a0f8-3f0c0c4fa1ca 1 \N Other +258d0504-8af3-4cf1-a382-e6ad62911fcc 1 James Other +258eeb7c-825d-47f7-8126-4451b73e20c8 1 James Other +2590f058-6998-490d-bcea-1565007f0555 1 \N Other +2590ff42-0692-4716-af35-2c4b3059df9e 1 \N Other +2591d45d-9520-4a3d-b2b8-0dc6bc122bd3 1 \N Other +25942dff-5374-4f12-b995-f42290798a9e 1 \N Other +2599be7e-4a47-4338-959d-174b4afe905e 1 \N Other +259a29cc-b309-49a3-9621-ad85eabe5c7b 1 \N Other +259d78c0-a503-4066-8df7-1a167619ca63 1 \N Other +259ec77d-d7c4-4e2f-8ae8-68ba8a98a8ad 1 James Other +25a31fab-212a-44b7-8fa2-59c59df42d47 1 James Other +25a352a8-0427-42ba-bd5c-104f3238e0be 1 \N Other +25a462f9-94c5-4330-baee-105e2cad91f1 1 James Other +25a94c27-cb19-4773-aa12-74800dd69f56 1 \N Other +25aa7b2b-9d26-4786-a952-57a6215ab31d 1 \N Other +25ac026b-df8f-4fb2-96ee-d5883970259a 1 \N Other +25adb3b4-ca1f-4dd7-bba5-48187da41a8e 1 \N Other +25b0dd38-0245-4928-b5dc-8d3276a712eb 1 \N Other +25b23363-8068-41a1-87d4-d4dad55f3032 1 \N Other +25b366a2-820c-4628-b05e-18c86b67c10a 1 \N Other +25b49a4c-ce1a-4677-b562-e316d1d270b4 1 \N Other +25b9d963-b3bc-4ebc-8baa-3766c019a06a 1 James Other +25ba2f13-0092-4e79-a552-db52872af8b1 1 \N Other +25bba676-2fe2-4339-9b7f-08c7792fe0c1 1 \N Other +25beb25d-0b07-49ff-81f6-6fd985a3170f 1 \N Other +25c0f37d-16fc-478c-9637-19e538c5de55 1 James Other +25c1e043-30bd-4eae-9cc8-68d646135463 1 \N Other +25c24e9e-3e49-4663-9b45-e8866277975c 1 \N Other +25c53b34-c864-4df3-b681-44d83cb2cc7d 1 \N Other +25c7ce69-8324-4bc1-ae2a-eac2aac419f2 1 \N Other +25c92422-44f0-4214-a30d-370817422d03 1 \N Other +25c98457-0aba-4d30-9c01-ec177e3d345d 1 \N Other +25cbd70f-2dfb-45ff-9961-8c093bd0eaf0 1 \N Other +25cdaf11-6e69-48f7-b112-7fef4b521472 1 \N Other +25d16e8e-aa41-4b1c-b2b2-250efdbe239d 1 James Other +25d673a8-4b25-4faa-b0ed-2cdbf8701fba 1 James Other +25da3499-3bbc-49b0-be4e-db15d1b82981 1 \N Other +25df3ecd-9d14-4ee0-bd89-448c8f2d8289 1 \N Other +25dff708-b16f-4b19-b65e-a1b53ee52b14 1 \N Other +25e2403f-3632-4c37-b3f7-4bf92dd12e68 1 \N Other +25e31c94-be81-4560-aea9-8ad30eeb2c94 1 \N Other +25e63d5b-fcb1-4543-ae2a-ada47b9b79a5 1 \N Other +25e9fc3e-6c3f-4f9b-b0d0-1bb6aaad9a11 1 \N Other +25ea8d35-885b-462a-986a-d2df65bebb72 1 \N Other +25effb59-6409-4d5e-a2d0-3242653bfe25 1 \N Other +25f4551b-dd5a-4c9a-be6d-c0dbaa04a800 1 \N Other +25f6049e-171e-4289-9f44-f07006c6aa96 1 \N Other +25f7827f-3d12-413c-b879-d4b8487d7876 1 James Other +25fa3870-ff66-428f-9700-27ae296a6e9f 1 James Other +25fc7d55-889f-48de-8207-5d56da9665d9 1 \N Other +25fffb84-382e-4283-952f-f385697d02c6 1 \N Other +26024068-59a3-4737-afd7-d5e3e10854ff 1 \N Other +26048566-49ed-477b-bf94-28a07d79a7ec 1 James Other +260647e8-3a5e-4811-9fcd-3ffc350a37ef 1 \N Other +260c319b-5618-4a14-b4a5-e44fb5327a78 1 \N Other +260c7cc3-1f8b-447c-b62a-2e0ca40a1009 1 \N Other +260d5480-6e74-4af8-9616-726eda8b0709 1 \N Other +2617a632-77a4-4db2-8ce2-2c57e8be487b 1 James Other +261bed7f-70ba-4bff-90fe-57d49c571159 1 \N Other +261c6916-e85d-45e0-8913-b0f2f69defec 1 James Other +2627aa86-187e-4235-b902-06d2df1f6970 1 \N Other +262841c6-20ac-49c2-ac26-193dd2e4f5d1 1 \N Other +26286548-2ab5-41a4-8dea-4ad5c130d6f5 1 \N Other +2629578b-934b-441e-8b32-7cd8ab6ce995 1 James Other +262dc2ab-7a3d-4c19-a8ae-0938a231aa9c 1 \N Other +26325fa9-b41d-4da6-8624-062c566bc729 1 \N Other +26339609-75f9-4b58-b9a8-7337f25a6c71 1 \N Other +263768ec-f966-4aa5-9052-9563f9287e1e 1 \N Other +26391fed-bc7c-4982-b9b5-b99fb8405c39 1 James Other +26399b67-14f4-40c5-a379-6214898d9482 1 James Other +263ada26-9d46-4e19-b7c8-805f2f92d770 1 \N Other +263bea8f-0bc4-4b3b-994b-0bac375da0a1 1 \N Other +263dbe2c-bc56-4c8a-8324-28c7e814ff4c 1 \N Other +2640e81b-3931-4f8b-aa2b-a867ab2cb753 1 \N Other +26412f71-fb14-4048-84fb-bf424f972ee9 1 \N Other +26422d9d-9171-47ab-9f50-c2e2ee417bf2 1 \N Other +264511c1-d1c3-4478-a974-6562a51facf8 1 James Other +2645f717-3a46-43be-ae0a-2a711827a586 1 \N Other +2646a54a-4c1f-4b95-8594-c6bab7f73ed7 1 \N Other +2647fbaa-7845-43a8-853d-b45795e93463 1 \N Other +2648f10b-9f11-4d2a-b2f4-72d43c92b219 1 \N Other +2653b7c0-b0ee-4cc1-9c08-cff8c3d68015 1 James Other +2655623b-ea21-4ccb-b3fa-53d420596b26 1 \N Other +265703f0-cbf0-469d-858b-705a0de0e87e 1 James Other +2657daf4-9968-46eb-9f63-0da4e575ec64 1 \N Other +265814b6-a61d-4eed-b7eb-5db18756dca9 1 \N Other +2658d537-c2f0-4c7b-81c9-bd97b3d5b13e 1 James Other +265a3941-b495-44cd-b2a3-c81b2b76d2ee 1 James Other +265b3145-5945-4acd-b7d3-f362d25b0cf0 1 James Other +265d1606-1db0-4ee4-965a-8c331f244211 1 \N Other +265ec096-b59d-4952-ac89-ea762201427e 1 \N Other +266853e5-894d-4eed-bd95-531a8f249a9e 1 James Other +26690a39-13b6-467d-b855-4791d66a102b 1 \N Other +2669eaf2-4337-436a-93a2-69ea884ca1fb 1 \N Other +266c8e7f-f676-4092-8d4a-e020ac424de6 1 \N Other +267a65c0-3f52-4c6f-b3b9-bd51a4fa707d 1 James Other +267a98bd-55dd-41c5-9618-46a34e9396fb 1 \N Other +267ad0fc-5186-47f7-96f0-95678099b344 1 \N Other +2682810e-5497-4b64-9790-1b7d1c467027 1 \N Other +268343b8-c0d0-42cb-8856-05d447985a42 1 \N Other +268497ab-44d3-4938-9e93-60f8eae11dfd 1 \N Other +26858fb5-c9e1-47d4-b6fe-96015f04392e 1 James Other +2691c46b-9367-4075-bccd-64892118b465 1 \N Other +2693d0fb-60c2-4353-81e3-0626e1cc9d02 1 \N Other +26950529-4ecd-41b5-a7ea-b1ac1e7b3bf4 1 James Other +269cc769-45dc-4b70-a84c-83f6a6dddbb4 1 \N Other +269d79b2-f9b9-47e5-9315-bdf1718b34e3 1 James Other +269f4ae4-6de1-4120-9717-f7f00f2f9074 1 James Other +26a0e4f7-18c6-4c50-b563-64200c149e09 1 James Other +26a4e76a-7ed5-48ad-9b10-99c7a7af8fc3 1 \N Other +26a60571-ee29-4a30-a074-0d9fce6a2fea 1 \N Other +26a92c3d-a533-4dd2-8be9-88a78eacd6b5 1 \N Other +26b19948-80b2-4fae-abaa-25abc559c198 1 \N Other +26b2ce36-d4eb-4100-8a51-b644a0cab832 1 James Other +26b77ce9-b8a0-49ad-a575-d10155fc3bfd 1 \N Other +26baefde-12eb-434e-8cfc-4698648c38c6 1 James Other +26bf1f21-2c29-4c82-bc4d-f22ab33be0e9 1 James Other +26c3c684-018e-4231-acf6-9f2bda1b1f74 1 \N Other +26cd2be9-3f96-4715-96b2-33c8a0f38117 1 James Other +26cd8151-b236-4986-88d5-c20f20ecc008 1 \N Other +26d11235-6e65-4fbc-b2ed-a88f9438e05b 1 \N Other +26d2ba89-1afc-4b80-a666-4313b278e3fb 1 James Other +26d50a42-8523-49c2-b9f9-4bcd08822ad8 1 \N Other +26d777ba-48a0-475c-a99f-411db7581ef2 1 \N Other +26db652f-3bd9-40ba-93ab-025a3f2c3692 1 \N Other +26dd3f26-e0c0-45b3-93d0-2e43912b3e3d 1 James Other +26de34cd-f9ae-4dfe-8d7c-74da77d52427 1 \N Other +26df11b6-35fd-4947-8e93-aec136c84d4e 1 \N Other +26dfa5dd-90ba-463f-be42-26f4d4463c5f 1 \N Other +26dfdce8-3cda-43bd-a43d-c0cc1e538bbe 1 \N Other +26e11d4e-aefe-47b0-8c50-4293e7b80baa 1 \N Other +26e34911-46a2-408b-ad9c-3c83794029a8 1 \N Other +26e4d99a-380c-47da-b32a-d28df37153d5 1 \N Other +26e847dd-1a87-43a3-93b0-823687e987c6 1 \N Other +26ee22c6-5bbd-4de7-9209-dfa7457b2624 1 \N Other +26ff22df-844b-4a20-9b0e-72ab7b2dfeb4 1 \N Other +27008373-4a73-41e5-a249-b56bffeea733 1 \N Other +2700b4e3-d161-4fea-bc17-76b147b1f53c 1 \N Other +27020e68-7397-48e6-bf3a-713141a40ef4 1 \N Other +27081c93-a28b-4921-9000-c0d5156a46e3 1 \N Other +270c1bd5-cc5e-4146-9f95-0cfe15ade927 1 \N Other +270ee2be-62f6-4baf-95ea-8ed4b7143121 1 \N Other +2711ba99-ca71-4475-91fc-0317977a43a3 1 \N Other +27132589-f5ec-4b2c-9cea-225a2694f0b9 1 James Other +2715f6a6-9adc-452e-b24d-eec27cfe6a54 1 \N Other +2716d173-7920-4c0b-b9fb-f72289a4c590 1 \N Other +27189056-8ec8-4524-831f-c9d162a26d71 1 \N Other +2718e283-9d1d-45f1-b427-7076a0f81369 1 \N Other +27191716-24f4-4e90-ba35-1bfa0f885e37 1 \N Other +271abaa1-293f-4b6f-94a9-e99c3d078b49 1 \N Other +271e545f-ec46-412d-854b-4f8988474785 1 \N Other +271fb83c-8700-40c8-9f1b-787e2543430f 1 \N Other +2722aac5-4151-43a3-a8e4-633584b22472 1 \N Other +2726697a-f8bb-47c9-8725-eb8d7beb24ef 1 James Other +27268f78-c363-4b97-a5d0-ef88cba58f02 1 \N Other +27284c75-17af-4bfe-a2b4-a06e89084da8 1 \N Other +27295505-2c22-433a-a91d-50fa926f1fc8 1 \N Other +273116f5-e5b8-4ef6-8d5d-c00d11ba152d 1 \N Other +27312a59-1060-4107-8894-4c89f75a43d8 1 James Other +273551e9-521b-4e2d-9e6f-52392b3c357c 1 James Other +273668b9-7556-4959-8dc1-873ea62b2417 1 \N Other +273c00e3-8e56-48e2-b402-950c54d34760 1 James Other +273dc093-10e8-4b81-8caf-9e3d16daedaa 1 \N Other +2742511a-6184-4abe-8e0a-ca9955d0f6ad 1 James Other +27441a80-b7fa-4b5c-a345-aec0505e9f15 1 \N Other +274b0601-9a75-4334-9d40-abc92ea2a7a8 1 \N Other +274b74f0-058f-49c0-a707-2905a0d1dc4f 1 \N Other +274be7ed-27f4-4d61-b6e8-68c541485ea9 1 \N Other +274c8470-e357-43cb-a25d-55f02c28d77c 1 \N Other +274f47f7-d616-424f-8168-b835cf9fc6bd 1 \N Other +275191b4-6b77-4aba-8e27-136ea03d12e7 1 \N Other +27545d06-51b6-4df6-a821-feada848f157 1 \N Other +2754761b-d46b-4a49-83c6-33816c62bd44 1 \N Other +27558253-9b7c-4a1f-b423-9ac5ac5176bf 1 James Other +2755dd8b-d791-4dd5-8ee9-2fc15120c39a 1 \N Other +27561e72-0878-11e8-ac1a-fa163e8624cc 1 \N Other +27566c40-155f-444a-9162-be4f816dd833 1 \N Other +27593515-e4c0-49d3-a3bb-5183bf61dcbd 1 James Other +27597543-2fdc-457c-9ec3-d8f3c660ecd3 1 \N Other +275d5fe5-19ae-4969-8590-c74aaaac31fb 1 \N Other +275f0e56-d55b-4a48-a277-0ce8e9b2bc52 1 James Other +275fb5ae-ca77-44e0-b9df-32ead1312b68 1 \N Other +2761d87c-76c9-445a-aa3f-172f28368341 1 \N Other +2762b4c1-3d85-4e35-9993-140b7e163983 1 \N Other +2768b059-2865-4b4b-847a-ff991cfb67fa 1 James Other +276b63d0-c7d9-4859-bf8f-d4e2cf978dc9 1 James Other +276d1bdb-2f83-4431-932b-4d6a95234d5e 1 James Other +276d78d0-fa40-415b-8f4b-e919024b905c 1 \N Other +277329f1-59bd-4fbb-b51e-7448c4772207 1 James Other +27742649-bdfa-484a-93ed-397518357069 1 \N Other +27797afe-47ca-4ab2-9c94-bd52d8bec958 1 \N Other +2780b747-864a-4cbd-be31-497f5b387227 1 \N Other +2780cf0a-8592-4630-b47e-b72d5e39084a 1 \N Other +278226a8-8920-40bd-a311-6bcf837d7942 1 James Other +2782a9a0-1ff3-41e1-ba68-fbad3940ed1e 1 \N Other +2782b964-bb24-4a90-a359-e1f71b743072 1 \N Other +27830c80-04a2-4b6d-ba9b-7094fc2b46d0 1 \N Other +278382cc-420c-433d-82ec-a57a54fd94cf 1 \N Other +27844582-3e1d-4ab1-ab6d-933db3e70ca0 1 \N Other +2787e124-1090-46ef-9788-2de7a7e5c5ab 1 \N Other +27887e1a-5763-422b-8b59-9f2bb14af101 1 \N Other +278901fd-851d-4468-8c37-e42029124588 1 \N Other +278a8ea2-040e-408f-8ad6-cbdbe9a90b1d 1 \N Other +278bb286-d807-47e4-b8a3-e293e1a931da 1 \N Other +278bcf85-edae-41e7-8e91-f53601c7439e 1 \N Other +27920c02-0878-11e8-90f4-fa163e8624cc 1 \N Other +2794a5f0-a016-4669-a8f6-41ae106aff36 1 James Other +2796c109-3b83-4ad0-bd22-9428877f8bfc 1 James Other +279bbb22-e5c7-43af-aaab-377937853b2d 1 James Other +279ddd55-37e0-4b78-a4e6-8b3695b884d5 1 \N Other +279e0317-982e-4796-88c8-d561df00a9a2 1 \N Other +27a105ca-44dd-4dc8-a0e5-f851880a619c 1 James Other +27a3b235-2fce-47f9-8823-286a0cf1db77 1 \N Other +27a407e6-22fb-4ebb-a8e2-8a40b40906fa 1 \N Other +27a64d5e-9999-4788-81b1-38762315fc61 1 James Other +27a7aa34-7290-4291-8a0a-9b7627fd149e 1 \N Other +27ab4465-4a03-41d2-8160-76ddeff28667 1 \N Other +27b0ee5d-34c9-4cc3-bbfb-1a86f7b372c5 1 \N Other +27b2ecdb-3f60-46fd-b892-fe25b52502cc 1 \N Other +27b42a44-0529-4665-8e8d-1e4d3d645812 1 \N Other +27b6ee96-e398-4945-aebb-a69326cfffb4 1 \N Other +27b7a8d7-70d3-4fa4-8b71-78d61c8afec5 1 \N Other +27c18dd7-1561-4027-84b9-62180c8bf572 1 James Other +27c42e07-d2e0-4dcf-84f9-da44ae89a942 1 \N Other +27c8effa-8575-4bf3-9d52-11e7ed18ff3d 1 \N Other +27d37748-555c-408d-831b-f870ba4f04c0 1 \N Other +27d381a1-9083-4c87-a8a8-eacfd1933e62 1 \N Other +27e4e7e3-ddde-4fe6-8659-5f8591807578 1 \N Other +27e57670-af13-4da5-bccd-cc8a102dc1b4 1 \N Other +27e88678-773e-418d-bb9a-bdc36b554251 1 \N Other +27f0f968-9d4d-4b8f-b2a6-551e75dcd2a2 1 James Other +27f3ca48-0c12-493c-8cc6-1bd51ab862d7 1 James Other +27f4098e-7c52-4cf7-89e9-159d7be3f4b6 1 James Other +27fc3003-19ef-45c3-9784-7c090d75431c 1 \N Other +27fc6b1d-d2cd-42a0-889c-bd90d4856750 1 \N Other +27fe6cf2-0617-11e8-8ef2-fa163e8624cc 1 \N Other +27ffcbbe-0924-4703-9f35-aefeead272c7 1 James Other +28017800-a7ed-465e-b2bd-a10ec4f17541 1 \N Other +2803c1f6-e589-4c0a-9f03-d7f98ebd69cf 1 James Other +28042ad6-3006-4f04-bc66-3b2353af2357 1 \N Other +2805b0fa-8f95-40e7-8d27-df1c11f6a214 1 James Other +2817e2fb-410f-4e67-8261-449d30189993 1 James Other +281b5805-1c16-4010-9bc2-6a74182b2e6d 1 James Other +281c1f01-516f-4e5b-9b3f-93847e62e041 1 James Other +28242f82-30de-4228-8b25-87b450529c67 1 \N Other +282cc3b9-8f6a-4f1c-9d46-75015634b4cd 1 James Other +2836d3fd-47b7-4f90-b7ff-dfd7fe8f07bf 1 James Other +28438f34-27fb-4b71-9b58-0e4575fa9b33 1 \N Other +284556a7-5557-43f5-8894-e5bcf9c53c65 1 \N Other +28488bea-c69b-469d-bd23-37d0e09bfe07 1 James Other +284b37d0-be30-4b1f-81ea-d9d2e315fa13 1 \N Other +284b643b-7da8-40e9-a8b9-f753ca907f1d 1 \N Other +284bd9b8-e99c-48d6-ad07-b3c19f72a4cc 1 \N Other +2850572b-8374-4e5e-a39a-98c55d1ce041 1 James Other +28507b23-2714-46e6-8696-8ced0107cd56 1 \N Other +2851ef0c-1840-420f-b8cf-010aecba7f89 1 James Other +2852003a-f982-430f-b797-430aedae9ee8 1 James Other +285389f7-2d40-4054-8b82-2a5e471bd928 1 \N Other +28542b35-8c44-44c2-ac94-77129cd18082 1 \N Other +28577bdf-456d-469a-9de5-ea572bd25fab 1 \N Other +285c5618-e18d-445d-9f20-811b84e3ec13 1 \N Other +28625145-612a-4689-b47b-785338aeae16 1 \N Other +2863efea-e493-42f7-9ac0-2171dac366cb 1 \N Other +2866515e-c3e5-4030-b25f-aa05fef2c9be 1 \N Other +2867d553-46b7-4d72-be14-c699cff5de6d 1 \N Other +28696f75-421f-4c4b-82e4-ae5b4ee2fedb 1 \N Other +286b0394-0617-11e8-8ce0-fa163e8624cc 1 \N Other +286f0edc-06e7-4cae-90a0-2449e46df12a 1 \N Other +2878d536-3a31-43a6-93eb-8dcb18a255f7 1 \N Other +287ae4eb-9dbd-4508-b9f2-a530556467a6 1 \N Other +28810cd9-1001-4076-b74f-9636eeba5d3f 1 James Other +28812356-4a06-459b-b988-e36e6927a19b 1 \N Other +2881dbe8-951e-44f4-a11c-1994326701bf 1 James Other +28835623-8175-4c11-8473-c831e6a52a60 1 \N Other +28845854-ff73-45ba-9622-769dff0781b7 1 \N Other +288548f1-f089-45a7-a23f-4e8e6f44a987 1 \N Other +288ae5c2-3fae-449a-afe7-ae3e3d5bac43 1 \N Other +288b6b55-6c71-4dce-8270-336e83f19281 1 \N Other +288d6a56-8b5e-4872-8b41-8a9db516c6af 1 \N Other +288fb021-154e-4fc8-8e17-fbba881db27b 1 James Other +28922577-a8c0-4662-91ad-f72cf3da5731 1 James Other +28927b55-a7b4-4d79-a4b9-b08b22874c9d 1 \N Other +28930db6-2bd0-488e-8a18-5e1df81affe3 1 James Other +28971ad4-e5fa-47f0-bf87-96b04db05e4b 1 James Other +2898f4d9-eacf-4c71-9e0a-1ea43753629e 1 James Other +28a1232b-db4d-4035-9e3e-b0ac11681a84 1 \N Other +28a598d2-7abd-4bee-949d-13cfaeab7b29 1 James Other +28a5b2c1-f909-400a-b465-aa2be075b2f7 1 \N Other +28a71102-1c84-4d5d-ae60-ba9d85eb68c4 1 \N Other +28a762db-510f-4454-8af5-a34d466ad0e9 1 \N Other +28a77029-b552-4ed2-8116-2a19f9b06760 1 \N Other +28ac8cfe-7da7-4198-bd04-97e6f632f386 1 \N Other +28ae56ba-0ac9-11e8-a688-fa163e8624cc 1 \N Other +28afd521-820e-424f-8e6f-61463d2a78ab 1 \N Other +28b070cc-d8cc-4621-ac1a-a616d2a48929 1 James Other +28b40b5f-28c6-4ab1-a843-0d3c861b8901 1 \N Other +28bb669b-6488-49bd-88b0-7c6ec64fa250 1 \N Other +28cda1a1-9ccb-49d3-a080-889f4400c1c6 1 James Other +28cea4ff-b3b5-40a1-8a8a-3660f6321865 1 \N Other +28d07350-4e99-47f6-be43-acdb9a6a03bf 1 \N Other +28d76ca2-0b80-4f03-9a26-505d1206006e 1 James Other +28d7e371-f346-4a43-bdd4-5e97df0615c7 1 \N Other +28d82a2a-8481-40b9-a10b-9e33f77efabf 1 \N Other +28d8c9d5-e1ea-4c73-805b-953ac005b21e 1 James Other +28e2ed25-7711-4a54-8cbd-c914691785be 1 \N Other +28e4c3d0-0ac9-11e8-b614-fa163e8624cc 1 \N Other +28e4edf7-c5bb-48f6-abb1-f639d2c56cec 1 \N Other +28e59d0a-7415-4c69-94ea-09bab4873934 1 \N Other +28e94128-f30b-4169-8da6-aaa40c9dd3eb 1 \N Other +28ea1d00-27fe-4118-aa4a-b683da81d99b 1 \N Other +28f4d6a5-596e-4ca5-805a-8621fd4c4c16 1 \N Other +28f6e3cf-1913-468c-99c5-378397edf7f2 1 \N Other +28fa1445-d75a-4ff7-ab3a-fa83df6dec0c 1 \N Other +28fb1163-436d-4ec9-9926-800c836ceaec 1 \N Other +28fc603b-cd0a-41a6-b54f-f731dda85786 1 James Other +28fe8809-32de-42dc-bed6-bb9bc43b70fa 1 James Other +28ff7139-73fb-4a58-aebc-8f10fe453211 1 \N Other +29018cce-aefb-481b-91b6-fa3515685cb5 1 James Other +29060ce4-ce2f-49fe-ab6c-949698e9c228 1 James Other +2908fc94-4c66-42f8-b383-37974b6d59e7 1 \N Other +290c6ff9-c5fe-48af-9f4b-712fd4f7a975 1 James Other +290c9578-3b76-4d0a-bb3e-2d5ae713e428 1 \N Other +29155a25-14b3-469b-82b4-4e1c80b82f1b 1 James Other +2915d9d2-5409-495a-8c46-14e32001eb12 1 \N Other +291930da-4651-4afd-bebf-8ca36219426f 1 \N Other +2929db81-4831-4eb5-9969-c726f6b101bd 1 \N Other +29308cca-8b88-4d93-bb4e-5873e56fa1a9 1 \N Other +293183c3-7e39-4e47-b3ca-0b302d10c8f8 1 \N Other +29339d0b-9e0d-4283-a335-a9e63bca458f 1 \N Other +293a9573-3f4f-43c2-8cec-b17b3ee8c937 1 \N Other +293cb795-1fc7-4819-8094-37b590b17095 1 \N Other +294663af-7c30-4dc6-b516-49f747c3aad3 1 \N Other +29475c80-768b-4f64-b3e8-1fa4006abca4 1 \N Other +294a2840-b231-4d0e-be36-f7ae33507d51 1 James Other +294b9ad6-b390-4a16-ab7c-ffe32857dd3b 1 James Other +294c7213-9b15-488d-a73a-d5a6afe88497 1 James Other +294eadd7-8e66-4602-a52a-89b2a556141b 1 \N Other +29500d6a-387b-4797-a6d1-92febd7b5aab 1 \N Other +29533f8d-4a08-411f-8368-f797b5d1b39e 1 \N Other +295d3da2-84d1-47fe-ad17-ea3f10c1844f 1 \N Other +295f00b5-e9ce-4681-8cbd-0c3d56a7a38b 1 \N Other +295f66f2-4c5a-4024-8e76-9ce8ac62c6de 1 \N Other +2960ca4a-2709-48fe-a7c5-33c55e86573d 1 \N Other +296c81c4-d19a-4639-9c30-660a13d29ad6 1 \N Other +296e4f7e-eac4-49ef-b2ed-dd1ef2689a66 1 \N Other +2971fcd2-1553-4d0c-ad70-9bbfc151e4a0 1 \N Other +2972e702-d3fd-47b7-b72d-a2c8250560a8 1 \N Other +297985a1-3260-4b0f-9e04-17cfe6c5f8c3 1 \N Other +297bc7d5-1a98-4de7-9174-4cdfd9d394e2 1 James Other +2982791a-e8e5-4183-8f4b-d7b73fc091b9 1 \N Other +2985c34d-5581-45d0-9b37-4ecb4fd777eb 1 \N Other +298e5885-6592-4697-a5c7-85d59701f446 1 \N Other +299553d2-3f7d-4b1e-a6ce-5fdd1526145f 1 James Other +2998d2b5-bb34-4b76-b44f-c1fcb2106b60 1 \N Other +299a7eb2-12c7-4107-839b-1193728dd042 1 \N Other +299b9f4a-ebd5-4e62-9915-103e5e639918 1 \N Other +299bd3f5-074f-4d81-b060-c59de31db830 1 James Other +29a19e25-600e-496c-b69f-08aba644b409 1 \N Other +29a231b3-25af-4c29-b342-9144a2cde613 1 \N Other +29a2c158-db26-4d82-8e60-db779ed9e990 1 \N Other +29a98e4b-9a14-4a58-8cce-fa8f3024e3ac 1 James Other +29a9b244-f922-4ee9-ab4b-d7557c0cc6bb 1 \N Other +29aa0d56-5ddf-436d-995d-5ff0ec60f030 1 \N Other +29ac38d1-23b7-4a3c-b4c2-d0256ea062fa 1 James Other +29ae0663-1fb3-4e1e-83d7-ab3412065996 1 James Other +29af3fbf-c16f-4e40-9872-b2c711c3ab01 1 James Other +29b04ccd-2a14-4c79-af35-3bd6f33ea52f 1 \N Other +29b354eb-66c6-48ec-a2e2-1300b5c59b21 1 James Other +29b50fe2-d0cc-456f-a52f-af5bdb4046db 1 \N Other +29b58cd0-4bf2-4ca5-9ab2-17eb4b51454f 1 \N Other +29b7c165-cbec-40c4-9618-30465d3a351d 1 \N Other +29b8527a-d65b-4173-b988-dcf4c8c537b8 1 \N Other +29b92b26-0c54-4430-b851-bdda5f3598d8 1 \N Other +29b99806-ff64-40b0-b652-74aec0fb0890 1 \N Other +29b9b011-1068-4765-9f5d-21206bb50ecb 1 \N Other +29bb4394-29d9-4f5a-b92a-5b63d2bb9486 1 James Other +29bd8957-7897-4571-9724-1467654d4082 1 James Other +29c9309c-89f2-4d9c-8bad-9fe2d87e0d5e 1 \N Other +29cabebe-3d59-464d-a6d4-9a310423a4af 1 \N Other +29cc4ae7-44a2-4d4f-b700-2fe2839316b0 1 James Other +29d07590-2b13-4095-9438-00effa4a4b00 1 \N Other +29d5d324-1bf9-4116-a2e1-e2c2cea6bb7d 1 \N Other +29d8d31a-a493-44d6-8405-67fdd05bf4ba 1 \N Other +29d97d03-25e2-4216-ae50-e85512ca1897 1 \N Other +29da5009-6924-4e34-8453-47c14b0052ec 1 \N Other +29dfc1d7-01d2-42f9-a6dd-2efd42d0db75 1 James Other +29e09507-8e59-4b56-a07d-c3f62d128f1d 1 \N Other +29e7ef00-178b-4b70-ad0d-9bbf2f5bdb49 1 \N Other +29ec3c76-3f07-4ddb-9b74-3f00b7191dd2 1 James Other +29ed39c7-e837-480a-bea6-e78397b133c7 1 James Other +29edd495-2955-4e30-841d-d4f1cd235ae6 1 \N Other +29f286f7-6db8-4bb5-a438-0bc492a71cf1 1 \N Other +29f40333-7668-47a7-ae7c-64b9c7fa091d 1 James Other +29f64126-6695-4306-92fc-6f55cdc740df 1 James Other +29fbfea2-ad68-4e33-bed3-21efbf1c0ca0 1 James Other +2a00dab5-e831-4fc4-851f-5e6b47858a25 1 \N Other +2a0c7fdb-8878-498f-80dd-0b15467c1931 1 \N Other +2a0ca655-adb0-4bc0-bb83-a05b9c36a15f 1 \N Other +2a0d9022-f61a-4c05-814b-4919987a835e 1 \N Other +2a162042-4678-4dd3-945f-80ae6c9d59d3 1 James Other +2a16ee88-c5d3-4c91-ad76-e46cfe5cf058 1 \N Other +2a188bac-f173-4ffc-ba19-5e19377d1b5f 1 \N Other +2a193511-6c4c-46d1-a606-8c58afcc6ff7 1 \N Other +2a1d09e6-67cc-4069-8793-cbd194789c5d 1 \N Other +2a1e7f44-bdae-4909-9432-57a38b829f59 1 \N Other +2a1f599e-3fbe-421e-a248-df1be60afcaf 1 James Other +2a2389d6-e0da-49cc-b465-0f446c895916 1 \N Other +2a2a0443-9954-4933-9d05-77c57d4b1e5e 1 \N Other +2a2cabcc-b6a7-4187-a7ed-844699e581ef 1 \N Other +2a2ce74c-9829-488b-9ec9-75514bc4df6c 1 \N Other +2a2dd8ff-c2d5-40d2-ad47-2ea4df411c3f 1 James Other +2a2e2606-2008-4614-a454-dfb12db33534 1 \N Other +2a2ea63a-b12d-4b3b-aefa-b5be441ae63f 1 \N Other +2a2f56db-48fe-4db2-87cf-75230079883e 1 \N Other +2a3049da-dc93-402f-8fe9-148d23239a1e 1 James Other +2a39c352-ffd9-4a48-93f3-b6d3dca234d2 1 \N Other +2a3daaaa-3c50-45f3-bd44-58da9ef38d2b 1 \N Other +2a3f1991-d554-4aca-b469-b6addee98059 1 \N Other +2a408515-e2ba-4c24-abe2-b4a6778244b7 1 \N Other +2a454c63-9357-430e-8f4c-418feda9725e 1 James Other +2a489beb-6bd1-4bcd-bf87-2d8a3a705dc2 1 \N Other +2a48f67b-a0e0-43a7-9719-1e88e5f1d55a 1 \N Other +2a4fc155-62c8-49e0-adb0-5fd9a787926f 1 \N Other +2a52901f-3b4e-434d-97d2-edcc50c99861 1 \N Other +2a52c1c1-1963-4de8-b5bb-7f71a236301b 1 \N Other +2a53b78c-7ebf-453a-8f7d-ca6fd98f9145 1 James Other +2a55fd20-cc99-413f-9ad2-ae9521d95e5d 1 \N Other +2a5623ec-24bd-4333-b731-8e0c03bd4bdd 1 \N Other +2a5929c1-51c2-4a27-8f68-93ad1c4cae59 1 \N Other +2a5aad0b-a5cc-4b52-b714-06554eb91326 1 \N Other +2a5b3442-c900-4f2e-9441-61e9597746e6 1 James Other +2a5da151-3c6c-4632-ae45-a86d4344773e 1 \N Other +2a6107d6-601c-4f9a-8d27-0851c8147e7a 1 James Other +2a61a807-0255-4432-b856-5a25ce3b60a3 1 \N Other +2a6221c2-dfc7-4041-9256-0d16bafaf8ed 1 \N Other +2a6488ac-74e1-4c8c-a414-64deeb3e75ec 1 \N Other +2a64ef93-1f05-4dcd-9a92-548b17365986 1 James Other +2a653542-d043-474a-b196-57712db85c52 1 \N Other +2a7d4b52-3778-4551-8aff-915cd828939b 1 James Other +2a894f2c-c170-4859-910f-1436e69037bb 1 \N Other +2a8b6b09-7256-49ac-b92b-d3f7cc4dcb8c 1 \N Other +2a8b8931-3553-4932-9423-8654e41ddef0 1 \N Other +2a92928b-56d3-4bda-a249-b999ca2648af 1 James Other +2a9475f1-a5a0-40f0-9ac4-b83f495de9ad 1 \N Other +2a9483ab-5842-470f-9316-37731df03560 1 \N Other +2a949a42-522a-4770-a476-e540305362c3 1 \N Other +2aa63181-0fa4-41e8-8e0f-2e6938a218e5 1 \N Other +2aaa4ff8-a3ab-4f4d-8b4a-d015d65dc887 1 \N Other +2aae9c4a-8e44-4091-87f3-746f973d4a5a 1 \N Other +2ab15020-9c71-4ec3-883d-c8559d668a0a 1 James Other +2ab399ef-2d2b-4d59-afd8-5fd2da728c57 1 \N Other +2aba6f27-fadd-4c86-b2b0-6e1141cec1a7 1 \N Other +2abb812c-ada3-40e9-a5b0-91fabcbdd704 1 \N Other +2abc37cc-5f47-4cd9-9b6a-349326d10d1a 1 \N Other +2abd95d8-55c5-475c-8a47-8b8730089b7d 1 \N Other +2abda9c4-6789-4f25-a589-4173b3510e4a 1 \N Other +2ac20b0e-960a-427e-b7bc-48d8c923cf8f 1 \N Other +2ac87888-1da0-41cd-87fc-9992ffcf8335 1 \N Other +2acafb67-e90c-4620-a332-125b3d2a1b60 1 \N Other +2acfb282-4a14-44d9-ac2e-366889efb1c5 1 \N Other +2ad65c0f-a4b7-40b1-abfe-787f17ac81de 1 \N Other +2ae480e4-f86b-4e01-a162-264449252cb8 1 \N Other +2ae569cb-5e30-4be2-ad6a-aabd2c047bd7 1 \N Other +2aee5361-a7ec-4e9c-9bfc-02819c05e6b6 1 \N Other +2aee84b9-5200-416b-80d1-15ed3bc626ac 1 \N Other +2af5ae8c-1066-4f74-8e7b-3f00d9d1e6d9 1 James Other +2af86602-b442-4e92-87a6-3f218ae3e00c 1 James Other +2af971c4-4a84-4a23-bc1a-d4296c5bcefd 1 \N Other +2afafef3-f189-47bb-916e-fdf203856b62 1 James Other +2affc522-798e-4cb2-b64a-7810d88330a1 1 James Other +2b00b320-39f6-47ff-86fe-1c423d7aa1d4 1 \N Other +2b01176c-763c-4c54-b433-1e46e476654a 1 James Other +2b02738c-03b7-41b0-9b93-76d4ff3aee3c 1 \N Other +2b032d5b-1f18-4108-aa85-fc23d7be505e 1 \N Other +2b06cc5f-ad41-428a-82bd-5dc5b312ff42 1 \N Other +2b0ab6d7-7804-45f5-9ce9-13c32d49dfc4 1 \N Other +2b0e6752-4bd1-4cc6-a28e-df2c355d9469 1 James Other +2b104d5b-2b8a-49eb-85f6-5e3bcbcd3b11 1 \N Other +2b12961c-0fe4-4a92-8a50-948088cec174 1 James Other +2b14e5d7-ec96-49f1-a084-4111d0676b1f 1 James Other +2b1aead3-8c6f-4e79-92e8-e705c8dcdd68 1 James Other +2b1cb4f3-92ca-436c-9a93-3f3ee1f6c156 1 James Other +2b20c18a-4df5-4eb7-a1b6-35fc67ef7593 1 \N Other +2b22f6f9-a8d8-488e-90bd-0f1dbd12585f 1 James Other +2b2418ed-6b8b-4c34-9a40-3cefe92dacd0 1 \N Other +2b25be59-5e15-4aca-901d-1ae5dbf52aa8 1 \N Other +2b2a8ecf-b0b2-440d-b447-6e0ec7042f32 1 \N Other +2b2a9557-e435-4f1d-9652-4e0daa34d04b 1 James Other +2b317e49-cb7c-4b8a-b4a9-888265ac5456 1 \N Other +2b389fab-16db-4179-b20b-9c695c90a5cb 1 \N Other +2b439299-3cc4-4cdb-af55-260688a84610 1 \N Other +2b4bd18d-f584-4b13-9cc7-ee3677776e22 1 \N Other +2b4e291f-c7ad-40f3-9bb9-c8f58ad3b58a 1 \N Other +2b506316-ff92-4ee8-a869-b0103b6bac45 1 James Other +2b527f20-1091-4855-9503-d5da5d67ca38 1 \N Other +2b537762-de7f-4b74-a965-b1ae2cb2701c 1 \N Other +2b5648d6-50f5-4875-a59b-2b5da57a6b27 1 \N Other +2b56f2e5-8520-4bc9-bf59-337479f84838 1 James Other +2b584c21-b023-407d-bb32-6497fd8d29aa 1 \N Other +2b5963ff-3c9c-4578-a440-92db8faabd13 1 James Other +2b59e14a-3309-4fa3-b999-237f492a5c84 1 James Other +2b5ab46d-d978-4f98-adda-01b18726ea19 1 \N Other +2b5ed518-7e41-4b0f-9f37-0f8607abce1a 1 James Other +2b5f38e9-36f8-4517-a862-93ed66e58779 1 \N Other +2b61abab-44b7-4485-a073-0889d08e60e7 1 \N Other +2b62458d-1e59-4639-8e61-6a743367354e 1 James Other +2b69e82c-c75d-4f9d-8936-cb85c320ee9d 1 James Other +2b6aa5c2-4d02-4708-aba8-09c3d09c5912 1 \N Other +2b6bdc08-071b-4f8a-8b9a-a8e044ba9c38 1 \N Other +2b6fe977-c938-41b0-87ed-44885bae95d6 1 James Other +2b746d7f-4f61-4d39-beea-a3b5d596d0bb 1 \N Other +2b799d70-6187-41de-ab10-84a6e6dab789 1 \N Other +2b7a134b-5659-43ec-859b-f44701e81ad5 1 James Other +2b7a1dce-8f1e-4a5f-8810-f51bfc98c72d 1 \N Other +2b7db5dd-5f35-466c-83ec-c2569de95a64 1 \N Other +2b7fc90d-18cc-423f-a5ac-fa3398fdc301 1 James Other +2b81acf8-49e7-48dd-8c96-615c84c0b5da 1 \N Other +2b859370-7f70-4587-8dd9-b2f9ecc7dc0e 1 James Other +2b8a0ab5-e1b0-417a-9376-c37f1cb44791 1 \N Other +2b8ac1dc-6838-4995-a417-79922a7221e6 1 \N Other +2b8f9c24-658b-4c47-ad64-09af3cd21d84 1 \N Other +2b90ebbc-076b-46a0-8727-9a3386c4acb2 1 \N Other +2b92ad0c-25b9-4a4c-830e-a1adfffe8fa0 1 James Other +2b9fb68f-8cc9-49bd-b9fb-805748cf20d0 1 James Other +2ba1123d-dd32-499e-b991-de431769fe3c 1 James Other +2ba4e50c-eaef-4150-bb66-99159a928851 1 \N Other +2ba8b8ec-cb26-4dfb-81d7-250b9807ad12 1 \N Other +2ba9f262-8d18-4fc0-8904-adf6679187bd 1 \N Other +2bac96cd-90ec-45f7-856c-64b732d13488 1 James Other +2bafcba0-91d2-4ec3-b8d3-ee146535cfbf 1 \N Other +2bb191da-ebb3-48f0-90d3-f61db0eed3cf 1 \N Other +2bb68509-16fc-4823-9852-a61a4c89bdc5 1 \N Other +2bbacc27-7f3f-4e65-a46f-ba8fc0e3a8d9 1 \N Other +2bc236d2-f294-4cc3-b424-5bba056eb508 1 James Other +2bc2d45c-4b09-4c6d-bd3e-09fc253790e7 1 \N Other +2bc4a4b7-0040-4477-bb13-f63e33120f23 1 James Other +2bca8601-2035-458a-9b21-fb012e8ab793 1 \N Other +2bcaef62-e5ae-4b28-84b8-1ccd669154bb 1 \N Other +2bd56f5d-2938-459e-9ac2-d8312c263ce7 1 \N Other +2bd7fc49-0e31-46cf-bbed-0cbbedf48300 1 James Other +2bd91d00-7fb1-41cd-8dc9-347e6b910512 1 James Other +2bdacc8b-e435-4516-959d-6a3ba51b1972 1 \N Other +2be3ad90-085e-4ae1-950f-8aa308adce11 1 James Other +2be3c9d3-8ed9-4c6d-9a3b-051f9213b466 1 \N Other +2bece78d-06a0-46f0-adef-b74b8ee7738d 1 \N Other +2bee68e1-812f-40f7-9eb0-d4e50ddd0589 1 James Other +2beefd04-7b56-40de-aef4-fdc332cd9d7b 1 \N Other +2bf560fc-6d89-4c7f-98f7-897760489e78 1 James Other +2bf619ac-742e-4daa-9b39-a49a9a257a68 1 \N Other +2bf765bb-3cb1-4ceb-b1a1-18347743ec97 1 \N Other +2bfdbd78-572f-46aa-b80d-0f9ca03d3166 1 \N Other +2c001e4c-7733-4274-b312-56dcccdf3c20 1 \N Other +2c04c013-8454-4878-8879-8fb10759de10 1 \N Other +2c0827ab-3384-4d1f-a678-a17004155105 1 \N Other +2c0acbac-abe6-4ef7-be16-6cab75242aa6 1 \N Other +2c0c9127-a9d2-4dff-afb2-4304714a40f3 1 \N Other +2c0ed05e-0d2f-4907-9876-eec4e8967f8c 1 \N Other +2c104c14-7617-4daf-948c-2ba410bc04f9 1 \N Other +2c11a966-7c1a-4e0d-ad88-223498ce52c9 1 James Other +2c11db7b-220a-4e7a-8263-1451e7420dcd 1 James Other +2c132c9e-2a02-4f74-9017-8599699dda05 1 \N Other +2c16e795-5c63-439c-90b6-d66d7edd1e43 1 James Other +2c195f51-8f16-4ef6-9ec0-17e77cab4241 1 James Other +2c1ff012-3f2f-4c80-b5e3-fb683d901c2c 1 \N Other +2c24af58-f8fc-4954-aa2c-34afc8736171 1 \N Other +2c24d3e1-f75a-482c-a367-e9171cd2829b 1 \N Other +2c2527cb-ada2-43b7-ba7e-acf6c0a59528 1 James Other +2c26dd68-ddfd-4361-a5b7-7b6438f82bd3 1 \N Other +2c28c0d3-0958-438e-80fa-5df67517a7ce 1 \N Other +2c2cdb35-9c55-40b6-b5aa-5c2271333ae8 1 James Other +2c335e73-3b26-415f-85c0-9da90a43629e 1 James Other +2c340c05-f671-47a0-a9cf-1c4d5a390afe 1 James Other +2c3441a8-0207-4996-8e91-79691c6561fb 1 \N Other +2c35144a-5811-4a61-a823-5cdc61bee2ab 1 \N Other +2c38a50e-75d6-4e08-a04e-45c87589db6b 1 \N Other +2c3b2bbd-5562-4085-b81f-f69f2093e329 1 \N Other +2c40d41a-7329-4f4d-8fce-3f684e90f65b 1 James Other +2c41c77f-38e3-45b1-abc5-24c63e9350cd 1 James Other +2c42b22b-bfcc-42b7-b357-44edaab35dfb 1 \N Other +2c4354c4-03e3-489f-8399-10676ab747ac 1 \N Other +2c473777-cb79-418f-8bf1-359aa97bd31b 1 James Other +2c4b0a3d-0eca-4c59-9ef3-4d67bc3ca7c8 1 James Other +2c4f534a-3ed7-45ba-a8b3-75d16210193a 1 \N Other +2c4ffbe2-d8b3-4389-8cac-24e852892f07 1 \N Other +2c5413f0-7b28-4db5-899d-4f7f73ca3334 1 \N Other +2c543abd-ccd0-46e9-8ce8-2118f3c4a540 1 \N Other +2c547f5b-03d3-49dd-a7df-5cf0506bef8d 1 James Other +2c553f87-f323-46ec-ab28-3937c33dd395 1 \N Other +2c5ae48a-aca1-407b-a0a5-13de8aada585 1 \N Other +2c5db04e-c9da-4abc-8a66-af67910a8154 1 James Other +2c5ddece-afe6-4736-804e-c9f80ab87e66 1 \N Other +2c5fdeec-f146-48fa-a8b5-850eb0d509e6 1 \N Other +2c65ebbc-ba80-4cda-848e-e20bdd36baa9 1 James Other +2c68c75e-3c66-4c2d-b944-dd29a16d00b5 1 \N Other +2c6be875-4ba7-4cf6-aba0-a018fce156a2 1 \N Other +2c6d30df-525f-463f-b33e-19ba6118d1d7 1 \N Other +2c6d36eb-888e-46d2-800d-94dc07b72202 1 \N Other +2c787ab5-abe6-4427-8d17-aaf45cc7fd3c 1 \N Other +2c8155b9-b7d9-465b-b435-74477e8e15a1 1 James Other +2c85c63a-7de1-4ef7-9f36-9f7b42158c54 1 \N Other +2c8b3e9d-a153-47b2-ac1b-3a3d61502a39 1 \N Other +2c91c0c7-87f6-4165-81fd-f060a4744a36 1 James Other +2c9f06b3-ea0e-4015-9107-b383bfef4d54 1 \N Other +2ca1d1cc-488d-4181-9b96-9fe608ea5c71 1 \N Other +2ca1f9a3-0cef-4fcc-a5fc-d2fabd6147db 1 \N Other +2ca2bc34-3615-43b2-9e1d-d8cb171b45ce 1 James Other +2ca526d0-4618-4f64-ad39-c0af8e507415 1 \N Other +2ca9fab2-15d6-4235-aab1-8e07c872a968 1 James Other +2cabe21b-cb58-4a59-8d5e-de7e21122a67 1 \N Other +2cad367b-2912-46f3-b124-06ca6a5836f2 1 \N Other +2cadfdcb-f9ff-4d16-b1c0-c855ef309e6a 1 James Other +2cba10e1-9e72-48e5-aeaf-a906d003cd59 1 James Other +2cba4867-fd27-4853-b908-d125fc9cbe4c 1 \N Other +2cbe2db9-a696-47c1-b2f1-93b580bf4038 1 \N Other +2cbfca9b-e661-4927-a7e2-95d147eb76b5 1 \N Other +2cc07ef2-a405-4913-90b9-4c3542a524d4 1 \N Other +2cc22221-ca53-4d7e-b079-ecf9376c5abe 1 \N Other +2ccc075a-c3da-429d-8141-96cf8e722fc9 1 \N Other +2ccde59c-675a-46bd-8327-793da77a85be 1 \N Other +2cd1224e-e505-4047-a490-9a4ed706cfa0 1 \N Other +2cd1a5c5-6cc7-4332-b174-d73beb99ccda 1 James Other +2cda7fc8-7253-4c50-b740-0809cae02f53 1 \N Other +2cdc1147-42bd-4e19-9bce-0314a5b7d2f8 1 James Other +2cdcaf45-29ac-4b82-82ab-a8ef70d3ee8d 1 \N Other +2cdfb5fa-28ed-4e6b-9527-98ae2aa30582 1 \N Other +2ce6399f-69df-4853-823e-77d98a6717c1 1 \N Other +2ceee083-d868-4578-9b17-55f83208e6da 1 James Other +2cf34ecf-d0b5-4192-9e52-ed3760cafeb9 1 \N Other +2cf59351-fe31-40d5-81f4-c0417ff4aa25 1 \N Other +2cf5ff2d-7b13-4b1f-b207-f1999a392a20 1 \N Other +2cf9ef7d-def5-4e96-af4e-cc4a70d56797 1 \N Other +2cfe780a-e5fc-4de7-aa6f-771e323e9ad8 1 \N Other +2d02a526-ee1c-4c8f-a2df-471af91f3c14 1 \N Other +2d05cb5a-2fa2-4af4-873f-4aaf6375dd12 1 \N Other +2d062960-ff4b-4c0c-9632-f7425a98f771 1 James Other +2d0729ef-e405-48df-9b63-515d4cc2f749 1 James Other +2d09459b-ca4a-4ceb-a043-96078d2d43a9 1 James Other +2d09961e-bcd5-4353-b337-098e8f2b3eee 1 James Other +2d0c7529-070b-4006-93f3-76d52ff030e2 1 \N Other +2d16184e-6b2b-4619-bcc5-7f2d434945d1 1 \N Other +2d192c46-0cce-4417-b70b-6f58a264339a 1 \N Other +2d1f569f-a155-414c-a952-6a3557474fec 1 \N Other +2d217877-f06c-4e68-a52a-d9bc69809742 1 \N Other +2d25acde-46fb-4066-a257-24a96d1377c1 1 \N Other +2d25b87e-b297-4369-a8f4-17a0a75af446 1 James Other +2d284127-35fd-4cb8-9cbf-7f32e43915ed 1 \N Other +2d2c7abf-c652-48a5-a4f5-4fa740028cda 1 \N Other +2d3119f7-55b6-4de4-9e79-241f78ddcd5e 1 James Other +2d341210-7231-4169-8135-565c3fa4930d 1 \N Other +2d34b91b-33c3-4eaf-8800-bcdf61b75c74 1 \N Other +2d3bde9f-41be-4186-b62b-49c1752502b9 1 James Other +2d3cd0a5-e4fa-4476-8f8f-23d11a2b21b1 1 James Other +2d3df37b-bf75-46a4-a86b-7d83500c9ab2 1 James Other +2d3e2520-0738-4554-bc92-ffc054817e18 1 \N Other +2d41039a-60d9-4d71-8b6a-4bd193e23798 1 James Other +2d414396-9e9b-4d3c-a7ff-93e0ccd06423 1 \N Other +2d452e51-ca10-404a-8e61-9fcd9557a41b 1 \N Other +2d47c0fd-178f-457c-abb7-6944981529c5 1 James Other +2d4896ae-5fd4-4352-b43c-e8f3e54f19f7 1 James Other +2d4da0a3-03c9-4074-a43d-e5beb2a02fb5 1 James Other +2d4f92e6-6a2f-4aba-8eeb-e1127c6a12ea 1 \N Other +2d532e14-cc96-4d49-9a29-6a02e69db680 1 James Other +2d53b7df-8521-47f9-9469-6890b369e53d 1 \N Other +2d56d1ad-b655-49ce-b85c-9c513130cb80 1 \N Other +2d5866c3-c255-44f8-ad0f-87c9a880bb85 1 James Other +2d59762e-c504-4e60-b998-8a8f953632d9 1 \N Other +2d636596-0858-48b3-a05a-198a8feb1cb7 1 \N Other +2d643a25-f563-4319-8488-e0534671f96a 1 \N Other +2d6465a6-a326-4594-8968-02fb51b462ed 1 \N Other +2d670d59-73ee-4282-87e5-18cd3be71503 1 \N Other +2d695a00-0d8f-4f0d-a02f-c1687efb27c5 1 \N Other +2d69d2f4-cb8f-44d5-9866-f60cb0017231 1 James Other +2d6b0d25-23f0-417c-8409-4bc0c0d7beb2 1 \N Other +2d75718f-9aae-42ef-ba8e-2e8cbc42cf62 1 \N Other +2d7cdd0a-ff89-483d-94fc-a011a4c6c1f0 1 James Other +2d8489e7-f9ba-4b23-ab18-7570716c26a1 1 \N Other +2d862331-7c77-4419-9982-b69e16519f08 1 \N Other +2d877a1f-efc4-4d45-abbc-aec7d20e5afa 1 James Other +2d88b912-77c6-4d63-a16e-b7fbe429a14d 1 \N Other +2d8cf6cc-dc2a-44e6-bf1c-aafe6d4f149b 1 \N Other +2d8e60d4-13fd-4468-aa83-ceb4150a315b 1 James Other +2d92c9b7-a462-4701-aad3-6bf3c114cc83 1 \N Other +2d964bfe-7df0-4509-b011-369a14f9f5ef 1 James Other +2d995443-4687-4cd6-b21b-5ebd20c2c139 1 James Other +2d9d7df7-2ea7-4437-8978-b1846f445d5e 1 James Other +2d9fc71c-fd6c-4b74-bf85-f9e0b71466b9 1 \N Other +2da4561f-39ee-4e86-be66-2c58881d2809 1 \N Other +2daa5675-319a-4fef-8c6b-71ae1b59fb7b 1 \N Other +2daa9033-c4f3-4ffc-9964-9885704d0ada 1 \N Other +2db10edf-e5be-4eaa-aab1-8f0a9b2c6656 1 \N Other +2db7b2a3-bf9f-4500-8d6a-5e03f133cc1f 1 James Other +2db7c12f-f07d-44c4-975d-9c0ead6e9a83 1 James Other +2db8fd66-ef08-4540-91ae-1d0406cf8884 1 \N Other +2db9f574-22cf-4879-8855-71c198fbcd26 1 \N Other +2dbad3e2-094c-4f05-b489-781b61a1eb0c 1 \N Other +2dbadc29-69d7-4d93-9085-62c8cd76f155 1 \N Other +2dbb4948-dd5a-475a-bdd0-b18a8d2be4db 1 James Other +2dc10f47-bb64-488a-b7d4-b457cdd2e836 1 \N Other +2dc792ab-8008-41c6-9876-8a156e551baa 1 James Other +2dc8d099-59f1-4a8a-8930-d2e04d52b02b 1 \N Other +2dd4576c-39a1-405e-ab09-2d9213c4a9a1 1 \N Other +2dd4baa4-50bc-4eac-94c8-066b31bb7f0a 1 \N Other +2de084d2-3fc5-486b-bc3b-9d4b94897ef5 1 \N Other +2de13114-c3a2-4dfa-970b-8f20c7aacded 1 James Other +2de25194-1e98-4c7c-83d5-c5a23eef16cb 1 \N Other +2de53d13-f1c6-4e7d-a252-ec1581582ef0 1 \N Other +2ded4798-0ae8-11e8-8f75-fa163e8624cc 1 \N Other +2deddba3-19c4-4d2d-af56-a4851fdd97b6 1 \N Other +2df1aab3-e2fe-4474-ad36-e9e2db9ae441 1 \N Other +2df3a975-68c9-45b3-ba7b-8d50c1ce38f9 1 James Other +2df46445-5751-470e-8034-3b95a9ecf4dd 1 \N Other +2df8ede8-ee47-445e-a491-7cf31917d4fb 1 James Other +2df95cff-203f-4e97-b378-4d44fa386268 1 \N Other +2dfb04e5-f0ce-4896-937e-b5469a1ef2b6 1 \N Other +2dfce1fb-d1f9-4d1d-a20d-cb790c54d806 1 \N Other +2e09c962-f948-4263-97c9-6021cd6c962c 1 \N Other +2e0baa50-90e0-497a-8750-1bc767365ccd 1 \N Other +2e0cb0c0-95a3-4cb2-826f-715848b73fec 1 \N Other +2e0f0f02-3cc5-48d3-9269-8d6c68498909 1 \N Other +2e114281-a812-4f48-9d3e-0683ed33637a 1 James Other +2e1468d6-2a8f-4fba-9f7f-8e4dfaf32088 1 \N Other +2e152752-9459-471d-999b-a0b92025e852 1 \N Other +2e18b022-ee36-416b-9049-52411111cb6e 1 \N Other +2e1c8575-fdec-4628-82f6-538f6b2ef25c 1 \N Other +2e21cce6-47f1-44ff-91b4-bac384ccf3f2 1 \N Other +2e274074-0ae8-11e8-affa-fa163e8624cc 1 \N Other +2e275717-eefd-43ff-97a4-4cc65847f763 1 James Other +2e286d7a-06ef-11e8-a12d-fa163e8624cc 1 \N Other +2e2d24b1-009f-4f24-bd69-a2017191c69e 1 James Other +2e2dd705-66a9-4b6d-956e-c5cd9c77c781 1 \N Other +2e342099-331c-4efe-a111-6f783b9ff471 1 \N Other +2e3804fd-02a7-412a-87d0-b31c1220682e 1 \N Other +2e40b0dc-2d01-4401-bbf3-784511aa788b 1 \N Other +2e41b47c-f66a-421a-ab6e-3149edd1985f 1 \N Other +2e472ca5-197e-4d16-a6bc-b59d13fffb30 1 \N Other +2e47347d-72a2-484e-8b05-7d04e4f33f83 1 \N Other +2e47c1dd-dd1d-4854-97ed-a91215db1a44 1 \N Other +2e49f2e1-8fab-45d9-be80-e294613c54a1 1 James Other +2e570f18-d6ea-45df-bcea-4eac60008943 1 \N Other +2e585537-c63c-4273-ba2f-07e1d9fd1200 1 \N Other +2e5f5814-7e09-40bb-a346-496153c4c297 1 \N Other +2e622203-6bf6-49d0-9c6a-fec71e360f41 1 \N Other +2e681a85-fa1c-419b-be34-d80e5f33eb65 1 \N Other +2e723f1b-9770-499c-9da0-5225d83087ee 1 James Other +2e74bf8c-5bf6-44ff-b7c6-7744b1b17ff1 1 \N Other +2e792527-9882-4af3-b04d-2588936ffff4 1 \N Other +2e7eec0a-8007-4070-947a-849d42503bb3 1 \N Other +2e80996a-ee8e-4f52-a269-50fbe1f68bf7 1 \N Other +2e865866-83de-4d98-a061-1176ebba2791 1 \N Other +2e86f9a3-169e-4f54-84db-35916eaef2ee 1 \N Other +2e88b340-0484-45c1-8b95-871a88d3933d 1 \N Other +2e8966f6-6e20-4297-9da9-56bdadb3011a 1 James Other +2e89d746-6cc8-41fc-9163-ba542185ec04 1 \N Other +2e8c7ce8-06ef-11e8-a27a-fa163e8624cc 1 \N Other +2e8f28dd-8af0-4281-98da-b12ba73d072e 1 \N Other +2e9478ac-0bab-4adc-a82d-21c28eb9d91b 1 \N Other +2e9a981a-c15b-41ec-804a-7f883ebc4718 1 James Other +2e9bd1a0-9b37-4262-976e-a4a4389d396b 1 James Other +2e9deccc-18d6-4ad8-b713-742ae97507ad 1 \N Other +2ea04cf3-8a49-473a-a1a6-d795409e9b29 1 \N Other +2ea199b6-49a4-4329-9a74-fb7c4193cd41 1 \N Other +2ea428e9-6723-498a-8b6c-59a1e8743be4 1 \N Other +2ea5caf5-b5bf-47c8-803f-64b94574f494 1 \N Other +2ea678db-bd04-4bab-b94e-d7a952e013fd 1 \N Other +2ea92488-ae9e-4d4a-8a74-75b7c7808e4a 1 \N Other +2eb08349-207a-4957-a5e4-91bd4255e190 1 \N Other +2eb76e53-a2d9-47fd-ac22-c1b31587ea56 1 James Other +2eb7ffa3-fa9b-42b7-9b7d-3151fc8b8b7c 1 James Other +2ebac43a-79dd-4a88-9636-557052fcc6f9 1 \N Other +2ebcafe2-9ea0-47f4-aba8-5f5f51347190 1 \N Other +2ebe8745-297d-4d7b-b031-9e1233e909da 1 \N Other +2ec351ce-e093-4656-8dfc-756557aa344b 1 \N Other +2ec4fef0-fd1e-4ba3-9efc-d260e073b92d 1 James Other +2ec6116c-9894-4545-9212-f4e243e5146d 1 \N Other +2ece70cb-203b-470d-b8ce-fecae5a9308d 1 \N Other +2ecf45c6-5d02-46b4-9038-aa75391d3996 1 \N Other +2ecf49e3-97cc-4c07-bc7b-3463031a611f 1 \N Other +2ed0ea7d-8de4-4573-ab62-5ff30f638660 1 \N Other +2ed4b68b-3a8a-44f9-85ee-bf0be9526db2 1 \N Other +2ed58e00-edb3-4340-8c6d-7adfc88c2cc0 1 \N Other +2ed5bbf2-75eb-4a17-8b04-41019e723989 1 \N Other +2ed613e1-40c5-4872-ac90-7c55aca7a979 1 \N Other +2edf8b53-00c1-4c9c-9c3a-9076fb7e3941 1 \N Other +2ee5d5a6-bcbf-4cdd-b2d5-2ed8346119ca 1 \N Other +2ee759a4-c06f-450e-bb8e-6f9c911e796b 1 \N Other +2eeafb06-2ac1-445c-813d-40c0132e3b15 1 \N Other +2ef0f38f-b566-4359-b95e-cd4f762c4253 1 \N Other +2ef2642a-3a1f-401f-87ce-f601006ced96 1 James Other +2ef853c9-9ff2-4097-b0a0-ad700062f1fe 1 \N Other +2efbf07a-5be8-4a76-84be-b54ce759e37c 1 James Other +2efd3fd6-e93a-44ee-9d4d-fe2c095dd2c0 1 \N Other +2f01c6d5-c19a-4df7-bba0-99d1bddd3936 1 \N Other +2f023891-9476-4d20-857c-22981e97c3d0 1 \N Other +2f029000-bdcf-4571-9fb1-eb5607ed058f 1 \N Other +2f02cec4-95b3-44db-aa0c-50bf0f7d5f88 1 James Other +2f0504f4-3fc9-4eb3-adb3-a16f62129b0b 1 \N Other +2f050d74-bcba-4019-83d8-c05f35fda5c7 1 James Other +2f05fc2a-9d28-4b8d-88d0-f6a5d74e38ef 1 \N Other +2f072ea6-7ce6-4fca-9e46-3a24258c3eda 1 James Other +2f07c27e-96e1-4ddd-8d6c-27d823d40712 1 \N Other +2f09eb69-79cf-4b34-83b6-e485e0c26447 1 \N Other +2f0adb21-8f4c-41a5-90a9-5f1ddc314f55 1 \N Other +2f0da70e-f8ae-4b9a-a789-6900fd9aa142 1 \N Other +2f109351-30b2-446f-9179-60e3a0251786 1 \N Other +2f121894-1ec5-4e67-ad55-ea9acfe62ca7 1 \N Other +2f1c95a8-65f2-4039-93ab-6212a8dde2a3 1 \N Other +2f1f9f6f-9c12-4feb-bd6d-924ffaca95ec 1 \N Other +2f23a753-0d19-41b9-9f3d-acdf9c68b99b 1 \N Other +2f276e07-9311-4945-985d-c5dc75f2a759 1 James Other +2f28a664-5904-4217-97b1-4545e120a750 1 James Other +2f319d7b-e563-4373-bb82-c370934dc5ea 1 \N Other +2f358c54-ef03-4a3f-b9a2-3c7ca672d658 1 \N Other +2f3bee49-c20f-47d4-ad0d-4b2592836776 1 James Other +2f3f0def-ce65-4d7d-87f4-6f99f45742f3 1 \N Other +2f41a632-4426-4795-b60b-44626e5c6d5f 1 James Other +2f4cca79-d14d-4392-88c9-366f7b55f5c2 1 \N Other +2f4d24be-f3f8-4d47-97cb-9000341bb549 1 \N Other +2f4defe4-eebe-49d6-917f-65a1b882bde8 1 \N Other +2f50cc4e-3df6-4dff-8515-cf3e09b777ef 1 \N Other +2f518374-07bd-42b4-8156-1c196ea1e78e 1 James Other +2f519a45-b9cc-4d60-afec-2bc844d44a77 1 \N Other +2f519f2a-879a-4021-86ed-213c1f8a2695 1 \N Other +2f5521d9-8e94-4cd7-a850-2eda5dad370e 1 \N Other +2f59d9f1-aa08-45e1-bb66-5ba9b76d8e0e 1 James Other +2f621b00-b34c-4241-a906-f94de351fd1a 1 \N Other +2f629c94-6b7f-4981-b8ee-ee9204040ff1 1 James Other +2f657055-f5e4-4298-bd74-31b1b8e1e3d9 1 \N Other +2f65ff58-6bf5-45ec-8bda-735e8d447909 1 \N Other +2f6907c2-dd70-4296-9cf6-ae4de99476ed 1 James Other +2f6929ec-a925-4c7c-b272-6c4de6b1341f 1 \N Other +2f6d16d7-e4ae-4938-a684-bf8f639f7235 1 James Other +2f6e0fd2-414e-4629-adb2-7a30015955bf 1 \N Other +2f79c125-9b01-4b31-a926-29d3d9e4cc7e 1 \N Other +2f7c3e16-9ee9-44a1-a5a0-f14ba0739fdb 1 \N Other +2f7daff3-2f5b-4873-83a8-9f2935389a5c 1 \N Other +2f8200b2-8992-4b84-bcc7-3f099f7868b3 1 James Other +2f88fe52-ae0f-4f12-91a1-7e7a9e749c18 1 James Other +2f8aa3ed-3ce3-4171-9bf9-c053a74a2a09 1 \N Other +2f8ac29e-ea11-41de-b40a-f3c428c9c0a2 1 \N Other +2f8e0d00-f703-4f4e-9b87-ff892feb9f2f 1 James Other +2f925c66-719c-411b-8093-445437dae9ec 1 \N Other +2f9492a4-943b-4f4c-81fa-61844dd5404a 1 \N Other +2f963433-e4bb-42ae-b049-908da5c92f6d 1 \N Other +2f964ea3-289c-4b99-9d07-64c75d127460 1 James Other +2f9885da-c762-46e6-b2c5-07fca18a64af 1 \N Other +2f98cc47-8346-4072-bcb6-6e1b1ffba372 1 \N Other +2f9fba7b-1fa7-4056-9102-a9e13d1f99b1 1 \N Other +2fa2d86a-bfe6-46cd-9b4b-c045260253ba 1 \N Other +2fa71875-a996-4684-8033-2c52a42be139 1 \N Other +2fa7ce53-1586-4f61-b5a2-448429f1bdcf 1 James Other +2fa86303-5adc-4c56-9879-535802624e0f 1 James Other +2fa9499d-389e-4b59-a6c6-5d11256a5b1f 1 \N Other +2faa2b8b-9f34-4b83-ac04-e19d3cb63ddd 1 James Other +2fae37ff-3541-419e-86d1-dab4526e89dc 1 \N Other +2fafe2a7-c097-4c9e-8999-b8c021f75e39 1 \N Other +2fb033a9-e307-4595-8ff5-0d577ba1b002 1 \N Other +2fb528e8-ad16-4ceb-83e2-715f625452b9 1 \N Other +2fb967ed-b929-4753-a569-71d3ed074756 1 \N Other +2fb96cb2-d63e-4dc0-ba62-9345b5ba8ec8 1 \N Other +2fba852f-953d-439a-8f04-0652da33ede2 1 \N Other +2fbccd9c-f524-4a36-ba8a-7aed2c176be2 1 \N Other +2fbe1359-c254-4a04-b1ca-cdc44b32d0ae 1 \N Other +2fbfee03-82d8-4b17-9dae-def9301f6010 1 \N Other +2fc10133-772d-4e93-b806-308ba5057451 1 James Other +2fc20abf-a803-42a7-82dc-8d48c07d33cb 1 James Other +2fc5220f-0d85-4456-90b3-8ba2ea546dc8 1 james Other +2fcccdce-1669-46cf-97b8-86c0a953f22d 1 James Other +2fcffadb-afe3-4b10-8977-7411c306ffc2 1 James Other +2fd58acb-c63d-4a60-ae82-9bad8b7f27e0 1 James Other +2fd92781-94ed-4342-9851-0ac5f50f7f3d 1 \N Other +2fdb1310-a9da-442a-8ffe-14ae789b8075 1 \N Other +2fe0a403-6f5a-440b-8eb7-3b33abeda935 1 \N Other +2fe406d2-057a-4812-8d11-bdb4eae6e137 1 \N Other +2fe6cdfb-47d1-4d04-aff8-06eb9d58e2cc 1 \N Other +2fedcb58-64bf-471a-af3e-0ea1df135bb9 1 \N Other +2fefae32-3da7-441c-91db-03615d1e21ce 1 James Other +2ff57b14-f221-4ba2-b659-41081394c089 1 James Other +2ff6535e-2339-11e8-8265-fa163e8624cc 1 \N Other +2ffcdb09-3977-4e2f-9f54-89fd4f26e613 1 \N Other +2ffdb3e4-685b-4e89-859e-5db2ff404dc7 1 \N Other +2ffe7cd8-2b3a-11e8-9394-fa163e8624cc 1 \N Other +30009d01-0f38-46d5-aada-425ed84269bf 1 \N Other +3007de7e-6afe-4dd1-ae11-67ffd8acb8b6 1 \N Other +3008fe7a-db2f-4bd4-a5d0-e6a946d6410f 1 James Other +300b06c7-3e66-4ccd-84e9-5107792ff9c9 1 \N Other +3013fe77-574a-44a0-a88a-39b14b27222c 1 James Other +3018e7d3-a4bc-431f-aa4b-166231cd90d6 1 \N Other +301d780c-624a-4999-9ef0-0d966a79db53 1 \N Other +301d7c9d-0328-465b-a08b-ebc6f46670f7 1 \N Other +302075cb-6cbe-4e32-a48f-b81f2f4304e0 1 \N Other +30207de0-b0d6-447a-b60c-d61b2e417047 1 \N Other +302569c5-6b54-45f2-919c-dee44b10d9e0 1 \N Other +30269564-2339-11e8-bbc9-fa163e8624cc 1 \N Other +302d94b9-b2e4-4f87-936f-53f181cdc522 1 \N Other +302e1f6f-995e-486b-931d-544df2768984 1 \N Other +302ebc05-643a-45ed-8186-24be1f105739 1 James Other +302ef054-c872-4572-b01c-35f4ab8509bd 1 \N Other +30325348-2f5d-4bbb-a50e-2cf14d6fd567 1 James Other +30382a6e-b787-449d-be98-2926e8e0ca91 1 \N Other +303aae57-b996-40f0-8116-95cce548ecde 1 \N Other +303b2265-032a-4316-8848-1533570a4b84 1 \N Other +303b4e0c-f961-48e9-944c-e64fc2c79477 1 \N Other +303f2e70-6016-4da3-a63b-7e8e6f0e55d4 1 \N Other +303f5029-0532-42fa-956c-e06172258fd5 1 James Other +30421efb-c754-4452-a422-609dcdee8e3f 1 \N Other +30461aa6-2783-46b3-b024-027d5f28b3a2 1 James Other +3046a744-222c-4535-932a-ec449eb5f37a 1 James Other +3048951e-857f-4d11-9afb-6f5aa8e26101 1 \N Other +304b09b2-b38b-4695-83b2-eb0474216f9b 1 \N Other +304b162b-dc34-4054-8f5d-d08a2e16535e 1 \N Other +304b95d7-99d6-42d5-b0ae-0a7446eff1b2 1 James Other +304d4a55-a7e3-42be-a554-9f3b14f92c91 1 \N Other +304efb87-122a-496d-aeeb-6f917e53c986 1 \N Other +30511c7c-74f3-4a50-af22-a3ef776f8c7a 1 \N Other +305a594c-128b-47a9-94b1-2f456eeb86bf 1 James Other +305defda-cc24-410d-a62d-24dfdc2be438 1 \N Other +305e78ba-bcd1-44f6-9c40-ca4c398c8607 1 James Other +3062f2cc-35ba-4d25-ba83-ac842b01559e 1 \N Other +3065ea88-0c20-4e7a-a7e9-2db1718ad3ea 1 \N Other +3068ecf9-4aeb-437c-a1fd-7cc9804550ed 1 \N Other +306d1df8-a061-4c86-8aa0-377798dbfe1e 1 \N Other +306ece42-3d4e-493d-b341-93f467b3779a 1 James Other +30712e0c-f657-4454-81ec-7b2722df0e10 1 James Other +307418e4-ed51-47b9-a12c-5e3f7f445c10 1 James Other +3078a004-f3be-4019-aec4-01b9ec1ce063 1 \N Other +307962a1-48be-4deb-9810-35b8c6519310 1 \N Other +307d1198-4cfa-45f0-b041-7d86173a974d 1 \N Other +307dcff1-b708-44b2-9b2b-2480232f3bef 1 \N Other +3080f657-ea3d-4cfa-93dc-9ef071a73c37 1 \N Other +308875ad-68a6-4ac7-b5a8-5753ff6cef2a 1 \N Other +308b9a83-2232-4e84-9470-0f4eb4e74a90 1 \N Other +308d934d-6915-49fd-8821-6c426f21826e 1 James Other +308e0819-9b30-4f65-b089-e12c338e3900 1 \N Other +309c96de-c352-4722-b764-5a03016debba 1 \N Other +309d7501-1213-447d-bc7f-d51720cbaf85 1 \N Other +309eb8d1-3682-4039-bb84-18214887ffea 1 \N Other +30a20d6e-11ae-4e53-87f1-d88eab0b9912 1 \N Other +30a302ad-f775-4d2a-8510-25196bb05881 1 \N Other +30a80c40-7962-4589-9936-1549a1af04b5 1 James Other +30a9eb67-4f17-442e-85f5-7f723d969f3a 1 \N Other +30abc3dd-d9ff-4eaf-9584-c0497c487990 1 James Other +30aee43e-7aef-42c8-a22a-fc72ce412c97 1 \N Other +30b4319c-3692-4f9e-a875-5eb7d740368e 1 James Other +30bb01a8-de8b-4859-87b1-21098b7f32ca 1 \N Other +30c789d9-8837-4137-abd9-3d46ce811a78 1 \N Other +30c7ed77-c36e-499d-9cc4-ef07d62ad75c 1 \N Other +30cf6923-9b51-4ee2-b955-555c1e5ba437 1 \N Other +30d0d3c1-9249-4ff8-8812-961109b595eb 1 James Other +30d3860e-db53-4764-bc61-65daf2c8a085 1 \N Other +30d3fb94-fed3-4d41-80dd-769b457a1338 1 \N Other +30d594d2-136e-4204-b8a9-7b07189d2f0b 1 James Other +30d59c5a-ed23-472f-8c79-815a1ac785e1 1 \N Other +30d747ce-1964-4280-b0ab-efb1e8a81108 1 James Other +30db51d0-a820-4330-9d56-850c50a331ca 1 \N Other +30e0223c-24d4-443a-a052-f88a882f0f81 1 \N Other +30e19dc0-35cd-4a6c-9f73-95a1774a90f8 1 \N Other +30e4d067-ebc9-443a-8b5c-501f1816f7d6 1 \N Other +30e551ca-68c4-4386-98db-c418f30b00f3 1 \N Other +30e58589-d7c3-4322-886e-d4531824db48 1 \N Other +30e6b95b-c68e-4f67-9fa7-da5fe7ff0810 1 \N Other +30e78ce0-55a7-442b-93e5-68e5579b7bab 1 \N Other +30e94efb-0b32-4f00-8e9c-ebcc5b4c40b8 1 \N Other +30e9758c-26c9-4afb-9b4b-da4259d4d356 1 \N Other +30ed4548-06b0-44c4-b9af-ed628936c561 1 \N Other +30ee730d-ef9c-42c7-ba9c-dcf233b4ba34 1 \N Other +30eea3e2-01fa-4d8b-a858-f013e0cc9bc7 1 James Other +30fcca4c-7a6b-4eb2-9086-ed4ee6fdc0d6 1 James Other +30ffba0d-d594-489f-893c-659818522784 1 \N Other +310aa1a3-60ce-4391-aabc-2ac8c0437cfa 1 \N Other +310ebdc5-d923-4a41-8fe3-07251b0e6b29 1 \N Other +3114003a-88bc-4ee8-8283-c841e3db4a45 1 \N Other +31175f8f-1b70-4584-885f-7bd701a0d5a9 1 James Other +31177716-9613-4cc0-b14b-9facb069d81c 1 \N Other +31188ec3-766e-4756-84d0-979c33dc82c0 1 \N Other +3118d706-7a80-4fb7-999e-da47877f3c2c 1 \N Other +311941c9-9fb1-45bc-b033-b1d1877f30c2 1 \N Other +3119bab0-d1b9-4521-bfd6-b3246b22fc06 1 \N Other +311aeb50-d957-4504-ab79-201bee2c5c69 1 \N Other +311dac0e-0dfa-11e8-aee1-fa163e8624cc 1 \N Other +3122cf93-be32-4f98-9661-f2e6621edb5a 1 \N Other +3127b91f-e93d-403d-8329-f27f17f3e9e7 1 \N Other +31290ca8-eff7-457d-96eb-31971924622c 1 \N Other +312f1e7b-6aa9-42ef-a018-39f50f56e51c 1 \N Other +31309bc4-619b-4a6e-9359-0f20ac704085 1 \N Other +3131d5a7-921a-4f71-818e-f88ab0efde3a 1 James Other +3133a612-53ac-45b1-86d4-2461f7718f73 1 \N Other +31360b21-df2f-402f-9c22-99caf83d0833 1 \N Other +3138f06a-fc3b-4a9e-9415-73e25ab8206f 1 \N Other +31398145-6b62-4ec3-9cfe-c1a37da75a95 1 James Other +3139fbc9-5343-42b8-a3ff-9c5bde662b6f 1 James Other +313d10f8-9877-4ffc-a137-f8a994010ede 1 James Other +314696ec-d399-473e-a859-b2516a1fba49 1 \N Other +31478347-1a2c-405b-bd68-f164683c7ade 1 \N Other +3148cb34-309d-468d-a84c-4eb124a200c6 1 \N Other +314b8b04-5409-48b4-8dad-ee92d25bb7b3 1 James Other +314d884f-677c-4df2-ad09-79fa5b7e8ad5 1 \N Other +314ea104-6e77-4079-bdfd-ae588d51c1ce 1 \N Other +31565fb7-a107-4c22-96fc-99a34445c12a 1 James Other +3157d060-7515-41c9-a7c6-184930f32668 1 James Other +315967ff-6b26-4586-bdd9-c79e9cdb8730 1 \N Other +315cae2c-0dfa-11e8-8b1d-fa163e8624cc 1 \N Other +31656c33-432d-479f-bf19-9d51da8e7a40 1 \N Other +316d3fb2-7896-42d1-808d-06ea512640e7 1 \N Other +31707c2e-80b4-477c-b167-47fd47484786 1 \N Other +31715bea-a138-4498-9f3c-5b508961599d 1 James Other +317239b2-1a4c-49bf-ae76-a80322675d41 1 James Other +3173b0ee-d9af-4423-bb2a-d29dcf16ed37 1 \N Other +3176c221-5150-424e-ba2b-e6420f243e87 1 \N Other +3177bf80-4beb-490d-95ea-3ebb7f3eb3b1 1 \N Other +317a9593-d77e-4252-aea8-57e3175ec320 1 James Other +3180c9f1-6718-44ed-9362-82e022ffb83e 1 \N Other +3185fa31-cfb2-4e91-abc3-daa0d4813b66 1 \N Other +318a7390-53b5-4c5a-96f5-e8d3a6722076 1 James Other +318ec749-885c-4d95-86d3-06dfdabd478d 1 \N Other +318f5ec2-95ca-4381-b745-f9ba378fef23 1 \N Other +3193783c-2b3a-11e8-9c7c-fa163e8624cc 1 \N Other +3196e707-c934-4129-991e-19661b6fef5e 1 \N Other +319a3234-2514-4980-85ed-af8fd3e0f7d7 1 James Other +319b6a9a-4c41-4778-993d-fef1515be51e 1 \N Other +319db208-4797-45e0-979d-897395618156 1 James Other +319ddb11-e667-433a-acba-cf3de5bdd1c3 1 \N Other +319f4e42-a388-4669-a2c8-121322c708ae 1 \N Other +31a21939-629d-438b-b643-19586fd35e5a 1 James Other +31a65ae1-89b2-435b-b704-d23be0c1f7ac 1 James Other +31a7589c-d198-411a-bd7b-f8adf65f4665 1 \N Other +31b0375b-b78f-4e76-96a7-b4e6f95c78b9 1 \N Other +31b16af7-c7c7-45f1-ba63-b0bcf86e3872 1 \N Other +31b3a99d-673a-4598-b3f3-93858b45b479 1 \N Other +31b626da-66f1-4bfd-ad88-267c06e704a3 1 \N Other +31b779be-881a-41d8-8f3c-58a6439aa14e 1 James Other +31b7e031-6421-4538-9dec-aeb31746c1f1 1 \N Other +31c0c5a5-476c-49ea-99b0-589ad260e2e5 1 \N Other +31c0e0de-d8d5-4844-a2b5-c89f66545e6e 1 \N Other +31c605cc-98d6-4f53-8ec8-62be2340cc8a 1 \N Other +31c61aaa-7fc3-4f2b-a2f9-6d6b97cafaf7 1 \N Other +31c68e9b-c135-4576-8d78-2261bf6d0526 1 James Other +31c92811-668e-4e13-8401-458e1b6ea69a 1 \N Other +31caeac8-3d89-4869-85f4-02e709b55236 1 \N Other +31cc5007-4d3b-4eaf-a903-109e10121432 1 James Other +31cdb612-01fc-487f-804e-af53eda4d457 1 James Other +31cec2fe-d308-4602-a91e-d309e30c4421 1 \N Other +31d0ca71-404e-4bfb-ae7d-5f41ef42cb23 1 \N Other +31d14caa-5eb2-495e-87c0-e4342480cf10 1 \N Other +31d70ff1-b94e-41cd-a24e-c7b16509fb4c 1 \N Other +31d7ca97-3b3f-4639-9b34-816b8233d899 1 \N Other +31da239c-495e-45c5-b6f8-113adb64cdce 1 \N Other +31db50c3-a2f1-4190-8ff4-4c92a96bf868 1 \N Other +31dc4ed2-55de-46a1-a598-9651203e697e 1 \N Other +31f0a2b2-b52d-4666-8409-06ce1e0500e5 1 \N Other +31f1c6b8-1adc-486e-aaae-4f5c3c6462c0 1 \N Other +31f3f991-eae3-43d3-8580-b236f1ff4d00 1 James Other +31fabd6d-2b9e-49ab-8c22-67bff3e51a00 1 James Other +31fcf715-dc87-44bd-94a6-1686b81fd843 1 \N Other +31fe618c-ab9a-4108-8943-ecdfc674d588 1 \N Other +32047923-5261-446b-9141-d056b6079e0f 1 James Other +3204d73b-993b-4679-8aef-bec1a1f64c28 1 James Other +320a45b2-1097-4f7b-99bc-e4e14bc49d04 1 \N Other +320bd233-7ec1-425e-9b23-6e142cd46df2 1 \N Other +320c4367-f84a-431a-b675-db6e159d53ca 1 \N Other +320cf0a4-df18-4d4f-84b6-c0ed152f3176 1 \N Other +320df1e8-3b1c-4f26-a5b4-f370cf5007f9 1 James Other +320eb3c7-59c6-4cba-922c-edcb0bed3534 1 \N Other +32132945-9810-4f66-96c8-1150761d57c8 1 \N Other +321698c7-1842-40e9-ab00-2ee1918cca31 1 \N Other +321c5b16-2289-4297-8fa4-dba3635524b7 1 \N Other +321ca657-14cd-47c9-90eb-7ac6d07f8955 1 \N Other +321db9b0-53c4-48e7-a5ff-405fbf90bea0 1 James Other +321de229-124b-4aee-9158-14dc3270b9ca 1 \N Other +32244c42-3ff9-4870-b751-3d11c796644f 1 \N Other +3228c303-a85a-4b77-a4f1-2a58ba704d50 1 \N Other +323c7b35-4363-4f05-8d91-a61f651a3816 1 \N Other +323f013b-32c8-44ec-9b51-d1d14700e3fe 1 \N Other +32428c7f-fe05-4a57-8210-dcbbfaa10b4f 1 \N Other +32441254-6348-45eb-93f4-4ecad6e63129 1 James Other +32446e89-f264-4337-a37a-c8ffdf286fdc 1 \N Other +32476a3e-0fb7-4c3b-a6ed-6c7281e3a8c5 1 \N Other +32486691-da7c-43bf-a354-b9061577824e 1 \N Other +324e5c76-c878-4765-a5af-ebc2dcc1116f 1 \N Other +324f14c5-29cf-44fa-bfd9-5a9f3fd35ce0 1 \N Other +325661fc-225c-4f7e-8263-8cd7b3ca5867 1 James Other +325792e8-dac4-4ace-b3af-64deca24a3bc 1 James Other +32594e5c-0599-4a2e-98f2-774b90a83cf9 1 \N Other +325a4b85-26dd-4a1e-bd4a-a190a7e4851a 1 \N Other +325d1fd6-993e-489f-988e-cc0a327dcac3 1 \N Other +3262e737-fb23-40c9-98d8-9bea925135c2 1 \N Other +3263fc93-6448-43a1-8c61-d5875e642fcf 1 \N Other +326786a5-4c3d-4860-aa46-f63f9e80f67d 1 \N Other +32688295-f0f6-4995-b772-aca1645d0181 1 \N Other +3268ad4b-67cf-4a65-9cab-4f75bc98fb57 1 \N Other +326c845b-e61a-470f-867b-58b5540a94b6 1 \N Other +326e29c2-96e8-4888-b227-cfdd2c2cf83f 1 \N Other +326e5f3e-ab0b-482c-86b3-7ce91d2d19eb 1 \N Other +326f58ef-51ce-4512-92eb-d490e2dac9ba 1 James Other +32767052-45a6-4be4-a882-8b9b9b6684cb 1 \N Other +32771943-4912-4752-8e34-5211352dabf2 1 \N Other +32785940-cdc3-4634-87d3-bff819ba3c39 1 James Other +327e2b4a-7e27-43dc-91af-0889a80641a8 1 \N Other +327ec85c-09cd-4b0a-a6e9-ee5501c20cca 1 James Other +3281c7b3-f674-4406-944f-96017a87ad47 1 \N Other +32821bcd-071f-4125-aa62-1ffc273679a7 1 James Other +32880958-85a5-44a8-a658-dfe584c9b1a9 1 \N Other +328dca04-e90b-40ad-bb35-95199214832d 1 James Other +328de064-53e9-451c-a5c1-72059690700e 1 \N Other +3292a364-b4c7-4977-a80b-fbba91311f69 1 \N Other +329434fa-a66b-41a9-8150-5caa02d6a06b 1 James Other +32952320-1b0b-4706-9f8e-130b907ae340 1 \N Other +3298c1fb-e377-4ea4-afa9-47a6494ecc81 1 \N Other +329acb76-bdd1-4962-8138-e776b2525ce2 1 James Other +32a0fd39-5219-4649-8386-b06762877032 1 \N Other +32a22753-97a2-44e0-be2d-3388623bfebf 1 James Other +32a3fbc4-a486-4654-93a9-cc6d625450be 1 James Other +32a4e06b-ccfe-40c4-bab0-043de8211103 1 \N Other +32a8b13a-96cd-4684-9f30-2b2048411ce4 1 \N Other +32a98e75-a2b7-4c3e-9d74-64b3d8e137bb 1 \N Other +32ab27dc-3c97-4ff3-abd1-53a5d6b16c8e 1 \N Other +32ae2649-3b56-408e-8c8c-368aa9ad1a61 1 \N Other +32b5685a-48ef-4c26-a5af-5cfbb32ea972 1 \N Other +32b5cc8a-486b-4f1c-b360-b3d5cac9ea6b 1 \N Other +32b6a17c-203b-49b5-8944-6be582288d28 1 \N Other +32be704c-d67e-4d89-a99a-e93731fafb43 1 \N Other +32c6ce67-e3d2-4dc9-a10b-e9f69181b9d9 1 \N Other +32cca130-251d-42bf-9467-ad664bd9b6fb 1 \N Other +32cd08c1-c0e2-4833-b576-9953c437f715 1 \N Other +32cea608-073d-4cec-8578-8fffde598895 1 \N Other +32d3d469-3e9c-4bc3-8f4f-c2cee5fa7e31 1 \N Other +32d4708b-3c3b-421f-bbdf-2402319fe5b2 1 \N Other +32d8431c-82f4-4227-80de-cf3201d8de73 1 \N Other +32db02d8-ae96-4895-9c10-56de24393c9f 1 James Other +32de6dc2-56bb-47ef-bce8-f82da9b86286 1 James Other +32dedaee-488e-4b0b-bd95-70c482d24282 1 \N Other +32e446ea-099b-47fe-b167-1f8c972c109e 1 \N Other +32e58349-e948-4271-8915-0bf27580df97 1 \N Other +32e5b256-bdd5-422f-9499-a27ddb6b5f84 1 James Other +32e866bc-7290-4df6-ae42-c0270cad29d5 1 \N Other +32ef58bb-86c4-48a4-9579-75999834726d 1 \N Other +32f2b36e-2470-42c7-9750-dd581c6f99a7 1 James Other +32fad339-39b4-47dc-a960-20166c5ec675 1 James Other +32ff3035-4d58-498d-81ae-6a54691c2d4f 1 James Other +33022ec3-64f9-48ec-9f9d-c18b3cb2756c 1 \N Other +3303dd2c-cd4d-4dfc-9f54-551801f6ea3f 1 James Other +33048bdb-b018-4d06-923d-45e87f5497d7 1 \N Other +3304f8e3-0e85-4306-a482-620f5a00ecf9 1 \N Other +33098056-fe49-4817-907b-7d9601582479 1 James Other +330d0f78-a1a2-4c09-8002-36ffa62814b6 1 \N Other +330d54a6-4f32-4950-8f51-d30c357938cb 1 \N Other +330dcf43-07ba-410e-bc18-3a5b6db97682 1 James Other +330e18c7-ef7c-48b9-bdf8-6443beb91546 1 \N Other +33103ceb-4cb9-4640-aeaa-01d50d384db8 1 James Other +3311428e-c47c-4ef3-b56a-309014e50147 1 \N Other +33115c24-d092-4cb9-9aa1-4d3009228dfc 1 \N Other +3313a3e3-5b12-471c-813d-ce000fa2d459 1 \N Other +3316bc3f-1211-417e-b43e-bc5eade33a92 1 \N Other +3316e889-d010-4452-b984-03b3df8848c2 1 James Other +331a9ae1-dc9d-403c-8e07-c123e725a32c 1 James Other +332557c6-43e8-4521-86d4-56d11da1dc3d 1 James Other +33285dac-3ba3-4875-9633-17bcf51c0e16 1 \N Other +33299013-c2b8-4447-a490-13df01d1ec29 1 \N Other +332e149c-0c29-4e78-949e-873b4e8ca510 1 \N Other +3336b3ac-00d7-4d16-858c-5d1605c8ac5f 1 \N Other +3336b769-9f12-45f2-a6b9-0cec519fdc42 1 \N Other +333dc1a0-bc30-429f-8e86-f32ed740f561 1 \N Other +333f63b1-19ac-4431-9f64-3419747acadc 1 James Other +333f6da3-720e-4109-861e-3677555b6503 1 James Other +333ff139-1e85-4592-8c45-d9a6753fe446 1 \N Other +33423110-b6e4-47c6-90bb-4ae0464dd432 1 \N Other +334b2000-0b4f-4bcc-9080-d441c998100c 1 \N Other +334d422c-fd74-4655-afb5-835af40b5819 1 \N Other +334e0d7c-3d87-4455-b860-66ea1cd465c8 1 James Other +3350e5dd-d54a-43d7-b56d-eb342440fee9 1 \N Other +33532366-7515-4d9d-a1b4-79702614ea11 1 \N Other +33569fbe-557b-452d-9134-59fb89ff97d2 1 \N Other +335a5734-a05e-477b-8386-b535148ad7d4 1 James Other +335b46b5-1849-4882-8bc3-3dd382b52015 1 \N Other +335c2f81-4a62-408c-b321-f4ed69f9d7e9 1 \N Other +335d8345-b4f8-476d-a27f-3319df61db5b 1 \N Other +335f8379-2efa-4700-bd4d-240a1b2b4dca 1 \N Other +33601f30-3dc6-4255-8aa1-a239b664a365 1 \N Other +33634389-697e-4d7c-95ef-3f9261e1376b 1 \N Other +3368643b-0236-44a8-b96f-132209ced62b 1 \N Other +336ba4ea-af08-4971-8e7f-54336a2f7e9e 1 \N Other +336ea378-2fad-4c6c-a72c-0cfc011d90f4 1 \N Other +3375d18b-9373-4e00-a223-e6a2485c475d 1 James Other +33773ab1-d4f0-4a80-b3b1-74ddaaba74e2 1 \N Other +3377fe1c-a512-4549-baf0-b23ca74d8f33 1 \N Other +3379e6c5-2597-4fce-9b19-6f5b6779685e 1 James Other +337f5562-a825-4ce2-bb94-80df7b19552b 1 \N Other +337fc887-d721-4be0-811a-e66168519f4b 1 James Other +33834821-1f35-4efa-8916-96c073cce48d 1 \N Other +33861eaf-2f85-4035-92f9-ccd4778cc9f0 1 \N Other +3389a891-93a0-4bf6-ade0-b4163b28804e 1 \N Other +338ebb76-05d4-4b43-afe4-a50263c908b8 1 \N Other +33974709-318d-4fe4-b89d-6379b1653054 1 \N Other +339858bf-97f4-4a3c-bdbd-b694cdff17e9 1 \N Other +339b4237-d816-4f9d-b6ab-e342e21a128d 1 \N Other +339d1afa-f4f7-4341-ba56-ebb83d6d4705 1 \N Other +339d268a-8b0d-43c6-af80-1db3f606666c 1 James Other +339ebdbd-17f4-48a1-af4f-6dd12841b045 1 James Other +339f059e-26a4-4260-8ec7-331780a998a1 1 James Other +33a16789-5054-4aee-888d-51be5fe3efde 1 \N Other +33a2c606-7630-4e05-a17a-cd5b8e16417a 1 \N Other +33a4e39e-1c4d-4dce-91fb-c40f747759a0 1 James Other +33a5ada1-3cd6-41f8-a078-55ceff489276 1 James Other +33a68aa8-28f8-4520-929b-aaf28159525a 1 \N Other +33abc88a-ef19-49fa-9b0c-21c6ae4873eb 1 \N Other +33adfb0f-a7e8-4fde-99ab-bf25b9ca0292 1 \N Other +33ae90f2-106a-499c-be17-06a67e0d3dae 1 James Other +33aee2c5-9527-4c37-add0-89d69a8e01e8 1 \N Other +33b017d0-c1f9-4735-a7c4-9f7748b1ccce 1 \N Other +33b42853-316b-42d2-a924-f153112d7f97 1 \N Other +33b461d2-9769-4e70-ac4c-f37602ad879d 1 \N Other +33ba8a58-37f9-42e3-88bf-a08463368af1 1 \N Other +33be0b75-4b9e-4f06-b4e2-904cb2853bb9 1 \N Other +33c09bd4-d178-470d-ba8f-37523e8eef8a 1 \N Other +33c3aabe-edc5-4452-bf15-7501addd3002 1 \N Other +33c3c353-7234-46da-9bec-53f70b2417ea 1 \N Other +33c77fce-aa07-4e7d-8d10-ae3eef3fcbd7 1 \N Other +33c7ab98-32ca-409b-ab19-3e3cbe65fe8b 1 \N Other +33ce8602-b614-49bd-ad5d-01ef1383cf66 1 James Other +33cf3280-1223-4897-af50-5f4017e0006a 1 \N Other +33d23c83-d0d2-4158-8ce8-d3a8f41175ee 1 James Other +33d55901-a739-4d40-96ad-36a57da8d0b1 1 James Other +33d6819a-88e1-4dfe-8453-20f11dbbb258 1 James Other +33d6a566-40d1-4255-bc4d-7f14659078c9 1 \N Other +33daf0bf-263c-4668-bf46-97c77ea5030d 1 \N Other +33dd2372-1762-11e8-9a6e-fa163e8624cc 1 \N Other +33dde34a-f9c4-49f6-9493-ab05b412da58 1 \N Other +33e5e3e9-4f8d-469b-a086-5fd2b6392ed4 1 \N Other +33e7791d-639c-4253-963c-be46232c9b4b 1 \N Other +33ee68c5-1fdb-4432-9029-52c44414fa42 1 James Other +33fe9348-5321-4625-8c40-a15002133f30 1 \N Other +34015c29-2770-4b0f-8975-eac8c6d101c0 1 James Other +3404e025-01c5-4dbb-b698-f143acbc7148 1 \N Other +34077082-1762-11e8-b0ef-fa163e8624cc 1 \N Other +340b28f8-1762-11e8-abe3-fa163e8624cc 1 \N Other +340cc453-1fd4-48b8-931d-4d635c7924cb 1 \N Other +340d22c2-9588-49cf-9edc-874494e8fbd8 1 \N Other +340d93e2-d235-4517-9a7d-23dc812a8c8d 1 \N Other +340de5ba-3e74-4a4f-be31-f11d2df8d863 1 \N Other +341243ef-02b1-49d3-aa17-36e8415e1dcc 1 James Other +3416aa16-b1b4-40d4-9d83-6cff7ded7064 1 \N Other +34187fed-99fd-4865-870e-2d52ce487c65 1 \N Other +341a4006-a7f0-47a0-ae17-23376e94445e 1 \N Other +341b2752-78b7-4a87-8e1a-8cfd0ce28c54 1 \N Other +341ea047-2d90-44c4-8093-c8401f255722 1 \N Other +341f84af-d4fb-47d0-b456-7e091b6f75ae 1 \N Other +3422956b-525f-4d91-8b78-05c9c31d45ea 1 James Other +34262ba5-053e-4fb7-b292-eae5ef1dba25 1 \N Other +34285869-a28c-4146-b1bc-7396b978b5e8 1 \N Other +342cce8c-748b-4206-913b-7cc4d1b7b723 1 \N Other +342e4480-a038-4980-89e4-ac7deb7741f1 1 \N Other +342fde0f-fe2a-4725-acf3-2a382efbeac8 1 James Other +343055dd-173f-4117-9781-8cc635a79031 1 James Other +34315db3-508e-4cb2-a3c1-c67605012fa7 1 \N Other +3433565a-319a-4922-9336-51613d2cb4f0 1 \N Other +3439db65-3b29-4b37-94f9-701ef8b293c6 1 \N Other +343d058a-1762-11e8-b301-fa163e8624cc 1 \N Other +343ea8f4-c86b-4e39-8336-c75d90428f51 1 \N Other +344693eb-6232-4aba-9e0b-7a0636ea0ed0 1 \N Other +3447c3ca-b53c-4d5e-8457-17445138c297 1 \N Other +3449a0be-c4d4-4d53-91eb-1df86bd070fe 1 \N Other +344f9362-1762-11e8-bf83-fa163e8624cc 1 \N Other +3450c90d-eb9b-4467-af17-e8aaa786c137 1 \N Other +3451e301-6ca4-4a26-bb81-a7ccf7702e36 1 James Other +34569f70-76a4-4a12-870a-076913fbe8ca 1 \N Other +345a4d18-a70f-4905-805a-d5800b39de19 1 \N Other +345d9220-74c2-4abb-a5ab-525bb1811fb1 1 \N Other +345e1c48-8af5-4298-a05f-5402da455888 1 \N Other +3461567a-69de-4a27-b453-29af7ead95d7 1 \N Other +346b7e32-81a1-447c-899c-54ed8b56b0a8 1 James Other +346d4065-4254-465c-97c8-255c831b7bfa 1 \N Other +346f84ff-8347-4617-8da3-27e1d6e45397 1 \N Other +3470f1d6-39d0-4ca3-8327-5439bce8e9f0 1 \N Other +34712ee6-ed12-4267-8212-801440db7e2d 1 \N Other +34731038-b9f0-4682-b433-6ef5bc794004 1 \N Other +347347fe-946a-404c-b3dc-31082b2ab80f 1 \N Other +34736fb1-2646-4702-84a6-69eb5d108c9b 1 James Other +3478b9ee-76ad-4dbe-a6db-d2e5835d9b17 1 \N Other +347c4b4d-e1a8-4b2b-a1f5-af8096e3640d 1 \N Other +34806ba7-1a32-4763-a8d0-5095cf6cbc72 1 \N Other +34855722-7427-488d-938c-ecbf16c9c003 1 \N Other +3486edaa-fad9-424a-ad18-ff9e67ab74ef 1 James Other +3488b72d-425d-4fee-90ff-949f4e5cd292 1 \N Other +348a138a-561c-419e-8965-5a1dbae0aaa5 1 \N Other +348b7005-2683-4a80-83fd-f89a8ca603f1 1 \N Other +348b82f9-8e52-4651-ab25-aa735cbf2f88 1 \N Other +348d23e0-0f6d-4294-8918-0f6f4dd756d7 1 \N Other +348f8613-d8b8-4bc5-bf4d-bf355f216311 1 \N Other +34908386-f8b7-4839-ad26-e5e54f7a18ca 1 \N Other +34916423-ea75-4868-bb4c-361db55febb8 1 \N Other +34919fe6-06aa-44a5-9d58-fec3a0f4c14d 1 James Other +34924d25-4c74-455f-89b4-581a1bc7c626 1 \N Other +34931e65-38a4-474d-8ac7-2d8fd8ffb972 1 \N Other +3495e2dd-c743-48a4-9a2c-1aab0e99c2de 1 James Other +34a0634b-87e6-414f-b28b-ca0513a53889 1 \N Other +34a1507d-657c-41b5-8e14-f92bf5de2727 1 James Other +34a1d227-ad86-41ed-a44b-235076bd2c1d 1 \N Other +34a848d4-fb51-463b-9e8c-b2b48a6b1282 1 James Other +34a8dea4-e03e-4f17-97ab-befee3647f33 1 \N Other +34aa0168-1214-4505-af05-53cc4f7a1feb 1 James Other +34aada7a-0bda-4505-8705-e1d83587769f 1 \N Other +34abc300-7270-4e1d-81a7-42651d383fa8 1 James Other +34b10149-ddb3-4000-82ad-6b1cd73fff36 1 James Other +34b35dec-9381-497b-84fe-c8bf5289d35e 1 \N Other +34be8202-1024-46a6-bb4d-429752918012 1 \N Other +34c00bdf-8637-4f06-a677-79df21f699ea 1 \N Other +34c28c41-0111-468d-a51a-59b8fbfb75a3 1 \N Other +34c64d67-e8e7-429a-9303-3cbb73cb90e2 1 James Other +34c94cb6-e343-4a67-80c4-471b951894e4 1 James Other +34cb6e5f-f8a9-412e-bf2f-90d19cd06b8f 1 \N Other +34cfbd08-ab0b-4910-bcd9-c73b58bc122b 1 James Other +34db903c-0d17-44ce-906e-b37def25a348 1 James Other +34dbedd1-b0e5-4bb8-9afe-bd6bd8076794 1 \N Other +34dcc17e-1762-11e8-964e-fa163e8624cc 1 \N Other +34deea4b-fb94-446d-a753-23b81a1c4c92 1 \N Other +34df24aa-836a-40a2-bdca-39538d267033 1 \N Other +34e081b6-7432-4b8d-aeda-72cb03b76b12 1 \N Other +34e75c91-8a4c-4039-8e8a-57faea56198f 1 \N Other +34ec7dc0-e262-4dcd-968c-6e125f4ed757 1 \N Other +34f12256-5cbf-4e67-b329-db44953a646f 1 \N Other +34f51bec-1496-41a6-aa4c-d24f1b56134f 1 \N Other +34f8307f-8d37-41e3-935f-a7fd7a8e711d 1 \N Other +34f85e03-6e5a-47d8-ae44-498d6c4803e6 1 James Other +34fb65c3-ddc1-4528-881e-41878cf8afda 1 \N Other +34fc9d5a-d385-4307-bb8b-a40b429ec3f5 1 James Other +3503a0a4-b137-454f-8bcc-9a497a4815f6 1 James Other +3503cb1b-7b70-47c7-9f35-4b167f10d594 1 \N Other +3505ff0e-5db3-47f9-9415-834737acb374 1 \N Other +3508167a-70f9-41ee-90e3-c20a892fa7c1 1 \N Other +350cecb1-5bd1-4281-bf9e-5d4c9b370d7f 1 \N Other +3510f900-9a89-4482-91ee-ccdd0404ff16 1 \N Other +35123bce-85f5-44a3-854b-6a1ef37a196f 1 \N Other +351251b1-8aab-4f51-862c-4250d95aac28 1 \N Other +3519a701-11dc-4e29-a42d-1e790801efb4 1 \N Other +351d1ca1-d062-4ea2-8543-f3e796e86f6a 1 James Other +351d8710-d278-494d-8b48-074f47fedc53 1 \N Other +351dfca8-dffc-4e58-9a58-b2073e46c147 1 James Other +352591af-d9e6-49ac-9414-236a4c1d9156 1 James Other +352e8127-7d54-4c97-9ab9-1fb35620b627 1 \N Other +3531959a-c5bf-47a4-a702-c8e3b4c58078 1 \N Other +3531b496-f707-4a56-9b30-a2fe2f75c056 1 \N Other +35341649-c893-4173-b0b2-b7704726e143 1 \N Other +353b3b02-7b3f-4f74-83f5-6f33e65b5bea 1 \N Other +353dbf07-486c-4f72-b8d3-42e48fd7d48b 1 James Other +353dfec0-287d-4225-88f5-741df9a54b42 1 \N Other +35407fb0-eece-4044-82bd-d45ab73ad7d3 1 \N Other +35415ff1-d782-4cce-87b7-8a02468c042b 1 James Other +35420517-e15b-4221-9175-8f76b40d235f 1 \N Other +3546316e-a618-4141-8bfa-b1d833fc9c85 1 \N Other +354717a1-7cd7-4c3d-8f43-01b7c816f8a2 1 James Other +35478bf5-4c8a-458b-9b4a-ed0d545d848b 1 \N Other +354970d2-ec27-48db-a330-1a29ff3e7ce8 1 \N Other +35517ee9-f3e9-469e-8f37-5b6adf6a591e 1 \N Other +3551d137-fb6b-4c70-afd8-61c2bf515d77 1 \N Other +35569bb9-e670-427a-98a2-6f8952f1652c 1 James Other +355a6454-5de4-4e0d-be37-bd24c9758cab 1 \N Other +355deea5-ee61-45fa-a821-dc72b6bc64e2 1 \N Other +355e5828-4d9b-40ae-9b45-cc1a1d00022d 1 James Other +356177a5-6832-4740-8089-b60555a77ab1 1 \N Other +3561ad37-b938-4484-b078-21989a1d93c1 1 James Other +35621aa6-1fd0-4f31-b833-f8dfa2537cff 1 \N Other +3562c060-108c-4627-b9d8-9ac8012782d1 1 James Other +3567e27b-d43d-4e53-ba4f-22243c2b09aa 1 \N Other +3568ddf5-7d14-4a6f-9775-dcaf7753c3c5 1 James Other +356b26e3-2735-4358-8640-1ff4771346de 1 \N Other +356cd8ae-4682-45c9-b68f-482021603755 1 \N Other +356e2338-52db-4869-8109-c886a04134d7 1 \N Other +356e668c-c56f-4ace-9630-ac71fe70ae39 1 \N Other +35720ce1-b2f7-40dc-abfd-0cc6900ed1cf 1 \N Other +357520fa-2e45-402d-a44e-49058a2afdfc 1 James Other +3576c512-44a2-4671-9050-d4e3c101e5e5 1 \N Other +3579b968-e88b-4fa1-b17e-c6de3601a458 1 James Other +3579d304-6c6c-48e5-9bf3-f667b727c932 1 \N Other +358617f2-8ab4-4c13-8547-a5c798beda33 1 \N Other +3587dabc-6085-45f3-a2bf-065a6a3963fd 1 \N Other +358b5f3b-48b4-4f72-9a32-445232f33d38 1 \N Other +358e98f7-0602-4ce0-b94c-75481722efe4 1 \N Other +35901238-cee4-44e2-b2b0-a6de503b14a5 1 \N Other +35912a77-31aa-4689-a579-97287e37cafa 1 \N Other +3598ce64-60ca-4e6f-a21e-553301c90e69 1 \N Other +359bd5db-a393-444d-94fa-cb43caa9075c 1 \N Other +359e647c-ba3c-4cc7-963d-c317e1304f5d 1 \N Other +359e7e08-5a65-4f45-917a-501d6130623f 1 \N Other +35a0c293-fbae-4895-a89a-e38d3516777e 1 \N Other +35a42e58-32a5-4c67-907b-9aeb22ba0cbf 1 \N Other +35a770dd-9b65-4d3d-afeb-8eb5a0efe80c 1 James Other +35ab79f3-a722-4657-8e3d-3e8c38ba40c6 1 \N Other +35ad0bc8-6990-49f0-bf68-4d0394e0aa01 1 \N Other +35b5b01e-a489-46f5-9c9a-e7b3c4cb34dd 1 James Other +35bf7731-39ac-42fd-a8ca-7c83ff800e34 1 James Other +35c4b64b-eb43-43ab-94b4-007efd835947 1 James Other +35c55503-fa06-4dc2-9148-47147c128689 1 James Other +35c65938-1463-4c53-85d3-6a9c488656b5 1 \N Other +35c829cd-3202-447a-a2f9-4d6615182dc5 1 \N Other +35cb08b1-ab02-4e38-b55f-ee0bf8b1936d 1 \N Other +35cb455f-0dee-4579-ad13-a1dd43af82d9 1 \N Other +35cc810c-6035-4998-879c-6293eb73f4c5 1 \N Other +35ccdad3-7bd7-4156-8ff5-c2b15627c9ae 1 James Other +35d35cf5-a270-4aa5-9f9b-c63d7e8e93b5 1 James Other +35d5bb12-61d7-4e44-aa87-a06fae6e8b2b 1 \N Other +35db5d65-6b3b-46a3-a347-4b46ca226b04 1 \N Other +35df355f-ce70-48b2-855f-5e09de21d51e 1 \N Other +35df9a49-afe7-457c-9586-c050cdbe4094 1 \N Other +35e00470-15d8-4b50-8940-ee76f56ec815 1 \N Other +35e1844b-da2c-480f-bbcc-0d71ea0df5d1 1 \N Other +35e551fb-bf6c-451c-ab79-c75393d3784a 1 \N Other +35e665e5-1243-4505-9c87-bdc65f72af63 1 \N Other +35e71a35-ee08-493f-a639-c679f37465d9 1 James Other +35e71f23-ed76-4d85-810b-2eced257b327 1 \N Other +35e8a2b0-e5b5-4b93-b0b2-182e6a3ddedd 1 \N Other +35edc426-1df9-41ca-aebc-990380da29e8 1 \N Other +35f0b4ed-1e58-41e8-aa6e-bc39848b01d1 1 \N Other +35f3eb53-09bd-4174-a72b-7814e2d3306d 1 \N Other +35f4f6b0-258d-11e8-afea-fa163e8624cc 1 \N Other +35f5bf1e-3eb7-466f-8f86-c7c4bd79df76 1 \N Other +35fab9c6-be48-46da-a1f7-9ea0ea97431d 1 \N Other +35fd2e33-1b39-4762-86ff-e7aacce0a286 1 \N Other +3600cec3-ec87-4241-bd87-a086917941a4 1 \N Other +36014f2d-9655-4c4a-bc13-6f495f77482b 1 \N Other +3605fe99-93f6-46b0-841a-bc6217669f73 1 \N Other +360a8f6b-ed44-41dc-b91f-6e5d72928e90 1 \N Other +360d6e9e-e06e-48bd-b273-2dcec84d8c6d 1 James Other +36153e60-b2ce-412a-b4bd-9e49bfb53407 1 \N Other +361632a6-261f-48e0-b4f3-916c81a044d5 1 James Other +36180141-bd4b-4083-bb3c-c0d539b2362b 1 James Other +361f3939-216b-4656-a5b9-09b590e2d825 1 James Other +36204e6e-4780-4f48-9151-5920bff2b61b 1 \N Other +3624413b-415d-440d-a406-1401bf190fa0 1 \N Other +3628a24c-1d9f-466b-97ae-58d7df693f24 1 \N Other +362959f6-b47c-47e9-878f-9d5c0acce07d 1 James Other +362a8382-34e9-43bd-aea4-66164172fe5c 1 \N Other +362c5a4a-60e5-4ed2-a38b-c00e2022e681 1 James Other +362ef2a6-ce55-496f-aa5b-134eab19aa36 1 James Other +36312e79-c56e-4529-9fb9-3c8463de4758 1 \N Other +36334ab4-258d-11e8-9d30-fa163e8624cc 1 \N Other +36376368-99f5-4aaf-bc6b-c661084829fb 1 \N Other +363c906c-91ac-4286-96b5-1eaaecffff18 1 James Other +363e902d-4f62-4439-8aa6-c7e1dfe81407 1 \N Other +36407961-5fe3-4b53-a3fc-d3b9e672cb65 1 \N Other +36433583-d1bd-4e48-8ac9-5a79e601cc75 1 \N Other +364379d4-7874-48b3-ba29-ce221e8bb57e 1 James Other +364ed804-9217-462d-aaea-cc9a323ab7cc 1 \N Other +3650ef2f-2d91-436b-8498-81a0630523ae 1 \N Other +3652edaa-658a-464c-9262-6c1de313f69b 1 James Other +36542475-2aea-406d-a58d-a5deb09d9528 1 James Other +36561ffa-d5bd-47fc-80e4-b486b377020a 1 \N Other +36591356-6ab0-4d6e-ba2d-c71a665b3998 1 \N Other +36638fe1-9c22-47c0-8946-3e44d48e9b16 1 \N Other +366548f3-d9bb-4c30-86f2-a021af20bd8f 1 \N Other +36698e6c-9775-46b1-8250-aa9623d179f8 1 \N Other +366a5517-8053-42e7-a771-91b81822b4f0 1 \N Other +366af9c3-2479-461f-b6ca-f25cc0783be0 1 James Other +366b0106-9199-42a4-9d07-12f07bba7216 1 \N Other +3672fe45-50b3-441c-8936-bcc36f4dfa12 1 \N Other +36740d04-ee5f-4009-8e81-f45ba26ba0a0 1 \N Other +367c7631-9a8f-4e76-a6db-4d11d84eda1b 1 James Other +36835033-71a0-47e0-8522-0660cebfc815 1 \N Other +36879614-deef-476d-82f5-4f2626c54228 1 \N Other +3688b300-7da9-48af-95f8-852eb56c589e 1 \N Other +368932cd-6670-46b9-8cc9-518044cbc6a0 1 James Other +3689d6ad-053f-426c-8252-9741860655bb 1 \N Other +368d3c5c-b02d-463a-97d8-cd655c081cc9 1 \N Other +36914700-8c2d-4687-a814-f21a72005343 1 James Other +3691f466-41e4-446b-bbca-566b605a0174 1 \N Other +3693022c-bf06-46e4-b870-27fc1f804b65 1 James Other +369571ee-1840-11e8-bd01-fa163e8624cc 1 \N Other +3696ccf8-a36b-43af-b87a-43e5a2752506 1 James Other +36975886-df0d-4503-84a0-5440757bd3c3 1 \N Other +36977675-5d78-4ba2-8962-b19d75e01e09 1 James Other +36980007-bd5d-4361-b185-f005ed2bbf4c 1 \N Other +369a5a20-c554-4c34-a760-cabd9a5e9511 1 James Other +369c3fb2-47e2-431b-b401-e8f6cc386db5 1 \N Other +369f0020-1ce5-11e8-9265-fa163e8624cc 1 \N Other +36a48904-06dc-4406-96a9-e8722de69dc0 1 \N Other +36a579d5-3335-4d53-842d-107e99f8c498 1 \N Other +36acefe6-dfda-4602-8c8c-f994d30f2167 1 \N Other +36b327a7-d27e-4064-b896-c22321f62442 1 \N Other +36b4af9e-d35a-48bb-a7e3-3debcc2a34c2 1 James Other +36b4fe45-b92b-4e42-a70a-7ec1ae482e2b 1 \N Other +36c2388b-ecf3-4501-9591-2483cf2e9c33 1 James Other +36c6ba33-576a-4e28-8019-9c89882a6d20 1 James Other +36cac6a8-e5fb-4265-9fd3-5c08e1a66677 1 \N Other +36ce9226-ff7b-4b4b-9294-5f18ec41473d 1 James Other +36ced111-a8df-4e2e-8d81-2c12e372036d 1 \N Other +36cefe9e-870e-43c5-95f0-c313a6f10d60 1 \N Other +36d062f4-1840-11e8-a44f-fa163e8624cc 1 \N Other +36d1017b-868f-46c2-99a1-238b5d2081c5 1 \N Other +36d130ac-afa0-4ee3-a8c4-ad95cc7aac6e 1 \N Other +36d37744-4916-45a2-ae57-071d46f4a521 1 James Other +36d461a1-c0a5-4eac-8cc7-71d640855b36 1 \N Other +36d6f2b3-c532-4357-a256-1b9eebab9963 1 \N Other +36dc2df6-1ce5-11e8-b060-fa163e8624cc 1 \N Other +36dd6275-a1eb-4504-869d-29dbcbd6945e 1 \N Other +36defdd0-4c04-44ed-89af-05c666a10379 1 \N Other +36e1f142-4692-4175-b5e4-a77871d3dbda 1 James Other +36e5bf5c-3e92-45fc-990d-e7e015f56dee 1 James Other +36e8b6f9-6db7-4c14-86c1-3502e08907c0 1 \N Other +36ec300f-f46c-4eba-8eb6-d6d41a3b4c75 1 \N Other +36eecca3-5aeb-4fb4-a572-059d36d86475 1 James Other +36f5eb63-2d27-46be-96dd-ebdc17891fc7 1 James Other +36fc21c0-d304-4e5f-b467-8eab58c2388e 1 \N Other +36fc8aec-670a-46cc-838f-a4795133f15a 1 \N Other +3700fb95-cedf-4cd8-a706-6e22d0cba4d1 1 \N Other +37090a87-869e-430d-a68f-c49a68231f06 1 James Other +37136b52-60d5-4210-8e70-a1a982cf3283 1 James Other +37152038-f923-4ad4-8ddb-71fefce0cbac 1 James Other +37161f20-dd5a-428a-b6b7-c055587ef2a8 1 \N Other +37185af9-fb40-4770-b603-6f1f57bab7f8 1 \N Other +37198183-ff8f-405d-b5c3-c3aca46194b2 1 \N Other +371dac3c-ec73-4fe3-adc3-3049fcb53bd3 1 James Other +371f4f31-cd59-41f7-9053-c669c513c697 1 \N Other +37246c89-8bfe-4dde-9310-bc144dab61c8 1 \N Other +37298e3a-6bb4-4364-a9d9-9def1fb64c53 1 \N Other +37454b57-d937-47be-850d-fddf6a211562 1 \N Other +37459a2b-ebb1-469a-896f-44c28b701380 1 \N Other +37485d78-f852-4914-bd21-4ea29d7b15b8 1 \N Other +3749b1a4-ed48-4b38-acab-f296e6a28608 1 \N Other +374e6dfb-98c7-4698-b8d3-7cf0cdf51304 1 James Other +374ec36e-fd7a-4e2e-bc0b-c95a502eac07 1 \N Other +375203b5-1b39-468a-89ec-3e8205648134 1 James Other +37536943-a70d-46ee-9e84-ec4d4c7d4a72 1 James Other +3754bd02-5d68-40ed-a94b-4f717e7abbda 1 James Other +375918a9-e9db-48e0-a12a-85c2aaf7e873 1 James Other +375c9164-38aa-44bd-a626-bbd3a90ab83b 1 \N Other +375f322e-7322-4956-8ec2-bab77065a29f 1 James Other +376007b1-ca2a-4b6d-a8f0-22d50f93e583 1 \N Other +3762992c-b76e-4b49-89b9-fea4878b7c85 1 \N Other +37642e12-98d5-4a2c-a490-0d005c33a8e2 1 \N Other +376cf7f6-0aec-42f7-a7b9-14711b962b09 1 \N Other +376e044d-4396-4ec7-927c-7edf54fb92b4 1 James Other +376e15e5-333e-43e1-998f-eee93fdb7e43 1 \N Other +37701343-b94d-49f3-99e9-827ef88187b5 1 \N Other +377a3647-0405-4600-b0dc-c96813587063 1 \N Other +377d1f50-88c2-4ca8-917e-4c48679274a9 1 \N Other +377eb425-52f5-4188-8627-ecc25d4cecdd 1 James Other +3780f6ec-09dd-4156-97d4-19bc0400f3e0 1 James Other +37825f4f-1dd6-4a8f-bcb7-5e07c404dc8d 1 \N Other +37840534-d130-4a24-9cdd-3daa8861937e 1 \N Other +378e0f63-3df3-4d2d-af5b-5d7a178c666e 1 \N Other +37951f8a-12c2-4fb8-9848-08a71f1a670b 1 \N Other +379627bb-9e30-4427-a892-30c5aad13b52 1 James Other +37964a0b-5018-44ae-bfa2-6b980f23b749 1 \N Other +3798fe3f-dfee-4e56-809f-fff192078a30 1 James Other +37993325-92b9-490e-be30-7ac8f946c9d1 1 \N Other +3799de3a-7c07-4271-9f56-07f04775680e 1 James Other +379f05ae-3693-45b4-bd58-2c8c6dc67986 1 \N Other +37a066e5-6d62-419d-927f-71e3d13cd941 1 \N Other +37a0ddec-64fc-4a88-a012-b46d4ef7daa1 1 \N Other +37a14b9f-513b-4421-8261-743a08111f9a 1 \N Other +37a5da52-4532-4f57-801b-54d30d57e9f3 1 \N Other +37ac1d70-5c86-4e90-9211-d5e5117d8916 1 \N Other +37ad0fce-6908-4909-9f1d-8e1cf07252d5 1 \N Other +37b1ad84-8215-4e3d-aa2c-d66309326748 1 \N Other +37b48e2b-53bb-4410-b1a2-1991ac670ae5 1 \N Other +37b4c411-1341-404e-b001-f5fd30790f0d 1 \N Other +37b4cb0f-3610-4911-bccd-ec7541c806c7 1 \N Other +37b4f4d2-15ee-4d33-b8cb-608b299b8706 1 \N Other +37b90f8c-367a-48d1-9f4a-0879556b3918 1 \N Other +37ba7ab7-8c89-48a3-929e-b91f2d0e1fce 1 \N Other +37bbc074-eef3-48ed-8701-43aa5d95e3d3 1 \N Other +37bcd790-a2ed-4f89-823f-5a186aaa8172 1 \N Other +37be8334-f01d-4893-8376-4fc4f243d65d 1 \N Other +37c24623-ec1f-4b0d-b06a-ac16ae968154 1 James Other +37c3e4f7-c93c-47dd-985a-57402d713b0b 1 \N Other +37c90e3d-9760-453a-be65-d9e33c5306fa 1 James Other +37cbe4d8-3cca-4da6-b8f0-cf148c77a39c 1 James Other +37d2f0f8-61ab-4a52-9136-01b1c8019a73 1 \N Other +37dbd95c-f003-49f8-8561-91a9d9a3dadb 1 \N Other +37dc292d-9572-4500-aef0-35cac5375e30 1 \N Other +37dd481d-5c3a-4464-999a-7c80ee9cf8fb 1 \N Other +37df8cc3-cb9b-4dd2-84cd-6202423ba08a 1 James Other +37e28660-683b-45a6-b7bf-00270dafbd93 1 \N Other +37e390a0-9d47-47e6-8942-d78805a08f3b 1 \N Other +37e3a54b-7248-4fb1-9a18-57c38a799055 1 \N Other +37e4d8c7-beca-425f-b0fa-4b909c47a04a 1 \N Other +37e5c97a-1d88-428e-8fb2-cbdee74b839b 1 \N Other +37e64aed-ee47-465f-a314-d04a1b476cb1 1 James Other +37eaa351-5182-462c-91fe-27010e3f67f9 1 James Other +37eca8d4-c6c1-4912-a022-41f74612c178 1 \N Other +37ed330c-8b38-4555-904f-6a2312bb0de3 1 \N Other +37ef022d-5c56-498e-9cf8-d00aee30bffd 1 \N Other +37f1c612-07bf-41ff-b9a3-d63d6b5e5633 1 \N Other +37f4d7cb-6230-45f5-974b-f60f44c99d42 1 \N Other +37f9ea08-5b25-493c-aaca-baafa56096bc 1 \N Other +37fb02d4-6f38-4f85-82f3-e44ec36e67a7 1 James Other +37fb2328-cfa5-4af0-bb15-40e4bb2b48a2 1 \N Other +37fc1655-7669-46f7-b4b1-5f0e52e65b59 1 \N Other +37fc2fbe-aa0b-4aa4-85a6-69a722ffd227 1 \N Other +37fd03d9-071b-47c4-b768-28e5ab59e632 1 \N Other +37fe2447-de11-4d5b-8e66-517e861b41ca 1 \N Other +37fe9c50-7917-42dd-86fe-18c796110c32 1 James Other +38004f12-a8ea-46e3-87f9-ecd07e0902c3 1 \N Other +38041cb3-36df-45b8-b42e-2f967a3aaf8a 1 \N Other +3804b66a-c3b6-48bd-9d5d-ecc81b07e97c 1 James Other +380602ef-163d-460d-99d1-add250ccbc08 1 \N Other +380c86df-7c48-4b20-9d9b-3d6f65430e85 1 \N Other +380d4da5-7017-4a32-bba4-1e1254a00c38 1 \N Other +380f556f-04e0-411c-8e5d-5b1e829ba3ab 1 \N Other +38108ab9-3b8e-40e5-aca9-b30e69368a9e 1 James Other +3816f40d-dba2-4b00-8ddb-7c852212bb17 1 James Other +38176c09-42aa-414a-ad6f-258294290757 1 James Other +38189b7d-8905-4f9d-aef1-0174275f3a9f 1 \N Other +38199450-6518-4d15-ac9a-0b5000a72401 1 James Other +381af87c-0932-405a-ac11-662047f72a25 1 \N Other +381c3778-529d-4e32-8c8d-ed6ef0681a95 1 James Other +3826f1a0-06dd-4945-ac10-1a9fee9c1ee7 1 James Other +38315936-a3b8-48e2-aaa3-fa936c1ab7f8 1 \N Other +3832de0e-3b8c-44b9-8b71-2216d0a6ba77 1 \N Other +3833b675-4b18-4a6b-99b2-b7b33661173c 1 \N Other +38340c5e-d8d6-47f7-b613-ecfa7bd8206d 1 \N Other +383f5550-8db8-4f9a-b536-66809d001b93 1 \N Other +3848e4b1-a379-495e-bfd6-8092e1887d68 1 \N Other +385b4a9c-d49c-48be-8a71-171ecd53200d 1 \N Other +385fd684-27d6-4112-8f54-c7d4e8e41de7 1 \N Other +3865f6c6-efbb-42dd-831a-49d4cca8f216 1 James Other +3866162e-b981-4e07-baa2-51d5c923149b 1 James Other +386eab92-effd-43a9-8831-21a9a16bba69 1 James Other +386ee6bb-a14c-46ee-a019-8a4cab62787c 1 \N Other +38737f88-8ba3-4f42-a549-c6270a375701 1 \N Other +38760a0c-3fb5-4211-ace4-b12909f6a8fe 1 James Other +3877c788-9634-4686-92b7-207866db73f9 1 \N Other +387b03c0-140b-4648-be2c-522cbca8d478 1 James Other +387d36cb-ef0f-482e-8dbd-0e75a57754cb 1 James Other +38813882-6cdf-44be-85c2-b0a589dce80d 1 \N Other +38822b70-deae-4438-b62f-e2281c92324a 1 James Other +388415c0-4553-46c6-8ab1-cc315fde5668 1 \N Other +3886342d-2e1e-4185-abbb-f74b8083480b 1 \N Other +388b41cd-6323-4783-b095-e855a8d6fe68 1 \N Other +388c2d9b-84b1-4c36-9a14-e865c45410d5 1 \N Other +388c4258-6566-44db-ad48-6140d1a724a0 1 \N Other +388f3196-5990-4fcf-b9fd-2b9665897cf6 1 James Other +3890ccdf-e4ef-4d6e-9e0b-4b3de5632321 1 \N Other +38914253-5f9f-4f0a-a70c-798e0635e78d 1 \N Other +389177c3-fae2-43a9-b131-68eed5050d89 1 \N Other +3894db39-194e-46f6-abf2-ac84b3f353ea 1 \N Other +389d2c6a-0db4-4f21-91e1-7807961aa9dd 1 \N Other +389e3bf7-5e48-4ff7-aa27-9958060b7f19 1 \N Other +38a35da0-6044-4fd6-9bca-66be72fd96b0 1 \N Other +38a827ae-aa20-48de-85a9-66b9a11fdb26 1 \N Other +38a92948-a501-4775-8e8c-9c34b54857e1 1 \N Other +38a97bb6-6d11-4f6b-b7f6-7fc6076d8c7a 1 James Other +38aaec6b-d326-4fd1-900a-363042cebfb4 1 \N Other +38b051f9-e2aa-4004-8178-6b9bcfb3e459 1 \N Other +38b4e738-6951-4ef8-a803-45642ab506ba 1 James Other +38b9f6d9-1a25-4942-9c62-d7735d269bba 1 James Other +38ba6b71-e63b-4360-a794-61c571e5483a 1 \N Other +38bc5dcf-f72b-4fe4-8bc8-d10ecbd552a2 1 James Other +38c196bf-b3be-4cb0-87af-5df33e0105b2 1 James Other +38c375a0-17b2-4acb-8717-2a26b2d25c3e 1 \N Other +38c7805a-105d-11e8-b09a-fa163e8624cc 1 \N Other +38c85563-1379-47e5-80c1-2fc122030a50 1 James Other +38c97829-ad49-44ed-b6e4-62ed60493b9b 1 James Other +38c9b88f-f743-4136-95fd-b2351029f80b 1 \N Other +38cb0945-b304-4003-a3e3-d9a36ddcd13b 1 James Other +38cb169e-cdf4-45bb-b2d3-d28e3181a4aa 1 James Other +38cd2d81-488d-419e-85d5-b69d3254f2c3 1 \N Other +38d304ab-594c-47f9-b0f2-3ed6b6d985f4 1 \N Other +38d75956-19f9-4f15-b357-965d6cc6ce4f 1 \N Other +38e0b650-d0de-40ec-9e70-7a9734aca170 1 \N Other +38e85b6c-0d40-4bb2-8de5-2e630c95fa76 1 James Other +38e8de0e-3d12-4333-bf08-1a5a93ab617f 1 \N Other +38e9d7c7-3325-412f-88fb-82426caa6053 1 James Other +38f5c3ea-db72-46dc-9808-88bc28e7390b 1 James Other +38f61798-9b78-4324-abb2-0b7b5bbfb89f 1 James Other +38f9471b-4344-4b2e-b800-cb614edaec45 1 \N Other +38fa3ae0-580f-4cef-a2d6-d77cb7126625 1 \N Other +3900bbec-c2fd-4286-9664-78129e8ce66e 1 \N Other +39014ea3-c03c-4570-bb50-48929e275a9a 1 \N Other +39056887-df0c-499c-817b-65d23b286eca 1 James Other +390c919a-fc06-44e2-b826-61504c413521 1 \N Other +390e507a-dc78-49d9-8dc5-a92ba5b12d0d 1 \N Other +390e542f-7cc6-4d0b-94df-63d64e670c0c 1 \N Other +390ffdbf-5a69-42ec-a36e-2f696e67b1af 1 James Other +39133a96-7165-4be3-8871-34cfebf7e1ff 1 James Other +39146118-105d-11e8-82e2-fa163e8624cc 1 \N Other +3917d3e3-c6b7-420b-aec2-545fdc992be9 1 James Other +3922a9ab-537a-4b68-bc04-3ac783694e32 1 \N Other +3927b29b-005b-436e-9d78-ca89aa0660e5 1 \N Other +392a0feb-22ec-4475-8593-781c90e2c45a 1 \N Other +392b8434-4085-466e-981b-2531600e68e9 1 \N Other +392de12a-d595-4722-bf76-3049176803b6 1 James Other +392eb4b3-9ce0-48c6-bafc-0cec134d53ae 1 James Other +39391e13-5156-4468-b9dd-1b331435e0c3 1 \N Other +393dac52-7770-428b-8690-412001a56b77 1 \N Other +39426cb2-c987-4cfc-ac1f-136aa501b7e7 1 James Other +39439695-5cb1-4cdc-9cf3-ca8efc6b7119 1 \N Other +3944a0b2-24db-486b-921a-22568f93c423 1 James Other +39520cc2-d7c2-4ea8-b055-e3fa6bb88c69 1 \N Other +395339fc-2669-4661-b68b-21a2d2bb4935 1 \N Other +3953ce43-d1c8-4c40-b51e-634d1fcb0db5 1 \N Other +3955a6aa-4002-4712-8fdf-dbd68558d57f 1 \N Other +39575989-9cc1-4ef8-8d84-e9eb599fa609 1 \N Other +395b151f-305f-4943-8627-ef8fd9a60837 1 \N Other +395da491-984d-45e0-8dfd-e9dae366a73c 1 \N Other +396463ed-c1b8-4567-8df2-bc252013c34a 1 James Other +396ccbda-2208-484f-bd32-a9da344327ce 1 \N Other +396d8615-5039-41a9-a22b-8d285b217049 1 \N Other +396f2c23-faf9-4a4f-8fb7-bf9172ffbc17 1 \N Other +3972f4cb-ac12-4292-9db6-2cc8c928d210 1 \N Other +39736ba1-f057-4946-ae57-6cf474d083c1 1 James Other +3976e2d2-b106-4b5a-a0c1-5003c20d9db8 1 James Other +39775155-6c1b-4434-8d01-0d3c000013f1 1 \N Other +397972ed-7184-4c9c-a13e-6d4d69f7d5c2 1 \N Other +3979e0f6-fff6-45d4-9b92-47b5f37156d3 1 James Other +397db734-71b1-4a12-9ef8-feb1b51d4985 1 James Other +39806ef2-eab3-4263-b5c8-3f7acecf8110 1 \N Other +3988a3b5-0b2d-4d7d-95b5-210dc7a2fc96 1 James Other +398b4b9a-edde-493b-9808-b8896faaeee5 1 James Other +398fed74-5f76-4351-8342-26a17c89f10a 1 \N Other +3990cf94-cc26-4943-9e89-db2c19f90282 1 James Other +399309ac-4247-4632-9f24-d1d81c5e81bd 1 James Other +3995a13a-caf7-4aa2-b894-6022a0442c78 1 James Other +399ca369-5dd7-4589-bdcd-d525e3bdf0c0 1 \N Other +39a7ed5b-d989-4f2d-a51e-b749f5b3de2c 1 \N Other +39ab3c97-76f5-4f77-9b33-8bab961113de 1 \N Other +39aefee5-77a1-4444-8b92-df5a98781421 1 \N Other +39b12185-ec20-47dc-8029-4578b9596d0b 1 \N Other +39b271bb-1d00-4a80-bb59-03d25d0ef927 1 James Other +39b36481-3612-4113-81b9-e819d39e3124 1 \N Other +39b521ff-b111-49de-bf1c-902d97b0d77b 1 \N Other +39be76ef-5335-4c4f-a504-c418bb681ba6 1 \N Other +39c3de02-56fa-418d-8c44-8ba1a74ce12b 1 James Other +39c46689-1dfa-4e10-be36-95232fe5f2d6 1 \N Other +39c6e9aa-7a74-4770-a5ef-ccc4590179e3 1 \N Other +39cc445a-b5b1-4119-abef-d774406fa428 1 \N Other +39cc8b88-27da-4c0c-93e7-2f5825519e46 1 James Other +39ce14f4-849d-4909-bfff-4b1aecbea318 1 \N Other +39d25a2d-f7be-4de1-ae06-660569667456 1 \N Other +39d3e53b-cb9d-4ca7-b3d9-4287a2e856cc 1 \N Other +39d4b792-74bc-4634-9643-208df90981a1 1 \N Other +39df5e7f-12ad-4ee9-b3be-4ef9ff20756d 1 \N Other +39e07bad-8944-4277-a887-0543d91ba45a 1 \N Other +39e54c34-208c-4b6d-a62f-922bb1d0fa8c 1 \N Other +39eb74db-a0b2-479f-a1a0-9881f419e4ad 1 \N Other +39f0d362-4ad6-447c-a712-b296cb4a72a0 1 \N Other +39f5d27c-1634-4f6b-90c9-e8f1745be158 1 James Other +39f88277-fdb3-4d8b-800a-02e57e65aef9 1 \N Other +3a040317-71d5-4ed5-9e1f-581e7eab5621 1 \N Other +3a06efc4-4e63-421c-b5ab-2d47bd505721 1 \N Other +3a0acca1-3d86-4117-91ed-28090976cc2f 1 \N Other +3a0d7ba9-d56b-41d6-bc6a-f85243e31554 1 \N Other +3a0db2b2-8e3d-44ab-8267-67259fff00ac 1 \N Other +3a0f3e44-c5b7-4eb7-9a2c-066acf65d2f7 1 \N Other +3a106484-642d-4913-b767-c0bd124ee72c 1 James Other +3a1670f2-526e-4e46-a549-3aa74ff35b4b 1 James Other +3a16f73e-2a2e-46d7-907a-58941646f63b 1 James Other +3a1f01b2-d866-4a22-b6c9-6c94dd567c11 1 \N Other +3a250f2d-24b8-4abf-8f1a-742ddf31aafe 1 \N Other +3a28ecff-1d74-4729-b91e-232666ee1052 1 \N Other +3a2dba3f-e521-4263-ab4e-cd9a4d9ac229 1 \N Other +3a317cbc-f5c0-42b8-b010-fb7816bb2b2d 1 \N Other +3a3354c2-b6b5-4bd6-a1b0-7481fda92883 1 James Other +3a33a3dd-f2c3-4f62-9a1a-e1102c7e4508 1 James Other +3a342be3-f216-4f9d-8628-84959f0e5e1f 1 \N Other +3a3720ec-a28d-4e71-9377-6858e5b21660 1 James Other +3a381af8-aa65-40e0-ba13-152786580194 1 \N Other +3a3db37b-3d4a-445d-9c2e-7c19987bcf45 1 \N Other +3a43082f-7b35-4d34-b069-3961fd294662 1 \N Other +3a454962-e7de-4c16-b5a2-19fb2e9422f3 1 \N Other +3a465f7a-2029-4e4a-88a7-816a79607bbc 1 \N Other +3a4e3d30-6ae6-404e-a110-ae4a4314eb90 1 \N Other +3a4e97ee-9ff8-4e1b-b5f0-3c5edcecc61b 1 \N Other +3a4f2adb-2342-41be-9b5b-d1e30b55dfa1 1 \N Other +3a510f76-a0a1-4833-a6a2-8756e09f513e 1 \N Other +3a520ee6-8046-41ff-98ee-a0984ff7089e 1 \N Other +3a565595-1fbb-4b5f-9ae4-cf23f58e5e13 1 James Other +3a568b71-5b31-41e4-ad0f-ce91ea72b3be 1 \N Other +3a5744ca-1c68-40e1-9fc5-6c937e86d81e 1 \N Other +3a5820fb-65bc-4a65-9bce-8d539e75ef7a 1 \N Other +3a5e703a-8c0f-4d16-9184-3abbf88c6320 1 \N Other +3a5f13b2-32d0-4caa-beda-25055c387062 1 \N Other +3a6004dd-3fc0-4bce-b9b4-34e4a13bfb0e 1 \N Other +3a647ecf-fc50-4817-bd55-b158234e2429 1 \N Other +3a648c38-d235-4a66-908e-4f8005612581 1 \N Other +3a72bdcb-2ee1-40f8-945c-517021518035 1 \N Other +3a72fb98-2b04-11e8-9399-fa163e8624cc 1 \N Other +3a73b727-729e-43ea-aa7c-1b0b93994023 1 \N Other +3a73f2e4-33d8-4290-821a-06c16cf9dc24 1 \N Other +3a75b8c9-fe72-4fce-b3ba-68162f1cf735 1 \N Other +3a775e6a-0fd7-4922-899d-4717100c7f9e 1 James Other +3a792f56-eee6-4440-9e8c-4e279e7b363e 1 \N Other +3a7b6c36-949c-4b2b-bf00-7cd7e509a534 1 \N Other +3a7f464a-df6c-4ba5-a276-09e7558641e0 1 \N Other +3a814167-57ff-41fb-827c-607526ac8206 1 \N Other +3a872430-2795-4f2c-af3b-f893c6cdc3d3 1 \N Other +3a90dcd6-6448-4704-8df0-7f1f0d72594b 1 \N Other +3a93e873-da24-45cc-bddc-961046d3aff8 1 James Other +3a9c9ae8-2b04-11e8-a1a4-fa163e8624cc 1 \N Other +3a9f0e71-9551-4009-a7bb-b93d7830d3bb 1 \N Other +3aaa9f69-1b10-432c-9aee-94b9cc89dd76 1 James Other +3aaf1521-fbe0-4f22-b6c5-14f7c795ffe2 1 \N Other +3aaf4121-3f14-4e4e-8a38-aa88283cce24 1 \N Other +3ab0a084-0e71-4d67-bace-25ef105a5bfc 1 \N Other +3ab60aa2-4f22-40f5-be41-56605a7bbabb 1 \N Other +3ab6b9c3-2eba-419d-b6dc-1e1e34fb4b46 1 \N Other +3ab6e5c5-ff32-48d8-abc2-5b86226cc98b 1 James Other +3ab7c464-e534-41db-9a69-a6189e30a149 1 \N Other +3aba7a0d-3970-45e3-9bb7-3ffd480abf9a 1 \N Other +3abce8f8-32b3-482b-837b-899da0afcb2f 1 \N Other +3abf75d6-ec6c-4ca0-8317-724276784567 1 \N Other +3ac01ef0-724c-4a8d-88d4-a1f6807d9eeb 1 \N Other +3ac122b8-59c0-4fde-8f22-152fed43a63c 1 James Other +3ac302dc-af45-4956-b0ed-9b73a8e5e5c1 1 \N Other +3ac576ad-9f1b-4c28-9088-3f18138f3c02 1 \N Other +3ac6c635-f853-40c2-8c79-7ac784416308 1 James Other +3ac898ba-0ff2-4fd2-8f32-c1ee9f2e92b6 1 \N Other +3ac935df-12ee-4c95-ab53-4638a4b0d449 1 \N Other +3acbeb5c-bb3c-4f89-88f5-348d32caadc1 1 James Other +3acbfb22-ba56-4cef-80b6-9206b0af63dc 1 \N Other +3acfdb27-f5c3-4d12-86cb-14d64cb47df3 1 \N Other +3ad07d9d-462b-4771-82e5-40191c5b5907 1 \N Other +3ad083c7-42f7-4d74-9b61-1de49bf82d94 1 \N Other +3ad27061-a0a5-4303-b9ab-052b03ced9ff 1 \N Other +3ad3fcc5-737b-4d36-ba0f-ee447919d6a0 1 James Other +3ad4f1b8-2b04-11e8-bc46-fa163e8624cc 1 \N Other +3ad5a591-73e8-4fc9-9b78-3d06b65cc64b 1 James Other +3ad7350d-755b-413d-a2c1-03b803f156ff 1 \N Other +3ad787b6-2b04-11e8-b723-fa163e8624cc 1 \N Other +3adfca6c-af1c-47e8-be0f-8e3d314a8912 1 \N Other +3adfcdc0-0113-4be1-a6d9-cb3ed59820a4 1 James Other +3ae3d471-51bc-43f4-a3b9-bd4990eaf055 1 \N Other +3ae3d866-a9a8-477b-b499-12e8a254c564 1 \N Other +3ae8a0fd-4dc2-4235-8c4e-3e84c85b1acc 1 \N Other +3aea45ad-4970-4ea2-a99a-0e406670cc1d 1 James Other +3af16e2d-05ff-45be-82c2-dd16723bc707 1 \N Other +3af7d0fa-ba9b-45b8-a6cc-64e80ebeb99f 1 \N Other +3af87c8b-cc0c-4fbc-ade4-2ce2badb0a42 1 \N Other +3af9d7e5-0b57-44c7-9409-c43dcdf4f7d7 1 \N Other +3afe2210-90d1-4600-898e-8de486169830 1 James Other +3afe5b26-f386-4a82-8f94-ae4827520a96 1 James Other +3afe6c6e-2c09-4eb2-82d2-6a70f1ada498 1 James Other +3b02ec31-67ea-4a2e-be64-19e7cf5e28be 1 \N Other +3b040f34-85b6-4c98-979e-0b98bb9a42b4 1 \N Other +3b05bf75-39ee-4ba5-9b25-48012fb8bddb 1 James Other +3b068c1e-6d7a-4d97-809f-891f5adb2d5d 1 \N Other +3b08204c-1ede-4f17-8823-b3a2b55cc34c 1 \N Other +3b08399d-9579-4f18-8c29-a34b461e18ae 1 \N Other +3b087c38-6c0b-4932-9103-dc4c683e18a7 1 James Other +3b13be85-2732-4550-b885-30f3a1493880 1 \N Other +3b16be93-f12f-4bd5-a9f1-87c5076bd961 1 James Other +3b1a20fa-bb61-4401-9d13-be2073fe5a81 1 \N Other +3b1bc5b0-7e2b-4ee2-9e43-99535c408ed9 1 \N Other +3b1c599c-7f27-41df-b8c9-2bacc1a77bc9 1 \N Other +3b1dcc42-7e7e-4fb3-bf39-3515d1895871 1 James Other +3b1e1c5c-0c2f-4251-a195-2d8257bd352a 1 \N Other +3b209674-9405-47b8-b336-1ea74d862a0c 1 James Other +3b20e1d4-3e3d-4e18-80df-b74491ed2618 1 James Other +3b2171fb-dbd5-414b-852a-6bd302e906d2 1 \N Other +3b236701-3e35-4722-aeb1-19a0f5351d7f 1 \N Other +3b253a34-4a22-41ee-898a-ab0d93b64b72 1 James Other +3b2761a1-8f33-40d3-8beb-5ebff4973ce1 1 \N Other +3b2a5483-dc06-4dfc-8098-dea2afe7dad3 1 James Other +3b2e16c7-67a7-4ec3-a86d-98e3d3ccbe72 1 James Other +3b31077c-06ac-4f31-a4b0-87f06501f733 1 James Other +3b32be27-45a6-4137-b3a4-5e237f615bca 1 James Other +3b342694-c9f4-4883-9f38-69bf7d729d97 1 James Other +3b36bc58-816e-4379-8767-0c446c3d907e 1 \N Other +3b3a33d0-0ed8-4720-b03b-d45308e99c1d 1 \N Other +3b41931c-0e13-11e8-9000-fa163e8624cc 1 \N Other +3b433610-7a6d-4d48-af7e-adde33d53ab3 1 \N Other +3b47ddde-6791-494d-ba65-19f5fcbb4364 1 James Other +3b488ead-d3bc-4259-a042-aef7fc997346 1 James Other +3b4aa121-e43b-4fca-b027-65fd2c09d623 1 James Other +3b4adf9d-3add-4300-9e74-e9695993a5f5 1 \N Other +3b4da7e3-760d-407b-b9c6-dde9180c9c43 1 \N Other +3b4dc88d-5f63-4b02-b314-5d48c1c8b7a3 1 \N Other +3b4f7a1f-7eac-4afd-be6d-9f4d9a7e8ba4 1 \N Other +3b529202-0e13-11e8-904b-fa163e8624cc 1 \N Other +3b584159-6bee-418f-a6f5-5229314d4fb7 1 \N Other +3b592c18-3709-4ae8-ae2b-e15699b8db61 1 \N Other +3b5c9b26-0749-46a1-bb98-f1a27c6045a5 1 James Other +3b5fe030-9d1d-4b7a-ad67-446ce68ba646 1 \N Other +3b60ee1f-7844-43aa-a288-c28aa4b9df26 1 \N Other +3b6367b3-ff93-4d22-9e8a-20ed0bd4f92e 1 James Other +3b65951d-66ba-441e-b7cc-cfd0da7980f7 1 \N Other +3b68bb23-c715-4831-9b7d-bb925cdca188 1 \N Other +3b6c9ac5-3b6a-4932-ab1e-b234c92c3957 1 James Other +3b753b2c-37e3-4f94-894e-0fc35163776c 1 \N Other +3b7ab200-6816-48f6-b746-d1bc01f00234 1 \N Other +3b82ad93-c5d2-4689-a08e-bb87b344f221 1 \N Other +3b85b050-53ee-4316-9991-f5ea0edb5972 1 \N Other +3b863f61-83e0-4421-8907-cb8dee7e22af 1 \N Other +3b8678f8-2255-46c7-9966-dbcb44b28893 1 \N Other +3b91486c-0e13-11e8-96ad-fa163e8624cc 1 \N Other +3b91e5ec-0e13-11e8-a146-fa163e8624cc 1 \N Other +3b939c94-28fd-4af4-96b7-52b67d86cefc 1 James Other +3b954ea3-9d2b-4cd7-ac34-45bcf5cbf6d2 1 James Other +3b95994a-40aa-495a-bdc7-bca63a2cc221 1 James Other +3b9952f9-b020-4897-bbcc-c9cfcedda49e 1 \N Other +3b9f493c-fb9d-4b73-8f31-6b50fad228d4 1 \N Other +3ba33688-9ccc-4b10-a045-3be89d3d202c 1 \N Other +3ba47e05-d000-4501-8e56-5bba54f9f492 1 \N Other +3ba84ea9-00ab-41c7-8453-4436c21deb51 1 \N Other +3baf6243-09f8-4ffe-b5b6-c69030574d0c 1 James Other +3bb11579-0b28-4042-9fcc-9142ac025f1b 1 \N Other +3bb1e73c-45c6-4a54-b7a2-c9dcff2bb632 1 \N Other +3bb28a13-9780-4541-9f81-92c0450e223d 1 James Other +3bb2907b-068e-4208-8acb-75307280a415 1 \N Other +3bb51f27-3b6e-4609-9168-fbe56ef6c539 1 \N Other +3bbfa607-28ae-4013-86ce-de0fb771e153 1 \N Other +3bc1b291-57f4-4c48-a622-bde6cb357a18 1 \N Other +3bc2709a-477f-4a98-b9e6-774aa815d069 1 \N Other +3bc3b978-a3f9-41ee-ba6f-864d38ae1933 1 \N Other +3bc9446f-e424-42cf-a27d-c3677fb00642 1 \N Other +3bcc91b0-f308-4e07-940b-d69262406c02 1 \N Other +3bd1035f-fda8-42bd-8f8d-6d17f361fd69 1 James Other +3bd64d24-2ae5-4123-9a4c-5f6840696040 1 \N Other +3bda050b-805a-44b8-b9ef-c1556fdaa916 1 \N Other +3bdc8569-5bda-4bec-806f-b8f192edc15a 1 James Other +3bdccdb7-7480-4bed-99e1-fede167f4fa2 1 James Other +3be401c0-3173-4f1b-a500-1581ce42df25 1 \N Other +3be418a1-d148-48bd-b6af-a67082e44ea0 1 \N Other +3be767fd-ae4f-4afa-b899-78ad440c6ab1 1 \N Other +3beb0ffd-2609-497e-b233-8681e5538125 1 James Other +3befcfc9-f852-4f26-9479-c348b34c0efd 1 James Other +3bf116ba-3658-40d3-bcc8-2fa1c37abe09 1 \N Other +3bf2b65c-022a-4cca-84ae-139e08d232f6 1 \N Other +3bf61917-9c05-4fbd-82e2-c5ac176cb68a 1 \N Other +3bfa0fdf-c00a-4ab7-9c91-14fc8aed4977 1 \N Other +3c018c65-5098-46b0-b74b-7f4fd2342531 1 \N Other +3c02ad1d-5cda-4803-be1f-3c74f11bba4c 1 James Other +3c1086e4-73f1-4b36-a7ad-5cb9f101099c 1 \N Other +3c10eea0-da77-4389-8d19-72f11f8dcee8 1 James Other +3c11ff3b-c0a5-40de-8d3f-0959c212c9a0 1 James Other +3c168926-b99f-457a-b7d5-2e43536dfce7 1 \N Other +3c193fb3-a456-4e39-ada0-f993efb52b14 1 \N Other +3c200021-d017-45b4-9dcd-a0ed18d10e1d 1 James Other +3c29a0e9-5918-4036-9298-7a41b09194ba 1 \N Other +3c2e0af0-9633-415e-b24c-ede3f2dce745 1 \N Other +3c302660-330a-43e1-8177-23c7e7613a4e 1 \N Other +3c305f00-d2a7-4f09-806f-f27ae962797d 1 \N Other +3c334e92-d445-406f-b53a-9e368023fb94 1 James Other +3c34e71f-9875-4d27-b43f-3df7d590cf3a 1 James Other +3c3e785f-7470-4cf1-b859-baa1ad1d87a6 1 \N Other +3c3f4e41-841f-4831-997a-7811c2a048c2 1 \N Other +3c3fed6f-76dd-49d5-8b99-919d4bb54e1d 1 James Other +3c490b67-3b94-49e1-9827-d995205d505e 1 \N Other +3c4b04cc-da40-40cb-9bbd-e26099bd03ad 1 \N Other +3c52bc70-22ad-435d-97b6-acb8d7ba9658 1 \N Other +3c53eb61-8a70-4689-a6a0-2c07fa717a6e 1 \N Other +3c5d24ed-f0d2-42ed-97a8-cd3a4e08b0bc 1 \N Other +3c69661e-ed9a-408b-aa55-540b4349770c 1 James Other +3c6a786b-3aa4-49bd-8d81-2789c8ecd6b9 1 \N Other +3c6b2508-6dbc-498b-9809-6e45254624cc 1 \N Other +3c6b6ba2-4a3b-42e9-9ac2-a6c0e5972cfd 1 James Other +3c6c4964-59b3-48b0-aac9-982a8a89c5ce 1 \N Other +3c6cd493-ad26-4e3f-8dae-f94e93ad9260 1 \N Other +3c6fe98c-b3e2-48c5-b308-93d67d89d5bc 1 \N Other +3c742479-b4cf-4dd3-86b2-6bfda306617a 1 \N Other +3c7439cf-a63e-4614-9400-c64e141e6975 1 \N Other +3c74bdee-bfe3-4078-aaaf-7db12ce03585 1 \N Other +3c760978-c6da-4b3c-a9cf-aeee934ac2f7 1 \N Other +3c779f50-ad27-4bef-aced-fbc05ea7e261 1 James Other +3c7ba18a-43ae-4ac5-adc5-5d3582f53a57 1 James Other +3c82c906-330f-4d2c-ba02-7c8e3f1e925b 1 James Other +3c830136-4fe5-4ae1-b991-a5a188008b4c 1 \N Other +3c83d8d3-c660-4cde-9139-04797f7784f2 1 James Other +3c84d5a1-ccbd-4dcc-a219-13d4847ebf43 1 \N Other +3c889d89-d57e-4597-be0f-94ee15a3e7d8 1 \N Other +3c8ac684-b369-4e7f-80c0-15550adc2233 1 \N Other +3c8f6949-6f02-40f2-adc3-00c407cbcf46 1 \N Other +3c928d69-6caa-4eb3-8502-70320ca3ec71 1 \N Other +3c95e9bf-890e-41b8-8429-fa0ee31b4153 1 \N Other +3c976a80-41e6-47bf-9936-9aaf77d9a42c 1 \N Other +3c9938d8-7dcc-4062-96bf-e3fc2ad21bb4 1 James Other +3c9b6b99-9744-4174-a794-635172d767c7 1 \N Other +3c9c3d70-85e6-4092-b782-d47d6df7505f 1 James Other +3c9eda02-1ad9-4edb-8423-dc5396b79c55 1 \N Other +3ca135b3-b024-45b7-b9f8-da5d5376c4cd 1 \N Other +3ca30a1c-b785-4715-be09-5e092a0a2f8c 1 \N Other +3ca8595c-da5c-4bf8-9955-acdbfb3251ad 1 James Other +3cace2fb-1dfe-4004-a3c0-81495be86fbe 1 \N Other +3cb5c71d-574a-45b8-866d-50203a5a5bf3 1 \N Other +3cbba6e4-8ee6-49aa-b9d9-4524c69f5afc 1 \N Other +3cbc65a2-8cdb-4b22-bfb8-e5137d4d32e6 1 \N Other +3cbdac03-c07f-47ff-b6f6-21d8c25297ee 1 \N Other +3cbdf25e-8eae-4d69-95d2-467014b25c08 1 \N Other +3cc22dc1-a6aa-45bf-a673-0784b91dc38a 1 \N Other +3cc278fd-af86-4d23-b71f-9b4a11e82831 1 \N Other +3cc4bf25-95e0-4363-a6f5-1a5818bc9edb 1 \N Other +3cc5d537-e448-4e62-931a-2c4f47fbe449 1 \N Other +3cc6c25f-4247-413e-9295-61b90a752987 1 James Other +3cc8bb4b-87a5-495c-8539-3b623578ff56 1 \N Other +3cd6b11f-c74f-440d-9ba9-620f0369869c 1 \N Other +3cd7c9ec-ce67-4db0-818a-709ec3eef7e4 1 \N Other +3cdb6f02-296a-4a90-940e-d71c1d2a1783 1 \N Other +3cdec758-fa67-4578-9f5e-b5fa6197a173 1 James Other +3ce4b558-ed39-4e83-91fd-3625f5630f39 1 \N Other +3ce87c73-7635-40bd-a152-6eb3ec660032 1 \N Other +3ce90d1b-6a5c-4326-855d-108993995910 1 \N Other +3ceaebd6-c2c7-421b-94ab-67e90fd8d840 1 \N Other +3ced43da-b3bb-422c-b1f3-c30f95636780 1 \N Other +3ced713a-b5e1-4d74-b171-924eff655559 1 James Other +3cf0bdd4-b70f-4d26-a23c-79fa44230f88 1 \N Other +3cf1b2f7-992e-4a6b-b239-daf2b9dc3ad6 1 \N Other +3cf35e34-b4c1-47ed-bd03-82d9602a9d25 1 James Other +3cf603da-6bc8-45ef-98ec-107c839f3300 1 James Other +3cf9c65f-bb2c-45a8-bf4d-298d52df1077 1 James Other +3cfcb84a-5679-417f-b34c-511d0a81e3e0 1 James Other +3cfec092-e907-45db-9fba-a95f06d05415 1 \N Other +3d02920e-80dc-4377-be02-f3312cccff99 1 James Other +3d050517-9bb4-4308-bb0d-8c3667be7e46 1 \N Other +3d056d16-b1a8-46c1-8436-0c8f6aa4fc20 1 \N Other +3d166db3-4cc9-4e19-8805-14677c3d058a 1 James Other +3d1e624e-5ab7-4bb0-bba1-7826b43cb0a8 1 James Other +3d20732e-2d10-4472-837c-d05681b4c345 1 \N Other +3d271762-ccbb-4e19-b4e0-4afec90da94d 1 James Other +3d2927da-0f10-4d8b-9297-92104e92da6c 1 \N Other +3d2de441-065f-4971-953a-8e7966416ce8 1 James Other +3d2f0c02-5aba-48cc-8d24-893391c81866 1 \N Other +3d321c7f-46e5-4891-99c6-e8400c0e0fae 1 \N Other +3d361aa2-2b64-4e46-b176-b340962c46b2 1 James Other +3d3af732-12c8-4d25-9356-f62b687d57c8 1 James Other +3d3cee18-480d-40ac-9508-047c0ff67d64 1 \N Other +3d3df9b2-48e2-4d6c-bf1e-056986a5d79d 1 \N Other +3d414370-0481-4142-81b0-8a788788bca0 1 \N Other +3d4409b5-229a-4d3f-844c-ed753a068944 1 \N Other +3d4850e0-5862-49e9-ab30-51a628c938f7 1 \N Other +3d497525-f0dd-413e-90ed-2c708840f237 1 \N Other +3d4b8911-b63b-4eb0-b01b-72007c84d218 1 James Other +3d4e01f3-fa90-4384-a676-a0949a8c35aa 1 James Other +3d4facd6-d10c-4199-b21d-9fade18cb6fe 1 \N Other +3d5abcff-ee2c-4b29-a383-5ce792bd588f 1 \N Other +3d5c3f25-f63f-4f41-ad81-deb895f6e910 1 James Other +3d5cf7e5-2abd-4499-af53-0f5e8476f34f 1 \N Other +3d61879f-33d6-40ec-88b9-72221c897687 1 James Other +3d620194-eb61-4c1c-a6a2-bc1c303ed0b9 1 \N Other +3d62e3ce-3a4b-4a8e-b9df-b37b8fb0313c 1 \N Other +3d6890d2-84ca-48ca-b7c4-f059fcbe16f4 1 \N Other +3d6c0623-d8e0-4c7a-ad6e-a22f1c60502f 1 \N Other +3d705309-fe01-4417-86de-7551da31cee2 1 James Other +3d71c4da-a6b9-42ce-86da-7b0ceb769879 1 James Other +3d722670-a544-446e-9096-992316dc5d00 1 \N Other +3d74eb89-3790-406d-a78d-29e17bd7abe6 1 \N Other +3d757a8a-bf31-42cf-9b12-9e8541557eb6 1 \N Other +3d778c06-a0bc-4fd2-8975-64bef0db1a9b 1 \N Other +3d789528-7150-428c-a998-86e349209f75 1 \N Other +3d7bcfba-cdba-481b-a689-27fa7fce2cab 1 \N Other +3d7be34c-623f-4e9a-9116-fe48cda4b913 1 \N Other +3d7d9f13-61d0-4bf1-89f5-0a6218616cd0 1 \N Other +3d815087-5af7-4747-a965-66c0e6387dcd 1 \N Other +3d81ac2b-ffc3-4036-b665-b4c6707561d8 1 \N Other +3d887f90-14ed-42d8-908c-a910932686cd 1 \N Other +3d8a8001-fed0-4592-8ef1-1dff10c7ce3e 1 \N Other +3d8b9042-85b9-4d08-a6d7-075fc815341e 1 \N Other +3d8c3651-6a01-4575-b939-07d0c21581f5 1 \N Other +3d8d2a85-8e47-421a-9fbf-f1a2ca0bb5c2 1 \N Other +3d93b03e-5df8-443d-9751-5acdd1e75127 1 \N Other +3d990cc0-5bb4-463a-aa22-123f287635b5 1 \N Other +3da52604-447c-424f-b5f6-67fedeba81d6 1 James Other +3da5d09e-f6f0-4adc-9a28-3d06f860addc 1 \N Other +3dab77c9-cccd-4312-9008-715f10d7fd0b 1 James Other +3dae0316-2297-4fc4-beaa-10cb63a0f026 1 \N Other +3dae77a6-a5ee-45c9-bd06-e1955b2c8101 1 \N Other +3dae919e-b2ee-4766-b466-7b9ac3644974 1 James Other +3dafcdee-ce34-4d7d-8355-2fe396640c1f 1 \N Other +3db1602d-f9f6-4e25-8c8e-16e0eacaa028 1 \N Other +3db3a06c-86e3-4928-bff9-d0d95e4518e7 1 \N Other +3db77f9c-c1bc-48b3-b81e-a1519fe0ec4f 1 James Other +3db7ba0a-fb30-4b68-ae50-864f6cc1ec46 1 \N Other +3db9c851-e914-4306-a7c5-f9edfcf04120 1 \N Other +3db9fa6d-6267-468d-9d29-ebe06ab5d95e 1 \N Other +3dba7c34-8046-4d4d-a942-114dfbc9127c 1 \N Other +3dbab6d9-89ae-4952-a2bf-56af894d57c6 1 \N Other +3dbac2e5-3559-43a0-913b-85b9d0e7e75c 1 James Other +3dbb70eb-e490-40e3-b192-a4b517e2f18e 1 \N Other +3dbc3f75-daf7-4927-9708-f2139cba57d6 1 \N Other +3dbd23a6-00d6-4b24-83b5-4dc0ad683fe6 1 \N Other +3dbeb65c-4e62-40ca-bfb8-10f74ab778d6 1 James Other +3dc22255-a8bc-459e-8c8d-f582c6acc1fe 1 \N Other +3dc51ff3-a296-447f-aa6f-bc6625715614 1 \N Other +3dc70f5e-d6c2-47cc-ba12-999eb5f8e6b3 1 \N Other +3dc8499d-1fb2-4532-b3b4-169506a07b94 1 \N Other +3dd13f13-7046-4aa7-8112-4d9563cd9109 1 James Other +3dd4e3ed-066b-43c7-82a1-d3da5e8dd703 1 \N Other +3dd6af33-a9dd-4f44-aa87-d0adbcc9b0d1 1 \N Other +3dd770e4-a4f9-4483-b39f-d02ebe83e8ed 1 \N Other +3dd970c2-78c7-4b8b-9670-c12a25498300 1 James Other +3dddc19a-83e7-44e0-805e-6a0bffe5f487 1 James Other +3ddfc670-832c-4c3c-8a04-794e9b105c7f 1 \N Other +3de13ea9-42ac-4e3f-8f21-63e89c856b9d 1 \N Other +3de52974-a7c8-49ca-b64e-5bee5207d384 1 James Other +3de67642-f229-4255-a16f-1cb368fbccf0 1 \N Other +3de6c353-8b0e-4b4a-954a-d139d96357de 1 \N Other +3de751bd-0816-411a-a09b-cf4b00ec5db3 1 James Other +3de84903-0337-479b-8bee-6cba179c468f 1 James Other +3de8a24c-53e9-4b52-83b0-7db0b4a0d7ce 1 \N Other +3ded028e-b5b1-4f36-b653-dfb67bfa6312 1 James Other +3df4c59d-80f4-4368-b5c3-5f03c6b8d83b 1 \N Other +3df50c64-3b77-4887-bf6e-d43649f53eba 1 James Other +3df69bdb-9665-435c-b767-148c86458f31 1 \N Other +3df8e22d-8255-46e4-85ea-5c4af031aac0 1 \N Other +3df9f1f2-2b29-11e8-9d40-fa163e8624cc 1 \N Other +3dfa3bb4-6507-4929-bc27-63075137ab50 1 \N Other +3e03fbcd-bf4b-4e87-8ec8-06d1a8249a0e 1 James Other +3e087ccd-ae50-4566-92d7-382df2a077d7 1 \N Other +3e0992b9-c13d-4b8e-8876-c90475434e54 1 \N Other +3e0a682d-baf1-42c4-b1ef-d6414669aebd 1 \N Other +3e10b630-2b29-11e8-b24c-fa163e8624cc 1 \N Other +3e128521-5597-498b-8ec1-c31130cbf772 1 \N Other +3e160e87-dc12-4c0a-ad14-f816c4e3f0fc 1 \N Other +3e1b43a1-7491-4d89-aebe-3f3a8e5498ef 1 \N Other +3e1c31c6-43ca-4d61-a1cb-b3dc3f13f9f5 1 \N Other +3e1d7454-d336-44b5-a2e8-33a3fbca6978 1 \N Other +3e1dd72d-36be-46f1-845e-f86161ede12d 1 \N Other +3e1e40ab-bc4a-4ae1-8815-0b3eda4f1565 1 \N Other +3e1ffe8a-6583-402a-8105-36a3cae540ae 1 \N Other +3e220745-7a34-4d74-ba30-05571b4b19b4 1 \N Other +3e250426-95f8-4c6d-9b72-d485deece349 1 James Other +3e281371-2c54-4c12-a626-909b17bd2015 1 \N Other +3e28262b-3ea1-49da-bcc0-a4a26247864f 1 James Other +3e2ee38b-53d9-40e8-a022-2643ff7be8e9 1 James Other +3e32c013-665f-4924-9d5f-54c22d1423f2 1 \N Other +3e33d89d-db4f-4a12-9b0d-dbd9a31f30d6 1 \N Other +3e348b4a-7d74-4ca8-98a4-24acc6ce9272 1 \N Other +3e361120-ab05-49d0-b1e0-db391fe469d3 1 \N Other +3e38d05d-82da-4e68-b35f-86ce84f24f1d 1 James Other +3e3934f2-fa21-4f98-ad06-aa8e5dd317b8 1 \N Other +3e3ca287-0013-44b5-9b6e-cc2dd007e6b2 1 \N Other +3e3da32f-058d-4a00-a9ca-0abe29266bcd 1 James Other +3e3e003c-689b-4fb9-abb1-10b172d624bc 1 \N Other +3e426b04-d843-487a-8d3b-7dce3ffbbb78 1 \N Other +3e42ce85-4980-49bc-8a2f-dd066f300f2c 1 \N Other +3e4b92e8-e9da-44e9-be4d-9b52d72cd0e0 1 \N Other +3e539af2-da13-4d5c-ae08-694fa928fccb 1 \N Other +3e571fa8-1e6d-11e8-940e-fa163e8624cc 1 \N Other +3e5d12cd-8e79-4dec-b0f8-0dbae606d1fd 1 \N Other +3e5fa25f-bdee-4b66-b1d9-266739f7c312 1 James Other +3e682d09-5e03-4011-ae33-0f51d1f9eff9 1 \N Other +3e6c6d88-509e-4425-b867-1bad3b7a3335 1 \N Other +3e6d2759-7cb2-4c78-aa79-7953aaec2eb8 1 \N Other +3e7028e9-4835-46db-b3d1-fb4690639a9b 1 James Other +3e7171dc-6903-4de2-8061-2b018a9f6a9a 1 \N Other +3e71c00c-d22f-4770-a530-fa1777e3437e 1 \N Other +3e740899-7401-4d69-a887-62c7eb0277f3 1 \N Other +3e796b14-8ff1-45ac-b899-3d9258a59e5d 1 James Other +3e7aa81a-c991-4b39-8af8-bdb11ab5672a 1 \N Other +3e7d9cc8-f15e-4b24-af1e-0749b999d881 1 \N Other +3e824b7e-2b29-11e8-bd66-fa163e8624cc 1 \N Other +3e83c36f-637c-4d01-97ae-bf98819fea1b 1 James Other +3e84a817-6569-4d71-a57c-ee4f4989aa87 1 \N Other +3e85497f-cbbd-42d0-95bf-d999a87f88d1 1 \N Other +3e8675fa-2b29-11e8-83b2-fa163e8624cc 1 \N Other +3e87bda2-0376-4360-817d-1629eceb5a32 1 \N Other +3e8d6618-0ccb-4974-9090-51dd68c70087 1 \N Other +3e8f4ec9-434b-4c87-a77e-176ac0d8c38f 1 James Other +3e9247f4-1e6d-11e8-b045-fa163e8624cc 1 \N Other +3e94031b-5e01-4fd5-9b79-3f4b8a91538c 1 \N Other +3e968fc3-5323-4db5-858d-f5acf09a9faf 1 \N Other +3e9eed4f-045e-46e5-8249-a62492447fdd 1 \N Other +3e9f77be-af5e-401e-8173-675c4ed33046 1 James Other +3ea073a2-39ae-47f2-844e-7b102b398373 1 \N Other +3ea2e40a-26e8-468f-8389-c9277021a9d9 1 James Other +3ea4522d-7ccc-433d-b49d-a3dbaaceeb02 1 \N Other +3ea8f6ba-98e5-40aa-b9e4-db40e008c473 1 \N Other +3eaa0a06-2093-41dd-a82b-3dec18b6811c 1 \N Other +3eae7a4d-2a34-4206-bbf3-c0110eb8324f 1 \N Other +3eb019c5-41df-435f-bfcf-f8ff2ee3c634 1 \N Other +3eb219af-13c0-42b2-9e63-a3dd746dd57d 1 \N Other +3eb60ed0-06c5-4137-9ab7-fe259684faf4 1 James Other +3eb6e799-9cb9-4088-957d-fbc2571a6b41 1 \N Other +3ebae497-cc7d-458a-bba5-75a588327f8b 1 \N Other +3ebcd7db-b659-417c-95da-699b2c64de86 1 James Other +3ebf4023-0ecd-47cc-8d57-dc796c1117fd 1 \N Other +3ebff177-91b2-46bd-b36c-0397ef4dba39 1 \N Other +3ec2606d-4f2c-48c4-a40b-2a378bcd1516 1 James Other +3ec811bf-3a32-47ca-b328-131be00b1037 1 \N Other +3ec8c48f-0a20-480a-a15c-3ba6b425efb5 1 James Other +3ec938e0-198d-47f9-9ea7-9ac68ba22e90 1 James Other +3ec9de94-9762-4c15-b7af-f9aca661a593 1 James Other +3ed21667-d8c8-4b4d-999b-b7a2d898b2a5 1 \N Other +3ed2b9dd-5401-4c75-9a42-808cb8817f36 1 \N Other +3ed4a4b5-d8f5-45a3-bc75-e007e0c56b84 1 James Other +3eda6c27-865e-47f8-899f-321a813b325f 1 James Other +3edaab15-6bc1-4ffb-9aa2-b0c61b2bc44a 1 \N Other +3edb90ac-5c2f-46d8-8c6f-599b8d06b5fb 1 James Other +3ee1c038-c269-4fc6-9ef6-4ce47e677019 1 \N Other +3ee387ea-f690-416b-8241-dcbe7089b4a0 1 \N Other +3ee3fb41-21fe-4f3a-8dc7-375b2d213726 1 \N Other +3ee432c6-5ce9-415e-be8f-8c144b402873 1 \N Other +3ee4583f-8a7a-4c7d-ad24-7d5bf5458911 1 \N Other +3ef0558d-3ccb-4b66-8c4f-ec69816efcf5 1 \N Other +3ef205c9-a1ca-4d65-acd1-cbc94294a072 1 \N Other +3ef33d17-d780-4124-9b27-c7a6edca5cbd 1 James Other +3ef9ca0a-6dc3-4df5-8393-7314aeef99a1 1 \N Other +3efa21d5-cd3b-4e21-b664-5b9c9b6f5014 1 \N Other +3efa321e-a40c-4c6d-b55f-8ca59f5fae99 1 \N Other +3f0011a4-742d-4649-a4a6-494495ce850d 1 \N Other +3f0b6553-6843-4e39-a576-880721d3c435 1 \N Other +3f1184c1-f318-47bc-9f6e-2611aee8045f 1 \N Other +3f195d38-a1c4-4665-92b1-8d1c0e569744 1 \N Other +3f1a6dea-1819-454c-bf11-4f87bc2decf0 1 \N Other +3f1db47f-76dc-4cb5-990b-b79a9b46f86b 1 \N Other +3f217687-76b0-4939-a709-0e60b0753f31 1 James Other +3f235576-c643-4712-99e9-22c2b293410f 1 \N Other +3f23a6c7-096d-4f8d-87de-3117ff9e0aba 1 \N Other +3f25399e-dd51-473f-9db5-3cd5a3bf679f 1 \N Other +3f2583c0-bcd3-4cc6-b9c5-694002c7cd3f 1 \N Other +3f2653e8-a4aa-4350-a8b0-4e9205058341 1 \N Other +3f286cc1-49c9-488b-94a7-5e804226b109 1 \N Other +3f2d124a-c6a4-4db2-89ab-8d3646ca8394 1 \N Other +3f2d65fb-d2e1-4e5f-87b1-84ddff7016fd 1 \N Other +3f3046ab-5d2b-4df7-8107-710b2a4a85f8 1 \N Other +3f307848-caf2-4d15-9802-156b0a0e5439 1 \N Other +3f321c03-80bc-4552-80f0-9a20f1c09abb 1 \N Other +3f329245-e209-42fd-bbdb-be962c87ec70 1 \N Other +3f360fe0-3878-4065-9c74-52055aefe0ba 1 \N Other +3f36c6b3-a926-487d-b0bd-4d4b161fa716 1 \N Other +3f385d2c-febf-4860-9a45-67d0b114383a 1 \N Other +3f3a9e1a-2b09-11e8-898d-fa163e8624cc 1 \N Other +3f3c0dd7-9345-4f86-8a28-df3ebfe12934 1 \N Other +3f42259c-6782-4fe9-94da-de2fb5b59bd5 1 \N Other +3f423e9a-635f-47bf-a8bb-87f158267e88 1 James Other +3f42f924-0979-4b42-bc35-f55ee1fd2b99 1 James Other +3f486fb8-c92c-421b-864f-e049f9a78a1f 1 \N Other +3f4bc2c2-5702-45d4-a748-83732b75170c 1 \N Other +3f4d24c2-376f-4583-b6bb-9962d8756954 1 \N Other +3f505606-fde5-4576-8e7a-61ca74722b53 1 \N Other +3f51d27c-b201-45cd-8cd4-1a30984ce5c0 1 \N Other +3f52dcba-6b25-4dd7-a145-9adb4f807b8c 1 James Other +3f546c23-252c-4e18-af14-b4818c966129 1 James Other +3f54afce-63c8-44b2-bf6b-c57371e5323b 1 \N Other +3f572d2b-cf5c-4292-b57b-92e5bebd107e 1 \N Other +3f5cd15c-31ad-4534-9d39-53ec1f780e42 1 \N Other +3f5f6ce5-980d-4ae6-8455-a4d2afc2f5a5 1 \N Other +3f68416a-7823-429e-8793-cb154d9e57be 1 \N Other +3f7667f4-d117-481d-9f37-09808a7cc18a 1 \N Other +3f7b8cb4-e004-4837-b064-6e0f38bc2fd4 1 \N Other +3f7c3332-1c73-4b2d-a006-9bf700aab349 1 \N Other +3f7d3748-956f-42c2-a2fa-edd3dd62614e 1 \N Other +3f812830-38a3-406f-b495-48aaae4eaac1 1 \N Other +3f82454c-df4b-4639-8630-cc9ef3379608 1 James Other +3f828e21-a42e-4889-ad16-b63f29430486 1 \N Other +3f845f20-c80b-4240-822e-01970d31ee9f 1 \N Other +3f8c1a68-923c-4a55-8748-79b53995fb2b 1 \N Other +3f908a0a-2b09-11e8-b00c-fa163e8624cc 1 \N Other +3f9f1445-4b09-4414-bae5-e2ebfba41500 1 James Other +3fa277f5-c469-4575-a3bc-b4068d9b1eaf 1 \N Other +3facd57b-cefb-4f08-a812-d73b9d70fa13 1 \N Other +3fadd555-a23f-46fc-89ed-bef0a2427081 1 \N Other +3faf08df-e078-4343-a390-d4d85b5841e7 1 \N Other +3faf6640-1468-418f-b6e2-d0e90b5d8b24 1 \N Other +3fb06571-1fbf-4179-9491-4c3f94b75ebe 1 \N Other +3fb0ba67-3861-43d6-80e0-21aa8a869266 1 \N Other +3fb5ebcd-05ef-4342-b2e5-dfa1e56b0cbf 1 James Other +3fc112d8-d374-456f-a49a-aeff48f1cfdb 1 \N Other +3fc2b3e7-c108-41a9-8b11-9ecc4582841b 1 James Other +3fc517e4-be9e-4b77-aaea-31088184ba94 1 \N Other +3fc63bff-a4a0-4add-b649-4fdf3bf4a1c6 1 James Other +3fc6701a-705a-48b3-bc49-dc6f49ee5464 1 \N Other +3fc6ee66-7200-4fb9-87dd-3a11a7e9f40a 1 \N Other +3fc8652f-52c4-488d-b3e6-de92eae24056 1 \N Other +3fc8892b-f5d0-4f89-b266-bc5ea657b3a0 1 \N Other +3fca20b7-3333-43b5-99db-888185da882b 1 \N Other +3fd91179-acc2-4f12-a376-123a93ff5d64 1 James Other +3fde069f-5172-4233-b632-1dd70ae5d97b 1 \N Other +3fe280e5-9d76-4c67-a25e-e495412f14e8 1 James Other +3fe5d6c2-25d8-4a81-8131-b9a2ab037288 1 \N Other +3fe5e7bf-b6ac-4591-8328-a3f98b7e58f6 1 \N Other +3feaf977-a68e-46b1-894d-ffc1ff4f746f 1 James Other +3ff08ae3-fbc6-41ed-af41-aa0e5946a8c4 1 \N Other +3ff246a0-a7ac-4862-9310-ad0430dd76b0 1 James Other +3ff63704-e731-496a-8f9a-359c76db33b5 1 \N Other +3ff78e64-a632-4ae1-abb4-4b56be8b1c8c 1 \N Other +3ff883e7-688b-4879-aea2-f8becc196528 1 James Other +3ffb5f2f-3723-4ead-b1df-dfc11bf3f59c 1 \N Other +3ffc794a-75e6-42a0-b647-57a1932aa63d 1 \N Other +3ffd557f-6794-4d0d-a1ec-181a1080ba77 1 \N Other +3ffd9490-7f16-48db-90e3-f0e448424e11 1 James Other +40020f9c-63df-45e9-8b71-37b1e51f6598 1 James Other +4002493a-7878-4717-90d7-e3a462649143 1 \N Other +4005231b-9a8c-4fd8-8006-9ee7a3105631 1 \N Other +40072d79-9277-4f37-9d83-8ba720b892b4 1 James Other +400a6348-3f37-4426-8e3c-bbc8322fa5ef 1 James Other +400aa500-cf1e-42cb-bc52-43f496421367 1 \N Other +400dd9cf-f39e-46dc-86f2-3050fe371c31 1 James Other +400f162c-42b6-4339-a732-ba4c8438f31e 1 \N Other +40114afc-c7e6-4f60-ace2-4e9eb7e6d3de 1 \N Other +40119bbf-3db7-4eaf-9559-77a2a367a9ac 1 \N Other +4011a53c-50da-4bb1-a9d9-2763e9badc60 1 \N Other +40144060-c059-41a1-9711-77ed8028589c 1 \N Other +4015350e-dcd5-4a84-ad39-20eb8b016018 1 James Other +4015ec60-9382-4522-a261-ea3f5ce57b6f 1 \N Other +401d09c2-35d4-40d3-ac01-a84f21f87b47 1 \N Other +4023d1d8-13f3-400d-bd7c-5c8ba6d8fea4 1 \N Other +40249de4-f521-4d0b-af87-d66ab3d6e7d3 1 James Other +4029e67e-0797-4a9c-b6b1-5488de485cda 1 James Other +402af189-01fe-4154-85f4-ab4f83a20fa2 1 James Other +402afa69-e37c-4a3f-8b39-2bfe624e7e92 1 \N Other +402c511d-60c6-4b43-b87f-0bdf35dc07c8 1 \N Other +402ce154-b41d-4b5e-a57c-a8e37728993b 1 \N Other +402d9ff5-ff3c-4313-adf1-f54b488a893e 1 \N Other +402dbf93-d10a-444a-bc18-1fe0eb2d12cb 1 \N Other +40353a9e-e6e5-43b7-8f1c-5d127788261e 1 \N Other +40367074-aa4c-4bd4-8284-041c01229d2d 1 \N Other +404129c1-d8bb-43b8-bee9-303cd96af10f 1 \N Other +4041fc0b-7559-4725-8ea5-c4558209fbd4 1 \N Other +4048a27a-b4ef-4730-ac88-025191504a9c 1 \N Other +4048cc54-9b6e-4af0-b990-85df8fae19d1 1 \N Other +404bde48-9c84-4aa7-a93a-7f6a4558b7b4 1 \N Other +404d21d1-5421-4325-99e2-4855c34ba94e 1 \N Other +405238a3-8410-4587-a288-02153797ba75 1 \N Other +405a9e52-9441-4d9e-9b05-3df1f0bd5634 1 \N Other +405dbea2-9ef7-41e9-9e9f-691920108a70 1 \N Other +405f196c-b3c1-4703-8a5b-23636d7f8ff5 1 \N Other +405fdf6d-1ea4-400d-bd01-b962284b5525 1 \N Other +40664241-f360-4648-90f3-25dd75221c55 1 \N Other +406bdca7-46c2-456c-9276-ad8782fd5aae 1 \N Other +406c311a-e705-4511-ada6-92b5cd791e70 1 \N Other +4076ecba-a7d9-4abd-bb5d-669e3d0c9311 1 \N Other +407726b9-37bb-498f-ae92-ef0fbabedd3b 1 \N Other +40777fa8-6a6e-4868-8388-f0faf5e9a733 1 \N Other +40790b7c-4d2b-4d15-b18f-cef360abeddd 1 \N Other +407f3363-68ac-4d5c-a646-2e2adce89b10 1 \N Other +407f925e-fe17-4b2c-ad70-72db14d89c25 1 \N Other +4080bdb6-dc42-4dba-9abd-ee845828793c 1 \N Other +4080ed7d-2db0-423d-ba88-0506f0945965 1 James Other +408154d5-e75b-4b4d-b4d6-82e03d00393a 1 \N Other +4083c5f0-1033-4ae4-a415-6642d907be46 1 \N Other +408e1816-9dd4-4184-a4d6-072e29873f6b 1 \N Other +409475be-4ba7-4574-a07e-b65ac1e6e97d 1 James Other +409c65be-8eb1-4e83-8c7c-e3f60b10ba24 1 \N Other +409e18da-c3f9-44ae-b2aa-a11240dd1ffe 1 \N Other +40a13ca1-500b-4d15-b8c9-5947635b65d6 1 \N Other +40a6a6f6-abaf-4d68-a848-17a4b9c4d6f6 1 \N Other +40aed739-e925-4b36-87a5-3fb2ede68791 1 \N Other +40af84ad-62f4-4203-ba8d-f75b65bfa648 1 \N Other +40b0b9ea-1446-4eb6-8b1a-5d37a8c141fa 1 \N Other +40b52d8a-4acd-4108-b946-1f5608bf67aa 1 \N Other +40b64b1b-ef3e-42c5-bf03-168ebba66888 1 \N Other +40bc4ac5-dfea-40f0-8a46-0e1c0c416bcc 1 James Other +40bde8f3-39b2-43c4-93b7-3d9b9301fd8b 1 James Other +40c0c490-4d4f-4d1b-a612-3ddfef788b8a 1 \N Other +40c4f0b0-3934-4e66-b31e-f6758f97a711 1 \N Other +40cc5500-22b2-4c51-a08b-3486bc303b16 1 \N Other +40ceb4b6-1e21-42ec-9fbb-2b1d4eebf1af 1 \N Other +40d3f508-67c4-40cd-94c7-8796870b980a 1 \N Other +40dba9fd-2719-40de-97cb-b03c8e036001 1 James Other +40e31999-e84d-444e-8971-e9f11d6875e2 1 \N Other +40e37bc8-b3c7-4eda-8004-883a6bca85c3 1 \N Other +40e5082f-7293-4d6d-ad13-409c755979c5 1 \N Other +40e5a72d-72b1-49f4-a4fc-877ef6dfe42c 1 \N Other +40e8ac15-3353-49f5-a670-6fdec25dc6c9 1 James Other +40ec804f-3e42-4caa-8bd2-1daa8f0b39f4 1 \N Other +40ee018c-b033-45fc-8eca-02ea629e8c8b 1 James Other +40ef7ab4-f29b-44e6-8f7e-b8a25656cca0 1 \N Other +40f67c03-4d28-430e-adb7-1ac980307dd5 1 James Other +40f80f10-b47a-47be-87d6-48ba73811894 1 James Other +40f9f68b-530b-4ed5-84bb-e1ea1ce3ea35 1 \N Other +4100000c-9367-4784-812f-66bd05d16e32 1 \N Other +410211ed-9be3-467d-bc9b-848a4ea5f8cc 1 \N Other +41046493-4524-43d0-b2ed-41b9509528eb 1 \N Other +4105fe81-169d-458f-841d-e480a61dc779 1 \N Other +41063119-1e8c-4d2b-b955-553f1e6feac9 1 \N Other +41065ea6-5a0d-4199-9d12-f475f91209de 1 \N Other +41066ab6-c433-44fc-9518-0d8e8db79d63 1 \N Other +4107ccd9-a3ab-42b2-bbd4-bfa7378a90e4 1 \N Other +410c5d36-3ad7-4e07-8dbb-c816869fdc97 1 James Other +410ce5f0-d556-46c3-b55f-abb1e72825bd 1 James Other +41104390-07f3-4d87-a641-1b65ee8dc347 1 James Other +41118f99-0918-4a40-9f74-03ea42101df0 1 \N Other +41191121-dfa4-4369-845f-69fb84e5d479 1 \N Other +411b2e75-aa98-4a0c-b455-84497cba65a3 1 \N Other +411c202b-ec35-4f39-a045-3b1ff62adaa2 1 \N Other +411e548b-8b65-4504-903f-b6f9de727a10 1 \N Other +411e6c81-2cf8-4c39-896d-15150141ceb7 1 James Other +41211d4c-7d06-4a8b-901b-3f5bedf6eaba 1 James Other +4124125f-e69e-448a-9b84-9df83f4e08db 1 \N Other +4124cb51-0541-4abf-b796-2c13a91e79f2 1 \N Other +412aa8a5-fcd9-40f9-b586-b22d499b185b 1 James Other +412fb9e0-7347-46af-af4f-d831364b0d41 1 \N Other +412ff41b-e8aa-4ef0-bb87-613886ffb32c 1 \N Other +41330f3e-b6fa-4eed-a61f-8c5a77f0986c 1 James Other +413506dc-3596-49f0-889f-fb03806e5209 1 \N Other +4137e2cf-5ce0-4363-b3ec-9e892018a1d4 1 \N Other +413e2eed-a1b5-40fc-89b7-534c9be75c80 1 \N Other +413f6e98-6bbc-4bbf-98c5-fcdd762bbe43 1 \N Other +4142be74-2432-4a96-b282-e6a8c2116b2f 1 \N Other +414498f1-2b35-4198-8ae2-8f5e3ec0bc0d 1 \N Other +4144a80e-3603-4b71-b97a-5b7286b3373e 1 James Other +4145b84b-a693-416e-a2b9-35db68de663e 1 \N Other +41477e99-8db9-4544-990d-c49b4570338c 1 \N Other +4149ac96-c105-4446-9686-692735b9fb77 1 \N Other +414b81ef-2db3-498e-a552-dead67228656 1 James Other +414bac22-1d25-4660-ab57-590379529105 1 James Other +415253f5-0854-4acf-8db6-5d00f084d4e2 1 \N Other +4154f593-cdcf-42f1-8ad3-2bb10e3c5359 1 \N Other +415644c7-73a9-4c8a-a081-f4260784362a 1 James Other +415678dd-5c39-4a8e-a689-0be443cd7c70 1 \N Other +415944bc-746b-4348-881a-3e932981b242 1 \N Other +415bb7a2-32dd-433c-b0df-abe556b108a3 1 \N Other +41664ae4-2349-11e8-94fa-fa163e8624cc 1 \N Other +416c3f0b-b22e-46b2-8880-0430e98169be 1 \N Other +416d6037-b0ae-4536-ab65-940933f7f01a 1 \N Other +416e359c-28bd-42ce-890c-98e361ed1d64 1 \N Other +41732c05-0e5c-456c-9e74-a9e404b977c8 1 James Other +4177ca2f-3a0e-4412-ac00-c2710f40e560 1 \N Other +417ade2a-4b40-45de-84bb-8704b122317e 1 James Other +417b6952-57ba-4e02-90ac-80f9895a2b2e 1 \N Other +417ba207-1601-46ea-83ac-8a64c9dfa262 1 \N Other +417bca3f-7e91-49f2-8f14-0184d30028c2 1 James Other +417cdb46-e01d-4bb3-a5e8-978a5aa69c88 1 \N Other +417ffdaf-990e-4d04-a08d-84a46e192a1b 1 \N Other +4181d1a2-2588-4a7b-bcf3-bd4c1fe9263e 1 \N Other +4188e1bf-5f05-4a69-b130-310425a2cc52 1 \N Other +41893086-1697-11e8-8c28-fa163e8624cc 1 \N Other +418c3fb3-5888-4f09-8537-778575f1a8eb 1 \N Other +418dfb87-2ea1-4010-96b0-84f9f127a069 1 \N Other +418eccb7-1b00-4642-9da1-c9515262518e 1 James Other +418edb94-2ce7-4f33-8077-703e761fd086 1 \N Other +418ff0d8-2349-11e8-b993-fa163e8624cc 1 \N Other +4191f325-12c6-40c2-b07f-a5312d7662a2 1 \N Other +41926cb7-e26a-4820-8671-6be8f3c3e2aa 1 \N Other +4193f3a2-0fa2-4f1b-925d-032a9ccbdaa5 1 \N Other +4194d34b-ed1a-44b5-a1db-c370871d7e03 1 \N Other +4194fe07-7523-4f15-a2f4-511b5c929934 1 James Other +419ba6df-396c-4eb8-b696-88de7a274920 1 \N Other +419d3d89-4670-490a-86dd-f5f566b504a1 1 \N Other +41a147e2-a541-424c-bde6-e861f4d73800 1 \N Other +41a34e08-df72-4e2b-831e-7eb448a95f83 1 \N Other +41a9fdef-d9f8-4797-8cd4-6f262ea887cb 1 James Other +41ae1c87-7800-49d4-8bb5-a22a91fa864f 1 James Other +41ae45cf-57be-42d5-96ad-7841116fc0d9 1 \N Other +41ae9c92-b582-4403-87db-d0b431a4fef5 1 \N Other +41b2e673-fa3f-4e86-89b9-55e5886b2929 1 \N Other +41b33f2d-21fe-41dd-829d-c4da334d4500 1 \N Other +41b60b44-d5d3-4fa5-aaaa-50d36b4af94c 1 \N Other +41b8bb25-6585-49fa-bc79-f67a46e4f70c 1 \N Other +41be61b0-a567-496d-a945-df23fe6908ca 1 James Other +41c16ab4-1697-11e8-b05e-fa163e8624cc 1 \N Other +41c21402-c7ad-46b4-b7fa-f77b3032f50a 1 \N Other +41c324f8-21b7-4d45-8a6d-3533ab012647 1 \N Other +41c66148-4b1b-4a3f-a60d-97370cd820e0 1 \N Other +41c996d8-c9ab-4848-832a-c84c307b2de6 1 \N Other +41cbb2e6-0f60-4a70-8be7-09fdff0af630 1 \N Other +41cbd94e-fe7f-4d8e-9a4a-f6c056433838 1 \N Other +41d06669-7962-4e03-a83a-98a9e2ffcb03 1 \N Other +41d3f45f-5883-44ba-9c56-6e547e1fd1e9 1 James Other +41d8ff7b-e5c8-4bff-a348-95c24b7e0810 1 \N Other +41dc03d2-492d-413d-b487-89fab9b99a85 1 \N Other +41dcc1f3-6291-4788-91f1-ed79c8be468a 1 James Other +41dead56-732c-4c0b-9dc2-14f88422929c 1 \N Other +41df856b-fda1-4bb6-b762-c42d4baaf967 1 \N Other +41e2a450-27a3-425d-86fe-642124756bfb 1 James Other +41e40e3a-228a-11e8-85d3-fa163e8624cc 1 \N Other +41ed92b1-d859-4010-8ca9-e46eb0d7df44 1 \N Other +41edf4e4-4c75-4bcb-b62a-707b6bda8349 1 James Other +41f0991c-9e2f-439f-b8b6-e9d79ee90624 1 \N Other +41f2411b-2fb2-4fef-95df-db522ec75797 1 \N Other +41f7b66b-c5fc-4696-94c2-7aeb54aea8ac 1 \N Other +41f803cc-891c-4a61-8880-8c2480fc2880 1 \N Other +41f90465-eab7-44a0-96d6-9ee8c158f950 1 James Other +41f9f5ad-682e-4351-b353-aeb56b0eacab 1 \N Other +41fa7da9-7e37-4c70-808a-6e0bf0abf016 1 \N Other +41fbbf4a-f29e-4caf-b5dd-c7f1c362fbdb 1 \N Other +41fd9e4c-00f0-11e8-a8c6-fa163e8624cc 1 James Other +41fdf36d-b5af-412c-9025-903b98a7ed1c 1 \N Other +42006caa-c1a6-4cc5-9dc7-c390f5521311 1 James Other +42042fd2-0b1b-44ff-a394-7cab9da071e1 1 \N Other +4205a5ef-d998-4926-8212-9a001d350db3 1 James Other +420b1f9b-aaae-447e-9cc9-9ece1a0baa13 1 \N Other +420e2c2c-cc3e-482a-a270-ed7820f51d0d 1 \N Other +420e6a7b-46a5-4bf5-a7b4-8292e09b23f4 1 \N Other +420f8dcc-390e-4aad-b3a0-1259c6f83e16 1 \N Other +4211a3cf-4349-476d-a6fd-d79c0cca4dd2 1 \N Other +4213359a-dd97-4273-b723-aa8d52f518d1 1 James Other +4213c63a-de08-4c4d-adc4-1202910346ac 1 \N Other +42158571-1f4a-44e2-85c6-c6e4db7aa9ca 1 \N Other +421c1004-de91-45d0-86c9-4287a52ebadd 1 \N Other +421cb48c-dc8a-4212-a1a7-468e7ded9fe6 1 \N Other +421d617a-0ae3-4c6d-8433-01b9a4c2273f 1 \N Other +421db39a-ee15-47a0-8e48-ab5923bb2d19 1 James Other +421dbe64-502d-47ba-9d4f-a793057ba551 1 \N Other +421ed538-228a-11e8-a6c7-fa163e8624cc 1 \N Other +42254b1d-2297-4209-912e-4232a5b1e6ad 1 \N Other +422579fc-dbbc-40cf-bd9c-b5581c942641 1 \N Other +4227350a-fb93-4c81-86de-f115e11bd0ae 1 \N Other +4229d33a-6926-45b3-83c2-ee19fe7362bc 1 \N Other +422caadb-0a08-4df0-9a06-c9ecbcf41905 1 \N Other +422e2c15-1a18-4859-b645-f2f051e03979 1 \N Other +422f1b8c-b9e2-4907-b373-6af000b09ac1 1 \N Other +42317454-228a-11e8-afc6-fa163e8624cc 1 \N Other +42322e19-c840-4cc6-9bf0-27bbf37379f1 1 \N Other +4233da7e-e754-481e-bbcd-1b973a76425b 1 James Other +423d54f5-328e-41ea-b750-22b8adbfab4d 1 \N Other +423fc486-3252-4891-919d-70c59c34aa91 1 James Other +423fed08-1e97-41d9-8ca0-49c55fde6cc2 1 \N Other +4243decd-988b-4464-bf45-34e7af43103d 1 \N Other +42440a0c-43ac-43ec-8bf4-94c590748c8c 1 \N Other +4252e1e8-8538-4305-bad3-7bff65d6300d 1 \N Other +425465cd-07c5-4ace-8274-499a9fcf36e8 1 \N Other +42551254-0c4e-415b-8015-8db5a1352549 1 James Other +42552e45-d7d5-42e0-85f5-6b37b6fa7751 1 \N Other +4257adff-1720-43b4-a74e-df20ceef65e4 1 \N Other +425b1bce-228a-11e8-a3cf-fa163e8624cc 1 \N Other +425d613f-0541-4add-9041-fced271bd035 1 \N Other +425d8340-b45e-4250-863d-a4051338df3d 1 James Other +4264f750-b19b-4a8c-9f38-1b042c1cad75 1 \N Other +4264fb21-9f2f-4695-8da7-4cfc2e82fc7f 1 \N Other +42687503-63dc-4963-b8ce-098877fdcde1 1 James Other +426c6439-3614-40ae-9c22-8034ed0f6940 1 \N Other +427213f0-05a7-40a1-b02e-3d81da955e47 1 \N Other +4272cb50-7d26-4e57-8058-ab87ab6e7ad2 1 \N Other +427ca2cd-bcc7-403c-8cfa-f2e4660f1406 1 James Other +427de5df-1b9f-4e43-97fa-cbc8b7060a88 1 \N Other +427ef253-801a-4ad0-854b-431fbd9ab80f 1 \N Other +4286957b-0335-4593-9bc4-38d25482b7d4 1 James Other +4287c89a-abbc-4126-a2ed-bc184e21684d 1 James Other +428a5088-1045-4cc1-acc2-6b4ba37b0d1f 1 \N Other +42921181-aa53-4b4a-b40c-3db26f501c85 1 James Other +4293731a-aa87-4d97-a017-7d9e1c52c36c 1 \N Other +429ce29f-9ace-4ce6-929d-268b7cc34aef 1 \N Other +429f5bad-caac-49db-8fc3-5648d4dca5d6 1 \N Other +429f83b3-949b-4e04-bb53-4737c8fd036b 1 James Other +42a06247-4e7a-42b5-b5e1-2d3afbc0dfd7 1 James Other +42a0b7a1-de14-4ec4-bdef-e6f39441faba 1 \N Other +42a14c32-7bb3-4698-849f-e7af00c1e461 1 \N Other +42a151b6-d4f2-430a-b2ef-e2055c635377 1 \N Other +42a31860-0281-492c-956d-0dcbb7789047 1 \N Other +42a52d8c-4ea4-4b87-9772-2128ac937958 1 James Other +42a6d784-2fe1-4620-a76b-3d5eea53e163 1 \N Other +42a7a300-51d3-4635-b438-4c0b520bfa5b 1 \N Other +42ae7b19-04c1-4038-aed7-782d07b21148 1 James Other +42b0a7ad-41ba-4583-95ae-a06d33fad287 1 \N Other +42b5548f-a66e-4ca4-8779-04a3b5acc18b 1 James Other +42b68b49-afd5-400c-8970-76349331d7a5 1 \N Other +42b759e6-edb7-4178-b25e-e3ac6b3f6a8d 1 \N Other +42ba3ea2-37e2-4e23-bb00-a925e9dc847f 1 \N Other +42bb2834-8f60-4990-9069-cd3960f021ea 1 \N Other +42bf1fcf-578d-480c-b469-c39277036ecf 1 \N Other +42bfed39-7686-46ce-9ae5-8664e5a78fe5 1 James Other +42c2f06f-58a0-4a03-a8f6-a313b1e3dd07 1 \N Other +42c47cf2-7f39-4c4c-b394-1f45dfcfa242 1 \N Other +42c66ab5-53af-4f2a-b0be-c199879ccc86 1 \N Other +42c85838-db4a-11e7-9814-fa163e8624cc 1274fc8c-64ed-11e7-ab3f-fa163e4dd901 James Other +42ca4fcb-588a-4b66-af1b-d539da28f63f 1 James Other +42ca9465-033c-4952-9e99-f984988ccc05 1 James Other +42cd5a53-acca-4df7-a7e9-ece5874ce30d 1 James Other +42cee429-26ca-43ac-b870-142813c62148 1 James Other +42d0c19c-d5ce-4c37-bd9c-0791f00de694 1 \N Other +42dcdcb8-cbea-4d4e-aed3-3527edb81ff8 1 James Other +42dd5780-8b29-49c5-9093-28b81683c610 1 James Other +42e06cb6-44a7-43e1-b832-a683a8c1453e 1 James Other +42e1e52f-3223-4fca-949b-47143c69e977 1 \N Other +42e4cc0f-e408-4a9c-b3b6-dec7721b1dda 1 \N Other +42e8e268-ab9e-4e2d-9e58-8c64f345215a 1 James Other +42eab177-4adf-4e9b-b9e1-b226332f2dbf 1 \N Other +42edbc23-903c-46a0-a9d3-f7cd00b6e503 1 James Other +42ef477a-e2f0-4fbd-a5cc-57ec7cffe07c 1 \N Other +42f0800b-ffa1-4ae4-8df6-fd13533c81f7 1 James Other +42f0e18e-d2f5-45e3-a7f2-94470849af3b 1 James Other +42f152d8-8aa5-4d41-b5eb-cd97a9643340 1 \N Other +42f1db7e-77a2-4349-9f61-6a5fa53e6243 1 \N Other +42f47264-ddb7-4dfd-8b72-518e4a86c342 1 James Other +42f6677d-d310-4011-8697-97ff44b1cb25 1 James Other +42fd3dfd-0ba6-457e-989c-e89622a89936 1 \N Other +42feb503-8f2a-4c66-b8b3-054f1f3a1156 1 \N Other +430154be-67a6-4bee-a579-ed53d139026b 1 James Other +43025510-0569-45da-b4e5-256c41dcfd54 1 \N Other +43055073-9eb6-4d6d-9171-4b4165f89020 1 \N Other +43080406-4988-403d-977a-77934fb6983e 1 \N Other +430c4736-ea69-452f-ab98-a368d4ead40d 1 \N Other +430eaf3c-4e7b-487d-8b5d-dc9fee987a68 1 \N Other +4312c1d4-c03f-410a-a4f6-c40523783cf0 1 \N Other +43135ced-2eaa-4b07-9f65-5ea3b69bd950 1 \N Other +4313a3b4-85dd-4723-a218-800e5a79a73f 1 \N Other +43156f0b-10b9-4536-a61c-27f12951627d 1 James Other +431ab2b7-19c3-4136-a9ef-717f009644c0 1 \N Other +4320f0b4-e5c9-4735-8b38-9634dfec118b 1 \N Other +432e7e65-6487-4eae-9647-d505edad9ffc 1 \N Other +432f00c4-abac-483a-ab47-e42b565ea121 1 James Other +433197e2-0d9c-49a5-9782-20f73e96166c 1 \N Other +433278de-4af2-4a8a-b7aa-857454c7cd8e 1 James Other +4332fee0-0508-4d26-9e4e-cdd9ab33d2ab 1 \N Other +4333cbd1-c1bb-4316-bfe1-eae40915a36b 1 \N Other +4336c1c4-e562-4558-9ece-9d095998b299 1 \N Other +433852e0-62b4-4f6b-881b-a0d6a2153352 1 \N Other +4338744e-dcee-472e-a0ae-51bf233314b7 1 \N Other +433a83c4-9215-4a1a-8439-bb8b3f8855d6 1 \N Other +433c4cb4-0224-41b9-95cd-c2ba5442a806 1 James Other +433c56c1-7cf8-438c-aa66-591ee7a29361 1 James Other +433e5a63-7ec2-435e-a733-43e22b7c935e 1 James Other +433f0219-3dad-456b-81c8-84b768acc977 1 \N Other +433f03de-c5f6-4fb0-92ff-39a46e1c7108 1 \N Other +43405f70-6f8c-4200-8007-d33a1aa4c387 1 James Other +4342c2a0-f46f-4746-b106-0b7fd1b868e2 1 \N Other +4343dc2e-d11d-4640-a967-4309bf131e8e 1 \N Other +4344aedb-5c1c-4cbf-9e6e-77add9dd55f9 1 \N Other +43452a7f-2535-4e0e-8c0f-de6775646e41 1 \N Other +4347850c-dd7d-4111-8dd4-fa976eb9a524 1 \N Other +4349b9b7-3393-44ac-a72d-f315e78e38ee 1 \N Other +434ad9a0-6e21-43d6-a604-380cf50c1bb7 1 \N Other +434de6b2-2958-4934-8b6e-23308302593c 1 \N Other +4352038f-48da-4190-94ab-b8ab7d0c0c38 1 \N Other +43598583-aa7c-493f-8808-daf6249bdb0a 1 \N Other +435b03b0-b87b-4281-b0f1-8f1a53449b65 1 \N Other +4360e942-6d45-476f-8d10-8bef0f703d6f 1 James Other +436410ae-7c27-47dc-b478-0da0ba4b81fd 1 James Other +43649d3a-3b28-402f-90dd-e19957a4f432 1 \N Other +436925b4-b001-4eda-b716-9670fa00533f 1 \N Other +436a5c93-c95b-423d-a847-d5d6bc898f98 1 \N Other +436aa0f5-a927-4a64-b60b-05e5bac4f2bb 1 \N Other +436e4e80-ff84-47c6-bd10-344d8e3ba96a 1 \N Other +436f8151-274b-452c-834e-b55325ae44cf 1 \N Other +4373ae0f-8681-4366-b67a-3904eeef8e68 1 \N Other +43776c85-a20f-4e70-bf5b-d95f2656f42d 1 James Other +4379d7dc-0da5-418b-ae89-27f97e3ca83e 1 \N Other +437c19b4-e5c9-4fca-bda2-aa8ec8260152 1 \N Other +43828026-9e76-4de6-8418-15c629c3a12e 1 \N Other +4382d56e-fb27-477f-808b-7cd17c93a3a8 1 \N Other +438350fd-70be-463a-9a07-7c358191a3c4 1 \N Other +43884e3f-3a47-4baf-a263-8418d6838ab4 1 \N Other +43913859-84f5-4474-adfd-c8a4f3b32d45 1 \N Other +439167b5-60da-44d0-8487-ca6327940b07 1 \N Other +43926115-61cc-4220-8c34-cc07d4bb4cd6 1 James Other +439aeae5-c9da-484f-b6ba-23778003eea3 1 \N Other +439b3037-9893-4412-a8d2-8c3e5bf1345e 1 \N Other +439d4837-93c1-4545-975a-081ca7eceb7e 1 James Other +439f20d6-687f-4735-98c9-b69a13e086e0 1 \N Other +43a3f4df-deb9-4cdb-b8a2-0684181afee2 1 \N Other +43a6e4e6-4bd9-4803-a1ef-f434cad51bf0 1 \N Other +43aa6974-ad02-40a5-8687-fc6ac4e1aa74 1 James Other +43afdc53-a1e0-4f73-a9df-fc54af726cd0 1 \N Other +43b1c70f-509b-4c43-bfe7-df7fbbc5077e 1 \N Other +43b346cb-dc0c-4784-841e-7ef29300e411 1 \N Other +43b474c6-7ec5-4d2e-97a5-e9969e5b8a16 1 \N Other +43b57f2b-9fe0-4d64-a3ac-19eb79da6a0e 1 James Other +43b5a320-0460-4fdf-a9f0-91b5c3263cbf 1 James Other +43bb6a5f-223c-430a-a775-88df08de3492 1 \N Other +43bcb42f-c1a6-46c3-883d-80ca5ba46cc0 1 James Other +43c17d48-e057-4016-8933-6acd3e2b529d 1 \N Other +43c1e9fc-034c-4e32-8152-419ff30cb4b9 1 \N Other +43c2eb9b-913c-46ce-b9c6-e20311b42ac5 1 \N Other +43c41743-6bb3-4871-8953-add03ee2c47d 1 \N Other +43c60c44-fe61-43cc-8b01-46389b29f78c 1 James Other +43c85a93-e8a6-4ec6-b40d-99245f938c5e 1 James Other +43c97d3a-41f8-42a9-b2b3-ea50fa68ead8 1 James Other +43cae156-da81-4224-b0ca-436080984fdd 1 James Other +43d22b44-8952-4645-9b97-b94672e17344 1 \N Other +43d67494-f432-41f8-b7ae-1eb6efb706b8 1 James Other +43da8899-4c28-4ee4-a8f5-80d8781012f4 1 James Other +43e21803-88d6-4e43-a6aa-76d10bafdb39 1 \N Other +43e57506-0437-4b28-8aef-0d7c993c20b3 1 \N Other +43e686e6-f58c-4880-ae52-13aad79f4487 1 \N Other +43e77df2-730c-4964-a82c-df1b88844ad4 1 \N Other +43e83368-813d-4699-9324-e17b0ff46053 1 James Other +43e93feb-a205-448d-92a4-a888848f6257 1 \N Other +43ec42ca-25b8-4a68-9d42-73c71527943c 1 \N Other +43f8b9bf-add3-4e1e-8a84-9ba2641a7734 1 \N Other +43f907fe-8778-4771-b7b6-01d36ef32458 1 James Other +4406b82f-e331-4db4-90e0-0dce946dc3b4 1 \N Other +440a87a4-2c74-4868-a8bc-99ffe0b65497 1 \N Other +440b6ba8-b9b8-42f9-a953-97a3cb0cd964 1 \N Other +440bb1b0-71e5-4b8b-a68b-e2ea77533372 1 James Other +440f0c9b-9c78-477b-a638-f67b8f70cd45 1 \N Other +44190bb1-b41a-49f3-b065-ebfb0613bd83 1 \N Other +441967cf-4b03-490c-858b-3740bb08b763 1 \N Other +441e5b83-22c8-4d09-9da1-85f2c63d7428 1 James Other +441edd4c-a010-4e56-b6da-81f71f390474 1 \N Other +44205478-1368-47a5-bc8a-b59e84d01d2d 1 \N Other +44218f0d-2779-46b6-886a-cae6341ab2cb 1 James Other +4427f929-5dac-42db-b1ee-dcec05221585 1 James Other +4428b1c9-6ac4-4712-a21f-d496a4cf66b2 1 \N Other +442a1a12-9e9e-4a2c-bdd4-a55ee3b03ee3 1 James Other +442b2f11-a6a0-424d-bd99-0adc9e83bdb5 1 \N Other +442b4104-39b4-4799-9662-e4588b96817b 1 James Other +442c2797-f225-4c8e-87b5-d9e526da09e0 1 James Other +442d1da8-377f-405a-b107-4836060ec512 1 James Other +442e79f7-330a-4df6-8d1c-e7b97ba95138 1 \N Other +443826d7-51ba-4e79-8951-771620658ae4 1 James Other +443983b7-2c5d-4525-8078-fa9a1b9c99b9 1 \N Other +443f82ba-905d-4338-93c5-2c1e533b0a53 1 \N Other +4440e4cd-1a2a-4c42-a045-e7722da8dd99 1 \N Other +4441f5a1-cdd0-4cb0-8a2b-e2f6f3c6268e 1 \N Other +444477ea-47af-491a-9e82-8f76fdc7a1f8 1 \N Other +4446a8d6-abf5-4317-aa70-bb608854b0b1 1 \N Other +444bb5f5-2136-407e-978a-109633917bf1 1 \N Other +445074f4-86f4-476b-8f31-73589d3b409d 1 James Other +4450dc3c-983b-4ac3-97fd-48abac1179da 1 James Other +44556639-d9c1-4c3d-bd03-b2fc1620499d 1 \N Other +44562648-cafa-4a57-821f-cfad9c3428c5 1 James Other +4456e6eb-66fd-4b59-acef-a6182984ebc1 1 \N Other +44588626-db30-41ff-93b4-df2b4656b714 1 \N Other +445b8ff8-3920-448a-bbd1-9132bd2db14d 1 \N Other +44610c59-eb85-4c10-8104-8a3536df8556 1 \N Other +44612ce2-9d5f-4b2d-a8ca-1f968a5518a2 1 James Other +4466539b-d7f8-4df3-a550-1c35dfeb0507 1 \N Other +446dd8c0-6acd-4de1-a969-0cc31d9562d4 1 \N Other +446debf7-f1d0-4407-a699-eba2046362b0 1 \N Other +446dff37-ee47-4261-aa48-3326a5ae91ca 1 \N Other +447044db-2c8f-48e4-a4a3-1934cf5813f6 1 James Other +4470ab73-924d-4f42-a611-fa59fe0e5417 1 \N Other +4470aedb-5dcd-4117-8f32-1222ba53e5d3 1 James Other +4473be87-c6fa-4da4-9008-2ab3a7c770e0 1 \N Other +447516a4-665a-4c66-b1d8-ebb02b5fb8b0 1 \N Other +4476ce45-873d-432d-aede-3cb9bb3c6d9a 1 \N Other +44784cf6-d30d-44bb-9250-49242b0a829e 1 James Other +447b95a2-eaf6-44ca-abd4-9f069f2ceac2 1 \N Other +447ce62e-63dc-4b4a-bd9d-37771d809407 1 \N Other +447e608d-f88e-49d8-ad4c-e68d198e4797 1 \N Other +44850e77-6743-4fc9-8b4e-189bcb945c74 1 \N Other +44876b33-351b-491c-b68d-6fb210d98669 1 \N Other +44889952-9eed-4688-89ff-2f0512be2f27 1 \N Other +4489fbd5-cfda-40f2-aeb8-9eb92c89d07c 1 \N Other +4489ffe6-5f73-4c6c-9798-10c3a240fb12 1 \N Other +448dc899-b975-45cd-a5f4-b012535cd582 1 James Other +448f8b77-03be-45d0-a6ac-be0be60e058b 1 \N Other +44918270-fc0f-4a48-a912-17620dbd2a83 1 \N Other +44931d2a-6ffd-4ed6-83fd-d460c3db10ea 1 \N Other +44968622-6f37-4acb-8929-ef0b400fd59e 1 \N Other +449cb6bd-132a-4f0a-b80f-b92d723a86e3 1 \N Other +449cda6a-5b42-4bb8-adb6-c0aaef8461c6 1 \N Other +44a06c45-09f3-45cd-bfff-39d143d3f99f 1 James Other +44a1027b-5dd9-4a9e-ae95-bdf602ab8795 1 \N Other +44a1a0d7-760e-4e70-868e-024934a0a0ac 1 James Other +44a2ccfe-b11d-4e96-9a51-035530c0726b 1 James Other +44a65001-6e38-4e8e-8c96-4f1d60f3e71d 1 \N Other +44a782e6-c5d7-4b87-abc4-63eb5fe57afa 1 James Other +44a86f58-cb07-4420-a515-242f3678a9ee 1 \N Other +44a8cdb4-7ca8-40ee-ad52-a0a0fbaea31e 1 James Other +44a9b532-87fe-4ca6-ad9a-7b36d90d1d55 1 \N Other +44afe958-ca66-45ca-9ab7-526843e0ea85 1 \N Other +44b0f156-c784-4c09-94d3-b5c83850a369 1 James Other +44b1b5aa-dabe-447b-ad49-90aa56da744e 1 James Other +44b395c0-042d-4e06-8ec0-b237ff3a9c5a 1 \N Other +44b44bdf-d97f-4f97-8209-56093271d87f 1 James Other +44bf0c43-d26d-4962-8702-92d7c675371e 1 \N Other +44bf1016-93fe-4014-ab18-cdc8eb7c42c9 1 \N Other +44c25957-d9b1-47d7-aa22-2afe3aa325f7 1 \N Other +44c552de-947f-476a-a4e6-f116a35211e1 1 \N Other +44c6ca7c-257b-4ff9-a01a-9105648782d6 1 \N Other +44c6eac7-274e-455b-8781-313ed803e3f7 1 \N Other +44ca4dcb-465e-4208-89da-ae1bf1119f9a 1 \N Other +44d1d744-f050-468c-aa19-9d9908e94d81 1 James Other +44d3ba7f-8ad0-4899-b6bc-ae0952baabb5 1 \N Other +44d4413f-d75e-4d81-93b4-7bf4556a58c5 1 James Other +44decbc9-1bc1-4c5f-8bab-dd391df6b6e5 1 \N Other +44dfd8d3-0fc9-4809-8b2c-0e234eff0ae7 1 \N Other +44e0545a-5014-4b11-b1ae-54ffe9af5cbc 1 \N Other +44e80796-0423-457f-a1c0-c66b51e1aca7 1 \N Other +44eb8cc5-cb64-41cf-a6b9-778ea9a00ac2 1 \N Other +44ed2883-b3ba-48bd-9582-d43fea5cdf25 1 \N Other +44ee5ac3-d285-401d-8c9a-1b9829abf098 1 \N Other +44ee76f8-5b04-4551-a499-4a4906616265 1 \N Other +44efdc01-a2c7-47bc-97c9-5bf5faf377e5 1 James Other +44f04147-03c0-4e29-a3ef-adc969f7953c 1 \N Other +44f05a4e-36fb-401d-b091-2b43aca24a4f 1 \N Other +44f449d9-c2c4-4b02-8441-0290a3b00973 1 \N Other +44f7e226-0acc-4174-8448-62058b3ad41f 1 \N Other +44f91642-643e-4403-86a5-5e409b2d91ba 1 \N Other +44fc9ad2-a0c7-4fc4-b3b0-de57b6670a42 1 James Other +44fda522-5b25-4296-b0d7-d533734eb354 1 James Other +44fe1e46-381d-4f3d-9453-0c81f14fdb13 1 James Other +44ff24c9-fccd-49c5-928a-62aeee268a80 1 \N Other +4506c1f5-7230-404d-9595-ab104bb2890c 1 \N Other +450cdf52-4b72-4aa8-b162-8998a85ecca9 1 \N Other +450eb49a-38e9-4c3b-aed4-72eec886bfbd 1 \N Other +450ee8df-033f-4f6f-8e44-60cfeb355412 1 \N Other +450f9fb6-bbe2-410c-a217-906959d8db15 1 James Other +4510aa25-7991-43d6-92d1-1602d25584dd 1 \N Other +4512f96c-8e30-4b79-a3b9-53f300b6a9a3 1 \N Other +45147ace-1408-4a9c-a15e-2fb7e7aad055 1 \N Other +4515c35e-eabc-412a-971b-452c9cb8d694 1 \N Other +4517b1a4-0869-49e6-9bdc-33ce709ca9b6 1 \N Other +4518ed0d-be36-4919-bd18-353098a09b86 1 \N Other +451e8f8d-2a45-4662-bf28-dba268792824 1 \N Other +4521648a-ff1c-4ace-8314-bfe20d9a681e 1 \N Other +45229b02-716c-44da-83d3-7414cd75a220 1 \N Other +45232e1f-7711-475e-ac74-aa78dbd6dcd7 1 \N Other +4525053f-1560-45b5-9b91-0e891ef4c802 1 \N Other +4526b0ef-60b1-46ed-a0f6-bdc11ecdeb24 1 James Other +45370df9-e30b-4b0f-a7cc-8274850e72ca 1 \N Other +453d5360-99f7-43bb-ac27-d35a097446d2 1 \N Other +4541b5fa-4340-48ef-9c41-8dc56c915bf9 1 \N Other +45435f74-4894-44d5-af1d-d12522db0d5e 1 \N Other +454f8837-0cf4-45df-86e2-3d4e29350fcc 1 James Other +454ff50d-f50d-4d7e-9b96-92709ebe6ea7 1 \N Other +4550a6d1-2f92-4b73-b08c-83e8575b4dc8 1 \N Other +45533993-bf29-4208-9fc5-05c6ef1a3f2b 1 \N Other +4555feef-e791-4934-9c31-34ff41545781 1 \N Other +4559e483-0031-4706-b874-33f98a5e7b0d 1 \N Other +455c14b8-25f4-4112-9d63-9a6260a8fa51 1 \N Other +455e4993-96dc-4361-9620-fc0dd5f01378 1 \N Other +45609be7-591a-4d60-82c6-69e7db0888d0 1 \N Other +4565e87c-8981-4ba0-a65a-9e78fbdfae19 1 \N Other +456b8a81-4cd6-4a59-8d68-9b34e88eb380 1 \N Other +456ca1f5-4309-4b85-957f-fe5fa94378e1 1 \N Other +4571d1af-658f-4ddc-bc41-16ebab2a152f 1 \N Other +4577d957-760f-439c-8bfc-c29b64abe91e 1 \N Other +457b5eee-50c5-4889-baf6-d994566e8da7 1 James Other +457db70b-61d0-4cbc-9d05-265c802d3dde 1 \N Other +457db937-e2e4-4dd4-8294-01637e87f9b1 1 \N Other +457f8107-7888-4f06-aba9-9ce831fb712d 1 James Other +4582ba0b-73cb-4998-bdbb-29e6ab7f4b94 1 \N Other +458320fe-0b1e-11e8-b68a-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 James Other +4585f715-21ac-4be0-992c-cbfc5d0c66cb 1 \N Other +458796e1-7914-4de7-8d83-99f50aacf95a 1 \N Other +45892de9-b31d-430a-8cad-080209fbe75a 1 \N Other +458ce0e4-6963-4006-9fdf-c4d87b71e054 1 James Other +4591c878-9d65-4c78-9460-13f51c117e48 1 \N Other +4591ec0c-4fb3-4be8-83f0-12d2a3d366ae 1 \N Other +459227f5-b83d-4118-830f-8f09c99e9596 1 James Other +4592ed83-0897-4ffd-8bec-83240d6aeef4 1 James Other +45965f47-b606-4361-9ba9-096cec71fb3d 1 \N Other +459a873d-c2d4-4caf-8dac-36a68880adf6 1 \N Other +459adbb4-9f40-4b17-b4e7-5f57a3f57137 1 \N Other +459b8d72-c825-4267-b28f-833ead0290a3 1 \N Other +45a1b36c-19d2-4b42-be89-ce7f2cd67dd3 1 James Other +45a5ab10-0376-4884-91ae-678d9a441f84 1 \N Other +45a67edb-96f1-4589-a7d9-dec1b0896909 1 James Other +45a8c0e1-901a-4442-8613-baa095bad035 1 \N Other +45abf0eb-194c-43c1-ac26-0e51049309ef 1 \N Other +45ae0fc7-cbef-4a00-ab43-9e8d12a9e55c 1 James Other +45aed5fc-7269-400b-ada2-977cc0b82e61 1 \N Other +45b02fd8-5672-463f-8712-2d1e781f016f 1 \N Other +45b0603b-1f67-4402-be86-4c65f6a27877 1 \N Other +45b07c02-cda5-48fd-9dc8-559d4ef159d8 1 \N Other +45b19512-1f26-47b3-8ee2-01ae0209ceea 1 James Other +45b1a270-98c3-4cce-88be-f627f1d684ff 1 James Other +45b3d45e-be9c-4387-90ac-c670152cb116 1 \N Other +45b7860a-0cf5-4dd5-a6fa-9e228c108ea5 1 \N Other +45b913b6-ad5d-4a86-b102-0b2f087e3808 1 James Other +45bef3e0-94f1-4f14-814b-267dc494880e 1 \N Other +45c3d438-8290-4e27-9ac2-a53ad4e12279 1 \N Other +45c64f7a-885c-4433-a8e8-244b55784a63 1 James Other +45c6df58-3897-40f3-957c-f51ba45290a7 1 \N Other +45cc8fb1-ee89-4c24-8b33-b83b2945178f 1 \N Other +45cc9d9c-a2dc-473e-b924-a576c0867d6e 1 James Other +45cf59fd-457a-4c65-abb9-74d02352f6c8 1 James Other +45d1eae4-70be-4dbe-8c2e-ea4abb445e40 1 James Other +45d2fe9a-466c-46ce-b228-36b1551f2534 1 \N Other +45d74f0a-acb1-4432-a991-29d67884e4e1 1 \N Other +45d8443e-0c55-4cc9-b5c8-9c4fd441415c 1 James Other +45d8c582-0eaa-44df-a12f-f6530439dc3b 1 \N Other +45dd727c-35be-4dd5-9344-2dbfae885414 1 \N Other +45e18e8b-12c5-4a9c-aa82-c6e7da5f16a4 1 \N Other +45e297bb-c227-4175-8d95-99583c7e3714 1 James Other +45e2ecb7-c542-4630-9796-e6773b871505 1 \N Other +45e45476-b5d9-4be5-865a-cff3687e1589 1 \N Other +45f4aa9f-c87c-4b75-baaf-d87754ee038a 1 \N Other +45fa2e91-26f9-40ca-996d-fb959996cc59 1 \N Other +45fc0114-8d77-4c3f-8b2d-fe5131c014f5 1 \N Other +45fdda95-33c3-424d-aa68-b70977535e45 1 \N Other +45ff3a2f-e58f-4889-ade8-32a693995f3d 1 \N Other +46036ad8-cbc4-4060-9408-e9ec07ec063c 1 \N Other +460661f5-3186-42e7-8ece-37508b3a8a80 1 James Other +460795dc-374b-474b-b09d-a3f84bcf85df 1 \N Other +4609fd2c-83ed-4cbe-86fd-1d91197b46ff 1 \N Other +460fdd2a-3878-47a4-b2ed-1821974ba536 1 \N Other +4616b829-44b5-4ab5-8bed-d38b9ed68d71 1 \N Other +4618f887-aaa4-42e9-a6af-ef2df15ab043 1 James Other +4619fb8b-eb70-46f3-ad46-7103341b2f2b 1 James Other +46200079-fa7e-47d9-8da4-4a2522f856c0 1 \N Other +46241bc3-a0ec-4e35-a1f0-eeb6cea4d771 1 \N Other +4627db36-96e8-4318-8b6e-4660daefce13 1 \N Other +4629e717-69fb-4b2c-88b4-b113cbf7b682 1 \N Other +462a5357-2c16-48d5-b99e-e881ea2600b8 1 James Other +462b11e1-50d6-4a6f-80b4-271aadf48dbd 1 \N Other +462ee9f9-81bc-4e22-a77f-3bc57107cc8e 1 \N Other +4632a1a6-d5f6-4fe4-89b1-27e0a533ee0b 1 James Other +4633f987-fb6f-4ec9-96ff-8cab3959ed20 1 James Other +46354e4d-9df7-4964-be6a-658dbb8d70fa 1 \N Other +463bec1c-cd93-4656-883b-8250c2ccd8d9 1 \N Other +463cbe61-64f6-4c44-9270-c2bb0c149d8b 1 \N Other +4642538c-48cb-42de-a6a8-33b3621eff6a 1 James Other +46437580-9ea7-4463-89fd-12adf3e2a3a3 1 \N Other +46453a6a-f3db-4be6-a964-6912cf2766ff 1 \N Other +46460b7f-a741-4826-9bab-265df94c0212 1 \N Other +46469dd6-9013-40fa-9194-b00a53773c4e 1 \N Other +464b25b3-614f-4c86-8de4-b2702316b5e1 1 \N Other +464e92f4-3507-43f1-b950-e2ce144a7fd8 1 \N Other +465d3398-aad3-4bb5-8681-9c2966b40f48 1 \N Other +465db306-06f8-49d9-bf78-3b2dc9984566 1 \N Other +465ee10d-569c-4a49-8dea-81cff1b7b8bf 1 \N Other +46629754-d1fc-4c8b-8820-026f813fbe0e 1 James Other +4662d944-bf51-41d5-908d-8024358d1103 1 \N Other +466a27f7-478f-4bb3-a3bf-67d7023c128c 1 \N Other +46700b99-8101-48e5-b1fa-41819c4d54db 1 \N Other +46716deb-88c9-4f6c-bd35-872a47886cc6 1 \N Other +4671e4f2-f649-4b2f-b332-4363446dec18 1 \N Other +467d8d86-02f2-4965-a08a-f8f80995de98 1 \N Other +4680a904-51f1-46d5-b5c1-bb9e2dcb802d 1 \N Other +468227bb-7ac8-4282-8397-04391112c290 1 \N Other +46866c00-24c9-4c96-a0b1-d090b22effb5 1 James Other +4687967b-0ab8-488d-a631-4dff759ea862 1 \N Other +4687d828-805e-426a-a7fa-2326e639ec0f 1 \N Other +4688a2da-e23d-4c3e-be83-9241b475d528 1 \N Other +46897d48-85c2-4cd2-8ae8-6f6149f9e50e 1 \N Other +468c6211-11f4-4ecd-b638-a73cdd8ce7c8 1 \N Other +468f27a5-0412-4157-9519-fdf2e7512904 1 James Other +468ffb69-16a7-42f7-a36c-860424fd5287 1 James Other +46926d33-b994-45a9-ac07-ef2e6f939fa6 1 \N Other +4696b859-c73a-49d6-a800-f9248e36e180 1 \N Other +46982fb9-2db2-44ab-b23e-311e5564216f 1 \N Other +4698727b-2ee6-43e4-879e-1adea96d9a8a 1 \N Other +4698e6e6-82d2-4f63-8026-2d1abfba2c8c 1 \N Other +469d502a-af69-4139-af94-2577b36490de 1 James Other +46a1b1a2-b568-4313-9bfb-e3b60465be14 1 \N Other +46a4a590-b43e-40f9-9f42-0412e1781475 1 \N Other +46a4b1b3-a29c-40ca-8a75-e82e4205c192 1 \N Other +46a9e9a3-aaf4-4e4c-bc81-fb560c129581 1 \N Other +46abc973-885b-47e6-8cc7-ec7806b4fdb2 1 \N Other +46ace179-c525-4c8f-8cdb-c765a25d5f14 1 James Other +46af19c1-2ac3-4f88-931c-6f2fe55f38a2 1 James Other +46b147e7-9fb6-4dc4-97a7-3b0b93e378d9 1 James Other +46b29be7-55de-4502-b992-5e0b833d6cc2 1 \N Other +46b6b698-86e7-47ce-823a-ed63982f3bf2 1 \N Other +46b8521b-b4cd-45cd-8287-47ce2c80d2fd 1 \N Other +46bbf989-b65f-4e62-804e-259dd9d4bdef 1 \N Other +46c30e74-2aa2-4ee4-89a4-b70c7b6b1fc0 1 James Other +46c596cb-d38a-47d4-bd2c-c5e4cfa9d4eb 1 \N Other +46cce9c5-d0a9-41b2-939f-4192481b12ad 1 \N Other +46d03131-40a1-4832-830f-dc8c0fbfec2d 1 \N Other +46d18711-e83d-4c73-aa6a-21f1c3d2b177 1 James Other +46d1e71b-e1c5-4d59-af85-36baa796d588 1 \N Other +46d859fc-5b8e-4b6e-abad-76faeaeba3d2 1 \N Other +46dd0162-dca9-48c8-97e9-cd06720e64a5 1 James Other +46dd31b6-190a-4f6c-8dbf-139a5070091f 1 James Other +46dd807a-88f0-4d62-853f-dcf3c52d79e6 1 \N Other +46e5c68a-aab0-42fe-82f2-a45bfa117ff5 1 James Other +46e5fd77-d043-4c5e-8318-c38bb1915de2 1 \N Other +46e70cb1-61c9-435a-af46-bbdb505a2e02 1 \N Other +46ead578-6f3f-4f35-aca9-4eb6c4f0fd78 1 James Other +46f2aea2-83cb-4326-bf9a-61d4ef57d32d 1 \N Other +46f4d1ad-1ba2-40be-8583-97286a20abfc 1 \N Other +46fc79ec-cb1c-4d5f-9e0f-80cadd2eb215 1 \N Other +46fcd6ce-07c4-4eb5-8893-b44d062e27b9 1 \N Other +46fe2fa2-f1b3-447f-b81f-c768a1fe3ca0 1 \N Other +46ff7b53-5c19-4a1e-8cbd-e71a9986aa78 1 \N Other +4704a1cf-7bb8-4fd4-9932-e1373a8065ab 1 \N Other +47073f9c-1ce9-4f80-8509-cb3ecdb5ef20 1 \N Other +470a76aa-324b-4b52-8660-c86e87b18681 1 \N Other +4714bc42-45ca-4be5-b624-e057c6cbc654 1 \N Other +471653be-0613-43fe-91b9-970f43d7028d 1 \N Other +4716758a-3b70-423b-9c04-f9806106fe7a 1 James Other +4717f658-3a46-4f01-be4e-fee101776488 1 \N Other +47181cd0-3fd2-42b4-a531-fc900bafdcff 1 \N Other +47192a1c-703b-4325-a16f-3015bf39ca54 1 \N Other +471b2f82-ac0e-4498-a1bf-e6acb978eeec 1 \N Other +471c8d31-ad1d-46d4-b963-3174e8a3a375 1 \N Other +4721ff17-c628-4142-ada8-ec8f84184dbf 1 \N Other +47225d68-47ec-4266-98bc-36504d74364f 1 \N Other +4725ba55-423a-4b2d-8e10-2375574ce2f3 1 James Other +472fba29-c8f1-4133-9756-b05705cc99ca 1 James Other +4733e639-2423-4928-a76a-55ee0dc38e85 1 \N Other +473a91d5-4b06-4fc8-8e6e-89d695ef6028 1 \N Other +473e7423-ef26-4a4e-8b12-7da42a4e9a22 1 \N Other +473e933b-5da9-4665-932b-d7225807c579 1 \N Other +473fd9bc-58e4-42ea-8fbe-0cc074ccc628 1 \N Other +474196fa-eaf4-47da-8c52-f0615bca02b2 1 \N Other +4749c2f6-4f95-4854-9c91-18b5bbf6fffc 1 \N Other +474bec04-5b43-45e3-9dc7-de635d976e39 1 \N Other +475572b8-716f-44c2-b142-d7dcfb7ce116 1 \N Other +475c038b-1cfe-4f47-8550-72692dfb88c5 1 \N Other +475c37b4-cd95-4c11-b686-611901097511 1 James Other +475d584c-de0f-4839-82af-7c938818947c 1 \N Other +475fd0d2-acb7-462c-b630-22ec7f15cea1 1 \N Other +47602955-6981-4f89-87b7-b400ddb809b9 1 James Other +4761221a-fb42-4f68-9d2f-c3bbdfa7899d 1 James Other +47653f25-5d90-4f7d-be43-751a36544979 1 \N Other +4769dc8c-1846-4ba2-801c-2a89715f8e06 1 \N Other +476b0ab8-55f0-48ed-8978-58ead7484b20 1 \N Other +4774926f-b184-46b1-a620-b0873ca56395 1 \N Other +47756648-0916-4316-afa7-37b04a3a6e73 1 \N Other +4775e59f-4733-4f5a-9845-970a8420e737 1 \N Other +477ae4b6-0602-4281-a3fa-624e11946944 1 \N Other +477c5102-8c65-4a0d-8df2-fb55fe4ca3a6 1 James Other +477cd860-afd7-44c3-ba74-4ff5c3d948e5 1 \N Other +477ce6f8-10ac-481b-bcd2-d2fa539db444 1 James Other +477d3790-d30b-40ae-bbe8-20c0e88164b0 1 \N Other +4782f192-fe5c-4141-a2ee-7e4cc2c17825 1 \N Other +4783c141-258c-486c-8b5e-7f32efcb8769 1 James Other +478bcd08-2dc2-4ba2-98ad-618094258aaa 1 James Other +47926580-aae9-4e94-a2e5-cac7a65ddac2 1 \N Other +4797d51d-f99f-4180-aae7-d1284d659975 1 \N Other +4798a8d6-3138-4ef6-a017-e89deeace9d4 1 \N Other +479a9d5e-3dd7-4aa4-a1ca-84a1fb8cfd07 1 \N Other +479d6a6f-2f43-41b7-9bc4-1820a5fc5e1d 1 \N Other +479e5fff-1e26-4f82-bde1-22512eb32275 1 James Other +479e713b-5e1d-4354-8e0f-0bfd01656ec1 1 James Other +47a3d589-c661-4727-9220-103828553ab4 1 \N Other +47ac1f3b-53e9-4773-9dc9-f2ede9043aba 1 \N Other +47af1a80-fea2-497c-b96e-ca36d0b6a930 1 \N Other +47b1e94d-d10e-4317-97ea-00c56be186f6 1 \N Other +47b2d2b2-c895-47aa-9d1f-af09d2ef1663 1 \N Other +47b31a40-9c5d-4124-9ebf-678a35117455 1 \N Other +47b540f7-7298-44c8-a767-97a4dba16493 1 \N Other +47b7434f-5c32-41cd-a5a7-43d37fda63d9 1 \N Other +47ba4563-cdcd-4e40-bb1e-78608ef1be6e 1 James Other +47c2fe78-515c-438f-8806-51d0ef96f489 1 \N Other +47c312a0-efe2-44a6-bdee-33ef9b4d85e9 1 James Other +47c46e34-c4b4-4b95-893e-ee8fc679c274 1 \N Other +47c46fed-c703-4335-aa5c-66da10cdb7f1 1 \N Other +47cb85a4-0dde-4d5c-954b-202e3afbcefe 1 \N Other +47ccbf8e-52c2-4e88-82a9-3839a81b7f67 1 \N Other +47cd7e2b-5e96-49f6-87e7-973ca86a0ff6 1 \N Other +47d1d2ae-b6dd-4c53-afaf-c7556921c6f2 1 \N Other +47d1f5a1-cc3c-41db-bd4e-0b554d2261e3 1 James Other +47d27374-5992-4fdf-bd99-0e082423c94b 1 James Other +47d2fe32-b11c-4c6a-b262-a8fa05fad315 1 \N Other +47d30942-1c42-4469-be56-d4e02d110cbc 1 \N Other +47d58561-6c4a-4f73-ab04-4975bb2ef55f 1 \N Other +47d7245f-4a65-440a-84cc-5cdf06b1bdda 1 \N Other +47dc3f40-261b-470f-8f9b-f8ddbc732e30 1 \N Other +47ddd33e-9b8f-4fea-97a3-226e6fa257aa 1 \N Other +47e43dc5-9e2a-431a-9217-73caba2d023d 1 \N Other +47e840ab-7556-429a-90c4-bc19ed967548 1 \N Other +47e8bb20-aa17-456d-a35b-30fe187b1bd5 1 \N Other +47e965a1-1c42-4615-a113-528ff4a8ae9e 1 \N Other +47ee4cde-a57f-4880-8fc7-7d83bb4a1e12 1 \N Other +47eef5a8-f349-40d9-95d9-b8c0ab8439cd 1 James Other +47f21b72-45c6-4801-8811-9e781e9e369c 1 \N Other +47f4b50a-cdce-4228-a420-de1470dc3c8d 1 James Other +47fbc6dc-e128-44f4-93e5-824253d424bf 1 \N Other +47fe8157-58bf-460f-bc24-fc3d76e26f1c 1 \N Other +47ffa1eb-0b8d-4a4f-be23-8e3fd37b868c 1 James Other +47ffdcbe-4567-402b-b8f4-dc6f8d193e27 1 \N Other +48018e54-fd44-466f-9136-00dad82e4b54 1 \N Other +48073b22-074d-47c4-8109-d39b2880fdf0 1 \N Other +4812c1c8-324b-4d75-a957-f5831ddb8622 1 \N Other +4815caf4-5353-4a5d-bd6e-4b65fa4b8b55 1 James Other +4817885f-ea4e-487e-a32c-4b6e46235076 1 \N Other +481bed1e-8686-49af-a965-f46848ee27e2 1 \N Other +481e893d-d456-448a-9602-4334c991b41d 1 \N Other +48209531-ce53-4e1c-8958-c70fcbc31187 1 James Other +48221e82-fd71-4dda-a9a1-3746b22ef0af 1 \N Other +48241767-6aa0-4937-bacc-e0a6a6f82bc0 1 \N Other +4826390d-11ca-4457-8d44-c5c27b7fd80f 1 James Other +4826e97c-3bd7-4f07-9454-4eb4a249c914 1 \N Other +4828069c-f535-4fcb-9538-cc39939a4d70 1 \N Other +482c92d7-db4e-4fd6-b049-0a1450ed7b83 1 \N Other +482cffef-e884-4deb-9bc2-ad3673a59ab6 1 \N Other +482e892b-d74b-45e0-a54b-598174cc7043 1 James Other +4835c827-5422-4508-b616-48904985e056 1 James Other +48389afe-0fe1-4af5-8f76-8e28aa353f84 1 \N Other +4839dfc1-0792-4fb0-acc7-184f4d5494e4 1 \N Other +483c36b5-ad5b-4a0e-b8ee-48d8c334fd12 1 James Other +483ce69c-5e0d-4683-9632-ea33a90914a2 1 \N Other +483e8399-024b-426e-8281-921ca5a489cb 1 \N Other +483f9fe1-3d07-4a75-b609-ecd6044cc11d 1 \N Other +48432e8c-c107-4a41-be70-eaf67d7fd48a 1 James Other +48433ed1-fe15-481c-8e41-9e2f4f69c072 1 James Other +48455a0f-cf2c-463a-8e8e-796195fee72d 1 \N Other +484c985e-1909-4df2-a5e8-3130ee026014 1 \N Other +484ed777-8ec1-40df-9bbe-819cf1b3f944 1 \N Other +485618c9-5eba-4d13-9eda-7a0538102020 1 \N Other +48561ab2-b2d1-4d0a-bff5-f4a772388270 1 James Other +485a098d-ec0b-44cb-ba24-878e0f37bf48 1 James Other +485ae702-9c7d-44be-91e2-538ce24490ac 1 James Other +485daaaf-ce8e-4427-95f4-41a8ded731a9 1 \N Other +48617c49-2ce9-457a-a78d-f7ff6aa4264e 1 \N Other +4862d329-fb5a-421d-be34-8b1e1b4ddf03 1 \N Other +48672499-6d09-4d3a-9a0e-a23ad6dd872a 1 \N Other +4870838c-640b-4b76-97fc-fe474fb9f1ea 1 \N Other +4871b048-9465-4168-8f39-57b54a0ba9dc 1 \N Other +48788b68-04fc-4d5a-b38e-07bb722c6ca7 1 \N Other +487f4198-d874-4b8f-87d0-5554326a2d62 1 \N Other +48819212-eb14-47c6-9f82-5f6878abd88f 1 \N Other +48826124-28ff-4be7-9239-5ff80ad2cb0d 1 James Other +48871777-5a43-4ce8-b7c2-b81dfe13f93c 1 \N Other +488b3776-8ac9-41c8-9ecd-af66b42ca1d4 1 \N Other +488d0417-9615-4fab-9813-1cf68dcd5805 1 \N Other +489cd00c-7bce-404a-9488-ed318fbb7cf2 1 \N Other +489e78c5-8480-4bf7-b2db-46448c4c47f4 1 \N Other +489ee9f9-7c57-4344-8fa9-59ef2e3d1f34 1 \N Other +489ef7d0-5fec-4af8-a44c-256110ebfb9e 1 James Other +48a28690-125a-4db7-8cab-cf326fe45d89 1 \N Other +48a3c775-1a82-4f67-ba45-da6167340737 1 \N Other +48a413d3-7ee3-45f1-8d50-eaee994d42fd 1 \N Other +48a7f324-9c6a-481d-b479-a0a7ed675b90 1 \N Other +48a81ae5-e7f6-4871-ab84-837de41d6414 1 \N Other +48af728e-e68f-407b-9646-ff29f89e8e5b 1 \N Other +48b25bea-8f5f-43ae-8112-c18cd0adef8b 1 \N Other +48b5bae0-1e3a-44a7-b89a-2bf23ac59672 1 James Other +48b63014-3c43-4c5d-ac3b-9fbe570a1b0e 1 James Other +48b6c9d2-712f-4fde-b0bc-c2c0d1177af0 1 \N Other +48b9c45e-269b-46fc-a5db-d809f695a798 1 \N Other +48ba8e50-adb7-4539-b9a9-81461595758b 1 \N Other +48bae91e-7cad-4010-a158-245b3e45e137 1 \N Other +48bdf6e2-7f7b-410c-abe8-14ad137f1423 1 \N Other +48c3502a-5278-4202-9b70-d542a287ca28 1 \N Other +48c57c7c-3b25-4c3c-a063-35c8ad82f409 1 \N Other +48c645c3-2bd9-4e3d-b3f1-7cc4c5c4f6d8 1 \N Other +48c88afc-c489-4cae-a009-05ed36803266 1 James Other +48ce8f48-6ecb-49f2-b36f-6b74a4947f31 1 James Other +48cf5ba8-4118-4211-abe5-47d078192219 1 \N Other +48d1eb22-6300-472a-8289-d21185361153 1 \N Other +48d6c510-3c9b-4c6e-829a-eceef5c1f386 1 \N Other +48d8d7bd-ad93-4e54-ae89-cd38095ab73e 1 James Other +48e146b2-aa9d-4ae6-8560-fce9db10c487 1 \N Other +48e8245d-70f9-4327-a5d2-f9964e49edb8 1 \N Other +48e85257-0d82-4ee3-98e4-a21f7f7821dc 1 \N Other +48e86ef1-1606-4270-b9d9-cc7d21ef10da 1 \N Other +48ebd0bd-8779-4d8d-b623-6d7f01dba497 1 \N Other +48f42d68-d96d-4744-9645-d08cd12dc518 1 \N Other +48f4fde3-f260-4dce-9820-465e6c88f0b5 1 \N Other +48f8ea34-9fd4-4107-ba22-52ad0b4ad544 1 James Other +48fac6dc-a1a9-42d6-945c-a37747efd91c 1 James Other +48fbc1f7-ec74-4cd1-b143-4ec190e1e1bd 1 \N Other +48fe2cf9-fc44-47d2-a6bc-9f6e11b39305 1 \N Other +49007c0e-7efd-44c3-93d5-af7bd1b6aa02 1 \N Other +49023498-a627-4876-96e8-95af617518f7 1 \N Other +49053bae-2afd-4d5e-abcd-8830863d4496 1 \N Other +4905963d-6569-4bf1-a658-3a16792e7666 1 James Other +49063624-93e1-464e-8bf4-a3a849a8f578 1 \N Other +4906793e-3372-427d-8920-424268983fb2 1 \N Other +4906c6d3-9630-4b28-b9cd-0195dd7400f3 1 \N Other +490e260b-7fe4-4fb0-af54-c5aa7b978777 1 James Other +49107f28-a0fe-43be-bde1-772afb193891 1 \N Other +491484fa-640b-4567-aa88-941bd0f1c3dd 1 \N Other +491952ce-17bb-44d1-90da-724d66ae5714 1 \N Other +491bd22f-8a10-48ad-8ed2-72585a55af21 1 \N Other +492050e1-b321-4bb9-9dc5-596392029293 1 \N Other +49216c46-78b1-41f3-8568-65a5f3b15dc8 1 James Other +49226e6e-5fec-42c2-9169-34a1a7d18960 1 \N Other +49241628-b1eb-4e36-abbc-d4dd9a49837c 1 \N Other +49242f0b-b53b-4fa5-b236-f098459a9655 1 \N Other +49279fec-33c1-4557-8254-4ffa9c515320 1 James Other +4929aa96-0e96-4e4a-972c-520926faef8d 1 \N Other +492f71fd-2319-403e-8d53-3eb77b55b28f 1 James Other +492feeaf-fd36-4379-9896-de049192557f 1 James Other +4931afc0-b01c-4f08-a303-fe0da7f6b75c 1 \N Other +493538f2-385b-46bd-96fd-70edcdcb24b9 1 \N Other +49361fbd-6745-46cb-bdcf-52d01307742f 1 \N Other +49367f49-4d39-4e48-9a17-e70bdd527f08 1 James Other +4936f563-0c5a-420b-9e19-6fb94fdd1325 1 James Other +4941228c-52d4-4d35-b8f5-8bd9b1486d1d 1 \N Other +4948bd91-0e8c-4434-a5b6-3eac61a5c0c7 1 \N Other +495374d5-0cd9-4072-b686-c79ec72e0820 1 James Other +49546eef-7f28-4e5c-89d1-e988be31bd41 1 \N Other +49572aea-72f5-4623-8cf1-5145533352f4 1 \N Other +495888ef-f685-4569-b8dc-a4a8de6f81b8 1 James Other +495b3c65-ffe1-423e-b291-0d64544d429a 1 \N Other +495e49c4-8163-496b-a2cd-6bc90e000571 1 \N Other +4967e836-4aca-4b2c-82b5-734f94e27450 1 \N Other +49698745-98e9-4cd4-820b-b3dac17062c3 1 \N Other +496ab711-dc6d-4616-b744-5ef978e62320 1 James Other +496e0eb1-6a6f-45e7-aa9c-c1968820e42d 1 \N Other +49748412-58ce-4d61-be6d-4046c943a7a9 1 James Other +497a3b6c-0f8c-4975-b3b1-e4047058330a 1 \N Other +497b52c5-ac9d-4c66-9b12-47ddef1b4746 1 \N Other +497b85ff-7fda-45ef-8889-dc9ec73e71cc 1 \N Other +497c3755-2607-4cc0-a1ad-80677733d89c 1 \N Other +498307ca-5a0e-4527-9059-4c8527441090 1 \N Other +4986c897-01de-4080-a30f-69099d6dd936 1 \N Other +4989db5c-8e9e-4d95-ace3-0926d007acba 1 \N Other +498a3f7d-de64-4080-b762-fbf924e967b7 1 James Other +498df0f1-f9d9-4d2b-aa4c-89395b9bedac 1 \N Other +4992f932-cfbe-410f-9f5f-8e6643574310 1 \N Other +499321c6-a344-4fe7-95ec-6712d3767a1c 1 \N Other +49932f1a-94b2-4c39-9c6e-ebbd991f1113 1 \N Other +49943027-22a1-41f5-9680-fbe5651391ef 1 \N Other +4998f9ac-5416-4e17-93b0-e94d21eb4006 1 \N Other +499a7674-c6bf-478d-9f3d-54b95fc9e532 1 \N Other +499ca559-31dd-4d83-8503-76f577a9fbfa 1 \N Other +499d8c12-b05e-4253-a1ee-72a906e02251 1 \N Other +499dd0f0-e4a9-4587-be68-1fb19179bef9 1 \N Other +499def86-613e-4eb5-844c-cb9bd651b9c0 1 JAMES Other +49a72ce8-8efd-4f28-ae6f-1b993bbb543c 1 \N Other +49ac45ec-90f5-4410-97ce-ef87f4fb7543 1 James Other +49ac679c-a9b2-40dc-baee-c2aa50c40aca 1 \N Other +49ad88da-22df-49f4-bf85-2acb71f2245b 1 \N Other +49b3a345-8283-4dc8-96e9-eaef8d2cd0e4 1 James Other +49b9351f-53fc-4ee7-84d5-fe8f3a975b20 1 \N Other +49b981ab-bac6-4aee-8afb-187da97bcea5 1 \N Other +49bc0dca-cc71-4964-9e8e-9bf18fafc46f 1 James Other +49bcab87-24c9-4e66-a1a8-2d2d02ac410e 1 James Other +49c2a709-dad3-445c-a78b-eb1f4ada2765 1 \N Other +49c5e6cb-0b85-43af-8709-09ecc8a3b4fe 1 \N Other +49cc100b-3dae-4631-9a5d-1211395392da 1 \N Other +49cc93af-6396-465d-ba32-b30eaf0f645c 1 \N Other +49cd02e2-0322-454d-9f01-7b84e0655b26 1 \N Other +49d2547d-028d-42a1-8a27-f6c7cc9a9105 1 \N Other +49db6bd1-0d78-47eb-9dcb-062f7d549377 1 James Other +49de0971-3a8e-4da5-8b73-7e459bcfaf7b 1 \N Other +49dec7f9-88ca-4b59-ad76-42a8809ad984 1 James Other +49dec996-65ea-41c4-bc62-a54f65def1bd 1 \N Other +49ded9d8-e74e-4ebc-b3f9-2f1c31f4ebcf 1 James Other +49dfa3f7-ec7d-4788-81e7-b19c5404706a 1 \N Other +49e0c55d-ceda-4b7e-ae88-41a5fe86e198 1 \N Other +49e2800b-4df8-4385-98ac-8677d36e35d4 1 \N Other +49e28cd7-390b-41de-a365-c74d1247b817 1 \N Other +49e58d18-b191-4486-8026-5cf947c61572 1 \N Other +49e65a53-540c-480c-bed7-4f4b29e19e02 1 \N Other +49e8ab87-ed3e-416a-bd06-943680d7cc8d 1 \N Other +49ea2c89-f6f2-4e0f-b3fe-e6d3243f4ec1 1 JAMES Other +49ea4e9c-8c10-4c5c-8478-ddd2452faa7a 1 \N Other +49eb02e0-01c3-4c3f-b382-31f7f3ce2c16 1 James Other +49f4a7dd-1638-4e85-ad0b-0af67737ae4a 1 \N Other +49f6fe86-1bf4-43b8-bb48-f324c81e6394 1 James Other +49f86a8f-50d9-4f79-b73e-455d94bd4c1e 1 James Other +49f9cb31-3bba-477b-aed0-29d3cca437cb 1 James Other +49fddc14-53ef-4b22-bb11-0e9de57628b8 1 \N Other +4a015f22-2330-11e8-bcce-fa163e8624cc 1 \N Other +4a02fd87-33ae-49f0-beea-fd25b51ffdb4 1 \N Other +4a059737-caca-4cb9-b4d1-d209ff8a9848 1 \N Other +4a079122-7369-4a37-af85-3c8641b5c889 1 James Other +4a0933a8-8b2e-44f9-89e3-2bb961ff2ddd 1 \N Other +4a0e1734-db11-4e97-9499-49bff8722e28 1 \N Other +4a109a41-f1ab-44c7-b461-04986533f347 1 \N Other +4a1b3e98-c0fa-4496-9fd0-c2511467297e 1 \N Other +4a1d80b6-feb6-415b-8cdf-52133e908df3 1 \N Other +4a24811a-b0ac-43b9-9e41-d96d6d92dd1f 1 \N Other +4a26b767-36c0-4ec9-a675-f94e2fd32f48 1 \N Other +4a297d10-bf3f-42ca-b391-097d6ee41f16 1 \N Other +4a29ef25-6a0d-4ba2-94ae-81b141d98aab 1 James Other +4a2a5b8e-78ee-4d16-ad40-67167cbf2a16 1 \N Other +4a2cde17-dc90-4447-acc9-06a20a876e1d 1 \N Other +4a2d363e-6b8d-488c-9474-308ce7ec587a 1 \N Other +4a2dc73c-0871-4726-8f4c-582c59bf7d6a 1 James Other +4a2e512b-79e6-41b0-bb71-bcbfc8ddd15a 1 James Other +4a2ffa2f-b6ee-4fc5-97d8-42d13b92a0cd 1 \N Other +4a3370a1-0f20-4b08-aacb-496fef1cb54c 1 \N Other +4a342bf2-ea91-4cb4-bb2e-7286af9e1c6e 1 \N Other +4a35ce5b-a378-40a5-92d9-705c2baf3c79 1 \N Other +4a37cb07-f691-4867-96c2-008200ab20b4 1 James Other +4a39e6b2-2330-11e8-9c32-fa163e8624cc 1 \N Other +4a3e4105-c298-49d6-be40-76b44245c52a 1 \N Other +4a401aad-96c6-4107-8ee6-ce2cc3da162e 1 James Other +4a424884-a9c6-4bdd-b5ed-5e5da60a1c8b 1 \N Other +4a453c54-7dd2-4e73-b9ea-e6a61404d6f0 1 \N Other +4a51dc60-6319-4d76-a2b8-e19657ea0738 1 \N Other +4a5241c3-01fb-4d99-9f8b-04acf78fcb5e 1 \N Other +4a575c1b-65d7-47f4-b54c-e0ed08b302f6 1 \N Other +4a5787bd-32da-48cc-9d98-01775a14b8f5 1 \N Other +4a5b3132-7f33-4a82-9909-555994475bca 1 \N Other +4a5d8e37-529a-45b0-b946-72847d9bec04 1 \N Other +4a5e76a5-4829-47e5-b57b-5bb26a387d3a 1 \N Other +4a5fc343-0045-4f98-91bc-b25217f4ead6 1 James Other +4a60aee7-b18e-4135-a1e2-78116b88e02f 1 \N Other +4a67331f-eb88-4779-a299-9ed5fa922869 1 \N Other +4a6a39e8-0b83-4a5e-b36f-8c80f5ecf642 1 \N Other +4a6bb056-fd51-4c27-ad1d-b9f384ed90de 1 \N Other +4a704664-cc44-4458-867f-bd3d2f17c2a1 1 \N Other +4a720d9a-c923-456f-ad89-fce50dff4bdb 1 \N Other +4a747ff1-b9b5-4649-9108-4b5616737378 1 James Other +4a755878-e30a-407b-8db1-c92e248ca918 1 \N Other +4a773df5-67af-4bca-ac0e-509e77da24c2 1 \N Other +4a7babea-bbaa-44b9-a315-9b56f37c3940 1 \N Other +4a7eb888-178b-49ed-8d60-6ca95bc11e6c 1 \N Other +4a7fd18b-a845-452a-9c26-d66dec77f384 1 James Other +4a82c97f-644d-4fcf-92e2-f1e3f3fe8568 1 \N Other +4a87a8c6-d744-4ead-84a1-32cb9925c72e 1 \N Other +4a88ecc2-a815-4140-b3e8-516f07e0700a 1 \N Other +4a8be7c9-2b48-4379-af56-a65b6ae69f32 1 James Other +4a8e2622-5c99-415c-926a-3255bc811417 1 \N Other +4a901a2e-55ba-465f-949d-575d7e38cdf1 1 James Other +4a94b28f-7117-4c4a-b8f2-be2bd43cec05 1 \N Other +4a9d302b-62ed-4107-9358-38e85c219f6b 1 \N Other +4a9e79dc-2553-4adb-8591-9b4c4177f614 1 \N Other +4aa3a41b-9ac2-4fb8-b81a-0b84360d4a22 1 James Other +4aa5d211-8289-4630-9019-0bd624ed690d 1 \N Other +4aa5eb89-b04a-40a7-ba78-3a8eafc9c26c 1 \N Other +4aa8acf0-7662-4455-98f5-b7f3b5887ab7 1 James Other +4aacf9f7-7f12-4f97-9a67-5028a62a78a7 1 James Other +4aad6fd1-6014-4221-87e1-70f5f1e2ae41 1 \N Other +4aadb0eb-3c0f-44ea-8e6b-020472fcdf2d 1 \N Other +4ab35281-d116-4ef1-a2f4-14bd2e049b8a 1 James Other +4ab646ea-092a-4719-a58f-a01e84bd0d90 1 \N Other +4ab70b6b-575c-4552-8d83-3330424eb127 1 \N Other +4ab7b3f9-0452-49a0-9b1c-1d01371129e9 1 James Other +4ab9e2db-ba4c-478b-bc50-ec704a96a3f9 1 \N Other +4abb0f33-62df-4abf-b091-1810ca7658c2 1 \N Other +4abbfef0-ff68-4a9b-ab8f-43d6ee2da6f1 1 \N Other +4abc665e-e54f-4274-9bd6-8deab1166543 1 \N Other +4ac2c943-4c05-42df-b319-767b2c80de36 1 \N Other +4ac59160-bd11-49a2-971a-81ef2c8b9d13 1 \N Other +4ac5b060-d32e-4281-a97e-7ef9eba213ed 1 \N Other +4ac805f5-a1f6-4c80-a6e4-44ef34974590 1 \N Other +4ac8197d-5e3b-42a5-8210-12677afba4e5 1 \N Other +4aca71c9-26fa-4485-8aa2-3349670660a0 1 \N Other +4ace8b43-3085-4fe8-904a-2db16d00f969 1 \N Other +4acfb527-344a-4ef3-8ec1-962602d392a5 1 \N Other +4ad4f021-35f2-4a74-863a-14e7447c598b 1 James Other +4ad53673-8229-49cf-8bcb-79ec6a0ac01b 1 \N Other +4ad54db0-50f7-4743-9fd2-5c62b6536fbb 1 James Other +4ad5904e-6392-46df-85fd-2ad924c19319 1 \N Other +4ade1c94-57ca-442f-a145-cd90f16908de 1 \N Other +4ade94a3-17ee-46c3-8d05-2a82b812a253 1 \N Other +4ade9cff-5d1c-49f4-8fe2-8060d1c17cd0 1 \N Other +4adeb8a2-e51d-4ba7-aede-b6f10402d256 1 \N Other +4ae41730-579b-496d-b206-67eadf820667 1 \N Other +4ae4197c-1261-48bf-a64f-981c8c5bd531 1 \N Other +4ae61b0f-f134-40b4-8521-d030878696d3 1 \N Other +4ae81c19-d1f4-4ee2-9b5f-734620172567 1 James Other +4aedaa1f-d6a9-43d3-b013-9e942a9161bb 1 \N Other +4aefaf7e-ae9d-4126-9e6c-952119c3e8fe 1 \N Other +4af72af0-33b5-4cd9-9d3c-d096ad3c5dc7 1 \N Other +4afa1c2f-f07e-46b0-9212-a23c0e6ecebf 1 James Other +4afa2f9d-5df7-447c-9078-f1e22a7ecd55 1 James Other +4afe8b73-d1b7-4772-b3bc-9ec3f6ce5c17 1 James Other +4b00585f-f95d-4ebd-8670-4321b84c05d7 1 James Other +4b076706-1901-461d-8bef-5b71a7e5e7ad 1 \N Other +4b09a3bf-1a34-43a9-a0e6-a704bc87b128 1 \N Other +4b0a5469-50d7-44e3-8cb3-99d359ca4b34 1 James Other +4b0e000c-e2f4-4091-b767-2d71d802e07f 1 James Other +4b1033d0-bcd3-4e91-ae14-818890514353 1 \N Other +4b12f310-7238-4c2e-93d7-71fc3565a124 1 James Other +4b1a2d72-2df4-4ff1-aee2-0cec1e2910fb 1 \N Other +4b1b847a-0a48-4ce6-8d9c-9945f0208f0b 1 James Other +4b1c1e68-d5b6-47f0-aa78-240a883ff512 1 \N Other +4b1dce68-d536-463e-93e7-343770a2b7f3 1 James Other +4b218a5b-00ab-4d77-a143-f2000024816e 1 \N Other +4b27ef95-0114-4538-8493-b73e24dcb578 1 James Other +4b29d0f6-a22c-4247-8937-5ce33444f35c 1 \N Other +4b2a4ee6-5be8-40a8-992c-6008dcb3b62a 1 \N Other +4b2d862f-04bf-42f6-8d18-c8b46119750b 1 \N Other +4b2e0edb-b8e1-4ec2-9c62-4b138acfe505 1 James Other +4b2ea0ac-877f-4e00-a5fd-e00fe1e93ab3 1 \N Other +4b38b27b-3fc5-474a-8da1-cc47a3ecb0be 1 \N Other +4b42c36c-bdb7-4f30-b048-c9304e37bfe1 1 James Other +4b438d4e-4275-45a9-ab63-cd35b69deedc 1 \N Other +4b46e926-a94a-4e27-819b-ea60c42cc65b 1 James Other +4b4856da-62d3-4da8-a8b9-bc5a1fb4cd59 1 James Other +4b4a0852-006f-4efa-b186-5a6de44e75cf 1 \N Other +4b4c24e4-0be0-4fd1-9678-70018ed7f6ac 1 \N Other +4b500bbb-80da-4b8b-bd9a-19fe229fd457 1 James Other +4b549fc4-c9bc-4bcd-b183-249470bc8d70 1 \N Other +4b5ead78-d629-423b-8e09-1fa671913dcb 1 James Other +4b5fa51e-63a2-45d5-9b91-2de491e53564 1 \N Other +4b6147ab-4c90-43db-b238-a48cb8881cbf 1 \N Other +4b624a02-da1a-4bf4-8f33-d0b9c320017f 1 James Other +4b6385d3-2a04-4715-b1bf-924506431f0a 1 \N Other +4b63cfd6-1160-4064-8d36-6d9c2299fc86 1 \N Other +4b695276-5c48-4234-aad6-3092d9b5183f 1 James Other +4b69661f-c9ea-4071-9f5c-f31249914aa3 1 \N Other +4b6ca779-8184-4743-b685-71bdb303e1e2 1 \N Other +4b6d8cbf-cf7d-4ec9-b28e-f7a9825da708 1 James Other +4b73df34-9cdb-4ccc-a58d-acfaeeb7ea1b 1 \N Other +4b764474-6606-4e00-9f25-ac43c11ac236 1 \N Other +4b7ba1eb-cbcc-42ce-b246-7ee53d1a9d82 1 \N Other +4b805cb7-5356-4eeb-9c14-85c33bd12232 1 James Other +4b80e440-702a-40e3-bbe4-2f53a56974f4 1 \N Other +4b81bfd4-f5eb-4174-8328-4999ff421593 1 James Other +4b8228af-5656-4b18-85ea-9e1e8a1f6e9d 1 \N Other +4b881059-d31c-4949-80c8-ab0aea9bc9bb 1 \N Other +4b8ae73b-4688-4375-9905-c40ca07f8c79 1 \N Other +4b8c4f25-2751-4c59-bd33-3b2f635eb46f 1 \N Other +4b8cd90d-2b31-4180-b156-ccd060f22f77 1 James Other +4b8dd365-6c64-4699-8c2e-4543dd061686 1 \N Other +4b920c6f-40f7-4ce3-9d79-e4c3ce7cea54 1 \N Other +4b926c14-6d72-43c8-9d22-c9950a918297 1 \N Other +4b930b84-ee25-428d-8086-d1fe8b07544e 1 James Other +4b9538ad-8dc7-40c5-b711-d9dae812cf2b 1 \N Other +4b95d61d-2ad8-4e9c-9a0b-326167b352bc 1 \N Other +4b96b565-fb3f-4e4f-ad14-cfcc551caaf0 1 \N Other +4b9b2614-d137-4102-8743-81aeae7d9efd 1 James Other +4b9c3388-5d99-42db-8fdb-5c8a90496f53 1 James Other +4ba78246-9288-448c-823f-6673b11ff363 1 \N Other +4ba7efcd-f5c3-4ca2-8c68-9d6b91e19a68 1 \N Other +4bae453e-8710-4a95-9efb-c43ff2f74ff6 1 \N Other +4bae548a-8456-4b16-b50d-08fb509413ec 1 James Other +4bb3800d-a8dc-49f6-b1b4-f7101d57c5ba 1 \N Other +4bb3f2de-82ca-4009-a42f-94221f9d1346 1 \N Other +4bbcb7d0-9686-4463-ae94-63083e96c69d 1 \N Other +4bbcfe0b-6bfe-4d5e-8fe3-f236b0397f6f 1 James Other +4bbe4790-f4e5-457d-95d8-9cd5108657cc 1 \N Other +4bbfc5d0-0fab-45f8-8872-2ce9e6ce8b14 1 \N Other +4bc002f0-3a9d-4a79-9bdc-33f32704462b 1 \N Other +4bc0c94b-7cdc-44ba-8ef5-7bd63bbc040a 1 \N Other +4bc567fc-8ec3-4818-a103-6e4dd94741b8 1 \N Other +4bc86fee-05a7-4fd4-8e17-5cd9012b7c07 1 James Other +4bc8a4e7-9b13-4804-8f21-e9ea0f732e1d 1 \N Other +4bcd979d-2133-455c-97c3-d2f0bbff8cc2 1 \N Other +4bcf7eff-88ff-4c67-9c03-f2e8391ec60a 1 James Other +4bd98795-7ec2-4f27-a162-130912fe2097 1 \N Other +4bdfba34-9f7a-482f-8b84-8efd984b6cce 1 \N Other +4be04c67-00d2-42bb-9698-b35e71fc074c 1 \N Other +4be244d5-6225-4ba5-b54f-97b304b9ed7b 1 \N Other +4bea5217-ae41-4229-980b-9442d427c1b6 1 \N Other +4beaec4f-ceab-46ca-bb6f-36eb5f0e97a4 1 James Other +4bf433ba-d1f1-49cf-9960-ba83c13f8687 1 James Other +4bf5a970-75ed-47db-9db0-3e504158504f 1 \N Other +4bfac12f-97fb-4198-9f27-82aa045c13d0 1 \N Other +4bfc3507-303f-472c-9dab-a13feadb00b7 1 \N Other +4bfd043a-ef9f-48a0-ae45-a6dc1e821865 1 \N Other +4bfe0d79-1f31-4cbc-a9af-c6e20a3c0942 1 \N Other +4bff3f1a-227c-4c40-8476-81c92a3d336e 1 \N Other +4c012ae3-57a5-4d18-953d-07f2f3b6bcb7 1 James Other +4c0ade26-1e7e-4d9f-84ad-8d73b1b35902 1 \N Other +4c0eeac9-a6f9-42a8-a51c-896d9194b6c8 1 \N Other +4c1292a7-10a7-4324-8ba0-7f4680f5eacf 1 \N Other +4c1328d2-8bc5-4696-8992-7372e774da62 1 James Other +4c18bcfe-30a1-4cd1-a731-2866a0f37a2a 1 James Other +4c1991bd-1911-41ee-833f-be3c5f046c8f 1 \N Other +4c1afbd1-a692-4f25-8ff5-46ef0bc84cbd 1 James Other +4c2266dc-dd1e-4e9e-897c-3c4fad9f5d6d 1 James Other +4c24d062-a977-48dc-b788-749eb92510ff 1 James Other +4c27e3d2-cbd3-4dc4-a992-adbc3c751da3 1 \N Other +4c2967e0-7f4e-4b9a-a350-f0ccdd5a4fd8 1 \N Other +4c2ef376-05f4-45ed-9726-3bf1f06e216b 1 \N Other +4c315813-665c-42c9-936d-57b02feddcda 1 \N Other +4c32e034-3673-4421-a936-51e52c5bc706 1 \N Other +4c36544b-7e21-436f-b996-20ef52d83f3c 1 James Other +4c384939-e0f9-43b2-a719-875787578474 1 \N Other +4c387624-a848-44c4-85be-6631542255f5 1 \N Other +4c3f9806-11ae-477e-9709-1a2fe7cee40a 1 James Other +4c44897a-c347-4d56-b0f9-ed960aa05208 1 \N Other +4c472612-dfd7-4bec-b69c-a1bcbffc7b5f 1 \N Other +4c499f4a-41d4-4d07-9bd9-edeebcb682bc 1 James Other +4c4a25fb-ff25-4c4b-8cb8-41e645a254ce 1 James Other +4c4a5214-096d-4d6d-abf1-96e53600eac6 1 \N Other +4c4e139a-b25b-4847-becd-6fb7276adcad 1 \N Other +4c50f737-cd51-483e-96de-022e696062b0 1 James Other +4c5261ad-1173-4371-ab6a-93c5c1389b54 1 \N Other +4c54287a-534a-46aa-a16e-b465d7550dfe 1 \N Other +4c5631cb-4750-4c31-9151-580028cef290 1 \N Other +4c57f79f-e55d-4199-acf2-02193c87c3b0 1 \N Other +4c59a73c-acf6-43d6-87c8-e3442d11cdb7 1 \N Other +4c5a78f8-95b3-4c63-903b-c51e8dc07d7d 1 \N Other +4c5b20cc-eccf-4db2-b612-d20d48df21bf 1 \N Other +4c5b9498-6626-45d4-9dc9-c823c5381104 1 James Other +4c5c7695-dc6e-49ec-ba03-3d20bb6e0753 1 James Other +4c5ea9cf-a928-4af9-bf07-a70f34bc8874 1 \N Other +4c6326ef-aadf-47b0-a6fe-753e48aa0ca3 1 \N Other +4c65eedf-e4c7-4e41-ab6f-9fc64d944578 1 \N Other +4c6f73a6-39ed-43ef-8808-7f9bd757a47b 1 \N Other +4c72b436-fd57-495e-9dcb-087cd30f9112 1 \N Other +4c72c066-153d-4c43-8eca-665f028b6a28 1 James Other +4c78fb04-0cbd-4b8c-a95d-bd8889afff73 1 James Other +4c7c99bb-e7de-4cf8-b17a-b129661246ca 1 \N Other +4c7f400f-5824-482f-8257-8ee2dde72ef8 1 \N Other +4c7f82ce-88f2-42f3-80ac-fc4b14ba5d25 1 \N Other +4c82616f-3c9c-4588-a574-52c9a2228f76 1 \N Other +4c8423e3-735f-47e2-a555-002eaca81a2c 1 \N Other +4c85a6bf-2324-4cd4-a85f-bd8e2d6afc12 1 James Other +4c88d56e-6290-4524-9817-909c2072fcb0 1 \N Other +4c8ea0de-5fb3-4e7a-af9a-583a81dab9b1 1 \N Other +4c8eba90-5a48-467e-91e6-434dfaafc433 1 \N Other +4c940957-1084-4bf3-bdfe-51567be07601 1 \N Other +4c992a1e-2d13-471f-9c1d-6f19a25ce5e6 1 \N Other +4c99f1fb-64a9-444b-a1b9-c3eca9293f01 1 \N Other +4c9ecf4b-6e62-4736-affa-05efed282948 1 \N Other +4c9f9168-c0e7-4a4d-ac97-4dabff56920a 1 \N Other +4ca16d73-256a-4c44-8531-8eb998afab64 1 \N Other +4ca28b84-ca1f-49a0-970a-ad3bc170e779 1 \N Other +4ca41f04-453d-43f6-ab14-1dc24bf892c3 1 \N Other +4ca7d720-0c5b-4b75-8131-29fde2b693cf 1 James Other +4ca89166-6ac7-4c73-ae58-2fa15569c64a 1 \N Other +4ca8f17c-95a1-454b-9cd2-0dfc59e493f7 1 \N Other +4cad7814-cf42-4499-b81e-105471cac74f 1 James Other +4cbbc0dd-75bc-482b-90eb-bc1d6c0441a5 1 \N Other +4cc2bfda-bf56-4508-a0de-ae23603e6c0c 1 \N Other +4cc412e2-6c3e-41be-816a-bb8276dea8e8 1 James Other +4ccc430b-5a62-4acf-a547-409b4d90e3e4 1 James Other +4cccf17a-3c0d-4122-9ddf-b56c0eddc6c8 1 \N Other +4ccecfd1-95bf-4f55-9776-26849d4b232c 1 James Other +4cd68ef7-e951-4912-a926-b4c87fe233a1 1 James Other +4cd70f13-e998-43a1-9044-9703e7bb6c93 1 James Other +4cd71bc2-4c00-4955-87a7-841eea480897 1 \N Other +4cdc5d90-8f03-4d75-bb2b-b454ea3c6deb 1 \N Other +4cde557d-2b85-43f6-9fdd-d09932c2f312 1 \N Other +4ce0af05-e9f4-4f20-a88f-fa8c9d636a7c 1 James Other +4ce37d17-b65e-48a0-97f7-743f632b00c6 1 \N Other +4ce730b2-bda3-4b38-ad51-cf880c6779df 1 James Other +4ce86fe2-7554-443a-a85d-faaa83957379 1 \N Other +4cec0359-dea3-4615-b8fc-03b72bb1cb0a 1 \N Other +4cf42173-d9bc-4c6f-8e85-bceedbfe7128 1 \N Other +4cf447f7-2356-428a-ae29-c25ef39d8906 1 \N Other +4cf7cfab-9c77-4c2c-9ed5-c0d457192cd7 1 \N Other +4cfa6531-4ae4-4668-9da2-0fad47c9ab00 1 \N Other +4cfd1c3f-bbda-4e1f-84ef-b3c3a39bcb5e 1 \N Other +4cfe16d3-6817-4beb-9c58-02b4ae66dc5f 1 James Other +4d00516f-1898-4b86-beb4-317f73d0c63e 1 \N Other +4d02007e-ef72-45ce-96aa-560284eb2270 1 \N Other +4d0436dc-ea47-4bcf-b9e4-3d10b1714d78 1 \N Other +4d0a453b-ad43-4f86-8184-75776230fd24 1 James Other +4d0abb91-b505-41f4-8931-d61f95ad3c67 1 James Other +4d0af56e-9269-45e3-b09d-4488d6da5df1 1 James Other +4d0ed68b-5299-43cd-ba67-ad43a5709e8d 1 \N Other +4d1675b0-9b63-4709-ba0b-7095816745b2 1 \N Other +4d16d1c1-8483-4020-8bde-76f3002a86de 1 \N Other +4d1ad56d-19cd-4459-ab3c-98d91d67d46b 1 \N Other +4d1bdee2-962f-4b87-93d4-5bdbc5738c3b 1 \N Other +4d1ca490-a805-4dc9-badc-f2f4918f3253 1 James Other +4d236b88-d507-4d98-9b02-88f3c467554e 1 James Other +4d2a0161-b76e-40c7-8483-6ba0640d7f62 1 \N Other +4d2db87f-f063-4243-b9c3-b2ea43137f4e 1 James Other +4d2e01ea-4257-4b71-b277-aae96f46cfe4 1 \N Other +4d2f2738-6e10-4521-95ec-5b240e7626e9 1 \N Other +4d33c0e3-d374-49a8-8a90-73fd0f406a7d 1 James Other +4d33e719-bc0f-41fc-8682-fd9f819a1ea8 1 \N Other +4d33f064-e849-48c0-a93c-aa8c0ee8f379 1 \N Other +4d384740-e3de-4a81-85c5-e05e0efaab13 1 \N Other +4d385153-81c2-42ae-aedb-20bc718d7a71 1 \N Other +4d3a7937-eac9-4efd-8915-915553de7a4f 1 \N Other +4d3aef7e-a0b8-4537-bd2c-8af3fb0e891b 1 James Other +4d3d2f45-58ad-43d7-9065-f8e6da1a46de 1 James Other +4d40e139-7f2a-4fd8-aa2f-9e40ea0277c3 1 \N Other +4d4283d3-b539-4fa8-9cc6-f1685e96ba33 1 \N Other +4d44617d-810b-49f6-9bc7-8979684051a9 1 James Other +4d4475f7-d666-4e3b-bd88-ab13bd2440b5 1 James Other +4d45dc81-3201-4b0e-a20c-e1fee857ec62 1 \N Other +4d4d8d02-00e6-453d-ae7f-b3b8560e1326 1 \N Other +4d539b72-ed0e-4ed8-aaf7-bb3491f1121e 1 \N Other +4d588b18-1466-4c89-a516-014e2078d830 1 \N Other +4d5a355d-1091-4590-a5fb-e461957dbf3d 1 \N Other +4d5e407d-b788-44d0-ae9a-3ba3eb4574f0 1 \N Other +4d63ce8b-5de8-4815-bff6-821150848c32 1 \N Other +4d6446b0-708f-4490-9617-eba9ce20d808 1 James Other +4d6dcd1d-1603-47e7-bf28-461ecdaacb78 1 \N Other +4d6e24df-966a-43b6-a86a-476640cc0cdf 1 \N Other +4d71ea9d-f9d3-4b4a-8386-aaaa6166b76c 1 \N Other +4d74db7c-4433-4f1d-9f4b-f8b1010214dc 1 \N Other +4d79d3fc-0943-4d2f-8af0-96827183b154 1 James Other +4d79e7cc-e52e-45d0-bf1b-081099cd9d76 1 \N Other +4d7e0ade-26c2-4858-ab7d-f45b08bdeed6 1 \N Other +4d7fe49d-a652-4e7f-acb0-417ff910ed01 1 \N Other +4d82e461-2c5c-40a6-becc-828667d6a910 1 \N Other +4d841d6b-838d-45be-9f49-e2e041bfd2ad 1 \N Other +4d851176-25ba-4c57-868b-6cc494364dca 1 James Other +4d853b19-3a22-480a-a499-12faf6dfe013 1 \N Other +4d8887a2-7e5a-4ab7-b931-232913cb5b02 1 \N Other +4d8eab48-d1a9-4b2d-a3bb-5979508a9780 1 \N Other +4d9130b6-2906-4c4c-9364-5c926848511f 1 \N Other +4d933bf0-9fde-4ed0-933b-f1d4293d33ea 1 \N Other +4d9378b9-6496-4a95-b793-88b997cc23e6 1 James Other +4d9468e4-5729-40f9-ba90-ff4604ead63a 1 James Other +4d971cf0-ee7b-425d-acdf-a4c88ff2c9c3 1 \N Other +4d973555-7ebc-4892-a30c-482b130ed3e1 1 James Other +4d98b167-2c90-4e3f-9f24-12b8ec6165bc 1 \N Other +4d9973b2-ebe7-48a5-bb57-9fdfe1b1a971 1 \N Other +4d9a4267-9c10-4613-8698-2950bd3f4094 1 \N Other +4d9d24d8-ae10-4fea-94d5-88b77b962486 1 \N Other +4da29e97-e75e-4ab4-980b-52e91765ad8e 1 James Other +4da7a2ff-2fe4-4bce-84f7-414296238535 1 \N Other +4da9054d-13d0-4901-b315-d54cde29f5dd 1 \N Other +4dab5622-b9ff-4cf1-963a-c203fade7bbe 1 \N Other +4dad0430-ea8c-4a71-ae7d-f3dba0b009da 1 \N Other +4db01b5b-2112-40b4-8b2c-5f7db64d246c 1 James Other +4db6fee8-d6ba-4510-81af-877fe6b6897f 1 \N Other +4dba6489-c251-40ec-adf1-9ed5ca0783dc 1 James Other +4dc7c3d3-9a97-41fe-b7cf-cec0a95f16a3 1 \N Other +4dcda0d0-05a7-4dbb-8c86-16a6f861052d 1 \N Other +4dce297a-6b14-48bd-b49e-16392595ec72 1 \N Other +4dcf33c5-bac2-4d47-b7a5-dc3b825542f0 1 James Other +4dd08db4-626a-41ec-b782-99cb1b51687a 1 \N Other +4dd0eae0-1647-4ba8-8d44-876e11621d71 1 \N Other +4dd1c7e5-9213-4142-92de-30c864504ea6 1 \N Other +4dd4f925-3388-4334-b482-f0c53b3fa4d2 1 \N Other +4dd754a1-39c4-4bac-8b8a-f49dc0ea45dd 1 \N Other +4dd7b48b-9f15-46c0-b872-278cc576b40f 1 \N Other +4ddbf477-b425-4872-9e11-82340b6f8eb7 1 \N Other +4ddee41f-a5e1-404f-b82a-041309f3b80f 1 \N Other +4ddef2a0-401b-4bd1-94cc-cf993bd3fc32 1 James Other +4de44a96-3039-4ce1-afd2-747844328cad 1 James Other +4de86b61-60d4-4d14-8293-19472124739e 1 James Other +4de8c4aa-8179-4cfd-871b-bc92390f1acc 1 \N Other +4de8d367-f732-4de4-867e-4159cb4cbc8f 1 \N Other +4deadfd0-f435-4ea2-ba57-144ee924ca0f 1 James Other +4def093d-152a-4562-a1f3-1b678f342ebe 1 \N Other +4def91c9-46a6-445d-a674-f7add19cdc02 1 \N Other +4df6aae1-eb02-40bd-8605-493885c99bda 1 \N Other +4df977d8-5257-4336-ac24-858238fb95fd 1 \N Other +4dfd311a-0412-4ec4-aaf1-501fe0913eed 1 \N Other +4dfd75f0-82c0-407c-a503-b002dc92efd2 1 James Other +4dfea147-7201-4565-852e-fe1893e0d1d9 1 James Other +4dffefba-f49b-4f70-9ec5-09a970b7f04c 1 James Other +4e004001-bfa4-4bec-abb8-168a734774b8 1 \N Other +4e01733d-ad72-40f4-ad24-f8fc204626e1 1 \N Other +4e06ca1d-c0f3-42a9-ba09-80cc951fdedd 1 \N Other +4e0bca0f-cd9b-40c2-9494-cc49c76454f2 1 \N Other +4e0e7585-5984-4fed-a35a-756f62cde6b3 1 \N Other +4e109550-9e12-49dd-a0e8-f311bccaf2c5 1 \N Other +4e123d43-a130-46aa-8ebe-683ee7e9694d 1 \N Other +4e152469-e962-43c3-b59a-b203daacb9a6 1 James Other +4e156974-8acc-4aa9-b2a5-bed0516434a1 1 \N Other +4e15a8b5-e2c6-4325-996b-239e5d41147a 1 James Other +4e181d02-c9e0-4632-8a77-482d289341a2 1 \N Other +4e1c29fa-b36f-43c8-bdce-cc6b1918c02b 1 \N Other +4e1c88e4-39e1-4a69-bf9b-4b5b187eafe9 1 \N Other +4e1d57bd-faae-479c-8f3c-27f49627f26f 1 James Other +4e1e9553-99a7-4622-92b0-1a729fa87a1b 1 \N Other +4e1f069d-6593-4cc8-ac6a-e6aae7200b0a 1 James Other +4e23ffcf-e87d-4f8e-a69a-8033a27ba9a4 1 \N Other +4e27f892-5715-4441-aeca-c58ce66a29cd 1 \N Other +4e295f65-ab7d-400b-ad8b-227a8735cc9a 1 James Other +4e2d008a-405c-46c0-a5ae-8e100d170043 1 \N Other +4e37ef69-03c0-40a8-94d8-aa8016e5ab62 1 \N Other +4e40d46c-dd88-44a3-9b38-f8814deb8184 1 \N Other +4e42dd4e-e02e-4cce-be9c-d7143116759c 1 \N Other +4e43df22-8a39-4895-9b2c-1070e1a9c85b 1 \N Other +4e456eaf-d116-4128-bf78-8a8a75ab93ad 1 \N Other +4e470b7a-cf83-4456-9a65-2c5991a084f4 1 James Other +4e480be6-ef12-415e-a961-d659099a9766 1 \N Other +4e487289-926f-44ab-8bf7-964ac0018909 1 \N Other +4e48fc92-a952-4d4f-857a-e59f6d2c8dbd 1 James Other +4e4ac4fc-4f93-4d1c-a319-ac549015a941 1 \N Other +4e532874-3456-4fa3-8c01-17e36c7a0038 1 James Other +4e5745ec-0672-4b38-a43f-10b8ad5a3cf1 1 \N Other +4e57892c-47e2-4b74-bc09-029a6560e959 1 \N Other +4e58c2fd-17d6-4a93-8539-7a3f79ab57ed 1 James Other +4e5bb6fe-5c1e-4f18-8931-014e4c3ac01b 1 \N Other +4e5c3ec5-af5c-406e-bfb5-507d8edc8ad1 1 \N Other +4e5cc34a-7979-4eca-abf4-f219f8c4dc0c 1 \N Other +4e5dcc89-fe2a-4018-8b52-902c8089ec24 1 James Other +4e627da8-006d-4e57-97a9-875c4fffcdeb 1 \N Other +4e68f50f-49a7-44b2-b980-47285bee42a9 1 \N Other +4e69ded4-edd7-420f-8119-69b2d34c4e24 1 \N Other +4e6a7150-f594-4864-afe8-e552c72ff659 1 \N Other +4e717baf-f649-439d-bca2-1a9bf0bb0491 1 \N Other +4e73f4e2-fff7-4170-8041-4f129c87af34 1 James Other +4e746514-ba0e-475c-8a6a-4dafa13129b5 1 \N Other +4e74730c-3cf6-402d-90d1-5b853af8e5e5 1 \N Other +4e75cc09-3379-4faa-91bd-ddf332faea50 1 \N Other +4e79ecf3-5ded-4f8b-933a-6eb022d20119 1 James Other +4e7b543f-dffb-4cbd-af87-f184aa8c1654 1 \N Other +4e7cc882-f0cb-4d8e-af62-7153c7bd12da 1 \N Other +4e8005f1-7230-41b0-b837-b842679c5737 1 \N Other +4e84a2d7-aa8c-46eb-95fa-421abfc617b4 1 James Other +4e896dad-7148-4158-ba66-4a494233ea24 1 \N Other +4e8a74c5-e758-4e90-a8e2-54a475ab1c19 1 \N Other +4e8a788c-5e58-43bc-a89a-91263fc8fbb1 1 \N Other +4e8b2162-6ac8-4693-8112-7571be445d27 1 \N Other +4e8d73ee-2ece-432c-8401-b20999d07113 1 \N Other +4e903328-b9a8-45fb-8841-80e47abda186 1 \N Other +4e934ad0-7ee0-4857-b63a-d74231b88005 1 \N Other +4e9d787f-9714-43cd-b3ed-9a275365db3a 1 James Other +4e9fbd7f-7ed2-45f8-821a-d8786f7f295f 1 \N Other +4ea1b275-712e-41e2-a4b3-dfc789c3403a 1 \N Other +4ea23a2e-a244-447f-897c-db33542280aa 1 James Other +4ea27ced-2790-4d23-aca0-a24c593d1d99 1 \N Other +4ea5537f-24b8-4093-9b0a-11005ae9d87b 1 James Other +4ea9ec52-836c-439d-823e-35ac309f7189 1 \N Other +4eaa0aea-7c86-4bc2-9ae9-9e150e3835be 1 \N Other +4eab2326-d539-42e0-88db-da312dc1a536 1 James Other +4eac4197-2cab-4af8-82d7-73646837b650 1 \N Other +4eaf2d1f-d53a-4be8-8bd4-e7db8e7d77f1 1 James Other +4eb00de2-435c-418d-ba2b-f6348117f30e 1 \N Other +4eb0baf1-374a-477e-8269-66672eeaa139 1 \N Other +4eb0f27f-0e77-42df-8fd0-75b897d0e1a5 1 \N Other +4eb2c88d-9b0c-4ec7-9c88-e5fca6508829 1 James Other +4eb3c86f-eeae-4545-85f8-c502ef074489 1 \N Other +4ebca245-8d99-4dca-bbb2-81cd7c342ca0 1 \N Other +4ebe739f-a0d5-4d99-830a-a36d45741863 1 \N Other +4ebefc97-79d7-4a7a-bde7-8f41a8afc8b2 1 \N Other +4ec179c6-afd7-4502-b31b-51c1a8af8b42 1 \N Other +4ec33129-cbe9-4acb-a2ca-07547f6229c4 1 \N Other +4ec841e0-94bd-4d86-9639-d5e6e8e29151 1 \N Other +4ec8f374-65a8-4358-8789-b7409684c649 1 \N Other +4ecb3d6c-15ce-4b22-b4f2-942b32fc4c1e 1 \N Other +4eccb8b0-c357-463b-871f-9fed6dc4ade6 1 \N Other +4ecdbed1-c8ce-4bf3-8157-be3db0be1ff0 1 James Other +4ece3a9b-7eab-41f3-9823-37ff522c08f1 1 \N Other +4ecfe7d1-62a5-4333-9168-0cf1e2de33ef 1 \N Other +4ed31768-22d4-46a4-bb0f-2e731b3136a5 1 \N Other +4ed61812-8106-4ed5-be96-bbba3122c21d 1 \N Other +4edac3bd-23b8-45ce-a106-37ea0f5a32cf 1 \N Other +4edb8096-c44a-4e2c-ab81-71c9f8601988 1 \N Other +4edbea46-ba60-46b6-9c5d-f8c4624fe0a8 1 \N Other +4edfa5b1-6f0a-40cc-965a-3c9aa74be999 1 James Other +4ee15ba7-02b2-47e2-a000-e43668470661 1 \N Other +4ee51261-6d2a-476b-99f3-9f6cdf095ba3 1 \N Other +4ee59cff-d13b-486e-ae8a-42502aef9743 1 \N Other +4ee7379c-a599-4a49-86d6-dcd7b77732d9 1 \N Other +4ee7b6d8-7675-4cc0-ae81-37d3eecf8242 1 \N Other +4ee97070-a1f0-4fdd-bb97-2b86b0341942 1 \N Other +4eee85e2-cb0f-401b-8024-c7e4010f2abd 1 \N Other +4eef6e3a-6b97-4fa4-bf6b-774fedf347be 1 \N Other +4ef13b23-dcfb-445f-9ca8-273fa8d20bfa 1 \N Other +4ef359d4-9264-44fc-abc5-ec12880e2d4d 1 \N Other +4ef4f67c-007d-4e31-b7ad-7f572e544c4b 1 \N Other +4ef71c55-767a-46aa-94ca-a344f60c382b 1 \N Other +4efb5a72-3931-40f1-8a41-ee33b3ad825c 1 \N Other +4f02fcc9-bc42-4147-9ffa-b82e0fab2a4d 1 \N Other +4f05a3b0-710c-4291-847d-5fd2085f0c69 1 \N Other +4f06a912-b87f-4828-89be-7f94f75d82f9 1 James Other +4f09fc23-6ced-45e5-af84-68812a2ad1a0 1 \N Other +4f0a1d92-421b-4f78-9a5b-9e2d85f96132 1 \N Other +4f0a3841-0c10-470d-a87b-cf98b7979705 1 \N Other +4f0b22d7-6d9f-411e-955d-36ff59b8b9f2 1 \N Other +4f0b65b0-f4ff-4388-9b70-d2e556e7c269 1 \N Other +4f0d3d0e-c646-4595-89e8-6fa9e212c744 1 \N Other +4f0d4b6a-7468-4ffa-8017-8b2ffc1f731c 1 James Other +4f0e56ab-b742-4527-a456-94d16853c8d5 1 \N Other +4f120ba6-9197-4350-b3d0-0d145192a0d7 1 James Other +4f125c44-051d-4670-b18f-796bbb8f2aa4 1 \N Other +4f132891-60e5-4da5-8761-a5a35f3c0d04 1 \N Other +4f14244f-44fd-4c5d-9d64-b5d252fe0ce8 1 \N Other +4f16a3fd-833e-4a00-ad72-a943b2e6ea1b 1 \N Other +4f179e29-c2b8-4518-b491-e2a34f3581c7 1 \N Other +4f1d33fd-42f3-474d-9a1b-9a81c7f76149 1 \N Other +4f218691-9a7d-44bb-ab66-8ecfcf5dfb1a 1 \N Other +4f27f76c-82f7-4ece-bb91-83a7f398027a 1 James Other +4f2b44fb-44e2-4989-bb63-f73645853eb9 1 \N Other +4f2dce40-07ae-44db-8f0e-13c9609169f0 1 James Other +4f31a3f9-852a-41fa-b152-e4d87dd1c261 1 \N Other +4f331825-af95-4dff-8f69-ae4fa131f831 1 \N Other +4f34896a-22f3-410b-822d-42d0e762028d 1 \N Other +4f37a16d-9db4-4fd6-b0f4-69959f59ca5b 1 \N Other +4f3815e6-6714-4dba-96e0-2f8019163ed8 1 James Other +4f39518f-9b8a-4f51-bc01-f1523c624a18 1 \N Other +4f3ae1f0-6254-4eb1-a108-edaeb85152dc 1 \N Other +4f3f1328-8413-4c70-a1b0-1ebc491822f9 1 \N Other +4f3fa1b2-318d-4542-bcb0-3924ffd88e63 1 \N Other +4f407343-9e8a-4330-b8ef-b5bdc1ec4de9 1 James Other +4f4106f7-4155-47fc-b887-3d2537f37a72 1 \N Other +4f417f12-7951-4b8e-9e77-09e6f4bc9ca7 1 James Other +4f41a180-a10e-456d-b6e6-713319ecbf3b 1 \N Other +4f452689-032a-4177-b6d8-d07845e7b032 1 \N Other +4f4721b0-d9d7-4c9a-86a6-7e315c6aa02f 1 \N Other +4f474be3-9684-41b1-b554-12b2ff0ea7cc 1 James Other +4f494962-bf3f-4092-a69f-31449c26a323 1 James Other +4f4bbd3d-bb85-46cd-a24c-0172070ca4af 1 \N Other +4f533494-b1a2-4f79-95de-7daa428e99c9 1 \N Other +4f5d3757-152e-44a3-8d1b-4ed479d00135 1 \N Other +4f65758d-12b6-4e57-85d8-ad1917ecb140 1 \N Other +4f67a19e-17e3-49f7-a952-d55f5c88ec74 1 \N Other +4f6d0beb-35e5-4426-967e-7c8b2985d48e 1 James Other +4f6e8367-0bd6-4fa7-80b4-29dddffcdbdd 1 James Other +4f6f2423-2cc7-4d3a-bc8b-3e1238b5e7a0 1 \N Other +4f6f2e29-6ffc-41ef-98b5-83d7bef08c98 1 James Other +4f6fd396-db4c-4f31-a3dd-9d9ebabec9c0 1 \N Other +4f70f322-323c-4a9a-86c3-eac48dbf5b7c 1 \N Other +4f75a7c1-f3f1-4573-b061-f4f8a535ca65 1 \N Other +4f7603c9-590a-4f86-99c0-124f15b40e1e 1 \N Other +4f766e7d-4880-4bd1-83f0-11042a9387d9 1 \N Other +4f790958-48e1-40c1-b0cc-d25dfc2f6866 1 \N Other +4f7fb3b4-3410-4aff-a39e-8e13bdf37379 1 James Other +4f898deb-c91f-433c-918e-cadc638abd09 1 James Other +4f8aa6c0-0efc-41ef-ade4-6da14e04804f 1 James Other +4f8adf82-2b0a-4c52-8ba4-30a2c2b327ee 1 \N Other +4f8b6e95-b434-4669-9a0d-11eb220ef5e0 1 \N Other +4f8ca8be-85c6-4926-a747-a3fcf5360ed5 1 \N Other +4f8d7d36-dc49-438e-baa5-91c852297653 1 \N Other +4f92ba0b-0c50-4194-bb21-21ab0be96845 1 \N Other +4f937b0d-3577-43fa-a44a-34aac0645803 1 James Other +4f982924-0d4c-48fe-8816-3c28de737652 1 \N Other +4f985192-7a81-4489-9e56-2e63eb030cd4 1 \N Other +4f98be95-4335-4aed-9194-682032d09d6b 1 \N Other +4f9bc049-1f59-4e90-b5c3-b4615c489e8c 1 \N Other +4f9fb584-77af-43a6-93bc-2f8af67689b4 1 \N Other +4f9fb882-ca7d-4bef-ab2b-2ccc85a78a82 1 \N Other +4fa1209d-f450-4226-8e37-3c7acd2df446 1 James Other +4fa51cb7-6eed-4455-8462-beeb8a1d9414 1 \N Other +4fac27b8-42db-41a2-82c3-6bf3dcedc24c 1 \N Other +4faf714d-6836-4a6e-adc9-c3f48fa0a7ee 1 \N Other +4fb146e5-7d1e-4fdd-82b1-3ac49ac2ab6b 1 \N Other +4fb1b58c-8c37-4bd7-a6e1-8c474aab8105 1 \N Other +4fb6de64-9840-4727-9cc8-17961fb2b475 1 \N Other +4fb9e006-49e9-41c1-b5fd-941a8dd07e93 1 \N Other +4fba4d79-5051-473e-bf98-5345cbd6073e 1 \N Other +4fba9398-673f-4675-b969-0908694412fb 1 \N Other +4fbdebb9-d3db-48d9-8432-47b6e701ceb1 1 \N Other +4fbe1bf3-4c67-43f6-b8f4-49b2bc237881 1 \N Other +4fc136ce-b12d-43b2-b6e1-f96293e639db 1 \N Other +4fc34d2e-5b4a-4ab9-a64d-64df25075433 1 \N Other +4fc3cb8e-1b20-4ed9-a082-0ddf6ad62b12 1 \N Other +4fc53d8e-92df-4dc4-bede-a347466aadf7 1 \N Other +4fd2fe0e-d9ae-4fd7-a968-184ce0368205 1 \N Other +4fd6e4f5-1106-4a0e-b6a0-7289b0318182 1 \N Other +4fd70f62-cf11-445b-90ca-c38289c3980d 1 \N Other +4fda3672-ea93-4120-9ba7-2c63b7700667 1 \N Other +4fda79f6-3221-422a-940f-64b48bb361f1 1 James Other +4fdaa00f-f7cf-433f-ad65-9d900d359f9e 1 \N Other +4fdc6402-2e59-405d-a849-93a2ace62569 1 \N Other +4fddea89-8b3c-4a6b-b567-fac6381a9275 1 \N Other +4fdfa03d-7fe0-46cb-bd5f-79ae394a1963 1 James Other +4fe8f404-dfaf-47a9-8a51-4af391ca1650 1 \N Other +4fe9fcb8-83e0-4388-9b43-4691d9c243a6 1 \N Other +4fed27c4-5949-4097-908f-cb9ee05a0241 1 \N Other +4ff5929f-97ca-422d-8945-ba37c32adfdf 1 \N Other +4ff6e73a-0263-4695-806c-17ea08a79a0c 1 James Other +4ff80a64-ac9f-430b-9b0d-64aa438267dc 1 \N Other +4ff8f213-c642-4b53-96e8-d3c53af67112 1 \N Other +4ffa5e44-72ff-4f1d-a17d-5e45c9f69152 1 James Other +4ffc0490-deec-49f4-ab90-433bd7870b29 1 \N Other +4fff52b5-0b44-479c-85c7-d8758795ee77 1 \N Other +4fffba99-3c89-480b-9871-9790f2f98d8f 1 \N Other +50005693-8392-498e-bbb7-f856f61af6ae 1 \N Other +50024a2c-879c-4066-8773-fb79bf7a69bd 1 \N Other +50041ffe-6932-4c35-8e31-bea078d8fa4d 1 James Other +5004cae1-5afe-4e95-8f56-1769aa0f9f47 1 \N Other +5005217d-e70a-4ef7-9257-aaa649187a52 1 James Other +50091fb1-0327-413c-a87b-80e861a0fbeb 1 James Other +500a5735-0dea-4d21-bc5f-3a08589736dc 1 James Other +500e95a7-aaa1-4b01-859c-2fbb3c41cb89 1 \N Other +5012324d-cb01-49e0-958a-abcb06d0e780 1 James Other +50138ebf-c2df-47f6-bdb2-0ca218819de9 1 \N Other +502272a7-ce38-4581-8964-219b670a6405 1 \N Other +5025b08f-6cf1-4dac-858c-cc6386f7c9e6 1 \N Other +50286042-fde5-47a4-b02b-32adb384bcfc 1 James Other +50299dab-9809-41b3-85c2-ac3320a186c3 1 \N Other +502c96cf-613d-49aa-938d-6564d2b50d52 1 \N Other +502ecb2d-e17d-4987-af94-849f90e9c600 1 \N Other +5033ab03-c9e7-465c-bd84-a8111b591404 1 \N Other +5038ac46-1762-4e6f-933d-5a4455a3aaf2 1 \N Other +5038e613-d33b-4c17-a688-6e2a24bc7e6f 1 James Other +503ab0bf-425c-4140-92f2-e7ea4261b42b 1 \N Other +503cb786-c3d2-4ff2-a77e-c078de26acca 1 James Other +503d3da9-6427-4610-a634-9224cb2399be 1 \N Other +503dd10f-b2b9-4d2d-aade-f442994b64fa 1 James Other +50406563-65ce-4c9f-892a-673f49fc2362 1 \N Other +50408a57-e81e-40dd-b06e-99cf2501f1b6 1 \N Other +5043135c-0938-425e-846b-ec840ea1c276 1 James Other +50442182-7fec-4808-b226-6ea0ff9ceeee 1 James Other +50485025-73bf-4e11-a498-2600684a7f1c 1 \N Other +504a6f93-9f78-489a-a4ba-fe9fffe4f0ec 1 \N Other +504ac232-4239-4819-a837-d9c004a6d0e9 1 James Other +504d5cc7-7d30-46a8-86aa-469d00994d54 1 \N Other +504dce4a-56f5-418f-abdc-34afd19fe8b4 1 \N Other +504f8736-3aea-4b71-9e73-cf2cb1024eba 1 \N Other +5057deb0-ba09-41c9-9d03-3315bce4984a 1 \N Other +505ab5a7-214b-4346-a177-30fdc72d38f0 1 \N Other +50620513-4eac-45e0-a62d-1b474cc30932 1 \N Other +5063292a-e865-4d80-9f2a-e8cbd6ae51b2 1 James Other +506571b6-14dc-48fe-a71b-7b1137ee4bab 1 \N Other +506c369d-8595-4766-b429-4a883738c890 1 \N Other +506d1470-3cff-4c28-a014-81d56442d295 1 \N Other +506f2eeb-e43c-40ef-8440-b8545ee30723 1 \N Other +507369d0-6cf1-40ae-8f14-3764f055b1dd 1 \N Other +507622c2-a2f2-4bf8-8234-4e11c826da87 1 \N Other +50780f55-dd01-47f3-9863-9aa875ca7bc8 1 \N Other +507c3c3c-d057-44ba-bb9a-2f67e843f4aa 1 \N Other +5080dc3f-07de-4b6a-b620-6cbae9e46783 1 \N Other +5083ef3c-d30a-416c-b0f7-5b5b889b7e03 1 \N Other +50859223-2a44-4259-a489-df5cf7432912 1 \N Other +50865787-f697-410d-aa55-1d7b1e421724 1 \N Other +5088c16a-2194-4e48-87dc-e59fcb11f81e 1 \N Other +50893c7f-b3d3-47a3-9e47-551819774046 1 \N Other +508ade34-b2ca-4cd0-83a5-c2ebf8000018 1 \N Other +508ce5ad-35f3-45f2-bf9b-6ee4fd9e30c7 1 James Other +50906a63-3879-4fb2-bd0c-1764bb8bb53a 1 \N Other +50907530-6a18-4dc9-8b20-593a05b339f0 1 \N Other +50946165-aedd-4d7b-8547-396f73bfd1d6 1 James Other +509bd23e-81c9-44d8-87a9-29b2271a89d8 1 \N Other +50a3dd24-97a2-40e3-bc4f-2b8e7d8ebdcc 1 \N Other +50a6cc61-d957-479b-aacb-53ddfe89965e 1 \N Other +50aa39ad-f18d-495b-9b17-259a5a28c7b6 1 James Other +50aa8714-8ba6-4801-8d39-dce05a7ece28 1 \N Other +50abf49f-1848-4463-bc5c-c868040cac5b 1 James Other +50ac7012-2154-402e-8df7-e8846774b7f6 1 \N Other +50b1f30d-dcaf-417e-8440-9d7aee441746 1 \N Other +50b6352d-8a38-4a95-9428-1317bd6e2c94 1 \N Other +50bc7b96-d68e-4f56-815d-1d2cf86f30ee 1 \N Other +50bd1dc2-c847-453f-8f35-481135639835 1 James Other +50be400b-bb47-4608-b58b-608110ae85ea 1 James Other +50c12e2a-5e19-422d-a3c4-d0b09accc738 1 \N Other +50c4c1f0-2f55-4cbc-9a4e-61481ef6673a 1 \N Other +50c66d0f-7590-45fb-96b6-2686172d53e2 1 James Other +50d0237a-82b5-474e-befa-a2293cae4f83 1 James Other +50d29dd4-648f-4624-a8ec-5ad8324063e5 1 James Other +50d58e8e-bb92-4538-a6fb-b6bc890ab9e0 1 James Other +50d730be-76cd-4972-8f3b-0f58db6f7a18 1 \N Other +50d7608c-9017-4304-a6b9-eff89d9fc715 1 \N Other +50e2a111-655a-40ab-be9b-816c620eeae6 1 \N Other +50e3493e-c23f-4c7b-b1d3-825cce3896da 1 \N Other +50e58baf-1e3d-4e24-80de-4ccd2206ff6f 1 \N Other +50e6ffd5-3122-416e-bbf0-139e07990b35 1 James Other +50edfe4b-322f-423b-87b7-a4437fbbc0d0 1 \N Other +50f11967-6c9a-4184-bf3d-c8099bf6672f 1 James Other +50f1a11c-e57c-44b6-b005-6c31499fb00b 1 James Other +50f5c116-8de8-4027-9f04-9851c4964944 1 \N Other +50f6c96b-cea1-406d-b4c7-40a721aed348 1 James Other +5100cbf5-4b11-46d6-b6bc-f6da55d37c5c 1 \N Other +51010a16-588f-465e-81b8-d203bb0e8420 1 James Other +5103f46d-f932-4ba6-bdf7-6ae9c2c1b2ad 1 James Other +510411f7-4f98-427a-90d7-2726e2514ac0 1 James Other +51066b2e-3034-4975-ae7a-e8a2d7a48f40 1 \N Other +510a5708-9804-4211-b70c-c3164e49a606 1 \N Other +510c572c-99cf-49f7-a49b-f72f13e63ed2 1 \N Other +5110bd13-f035-4a73-ba5a-e885fe394231 1 \N Other +511525e1-2a94-4de2-ae48-c0e858648d93 1 \N Other +51166eec-3554-4ec5-ac3e-cd35adf68d2a 1 \N Other +5116ca3a-56ab-4b56-a08f-00fda779548b 1 James Other +51178022-ba64-4b68-aaf2-470c646158d7 1 James Other +5118af99-85c3-4c1b-a7cb-72f92c987b62 1 \N Other +511a93d5-979f-4dcb-9546-73db95dddf50 1 \N Other +511f41d4-842a-4422-b720-fc89a4b76959 1 James Other +51267d3d-5838-45e4-856f-3e561de0e430 1 \N Other +512ef60b-3183-4d8b-9b0b-997442614781 1 James Other +51367adb-d019-43f9-828c-64e1eeed89ea 1 James Other +5137f099-2339-4d55-ba5e-7884c727dcc2 1 \N Other +513915c6-e87e-4352-803f-e632a3da275a 1 James Other +513b32d7-756d-4fc6-8c3b-7df7976ad3a7 1 James Other +513b5563-e374-4e50-8937-f8ab58998843 1 \N Other +513bdb71-576f-4c20-8899-e118cee07819 1 \N Other +513ccf61-5344-4c6e-999f-18f67053eaaa 1 \N Other +513e1ea1-3946-445f-a380-f48ef4939970 1 \N Other +5140188b-6da0-419d-84aa-59b2cecbf08e 1 James Other +5144f1bb-2604-4fe0-8854-0ca368d2656b 1 \N Other +514b85d7-057c-4707-a6d6-f1ba6d1715ef 1 \N Other +514fdec8-005f-4a8f-bd53-c424c9c7a4c2 1 \N Other +515201c8-bdcb-48a1-b942-42a1211c2a91 1 \N Other +5155c4c0-2533-4131-884f-8302df3bd93e 1 \N Other +5155d121-a884-4211-980a-011bef6f8c4b 1 \N Other +5157f76e-a988-4be4-a3e9-8a3b862b5e5f 1 \N Other +515aec5c-4d45-425a-8686-421186c9655d 1 \N Other +515dcc9a-c0b2-4bd8-9f25-677bdf0ba10d 1 James Other +515e9ea7-6932-4754-8b1f-151937dde0d2 1 \N Other +515f54c5-c88e-46e0-85f5-bcafc32b4f8d 1 \N Other +515f984d-89ad-4a83-8d82-8f249ee78051 1 \N Other +516ba6d0-ca0c-4011-b1fc-1b80709f4202 1 \N Other +516db623-3386-4d58-a7ac-7ae5d332576f 1 \N Other +51746ef5-308b-4c3e-89fd-5a28755e7c7d 1 \N Other +517512e5-19da-499d-9278-71852095c040 1 James Other +51760607-3172-47f1-b69f-69bf8e5a0998 1 \N Other +51772c54-2587-449c-bd9e-567ed40758cb 1 \N Other +5177437e-dfbc-4f9e-b3f4-2157fb422640 1 \N Other +517ac6f1-ffa5-411b-a87d-1da777614653 1 \N Other +517cc8a2-4b64-4d35-9f12-ab85e8d14e52 1 James Other +51859c60-a550-47a7-8af6-9e6c1437aada 1 James Other +51871847-ba09-466c-aa51-15c5dea59457 1 \N Other +51877fd4-041a-4001-b158-915115929d2b 1 \N Other +518b2d12-7e70-42c7-8af2-600d47d27dd9 1 James Other +518b5dc8-92a6-4f1c-85c4-9b3ad23a3b71 1 \N Other +51990788-6852-4ecd-8928-6b17289b5940 1 \N Other +519de3ed-0f15-4793-9691-fc6f9e1f5765 1 James Other +51a6686a-606b-4ae9-867b-9c3cd3d8f430 1 \N Other +51ab505b-2404-498a-bba1-bf8aeee14e16 1 \N Other +51acc58b-8d27-4f06-afca-beb40f67a806 1 James Other +51acd4c7-8eb2-4a5c-ad95-ffe48d2a1b73 1 \N Other +51acdebe-54d4-49d8-8920-b05a6a3c3321 1 \N Other +51afd692-7d65-4d1e-b597-1f6843e27ae9 1 \N Other +51b509c1-ab20-4f6d-a71e-1711e81b9392 1 \N Other +51b6055b-518d-4d53-82a8-2e69deb22b10 1 James Other +51b6bb72-e564-454b-aa45-4db2ab3fc4e8 1 \N Other +51bbeec0-26ed-4000-9e47-a96b95ef4bf0 1 \N Other +51bedbd7-0a7b-4d83-a69c-d5822e71da4f 1 \N Other +51c142fb-6dad-4e83-8b2c-088453131b2b 1 \N Other +51c1d3a9-6b03-480c-a6ef-c12961fa557d 1 \N Other +51c48d6b-75b0-4130-ae2e-a4dfd68af3f5 1 \N Other +51c7857d-2a29-4174-a9f0-25d7843f75d1 1 \N Other +51cf30bf-750d-4a0e-8230-2130f2560c97 1 \N Other +51dbba70-c4e8-46f2-8fd4-6fa9a29a87c6 1 \N Other +51de499d-27de-4131-a362-2d6dc329bb05 1 \N Other +51e3ac44-520b-4df8-991f-8ee000cfe2ed 1 \N Other +51e40c47-9a10-46e2-9601-c1589d75fe50 1 James Other +51e80343-b5b1-49d4-9364-afdb376f5113 1 \N Other +51f2458e-d0f6-4675-b7a7-30ac1f644130 1 \N Other +51f89dff-3bf4-4346-a3da-d24c5179c1c0 1 James Other +51fbab56-0296-4b64-bf79-733f8fddd2e1 1 James Other +51fe2ba4-bc02-42c6-8591-618cda76e5d1 1 \N Other +52009aa3-f1f4-429d-b98f-78fcd109515a 1 \N Other +52082e65-237d-4df3-96cd-2c35c6ea277e 1 \N Other +5209e8b7-8560-4553-97bc-faceb8764016 1 \N Other +520beae1-a3d4-49ea-b4b7-6714e6879943 1 James Other +520e560b-83fe-42cf-a191-323377610516 1 \N Other +5219e1cc-26d7-4fa8-ac30-f8c4840457aa 1 James Other +5225512e-28f6-409e-a09a-a31dd354a732 1 \N Other +5225ac64-2c89-4593-b3ea-3bdda0e4d323 1 \N Other +5225bcbb-439a-49b9-bf3c-343e665a75c4 1 \N Other +522852a0-4401-44a5-b732-89a9701894a2 1 James Other +522ae3de-7a93-4cfe-81b4-e7441472ac05 1 James Other +522c7f6c-5ef4-4ba6-9c19-1f447d7c8efb 1 \N Other +522e6a7c-3ba0-48ac-b80e-1fa96dd5e1b7 1 \N Other +522f5e41-6ff6-4ef6-80c3-5ad5b78b86f7 1 \N Other +52301a83-aab7-46ba-acef-f17f5087a4f8 1 \N Other +5236fca5-6586-4696-9c77-b359f7177020 1 \N Other +523981ab-c34e-480f-9e4e-fcd0ea8d4da0 1 \N Other +523a03b1-9d79-47db-bcc6-b2cea27036ef 1 \N Other +523c3437-94dc-4034-93af-ce0bd59de8c3 1 \N Other +52429b8e-6304-4bdd-b3c7-4bf96bfc3d8e 1 James Other +5245468a-ad7b-4b57-b2b3-41320c7bf7a3 1 James Other +5246ac78-b611-4141-b33c-f01d97199274 1 James Other +52485356-cc51-4921-bf5f-c87b12cbcd2e 1 \N Other +524b8085-48f0-4e7b-b08a-43bd4f4a7e6b 1 \N Other +524cffa1-9fd5-4f38-a2fd-fca5ecf9120b 1 \N Other +524fd0b9-39bd-407e-9ac8-51dff05c940c 1 James Other +52506823-93f3-42be-9705-3d5d1663b875 1 \N Other +5250e24b-7096-4958-bfc7-cf977507e573 1 \N Other +525147f3-e829-42da-bf1f-e2c053d54a9a 1 \N Other +5252d0ad-a542-4304-bfe7-2c8de1e036c8 1 \N Other +52560538-db17-4e53-9b0e-c623364b805c 1 \N Other +525d6ca3-9971-46dc-b7c0-08f5cbe3295b 1 James Other +525fc601-bc65-4056-a767-42088e0650e4 1 \N Other +52632a72-a478-456a-939b-df026d1ca047 1 \N Other +52656d66-5468-11e8-b95a-fa163e8624cc 1 \N Other +526721ec-9e1d-4588-8b10-aa41e6f05c4b 1 \N Other +5269b88a-a1ed-4cea-9942-2b77c8313cd7 1 \N Other +526a3a95-2111-44b5-8ed6-68b88535a045 1 James Other +526da9ba-cd4d-4726-8ff1-be89544b6c21 1 \N Other +526ffc9c-0b00-11e8-8cee-fa163e8624cc 1 \N Other +5271e702-75a7-4c81-b601-a98ea48814e1 1 James Other +52776919-98fe-40ce-a222-2c12c2a95878 1 \N Other +527adb61-cfe5-430e-98e2-8a7b782f8b30 1 \N Other +527fc9dc-0121-417c-ad77-29b9382e28a0 1 \N Other +528287da-e12d-4313-8c6f-64497d90f67f 1 \N Other +52830e7d-71b3-4cef-a7eb-e94d5c171a76 1 \N Other +5288ed38-0b00-11e8-bb7c-fa163e8624cc 1 \N Other +528afb76-a474-4fce-a892-98737e1270c0 1 \N Other +528b285d-bbf1-4f05-9e67-1b05d31e901e 1 \N Other +528d3944-02d6-45fd-8701-472f85240ec3 1 James Other +528e3732-d8f6-40d2-ac51-7100d049640c 1 James Other +529aea64-b9b3-4fac-a180-5ec77aedcde2 1 James Other +52a30c18-0b00-11e8-b670-fa163e8624cc 1 \N Other +52a71b9a-ecf5-4ec0-8542-201e29f16ebf 1 \N Other +52a7d651-20d2-428e-bc53-17b1d64c95a9 1 \N Other +52aa794f-b9da-46a5-b4e9-31ec1f4b78db 1 \N Other +52ac48d0-7afb-4879-ba3c-4cdaf7ae3b20 1 \N Other +52af3770-fdf0-485d-9845-daf8b5abf29c 1 \N Other +52aff090-0b00-11e8-b67e-fa163e8624cc 1 \N Other +52b23e4c-1b70-11e8-9d76-fa163e8624cc 1 \N Other +52b488e2-5468-11e8-8237-fa163e8624cc 1 \N Other +52b93db0-a26b-4da6-978c-5ccd3d2411bd 1 \N Other +52c077a3-3aa5-4e05-a66c-7603c1933748 1 James Other +52c1281d-16fc-4679-a461-b76880bff7db 1 James Other +52c34f71-60e6-4daa-aaef-6d97132d7d9c 1 James Other +52c60ecc-fc5a-4ff1-9360-3f18b7c1d8ec 1 James Other +52c62044-8ba9-40ec-9def-4b55d1b27d9e 1 \N Other +52c7c90b-a55d-477a-adc3-7ab2d76a547a 1 \N Other +52cc9fc1-997f-4b44-91e7-13e23df5bbb8 1 \N Other +52d12b6d-8fa8-4cba-ad76-146fcd062603 1 James Other +52d2cc0d-8dce-4da7-a7c2-8bfa8b9c5d7c 1 \N Other +52d677e5-c02a-43c1-aec3-398ce85cd5a1 1 James Other +52d8168e-68d8-4121-a81c-37a3c95e85d6 1 James Other +52da421c-5de8-4dbf-bf4e-98eddd50d03e 1 \N Other +52e5208d-76b8-46b7-97ef-98d78cc9d939 1 James Other +52e585c0-8511-4e34-a1f2-1a19e6da2fc4 1 \N Other +52e6c2d1-f447-4277-baff-5dbdc77163cd 1 \N Other +52e71632-196f-4e64-877a-32d04efa6035 1 \N Other +52e720f2-191a-421c-8419-b81c5a402322 1 James Other +52eb84b1-9ef0-46f2-836c-8af9c659606b 1 \N Other +52edba31-bc31-43a8-be7b-d988cd110021 1 \N Other +52f3c16d-778c-45d6-b6d0-317c0e9e7b10 1 \N Other +52f407e5-136e-40a1-961d-7ef937aabbab 1 \N Other +52fab8df-ead7-4e4c-950a-8e652668fee9 1 \N Other +52fec47d-fb2e-48c0-92ba-a9a2dec98d59 1 \N Other +53030fb0-2b3d-44d9-901c-ae4a5e3f4a96 1 \N Other +53057423-2aa0-444d-8646-dfcb60fd60a9 1 \N Other +53063d72-def5-4df6-abc3-d5853fd69539 1 \N Other +530ce5d0-4475-11e8-85e6-fa163e8624cc 1 James Other +530d66a0-1b70-11e8-8ec7-fa163e8624cc 1 \N Other +530e14dd-1c09-4256-9d26-0857eb6fe4af 1 \N Other +530e5225-da56-435f-987d-951c3f50910a 1 \N Other +5313a316-113a-11e8-89a9-fa163e8624cc 1 \N Other +53159a4f-8b33-4ad5-92e8-2a392c8514e2 1 \N Other +53176017-a420-4931-a3bf-b29e78739c7a 1 \N Other +5317a390-1023-4f93-815f-6a740e0fe8fd 1 \N Other +531b2493-0a60-496b-b72d-e14e363dddfb 1 \N Other +531b43b6-ffdc-402d-82f2-56e4da587b75 1 \N Other +5322d83f-c6a8-451f-a02c-1bccbcb069a3 1 \N Other +532ae958-ac85-45df-937e-cf548f1b3345 1 James Other +532aefe0-bcdb-400d-89a5-55fdc49fbab1 1 \N Other +532d1f8f-10fd-4fc3-aa28-4142f5324b67 1 \N Other +5330553f-832e-421f-91d5-a8044035bab9 1 \N Other +533887c4-5ac3-47e6-8bc5-01eaab5bb800 1 \N Other +533def85-74ee-45d4-b837-88e7e3a00227 1 \N Other +533fe2dd-3484-40ff-bea7-de2bb05091b4 1 James Other +534d9377-df1c-4496-840f-d5d16995c852 1 James Other +534dbf37-5e13-401d-a700-5ac7577de84f 1 \N Other +534dfe13-44d8-4d0d-a194-acb7080c6a11 1 \N Other +5351a938-6fa5-4959-a0cd-6111cca170f7 1 \N Other +5352d545-72d3-4228-b2c0-2fe345a8a5e8 1 \N Other +5357f60f-a6b8-4fd2-907b-29eb2ac00e9b 1 \N Other +53598e49-aeee-4d45-bab1-31fc4dc38039 1 \N Other +535ec3cc-e54d-4fbd-bc46-b0b746829275 1 \N Other +53633afd-4cd7-42c7-b84c-f2faabc2f50f 1 \N Other +536446bf-2298-4dd6-a97e-125898315d81 1 \N Other +536e8195-9ec7-4fc5-ab05-762e7a55731b 1 James Other +536f16da-7a40-414e-be44-6997b486e42c 1 \N Other +536f9608-a169-4341-a638-1c0cb9d64672 1 \N Other +53711c8b-c4c3-46b2-8fb5-32628f0d2af3 1 \N Other +5371abc1-2f07-4bf3-9a11-b32ab704dd61 1 James Other +53744bcd-dd8e-4616-b9aa-236ebcc00fd9 1 \N Other +5379d216-38b7-4526-a268-43c7ba706bdf 1 \N Other +537ab7f0-d0d8-401f-838e-3ce84df70027 1 James Other +537abb80-d0f6-4c54-81e7-d4fb87d776fa 1 \N Other +537caf83-e1ed-42fc-85b4-e168b00b73c2 1 \N Other +537e3f9a-90f1-480a-affd-42ff431eb80e 1 \N Other +537f305d-a9a5-4f19-909a-ffea076bdcfa 1 \N Other +5384bc50-2599-4b70-a808-19714137510b 1 \N Other +53866dee-443b-4092-8a88-1c42cb3194ac 1 \N Other +53876f5d-ad47-43e1-9735-266a5ec99c08 1 \N Other +538a0660-d02e-4e70-96c4-e1c470485eb4 1 James Other +538b2408-7704-498f-89c2-5e9c03d89186 1 \N Other +538c9d1a-bef0-486e-9976-086e401d5f8e 1 \N Other +538d0cec-113a-11e8-a30f-fa163e8624cc 1 \N Other +538d62b6-0025-4882-b124-1f46ef8782dc 1 \N Other +53916ab5-b7af-4bc6-9617-be7a9420e9cd 1 \N Other +539534a4-2554-4141-a547-f4f4636b3ae2 1 \N Other +53955b4a-8134-4f10-baf0-057181bb6d8b 1 James Other +539823cd-222b-4780-b1c3-c279323ee985 1 \N Other +539b2588-6742-4f71-b571-2159c9baefcc 1 James Other +539ce5cf-f3b8-4f57-a624-712cfbc09401 1 \N Other +539d8d09-4181-46a0-8b74-6c70750813d9 1 \N Other +53a18ef9-ce8a-440c-9274-79d67fe3add4 1 \N Other +53a8caa0-3883-4e0a-995b-224a06ca718d 1 James Other +53ad3144-f374-493e-bdf5-393ba4911798 1 \N Other +53b0e490-da2d-4323-b217-6f18d6db3963 1 James Other +53b2722f-7c0d-40fe-bdf5-089cc6ecd3bc 1 \N Other +53b9c3cd-a363-4e22-b2df-32e5adbac52f 1 James Other +53c2f115-80cf-4877-835a-2e181f6065f9 1 \N Other +53c548e0-e43a-48c7-9a28-5d6f92f24e63 1 James Other +53d26630-977e-45ed-aa42-4e6e4a1ae704 1 \N Other +53d7a6a1-1d05-4251-a6d5-9c81d4c9d791 1 \N Other +53d7cf2b-dc45-4b49-af59-30592993c5c7 1 \N Other +53d84376-1f9a-4c98-8d6d-02608d93af0d 1 \N Other +53d86095-8d83-4dc5-8197-5f8be7b3a97c 1 James Other +53dbe05f-c826-4d63-83b6-0166ecea2e42 1 \N Other +53ef294c-3765-4b5d-9e75-a35c68ad1f06 1 James Other +53f2e740-ff07-4d4f-b3c6-69ff58fb752e 1 James Other +53f5dde8-e586-4a46-90bc-1deb5143044f 1 James Other +53f69b2b-9bd3-4708-ac92-fc039d3ca64f 1 \N Other +53f9f44c-2396-11e8-b424-fa163e8624cc 1 James Other +53fc501c-d545-4158-b0f3-c89709ffac4e 1 \N Other +53fc5dec-b4f8-4dc1-99a7-a147e29bf87a 1 James Other +53fc8d34-644b-4d10-9b5e-8be81e53d989 1 \N Other +53fcd425-24ee-41e9-8097-9e5f5355406c 1 \N Other +53fe382f-cfd3-4017-be3f-9e5425f2b671 1 James Other +54034e33-8f42-492a-b909-59f8e384e834 1 \N Other +540759ff-7221-4e2e-a5ea-48f49b09b849 1 \N Other +5409e68e-8140-47a0-b3ca-afcd11c28255 1 James Other +540b1dcb-e7a8-4f0c-8346-4d8912b9596a 1 \N Other +5411f5cf-fb48-498d-b75f-b83fcdbd68e3 1 James Other +54136425-750d-495b-b210-e57481ec86e0 1 \N Other +54148fd9-eae5-4ee8-9ba9-cb80104590a2 1 James Other +5414d7e4-ce09-49c4-b9b9-2c2b65172922 1 \N Other +54159d8d-e886-4f4d-8d10-019dd0695517 1 \N Other +541785af-a3b1-47a3-ae5a-bbe3b702b567 1 James Other +541a0ae3-9adf-404c-8eb0-5228a975bbde 1 \N Other +541e36ae-edcd-4147-82cc-f0d8c973651c 1 \N Other +541e5b2c-1239-41aa-ac1e-3c943bd07232 1 \N Other +54207898-96ed-4749-9bc5-05171b408056 1 \N Other +54210ae1-cbc9-488e-850c-c66155aa14de 1 \N Other +5422be23-1d13-4afe-b4e4-9b88459144ca 1 James Other +5423940e-39a6-49e7-839a-b62d8fd9e53c 1 James Other +54247c6d-2fdb-4e33-81cc-7e3c165b4a72 1 \N Other +5427c505-191e-4040-a28a-7f6523e26b36 1 James Other +54294430-df2a-4f6f-ba7a-911abc0d5329 1 \N Other +542a0367-4286-469c-ad2c-794dfbdaa42b 1 \N Other +542a3816-bcbf-435d-a433-83a16e88b6d3 1 \N Other +542b2bb6-c574-4269-9c78-f356828b9355 1 \N Other +542bc136-e19d-4842-90a0-3b9af8db0227 1 \N Other +542d58cd-319e-4b6c-9a73-14aafd3a3b4d 1 \N Other +542ebbb1-8dd4-4a3a-81af-ea2e2540ab16 1 \N Other +543525be-6a09-4b65-8130-37b754027662 1 \N Other +54406bc6-5b07-4071-9ef3-595a6ce514c0 1 \N Other +5443c209-8954-4ef4-b4f2-76bc36ab708a 1 \N Other +54479e00-196c-4260-9c23-ea147a4af7fa 1 \N Other +5448abcf-82be-41fd-9222-4e964ce56321 1 \N Other +54498e12-377a-4fa0-977f-bd18718bbc07 1 \N Other +544a9c1d-dbb5-4144-9da3-74078840f24d 1 \N Other +544ea4a3-ee0e-48d3-bee6-dcd282dca2e1 1 \N Other +54552232-e719-4410-a49e-3715eaf02b6a 1 \N Other +545d6674-10fe-4603-94ae-51c152249f34 1 \N Other +545dc3c9-7bd1-4e37-888d-5e776f729ae4 1 James Other +546196f3-dc93-4f43-beeb-b07cbe003d37 1 \N Other +54641ac3-aac1-40da-98c6-262134920acc 1 James Other +5465c0de-806d-4140-8a09-2044e36660d1 1 \N Other +5465d5fd-87dd-4765-bf53-5987ab1e3ecb 1 James Other +5465fe20-0f76-46d2-9915-cb2a696e13d5 1 James Other +5466a4c0-2eb6-4619-bbeb-811ec9d95e34 1 \N Other +5469db0b-7bd3-4a8f-988a-0051b536e8f2 1 \N Other +54714da6-af9a-4168-a688-e20159aaa9c8 1 \N Other +5471e316-3e0c-4896-8a6f-b6d76bf7224e 1 \N Other +5474788b-f343-4074-ab30-c82359382343 1 \N Other +5476bf01-2754-4e78-bd97-a7d735bdfe9e 1 James Other +547866e0-429f-4317-baa7-e4a4cd3635e4 1 James Other +5479331e-2ef2-43e0-b5bd-f0b66a342d52 1 James Other +547badbc-49f1-49bd-b3bc-d83d75f7c6f7 1 James Other +547c0479-51d2-4e46-9684-5e78de816052 1 \N Other +547d990b-6ea0-4628-9bbf-fedbefdbbaee 1 \N Other +547e4799-1c79-4922-9026-79ff4a0b063a 1 James Other +547e64f9-c346-43a1-ac80-22f72921c38f 1 \N Other +547f845a-2867-4a69-8a5c-0e144b22a944 1 \N Other +5481408b-e423-4596-ac54-964c7fb6e217 1 \N Other +54815404-fc6b-44f9-b1c1-88b82ad0fd37 1 \N Other +5482fa07-4dc6-4732-a1c8-8458635637e6 1 \N Other +5488ba82-7a11-463f-87dc-e91e7f44199a 1 \N Other +548c9aca-f491-4e45-a136-0163f7f55dc3 1 \N Other +548df1ab-ba8f-45af-8a46-815c47f89ea0 1 James Other +54911d1f-96ac-4422-8fe9-cc8860c9022b 1 James Other +549bd7dc-e28a-44ee-af80-71cd04370f17 1 \N Other +549d0457-3caf-4e3b-907b-dba5eec14793 1 \N Other +54a1234b-677b-4f09-bda7-94194d7377d3 1 James Other +54ace7c6-0c89-4065-b9e1-9a852a75e059 1 \N Other +54b08537-d3de-4be6-b5b2-2b7e2b309066 1 James Other +54b33b2d-2860-4a3f-959d-e88424366d12 1 James Other +54b67135-9402-453d-a0f4-6abf7ffb3136 1 \N Other +54b6bcf1-d4a2-4eeb-ae4f-915fed53a34c 1 \N Other +54c0a367-7585-412e-ab2e-af79dc67c865 1 \N Other +54c54f73-899c-413a-9e28-950ccdcb7ac8 1 \N Other +54c9e064-e061-4735-85d7-f7b037e5b325 1 \N Other +54ccf9b3-4f97-4f0e-987e-ac0be03bc2d0 1 \N Other +54cda236-86d9-4ad9-918d-b7372c0c96cd 1 JAMES Other +54d23dd3-0c7b-4205-bb44-e3e7be5a1a4b 1 \N Other +54d81147-3ae6-4d66-9718-76d724575b75 1 \N Other +54e0189e-e631-42b0-8d56-0b54cad6a090 1 James Other +54e3a6c2-1897-4f1f-b44b-74518776a9ca 1 James Other +54e604e6-4311-43ca-ab87-60075258afe5 1 \N Other +54e6061e-f106-42e1-bffb-8d094c53b82a 1 James Other +54e657ab-41b8-4338-88c0-05b38f37ca16 1 \N Other +54f2bff7-bc97-4453-b3f7-9774f1939be9 1 \N Other +54f32c33-34d4-4ae1-9539-ade6a24d7458 1 \N Other +54f68e34-8cba-43a4-a7f2-2fe6b84f0cdb 1 \N Other +54fc0940-db55-4498-8c9f-d67b491ecfb8 1 \N Other +54fcf8ae-5f86-432f-807a-c6106f1277da 1 \N Other +5500d6d7-25c6-44c3-96b2-06feddba43c1 1 \N Other +55021ff8-5394-44cb-aaa2-3b946d5c7afb 1 \N Other +5502eaa2-3fac-4332-a107-8e5823b3f060 1 \N Other +55076d17-93ac-47e7-9165-17556287cd4f 1 \N Other +5507cf78-f476-4b1b-8a1e-a363b9f99c44 1 James Other +55095938-4a10-4072-93bd-83379313b896 1 James Other +5509d2eb-39dd-46f0-ac67-8c2c686544e1 1 \N Other +550afd06-050b-4513-a044-8f1b96dc4612 1 \N Other +55131473-aa59-4667-9267-1050a938e264 1 \N Other +55140e9b-e21e-4621-91e8-30632a2aecba 1 \N Other +5514564e-8d4e-4988-9973-4c579ebe29ad 1 \N Other +55183b17-cb86-420d-9381-5100da4620b5 1 \N Other +551cad2b-faaa-4765-92b8-10ecddba2077 1 \N Other +551d1ed4-0647-40b5-9bf1-e5b64fcdbca3 1 \N Other +552836ba-4faf-4a5c-b691-2878945349a5 1 \N Other +5528f61a-2ba1-4e80-842c-1ef60b4ca89b 1 \N Other +552c20e0-2832-40ff-93df-70d31730b45f 1 James Other +552cf18d-39c1-4b8d-a830-8c4915653e1d 1 \N Other +55327f08-ed18-4456-9606-193631375c86 1 \N Other +553310dc-c7cb-4b41-b4f2-fd95adccc808 1 \N Other +5534a860-3c79-4700-9be1-b4db398f5e75 1 \N Other +5539e255-7d67-4220-b74d-70c327ac2df9 1 \N Other +553aa350-f905-4f38-9ba0-a158cdc9b272 1 \N Other +553ba742-2f93-4d70-9277-c7dc8f469ec6 1 \N Other +553e171a-72a0-4a91-a524-7eab469f0ffe 1 James Other +553e7672-7fe4-4f4a-819b-255f1578d670 1 \N Other +55404130-d6dd-4f3e-bc76-94ace6f18954 1 \N Other +5540979c-86e7-47ab-aa0c-82f8db04a820 1 \N Other +55418a69-020d-4bad-a54f-f24fba8d0e4e 1 \N Other +554452a0-6ee9-46f5-861a-c42e113f2517 1 \N Other +5548d14a-5887-47af-be5b-d3a8be8205ff 1 \N Other +554a508a-a348-41ee-b546-d914c417a50a 1 James Other +5552d8a1-0afb-4613-836c-fed2eae1f3ab 1 \N Other +55536418-7432-4c6a-ba0d-dac5c9f658c2 1 \N Other +55565ac6-1135-4ea4-96a5-093ff2126467 1 \N Other +55573c0e-970c-4b32-9377-12fb53e8794c 1 James Other +5557a696-1b35-4049-99fc-826097d8fd03 1 \N Other +55584d04-fb7d-4f61-8f8a-760cc04e34f1 1 \N Other +55593544-0ece-49ff-91f0-8363c7a32c67 1 \N Other +555b976e-918e-4e17-bfcd-99433d5482aa 1 \N Other +555fba82-1d24-48c8-921c-58479e33b451 1 \N Other +5566fd51-00a7-49ab-b271-f0118707a7fe 1 \N Other +556c717b-13f3-4fc7-9390-3164b8ed1257 1 \N Other +55712902-7aba-45d1-91a6-a251293283e0 1 \N Other +55780dd4-3dd3-42a5-97b4-047b65d7b5e0 1 \N Other +557b5754-4d00-4413-aaaf-a8800f9c6054 1 James Other +557d6341-b98e-47f2-8706-ac866681be78 1 \N Other +557fa5fb-4049-4357-9977-3e4c0b6d00e9 1 \N Other +55874d44-e1ce-41d8-bfd2-41083ef90bf1 1 \N Other +558e806b-3af1-4adc-8f6e-c0e7a58d09fd 1 James Other +558f1e48-1023-493a-adf5-85e5817f8062 1 \N Other +559118a6-0638-11e8-b83b-fa163e8624cc 1 \N Other +55930793-d71e-4f80-aa37-3acd392a6cf6 1 \N Other +5594d1b6-a260-4dd1-a104-dfd69a472d43 1 \N Other +559646cf-7eb6-407d-bed1-60280167980c 1 \N Other +559652df-1d93-48db-ad57-bae2951950fd 1 \N Other +5598e340-bdc9-4909-a107-75d3f28ed24c 1 \N Other +559ac16c-0479-42f3-8064-c28fcd0ebbb4 1 \N Other +559b2104-5b69-41d6-9c16-de5971b4629a 1 James Other +559b85ed-5b24-4fea-84ed-676c10839e76 1 \N Other +559d0798-f1f3-4211-8e7d-cb554b247134 1 James Other +559f1422-f61e-430c-bb54-bc846043f00f 1 James Other +55a89983-d8e3-4ac5-8359-ae529afcbfb8 1 \N Other +55b69648-df82-4850-a3a7-ca484dc16901 1 \N Other +55bb9d03-874e-4163-ac08-b66dcb9243b1 1 \N Other +55bc8a32-ac60-4350-b930-229f24e2d304 1 James Other +55befd8d-a2af-4167-8dc6-c2da0a062c29 1 James Other +55c0c11c-982f-4dbc-93e4-0e22e19ebab1 1 \N Other +55c3793e-f2af-4cd9-9e6d-dde6ebc14906 1 James Other +55c5adc2-103b-4817-b416-047a628e8653 1 \N Other +55c77681-58cb-49f2-a5cc-a46b88c87723 1 \N Other +55c8d35e-0638-11e8-a7b0-fa163e8624cc 1 \N Other +55ca7d14-489c-4794-8027-3ec17e971aba 1 \N Other +55d1f9ee-55b7-401c-9a8b-2e215c2ed8f9 1 \N Other +55db7d72-369c-4342-aa7b-4f1d560c5e94 1 James Other +55e42dac-335a-448f-96ef-0a1ad9db360f 1 James Other +55e569be-28df-4b77-a094-3df2e5372933 1 \N Other +55e5efbe-f99e-452e-bf34-7c8a1bbea267 1 James Other +55e80d40-3e76-44dd-87ea-b26d07a0f868 1 \N Other +55e9490c-c219-40d3-8a52-74478bf31d45 1 \N Other +55ea82c0-97d9-4164-82bd-01842cb6fe98 1 \N Other +55ece6f5-9c73-4153-b90e-05502d0b8da1 1 \N Other +55ed5860-33df-4eca-affb-a84387ba6818 1 \N Other +55f18cb5-20a3-4dd6-a891-002ff499d755 1 James Other +55f7fba7-0ff8-4902-9d35-d3bff4ab766a 1 \N Other +55ff2804-bdaa-44cd-aa70-b0f4dfffae88 1 \N Other +56001d54-6fb5-46a8-9cd0-011039335b75 1 \N Other +560311af-b3e6-4237-a6f1-ad2c1ae48f73 1 \N Other +5603959a-63cb-4026-aa8e-0ad52ec0092c 1 \N Other +560c84cf-20b6-4742-985f-563a37ace7b0 1 James Other +56122b08-0948-43d5-b01e-f0ba264ccad7 1 \N Other +5615fb88-fecb-4984-b6c6-50b97d2ee7df 1 \N Other +56169df8-2c32-4a2f-8c19-eaf696eb81fd 1 \N Other +5618296b-61ff-4052-848f-552f03eaad15 1 \N Other +561b8bac-4df0-4f54-857f-39c2861333c0 1 \N Other +561d71e3-2183-4a24-a846-ff2ad24fcd64 1 \N Other +56250ab8-5801-46bb-93ac-372ed3736cf4 1 \N Other +5627b7ce-fdae-4ea7-9db8-20ad381898bf 1 \N Other +5627ef1c-8d47-44a7-8cf5-10561446a3da 1 \N Other +5628474b-7313-4902-a258-77e5ebbdd3c8 1 \N Other +56287b91-2919-49fa-b638-fffffabb19b2 1 \N Other +5628de6d-58ba-487d-aab5-fb2a0306e553 1 James Other +5629a156-2fbb-4d4c-93df-a5ef10fdea4f 1 \N Other +562bce8f-e1df-49eb-8eab-d5494f5fcd14 1 James Other +56310978-f018-402b-8709-0b16938ea256 1 James Other +56314c81-76f9-42bc-b3a5-359bde02aa35 1 James Other +56334385-e944-44ca-a10a-a8c4a1e512e4 1 \N Other +56344d59-c011-40d3-8386-b596a8e93db7 1 James Other +56367fb6-91ab-40aa-9b2d-61f2ddd3cb60 1 James Other +563a8762-7882-4f1a-a527-23767483942f 1 \N Other +563dd55e-db60-422d-a96e-f30e565e7eeb 1 James Other +563fcea0-e8d3-4d34-be39-f0c9413a9910 1 \N Other +5644149a-fb77-4580-bf0e-1c36d383fa0f 1 \N Other +56456a8d-d367-451f-b5f7-a4e0463788c3 1 James Other +56499596-c9bd-4841-85af-ebbc53002834 1 \N Other +5649c39b-4371-4840-9831-6e658202c0cb 1 \N Other +564cea38-bf98-42d3-affd-8d31ea6a83d5 1 \N Other +564e4345-06c6-4b50-8463-093e3fcf8e9d 1 \N Other +56543e6c-c643-498e-8b34-091b0e5bed13 1 \N Other +565bb4c2-5425-4619-9bbd-293651989f07 1 James Other +565cdd68-7174-4367-ad30-6681ef6a36a6 1 James Other +56624ce1-1acd-4234-b551-7de6393aa38e 1 James Other +56667b61-32ff-472c-b754-f0ccac681675 1 \N Other +56675fb1-e97c-4021-8171-b72a12442d6e 1 \N Other +566b00a7-b56c-4661-96db-490f6e3b7a13 1 James Other +566b1119-f870-4e1c-8ce9-2994e21974ab 1 \N Other +566e0c68-7e70-4199-83f5-83cef54a7049 1 \N Other +56736aa9-f6be-409f-ae7b-91967b9e3e2e 1 James Other +5674dbb5-17da-4685-953b-4592b3d4ada3 1 \N Other +567938d2-0cdf-4765-8bdc-0cf37b37631b 1 \N Other +567d58c8-b748-4968-98ec-402453cd0260 1 James Other +567fb33f-180d-466a-8c18-cd658d70d39d 1 \N Other +5682982d-92c2-4b25-adbe-15b0e63811e2 1 \N Other +5683bfa1-f2c1-4f99-b1b5-e9ea8c982067 1 \N Other +5683eca9-37de-4e52-8e98-2d755bf1d5b5 1 \N Other +56886629-41b8-457f-a64c-7b6a176ecfca 1 \N Other +56889fcc-39e6-4852-98dd-4726c2d2a71f 1 \N Other +568b8963-c272-4c16-bd04-2214b0eae036 1 \N Other +568cbce3-6576-4a93-904c-1a0ae1e04fed 1 \N Other +568d59b0-a179-42e0-9c0e-07b4feb609e1 1 \N Other +568d694c-1901-4949-b104-080ee8b0580b 1 James Other +56913687-5e03-4c3b-a5f9-eb2f051f2737 1 James Other +56918f75-91fa-40fb-8196-997fda6016b5 1 \N Other +56922c0a-71c9-4d13-a36f-cf4606ba5809 1 \N Other +56933d2e-de35-42fe-84eb-426ed9c4cbb8 1 \N Other +56939167-3aa2-465c-b222-49725f352b59 1 \N Other +569ccd3c-fbdd-4114-894a-1e18cfab91b8 1 \N Other +569f4623-9b82-4692-b9c8-1f7957b94a8b 1 James Other +56a2bc8c-ae30-47b5-be2a-9b4346686afe 1 \N Other +56a5c1e6-cfb2-4bca-9ac7-48d734cf31d7 1 \N Other +56a6c0a5-d617-42f2-84fe-a917cb6e8b16 1 James Other +56abfca9-a7af-4f56-8dfb-d40cebc0b7a3 1 \N Other +56af6864-1dbe-48bd-a36b-8028ddccbaf2 1 \N Other +56b04a87-76dd-4079-ac2a-d1712f2a594d 1 \N Other +56b2709b-cc44-446c-95a6-28d96c3c2056 1 \N Other +56b4559d-f31e-4c8f-9376-ff901feb63f5 1 \N Other +56b4c5fa-f84f-4daf-95bd-fe9a9136aaf0 1 James Other +56b61aae-620d-4446-847e-7714e5b7224f 1 James Other +56bc582d-ca9f-4212-874a-d8ee7463ee39 1 \N Other +56be5035-7d29-4022-8a64-033c32f5eca7 1 \N Other +56c43ae4-3de0-499a-9bc1-5f9462d1d76d 1 James Other +56c63a70-9122-4ba3-af25-54e38c4c4eff 1 \N Other +56c9d083-1ec3-4ab9-aa24-a0301d2f4120 1 \N Other +56cb36dc-3990-4d48-ba35-59f1b3776712 1 James Other +56d6309e-b07b-41ba-bf2d-a2e7e3df8cfa 1 James Other +56dc0565-b351-4060-a8cc-63985b15aa43 1 James Other +56dca62a-11e8-434a-af63-5e3570261961 1 \N Other +56e0a33e-6b67-476f-be28-5968abcad3f1 1 \N Other +56e0fa89-647e-4fcd-b205-b55648048531 1 \N Other +56e8b883-dd64-4fd1-82e2-68f3b232f732 1 James Other +56e96925-0982-4283-ae41-a45ea29cd862 1 \N Other +56e9d072-459c-47a6-80fd-9261929fd6ff 1 \N Other +56ec34c4-836d-4dd3-a8bb-8f4990744034 1 James Other +56f31ead-a1eb-454e-b0a4-22d528bb4f37 1 \N Other +56f6cdf1-b61d-4317-af76-f61304441086 1 James Other +56f74337-5209-41ce-bcae-1f8a6098d0df 1 \N Other +56f8fb6c-549c-49cd-8c1c-fec3c6b795a3 1 \N Other +56fa1f76-cc76-474f-a210-2493c1a3970d 1 \N Other +56fc50d7-a4f3-4ce7-b0f7-b014d4c8c738 1 \N Other +56feb7f7-bb0f-46f0-afa3-12ffdc17c2de 1 \N Other +5700acd8-87e8-4354-bf4f-bd2d44a28ff3 1 \N Other +57023232-4f82-4bc8-8e93-7638f085c47c 1 James Other +5704d29e-f181-4029-ae85-63c3dbafc98b 1 \N Other +57084f06-95e4-4a93-b2cb-477de7d8c987 1 \N Other +57091f72-ed07-49d7-bfc4-7d0e63890f24 1 James Other +570f26bb-ce56-4093-aec2-4b4393f35236 1 \N Other +570f70ae-e37e-4291-8445-f4f954227d38 1 James Other +5716c0a0-88cc-4d87-9fe1-df68149c2f2c 1 \N Other +571c3b42-39a8-44f6-b7ac-e6ff31e66d88 1 \N Other +571ca9f6-e031-4f72-927b-cb3b89fa67c2 1 \N Other +571efddf-be59-4600-9d31-5c19ed7d52cb 1 James Other +571fc90f-cffc-45a6-a8cb-b2f108c25dda 1 \N Other +57201c3e-c671-4fae-ba2d-5180a2b0a818 1 \N Other +57215304-1f9c-410f-a1a2-ba6fe784e3e7 1 \N Other +57228d3a-4e90-4dd5-aeb8-4dc24ef2eff9 1 \N Other +57264c1a-e2ea-4b92-b6cc-94ebfc03d3e5 1 \N Other +572bbede-61ed-4957-9109-d14e8dbb60d8 1 \N Other +5735764b-1d6c-40d7-94a7-aaa59863c617 1 James Other +57370fc9-d412-4a68-b88a-b5663ecb940f 1 \N Other +573ecf7f-f1a1-446b-a6ae-dea2c17e8d35 1 \N Other +57404576-a105-44d6-8aba-80c21f5034f2 1 \N Other +5746be19-e1bc-4e00-b06d-2f245a10510e 1 James Other +574754a9-49e7-4795-aa22-233908531a87 1 \N Other +574fca6b-2446-467b-99da-566152c28067 1 James Other +575081ad-39f4-42c0-8927-922a8072ea8f 1 \N Other +57510ef9-0c53-45e4-b5c6-35796c9fec90 1 \N Other +575668a7-974a-431c-b723-586910e804eb 1 James Other +5757f8e0-b868-4a29-af39-73c2d05151c7 1 \N Other +57584a80-8c1b-472a-ba32-5d4ea79599a0 1 James Other +575d7f53-6422-4422-bbc3-83fc842b9e0f 1 \N Other +5762d6af-6894-4923-a2dd-b9cefbfcce67 1 James Other +57656fd2-1e5d-4ec5-959d-0b5555601316 1 \N Other +5766236e-a45f-4cdf-b182-2b0dfa425b91 1 \N Other +57665d75-98d5-4675-b2db-f6aaa9224999 1 \N Other +5767a9df-efcc-4cb0-907b-dbb467c81d1e 1 James Other +576aeafc-75b8-408a-b83a-0d6269730b63 1 \N Other +576c2ece-ab4d-4f0b-ba59-a64d1ef1ce4a 1 \N Other +576fa322-2973-4c56-b52a-a5c79d790655 1 James Other +57746289-ccd8-4f18-9567-a2e3ddf62c0a 1 \N Other +5776e4bf-622b-4b40-b6f0-e45c0a224004 1 \N Other +57775304-6ac3-4713-b6a8-31e3b7228161 1 \N Other +577a6945-8dbd-4bed-9732-eba581f2270f 1 \N Other +577b5fd3-ddd6-4796-badf-031b32f4e75e 1 \N Other +577b9f0e-00ae-46f1-8590-d50114e13457 1 \N Other +577cd78c-9bc5-4205-b195-9536f0244b80 1 \N Other +5783cb88-10ef-4ab8-a217-41210825e745 1 \N Other +5783d516-6b77-416e-ac6a-5502d2309f49 1 \N Other +578e7426-065a-4e94-8bbf-092d6afbe0a1 1 \N Other +5790bba9-afe0-47ab-b7de-5a00e42d4d8c 1 \N Other +579a05fc-1a36-4be7-b7de-87c84af037f2 1 \N Other +579cb72e-1ff8-4fcf-b9fe-c9876d41e7bd 1 James Other +579cccc4-5092-43f2-b723-060b9fcf3db8 1 \N Other +579f643b-5a1c-442d-a43a-8913541c2b6b 1 James Other +57a06dab-160f-4766-b82e-27c05f0573b6 1 James Other +57a0d2e5-18c0-437e-86a8-e1fd6a7f3592 1 \N Other +57a22c1b-b9a6-401f-9cc1-76a992757d4f 1 James Other +57a318d5-de24-4245-81a8-77a6ad7e1859 1 \N Other +57a639c5-54ad-4710-b5da-b81efcae1a3f 1 James Other +57a732d2-3e55-4be9-bf81-e7e4c7932e69 1 \N Other +57a7907b-af77-4620-8ae7-4df3d773ac36 1 \N Other +57b50066-2c34-423d-944a-3bec05678714 1 James Other +57b6fc45-9b66-4405-9e01-362c5190c941 1 \N Other +57b9f818-1832-47ee-a7fb-a6ae2541915f 1 \N Other +57ba25e3-e170-4425-a50d-4e2f85927ad7 1 \N Other +57baa32a-2ef3-492a-8d1c-2ead51d5dffd 1 \N Other +57bb3f13-8a29-4b9a-9760-71f89d36a6c0 1 \N Other +57bc9ec8-0362-40c2-9f03-225780995a0f 1 James Other +57bf5502-9d10-4c72-a2dc-4dd08d9ed83a 1 James Other +57c48f87-4f24-4337-b8f8-7f518c98db28 1 \N Other +57c60728-730c-4a77-bab8-3d0b2a39ac48 1 \N Other +57c6632c-0266-4d1a-b38c-3661f9a0a9df 1 James Other +57c80d37-1b2c-4e99-b633-a9b572a8e0a5 1 \N Other +57ca7e20-a47b-40e6-94bc-aafc10c14122 1 \N Other +57cace1c-fc76-4680-b798-24e8e5ab946d 1 \N Other +57cffcbb-b6ba-43b8-9561-043a20cb7913 1 \N Other +57d05875-ffca-4264-8457-36d161b9014c 1 \N Other +57d75e6b-fcf4-4290-a3f2-93378408e3a8 1 James Other +57da8064-8ce5-462a-ab80-eef06b6dc874 1 James Other +57dcdb60-4087-42ab-ad7d-bdbc1900ee56 1 \N Other +57ddff27-6278-48a4-9249-aac786525a4e 1 \N Other +57e47fbe-267a-11e8-ae61-fa163e8624cc 1 \N Other +57e507c2-32cd-4e8d-b483-1a03d672585d 1 \N Other +57e6345c-2b2b-11e8-9868-fa163e8624cc 1 \N Other +57e67a87-a61b-4b55-bc79-a69c14324af2 1 James Other +57e68870-72d5-4b9f-8d09-4eba03bd8b78 1 \N Other +57e6bd3d-4ebb-482c-b601-f79aa1a30ff7 1 \N Other +57e73eda-229b-11e8-9567-fa163e8624cc 1 \N Other +57ee77a8-4378-4fa7-b16b-0f4eb5330bed 1 \N Other +57ef7e48-3145-49bf-8f19-9529ad3fe5a0 1 James Other +57f496ea-e728-45f0-9f39-4d0215d11982 1 \N Other +57fcdc9b-ae50-4d35-841f-5909b4943b9d 1 James Other +58068296-66d5-4885-962b-9e080a781231 1 James Other +580d5bb5-ae54-4aed-8cb1-51297cc73195 1 James Other +5810b4a7-347e-4b95-a614-31627b60f994 1 \N Other +581226e3-6539-46f9-97ca-a6307e2f5fa8 1 \N Other +58128f7d-99a8-43ea-8346-22f956bedc21 1 James Other +5813b80c-c933-46d8-8c1b-ed9a06c7419a 1 \N Other +5817d752-229b-11e8-b9cf-fa163e8624cc 1 \N Other +581a445f-566f-4c1f-ac96-ae26875aba56 1 James Other +581ab0b3-ba3e-4c48-8c11-44389b2d9147 1 \N Other +581ea337-77a4-4779-9843-dabc0ad3247d 1 \N Other +581ee7e8-4890-4464-a985-ab269afe3bce 1 \N Other +5823b8a2-8d03-44cc-a647-2d9c4760f4ef 1 \N Other +5825f917-ec00-4755-a137-763346210dab 1 \N Other +582ef3eb-07de-44df-b93e-f6377bc4fe7a 1 \N Other +5830ffc1-6628-4d77-9f6d-372142fd5fa3 1 \N Other +5834d219-a88d-4f19-a2cc-4ca8c2eedaa0 1 \N Other +58379b70-ebb0-4d66-9e29-c1c5f5f086b4 1 \N Other +58395f01-9942-42f2-a7ce-103348f3e27e 1 \N Other +583965d4-49da-4700-b2dc-77397d4ac658 1 \N Other +583af07d-1267-4957-acc5-25bbdca8164f 1 \N Other +583d0a3a-a410-424f-ae10-bc3d3be6e5db 1 \N Other +583f7170-b86b-4923-abd2-d5989b3e01e2 1 James Other +58439115-7c04-4318-ab41-e44fbc32f38e 1 \N Other +58458f0c-7a16-41ec-a5b4-7dba1ff8c025 1 \N Other +5846cecb-db67-4a0d-b4d7-58188b22e896 1 \N Other +58472478-3d95-4d52-96fe-eb4ba21dc283 1 \N Other +5848011f-4448-479c-b330-13eb2365a09c 1 \N Other +584ac489-eb55-4324-9530-2551a1bd6fc9 1 \N Other +584b50c4-7980-46ba-a46c-1ee28d869898 1 \N Other +58503160-1190-4291-9b9c-56f2850019b9 1 \N Other +5854bb8f-07d8-4375-82be-92c667d72445 1 James Other +585b1643-c156-491e-9141-51e0a010ec10 1 \N Other +585e7ed7-4c52-4085-933f-c51e26347149 1 James Other +58633815-71bc-4e32-be6a-fbb03c78c887 1 \N Other +586463d6-6590-462b-b7e3-fd03f59d2468 1 \N Other +586524d7-8822-4c7c-8b12-4cf340d21851 1 James Other +58668e87-6093-4f5f-9fc4-969d5e0095b0 1 James Other +5866b17b-65e2-4e1f-a830-a302eec345c5 1 \N Other +58699f7b-1da5-4f34-9723-40c4c7faf655 1 \N Other +586b9189-826a-434b-9ef5-0751a59ce75f 1 \N Other +586e92f3-dd7d-4755-a1a7-91144dbdeb48 1 \N Other +586eb877-b1ff-4898-ba85-596ca189ba75 1 James Other +5872f2e9-7b2f-43eb-8cb0-fe54ef51dd9f 1 \N Other +5873d1bf-d734-4f96-a399-0b507e3080e7 1 \N Other +58741806-8254-414e-8890-a3312dfbafcd 1 \N Other +587516ee-116b-4bf6-afba-f1adc31602e5 1 \N Other +5878d5f7-f071-47aa-aadc-d34481585ca5 1 James Other +587943f4-50f5-4e97-9b84-ce69abf980e8 1 \N Other +587986f0-96f1-47ca-a27e-6745e1183324 1 James Other +587a3a95-5ab0-4bec-b35e-1c19b12e726f 1 \N Other +587b2cb6-267a-11e8-99ab-fa163e8624cc 1 \N Other +588027fb-0deb-4523-b0e9-b321c9b098aa 1 \N Other +58828e65-f710-4e99-b5f3-d771ac6847ed 1 \N Other +58854031-6287-4e34-ad8c-4f3e4272c9db 1 \N Other +5887e410-2375-4483-bebf-965999740bfd 1 \N Other +58883823-20ce-457d-b0e5-d2b4e0ababc6 1 \N Other +58886c6d-2075-4927-a9b1-11f2b8db78fd 1 \N Other +5889deae-2e42-4de7-87d9-d431115860df 1 \N Other +588e7ede-229b-11e8-a432-fa163e8624cc 1 \N Other +588f74bc-9b19-4e07-90f9-f794a87f3244 1 James Other +58980d86-274b-4d6d-bd6f-847f57e115cc 1 \N Other +58994cf4-a47f-44f6-8f40-3a0f26feac71 1 \N Other +589a5a58-27cd-4921-812d-4951ac3d79a6 1 \N Other +589a7e21-ab59-473a-a85e-466b8a0cdc73 1 James Other +589b5387-53fa-4d9f-abf2-4b274945838b 1 James Other +589bc305-7637-4c27-9463-40dab6bb270b 1 \N Other +589bebf7-03a9-4a26-94ee-f1e70c35da4b 1 \N Other +589e7ce7-3d50-4697-886f-6c26e65247fc 1 \N Other +589e8499-de06-4b68-88cd-27d5e11b38f2 1 \N Other +589fd37f-b871-4ed7-b3f3-afd254f2311f 1 James Other +58a0073c-8183-45cd-8f6a-b9b0c6f8be4b 1 \N Other +58a27996-0517-4111-acdf-6ad92baef192 1 James Other +58b6828a-ddcd-41ba-bc22-e24e66320c25 1 \N Other +58b738a6-1647-450a-b8b9-3d7674860671 1 \N Other +58b7db26-229b-11e8-9f95-fa163e8624cc 1 \N Other +58b7f5e9-d730-41a2-8e3e-e863ab873eb3 1 James Other +58b8d561-9667-4e35-9ced-f3f38ce5dcd7 1 \N Other +58bae1a7-cb5d-4aab-95ff-30be9d0746b7 1 \N Other +58bdde00-07f3-4873-9340-af9f163fbd8f 1 \N Other +58c4a24e-2fb3-4b7c-8e90-b29083ebdc52 1 \N Other +58c55843-4650-426b-bb32-d5f6ad917944 1 James Other +58c6e0b2-1b20-4d0e-a049-5f447fd50555 1 \N Other +58ca6bee-9e23-4600-aeb8-5ee0e5ffe331 1 \N Other +58cdca15-c052-4adf-9bd2-e21d2a6ec1c8 1 \N Other +58d9c2de-a3df-4a05-a97f-4304eea3e2d5 1 James Other +58dbcdbe-21d9-40a7-b028-d8fea5cef2a7 1 \N Other +58e34e2f-e1f9-4d50-8485-ec710380beb3 1 \N Other +58e616cd-d50a-428a-92ba-4770529d097e 1 \N Other +58e79180-7359-4c14-abf8-2e8441267357 1 \N Other +58e8a29f-d2da-4564-aa39-c26e0cf290b3 1 \N Other +58ee1b8f-82e8-43d7-a5ca-78a170e4b82d 1 \N Other +58f2ce22-0518-4d7b-b276-c37c79f1bc1e 1 James Other +58f60581-e9be-408f-93d2-4644998a6f89 1 \N Other +58f61cd4-643a-4a17-a556-643bfb1fee93 1 \N Other +58f66d8e-8f43-4227-8731-5efcb599ed48 1 \N Other +58f67208-cf3c-4f9e-ae13-95cb426791bc 1 James Other +58f7b8ef-0a9e-40ca-8a03-dbdc32f0f547 1 \N Other +58fa5a78-7404-4a21-ba9d-ac4cf7372fa0 1 James Other +58fa7893-c01f-401d-8f8b-8c0a726ef778 1 James Other +58fa7e6b-9251-4f91-886c-6e27ddb98fc4 1 \N Other +58fc2e52-2055-40ba-ae85-ba42b28f1067 1 \N Other +58fcb59e-9bb4-40d3-9610-4c021a6cb587 1 \N Other +58ff4f8c-7f1a-4eca-b798-df9a0942cce9 1 James Other +590636b6-010b-435f-a1f9-c4a90dd413da 1 \N Other +59096877-046d-4442-b2c7-3f9e5de7f224 1 \N Other +590d2150-01af-41a3-a464-74c523d8ab32 1 \N Other +590f7274-afdc-4cb0-ad4c-54ad83c3a06e 1 \N Other +59130840-d438-4763-97b5-4f1008233aae 1 \N Other +5914ae0b-0c2d-4475-a9fe-3c88cf6bda4b 1 \N Other +59159fed-674f-437a-a3ca-b0cc3b5796ff 1 \N Other +5919e9a7-3394-496a-9772-f54d240ab16f 1 \N Other +591c4a80-54fc-41c2-aefc-e213d751790e 1 \N Other +591f14ac-940c-4cad-b098-1bd5c836f7bc 1 \N Other +59211808-3332-426a-9e2d-1bd11ddd727a 1 James Other +5929d83e-c96c-43f5-bd55-6afa2bcc5ccc 1 \N Other +592d85ed-f5bd-47fc-b8ff-5b56bf26a76d 1 \N Other +593064d1-538c-4eb6-99a6-0dd546d611e1 1 \N Other +5933d397-f289-4d3b-a5d9-55dc074f7342 1 James Other +5936becf-d893-4adf-8577-0b0b98f0fa32 1 \N Other +593dfdb0-993a-49ac-99cd-cb1868091b31 1 \N Other +593e5861-1bd4-464a-a941-f9264da0e9eb 1 James Other +593eae42-f38a-4c82-9800-325731783941 1 \N Other +5942aef5-2340-4d9c-9488-cdfcf4b50b53 1 \N Other +5948976d-66af-4b0f-9947-6db9df09746a 1 \N Other +5948b7f8-3e27-4762-b22b-804267a74c0d 1 \N Other +594cbabf-25f3-4f60-aa6d-df1a2e2ef868 1 \N Other +594d7007-3add-429d-a37e-0c722f50389b 1 \N Other +594f4a15-d15d-47db-b59c-94bb7204929e 1 James Other +595008ec-7899-4c86-bd45-0e8244f117c5 1 \N Other +5950cd08-30c2-4fdb-9c15-83f98e88104d 1 \N Other +59510a65-f09f-46ba-8150-a05059255f80 1 \N Other +59533ace-2b2b-11e8-aa5e-fa163e8624cc 1 \N Other +5955956e-b2fc-4c84-a904-f6f2e0b015c2 1 \N Other +595b9488-01cc-41cf-959d-c59b6a221427 1 James Other +595ce70d-7532-45ab-bdd1-f6aeb80f0324 1 \N Other +595ce8b0-c463-480c-94b5-777cce4d5938 1 \N Other +595e57ab-bd32-4285-875a-209fb0d39a3a 1 James Other +5961c346-fa36-4b39-a223-d7ad76d6741a 1 \N Other +5963b343-e89c-48cb-ac2d-dbcd4db97bb3 1 \N Other +596607a6-44c5-43ea-bb38-a313c053a0f9 1 \N Other +59689e0c-7668-4bf2-9c72-78259f668d21 1 James Other +596a5ba0-efb8-4f61-9fb2-f11eb7a0feac 1 James Other +596b0dcd-c36e-4a95-b88d-c30097b31fb8 1 James Other +596dbbcf-0b22-46b4-9050-0ecf53a29dc8 1 \N Other +596fd228-10ce-49b1-b15a-0bac120c6cda 1 James Other +59787b3f-f685-46f9-9f44-a7d223deda79 1 James Other +5979bf20-eacb-4226-adb7-f0fd47886d02 1 \N Other +597b8523-2b90-4672-a7c3-f1b3cb09c67d 1 James Other +597d69f4-2684-40ed-a03a-189eb8578e1f 1 \N Other +597d9e8c-2450-4cad-9d05-b39e4c4cddc0 1 James Other +59810f43-7418-4f88-89ce-23970de9b91a 1 \N Other +5982df38-23aa-4844-b8a0-ce2bef108798 1 \N Other +598444c1-a2c2-4e9b-a8a5-ec51ece6c218 1 \N Other +598569ff-e1e8-4440-88ee-06b909617129 1 \N Other +598821cb-709c-42fb-b9ec-c3c7d849d190 1 \N Other +59907540-5ac3-48d7-9854-019f0495068f 1 \N Other +599393e4-d63c-4cdb-9de3-8d07f9704eb2 1 \N Other +5993bfa1-ef55-4324-a177-aa7525295e62 1 \N Other +59982974-8aea-4dfc-bbef-a896f31beb78 1 James Other +599c258b-0149-4e09-8bc0-9d778720b6ae 1 James Other +599db9c4-6d97-486f-ad9b-980219be3517 1 James Other +599f25bc-1bf9-4e08-8fcd-f26d0fa80bf7 1 \N Other +59aafbaa-215b-41d9-888f-92f8347e1c20 1 \N Other +59acb18b-a618-4049-b4a4-33adf0ed9085 1 James Other +59ad1276-f21e-49af-9947-c11a43905b06 1 \N Other +59ad3177-764e-4447-bc85-0ea7d0f9a61d 1 James Other +59af6702-92fe-429b-999a-4e50c0d0b273 1 James Other +59afccfb-5082-46f4-a1fa-a16a4b6819a4 1 James Other +59b2d039-89de-496f-9503-291408268155 1 \N Other +59b771ed-0633-44ef-816b-0cf1586396b0 1 \N Other +59ba66ca-3c99-464b-a108-32090d1a7e41 1 \N Other +59bd5501-d2f1-4d3f-bc40-7af25e4b3d65 1 \N Other +59bd7d8f-4df8-44e2-b58e-bb7ff023ea7b 1 \N Other +59cca9cc-3b12-405e-808e-25be0fff5bad 1 James Other +59d20938-d14b-49c1-91cc-0ecaad36d006 1 James Other +59d4d050-6794-4dca-853c-56f6d2af3a1d 1 \N Other +59d54e03-2586-4e8f-ae02-205750711f9b 1 James Other +59d7ba40-758b-4747-80d8-056b5604c6e9 1 James Other +59dbc863-1adc-4a36-a5a1-45e69600e7f9 1 \N Other +59e39bdd-51b8-43f1-a2c9-a9da2bb508a4 1 \N Other +59ec6b5c-c8d4-409e-9d9d-0bb10091e2ba 1 James Other +59f1b271-650b-4d66-bca4-56c22a494489 1 James Other +59f5f1b9-6a8f-416d-8669-784259f7bb7a 1 \N Other +5a00f0b1-c2d6-4b6e-96ef-a3af39edbb1e 1 James Other +5a0890f1-03ea-4128-b093-579def1d6773 1 \N Other +5a0c4d49-606b-4d08-a341-da67656e4456 1 \N Other +5a0cdf25-2932-4ce6-8af8-79b01e1c9b8d 1 \N Other +5a0dac67-48e9-432c-aa80-447d05d0cae4 1 \N Other +5a0f2aa1-98f7-4065-9f73-b31ddcfdbfae 1 \N Other +5a0fd748-84c4-4a26-aae6-6da19bcbb9d6 1 \N Other +5a147aaa-deea-4644-9c2b-23f37f780269 1 \N Other +5a151cb1-72aa-4471-ac25-728da69049bb 1 \N Other +5a15b608-0962-431f-90f7-0c7992780dec 1 James Other +5a177fc0-f57c-4913-ad1d-c4d4c6351abb 1 \N Other +5a1c02aa-acaf-4ba0-adf4-4467be1645b9 1 \N Other +5a1d9a0d-7b74-4914-b7b2-3ae45abeb9a1 1 \N Other +5a23f772-f4c5-46ce-84b2-de7bbbb4f1cf 1 \N Other +5a2688a5-a1fc-4282-90f0-1e4834c565d2 1 \N Other +5a2769e2-2eb6-4680-8766-33a8ad1fef68 1 \N Other +5a296206-962d-47f8-bd85-30b49f84e617 1 \N Other +5a2c64e4-7f2e-4b80-97b3-138102d41eb5 1 \N Other +5a2eda30-92ad-4dfe-839a-bafcb1ae554d 1 James Other +5a301348-2056-4be4-a62b-f1f17f5e15d3 1 \N Other +5a3087b7-2e59-4989-9a32-4503a93635f0 1 \N Other +5a312e69-1a79-4b33-872c-b60d0e6a41e7 1 \N Other +5a3b99a8-84dc-410c-b900-104e4e211b6d 1 James Other +5a3c5ffd-acc2-4430-a297-78dcd6042876 1 \N Other +5a44fe83-b231-43b0-a86e-8c977e02ff4d 1 \N Other +5a4715bb-981d-4ea0-9f4b-089eae6ca148 1 James Other +5a4bf369-5710-4db8-89fd-afcd3507e8e7 1 \N Other +5a4c07ce-42a7-4f63-9e9d-a506f240cb4a 1 James Other +5a4dc7c3-ad67-4ffd-9e76-1ca334aed97e 1 \N Other +5a4e330a-cae8-43d9-b4cf-943adf8418b3 1 \N Other +5a4f5b70-ba66-4799-8175-7c0446f5be4b 1 \N Other +5a50d2ff-0f73-40b5-920a-067b369a6c50 1 \N Other +5a535162-e190-4725-b7db-18618ae6e733 1 \N Other +5a576517-75f5-43bd-b02f-9cbbf0804bec 1 \N Other +5a58cccc-ee99-450c-b8d8-5add5f3bf38c 1 James Other +5a58f29d-fda1-4466-8549-6c1d57e1f3a6 1 \N Other +5a59dc89-92b2-45b1-ad17-87fdd8be2a9d 1 James Other +5a5be683-887b-4a38-b552-a66b4d8889be 1 \N Other +5a628b69-1509-4971-9a24-324daf067d23 1 James Other +5a649cbf-05ac-4118-a652-16d8c937673a 1 \N Other +5a654f3e-afea-46eb-a17f-7527e3a1df61 1 James Other +5a6ae83d-cbcc-44cc-9970-b78d3e202dbb 1 James Other +5a6d274f-a468-4b3f-b2f8-e4851b1e9cdb 1 \N Other +5a6f9bb1-f12f-4461-8f5f-b10e1204f7ca 1 James Other +5a704a8e-08d2-4a6d-84b2-854c7c565b0c 1 James Other +5a71c83a-d1f2-4576-ae79-c35c175d5b39 1 \N Other +5a73c7b6-9a9b-4fbc-a724-b800e18ea1d0 1 \N Other +5a757580-291b-46a7-85b1-f98e6feb98f9 1 \N Other +5a75bbe2-c248-4311-858c-a50db47beff1 1 \N Other +5a7b1e5a-a223-4b61-9392-de69b0e9174b 1 \N Other +5a85ed41-01b6-4860-a315-18a28ae43fc8 1 James Other +5a8627e1-fe2b-4c3d-806e-3ba07011af0d 1 \N Other +5a86cb69-0e93-4da7-96e8-1dc525fb790e 1 \N Other +5a8ab068-e80e-46fd-b475-07845cb53506 1 \N Other +5a8d0f95-ade0-43c2-bc0b-e4cd2d39c091 1 \N Other +5a925b91-1ee8-41d3-8faa-c076ce9b54a2 1 James Other +5a92c29d-7601-4029-b85a-a89308ebb4f0 1 \N Other +5a931796-ed73-43a7-b427-5d2f3a78b279 1 \N Other +5a9623c8-3af6-4ec1-872e-991a968f06ce 1 James Other +5a9b9c5e-1728-454d-878c-4b105c274bf4 1 \N Other +5a9e1a84-6b38-4f8b-9d44-bbdfd28d79f4 1 James Other +5a9ffc9f-521f-4d85-b236-7428d5a9c534 1 James Other +5aa071c0-3e88-4048-8ff3-5b30a0fcd85e 1 James Other +5aa5bc04-76ca-4f3f-be5a-e40e668bff4e 1 James Other +5ab06b14-ff46-46a0-be52-3651d147ae05 1 \N Other +5ab0d271-a73a-4d5d-89b3-efa4dc21e823 1 \N Other +5ab1456b-7b7b-4521-8ec7-db49511144af 1 James Other +5ab32e76-b55c-4ca0-bddf-3fbb4d0a037b 1 \N Other +5ab46698-76ed-4f26-a906-76cfcccd76f0 1 \N Other +5ab59852-8cf7-46a0-ae8a-54d88b617b2b 1 James Other +5ab64ada-55be-41fb-a1e4-bf4a3e838a84 1 \N Other +5ab734d7-5561-4af6-8afc-f9a754f4ec3c 1 \N Other +5ab906ba-66b1-4714-b0ad-840aebac254d 1 \N Other +5aba3aa4-6e72-4e67-ae6a-d14990461d09 1 \N Other +5ac4c35f-955e-4643-8add-973b92015384 1 \N Other +5ac8cd5d-6b64-41d4-b7cb-82291d3fd9b9 1 \N Other +5aca975b-b3ac-4779-b4fc-6be81039627a 1 \N Other +5acc99eb-db37-414f-96aa-fab339171cc8 1 \N Other +5acf2a85-bb2b-4ad0-b627-42724825e0cd 1 \N Other +5ad77a8d-d181-448d-a39d-922791acb959 1 James Other +5adb532c-b086-42b6-aa61-26ddd83c57bb 1 \N Other +5ae0bd81-3654-4f47-a841-6d7bb4befeaf 1 James Other +5ae30a68-3d00-4a51-bfe3-ab9777e4a84b 1 \N Other +5aed7d2f-179f-40e5-a4fd-3ec90f01e08d 1 James Other +5af7788e-0293-4bf9-8dfc-776e7afcdb57 1 \N Other +5af7a75f-436c-4f33-8544-f515693dae1d 1 \N Other +5afa9e61-ef3c-4552-8152-aea7f3c6ff2f 1 \N Other +5afaab64-cd7d-493c-a2ed-c1b6887366d3 1 James Other +5afb7446-6f73-4618-b43e-7b462787eb32 1 \N Other +5afcba32-fe7b-48bc-9c96-a78658c4b104 1 \N Other +5afd2c78-dd44-4b3e-822f-0d04dba1513f 1 \N Other +5affc21d-2193-4d14-9ae7-e1732a74f522 1 \N Other +5b03b209-ccda-4da3-bb68-6ab7a25b0f91 1 \N Other +5b07ac97-0d71-4b7e-a155-3a5d3108ff2b 1 James Other +5b07df2f-5d5a-4ad7-8cca-b75e3ed6d4d3 1 \N Other +5b0911aa-1fcb-4a63-b10a-a76ed6ee417e 1 \N Other +5b098a80-45c0-4e43-b3c3-3a3a0a53d2db 1 James Other +5b09ac8a-0f3c-4fe9-8dc4-658b0f1106c6 1 \N Other +5b0d8318-36af-4725-aae3-59b082e7bda4 1 James Other +5b0e3622-6ab9-4bd6-9140-268b2f14a49d 1 \N Other +5b10b9b5-5731-4027-8c3d-543313e1b5b2 1 \N Other +5b11974a-5626-4e92-a4a5-51b0ef9493a2 1 \N Other +5b191875-5dde-470f-b5ec-dc018d0f3ffe 1 \N Other +5b19911a-efcb-4d0b-ba99-2e41b5ba56ce 1 \N Other +5b1afd4b-5174-4c1c-8ab5-52d622f95d8a 1 \N Other +5b20012d-38ad-4f90-8fa4-9135f52582bf 1 \N Other +5b22182c-57a4-4ed9-804d-58c96d2eed3e 1 \N Other +5b223dd3-90a4-43f6-bfd6-24845e039130 1 James Other +5b25e36f-9380-4698-b406-ab178e60fc90 1 \N Other +5b278f96-c334-4c21-95bc-3ce9498abd71 1 \N Other +5b2c4414-a810-4e77-a8bd-d476d5c2c3be 1 \N Other +5b2c6d2c-a520-40bc-b9de-5cdc2d50db6d 1 \N Other +5b2e4c8f-a2a3-41b7-a53d-3fffb7e8316a 1 James Other +5b2ee63f-946a-49ca-ab59-f5b05e51d86e 1 James Other +5b2f6164-b83d-4d3d-820c-4fdff3268541 1 James Other +5b31d7ad-9987-4130-8274-c47f245b87b8 1 \N Other +5b3850e5-6131-4649-993a-60c8daa41e5a 1 \N Other +5b3a6bff-c531-4a73-b9d0-68608ebf49f8 1 \N Other +5b3b3c7f-3220-4b04-a889-be0c0eff09a4 1 \N Other +5b439d6b-6804-4551-b779-30aed4fcef70 1 James Other +5b487278-7ef2-436a-921e-a09fb315bed5 1 \N Other +5b4b44da-8643-4d10-bb3b-669066b5578e 1 \N Other +5b4ee7ae-f90c-4677-a826-fefc123efb07 1 \N Other +5b5022ca-491c-4031-955a-5cd8ee891e27 1 \N Other +5b52e44d-1feb-4c1c-9156-65b0b1c2ccc9 1 James Other +5b57a0ba-e9f8-41bd-9a54-437a301baba9 1 \N Other +5b5ad12d-2e77-4ff3-953f-26cc5dd7b1bc 1 James Other +5b5e1bc7-575c-4d61-8bff-e5fde6ccb62c 1 James Other +5b6337c1-a240-4e11-8067-5a72c1a97ce7 1 \N Other +5b67e821-c4d0-4608-9666-2fb35f05a33b 1 \N Other +5b684dba-f652-4b00-875f-89345fb7511d 1 \N Other +5b69d36b-534e-4433-be1c-485003aaa436 1 \N Other +5b6a308e-1118-4967-b407-a39ee1d7986b 1 James Other +5b709d98-8dbc-4c23-ae8d-69799ee7d361 1 James Other +5b715151-f497-42fd-82d5-4d596c86c47c 1 \N Other +5b739968-1f24-4939-ae4b-83ad50cdc80b 1 \N Other +5b75f8d3-0846-4269-ba0b-a41c67552769 1 \N Other +5b77af71-25a0-4349-b211-46fc5080bbbe 1 \N Other +5b7b76ac-0727-46b9-9199-a6059dadf114 1 \N Other +5b7f6964-bff4-4ace-a7d8-34eacf986d59 1 \N Other +5b821d52-8ed6-4c1a-9199-89d6cbefbc29 1 \N Other +5b84aee7-5a36-4109-8bcf-0e79ffaea1a3 1 \N Other +5b8bfa4e-0865-11e8-b2a7-fa163e8624cc 1 \N Other +5b8c68b6-04ac-4a8a-858c-165c86085b0d 1 \N Other +5b8ded3b-52c5-4e17-ae9c-efff6cee2c9c 1 \N Other +5b90e91c-5342-4dea-94e1-05a41865b626 1 \N Other +5b95bb4e-cab1-47e1-88ac-6db337fe60d1 1 \N Other +5b965c99-35c2-4bf6-8bb3-0611db417579 1 \N Other +5b98e65c-77f8-4e58-9c17-17e96f1679a5 1 James Other +5b9a5459-d231-492e-8316-e16084266b53 1 James Other +5b9b560d-8941-41f1-af17-9b1a6c15c834 1 James Other +5b9e38c4-9ce1-469d-8157-c3f010283c8b 1 \N Other +5b9e59d9-638c-4e8d-95de-bb95dd63fa1c 1 \N Other +5ba15e63-d5cc-4762-83c3-8b30bcb90ef2 1 \N Other +5ba420a3-46ba-4b61-ae5a-a7f71307c8cc 1 James Other +5ba68cb9-04a1-45f3-b644-94bc6aa0852e 1 \N Other +5ba7be7e-67e5-4ac6-8e58-95c11385bd50 1 James Other +5ba8a297-72f0-4dec-bcaa-9d45220eb6f1 1 \N Other +5baa009e-e308-4cb0-b906-f5579467fe1b 1 \N Other +5bb0ee79-18a7-42e3-ad54-b3913126c251 1 \N Other +5bb4c80a-49b4-44f4-ae77-dfdc82c2068e 1 \N Other +5bb71320-cf98-4fcc-bdf6-fb240891808f 1 \N Other +5bbbe471-b1ba-400e-a6d6-574f176e0ed1 1 James Other +5bbd2f8e-833c-4b20-8ac7-5a7b80b93dbe 1 James Other +5bbdb77f-8005-4383-9dbb-8e4efb6815cd 1 \N Other +5bc1cf7b-964b-4838-9387-6d3d55a29d18 1 \N Other +5bc8a749-1556-49e2-a73e-a0e5eca8620f 1 \N Other +5bca2dc0-d813-417d-b250-13fc3a779b9e 1 \N Other +5bcaae49-377f-47c6-8e43-e424366ebc87 1 James Other +5bcb351a-5d54-4ad0-a68d-ecfab225110a 1 \N Other +5bcb4175-e62f-4983-9d57-9cde1c033086 1 \N Other +5bcd10f2-1f24-47f4-86bf-fbe7e10bd87c 1 \N Other +5bcef52e-bbd4-4876-b24d-13035ba61ae6 1 \N Other +5bcfff52-b3e1-4105-a35a-ab7d147e6618 1 \N Other +5bd17964-613c-4c89-a106-25012e1a79e6 1 James Other +5bd210f4-debf-4a98-9284-f4b64a3294f9 1 James Other +5bd37428-0865-11e8-837a-fa163e8624cc 1 \N Other +5bd3e3ef-69d6-4a63-9bcc-3496e2da7154 1 \N Other +5bd4a60f-0684-493d-b02c-8991fc64d25f 1 \N Other +5bd6be70-b41e-404f-b6f7-bf00f554e01e 1 James Other +5bd7a266-3d1a-42dd-97b0-441d992b5b0e 1 \N Other +5bd900e5-3024-43a2-a0e2-9c5c94d956d7 1 \N Other +5bddd24e-5891-4a6f-bfe0-2a26bb7890b6 1 \N Other +5be0c271-3391-4253-8532-d8b616a06c5e 1 \N Other +5be798d5-c0aa-4b96-bc7c-07efd05ed50e 1 \N Other +5be8bc25-eede-4d45-8d0b-bfb453426480 1 \N Other +5be8d5a8-996b-4ee5-b88f-322979e18184 1 James Other +5be9ca21-1d6e-472b-a650-539f3d271473 1 \N Other +5bed8d50-ae57-4409-9a06-bfa2a78399e4 1 \N Other +5bf14aeb-a39a-4a9a-a9c5-c8aa1e8f666c 1 \N Other +5bf17f4d-72d9-40fc-9ad7-a3a33b7b3968 1 James Other +5bf247e6-a33c-4ed5-b2e7-96e5f42e02bf 1 \N Other +5bf415f1-0713-4066-811a-a41e54ab6a39 1 \N Other +5bf98058-7968-48a2-a036-ab0f922e9459 1 \N Other +5bfa6829-18a1-4ddb-81a6-838ee60f1c62 1 James Other +5bfe5a85-177d-482f-ae57-2dc2b0735ffb 1 \N Other +5c0120b6-a6cd-4eb7-8356-27214b046583 1 \N Other +5c049a02-4326-4388-89fe-1055dc3e6fb1 1 \N Other +5c04dca1-a65d-446e-af46-a3e9abd4604b 1 \N Other +5c07474c-c1d4-4d54-9852-1b75af07789c 1 James Other +5c0823ea-54db-4c92-b671-6df7e5661f0c 1 \N Other +5c0e29b2-41a6-426b-9f78-9bd19e55f4ae 1 \N Other +5c1204eb-1148-4efa-8ef6-8fa9df503a13 1 James Other +5c181237-040f-4827-bdf2-bc0e77176504 1 \N Other +5c18edbe-630b-4b9c-ae30-e9aebb980a07 1 James Other +5c1bb6fb-843f-4dc5-b4ae-8b410f5a63ae 1 James Other +5c22c7ee-5bc7-48c5-a9b1-7b94dd53d568 1 \N Other +5c23a76e-bb46-490f-9dc3-d7d696260af9 1 \N Other +5c240f32-15da-11e8-b956-fa163e8624cc 1 \N Other +5c2d34ac-ee66-4b91-ac89-2f9c3d38f26b 1 James Other +5c30e576-a413-42d1-b145-d3279eecc0f2 1 \N Other +5c339822-4125-4df8-aa46-023b317717fe 1 \N Other +5c360ba6-aefc-4107-980a-83c5a69c2967 1 \N Other +5c3c1806-50ee-4e05-90d8-272c7e307fb3 1 James Other +5c41345d-7e7d-4b69-84b5-49f4ab90591b 1 James Other +5c44b626-07e0-4e63-89b2-13347fb53994 1 \N Other +5c45915b-db09-42e4-925a-f4deb90a0363 1 \N Other +5c4f579b-4a82-4d0e-bfa5-8a76b321644f 1 \N Other +5c52b49e-bbd1-4a9a-bbed-47a84774dc6e 1 \N Other +5c53dedb-a635-4418-a535-ff83aa62bcc2 1 \N Other +5c5d7ebc-5f73-47c9-a624-290667108590 1 James Other +5c5fb432-2a80-4284-a729-6d1560e50c20 1 \N Other +5c69b84f-a0fb-4f0f-a3b0-56128ac47e88 1 \N Other +5c6f0646-bb25-4cbd-a825-7f3f52b9bf06 1 \N Other +5c6fe9e1-4630-460e-9050-9c0e892e4fda 1 \N Other +5c7327a2-4815-48ff-aaab-ab68170c229d 1 \N Other +5c74c5c8-6f8a-4628-a132-153b5f5f7bc3 1 James Other +5c7503ed-45aa-4d30-b6c4-47a6bde4dd0c 1 James Other +5c763862-7439-4145-a335-2fc51ffd4376 1 \N Other +5c78a253-a54c-4bdb-8168-211418273d97 1 \N Other +5c7d52d8-82f9-4bc5-890c-ebf1c5f41414 1 \N Other +5c7f6401-4ce8-4aa9-a64f-baa9e8f5a57b 1 \N Other +5c804917-15fd-4a79-897d-89f37714ce37 1 \N Other +5c80c465-6f05-41e9-a7d2-414ab3071aa3 1 James Other +5c84f949-2efa-4476-ba11-4f01b99ce5ce 1 James Other +5c89fad0-e0cd-4d19-80cc-3757b3217401 1 \N Other +5c8a4a44-7262-4550-9ac6-28dc0e8cc91d 1 \N Other +5c8b7301-c9a5-4a07-88c6-6876aa3809fe 1 James Other +5c8c4ec8-2a90-4894-b41b-88c48e9b05c3 1 James Other +5c8fc176-4c47-43ca-8fd4-82e431752012 1 \N Other +5c904cd9-d842-4d6a-8a9b-5ebcd22fe56c 1 \N Other +5c9134d6-e186-45fe-a3d0-6f2baf81ea87 1 \N Other +5c94c12d-dee4-4e22-889b-c98e9f46a224 1 James Other +5c9713f2-e757-4014-a58e-092b2b05fcf1 1 James Other +5c99cd17-e84e-4387-8a67-ca7efe28ec6c 1 James Other +5c9cb70e-534b-43d7-ab24-ed36b0d673fd 1 \N Other +5ca427a0-992b-4c3f-ba70-07e290825f5a 1 James Other +5ca4d090-0531-4fad-896f-71c8b7bc855c 1 \N Other +5cabd0ab-5e16-44a2-a44e-5dc91187945d 1 \N Other +5caeb53e-91f7-4977-add0-fab60c19038b 1 \N Other +5cb06b00-9ed2-11e7-a2f7-fa163e8624cc 257f6774-64eb-11e7-954b-fa163e4dd901 \N Other +5cb3aeee-2abc-44d8-892d-b8858f757812 1 James Other +5cb4f28f-e8ff-44f7-b765-d6a892058a0f 1 \N Other +5cb64cd9-4224-4971-9cf1-f7651451593b 1 \N Other +5cb7789f-af4d-4fc2-9f70-59bf920b6543 1 \N Other +5cbe2044-acb0-445a-ade9-458132d78667 1 James Other +5cc02de7-6cc8-4e80-a30d-fef76860dc39 1 James Other +5cc06f2f-d960-402b-90ea-3055771751d7 1 \N Other +5cc36010-9675-417f-87fd-758b91cb9a99 1 \N Other +5cce7aa4-2bdd-439d-a1f1-84db56eec4f7 1 \N Other +5ccf98c0-c024-4550-83d4-b4ff0b215942 1 \N Other +5cd3b541-7bb5-44fa-8982-71c1593b8562 1 James Other +5cdc9f4c-4fc1-4d26-ba51-09fb6a441642 1 James Other +5ce3cb88-977f-4a67-9680-bc56d11dd156 1 \N Other +5cea28ba-4500-4796-96f3-1941b3ea1282 1 James Other +5cea3218-1a2e-4157-9c65-626498d320fa 1 James Other +5cedd1b4-b76b-4d4e-b3d7-44910d9dc080 1 \N Other +5cf5e8c6-0e10-4f22-ac66-4fb30c1f1ff1 1 \N Other +5cf7c76a-5370-4453-881b-8128e2452d67 1 James Other +5cf84892-bce8-431b-8db1-8396b5a78a83 1 \N Other +5cf9ccd7-0e0b-4ed2-b8bd-3e52c38a9da1 1 James Other +5cfb11ce-683c-432e-8746-e6d4d44f924d 1 \N Other +5d086b53-ccca-4e44-9e81-b3b0e8f53268 1 \N Other +5d0884cc-54fe-4578-a1d9-e58fc211be0e 1 James Other +5d0cbbef-a4b3-4e5c-9d68-838a349bd701 1 James Other +5d0d04d0-5cce-4841-b874-6d3a7b6d1d42 1 \N Other +5d0e489a-ba95-4e80-92fa-e0cf47be5e14 1 \N Other +5d111fe7-55b2-49c9-a0d5-1a2c93867a2d 1 \N Other +5d13041e-902a-4685-83c6-96ff5713ceef 1 \N Other +5d174ed4-9a9c-4100-9079-a5218a17dae0 1 \N Other +5d180bed-a2bd-4f08-82c1-756d2a5002bb 1 \N Other +5d1ac893-5905-46a8-bfb4-feb4f74fa194 1 \N Other +5d21ccad-1fbb-4fcb-9278-3ff80572689e 1 James Other +5d291738-2e04-4fd9-a0f2-e1e3c8689d72 1 \N Other +5d2fbf33-d7cd-4459-bdcb-82a1241a9220 1 James Other +5d2ff7bb-2427-44dc-963b-b8e4250f231e 1 \N Other +5d317991-c133-4a76-9806-f2b650610dcc 1 James Other +5d32f344-43f3-401f-bf2b-7bf1748800e4 1 James Other +5d3581d2-3215-4f6b-b49d-8284489c9a9b 1 \N Other +5d39d691-850c-44ed-893b-d1d27afbe880 1 James Other +5d3be827-74b4-4364-96be-c625a3380d90 1 \N Other +5d400b5a-ea37-406a-b0fa-e97cd716f55f 1 \N Other +5d41002b-f97b-473f-8152-f7866e67acca 1 \N Other +5d4265c9-add4-4b20-86d7-8925ef991b08 1 \N Other +5d45ba23-676b-4775-a657-c28487aff0a9 1 \N Other +5d48154b-737a-4446-9348-fefbb88e15b2 1 \N Other +5d4e1577-58cf-4822-9bc5-be50a45f43bf 1 James Other +5d51402a-1dcc-442b-a514-5c545f6e6005 1 \N Other +5d51e3bd-c966-4fbb-9086-aa826fc70515 1 James Other +5d58508a-9e74-4edd-8d66-4879fa7912d0 1 \N Other +5d589194-6b3c-43ce-b9ce-e1bf9bc9804f 1 \N Other +5d5e3370-27d9-4e43-86fe-5d718e2fd6dd 1 James Other +5d618ab6-cb91-4e92-8733-8ac645d17fcb 1 James Other +5d6696d1-012b-4bb2-801e-8b0a4cf8c515 1 \N Other +5d686b46-5d50-4e75-bdda-c02e66656012 1 \N Other +5d6dbd56-1efd-4fa5-a58d-12c93801fd61 1 \N Other +5d72f415-b4b4-4a4f-8905-6217e3adf3d5 1 \N Other +5d78c80e-bd3c-4a1b-b3ed-5beed503d37a 1 \N Other +5d79abd0-a1b4-44ce-934d-46cf84f59626 1 \N Other +5d7a7e32-45c9-4c44-935b-8bba2f8ac101 1 \N Other +5d7cba65-5033-4b48-8f0a-a3bbaf09f264 1 \N Other +5d7edd08-7513-41a7-8fae-2f89bd6b7f88 1 James Other +5d80b0ca-5f4c-41ff-a91b-1be0c323d91a 1 \N Other +5d812ed4-6e98-4148-a1ca-f694ec1044a3 1 James Other +5d815ce3-c34c-4d27-8378-c0e890f95fa5 1 James Other +5d82c4c9-9bcc-4c19-90d6-8a842dddb35c 1 \N Other +5d853b1f-c776-40de-a04b-606245e3c3fc 1 \N Other +5d8909e5-8e88-4f58-8d0c-e5905316f570 1 James Other +5d8bc026-c151-457d-bc49-8fae2a6806c8 1 \N Other +5d8cf419-ccbe-4512-a419-0d6ba1166001 1 \N Other +5d9683ac-79ef-4a21-a73d-5a78cbbee234 1 \N Other +5d9743de-15da-11e8-a2ee-fa163e8624cc 1 \N Other +5d9b72e1-6e72-4ef5-b1bd-a8baec3d3048 1 \N Other +5d9b7e07-20cf-48d8-96c3-f99999514ef1 1 \N Other +5d9fb7e7-4c43-4286-acb2-b5eee3ce2864 1 James Other +5da01c1c-ddb3-43b0-894d-46fa85ddf6c7 1 \N Other +5da069ff-6342-4306-a0fc-56833c9e855f 1 \N Other +5da24818-a6a0-45a0-b2d7-53f710a84b86 1 \N Other +5da2c647-ae87-44d5-a890-e8c3bfd38b09 1 James Other +5da3d7fa-67ce-4e5d-9a68-0fd0ba5cab44 1 \N Other +5db1b395-f7c9-4652-bd69-5b0e723c61ed 1 James Other +5db1e0a8-f8f2-43f6-bd53-3d3b0f71a83f 1 \N Other +5db1f1ab-7004-45ae-83f8-e19c0c80252e 1 \N Other +5db55c86-a08a-4348-9bfe-94dd505fc454 1 \N Other +5dbae55d-eadd-4800-86d7-20ae24028d23 1 \N Other +5dbb29d7-9627-4e44-b921-1eb9b5afec16 1 \N Other +5dbd7d73-d44c-41d7-9638-df022b945030 1 \N Other +5dbdf581-a558-4b57-bfda-89fbcd7ec902 1 \N Other +5dc0d51b-155a-478a-b3fb-534bd567324f 1 James Other +5dc1b8e0-75f1-49e1-bdfc-6a213b10ea85 1 \N Other +5dc39ba2-621a-4460-83d7-77e2699b0a73 1 \N Other +5dc418be-8dcb-4f3b-bbd4-3ace4da10b6c 1 \N Other +5dc4ff5e-331f-4bbf-9ca1-d8e399573e60 1 James Other +5dc6cfd7-b08f-4335-84ed-d03d3ac733a3 1 \N Other +5dccd6b7-f373-402f-9e2d-0664fb563653 1 \N Other +5dd3871c-96e5-4b50-bfac-4ffbd11e22ac 1 \N Other +5dd7ddcc-758c-4f02-9007-6d4499926ef9 1 \N Other +5dd85c5f-77dd-4007-b6a0-530f05e8a2ec 1 \N Other +5dd98899-2e69-4e0a-9125-75252c83e114 1 \N Other +5ddd450c-db1f-4edd-907c-6b6d4fb0fe6c 1 James Other +5ddd8b33-228b-4ed8-80cc-a24b198e0cc5 1 James Other +5de1fcab-3cde-44cf-ae91-fc95fd13a53e 1 \N Other +5de22614-f1f1-4971-8ba4-c338f74e9a45 1 James Other +5de62bec-3a24-42cd-be7b-553b41a94b31 1 \N Other +5de86209-7021-48dd-b7d0-d1b0348090fe 1 James Other +5de8b3ba-c86c-4347-93ab-dfc52d39cf33 1 \N Other +5de955a4-e13e-4f1b-b018-ee6cd0d1d749 1 \N Other +5dedadf7-f850-4f18-b106-c10179fe1af5 1 \N Other +5def0907-3526-4459-8aa9-ef9da896a89b 1 \N Other +5deffe9a-8bf5-4c34-b030-1c9836d0a691 1 \N Other +5df1b630-1695-4857-9b25-3d6335779a96 1 James Other +5df591d7-5964-4108-9109-69aad2cf7bc5 1 \N Other +5df8a45f-437a-42d3-aa67-1f5c71347be9 1 \N Other +5dfa8c0d-e587-4a10-a693-6df1c275ee7c 1 James Other +5dfccfd8-e2c5-46ac-8c20-16887db87ec2 1 \N Other +5dfcdf46-f311-446c-9878-db02b5279c68 1 \N Other +5dfd690b-6da8-4aed-9a23-b012feb1b487 1 \N Other +5dfe01f4-f28f-49e8-b2a1-b79fd750dd63 1 \N Other +5dfe3dc6-9e6e-4f4e-acb6-f2e77b5f03e5 1 \N Other +5dfeaf65-ca41-49d1-92cd-ca30f87edc51 1 James Other +5dff3a64-646f-48d4-a174-c93f78fd8b18 1 \N Other +5dff42e1-b3b0-457a-8bdd-f5c26f70a740 1 \N Other +5e00550d-200e-4ec9-929a-e1928e23d833 1 James Other +5e014296-6839-4e70-af83-727ffc1f966f 1 \N Other +5e01db19-f6d7-454f-a66a-90eac3e4d811 1 \N Other +5e023797-c7de-4f8c-931b-143a8d7aa0b3 1 James Other +5e06f548-1c69-403c-b726-350614affc3c 1 James Other +5e07367e-906b-46d2-ab71-2c1aa92a245d 1 \N Other +5e08bacc-f46c-4e19-83c3-a48b88dd400f 1 James Other +5e0c90bc-f632-41e0-bef3-0a1a86817b89 1 \N Other +5e0ca21f-3903-44b5-9012-c3feadff08a4 1 James Other +5e0f3f07-815c-4af9-a0d4-899f65ab035b 1 James Other +5e1195ab-04a2-4368-845f-8599fd697454 1 \N Other +5e15063f-8bd5-4aa1-bb2f-8ae963076563 1 \N Other +5e181c71-e1c6-4068-9655-20f744624d04 1 James Other +5e1aa1f9-1c17-4604-8c73-f8ff22fa3b31 1 James Other +5e1ad70f-6771-4a03-9d3a-f828a91b932d 1 \N Other +5e1c352d-2996-47a0-b55b-6a3797746552 1 \N Other +5e1cdb9a-abb2-4a53-ac7e-2402c02ec15e 1 \N Other +5e1fdeb7-747e-4fc2-ac94-be7fcfb71002 1 James Other +5e214fcf-08a2-4d77-9ecb-14a8c38cc7bc 1 James Other +5e22af63-fb25-4ba0-b41a-9de52f0e1a80 1 \N Other +5e234fb3-6086-4166-8b9b-9ace4d7c6787 1 \N Other +5e25e60a-1e2f-4504-bbb7-14c4e5fb429b 1 \N Other +5e27d4ca-cf05-40ec-8639-cf6422dc0125 1 \N Other +5e29dac0-a52f-4a1e-9123-829969decdf9 1 \N Other +5e2f700e-3702-4172-b5b6-1ec4bc3f6ac7 1 \N Other +5e309b4c-efd2-44dc-bdfd-70161f6b8f9b 1 \N Other +5e35973d-f416-4729-a6bf-78425fa425d9 1 \N Other +5e37ad19-9023-419d-9e12-762321e09375 1 James Other +5e3a73a3-d095-4942-b2e4-c118ebeb7bed 1 \N Other +5e40aa4d-5ad2-4b72-ad7a-23cac5f7d54b 1 \N Other +5e45e358-81b3-4377-9b99-6027d8d6c0f5 1 James Other +5e4711bc-b27c-414d-9813-9b16ef89f9f0 1 \N Other +5e476087-ad08-4f42-96e8-81108b2a8a50 1 \N Other +5e4be848-14eb-405d-8cf0-369df8d9d9cd 1 James Other +5e4ea104-affe-4e57-b21d-d47d16b2dec6 1 \N Other +5e4f8d8f-2a57-406e-80a4-7fc5fb6ded26 1 James Other +5e54fd3c-2538-4c0a-a7fe-99414ffc9a02 1 \N Other +5e569610-0172-4de4-8854-ef117af06a46 1 \N Other +5e5b095d-ea8a-4c4e-a934-e782762a817a 1 James Other +5e5d1f4c-d8ac-4e9a-9131-512b92b2bb12 1 \N Other +5e5fb788-79b0-4d6d-b194-42076dafa42e 1 \N Other +5e5fcf40-59d5-49be-a909-3e5ee462f8f3 1 James Other +5e634571-639a-4b66-9522-a92db98f0db1 1 \N Other +5e63d77f-036e-420a-8efc-62d744e9eb9a 1 James Other +5e664472-6910-4b86-99b7-edc95ffabc9d 1 \N Other +5e673123-d210-479b-8752-66aa88c85ed8 1 \N Other +5e6da707-d694-4d8d-ad14-ebd2e743ae5f 1 \N Other +5e740317-9119-4091-8544-536353cfe2be 1 \N Other +5e757f32-9534-4ed9-85a8-b656be72f2af 1 \N Other +5e75e835-0463-4af1-a531-340aa2089f1a 1 James Other +5e791d61-97b6-4840-8bd7-c257b2cd68d6 1 James Other +5e7c960a-6657-456d-8b01-4bf4d7bd594d 1 \N Other +5e816ac0-9457-4831-a8ab-645880a64417 1 \N Other +5e83a851-a70a-44dc-91b3-35ce23f65b85 1 \N Other +5e8589b6-c7f8-4bbc-885d-10376320156d 1 \N Other +5e8606dc-a1eb-413c-85e9-621871b0315e 1 \N Other +5e863d89-c69e-4151-9a93-9b812b6668eb 1 \N Other +5e868987-c836-4e2e-a468-049bdde568c7 1 James Other +5e8f4b57-b286-4f28-b3e4-650065442646 1 \N Other +5e9075aa-4a28-44d5-9125-d2959f755568 1 James Other +5e92aeb1-ab45-46d0-bb70-84b3010ea566 1 \N Other +5e932a21-bde0-4857-9160-e3ceb6f5971a 1 James Other +5e986f95-7edd-481a-a1cb-f2ba8adfc4f3 1 \N Other +5e99eda6-58a3-4ab1-be6d-18ea2ddd57e1 1 James Other +5e9adbed-f105-45d0-97d5-0905f1066d28 1 \N Other +5e9b50da-2460-4393-9457-13060d5a923c 1 \N Other +5e9f1367-aa46-4a94-baf2-e7cd35ef1fde 1 \N Other +5e9f3e7e-c50c-419c-8b86-f48ac94660aa 1 \N Other +5ea00e51-08a0-4db6-a567-fcc154a0e1b5 1 \N Other +5ea1afd7-30ec-4a3f-a87b-b230774d546e 1 \N Other +5ea1b1fa-ffa1-4ca8-b5a5-57ba2cfdf50a 1 James Other +5ea22ccd-9c3f-42b3-83f3-6a5217889daa 1 \N Other +5ea63815-4123-411a-b7d5-7e42308f96a4 1 \N Other +5ea7c486-65f7-40a4-820b-43adf1fe22a9 1 \N Other +5eab4e7d-d66e-49c8-b0f0-837977a025f0 1 \N Other +5eab7086-d0f7-4d89-bef2-0259d47b3555 1 James Other +5eb2e3bb-f7d9-442e-b051-3c25c75d7d34 1 \N Other +5eb3d71a-4523-48ae-945f-729dd387aa56 1 \N Other +5eb5bcf8-94cc-44b8-ac1c-4fba0e4516bb 1 James Other +5eb7dee9-67e3-49cd-8859-0d8dd0c3b966 1 \N Other +5ec15758-40e5-42c7-ad97-5b4268dfed6c 1 James Other +5ec33adf-14b8-46e3-8e37-5d7a9c607e75 1 \N Other +5ec49c2a-0ca8-4fc7-baaa-6cac2d97b28c 1 \N Other +5ecfd046-d8c0-4909-b3ae-c54bd3866af8 1 \N Other +5ed40e5c-3b2e-4e82-af17-f323d9b73f8b 1 \N Other +5ed4d740-1bb4-49fc-bfb4-636952438d98 1 \N Other +5ed4d7bf-154f-4b28-8517-c8768116245c 1 \N Other +5ed60f43-7eae-4e5e-8eb6-2ff6d763eb2a 1 James Other +5ed6b236-5d73-4749-b8d0-6346d4cb0d56 1 \N Other +5ed9e575-2854-4a85-a538-3bcc3113f54d 1 \N Other +5ee67186-7642-4567-8031-75c1c4f056d2 1 \N Other +5ee6d62b-5aa1-44f2-bd26-8b7f87797c7e 1 \N Other +5ee8fde3-0817-4954-8dcc-10b8b572bd18 1 \N Other +5eec07ed-a2c6-4a71-aaf8-15dac4866aee 1 \N Other +5eefd8bc-8d00-4c20-8125-950d5560f90d 1 James Other +5ef0f6b8-b159-45b0-a45c-4e4f3a7a1c5b 1 \N Other +5ef1876d-dca1-4088-b8c9-c4d1e34b27a0 1 \N Other +5ef8d917-674b-4ac1-9cf0-6e450046d90d 1 James Other +5ef97201-73cd-47ca-b80c-c150991a4ab8 1 \N Other +5ef999d0-64f7-4c04-8c34-1a68159cdcf6 1 \N Other +5efbb8b4-f630-4602-a440-ffd567196587 1 \N Other +5f008d40-f624-478a-89a1-cbc2825e451b 1 \N Other +5f02f5b4-1619-4487-a7d8-f686ecdf69c8 1 \N Other +5f02ff04-4af7-410a-8b7c-181a75c1692e 1 James Other +5f03b63a-2b2e-11e8-aa92-fa163e8624cc 1 \N Other +5f05aa5d-28ab-4fff-a4ba-09ee00625c7f 1 James Other +5f07d86c-c25b-42fb-a2b1-b5356c2e0d38 1 \N Other +5f08abd7-854a-49c5-ab48-a1e0d54588a4 1 James Other +5f0a0ec8-43ca-45d3-bb6c-5168a00e9a80 1 \N Other +5f0c3f44-483f-49b2-ae2b-453db9910513 1 James Other +5f0d16c1-1a4e-4e98-9390-4e56121b5512 1 \N Other +5f0fd836-ef32-488c-aec6-876b9cdd6761 1 \N Other +5f1492ce-24cd-4a8a-b800-23c2bd924198 1 \N Other +5f1a09d2-96a8-45b8-9e1e-e0304d1c2cdd 1 \N Other +5f1cba6b-be78-4953-86d8-c0f79ca53a9a 1 \N Other +5f21a4e9-84f9-4437-90d9-31cc9537d29d 1 \N Other +5f2222bc-a7f6-4361-ae54-53564b887e9a 1 \N Other +5f223251-b345-4afe-b302-ce321b239cb9 1 \N Other +5f294f5a-aeb1-493a-80ce-d504c1b60ba1 1 \N Other +5f2b2c71-b77f-49f0-b464-db41a24fdc52 1 \N Other +5f2ba987-8596-4030-9b74-eb588d4cde83 1 James Other +5f2c6bf6-6b39-4c57-ab9f-b80a3d9a9b18 1 \N Other +5f3094ee-bd25-456b-9422-9c82b9b9507a 1 \N Other +5f30bc51-a246-4303-aeaf-1665daa9efc6 1 James Other +5f34b50b-3a94-41bf-80f1-408753c2053e 1 \N Other +5f3a4c6c-f776-491c-9d42-c0469fee5ef6 1 \N Other +5f3bbf16-aef3-42c7-9ca7-4c810ec5c55c 1 \N Other +5f43b80b-db70-451d-bf05-50fc08c76b82 1 \N Other +5f44d9a0-3adc-4893-8ece-9e068989a2b3 1 \N Other +5f45754d-68ee-411b-aa67-5773137fda4d 1 \N Other +5f45e1a1-0216-4dc3-be63-0c22651fc84b 1 \N Other +5f4b1cfc-2c8b-4ede-b039-581a23ac4d54 1 James Other +5f4bed53-5ea1-41d2-9d5e-aff772c53c42 1 \N Other +5f4e5ae1-4744-4199-931c-6ff6410297e5 1 \N Other +5f5579a1-a8d3-4d42-8a70-c6753a3d7cda 1 \N Other +5f5a8074-89f0-47e6-a1e6-22260a3da70c 1 \N Other +5f5b3cce-be9f-487a-b0f5-a0383057de74 1 \N Other +5f5bb4fc-2b2e-11e8-b241-fa163e8624cc 1 \N Other +5f5d5627-eba5-4768-9ea0-509f86e45059 1 James Other +5f5ebcd1-4d58-40d4-9406-a627b9c8baa1 1 \N Other +5f60956d-d86d-46ec-8b18-d6f3d039d832 1 \N Other +5f60a193-c0ac-4cb8-839a-ae249ff2ca7d 1 \N Other +5f60d85b-cb9d-4e18-9014-1cd1a75e6f59 1 \N Other +5f64d8a7-c348-4192-8cb7-b3bf7bcbb7ed 1 James Other +5f6dac3a-8c39-4093-9cfd-f660d899e6cd 1 \N Other +5f6f5380-557a-4e50-bf1d-98d0f9579f80 1 \N Other +5f72724a-0f1b-4928-8586-e511aab6e89a 1 James Other +5f80ad60-3287-4c69-bfdc-daf6330b708c 1 James Other +5f823ea6-d1fd-4acf-ba2d-8361bdd91f34 1 James Other +5f8a4f88-d9c7-45ad-9843-d0bfc0ccbaaf 1 James Other +5f8b9fe1-2549-4aee-ad7e-b8f89e675960 1 \N Other +5f8cd6b1-24fa-46d7-b125-878076353a92 1 \N Other +5f8d1cf2-8167-4afd-b6c5-212a5c8e54f0 1 \N Other +5f8f3393-94d9-4de2-9db8-7493a71128a4 1 \N Other +5f927580-494e-4772-931b-0d596eebc83e 1 \N Other +5f988fa0-6a48-4d57-bd32-eecd1bb214c4 1 James Other +5f98aba0-3424-46ff-9cf1-f8a126342684 1 \N Other +5f9c79df-1acf-4ef4-9fbe-769f9f83287a 1 \N Other +5f9f8a2a-f5ec-425b-9c88-7a383dad321c 1 \N Other +5fa5ebd1-771c-4382-a5d5-776ed8429bcc 1 \N Other +5fa99f86-93d7-4aff-8fb0-4472b471c6dd 1 \N Other +5fb0b8f8-07d9-11e8-86a6-fa163e8624cc 1 \N Other +5fb0d48a-8ecb-4efc-bb88-2ca337690ee6 1 \N Other +5fb45f0b-2753-472a-b39c-8741487401d6 1 \N Other +5fb5bfd2-0641-4930-9900-93a43c002597 1 \N Other +5fb7e21c-7ec6-474f-8ae4-cf212a4b8311 1 \N Other +5fbdd327-82fd-4b83-9e7f-df50ed82e06f 1 \N Other +5fbfd6d3-24f9-481a-9b98-7d072b748d30 1 \N Other +5fc46d85-6dec-4357-a65f-bbbe13e04554 1 \N Other +5fc73a17-c08a-4d28-a5aa-feda43ffdc39 1 \N Other +5fcb2995-5519-4c67-a06b-8e6570d12eef 1 \N Other +5fcd9f51-b4e0-4045-9cdd-7021286f1ce4 1 \N Other +5fcf5365-e723-46fc-ab62-abc73389ad6f 1 \N Other +5fcfd7d7-8ced-4c60-a14b-23795db321ac 1 \N Other +5fd4c3fc-3b0b-4534-9375-ec469c8cb72a 1 \N Other +5fd735db-e77a-497e-b104-cbd16ac17969 1 \N Other +5fd84902-3776-45bb-9327-1868f9a94a8b 1 \N Other +5fdaed6c-07d9-11e8-8c0b-fa163e8624cc 1 \N Other +5fdd2977-8256-4bdb-915b-0dee4fc7cea6 1 \N Other +5fe2b575-2bd1-4184-a66c-983127f67aee 1 \N Other +5fe333e6-3bfb-43cb-b6fd-78cf725a85ab 1 \N Other +5fe764d7-9d00-431e-95b4-5238231e5d6f 1 James Other +5ff0fcd6-c119-4771-80bc-fa7b06f11b2c 1 \N Other +5ff3d9ef-bb77-47d6-98c0-9a55de88de74 1 \N Other +5ff558f4-ba18-41cc-a8ff-08b420c857ed 1 \N Other +5ff75819-f129-4fde-9e9b-47cd512d2b67 1 James Other +60042d5d-bec4-4ead-b1ed-d9b7e600399b 1 \N Other +60067d2e-4bb6-430c-9e90-95672e5b5efa 1 \N Other +60069042-f1ec-49db-a158-0b6a3c55a388 1 James Other +60084efd-2f67-47a2-9a9f-82e44b59f411 1 \N Other +600dc862-3e31-401c-ab8c-1dc3e99fe7ab 1 James Other +6010e0cd-ee00-4d64-9572-f4e68a8a81e0 1 \N Other +6011ae9f-c83f-40d2-8224-a81276389544 1 \N Other +6012587e-c3b6-42e0-b14c-ea57c510742f 1 James Other +601452c8-045b-41fb-97b0-e2ca3a5240d2 1 James Other +6019af30-0859-497d-8542-8fcfeabcccc2 1 \N Other +601a5df8-dbfb-4220-9c3a-24683f524d7e 1 \N Other +601d0d79-03dc-4e94-a609-acd537101ee0 1 \N Other +60241fdd-5982-4a05-8a39-6d6d8e41fbfe 1 \N Other +6025b122-900b-4a25-9025-3ed37c6be271 1 James Other +602695fb-71ee-49c6-ab19-244e54f89497 1 \N Other +6034e64a-11f8-11e8-b95d-fa163e8624cc 1 \N Other +603841e3-e4db-42d2-ba54-d08bb8a2e15e 1 James Other +6038c57c-3894-4154-b7a3-39e780cb4323 1 \N Other +603bdc13-6bc8-4366-a6f1-749600e2d941 1 \N Other +603f315f-da4f-4851-b28b-4b20e564c729 1 \N Other +603f54ba-4e17-4bce-aa2f-1894d2740dcc 1 \N Other +6047c1d1-1e40-47f0-9877-b7b88d8e4852 1 \N Other +604aeec3-220a-4f5e-ba33-d782a9d1c2a1 1 \N Other +604bd091-07f8-4c15-8c03-0456c1adac49 1 \N Other +604bd4e9-8421-4207-9860-3547075d1619 1 \N Other +605007af-3fc5-47f2-b7a1-1fea4f0ed4f0 1 \N Other +6052dea6-8d88-49d3-a6f8-a97acfccb49f 1 \N Other +6053b1e9-a951-48dc-ae95-f71d0b438296 1 James Other +60561df9-402d-41fb-bfb8-78a75555f440 1 \N Other +605662fe-c238-40e9-ae3c-c82d032e1722 1 \N Other +605d5e5c-a87c-45af-b687-d6249ad2ee1d 1 James Other +605f3d69-a19d-4384-821c-ab741580a1cb 1 \N Other +6061264f-d5c1-4a66-bb2a-8f36b839bb14 1 \N Other +6061ac73-f484-4d77-b844-9dfc5aa7361b 1 \N Other +60621375-5085-482e-a80f-415f8b7e3140 1 \N Other +6063c734-78ec-4541-a8cd-52fe590c2a25 1 \N Other +60677cef-220f-4cde-be47-9ae15d57222a 1 \N Other +606c5472-9e85-4233-9209-bb3ccead438c 1 \N Other +606c65c7-ea03-4475-bfa7-96cdb5b16ffc 1 James Other +6075f2a6-6179-488b-9485-24441b67ee7f 1 \N Other +607606e5-4272-44fe-8ced-e2d3e3083b09 1 James Other +6076b4eb-e95b-4ab4-a2a1-52ad94f507cb 1 \N Other +6078cdc7-08aa-4d4b-90dd-9f0a0306628a 1 James Other +607ac87f-3ce8-4d6c-a3c4-ef19ff537d69 1 James Other +607efd29-f17c-4ac8-880f-7f636a51e6ea 1 \N Other +608320d1-93e3-4b79-9f23-990a33a8ce58 1 \N Other +6083e3d4-1470-40ef-8b2d-92c5d2eedb8c 1 \N Other +60845924-591d-42d4-b457-19d7ad81f8ed 1 \N Other +6085bd8c-de2f-40a5-a4ca-3ebe9876c1a7 1 \N Other +608da1ca-b112-4b5f-97ff-8e3c55f8c706 1 \N Other +608de704-c770-4d9a-b58f-88de0d5b28df 1 James Other +608ec2ce-f299-4128-b478-bf7c8036ce7b 1 \N Other +608fd695-0279-4497-a394-7f8840ab871c 1 James Other +6090c860-94dc-4a80-8c37-5fdc3acb3efc 1 James Other +60917937-0371-40df-86f5-b9b5cb37667d 1 \N Other +6093c0b0-ed47-4e69-ba91-85a5a1b65419 1 \N Other +60943620-0cf2-4954-88c5-2105af00537a 1 \N Other +60963e04-1b22-4075-94ee-b2b286d9c784 1 \N Other +6099257e-11f8-11e8-aa3e-fa163e8624cc 1 \N Other +609b6b3f-8943-45c4-8a4f-baf3feacd81c 1 \N Other +609bda20-ffa9-48b0-b3d5-af3a329c1b04 1 \N Other +609ef2b0-a6be-4045-b574-fcabc4b84fc6 1 \N Other +609fae98-6d2f-44e0-bd92-4f12f7cbe1c1 1 James Other +60a052e2-4e01-477e-bdd4-e439bb34af03 1 \N Other +60a215a2-a833-447a-b326-a1d660bf155f 1 \N Other +60a3548d-eb04-4898-a9d4-2de669de82c6 1 James Other +60add864-33e8-4cf3-a2eb-db2b42816919 1 \N Other +60b14f07-5338-4f47-bdaf-f9297c471d8b 1 \N Other +60b2720c-3aec-42e1-9b8f-f1af61a3162b 1 \N Other +60b73018-510e-4d80-8e8e-ce909112aacc 1 \N Other +60b9b406-a651-4927-98d4-a2259bb53509 1 \N Other +60bb089e-b897-4d71-884e-30100e5c30dd 1 James Other +60bda166-81d8-4dac-b88e-3be54bc3e444 1 \N Other +60bdec0b-552b-45a0-96d5-4097bcc67761 1 \N Other +60beb2a8-9138-46b8-a8ef-50aa130d884a 1 \N Other +60c18f4f-857a-4988-ae63-a9f107d42bbe 1 \N Other +60c25341-cdf8-454d-a3af-67380ab9eda0 1 \N Other +60c5c59a-147a-4329-89ae-082ada8ae8a9 1 \N Other +60c94ac1-b0aa-4aef-9cd9-b8eefa15b2a1 1 \N Other +60d5de3f-a8db-4e74-b1d5-15f41f31bef4 1 \N Other +60d81d1a-1103-11e8-9f75-fa163e8624cc 1 \N Other +60d98c9a-4f00-4252-960a-c35459008301 1 James Other +60db1f47-d11d-491a-ae17-ba25bd2f3f40 1 \N Other +60e03063-6f34-4757-a822-498782aae948 1 \N Other +60e0417f-c8d3-4310-89d5-e60e71068d2b 1 \N Other +60e0bdcb-0092-48ce-ae53-e6f455d6b442 1 \N Other +60eaeeb9-c2bb-4fdc-b306-0f2dfe55c409 1 \N Other +60f08734-4082-4b22-b085-60587c823a87 1 \N Other +60f4e8a3-0b4a-4fe4-9a10-5d997ee354a7 1 \N Other +60f93ad2-0b61-43f3-ab1d-5c0d8f3e8b06 1 James Other +60f96209-3689-4534-88ed-3cf6da1fbe23 1 \N Other +60fd052e-dbbe-4cd6-a1ce-725067f59405 1 \N Other +60fec6a1-4f88-4732-a797-e81267ec99f1 1 \N Other +6107f7bc-1e0e-4b25-a870-1b7f7104f1ae 1 \N Other +61091ede-029f-4dfb-b87c-2ef76df3b73d 1 \N Other +610e163e-0a6c-4c32-b43e-f20cb63d557a 1 James Other +6110e040-5272-4706-a12e-544cc095f589 1 James Other +611310c5-31e9-43a0-aef5-38a55473b732 1 James Other +6113c2de-fafa-4533-a90f-20d1f948abf2 1 James Other +6119e296-66c7-4afb-b4c0-f7201853d21a 1 \N Other +611bf915-851e-450c-ab6a-ada0902b52a3 1 James Other +611cb565-2917-40da-9f81-360de2ccd164 1 \N Other +611dc9d1-1a70-43c0-8c24-204db5727573 1 \N Other +6121d37c-f593-4dd0-909b-e668266c746a 1 James Other +6127a9c3-fba5-4fab-bb59-6374fc50a8c1 1 \N Other +612f4b2d-c8b7-4d48-9a20-973349afc7da 1 \N Other +6130c4f2-49b2-4003-95bf-ba0e4166bd3d 1 \N Other +6131d086-594b-4f1f-a6ff-766afbd5acff 1 \N Other +6135337d-fc9d-4d70-9618-3adc6b9419ac 1 James Other +613cfd3e-c4af-425e-ab7a-a9c383b5a14b 1 \N Other +613fac78-d3bb-45b2-a672-306bdc23a726 1 \N Other +6141d0db-85fc-4903-9657-1fa85d9f9bb0 1 \N Other +6147c0fb-a981-4d8d-a05a-0652caaa73b0 1 James Other +61489d8a-9cc7-42d4-bf2b-b45df6fbb005 1 \N Other +614bb876-9831-412a-969f-d488b293923a 1 \N Other +614c7016-c9d2-4642-9c29-f8a8c33582ef 1 \N Other +614f1a06-8eb5-4dd2-a958-595e4e36108b 1 \N Other +61517dda-20b5-4b3e-bc75-6fb92eb0ba9a 1 \N Other +6151873c-8901-4ffe-8f76-65cc107e1aeb 1 James Other +61524eb3-41a7-434c-8385-9d0fb51e4be1 1 \N Other +61535e03-2b04-4b2b-893a-57448abd441f 1 James Other +6158bdad-1bd5-4c7d-a668-72fd25f6dbb3 1 \N Other +615c1f8e-3bb2-41d6-8d2e-f9fbb6f3c1d9 1 \N Other +615fb870-0339-4452-b89a-0dbd16cabbb2 1 \N Other +6169f94d-516e-4a1e-afe6-30af3bb89e21 1 \N Other +616a90fd-8a0b-4b8e-a5e3-e14dddaf3766 1 \N Other +616de6b0-5ee9-4a77-bc7e-6c280cfb8a2b 1 James Other +6170127c-14c0-4d00-b76f-cdcab045bbc4 1 \N Other +6170297e-0b91-11e8-8c80-fa163e8624cc 1 \N Other +6171355e-40af-47ef-81f7-b36c88aa9dc9 1 \N Other +6171e978-88c6-4c00-9072-8346080bc779 1 James Other +617505a0-8194-4a43-94bf-3ba0be917c52 1 \N Other +61770f90-8a92-4f3c-9132-1edc2cb73c19 1 James Other +6178fcb5-45a3-48f0-9a1f-02b4bfcf8b23 1 \N Other +617b69c7-2e31-4352-a646-359ade3a07a2 1 \N Other +617f4f3f-178f-4fce-abe2-d2f6d7a3153c 1 \N Other +617f780a-feb8-41bb-a224-04c5be7db6cc 1 \N Other +6182b788-0b91-11e8-892b-fa163e8624cc 1 \N Other +6186fc00-ead0-4017-9797-c15d1b3f1eea 1 \N Other +61872477-ce51-4073-b7c2-aa503d02e595 1 \N Other +618cfe43-dc69-41e1-9aac-3411c9bd85b3 1 \N Other +619010a0-1103-11e8-b214-fa163e8624cc 1 \N Other +61912a8b-459d-43a9-97ca-94a207ffd625 1 \N Other +61977d13-f4aa-4f92-a0c4-7e5495bd6a27 1 James Other +619d0b55-452c-4a2c-8e07-13d97b4cf866 1 James Other +61a17c0b-c597-42ba-9585-a63fed2eac1f 1 \N Other +61a2a36a-9e21-46bf-b08a-c7d2ab028448 1 \N Other +61a94af0-8fe4-4ef6-8f2c-8b1db18fca1c 1 \N Other +61aaa2a7-c6ff-44c4-b531-2d08ef7ab4d2 1 \N Other +61abff67-8eab-4028-a697-b6bc396a8eaa 1 James Other +61af3339-1c8f-41db-a33f-cc1e5f6af5a5 1 \N Other +61b0e8d3-e1da-4013-bd80-15977d4dd9a0 1 \N Other +61b5e5fe-0b91-11e8-8957-fa163e8624cc 1 \N Other +61b9ded4-0b91-11e8-a8af-fa163e8624cc 1 \N Other +61bcc77a-082d-46fe-91e7-8fa755a164c7 1 James Other +61c0247c-98bc-4ab4-addf-f3ed0f1254ff 1 \N Other +61c11de9-f35f-4aca-a2c1-2bb636c3a552 1 \N Other +61c3f09c-8113-4b1f-af08-ef4903306393 1 \N Other +61c5a169-20b8-4228-832c-cfca9e18205b 1 \N Other +61c6976d-1512-4c35-809e-04421089dcbd 1 \N Other +61c71f89-8bff-4d05-b3ee-d2a8f4067bd1 1 James Other +61c9298b-628d-4d5a-b1d6-86cd19f39af7 1 \N Other +61c95f8b-540c-457e-9345-e44c8ce256da 1 James Other +61cbac9a-7014-4a1f-870a-6799e08c5324 1 James Other +61cea5f5-a609-4a9e-8025-0868abb82bc8 1 James Other +61cfd4f8-040e-48a7-8949-4b925040f7f0 1 James Other +61d31f83-c812-4a2c-94dd-b74d820d1995 1 \N Other +61d36eb2-0b91-11e8-9322-fa163e8624cc 1 \N Other +61d3b250-2a30-402f-9e56-d024c752a080 1 James Other +61d70a30-4300-4e00-80d1-6264428e6272 1 \N Other +61da36e9-c2a4-4334-a690-2d8326555ab9 1 JAMES Other +61dc1129-e588-4980-9b49-938cba38e0ee 1 James Other +61dddcc2-e013-4616-91d4-96032ba4b7ae 1 \N Other +61e10c2d-20e6-4ffa-8ea0-5e134383fd6a 1 \N Other +61e5c88e-deb7-4ccf-857f-314e18505397 1 \N Other +61ed44c8-8a4c-4acf-9f5c-7efa53ab5bbf 1 \N Other +61ee9e1f-552c-4a61-8847-900618fbecd2 1 James Other +61eec0ab-c168-4240-a736-022a46b6304e 1 \N Other +61f3f254-33c4-48e4-a273-9c9794435e22 1 \N Other +61f6533d-978b-4057-bb01-6f135b905efc 1 \N Other +61f97b09-7ebc-4549-8849-b9a665777e10 1 James Other +61fd498f-1ba9-4eaf-9504-400c2ba9ba91 1 \N Other +62014a61-de15-44b0-b947-444ab6d8b9a7 1 James Other +62090427-647b-49c4-8258-5151f8e05a04 1 \N Other +6209ac66-8b40-4580-bfb8-965f02f23d02 1 \N Other +620a2a6b-caa4-4a13-8b28-689068caaf32 1 \N Other +620d19ba-4c0a-42d0-9e05-d49c8b63fd62 1 James Other +620d24bf-0e15-42b7-85db-532e72dc8df0 1 James Other +620d3ec6-96ae-49e9-b1e7-03d9fb3a6cfa 1 \N Other +620e5689-ad6a-48ae-8714-3874848db435 1 James Other +620fb7ed-a535-42cb-a39d-b649ac72a183 1 \N Other +62136c3b-2087-46f6-8ccb-1510c0825b92 1 \N Other +62155559-3580-4f6e-b303-693ad41f93bd 1 \N Other +621aca86-d429-4eb3-be2a-9cefdb992bb1 1 \N Other +621ce10a-0b91-11e8-8345-fa163e8624cc 1 \N Other +621d5eaf-476f-41af-9def-32839adc0e53 1 \N Other +6221389c-f8dc-425f-959a-4a709544c930 1 \N Other +622142d7-7862-481e-add4-15721e7db505 1 James Other +62257bc8-d987-44f1-b911-830b851fccbb 1 \N Other +622837d8-d226-423e-8e23-58ad166c7c77 1 \N Other +622a0f82-766f-4502-94ee-a0be139497e4 1 James Other +622aad3d-7af1-4ba8-b775-d75388991848 1 James Other +62306263-d7e7-4cc1-b326-ee84c76d0f1e 1 James Other +6230b6d2-39d5-4741-9902-3e6ecfebef6e 1 \N Other +62313c86-88d6-4372-a91e-29712a57cb01 1 \N Other +6231b808-6b18-4ab3-bdf5-a75a4b2c6cfb 1 \N Other +623f9182-96dd-477a-b747-b000b6836f2d 1 James Other +62432da8-9b9b-4310-925e-41638b72a4d1 1 \N Other +6245c21e-9c02-4b94-b9da-8ca4e96d46b9 1 \N Other +624b4a39-340c-4133-86ff-0662645b470a 1 James Other +62500040-761a-424e-800a-daadc19df6f5 1 \N Other +62549ca4-f415-4829-b683-b5d1c08b935c 1 \N Other +625a09a3-d563-4ddc-bbe1-6f4635e8c4a9 1 \N Other +625b4400-19be-4405-ad54-4c32abdbf25d 1 \N Other +625c7fba-a902-4671-abc5-84106a9c1308 1 James Other +625cd6e5-d8f5-4e75-a694-c0c817513250 1 James Other +625d3543-e3f7-4b8f-8abf-77e67f336eda 1 \N Other +625e03bd-bb28-486a-8b27-74e92bce3d4e 1 \N Other +62652ed3-cca5-41ca-9a9f-3232a60b9f5a 1 James Other +6266333b-5b41-47b4-92fa-bd66e69dfe4b 1 James Other +6266ba62-e0b9-4fab-8bdd-ebe644f3e2fc 1 James Other +62672d46-c700-464f-978a-9129a2b814eb 1 \N Other +62692e90-4241-4279-a185-2379a7fd8d33 1 \N Other +626ad986-f371-479b-810a-a0f1dfc307f3 1 \N Other +626beb50-9c81-44f8-81c3-7e2668a4532e 1 James Other +626d42b1-da81-47e6-9853-bc8965e27da2 1 \N Other +62705f86-062d-4087-80c1-b8e886df8989 1 \N Other +6273111e-bff4-489c-bbc0-821bf8de47a6 1 \N Other +62734528-ad50-47d4-839e-240ed31058d5 1 \N Other +62738bab-14d6-46e9-a0ce-5990f6e2a9e6 1 James Other +62759c42-c012-42df-858e-8ee7374769c6 1 \N Other +6277ac67-222b-4ea3-8de0-0be164db0a33 1 \N Other +627afd80-3d43-4d12-8fc9-23d0366e346c 1 \N Other +627fb05c-2b7b-41b8-b858-d4e3def42ebc 1 \N Other +6286526d-7e91-45f2-ad56-2c92d3f8584a 1 \N Other +6289fa52-a609-42df-85c5-33b906fcaf4b 1 \N Other +628c7e39-ce71-4b50-a38e-8d53bd5533e1 1 James Other +6290dd8f-2659-4a33-bafc-b51a7b45060c 1 \N Other +62933086-dfaf-4abf-adf7-a93800543bb2 1 James Other +62963e08-e415-4c23-a3be-07fa1b9d9f3e 1 \N Other +629cfe8e-be82-46fc-a4ca-f5c846b0dd42 1 \N Other +62b8715b-f577-47c6-ac53-b5bad09e095c 1 \N Other +62bc97fc-08e8-4235-b481-ef5f006fb152 1 \N Other +62bcd91a-4ea5-4e37-b72d-3cc4d8cde063 1 \N Other +62bef87d-7bb6-4176-8bff-90c6c5783f4b 1 James Other +62c58d81-ef6f-4637-9f43-9c420d84eb1a 1 \N Other +62c72de2-3725-4591-959d-9242aed152d0 1 James Other +62c92c29-2e3a-4fc2-b784-1a3321e85dd2 1 \N Other +62ccddc3-45f8-40d5-99c9-c41217908f4d 1 \N Other +62cf7b15-ebae-4cd8-a1cb-8ff4eb510e87 1 \N Other +62cf93d8-2397-4c56-805f-0dc16860fa80 1 \N Other +62d26f56-ed31-4d60-84e8-eb58c02a9867 1 \N Other +62d7e330-0206-4243-b369-03e237ca6f11 1 \N Other +62d9531d-d561-475c-aae5-a60aca4a8704 1 \N Other +62ddf9ef-ecf0-46a7-b4e9-627e442e4c78 1 \N Other +62dfb3d1-831a-4cc1-941e-0dc8f9816c63 1 \N Other +62e0c050-58db-4339-8434-977a6b62bfb2 1 \N Other +62e15ac9-39b7-4e75-bde3-d4572c3aec03 1 \N Other +62e77432-2bef-4e12-a333-95702dfffda3 1 \N Other +62eaabe5-efa4-4bd9-96fc-afa0d9681445 1 James Other +62f11019-2481-4ae7-a425-b1af920d6072 1 \N Other +62f49f09-ce0a-4155-83ed-f2a8ee967d38 1 \N Other +62f657ec-fd43-43aa-8099-bcc613a914e8 1 \N Other +62ffccec-6447-420b-b6ad-d982fae979a7 1 \N Other +630083f4-cb91-447e-adaf-4aeb79679b85 1 James Other +6301c467-ebeb-4756-9a4a-15759db61169 1 James Other +6301d51f-3d36-46a9-a581-f37a9c524e25 1 \N Other +63029092-59e9-4e0b-93ac-5f15436c75db 1 James Other +630a71e1-a0d6-4365-8a7e-4c45c37b904c 1 James Other +630e7757-36a9-4813-a0ae-bf0e6f04a336 1 James Other +63137af3-ed5c-4e2e-a7d0-1ace0fa2830f 1 James Other +631495c3-dbed-479c-ad73-b661f654b0f1 1 \N Other +6316e901-dec6-4e1c-aec5-05b1e83969f2 1 James Other +6317fc45-df0c-42c2-8e2e-70acddbfd210 1 James Other +632020b8-cdbf-472f-b676-f29fb1a005a6 1 \N Other +632bc98a-e30a-470a-996d-630eac45dd0c 1 \N Other +63398487-2146-4b5b-a50d-b7c3a5092d9e 1 James Other +633baa6c-a167-48ce-8c30-0881625b1b85 1 \N Other +633be276-3152-48d0-9558-6c3330ce2f67 1 James Other +633d5bbc-19be-497a-9f16-b324f35e85f8 1 \N Other +6345e09b-9d09-41de-bf17-9e0ac203a363 1 \N Other +6348b508-beb4-4643-84f9-8d1ab7c00e31 1 \N Other +6349db00-7d39-4272-90ea-f37ef38e77ba 1 \N Other +634bae77-686d-4058-9208-7bb4c4d3d0b0 1 James Other +634d68ea-566c-454b-bd93-7e8173fe76c5 1 James Other +634d71c2-a461-4ada-a732-90508020bc56 1 \N Other +634f2d44-ea8b-41e7-a89f-2afc6997481f 1 \N Other +634fdaba-7c52-41f7-b2e7-c02bbf2b3a3f 1 \N Other +635cd0a1-006d-4a89-8996-a655c16cd13a 1 \N Other +635f6df4-d7ff-4f8d-87a9-7fa459d792ef 1 \N Other +63629240-4a55-42cd-b376-4a77f1598200 1 \N Other +63654bc2-9ada-4570-840a-fca30d0603f2 1 \N Other +6365ee51-583e-4236-84c0-ae0908ba1594 1 \N Other +636c0a05-7ea4-4728-b796-43a9c1966394 1 James Other +6370da8e-291d-4d47-bfec-510a0dbea96d 1 \N Other +63719173-14c5-488b-8951-7d964d62b535 1 \N Other +637225c2-54e5-442d-948a-3cf7202eb330 1 \N Other +6372f2b5-52c1-4a16-88a8-693d32bd24e3 1 \N Other +63777020-1856-4950-be80-4dd58c97ac87 1 \N Other +63777242-616c-487e-a8ca-14ce5a930932 1 James Other +63797c33-04c4-46d6-bf4c-2be9fdb206d4 1 \N Other +6379e534-aa8f-4910-9995-c4ffa1f6076c 1 \N Other +637ac3a5-8745-4170-887e-902d18423dc0 1 \N Other +637d87b1-af69-4183-9de7-a370253410e9 1 \N Other +637f6ce3-029d-4499-be93-34c80890f2d5 1 \N Other +637f733b-27db-412f-9fc5-245f67ee3e32 1 \N Other +63865e1e-bde0-4022-8316-e06f7091cfc5 1 \N Other +63877535-b274-4636-903c-8caaafd7b5ef 1 \N Other +638aee2c-1efa-4f1f-aecc-3db853cc610b 1 James Other +6396f0e0-53dc-4080-be63-4b40336dfa8d 1 \N Other +6397a609-e2cc-470e-8abd-c54cc2f5dbf3 1 \N Other +6399935f-3f94-4c9a-a061-0e144f5e4114 1 \N Other +63a4b0f8-3151-4e8b-b8cb-a6ae3c058d9e 1 \N Other +63a5f831-0966-4f2e-b7c3-7d9fedb6cf15 1 \N Other +63a87ccf-1d4d-465e-85e8-8f8665dc660d 1 James Other +63aa18b8-facd-462c-a1f9-df774d2cdc58 1 \N Other +63ae84b0-a3fc-4aab-9aaf-dbcec228d37a 1 \N Other +63b1392a-5f6a-41e3-abc9-a1d8b26eeb0d 1 \N Other +63b27b6f-beb8-49dc-b5dc-07d5136d19d6 1 \N Other +63b2a492-1ba0-42a1-9240-885ee45a59b5 1 \N Other +63b2ea16-161d-4217-bd44-a8b743b4ec8f 1 \N Other +63b54199-80c5-4325-9f0e-e6310ab2d886 1 \N Other +63b599e9-0399-4d79-b775-4ee452b8e155 1 \N Other +63b62627-0cf9-44fc-9f90-6bd71c865fa8 1 \N Other +63b7f3eb-dfd5-4dd8-a61b-1c8d20d6414e 1 James Other +63ba9699-49d8-4902-8378-ababe36ca480 1 \N Other +63c17dce-5090-433e-af3d-283d9de32ff0 1 \N Other +63c2e4d7-d4d2-4636-a7b0-01f73190845c 1 \N Other +63c655cf-3357-484d-9487-f95f48c75d5d 1 James Other +63c71a24-49cf-46b7-90f7-e0b728367f8a 1 \N Other +63cdb2dc-35ac-4d74-a75a-675aad33657e 1 \N Other +63ce4238-5ada-4159-bcce-6000fddee4d6 1 \N Other +63d01bed-24c8-489c-b198-eb6ee860f728 1 James Other +63d15140-d4ba-4857-90e6-5a25da0d3da6 1 James Other +63d38a45-b28b-4d16-8f6f-76420bf8102f 1 \N Other +63d8016c-0167-4cdf-865d-d3ec18515c1c 1 James Other +63d9bc32-0c59-4f8c-b875-9bdf8aecc821 1 \N Other +63da7ea5-cde9-4b57-b38e-b159535dcee6 1 James Other +63dacc84-48bf-4a9d-84b9-6e2f55de12fc 1 James Other +63e1fc16-4097-45ce-97d1-f740af606e21 1 James Other +63e547db-d638-4e65-b656-687d0ecd0dca 1 \N Other +63ea7bdc-ac86-40b4-9656-791c7bc497ab 1 \N Other +63ec692c-6634-48ee-9a59-650656e041d4 1 \N Other +63ed8028-8391-4c95-ab7e-0a2834c64fb9 1 James Other +63eef12c-d845-4e8c-ab01-d8967b026552 1 \N Other +63f419c9-92cd-48de-8f76-05a10e383dd3 1 \N Other +63fc3b5b-0cd1-4373-b092-b781d0aacca2 1 \N Other +63fd574a-163e-4d9a-a5b9-0ef5747249a5 1 \N Other +6404441b-f8d5-4b5f-b275-fd017206f858 1 \N Other +64113ce2-f17e-464a-bbb3-cbe9cdf8fd88 1 \N Other +6412908f-951c-44ae-bbca-2516cd0b2650 1 James Other +6418b1b8-255f-11e8-9020-fa163e8624cc 1 \N Other +641c9785-5418-427e-b670-e2edee7124ff 1 \N Other +641fe9c0-8e21-4dd2-ae96-f1986e111239 1 James Other +6420f755-4e66-4341-a57f-f315bd45ae62 1 James Other +64262cdd-bbb7-4f7e-88fa-364cbd67f34b 1 James Other +642b010c-35ed-433e-b1f1-68cde8602e6b 1 \N Other +642ec99b-f00d-497a-8e33-fc52cfc1a504 1 \N Other +643112a0-8890-4940-a4d2-453082aa8398 1 \N Other +6432f03d-99bc-47cb-9755-3b66395119f3 1 James Other +643af7c4-66d9-428e-82a8-11d669bdab64 1 James Other +643d4686-467b-48b6-9df9-0560ebd3a80f 1 James Other +643dcb13-efc9-41e4-8df8-d208159dd507 1 \N Other +643df6ce-816a-4cac-9bf9-1d1ce8a8714e 1 \N Other +6440f3c5-7c43-4c3b-9143-1182cbdaa115 1 James Other +644148d7-8fc0-4a6b-9564-b73c7b7ab3a1 1 James Other +644165cc-4df2-4b57-ac52-90e16818c8e0 1 \N Other +6441693a-ac7e-4c00-88a3-202ab3aab458 1 \N Other +64485a80-255f-11e8-8755-fa163e8624cc 1 \N Other +644a90a1-c3eb-4750-9834-93377d857fe5 1 \N Other +644c63a1-0f82-427a-b603-642f15627949 1 \N Other +644cf553-28ec-4338-9598-7f2f05f829ec 1 \N Other +644d664a-fff0-4b8c-bd7c-65a484877b80 1 James Other +644eceb6-610b-4e12-9c89-44a3dce3afae 1 \N Other +644f8307-7836-4a19-99bf-d723be09e4e5 1 \N Other +64502ed2-49b6-4719-a248-eb6922dc6e82 1 \N Other +6451d91b-887b-4129-a886-3c09d113fbf3 1 James Other +6453b787-3865-4b23-aff2-a2e2811bb582 1 \N Other +645a7488-25c6-430e-90d1-cce9b3fea932 1 James Other +645da619-b0bf-47b4-a821-dddd5c87a959 1 \N Other +645f3215-e526-4a9e-9e08-b31160305623 1 \N Other +645fd1a8-e8e3-4ab6-80f0-23366f2d6333 1 James Other +6460abc1-1d6d-41c3-8be8-c83f135dddf9 1 \N Other +64635efa-acce-4db3-aa0d-629004eaebaa 1 \N Other +6464d213-a0c2-4152-85d3-d93fb1be6428 1 James Other +6465ee59-f4ce-4418-9057-ba7fd9cfaff5 1 \N Other +6467e5db-3d1c-4cab-9bf1-ff24e37c38d1 1 \N Other +646ee05e-1bcb-402d-ba30-626c3b864310 1 James Other +646fbd22-df11-4312-bfe6-5b0f970c78b5 1 \N Other +6470ba8a-e423-4b4e-b9df-7d082cd64d58 1 \N Other +6475934f-3576-431a-b05c-4dcd8159366e 1 \N Other +647645c1-4b73-458d-8035-21ec85bde636 1 \N Other +6478b65c-9c3d-4e6f-b5c1-cedb562909f4 1 James Other +6479de5c-7f8b-4d74-80a5-70e1642a0081 1 James Other +647a36e8-f3c0-4c03-9089-91799b3152af 1 \N Other +647b0f57-5dc2-40b0-b9cd-43d16da7c511 1 \N Other +647d20b6-ba44-4762-b5e6-5c0b9524abd7 1 \N Other +647db60e-9e62-40b1-8328-a32e02f0ea8d 1 \N Other +64823e29-193f-4c5a-a7e7-4ef7ab898170 1 \N Other +64831a22-6828-4ba9-a6ee-a231e1c91545 1 \N Other +648552ff-a446-4dff-8dc3-d134ae640ccf 1 \N Other +648967f4-4f52-4839-a2c6-a44543a2d3d3 1 \N Other +648a8522-2697-4500-ae6d-ca9f0c7867cd 1 \N Other +648be4cf-b69c-40f2-9f36-24f3d15aa5c5 1 \N Other +649220a5-a377-4387-b497-04d818b73cb9 1 \N Other +64945e04-8e6f-4569-8e67-ee056e2af31d 1 \N Other +649730e5-d81c-4984-a022-113fd9402337 1 \N Other +6498d400-575e-443d-b330-af6d5b0d6e2e 1 James Other +649a97a7-fdf3-4138-b251-6e46bb569bc2 1 \N Other +649f426c-2055-4a3c-9e44-d69794a750eb 1 \N Other +64a36713-2c9b-4280-9f75-66a8ce979e85 1 \N Other +64a869f3-d3d8-4478-a0e0-19e79018aad3 1 \N Other +64b0ac99-fd60-4fb7-94c4-57efb29ef5e4 1 \N Other +64b5e31e-aa37-4335-8bb4-61fadee9daf2 1 \N Other +64b86318-6ad6-40e7-84b5-e424fa19f3df 1 James Other +64bd9d26-2ab7-4f41-8607-377c75e3fd1b 1 \N Other +64c2bda8-8b42-4bb0-ba43-c0c81d0faedc 1 \N Other +64c53396-c310-4643-8c17-5888f0144146 1 \N Other +64cf26de-ad5c-4022-8df5-76e7c7ce5b05 1 \N Other +64d26637-9fe1-418a-b6b5-2f2b834f7666 1 James Other +64d921fe-2809-43a2-882a-dfeb73ff053d 1 \N Other +64dd164d-5b7d-4b80-b04e-b12ac7d471c8 1 \N Other +64dec972-20ea-4d7f-9235-187abf8ed10b 1 \N Other +64e17377-eee9-47a6-8a87-bbb5b6faa706 1 James Other +64e48084-31cf-4b5a-ad78-a7ab7982dc36 1 \N Other +64e915e1-ba4d-4b52-98f1-a3b6a6f19b87 1 \N Other +64ecc747-d83e-4a8e-ad09-848df1708866 1 \N Other +64f096ad-8430-48d1-81eb-6d12be68096f 1 James Other +64f14df2-51b7-48d8-9be1-8160bb013052 1 James Other +64f1ce23-ab98-47ac-bf95-531382e7ebd6 1 \N Other +64f29d15-6fdd-4e53-8b9d-21a82388c240 1 \N Other +64f5fd98-297e-4c1f-bb89-0fa44bcf5675 1 \N Other +64f9e9e7-89f9-4809-b561-6448c9865d4a 1 \N Other +64feebad-311b-4665-8864-08c3a8269eb1 1 James Other +64ffe9cc-1612-4b23-9d97-d45a05eb3e83 1 James Other +65008328-8bc3-40ae-8754-823b5117c019 1 \N Other +65021f01-cef8-4c5a-86c5-c6c9e628bdcb 1 James Other +65035065-574b-48ce-8c99-7f7c4fc783a1 1 \N Other +65041ec3-59f6-4343-ba43-7de652cf0998 1 James Other +6505a638-4a27-492a-9217-efe3d0a35b97 1 \N Other +65083520-9623-460a-88a6-5cb3693a23cb 1 James Other +650b7ae5-4b3d-45bf-8df3-e6dfb05ed3ef 1 \N Other +650bb1e2-edaf-4d01-aaf9-ecf45f0d7c83 1 \N Other +650edba2-d93c-48e7-8046-d23db8197c31 1 \N Other +650f1afe-f796-4c6b-9264-51d4a046ff09 1 \N Other +650fd526-4adc-46c0-a3cb-64110da15c8e 1 \N Other +6511f8a4-ca77-4c29-85e1-53d14c769ebc 1 \N Other +65135bbb-03a8-4000-b914-f6942d383356 1 James Other +65168d6e-e06e-4396-9dce-a4bc8a437b68 1 \N Other +65173bfc-de80-4504-9633-a8f9680e5ba3 1 James Other +651b5cf3-85dd-49f7-8fcc-ef1ea451f541 1 \N Other +651f4346-6e58-4709-8e1c-f2405c4dcac9 1 \N Other +651f5fb7-98c1-4cc6-9394-2af5c623f2cb 1 \N Other +6524bdd0-c5d0-450e-bd16-ca60007ef3d6 1 \N Other +65255334-e156-401c-abc8-786d55364b09 1 James Other +65267ed5-7859-4dcb-aa94-036ffd0aa315 1 James Other +6527b0a4-bc2e-4801-b401-ac2f6336a4f3 1 James Other +65289c1a-4e2c-4144-a6a8-dc342c4f0318 1 \N Other +652a7bde-b1f7-4b23-9ec5-93529ac1554d 1 \N Other +652c5d9b-6a3b-4b50-9199-3972be2a97b1 1 James Other +652cc9c4-c676-4317-bdeb-ddff4e2ddeff 1 \N Other +653112bc-088d-4e46-a822-17934d2a33c1 1 James Other +65313db5-1442-4097-8244-9caeb8f4ff6a 1 \N Other +653780db-49df-47a8-9215-962d93664aca 1 \N Other +65380515-274b-4215-8870-eeb51d63fcc8 1 \N Other +653a4914-ee00-42b9-b674-e1bd1993c995 1 \N Other +653bdb28-395d-4576-8549-c5d17322be5e 1 \N Other +653f88b3-6e7e-49b7-a787-e574c69ae6d8 1 James Other +65426989-6f61-41a5-80c1-04ac915e2383 1 \N Other +65431169-1071-4392-b615-f266c34e1782 1 James Other +65431ea0-e9a3-45ce-8abc-538b299398fd 1 \N Other +65513c98-861f-48c6-bb8c-6619870da802 1 James Other +65571f1a-689e-46bd-a462-91581ff4e7e0 1 \N Other +6559a1b1-b87b-46fe-b462-c2628bf67165 1 James Other +655bd419-daca-4d5a-94d3-00fe3eefa94a 1 \N Other +65611042-6b9a-44e8-90f1-7bdd243b4ec2 1 James Other +6568d617-a405-40e2-90a6-4ee7b8e75e75 1 \N Other +65691118-090a-405c-add6-64c4cb158da3 1 James Other +656d4203-d454-496b-b354-9d65cb8917d8 1 James Other +65714f8d-2449-4c18-a58f-54568bd16a4f 1 \N Other +65728f76-20e9-4051-b362-041b53952c24 1 James Other +657828ac-61f6-4222-89d9-2f6a2af4377f 1 \N Other +6582c5f6-359b-466d-b218-ddc3e9e381f5 1 \N Other +65847958-7174-48cd-9eeb-9971305b0d2b 1 James Other +658746b7-f8d1-4800-bf08-4cec8d440435 1 James Other +6587d036-4d05-4c4a-b96e-c8fe2a95eab8 1 \N Other +658bc759-83eb-4409-b078-0c99e1dc5b3d 1 \N Other +658cf4d3-b270-4916-9235-31cf5bcb0a6e 1 \N Other +658dc639-f231-46bf-870b-3aff02b7f5d9 1 \N Other +658f1301-0449-4578-985e-f11d647ec1d0 1 \N Other +65930a9e-2867-483d-81b6-0d55680153e3 1 \N Other +659716bd-0f2e-4590-b54e-00b2cdf1e52a 1 James Other +659e2393-b4fb-459f-9e97-75c07962800c 1 \N Other +65a812eb-b091-432d-940a-83d394fa6733 1 \N Other +65a8d8f5-6cf5-474e-a9c6-5388b15f461d 1 \N Other +65a9ca92-c9a4-4c7e-9029-61a6ac180095 1 \N Other +65ae7e6d-2eb9-4d78-98f0-8b714ced6bee 1 \N Other +65b26fa5-d181-436a-820a-11013976c4b3 1 \N Other +65bbee49-206b-4e5f-b6ef-6dfaead961af 1 \N Other +65bcd675-d171-4568-a76a-2ed42c10a10c 1 \N Other +65c073b0-994f-414a-815f-41a36a05efd2 1 \N Other +65c7f164-0da5-4d9c-aec0-40be43b02cb8 1 \N Other +65c836fe-961a-4abb-886f-d9c57c44dc71 1 James Other +65cd0800-6543-4e83-8cdf-b4280bba2970 1 James Other +65d099f2-b880-49c7-8801-ec8219d92461 1 \N Other +65d3c150-1f30-4a3a-8417-7e13b40a30a6 1 \N Other +65d4a275-471f-4cd9-81e5-1871e632fe45 1 \N Other +65dbbf9f-bea9-4d7c-97b6-91055cf8898b 1 \N Other +65de159e-a7b4-4fae-8daf-d7a1d25a42cf 1 \N Other +65e10f67-97ee-40f5-8879-aad60631046b 1 \N Other +65e446a1-2cae-4f35-a427-61536e4a0a2d 1 \N Other +65e8e378-0862-4163-8b29-ac8c99f5e2db 1 \N Other +65eae0c9-f30f-4f23-a7a2-cb2ca1a9298f 1 \N Other +65eb0da8-d653-4479-a041-9e8d64c25ec6 1 James Other +65eb5bd2-cc5f-42de-af03-e425cd6a1bdd 1 James Other +65ec1dea-da30-447c-8550-cd42a1041468 1 James Other +65ede0fb-95e4-4142-b692-45ec4fdf2a98 1 \N Other +65ee53ee-d354-45e1-9426-defbbf83527d 1 \N Other +65ef1810-ddd9-404c-9dd0-bd870c705ceb 1 \N Other +65f217dd-f8af-4b9f-9eaf-3b76bcf54022 1 \N Other +65f311f5-303e-483c-af3c-b1b78e567024 1 \N Other +65f4300e-ea9d-4d77-9446-0490cbd1dfba 1 \N Other +65f6d848-bb66-4ca3-b2db-2ef151025ccb 1 \N Other +65f830c2-ae2f-4f8f-9d43-9c094ccab00d 1 \N Other +65fa2abf-6d25-4e47-9b0a-431503ef5965 1 \N Other +65fb5613-d1d1-4d31-a3a0-88a44995857b 1 James Other +65fd3f9b-f2df-4418-a2a2-760d476d9cfe 1 James Other +660537bd-241b-4412-a369-977b9c5ac4ab 1 James Other +66090420-712e-4fcf-ba9a-a535c7782405 1 \N Other +660a8d1a-0f3d-4856-8716-b963e40a9067 1 \N Other +660e0bd1-3dac-4f28-886a-7d36a7f08dd8 1 \N Other +6613286e-d49c-49ea-aadc-ca15fa9170cc 1 \N Other +66135095-93cc-4aed-a575-5120632b1c5b 1 \N Other +6615b582-0643-4f70-a335-e0cfafc1ca74 1 \N Other +661b9853-a455-4255-99fc-561dcd0c64f1 1 \N Other +661e5937-c9a3-470b-a9c9-d33ecf68b7df 1 \N Other +661f5896-5efe-4b99-b1e7-be50c905b9a1 1 \N Other +6623fd9a-985d-425d-b6b6-358a22625b38 1 \N Other +662416dd-a997-4693-ae03-bfc07f5d6df2 1 \N Other +662862d3-f5c9-4dda-a321-10bbfc161c66 1 \N Other +662adc38-89d3-4c23-8965-20481bf86498 1 James Other +663217bc-f1f0-4c96-9329-e2be484efd84 1 \N Other +663649ae-3646-4cd1-b45e-706a64879abb 1 \N Other +663748bc-9727-4203-b6b7-34d6a7c94ed0 1 \N Other +663a8072-8d67-4b95-a73f-8361640bcea5 1 \N Other +663aabbc-5ab8-456e-9a6f-d8373a746227 1 \N Other +66435428-efce-4598-a2c3-a87d26aef2e1 1 \N Other +66439c26-a014-42e0-8551-b9c28564a293 1 \N Other +664422ec-8ffe-4176-b9f6-1dce6eab6a67 1 James Other +664452ec-5048-4648-82b4-0a97ea57cecc 1 James Other +6649e5f8-c7e6-4ab7-9c65-4edbd2ebb527 1 James Other +6653adf4-b357-4283-9a26-049444ebf02f 1 \N Other +6654566a-685d-4413-b0d3-7abe1eed1f81 1 James Other +66548687-f9bd-4db1-946a-3b377808b41f 1 \N Other +66571048-c94a-407d-a1de-b4ee8b87c692 1 \N Other +665821f2-c74e-470e-a6a0-2277e951404b 1 \N Other +66599a07-ef70-4ce7-ab46-0c80e914d09a 1 \N Other +665d1d17-7c75-4065-b631-d99dc3415bfd 1 \N Other +665e1103-e0b0-4358-9efd-5b7771da6a53 1 \N Other +665f0f6f-7aea-4fb6-af56-c359d00d2976 1 \N Other +665fd3cc-8bb8-4f04-b8a5-d294cb0793ce 1 James Other +6661db60-04ab-485e-be0d-4a908edbd35b 1 \N Other +6664cb9f-d191-44c8-8b92-8f56d9c98065 1 \N Other +66663f42-e1f6-45cd-9bb3-f4ab1c58880d 1 \N Other +666727fe-1ef0-467a-9b21-0705eac93194 1 James Other +666802c6-2996-11e8-9b57-fa163e8624cc 1 \N Other +6669a12a-ccbb-46b2-a883-f10ab5df2ad4 1 \N Other +6669b715-d842-4b09-8b79-71d35f36b4f2 1 \N Other +666ad108-fda4-4777-a6d4-2157331d1b6c 1 \N Other +666f01eb-9c57-4cb7-8a31-0ae840096d23 1 \N Other +6674e02c-0a3c-4670-b0dc-3be21398109e 1 James Other +66777190-f3cd-4825-9645-3b484efe2717 1 \N Other +667955fe-88ba-4e8f-b8e0-ad9d0a309100 1 James Other +667e0e64-6663-4a06-b720-5c569262addb 1 \N Other +667e8942-22d6-4ccc-b129-280cd3888530 1 \N Other +667ed237-d1a0-4999-b26a-65f9b9d4aa32 1 James Other +6685ae7e-6a92-4db2-99e9-dc870d0047d4 1 \N Other +6691f0ed-7d0e-4ef1-ac3e-4c741e47b645 1 James Other +6692244a-89c7-4a3c-a919-2a34d41347c1 1 \N Other +66976218-58e3-4efc-8b54-7f94a6fe2025 1 \N Other +6697e494-7a2c-41ef-8fef-11952487f371 1 James Other +6697e916-56da-4775-9541-3cc3efb5474f 1 \N Other +669c37ad-da72-45f7-a5de-e2be90dcdebd 1 \N Other +66a4546b-fabf-4f71-9174-7d9d95433243 1 \N Other +66a6bd4c-65dc-4ae6-a7e8-40c1c764a14c 1 \N Other +66a8b149-18ea-4c2d-802b-22cfa8332e25 1 \N Other +66add08f-9e48-434c-9697-6ed4007af772 1 James Other +66af040e-93cd-41cf-864e-2a35a10b37b6 1 \N Other +66bc9cc5-5dba-49e3-86be-db2f2ad3f862 1 James Other +66bef1aa-8f47-4dd2-94a1-57a9a2defced 1 James Other +66bf47f8-819d-42be-bac7-62859a4a23fd 1 \N Other +66c20075-ad66-4dc1-910b-2cb10a771684 1 James Other +66c5cd02-ce00-436c-9350-92fbc5301c53 1 \N Other +66c65cbc-b5f8-4b54-a039-c6e3a5293cd4 1 \N Other +66c6e363-0885-4362-a4aa-e9b23933dc1b 1 \N Other +66c7d07a-b252-4809-8474-fb76849c3acc 1 \N Other +66c84ac1-f340-416a-8e61-440a82f00e92 1 \N Other +66d56992-833b-44b0-8634-7f53d712531b 1 \N Other +66dcbd1a-f09b-4a1f-9311-55f047c8c962 1 James Other +66dcda9c-2996-11e8-9c11-fa163e8624cc 1 \N Other +66e528f5-7c08-455c-9c65-c7c4346dff43 1 \N Other +66e62230-5bca-4690-b5ad-e9aabdf6077b 1 \N Other +66e74c8c-3d01-48c7-ae03-b14d277453bf 1 \N Other +66e78f1d-025c-4626-87d1-b396e74ec754 1 \N Other +66e82667-a474-4e13-831c-1fa6773e7198 1 James Other +66ed9fc3-5759-49fa-925c-0658372e6380 1 \N Other +66eed2ad-f4e0-4cfa-9f02-983f2dfb640c 1 \N Other +66f1d0a4-d1d5-4532-848d-cc3ce92444eb 1 \N Other +66f3e50e-c5b2-4452-bd66-acc66530f6c6 1 \N Other +66f984bd-2d1c-40c7-a0f2-ec0b9648af10 1 James Other +66fa3998-e48f-4dfe-b070-92c02f998798 1 \N Other +66fb34bc-571d-4d65-8372-96ef6b0f57d3 1 \N Other +66fb96b0-1672-4204-aea5-9c2c272e922d 1 \N Other +66fdc9c4-2044-48dd-8d09-ae603dee3e13 1 \N Other +66fe5a18-68fd-40b5-b831-8a9661d5d53c 1 \N Other +67011e8c-594e-46dd-9327-20ba7120b226 1 \N Other +6701db2b-1878-49b0-82a4-f3afbf5fda42 1 \N Other +67038f34-ef33-47f9-8c5f-baa35c3c2d93 1 \N Other +670735be-5778-4452-b0ba-fb2afe4ba3c5 1 James Other +67118bb3-34dc-467a-8292-f0529027c35e 1 \N Other +6711912b-a046-4fb1-8bd4-809d6097d558 1 \N Other +67158e4f-737a-4d35-b6f2-3b4d9f435b84 1 \N Other +671da85c-5e48-421c-8b63-95896f461dd2 1 \N Other +671e9fb1-5517-4da3-8555-1f847bd2268c 1 \N Other +671f4bc2-467a-4fe5-a061-56267a22d44c 1 \N Other +6720abf2-eab4-4b91-a38e-ea4acb6066a4 1 James Other +67328cc5-f175-42b1-99a1-3007014aa224 1 \N Other +67387e54-d47b-4b4c-848a-459be0d09cac 1 \N Other +673af214-f44c-4761-8889-2b2b894073d4 1 \N Other +673e6408-2526-4010-be7d-1f3ae4a0fef5 1 \N Other +6740689e-c941-4ca0-b62c-7bcd07a020fa 1 James Other +67414c3e-32e9-47dd-938f-a579692e038e 1 \N Other +67461c39-d2fa-46ef-9842-3020f5e98590 1 James Other +674691e0-1abd-4d76-9c77-c5f5d95d9b96 1 \N Other +6749f1db-53d6-45b5-9d5e-43c7aa061ebf 1 \N Other +674b5372-45b4-44b7-8885-04225fec45cd 1 \N Other +67536f7e-3b8f-496b-981a-6f30f65149b3 1 \N Other +67547506-1b95-4908-9584-14809e254000 1 James Other +675c638a-3cba-4573-b43c-9a33db407725 1 \N Other +6766c34b-d87f-4dec-a3e3-744bc8619449 1 \N Other +6767ece8-12ac-4e87-8346-88a1e500bb2e 1 \N Other +6768c659-4f10-463b-aa83-24a0723b45ed 1 \N Other +67693211-6594-423e-98b3-5e8736fe3a64 1 \N Other +676ebe17-fab9-4f80-abc2-1717cf651ab3 1 \N Other +6775a468-e292-4212-b539-996227dcb8c4 1 \N Other +6776523a-6fd3-4abb-ac59-543dd9e83a87 1 \N Other +6778d398-4313-4437-8c43-c360aa12c8db 1 \N Other +6779a02f-8a84-4640-b3aa-44ed61bb5e2f 1 \N Other +677af32d-05f0-4f99-a894-46f9566012cc 1 James Other +67806ae0-f119-461e-baf1-024dd1e77929 1 James Other +678256d0-99aa-4709-b251-764432a2bb5a 1 James Other +678571ba-4606-4537-b7ba-a2813bf339d0 1 \N Other +67865df4-fc07-4d0c-9b97-99a87a56cc29 1 \N Other +67890151-86d8-4be5-bac3-bb232dde034c 1 \N Other +6790bb0e-e1de-4d6a-af22-e63d8a5bc5ac 1 \N Other +67970d64-b11e-4303-88df-4918d150c548 1 \N Other +6799fa2a-c5a1-4e39-ad13-e5b0dfca2208 1 \N Other +679b4db3-38cf-4604-b684-dff8558c5079 1 James Other +679cdecf-29b5-47a4-a6ea-379922ed9054 1 \N Other +67a4d6b3-77fc-422e-9768-1fb84fba0609 1 James Other +67a53c7c-44a0-43de-b46f-dfaeb4a418dd 1 \N Other +67a70b59-0e45-46e9-a81c-0f77a15288fe 1 James Other +67a77976-7f2e-498b-ab7e-e0708e786e02 1 James Other +67ae193a-6052-4b19-b970-43462404eb6b 1 \N Other +67b13ad0-5adb-4404-9102-fd413f48dda0 1 \N Other +67b9197d-3bfd-4a10-a268-39d163036699 1 \N Other +67bebe30-e04e-4f6c-ae03-0f33945f55c5 1 \N Other +67bf26eb-2c9f-47e4-984d-e738704b7850 1 \N Other +67bfbb20-8733-422e-86c6-bb64124b3dbc 1 \N Other +67c062ae-9203-4be7-8465-20a04c18a7e0 1 \N Other +67c132cb-40b0-4ab1-93c0-e3703791c9e7 1 \N Other +67c86d75-7999-490f-b5b7-60ea524a5f3e 1 James Other +67c8b0c6-6516-4e17-ba54-9d3343ea8cb6 1 James Other +67c928e5-fb10-46db-915c-9757817cdc60 1 \N Other +67c9891a-2778-49ad-ac4e-6639ab6be803 1 James Other +67d04d7f-0497-4f7c-9e72-4340ffc684e7 1 \N Other +67d3243d-a3c8-46a6-a6ff-4d3edf234eb3 1 James Other +67d94ccc-5c22-4f1d-987b-6a821a2f6cab 1 \N Other +67dda09a-8612-403b-9a05-483f7884a43f 1 James Other +67ea7b9e-cd77-41b7-8bf8-59270c49d419 1 \N Other +67eda6c9-35b9-4465-8951-3d92e2733a94 1 \N Other +67eddc33-b20d-4e5f-a69a-2518e0461831 1 James Other +67ee0926-a296-41dc-8772-43997e285655 1 \N Other +67f18a08-8a89-4af4-82f3-ddc130c824b3 1 \N Other +67f2ad57-79d4-438c-9038-54fa9bc6b180 1 James Other +67f38994-b167-42c6-9158-28b672f69db2 1 James Other +67f50fda-ab5b-46d3-a692-3a08008467d7 1 \N Other +67f6ae9a-c2f1-410f-a849-a91d5cf47e68 1 \N Other +67f957df-e1c6-43d4-88ad-5c62b3729ea3 1 \N Other +67f98d4d-e46a-48f2-9f4e-ed7833ed1bd1 1 \N Other +67fd46ab-f33a-42f7-8e36-4994d804061e 1 \N Other +67ff1e64-d7ad-4d56-888f-c7a6459e1c92 1 \N Other +680051f1-38d9-4b0d-9272-55d7e84ea224 1 \N Other +68028607-3d56-44ca-a2bf-54f7e5a433eb 1 \N Other +68038a6b-f033-41c0-8cea-a2eee600e9af 1 \N Other +6807aa7d-1122-4164-bc78-f13daec74d29 1 \N Other +680e438d-bdd2-45a0-899b-1be85510937c 1 \N Other +68122421-165a-473c-af1e-28c56db57322 1 \N Other +6812d42a-21c9-4208-a209-8bf83b1b6529 1 \N Other +68177b9e-f58d-46eb-9429-0536c30304a3 1 \N Other +68179610-a3e7-4d4e-86b3-244dfa922a64 1 \N Other +681fe3f9-e5b8-4f2b-9798-b75177fcd0d1 1 James Other +68212437-089c-49e9-aa3b-c846b36f88e2 1 \N Other +682655db-7086-4efc-bfc5-f3f17426f15c 1 James Other +6828ed29-1d12-47c6-8978-0fb1a4be8ae4 1 \N Other +682d1b75-2aa4-4743-ad6c-075bb516c7bc 1 \N Other +68321b71-d3d9-4ff4-a3b1-f878cefbd43d 1 \N Other +6833d311-fde9-412b-b188-aa0e4b3de023 1 \N Other +68341d35-4199-45b8-b7bf-bcc45b248790 1 \N Other +68394e8d-1ade-4b52-8839-f07217535c8c 1 \N Other +683b2da7-b63c-4444-8555-868af290b8c1 1 \N Other +683c712d-bd67-479f-a8cd-bbabf386f757 1 \N Other +6843f28f-c5aa-47d0-8477-2ab79c8e4dff 1 \N Other +68442fb5-72e0-4ad3-b80f-ed72282f3f27 1 \N Other +684657c1-2c83-40ea-b835-1c534301d736 1 \N Other +68468e06-772e-4167-9e45-cca0d50819ba 1 \N Other +68483a2e-ae52-45bb-b16b-2d60af35b19b 1 James Other +68486fbf-8a87-45f7-81ed-d69d595d4a21 1 James Other +68489ec9-1564-49c6-b348-64455c8d26c4 1 \N Other +684d823e-4187-47e5-af6d-8369737b1d5f 1 James Other +684f9d37-be1b-4555-804c-5bf3fe3fcd62 1 \N Other +6852af1b-af55-41be-8c04-353ac9866d53 1 \N Other +6855752e-ecd5-425e-9218-2586cae3d281 1 James Other +6858a794-0f15-4138-9a97-e3b4d97b9d7b 1 \N Other +68594916-200a-49d4-9b65-a784e5863918 1 James Other +685b236b-5e8d-401a-ae3d-076f41a5a05f 1 \N Other +685c9a1e-3185-45cd-9637-2e9b8151d0f8 1 \N Other +685d92a7-3749-48e1-8c79-65b80940c0f9 1 \N Other +685ef779-7275-440a-bbff-ed45991552f6 1 \N Other +685fc384-81fe-4936-a433-e9ed7553d663 1 James Other +686047f7-2765-4728-bb9a-c9f7aa1b5e3e 1 \N Other +686101e7-8c03-4ac7-b516-c9df09f264ab 1 \N Other +6861ee48-b14c-4597-b442-ba0e94e5bd7a 1 James Other +68637ba8-ba7e-44aa-ac32-6bb1966e7dcd 1 James Other +6867b952-ade3-42ab-9b38-e35ff9de58e5 1 \N Other +686ba20a-11ea-45b9-889c-edb15488e185 1 \N Other +686dc214-647c-4e33-992a-7b0483708a6a 1 James Other +686e2600-fe47-4b4c-8265-39ff2052115b 1 \N Other +686f6f60-4150-42a4-a0d0-5592a523271e 1 \N Other +68735083-9b5d-459f-b860-55ef28979207 1 \N Other +68746992-839f-4ac0-8c32-2c679714cb90 1 \N Other +687510b8-75ae-4003-a6cc-21711d3a2158 1 \N Other +6875e9f6-7f7d-4fa1-ab56-6b5b0c2a9413 1 \N Other +68765391-59e2-43af-ba46-834a9802708c 1 \N Other +6877dcf3-0b52-4063-bb5a-899a62cd8f3d 1 \N Other +6877f991-c06e-43dd-81e8-fac7dfec552d 1 James Other +6878b66c-17d2-4f6e-ada8-3544bfcc255e 1 \N Other +687e0e07-e7fe-46ae-b9eb-c4a9e13e8c8d 1 \N Other +687f03ed-a3c5-406d-889f-e53b52609219 1 \N Other +68833b11-6553-41d1-8525-ea91b880a52b 1 \N Other +68850941-3a6f-495e-b26b-6327ef8f92c9 1 \N Other +688822f3-4d68-4da5-9054-143ee6dc310d 1 \N Other +688c3b70-908b-4886-bd8b-33799f732f49 1 \N Other +68910229-7d24-4118-8b1a-905eeeaa24d1 1 James Other +6891f15e-f8de-44e5-958d-461ad541f1c4 1 James Other +68947401-d3db-4f46-999a-7742640f0ba6 1 \N Other +689afaa1-232b-46f9-acb8-541f294b4fce 1 \N Other +689dba21-6266-4e6f-92fb-0e6d43629bfb 1 \N Other +689fdebf-b938-4bde-9d38-62b879a6d285 1 James Other +68a81dfe-57d6-4b24-a1f4-ca75d028dc70 1 \N Other +68a8a99e-06b0-4b34-a30a-6ab344714542 1 \N Other +68a90367-6dcb-4e0e-ab9b-ac752356be64 1 James Other +68ace23e-fb39-4b74-819b-d3a9ee81d109 1 \N Other +68adba27-2fad-49e0-9bee-14c95df5c6b9 1 James Other +68adf7ae-3575-40e6-a560-34014d608d7b 1 \N Other +68af7904-5e67-4615-afde-9a877a0fff25 1 \N Other +68b071e0-0ff6-4a25-8963-988ca83df36e 1 \N Other +68beb4df-b6a8-42d6-84b0-90e0fd2990d3 1 James Other +68cff252-bc0a-4074-ab60-c86f3e4f1ac1 1 \N Other +68d03337-ab89-4e42-a757-a10ee4e8de8c 1 \N Other +68d0b394-9c9a-4b04-9800-fff27de34850 1 \N Other +68d3b885-5c64-4cde-8043-402b53b518e3 1 \N Other +68d4b61c-0cf2-46c5-aad0-a6cb4d9d7bea 1 James Other +68d69dee-cc77-4598-b0bc-4b85f53cd6a5 1 \N Other +68d71548-bee0-4703-84f3-7d9df3532d54 1 \N Other +68dc799f-83f1-415b-aa73-a58bde0741cd 1 James Other +68de21e4-0128-45f3-b3ce-b200138bf1bc 1 \N Other +68e1ff17-909c-46f5-be40-988488120965 1 \N Other +68e214d9-dd0e-48e5-ba51-52445c833aec 1 James Other +68e5b584-269b-47b9-a96a-dd20fc1c69ac 1 James Other +68e788c5-604d-40d9-9b93-68c829516fd0 1 James Other +68ee0963-aa91-4fee-aa53-0a51fe6df1ff 1 \N Other +68efdfe5-424c-48fa-9d35-3b3449d5e71e 1 \N Other +68f43b69-22f5-43cd-be38-9bbf98fa25c4 1 \N Other +68f7d9be-abe8-4856-aea4-85115c9458a3 1 \N Other +68f8367c-0c63-4c5b-8214-bd56d468813c 1 James Other +68f9cb28-2c49-43e4-af52-b1c92a3d3a7b 1 James Other +690037bd-1edb-456b-a6a0-af1dcacfbf02 1 James Other +690947c9-6807-4a6f-8ede-6d7b42202ccd 1 \N Other +69094fe3-7d59-47ff-b1ad-430c01622198 1 James Other +6909dbcf-99e4-4da7-96ef-df4b0e94ddb8 1 \N Other +690c00b3-ca4a-48bf-83d6-9a570a3cf1f7 1 \N Other +690d7e0c-6e22-4ceb-8de9-86214f0bf6c8 1 James Other +690ea8c0-c7a8-4e3d-93a1-fd37970f0e7e 1 James Other +690f2451-4d1b-4801-bffe-dee6eab5fb1c 1 \N Other +6910097c-6fe0-422a-9494-919d63709bdd 1 \N Other +6910e4cf-ac3e-4128-a88b-de735a38c7a1 1 \N Other +6912a0e7-e9b4-446e-8f3c-bbcac9d70c9a 1 James Other +6918edb7-b12a-450e-9002-959128b2f036 1 \N Other +6920c542-dfe8-41c0-835e-06df36ce290e 1 \N Other +6921476d-503b-40f1-b914-75f1e05f5fb7 1 James Other +69242636-6695-43bd-ac31-739fec7b6b9c 1 James Other +69244bcb-adef-4580-b7c3-2f623f2df318 1 \N Other +69270c30-7d97-42e9-b131-0367a7b90a34 1 \N Other +69292582-efbb-4eee-8c9b-cf9c52909fe5 1 James Other +6929fe64-7987-429a-bdf7-604db1e77f29 1 James Other +692e44a2-6786-4529-a020-3e33fdeb8a66 1 James Other +692f1290-8893-4a47-b2ff-a2fda1d3c426 1 \N Other +692f7ace-f94c-4ac4-b649-ce6b5ede08b2 1 \N Other +692fb03d-847c-48cb-b283-b7ff7983628f 1 \N Other +6933ef30-2382-4d7c-9036-8708c0d782fa 1 \N Other +6935d36a-16c3-4dbc-ac34-9cb6e3b8a4e4 1 \N Other +69383700-f6bb-4c0c-8f87-328ccdd25cf0 1 \N Other +6939c84e-1ec5-4806-8d4f-9c709e8ab1d7 1 \N Other +693a47dc-8ffb-483c-99fd-9790ce65d145 1 \N Other +6940893f-9ea6-4a31-822a-b7fa62b10b62 1 \N Other +6941b5e1-f96f-4b03-b0e7-80df20808f52 1 James Other +694c4892-7206-42b1-bb19-eec3f73a4b4f 1 James Other +69511c69-b6ce-4312-95d8-60f04081e8d1 1 James Other +6953d090-74f1-4415-9591-38f2ac824dcf 1 \N Other +695414e0-f42a-40e5-b71c-2d8688122d1c 1 \N Other +695496ba-ffd3-45ba-bec6-71fe0a847ec2 1 \N Other +69558e03-e400-48c2-8d6a-c60b42f88458 1 James Other +69637417-7c55-4dd8-b459-a09a6054d0a6 1 \N Other +696433be-6b4e-4ef2-9c28-7190fc8ac56e 1 \N Other +69656b32-47dd-4d1f-bbb1-660d793e194d 1 James Other +6966e891-9c99-42a7-bf8a-a432e6212503 1 James Other +696818d7-eabc-4fe1-beee-10a933a749cb 1 James Other +696b20c4-5ff2-4da4-a9d0-9e7a81394b0f 1 \N Other +696fc91e-fd4c-4063-a33d-f86a5d7efb3f 1 James Other +6970f703-6b5f-437d-a058-590ff0a8f4c9 1 \N Other +69776411-c3d4-4a2b-bcae-51d1de28ee19 1 James Other +697e30a6-c64a-4f59-aee4-1a883eb5e48b 1 James Other +697ee8e6-f5b9-4b72-a2dd-47dd77839887 1 James Other +697f0c8c-1452-407b-a782-8ffa8977dc08 1 James Other +6982c8f5-3d55-475a-9b75-b202842cd588 1 \N Other +69830467-7ea0-45b1-83c9-9e9f4272404a 1 \N Other +69856845-220f-492f-a02d-cc7d89c850b6 1 \N Other +6985fe41-54cc-429f-b11c-d92a2ff3edbf 1 \N Other +6989191c-87d1-4bc3-be89-dc6f8a042b4b 1 James Other +69899c4b-cbaf-4fb6-85c5-50445c78f76f 1 \N Other +698b3c30-6bc9-49b0-afe8-ec0e943434b3 1 \N Other +698d8502-9c58-4a6b-b6da-200855b7c87b 1 \N Other +698ec9fa-97d2-418c-9bec-158413da0b03 1 James Other +69900052-42a9-44e2-95d7-e708ced405d4 1 \N Other +69910746-3d9e-4d34-9c25-22b2c56beb41 1 \N Other +6991246c-60ec-4706-ad66-3ec4e842f389 1 \N Other +6997dd0d-a320-40bd-856c-aa21128ce83b 1 \N Other +69a2c432-e387-4530-be18-211c8a440264 1 \N Other +69a9224e-3f40-460b-b7fe-b4c69055e73a 1 James Other +69a9def8-ca21-4cef-a1ad-0006bc3d4bad 1 \N Other +69afae23-54c1-40f0-b323-1b000900eb5a 1 James Other +69afea86-e95d-49d9-a6c3-00ac83baaefb 1 \N Other +69b55292-9ba5-46f6-85a0-ab6e94ab3464 1 \N Other +69b68d61-0b9b-438f-8d9a-99b2515cc501 1 James Other +69b93e7b-9069-41f1-be4d-a3448b87774f 1 \N Other +69be7c0c-664b-4e54-993d-be12f1d1212d 1 \N Other +69bf909a-5ff0-44bc-8a28-acdfe6f538f0 1 James Other +69c25921-0498-489e-a86e-5c70367847d6 1 \N Other +69c2d50f-e7b2-4d3c-a484-1d89b60267c4 1 \N Other +69cb5483-88a0-4708-bffe-dfda9e406523 1 \N Other +69cd22d4-e60d-4d31-9f9a-236fd4852f95 1 \N Other +69cdc135-94da-4872-a4fa-b5346bb3d0c2 1 James Other +69cf6c62-b630-4d58-853c-b069aca330dd 1 \N Other +69d01a3a-27c2-45c2-9886-ebd6e11d5b9d 1 \N Other +69d4d807-ad26-49c9-94d5-482a0a1d1b24 1 \N Other +69d8e615-7240-4798-9488-0e95ae881484 1 \N Other +69dcb0ae-c36c-4704-b2b8-d30a60668d3f 1 James Other +69df39eb-a8d8-4113-ae7b-e404fe325126 1 \N Other +69e29c7d-5b67-4605-a28b-45206b8747ae 1 \N Other +69e3e60c-71ce-4c1a-ae90-95fe607ef3c1 1 James Other +69e88787-aef4-4ede-9236-d55e4af1a11a 1 \N Other +69e95717-21c4-4d34-8aa6-bd7ebb64668a 1 \N Other +69ecb310-8bcc-49c2-b268-29f0b938e50c 1 James Other +69f00ea0-e296-440a-bd98-acf9c2a15d33 1 James Other +69f1d3ff-f58b-406c-b585-84f71933e16a 1 James Other +69f548f5-ef01-4a03-88eb-55e4acacf6f3 1 James Other +69fe722b-a72f-43fd-8e52-4fffdc8e6fb4 1 \N Other +6a00049d-7f23-4708-8672-64717115a52d 1 \N Other +6a01af49-e766-41d6-af6d-3ab33dafbd38 1 James Other +6a021863-5d30-4ed2-81ed-dd11d66d2831 1 \N Other +6a04c3fa-e687-4675-b82e-80cd39ab89e7 1 \N Other +6a04c526-39dd-4a28-b627-01d9ebd1b163 1 \N Other +6a082ecc-c356-4726-92c5-133d98d1dfa7 1 James Other +6a0cad13-496e-4e5d-a26b-ea506e5f457d 1 \N Other +6a0de0b1-4b27-4a5e-b8b6-4d49a84ae00a 1 James Other +6a123c06-1388-40b3-aae2-88f03e5662e4 1 James Other +6a131734-8ad5-4ac9-80f9-b8e59ce16b1a 1 \N Other +6a1aa814-ed60-4c19-a9ad-d48650bbcf07 1 \N Other +6a1e6103-62eb-48cb-9681-9bc11ac940c4 1 \N Other +6a1fda48-ed03-4dcb-88dd-d39fa498a382 1 James Other +6a2087c0-23cf-4008-87f1-08293371e379 1 \N Other +6a2864e9-2e81-4287-a2b9-055986601fcb 1 James Other +6a2873b7-f557-4b64-99b8-bdca86441664 1 \N Other +6a28b24e-66fc-4fd2-8d93-a2a6928eec1e 1 \N Other +6a2a725c-f321-46ca-8902-874dbf7f30ed 1 James Other +6a2ade30-c6d4-49bc-92df-b19abd5fc229 1 James Other +6a2ca06d-ed67-4150-9aa1-32f20feb5154 1 \N Other +6a2fd07b-100e-48b2-91f9-fb92057f0eb5 1 James Other +6a34e632-34d3-4d12-9847-b08e05e4ecaa 1 James Other +6a3aa34d-37ca-435f-be1e-0a9d60c35017 1 \N Other +6a3dee1d-5eb2-47a3-bc4a-255f0cdd482a 1 James Other +6a401c0f-a129-402f-9291-0a657b5e105b 1 \N Other +6a43542a-4c6e-45c2-9b46-28cd6266d2a5 1 \N Other +6a441a23-dd8b-43cd-9573-f68adaf16258 1 James Other +6a47efad-fbf9-46aa-a23f-83926927a0e4 1 James Other +6a57ce7a-4199-4254-a3a2-f40bc4964050 1 \N Other +6a5a4f2e-f4b3-4e52-8716-0fc7510f95c2 1 James Other +6a5defe6-b62d-49d7-b6a7-218bc07ae0a3 1 \N Other +6a5f8015-420d-4634-8f9c-4605b91b72a1 1 \N Other +6a655ae7-ab72-466d-b3cd-ef3f084e4fbb 1 \N Other +6a6a6788-e0d7-4ff2-9066-a45108c0850a 1 \N Other +6a6c4755-e0c5-4bac-aca2-abf1ee27a02e 1 \N Other +6a6fc914-024c-4923-a18a-e3ec97bc60d1 1 \N Other +6a7606de-5a31-4d25-a70a-d2090b5f5426 1 \N Other +6a77abf4-cf9f-4c68-b22a-292527590e07 1 \N Other +6a79713b-82fe-4361-b1ff-de004df15b93 1 \N Other +6a7c417b-e6f6-4937-abe9-a5b95687e18f 1 \N Other +6a835d2a-2330-4c06-be9b-250c82936e3d 1 \N Other +6a96a6b6-4f38-4a38-81ff-99f46dfc4648 1 \N Other +6a9b87a9-43f4-4f88-ba14-e437ff303c47 1 \N Other +6a9e7be7-232b-4825-a757-2a7911dda936 1 \N Other +6aa58393-bc99-4ad6-8d13-02e9481ecefb 1 James Other +6aa97ad0-251d-4f58-bfab-caac86a3d902 1 \N Other +6aaab725-9da1-4928-999b-930f20594be8 1 \N Other +6aac83a3-920b-498f-9e2a-fa917518eee4 1 James Other +6aadd4d5-7019-41b3-8fb7-10529d056391 1 \N Other +6aaff438-f5cc-4d37-8b33-1d2377430337 1 \N Other +6ab11b88-0e74-4edb-ac04-527440f3f7d0 1 \N Other +6ab4ac5b-afd6-49ff-9acf-366127993c4a 1 \N Other +6ab7e16e-c961-4f3a-aa4b-ed24e6f15c91 1 \N Other +6ab869ab-3f54-4d6b-8779-16925d3a2f96 1 \N Other +6ac0818f-d7d3-4127-b278-6f44c1e84ed1 1 \N Other +6ac1aafd-84d7-4c23-bb2a-b26e9c52bab8 1 James Other +6ac1b96d-9fc9-466e-99f3-a87dda0f7c25 1 \N Other +6ac1da5e-099c-4773-82dc-903dbb37d719 1 James Other +6accd68e-abab-4551-8f31-a56053661d14 1 \N Other +6ad5acbf-1125-438d-a37a-62bad4b5d91e 1 \N Other +6ad89e2d-b39c-4636-b8e8-6851ea0d9758 1 \N Other +6adc2b44-1b11-4172-9585-5b4597a013b0 1 James Other +6add8e81-f9fe-4dda-ac49-c0da6306e29a 1 \N Other +6adffd2d-362a-45c5-8032-e49b9391bca9 1 James Other +6ae051fb-798d-4997-8529-676e738a821f 1 \N Other +6ae183e3-a52c-4f10-8254-90e13a45f7bf 1 \N Other +6ae1d390-2fcf-4668-97f5-ef703cc6d5b6 1 \N Other +6ae1f459-d9c6-41f3-ae04-eff828e5f6fd 1 James Other +6ae33d90-6b3a-44b3-b6e5-8b809e3a228a 1 \N Other +6ae422e8-14f7-11e8-9120-fa163e8624cc 1 \N Other +6ae53baf-a148-40e2-a174-19933af66f4d 1 \N Other +6ae8ae74-8a17-453a-87c6-58577aca52a7 1 \N Other +6ae8f2eb-d064-4ff7-be6c-3fa4ca8d1a7e 1 \N Other +6aead3ad-4dc9-49ee-91c7-7cb4ab57e820 1 \N Other +6aeb1e8d-bd33-49f9-94dd-9c58d6d90507 1 \N Other +6af28f50-1888-4ea1-85d2-dbccfcd5c8af 1 James Other +6af38cb3-f4ef-4bdc-9b48-8a85aaa05d89 1 \N Other +6af40453-1c04-4488-ad92-c08c65fec47e 1 \N Other +6af52a61-c743-433d-84b5-557691541f2e 1 James Other +6af6dd6d-9fe9-4aad-913a-1df16ba76664 1 \N Other +6af93088-f527-4e45-9d52-96ba6e191c2e 1 \N Other +6afb391b-34e4-4574-b7b4-f6ee74b4284b 1 \N Other +6afec015-d99e-4eb4-98ef-75a2354026ec 1 \N Other +6afff579-7515-42b7-a072-c565c4e188e7 1 \N Other +6b0281d9-5177-44c1-b95c-92a821b10c55 1 \N Other +6b0320c8-0514-47c9-b66c-ff4e5b50bb0d 1 \N Other +6b034f0c-177a-4588-817c-7400004710d4 1 James Other +6b037ffa-89bd-47ea-9d22-c31170f0ff97 1 James Other +6b06097a-afd7-44bf-97bb-188af45e3c88 1 \N Other +6b06a6b5-9291-432a-acfe-719ef7df4356 1 James Other +6b0710a7-3ca2-4706-9707-fd7e2787e3d0 1 James Other +6b0cc369-8c66-4b05-9f08-5e65ffdcd069 1 James Other +6b0d3f7b-0c76-4082-952e-52f5a309507d 1 \N Other +6b0d827b-38c8-4ea3-b171-648acfc1c6e7 1 \N Other +6b0ea139-83b3-4069-ad29-6d70fe99fed6 1 \N Other +6b1366fe-16d6-4ee6-b746-58a87cdba665 1 \N Other +6b13b3ab-1e15-48b0-911f-a90975a170db 1 \N Other +6b144f42-8ca7-47d8-b864-54610a6535d4 1 \N Other +6b151c0f-7a56-49f4-9992-74ee64e3badd 1 \N Other +6b1551f5-d523-4391-9d9d-27a7f7c8f2f5 1 James Other +6b15b995-9dd3-48ce-86be-b1282f763355 1 \N Other +6b172943-acd5-4730-a154-14ed9ba73e5a 1 James Other +6b192e39-73df-489a-bc48-073e3c42616b 1 \N Other +6b1a570e-14e6-419a-9ba8-29bcfcea999b 1 \N Other +6b1af0f1-eddd-47cc-ad8d-d4298b12c723 1 \N Other +6b1ebcff-f1d8-4442-8c4d-8859193e0410 1 \N Other +6b211c0f-d4fd-4382-9410-33ac3fdda2bc 1 \N Other +6b23e938-58d0-4f9a-8a79-86c6c41ecb0b 1 \N Other +6b25be31-5e70-4e4a-9db8-516897e75028 1 James Other +6b2b9128-9151-4b0f-905d-b3cd1c4bec1f 1 \N Other +6b2dd2ed-2780-4f7c-bcb3-e49eb73d7003 1 \N Other +6b331615-d038-4308-804a-fba4289d39c6 1 \N Other +6b36450c-1c7e-402b-9405-40922063eccd 1 James Other +6b3a97c3-07fb-465b-9116-31bf12287f6b 1 \N Other +6b3d0776-5d6d-4416-b321-43fa5814810d 1 \N Other +6b3daf62-db40-45bc-b39d-d3277b7d0b33 1 \N Other +6b3e04ae-5486-4306-98ad-265f64ffd27d 1 \N Other +6b408d7b-3142-4599-940d-2687f98c046b 1 \N Other +6b411891-3178-428e-bb9d-3d035e758cb2 1 \N Other +6b41cdc7-72fc-4070-8aed-f40e9b4b0371 1 \N Other +6b44dbed-241a-4022-a21e-6f95f018058b 1 \N Other +6b44e469-ee90-47a9-a6a2-5447f8f6da90 1 \N Other +6b50addb-4b58-47d9-add3-d8081321689c 1 \N Other +6b520b0b-76ba-403b-87ea-152d20361d44 1 \N Other +6b526c32-ab56-4805-b780-46da6c23ed84 1 \N Other +6b56e281-1a98-4906-b0b0-e191ac931260 1 James Other +6b5b77d7-0751-42f5-b58c-073b71a9db09 1 James Other +6b60d56f-c28e-49b9-9eb0-8dffaebb5f0d 1 James Other +6b614c60-9f17-4184-a602-358baaa21830 1 James Other +6b661294-7254-4d58-839b-0c0fa9b2ef62 1 James Other +6b6dcff2-0561-48a5-bd8b-20c4c4a74f9e 1 \N Other +6b6f1589-389e-44b4-960d-51afbcc2ef84 1 \N Other +6b76e010-5bbf-47d1-893e-31c9b984b66f 1 James Other +6b7cf815-0018-483c-bd32-376599ae058a 1 \N Other +6b84fad1-6ef2-497a-8999-b0ca9398c8e7 1 \N Other +6b86c0c0-5ec9-4c92-9ce4-be372f5178cb 1 James Other +6b8ef9a2-9784-4e6f-9dfd-622f1863903b 1 \N Other +6b90c675-4045-4eb3-ad0b-a156100f02f9 1 \N Other +6b9823d1-feeb-4ede-b771-30fe05a49810 1 James Other +6b9937bd-07ad-4101-88fa-87dab1bdcce9 1 \N Other +6b99d5e5-c33c-4581-97c1-ba8c9f062319 1 \N Other +6b9dfd13-540b-4945-af4e-287dab090e1c 1 James Other +6b9ed222-4f70-425c-b754-43659ae12423 1 \N Other +6ba3c8b5-efce-4b7d-a3a2-401371f89656 1 \N Other +6ba7b044-3961-400b-96fc-b08255423008 1 \N Other +6ba828b4-df05-4db5-aa73-358a75e95542 1 James Other +6ba95c97-03d4-445b-b8cd-ce32ff2c43b8 1 James Other +6baedb62-f78d-4b2c-a867-988fe318bc9a 1 James Other +6bb600aa-3647-49bb-8148-bc5da774c014 1 \N Other +6bb67f10-2e47-4647-a680-e5f88747e8fd 1 \N Other +6bb865dc-e0a3-4d46-825d-c600903632ae 1 James Other +6bb9a3db-5880-4d49-a23c-c1a77195b028 1 \N Other +6bbb2d61-9a18-42de-bf19-cf11c15bcfd0 1 \N Other +6bc585a5-be66-4965-bc85-b44d01c8acc4 1 \N Other +6bc86d18-4c46-4976-9d20-6a15d80f9a4d 1 \N Other +6bcdadde-76dd-45e3-9777-e91dc5bf278a 1 \N Other +6bcf3c37-4fa7-48b8-881f-37d28c6d0d14 1 \N Other +6bd11896-14f7-11e8-8f6b-fa163e8624cc 1 \N Other +6bd3b79e-d068-4ff7-b5da-dfb44e2cc7f3 1 James Other +6bd4c440-da1e-4c04-907d-c275cbeececd 1 James Other +6bdc6b35-c574-42b4-b71f-1297def95131 1 James Other +6be00f2e-593d-4f6b-bd63-03c79d519ba2 1 \N Other +6be0aef9-fd83-487f-8bd5-021ac50319bc 1 \N Other +6be879ce-775d-4082-8e8b-4a827a4fbbfb 1 \N Other +6be94581-3493-4281-b00d-51f864a381e9 1 \N Other +6bea4563-8781-4925-9358-684c8efc9e97 1 James Other +6becb991-2855-4250-b87e-84b4f1bf38ed 1 \N Other +6bed75dd-fabe-4398-9966-b4674ed2b50a 1 \N Other +6bef552c-c426-49ec-b10b-c151fbea6c7c 1 James Other +6bf56a0e-9bd6-4fcd-8d9a-528e158e4e49 1 James Other +6bfd2cd3-2b08-40cf-b9e8-c38a80ea5fd3 1 \N Other +6bffc6a7-6a0e-42f2-969a-8b584bc06abe 1 James Other +6c01027c-5fd5-4ec7-818c-e76264962734 1 James Other +6c01d197-acd6-46b3-bf73-c6bab740d2bb 1 \N Other +6c0366e4-2244-4ee5-b9b5-8abdda7f3260 1 \N Other +6c061899-61e8-431b-b4a3-18ba72d075c0 1 \N Other +6c06d28b-b3f2-4a90-a4d7-7ce67e4a8193 1 \N Other +6c0bb248-aacc-4fbf-b1e1-e549cbd20848 1 James Other +6c0e7046-ce06-4d36-8ffd-3fef89d350fd 1 James Other +6c11b78f-b35b-46dd-b6b7-13499d9487b1 1 \N Other +6c1299a9-43a3-4ef5-8a76-e0dfb40bcd69 1 James Other +6c1acd69-1726-4778-b4df-45b367e28c53 1 \N Other +6c1e04a3-7140-44c6-9ad7-c08a80f9e22d 1 \N Other +6c285267-0c95-40dc-9476-5cf679c788a0 1 \N Other +6c2968fe-bc78-4e72-ae53-d318fc5014a9 1 James Other +6c2aa526-0e20-4a46-ba70-1536c641f46a 1 \N Other +6c2f313c-5cb0-4f5a-93cd-75d845a6c454 1 \N Other +6c2f803c-381c-40cf-8e02-cab7af3eb9ad 1 \N Other +6c3025c1-149c-4b1e-b5ae-44311669a29d 1 \N Other +6c3261f1-e8b9-41b0-8d0a-2c2a5fba9c38 1 \N Other +6c357fa2-d21f-406b-9c6b-3550f28fec99 1 \N Other +6c387070-4a9d-418f-b4b3-e6b5e36960c1 1 \N Other +6c3b4a0f-628a-44dd-a76f-80c063c1148a 1 \N Other +6c3b551b-5d2d-48d8-bda6-2c32bd9774ee 1 \N Other +6c3c678f-0999-451a-946c-737241e4d2db 1 \N Other +6c3df07b-0145-4985-a273-82aa17574d34 1 \N Other +6c436956-fc1c-4202-bea4-dde88d3b12ce 1 \N Other +6c45320d-5dc5-4ec3-bb65-ea194df2a431 1 \N Other +6c4b1a12-413d-47f3-8bba-78e13b6bbf27 1 \N Other +6c4c0663-7085-4cf5-bc93-77f6600896a3 1 \N Other +6c4d40ca-1f51-4061-a311-c4b8410fcddf 1 \N Other +6c4e7f5e-1191-416f-8cc4-c7af11d14972 1 James Other +6c53d53d-4fa9-4b2a-bbcd-10e9dafbcf1a 1 \N Other +6c5d2b09-a1a7-4f4d-b1b3-ee4c1092ebd2 1 James Other +6c5e82ef-b45a-474f-9abb-5f3feb5cff26 1 \N Other +6c5e8638-098c-4988-a1f6-1a926b5d55b4 1 James Other +6c61e02e-83ed-440d-ae3c-3d8eb1679b09 1 James Other +6c6292f2-124f-410a-9ce7-0b289718670d 1 James Other +6c630432-9021-4eeb-88c5-78ee020d00ee 1 \N Other +6c635d8a-140e-4aa9-a43b-0ed07d2570b0 1 James Other +6c6ead8c-d739-4abe-9a01-5701d2cb8fe6 1 \N Other +6c74a02b-18c3-4e49-8870-c7f907579d82 1 \N Other +6c7b6866-61de-4669-a6ab-da6f57478469 1 James Other +6c7b9f7c-0929-4dae-8938-e72146bad08a 1 \N Other +6c7bee14-ad42-42be-847e-b2be8d0d9fc9 1 \N Other +6c7ddabf-b4a4-4a12-abbd-6a4c64351ec4 1 \N Other +6c85e59e-fe6a-434e-815a-452b662ecf32 1 \N Other +6c8f853d-1d7f-43cb-a3ac-d7bb7a7ce784 1 \N Other +6c963f58-c7a7-4839-a108-f6ba895dd07e 1 \N Other +6c969f04-0300-4722-ae00-74ce0ed7ea64 1 \N Other +6c983855-b79d-4c21-9ebc-2341b89fe1e6 1 \N Other +6c9b3b5c-9f7f-4fdf-baac-4159608f5e14 1 James Other +6ca05e0a-2d6f-4bad-84a3-20063723e7c6 1 \N Other +6ca08673-1019-4c6e-8de7-fe272dd8e050 1 \N Other +6ca122df-174e-4498-95bd-4a873884001e 1 James Other +6ca48235-f154-4f67-b150-fc72befbd0e1 1 James Other +6ca79a69-6717-4276-948d-6c711b221781 1 \N Other +6ca91b81-1c23-41c2-8a49-9184676cfb27 1 James Other +6caa18f8-cc54-479e-a4a2-5de9c354d2c1 1 \N Other +6cb0000d-0d57-44ef-9a33-8cbaed628030 1 \N Other +6cb353f0-f152-4575-8aad-5131b1e11f08 1 \N Other +6cba773d-69d7-4db7-a0f6-8290e0e4c91b 1 \N Other +6cba90b2-abf8-4fb5-b238-31f9f72ecb44 1 \N Other +6cbf6439-9b63-492e-ba26-456597c0afdc 1 \N Other +6cc0776a-1a16-4d98-8541-a9b48f5e8bce 1 James Other +6cc19bed-ff3d-459f-97c4-ceaf3724df9a 1 \N Other +6cc8b792-c8f4-446e-9f4b-c672cdc54c7b 1 \N Other +6cca2d3d-4233-4a1f-86c4-f3b4b8650bc8 1 \N Other +6cd0b492-a45b-44b7-9961-9d7b55a0d245 1 \N Other +6cd2c4db-ec58-4ada-803f-607cc62b80b0 1 James Other +6cd31b81-5638-4230-804a-1436fb327347 1 James Other +6cd46627-a674-4b6d-89ea-36da05d9a63b 1 \N Other +6cd8ef9f-5655-4964-b020-f8cf9f16e03a 1 \N Other +6cda5ed4-a43d-47f2-9828-22080d488686 1 \N Other +6cdd4cf4-ba7e-4d69-a361-bbbd0a90d265 1 \N Other +6ce0c9fd-8853-49e6-ac9f-320d7dfe9b77 1 James Other +6ce5e2c5-26e7-4b5a-b68f-540d82d51f97 1 James Other +6ce957fa-a1d8-4244-a39f-bb4253c73fab 1 \N Other +6cea71fd-0517-411b-be9f-2d6e090f40c3 1 James Other +6cf15054-3d16-4857-bb3a-9d3594372a02 1 \N Other +6cf66fcf-1f60-4ad5-acc8-06f6542b9b80 1 James Other +6cfa1d4f-a433-4155-8b08-7fadffe9ca5b 1 \N Other +6cfb5133-a182-4bd5-9319-1b8947a47838 1 \N Other +6d0513e5-c837-40d3-98dc-405c4159daab 1 \N Other +6d05d1ad-0126-4ac6-9200-ba2a6333cdf0 1 James Other +6d079f76-d5d7-4206-b338-bdff9fac6d58 1 \N Other +6d0bd99e-e355-4e57-8f5c-974a8b11e965 1 \N Other +6d0c5cc8-329b-45c6-9e38-266af0fb1137 1 James Other +6d0e608b-42c4-4095-8cdc-73d20ca5b168 1 James Other +6d0f70d2-9f0c-427b-85c4-ddcd0a3efb49 1 \N Other +6d116aa7-4eb2-4f90-9d60-50bec7978112 1 \N Other +6d141ad1-14e0-49f0-82d9-d441091c0681 1 \N Other +6d145487-b5df-4aa6-8299-9c4bb321c0ff 1 \N Other +6d15f603-6fa2-4a43-9d54-bf2b69f1c6e2 1 \N Other +6d183133-206e-48b9-8b96-d87ad19e209a 1 \N Other +6d1a37e7-da28-469e-a53b-e309c9a51e9a 1 \N Other +6d1d20f4-9cb6-4891-862b-00a29105e5b1 1 James Other +6d1d902f-e551-488a-b50d-7ba46c7aef89 1 \N Other +6d23e255-323e-4c7e-ba47-d66e82a7d03a 1 \N Other +6d258d8d-cbe7-41b8-99ef-268b6625f516 1 James Other +6d2c21e8-b41c-4db6-90ee-0b0a193dc2de 1 James Other +6d2ce707-6693-45b2-aa22-32b4dfa679ca 1 James Other +6d2e9218-0c05-4a7e-8695-327da994db73 1 James Other +6d310914-97a9-45ae-b285-e87c80020e45 1 \N Other +6d36e0cb-ffb0-468f-9ea8-c934177f578b 1 \N Other +6d3d56ac-64f8-4fd5-a0b3-d90678353866 1 \N Other +6d3d6569-1dad-4ee4-86d1-e59cfad90abc 1 \N Other +6d3e88e7-0b18-4380-a62e-fa2de1ad7b32 1 James Other +6d3eda69-d503-4a3e-8797-448764f446f3 1 James Other +6d41e65b-4d3f-4b15-b76c-2dfe474ebe4a 1 \N Other +6d427e08-6d29-4ccf-95fa-7c4712be7012 1 \N Other +6d4910a8-f383-4cbf-a3ea-0f02a3967f00 1 James Other +6d4ade91-1f79-4f80-a6e5-0aab1df3e9cc 1 \N Other +6d512a5e-74bd-4f2b-9979-3e09ec32c13d 1 \N Other +6d53978e-3844-448a-a445-f5f3b4fb7ca1 1 \N Other +6d544be9-4538-4997-8276-d8f7467cbe37 1 \N Other +6d5ee256-51d1-4a89-a3df-cf9af736087c 1 James Other +6d64eb5c-e562-4c22-9c19-ceabdc4db07c 1 \N Other +6d651d3d-836f-4664-8755-5b37129922d4 1 \N Other +6d699a48-fc87-43e7-817b-7759669c09cd 1 James Other +6d6bbb2a-3d72-475d-8835-70e9b1b861dc 1 \N Other +6d6ccca6-5480-43eb-aa1a-c7ddd2da0165 1 \N Other +6d7132a8-0afb-4541-bcf4-db6abbc508ad 1 \N Other +6d789ba6-295f-4fca-b0dc-03584a0bc08b 1 \N Other +6d79c047-102b-489a-a776-3d8fc23ca15f 1 James Other +6d7dee12-f5e0-456e-ab10-8a91db7f7392 1 \N Other +6d7dfb33-7313-423b-b78b-6c82b8c5f446 1 \N Other +6d81a92b-6099-4594-af8c-3cef6a8663af 1 James Other +6d856541-28ea-45e3-9758-7cef01b836e2 1 James Other +6d8ad8ff-1999-4d9e-91bd-dc0329ccd684 1 James Other +6d8bd06f-6b55-4235-a289-d11bf3cf89a8 1 James Other +6d8dd2ee-0eda-4a51-830f-a56c3f43d1a0 1 \N Other +6d8e6544-e9ab-4e43-90d2-a5fa6853fc83 1 James Other +6d8efa1f-74c7-4821-84ee-3e7c386f5a47 1 \N Other +6d8f34eb-1c8e-4705-b8f7-4796385c5b0b 1 \N Other +6d8f952d-fd1f-4a66-959a-1def8b027d71 1 \N Other +6d90c297-2d80-48ec-b292-99ba916fe976 1 James Other +6d9655ca-88bd-4511-8f0f-a20a64cb263b 1 \N Other +6d987f5f-cbbb-40bc-85fb-a89167ab3e94 1 \N Other +6da04e06-4e7b-46fb-983a-3180a1b05f4a 1 \N Other +6da0c729-c2e5-4c48-a621-b2dc537b808d 1 \N Other +6da69805-b08c-41f2-9c69-d88cf947f8b7 1 James Other +6da6d01b-e734-49a4-a551-bdec799776c2 1 \N Other +6da7dfc3-3403-4cae-961f-b543b03e09ac 1 \N Other +6da9fba6-4b2e-465b-b3d8-48e667534555 1 James Other +6db06f5b-bdf8-4971-a420-a2de5b162653 1 \N Other +6db3b956-e47b-42d8-aede-1a55cfa191aa 1 \N Other +6db42ea3-7f9c-4a1f-8331-e39386748298 1 \N Other +6db56fbb-55ee-4687-bc45-7821dbb2b1f2 1 \N Other +6dbbb9be-cb54-4089-8db1-57edf0ab05bc 1 \N Other +6dbd1b3a-8eeb-4f8f-91c6-8ba7384ad325 1 \N Other +6dc39e62-3b0a-412e-853b-4efc0f56602c 1 \N Other +6dc41473-6427-4279-8610-3e4fba5d310a 1 James Other +6dc49d6c-b7fb-49f1-ba9b-7de30ed0c326 1 James Other +6dc7524c-c5e4-4e01-81a3-2bfc56c653d7 1 \N Other +6dc82ffd-bb4e-4aab-a33c-66267ea73822 1 \N Other +6dcaae65-11e7-4213-a974-ae15e3df59c6 1 \N Other +6dcdb8bd-e5ff-48e3-a7fe-98090cc5a94f 1 \N Other +6dd23ea8-8d5c-456c-b250-0c220c6153c8 1 \N Other +6dd267d4-a9d4-44f7-b2fe-0d09f77deae2 1 James Other +6dd2cc96-c514-4bb9-86b7-0236dd4afec7 1 James Other +6dd2d99f-3df7-40f2-b032-8d8711030773 1 \N Other +6dd41c38-b33f-4f98-9a21-cb6c6afbf2d3 1 James Other +6dd4dd04-6f95-4a1e-a7d0-7eff3c369dfb 1 James Other +6dd59adf-0ec2-43d6-b23b-0f1cd1ba22e8 1 \N Other +6dd74234-387b-4d5f-b0af-7370d3855a15 1 \N Other +6dde8eba-cf9b-46cc-9e2f-9e1412bc0444 1 \N Other +6ddef022-3797-482f-86a5-26a3a4b149d1 1 \N Other +6de072ea-86b4-417b-80c0-955049917926 1 \N Other +6df29c27-5972-4864-8fc0-bbb1281fe19a 1 \N Other +6df7ffe6-2305-4f87-8cf3-c5cf29312262 1 James Other +6dff4340-93dc-4d5a-a4c9-592e098d05ff 1 James Other +6e013bde-6396-4993-9d0e-45edc05f84f3 1 \N Other +6e047d2a-d958-442b-a594-a0f73927d7e0 1 \N Other +6e04a19a-dcdb-4cfc-9d3c-1c3da84d610b 1 \N Other +6e05c16d-1ffd-4213-b93c-335aa2caf069 1 \N Other +6e0f3629-e602-496f-91d0-39d30e2c9f27 1 \N Other +6e106533-8ea7-4414-9f9e-b473a430e666 1 \N Other +6e11e383-a338-494e-830c-f37fb3792a8b 1 \N Other +6e13d3c9-56d6-48a8-8644-7fcf1088ff0c 1 \N Other +6e1d957f-9f17-4ce2-a403-0cd086f8bc58 1 \N Other +6e1fb006-853c-4a8c-8388-5f7b7aa003f4 1 \N Other +6e241cac-ce34-4aea-9606-1e788d866ea3 1 \N Other +6e252df1-9966-4413-a187-7bf1801f06e0 1 \N Other +6e2ad63f-d060-48ab-81ff-14efa4920167 1 \N Other +6e2cb864-69d6-4284-a954-02db5f9055de 1 James Other +6e2e57a5-d0fa-400e-8f14-063581195d9e 1 \N Other +6e30ae53-0891-41c7-b317-c1a6b0657c5d 1 \N Other +6e3aef63-10aa-4bf2-80b4-acc646794173 1 James Other +6e3d2f93-beb1-4b95-973e-0046b17845d9 1 James Other +6e4603fe-e272-47b9-98fd-cc59002df823 1 \N Other +6e48509e-a819-4a9a-8da0-f7ce3475694e 1 James Other +6e48bfc8-f42e-413f-9d54-e1484fe320a2 1 James Other +6e5608ba-db28-45f3-a3c2-3ebb24edc916 1 \N Other +6e561364-0bd6-421d-ab10-012475cab057 1 James Other +6e56da33-cd38-40ab-a353-3f3bb2f0c51b 1 \N Other +6e57e59b-ccdb-4d9e-be63-00aad95333a5 1 \N Other +6e5b1b16-910e-4e17-b746-0fe1397d8882 1 James Other +6e5d210e-e553-4f8b-897d-d90f40efeb00 1 James Other +6e60f68c-92a0-46df-9ff6-329e9f8a9778 1 \N Other +6e61c8ac-c133-45c7-a29c-a0cff377d279 1 \N Other +6e63dae7-817d-474b-a11f-43911a716b4d 1 \N Other +6e647335-ea2d-4e0a-8189-b7d1a615990d 1 \N Other +6e64eb9a-d345-431d-983c-41418f4e364b 1 \N Other +6e6781ca-1700-4475-ba38-1b999257887e 1 \N Other +6e67babe-def5-4f73-855c-5e53766d2c78 1 \N Other +6e67e49c-8b0e-4ea4-bdb0-456a1d3920f8 1 James Other +6e683eb5-418f-460d-8878-c99230235679 1 \N Other +6e6c37f7-126f-4e64-b81f-afe0094e146e 1 James Other +6e6f2208-8b28-4786-ac28-fee577e58736 1 James Other +6e718eb9-ea15-4c47-b597-74a61c3823ad 1 \N Other +6e71a0a3-00e5-4f60-b515-2536e74c8f4d 1 \N Other +6e72da49-afee-4544-886f-6d68057fbe50 1 \N Other +6e775fb9-491f-44e0-92d3-4567948c3fd0 1 James Other +6e799a67-524d-4e64-bae4-c9971981f521 1 \N Other +6e7e5cc9-f425-4858-b767-fa9d78c2164a 1 \N Other +6e7f67f7-3173-447f-8d7c-d39ba246d877 1 James Other +6e9030f1-2b64-4815-a57b-aafdfd76d721 1 \N Other +6e91a3d5-d629-49d7-ac03-60a1b639303e 1 \N Other +6e95859e-466d-41ab-84cd-34a5e8cdffc3 1 \N Other +6e98ef9b-4427-424a-861a-4c1cc40dd865 1 James Other +6e991099-1aa1-472a-9030-92c6db703ce6 1 \N Other +6e99f27e-743e-4bd6-be02-8f084bdce3c2 1 James Other +6e9aea26-29e0-4680-b543-6cddb003aa78 1 \N Other +6e9dcf56-3ef0-4673-92ef-290e006c3dc9 1 \N Other +6e9dd35e-a1b0-4d83-abd1-222fb0d2de1a 1 James Other +6ea3045c-c313-4dbf-b2b1-ceb540bd74e4 1 \N Other +6ea455ed-88ed-46a3-b796-866bf54682bd 1 \N Other +6ea7a18e-afe4-484b-b8ea-38cd52da8da2 1 \N Other +6ea8ddfd-3556-438c-b78f-5085ef97b7f0 1 James Other +6eabb921-c943-4e78-aaae-e20f2fec96e3 1 \N Other +6eaeb55c-5a23-49a9-8cc5-1a281d0b934a 1 \N Other +6eb4a603-32a9-46d9-ac65-93e52f90c610 1 \N Other +6eb4f477-3e39-4ae4-bb6f-14a602770503 1 James Other +6eb89680-28d3-4a3a-ac13-2be526e53dd0 1 James Other +6eb8b53e-3933-4794-987a-7ed0d50515a4 1 James Other +6eb90af8-29cf-4686-b213-1b0ca8b70ee4 1 James Other +6eb9f191-0eff-4d5e-a02c-8ded476612fa 1 \N Other +6eba56ff-09a0-4722-9189-2664ba37b823 1 \N Other +6ebd4f24-216a-4e97-85aa-9b9097cd20c8 1 \N Other +6ec02b51-404f-44b3-a24a-b42aa098cec8 1 \N Other +6ec3a4e3-c42d-4e95-b95f-3efdcfbee6fc 1 James Other +6ec7a8f1-7bd1-4d0b-a646-ecc5f2f04878 1 \N Other +6ec7f230-ccff-43e9-a529-9643fb16d2b5 1 James Other +6ec9bb14-bb24-4cc7-9bf6-ee46bcd189bb 1 \N Other +6ecfa3fe-7f2b-44dd-8f82-6a3b29bab285 1 James Other +6ecff45c-d1cf-4783-b3d6-9c14a7d70732 1 \N Other +6ed065a6-55c8-4c03-b4b2-eccc0b611457 1 James Other +6ed0a3bc-4dc6-4845-b1d7-25c4567488f8 1 \N Other +6ed0e8cd-880e-4d5c-91a1-597d0a631c5e 1 \N Other +6ed5de98-9391-4c7d-a5d4-4ddcb8719254 1 \N Other +6eda4dcb-5ee7-4f0a-8e99-5e212fc2867a 1 \N Other +6ee477b5-3a87-4c8b-9469-ed0d4588432d 1 \N Other +6ee8fd00-dba6-4dcb-81d6-db5bba36551d 1 \N Other +6eeac023-039c-47a2-b3d5-02a97220c6c6 1 James Other +6ef13905-d846-40bd-be1f-d315e542efd2 1 James Other +6ef4d4ee-c75f-4b5c-9c10-0ebdbccaf5d1 1 \N Other +6ef6698a-872c-405f-878e-86ef869153b0 1 James Other +6ef6c309-c1a0-4fce-b593-4fd375f73182 1 James Other +6ef82c59-26f6-42f1-a4cc-0609ede3dc1b 1 \N Other +6efd824c-ec10-408a-ad28-9fac35d991ac 1 \N Other +6efff70d-ceaf-415d-90c3-3a81354b238e 1 James Other +6f002136-0ff9-11e8-9fab-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 James Other +6f06809a-9ed8-4c70-b582-d46edf740d9f 1 \N Other +6f12145b-764f-4cde-8112-9b1699f0ab12 1 \N Other +6f16b035-ddc0-43f8-8321-8a498ae5469d 1 James Other +6f1b2dd1-54c4-4d7c-aa00-64d4b817d92b 1 James Other +6f1ebf33-64a1-4921-a024-8a4185ad2389 1 \N Other +6f1f1283-6dc7-403e-aa0e-e7cd5b30c6d4 1 \N Other +6f23f79c-7ff4-4b26-b33d-8a5cacb65e85 1 \N Other +6f25cee8-02ee-4cb8-b6e4-e139a18177c4 1 James Other +6f270dcf-e7c2-40fe-9e77-acc2a7907271 1 \N Other +6f28b366-5bc9-4127-8da6-a5ac63a65862 1 \N Other +6f3517cf-5519-4caa-ba8b-a927d8078841 1 James Other +6f37287a-8531-403c-8930-0ab21b884504 1 James Other +6f37c245-c65b-4eb4-accf-b8223e741ab5 1 \N Other +6f3807ed-66cf-4f0f-ba04-b5f0bd12c92e 1 \N Other +6f3c404f-8d51-419e-8ea2-9d9590af3f3d 1 \N Other +6f3c44e8-c50e-4dd1-9730-7eaf74ad1107 1 James Other +6f43bad2-5fa3-445f-b464-b587cebe015e 1 \N Other +6f440964-8bf3-4293-a36c-359548e4c059 1 \N Other +6f452e4a-c5ee-4ea1-b1d4-68d9ce5ede0c 1 \N Other +6f462129-f69a-4ef2-9b43-eca72e010b40 1 James Other +6f4675e9-4444-41e2-a105-f6661d4b84aa 1 \N Other +6f4a9810-885b-45b9-bc77-3347206b92aa 1 James Other +6f4b1797-eaa4-462b-9935-31434c030dbd 1 \N Other +6f4e10bb-26d0-4ce5-a604-89a98e0a305a 1 \N Other +6f556e60-05e1-4562-afd1-1556a4ad035a 1 \N Other +6f6265e7-5862-46cf-9ba3-7c7755ba4a01 1 James Other +6f635a48-4c57-49ef-9263-7e07f1fee871 1 \N Other +6f63f6b0-101d-42ca-92b7-6de808fff01b 1 James Other +6f65d4b1-03be-45c0-abc6-da8b361129eb 1 \N Other +6f6651b9-ce12-49e7-84e3-f6033c84a672 1 \N Other +6f678357-b2ab-4836-b5cb-fa25fd9e23fc 1 \N Other +6f6824ee-30f8-48d2-8b5b-e0173be9d8e5 1 James Other +6f6ab11e-cdc5-4348-9ddc-ea87bc42caef 1 \N Other +6f6b2e64-a7c8-408d-b5de-682e585e9ade 1 \N Other +6f6cbf2e-ccec-4531-b572-52cd697918c7 1 James Other +6f704d16-6f7c-4816-a251-88070ca5e7c8 1 James Other +6f7d89fb-9792-439b-a22c-a1cda6fd312f 1 \N Other +6f7da50e-a892-4120-9ff6-95c15fee2fca 1 \N Other +6f7fd643-f55e-4bec-ad11-34c38f3eff36 1 James Other +6f8292bb-b276-4e51-b1c6-6a04c65b833c 1 James Other +6f853fef-5430-42be-9193-0382adfd770d 1 James Other +6f8742e8-d225-4147-a522-97140f10011d 1 \N Other +6f87eec5-79fa-409d-896a-b2f48e66e6be 1 \N Other +6f8a03de-60bb-4505-b3d1-2e63494e5bca 1 \N Other +6f8dda83-da98-427a-b287-69f0931b4de2 1 \N Other +6f8e8668-8353-4a83-b644-d56607091e4a 1 James Other +6f90bf06-7386-4db8-b517-0d8263ca585b 1 \N Other +6f915ee1-c2b7-437c-ae12-89f3aef8eb62 1 \N Other +6f924edd-0c06-4286-b26d-552169ca3409 1 \N Other +6f985534-feb7-450c-a9e8-f94d65967fee 1 James Other +6f998b98-daf1-4eed-8b2c-98474a4cd8eb 1 \N Other +6f9a32f6-cece-43d4-ab3d-4536ce140440 1 James Other +6fa2c4a2-ddb0-4b27-8eb5-bc20af0fffc7 1 \N Other +6fa3dee9-2ca3-4b76-8598-bb1f1c8e6ce2 1 \N Other +6fa4df7e-d023-4a88-af6a-aca67c866610 1 \N Other +6fa69b3a-0bcc-4538-b4b4-25877e06cd12 1 \N Other +6fa74e4e-bc61-4086-a6d6-bc506ed2e53a 1 James Other +6fa88758-6fa0-4bd6-9b15-0ee571e76494 1 \N Other +6fa8ea64-a8c3-43ed-8fa4-9c44a2736627 1 \N Other +6faca584-8f17-4207-a55b-86402fba2de6 1 James Other +6fb13cd3-5901-472b-95b4-89acc7aba2cc 1 \N Other +6fb3d059-3762-4a94-945a-e3d495c2678b 1 James Other +6fbe3f7e-30d1-494b-bde5-0ab25705fd8c 1 \N Other +6fbeffa1-4bda-463a-9534-e9d2aa946620 1 James Other +6fbf806d-92ac-4d7f-91fa-8e948547b418 1 \N Other +6fc15910-0d2d-4582-821b-9de252aa6b25 1 \N Other +6fc47a11-a9c5-4f3e-8ad1-37f467abe6b9 1 James Other +6fc4b554-7cbe-458c-ba6d-c4dfd44fba51 1 James Other +6fcd8ab9-1a3d-42f9-acff-9ba62772112e 1 \N Other +6fd069ed-08ef-4c94-bc3d-abde86b574eb 1 \N Other +6fd27dca-22c0-4bb4-b198-014f8a76f40e 1 \N Other +6fd4e173-b79a-4f42-8181-47c08a2ac217 1 James Other +6fd54d1e-4911-49f6-9952-6facaf1021be 1 \N Other +6fd9826e-e529-4396-89c0-9dd17eae004f 1 \N Other +6fdf3333-10b3-4d2e-a001-15279b64086d 1 \N Other +6fe07928-b460-4c70-9c82-6c83197ca113 1 James Other +6fe0fb5a-ec0b-4a95-ae04-f4deadc6a480 1 \N Other +6fe1aa34-6716-448b-aa4a-3af8b7313517 1 James Other +6fe3343d-d791-4ea8-83d6-9c324fbf339d 1 \N Other +6fe4fcbc-118a-42bf-b7dc-5ed3c575dcac 1 \N Other +6fe7ee59-b9d4-4e7d-84e8-b43cdeeae53a 1 James Other +6fe8d140-58ba-4e16-a716-39c3b3fdbff6 1 James Other +6fe8f409-0871-4c31-aa4e-ebf06f857304 1 James Other +6ff16fa4-3f7c-4457-b9c2-ca7b8fbd1e2f 1 James Other +6ff1fdea-b195-43c5-8a1c-6f712f6a3ec0 1 \N Other +6ff2b844-ce03-4bee-a178-2cdde16551f6 1 James Other +6ffa815e-2875-4717-9007-a768fb1ffa6c 1 \N Other +70080932-1a6d-405d-9c2d-79164ef85296 1 \N Other +700d7b74-e3f5-4736-9d73-df3111bc4b5c 1 \N Other +70102be5-6a75-4216-8666-ba55268e04a0 1 \N Other +7011e913-56c1-4d07-99f5-31c9d3175886 1 James Other +701279b3-e024-4707-ba97-8fe367f1e567 1 James Other +70151f0c-abf9-48ef-9f65-d2b718ca6e7a 1 \N Other +701c1076-ec3a-4b9a-856a-059930d81381 1 James Other +701ec564-fcd3-432f-ae97-bf1c0ac13f79 1 \N Other +701efbbd-a7ef-442a-9333-0617179e167a 1 \N Other +701ff124-6d0a-4bb6-847e-695af100d0d1 1 James Other +70244c4d-fda4-47d1-be73-f745eab13a50 1 \N Other +70264a0a-1dd0-4e08-b9ae-7b72c6c81c4c 1 \N Other +7026e3ab-82f5-47e0-9f18-60e63b98c68c 1 \N Other +7027101d-ba2a-44cf-8b97-8a9a5fcbeddb 1 \N Other +7029703d-1ed3-41c6-97dd-35d114ad0d2e 1 \N Other +702ab273-fd90-4e37-bb1b-9cab0dcf78ac 1 \N Other +702d293b-3dea-41e0-9635-412b21541e37 1 \N Other +7038e887-8df5-4b29-b238-38d3570ef258 1 \N Other +703c4a0c-ecbf-4199-8991-4f2c1b9d8e24 1 \N Other +703e56de-708c-4d59-8ebc-b9c08e81586a 1 \N Other +7041ca22-c988-44dc-b21d-22f6083fd5ea 1 \N Other +7050ab15-e2ce-4f24-a55f-5bb7268e7cb6 1 \N Other +705226f4-3e65-45e3-a3e1-124d51c6639a 1 James Other +7052df0d-418c-4ab3-b276-b6d98ae0203c 1 \N Other +7057ad60-8df9-4a60-b9aa-93852340f90e 1 \N Other +70580183-a47a-4265-adb8-064f10b36f62 1 \N Other +705a5408-6249-44d2-834b-4cf02b0857be 1 James Other +705f02c9-ee58-41f5-b199-337abb0dccc3 1 \N Other +70601747-3c5e-41ae-a3a4-52b6ef8365fb 1 \N Other +70610f8d-b182-4718-9c15-2f1eb0c37e70 1 James Other +70670a36-13e4-4ec8-9686-e8e6f71b13a8 1 \N Other +7067220b-1c21-4045-912c-602d288bc1cc 1 \N Other +706baef8-c175-4d33-8f4e-3242f1e5db8f 1 \N Other +706e136b-0290-4fd7-b40f-1a0bbaae33a5 1 \N Other +707524c0-522a-4cd8-b36d-9e1e81aeec0e 1 \N Other +7076a38a-1542-4e15-8f32-077e12f02257 1 \N Other +7076b02e-c3b2-406b-b477-8db9250e4884 1 \N Other +707ae81e-5aa3-494e-b311-5deee1296158 1 James Other +707bce3d-3f23-4403-aea0-1b2c9ccf7524 1 \N Other +707bee7b-ed27-4139-8f3a-74db7a2b9241 1 \N Other +707d0ecd-6511-429d-b79f-00d763e7e344 1 James Other +7080c2f6-66c5-4d02-82d7-55a7340dcb57 1 \N Other +70880a65-9523-4191-b535-6004553d1f73 1 James Other +7089bee6-ce2f-4cab-84a4-e2e44acf9c0a 1 \N Other +708db10f-b5dd-4596-8b91-2dfbe8dc4c4a 1 \N Other +708e8552-dc43-4480-9beb-ba7222ba6ad4 1 \N Other +709617a4-0ce1-4d15-87c1-7772428caaaf 1 James Other +70965cd4-94ec-4ebb-922f-3130911d1c27 1 \N Other +7097bbf7-32fe-4b20-bdc0-040347b25155 1 James Other +709a2452-12c1-49f0-91a5-0be1095400ac 1 James Other +709a9300-cdc2-4c57-bee6-18b2b911b5a7 1 \N Other +709d5d50-71f9-4e2f-87a5-ceead4358a47 1 James Other +70a67bf7-1bea-4f18-b7a5-2758edd6b0c3 1 \N Other +70a7349e-0e22-11e8-b7da-fa163e8624cc 1 \N Other +70acde82-f0f8-429a-a859-de0c97de156c 1 \N Other +70aece1d-4c77-4d06-b20e-070c26e0bb59 1 James Other +70afe8f6-0d3f-4d04-a6c1-0cd8bed116eb 1 James Other +70b4c266-efb9-41da-a55f-272db67bc003 1 \N Other +70b6eae3-98bf-472f-96ab-a2e139260603 1 \N Other +70b6f675-baad-4465-b2d7-db0ba64af5dc 1 \N Other +70b75ff4-1e99-484e-b62e-f91e4ff416aa 1 \N Other +70b7bb43-dd97-456c-856a-d52b2f17d884 1 \N Other +70be1310-a4d5-458c-b752-97a1b8a339ba 1 \N Other +70c27927-a320-4324-95f6-97d90eb85b92 1 \N Other +70c50a27-2b4d-4348-9356-b66ead1ac11e 1 \N Other +70c53552-77c3-4efd-8dfd-6ddd13792111 1 \N Other +70c783e3-1a29-4ffc-a0a0-a92be6e3f1d7 1 James Other +70ca644e-5fea-4efe-afb9-81fce9510d6a 1 \N Other +70ce3e18-30b8-4b75-87ba-83b2d70d4f10 1 James Other +70d10490-0e22-11e8-a7d9-fa163e8624cc 1 \N Other +70d358a4-b9a3-43ab-bb7b-2520256a40f6 1 \N Other +70d57947-fe49-46ee-a97b-f0a2c652d722 1 \N Other +70d9026c-ed09-497b-8303-e1cd163667a3 1 \N Other +70ddd3ca-44db-4207-a474-f2be81e3a74f 1 James Other +70de818d-5e64-4b7d-9ba4-ea7494850c6f 1 \N Other +70e0fe3d-8063-41c1-9ba0-8948026fcce3 1 \N Other +70e1f06d-166c-45f8-ae86-8a062ab41a0e 1 \N Other +70e4fb00-660f-4a44-8424-83febbc3761c 1 James Other +70eb0248-340f-4dd6-9ad5-f9b494ad2af8 1 James Other +70f7cd30-8997-4f41-b40c-a6528222ebd6 1 \N Other +70fb3e7c-9158-479d-a871-9a3fcbd34bbe 1 James Other +710470b8-6754-4743-b022-22f52f0c0fea 1 \N Other +71084065-4cc4-4d7a-82ed-629568f84beb 1 \N Other +710d8b0f-a61a-45b0-b003-2b56e0b5df64 1 \N Other +710e9021-a0bb-49df-ad06-d774e7d66d39 1 James Other +71155b68-9edd-4b4d-b9bd-a874d364816f 1 James Other +71160fd6-49b7-4027-a022-caceba869482 1 \N Other +7119ce93-7b55-4f78-bbf2-d914a3d67137 1 \N Other +711a1e22-12c9-4583-800b-dba93843f36d 1 \N Other +711caf8c-d2a3-4de0-9f5a-6d7b1410e443 1 \N Other +711d4f08-496e-4c48-9b93-669fd3ec5cf6 1 \N Other +71257236-9948-4c97-a7f7-76e2b290cc48 1 \N Other +7125dce6-1465-41f7-b0cd-c5596435a27a 1 \N Other +71260f25-a0a6-4dd0-bd56-3255c2e6738e 1 James Other +71287b19-e1f9-4083-9be2-0118235710e0 1 James Other +712bb65b-0478-4c9a-a7d0-2ece6684054f 1 James Other +712da0c8-d473-495f-82f8-471c912d9481 1 \N Other +713064c1-77e1-45cd-88ca-c39b7a8b16c6 1 \N Other +713592dd-31d7-4e5c-a9cd-4d1c58f5f912 1 James Other +7135d32f-d19a-4eee-893d-930eb642ecd3 1 \N Other +7136fe47-1a5c-49f9-bd04-4f4993911fd5 1 \N Other +713c1977-343e-4731-96f7-bcffa74afb05 1 \N Other +713ea963-f42d-4e4b-81aa-9c71583d7327 1 \N Other +7141e32c-ae56-495e-a1b6-3149c6771d84 1 \N Other +7145e37e-8f2f-466b-b9ba-72aba3180d84 1 \N Other +714630ce-3d67-42ca-b1ad-2f17dc14520c 1 James Other +714c27a7-a162-4381-9698-01d70c47805e 1 \N Other +71504c4d-d1b2-4da2-95b9-53dce2565766 1 \N Other +715128d8-7a65-4468-a57d-268ceb9887b3 1 James Other +7152e484-973f-4316-8541-b182f2d6ccdf 1 \N Other +71540674-2953-4559-8a04-7fbd5989ea0f 1 \N Other +7156198f-f777-480d-b515-7635980ffc44 1 James Other +716032a9-ff25-4b0f-bb13-88a80b62268a 1 James Other +7163bf86-5d58-4ed5-8b21-f9f9994360aa 1 \N Other +71669022-9110-4349-bfee-01e8d45cd465 1 \N Other +7169fd46-e038-4ede-b515-d31f50021905 1 \N Other +716cdf89-0a18-438e-bdda-f2dc8998592b 1 \N Other +71706000-196b-4a03-a653-23a6e7585324 1 \N Other +7175bab2-49d5-4787-aee8-18b534367777 1 James Other +71760a29-5ce6-4fb6-bd65-2c338370bde0 1 \N Other +71766b8c-3a98-4e93-9994-2f74fea51f79 1 James Other +71784892-6c41-482e-a004-8ada9be40774 1 James Other +7178c3f1-7e9e-4923-962f-79d4048469d8 1 \N Other +71797252-b7ec-4e45-9e91-9505436f012f 1 \N Other +717bb946-e63e-4f39-a3f3-a057bd1ac58c 1 \N Other +71812b53-19d5-44ca-baf1-ffc5f63c9307 1 \N Other +7182321a-05e9-4f30-8c97-783eb5bf3b63 1 \N Other +7183e506-a704-46d3-a9b3-5c0c59d7adaa 1 \N Other +718589c2-0f74-42e4-b569-b32f9242e358 1 \N Other +7185b925-0864-4e66-8d3c-d36401ce710c 1 \N Other +718845e9-d3e4-4e01-9e59-2c810237b2a6 1 \N Other +7189d7c5-7919-4faf-b9f6-1bf15aa79a4a 1 James Other +718a424f-5d8a-41b1-be39-72e7700bf5c9 1 \N Other +71986145-72c7-4b0a-a55c-5b6cf429ce4e 1 James Other +7199f587-b4ef-42cb-86ce-22fd3d5a9f90 1 \N Other +719a215f-30ff-4371-a662-ba092b0cf640 1 \N Other +719a5be4-c5b4-4d34-a268-334122cbf13e 1 \N Other +71a3add2-a82a-4d15-a08e-69637b0b23ac 1 \N Other +71a734df-8f1f-482e-8147-4d55f35a0fc6 1 \N Other +71aa6b4b-770f-4cf3-8ad3-5e715b17eef4 1 \N Other +71ad9f0f-c8a8-464c-b5da-b6a052f64ea6 1 \N Other +71af42aa-7df2-48d9-a685-fd6a9589c0d1 1 \N Other +71af5fbc-6650-4fe7-b25b-90665901b78d 1 James Other +71b10a25-cbfd-41bb-a9c9-979d884697ac 1 James Other +71b485d7-763a-4481-a872-adb54e16a73f 1 \N Other +71bd0da0-2e0c-4eb9-8607-7dc764d99c00 1 \N Other +71bd1ea7-41ca-4b97-acee-c65b02b0b620 1 James Other +71bef233-1c94-4a9f-9d4d-a00f7e9509bb 1 \N Other +71c99f01-4678-4995-81db-b27c06cda5a9 1 \N Other +71cacb0a-5a01-4628-8357-80bad451320f 1 \N Other +71cb2636-8383-4a8b-9cbc-bf387c4a9fad 1 James Other +71d382c3-cb8f-4cd5-90e3-3bc199a64a98 1 \N Other +71d50389-27f6-417e-ab05-4435192777bc 1 \N Other +71da5668-9830-4023-8011-963c182923f5 1 \N Other +71db1c78-d493-474a-8e0f-cd71a71c7c98 1 James Other +71dc72be-18fd-4caa-8e64-5dfca31c9e10 1 James Other +71de02b0-0e79-49dd-9482-562cf035de99 1 \N Other +71de2b2f-2667-4daf-a533-3d289280926a 1 \N Other +71dfd4a5-70e5-434e-a462-40ef76837faa 1 \N Other +71e3fb3a-4302-4e4f-945a-4f38f75ab26e 1 James Other +71e5cbc8-765a-471d-ad7d-1bde0d8bb589 1 \N Other +71e71623-763d-44ab-a9ca-fc14e7839094 1 \N Other +71e84f7f-8bf1-4a52-a4c6-2917c77e51ae 1 \N Other +71e887a2-b9c6-4be7-8b3f-196e7f084b77 1 \N Other +71f0b98d-222c-45a1-b627-df3cc5a5bf24 1 \N Other +71f2e571-9f11-4323-8c5c-6dc7dd5d428b 1 \N Other +71f97868-ae04-4897-bb1d-a071f0998f95 1 James Other +71f9ad74-c4bb-405e-b571-6a30f2d0f803 1 \N Other +71fb7aaf-7963-4533-be2a-89e2f278c4c6 1 \N Other +71fc572d-cc6a-49ad-9290-a0a87bcbb25a 1 \N Other +72067166-e757-4011-9027-a435e0105054 1 \N Other +721099cc-c5ce-4638-999f-30f3f3e12ccf 1 \N Other +72131559-a5f1-4ad2-8e5b-246c246da3e3 1 James Other +721f220f-1c19-4fc1-a842-f59793f72b97 1 \N Other +722168b6-5ea6-482a-96a9-71fa98df799d 1 \N Other +72257006-de16-45d9-beaa-ecbab310cc1a 1 \N Other +7228c602-62a6-4a8e-9899-b12316be05e5 1 \N Other +722b6282-4cb7-47d2-8f98-d764bccef5a9 1 \N Other +7231bde0-defc-4c83-832e-d97b1d09528b 1 \N Other +7233cebb-bab6-4bdc-9774-8d744cac2ec3 1 \N Other +723522b0-10f4-11e8-9157-fa163e8624cc 1 \N Other +72369a37-1957-46c4-abd1-3d3330bcd714 1 \N Other +72398889-eebd-463f-8844-d910646128b2 1 \N Other +724616cf-1409-49a6-b00d-04bdebc58c37 1 James Other +724885c4-dee5-45c8-8667-a0326b3000ac 1 \N Other +724a8310-d91d-4baf-8b5d-db6c773df327 1 \N Other +724ac444-caae-11e7-8ffe-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +7250364d-2f03-423a-b1e0-bc6aa6163e1a 1 James Other +7250e1d4-2e1e-406b-8d2f-fdd77bc8771b 1 \N Other +7251b7cc-3f94-47a9-8dd4-5888489b1e67 1 \N Other +7256eb10-cabb-46c0-904b-0ea573eb16b6 1 James Other +7258d3ad-2b3e-41ca-bdda-432ce3aee8a5 1 \N Other +725a6f45-a2be-41c9-845d-b5d3695dca94 1 \N Other +725e85fe-df20-4447-a4a1-8b41f867221d 1 \N Other +725fd067-4ca4-43ae-9bf5-020dcf44f9db 1 \N Other +726468b5-e9ff-46ac-996c-1e147604b0c2 1 \N Other +726554c8-0509-42f0-8ccc-c87990be160a 1 \N Other +7269c501-3052-4ae8-a512-bfa5f3a019be 1 James Other +726dbe7b-df99-4a15-ac69-526218f5ba72 1 \N Other +7272928e-5639-49b8-aa1c-938c8dadd3a2 1 James Other +72770b12-c3ad-43c5-a639-60a7834cba94 1 James Other +727944a3-098f-473c-b0d4-0c6efc49017b 1 \N Other +7279dd08-9e75-4e4f-b5e9-8ad6b177e1e2 1 \N Other +727e10b9-7a74-48f4-af7d-42685e0da07d 1 \N Other +7280fbdc-fae5-4e50-ae0a-08153f9614c1 1 \N Other +72813e26-5eb5-43e9-b5bc-b5d3b7992901 1 \N Other +72843ebb-033e-4263-b261-cbb773cf41e4 1 \N Other +7284d1b2-e4e4-4bf2-b6b3-58e6276ffe82 1 \N Other +7287d9ff-56af-4838-9272-7c0cdf94a67c 1 \N Other +729724d4-5ad4-467f-957c-085f63966985 1 \N Other +7298eedb-efe5-49bb-a839-94539fa143e6 1 \N Other +729c362f-3429-47b7-8b4f-f3a49b68affe 1 \N Other +729dac6f-8c4f-417c-83da-edcbc41558ee 1 \N Other +729f5c5a-9d4a-4bc1-9a4a-083045ff86bd 1 James Other +72a1495e-780b-4937-b4c9-71ad4c26d369 1 \N Other +72a29f41-e09d-4a6e-bd1b-6823f6a1ef24 1 James Other +72a371f9-79cf-476f-94b5-d5240c41557a 1 James Other +72a417f9-bac9-4ae4-b253-faad5cdb866d 1 \N Other +72a531c7-fa53-4428-a061-a7aa322e4b5f 1 \N Other +72a5a0ff-8c7e-4c98-819a-23b163a9b30b 1 \N Other +72a5bd11-6129-417b-9c8c-11a086e9d201 1 James Other +72a5f043-7420-46e7-bdc5-ecbe577f5e30 1 \N Other +72a6956a-1f56-4dbc-ac73-944de6e35eea 1 James Other +72a7929d-ff0d-4d30-80c0-5aad72425191 1 \N Other +72a897ad-d032-4adf-a682-63b8323f1627 1 \N Other +72af17f7-66ed-4dc9-998d-eb9308bc1bdd 1 \N Other +72b0b4fc-10f4-11e8-8632-fa163e8624cc 1 \N Other +72b279db-f345-4fd8-8a8b-d84e2a37f0b3 1 \N Other +72b4694a-d515-4a87-a129-6e912b7478ee 1 \N Other +72b58110-6cf6-41ec-ba5d-e4258ffeac7e 1 James Other +72b80c19-587f-4525-82c7-ea2f3b8ad0d7 1 \N Other +72b8248c-2bd5-4212-a576-f82ea3ce6cd4 1 James Other +72bc56ed-aeba-4080-ae70-8d83a83a4b04 1 James Other +72bc89ff-7d08-4f3d-a820-b615ca57badd 1 \N Other +72bf9801-013b-416a-9b45-9ce4bc9b07a3 1 \N Other +72c4f1db-42eb-4952-84b0-3b28694182eb 1 James Other +72ca5f39-93a2-4e02-a4fd-4c6cd5de24bd 1 \N Other +72ca6727-feea-4f2b-bb3d-314be56a51ab 1 \N Other +72cf8b6f-f8db-4049-9d92-eb00bd0f9a1d 1 \N Other +72d283a3-18a0-4641-b465-6886859d1a7b 1 \N Other +72d30ac6-b423-4286-bb5b-23af48d72392 1 James Other +72d57899-e748-4668-aec4-e662d253cdc5 1 \N Other +72d6c976-6227-4b31-aef7-c0e7a556cc45 1 \N Other +72d8ffdc-bcc8-4f22-bb6c-8ce8c0cb8609 1 \N Other +72db0d35-943c-44a0-a535-b949ea15d015 1 \N Other +72dc4c23-d4d5-4e13-8ec7-c25994fb46e2 1 \N Other +72dc6985-dde7-49ea-8d29-72cfa3d3f52a 1 \N Other +72df1079-40c9-4b69-9caf-da2a7588c62f 1 James Other +72e3436f-3585-4b0e-864f-cb0ded9f49fb 1 \N Other +72e57ff2-fc90-45c6-aa4e-8ddde5edfcae 1 James Other +72e5da1a-02cb-4b94-bc83-3042dd32577f 1 \N Other +72e777ed-9942-4544-b617-43f85b8532ca 1 \N Other +72ebcc11-276a-4cd3-a0db-1173726d23ea 1 \N Other +72ec7e0f-2ef7-4f66-811f-ac26a501ce9c 1 \N Other +72ed220c-3022-4c95-b588-5307466fa796 1 \N Other +72ed42e2-a505-4ada-86c3-0e4dca566eaf 1 \N Other +72ee9f0e-818b-40a5-84e2-051daa7235ad 1 \N Other +72f2a880-2b1c-42a7-8f45-6b660bffb107 1 \N Other +72fafeda-bd32-4fce-8324-d1b19913250b 1 \N Other +72fccf0a-52ee-49a8-a16d-c4081fc5c67e 1 \N Other +73059081-6dfe-4ead-a199-3a97742f00ba 1 \N Other +73085b9c-b842-4517-8ed5-fbe46c673021 1 \N Other +730ca358-efc8-40a1-8663-3478e282c469 1 James Other +7316b85f-2223-4efc-b70a-5a42fb91ef2d 1 \N Other +731899f1-9f15-4da1-be85-96f22b797b2c 1 \N Other +731ee9e4-ae98-4d36-b7c8-01aae05382bb 1 \N Other +731fa8fb-3a48-43b9-b438-8bb0924e0d1a 1 James Other +73226367-dc00-42c7-8c86-969c5bcad45c 1 James Other +732484ee-1618-11e8-97e4-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +7325ce36-bd75-4389-bd08-695323aa233b 1 \N Other +7326e0c6-d51b-44b8-9a5d-068da479aeaf 1 James Other +732c5e93-33f9-424e-bfb6-c45133419f93 1 \N Other +732ddaa9-b119-4158-bd5b-dfa40167e510 1 \N Other +732fb402-9c49-11e7-b8fd-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +73334a4b-dc13-41a8-841a-b6cd49db3ab8 1 James Other +7335ac16-2c60-4562-a0cd-61d779be393a 1 \N Other +73363aea-3abb-4174-8e38-3ea30e4b26c4 1 James Other +7336dd70-3e7f-4ab6-8838-610031626b1c 1 James Other +7336e6ca-83e5-44c9-b53f-2d40f7ccd54d 1 \N Other +73384e0f-1c54-40d4-9cf7-2665a7e8434f 1 \N Other +733b12a4-9672-427f-b01b-68bdc2733f1a 1 James Other +733fbbf8-3998-419e-b96a-4f8492d9ccc1 1 \N Other +7340c41d-100b-4a65-83aa-f6ec03aa9997 1 James Other +73463444-3971-4ab7-963e-847a29541888 1 \N Other +7347f354-51d6-47dc-a90a-ea052cff356e 1 \N Other +734b332f-84a0-45dc-bfee-5efea5f5d059 1 \N Other +7353364b-7055-4f2d-9055-b05b7febcb2f 1 \N Other +7353fd72-e2fc-4495-8a2c-3b1cafedeed6 1 \N Other +7354e37b-286f-4072-a85e-25328af7160c 1 \N Other +735565b8-3eb1-4ef7-8fed-1176cef17733 1 James Other +7358a654-4575-4e2d-a957-5483a3fd2f4c 1 \N Other +73597b19-2dfc-4016-a63f-25cb486c30cc 1 James Other +7359f304-9031-4a18-a83a-ebe20285c9d7 1 \N Other +735d9164-2d97-4816-9a45-9fa8e6448639 1 \N Other +735dd27a-3ae8-44f3-be44-54cb7aa08577 1 James Other +73601561-2ca9-4ff7-81bd-e7a251495519 1 \N Other +7360204a-4daa-41a2-973f-fb2e05034412 1 \N Other +736359b4-7440-49c0-9a48-8735bbd6d0d9 1 James Other +7365694f-db2b-4909-b92a-4d5cc61be4c0 1 \N Other +7366c437-b1eb-4c86-9982-63c4c7853c09 1 \N Other +7366ca8e-13fd-4e14-8eeb-0a2010f6f263 1 \N Other +73678a8f-64c1-4752-a88b-b58c54b78095 1 \N Other +73702f18-d24f-4d7f-9058-00e53c548f3f 1 \N Other +73720283-e795-4a2a-8af6-7694351d65ee 1 \N Other +73725185-c1cc-4ad2-b2f4-65e94638d805 1 \N Other +7372876c-a33f-4448-94df-57298d19e337 1 \N Other +7379de6e-dd45-4cc6-a9a7-f758af499553 1 \N Other +737b8559-44a9-40b6-a677-b883ca464903 1 \N Other +7380f509-3d2b-4e8c-9e65-4b6cfc7e7bf4 1 \N Other +738289b6-c4b9-4f42-853f-68b861204710 1 \N Other +7383b469-2df7-49b0-872e-15f5c8f33a7a 1 James Other +7383c5ab-eaf9-49da-883d-15127ef41a9a 1 \N Other +738573f6-557a-496e-b840-33bbaeda68bf 1 \N Other +7385b06c-e843-4a3d-b31f-5ed6ace247e2 1 \N Other +7386c7d4-1c45-4140-a311-6ef2f2ea9ed9 1 \N Other +73894b05-dcb9-4700-b0cb-76b52d9932ed 1 \N Other +738ef49a-1ae7-48d6-9b2a-211fb95bc9c9 1 \N Other +739132c7-d424-480d-ae86-e9cb94a69eea 1 \N Other +73916f7f-2a43-484f-9732-47a3384c6c1d 1 \N Other +739245fe-339d-486e-a021-3371177dcb82 1 \N Other +7393050a-95b8-4e7d-8125-8b4d13f316b0 1 \N Other +7396b5aa-b696-4124-ad27-ec2ba0cd9bca 1 \N Other +73972a45-95a6-4301-9d06-1f75bd1ce7bb 1 \N Other +73997012-a375-11e7-ba98-fa163e8624cc 257f6774-64eb-11e7-954b-fa163e4dd901 Other Other +7399f748-e915-455a-b527-5226c387b45a 1 \N Other +739ac021-416a-4fed-a4f1-c71a9625aabb 1 \N Other +739ad08d-1959-42e3-8e10-1347fc59e754 1 \N Other +739be383-2bbe-403c-86c4-cd2d89a58d7d 1 James Other +739d64b3-2d59-4a76-9872-0d03cee37541 1 James Other +739f32c0-d6fc-41aa-b15b-b5ea68235f0d 1 James Other +73a7708c-fc74-4354-ab14-6ad7f007cc44 1 \N Other +73a8a556-48b8-4704-9b97-cc1397e710b8 1 \N Other +73aefade-59cb-42d3-9f9d-1789d71eff71 1 \N Other +73af229f-118d-416a-9389-49faba188858 1 James Other +73b26870-19d7-42ee-b45a-7d65f9a37c0e 1 \N Other +73b6a676-c276-488b-942f-17638c15e812 1 James Other +73b6a7bc-966e-4afb-a269-06c6cd68e4b4 1 \N Other +73b8777a-275e-487f-a195-c0196aefd932 1 \N Other +73b946a9-5794-4a0c-9864-c3786df0aaa3 1 \N Other +73bd8d8c-0b1f-11e8-8397-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +73be17f5-7eaa-4a56-ab4a-690a52bdbd80 1 \N Other +73c1abda-1349-40df-befb-a153d24f3268 1 \N Other +73c3e940-793f-4980-9b18-879eeab0172f 1 \N Other +73c495b7-2109-43b3-a3d6-208a0411ff5c 1 James Other +73d73c35-5aa0-426e-9ebb-e06139b60f69 1 \N Other +73dc7fa5-335d-4d94-9080-deaa18ae698b 1 \N Other +73dd771e-e0a9-11e7-9f2d-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +73dfc948-aa3d-44ba-a3f5-af21aa31560e 1 \N Other +73e139d2-759a-414a-a7bc-60ef0b068d81 1 James Other +73ed7203-5ef6-460a-85f4-f682e8af0686 1 James Other +73eef8cd-2aeb-41d9-a720-52245dad9601 1 James Other +73ef79e2-aa46-40aa-8106-4a9552245317 1 \N Other +73efc92e-0823-42cf-a413-a9abb23bd9ae 1 James Other +73f67546-fbef-11e7-ab06-fa163e8624cc 1bad3dee-1440-11e7-b97d-fa163e4dd901 \N Other +73f87f2d-9515-46f5-b62a-a764eda94428 1 \N Other +73fe1439-01f5-4f63-9e66-a23b37a86ca5 1 James Other +73fe2e3d-3c94-4a45-9de8-407bc0384235 1 \N Other +73fe425e-1b96-469d-b46a-0fcfb91deb68 1 \N Other +73fef125-4aac-43cf-a330-278fdd2ef038 1 \N Other +74057928-88db-4690-add2-2e3a7692f693 1 \N Other +7405d3ec-5f56-4df2-92bd-6aeb8d0335fc 1 \N Other +74065818-6d0c-44f7-81e1-f62bcd4b38a2 1 James Other +74132808-fb1f-44e6-8675-e0225b9415f5 1 \N Other +74162444-8e62-4183-b29c-99ddbf984827 1 \N Other +74172733-fffe-4560-854f-6751f246f0ee 1 \N Other +7417d4c0-c082-4ddf-a95e-8159b36ce3b6 1 \N Other +7418dcb0-bda1-4f23-9108-d768d4b3f80f 1 James Other +7419454f-8855-4eab-b500-9df987682034 1 James Other +741b3769-35ca-4418-809e-08ed415cf010 1 \N Other +741dad40-eb27-458a-bd24-384ae6836dbe 1 \N Other +741ec620-25c9-42e3-aade-664c25842b7c 1 \N Other +74218545-d127-4a38-8aae-66803b4cd0ba 1 \N Other +742401d2-c09a-4b55-8936-27a964608902 1 James Other +74250f53-4a84-44a7-b172-be658f08ab46 1 \N Other +742c0dce-af27-11e7-b74a-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +742cbf03-b193-47d2-81a8-3466a96deb6d 1 James Other +742d18e3-287a-4dbe-a995-a264540f5fc2 1 James Other +742f0924-cab7-4ec2-83e6-909f0c948d78 1 \N Other +74306ac6-1cc2-4ae5-99b0-35fcdc56ef5a 1 \N Other +74315e56-1376-45c5-90b2-67c5677098f8 1 James Other +743316ac-bdfa-4b30-b511-9e95ea3f4171 1 \N Other +7433f317-8585-478c-968f-64a8a972644c 1 \N Other +743492c6-4797-4ec0-bdd7-2a1b5f58cc41 1 James Other +74379803-4ca4-43ec-bb9a-4d9b244c1ee5 1 \N Other +743fb4f1-28c3-4cc1-8cd3-7dbdcfad4379 1 James Other +7440a719-9e17-4b5b-ad34-f6227fb07631 1 \N Other +744264f6-538f-43f0-bca3-0780f157e44a 1 \N Other +7443b7bd-a1e8-480d-97c0-b93b19384bf6 1 \N Other +744944c4-bb05-4ceb-946f-a9e0458f23b1 1 \N Other +744f229f-e43b-4135-8383-ed900b549bd5 1 James Other +744f22c4-4e03-4854-8df1-d15003913d7a 1 James Other +74577dff-9320-4a04-9f7c-9363136d238c 1 \N Other +7458a489-f7cb-4549-93ab-3a9445bdc457 1 James Other +745ae40f-5bf2-41a0-bc74-4d73b1c55a35 1 \N Other +745befcc-a677-403a-8d55-adc8ed7de88d 1 James Other +745d3693-ca2a-4ae7-8c58-8b5255f6023a 1 \N Other +745ebd50-0ce0-456e-acd5-36f94536e53f 1 \N Other +74610b62-6fe3-430f-a9d5-e380f08a88c7 1 \N Other +74666ef8-0614-4ca4-acd7-6a34491f3363 1 \N Other +746ce901-a5eb-4a08-8e59-9238bdaf136b 1 \N Other +74704494-477c-408b-8dc3-45c67598eab4 1 \N Other +74715dd6-3cab-11e8-bd2e-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +7471edd3-a979-4459-ab93-1fb0881ab409 1 James Other +74728b4c-444d-460d-a724-7cffe395da05 1 \N Other +74732ba6-98c6-4a7b-aea1-40658778d8c9 1 \N Other +747438d5-cbe7-467b-8b3c-bd456276ae50 1 \N Other +7477ce71-7c9e-4deb-9cbd-a46e7307c090 1 \N Other +747868a6-168c-4937-9d4b-8c14bfa82829 1 \N Other +74788077-b4da-4418-a58f-83b4d2671d6a 1 James Other +747acaf3-0fa7-4a05-9988-0ff8fa4916b1 1 \N Other +747acee5-a661-4cb3-a5f7-fbd974ab8581 1 \N Other +747cc59a-1794-11e8-a2c8-fa163e8624cc 1 \N Other +74817e72-2714-45fd-8855-a898d3ffa850 1 \N Other +74826e60-23d3-4e0f-9061-d46610df0b65 1 \N Other +74831c4b-a064-44ae-ad44-9d3c80546b95 1 James Other +74834c94-2c48-441a-a960-c5d179bbd6d5 1 James Other +7483ed46-d5d1-42ab-aaf5-282eb412a6d2 1 \N Other +7484db59-5898-40ac-b5b2-f5018d52c57e 1 \N Other +7485455e-8d1b-436f-8e28-df7756c0d5bc 1 \N Other +7489b327-68ab-4898-8b45-b20128ffcf90 1 James Other +748a1676-25ae-42b0-9ed0-81747239ec54 1 \N Other +748a63a5-c895-41ca-8365-b2ddae6462f0 1 \N Other +748aab2a-4273-48e8-a029-608d94e73617 1 \N Other +748b9c99-b836-4141-b171-c7def7ddb581 1 \N Other +7490807f-f351-4827-85fa-49c2c0cae86b 1 \N Other +7493ad80-0ac3-49e6-949e-bcbdbee2a88f 1 \N Other +74948319-6dcb-4a7d-acf7-6e98bbb3cf33 1 \N Other +749ad5b3-f2fe-479e-a1c9-5bf07ccdade4 1 James Other +749d17ce-6c02-4d6a-9e03-45ad6b59fd55 1 \N Other +749e4546-d69e-465f-a0c1-8bb3326adfc1 1 \N Other +74a1fa55-44c3-4134-aee5-0513ccc70666 1 \N Other +74a22881-f36c-4279-aa3f-a2fbcd15532c 1 \N Other +74a2a650-d238-4f32-9cec-42a7df8b91df 1 \N Other +74a34be2-e860-4553-8ce0-40b2a4ac9c20 1 \N Other +74a83c20-1794-11e8-b891-fa163e8624cc 1 \N Other +74aa99fe-fcea-4dfe-805d-d1e06d65545f 1 James Other +74b0fbfe-dca3-4c01-9902-9ed4652cc222 1 \N Other +74b1b046-6d2c-48cd-841f-737d226e9adf 1 James Other +74b700ae-cb4f-4316-83e3-0c952ae721a5 1 \N Other +74b7ca05-db91-4599-ad8f-5e8addde0b25 1 \N Other +74b8e68e-0103-4951-8532-0fd9b57fa570 1 \N Other +74c9360f-1fe5-458f-b027-e1a069e32d8d 1 \N Other +74cdd7de-5484-4eb7-980c-c4040a1740bd 1 \N Other +74cde966-0462-463d-addc-bb14eb65736d 1 James Other +74ce2528-14a0-42ea-85b6-bc6d694a1f76 1 \N Other +74ce64fc-ae6b-48be-b210-0002b893ab28 1 \N Other +74d28a8f-69e1-4e7c-a6e7-1b1b5496d848 1 James Other +74d28c72-58d0-4e8c-99df-98e47205ebac 1 \N Other +74d544c0-4704-4f37-b573-ffdb149c9142 1 \N Other +74d82bba-8728-44bd-858d-a52323200dcd 1 James Other +74dd9fdc-9cba-44a7-92e4-4141bf8e075f 1 \N Other +74df30e1-ace3-476e-ab28-676856ef08e9 1 James Other +74e16dcc-d1f3-4ec4-b273-f22d09d4c63c 1 James Other +74e4d30f-9ea7-425b-b26b-2ae794c6245a 1 James Other +74e7778f-6d44-4e55-8d0c-8dc0194ad354 1 \N Other +74e7aacd-655f-431b-a27a-56069cb03525 1 \N Other +74e85130-74f3-4328-a4dc-0fb19f8acda7 1 \N Other +74e8c9b9-3f61-43ee-a495-6d88cff1d0d6 1 James Other +74e99da7-006a-462b-a91a-74075bb9060e 1 \N Other +74ed614c-7393-446a-ac15-4bdce8696ad6 1 \N Other +74edc60c-250a-4e4c-9102-2706a794af88 1 \N Other +74efc038-c069-42cc-b105-38ab3701b3c0 1 \N Other +74f07505-408d-4b36-9f75-c4ac5533bfee 1 \N Other +74f11cdd-89dd-40e5-8cb9-7af55341e573 1 \N Other +74f1e0b2-2acc-412a-858d-8dfd7834db2f 1 James Other +74f3f01f-843d-4d59-92cf-a398523ee0e3 1 \N Other +7501338e-6e0e-44ce-9463-e56ab1538bda 1 James Other +750422d7-8119-43a2-be71-72f9392afd65 1 \N Other +7506babf-fb98-4fda-83b9-e4f267655514 1 James Other +75074406-8fc9-432a-88eb-1ad604d04358 1 James Other +750abf3b-bebf-4871-bed5-4c9181b90259 1 James Other +750ce4e4-ce31-4497-aa03-118fb3b12795 1 \N Other +75148322-1d7d-4c1a-bdf4-319bfbf34f08 1 \N Other +75175703-42ec-4929-b510-400bf111a372 1 \N Other +75193545-7d0e-40fa-a18c-5437c0238ba1 1 \N Other +751b0b21-2643-4df2-bd52-7ddca8bd42c4 1 \N Other +751cd3eb-d481-44a3-a36b-5ebe116fb720 1 \N Other +7520e3be-60b5-46e1-ab4e-8f09717d0e46 1 \N Other +75210d7c-122a-11e8-8082-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +7524ea77-4bb3-4bb9-98e5-f9262a06b22d 1 \N Other +752a59b0-ad51-422f-b77a-04d6581223f3 1 \N Other +752ca87d-8557-47bb-8ca6-200c7d95fc58 1 \N Other +752e907c-9ae6-4907-860c-ea9b1ef64f50 1 \N Other +75312805-3701-4d7e-9116-6b84870d7401 1 James Other +75328eef-70ca-4550-8ddb-6cc1f1493507 1 James Other +7536df49-a429-44fc-b696-bc8ab7e9379d 1 \N Other +7538a5f6-72e0-463d-a12f-dc9499db3173 1 \N Other +75396dee-5528-4fa2-b1a5-b04d857ef5c7 1 \N Other +753b8a2a-17c7-4bd7-b868-9e347a99f0a8 1 \N Other +753f0a05-aa1f-4357-b12d-d32bb5688791 1 \N Other +753f3cb8-bc83-463a-8959-74d7a5b34959 1 \N Other +75435d27-e738-49f1-816c-fe2a31ee071a 1 James Other +7544f81c-f45b-4977-bc18-d85ed6dcfb44 1 James Other +754806d9-14da-4b0d-b5b3-aeb841b3559a 1 \N Other +754a12f4-1e96-4bd4-98bc-99c7d3833d3c 1 \N Other +7552376d-cccc-443d-bfaf-0870a38a5fcd 1 \N Other +75526ebb-1330-4689-a0c0-1b0fecd1bebb 1 James Other +7557829e-a0bb-42c1-89b4-64f729298a6e 1 \N Other +7559c9ac-06dc-486d-8ff1-0ea151e5ff3d 1 James Other +755a949a-366b-4bba-93ed-4072478954be 1 \N Other +755c5d99-8aa5-4199-b77c-17e7856eba8a 1 \N Other +7560f0dd-9108-4066-a30e-1b76a27dccc0 1 \N Other +75610ef0-d0f1-4c4f-9180-9031cbaba13d 1 \N Other +75631892-fcd7-48f8-940a-7e8f97613dd0 1 \N Other +7566a9d7-0f55-4b6c-b000-0727a8f01fec 1 \N Other +7566bacc-98bb-423b-a637-23d85580865f 1 \N Other +75689846-9a76-4962-b972-f66825ef22be 1 \N Other +756c7313-8499-40fe-b04d-5edce761322c 1 James Other +756d6f5e-0ae5-4e60-82b7-778885aaf670 1 James Other +75700331-2837-4947-9212-30665964a708 1 \N Other +7571dc3b-2ef7-4df7-a2d6-fd4d793b78e1 1 \N Other +7573fac2-9af5-4391-8694-76f6fd277351 1 \N Other +75750b6c-95a0-4074-8349-cabb9e8c18d4 1 \N Other +75764134-b1ad-45ef-b489-6b948e6041a8 1 \N Other +75765c6d-b68d-4702-9bd5-ab30a2e021ef 1 \N Other +757960ba-172e-4038-a47a-36506d078eb8 1 James Other +7579c95a-f99a-496c-86f0-89e770980b3a 1 James Other +75805ef8-47af-4cfb-a4c2-6d5f48e2f130 1 \N Other +7586c0de-b73f-4bd9-a359-8e875486e8ff 1 \N Other +758a8ff3-bbc8-412e-b3d9-58357ccce3e4 1 \N Other +758db406-17aa-11e8-a4ca-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +758ffc0b-52e8-4583-b5d6-1eaccd6b968f 1 \N Other +75920242-272e-4e08-ace2-09c05239f7b4 1 \N Other +759861f6-8d48-4dc5-81f5-349ee2e9fa32 1 James Other +759f74c9-3026-4340-b87d-4e45160813f9 1 \N Other +75a75ac0-a923-4831-8761-fd85657fb5c3 1 \N Other +75a9a0ec-d9b6-4d60-be52-60ef9a5be3ab 1 \N Other +75a9a8cf-5562-4280-a700-201cd67e4603 1 James Other +75b109fb-8c1e-4e0a-8aa3-4f0dff32217e 1 James Other +75b13b19-5f93-4c57-8cc2-de17091d58ed 1 \N Other +75b2e553-2ab6-4548-8e15-42f572fce829 1 \N Other +75b5e3d2-2859-4264-a51c-d0c18176b248 1 \N Other +75b5e562-f5da-46ec-a19e-a5b55e80133a 1 James Other +75b7424f-a68e-45cb-b54c-8da87e0b8a90 1 \N Other +75b8feb9-75d4-4313-b4f3-8759a9d668c3 1 \N Other +75b9ab18-ebd8-49ea-a98b-0a27fcb2e2a1 1 James Other +75ba4dbc-c444-4c57-8e03-0597b35c73fc 1 \N Other +75babe8a-30be-41c9-b819-5a1ae70509b9 1 James Other +75bae2af-886e-464e-a43b-fe7e26577b5e 1 \N Other +75bd5db5-7731-4f80-a18e-7ee981455fda 1 James Other +75bef217-ef13-4ed7-b8d4-8e41c007849e 1 \N Other +75c10a32-8814-4ee5-aa8f-4c72f6635f84 1 \N Other +75c49ddf-53be-4c47-ae35-105d8ca18ace 1 \N Other +75caf6b4-5acf-437a-bca1-89877c264f2e 1 \N Other +75cc5dcb-093f-4593-8a7c-ac9b7ae1a069 1 \N Other +75cd50dc-a629-49a7-a3b9-97deab5b71e4 1 \N Other +75d006b0-7dea-45a0-b63b-01bc2577da60 1 \N Other +75d250c7-081d-4857-b94f-c71f223349cf 1 \N Other +75d27ad8-a711-430c-b656-222ee1ed9728 1 James Other +75d2e989-b35e-41ed-8e0e-33627034c16f 1 \N Other +75d605d3-454d-4ea0-83d9-482b0f8a4859 1 \N Other +75db5e48-97db-4d7b-805b-663f8ae872d2 1 James Other +75de20bb-e003-4fa2-9a62-c92df13633db 1 \N Other +75e4ec78-e660-47f1-85c9-4bed8de98ed1 1 James Other +75e6c36e-76f1-44e6-a07f-7ecc3f73c24a 1 James Other +75e785b9-3131-4c23-a216-8319a2275305 1 James Other +75e882e9-7d89-4783-87e4-87650f1fe3da 1 James Other +75ea2261-bf07-41a0-ae46-ebc0aebd61ca 1 James Other +75eb58a5-fd14-4fb6-a610-44769835d58b 1 \N Other +75ed7641-6a8b-4b1d-89d1-08a0fe5a945a 1 \N Other +75ee58a1-944f-4b41-8712-a4bf471d6f69 1 James Other +75f29430-b1f3-4ddb-b196-d3b7099ff513 1 James Other +75f3f0b0-d2e2-487f-969b-1c8ccf5f2bb0 1 \N Other +75f8de28-d775-4a60-858a-45c13bfd1ebf 1 \N Other +75f96aae-6952-43dc-b454-6a11c4a35cf2 1 \N Other +75fa9a4c-7bbb-4bc0-a4c7-0fa7287dfdb1 1 \N Other +75ffe86f-a0d1-448d-9f42-5c9142bbdbf5 1 James Other +7604d5c7-e20a-420e-a970-b94faf74ef1d 1 \N Other +7606409f-8d7c-4afc-9cc9-b889c8b7c147 1 \N Other +760759bd-a69b-498f-ba17-c0500e81de15 1 \N Other +7608f697-3456-4b00-b98f-0d4941aab4c3 1 \N Other +760d57ea-9d76-47d1-8e39-f79dabc17bb9 1 \N Other +760fa895-9c7d-451e-8a8e-5337ed3fb2d5 1 \N Other +761035fd-2193-46d8-958d-262f9d1e7760 1 James Other +7610445c-390d-417a-97b5-4d1c815033d7 1 James Other +76129d35-af89-4820-a371-43c2a17d34fa 1 James Other +7612db09-9548-4b07-8a65-e5bc5fc5cb9d 1 \N Other +761430e3-b94f-4ec0-b3de-7e7353f77774 1 James Other +76163805-36ce-4c27-a16e-424dd7fe0ad3 1 \N Other +7618bc6c-10ea-4e62-b209-0eaf5a35823d 1 \N Other +761a24a3-68fe-408d-aaf1-ee360aaa98c3 1 \N Other +761ee496-659f-4556-a8d1-042726e4f326 1 \N Other +7627d627-59d2-43b6-93e3-26ac39a92269 1 \N Other +762912b0-164a-4d06-a3e5-a0586d13c3f8 1 \N Other +762a994b-ae8f-44ed-aea7-5acb911e31a6 1 \N Other +762b2fc2-4f56-4cc9-af6a-a093a3735417 1 \N Other +762d851e-0508-4631-a498-975b254e8378 1 \N Other +762ffd8e-0081-4769-9243-a4c000474997 1 James Other +76319273-42e1-4814-ac71-6d5fcc8f77f9 1 James Other +763320c6-0ffb-46a1-b208-d28f8ca331a0 1 \N Other +76375543-f89f-49c1-ad83-549de601ba0f 1 \N Other +763dc6fc-5c6d-48b2-8e2b-032ddb81cff9 1 \N Other +763e0565-cfe3-4b6a-8b43-9f6df7150a51 1 \N Other +763e94d7-b320-4a32-82df-139916fa7639 1 \N Other +763f9404-dce8-4fac-9e6e-de2379436e14 1 \N Other +76410048-115f-11e8-9cc0-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +7644bcbe-89ff-4983-abbd-6240fc1e2455 1 James Other +7644bf5f-3097-4cf9-be35-09f44d611a9a 1 \N Other +7647d9e1-4696-4be9-aa7d-b49c4b2df279 1 \N Other +7649b75c-10c3-4d0f-bbdc-e956e5270a41 1 \N Other +7649fbbb-1616-4fe3-9c6b-a5d37f64cc3c 1 \N Other +764c32aa-c6fb-4cda-8279-de2bbcb676a5 1 \N Other +765021dc-6853-454b-a73f-294fa62774ed 1 \N Other +765337af-fb6e-4674-99c5-2d139d45ee37 1 James Other +7653933b-4b89-4a6a-8f3e-7d3f76e82d1f 1 James Other +765580cf-7936-4352-a99f-c85782912345 1 James Other +765b395a-1782-46c4-a1a4-9842e45f1517 1 \N Other +765cd3e8-3e3a-413a-80d2-004a5b2710bf 1 \N Other +765e241f-6cb4-4f31-bf00-128cb1095139 1 \N Other +765e74a7-4038-4692-b21b-2e9e74949bd1 1 \N Other +7667a280-14fb-11e8-a15c-fa163e8624cc 1 \N Other +766f721a-c0bf-495b-ad14-c9e4cbd2fcd8 1 James Other +76713a62-3c4d-4777-8edc-9b5a9ecf914f 1 James Other +767444b5-9f1c-4c4d-8b42-4e0fed82c97f 1 James Other +76768ed1-ded4-4724-b7ad-58be8976d0f8 1 \N Other +7676a6f1-a5ab-4eb9-ac03-57f5ba953dd9 1 \N Other +767936b2-0ffb-11e8-9274-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +767ae6cf-03a7-4d26-9585-ba8612271f9a 1 \N Other +767eb9fe-fcfd-11e7-98ee-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 James Other +76802b7b-08f7-4e36-8dca-3090ea82811e 1 \N Other +7681130b-9190-4027-85e4-3cfb8a9745ad 1 James Other +7683fd0e-8576-422f-bbb5-b40da29f4ecb 1 \N Other +768ba4a0-864e-46dc-bf59-df2bb8eeceac 1 \N Other +768e193c-9348-49eb-97af-0cce7a38cb0e 1 \N Other +768e254e-aafd-45b1-8499-18751ac1c29c 1 \N Other +769310e1-e768-4f96-b3cf-6ae60ea6ee6b 1 \N Other +7693e7fa-675f-49da-8bd2-301beaa2ef18 1 \N Other +7694803b-5b4d-419f-8997-5008e029f8f2 1 \N Other +769650a9-201f-4b97-b9ca-be4aa8b02b16 1 \N Other +769798be-00c5-47d6-a8ae-b7a531612235 1 \N Other +769afa35-1e97-4280-981e-43a97b9f6262 1 James Other +769bf42c-264d-4f53-8793-e03628c2cd9a 1 James Other +76a3125e-0e49-4285-9b19-24cac1280007 1 \N Other +76a478e7-c356-41a3-a176-639a5b30c202 1 \N Other +76a55388-1519-457f-b3f5-46824d2cb1ea 1 James Other +76aa954d-87f2-4935-9683-2f4bb7bacb09 1 James Other +76ab519d-e2bf-47b3-ace1-a8a363ad5f30 1 \N Other +76ab55de-9f08-4f6b-a28b-447cebd9c43b 1 \N Other +76b00e98-d6fc-4947-8357-25a565e5246d 1 \N Other +76b05a64-1d9f-11e8-9286-fa163e8624cc 1 \N Other +76b15c07-4a04-4b5b-84ef-8fdf1ced981c 1 \N Other +76b54073-84d1-4404-96f9-5910b400d647 1 James Other +76b773cc-dce0-424b-bfa2-ddb58feef0ec 1 \N Other +76b94d26-5ba0-4f5d-b110-8a31aaa9acfb 1 \N Other +76ba166c-601b-4768-a7a6-1f6e745feafa 1 James Other +76ba8d00-291d-4902-a6e6-f2ab7eb32fa5 1 James Other +76bc42ff-a86c-4de2-9b27-68393ab9248e 1 \N Other +76bde61b-2517-41be-aaef-139b7f590929 1 \N Other +76bf9455-b47a-407c-9023-56a491eacee1 1 James Other +76c239a3-1d31-4f41-9189-ca7b028a47e9 1 \N Other +76c29c22-90ba-4bca-abe6-b1f680159aa8 1 \N Other +76c57ad3-cca7-44b5-abe8-4d274fe23376 1 \N Other +76c57fa6-ca31-450b-94b1-ef455bf07065 1 Other Other +76c58229-29be-4bf9-b14f-d4c3fc72cd56 1 Other Other +76c591dc-704c-4b3b-bfd4-8fdc53e6508c 1 Other Other +76c5e02f-b16e-4d70-96c7-11228505cfe7 1 Other Other +76c6ac93-c937-4bab-96c3-d3e362839b1b 1 Other Other +76c6dae9-e97f-4411-aa36-6a50e06e8d5e 1 \N Other +76c6ee42-785f-4b35-ba23-828bc605b269 1 Other Other +76c7434b-fcc8-44dc-ac65-c98b8691ebcf 1 Other Other +76c77237-7747-40e5-835d-74b4687cafbf 1 Other Other +76c79d3b-884d-44df-be4c-190fdebd6eb7 1 James Other +76c7ef18-8a61-4ba2-b409-0d04bd45582a 1 Other Other +76c802a5-1492-4fb4-8507-174d2b537060 1 Other Other +76c82d0a-d252-49c4-8edb-e339f7c20223 1 Other Other +76c865d5-3564-4faa-adb6-0e5f01793e54 1 Other Other +76c87a24-6a7e-405d-9051-a05e25bcc035 1 Other Other +76c89d6c-6d14-479e-b6b0-d6d542f026fb 1 Other Other +76c8af8e-df48-425a-9347-e719f388d4dc 1 Other Other +76c8e1c5-ac22-42a5-afd0-6a2e651b9fb5 1 Other Other +76ca386d-8304-43a0-bbb9-dec05e00faf6 1 Other Other +76ca7cdc-e6ba-4080-9899-a4f6534893ad 1 Other Other +76ca8952-7c7d-4c57-b6e2-7f15a42c5ac2 1 Other Other +76cab17d-04f2-482b-85d8-5c105a6e77d3 1 Other Other +76cac149-615a-491b-a979-ff6e4142494c 1 Other Other +76caffbc-70bb-4148-bc6b-4e10046e7c59 1 Other Other +76cb6127-7e1b-4a9a-a652-4b645907050a 1 Other Other +76cb7563-3cab-4660-8c47-807b417ec004 1 Other Other +76cbc7d5-1f0e-4f7c-9915-66a3aa006ff0 1 Other Other +76cbdd2a-30e8-4856-b113-98a7d5116e87 1 Other Other +76cc61c4-056f-4e5e-90a1-b66445290381 1 Other Other +76ccc721-2490-4381-a2ee-1001beb2e27e 1 Other Other +76ccd1b0-5c51-42b9-8017-db574004bd5a 1 Other Other +76ccf4db-8eba-40dd-8412-ba1feff24737 1 Other Other +76cd9439-341f-45ce-91b3-a6e2f6e920e6 1 Other Other +76cda0df-4db0-4e79-a81b-83fb91215a45 1 Other Other +76ce286e-1d36-4e0f-aeb6-09a567afc49f 1 Other Other +76ce4f7e-f6a6-419d-ad59-412b906f7c2c 1 Other Other +76ceb426-e09c-4eb7-b1fb-205dd608de39 1 Other Other +76cebfc9-d8a4-4222-aa9c-0571118978b5 1 Other Other +76cef5d9-9ccd-4136-9c64-3be1a41eea9b 1 Other Other +76cf85da-c9fe-4d61-b375-42403ddcf8a2 1 Other Other +76cfe5e8-6924-4f7d-98ce-5e80d0950fbe 1 Other Other +76cff591-1ba6-483d-82a9-d811473f9f99 1 Other Other +76d02076-d1c2-4102-abc5-12189491d6b3 1 Other Other +76d0649c-5705-4656-bcde-a6a0deebc9ed 1 Other Other +76d09ba9-51cd-4923-8c67-3be7f2e55f46 1 Other Other +76d1526d-6f9d-4900-8480-e48f77ecf942 1 Other Other +76d1658a-f161-42a7-adac-bbcfef901cc1 1 Other Other +76d186dc-ba39-4e78-837f-70735f1df0f0 1 Other Other +76d1c423-af67-4344-83e5-8977b167dc67 1 Other Other +76d1c93e-e741-4933-b0d8-6f28cf5ab09e 1 Other Other +76d231e9-9c58-4097-9d78-bff3c24532ff 1 Other Other +76d24897-bfe0-46da-bc79-e80b95c90e5a 1 Other Other +76d2696f-817c-4359-a3c5-e2ebbb27b57e 1 Other Other +76d2c504-36cd-45b3-8702-07b4f6840628 1 Other Other +76d30c2b-ea5f-4bc7-9d66-ef39acfe59dc 1 Other Other +76d33bff-f68a-4a8f-ad42-e88ace76c83c 1 Other Other +76d3d8d4-cba0-4909-9175-103ed82bf57e 1 Other Other +76d43a3d-5349-4a9c-bc20-bb9f34c1e349 1 Other Other +76d47ec1-b859-446f-bf42-43695351d2d9 1 \N Other +76d4f9fd-3ee7-4769-abf9-cd07cb61bf05 1 Other Other +76d517de-ef04-42ba-9aa8-3ac594644c4b 1 Other Other +76d5190c-5984-40a7-92d4-24a2582d9793 1 Other Other +76d552c3-4e68-4326-8007-16942d3d4f23 1 Other Other +76d59f5e-b86d-48dd-a6ee-84657cbd33bf 1 Other Other +76d5c8c9-2bd7-4ad7-b0cd-b81510deee95 1 Other Other +76d5cd40-bc1d-4d59-b0ea-b15d1984339c 1 Other Other +76d5d9e7-1737-4988-bae9-b1f95b0f4e9e 1 Other Other +76d5f5bf-6a7a-4659-a944-f69316ece1bc 1 Other Other +76d65de8-5369-4cea-b5b4-e1a36486878e 1 Other Other +76d6a05b-1e56-4dd2-a8da-646943303605 1 Other Other +76d6a4fe-ea0b-429d-974e-ccbceb31b22e 1 Other Other +76d6cc14-c02e-42f4-85d1-7e6f21e4d834 1 Other Other +76d71dee-b64d-4727-af9c-15b15037fcf7 1 Other Other +76d792f5-ff42-4fe1-92f2-2b2353985dcb 1 Other Other +76d7aafc-eadc-4bb7-a476-f09927823a02 1 Other Other +76d7b51d-eac7-4ff6-ba49-e5adaa5a9948 1 Other Other +76d7f966-8739-44f3-95b3-387d52e0d0fa 1 Other Other +76d82d07-0838-4bac-b0cc-02a15866e1e4 1 Other Other +76d82d3b-914d-4ce0-a244-8f63b2d672c0 1 Other Other +76d8368a-d39f-4e8c-8897-eb0370d59ea4 1 Other Other +76d841ea-1965-426f-8722-26634261820e 1 Other Other +76d85c14-f8d0-4346-ba0f-d7f91e3d6546 1 Other Other +76d886e6-0046-4c98-8d08-30955e4bba37 1 Other Other +76d8d0a1-7be0-469f-b889-2875735dd450 1 Other Other +76d8e5d0-1ddd-42c8-8f6e-a2ccfd49c595 1 Other Other +76d92a23-6d09-4da1-8098-a83e4c1c4361 1 Other Other +76d92d11-4ebe-4718-96a1-24025820a32b 1 Other Other +76d94e40-f911-4da6-a0d4-7b897720aa9f 1 Other Other +76d9563e-5b73-47fd-bda3-4c4e98f94d73 1 Other Other +76d9a7b4-f38e-438a-b103-6da8abe5c19c 1 Other Other +76d9cfb4-f665-4581-b8f8-853ab1950875 1 Other Other +76da4d6f-f8a5-4f48-9dc3-39ee4423e82f 1 Other Other +76dae8fe-7fc7-4838-9a38-3d684b7e340f 1 Other Other +76db0b7d-8bd8-4098-a830-b3862ed60b8e 1 Other Other +76db3614-146b-45a4-b11e-7235eccddcaf 1 Other Other +76db5e0e-1cd0-4749-ac67-ff359bef0b45 1 Other Other +76db7ba4-a0ba-4946-a2a5-353c4c9c4b73 1 Other Other +76dc71ba-bf8b-41e8-9e03-000f7f62a1df 1 Other Other +76dce3b9-fdf9-402c-a4d5-3f3aab242bb5 1 Other Other +76dcfca0-c3c0-4a83-9236-bfec32eb0a4e 1 Other Other +76dd09a6-362e-4aec-a5e0-d9bdb0bfba19 1 Other Other +76dd5779-4783-49b6-b35d-3b28d9cee5ee 1 Other Other +76dd6ffc-a636-45ee-b156-2c089d4a7686 1 Other Other +76dd7dbc-13b5-4494-aa9a-5273c5285afe 1 Other Other +76ddbae1-7f73-4de9-8f9b-37c76b8751d4 1 Other Other +76ddc014-a589-4afe-85f0-7d24843bbbd5 1 Other Other +76de075a-1fe6-445d-9bc9-5fc2890f9c1e 1 Other Other +76de0e64-8cf5-4b8e-b6f6-2785341e1d31 1 Other Other +76de404c-0a27-4459-a560-a9ff031a8a1a 1 Other Other +76de4c2e-9f5e-4767-8487-23cfa9600aee 1 Other Other +76de74d2-bf98-4d44-83ee-3b1a27188374 1 Other Other +76de876b-97f9-4deb-a9b7-61ab6c79958c 1 Other Other +76dea002-a6fb-44c4-bc19-8c6573a92943 1 Other Other +76deb083-8858-4867-ba0f-08fbd69dac5d 1 Other Other +76df0f81-29a7-4a65-bcba-2534e9f1a0a7 1 Other Other +76df45cf-24bd-47b8-a8c6-ac9facdede7e 1 Other Other +76dfc6bd-8f07-47a6-bb23-db3d68c534cf 1 Other Other +76dfc7ce-3177-45e7-b666-79c575a77c55 1 Other Other +76e010ee-c451-4c7c-9bc0-16cac1d0d63d 1 Other Other +76e02fdb-680d-4d54-b5c2-f5c364e543f5 1 Other Other +76e086cc-7469-462a-ac57-63d3af5f819e 1 Other Other +76e0943b-6915-444d-9751-18d0f6ebce10 1 Other Other +76e09e1b-f623-4628-87a2-df6f2aee59f2 1 Other Other +76e0acb1-9c85-40a4-9468-9dce825443a2 1 Other Other +76e0f88c-22f2-4e9a-bae2-1b897c7206b8 1 Other Other +76e115d1-9fc1-4acb-8c9a-7eec0266e2a9 1 Other Other +76e11cd2-b047-4a4b-9c12-ab9d9cabbebc 1 Other Other +76e15399-95d9-4f56-bf4f-e82942f592b4 1 Other Other +76e1777b-5900-4e14-87f4-445d30509b1c 1 Other Other +76e1c7c7-f489-44a9-8961-6068b4a6fafe 1 Other Other +76e1cdc5-18f5-49be-99e8-234c48405ca8 1 \N Other +76e239be-ab1d-44a0-8eab-00fe7b8c5038 1 Other Other +76e266e5-bf60-4040-a736-16d31829c61a 1 Other Other +76e2d5f7-c1b9-4866-833d-1f8d2bc62e7f 1 Other Other +76e2fcd2-3933-4c93-952d-dfee75dd3902 1 Other Other +76e2fdeb-8dc9-4230-9436-65c2dd36d45e 1 Other Other +76e31bef-274a-473a-aa41-fce922ce84ff 1 Other Other +76e32a84-6eae-45b9-b289-149b0f784c0e 1 Other Other +76e39dc5-f968-4195-af30-e2fa6fb4b049 1 Other Other +76e3ad54-6bb9-4102-8a18-19823a69cdc6 1 Other Other +76e3bc30-9537-46b2-a2a9-0dd1d43e723f 1 Other Other +76e4b55e-1120-405e-904a-ac9859486981 1 Other Other +76e4bd39-9fe7-44ee-8096-809c4c52680c 1 Other Other +76e4be4d-8413-4317-b09b-19a5d345f287 1 Other Other +76e4df88-3182-4804-9efe-b83a7146f3ae 1 Other Other +76e4f76b-3361-4bbb-849e-5eafeb092cab 1 Other Other +76e50d12-389c-4c56-8418-174a907f8088 1 Other Other +76e578dc-da02-4ad5-9278-4f96622b6c66 1 Other Other +76e597d8-d958-4498-b4af-0c04870f1a53 1 Other Other +76e5a6df-bdff-48af-872c-a337727d9126 1 Other Other +76e5b4f4-f771-4e59-aa21-7c9d82ca9731 1 Other Other +76e5b544-652e-43d0-8b20-c84c561ceac9 1 Other Other +76e5e87b-d4c3-4321-b4e2-43453352eba7 1 Other Other +76e655fe-f352-4b02-98a4-cb614834cbc3 1 Other Other +76e66fed-0eb5-44d8-a773-24431edd5208 1 Other Other +76e68325-637e-4b92-882d-28aa19bdf250 1 Other Other +76e68e9b-13ad-4253-88ea-f9c2890a05eb 1 Other Other +76e6c0ef-faf4-4d50-bd5e-17b68b3fbde7 1 Other Other +76e6c181-5d2f-4a91-9195-2ec928c328a3 1 Other Other +76e6e1d8-ccb3-4193-a1bc-88ec3bd69aa8 1 Other Other +76e716d2-12a9-472d-8081-e619db1e7edb 1 Other Other +76e72ccc-e13d-4132-8d80-64f8ae19b76f 1 Other Other +76e77e96-6932-4609-b88b-b7c79971d470 1 Other Other +76e79e25-1cef-4811-b884-f0933f96aabf 1 Other Other +76e80986-a1b5-4ae0-940a-ee808fe52106 1 Other Other +76e84405-5a7a-4358-be51-025699922f8c 1 Other Other +76e85355-93e1-4bf4-9937-5334b3711355 1 Other Other +76e86fe0-c36f-4620-8239-9335391436ab 1 James Other +76e87153-169a-4d70-a315-7c793d4a51b5 1 Other Other +76e891fd-ca03-45f8-95f1-2cbf98ef0bc5 1 Other Other +76e8a301-e37d-4190-9f70-d3681d64a0a0 1 Other Other +76e8b93c-a64d-486d-9f95-3056099ccf1a 1 Other Other +76e90a14-7162-40cd-9cf6-1c4407e9ec86 1 Other Other +76e927a7-731e-4078-8bca-1a185fb2298c 1 Other Other +76e93fe7-7828-42d4-9181-948558b434ae 1 Other Other +76e9b5b5-01d2-444e-be18-d51277735fe9 1 Other Other +76e9ee06-ed02-44ae-ab73-5284f9e6d880 1 Other Other +76ea0427-60e6-4ca5-a2db-5dedcb72ac94 1 Other Other +76ea2a80-027a-45ba-9bb4-5544755886cf 1 Other Other +76ea3362-1e71-44cc-b814-509188b3d2c3 1 Other Other +76ea649c-ef09-4204-b9f6-1391353654af 1 Other Other +76ea9d0c-4d74-4409-b428-b4fa92ce87f2 1 Other Other +76eaa31a-273d-4dfe-bc39-291a2c2ffa59 1 Other Other +76eabdcb-a5fd-4c19-b687-5612b3654e94 1 Other Other +76eb17e7-9b5c-4b1b-8a3a-318dbe6ea114 1 Other Other +76eb3b4e-9e69-4e3c-8883-52045af34d3f 1 Other Other +76eb9b5d-aa32-4182-a502-7dba46fe25f1 1 Other Other +76ebde44-c292-4e8c-b227-3ef4fc820ba9 1 Other Other +76ec4bbe-67ce-40c3-bf46-29dd73566e6d 1 Other Other +76ec5161-8fd0-4a8b-942c-9b59d7a3fff4 1 Other Other +76ed278f-97be-499e-ba23-a4f5f1687e74 1 \N Other +76ed322b-9a87-4b43-a80e-798f2350e07c 1 Other Other +76ed4924-0e78-4cad-bda3-caed42b79c82 1 Other Other +76ed5894-18ff-41fa-b661-878f0d633679 1 Other Other +76edcdc3-cb18-41a7-b9b5-044d8def6f60 1 Other Other +76ee454e-b298-4534-8ad7-04f00be4b3d6 1 Other Other +76ee711f-1b1e-4172-9bf8-b7e573be158d 1 Other Other +76ef280b-8037-40d8-8d38-ef9029b050cb 1 Other Other +76ef7219-b533-4ed7-a78a-953e5e1ec76e 1 Other Other +76ef8a9d-c50d-40af-b1a3-45e9a91adba3 1 Other Other +76efc0f8-3fa6-4551-81ab-ba711ca4fef1 1 Other Other +76effff0-11cd-4f34-be62-e077108e5c7d 1 Other Other +76f079df-0291-4b91-aea8-6175197e24c7 1 Other Other +76f09613-2d99-4df1-9129-5e6398f06a0a 1 Other Other +76f114c0-85ae-43a0-802a-8221e4512630 1 Other Other +76f14da8-353e-4662-b219-0b992f049579 1 Other Other +76f16916-d585-4686-8208-0907b178c654 1 \N Other +76f1b60f-bb01-4ca2-9d5a-9598db949aa1 1 Other Other +76f20701-f142-430f-a5cc-f01b1a6a1ee8 1 Other Other +76f2730e-d046-4b34-80ba-42d6f1fa1c9c 1 Other Other +76f27dfb-2de3-4f2f-97cd-98649ab6c7ac 1 Other Other +76f2b045-fee8-439b-ae22-6fc34bcd992d 1 Other Other +76f2c852-526f-4d76-a5c2-10b7dfcfb305 1 Other Other +76f2e79e-7783-4f11-bd1b-4199328e820b 1 Other Other +76f2ed35-6009-45bd-888a-bcd9954fbac4 1 Other Other +76f31337-f9a8-436f-8570-d2aae6b0cb1f 1 James Other +76f351de-a3ec-4d78-928e-708dac10a7b9 1 Other Other +76f36ac8-8c77-48b2-a88d-98f9facf1c05 1 Other Other +76f38884-6f9c-478b-bfd9-3dd0b3f41090 1 Other Other +76f3d902-11d8-495a-83a6-3b6c0ed14656 1 Other Other +76f420d1-03f4-4f7c-9563-361d13885d9c 1 Other Other +76f42845-e8e8-4a38-b28c-c92e247c2c4f 1 Other Other +76f43c1b-89ba-4fee-aa5f-cd3dea8acb06 1 Other Other +76f4f239-05f8-466f-b6f6-702a3143e72f 1 Other Other +76f4fddf-2e7e-487b-bdcb-74bcba68ddfb 1 Other Other +76f51721-9511-4eaf-89c4-f95bee6b2e22 1 Other Other +76f5329e-7566-4532-9eae-73c31511c86f 1 Other Other +76f5abcb-107b-4a6d-8d56-ae30124a7b67 1 Other Other +76f5b71f-3eb4-4b5b-9444-9a7bd4ae5ff7 1 Other Other +76f5df2e-c4d8-4ede-97c5-724396ddb3a3 1 Other Other +76f5f137-f9a4-4e14-baa4-78f4fff83070 1 Other Other +76f60c8d-eaac-409a-8d38-45509cdfa436 1 Other Other +76f60e9b-5f2b-455c-a0a7-7b9b521686ae 1 Other Other +76f6551d-59fc-4804-b973-5d8b2382f5ad 1 Other Other +76f6b5cf-a5b7-450d-bc1f-8e8708055e8b 1 Other Other +76f72488-36fc-4760-9da1-a595010d604c 1 \N Other +76f76e82-3b02-442a-aa0e-28a0903e86e2 1 Other Other +76f789bb-2d0c-48c3-90c6-ee6599979aa1 1 Other Other +76f7b776-8875-430a-84de-37dc8715cc1f 1 Other Other +76f7c262-0ebe-40bc-a9fd-ad5d40ee10c0 1 Other Other +76f82ce1-6e41-4558-bdf8-45eda2f7163f 1 Other Other +76f834e0-57ce-41a5-9e50-fceabbd38e23 1 Other Other +76f83e47-36e9-4461-8799-fb3113fd1e42 1 Other Other +76f85827-84dc-43d1-ad99-51bf6a200ec3 1 Other Other +76f8c5c5-383c-415d-87d6-183b249262e1 1 \N Other +76f8d6a7-81e6-4e08-aefb-24a58e2a5d0a 1 Other Other +76f935c4-9bbe-40da-a9df-746a739e6bf5 1 Other Other +76f94afd-210c-4b7b-bc6f-05e2aa2ec2b5 1 James Other +76f98bdf-60a4-467a-81c0-5058b89aab6e 1 Other Other +76f9f3a8-8fc6-46cb-bca9-de7db413d0ea 1 Other Other +76fa44aa-aaa4-4f14-b971-87b7924c0fd5 1 Other Other +76fabfbb-5224-4dfb-b3c4-2b5dc7cb9ad9 1 Other Other +76fb7418-59ee-4d85-9e0c-c2ef7a208399 1 Other Other +76fb8993-08d7-400e-b030-d02e12e1e313 1 Other Other +76fba029-221b-4cca-99ac-5450469236da 1 Other Other +76fbedf5-678d-497a-82e9-42d3fa790ed8 1 Other Other +76fc0477-3256-4a1f-b6b4-308e37c4cdfb 1 Other Other +76fc0538-fad3-4091-9900-74e693463ae2 1 James Other +76fc1111-996d-433d-9802-6d94e41d816c 1 Other Other +76fc37b2-35c3-4c78-b649-fb4825a36605 1 Other Other +76fc398a-be2e-4727-8939-86f078f3036b 1 Other Other +76fc882b-3374-4560-ad76-13ad84a39a77 1 Other Other +76fcc2fb-26e2-40bc-a8c4-63aed61aa657 1 Other Other +76fcc629-6013-418c-8058-a234f05394e4 1 Other Other +76fcde93-678e-4690-9273-c4a5c3e35604 1 Other Other +76fd3a67-f31e-4f52-a166-1d2935c7f939 1 Other Other +76fd3acb-caf6-4c52-bbf1-de7cc2eade87 1 Other Other +76fd6f08-feae-406f-9b67-1e91eb1ce3e8 1 Other Other +76fd8040-c1ce-4e1f-8dd5-559b836e81a3 1 Other Other +76fd9456-e09c-4169-9483-2cc42fb4079c 1 Other Other +76fd9740-6461-43e8-9825-4f694d899a47 1 Other Other +76fd999a-520a-4662-ba2c-e8aabd19fe11 1 Other Other +76fe07e1-9091-4d74-b3fe-ed06e3c07e9e 1 Other Other +76fe537c-f295-4042-94ca-c2c19dfa3e25 1 Other Other +76fe6e4b-4a95-43ba-a683-ec8de5c9a751 1 Other Other +76fe9292-c832-4a32-9cc0-546248be6804 1 Other Other +76fecafd-f7eb-464d-ad36-9f8d6ff05ff1 1 Other Other +76fecc67-b146-453a-8629-36b15b39ecce 1 Other Other +76feed85-b3fc-4b21-8584-13afae1f60c1 1 Other Other +76fef2b9-5646-49dd-91ba-d4ab301f4540 1 Other Other +76ff3823-9b21-48a9-9b8c-3bb4e4e13c94 1 \N Other +76ff5cb5-a72d-4751-83a7-3073c7bd725b 1 Other Other +76ff7109-94b7-468e-b5f1-723974b99bea 1 Other Other +76ff931a-d001-4b84-8356-e6241414711b 1 Other Other +7700afc7-8cdc-4cf7-ae5d-9354f2ecda33 1 Other Other +7701db33-3e89-428e-bf15-bc5847ee8e69 1 Other Other +7701e1be-68ef-4878-9dfe-b8d2e3f953bc 1 Other Other +7701e8ad-3bdf-4b7c-acc4-e07f32b8e150 1 Other Other +7701f0b2-5dde-4b9a-94eb-71251d8100bb 1 Other Other +7701f6b6-aa0b-4099-b654-5599cefa9676 1 Other Other +77021b72-a647-4a8f-b247-bf5a0bb0bfef 1 Other Other +770243eb-9fb5-4de3-ab85-575a5e38adcb 1 Other Other +7702a6a7-f673-4699-8c6f-ae2ea1a78afc 1 Other Other +7702b1a4-f633-48c4-83c6-0de838ef7ab8 1 Other Other +7702b5c3-fcf2-4c39-9e6e-3bf430e9be7b 1 Other Other +77030966-a6cf-4bc3-99b3-de2e67a22f9b 1 Other Other +77031042-70ab-40ac-b875-20dd6c57511b 1 Other Other +77031e7d-81aa-4ebc-b07d-8a217b63e1db 1 Other Other +77035258-af10-477d-968e-54c5402eeff6 1 \N Other +77036068-856e-41fc-8bf4-381bbb42c5d6 1 Other Other +770366d1-9c3a-433c-8f14-e1b8b29e3f70 1 Other Other +77038223-8552-4c4e-be76-dd0dee3c7bc6 1 Other Other +7703a416-e966-45a0-9938-969ec8a93ccc 1 Other Other +7703a516-4c27-425d-a393-5f4a5752a5a0 1 James Other +7703e6ce-473f-4553-8432-9a186f362fc0 1 Other Other +77045ced-cd2e-4d15-8cd2-4636722227db 1 Other Other +7704ac44-fedc-436f-a1f3-95dd74309ebe 1 Other Other +7704ce21-7201-4364-bf3a-f92123b0fee4 1 Other Other +77054d6e-8380-4e09-968b-6c3973dfd1bf 1 Other Other +7705a7d6-06ec-45c6-94dd-fe0b2c2f3c81 1 Other Other +7705c8cd-cab2-4b4f-bcb1-b92c6ae02052 1 James Other +7705d133-a7e5-40a1-9313-552fad7f77c8 1 Other Other +7706bb8f-c241-4795-9d75-92c5566d188b 1 Other Other +7706c278-1ae4-480c-860f-291a6ed1a4f9 1 Other Other +7706d4af-0746-4f05-a317-0fcb40cb6deb 1 Other Other +7706f3bc-c9f7-4b60-a09e-5003ddced49f 1 Other Other +77072c77-69a8-45c5-aea3-0472c12717c9 1 Other Other +770753ad-2d61-42c7-baef-4addd572e65c 1 Other Other +77078e46-bf27-4e06-ae8e-a5f39326497e 1 James Other +77079b39-f7cc-48a6-9cca-40ec7de8a3ec 1 Other Other +7707ce15-5f7b-4eb9-a081-99c04bf3dde6 1 Other Other +7708a1e6-0cdd-475c-b458-eb32c67eef9e 1 Other Other +7708aa40-b2ed-45a1-b95d-9d6e25a8510d 1 Other Other +7708aa49-5cad-42c0-9f20-d892185042da 1 Other Other +7708f889-cb24-4a3d-b14e-0d86bde5ced3 1 \N Other +7709557a-7f7b-4dda-88f9-c3ddc3d21d00 1 Other Other +77095d8d-89e3-46a3-9c63-f9fa3208f0fb 1 Other Other +770995ce-7616-4af3-80cb-8201851b3f7c 1 Other Other +7709b6b1-b919-4e58-b923-2c77d6ccd35c 1 \N Other +7709b98a-f751-4316-8e97-660d99976a61 1 James Other +7709d976-b7a7-4cbd-8431-59cddea2bf0c 1 Other Other +770a6a20-0e48-4232-9215-836dbf53ec48 1 Other Other +770a7735-2af8-4da9-a732-0e04a06228cb 1 Other Other +770aa79e-b931-44dc-a581-f753ac7ac991 1 Other Other +770ade2c-704b-4c14-9dc6-1525576f8689 1 Other Other +770b03f9-5458-4fad-b94f-34413898efa9 1 Other Other +770b28b0-1621-4a86-981e-97ca2765afcd 1 Other Other +770ba075-275b-40bf-8771-0d71ac9f6bae 1 Other Other +770bbdc5-3e92-4f5e-a10d-d7496a1591cd 1 Other Other +770c386a-2e5f-4822-b38d-43841a4aac05 1 Other Other +770cb926-9901-469b-8dca-3e27a7f8987a 1 Other Other +770d926f-41a1-4845-be35-2742acd34a78 1 Other Other +770dfdad-3c29-4959-a961-c0b839ed9313 1 Other Other +770e617d-e07f-4ff5-886c-f67913e690b6 1 Other Other +770e70fb-bc8c-484d-a553-d4e5e8322895 1 Other Other +770ea565-97ec-4cc8-9966-4bc68c1cc51e 1 Other Other +770f6947-dfe4-460b-ba8c-14ff71b92b49 1 Other Other +770fa718-701c-4de3-90bb-70b344de328a 1 Other Other +770fe8b1-22c7-4851-8141-d711aa80cb34 1 Other Other +770fec91-8df4-462b-8df5-464f4a49e427 1 Other Other +77100d89-1d45-4bd7-9770-0d7d189d3903 1 Other Other +77101621-49ff-45be-a6b9-fb281e4f402a 1 Other Other +77103e0f-2e12-49cf-9b17-a471ed1bea84 1 Other Other +771063f3-7623-4228-8f36-f0c99168b52b 1 Other Other +771086c4-4d31-45e8-87f6-ef26aa24b304 1 Other Other +77109f99-6ae2-43d4-9302-dcb4791660d8 1 Other Other +7710a6db-b01d-45ed-aca2-47588765dedb 1 Other Other +7711006f-49b4-41a4-8d83-0556346c7988 1 Other Other +77112b59-83f1-4200-91c4-aef541be05b5 1 Other Other +77112f61-3c63-41ac-9d60-7ce062df67c4 1 Other Other +77113240-a416-4151-bbd6-385c2df0e2c5 1 Other Other +771138a0-2974-479b-bbee-fd10869e295d 1 Other Other +77114da0-3b13-4e8c-bcaa-5064ade54642 1 Other Other +77115abc-34c5-4044-aecc-8b43809f5a7e 1 Other Other +77120354-1b1d-4ac9-93de-c920a0a0821e 1 Other Other +77121818-814a-40fe-acb1-7c03965d06bd 1 Other Other +77128d5a-5cd7-43cd-89ff-fe6b06af1026 1 Other Other +771296a9-e17a-4abb-982b-6970023c94b6 1 Other Other +7712b6e0-aeaf-47fe-b07e-c49ea4741fe6 1 Other Other +7712ef06-f051-4288-8da7-a14b033d2ac8 1 Other Other +7713482b-d90f-41c0-838d-d018c98cc7e2 1 Other Other +7713531a-7e2f-44d8-b9b1-58c4ef96e86b 1 Other Other +77135a11-0bfc-46ce-be3f-4238905c5179 1 Other Other +77139270-138c-4afb-bc41-1072adeefcfb 1 Other Other +7713d056-b72c-4e18-b16c-ce0467b0fd4f 1 \N Other +7713e005-8567-4936-a882-01ec6ca0152a 1 Other Other +7713eb60-3324-4d21-b36e-b841e91ccc66 1 Other Other +771447eb-9422-427b-bb2f-9b7a86de8d87 1 Other Other +77145b49-c707-4ecb-be60-fde45f1133a3 1 Other Other +7714be51-bae3-4379-b1ac-6650df880cd7 1 Other Other +7714e365-52f2-4939-8158-1806148521f7 1 Other Other +7715190a-dce6-4cc2-bcbb-8f19c21b225d 1 Other Other +77156c84-4c69-485c-8f1d-b299d63f84cd 1 Other Other +771573e4-d513-40cd-9fa0-9756f990e818 1 Other Other +77160fc5-d5ba-4195-b9ae-8c157609ffe5 1 Other Other +7716902b-8b74-4c75-ba1b-8385c213ea27 1 \N Other +771693a5-34bb-40af-9bea-275858db4a3f 1 Other Other +7716b391-9c18-4d3e-8b53-dc211fe9a659 1 Other Other +7716c44d-7dbb-4eb2-9d69-11f950f42268 1 Other Other +7716cedd-164e-47ae-8fec-da4e4630e9b4 1 Other Other +7716d694-a0be-4322-bde5-0cba2a6932b3 1 Other Other +7716ed26-b9ea-412f-a9c3-4c7228687d73 1 Other Other +77170379-6a5e-48a4-b4ca-4b16252cfa0d 1 Other Other +77171597-72b4-46d2-b9f1-afe6de3799b6 1 Other Other +771757a1-de1a-4a06-bd5b-670aa41241b3 1 Other Other +7717db6e-d865-4674-bdcf-396f4fff037a 1 Other Other +7717df92-ea1b-41dc-b38a-879ef7bc5c86 1 \N Other +7717eae2-6fd1-4f9e-95d7-e1196aff6ef3 1 Other Other +77185200-f5d3-4ace-8b34-f2d6eac737fa 1 \N Other +77185820-2c05-4f28-b17a-01dc59811f54 1 Other Other +7718e489-9809-4b57-a0f2-118643c18032 1 Other Other +7718edb4-445d-45b5-aae5-80cdc31062cd 1 Other Other +77190cad-b7fa-42e0-8adc-332c0d01ceae 1 Other Other +771967fa-654e-4c78-b2d2-238fd7299661 1 Other Other +7719830c-f892-4e6a-889c-565319245651 1 Other Other +77198f78-8819-44cf-89d9-a9c15ed70924 1 Other Other +7719dae1-9f58-46cc-a67b-629586719a1c 1 Other Other +7719ee74-649f-4167-8dac-655e80cb55ef 1 Other Other +771a0e91-5aa0-489d-a0fa-3d1ec72d603d 1 Other Other +771a469f-81c7-4ab0-bedb-51b69d69b132 1 Other Other +771a60f6-0016-4a45-a68d-a6e05bfd9963 1 Other Other +771a7651-a632-4250-a501-680847a0e7e2 1 Other Other +771aa014-78bc-4c6f-b2b7-f621bedafa34 1 Other Other +771b17cc-1bb0-45ae-90b9-b285c971c50a 1 Other Other +771b3429-05f2-4f39-b0cd-e7203631506e 1 Other Other +771b38ee-9a6b-422a-8f65-a3f3f8107562 1 Other Other +771b40c0-5c04-416d-bf34-5ad9808d0f07 1 Other Other +771be8b5-adc2-4c6d-99e1-3b6876c829f2 1 Other Other +771c26c7-5a57-4b4a-b953-19137fc057f2 1 Other Other +771c294a-ef32-4398-8d04-52c8647dea32 1 Other Other +771c345e-ce87-482b-9803-305465f9e859 1 Other Other +771c35e5-d25e-407f-8888-014c5bd5d040 1 \N Other +771c4297-5440-4a47-8476-0e64a261f408 1 Other Other +771c79ce-5774-11e8-a02b-fa163e8624cc 257f6774-64eb-11e7-954b-fa163e4dd901 Other Other +771ca2cd-7285-40e1-b010-6cf784a4b11a 1 Other Other +771d10dc-8d0e-4e9a-972d-6ef2646ea227 1 Other Other +771d50b8-d953-4779-af97-0fb03a7d9ea6 1 Other Other +771d70b6-1b6b-4143-88ee-47df06089ec2 1 Other Other +771d9bae-1d65-420b-93b3-e5a04b24b154 1 Other Other +771dd0eb-4051-4a28-bbfc-fee97f94835b 1 Other Other +771e00fe-bbf0-4c87-8a30-3b04b94396bc 1 Other Other +771ea8e5-596b-4a87-b502-de4180ff6762 1 Other Other +771ec802-b35d-469b-a540-548ab11a0885 1 Other Other +771f11bf-5ce2-4e71-8e88-40dbdcdae032 1 Other Other +771f251d-ccce-44ed-beb7-3ceaae35c42a 1 Other Other +771f3625-2a1a-42cd-bfa7-2b299a0ce0cd 1 \N Other +771f4ae9-214f-4c3d-84a5-b26b109c0dae 1 Other Other +771fc41b-6df7-49f4-9f0d-ee8036b46bde 1 Other Other +771fe007-0862-4264-bf15-b6125ace7c17 1 Other Other +7720005a-2604-4b9d-9b9c-b32c886a70ef 1 Other Other +77200885-2848-40e0-9a13-2ce3ee16ddab 1 Other Other +77201be8-2a2c-49ab-9bae-7c4d079fd6cf 1 Other Other +772060af-69a0-4a08-a0f9-0d6bc050154c 1 Other Other +7720b6fa-2dfe-4d11-b34c-9dfe02642ea7 1 Other Other +7720dc81-2b63-46da-b0e6-711f08847919 1 Other Other +77213731-3eb2-42f6-9fff-727e87f8a93f 1 Other Other +7721493e-2529-44a8-9df5-97e8d59433fe 1 Other Other +772151cd-a4c0-4d23-b3a2-d5ffe8465aef 1 James Other +7721524e-b4c3-4959-8d22-9b9598327015 1 Other Other +77217931-432b-4b25-84a1-3c7f65209bee 1 Other Other +7721c0f9-f12d-44c3-a65b-806de5a25929 1 Other Other +772229f1-7803-4c5a-bda0-14dc79d4960e 1 Other Other +77226a2f-4a2d-4015-b1b8-2aaac7fb904e 1 Other Other +77228de4-fd72-49df-a0ff-6b94bd4e87d9 1 Other Other +77229348-f308-4c34-be86-e58deb77695d 1 Other Other +77229da6-dd2b-4771-8a45-ba76d4757dd1 1 Other Other +7722ca25-a577-4835-aad7-56c7601b3872 1 Other Other +77233a57-8a9c-46fe-abe9-41d82d86d5b3 1 Other Other +77233aab-c92a-4824-a014-0ed9c6aea2e3 1 Other Other +772364df-8755-4d69-83e1-d5ef547eb206 1 Other Other +7723a96d-2337-460b-b66a-bc50f66cfbe1 1 Other Other +7723b279-6dd4-4186-a4d3-5a4cb6733971 1 Other Other +7723bf84-ea27-4fe4-840d-0a70b54c209b 1 Other Other +7723c594-4a49-4e8b-a459-3b2d0a1a5f4d 1 Other Other +7723e6cf-93c2-4681-8b94-bb6c34e83fcc 1 Other Other +77240683-040c-4f8f-9102-ff9161d88d21 1 Other Other +77243d4e-fb25-4013-9feb-9bca4fb9097f 1 Other Other +7724534d-be9f-485a-9be3-60743f03f1f1 1 Other Other +77246ee5-bf2b-4019-a79e-721202f96da6 1 Other Other +772475fc-1fd4-4586-98d6-2b34220f0050 1 Other Other +7724e7a0-64d6-4581-bbab-25b8a041fe5e 1 Other Other +7725656c-b05c-4462-9136-3e7d6e02ab99 1 Other Other +77257665-7ead-4df1-93b3-7d1009279afe 1 Other Other +77257f75-650e-40db-ae1d-f3d7ae4edd9d 1 Other Other +77258935-dcf8-4553-aa49-9841534b2181 1 Other Other +7725bf89-825b-43fe-8fc3-dc3093bd31b1 1 Other Other +7725e03b-84a8-4c51-b630-3d30ffbad0e4 1 Other Other +7725f7e3-76d2-4c23-af16-e6c8c0302750 1 James Other +77264834-c38b-4f37-84f5-57a23f428189 1 Other Other +77264cc9-390a-4c27-8f8e-f0be5b6bb9fa 1 Other Other +77270242-79e1-4952-922b-facee029c9f6 1 Other Other +77270770-d200-4548-847a-58bedac61c36 1 Other Other +77270f10-6328-4149-bb7e-9b97979984ec 1 Other Other +77275415-816d-439d-aa89-ff3811db0eee 1 Other Other +772760ee-af84-452d-8a6a-8caade75b20d 1 Other Other +7727d1b1-8827-4b02-bc0b-1f7de22c798d 1 Other Other +7727dc0a-1fa3-492a-a16b-8c34473e36a6 1 Other Other +7727e2a9-bbf1-4f2d-8d57-085293e723d3 1 Other Other +7727f8cf-1369-49b0-9417-27295cd579ea 1 James Other +772835ca-d42c-41fd-8479-18c80c868bea 1 Other Other +77283d5a-4cb6-4bf2-9096-aade5c4b0b87 1 Other Other +772876a3-40b9-4206-9a0e-b9ad812fe700 1 Other Other +77289487-ac1b-4e66-a46b-f38d7e47c6e3 1 Other Other +7728a37b-92c9-4a23-9aeb-b11cff923b36 1 Other Other +7728bb88-cdf3-439a-95c9-6c6f67c06966 1 Other Other +772932cd-326e-448d-bcf8-9f936dd293ed 1 Other Other +772937cf-6410-4908-8f97-2ee2509b0d44 1 Other Other +7729619e-5f2c-4646-ac54-a0d1e4727644 1 Other Other +772961cc-6a68-4482-afd4-ae20a607d67e 1 Other Other +7729ffc1-444d-4f1e-bb6a-8840499199f7 1 Other Other +772a0001-c2d6-4b04-82fe-cd5c4930e469 1 Other Other +772a1cc9-b16a-4847-9538-2165d26a6c5a 1 \N Other +772a5240-335e-4297-a8fd-f6dc3f8c4c13 1 Other Other +772a7885-5f12-4d60-aa9d-4f1578cccce9 1 Other Other +772a9bc7-284e-49b7-982b-e45b6a13e443 1 Other Other +772ad8d5-efd0-4257-b043-886c36ebd7ff 1 Other Other +772b368d-4dfe-4534-ae12-d0dfb605989c 1 Other Other +772b5ac9-4ebc-4a63-ac44-f36ab866a8c9 1 Other Other +772b71d0-9ad6-4df7-af0e-d864afca7439 1 Other Other +772ba21d-06df-4421-903b-766ebfcb937b 1 Other Other +772bed9e-5b82-40a9-b321-6258d0fa956a 1 Other Other +772c04d3-88cb-40f0-8bda-324baa298957 1 Other Other +772c4e94-e07f-4648-a2c7-d098f4593712 1 Other Other +772c5054-2f85-40f0-96af-1c4cef27112c 1 Other Other +772c96db-cf91-4fbb-96a4-29a86419cfaf 1 Other Other +772ce5d6-8d09-40a4-a7e8-11a8e650f374 1 Other Other +772d1165-9e4e-48b0-aedb-f23161815953 1 Other Other +772d3bca-434c-4776-8eb4-6b999c3ec4b4 1 Other Other +772d5ba1-5a15-456f-b0f3-2296cdc906ca 1 Other Other +772d7d7d-5617-498e-bb69-97a35c631a94 1 Other Other +772d878c-0d25-409c-82dc-4eb82be70cd9 1 Other Other +772d8d53-6c9d-495f-bfed-df68b6799c20 1 Other Other +772d9de1-f9f4-475f-8924-0b1b0c76a366 1 Other Other +772dfedd-7989-4ea5-98fd-b565e11710b1 1 Other Other +772e2575-48af-4670-9a0b-66cbef177f2b 1 Other Other +772e40d2-4f70-4016-984d-d36f33304659 1 Other Other +772e58cc-90f6-432f-9d19-81cf93097de3 1 Other Other +772ec847-5f94-453e-afe2-2dd8c599f04e 1 Other Other +772ec91c-84c4-4ece-9dfe-c151d4908dfe 1 Other Other +772ed593-9c7b-4c20-b839-4c6171c5f94b 1 Other Other +772ef209-7f9a-4c90-a026-24d4cd4d48d6 1 Other Other +772efe02-81aa-4b8b-84b6-9625de04b0aa 1 Other Other +772efe12-3351-4ea4-aeb2-0fd2f4b1ff4e 1 Other Other +7730330d-7873-4c5e-ab08-ecb138916fc3 1 Other Other +7730345d-38cb-4153-b603-c4d76a1f2608 1 Other Other +77303e1a-ca4c-459b-8ec4-510b0262b96c 1 Other Other +7730460f-a124-4891-99a5-7da6cc7b16d1 1 Other Other +77306083-1612-4172-b507-d9cfdb3bfa04 1 Other Other +7730751a-b792-44ec-b68f-aa3142c8e48b 1 Other Other +77307f5c-964c-4b1b-816a-0e4756f7c919 1 Other Other +77308be0-70bf-4b36-8b05-f3fe6d26b65f 1 Other Other +7730d52d-2b28-4848-9042-6a0ec8c7c154 1 Other Other +7730e5c3-0fda-4edf-b8d9-452436d7ac1a 1 Other Other +7730eb82-1be7-4046-916d-4034c0c81a40 1 James Other +7730efe4-38b8-4fed-98fd-9849e331e24e 1 Other Other +7730fea2-3234-4caa-8b1a-8b67a48d267d 1 Other Other +77311452-2393-4d0b-a290-fb68df24e186 1 Other Other +77317a82-70c0-4ba5-bcaa-b2bc75e284f8 1 Other Other +7731b2cd-ae2b-4c31-801d-b124cd7e56c8 1 Other Other +7731e695-a56c-42e5-8a14-2293e8a7893c 1 Other Other +77321436-b179-40fb-a11b-7c3c29a371dd 1 \N Other +77321791-5a81-4cd3-80df-7cad9d6c5ee4 1 Other Other +773250bd-900a-4157-bea7-83e03f6a2057 1 Other Other +77328600-e0f3-409b-9fca-6b9d9bd65b8d 1 James Other +7732882e-f224-4e47-b376-ba0a6e15a7b8 1 Other Other +7732a041-4908-4295-8df2-50f84df76df4 1 Other Other +7732ee74-0b79-4d73-b2ba-351c6635884e 1 Other Other +77332e8b-e718-4d8e-9562-e387008f1493 1 Other Other +77339140-ca54-4d88-83aa-68bcee598801 1 Other Other +773394de-40bb-47d5-b424-a3d28803b1c3 1 Other Other +7733a56c-79a6-447e-8ff3-161d98b23ebd 1 Other Other +7733b967-525f-4258-b8bc-8f60a28b9365 1 Other Other +7733e33d-4107-45be-acc6-cd9c68cedc04 1 Other Other +7733fe56-048b-4d97-8b10-0d8f4c51794d 1 Other Other +773439d9-a32b-4f2f-90f9-b0ddbbe1c343 1 Other Other +77346e28-6c8a-42f5-b11b-f39ca6326276 1 Other Other +773477a0-6522-4c50-92b7-ec60bc337ebc 1 \N Other +773477ff-e525-477d-9d05-b3323cdee0a3 1 Other Other +7734a096-92dd-11e7-a724-fa163e8624cc 1 Other Other +7734c283-6f0d-4269-8e10-4539b611b76a 1 Other Other +7734c69d-ded4-4dca-ad06-5f7a48b7a2cd 1 Other Other +773544af-8455-4ab2-aca2-4756add09b68 1 Other Other +77358635-480f-4121-8bf1-ec536a9d0af8 1 Other Other +773593f9-4aa6-4f96-a882-f8e7f2c041d0 1 Other Other +7735947a-9d80-42ec-bb25-a16442654fc9 1 Other Other +7735c764-5179-488b-b37e-9a1a49cdc54b 1 Other Other +7735f5a1-1d4e-44c0-ad58-be154bc86c23 1 Other Other +7735fa86-c1c9-48ef-8a35-f84eb3022520 1 James Other +7735fe23-82a4-4686-852c-bc71e0068482 1 Other Other +773675f8-0056-4d5b-8d5b-33da0a2422e7 1 Other Other +7736807e-9f95-4fc2-a825-e83f702a3009 1 Other Other +7736c006-b2fb-466d-b5e7-a9d376ccf6b0 1 Other Other +77373d6b-c9b1-4951-8677-7a91bc37b4c1 1 Other Other +773755ec-11e3-445b-9a47-8f786ef9e341 1 Other Other +7737b317-3c01-491a-9a4c-29871267c05f 1 Other Other +7737dc90-953d-4844-8578-327f746e0d32 1 Other Other +7737dd06-65bf-4b33-a4a0-7ca4322e617f 1 Other Other +7737e9b6-9c73-42fc-a9c6-ee641209e6d8 1 Other Other +773826c3-a051-4606-95e6-718460367ccb 1 Other Other +773950d4-71e0-4a08-9e3e-aecea1fc76e5 1 Other Other +77395167-30dd-4243-ae98-dc09060d18ac 1 Other Other +77396696-436c-4507-893d-7cbdb8a267ca 1 James Other +77397616-9ce7-4e50-a3e4-ece5e620ca02 1 Other Other +7739af9a-fde6-4429-9646-90ff9874e424 1 Other Other +773a5f7f-1069-42a2-b147-e0aa58aea8f4 1 Other Other +773b155c-4aa0-40da-a029-be67229ad7ee 1 James Other +773b422f-16fd-4660-a0d4-df575eb7ec71 1 \N Other +773b43e0-65e7-49e5-a32d-648545f8a984 1 Other Other +773baf3d-a1a8-4b8f-9c9e-fb90f98e34d2 1 Other Other +773bccbe-3203-46dd-b3d8-ffa338279242 1 Other Other +773bcd62-a303-4f30-b921-17c5ffc22283 1 Other Other +773bee84-c584-44fa-8c7b-f9f7be5d0cc2 1 Other Other +773bf640-ecd9-4a1e-b58f-81e6fcebf003 1 Other Other +773c40df-261f-4bdf-a15b-467ec08f953b 1 Other Other +773c6378-45af-464c-8d2a-4ba0c0110b1a 1 \N Other +773cbcc9-5bd3-4536-9c76-9c5c64352d5c 1 Other Other +773cd3be-9889-4e5a-88d9-275b6e0a4a00 1 Other Other +773d0655-47dd-4579-86e4-ff211d121c5a 1 Other Other +773d5109-1768-460a-b7bc-cffb9ae93b12 1 Other Other +773d9133-4ade-4952-8a27-8a6a0490f863 1 Other Other +773dc237-febc-4ca7-ad5e-d4a3a9c529f4 1 Other Other +773df059-5e8f-4aef-ae10-38b7f44c8f27 1 Other Other +773e0666-5227-41bc-a090-2d0ad0dba2e5 1 Other Other +773e2c39-6b98-43ad-b02d-09283cfad3eb 1 Other Other +773e3064-2a93-46f1-9694-4bbf6948f47b 1 Other Other +773e4bb4-d462-4d21-9967-4f1a70426cfc 1 Other Other +773e529e-48a8-4e88-8668-13f3b159434a 1 Other Other +773e725b-83bd-4682-8b74-388fe9fca177 1 Other Other +773eb915-00c6-4e06-829d-48164db48cd3 1 Other Other +773edecd-5ed2-4649-bc49-dc9b42482551 1 Other Other +773f6d9f-be4e-470b-8ecf-e8c4c2aa5157 1 Other Other +773f8ae2-88e1-4c36-96f7-84fad1ef369f 1 Other Other +773f9dd3-d651-4497-bf5a-ba77cde10292 1 Other Other +773fb823-12f0-441f-9c8e-56de79e5fd50 1 Other Other +773fe7d7-a573-4474-86ce-3db1f145fdf3 1 Other Other +77400fb6-de49-4af9-bc86-0b4c68e44efc 1 Other Other +77402097-8a42-407b-97f9-8a94d5864daa 1 Other Other +77402945-791b-4a80-98ff-e18c280fcc86 1 Other Other +77405729-5a80-4316-9056-75068e93a290 1 Other Other +774078db-4764-4800-9165-15c06037b689 1 Other Other +77408318-5bc0-4f08-af5d-d803e9eebfc9 1 Other Other +77410384-07f5-4dcb-8a20-7d3ba1174c7f 1 Other Other +774109a0-10a0-442c-b9a5-8a1b01dc8f58 1 Other Other +77415126-1c39-45b6-b1e9-3bbe886fcc5e 1 Other Other +7741716d-980b-4243-9e84-b1860064415d 1 Other Other +7741c5e0-7891-4a3a-a839-684083b06a2d 1 \N Other +7741c65a-ae20-4c9c-83da-7edc9efe94ce 1 Other Other +77421acd-44b7-4028-a7b9-e43685246e63 1 Other Other +7742311f-b70b-4d93-998f-5059e1f6203d 1 Other Other +77423cac-735d-40d4-a415-b803883f8c92 1 Other Other +77426284-e66d-4862-9f82-8e93da067332 1 Other Other +774284d8-ff3b-4096-86dc-f90f55894094 1 James Other +77429437-4f86-4fac-b750-96824dc2eb70 1 Other Other +7742f023-6f20-4c78-b715-a2e718ce60f2 1 Other Other +7743519a-b486-4c4a-8feb-7fa8c528dc4d 1 \N Other +774449f6-967f-471c-aba5-9dd867182b05 1 Other Other +77447adb-8c52-405b-9509-ab705cda92f7 1 Other Other +774483b7-ee3d-4ac2-9c80-d7e6626d657b 1 Other Other +7744b26f-5cfd-4820-b2ff-2d7fcc63986a 1 Other Other +7744fdb8-a3fa-4c86-acb7-f0c81d5752c9 1 Other Other +77451ace-132d-409a-970f-2a8b2e315d1d 1 Other Other +774544ed-173b-4557-87e2-bf5878f9d574 1 Other Other +77456ec1-9a07-48dd-98f5-2bd92e86fb41 1 Other Other +7745d3b3-e29f-401a-ad65-05fde40ec238 1 Other Other +77466f21-8da8-4754-bef3-da1a0b563e25 1 Other Other +77467854-ee3c-4b08-829b-6f6cfb692b00 1 Other Other +77469e9a-c68d-43a0-a312-29887e7498ca 1 Other Other +7746ea2a-4a17-45ec-96c6-370350c6d28e 1 Other Other +7746f32c-bf95-42f8-9617-76b7079ff536 1 Other Other +77472478-9e02-4b64-898f-9306d473ec44 1 Other Other +7747f7a0-df56-4389-a8b0-848c8aad734a 1 Other Other +77481f8a-23a3-4c85-a96a-14fa3201a0be 1 Other Other +7748441b-42c2-42ad-836c-46f0f2f5334f 1 Other Other +7748b1f4-2875-43ec-9293-587c0c98a95b 1 Other Other +7748bff9-f013-4148-9891-4872e1787662 1 Other Other +7748d8b6-be9c-46bf-ae22-89edefd6d9ec 1 Other Other +7748ee74-a708-4298-9fb4-a81ee175242f 1 Other Other +7749830f-de75-404b-b75c-78de51f3073f 1 Other Other +7749b81c-9ea5-4d9e-96df-bf5458df624f 1 Other Other +774a13ab-6f9a-4b13-8348-74bee3537a01 1 Other Other +774a6daf-cd91-4b08-9617-073a60ce6fb0 1 Other Other +774a98ed-e513-416f-84e3-e4706f25f34d 1 Other Other +774b74b7-8731-4531-919e-32709d63c02c 1 Other Other +774b9f1e-c319-4871-bd4e-10b8b504ccab 1 Other Other +774bfdd5-9942-483a-aec2-e6ffb7b686d3 1 Other Other +774c2a8d-ed7c-4159-ae80-841d41c529e0 1 Other Other +774c31f2-28f4-4642-8239-f2b46a411cdb 1 Other Other +774c6330-fcfc-482d-9c00-540b8bf5b085 1 Other Other +774c8515-55ea-4207-b328-e1a51809efbf 1 Other Other +774ca617-3c66-4be7-9c94-b7b8430b8bbe 1 Other Other +774d5f70-56e9-4712-a8f5-18f3ef541162 1 Other Other +774d796e-beef-4c95-876f-79bed3b76d1c 1 Other Other +774d8048-9fb4-4599-9d91-4c8d94b52f81 1 Other Other +774d9c37-f7a6-4f59-8e42-0e4b00e81c7a 1 Other Other +774d9eda-890b-4529-91ab-6f4f2df4f55a 1 Other Other +774e3236-e914-4897-99aa-438da6af0115 1 Other Other +774e4816-b470-4b33-901f-089a8ba4a874 1 Other Other +774eb037-2075-49f9-b5ee-1d33b13aec9d 1 Other Other +774eb389-e743-4d06-afc1-ed2b8dfaf1c4 1 Other Other +774ecf36-be2e-4f03-90bd-c81e423fcf45 1 Other Other +774edc2e-ed1b-46b8-b9f7-603c0fa181e2 1 Other Other +774efb40-7718-455d-b7d9-9f13ee7ded89 1 \N Other +774f0fee-24ad-4502-9913-9cc7a85ffcc4 1 Other Other +774f7b38-7750-44ea-9189-a2dbf68bfd76 1 \N Other +774f8265-5fd9-4400-b734-e17eb3fcc630 1 Other Other +774f832e-6288-4904-bc1d-b4c4a2121e35 1 Other Other +774fbed4-3482-4010-8144-08b599c1563a 1 Other Other +774fd052-f0b4-456e-93b2-41702e4ed9e4 1 Other Other +774fdc91-766e-44da-ac06-80cd9c5f5177 1 Other Other +774fdd51-5672-40c6-81cd-3f5bd18fa785 1 Other Other +774fe583-7c14-434e-9f12-b52482c2a05f 1 Other Other +7750341c-c997-4127-bab2-53d464e7863c 1 Other Other +77503ead-9621-4752-984f-74eb8d44f1e9 1 Other Other +77506a52-8614-4dd6-937c-d18fbcac2f09 1 Other Other +77509ab0-2037-489d-9499-4979e7ca6e8b 1 Other Other +77512233-917b-46e4-8022-a6808524d23e 1 Other Other +77514b95-9993-4fe1-aef3-a509f805bd44 1 Other Other +7751b9ba-0529-43fb-ba07-9f0a4bf6f621 1 Other Other +7751c4f9-8167-4dda-9dda-d6c8f79f66ae 1 Other Other +7751de2d-9500-47cd-89f4-be9a877b6a1e 1 Other Other +7751f875-12ba-414a-a35c-c21814033f3c 1 Other Other +775233a6-c621-4db0-aa87-88be5a3036da 1 Other Other +7753b255-1d08-4901-8d44-6dd889095f20 1 Other Other +7753fef7-8e72-4580-abde-df464653062a 1 Other Other +77548734-bf1b-4900-b5a3-24f491cfc861 1 Other Other +77549556-7c5b-4d35-b9c0-f515f60f38e1 1 Other Other +77550f49-2854-4bb2-a9aa-25c9183e0653 1 \N Other +77552ddd-3630-4f8b-9097-f54481956dd2 1 Other Other +775560de-7d53-43cc-be23-9fbba2f0e2ee 1 Other Other +77557a2b-9a4c-47c2-b3a0-10c309be4f7e 1 Other Other +775585b5-7db6-4a3d-954f-cc8a3168206b 1 \N Other +7755876d-6315-4e42-91ac-59e5fcdd69ba 1 Other Other +7755c435-ad88-4357-9e13-a2b89857860d 1 Other Other +7755c7c5-0410-4bd9-9c2c-019cc94d89c1 1 Other Other +7755c8e7-d977-4c25-95c7-7064a09ff3f0 1 Other Other +77567d3a-742b-453b-9d82-44bba3efb700 1 Other Other +77568744-c2ce-4802-be57-06a265604432 1 Other Other +7756b60d-a84b-405c-b71b-1c712bd5746a 1 Other Other +7756c1d7-9c28-46dd-b056-15f0c8ff86f5 1 James Other +77572a87-2917-4d53-83a7-ed591ad56918 1 Other Other +7757971c-0b1a-11e8-8493-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +7757a27f-743b-4cff-86ea-3aeb070674fe 1 Other Other +7757a643-5eb6-4d3d-b11f-c9a52df27fb9 1 Other Other +7757b653-799a-46c5-aa0a-3f4ca09bfcdf 1 Other Other +7757c842-e3bc-44fa-a5eb-57df89ec9e36 1 Other Other +77580896-b72c-47e2-a532-71732939a215 1 Other Other +775814c7-88dd-4b48-a796-8ea658e64fa1 1 Other Other +7758309f-7e8a-4596-a8a6-f6b611af5801 1 Other Other +77584704-e483-46ae-bbfd-7c5b32c2660d 1 Other Other +775875d8-4d18-4f95-b16d-8ade7464bf5a 1 Other Other +775875ea-3fbb-4d8c-bd98-b130357a3ae1 1 Other Other +77587652-0c22-4669-b0b1-5420cc3bcba0 1 Other Other +7758ca95-fd0b-4ff5-9578-1c155cf6b521 1 Other Other +775936b7-03d5-4ba3-bc53-e4b922c3458b 1 Other Other +77598af1-1c13-403f-93df-0f43d0e23942 1 Other Other +7759a867-2f63-40f5-a0fc-7a0f7c9e7c14 1 Other Other +7759a97d-2e1e-4eb8-998d-5552d5d60e5f 1 Other Other +7759f2fb-1c84-49e1-bc01-c6f95b0c53f4 1 Other Other +775a7a16-eddf-4044-b8c1-f7030e5a9a58 1 Other Other +775a8e88-949b-4ec0-8b82-fedfe3a476a6 1 Other Other +775aa7c2-e816-4169-b0d5-f34339a8043c 1 Other Other +775ac0a9-62e2-46c6-b173-a126dff050b8 1 Other Other +775be0a8-856b-4eee-9f5a-b20c375221bd 1 Other Other +775c1d66-e86f-4cbd-b1ed-08fc2e7b4be1 1 Other Other +775c3790-62d6-475b-999d-828aa1560cd2 1 Other Other +775c4dd8-34e2-4ee8-83a8-34e42f2c95e1 1 Other Other +775cb603-453d-4d60-86d9-f01332dd2e32 1 \N Other +775cc8b6-7316-4560-ae3c-753625f0778b 1 Other Other +775ccbb0-16be-11e8-a87b-fa163e8624cc 1 \N Other +775ce81d-3609-482f-8f1e-d5199e28cc11 1 Other Other +775cf5e7-f90e-4f9b-811f-549e525d229f 1 Other Other +775d39c6-ddc1-47b4-8851-2a18e9fd1d11 1 Other Other +775dea6f-61c2-431d-b043-c052214c8e14 1 Other Other +775df1e3-e35a-4117-8d73-5bbd533785d2 1 Other Other +775dfe17-866f-4613-a923-c6b60c8ed434 1 Other Other +775e14fc-8329-4c83-8a49-2a2552f53a0a 1 Other Other +775e1c8a-abeb-49c2-b632-4ff08bb57321 1 Other Other +775e1ec5-45a3-4933-b056-5f2f618e556d 1 Other Other +775e33aa-ef1e-4e63-9ad4-e2f4dd830934 1 Other Other +775e47ea-8287-4f2f-957b-be2614f8b850 1 Other Other +775e4d9e-c3c3-4f73-9a46-a1f7db673362 1 Other Other +775e6625-33f3-4e6f-94f8-92628c5b5aaa 1 Other Other +775ec6e7-dc04-479a-8a41-b1f92090ccfb 1 Other Other +775f7526-abf6-417a-b432-e7715f75c0dc 1 Other Other +775fa1e9-be0f-4b41-b93a-a13d94e3b777 1 Other Other +775fbb95-efaf-4afc-84bf-8a8a4f158580 1 Other Other +77602803-5115-41ab-8e43-afdbe2a1e096 1 Other Other +776065e8-d4e9-40ed-9373-118779f3a65c 1 Other Other +776092bf-cd1b-4af3-811a-68ab307c0794 1 Other Other +77609c7a-fc2e-437e-8d3d-df299e724164 1 Other Other +7760c64b-9967-4de8-b971-62fb729bbb1d 1 Other Other +7760d25f-fa9e-4519-af84-bf9a5413d2b4 1 Other Other +7760ebab-c8f0-4af1-90e6-33279e3cf24a 1 Other Other +77611b76-6ac4-4cc8-a88d-ddd2a5c8ba8c 1 Other Other +77616490-16be-11e8-bb45-fa163e8624cc 1 \N Other +77616cbb-3a9a-4e11-ba75-2ccd8a704678 1 Other Other +7761773b-5fe6-4e75-8616-e385d44e0513 1 \N Other +77619900-dbda-4e1f-954f-9970d6e9c48e 1 Other Other +7761b8ac-706a-4687-afcb-f234ceb7388f 1 Other Other +7761fd0c-d69a-4d62-a700-e2a0951752bc 1 Other Other +77625077-bb83-4fba-bfdc-e7440694ff72 1 Other Other +77625308-0f63-4175-b912-5f9b9038c539 1 Other Other +7762543b-692b-4c92-86f0-7d09c20c45a4 1 Other Other +77625627-3b40-484b-ac5d-9f64e7da4f00 1 Other Other +77626a56-5fc3-4370-a75a-bd2a7111ed5a 1 Other Other +7762aaf7-78fd-4f2f-8fee-5b8f3549fe31 1 Other Other +7762bb4f-84ca-4e7e-aaa6-68b9c023897d 1 Other Other +7762c703-2e1c-4d80-bacc-36ee5fce46d4 1 Other Other +77632f8f-384c-4d44-b4a3-ca9550dff12c 1 Other Other +776335a1-b826-4fcf-9561-e62da8645f19 1 Other Other +77634ff3-5402-4905-bfaa-4d8f2ed863b5 1 \N Other +7763825e-0ed2-4670-a592-482aea37c50e 1 Other Other +7763bd25-1960-4932-98e6-3d4610a2d6dc 1 Other Other +7763f338-5cfe-4a12-b79d-f926db2b1be8 1 Other Other +77644d62-84bf-438e-b4b8-b97304a03584 1 Other Other +77647f43-6c71-4018-833a-510c032aa935 1 Other Other +77648758-b0a7-462a-946c-c9ebc74d06c8 1 Other Other +7764b214-c200-42eb-a34a-2e2b8887f341 1 Other Other +776511d6-14fb-11e8-8228-fa163e8624cc 1 \N Other +776536f7-84d8-4048-bdda-ad723a22b44c 1 Other Other +77653eaa-0ad9-44cc-a0b2-ac0b45f52bba 1 James Other +7765c651-66a9-43ce-8d51-94b1376e851b 1 Other Other +7765c8e9-5b83-4596-8123-50cc366e9e3c 1 Other Other +7765df26-9c89-4bfe-b8ce-f18b759c5319 1 Other Other +77667f3b-743a-4c6b-9683-43ab5355246a 1 James Other +776759fc-6a0e-4ca9-97aa-27cc7cab6d5c 1 Other Other +7767d421-09c8-4972-b336-25c9bf40b4e7 1 Other Other +7767dcc1-33d1-4d4c-b54c-be515e0b0ef5 1 Other Other +7767e0a5-c77a-4610-b678-b1a51669df83 1 Other Other +77681e73-479f-4cc8-8a47-571c7b62d8bc 1 Other Other +7768343e-6f40-48e5-8823-89e503b9a494 1 Other Other +77684ad9-7be6-46d7-8d97-11ba052fdaa7 1 Other Other +776884c5-10b7-4264-b500-7a186c92d82d 1 \N Other +7768b832-122f-11e8-8329-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +7768cd52-ad6f-4b6a-95d7-e14a536ecb41 1 Other Other +7768d6c9-a6a2-47d7-b97f-415a212123c3 1 Other Other +7768fd24-7ccb-499f-bec2-7c532a7e5987 1 Other Other +77692ae8-b54a-4253-becf-4449bcc1e744 1 Other Other +77692cc1-816c-4d1e-ad72-522450c966b2 1 Other Other +77693318-21e9-461e-8a5f-c0728f35523b 1 Other Other +77693d9c-8469-4087-ae79-dd909d69d50b 1 Other Other +77695b2d-e654-4842-9a0a-81c8a168da64 1 Other Other +77696b79-f0ad-4dcf-8563-009fdfb7ed89 1 Other Other +77698ad0-0c2b-4795-ad78-cdef01fd912f 1 Other Other +7769d21a-1a5a-41b3-9ac7-6282ac76e70a 1 Other Other +776a0a34-0054-439c-a2c4-76b83457ba9b 1 Other Other +776a46d9-5bff-4691-ada8-41ab2abf6f43 1 Other Other +776a9060-ca41-43f8-92e3-365d00293c76 1 Other Other +776b4f36-8972-4023-af35-c6a259806a76 1 Other Other +776b592a-ad4a-4737-be05-f616f718332b 1 Other Other +776ba69d-0edf-4032-a793-4db0078d658b 1 Other Other +776be849-08b0-41bd-b5b9-a68b11dc63e8 1 Other Other +776c3159-6d3c-4e00-984c-e561c7f707eb 1 Other Other +776c3e28-fab9-46c8-a4a8-6a98cf66ab66 1 \N Other +776c573f-3c14-4b51-92cb-3e0df4ee7f01 1 Other Other +776c8a18-a30c-4038-a819-be161abdcdb8 1 Other Other +776c8f6a-e2ae-4490-94ff-54204606dec9 1 Other Other +776c9d38-5f09-422d-ae89-ac9afe5b7a3a 1 Other Other +776c9e9e-0e21-4f6b-ac20-1563d6db60bd 1 Other Other +776cca03-f57c-4e44-8f6e-2657f4872fb5 1 Other Other +776ce591-5646-4a23-a4eb-26bdbe67afba 1 Other Other +776cf884-7cc0-4353-a1b9-b0c4f84217cc 1 Other Other +776dea45-f040-4990-80d9-f75110b682ae 1 \N Other +776e30cb-5128-4f7b-99be-4eac8306f320 1 Other Other +776e495f-d849-4d02-946b-0e020e680e76 1 Other Other +776e4dc7-2fc5-4746-bab7-7ce64b0af50a 1 Other Other +776e5d21-699d-4ba8-ba77-ba186ceb45ad 1 Other Other +776e5d85-e9df-46b8-8d4d-334e1e5b586c 1 Other Other +776e7d27-7db4-4818-a4d5-a8e8d910eb6e 1 Other Other +776e88fd-6467-42fc-8986-e69fb1dd7aa3 1 Other Other +776f1754-f699-4b0c-961b-067bd1955c46 1 Other Other +776f3fcd-364d-403f-a856-9e86fd62131e 1 Other Other +776f71c0-1993-4aae-a41f-ea7de59a01c6 1 Other Other +776f7e9a-aa5b-4ded-8530-f9d5a8ef7be9 1 Other Other +776fc7ff-9be2-4f96-8a0a-c730410c747d 1 Other Other +776fd030-be2c-449a-b4d0-fd8239499e45 1 Other Other +776fdc64-4ed1-4d61-8db0-459d1182950b 1 Other Other +77702951-7bc9-4957-9a2c-871086d96581 1 Other Other +777087a0-c9ab-46fc-be19-42e49196ee32 1 \N Other +7770d041-c984-4e0b-a9bb-2c53deed5ba9 1 Other Other +77714c0a-f264-42b7-87d4-245c7ab07120 1 Other Other +7771718f-035a-4d90-9341-2d98f0ebf418 1 Other Other +77719ab9-40d2-4bbf-94ef-79675a672106 1 \N Other +7771f0cb-8373-4c61-90c2-d9e28814a395 1 Other Other +77720460-8af9-492e-9cbb-3fb7a3262af3 1 Other Other +77720e2f-24be-443e-8bef-5154507c9bdc 1 Other Other +777210af-b4bc-4a33-81d1-e460d8e42915 1 Other Other +777231fb-c10d-41d9-901f-1a4defb86f93 1 Other Other +77726b95-d26f-41d8-b63f-4c1b2606f531 1 Other Other +7772a75c-288b-4817-87eb-b5201d053952 1 Other Other +7772d1cf-3c96-4da9-b7bd-d5fabe73b58b 1 \N Other +7773066b-8297-4e03-bdba-365eaf757e4b 1 Other Other +77730adc-5edb-46b6-a790-902b6eb6a3c6 1 Other Other +77737fa8-3291-4d29-a84d-c3f4a332bf45 1 Other Other +77738c18-2fc2-419b-8eee-9a3d96cd2e06 1 Other Other +7773f5c1-937d-4f92-8c0b-8c38f1f8476e 1 Other Other +7774adc6-e148-4043-92fd-5fbd3d815162 1 Other Other +7774c092-5028-4d06-a61d-ab3295a0a10f 1 Other Other +7774e764-d1b0-4b8a-9ade-96c925607054 1 Other Other +77750be6-3022-4c12-b150-d9cabe00c2c4 1 Other Other +77754c2b-59bc-48b3-b256-f4ee392ceab3 1 Other Other +77759291-3511-487a-be1d-7043e2180db6 1 Other Other +77759dd6-ca90-494c-ab51-52d3b0e5b277 1 Other Other +7775ad69-179b-4373-bb9f-ed84fdf5cb9e 1 Other Other +77761a5e-6ebe-4166-ad2e-08d55c5bf6ec 1 Other Other +77762af4-a86d-4430-acde-a7402c6500b5 1 Other Other +77762d5d-d0f4-4182-a7be-5ae2944ea733 1 Other Other +7776493d-2530-4ed4-8e53-305b6ee3a347 1 Other Other +77768882-fe7c-40d5-a64d-2a52e8ffbf15 1 Other Other +77772c53-8d4a-4491-894d-d058ded852a5 1 Other Other +7777d982-0d28-4746-be49-bd7f97ed3777 1 Other Other +7777f5d3-f84c-4796-9a9d-8612cac4595d 1 Other Other +7778214b-df78-4930-ac70-640c71f5ed61 1 Other Other +77783ef7-af5e-43a4-b670-ba976457bbea 1 Other Other +77785184-bff6-499e-b6e8-ce0c6f21cdef 1 Other Other +7778aabb-6669-41b5-9d82-20456ddf1082 1 Other Other +7779161d-7ae5-4f50-b933-e8ac2af91b64 1 Other Other +77799411-fc0d-4001-bade-80488946d81b 1 Other Other +77799ae4-f6fc-430f-9a88-1d01d3556d55 1 Other Other +7779afe4-646e-413e-8ca3-b9bacf8dad96 1 Other Other +7779b031-1dd5-4924-b1b6-45f7443d8f0b 1 James Other +7779bd76-4f79-4a8e-9c8b-244b41a444e1 1 Other Other +777a00e2-1252-4b4f-b305-9ac39356ea22 1 Other Other +777a5067-d997-4248-9708-1870b056919b 1 Other Other +777a8e32-23d1-491c-b08d-a4fcfda20fea 1 Other Other +777abbeb-2a05-403a-84af-055a225383f6 1 Other Other +777ac58e-f0e5-48c5-8942-30263e35b0f3 1 Other Other +777b1930-566c-4e9a-af74-03c64e94ff38 1 Other Other +777b2343-da1a-4705-b288-280362b5b1a9 1 Other Other +777b2ba3-dc1b-4fc5-8483-2ec55e63d973 1 Other Other +777b6b49-b1e7-40de-abe0-268ea1eb9228 1 Other Other +777bbfba-7416-42d7-913b-a089b7fab7bd 1 Other Other +777bf9ea-cd31-4858-9a5a-79a4d1fdadcf 1 Other Other +777c00b9-2c52-48a5-a40c-f139180bbd6d 1 James Other +777c1edb-57a2-4e6d-886d-f3f6df99ac78 1 James Other +777cb8a9-faa8-42e7-8b86-4c7b50a1b102 1 Other Other +777ce7fe-cffc-4819-a53a-a3283a3216e7 1 Other Other +777d1d8d-497c-4715-b706-9a2d2413cb33 1 Other Other +777d2306-3f0c-43b0-8dda-6fc884ccea61 1 Other Other +777d2f2b-7e5a-44d2-9490-37ffd67fcd4c 1 Other Other +777d94ee-6312-4847-9e77-637feebe91dd 1 Other Other +777df8fd-b913-41a4-87a3-4d9882c4d4ec 1 \N Other +777dfc1e-b6fe-4142-864d-c99cdd40c9d3 1 Other Other +777e0905-17b1-44e6-ab25-2b38e84823e1 1 Other Other +777e30a2-045f-456c-b0ec-23729a1d1c12 1 Other Other +777e3cb9-80a6-4fa5-acbf-11128526ab3d 1 Other Other +777e7a9a-0787-4fa8-80ec-dcc4bbe50085 1 Other Other +777e972a-2376-44c3-a48c-b820f9193d3f 1 \N Other +777eab76-b2c9-41eb-8017-ec59de711924 1 Other Other +777ec0c9-a0f0-48de-80d4-43fe396c7018 1 Other Other +777ee119-04e2-4e5d-981b-7de80412489d 1 Other Other +777eea25-914d-4c26-8190-589f00a7814f 1 Other Other +777f3fa6-abd8-42df-844e-900fda8b2d99 1 James Other +777f67b2-23b1-40f4-bfc5-60dd8cc1a786 1 Other Other +777f8201-9c15-44b8-b9f2-bd3f0923da9c 1 \N Other +777fa52d-fad4-4515-a23a-844753b7f914 1 Other Other +777fa99b-4bbb-4c47-bf61-1b71dcb9596f 1 Other Other +777fe9bc-7daf-4ee8-8d48-0989f7de5f5e 1 Other Other +77802983-8f61-4850-a2ad-2b398522b746 1 Other Other +77802ba1-d4a1-413c-9215-6d884cec3422 1 Other Other +77804da6-3ee2-49b1-8a1d-d6f67c678089 1 Other Other +7780ba49-0249-4e76-b4a1-835e80e5e8b1 1 Other Other +7780cdb9-554a-47ee-a3a9-4984d6743ace 1 Other Other +77810261-c049-4e41-b095-9eb021d6d820 1 Other Other +77812ec1-ec2b-41aa-a282-525e37ebc09e 1 Other Other +77814c52-b43a-4a88-a720-84ff970cb0c7 1 Other Other +77816584-026c-492f-b89a-e3e7344a4ce5 1 Other Other +77821767-49f8-47df-96ac-2622e28f7517 1 Other Other +77826abf-a764-49fd-994d-0c15f360c148 1 Other Other +7782f0c3-8c69-4e7d-9c3c-f9ce2846da3c 1 Other Other +7783135e-d9d3-495e-bc74-8034ebba1b7a 1 Other Other +77835f4c-1646-43d5-ab2a-4a78675c89bc 1 \N Other +7783a685-0171-4bb6-8e54-d19ee039f5f4 1 Other Other +7783bf24-fb13-48c7-9e02-d802a03d8b7d 1 Other Other +7783dede-53f1-472c-9181-432d05f4c743 1 Other Other +7784143a-37d7-4c07-b6b5-75a0d115f8d2 1 Other Other +77843159-2e2a-4310-a580-6a98953b1233 1 Other Other +77846995-5b0d-4d7d-aa64-a419ff765061 1 Other Other +77849e28-84b9-4a15-b767-95d92802e1a1 1 James Other +7784aa6d-f891-412e-aa55-11377aa3fee9 1 Other Other +7784cf7b-3602-4eae-85a1-103cd74a0077 1 Other Other +7784dc8f-d39c-4bfc-8167-fb8a241f40f1 1 Other Other +7784e47d-081e-453f-af74-4e6f84cd119c 1 Other Other +7784f756-9575-4eb6-9030-3319c786bbf4 1 Other Other +7785023d-021e-4503-b9d2-b31b30bc4f56 1 Other Other +77852c04-e932-42f0-b4b1-38e2ae2610a2 1 Other Other +77854faf-cb74-4534-8e3f-4c79191b565e 1 Other Other +778571b1-c43f-4b04-abd7-d67e9f8f23fc 1 Other Other +77858425-8e29-415d-a6b8-a63b5b29e9fe 1 Other Other +7785c870-196b-4edc-873b-955209cd9eb7 1 Other Other +77861824-f69f-4448-a3cb-9b2b6d6b7fde 1 Other Other +7786fa10-2f2c-4d65-8653-01018fdd5353 1 Other Other +7786fda5-d747-4fa9-b9e2-876aca6f988d 1 Other Other +77871ecd-2139-452c-b187-d2283c04ae00 1 James Other +77873039-5d00-4240-8404-4f07f1a26ddd 1 Other Other +77873f06-098a-451e-8610-92cc7e4593cd 1 Other Other +77875a2d-4b6e-424a-b9a4-54dfdb0edd63 1 Other Other +77878e05-621d-4123-9bb8-c99499a583ef 1 Other Other +7787afcb-cd5c-49ac-8f5c-3c267b467be5 1 Other Other +7787fefe-ff3e-4649-b8c9-d5676012403f 1 Other Other +77885dbc-95dc-420a-815a-7d581efed96d 1 Other Other +77889047-6a3a-4cc3-b09c-bac0bd56b51b 1 Other Other +7788a105-bb37-4d80-ba7b-d45a9595ec5a 1 Other Other +7788ac72-df6b-45db-b38a-46da4b9f5656 1 Other Other +7788c74a-5342-4587-b6c3-763e7f9f6f5b 1 Other Other +7788f0b5-5d48-4b02-be7b-eb3c69eb8187 1 Other Other +7788f544-59ce-4f7f-bf34-91ff282c6992 1 Other Other +77890e88-b5e6-4cff-b0b5-617052612ec7 1 Other Other +7789667a-16be-11e8-b34f-fa163e8624cc 1 \N Other +7789c076-65ca-4d5a-90e8-4bd06959b201 1 Other Other +7789c303-49ff-4dd1-b33c-95f93db5c69a 1 Other Other +7789d5d3-d8a5-4a37-8a6b-5765347801cc 1 Other Other +778a0f39-25df-4364-ad0e-be17c2e2d0cc 1 Other Other +778a33e0-231c-4165-9a06-469bd951080a 1 Other Other +778a43a9-8f72-4b95-bcdf-b8c20175d463 1 Other Other +778ac8dc-7273-46b2-8d43-9e26babe9a40 1 Other Other +778b48a5-e4ec-4cdc-8064-986ec7b3c1d1 1 Other Other +778b736b-9965-4de7-acf9-07ef40032655 1 Other Other +778ba329-6498-4916-897a-68d5b9d964b1 1 Other Other +778bd71f-d5dd-470d-8fb9-ae61e848768e 1 Other Other +778bfb0d-5fb7-42c2-91dc-1ff79e0073d2 1 Other Other +778c3bd9-1f7b-49e5-a554-ca1a79d8c42a 1 Other Other +778c44c5-70e4-4687-bb73-27837201cc04 1 Other Other +778c4dd7-d99c-4c2f-bc0a-e3e0c87b5c94 1 Other Other +778c603b-6e6f-43a6-910a-25c25ded2dcb 1 Other Other +778c9dd9-afa0-44d2-8547-6594da1a28dd 1 Other Other +778ce65b-254b-4a7a-b822-6083f338811c 1 Other Other +778daa89-05d8-4038-a131-358aa71b095f 1 Other Other +778e08d5-26ca-4933-beba-79b40a67569b 1 Other Other +778e44cd-8fa5-48b9-9851-3ab4b5ab01ca 1 Other Other +778e93ba-4258-427c-897e-969e59fa0aed 1 Other Other +778ec0fd-d072-4930-a531-daf00cf7b856 1 Other Other +778f283a-b9e9-48f4-98d4-0f437781dbe7 1 Other Other +778f43ed-4843-48e0-8155-322d989cae3e 1 Other Other +778f8636-0431-40da-84d5-e6b1b5d9df28 1 Other Other +778fb7ce-5fe5-4a82-b34f-02d4d69c4a6e 1 Other Other +778fbff5-fe62-4c59-9496-e6a3ce123bfe 1 Other Other +7790292d-e284-48db-a55c-3efc52cf9f9e 1 Other Other +77907110-6d14-4e37-879e-e1de81a0425b 1 Other Other +7790bf30-a503-4315-8706-b97a15f1b8e5 1 Other Other +779163b0-0126-43ea-a1a1-06f2ede8714c 1 Other Other +77918a92-ec41-4498-b72a-3f10349d30f9 1 Other Other +7791aa4d-534d-47c4-ad10-bf2120d1135e 1 Other Other +7791c0fb-4e8e-4ede-8933-34e800f31cec 1 Other Other +7791c1c6-c5cd-46b8-9f41-8d3c77f920f7 1 Other Other +7791dcbc-1948-4f26-ba04-d2b926ba1143 1 Other Other +7791f903-e6b2-4091-97d9-1897d15afb41 1 Other Other +77920b00-e8ee-4b1a-913c-58de750bdec1 1 Other Other +77922a7d-d984-4357-b42c-3ec32fb3a27b 1 Other Other +77922d0b-264a-4746-83e7-248db33ba118 1 Other Other +779304d4-8b1d-463e-903e-eb6fa0bc17bc 1 Other Other +779309d8-d4ba-4a60-8228-8c3ada2d15e8 1 Other Other +779337e8-1df4-4bab-a6a6-2d7e3932ff35 1 \N Other +779351e9-7339-4dc3-83f0-68e6b62d1f70 1 Other Other +7793889b-75d2-4a46-8e92-afe4bb2c5bf3 1 Other Other +77939a92-879a-4cfb-9065-028f558dae05 1 Other Other +7793c364-8d8e-494d-97d2-94d29dc6587d 1 Other Other +7793d8fd-4ca5-419e-849a-1b1063369b6d 1 Other Other +7793e4d3-7ce5-4517-bbe9-411a487198bf 1 Other Other +7793fad3-aef3-4815-8ecb-2887bcbfc058 1 Other Other +77947b10-418b-4395-9c4b-e00c91ac8784 1 Other Other +77949af4-0f18-48a0-a545-3c62931b02f3 1 Other Other +7794c713-0a66-4bcc-bf4e-8411c39bf26a 1 Other Other +779507d6-6428-4a2e-b183-1bdf5a065154 1 Other Other +77951a8f-2723-4cfd-9cf5-efca2a91eae3 1 Other Other +77957fe0-3876-4dac-9047-f161ec1b9f56 1 Other Other +7795d338-53e2-43dd-9413-5d9a826b1118 1 Other Other +7795e7c3-dc83-4e67-b72b-2bdd1357a1e9 1 Other Other +7795fd8a-57a4-45c5-9bbf-8144450831c8 1 Other Other +77960713-dd09-4424-9604-76ae52736458 1 Other Other +779622bc-d64a-4a3f-874c-a1aff9337570 1 Other Other +77963c1e-e898-4e27-af51-53769be5aa02 1 Other Other +77964306-44c9-4cba-af88-2947b235d470 1 Other Other +7796c611-d9c7-4437-bc1b-cd36d0f7de13 1 Other Other +7796c6bf-2564-48ce-bf6c-9db9127aef93 1 \N Other +77975c3d-e89c-4f00-83a4-e4ad1beca194 1 Other Other +77976711-9423-438f-9212-41e3a62cafe4 1 Other Other +7797870d-4145-41b9-b95e-2b976673cc0c 1 Other Other +779795b5-a348-40ed-8927-aa77ed763262 1 Other Other +7797979e-7ea6-4723-b11a-d8d2564bb309 1 Other Other +7797a8f2-91e4-4602-b0aa-ec48ae5a030a 1 Other Other +7797cb34-3225-4c5a-87fc-0abde56fe22c 1 Other Other +7797e525-5a04-4728-9831-fe5b29101b2a 1 Other Other +7797e9c2-41ed-41d7-ba47-0cafde3e7111 1 Other Other +77980e76-160a-4aec-9f61-845467aa8c46 1 Other Other +77980f75-8778-4c11-afa2-1cdb2d15a34d 1 Other Other +77984677-2974-4dfa-b6f3-378171e37714 1 Other Other +779846d7-57da-4f4b-b310-fa11fc7ea196 1 Other Other +779856ea-9bf1-4321-a6f4-6a6de8373c9c 1 Other Other +7798c3af-7c13-4fce-a385-afaa7aefa771 1 Other Other +77990d5b-9ce9-4959-9cd7-05e8644bee59 1 Other Other +77992daf-63f9-46b2-bef9-842b699c7187 1 Other Other +77994e80-b243-4629-a775-ba97d30c39c9 1 Other Other +77996b4c-3e77-4b95-929c-0e4f8f218603 1 Other Other +779974df-ba1f-4617-8007-1619ccd84bc8 1 Other Other +7799921d-f993-45fc-9acd-293f65c444b5 1 Other Other +779a0e18-c748-44c3-9a67-e64ade83d304 1 Other Other +779a37eb-1b5d-4e56-8b9d-5222656478be 1 Other Other +779a4ff5-7b58-4527-85d0-45ace75ad2cf 1 Other Other +779a5f96-9e20-47c6-b478-0b9e716225fc 1 Other Other +779a8405-6785-485b-a84e-2829d8e9231d 1 Other Other +779abc92-8c7d-4ec5-b9d8-8acf50dcfc48 1 Other Other +779ae868-e1b3-4534-942f-938ba0f304ef 1 Other Other +779af113-1dba-4233-9a2b-cb9f1df14442 1 James Other +779b0236-71e0-402c-881a-804892d7cf6c 1 Other Other +779b73c7-587c-40de-971d-db4e984dc2e9 1 Other Other +779bccef-2188-45a3-89a0-f012be34d022 1 Other Other +779bd60b-09f7-497f-bcdf-2c89ab7a0c7c 1 Other Other +779be988-0cbb-49a1-832d-5f042958c834 1 Other Other +779c110a-f793-4e5e-9d0b-630bf0607895 1 Other Other +779c249b-d169-42b1-9e4d-3eb24b78c3e2 1 Other Other +779c5eac-1b36-4c8f-ab21-e7b483a05df4 1 Other Other +779c85e5-4e9c-4d5d-a377-11754ebb8454 1 Other Other +779c89cb-265d-4e85-a68b-ff7afd448d40 1 Other Other +779cc011-1503-4d09-a38e-d7f65917456a 1 Other Other +779cd0a7-8def-4c47-9cf4-9a2e286d57b2 1 Other Other +779d3764-0a85-44f2-a922-de9df64a67b0 1 Other Other +779d567d-4802-4ef0-baba-17cd2bd09e67 1 Other Other +779d7688-b862-459b-b428-214749aebc7b 1 Other Other +779de06b-cfd7-4ed8-ac1c-af4323398ad0 1 Other Other +779de831-d939-40dc-b812-7a55453e6ece 1 James Other +779df9ef-fcd4-432d-b5da-7e50e5cfb2c2 1 Other Other +779dfed1-772e-4c3a-bfcc-6aaa43f5a7fb 1 Other Other +779e087d-1335-4c27-9e95-f9d1bce6bf76 1 Other Other +779e280f-f151-48c5-9cc4-13ed147fd567 1 Other Other +779e3ef7-18a4-4807-8d4c-818680a00e83 1 Other Other +779eeeca-2e13-4e10-8516-94547e9fff32 1 Other Other +779f28a2-7074-4b2d-8981-5fe7b160463a 1 Other Other +779f3b8b-8079-47b3-a484-6d4596415083 1 Other Other +779f9017-eab9-4b47-b918-2ae374c9ae79 1 Other Other +77a0324d-4270-4ace-8cea-38ae53cc6391 1 Other Other +77a03c29-6117-40c9-b1a1-f7e7fb635d51 1 James Other +77a04901-0c57-4402-b912-987ac96d75d8 1 Other Other +77a04b70-b307-4f7d-afd1-db7749245acc 1 Other Other +77a07dc9-e073-42ca-825d-be7dba1c6c8c 1 Other Other +77a085d5-ff8e-48ac-bbaa-93b91f65ec74 1 Other Other +77a09859-ef6e-43d3-b02a-1ef1be372a12 1 Other Other +77a0b357-bca5-4225-b9ab-9a9f14053f88 1 Other Other +77a1039a-4ab6-4429-b690-dd326b29041d 1 Other Other +77a1657c-6145-40fd-9074-a08e23436079 1 Other Other +77a1f352-16be-11e8-ad1c-fa163e8624cc 1 \N Other +77a20e38-fd0c-471e-b8a5-02e2d81fe7a7 1 Other Other +77a216ae-8a5e-4f88-80a5-2aa5e50ddb9a 1 Other Other +77a21ccf-ce4d-42d8-b325-58442c8589cc 1 Other Other +77a21f23-7f03-4b01-8cef-2bc547696192 1 Other Other +77a2256b-0180-43b9-8c7e-9ae9992d60ca 1 Other Other +77a2465a-4f0a-4b28-a218-a1bfc7ccc157 1 Other Other +77a26361-7386-4676-bf10-6ebb0cd4b283 1 Other Other +77a274da-a19d-4375-851c-a1445d5ed13b 1 Other Other +77a2baee-b6ab-4d69-a188-f9eb2db6a1b4 1 Other Other +77a2d26e-6e6b-406f-82bf-a470dd53ec66 1 Other Other +77a2eaff-0451-4906-9ed8-b502896f76a4 1 Other Other +77a30884-eb38-4e13-897a-f7b61d789301 1 Other Other +77a36643-583d-4c08-8f46-fe385ddec05d 1 Other Other +77a39da6-ddf7-413c-ae07-2aa01ff4c6fe 1 Other Other +77a3a093-e170-4d6b-a291-455d9e78856d 1 Other Other +77a3adf7-f2b4-4f5d-b57a-242a4a2e3bbb 1 Other Other +77a3d87b-e1da-433a-ac5c-ef4caed051ff 1 Other Other +77a40386-f0e0-4dd3-935f-2d3f927c784a 1 Other Other +77a4465b-552f-406f-b8d2-53f957f085f4 1 Other Other +77a46c03-03b9-427e-bb42-7cb6d79f36c5 1 Other Other +77a48be9-f787-4c66-a221-4461ae4874b6 1 Other Other +77a4bfa3-fcba-446d-97d0-ff111ec9d714 1 Other Other +77a4f87e-244c-4580-ba7a-534f5aecf682 1 \N Other +77a51138-2c1f-4584-9702-ff4bf1d687c3 1 Other Other +77a523b9-4884-4723-b9d2-1942cc34ec04 1 Other Other +77a58798-f7f9-4953-90d1-550f081b3c07 1 Other Other +77a5fcab-a32c-4f28-99bd-44cc45516896 1 Other Other +77a60a15-4410-4ae4-bc9c-3ccbb624130a 1 Other Other +77a61ed3-e2fe-4d0f-8c22-db76c4c4b2a7 1 Other Other +77a6255b-0049-48fa-b92b-6a92f4c2b26c 1 Other Other +77a62db6-7de5-4dd5-8d9e-68e73863b2dc 1 Other Other +77a65c46-e5c1-499c-8608-a382788fea87 1 Other Other +77a71a50-fdf5-4cd8-a0d3-bd0888b54403 1 Other Other +77a723dc-99e7-4a76-8e56-e9c141f4844f 1 Other Other +77a7571c-7c36-4243-9a45-1ff0d29c55eb 1 Other Other +77a78d08-a131-4fc9-a7c5-b0935026631c 1 Other Other +77a791e2-c17d-4569-9b7a-f9aa5c183902 1 Other Other +77a7a377-7ffb-405d-a289-1b223faf900e 1 Other Other +77a7da08-cd8c-4804-a656-810d3c8e015e 1 Other Other +77a81d90-7c9a-44eb-911d-eb721b44c71d 1 Other Other +77a81fc9-5fb6-4d45-80ef-393a2c93c61e 1 Other Other +77a82ab1-5d16-4a6f-aa83-7190d2a3c414 1 Other Other +77a84126-2470-48d2-8db5-75346a627542 1 Other Other +77a8b7f7-c935-4bb2-ad8d-2c138149915e 1 Other Other +77a8bbb5-daaf-44f4-903d-ee79b00e226e 1 Other Other +77a92077-37c7-4d6a-a076-174708cee0d8 1 Other Other +77a92b05-d0d9-4ee5-bf57-161442510d77 1 Other Other +77a93aa9-8b72-4ba9-a60c-29dcfaa82275 1 Other Other +77a95a0a-fcf9-4305-bb2d-95a0c9943e3d 1 Other Other +77a98b01-acef-4a19-8db0-85c4fcc7f2cc 1 Other Other +77a9a843-1d27-4ee6-8586-58da01efe613 1 Other Other +77a9bb97-e301-497a-b0a7-cac081f85a7f 1 \N Other +77a9c2d2-a87c-401b-8b0a-6ae6e0c30809 1 Other Other +77aa18a1-87c9-4e8b-8d79-c6cba2d533e8 1 Other Other +77aa37a7-97a8-4186-990d-bb6d6bef9e05 1 Other Other +77aa5181-57c3-40c4-a115-30af5e4013eb 1 Other Other +77aa8a59-2b3c-4ee9-9233-4e851f5063c7 1 Other Other +77aacf22-eed9-4d2d-bd4b-9b3cbe787dbc 1 Other Other +77aae9f3-2f32-4216-965b-58ace0b967b4 1 Other Other +77aaec43-176a-416d-bd24-35c701e3f52b 1 Other Other +77aafcc3-1449-4884-9bac-04a910a54278 1 Other Other +77ab17e5-1978-4d2d-9844-f50cd243b4be 1 Other Other +77ab4009-5bba-4a39-a287-671b623ac0a6 1 Other Other +77ab734f-e9db-41e1-85b3-5412474703d1 1 Other Other +77ab8a88-60bd-4ff3-b232-576946c81c45 1 Other Other +77abbc0f-5b1a-43a7-86df-b637a09c1e36 1 Other Other +77abd306-1d68-451a-9eae-c2134b21b50b 1 \N Other +77ac1f04-02f0-4140-8422-f94949d3f0c5 1 Other Other +77ac2bbf-2d56-456a-b77e-439f0a7ba770 1 Other Other +77ac3f4e-df13-4088-8ef9-516e345551c0 1 Other Other +77ac51d6-f948-4d6a-b1f2-03f6b41a2b20 1 Other Other +77ac6df6-5df9-44d7-b630-8a53d05a31f3 1 Other Other +77ac8584-23ec-487d-83b5-46f465aff471 1 James Other +77acd3df-98df-42e5-b62e-b2da30fb01b9 1 James Other +77ad8074-a9ee-44c2-b76f-20a01fdcdc95 1 Other Other +77adf87e-d1b0-4702-8b23-52602a2db043 1 Other Other +77ae4c17-06c2-42cc-831a-faa1ed251293 1 Other Other +77ae88f8-2581-4805-b842-382a798a2419 1 Other Other +77aebe41-c766-4138-a25a-c2aef2bb524d 1 Other Other +77aef5da-605c-4b14-895d-44aaefb2cd4b 1 Other Other +77af2766-1d93-43c1-a4e1-ac83a0cc5180 1 Other Other +77af3c83-9ec8-4a4b-9c79-2004c55f6029 1 Other Other +77af90e1-7433-491d-a754-2e9f40b12522 1 Other Other +77af95e2-7d50-4e64-acc1-546c2ae88946 1 Other Other +77afa4fb-030d-4811-a500-f84b044992f6 1 Other Other +77afb537-5200-4614-bcad-9defbea9b376 1 \N Other +77afc91c-c0d8-47db-afe3-27a5c10f76aa 1 Other Other +77afe7f1-f3a9-42ed-b84d-fe202482d0b0 1 Other Other +77afec37-81cb-4a66-98ac-686d75483fe1 1 Other Other +77b0181e-0299-4c37-af4e-0b0431a06c02 1 Other Other +77b03cf0-d293-450c-b066-26889f178858 1 Other Other +77b084ba-a9bf-42b2-be06-39b2f5d5fd7a 1 Other Other +77b08976-16be-11e8-b789-fa163e8624cc 1 \N Other +77b08a9e-63a5-49e7-9ceb-01d1aee7e030 1 \N Other +77b0970f-23be-418c-8bca-f373f93b4676 1 Other Other +77b0a352-f55a-4554-9e5e-9ccfa9b0a371 1 Other Other +77b0d2b2-118d-4ad4-87f3-b583fe65b343 1 Other Other +77b0f191-7662-4ca7-80c8-126309e0d058 1 Other Other +77b11cd6-3441-4e03-8697-4f5fa8cd9900 1 Other Other +77b13d79-4c2b-45ad-aa98-2c99efd2d760 1 Other Other +77b155b7-2480-4598-8ae8-57cbd8af033c 1 Other Other +77b1e9fb-59a3-4712-bc07-5d9b6cecce51 1 Other Other +77b1f13b-b56e-44e3-9eda-93e46bc7ab66 1 Other Other +77b2210d-44c4-4f1a-90df-1ad912481dcb 1 Other Other +77b23a22-13ff-472a-9d3d-a547b930fa9d 1 Other Other +77b245d3-bf35-4a76-9351-8dc946792291 1 Other Other +77b271ae-19cd-4c5e-ab81-80747acc86e0 1 Other Other +77b274f4-1df3-433a-9453-1b7ab13732ee 1 \N Other +77b29d84-01d9-4ef0-8c3d-175d34806759 1 Other Other +77b2a07e-dfc7-4137-a87a-12beb409a81c 1 Other Other +77b2a417-9c63-4484-a14d-962ccfa62abf 1 Other Other +77b31a45-789f-4e0e-b2df-99ffc09ae225 1 Other Other +77b330c7-9e9e-46a6-aba7-41195cd7798a 1 Other Other +77b33e70-97f9-4897-9591-0ca72aab8244 1 Other Other +77b3733e-8b56-44d6-9e3b-8b3999e6c611 1 Other Other +77b3749c-867e-4e36-bd2f-f54ca47aa234 1 Other Other +77b3755a-6dea-4b24-b635-7ef5331d388a 1 Other Other +77b38ae0-5401-458a-8aca-ac04431c8a1c 1 Other Other +77b38d10-61ce-4095-9f5d-1f7ae96cdad5 1 Other Other +77b3b596-d88a-4b99-b545-be8cbad3fd38 1 \N Other +77b3fb92-8af4-4d8a-a806-bf5ed762ca51 1 Other Other +77b46552-5976-4871-aec9-137149e46e64 1 Other Other +77b48fe9-72c3-4c9b-852a-c2880a7d34ec 1 Other Other +77b51089-3d02-46a7-bfd2-e19472e704b3 1 Other Other +77b51a5b-2084-4d96-8c97-06fe9c24ca98 1 Other Other +77b574d3-f6d1-45b4-bf39-15045358fe63 1 Other Other +77b5bf18-eb66-428e-8349-1bec1cce1cd1 1 Other Other +77b5c48a-7632-47bd-8ee4-dfd5f37cbbda 1 Other Other +77b5d27d-243b-48cd-9e5a-f0891fabfdc9 1 Other Other +77b5ee18-705d-495d-8dbb-0eb5415e5091 1 Other Other +77b628d9-c024-45cc-851f-cba85629a04a 1 Other Other +77b645cb-f586-4fc4-8ad9-4daf86a33686 1 Other Other +77b64bbb-5a96-47e3-9117-8df9ec7d00f4 1 \N Other +77b6d80e-3862-407e-b509-681034539e8f 1 Other Other +77b6f001-aa97-415d-afb8-90e1da0a7994 1 Other Other +77b6f272-08a4-444d-90b4-a21e2c578205 1 Other Other +77b7655b-45b0-47cb-93fe-52bd556f774f 1 Other Other +77b7d212-5323-4429-b489-4036bf117fb0 1 Other Other +77b7df78-7e12-428a-a545-55dd7eea160b 1 Other Other +77b815bd-2e66-4dd5-8ce1-8abf0348d34d 1 \N Other +77b81c29-e9a5-497a-b0c1-79a802baf0dd 1 Other Other +77b820f1-27b1-4bb7-84cc-b191ebbd4582 1 Other Other +77b8495e-16be-11e8-a981-fa163e8624cc 1 \N Other +77b8618c-e215-47af-9279-35de17497376 1 \N Other +77b929a7-d3b8-4ef1-bbbf-5c9214350c84 1 Other Other +77b970ed-a14e-428a-a490-789f23663b4e 1 Other Other +77b9b3db-1875-4c5c-82b6-87e7a51d5c89 1 Other Other +77ba120c-5544-4fe8-9ff1-2008e5a28981 1 Other Other +77ba17c4-40dc-426d-9e2f-8d9844e547bc 1 Other Other +77ba5458-88c4-49e1-aa06-13c76bb1e647 1 Other Other +77ba89a4-1845-4d12-851d-4c0e2310170c 1 Other Other +77bb0796-9eeb-4482-ba32-3501c9e8f60d 1 Other Other +77bb6416-362b-42e9-9eed-137a78724e2e 1 Other Other +77bba2ed-729f-4953-9c0f-c7a9ee655c27 1 Other Other +77bbb7d8-e55f-4d28-9036-7b4a803ab11d 1 Other Other +77bbe37e-78fd-482d-b6ca-75190aef7a41 1 Other Other +77bc202c-2130-4aac-b690-5801d13732bd 1 Other Other +77bc668e-2d30-4c55-915a-208c8d047d23 1 Other Other +77bcadd2-95a9-4ab2-abf3-1edae7f25b19 1 Other Other +77bcaffa-9977-471b-9c7d-4382ed31f65b 1 Other Other +77bcb04a-6784-4d22-b19a-c4661a7227b9 1 Other Other +77bcb256-71a9-4740-ad17-7a9a8da1be24 1 Other Other +77bcda89-a8de-4bd2-9f3c-efdc95043464 1 Other Other +77bd1c07-c5a2-428f-9423-ba1de69ffec2 1 Other Other +77bd41c8-1929-4533-93cb-a846a42e870a 1 James Other +77bd53d7-c919-4783-b2e7-e4e0b5f770a4 1 Other Other +77bd5ae5-f645-46a3-a354-1ef91ab476b6 1 Other Other +77bd61ec-9ef5-4d38-9c52-76c11b234dc5 1 Other Other +77bd8cc4-eb9e-49bc-b701-2f96036993b2 1 Other Other +77bdb36e-ec16-4b4a-b85b-65edd2b753fa 1 Other Other +77bdddd8-a2f3-49c7-a940-9c37656c9e7d 1 Other Other +77be0e1b-30ed-4aec-98ac-e42ae34e594f 1 Other Other +77be42af-b5e6-46d4-84ca-b1fe246f7a5e 1 Other Other +77be55ce-2351-4eb2-a7cb-f5938db86f01 1 Other Other +77be91ec-ec77-4c5a-aa8c-bdb5dfbfa557 1 Other Other +77be94d4-ebe3-4bde-8f09-8d1a9cd5ef71 1 Other Other +77bea1c5-0c82-4cb5-82c3-460c908dd37f 1 Other Other +77bed46d-81a5-47f8-9916-86bff0dad945 1 Other Other +77bed81f-1277-47e8-bdd9-2bcfb5980ef7 1 Other Other +77bf41c5-0b76-4268-a996-f4f8a88ffc77 1 Other Other +77bf6e56-81f5-44d8-b988-e742835ef0cd 1 Other Other +77bfc6c1-a98b-4e2b-9836-cc56a75ebb9a 1 Other Other +77c01a6b-3912-4f40-8e3f-64c5c8c088ee 1 Other Other +77c03d70-0d20-4f84-98a0-02971abb868c 1 Other Other +77c04618-5775-4e42-adab-7a9a2f1bfdfe 1 Other Other +77c088e3-1e27-46b6-8579-4d9fcc861aee 1 Other Other +77c11392-666b-41bb-bd37-86f1791ade3b 1 \N Other +77c12e5a-0d31-4797-a1b9-6df745768013 1 Other Other +77c156ef-2ead-40b1-a748-10bc73adf062 1 Other Other +77c18e52-5d47-43f8-b86d-20a1231d4a54 1 Other Other +77c1b4cc-fe6d-4908-910f-98ae8ca5a73f 1 Other Other +77c1e58f-e30f-46ed-a10a-41b87f1e0e62 1 Other Other +77c1fdec-a585-4214-a819-96d0ca4b0706 1 Other Other +77c219f2-5545-40fb-a7cb-f3f1a25f7cf9 1 Other Other +77c22249-22bc-498b-8588-55268bc358bc 1 \N Other +77c2326c-71f5-45a7-b4f9-87246232612d 1 Other Other +77c24063-ec8a-4725-bfc1-b9c4cb8fb951 1 Other Other +77c28ecd-fbba-4186-944e-25658b569e08 1 Other Other +77c2adce-c782-4fd5-b317-6b8717f29b6e 1 Other Other +77c2c4b1-480f-4569-aeca-95dc33fe810f 1 Other Other +77c2d5e4-c9ad-4de2-b34a-37a9eddd99e6 1 Other Other +77c2e513-6269-4daa-a386-dc5d2a7266cf 1 Other Other +77c30a88-dc82-46ac-92d1-190db686c5e1 1 Other Other +77c33214-0958-4a7c-86f3-150d2a68c557 1 Other Other +77c3fd4e-1e40-4735-a773-b5c09b578d3b 1 Other Other +77c402f3-06d6-42c2-80b3-a2ef5bb21792 1 Other Other +77c429cd-ee30-40d3-99ba-55fa9c2faa4d 1 Other Other +77c44fb8-995d-468f-9bee-d71459b0e0dc 1 Other Other +77c453cc-634f-4c6a-803f-64d99221e039 1 Other Other +77c47692-900e-4f23-b4df-a014345204b6 1 Other Other +77c483cf-b6d8-40da-862d-2a5f8a2f5736 1 Other Other +77c4c940-052f-4959-8cd2-1ff8d0812de7 1 Other Other +77c4e8e4-155c-44d7-b962-9d40df4992a1 1 Other Other +77c4fca1-ad6d-4857-b7e6-7db839f1e0ae 1 Other Other +77c5afbb-6078-40fd-a19b-8101ea1a0387 1 Other Other +77c631fb-17d7-496b-b8a0-7efde0ecd0e9 1 James Other +77c67487-d70f-4511-98fd-d7252df18947 1 Other Other +77c6970c-b7b1-4a2c-b512-2a4a1fb3d890 1 Other Other +77c6ab9b-65f0-43b0-b8db-889920b8239e 1 \N Other +77c6d55a-f9fe-4205-9d27-d8a9ac02172c 1 Other Other +77c6f0cb-5e56-455e-9b79-218c89bae3f1 1 Other Other +77c71422-7031-4359-80dc-8ceb9a8a5cc5 1 Other Other +77c750af-e852-4f4c-9782-0ff0623a537d 1 Other Other +77c76b44-3843-4bb2-b112-84ae174312f0 1 Other Other +77c79e19-4bcd-4e2b-b05c-4b1e4d6734db 1 Other Other +77c7cb37-550a-4a34-8f5f-0c81d7601eb5 1 Other Other +77c7cfc5-2fae-4fec-8ef7-074adc20f097 1 Other Other +77c805a1-3033-4b55-a530-8c60955c1e7c 1 Other Other +77c829cc-16fb-4ba5-b013-9f9d7ed78dd3 1 Other Other +77c8398b-4f40-4d03-bef4-25f674e2b985 1 Other Other +77c86148-5fd0-46cc-adc9-bc949d316c67 1 Other Other +77c887b9-e4df-48e0-a452-ec9097733a7b 1 Other Other +77c8d7e0-47ad-4e38-a271-984002d5c813 1 Other Other +77c90646-c5ef-4637-8625-a60613476403 1 Other Other +77c910b0-fd57-4d76-8b0b-c9782143cece 1 Other Other +77c96a24-5bdb-4a6a-92e5-32886eb7ff48 1 Other Other +77c96ba6-8f83-4174-890c-52aabe96e536 1 Other Other +77c989dc-ed9f-4316-ada5-a00e26b9cdf5 1 Other Other +77c9c1fd-9085-4f5d-b342-33fc4d1a7658 1 Other Other +77ca0db2-e2ee-4443-9c4e-1227b43623d8 1 Other Other +77ca2b13-667b-413d-bbe3-56a9006e4a30 1 \N Other +77ca3fe0-350c-4950-9376-b4fad833ef4e 1 Other Other +77ca6709-c577-45d2-93d7-660d253b6136 1 Other Other +77ca7e04-9a9f-490f-99ff-9b2831d447f6 1 Other Other +77ca8a6e-639e-42c2-ad93-56a7190df32f 1 Other Other +77ca8ede-0c99-47dc-b5cc-58d20dd95435 1 Other Other +77ca9dd7-7170-45b9-9b0e-7dabeba5cadc 1 Other Other +77caf7cd-6fa8-48ec-aa67-b6508e553fac 1 Other Other +77cafcae-3522-4505-bfb6-1f81bae4ef60 1 \N Other +77caff06-133c-4378-9a17-f0edc95a81d8 1 Other Other +77cb2382-a02f-47d5-aef6-c9f66d6e1dcd 1 Other Other +77cb5b66-9a88-48b4-b76b-dd2d5a5e389c 1 Other Other +77cb8213-6886-4b76-99eb-2c17fb9cf736 1 Other Other +77cbdcb9-fbba-424d-b8b6-6ab0adb795e7 1 Other Other +77cc2566-d66c-47ca-a9cf-d490dc8eea18 1 James Other +77cc431e-8ee0-4c26-969c-3f7d2ead7962 1 Other Other +77cc4b39-0019-4c45-984b-f8784ba7425f 1 James Other +77cc4d93-2933-4ca5-a880-ac8d92f08aef 1 Other Other +77cc7fc1-0a85-4cfb-8273-a553b7da4ddf 1 Other Other +77cc8bdc-4b35-4867-b8a3-c8e85c27fea3 1 Other Other +77ccb569-d200-4a43-8c34-9a8b8bc78d0b 1 Other Other +77cccb76-94dc-4707-9487-5c0bf480da70 1 Other Other +77ccfa6d-27e4-4144-a0d5-fffe60ca8458 1 Other Other +77cdbc42-c033-4368-a85e-9bc7fe28c285 1 Other Other +77cdf666-d7c4-490a-838a-9ad3351a0957 1 Other Other +77ce3f61-841c-40fb-bf35-31e615636985 1 Other Other +77ced332-525c-4a57-89f7-3da21829f71f 1 \N Other +77cf0d89-3151-45ae-9fb7-dadce1ea436c 1 Other Other +77cf3432-0638-4b48-af7b-56fbe567036e 1 Other Other +77cf525e-c14d-4e22-b38b-d9c345e7a5d2 1 Other Other +77cf564f-feb6-40c7-811e-40d32e2f1e7d 1 Other Other +77cf572e-464b-4544-bea6-11875b2b7e90 1 Other Other +77cf6c7f-0a38-45e9-b55d-7ae2431dd445 1 Other Other +77cf911f-9e9c-4eee-9a2d-306b3d0755f5 1 Other Other +77cfa30b-4ee9-49ac-946d-d6906f4a1a9e 1 Other Other +77cfb782-b5d2-4d18-911c-8153f052efba 1 Other Other +77cfc31c-67fa-46e4-aacd-925a710721af 1 Other Other +77cff3f7-219e-460c-986a-a7c327d78198 1 Other Other +77d003a1-94b1-4d6d-b05d-b69bba0606d5 1 Other Other +77d0209f-940b-405d-8ede-970fdfcc4004 1 Other Other +77d04546-dae7-4578-83ac-2343d09cec18 1 Other Other +77d05dfd-6501-4d0f-a2b3-867ca112d274 1 Other Other +77d0691e-c0f5-460f-bfcf-f974050e0eec 1 Other Other +77d09752-5773-4259-ad3c-9e6573b7c702 1 Other Other +77d0ab3f-466e-4a7a-a531-6868b4bb1076 1 Other Other +77d0d529-e132-4858-9b6d-4ec50dd8a966 1 Other Other +77d10c73-65cb-4512-aa49-3ab32b3c7785 1 Other Other +77d133a6-3af9-4628-9be9-d7f2d4a25d45 1 Other Other +77d18aa0-1ec9-47a4-8ca9-9bb0307dff46 1 Other Other +77d1c9a6-d651-4a31-b154-8c034ced1d02 1 Other Other +77d1e3b5-8ac0-4f1a-921b-bd127351ccab 1 Other Other +77d1f51c-146a-4f3c-a78f-ec1fea432891 1 Other Other +77d1f821-0e16-42d8-8863-28de0fa38133 1 Other Other +77d1fdae-f21a-45bb-bb70-51bd96903f5b 1 Other Other +77d22fa4-bc2b-4b11-a586-c8ef6b94b053 1 Other Other +77d26551-840c-4b32-9171-700dc7b58691 1 Other Other +77d2f46e-4e5e-4d68-bce1-535d52011e37 1 \N Other +77d2f478-b2eb-4925-b18e-984b33a71f85 1 Other Other +77d31462-96fe-4a94-8301-5de08df34d4f 1 Other Other +77d352b2-643f-4320-9122-1151ee4881eb 1 Other Other +77d3e7b3-a5b9-4ab9-9f2d-910f4467580b 1 Other Other +77d3f45a-ba82-4beb-9f81-9e6b05175369 1 Other Other +77d439b3-b251-4a09-a4e2-1a20293175bd 1 Other Other +77d44259-f0e3-45b5-aea5-250ad80c65c2 1 Other Other +77d46502-bc8a-48eb-8cd8-94f86db19a06 1 Other Other +77d4875b-893c-4fc5-a26f-75867bf48d9e 1 Other Other +77d49975-6fae-4676-8700-4f14c6d51dfb 1 Other Other +77d49aa2-a001-4aef-9da0-d35659de327f 1 Other Other +77d49fd1-e584-4e1b-b6f5-9c049a3896a6 1 Other Other +77d4d1fd-4c91-4a9a-b316-0c6dfe5729f2 1 \N Other +77d59716-3bc2-45ff-af9f-41d5cd4c24e6 1 Other Other +77d6472c-dc51-42e1-b158-571a47335109 1 Other Other +77d67882-28e6-4d16-9b8d-07f8f8daed6e 1 Other Other +77d6a8eb-4e01-4170-bc7e-b190ad72ccd9 1 Other Other +77d6b2dc-d529-4264-9145-510df6dd9adf 1 Other Other +77d7852a-cba0-4e3d-aa31-05c35b1d7c5f 1 \N Other +77d7b024-3732-4418-94b6-9f1652aa3aea 1 Other Other +77d7ea71-f401-4914-91f0-1dd7749ad07f 1 Other Other +77d86165-16c3-4abe-99ba-36192ba519bf 1 Other Other +77d868c4-984c-4622-b748-bead7ad0391c 1 Other Other +77d89d7b-4dd8-4dcd-9ad3-6523d45678a1 1 Other Other +77d8ac76-813c-4319-87fd-0f466c959490 1 Other Other +77d8aea3-3296-4418-b3cc-f0b4c40471af 1 \N Other +77d90a2f-f907-4bbe-8280-27d46528f617 1 Other Other +77d92828-7571-4f3c-bf8c-40b7eab79146 1 Other Other +77d975e9-b7be-469e-85c2-cec7f3f34185 1 Other Other +77d976bb-48c2-41fe-9672-a81c857d607b 1 Other Other +77d97dcb-4ff1-4330-8e2a-3b07a417fdd9 1 Other Other +77d9c06d-33d7-415b-a923-558b0e606c21 1 Other Other +77d9c214-b41e-4366-acf4-64ba93d3a2e2 1 Other Other +77d9c57e-32c3-4ca4-a183-8343df401379 1 Other Other +77d9db0a-a075-4cea-b4fd-94f5ea96d2bd 1 Other Other +77d9fb07-b515-4c2f-8d38-ae830b5d6b68 1 Other Other +77da5147-c9f8-488c-96ff-c314a84954fc 1 \N Other +77dac716-ffb4-4428-8d7b-fc55e1950efa 1 Other Other +77dae596-e363-4738-b9a2-3de3fec518b7 1 Other Other +77db0796-ad7b-4d87-971f-944ce5155ae2 1 Other Other +77db13d2-f6d7-490f-9b13-7b207a1fa710 1 Other Other +77db29a4-1758-4ee7-8206-a8c323ec69e0 1 Other Other +77db447f-8c76-4321-a070-715c1c87823c 1 Other Other +77db82e6-fcda-4603-9b99-8440a4fb4017 1 Other Other +77dbf640-bd36-4589-a07e-368aec01149f 1 Other Other +77dc20ca-453e-43b2-a790-1f2155f8ba8d 1 Other Other +77dc6f0d-8ac2-410b-9080-6a4d6e546fb8 1 Other Other +77dcb609-640f-47b0-ab0f-a4be6772b860 1 Other Other +77dcf419-7660-45b0-8d24-7c3db94dcc6b 1 Other Other +77dd3d44-b869-4162-a299-5f2c585f3533 1 Other Other +77dd712a-81c9-4cd8-90af-c65ea7cb7364 1 Other Other +77dd8c73-4165-4b73-90d4-7f944dc0bd6b 1 \N Other +77ddc35a-6be6-4ade-b079-da52a78a9f65 1 Other Other +77ddccac-4866-4ad1-a4fd-3f45889e4ee7 1 Other Other +77dddc36-f977-4f93-8ed4-470569f38df0 1 Other Other +77ddee81-8c7d-464f-bd77-9f5e2c73df0c 1 Other Other +77ddf5e9-4857-4b29-b4e7-54f3abd064cb 1 Other Other +77de0bbb-cc17-4bcd-849a-83e87ab027e5 1 Other Other +77df199d-c269-43c7-be20-0da47b11c694 1 Other Other +77df2b96-d6b6-4a24-b79c-8078e80e04d9 1 Other Other +77df374f-9eb1-4a80-bd98-18532dc4e6ac 1 Other Other +77df5de7-c0ea-4edc-9f06-f5878782ee83 1 Other Other +77df661f-2b25-4e07-b52b-a2e810ae1b06 1 Other Other +77df7571-d3b9-4469-8436-63cd07b824f4 1 Other Other +77df76d2-517c-4a66-bf22-c4e7c9e5fe85 1 Other Other +77df8ee7-f673-45e3-8c24-d80bad1b2a7d 1 Other Other +77dfc361-1dc8-4b1f-ad5f-22b4e011bb1b 1 Other Other +77dfc590-5d3a-4d06-b9fe-894c4d3084e6 1 Other Other +77dfcd00-bd00-4d58-b783-a8333da83b05 1 \N Other +77e00e3a-644e-46ff-88fa-222c07bbf745 1 Other Other +77e01ca5-f5ea-42c5-8323-ba101bf1aebc 1 Other Other +77e04720-2268-42fe-b6e9-56a21c85cd07 1 Other Other +77e08f00-e009-4239-b181-799873985210 1 Other Other +77e09cf1-5551-4ed7-8163-03963032f439 1 Other Other +77e0b232-159f-4c64-bc4d-61910edb09c5 1 Other Other +77e0cce2-193f-43e0-b9f4-3d8a5f0a09e8 1 Other Other +77e0df74-4322-4acb-b965-de4608b7c832 1 Other Other +77e0e8aa-170e-11e8-b8c8-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +77e0f26d-9d08-4ee0-8afa-77ef9d559834 1 Other Other +77e13cac-6e8c-4e89-972f-2f8bc61221c2 1 Other Other +77e152e9-b577-4664-8ac4-9818df84965c 1 Other Other +77e17fc9-5db2-4022-8819-e63e3c65f6b7 1 Other Other +77e19900-4fee-44b7-abde-0bfe3d19e314 1 Other Other +77e1d9fc-af18-4fc8-8195-7d8f7e9fad05 1 Other Other +77e22c92-a3bd-4d5d-8e8c-e749bf220092 1 Other Other +77e23296-4505-4540-ba5b-1a41bf843847 1 Other Other +77e23915-1801-488f-9917-08cab1b840de 1 Other Other +77e26428-2f98-4169-891e-d156f00674ea 1 \N Other +77e27c9e-62d2-4998-a8f9-1a2ee02f4c57 1 Other Other +77e2ab8f-8842-4c99-9150-74f79d812239 1 Other Other +77e2e5a8-8011-483e-b8e4-be2c7aa0af8b 1 Other Other +77e31fa6-4ad8-4a9c-8e43-200daff2f78e 1 \N Other +77e37a26-90ef-44d3-ae64-673155903755 1 Other Other +77e39617-a8fe-4e57-9bc6-e49f64ccb76f 1 Other Other +77e3e11a-ae2f-42c0-9b00-5afcc39338cb 1 Other Other +77e40815-0fe8-4998-b6cb-89f5bf2b43e0 1 Other Other +77e40a1f-84f0-4662-9586-8650baab5160 1 Other Other +77e432e0-81d7-4421-a805-cd083fff165e 1 Other Other +77e44a02-7a86-46f8-8965-673367c1bcba 1 Other Other +77e44a13-a098-4af1-93c8-90b2a8e5b9b6 1 Other Other +77e45d9a-2039-413e-9822-175293b0a7e7 1 Other Other +77e4a379-de36-42c2-ac5a-cadd7aae9817 1 Other Other +77e4be54-44a7-4bf0-9aab-4ae5e95ba4bb 1 Other Other +77e54fdb-021b-4978-9892-6af86cc5cf01 1 Other Other +77e571df-df89-404a-8ad7-1b4e756cf817 1 Other Other +77e5a05f-ac43-464c-9862-d93823e109e6 1 Other Other +77e5c8d3-f45b-44af-a1f4-cb44c576eac7 1 Other Other +77e61e29-0eaa-48e6-9c9f-056668ea9881 1 Other Other +77e6839c-5ee7-4e93-ad4f-010b68370dae 1 Other Other +77e68c5b-35ac-4b70-bc38-79e569ea17b3 1 Other Other +77e6a5c4-bb23-4f57-b9fa-cbe3dcf24374 1 Other Other +77e6c128-b34b-4040-8dfb-b9b1ff12d9bc 1 Other Other +77e6e7a1-d9aa-4fab-bf52-461f51cacb11 1 Other Other +77e6f37b-8898-47cb-b7d0-dd3120cdbf7b 1 Other Other +77e72cc7-542a-4f9d-a76f-2cd85ef04f33 1 Other Other +77e73612-4baf-4327-9ea5-c38847ad88c7 1 Other Other +77e7539e-5ce3-4d3a-8bdb-c1136e7aa158 1 James Other +77e79bb5-9735-494a-a447-069dc889aa01 1 Other Other +77e7c3bc-5475-481b-af64-1ed834beec16 1 Other Other +77e7e5d5-f217-4afa-8711-717d83736845 1 Other Other +77e7fb44-2fdb-4143-88f8-81c9085c8bec 1 Other Other +77e85000-f2aa-4a3c-aeb1-7d2a6a640839 1 Other Other +77e8749a-b0bb-49dc-a4f7-efa21e311bb3 1 Other Other +77e89115-0eff-4a7e-8ac6-a0eca4f21d67 1 Other Other +77e918af-fa08-41a0-8fc9-245f83949553 1 Other Other +77e99e39-321c-43cb-b8b5-b83e59863409 1 Other Other +77e9a6a2-79db-47cb-85bf-0dcc67bef3fd 1 Other Other +77e9c312-3d78-4e57-98c0-d83898c3ab9b 1 Other Other +77e9c42e-24da-4e06-806b-2276da63a872 1 Other Other +77e9e804-be4e-4798-a821-36d0a4d12189 1 Other Other +77ea189b-8426-4d17-8a1e-c31681b5dc36 1 Other Other +77ea4909-8fe3-40a9-9ce5-2a4e1865eeb1 1 Other Other +77eabf16-adab-4d8f-9cb9-de2887827841 1 Other Other +77ead37b-d86b-4a6a-ab6e-5d365148c6fd 1 Other Other +77eb6d93-27bd-4b64-a94c-189c97fade64 1 Other Other +77eba76f-9016-4f82-817d-985d3fe15061 1 Other Other +77ec0702-55d7-43d1-a988-551325621a2a 1 Other Other +77ec1925-ced9-46b2-8426-862f691b0db7 1 Other Other +77eca646-5a00-4fcc-97c2-40b37ebc49cb 1 Other Other +77eca746-1e43-421e-b43a-7bbda57f8a5a 1 Other Other +77ecda47-57f1-48e6-97d1-12f1e68755df 1 Other Other +77ece529-12bb-444a-aec7-fb055aa414ef 1 Other Other +77ed205b-a700-4769-b969-9422fd201017 1 Other Other +77ed370f-d464-4a34-90a4-4bf3eb9a1436 1 \N Other +77ed4a03-b0d2-41ab-98e6-faf50cc8e32d 1 Other Other +77ed4e06-3317-4f0e-bf9e-97daf2617be4 1 Other Other +77ed62e5-b034-49f0-8a6d-f1f694b40dd4 1 Other Other +77ed8b34-b6f5-46ba-bd01-5e284ca0bd43 1 Other Other +77ed8bf3-de49-44db-bddd-fe43ef08964d 1 Other Other +77eda75f-e2bf-45df-9151-75d2b7579269 1 Other Other +77edac63-983d-41fe-bd29-40aac16395bb 1 Other Other +77edebdc-311a-4dd4-bbfe-2f26018559ee 1 Other Other +77ee6bfe-9576-418a-bfe5-c1d9742be4fd 1 Other Other +77eeb076-9b64-4302-9e49-c12d7c19919c 1 Other Other +77eec12a-111f-460c-8750-2bcb3cfc23f4 1 Other Other +77ef07c9-5899-4cb5-9804-d44b5af9a048 1 Other Other +77ef15f4-fcf3-4333-8c3b-a5e515e1396f 1 Other Other +77ef2e08-8870-45c3-ab34-1e6f0b39f371 1 Other Other +77ef2f22-220a-47fd-9a81-066107abecb5 1 Other Other +77ef3748-e9d9-416e-b1f7-0586e314ae29 1 Other Other +77ef418d-9bb5-4279-ac9e-ea336f936ba0 1 Other Other +77ef7dbd-7204-4e33-881a-33631bfa1df2 1 Other Other +77ef8814-c89d-47b8-9a3a-a4207dad9aa0 1 Other Other +77efb3bd-8036-422a-9dfa-025ed3feccb3 1 Other Other +77efdf96-b591-415e-9200-64a6d40210ce 1 Other Other +77f013d1-6531-4400-aa79-f85f679b7de2 1 Other Other +77f0508f-7db7-4213-9bca-0ec450e88a29 1 Other Other +77f067d9-cc06-4432-b097-f623604bd1ce 1 Other Other +77f09653-0301-4996-8ef8-05ea80539d5d 1 Other Other +77f0ed6b-3b8f-4213-952d-2ec5e8ceefb5 1 \N Other +77f110fc-d89f-443a-a434-b98f6ea2f631 1 Other Other +77f112ae-021a-49ee-aa0e-611dc2125fd2 1 Other Other +77f12b05-91c5-46ee-98a7-83721feb3453 1 Other Other +77f12fb8-1cec-4e07-8cca-12ec66f74f26 1 Other Other +77f13a54-1199-4fca-bb2f-198156b08a17 1 Other Other +77f14c70-a16c-401f-b576-d8a974e1da9a 1 Other Other +77f1565e-cc12-4260-81ee-4e4c73f56f83 1 Other Other +77f17066-ea12-4302-8466-85d944628f64 1 Other Other +77f194e1-5285-4285-9789-41f7d2706d46 1 Other Other +77f1d5f2-4df6-43fb-8537-130241faaa97 1 Other Other +77f219f5-00de-4606-a9b0-4f1da662e119 1 Other Other +77f21fad-7673-4259-8c25-2637cc86e623 1 Other Other +77f22a65-82bc-4fde-abed-29adb060507d 1 \N Other +77f250f5-fb66-40df-bf5e-68ed6890b06e 1 Other Other +77f25fff-c823-46af-a293-23a8157ca2a5 1 Other Other +77f28d5b-bc11-44d4-80e0-5fa55c387bcd 1 Other Other +77f28e3b-5167-4c11-b9a8-a9bc88a0ca7a 1 Other Other +77f2ba55-31d8-4221-ac4b-a5b4dc16bbea 1 Other Other +77f2c540-5211-497e-b794-9e0e19f9ae75 1 Other Other +77f2e9be-ded7-4563-9fc7-9503c2a51bd4 1 Other Other +77f3328c-6166-48ed-95ed-905428760abe 1 \N Other +77f33d0f-2af8-4d73-ab99-0f9b519a421c 1 Other Other +77f3a49e-0526-4698-82aa-1ffed62624e7 1 Other Other +77f3b319-1ebf-4b73-8e8a-534ffc6721db 1 Other Other +77f3ffcf-5a6b-4d3d-80e8-586e65d11234 1 Other Other +77f4650a-9bbb-4600-bf66-f896dae807ae 1 Other Other +77f57f38-1fa6-46b8-a096-e3c37b0e5e5f 1 Other Other +77f5b9f5-9e41-41db-a167-fe212a6f8a17 1 Other Other +77f5bef8-0cb8-4f35-bd8d-d021bc5af23d 1 Other Other +77f64b86-c4a9-444f-af26-d4c24f2b8c9f 1 Other Other +77f6bf67-2baa-4015-90b6-bf7a84f686a6 1 Other Other +77f72bdc-51bf-40de-92c9-86aa6a20e52f 1 Other Other +77f74624-5979-4b76-9949-3df703a07d0c 1 Other Other +77f75106-12f8-481b-8398-893f46697473 1 Other Other +77f75eab-8f35-4f63-b8fb-36da0466b669 1 Other Other +77f7b040-73ef-4bcc-9833-0670b8d9983f 1 Other Other +77f7b6d9-74a6-4c9a-9beb-4615b979fadb 1 Other Other +77f7cb23-95cc-48ff-92e6-840323c4f13f 1 Other Other +77f7d54d-ecd4-46c4-9535-82ff27fe1773 1 Other Other +77f7f889-d3cf-49a2-966e-6a786352f118 1 Other Other +77f8b77b-632d-40a0-b574-788cc0a16043 1 Other Other +77f8cf25-ba79-4e08-b13b-0630cddb83e9 1 Other Other +77f92c07-b25d-43b1-ae9e-d692d556d333 1 James Other +77f97154-40b0-4d34-a7b5-c451f44000ca 1 Other Other +77fad715-04ee-437c-b69e-27844adb0b09 1 Other Other +77fb07b9-1d96-4b37-9cb9-0385ea040237 1 Other Other +77fb0f3e-5ddb-4c40-a78d-7fd676638f47 1 Other Other +77fb3262-cf3e-4b77-ae1d-725bd87b4116 1 Other Other +77fb62d3-2953-46db-a852-8880bdfbe4b7 1 Other Other +77fce21f-19e0-4f4c-99fc-bbcc5708051b 1 Other Other +77fd124a-2dbf-4f32-b463-6d09d4f55fa7 1 Other Other +77fd25c3-b925-4467-9faf-5f4e2e160928 1 Other Other +77fdc19d-6f46-4bdf-8c8d-bca88dc05cd1 1 Other Other +77fdc774-9021-4811-a307-df03d8ba6545 1 Other Other +77fdd2c0-0b5c-4cba-a948-2871f2ea29b4 1 Other Other +77fde379-444d-4c92-9663-8af8b54a5afe 1 Other Other +77fde41b-2410-45c8-8b77-7df1c3b9cb5f 1 Other Other +77fdfa0c-09de-45d2-bcd8-3329f43013c6 1 Other Other +77fe25aa-0f44-4fb2-9810-ba065d0eae1b 1 Other Other +77fe2ca4-e83d-46ff-9e93-8dea44797c8e 1 James Other +77fe4f02-9f31-45d9-85d1-b9ee8a736fdf 1 Other Other +77fe6175-7479-466a-9fa7-4941b643bc69 1 Other Other +77fe6fc0-9c4a-473e-aa7d-f3b69e1db30c 1 Other Other +77fe7445-4328-4fb7-9b74-ba42b76d0d88 1 Other Other +77fef37e-bfb5-40d3-9a04-0d4e299fc416 1 \N Other +77ff1508-7f21-4153-bcb7-c7f0f4b940f6 1 Other Other +77ff79c8-5020-423b-96c0-85e63f25331b 1 Other Other +77ff945b-bcac-4354-a385-38a6f59fa9ea 1 Other Other +77ffb8e4-01ae-4bea-a912-c635f5cd4081 1 Other Other +77ffd217-a0b9-485f-bb4a-fbe4c7054cfd 1 Other Other +78005f38-ba88-4848-b6be-29e4a72fbd98 1 Other Other +7800644d-1bd5-4b9b-a421-16973bf62664 1 Other Other +7800a459-a75d-4866-8004-588a3689d7b0 1 Other Other +7800b4ea-c0e8-4ae5-862c-55e325ea08c2 1 Other Other +7800d73c-ee3f-4a3f-82b0-0cbec0cf8790 1 Other Other +7800fc0c-9cd7-4986-ab5f-1f96a338e891 1 Other Other +78016c5d-6ac4-4620-b5ed-d7871ec4bcc9 1 Other Other +78017361-dcc7-4921-89e3-ec1f8c439321 1 \N Other +78018797-23da-4f8b-bfb7-1234b9ba5c7e 1 Other Other +7801d9fe-bb13-4bae-8436-e26d6113a574 1 Other Other +7801fbdc-e40e-409f-8b09-65d87ad1f3bd 1 Other Other +78021e1d-f956-4498-98bd-42f1688c896a 1 Other Other +78022937-0154-4b01-93aa-eeb359ad3faf 1 Other Other +78034746-f762-461d-bf45-5e54c27ee993 1 Other Other +78036a6c-2363-49e0-ad19-fea1946647d2 1 Other Other +78038c14-e070-4596-8b2c-556385d00700 1 Other Other +7803bd8a-bd04-48cc-9db7-9141aebab127 1 Other Other +7803e0ea-d7da-4aa3-be0f-a62e29b514b0 1 Other Other +7803e800-f240-41d1-8ffe-65af58630e23 1 Other Other +78042014-d1b2-4313-8635-799056fd289c 1 Other Other +78042ba4-e278-49ec-8210-19c4ff10c11f 1 Other Other +7804b1bc-b7f7-4464-9000-186c1c3134f7 1 Other Other +7804b706-e76d-4a16-9fe3-d24c9a1df0ee 1 Other Other +7804d4c7-a513-4096-a87a-15f214edca81 1 Other Other +7804dbbb-950f-4c75-8433-e46372e539f4 1 Other Other +78051c23-95b7-4a58-ac1b-3412db00bb4a 1 Other Other +780540ba-ab9e-40df-9c8c-82246374a025 1 Other Other +78063194-e016-4d10-8311-a98cd1ae7061 1 \N Other +7806781a-e60e-489e-8fc6-d312dfce1e0e 1 Other Other +7806e9d4-bcc1-415c-8989-ea943bbe8409 1 Other Other +78070a0e-d24a-47a9-bb6c-5821e60225be 1 \N Other +780728ef-773a-465a-842c-33e674fab014 1 Other Other +7807311d-ae7d-453f-9a81-f802a631544d 1 \N Other +780733f8-4edf-4de6-bc1b-341c86d21090 1 Other Other +78073993-524a-452f-a36e-2de73d7df8c8 1 Other Other +780772a1-3bf9-4d34-844e-428b10310b7e 1 Other Other +780777a4-89dc-4549-8f83-d79f7b89b867 1 Other Other +7807a0a3-7553-4ec0-aff2-a02bdd3b3c4c 1 Other Other +7807b13f-6443-4fd9-9ea4-2309228e62f1 1 Other Other +7807d37b-5ca8-4da1-b0f8-7385b72e60e7 1 Other Other +78082cce-26be-456d-b6ce-57b29a18858c 1 Other Other +78083eef-b008-4a6f-986c-11d2d65a8ef6 1 Other Other +78086a7b-1358-43a1-9cf5-509c7b8bebe0 1 Other Other +7808dd65-5323-44c4-9b04-aec51daf9ce7 1 Other Other +7808eea0-cfc0-46f3-b9d0-a4ecd498f7d5 1 \N Other +7809752e-b690-47d3-9cbc-1eb867458988 1 Other Other +7809977e-1286-466b-be57-ac2828a095d7 1 Other Other +7809b9c7-91ba-4f84-b6a8-848be633c4c5 1 Other Other +7809f98f-a39f-4fba-9f79-eb4634a42a5a 1 Other Other +780a3270-6ddc-455a-b100-325320159fe0 1 Other Other +780a640b-2e32-40ac-87e0-675fdf3d70ba 1 Other Other +780a7303-0116-4f20-ad25-c3fc4d138378 1 Other Other +780a9359-9d5b-4380-95cf-bceca39705c5 1 Other Other +780a9504-cd82-4ea1-9326-858639c039b7 1 Other Other +780aebdd-693f-48ea-b434-a4e7594a2801 1 Other Other +780af828-5e00-4398-87db-563bbd494100 1 Other Other +780ba3f5-d911-48b2-8d92-d3525b521290 1 Other Other +780bdb68-9f74-47ef-af94-30ed123446e8 1 Other Other +780c0e15-596e-458b-bd38-4c45924bd7e0 1 Other Other +780c10be-90b1-438a-814a-7fd76d36f54e 1 Other Other +780c2269-54c9-4e41-b489-7df19d632706 1 Other Other +780c492c-5a36-4c13-be39-faa48cb2d74f 1 Other Other +780c84e1-7a5a-4523-8858-abf85dfa7cd6 1 \N Other +780caad1-84e7-4bf7-a4fe-f7076afdae50 1 Other Other +780cec16-6572-479a-9759-ea7498687ffd 1 Other Other +780d3992-0b22-4f5d-a87b-ac987fad68f6 1 Other Other +780d3d1f-1257-44db-9a00-24e674dc6f12 1 Other Other +780d6b49-419d-4f64-bb87-02011da4e42e 1 Other Other +780d7a08-e45f-40ad-8b43-605758a743bb 1 Other Other +780e0800-961e-4d6d-9e45-8d3250bdc885 1 Other Other +780e4fd4-829b-4f84-9e03-a74b1557ef97 1 Other Other +780e8f1e-7f75-4578-933f-d4cf6555547c 1 Other Other +780ec0c2-700c-4cae-a635-3f1db5b25602 1 Other Other +780ed9ae-f4e2-40f6-8909-9adc3d858fd9 1 Other Other +780f7a57-f1be-4c73-ac36-8a1eedc0aa50 1 James Other +780fa551-9a52-4ca4-97b3-a9e24d471573 1 Other Other +780fd2e0-d8d5-48c5-a886-84adf67da9ed 1 Other Other +780fdac3-bc33-4146-8ec0-98562215dbed 1 Other Other +78100222-cc05-4414-b18d-efbfaf315b66 1 Other Other +781006e4-c497-419a-bfed-2d62433f88c6 1 Other Other +78101299-1cb8-4879-9a4e-799b862229a2 1 Other Other +78102dac-e412-45fd-a392-492a5098ae93 1 Other Other +78103abc-0766-49b2-af5a-340877e8fbe7 1 Other Other +7810463a-99bb-4958-9b38-7500dc8e7e73 1 Other Other +78109959-7354-4013-a02d-b7346d98fd08 1 Other Other +7810b8af-5d7a-4724-86bc-7c3ce9c9776d 1 Other Other +781110ae-38f6-49ed-bb66-9b3c2d16a6c1 1 Other Other +781122dd-dcf3-429b-8525-22758a60a6fe 1 Other Other +78113bc6-c07c-431f-be13-f6871ac31696 1 Other Other +78114eee-9268-48b3-a85f-7839b441933a 1 Other Other +7811837e-ebc7-47a1-b487-f250a6a80610 1 Other Other +7811a473-3c08-47b2-b811-da4d444e2b0b 1 Other Other +7811f6d7-a060-4592-8b00-6eb56f44fb72 1 Other Other +78120274-6d3f-4e32-a8d5-5b2731f636f3 1 Other Other +78120bdb-9d71-422f-9240-0a21c016cf97 1 \N Other +78120e3e-12a0-4ce4-b06e-74789f7f11d0 1 Other Other +78132235-a671-4f4d-b776-f5e23e1fab52 1 Other Other +7813da31-99c8-4db6-8a72-db3b9b8cbcef 1 Other Other +7813e34a-62e6-49b6-80b0-9e786b3e1251 1 Other Other +7813f4fb-5a21-4ea1-902c-a91d78ba751f 1 Other Other +7813ff6d-9b2d-47a1-a53d-4ccf0fd89ce2 1 Other Other +78140f95-bb55-4b92-9314-de2277a4067c 1 Other Other +78141d81-5938-4042-9499-7e985b68a9c4 1 Other Other +78142b9e-cfd0-4355-bc49-2073da280ea0 1 Other Other +781459c5-e131-425d-a3f6-dc166164eca8 1 Other Other +78145e97-e22f-4f0c-8d2e-04349cb1b8d6 1 Other Other +7814c420-242f-4694-a56a-c93276ecfb97 1 Other Other +7815b605-4b65-441c-bf56-b3d180fb20f9 1 Other Other +7815f853-aa12-4075-83a5-c130ace038c0 1 Other Other +78164153-8a0c-4d5e-b1a3-6920542c6a9c 1 Other Other +7816668a-7951-4f5e-a4fd-fc58934b83e5 1 Other Other +7816b20d-7fd8-4c7f-97d4-49478f85bd68 1 Other Other +7816c718-563f-46b9-bd5a-96c6a26ef5c7 1 Other Other +7816d4f9-f6a6-4619-98a7-b12d472b603f 1 \N Other +7816e352-e1ea-4d1d-96a6-ad709aa95db8 1 Other Other +781716ae-6027-4311-a166-c6982c61b6c1 1 Other Other +781730a9-9286-4ff0-82dc-54932a032457 1 Other Other +78173613-c68d-4412-917c-6e3484193278 1 Other Other +78178af0-6dcb-46e7-b200-6d5921794e08 1 Other Other +7817a147-f368-453a-b16e-f55152e568eb 1 Other Other +7817b9ae-e3cc-4bcf-951d-a4a208b1803b 1 Other Other +7817da5c-6725-40d2-a0f9-567f65d31c3e 1 Other Other +7817f6ab-1347-48c9-9ba7-f258360f630f 1 Other Other +7817f811-810d-4ca6-a722-359d41e54936 1 Other Other +7817fa1f-270d-41d0-830c-93719cc87657 1 Other Other +7817fa88-57be-4363-9b03-6dcba4dbffae 1 Other Other +78183da9-d34d-4fbb-a386-b3dcb73b3b2b 1 Other Other +78184d9c-ea85-4bc2-aad4-5e45596e992b 1 Other Other +78188be9-19ed-4190-b6ff-0365dcb566d8 1 Other Other +7818946f-e0e8-4268-85d6-48379e8ad46a 1 Other Other +78189985-6c00-4ad3-8350-2b48e291c166 1 Other Other +7818f4f6-2306-4004-8e1f-bbe2635cdf35 1 Other Other +781911f2-1ca0-4391-a2bc-09bb3f6bd509 1 Other Other +78194dea-6ecd-44bd-81ae-c595372f8600 1 Other Other +781954a9-5e57-4e54-8828-1f226eefd564 1 Other Other +78195c8a-ce66-48ce-9483-99d86ec28a3c 1 Other Other +7819bb38-e06b-40ba-ada5-33689fdca1ca 1 Other Other +7819c0f9-e39e-49f2-a9b0-103f7dd93e24 1 Other Other +781a4d18-3bf4-45ea-894f-45317c832580 1 Other Other +781a5793-8755-453a-b6bf-f42bce110d57 1 Other Other +781ae898-be38-459c-8990-7c2b11f5d6fd 1 Other Other +781b0a74-955b-423a-bcf8-166412c3af86 1 Other Other +781b3f56-8db5-42bf-b380-74477229d60a 1 Other Other +781b6eb7-ec7a-436b-9dbe-cc87cd939033 1 Other Other +781b7c8a-fc74-4d48-9cbd-060ef31c0c4c 1 Other Other +781bd2f2-d6ab-4301-99e7-13b38f4cea59 1 \N Other +781bff50-973d-48a9-b451-62432fcded70 1 Other Other +781c1bd7-3e99-4b1b-b2c4-3baca9391c58 1 Other Other +781c1f0f-2b39-4732-8711-30a08889576a 1 Other Other +781c71ec-a10b-49e6-8113-aca9bcdabc47 1 Other Other +781c882c-80b4-400d-a71f-c5bda4ecc2c2 1 Other Other +781cac2b-11e6-4bb2-aa7a-8e82a20ba6cf 1 Other Other +781cbb29-8cb0-4ca3-ad79-fad138c9e245 1 Other Other +781cf78a-3f35-4221-b5c6-0474a8d80043 1 Other Other +781d03f8-273c-437b-a8ab-e092b3bdafd9 1 Other Other +781d0647-17b6-448f-93dd-7eaf0b0c2762 1 Other Other +781d1c00-6253-48d3-8e96-f1ecb5fbe9f9 1 Other Other +781d2a79-7d52-4b7f-894e-bd50b01f5450 1 Other Other +781d30ad-1c80-4cfd-9062-178989c16aaa 1 Other Other +781d315c-6544-4678-b67a-59fde4d2a40a 1 Other Other +781d79f2-1d1f-482b-acc6-b69ef40ed4bc 1 Other Other +781d964d-7acd-4a78-b5b7-0c09e585b633 1 Other Other +781da0fb-f559-41d7-9682-1321308e2ec8 1 Other Other +781da735-28a3-4dab-95df-2480dda1aea5 1 Other Other +781e2038-3f8a-4752-bee3-bb434272cae0 1 \N Other +781e3928-66f1-4ab6-8ed0-85f63d0cbbae 1 Other Other +781eb7a7-be4f-4fa8-95cb-db20c36ce2fb 1 Other Other +781ef72a-26f0-400a-ba1b-14aea6abcfff 1 Other Other +781ef8af-c3e4-4566-b005-1f4f498cee7a 1 Other Other +781f55fa-9e1b-4deb-abd1-1a7b960185ce 1 Other Other +781f7b5d-ffcc-48cb-8dbb-dec4be0041ac 1 Other Other +781f8334-9d2e-4b8d-8aba-487a00ea9471 1 Other Other +781fc55f-69df-4c19-a177-7a81c68f70c2 1 Other Other +781fc608-6f95-45c1-a672-3e87e8f9435b 1 Other Other +781fd22b-ecf9-4efd-b54b-ef76f374d980 1 Other Other +781fe359-c11c-468f-b824-39c6ade05506 1 Other Other +781fef73-999d-4ff8-bbef-2ca19a82f06d 1 Other Other +782030a6-868c-4127-8a25-f40000b01bbb 1 Other Other +78208b3f-80f8-458f-8699-94902826cb16 1 Other Other +78209d44-c431-46fd-8a9f-d0a8405c1cf7 1 Other Other +7820b2bb-c820-44f5-a501-c0ff7aa8b06e 1 Other Other +7820bb7a-0353-4e6c-88fa-c507d47c1bbe 1 Other Other +7820c0f7-75f3-48e5-9082-c03529cf821f 1 \N Other +7820f7a8-233c-11e8-ada0-fa163e8624cc 1 \N Other +7820fa70-ee4f-4622-8589-fed41aded5e1 1 Other Other +78212820-5865-4cfc-9e7c-4c0759fa613c 1 Other Other +78214ba2-c3eb-4563-a481-bcb3d775de70 1 Other Other +782162c4-a62a-4d42-aa0f-00f48886db5f 1 Other Other +7821cd7a-373d-439b-ad30-fab12a172709 1 Other Other +7821d3c9-cf73-432b-8258-82317aa1b613 1 Other Other +7821f2ec-77fe-4f63-9dd1-0181640cc727 1 Other Other +7822382f-6031-4a25-bc75-cdf69ad62213 1 Other Other +782248ef-7f94-453d-bd01-7f0f80ddbc54 1 \N Other +78225c10-af53-4133-abf5-b71a9c429188 1 Other Other +7822a369-4e0f-47a1-9cb2-ebd52200683b 1 Other Other +7822bb1f-f41b-4647-8bcb-015375379d9f 1 Other Other +7822bfdd-fd23-424f-aca4-cc814bcb23c7 1 Other Other +7822f482-a9b3-4ed0-9871-ae65fb9579ca 1 Other Other +782324f8-8a71-4e8e-b5e5-94fef61e9b50 1 Other Other +782346bb-6b99-4b3b-80f7-9a82da08cb0f 1 Other Other +78236d44-1d62-407b-905c-6701ff3256cb 1 Other Other +78243492-cd14-44c6-ad88-f15b229284c2 1 Other Other +78243792-ef6f-499c-a944-3107ccdf16e0 1 Other Other +78244097-459d-48a8-84cd-e40122dcb2ba 1 Other Other +78244179-6580-4068-9abf-c79b38a326aa 1 Other Other +7824467e-6a09-470e-a9fa-fc444bb16e2e 1 Other Other +7824d299-dae5-4bc7-a609-f954c65adb7d 1 Other Other +7824e086-ab57-432f-95dc-d03b751c66aa 1 Other Other +7825009e-8f57-482d-9ebb-606dbee9d637 1 Other Other +78251d42-46d8-4d65-afb5-d1b5461eb850 1 Other Other +7825fb7c-a82e-4fc3-9121-50a0f60e5ec1 1 Other Other +7825fdec-1b67-4793-8c26-5c00f000729a 1 Other Other +78260de9-6b1d-4dfe-864f-0d9bbb9d98af 1 Other Other +78260f40-b390-4ff6-94a2-d26eaf1e0a9a 1 Other Other +78262f1f-f297-42a0-b2c5-cc336f29602e 1 Other Other +78268418-8a5f-4e03-bfb0-bbd1d3d81a9c 1 Other Other +7826c602-7348-463e-bae7-b3921a54054f 1 Other Other +78271919-2bf8-470a-8263-5f767d0d18a8 1 Other Other +7827238b-2cce-480e-afa3-f2e636b157f5 1 Other Other +782731b8-71ec-465d-ab4c-422bfff6220f 1 Other Other +7827c90d-9db1-4b76-a663-ef58bdb6a329 1 Other Other +7827dd6a-7a96-405d-8a57-96374c3ac53e 1 Other Other +78282e43-bf22-4a12-80f0-bf0e0fa7e118 1 Other Other +78287aa4-aaee-4538-a573-aac7629b5d3a 1 Other Other +78288251-eeff-4dd3-9a2d-0b879caf725e 1 Other Other +782892b9-dbcf-4087-b1cd-e4151d377417 1 Other Other +7828eb72-854d-4aef-898c-8d1a15e59795 1 Other Other +78292554-547c-49c1-934f-7373bf568dd7 1 Other Other +78296ce9-8cf8-45b4-9b97-091949affe00 1 Other Other +78299eab-d507-446e-8f07-c8eadb0699bb 1 Other Other +782a05e4-a2d5-45dc-a04f-c3dcc854fd5d 1 Other Other +782a0ec8-9079-4b49-9579-05f9103204ed 1 Other Other +782a2eb3-a5ff-4783-9b61-163667bfc6fc 1 \N Other +782a3bcd-a87a-45f5-bad4-0565632aa267 1 Other Other +782a5850-662f-47cb-afcb-ef37d4b7e8fa 1 \N Other +782a9624-9565-485b-acbd-b152f83750db 1 Other Other +782a9b50-6f1f-4e62-b406-b133ad1eec7c 1 Other Other +782a9bb8-c9b0-4f78-9fd1-bde3dac7aa2a 1 Other Other +782ad6b3-7f7e-4578-9539-6c5f348f78ca 1 Other Other +782af577-5556-4595-b3d4-eb609be9a111 1 Other Other +782b0361-9d68-4dfb-b27d-4a8f8ad5a6be 1 Other Other +782b16b0-c331-4ce5-9cc2-be5f4c351a8d 1 Other Other +782b36ba-a751-4d5d-85f3-004a6aeadf89 1 Other Other +782b6aab-9497-4e79-b4c0-53e28f409471 1 Other Other +782beb3b-962e-4013-8394-ea43a09a2b3a 1 Other Other +782c0d60-c43a-47ea-86be-c5f36e7a867c 1 Other Other +782c2d2f-cf8d-42db-8ee4-e7480fa6bf72 1 Other Other +782c3317-4f14-48f0-83d1-d1f16a010a2c 1 Other Other +782c6ad9-4d20-4508-bc2d-7b662a5aed9a 1 Other Other +782c6da1-55a1-45f2-93ee-17acc98d696d 1 Other Other +782c799f-53cc-4539-b9e3-10d0cf2958ab 1 Other Other +782d1fb2-6d26-4947-a68a-eba352ca2273 1 Other Other +782d3a11-b407-428d-85eb-96aaac613037 1 Other Other +782d432a-c44f-4ce5-891b-6aed95be6739 1 Other Other +782d679f-4fb1-4c56-a4d5-b0e81a7dabe1 1 Other Other +782d7e78-d1b0-4d3a-a1ab-f0af7f1d6d34 1 Other Other +782d8506-ca99-4ccd-8a26-5d643bcb5c9e 1 Other Other +782e05ac-de54-4626-b864-cd48e23f811b 1 Other Other +782e27c9-59f9-4e30-80ec-52f212c651b3 1 Other Other +782e4b98-539c-11e8-928c-fa163e8624cc 257f6774-64eb-11e7-954b-fa163e4dd901 Other Other +782e4fd1-5a01-4402-bfe8-afff04929669 1 Other Other +782e7e2e-884e-404b-95bd-6a91c94a36dc 1 Other Other +782e9021-a63f-490a-85dc-fc7b38fea578 1 Other Other +782e9055-1d6b-4678-a921-ca94f099d320 1 Other Other +782f4d35-560d-4d23-96df-54d29f8d371e 1 Other Other +782f5c12-183c-4ec3-9ae3-eb32d52e704e 1 Other Other +782f88d4-3751-4ed8-b338-b5e5f8654242 1 Other Other +782f9a0d-98e3-4e67-aeca-8885ee669b2b 1 Other Other +782fba73-480d-4e5b-80c3-4767faaa5fb2 1 Other Other +782fc95a-48e2-464f-be45-f628147b1fe4 1 Other Other +782fd38a-ce23-4cd6-aa3b-ca3da9bc991e 1 Other Other +782fff91-9e5c-418d-ae96-97997c2e0a6e 1 Other Other +78301694-2468-4211-b751-a031f4f9462d 1 Other Other +783025c2-8e64-4ee4-b3b3-f0c0e34d073d 1 Other Other +783028d3-bb1c-4ff6-9991-dcb7e9f3dd3f 1 Other Other +78303b45-18ec-46b4-b603-c7230a7916dc 1 Other Other +78307193-26f7-476c-a5c7-50c21063a154 1 Other Other +7830d5bc-f217-47cb-bec9-4ef75f6b9c9c 1 Other Other +78313443-0bea-495c-a272-3ff7df194147 1 Other Other +78316005-5311-42ec-8739-afc146fdfb20 1 Other Other +78316fec-2790-4309-8c0c-41fbdb342409 1 Other Other +7831873c-ece9-4e01-8391-e7bfbc7aa272 1 Other Other +78318f43-c81b-4c5d-af08-90b24d9f2ce9 1 Other Other +7831977b-66ab-4348-ba7b-d5d593c5e507 1 Other Other +78320b7b-e698-49d2-be54-12fa1a315ce4 1 Other Other +78323b77-a462-4690-b2c5-07bb40bb93d0 1 Other Other +783290a9-fdde-4e83-9c73-aef8d1568358 1 Other Other +7833475b-baf2-460f-823a-578f89b031ee 1 Other Other +78334e8b-cad9-41e0-a1dc-c4177e22b486 1 Other Other +78335d49-ff7b-4854-b079-50beab705882 1 Other Other +78335d8c-8088-4309-86e3-4b9749a22834 1 Other Other +78338605-36ef-4985-a568-3bd258ffc224 1 Other Other +78338fa7-7832-4c39-8319-adf90856b357 1 Other Other +78339500-df3d-42b4-a908-2e873f0a5918 1 Other Other +7833a13c-27d9-43a7-af76-fc5032afaef4 1 Other Other +7833d802-004d-4372-9ac0-853765f4003a 1 James Other +78341adb-6289-4d4e-8e22-2a22aea4f211 1 Other Other +7834cab8-9984-49a3-a7f3-4cee5f69889a 1 Other Other +7834e1a1-640c-4584-987a-3b0baf50c159 1 Other Other +783500be-24b8-4ea7-8df6-eabb58baf23a 1 Other Other +7835284d-d9e9-4d2b-88fa-deafc382f649 1 Other Other +783533c1-768d-4cd3-9a7b-82aa0d2be51b 1 Other Other +78358c5a-3936-403e-9dfc-63fc13d9f908 1 Other Other +78359df2-a5d0-4c16-8260-a9b8f576b7fa 1 Other Other +7835f5c8-5fc2-425f-b60c-78418a89cdcd 1 Other Other +783628e1-09b8-43ba-8a5a-57481cfcd557 1 Other Other +7836bbff-0b3b-4ea2-bc21-3347b686107d 1 \N Other +7836d453-d7c4-46cd-8c51-3ee0cf01f5d5 1 Other Other +78372ba6-844b-4166-b7c3-ce795f8e19ef 1 Other Other +78372bd7-72b3-43c8-8484-39689f885397 1 Other Other +78374060-e2b1-4d5d-bf24-01813d519c09 1 Other Other +78378b1b-f262-46eb-b5b4-20643f850d88 1 Other Other +78379727-3a91-47c9-92b1-56a4f839a0de 1 Other Other +78379917-deb4-44d3-b27b-a66bb32acc4e 1 Other Other +78379d42-6e71-426e-81b5-0beaa0619503 1 Other Other +7837c3fb-e3f0-4525-9a72-11265a121a8c 1 James Other +7837dd55-f97a-43a2-a2d8-acdde44f5ab2 1 Other Other +7837e3f7-66df-4d09-845f-250d59ac9fab 1 Other Other +7837fc01-b56e-4896-8aab-e3cbfb3b2b52 1 Other Other +78381da6-2c82-4b61-9106-255fe7517dda 1 Other Other +78382273-ce64-4ba5-b91b-669f7b160ed2 1 Other Other +78389e4e-2e40-4ad5-bbfa-1e994a668042 1 Other Other +7838af32-6040-4cbd-8e9b-496458607594 1 Other Other +7838c6e8-5578-4dff-b49c-4d237805306f 1 Other Other +7838d192-8389-4863-91d6-d4b383ec3614 1 Other Other +7838e7b2-f421-45bc-a679-495b0bb27537 1 Other Other +7838f4c2-02a6-449a-bade-1500eeca38b2 1 Other Other +78394602-5eee-4907-8698-438d15cd3c3c 1 Other Other +78395146-34dc-4c07-938c-9281aafdd189 1 Other Other +78396813-a726-40c3-8f4a-80435cc39943 1 Other Other +7839687d-859c-41b7-9466-b7a89461a792 1 Other Other +783a2253-1383-4f25-8295-3fca30ce4654 1 Other Other +783a25bb-0bfa-4020-b369-1ddf87cdd7d1 1 Other Other +783a3150-1517-443a-8272-6ad3ed144fb2 1 Other Other +783a706b-8557-4f2d-88a7-8ef271e836f4 1 Other Other +783a914c-c2be-4877-a354-0788b03a9127 1 Other Other +783ad9bf-9608-496c-9cdb-c18578071487 1 Other Other +783b5209-d572-47d6-9c9b-433cb541be5e 1 Other Other +783ba34c-1ab4-4770-865b-9c58ea2b4f8f 1 Other Other +783be609-44cf-422c-8ae5-1f6fd73e6578 1 James Other +783bea85-59a0-4c78-9a1b-2d5313272c3a 1 Other Other +783bf5a2-d049-41b9-b88f-2982b67b2170 1 Other Other +783c0087-3667-429c-bdad-ca7019f598c0 1 Other Other +783c4874-2ec6-45b2-8eda-a6b6ff4f5be8 1 Other Other +783c514a-d29e-4cd7-997f-7451cd788307 1 Other Other +783cd108-ec52-481e-8043-03f5c42e66bc 1 Other Other +783cf369-3bac-4a3a-a692-b9aaeca5b1a4 1 Other Other +783d0521-8f4b-4ebd-91c5-5bfd9766e8ed 1 Other Other +783d5ad4-c79d-442b-99ea-6309b8429cf5 1 Other Other +783d61bc-a68e-4845-847c-2ab905fd676d 1 Other Other +783d7253-d45a-4254-959e-258974bb5e86 1 Other Other +783d8997-0187-432e-a8d6-bd482426e9f2 1 Other Other +783e29b3-7608-4cff-8471-f7c2be5eee3b 1 Other Other +783e39a0-922d-40c6-8668-074f6a3f2155 1 Other Other +783e4a60-9696-4ba9-8c90-ac5154501b23 1 \N Other +783e50ed-05bc-4605-99e8-a96784e1475a 1 Other Other +783e55ae-22b9-4cdb-96fc-a71eb54da8e1 1 Other Other +783e6216-48ae-49fa-9a0e-176be987874a 1 Other Other +783e8c4d-0adb-48b9-a216-d259bf125336 1 Other Other +783e8d77-c426-498a-a96d-495aec287b3e 1 Other Other +783e8dc1-d565-4f46-a4e5-43b725069d32 1 Other Other +783e9aee-cc4c-4e8b-a7f8-4d35db7d9068 1 Other Other +783eb305-2c3e-4471-8ab3-a9855d7de694 1 Other Other +783eeafa-6cf1-4548-b3f9-ded2b45d8127 1 Other Other +783eed60-d6ef-43c6-a061-4549ac8bb8a1 1 \N Other +783f08c9-8ae2-483f-a9ce-fcc52cb4d13f 1 Other Other +783f18ca-7acb-4ff2-9dbb-3e52d00e977e 1 Other Other +783f4c7c-b080-4b60-ad17-4c4a5a6d6e77 1 Other Other +783fd228-0a1f-4c31-92d4-e514abf748cc 1 Other Other +783fd8d3-41b8-4260-bf01-5de55c6f7482 1 Other Other +784060e0-d71a-4a87-924a-fdee1258085c 1 Other Other +784072f1-cfa9-4f1a-9de5-5ec104a4fd1f 1 James Other +78408404-155d-46f8-b89a-86e19ef1cdf9 1 Other Other +784087c9-3e6f-4955-a1a7-875c7f40da1a 1 Other Other +7840c19e-21e5-415c-8f0f-50741df9b03b 1 Other Other +784157d4-6c7c-488e-beee-7e7aad0ae727 1 Other Other +7841a57a-52cd-4035-a5b9-0b9141824fe7 1 Other Other +7841b7d1-5b34-462d-8f71-1da212016075 1 Other Other +7841ddc3-8768-42df-9e33-d40c909635a3 1 Other Other +78422495-d138-4a60-bbf8-564d62f9e2ff 1 Other Other +7842b955-6a02-4e60-81c8-2cd493bd0107 1 \N Other +784304ae-cd8b-49bb-9e55-9152635b4382 1 \N Other +78430655-8e8c-4451-9958-1ed76d77625f 1 Other Other +784327ee-43e7-43f7-9d43-cda3f47afb3b 1 Other Other +784346be-1d9c-45b1-9b08-c12e0e53e462 1 Other Other +784385d5-e626-4fcb-9e22-bae616ea8cf3 1 Other Other +784389ff-82ca-47aa-aef9-690dadd20697 1 Other Other +784392d1-9e5f-49d6-bc01-df95ec45eb38 1 Other Other +7843b237-9325-4f63-88b1-b4e69609e18b 1 Other Other +7843b2c5-1edf-4892-9201-74ea3bc1b858 1 Other Other +7843be7a-b872-4327-939c-0c2d21106011 1 Other Other +7843f33a-3c17-4aca-bace-dd95962ccf55 1 Other Other +78441544-f23b-4278-ad9e-8222c650a1c7 1 Other Other +78442fed-769b-4a53-99e2-ad68c1cede96 1 Other Other +784439e4-6a02-4c03-a84b-52cfa686f9d5 1 Other Other +78449ed9-2d6c-41c6-b884-e3883a68fd79 1 Other Other +7844ce7e-05a4-47f3-9ddb-da4c74bf0fa1 1 Other Other +7844d479-c2c6-4bea-a024-b9c4767a438d 1 Other Other +7844e2b0-d5f7-4397-ba21-fff0bcd74204 1 Other Other +784537eb-a2f8-4296-9dc0-39cd8d6ee9dd 1 Other Other +78459bf7-0f85-45d1-82c6-57ef358f8330 1 Other Other +7845b88a-a3b6-4504-af35-a7b64f1fc639 1 Other Other +784634c2-f994-48df-9826-f2a56412f521 1 Other Other +78465bc6-4402-4895-8338-91b148b82281 1 Other Other +7846ae8a-018e-4524-a2bf-ea383bdfb8ef 1 Other Other +7846c391-bf52-48c6-b96e-fef31b569372 1 Other Other +7846d74a-b62a-4eba-81c0-70d6a839d746 1 \N Other +7846eeb1-fe02-4822-82c6-fdc02aefa22a 1 Other Other +7846fd42-3b5a-4b54-b630-1547f38d64be 1 Other Other +784768df-3abe-4de5-b6db-0aa3842a87c1 1 Other Other +7847f2e6-757e-4c90-9c86-da5878e32167 1 Other Other +78492f3e-5386-4e83-a035-b71665721536 1 Other Other +784940ea-0d98-46d9-b891-4358aae8d501 1 Other Other +78494cc8-f347-468b-8a91-aa285c92771f 1 Other Other +784989ea-bcb6-467e-b4af-40c73d47ceb7 1 Other Other +784abd6d-82a7-4cc6-b365-ff087063598b 1 Other Other +784ac9f1-c632-417c-ad9e-55c1759225d5 1 Other Other +784aeb55-78d4-4e20-b2ad-cd9bc8a5804f 1 Other Other +784b1787-4152-4173-9f61-f0bcdd46d769 1 Other Other +784b6c68-8d81-4900-97a9-0a4d95b737de 1 Other Other +784b77be-11a9-46d7-a2c9-213211bf088f 1 Other Other +784b7f0d-754d-49b3-95a8-59597e7bb107 1 Other Other +784b95af-eca7-47f4-b090-b503ce616ac6 1 \N Other +784bd66d-758a-458a-8798-a8d7bf1620a8 1 James Other +784cc87c-e96b-4eee-b165-abdb9d040bb9 1 Other Other +784d2e49-d5dc-4ef4-9dbb-77700113b2a6 1 Other Other +784d4803-b752-4c62-ab3a-935efb05fe7e 1 Other Other +784d4b96-ecb2-4042-bba7-d9359aefc13d 1 Other Other +784d5180-f700-4869-8c9d-f3cf896215f3 1 Other Other +784d7f69-a775-4af5-a0c5-1828c13118ac 1 Other Other +784dcc31-b5f0-4f77-8d64-28b25867e1c7 1 Other Other +784dd928-3e8e-43a9-ab19-3e3b30b01ee1 1 James Other +784dea06-0533-4544-b1fa-84d4723b36fd 1 Other Other +784e4f74-23be-4076-b548-bc48cf66e723 1 Other Other +784ece86-2eb3-4604-ab63-be1f3616195a 1 Other Other +784eced4-b296-431a-9a0e-a274f815fc01 1 Other Other +784eeaaa-70e2-4342-8859-33c33c811bf5 1 Other Other +784f26b4-7b96-4033-87b9-14b9b375f33a 1 Other Other +784fab1f-707e-46ff-a1b4-f704aa4928bc 1 Other Other +784fcc69-6e97-44b2-b62c-9924cf9f5c3c 1 Other Other +784ffb89-4be9-4719-bc8d-3278464d046b 1 Other Other +78500a79-fabf-4845-8673-52034039dacd 1 Other Other +78500b8e-e4ad-44d3-9348-e5c601643675 1 Other Other +7850861f-75fd-4df1-9a73-9a740cc61c2f 1 Other Other +7850b5bb-2172-43c9-a02d-261a34cdcddc 1 Other Other +7850c6b7-2d37-4979-a5cf-70a451080fb0 1 Other Other +7850db5b-8547-4c7b-9a02-aeed09af2fed 1 James Other +7850efd8-31b7-4499-966a-de648813a76a 1 Other Other +7850fbfb-893e-4d59-8700-a9767adf7821 1 Other Other +78510d89-130e-400d-b4be-3b0ce37c826d 1 Other Other +785156a2-89bd-42de-9130-eac92af1f3cd 1 Other Other +78515ac8-ed51-464e-8ebd-76502561920c 1 Other Other +78516bcb-5b95-42d0-9394-7a3e814615f5 1 Other Other +78519489-c9ab-4bd4-aed0-750590e02bda 1 Other Other +7851a85a-d6a6-43b6-bda1-8d6002319346 1 Other Other +7851b37c-8252-4cb3-bafd-eb8ca3fb7812 1 Other Other +78522242-1f32-4dcf-ab65-ed8364f2c3c2 1 Other Other +785239b0-a7df-41af-a655-a21b47a41bdf 1 Other Other +78532747-979a-4800-a26f-62e633e2938c 1 Other Other +7853796f-2e49-47c3-b3b7-07acb1f07082 1 James Other +785419e7-fc81-4f9d-ac86-12ed8552a0d0 1 Other Other +785438cb-181d-4657-b5b8-c96a62515cfa 1 Other Other +78545620-4e6d-4860-a8d7-7503818e871a 1 Other Other +78546361-8dea-4b9a-ba42-bb5a187de9cb 1 Other Other +7854b578-cedc-49d8-8db9-7e205ab9cf43 1 Other Other +7854de51-9e15-41ac-9b71-f2deda8820ac 1 Other Other +7854e6c2-626e-414c-b15c-16b4952d3bb1 1 Other Other +785528e3-4251-40fe-baeb-beb458b8842a 1 Other Other +785533c9-2b70-4a7f-9c7d-5a2f890c73fa 1 Other Other +7855b813-306d-40d9-80f3-616eb8159ca9 1 Other Other +7855baac-561d-406d-9526-a7b51c795b99 1 Other Other +7855e934-0142-4685-a7c1-8eb2aa78ea94 1 Other Other +7855ed07-b986-4a5f-b19a-c9373bb9f14e 1 Other Other +78560fc9-b526-4351-b4f2-0c5b851e871b 1 \N Other +785620d5-4122-4412-9865-70f36847af60 1 Other Other +78565a77-cc9c-42af-906e-31d7caca84bf 1 Other Other +785660a8-946f-4e09-bfe9-e9428780e600 1 Other Other +78566faf-aba6-453d-99ef-19d38935c93f 1 Other Other +78567313-7ec2-49d1-9f1c-641388fd2140 1 Other Other +7856a51f-dfb3-47ed-9444-1e1f4e2133b6 1 Other Other +7856d999-d180-4611-9afb-92d2d551797b 1 Other Other +7856e6ac-ec43-41c4-bcc8-a51484a9627d 1 Other Other +78576b38-9fa9-4314-b3a3-1db8495b2294 1 Other Other +785822c4-db02-4cfb-8d66-fc9f19a03102 1 Other Other +78584f2f-e70b-45f8-b6b3-729d97b7a5d4 1 Other Other +785876ec-2f01-47ba-9cd0-21a10ca3e598 1 Other Other +785880c4-a0e8-4de9-a6c0-3a6e5ddbbd1e 1 Other Other +7858d84d-6f4b-4e12-8283-78b8d25c2cd5 1 Other Other +7858f115-e2aa-468e-ae3c-d8b253ea7960 1 Other Other +7858f483-c898-4933-9390-5c3d8fe6d8ac 1 Other Other +7859304a-5046-42e0-bfe6-80eda6346bd3 1 Other Other +7859ee58-3bf5-4073-9382-635b4f4b113e 1 Other Other +785a63e6-d982-4bbe-a8e3-93b0707a3300 1 Other Other +785a8650-0a4a-40bd-8694-9aec0940c129 1 Other Other +785af3bd-5197-4424-af6a-cda02f23bead 1 Other Other +785af99a-3e6a-4654-af9a-0ffd46122263 1 Other Other +785b126b-f148-4325-a9a8-8ec44bc783fc 1 Other Other +785b1fa7-f963-4762-8839-bdc35d46184b 1 Other Other +785b608a-6e7f-4d1c-943a-5628e6987631 1 Other Other +785b76b7-d40b-4c39-b8ac-480a77276fee 1 Other Other +785b78e5-4c21-4d4a-8317-b1df88fee3ba 1 Other Other +785b86e1-a89f-4a42-837c-5347336baf9b 1 Other Other +785ba510-9f84-44f1-908e-3ae5612f2098 1 Other Other +785bb448-8f99-4e57-ba9c-933a20fbcbfd 1 Other Other +785bbdaa-668b-49f2-873a-7a7b0fac33f6 1 Other Other +785c1f8a-1e89-4231-897a-df73eca6b23f 1 Other Other +785c455b-72d7-4e68-859c-8d10390b4a45 1 Other Other +785c9316-a072-4c76-ace9-9161c9ccb5b3 1 Other Other +785c939f-07b3-4a9a-80c9-aacb0d8e1749 1 Other Other +785ca6c0-1c3c-4b01-b54c-91dec41631ad 1 Other Other +785cadca-4936-4e0f-bc32-1945572ab69f 1 Other Other +785cc62b-11b0-4996-ba2e-7bd6f0cef529 1 Other Other +785d1dac-8c48-4a79-8956-e2d03974b7fa 1 Other Other +785d8420-3528-41d2-8b49-a73fb31f18d3 1 Other Other +785e048b-4b27-49e6-ba61-67a745ad1697 1 Other Other +785e7122-26af-4c0d-a6ef-7a461dd80343 1 Other Other +785e7ff1-46e4-4ad2-9cf1-1fe15cbc6dae 1 Other Other +785eeae6-4748-4651-990a-fe5988677604 1 Other Other +785f7727-b1ba-4d77-aabe-4dbaa6d22632 1 Other Other +785fc239-788b-49bb-a78d-d5bb5c3fc736 1 Other Other +78606558-a866-462c-8be9-a2c44e53d93d 1 Other Other +78606867-fa6d-4162-b510-26a2f1d2e6b5 1 Other Other +7860b01c-b8db-4dbe-a563-ab9d907fa235 1 Other Other +7860e041-9d62-47ef-b1c1-37ceed61e1e7 1 Other Other +7860e636-5d4b-454b-a7dd-6d0352589112 1 Other Other +7860f606-9037-45d3-b548-df4f1b8604c1 1 Other Other +78610e44-e2ba-416f-8d16-21bc90476a3c 1 Other Other +78614913-cb35-436d-9431-cd194c864d36 1 Other Other +786152ab-a42c-4675-a885-79f935a7342c 1 Other Other +78615de9-283f-4152-88b9-3ae83fede3dc 1 \N Other +786193c6-25ee-4482-a6c4-7a74626113e1 1 Other Other +7861a80e-c724-47e3-8ba8-5f492ec24c8d 1 Other Other +786230dd-f731-450f-846a-6245e51dd520 1 Other Other +78628d81-3e72-4c33-b4b4-6cffb32d8ea1 1 Other Other +7862a907-1b9a-4ccb-a79a-22c2fd6d5fcc 1 Other Other +7862ded6-d23e-48de-84ca-df89653c29b7 1 Other Other +7862e2bc-0727-449f-901a-5e929e302f83 1 Other Other +7862fb9c-1cb5-478f-9ef2-d91d43e917cf 1 Other Other +786386f3-631c-450f-a74e-b9e6bf6badc3 1 Other Other +7863b10f-409a-4250-8421-efa0bd2c9491 1 Other Other +7863b6b4-e9a1-40dc-8db2-645d28a82f13 1 Other Other +7863d036-6374-4676-8145-6ea349c86ef0 1 Other Other +7863d4bc-bae0-4915-8523-f6c8f5259ff9 1 Other Other +7863ea0e-0756-46bf-ad4d-5cf8bff975b5 1 Other Other +786417a3-40b7-4267-ac37-4843ee3786ad 1 Other Other +78641d46-f197-46aa-aecd-a97570321733 1 Other Other +78642f76-9a0b-4154-a12d-15e1128c6736 1 Other Other +78646bae-ec99-4ac9-a3d2-7245c0d11fea 1 Other Other +78647ec0-9b4c-4a4d-b1d4-844a031bb4a8 1 Other Other +78647f72-29a6-4df5-aa3b-664a01b98787 1 Other Other +7864834c-2611-4b3a-8bd0-b51014b32d2d 1 Other Other +7864bcc5-894c-4140-8199-417189f7b455 1 Other Other +7864c150-eda2-42e9-8158-665cdc4de096 1 Other Other +7864c564-233c-11e8-82d9-fa163e8624cc 1 \N Other +7864ebb9-d97a-46e1-8931-e036da4ac5e1 1 Other Other +7864eceb-5327-4ff5-97ff-e6185ef3f967 1 Other Other +7864ed11-a5a5-49d5-b0f8-1b260cf31369 1 Other Other +7864fa24-c333-415a-b778-1c5fd4ddf9a5 1 Other Other +786551a2-5f1c-4490-bd42-343ff80e284c 1 Other Other +7865860c-515a-48b3-bc18-fa441e9676f0 1 Other Other +7865c7e8-8561-4d77-8c91-8f0c941b2e20 1 Other Other +7865e684-77bf-4f3d-abab-d8bdadde851f 1 Other Other +786650b9-2437-4bea-85ad-31d6615b63fb 1 Other Other +78665741-9d8e-42ce-b815-7b5153f2ddd7 1 Other Other +7866c950-ec53-48f6-8994-e917462037b3 1 Other Other +7866d63f-3b76-422f-8f5e-1f6d1b441130 1 Other Other +7866ea67-42ab-48e1-94e3-7226ee8bc155 1 Other Other +786718d8-24a8-4b91-ba8c-2a7747b20f7e 1 Other Other +78678f33-e188-4349-9008-dfe84667ffad 1 Other Other +78679809-8fb4-4cb4-b0fc-dbe36b5fc3e4 1 Other Other +7867ae7b-2db5-4fb1-a404-146745f517cd 1 Other Other +7867b0d8-2574-4380-a051-b78f74ef9533 1 Other Other +7867e9be-439b-4114-80d0-eeb41f931b85 1 Other Other +7868137f-4f46-4c0e-b46d-aad091ea0490 1 Other Other +78685231-f033-4ae2-bbea-3596aecc9cb1 1 Other Other +786899ce-5c1e-4f0b-b4ef-cb8da825e6ab 1 Other Other +7868db8c-b73b-49e8-982e-855d0e372182 1 Other Other +7868ef92-afaa-4728-9143-ddd8464dd8bf 1 Other Other +78690bc3-fc57-47e5-b075-ffb310e4b414 1 Other Other +78691b29-cc9c-4770-97d2-921ec659c3e5 1 Other Other +786961eb-fb68-4f2d-80cd-73880adc9387 1 Other Other +7869ab44-1b0a-49b8-91b5-e7ae6c4cfe6a 1 Other Other +7869f62a-1aa5-4999-b9e0-3fbbadcc88c6 1 Other Other +786a06e6-a5a6-458b-bb78-d4c549901be9 1 Other Other +786aa71f-075d-4a35-b65f-468340714884 1 Other Other +786ab136-5235-4e93-a000-6f73948aeba0 1 Other Other +786ac8dc-9738-4e31-a75b-32f2f9bc72b4 1 Other Other +786b61cd-18b1-456d-a57f-c01e10a02aa9 1 Other Other +786b8778-c19b-47e3-8dbd-ede6af9171e0 1 Other Other +786bbcae-5fe7-467d-9c44-14142e51b11d 1 Other Other +786c3d41-d0c3-435b-a19a-6d050b2b59f4 1 Other Other +786c498a-5f79-477e-b879-30d23bbad55b 1 Other Other +786c5dc1-b3fc-4624-84f5-d26045bc9909 1 Other Other +786c6638-cfd6-463a-9e2e-d135b7c55c2f 1 Other Other +786c8432-a8af-4b18-b96d-6c745100cb95 1 Other Other +786cb210-a0f2-4b5f-961a-187f32007a5a 1 Other Other +786cb55c-2904-4373-8e2d-587f423c0b2c 1 Other Other +786cda81-4267-41ee-a7b7-5f66830c25a3 1 Other Other +786d64b7-5ae2-4674-be60-3c858cf3e92c 1 Other Other +786dbc11-f587-4764-884e-7ade67a8744e 1 Other Other +786eca14-2896-4812-a286-dcfaf893461c 1 Other Other +786ed12d-fb2f-4274-b5d6-3d8f6e9e493c 1 Other Other +786f506d-709b-4e53-ba02-1eaf5021b483 1 Other Other +786fb01c-2185-44e7-b74a-0bb589fec7be 1 Other Other +786fc167-bf34-4aef-98d2-1264b16fabc2 1 Other Other +786fe9b5-7c17-4d9d-9ce5-50ecd3c8d84f 1 Other Other +78700c58-bf99-444d-a414-69bad4d20d15 1 Other Other +78704284-3aec-4d7d-9f35-005e974be0a3 1 Other Other +78704be7-2ffe-45ec-b28d-471197985690 1 Other Other +78705bed-7624-404b-ac56-573ca65a38fc 1 Other Other +78706cdb-9f46-478f-bf7b-17861ebf978f 1 Other Other +7870730d-283f-43c1-8f7f-6a04d30dbfee 1 Other Other +7870c308-21f5-45b2-a925-3342e041dd79 1 Other Other +7870d372-cc0b-4fd3-914a-641569ee40cf 1 Other Other +78710041-a3e2-4324-b7c3-b1896597c82e 1 Other Other +787108ca-6c01-4765-a6ba-4ec4fac5bad8 1 Other Other +78711677-5978-42e2-bf36-4e4efd5bd90a 1 Other Other +78716410-b2d3-462c-b8ff-89f93baf1dd4 1 \N Other +7871948f-a69c-4a45-b8ee-415cbcbca932 1 Other Other +7871c039-833e-451e-bc3e-b794bbb0aa1e 1 Other Other +7871f82b-aac4-4214-be1f-590d901858fd 1 Other Other +7871fcd0-305f-4700-beda-818f25c7dacb 1 Other Other +78720596-672f-4149-ba73-c2dbdc529f38 1 Other Other +787254c6-6d27-4780-ba38-5263c2dbc0ff 1 Other Other +7872ddad-a87f-4fb7-9bdd-2cadf97b22f0 1 Other Other +787300a2-e543-4e3d-a577-9c3f38213d36 1 Other Other +78736524-6cae-4d39-9a0f-cb18929af184 1 Other Other +78738268-114d-4198-b751-7c5c331122e9 1 Other Other +78745d33-06c7-45ec-837c-62f137d05d5a 1 Other Other +7874971d-ceb8-4fe9-981f-f6cacbb95125 1 \N Other +7874db32-1515-4f22-aab3-db523972d5e3 1 Other Other +787533b3-e547-4279-a017-5eba61201516 1 Other Other +787569ec-f861-455f-93e8-899f839707d8 1 \N Other +78759f02-b5d4-4959-a2dc-e18a6208da7f 1 Other Other +7875c4eb-477c-4a47-b90c-b62a31698f02 1 Other Other +7875c9c9-dd8f-4f90-ba8d-db73cca926dd 1 Other Other +7875cb4a-1dd3-466a-b921-8ff59394b1b2 1 Other Other +78763b5d-14d8-4906-9a9f-943de5bcc926 1 Other Other +78768caa-7871-42a9-99bf-cabff5634201 1 Other Other +787692da-4e96-41c5-b426-ebf5718ee448 1 Other Other +7876b0f1-dfa9-4529-97bf-86389663bd2b 1 Other Other +7876b1a9-ff3d-4e9a-add5-2f25678c0285 1 Other Other +7876c353-09d3-47be-805f-133eaa3b5290 1 Other Other +7876f907-1007-40e3-9ab4-e2f75c489570 1 Other Other +7877381e-cf51-441c-8532-3c6587b77674 1 Other Other +787749c2-edbb-40ed-841d-e70668f384d9 1 Other Other +78778006-bb66-43d4-8249-f34286d61a21 1 Other Other +78779027-ff06-4cb0-b7c4-9af75229d3e5 1 Other Other +7877b2db-6f2c-492f-a584-2ec05b26c6cc 1 Other Other +7877cc0e-a276-4888-ae14-fd01c77c281a 1 Other Other +7877efef-d67e-4335-9ed7-134ac22e701e 1 Other Other +7878a316-4c48-4c6c-82c5-5a84419869b8 1 Other Other +78790edd-8dbb-439c-858e-d8e8a91b225a 1 Other Other +787932c9-2cb7-4288-84ca-2c0abcddd256 1 Other Other +7879b342-325a-4357-ac63-5c8456665dc7 1 Other Other +7879ecca-29f9-439d-b4b0-090ad2a8a9cd 1 Other Other +787a28ab-d856-49fc-b666-8dd6e231d462 1 Other Other +787a36b7-a065-4a61-a58a-d5d2727cc893 1 Other Other +787a6c62-76a8-465e-8dfe-08ecbd13f38f 1 Other Other +787ab670-858f-4362-a5dc-ed2b51898980 1 Other Other +787b7de6-fe2a-4d98-87bb-51795ef89279 1 Other Other +787bb1d6-8c7d-4c11-aeff-fa9032dbb542 1 Other Other +787bb54a-7e34-4334-8ad6-1e6309a74efd 1 Other Other +787bf205-a281-49a3-ba13-dd3c52799b9d 1 Other Other +787c128c-f223-4b98-bfa0-b6d885943b40 1 Other Other +787c5774-5961-42b4-bc9c-4ef873dd6a10 1 Other Other +787c5dcf-0f1a-47d2-a328-55f97dc84c22 1 Other Other +787cd6e2-4ba1-4413-810d-42b8773be395 1 Other Other +787cd87a-a145-4e5d-94a9-0ac9bed2ff3b 1 Other Other +787cf3b9-d011-456b-900a-8301f8e5cf31 1 Other Other +787d1ddf-5696-4fb7-a54b-257162aa7f38 1 Other Other +787d20be-aa4e-488f-bcef-0b20400e1a2d 1 Other Other +787d7d5e-56fd-40d4-a588-7ad0bf8a5d89 1 Other Other +787dc619-141c-4d05-aa3e-523180d81243 1 Other Other +787de474-7da5-42ae-b0a5-5393e84c7837 1 Other Other +787e0561-2468-4afd-b12e-809fc5a7e86d 1 Other Other +787e35c0-8a3f-48dc-84af-0aa23a87d8f8 1 Other Other +787e57cf-3c49-4b2d-ad0b-e45d0fb06fad 1 Other Other +787e5c8d-7871-472e-b699-944191eed912 1 Other Other +787e87cb-5a48-4943-9462-2ccbd753fb41 1 Other Other +787eaef7-f6d2-4f69-9eb1-3ee2bda6173c 1 Other Other +787f0fc7-faad-4925-b46c-6898c20b22aa 1 Other Other +787f2a5e-2c55-4501-bf59-a8bda15874af 1 Other Other +787f66e1-567b-47c9-be71-f0ac20d060bc 1 Other Other +787fa4fe-1d02-4077-a028-88ecbc880586 1 Other Other +7880029f-2f1c-4555-b983-bad424c60cda 1 Other Other +78804f6e-3b4f-4afc-92f6-f2e52545f389 1 Other Other +78809ae6-d2be-4199-835f-48f43cfa4769 1 Other Other +7881240e-5330-43db-a8b5-de2fb03e9e6d 1 Other Other +78813b44-ea2d-4999-aec6-e226f4f57eb3 1 Other Other +788143ac-5b62-46e8-a3dc-3e426190ec38 1 Other Other +78816d12-1ee5-4380-b75f-9d630b26127f 1 Other Other +7881d684-20e4-4db8-bdf1-d329b8933c1a 1 Other Other +78822a89-9219-4c07-bc81-2970a4316248 1 Other Other +78822b19-fbeb-4f2f-a9b1-49d59309e377 1 Other Other +78825318-ac17-40e2-ac1b-0cb6da6be620 1 Other Other +7882cd4a-e61e-4a49-8e4a-d90b39761f64 1 Other Other +7882dfe0-3907-4779-b610-856f12e4f044 1 Other Other +78834d77-254f-4bca-ac2e-47178cbc936c 1 Other Other +788364ea-3162-429a-8943-9360a9b4c11a 1 Other Other +788386a8-4d18-488a-aba4-9aa8ab4de086 1 Other Other +78839fbb-e633-4792-9d2b-2e8e4947f477 1 Other Other +7883ab76-d823-4499-86a0-6256a6bab8cd 1 Other Other +7883eb27-8216-49b6-944e-829c72c3764e 1 Other Other +78843dee-a16a-4c8f-b82d-4a372cc35a91 1 Other Other +7884732a-9dfd-40e0-90b3-f662e61ad537 1 Other Other +7884a98c-1eb7-4b88-8f45-01e12544a25f 1 Other Other +7884e623-39dc-4e13-867a-46549285627b 1 Other Other +7885160c-2387-4a76-8e6b-4a5a764b8868 1 Other Other +78857bd5-2d22-4674-9c2e-23044817aab5 1 Other Other +7885c668-afb9-4f48-897e-c957bb64f013 1 Other Other +7885ca61-720a-4740-a1da-b99ed45575b1 1 Other Other +7885d6d4-c519-4d75-becb-593b27d56100 1 Other Other +7885faed-c093-4580-8c9f-5e7214807746 1 Other Other +788675f3-bbe4-4aa3-bbd5-8940f36121e8 1 Other Other +7886c8ab-40a1-4e1d-990a-497e9d7a7a2b 1 Other Other +7886fd69-07f5-4d8a-91b1-b979fe941adf 1 Other Other +788702f1-b30e-4a86-84b5-68f23eb7a047 1 Other Other +7887ce07-90b2-475c-a027-38d549d21380 1 \N Other +7887da47-6549-4657-afaf-dcc4425f9b16 1 Other Other +7888367b-98e5-4623-bbd0-0e4d6a5e25d5 1 Other Other +788849b7-5864-4c61-9512-036aabe87a98 1 Other Other +78885c07-22ec-4842-adf1-bea67c236a19 1 Other Other +788870ea-aa9c-444d-b6e3-03092a54e60f 1 Other Other +7888b31a-b286-4bc9-bcae-dbc1e63a91bd 1 Other Other +7888c360-6094-4b7f-9573-5747ab11df5a 1 \N Other +7888dec3-9c13-42e9-a787-16018eba87a8 1 Other Other +7888e9ec-853e-4724-96ab-67112c8de905 1 Other Other +7888ec9a-18f3-4ef1-9ad0-d261b6c5949d 1 Other Other +78893715-9533-4471-bd7e-760994e91786 1 Other Other +788942d1-7050-49ac-8dc9-268e5f2518e1 1 Other Other +7889c8e0-de0e-45ec-93db-abf26f441ccb 1 Other Other +788a5335-455d-4b19-a588-58a15b407fed 1 Other Other +788a712b-0bec-4c88-90d8-a283da26984f 1 Other Other +788b0467-6f9f-403a-bebf-b366affc58ac 1 Other Other +788b394b-4a2c-48de-b61f-b5d21b4849b4 1 Other Other +788b5a1c-fd63-4224-a298-f8bbe083e629 1 \N Other +788b7c17-d07a-4830-bd2c-2ad7a61ca757 1 Other Other +788b8908-9173-463c-be73-98b95fe48b55 1 Other Other +788bcbe7-df7c-451e-893b-fd1f3463795b 1 Other Other +788be921-09df-4631-a667-ab1210cdd3ce 1 Other Other +788c30e9-44be-45df-abc6-e66d86d971bf 1 Other Other +788c355c-56af-42df-ade6-977dfcd09b02 1 Other Other +788c701c-da33-4943-8481-6430055a03c0 1 Other Other +788c784e-a53f-4203-a338-d1ec0b5be0cf 1 Other Other +788c7db2-2bdb-4f71-95f9-811b939500c1 1 \N Other +788cc260-5fd7-4aea-8f07-f1e90c7a392d 1 Other Other +788cea35-3fb8-4b16-9f2b-ce5ec6e3eaf7 1 \N Other +788d6fbc-8ac4-4466-a1ba-56b9bff16909 1 Other Other +788db279-5298-4f0d-bfe1-b610fd26bb0f 1 Other Other +788de563-63de-4992-ac83-b5dbc1f995a3 1 Other Other +788e70f3-b118-48ad-bdd7-9e78e6d0df8b 1 \N Other +788e9ed8-8b05-4466-b13a-13b702d53c95 1 Other Other +788ea724-b1fe-4054-b6c0-336140fb91ea 1 Other Other +788ed08e-61c1-47cb-ab6b-9120971c34fe 1 Other Other +788ed25b-ae6e-4e5a-9d61-ead16facf276 1 Other Other +788ef204-44b8-4d39-aef5-b257a5740559 1 Other Other +788ef794-8762-48e6-ae44-a95c18483b8d 1 Other Other +788fcd87-6335-4195-a8a2-6116a3acd417 1 Other Other +789013d5-7f91-4f16-8cbf-ad4e83cebfb6 1 Other Other +7890234b-74ab-42f9-b327-b567b910ae78 1 Other Other +7890f4f8-e133-49d8-aee7-405525860705 1 Other Other +78912eb9-b063-40c9-83ec-b01622524817 1 Other Other +78912ed6-00f2-11e8-8c81-fa163e8624cc 1 Other Other +78913e7c-335b-4815-b804-b55bada58560 1 Other Other +789152c1-7bfa-408f-8399-f7e6d8db2e6c 1 James Other +78917da4-853b-4379-aa02-7d3906be77b0 1 Other Other +789195bf-2b8e-418d-8c9c-b4e7d8d26e64 1 \N Other +7891a4c4-cceb-498a-bd7e-3f91ed3c741c 1 Other Other +7891aac4-a1d3-4cf6-a7b6-8191b8f756ce 1 Other Other +7891cf5d-dfd2-460c-8878-3d288300e75f 1 Other Other +7891d814-12bb-4066-999e-b685ea3d9d54 1 Other Other +78922bfe-4084-4a6d-a1b1-1828ae38b691 1 Other Other +78924dee-80b6-4bca-9b27-12d06cf47a05 1 Other Other +7892545f-749a-41ef-b60d-b1656bf15608 1 Other Other +7892585d-a828-4458-ad57-e7b83e676a00 1 Other Other +78926653-b44e-4738-89f9-54cd5351ad4e 1 Other Other +7892a870-c1d6-4040-a1e3-b7961ab05a53 1 Other Other +78932920-b7f5-4b57-979f-e0fb1363b200 1 Other Other +7893326f-6040-4ba2-8044-426ecd5e1afd 1 Other Other +78933507-2614-47ee-8220-e6767eccec76 1 Other Other +78934579-120c-4676-93f2-6e33c11cc211 1 Other Other +78937afc-19c6-4b72-8ff1-1227a5d67e87 1 Other Other +78939867-a98d-4460-bd91-48113b17aed6 1 Other Other +7893989c-7537-48e9-8d12-23493fd1a7e8 1 Other Other +7893a0ac-f9c5-40c2-b009-c39b8c4acfd4 1 Other Other +7893c0c5-8a58-4245-b6b8-5057b3d21dd4 1 Other Other +7893c517-c5de-4994-8fe4-fb4ed7071b07 1 Other Other +7893d576-60f7-4a0e-b664-e2b1570e6087 1 Other Other +78940c07-53ff-4376-8ce6-4786cc29e2cd 1 Other Other +78943d63-31cc-4c7b-8b6e-cb7f3f73beb1 1 Other Other +78949ed0-098a-4510-9c86-aa2b905deeae 1 Other Other +7894aa51-570c-4a16-a071-c343cbede5bf 1 James Other +789507fd-6763-48d3-89df-802ad8aeed70 1 Other Other +7895a6c3-26c7-41be-8638-8a00000dd7d3 1 Other Other +7895dd0e-601e-4a51-aab2-582a55436ef9 1 Other Other +789632cf-1b97-4fa4-ab62-65d80e7b5e7b 1 Other Other +7896a547-a899-4e0a-8596-a877b344bbae 1 Other Other +7896b955-0ea8-4b3c-9a07-1ca330333a9d 1 Other Other +7896f166-c648-40cd-b27e-0c4ad29463a9 1 Other Other +78973bd9-957a-4c08-b364-5cede33d144f 1 Other Other +78977d3c-ecb3-4d09-9d16-566ec376b580 1 Other Other +78978b1c-c583-4d39-b33f-611251a9da2c 1 Other Other +7897bbcf-1a25-463e-bcf5-3ee9e8d157bc 1 Other Other +78981576-a05d-4d6a-9721-41c11f7fd46a 1 Other Other +78985e94-f42b-4a46-bbe8-fb9de422d783 1 Other Other +7898996f-2249-45d3-adac-c56a6afdd972 1 James Other +7898b0bf-b854-4236-a064-f147c95b6460 1 Other Other +7898c559-87e2-4ea8-a3c3-f6042620523f 1 Other Other +78992d0c-a60a-48f6-aedd-09032d02ce53 1 Other Other +789952de-c8e3-404e-b01f-3672dc63c853 1 Other Other +789979ca-35ec-46fa-9d3d-68fcdde6ced6 1 Other Other +789986f0-2503-488a-a993-ed80bee5ae14 1 Other Other +7899e669-319b-4a9b-a32a-3697445218db 1 Other Other +789a1182-504b-4bea-8982-c20678812e3b 1 Other Other +789a16fd-3da3-4c6f-bfb3-3345e7a4f87e 1 Other Other +789a1e4f-8268-4828-861b-17c0e27e99aa 1 Other Other +789a6326-ab18-4d6c-a5ba-df2779962bbe 1 Other Other +789ad74f-0705-4d77-89cb-93cba6756dfc 1 Other Other +789aff43-bf1e-4ecc-942a-dd3ad19647ec 1 Other Other +789b1523-b174-46da-ac79-ca29b04368ff 1 Other Other +789b2ecc-d41c-40ca-b5f7-5c561f6c8f20 1 Other Other +789b4358-91b7-47a2-9f06-4fe755390b60 1 Other Other +789b73e4-87b1-4fa2-84a2-d9178c129257 1 Other Other +789b8374-736f-429c-a871-54d0db41b6b5 1 Other Other +789b84a2-a99c-4966-8315-4445d4f4175c 1 Other Other +789bc331-e1e6-43df-9dbf-fa062ba2c877 1 Other Other +789c1a8e-b6b2-48dc-a310-11f26684863c 1 Other Other +789c2448-bed0-4ac0-8c31-292e60e07a92 1 Other Other +789c4277-f73f-4c37-9781-47db8fb71164 1 Other Other +789c6663-ee50-40d0-a8af-55b3b914de32 1 Other Other +789c8dc6-bc4a-4a0b-b4fb-77f82a3b6ae9 1 Other Other +789cbb2e-dd19-437f-b996-7b62aa3641ce 1 Other Other +789cc02d-327f-49f0-8672-816eb86334e1 1 Other Other +789cdf73-cc7b-4946-8f16-e70e62649f89 1 James Other +789ced54-8424-49c5-9e77-1ededf0a41da 1 Other Other +789cfa47-5701-49c1-8bb8-ec77e8e311c0 1 Other Other +789d247b-7ab1-498a-90d3-300ce764edb7 1 Other Other +789d27c0-d1fb-43dd-b34c-fc4c9955946f 1 Other Other +789daf7b-98cf-4ca7-9e4c-a99346c382c4 1 Other Other +789dfa1a-5837-4670-b1a6-0b27ce3b1ff9 1 Other Other +789e312b-4da0-438b-b85c-049cc830c5ba 1 Other Other +789ea3f0-df1c-4268-99a4-cb3563b56fc6 1 Other Other +789eb03a-ee85-44ca-8841-3eca1e4bfc74 1 Other Other +789eb232-0cb0-4b37-b448-ccec88d36ec3 1 Other Other +789edae7-b7de-4cf7-b7a0-c9c75b14e528 1 Other Other +789f2caa-cec7-4556-848e-06ef8bcefb16 1 Other Other +789f3dab-cdda-4b67-82a8-7d9304d3a485 1 \N Other +789f79eb-96dc-4764-babd-69bb4b8ccbc2 1 \N Other +789f95d9-5e13-4455-b59e-f68d5239937c 1 Other Other +789f9f68-c413-4cb5-9aba-498a9af1c243 1 Other Other +78a06ac9-ef6c-44c1-908d-53d09fcb06fd 1 Other Other +78a0bf70-de1d-4070-a5b5-e287496b7f61 1 Other Other +78a0c419-49f9-4315-997b-ff4cfb9b6bf7 1 \N Other +78a11fc7-da76-4a69-972b-4d2022222590 1 \N Other +78a16b31-2f34-49ef-b877-b26334dc1aae 1 Other Other +78a1cbcb-1737-4cfe-9567-0fc0e3e5aad2 1 Other Other +78a1ec00-7dc0-4729-91d1-b6bf00b233f0 1 Other Other +78a290e0-2139-4b34-9b56-343aa8ae5e04 1 Other Other +78a2b89e-fd88-487b-8cab-b33990e47103 1 Other Other +78a2d54a-5d30-4bce-86b3-1df9c7e34cea 1 Other Other +78a31e8a-2d61-456b-815d-0cde994f96bd 1 Other Other +78a3690d-e388-45d1-9d88-abe3bb002f5b 1 Other Other +78a3ae31-d910-4563-99be-07a096c36251 1 Other Other +78a3d1ab-b594-4f45-81ba-7235c43cb1dc 1 Other Other +78a3e98f-9c8f-42a8-8b0f-bb481292f2bf 1 Other Other +78a473ad-87de-4847-a09b-610af25c82d4 1 Other Other +78a4c469-b007-48b5-99d4-74d37274c4e7 1 Other Other +78a4d240-4cea-4263-b239-fba5807c1183 1 Other Other +78a4fa53-a1d6-4f92-97e2-6347199ea23b 1 Other Other +78a52cc2-873a-453a-96cc-0aafe2571ac0 1 Other Other +78a5558b-34cf-44a6-8670-c9e33abc61ef 1 Other Other +78a56643-6552-470f-ad02-95de02a0505c 1 Other Other +78a574fe-f0ac-4e02-bd1b-a1c1ea897de5 1 Other Other +78a59ce7-4f02-4f5f-8db8-4e23fc98a2db 1 Other Other +78a5b792-87e8-448c-8d2a-7414c72234be 1 James Other +78a5b7db-9e13-4a0e-8919-4d604b92a860 1 Other Other +78a5bb42-fbbd-4bb3-ae00-75f158e33e4c 1 Other Other +78a63df6-b21f-4105-ae9b-ea89dcc78a35 1 Other Other +78a66a57-3c47-4dce-9109-142f8151af29 1 Other Other +78a67955-4a67-41d6-8cb9-ce91669dc019 1 Other Other +78a67d1e-9d34-45bd-95ec-235aa929ea54 1 \N Other +78a7039e-14b4-4f0c-b9ed-01faa81ebc7d 1 Other Other +78a72572-b55f-4600-a9d5-e00d1b053e47 1 Other Other +78a740e3-f1ed-482b-83dc-d0306a9889a7 1 Other Other +78a748cb-af8e-4098-bc4f-695c1ee7713d 1 Other Other +78a769a0-405b-44cf-a5b5-a09c24f55db1 1 Other Other +78a78ee0-e395-43f0-91a9-b0d293906a66 1 Other Other +78a7b811-5b5b-4768-8754-64fc9304add0 1 Other Other +78a7b8c1-cb87-415a-b555-2258e751a12b 1 Other Other +78a7e226-e790-45f3-beb3-25efaee1cf6c 1 Other Other +78a7e2ff-486b-4f75-8ea9-b72d0ea77ead 1 \N Other +78a85c7e-036d-4260-afcf-e87d0664a145 1 Other Other +78a8e3f6-e480-4c76-89da-6fb402fbbf7a 1 Other Other +78a909bc-be7e-4272-94b0-8c83e1eba863 1 Other Other +78a9ad79-2ce1-4b43-9241-e43df2622639 1 Other Other +78a9d547-7888-4e38-86a7-f8c586365b57 1 Other Other +78aa1d53-d100-4ab7-9b6c-4c3ffd28965b 1 Other Other +78aa525e-7257-4bd0-8b26-cb5498321ccc 1 Other Other +78aa5ff3-723d-4a3c-8457-29f6eacf72dc 1 Other Other +78aa81b8-9a7c-4fa5-9f7b-b4364a363d7e 1 Other Other +78aa86af-1ca3-40ec-9c74-ba0088f70f25 1 Other Other +78aad281-a195-4b48-9d51-15c008777ad7 1 Other Other +78aad6d8-7d7b-48bd-9822-5087957aa8d1 1 Other Other +78aad893-ca08-48fa-b16e-b3051369e26a 1 Other Other +78abd434-d793-444e-949a-6f254d443725 1 James Other +78ac05af-13df-40b4-a7c9-a5adccc8f78d 1 Other Other +78ac5053-3472-446f-96b3-92b689e9b0eb 1 Other Other +78ac73b5-bffc-4fca-99e4-4e03673b1824 1 Other Other +78ac95db-f335-447e-8736-135d88a5aab2 1 Other Other +78aca25b-15d1-4c7e-97ce-99bb29ed3e69 1 Other Other +78acf720-bdc2-4d9d-a915-2344402572dc 1 Other Other +78acffdf-ac88-4fe5-982a-d20d8a0add2b 1 Other Other +78ad10ec-9799-4ff7-b174-1b3d016408b7 1 Other Other +78ad5fd1-2537-49d1-b5e1-9f086de894fb 1 Other Other +78ade1fe-ac08-4a22-afd5-29cda6d0debe 1 Other Other +78adfbe2-f05b-4003-ae0f-c2812d5a1bcd 1 Other Other +78adfe40-78e0-432b-9f4c-76eb47901dc3 1 Other Other +78ae2bcb-8df7-4086-97b9-1077b5f59937 1 Other Other +78ae774e-b889-48f5-a744-252afbd77fab 1 Other Other +78af2eed-7aa1-4acc-b61e-ff6f03792ece 1 Other Other +78af451b-c4a2-4ec6-84d0-1373ccfa9394 1 Other Other +78af714a-5b50-418b-9594-f91cfc4ba0ce 1 Other Other +78af816a-a40a-4a98-b365-34be262e1eba 1 Other Other +78af996b-bbc8-4f13-a05f-64526df0c3a5 1 Other Other +78afb4f5-e6cf-442f-bed2-3edf9b28e11c 1 Other Other +78afba97-6aa2-4cc3-aca3-c40e9b927454 1 Other Other +78afbbb2-f0ca-4cc5-b876-8813dde2598e 1 Other Other +78b015ff-74dd-46d8-ba54-f390c085526d 1 Other Other +78b05d36-cefd-431f-8974-567ba8f491c9 1 \N Other +78b0bd0a-828a-47db-b458-60e090381716 1 Other Other +78b1b57e-57f1-48db-85c2-2284587a6712 1 Other Other +78b221f0-ba7d-45fb-b4ff-33763c8d48e2 1 Other Other +78b223e8-357e-4d84-ad49-403a1e478d8c 1 Other Other +78b24200-1a42-42b3-9bb5-f62a09ab0b7b 1 Other Other +78b25a88-dc33-418a-ae43-46563cf39401 1 Other Other +78b27663-4bc2-4f58-b5bd-af32662f7411 1 \N Other +78b29ce7-e330-46af-865d-bd59228d62a9 1 \N Other +78b2ad2b-8671-49ea-8ae1-0eafe5bd450e 1 Other Other +78b308ae-1456-4554-9925-eee99bcda534 1 Other Other +78b31454-ab67-4be4-90c4-850fe23b02b0 1 Other Other +78b37ade-95f8-4ad9-8cb8-46888a589a6f 1 Other Other +78b3986b-1bcd-4b3e-8adc-a49e54ca680b 1 Other Other +78b3a4ec-b8ca-47da-8b55-004e9751ab2b 1 Other Other +78b3b277-30c2-47f2-a2fa-efc00e50a62d 1 Other Other +78b3bbfb-686b-4d16-a4e7-88388ac845bf 1 Other Other +78b412c8-be21-4062-92d2-9cba1ef543c7 1 James Other +78b46e47-a6ee-4f89-a46c-994db6c5a183 1 Other Other +78b47098-f67d-4544-b6df-550e62aeca72 1 Other Other +78b4882b-3681-4094-9ab2-3c3de44532ae 1 \N Other +78b49302-eb81-498d-af9e-c334fd7bc5c2 1 Other Other +78b4dcc5-6b9e-4659-b5ff-f93140f16b5f 1 Other Other +78b4ec8b-3c59-4d60-995d-c8f5b8e8d825 1 Other Other +78b5a19b-9e9f-4824-8bc4-05bbe8dfbb6d 1 Other Other +78b5e280-20c9-4eeb-b909-f08913e78549 1 Other Other +78b60780-1c4a-4215-a119-1d92308813cb 1 Other Other +78b650dc-666a-42bc-bb44-0b3bc1c92340 1 Other Other +78b6bb26-0c00-42c4-8edd-350526d20c86 1 Other Other +78b708db-999b-4d41-b247-e5a37c4eb425 1 Other Other +78b71967-461b-4def-9bd5-ef2b1f1ea664 1 Other Other +78b73149-25fd-486e-be04-907db116af28 1 Other Other +78b75ed5-f029-400d-8c98-332df2bd3efd 1 Other Other +78b79090-7d96-475d-9d7c-72d6b8b5b938 1 Other Other +78b80c96-13d7-45de-a068-8143d4218606 1 Other Other +78b8209b-82d2-4dac-8578-7c1704a8053e 1 Other Other +78b824a4-63ee-4281-aa98-247737fe4228 1 Other Other +78b956e4-9a8d-465b-9781-19823bb1c845 1 Other Other +78b9649a-6cb0-4a99-87a2-15d870d62666 1 Other Other +78b990d2-06fe-453b-bb6c-00709c52c691 1 Other Other +78b9bd01-d5f3-4382-930c-636d777e185c 1 Other Other +78b9d38f-f2d4-488a-a062-384bd0505389 1 Other Other +78b9e5dc-6a33-4f67-8142-cd2034a27174 1 Other Other +78ba2a58-fa10-4de3-917b-1a51361e2212 1 Other Other +78ba86e8-2243-49a3-8ae4-18e3117f0500 1 \N Other +78ba8ad1-c1ea-46eb-8183-7410037a7010 1 Other Other +78ba9453-5cd2-412d-bb50-d1991a1d57d6 1 Other Other +78bb7ee8-eb75-4b92-b74e-61bd2c2a9e68 1 Other Other +78bb9e91-8ada-4915-986e-b1823c99a6a9 1 Other Other +78bba56f-72e3-42f7-8ed5-1d1d390f29be 1 Other Other +78bbc76c-4005-499e-917b-a20b9a1d295d 1 Other Other +78bbf460-47d0-45cf-ab6f-e05e11be2a70 1 Other Other +78bc4306-8e8d-4b8b-ad44-3ff0d20a7ce6 1 Other Other +78bcb625-edb3-4353-beb3-e52de7c1e350 1 Other Other +78bcbf83-d64c-4a4e-9a2c-d080bb4734fd 1 Other Other +78bcde93-0201-4a9f-8cb6-977ac9abe7a2 1 Other Other +78bd6b7a-96ab-4c1b-84b7-68abfc1b217d 1 Other Other +78bdc305-d808-41da-87e8-9f277abe1ef2 1 \N Other +78bdcd7d-867f-43a5-b4fb-4c96e41cd042 1 Other Other +78bde505-1699-414c-9b64-2bd90505783b 1 Other Other +78be0915-6eae-4027-b4cb-77d6dcfff99f 1 Other Other +78be7c31-da75-4a79-8a23-d334df4cc4c6 1 \N Other +78be945e-7f05-41e8-a146-dc7f82477464 1 Other Other +78be97e9-c801-43c9-8709-6c18f54ee1db 1 Other Other +78bebd70-97b9-4d78-a68e-1ea66bfdf6af 1 Other Other +78bf1ded-fd3d-48ce-b3df-470afb484d15 1 Other Other +78bf38cf-43a9-425d-bb05-36ed2870b832 1 Other Other +78bf4041-b16e-43a4-9d76-10bfcd927788 1 Other Other +78bf458a-25e3-4b12-a0d0-dc5783b11020 1 Other Other +78bf8e7b-ac8e-4314-87ab-d92fa9021a50 1 Other Other +78bfac21-9865-4c7c-b1e2-7a0731c90d51 1 Other Other +78bfc7a5-41a5-45cc-9928-381ba566001d 1 Other Other +78c09786-e977-49e7-be37-64649e93a445 1 Other Other +78c0b035-72b2-498a-b68e-495a762b5286 1 Other Other +78c0c0bc-6fce-48d1-b855-177472d19adc 1 James Other +78c0d6da-fdea-48b4-84b7-372a896329f8 1 Other Other +78c0e2b7-7275-4c47-b303-0ea05195550d 1 \N Other +78c139f5-3c9e-4452-bf84-19f764e06c11 1 Other Other +78c14e33-ff17-4547-a9bf-e7e57c4eddf2 1 Other Other +78c1e579-cddb-45d3-b949-dffd0caa1694 1 Other Other +78c21815-37e2-4776-ac14-3aa9fcc7b1a2 1 Other Other +78c2550a-abfe-499a-b08e-b34f59447734 1 Other Other +78c260d4-8b04-4c96-b2dd-98c4b4e3a3dd 1 Other Other +78c2e0fc-fb45-423e-9124-6694efff2101 1 Other Other +78c2eb35-bde1-4bf6-a82a-b0de76eb04e5 1 Other Other +78c31c02-b4eb-40ad-98c6-0cd4e3491b2d 1 Other Other +78c3298d-80f9-47ae-bbdc-062c6652e7f2 1 Other Other +78c3381a-0ea3-4eee-8552-42c7a362c64e 1 Other Other +78c37475-47c8-4490-aa54-209bd087f5c7 1 Other Other +78c37515-50a7-4173-9608-68ee38212d5b 1 Other Other +78c395b0-c806-4191-932c-f231e00949d4 1 Other Other +78c3b5fc-7d47-41af-92e6-45b6d0c31697 1 Other Other +78c3f1e7-09c5-4263-bbb9-649ec7fad628 1 Other Other +78c4048c-f1a0-4bcd-a3c2-027cd72ba884 1 Other Other +78c432ad-5fc3-4ab4-a415-0b721ed84606 1 Other Other +78c47ddf-14ee-48c8-a885-92a13f40630d 1 Other Other +78c48639-d954-43d2-9efa-62f5ca7c3464 1 Other Other +78c55fc0-25c7-4661-a3dc-79a69c3fe0c1 1 Other Other +78c5d6e9-d933-44c2-93cc-d3bfa3258243 1 Other Other +78c608e9-50df-4d7e-8c87-44477a8eaefe 1 Other Other +78c681db-85de-43d7-a85f-f29087db458e 1 Other Other +78c6ec66-bbe0-4f4d-ba2c-f7ece0d1a8f3 1 Other Other +78c6f8b1-e45f-47c1-99a6-cb09c6f0f00b 1 Other Other +78c77d7f-0cb6-4dae-bc14-c6574f065ec1 1 Other Other +78c7d96c-1e21-41bc-9b18-39b3cd415501 1 Other Other +78c7de92-98d3-442d-9087-f20016c83435 1 Other Other +78c81275-2604-4a63-831c-34380913fc89 1 Other Other +78c8439e-9d3b-415d-a876-74d51751d0e1 1 Other Other +78c86a05-9b66-4c27-8669-06322e8555fc 1 Other Other +78c886bc-bbbf-4324-adc8-fae308d6e862 1 Other Other +78c8c6bc-bd43-4e29-8726-bb06a6a41761 1 Other Other +78c8f7f3-3e7d-4e7f-b8d5-74acd5cf9114 1 Other Other +78c8fd4e-5bd3-4db8-9eef-f5611adf53f3 1 Other Other +78c95c31-4204-4088-9a17-6ae07493baa6 1 Other Other +78c98aaf-7639-4da1-9b72-dff8b583f966 1 Other Other +78c9b41e-8a0c-48f0-96e4-e483166546f7 1 Other Other +78c9b84b-e731-4552-ae39-f60b9fed4248 1 Other Other +78c9cc72-5d56-4532-b4e8-e18cb64bb8c7 1 Other Other +78c9ccd1-09f2-430c-9cac-e2e4ae9d8e97 1 Other Other +78c9de36-3c4d-4148-b07f-ea047e5f76d7 1 Other Other +78ca17e4-7e69-4c64-bedd-380fa209cbcf 1 Other Other +78ca20ce-61e2-48a2-8c07-7d204e904aa4 1 Other Other +78ca2475-24b1-4f70-8791-ba6c66509931 1 Other Other +78ca2eff-f20f-44f4-b1ac-9300d2c9e97f 1 Other Other +78ca5564-4ee1-4264-ae52-c982e4e990d5 1 Other Other +78ca65a7-e51f-42b3-88b2-ae5b8ed97902 1 Other Other +78cac49b-a96d-4353-a643-595244c3c11e 1 Other Other +78caccf5-c419-43e8-a507-4aa819d1881c 1 Other Other +78cadac9-9d8b-49ad-be12-2c71db7c66fb 1 Other Other +78caed26-40e2-4581-922f-f94b704041c6 1 Other Other +78caf984-a492-4492-9d56-5b885cbcf8eb 1 Other Other +78cba732-813a-4f9d-a385-2be5c8cbcf3b 1 Other Other +78cba9d4-5644-4682-97f3-c319182fa7d8 1 Other Other +78cc1565-d73c-4cf4-93f3-dc48282a735f 1 Other Other +78cc1e3f-64c3-4121-85c5-8a88bcf0495c 1 Other Other +78cc210a-6939-4d98-ac05-36f9bbfd60d1 1 \N Other +78cc6cc7-1d3b-49d5-8553-f0e8d168a605 1 \N Other +78cc7090-8622-468c-a4fc-429bf848df92 1 Other Other +78cc8561-5847-4674-8ab9-081143a02eb6 1 Other Other +78cc871f-11c0-4473-8563-a4865eb65b21 1 Other Other +78ccdc1d-87b6-423a-ae74-4d4f4d2f8336 1 Other Other +78cd2a87-0e24-4428-bb28-a79e91c55471 1 Other Other +78cd5f00-37ab-48d5-8e9c-312502961f86 1 Other Other +78cdbd1b-f3cd-4c1b-9093-e8940c1d635e 1 Other Other +78ce0c33-8ea0-46a7-9303-60d12f75812a 1 Other Other +78ce1cc3-453c-4ed4-b6a9-7384e87d07ed 1 Other Other +78ce92ff-fe66-4b89-b130-1a234c4961b3 1 Other Other +78ce9a49-89d8-4654-84ad-0c0d1959e68f 1 Other Other +78ced806-c34c-476f-93f6-19b7a2237b46 1 Other Other +78cee5e8-1032-4ef9-80bd-abb339ff26e1 1 Other Other +78cefcf2-3be4-47cf-85df-bd9e33c396a1 1 James Other +78cf1906-5e93-46b2-b509-7e994eea8ae0 1 Other Other +78cfc5fd-4095-4390-a9cd-f253505c254d 1 Other Other +78d0921e-1588-4964-bf2b-11a8cb75bae8 1 Other Other +78d0a90b-99db-4b64-b07a-593d79ac71b8 1 Other Other +78d0d316-2a9b-4db4-ba13-89461c049b2c 1 Other Other +78d0df53-0a50-4723-b53e-7d99baa6876c 1 \N Other +78d1459a-3d9f-475b-8762-50020dcb5b4c 1 Other Other +78d153bd-152b-401f-af2c-bb4d0b68a1b5 1 Other Other +78d153e8-3fba-49cb-aa93-53e4551b26e9 1 Other Other +78d22ddd-7fe2-421a-807c-77729faa963b 1 Other Other +78d25d30-e852-4982-a31f-dfb2818200b0 1 Other Other +78d2715b-1311-4155-a294-6929a330662c 1 Other Other +78d2985b-129b-4b94-89cf-fd5728b10ff0 1 Other Other +78d2a282-c123-441b-806f-cb5b0bb12109 1 Other Other +78d2eec4-8043-4c30-b678-a4e4f3cc7812 1 Other Other +78d30a86-03c2-4bec-ab79-97b46bbc1b20 1 Other Other +78d319ba-56aa-4023-963d-97838e4b9114 1 Other Other +78d336ab-21bd-4232-84cf-9373745759b5 1 Other Other +78d3a802-1b22-4b2a-b392-66d0ecbe942e 1 Other Other +78d3be64-fd7b-4a3e-9357-e5b31fd4d13d 1 Other Other +78d3db68-d394-463b-ab05-3ea5dfb9ed4b 1 Other Other +78d43e22-3051-41b1-a1ab-b07da4064bf5 1 \N Other +78d49cc6-58b0-44e4-8b34-ad50f6240f7e 1 Other Other +78d4bd88-aa92-4108-bc22-30b63505490e 1 Other Other +78d4fd0f-6740-4379-b076-ce0774d661eb 1 Other Other +78d516b5-e032-4532-a499-fe4c2aed2054 1 Other Other +78d57a83-6a05-4d22-9958-9dc6892a6e70 1 Other Other +78d57ff6-65ff-4ffc-89a2-69c22c090751 1 Other Other +78d58790-d105-4b99-b887-14b88ca5f1c0 1 Other Other +78d58c11-e02b-404d-a563-3a3b87bcf62c 1 Other Other +78d5fb7c-da98-4499-a65b-4bde51bb63ba 1 Other Other +78d6143c-a60e-476c-8f30-fc1ecbcc157a 1 Other Other +78d62aea-bc79-46b2-a2b9-c78d447dd5f0 1 Other Other +78d63e46-fe4b-451c-b053-c9d693fbff9a 1 Other Other +78d69b6c-1de7-4a44-bc65-4e4db0586f7d 1 Other Other +78d6e1cc-dc5d-43ab-8d35-059f2a45e9d2 1 Other Other +78d70d23-1cb3-47c7-8110-764a1fb16265 1 Other Other +78d717f4-a4e9-41cc-9e1c-71286d403950 1 Other Other +78d71aaa-81f6-4961-a24f-3fe274ba6820 1 Other Other +78d71b92-c3e0-4916-a9f5-fbaaee339b01 1 Other Other +78d7439d-7f24-4145-981d-f6b4b9b48040 1 Other Other +78d7505d-9ce0-4e6e-b9e0-afc7ac3a0596 1 Other Other +78d7683c-9d20-4582-ac38-c353ca71e023 1 Other Other +78d78a6c-eb66-4353-842f-64f4aef9495d 1 Other Other +78d79266-9fdd-4f14-99ef-479f930e754d 1 Other Other +78d797f9-e623-4ccf-aa8f-70fab6b99f08 1 Other Other +78d7b702-feaa-4fda-acad-f8548fd9bd71 1 Other Other +78d8189d-4b5c-490e-b55c-339d0eeec0ec 1 Other Other +78d8439f-14df-43b5-a612-fb461774f8ad 1 Other Other +78d8531e-24cc-41db-af02-796d85f95322 1 Other Other +78d8e1c0-3334-4b11-9045-b4559c430d2f 1 Other Other +78d91c73-74f7-4c64-b013-4491009e4fd6 1 Other Other +78d9a1a9-3a04-475d-8f02-446741087494 1 Other Other +78d9b3ba-3d01-419a-91a3-2c0a0eca4c03 1 Other Other +78d9f40d-8522-439c-a792-1515564a7c66 1 Other Other +78da24cf-465c-413f-a637-7e6465e37cd6 1 Other Other +78da3c37-ad19-439d-acb2-9da807b688a9 1 Other Other +78da6d12-26bd-4040-a696-d23d164f55d2 1 \N Other +78da8774-f45d-45cb-95fe-b87177c3f405 1 Other Other +78da94d3-7a05-4924-8e91-e4f7e27a86e0 1 Other Other +78dad790-ea9b-4123-b508-ced8b375a0e4 1 Other Other +78dadd31-f513-4ecc-a233-c651856b87f3 1 Other Other +78db19bd-3811-4387-8f34-0830d7e14e13 1 Other Other +78db6ba8-0123-41dc-988c-ca8405b9c999 1 Other Other +78db9e2f-1652-421d-8418-d3cd32a55414 1 Other Other +78dbd9d6-9168-4f0d-bff0-944eac4ad835 1 Other Other +78dbe87a-1092-4957-b496-7a52c9851810 1 Other Other +78dc0c7c-81ea-49a1-b03d-fd0b4ee3e64e 1 James Other +78dc3d7a-82f9-46cd-8f52-85b6c1470552 1 \N Other +78dc7c2c-7b89-4c1a-b68c-07598aab0aad 1 Other Other +78dd1b83-a37a-4a43-bc41-58a30b5b49af 1 Other Other +78dd7b27-d34e-4bfd-a148-0bd5c5b3ae2b 1 Other Other +78dd95fc-1f85-4520-a161-bb95a3b43aaf 1 Other Other +78dd9617-b24d-44c0-bcec-c2b85fb67fba 1 Other Other +78de1ce0-9fe7-4423-b7cf-fedb79844a57 1 Other Other +78de8406-5b28-4b2e-9dc5-7d4d816a4786 1 Other Other +78debd74-dbb9-400d-926c-fef0185e07b1 1 Other Other +78df580a-915b-4ee6-a573-dae696581aee 1 Other Other +78dfc321-67e8-41aa-8646-c2a932ffa5e0 1 Other Other +78dfd338-59b8-464b-bc41-73f7d321170c 1 Other Other +78dffe9f-bf7f-4a4d-b268-7630be31712f 1 Other Other +78e0bb32-7eed-4c0f-8109-b062fc69fd76 1 Other Other +78e0ea3c-be3f-4f82-abc4-f3f6389be9b1 1 Other Other +78e10943-0f0f-4794-bec1-90ecf5c6b01c 1 Other Other +78e1739f-c5d5-4f86-bcae-3bdedeaa899b 1 \N Other +78e1833d-3e5b-4264-8e8a-60406a408412 1 Other Other +78e18657-0332-4f2c-a0bd-6e3a293aabd8 1 Other Other +78e1a6d8-16cf-404a-8041-682e2ad82a98 1 Other Other +78e1c5b6-b12c-4d91-b0aa-f1fedc014052 1 Other Other +78e1dbe6-8c81-407f-ad2f-a0a15a663d1a 1 Other Other +78e20d84-f976-4752-a827-5dbcc4ef1708 1 Other Other +78e25c0e-5d17-4008-a1fb-d3cfafaa35e4 1 Other Other +78e29fba-1568-41ef-8c99-fa1bc3f182a7 1 Other Other +78e2a9e7-1c0a-4bc9-a9e9-0b6f277432b7 1 Other Other +78e2c4d5-c503-4b6d-a1cf-5c40fa8a59bc 1 Other Other +78e2d02f-4b5b-4057-b514-0ea2257283e9 1 Other Other +78e300b2-29c6-403e-954f-8c26609f88d7 1 Other Other +78e32333-6719-4d19-9626-04469c119852 1 Other Other +78e325ac-2059-11e8-ae9a-fa163e8624cc 1 Other Other +78e331c3-c105-4816-a343-00bff59cc607 1 Other Other +78e34159-7a40-4758-9966-d86b6f155d83 1 Other Other +78e36943-8cb0-4f61-8c1f-ab053a9b7797 1 Other Other +78e38782-2b85-49fb-bea2-73d307cbd2b7 1 Other Other +78e3b224-fe3a-4dab-a5cb-ff60979616d1 1 \N Other +78e3d071-96e4-4208-939f-ad4021ce7d50 1 Other Other +78e3e223-48d3-4f51-a185-9864afa179d6 1 Other Other +78e44991-0ce6-46f9-8070-0732e29301bb 1 James Other +78e48469-c8dd-4f0f-9f7d-ef4d71ae10e4 1 Other Other +78e4b5c7-6786-41ac-b2bb-51405b881d7e 1 Other Other +78e51080-5765-4fa1-86e1-422b369a2fa3 1 Other Other +78e55d8b-f26e-42bf-900a-211478f3889c 1 Other Other +78e57e8a-3a03-4cec-ad56-9d87aac8cb24 1 Other Other +78e5800e-51fa-4da5-afa0-7b6b7e30104d 1 Other Other +78e582ba-e0aa-4754-8c03-4796cc1da400 1 Other Other +78e5e936-aec1-4201-845b-a7aae1970aa4 1 Other Other +78e5eb02-5099-4d29-8386-79248e1097c7 1 Other Other +78e5f624-6c6b-4c2f-b761-0e96067c79fb 1 Other Other +78e5fff2-1375-4a69-b8ea-383893cb2f5d 1 Other Other +78e64987-2174-4cb7-ab93-94748cf0fb4e 1 Other Other +78e667b4-d7d3-4840-86d6-e0cf419971c6 1 Other Other +78e6db4f-eab4-4210-ac1f-aa9154e1e35f 1 Other Other +78e6e7b0-659d-47ef-bf31-915c4ac91bb6 1 Other Other +78e737cb-8912-47ba-a5d2-911c57393811 1 Other Other +78e7615e-dba5-4c5f-a150-d74f2bf3a8ab 1 Other Other +78e789c7-37a2-4af3-91c8-52cc0deaccd1 1 Other Other +78e79020-1ce0-4de4-9a73-1f725349d43c 1 Other Other +78e793e3-c265-405d-85c9-e2a2c3994c88 1 Other Other +78e7adec-954b-41ab-9435-ff01a97af0a6 1 Other Other +78e81b13-96f3-48d9-aec6-7d5b085db7c3 1 Other Other +78e863d1-85db-48f0-b8b8-883a6ce4a23d 1 Other Other +78e881cd-a970-45ec-92f9-bec6d02410c1 1 Other Other +78e8cc5d-70d8-4444-8e13-51ce269fcc1b 1 Other Other +78e8e611-fa58-4f5a-bff4-3241a6a304a2 1 Other Other +78e8f1f4-668a-4403-9a0d-5a16f5283136 1 Other Other +78e90b4a-4541-439a-8e32-9d8c89d15d22 1 Other Other +78e9460c-b2f5-467b-9793-887338ca2f30 1 Other Other +78e950ad-4ed7-45c3-93ea-5d0c576e3254 1 Other Other +78e95e6d-d091-44cc-9840-6d19f41988e7 1 Other Other +78e9ee90-edcc-4264-9ae4-9731db30f9ee 1 Other Other +78ea4667-8602-4432-9211-5df4f9baa2c5 1 Other Other +78ea94c4-9c7d-4556-85a1-ca3173a70275 1 Other Other +78eab7f9-f0f0-4222-a20e-829f011941a4 1 Other Other +78eab9b5-08b0-438e-81b6-2a4e5a6b4844 1 Other Other +78eaf6d7-ad2e-495a-ba78-c928fcec797a 1 Other Other +78eb089a-27b4-4961-9d1f-8593a80532a6 1 Other Other +78eb7c67-1190-4cb0-8640-5c614beab33c 1 Other Other +78ebcd1b-93da-4ce5-8d08-d2e2eb831e1c 1 Other Other +78ec05d1-39f0-4ed2-8c01-295dc4af1970 1 Other Other +78ec1bc4-c8ca-4900-b942-a87e28c669bb 1 Other Other +78ec29b4-380e-4887-b169-6ee907a3c349 1 Other Other +78ec81ad-187e-480d-9eaa-2a851846b7db 1 Other Other +78ec879e-990b-4b91-9be9-5ba5a544c7f0 1 Other Other +78ec9ea7-3574-426a-978d-bbc4820156de 1 Other Other +78ecda7f-8a79-41d7-b3cd-b33b810bba7e 1 Other Other +78ecff84-4990-4fc9-bb43-fb0f97c0a9b6 1 Other Other +78ed710e-85e5-4bc1-a88e-4aa83fc6bd16 1 Other Other +78eda27e-ab85-4cf9-9ed6-16221dcf4acb 1 Other Other +78ee3bf4-ae5e-4e78-8fe7-5e2c0dcb3695 1 \N Other +78ee82d5-8179-4233-8edf-237aaefce76b 1 Other Other +78ee872e-76b7-4b79-b7f5-4937e2389fa1 1 Other Other +78eea363-6a75-4f5a-a406-5ad17ed83df1 1 Other Other +78eec5ec-1b30-4b1b-8110-eb2e4a5c743e 1 Other Other +78eefb3e-fc6d-45f7-99d7-6b5565be5d6a 1 \N Other +78ef07f5-da8a-45ff-b414-30920c9794a4 1 Other Other +78ef1da6-c8e4-4c0a-a959-a96f5a8cfce6 1 James Other +78efa861-bf56-43e9-be55-625c88fb1f1c 1 Other Other +78efe480-fdd8-4a6b-9baf-ac1ff4777f8f 1 Other Other +78f0c004-576d-4fad-9bc7-ee4cbe59f691 1 Other Other +78f0d0a7-a2c6-45c4-bafa-b9ab9cd68ebd 1 Other Other +78f0dcd0-149a-4d8f-a9bd-55c4d351d085 1 Other Other +78f103df-8475-450e-8c45-8f95434b8ea8 1 Other Other +78f10815-196a-4f11-83fc-843fb990f4cb 1 Other Other +78f12b82-6e3c-4089-a37c-3a588dd4c145 1 Other Other +78f1485c-4994-44e3-96ca-d856eadcaf0f 1 Other Other +78f1b5b2-5779-4e6e-bd83-770ae006574e 1 Other Other +78f21f24-a64c-4659-a362-b6467bc34d82 1 Other Other +78f2252b-b79d-4724-8bd5-41f4df81ea43 1 Other Other +78f2256b-2469-4427-97f9-62d11ccf7e29 1 Other Other +78f23f86-6b17-45f8-96b6-3ec086d66d69 1 Other Other +78f25465-be6b-4e25-a6c8-b30d5fee2aa0 1 Other Other +78f26772-8d98-49da-b68e-6482ff875d22 1 Other Other +78f269f1-0a05-4caf-87e6-160f7be70ce8 1 Other Other +78f298a7-950a-4848-a3aa-b7311cbfa5ed 1 Other Other +78f2ad7c-df78-472f-ba28-7363d0f59b67 1 Other Other +78f2c4c9-8f46-4e54-af0c-712b8552c838 1 Other Other +78f2e788-a445-4a7d-891e-541f8cd1ce38 1 Other Other +78f2ec76-5130-4ee5-a367-23dd3e3b3184 1 Other Other +78f32d69-be2a-47f3-887e-124aa75c8d05 1 Other Other +78f335aa-98cd-438f-a048-bde8310f8227 1 Other Other +78f349d3-ab8a-410c-9deb-a69fdaf91f8f 1 Other Other +78f34e30-d354-4ae7-adbc-5c89a283afa2 1 Other Other +78f361e0-4244-46fd-ba3f-b16d1e8ae1a0 1 Other Other +78f371f4-50eb-417d-b908-ac2047658bd9 1 Other Other +78f3739e-eded-4cf2-afd4-48c91f78eea1 1 Other Other +78f37789-65ae-429f-b697-184f578fe8b0 1 Other Other +78f3a6c7-f88c-4a15-83a5-a6070d5956b5 1 Other Other +78f4043c-0f08-4387-8221-f86a482cc686 1 James Other +78f40a88-daf1-40d7-9f92-e0e24323be5a 1 Other Other +78f42c42-45c4-4409-95b3-a9c563eb44ec 1 Other Other +78f46dbf-e434-496c-9b44-41933d7824ff 1 Other Other +78f474db-3070-45fb-a849-01c1d16daafb 1 Other Other +78f4a2f8-b548-4254-bf9b-632df17cfe68 1 Other Other +78f514f5-6864-4c97-a3d0-e33a87e584b6 1 Other Other +78f54c0c-95bb-4b95-b18f-7f713a5c968e 1 Other Other +78f5774a-5008-4734-973d-81066b9e9c9c 1 Other Other +78f59640-3f1c-4b36-9150-22820d92fd0b 1 Other Other +78f5a8bc-de24-4e11-8a1b-a3014127a929 1 James Other +78f5c4ec-897d-42b0-a35e-214d46ae5595 1 Other Other +78f6386b-823a-4e77-8939-777f23d4a358 1 Other Other +78f68459-7cc4-4ba5-a3a3-ce1300ab0ea6 1 James Other +78f68908-8cc0-472f-9985-3b301b18e6c9 1 \N Other +78f6aeb2-01f2-4bb6-b710-00f0897fc453 1 Other Other +78f73c25-a664-4010-9a82-12c2ae86a766 1 Other Other +78f769c2-1f0d-4c34-b941-a7d519689387 1 Other Other +78f7770b-f2ec-4f09-9663-b0e8b3439313 1 Other Other +78f78e67-a88d-4312-9f2d-5a903b9eae9c 1 Other Other +78f7a60f-f6cb-4a36-8fa6-5c68d65b4db1 1 Other Other +78f7ad69-6ff9-49a4-9d97-1440f2aa6995 1 James Other +78f815e4-6954-4670-8a52-320f51474c2c 1 Other Other +78f844ac-69a2-4574-9494-5f0ee4516d2a 1 Other Other +78f85950-5006-45bb-ac33-6c9ce789b0e9 1 Other Other +78f8676b-7214-4159-bd02-19089037c5f5 1 Other Other +78f86f02-253a-45ae-b0e9-61a514da4f9c 1 Other Other +78f8d391-9748-4052-a755-cb85c66b3387 1 Other Other +78f8dc45-f88a-4de8-9bd8-38364262c462 1 Other Other +78f9017a-4702-40d7-86b6-fd39406d5b38 1 Other Other +78f949a7-1271-4770-bed9-19e97a8e3dec 1 Other Other +78f9d51c-6470-4f37-a7b8-a6c5ab13731f 1 Other Other +78fa7628-5afa-4b53-a810-5944c39b4b46 1 Other Other +78fa890a-abee-40bb-997d-48b50fec1635 1 Other Other +78fac95a-05b4-47e8-9111-e47cd96b810a 1 Other Other +78faf381-48ea-4a0f-87d7-8c8f73cbdfa7 1 Other Other +78fb7040-48f2-4d61-a76b-d3ce9a2b13ba 1 Other Other +78fb721f-d22b-480f-a921-789ab2978e26 1 Other Other +78fb985d-30d4-4948-809d-1ad53e1e8cf6 1 Other Other +78fbae95-73ea-419d-9583-d22578491138 1 Other Other +78fbc6e1-323e-4299-a40c-f2c3d0b23705 1 Other Other +78fbd74f-031f-4863-9966-289a0afc046f 1 Other Other +78fc4ac8-03ac-4a90-80f4-2e97027462a3 1 Other Other +78fc626e-0849-4890-8859-d9c3e5891db9 1 Other Other +78fc68ee-dec7-4841-8105-52b144839115 1 Other Other +78fd6686-30a6-45d4-aa44-0fe00530cd39 1 Other Other +78fe3a01-9f4e-45c1-8a5b-61d8fb1e4848 1 Other Other +78fe8178-5ffe-464e-8efd-67212e7fd731 1 Other Other +78fe95b7-f4c8-4dd1-8748-b6ea31988431 1 Other Other +78fea75a-73a0-42fd-8ca2-eaa101c8dc89 1 Other Other +78fef434-3d79-4683-b01b-25f2cbbf6b26 1 Other Other +78ff0c07-7997-4885-a25f-d4155e29a999 1 Other Other +78ff10a3-97ac-476c-8592-3597aa80c614 1 \N Other +78ff1b82-16fa-4017-9e82-bcd50b4a569c 1 Other Other +78ff3b8c-7fac-4cf4-953b-9e1e8ccf729f 1 Other Other +78ff6187-2ae4-41dd-9865-78fc7ca08c97 1 Other Other +78ff6aa3-c754-41a1-8e90-33560e0c2dd4 1 Other Other +78ff70ca-4d07-4a41-be27-7468fdb29f15 1 Other Other +78ffa50e-5c94-4a55-a9f8-c91d4adff431 1 Other Other +78ffa795-b57c-450e-aa2d-6fa6386632ab 1 Other Other +78ffb017-3a95-44a4-b9d7-cd56075e79ec 1 Other Other +78ffb417-c67a-4e15-a766-8f377ef0aa2a 1 Other Other +79002215-5b6f-4c3d-8533-a4d9b70eadeb 1 Other Other +79003c3b-caef-46a1-941f-22acbbec7aec 1 Other Other +790096b0-7827-4ae4-9fd3-57be0ccc7b97 1 Other Other +7900bd94-0004-4679-908d-13c648887cd2 1 Other Other +7900c91d-2955-4d40-ad13-b88983a1b183 1 Other Other +7900dce2-0cf1-49c2-ad4d-3e48bc225049 1 Other Other +7900e14d-5286-4f62-bb5d-ccaa20440fd0 1 Other Other +7900efed-72a0-4a27-8250-aa10260cf175 1 Other Other +7901336f-66ce-45a9-8ba9-44b491f5f899 1 Other Other +7901ffe4-df38-4180-87f2-9aa9713c59ba 1 Other Other +7902b948-1f70-4bd1-8c60-a777e87de168 1 Other Other +790392e4-e0f7-49f1-95f1-db0e1b367e0b 1 Other Other +7903dfaf-e7c7-4784-bdf4-e70ff833ed70 1 Other Other +7903f73e-d4cc-4f21-b2ac-e374802e2df5 1 Other Other +7903f87d-12d9-4537-961d-3a847b7cf278 1 Other Other +7904242d-228a-4656-8c41-ae3cb87dd2ce 1 Other Other +7904323d-72c0-41c9-aceb-e84953f0d1a5 1 Other Other +79047941-f2c2-4a0c-8e48-bde8d95244fd 1 Other Other +7904b978-8fbd-4e7e-bae7-f5319fb7a4ed 1 Other Other +7904c4a3-8e44-41c2-bf52-894722c76de8 1 \N Other +7904d0cb-8e8f-456a-9054-257c384ff4b8 1 Other Other +7904ee44-18df-42c2-be3d-c5937b5a75c3 1 Other Other +79052bb5-117e-4c97-9d3c-fa7cbe1db459 1 Other Other +79053ea2-4521-4a25-8eb7-8e37ceb06d99 1 Other Other +790550a5-d50d-4877-bf0e-886807d353f2 1 Other Other +790597f2-8ca6-4d42-a713-c44fa578c82c 1 \N Other +7905b716-ef61-4b1d-9fca-4691a81dba17 1 Other Other +7905da58-41c7-4c74-91e4-1be569fdc27d 1 Other Other +79060b85-1367-43b9-b5eb-4443db5d19b0 1 Other Other +79062ed7-5406-466b-92f9-b1841a831127 1 Other Other +7906435a-9e33-483f-90d7-3d1e6ba3e3e9 1 Other Other +79064843-45e0-44f8-b330-4100e4060418 1 Other Other +7906ac04-f620-4129-8a1a-32e83d4d154b 1 Other Other +7906d5d1-d578-4831-8eb4-fa484035ae89 1 Other Other +7907817b-419e-4ffc-ade9-51a31196eb95 1 Other Other +790792c7-0777-428f-b4bc-3b90c9a3aaf3 1 Other Other +79081884-bcbb-4797-baf8-221980a5b24b 1 Other Other +79081ac1-5220-45c5-9828-3a32c80e354f 1 Other Other +79081cd3-e6af-43bd-ba41-e1b8484a5169 1 Other Other +79083dde-029e-45d0-b2c8-c899da43f389 1 Other Other +79085e33-a850-433b-961e-762b0d34de45 1 \N Other +7908eeeb-ce5e-4f1e-a287-1587062f2918 1 Other Other +790928af-7ff6-48cf-8247-53fc5900d1b7 1 James Other +790933cd-a6dd-4f1d-a987-b0ee2b3ad8e3 1 Other Other +79093ad7-ea37-41ae-9d59-b4911d156a55 1 Other Other +79098b31-830a-4944-aa4f-e9ec1052de90 1 Other Other +790abd73-f5ec-4b63-823a-ee8e84374191 1 Other Other +790b103d-3e5e-4cb0-8a12-01c5cf169584 1 Other Other +790b1e38-fcf1-47e0-bc97-8b2e410cf2b8 1 Other Other +790b2e72-31f9-4ca3-a3fa-823823dd89c6 1 Other Other +790b36c3-f33a-419c-b9aa-b855925554bd 1 Other Other +790b8072-b76c-47bf-b6e5-a2c7427a4163 1 Other Other +790ba1a8-9ce9-4493-b2f2-37d8ca0d64d3 1 \N Other +790c401d-8f2f-4c42-9a09-646a1d6358cc 1 Other Other +790c42c3-1375-410f-ab82-bb64ab5206b7 1 Other Other +790c722f-dc8a-4f3b-86c7-7ceefbeff6df 1 Other Other +790cb4c2-a063-4d56-a754-e143044cfa56 1 Other Other +790d312f-25e2-43d1-b733-d9eb12fb7fc2 1 Other Other +790d8c48-191e-4c41-ad8c-bffe01f56a06 1 Other Other +790da631-eae8-49c9-a3d8-7c2862f18966 1 Other Other +790dee5e-c12c-489a-9718-c01666dc8bc9 1 Other Other +790e0879-202e-43a3-8140-d7cd619595f3 1 Other Other +790e2e00-c7f2-423d-86f0-7f22e75503d8 1 Other Other +790e9c21-6354-49f5-91d5-9c72a4221324 1 Other Other +790ec957-f891-439a-8d3a-05bbad9c7df7 1 Other Other +790f26c1-5831-4671-8eb6-ccf7034430e8 1 Other Other +790f35bf-8800-4b26-9b0a-674c669d2e2a 1 Other Other +790f8daa-85a5-4e73-be19-5e21145f9855 1 Other Other +791037cd-c75d-4b97-b4a3-42bc1a03d422 1 Other Other +79103a2f-aaee-4860-95df-c1f6833b76de 1 Other Other +79103aa0-d97d-43e4-8240-d6b6cd583200 1 Other Other +79104b79-58e3-4baf-8999-7616e2b3dd9e 1 Other Other +79105865-71e5-42f2-bd20-82e1bbccbfd2 1 Other Other +79105db1-3dfd-425a-bb31-03fb7ebe860c 1 Other Other +7910669a-165f-4c20-9995-0ea4b6f2dbf2 1 \N Other +791069a3-39d8-458e-9456-ec072653ad26 1 Other Other +79109de0-3613-417c-8f62-7dfd4d4bd2e4 1 Other Other +7910b262-c8b4-4fe6-ba73-6ece73e2a605 1 Other Other +7910b938-29d0-459a-aba8-cd33ac41671b 1 James Other +7910c6b5-0bdc-4d4e-a3e1-9db70c4b39a4 1 Other Other +7910d2df-0723-4c44-87f6-08b45a43aa40 1 Other Other +791133d1-5caf-4daa-a34e-c62f701980ad 1 Other Other +79115b31-cb9e-4263-af56-1c9712799f99 1 Other Other +79116418-2b47-4002-ab95-e09cfdef4c7b 1 \N Other +7911e890-aac3-4802-8e97-bf4cac89b7f4 1 Other Other +791238b7-4113-403b-b0ba-3f6293e0e62f 1 Other Other +79123ce3-0322-487d-8451-79e7e2d11439 1 Other Other +79126342-28e1-4ae2-b1ed-c3be04221441 1 Other Other +7912d049-6735-4956-9561-2a1a46fbd3e4 1 Other Other +7912ee3a-2b25-450a-bb0b-adc737ac2243 1 Other Other +7913acd9-8765-405e-951e-03a45e0fc717 1 Other Other +7913ae06-c602-420e-b188-0c648284c31b 1 Other Other +7913efd4-c996-487a-bbcd-0e105cb3766b 1 Other Other +79140b18-a29e-4394-b480-f4c1885bef86 1 Other Other +79141628-49a6-4410-b7a2-f28f02ad91a2 1 Other Other +79142e5e-4746-4079-bbe0-e5b1c05c2021 1 Other Other +79146c4e-8a0a-4a24-89c4-65a04284f281 1 Other Other +79147024-8a12-4107-b945-3700bfcae103 1 Other Other +7914cbc2-942b-4237-8a6b-167e8a1ab823 1 Other Other +7914d3a2-a09c-4d6b-932a-e572a7f879ba 1 Other Other +7914e9b2-26e2-4227-b03b-25cd75e664b7 1 Other Other +7914f2c6-50b1-4c71-a8cc-6a977cef9429 1 Other Other +79153afb-1e9e-4a0b-abd8-3c66e41734b8 1 Other Other +79154544-3938-4bb2-8ac5-3f1b8c6d04a0 1 Other Other +79157841-0e6c-42e8-8125-1619d0cc0610 1 Other Other +79158a1d-0d63-44c2-9078-006c23d79f64 1 Other Other +79158ed5-d8f9-4c73-808e-8006c8c814d8 1 Other Other +7915d208-d3e9-476d-9bd7-e20b16213845 1 Other Other +791659c3-7239-4d99-84a5-e9eef85a8fd6 1 Other Other +7916793b-8025-4375-b80a-6a54c3abf647 1 Other Other +7916aa9c-2bb3-4386-883c-843f219d2057 1 Other Other +7916c709-8fcc-4507-b6bc-b1f263cba195 1 Other Other +7916dbf4-4172-44c1-9c42-16714a6ae9a6 1 Other Other +7916e1b1-346d-4ff6-bf2e-9322a62cbac8 1 Other Other +791749fd-d4a2-4b3a-b967-60e4dc0ae17b 1 Other Other +79175730-4d72-473a-8121-e172f8e74ee9 1 Other Other +791776fd-aad7-4249-b9c2-13f906b7396a 1 Other Other +7917ea81-3491-4da0-b61d-8b33bc420b7d 1 Other Other +79181a57-a29d-4ad4-8c51-4c25f809f365 1 Other Other +7918888c-7f67-4206-a199-a9c27adc0a55 1 Other Other +79188c1f-166f-4aab-b820-883d5ea63b12 1 Other Other +79188edb-0396-44de-b235-67a37f88da61 1 Other Other +7918ab56-99ef-41a5-a9e1-eabb98447a49 1 Other Other +79194bc5-a210-45f1-bc88-7657acbf405c 1 Other Other +7919b25b-f76f-4d85-8c92-acb0bec219cc 1 Other Other +7919cf91-3848-47b3-b1e9-a298bb0a4afb 1 Other Other +7919e736-2df3-4c65-b8d2-f7054d3c5486 1 Other Other +791a29ab-1b14-41f3-8cfc-43b23aad2ac5 1 Other Other +791a53e7-88f5-4cbf-add0-188e03fe0fd4 1 Other Other +791aa05a-bc0d-43a7-af0b-df44c826c964 1 Other Other +791ae7c0-de02-40b8-9147-bfeb75664e9c 1 Other Other +791b1ca5-f382-47f5-b07c-61157aa8a4fa 1 Other Other +791b39a1-83d0-450b-9b79-4b7857aeb199 1 Other Other +791b8314-3e0a-46cc-9b18-846fdbcd20e5 1 Other Other +791b8b26-7ffa-406f-bc86-d162a82a0383 1 Other Other +791b8fe5-b391-43bb-a91d-4ede2de3c288 1 \N Other +791bd575-4895-4ef6-9452-d1a380c50cba 1 Other Other +791bfa6c-e2fa-41ef-ab60-4d4560c88896 1 Other Other +791c0d24-2d5e-4d84-be4a-32cff681bdfd 1 Other Other +791c0e16-ab52-49f2-be6e-0e7bd56d04de 1 Other Other +791c3e86-f68b-453f-9186-ae25b5f6f649 1 Other Other +791c40d9-980d-48a6-b0e1-903ae24f5314 1 \N Other +791c4b1c-985b-4b6b-a0b6-ea6c1923a025 1 Other Other +791c7bc3-d870-42e6-925d-314c389d06e3 1 Other Other +791ca9f1-d01f-494b-8a05-cca6aaf43470 1 Other Other +791cceab-613e-4fce-bffa-0336c5bbb996 1 Other Other +791ce3ff-135c-41ab-9c94-6e792c9acb83 1 Other Other +791d0737-1c11-48b3-afd7-80119e8b5de5 1 Other Other +791d2dd1-71b2-4df1-b471-cee75d2dcbd1 1 James Other +791d3c54-f441-44ca-9d29-62e2887e10ca 1 Other Other +791d5b0c-924f-44ce-b57e-7cec269750d2 1 Other Other +791d963f-66e8-4b3b-a6ad-02b5bac6300b 1 \N Other +791daf83-a875-45e1-8472-11851b5fd2ab 1 Other Other +791e7582-a5ad-4c2c-a52f-1be35ce3d380 1 Other Other +791e975e-aa09-4dae-8d86-0ec6cfccfbe2 1 Other Other +791eaadc-ef34-44d0-a140-b6279144abcd 1 Other Other +791ec8df-1511-4a15-b70d-b8596f63cda5 1 Other Other +791ee505-265a-4fef-a7be-ebb359390963 1 Other Other +791f3f6a-6a42-476b-852e-2f6df8414ef2 1 \N Other +791f4e22-c585-4ae4-9faf-e15140144027 1 Other Other +79204578-0716-44fe-83f7-a981b13c3bc7 1 Other Other +79207baa-0f27-4352-9f26-f6a134df8108 1 Other Other +792103f2-b2dc-4feb-8077-248854b9d292 1 Other Other +7921e5e1-10a1-40ef-97cb-04feeb582f94 1 Other Other +7921f1c5-fdcf-4e81-b8bf-47ed8eb8cab0 1 Other Other +7922439d-3c38-42d3-8691-fcc88b76e7dc 1 Other Other +79224f16-2409-43d3-b6a4-e067f40f8da8 1 Other Other +7922d71e-2ad1-4396-8c4c-a7e030a7c19a 1 Other Other +79230ffa-f463-4fe5-8d54-df2d59e178d4 1 Other Other +79231724-3f82-4408-ba62-df635cf2e9fb 1 Other Other +79246ec2-069d-40eb-a629-c58f99ad03a1 1 Other Other +792474ab-c942-4519-9d2c-edca61e9009c 1 Other Other +7924abef-4095-4a42-b07e-06ddd64f2d3e 1 \N Other +7924ad5b-1919-430a-9522-65c870b62699 1 Other Other +7924caa2-49bc-426e-8a85-92dbbf4b97de 1 Other Other +7924cb0b-a52c-4f09-a006-0e7bbe8b5319 1 Other Other +79252b20-8b9a-4c4e-bbf0-4e775a5e5471 1 Other Other +7925332b-0413-4b93-b827-42a45cc12741 1 Other Other +792589d4-4771-445f-bc10-fc6f80da266f 1 Other Other +79259785-1218-4962-8bd8-a14b4472bf59 1 Other Other +7925b2a2-11dc-4e88-96d6-f8aeadb4ca6c 1 Other Other +7925b5c5-9615-4529-9f21-d63d24b46f57 1 Other Other +7925dc88-edca-4d6b-ba0f-b7856a8ccc4c 1 Other Other +792623c5-1be6-4073-a54a-da7af95da770 1 Other Other +79262b07-093d-44fd-aeff-2e6c167142ee 1 \N Other +79263194-6c64-433f-8499-eeb52473b0c2 1 Other Other +79263bd6-14a6-437c-be71-e1e646ed0177 1 Other Other +79264464-fb89-45ee-8db4-10f922bb96fe 1 Other Other +792645da-acf1-49c7-bcd8-66fda4ec9aae 1 Other Other +79264e8d-dc48-49c5-bc56-30ae64c77231 1 Other Other +79267ca3-b5fa-4197-85d1-68cafdda5be2 1 Other Other +7926f51a-48c1-4ebf-9c82-809dbc37a9ae 1 Other Other +79272f02-1f45-4428-b448-9137fc2e0003 1 Other Other +79278a8f-033e-4573-a777-06bac8c3d1d7 1 Other Other +7927a835-860e-453a-91dd-20b615358c3b 1 Other Other +7928361e-96d4-4b63-9925-0a68139eeae5 1 Other Other +79286788-7a0f-4811-a6ed-029352c247e5 1 Other Other +7928bf3f-af37-4c7a-a6db-0de214b06619 1 Other Other +7928c4f6-5934-43dc-9188-45c379f95875 1 Other Other +792933af-51ab-4611-bc5e-8bba71628cdf 1 Other Other +79294b60-27fe-4f65-ad4c-e393980710fe 1 Other Other +7929556b-9fd1-4828-bcaa-ae08ccb2fa07 1 Other Other +792985f4-bc03-4425-877d-7e3aa009dbd7 1 Other Other +79299302-6416-4b60-ab16-b0a3af7c2ab2 1 Other Other +7929b471-6134-4c32-810f-2bb4a25bcbfd 1 Other Other +7929c521-cef5-4310-8ed1-bb5a122d3eb4 1 Other Other +7929fb23-697f-4247-8a6d-f1278b718852 1 Other Other +792a70f8-3500-447b-9177-59fcff6cdf76 1 Other Other +792a86e3-ebf2-4fc5-b880-fef0e7750cf9 1 Other Other +792ab234-0a4d-4131-9032-9bb41808a24d 1 Other Other +792ab65e-397c-4ec6-9e3f-214f8e8b3561 1 Other Other +792ac1c4-2b63-4343-bebf-c5892347c5b5 1 Other Other +792ae7fc-60db-429c-a136-7aa3137e8046 1 Other Other +792af71c-51d0-4d77-b02e-edf8d89e6f97 1 Other Other +792b0133-40c9-4054-98e3-4c876c9ca19a 1 Other Other +792b22f6-0e8b-4a02-880a-0dcdb87d5776 1 Other Other +792b73c9-f1f4-4cb4-aa81-abeb57b99e63 1 Other Other +792b7425-347c-4c28-b96e-f00b6642069c 1 Other Other +792bd518-c43a-413a-bb6d-bca0959e902e 1 James Other +792bee61-29c5-4979-8576-41d1c4b90a02 1 Other Other +792c2918-f33a-4c8a-b4c7-ea000a9ed205 1 Other Other +792c48bc-33bb-4297-a925-c8c15f0b59dd 1 Other Other +792c5998-3fad-4e95-917b-22a29ba3dd46 1 James Other +792c616a-be1e-4f58-818b-2ed81f93088a 1 Other Other +792cc0a3-672c-4e36-9b03-7b4d8ae0f1a9 1 Other Other +792cc12a-9c00-479d-8e35-e23fd7a2a937 1 Other Other +792cd10e-2568-4d18-9248-b884ce7a6983 1 Other Other +792d0acc-6726-4fd1-a69b-e050149b5596 1 Other Other +792d1753-669f-4fdf-bd73-32bd488d1f67 1 Other Other +792d3214-3d7e-43c1-923e-558ba5a84763 1 Other Other +792d523f-79ec-4915-b783-0088e1cfec86 1 Other Other +792d65e7-c24f-4564-a119-d26553b57219 1 Other Other +792d9728-8c9c-43d5-9429-a6d030aa53de 1 Other Other +792df6af-e118-4481-97ca-9218ac93c176 1 Other Other +792ed5d5-448e-4b7e-bd8c-c533bb288165 1 Other Other +792ef76c-b036-49a9-bb00-f8dfed4dd574 1 Other Other +792f38a7-4cca-4933-80b6-050fa2812ebf 1 Other Other +792f6193-7875-405f-b740-70b63e645ed2 1 Other Other +792fa49a-5ad9-4d9c-877c-0239c6bbf660 1 Other Other +792fbd88-10dd-46be-9799-d3e8b9930541 1 Other Other +79300537-91b8-4d04-97d5-ddd3b2002e45 1 Other Other +7930061d-aaac-481a-b108-b8cea8bcd82e 1 Other Other +7930487a-7256-4562-97dd-966ebf5fed15 1 Other Other +79306194-94e7-4364-a4f9-8746496f87c4 1 Other Other +7930b1da-a93e-48b6-b367-26b2ab78b170 1 Other Other +79313911-9075-4eb5-93ff-4fb280e2877b 1 Other Other +79317013-f014-4056-99c3-7fb5aa610b60 1 Other Other +7931bdcf-8fc5-43cf-8e56-8179c48e6eef 1 Other Other +79324fa2-71cf-49c7-a010-96240d758a74 1 Other Other +79326219-825a-4972-83f8-fb0f177cf995 1 Other Other +79326412-e56c-4d41-bdca-64aca6c4ca61 1 Other Other +79327b03-fd11-43e6-84e7-bad7a4019a98 1 Other Other +79330e46-7b15-4f70-987d-6ea64e32b4fe 1 \N Other +793350bf-619f-404f-a929-69142971a38f 1 Other Other +793385e4-18ba-4091-b2b5-b2e70dc4f8b1 1 Other Other +793465df-683a-4bbd-808c-b0c2ad06baac 1 Other Other +7934a1bd-f227-446a-9b05-f8b0732838f4 1 Other Other +7934a719-16f3-4414-956a-09537d064c83 1 Other Other +793557fc-7b5f-4e38-adf1-56c6f10e929e 1 Other Other +79355b1c-4105-4e3e-8b03-d51a3bf00db7 1 Other Other +79359757-d919-4697-8777-2ddab03ffe63 1 Other Other +7935ae45-53dc-42e9-8681-c12e6c5a0b72 1 Other Other +7935ccab-4ed0-4d68-b71e-8104dbfb84bc 1 Other Other +7935f81c-340a-45ec-b144-20e53a76511c 1 Other Other +79362330-0dba-437c-be60-37476db7f193 1 Other Other +79364a45-0c21-4992-9b91-0ee6abd3b467 1 \N Other +793651c2-75ce-4533-a2aa-10afff6996e2 1 Other Other +7936899c-e7d3-451f-bcab-48a090fed4cb 1 Other Other +79369567-cbd6-4150-b8bd-3b651b9d75b8 1 Other Other +7936a66b-b476-4844-956b-8382b99e96f8 1 Other Other +7936c6e1-8020-4700-bd6e-ceaaed035855 1 Other Other +7936d847-6459-46ae-9dff-c744c23a35ff 1 Other Other +793767f9-db5e-4b25-9c76-f4c50fd153be 1 Other Other +79377fbe-d3f7-416b-acff-cfb85a125d7f 1 Other Other +79378cf9-eced-4297-a437-0d2093d5736a 1 Other Other +793793f0-b5ec-491c-ba51-96f30a9f8ead 1 Other Other +79379ed9-8c34-4e52-b91b-4d679b3edb37 1 Other Other +7937e4ba-d87d-42b6-8e25-25a7bd8fec7f 1 Other Other +7937e84b-4ff7-459a-a3fa-8fab3e8c8d9f 1 Other Other +79382cd9-bb4f-4932-9d97-df69fe6ff532 1 Other Other +793836f5-5517-46a9-9c0a-ebae1208d6dc 1 Other Other +793861b8-d02a-40ea-a6e7-466d921a92f2 1 Other Other +79387ed0-2194-4355-8838-0736b50c91c4 1 Other Other +7938c879-eb04-4869-9ff5-f2be8997e97c 1 Other Other +7938e392-d0f8-41d5-b1b6-543b375673e2 1 Other Other +79390f97-5b3c-4676-9ce4-a483236ea525 1 Other Other +7939750a-4235-4f69-8b24-59573e304bba 1 Other Other +7939ccb4-cb1a-4d72-acaa-1d7ff52990a9 1 Other Other +793a07e3-1dbb-4385-8dd5-cfcf118d2cd8 1 Other Other +793a08d9-74d9-483c-8f43-6cb233ec083d 1 Other Other +793a275a-a907-4d53-bfaa-5d148aa7950c 1 Other Other +793aae9c-67a1-42f6-91f1-e610cdb781cc 1 Other Other +793ad744-a12b-4c0f-bab1-e8b05f11a32d 1 Other Other +793b5046-078f-437f-b626-2e661f0a5bf7 1 \N Other +793b6ccf-71ff-4079-8830-0f2b88e6c59f 1 Other Other +793b72fd-075e-48ee-86bd-4c9623f078a6 1 Other Other +793c1a45-7344-4a06-94e8-d4cc690446f0 1 James Other +793c1c6e-cc86-4626-be46-73e90c4f0b18 1 Other Other +793c676b-1a53-49fb-85f2-17daf204dc6a 1 Other Other +793c95f3-b77d-4d0b-9a8e-604c19d398c3 1 Other Other +793cffb3-a0be-4e9b-9cfb-579fd98598b7 1 Other Other +793d12a6-4120-4bc1-b1e3-3652bb902f4e 1 Other Other +793d3af3-4d64-4a55-9427-b543cf53ca6c 1 Other Other +793d591a-6adc-4d1b-9d76-a9904e90adb1 1 Other Other +793dc1c0-d03d-4c89-ad54-88d41b86c299 1 Other Other +793dc750-80b9-414c-b1c7-47af4d2100f5 1 Other Other +793dd825-0721-4f24-a4f9-6bc8865af771 1 Other Other +793ddfe7-97f3-4640-8827-754db90de3d9 1 Other Other +793e0a8f-7877-4637-b807-5ae8d0c48270 1 Other Other +793e3d0b-aca9-44ec-8c13-48adde59059b 1 \N Other +793e86dd-6e55-45ff-aa03-fa3ce159bf14 1 Other Other +793ee500-77c3-4067-93d6-d38883d526cb 1 Other Other +793f10ca-62a2-46e8-816d-5a1fca5cc133 1 Other Other +793f1d31-c3db-4b01-8f95-3215f206ff71 1 Other Other +793f31ca-8af4-4442-a065-04c14376cb99 1 Other Other +793f3d9b-73a7-4fac-af77-597f2b72b337 1 Other Other +793f5057-7ac8-4b16-8563-daed69248dec 1 Other Other +793f5355-90ee-47a6-bbc8-48aca840cae4 1 Other Other +793f9903-3e8e-4467-b93d-d43a193168ad 1 Other Other +793fd6eb-6278-4b8f-a571-eb4624de81e7 1 Other Other +793fdc64-6e00-4edc-bc73-1f53f5170e9f 1 Other Other +793ff641-7888-4d14-8b64-92ed6455b55a 1 \N Other +79400aac-2ccd-4034-b129-fbd97437d7f1 1 Other Other +79400ae8-90d7-4050-a2ae-b2f11fd64263 1 Other Other +79412a15-a0e8-4a30-a189-52fd618aec23 1 Other Other +79414e33-78ec-4efc-bf06-3ae39450af56 1 Other Other +7941ce42-a9a0-4c41-ba60-532e95637fdb 1 Other Other +7941e4f8-6ae7-4f91-b50f-8de04275a5c7 1 Other Other +7941fbb5-95fd-4923-a0d0-c7b60895aae4 1 Other Other +7942012e-4092-4ae5-a6b9-5dbc735f53c8 1 Other Other +79421326-37df-468d-9806-a7f96081f44d 1 Other Other +794298ab-56d2-4c3c-9057-d89e23e4aa3a 1 Other Other +7942cf5a-8f7d-4337-977c-0a40009a3163 1 Other Other +7942e207-10ad-4ae5-a258-35f844fbddcc 1 Other Other +7942f46d-56e0-4c14-bea0-134340e62a2f 1 Other Other +794319c7-2f9f-438a-8e73-1af5ff7bdacc 1 Other Other +79432e76-fbdd-4c7c-b3b8-224205aeaf12 1 Other Other +79436163-6fa3-4260-bcaa-9c53a489617f 1 Other Other +7943926c-f052-4dd3-b1bd-be775b245a9e 1 Other Other +7943a646-f44c-464b-9f81-9b222494090d 1 Other Other +79440d1e-f613-4e8e-b316-7fefc84b11a2 1 Other Other +7944142d-eb6b-4844-a974-2f2a116cc751 1 Other Other +794490b9-963f-4acd-9489-95fd75827a7e 1 Other Other +794490f8-2f77-4cff-86c7-59e9b2a0b1a3 1 Other Other +79449d32-ce96-40a2-9ec0-bb7ef6ea7a5b 1 Other Other +7944d1a5-1a42-45f2-841c-4a81e700aa59 1 Other Other +7944e9d6-0073-4796-a892-4127b03c3c04 1 \N Other +7944f0a6-f9a0-459b-8c3c-6a74c54bfe10 1 Other Other +79452c5d-024f-46b9-bf0f-6588af075089 1 Other Other +79453e07-f10b-4325-9de8-8be13e51326c 1 Other Other +7945831c-1022-4507-bb59-7d1dfad3eb15 1 Other Other +79458337-ce11-458a-8920-f14de7d8dcd4 1 Other Other +79458b4f-80df-4c78-9746-e7bb5a917772 1 Other Other +7945d251-0ef0-41ab-b878-2e81d93da90b 1 Other Other +7946476c-ca20-4105-b397-1e65c55ebaf0 1 Other Other +79468ef0-16c9-4171-b8b1-21fb6072372d 1 Other Other +7946a09e-f75b-4e46-a5fe-ecb0a0ca00f2 1 Other Other +7946cd0f-602e-466f-bd4f-5d0d3ea38bad 1 Other Other +7946fa0b-7ab4-4035-8469-3fbbcd9ea6bc 1 Other Other +79470faa-e078-4edf-a107-4514d1bef029 1 Other Other +7947545a-6bf7-433b-bb66-e2b8dead5a83 1 Other Other +79476ca9-2727-4683-a757-16379f7ecafb 1 Other Other +79479030-ef43-4f1b-937b-041b0017225d 1 Other Other +7947a029-7ff6-4e2d-baec-f6a9d0dcb378 1 Other Other +7947b72e-e09d-4d24-8cb9-ce63294ff46a 1 Other Other +7947c244-2b3b-4f7c-bcc0-05eeea02185f 1 Other Other +7947ec7a-98ef-44fb-97c0-5936a0981467 1 \N Other +7947ed98-66af-4f95-903a-f08a80ddcf20 1 Other Other +794838b8-76eb-4283-aed0-77a081e99c12 1 Other Other +7948728c-3df3-4c85-ab7b-bc84f79596b1 1 Other Other +794873b6-8d8c-433d-93ed-f5192dcf450e 1 \N Other +7948c713-dee6-4c44-8dab-2723d34756db 1 James Other +7948e5a9-06da-4ed2-afcc-0f9c66723fa2 1 Other Other +794915d9-7ec3-4744-90da-3cc1e9279697 1 Other Other +7949e439-fb7b-4033-ab57-edfec004e20e 1 Other Other +7949e80d-e199-4711-9ce4-72a539632b11 1 Other Other +794a209d-3ea5-467a-b60c-27482a60d720 1 Other Other +794a37c1-d12d-468d-be76-e4d6585f7c2e 1 Other Other +794a6c3a-60e2-4127-b8f7-d62364bb4c02 1 Other Other +794b1eb7-7ca8-43af-9a99-033d0fb482f6 1 Other Other +794b4cc2-156e-11e8-aca0-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +794bbe24-e670-44c3-8917-bf2253cf3d81 1 Other Other +794bff8c-9acc-4c2a-b48e-7825fc995ce1 1 Other Other +794c065e-f93c-4536-987c-bb977aa47d05 1 Other Other +794c3b79-87d1-495b-be76-2434982e8215 1 Other Other +794c3f47-2993-46f6-8eda-a97e6f8650b5 1 Other Other +794c56dc-448a-4ff3-b663-95ae351e6fc0 1 Other Other +794c59e2-02bd-4649-98d2-60a224bd027f 1 Other Other +794c89bf-ad96-466a-8ee6-d53f7a590df6 1 Other Other +794d4841-3158-492e-a822-ed75fa550b9b 1 Other Other +794d83bb-0dc0-4635-9b38-b9a39b5f2815 1 Other Other +794d9712-08b3-451c-a3db-3eb453318360 1 Other Other +794db2fc-fe7c-43e1-94cf-1c53eb5d8453 1 Other Other +794df60a-d4c8-4986-b133-ca0818e07964 1 Other Other +794e15af-33a1-4e6a-8813-7c87872a2e13 1 Other Other +794eb309-e6fb-4ab3-8d57-b48a8bd9f988 1 Other Other +794ec036-b696-4046-bb58-7822683de008 1 Other Other +794edd19-4f2d-4bcf-8086-a26a2ecfb627 1 Other Other +794f2e71-6e77-4f2b-b72b-99d8c05a0bb0 1 Other Other +794f4787-3617-4bc9-a29a-5ad4f3fd8d92 1 Other Other +794f4d44-7aa2-4b0b-961c-0938e606d283 1 James Other +794fbf15-f88c-4718-804d-ef56d902821f 1 Other Other +794fe8cd-bb8b-4ed2-8c0d-627fff983584 1 Other Other +79502db6-d5af-49a4-b856-325da91c282b 1 Other Other +79503811-88ba-43a4-8c6a-595f24a013b8 1 Other Other +795041c2-0b3e-4a26-bbaa-76274e73bcaa 1 Other Other +79506b43-c186-4ef8-9e7a-0660b368c0c1 1 Other Other +79506e75-bb33-4262-9f37-a76de2d56577 1 Other Other +79508722-e99a-4818-863b-95d64657bace 1 Other Other +7950cf29-9b52-4b46-91b3-f08c59dc6710 1 Other Other +79513c53-1be2-4425-8b37-3ec86a46ea2f 1 Other Other +79515e97-cc29-4b4c-b19a-6cb32bb7f118 1 Other Other +79517a47-7d77-439a-bd50-d18b9a1a34b9 1 Other Other +7951dcdb-065b-4252-9a16-332d351b7df3 1 Other Other +7952422a-8a4c-42d5-bf84-947aa0636631 1 Other Other +7952f36c-8395-4031-8b74-9111a3f9add6 1 Other Other +7952fb0a-84bc-4628-8b0e-9cb4e33de9dc 1 Other Other +79531cdf-e6ce-4784-900a-d434bd5b07ef 1 Other Other +79537e19-1157-4422-a1a2-726b7797b7be 1 \N Other +79538bea-d9cf-4b72-90fd-9f756162ac83 1 Other Other +79539cfc-df32-4ef9-b36a-67d8b81e14b8 1 Other Other +7953a632-4d84-4f50-80c3-167a51912034 1 Other Other +7953be69-07fa-4271-bf3a-4f5cca5d3806 1 Other Other +79541d08-bc56-4728-910a-590cca79ed65 1 Other Other +795439ab-6669-430d-a5c2-fdc8c0322c97 1 \N Other +79543d7c-69a0-4cb9-acda-f51855ec4d94 1 Other Other +795449b3-5715-4ed3-96a3-5e3cf3f3f50f 1 Other Other +7954704d-4850-4a41-9f54-ab0641e71387 1 Other Other +7955ad1d-d54e-4e05-b6c7-bd39b01342df 1 Other Other +7955ba93-eabe-46ef-816f-b47776e1031d 1 Other Other +7955bea4-9708-4dc9-bf43-643b92917d45 1 Other Other +7955cdd9-56c5-4461-b748-667da7453f10 1 Other Other +7955ed4b-d452-4bee-a537-918d8db75605 1 James Other +7956154a-068b-40b9-b316-7d7a51f889a3 1 Other Other +79562093-d1e8-43c4-ae85-11acc814d6c4 1 \N Other +795649a0-08cd-4a9d-9099-912c5ec50f61 1 Other Other +7956522b-26a7-45eb-b606-bf74ce99d007 1 Other Other +7956737b-6017-45b3-a3ef-afa0de460b42 1 Other Other +795697d5-4560-4961-afd2-dd079c989da1 1 Other Other +79569e41-a9d4-4ce9-bd01-ea6721902844 1 Other Other +7956a67a-ed31-46db-bb39-7775cbe0b6a4 1 Other Other +7956ea45-2cf5-458a-94df-12a19b1773c5 1 Other Other +79577df2-eabc-4043-8a98-b6b820e7206c 1 Other Other +7957a06e-9e0a-4e95-9a06-15f928ce72cd 1 Other Other +7957f213-bb51-4c92-8c2f-7cf5d8c07b72 1 Other Other +79580206-ea10-44a5-a797-a656c6567381 1 Other Other +79580218-27ca-400c-b4aa-fcce689fadca 1 Other Other +79580616-0a6d-412d-a87d-1a8916d779a7 1 Other Other +79582215-0ec2-4bfc-bc66-a53d6df16fc1 1 Other Other +79587bdb-baa9-45b9-8459-fef8e0b987aa 1 Other Other +79589f11-f996-428b-b4bf-2ecf83faf580 1 Other Other +7958a7cf-56cc-41f4-8c29-008dbde186ad 1 Other Other +7958dfe2-a610-4662-a8db-051655b68380 1 Other Other +79590e88-a6a8-4092-8a1d-88c942852528 1 Other Other +79591e4e-f604-458a-8c12-2710b1d361bd 1 Other Other +795934bb-a01d-49ea-9f46-a545942c70fa 1 Other Other +79593c88-c1ab-4f20-8272-83ca40ee468a 1 Other Other +79597103-d79b-4716-a3ec-fe5fb322ddbf 1 Other Other +7959c107-09c7-42b9-b452-f920fa108fc0 1 Other Other +7959e4d9-97e9-4011-9da4-32c2e44c3ea0 1 Other Other +795a196b-aeae-406e-9f82-4e66fc0aed02 1 Other Other +795a1a29-51b1-4259-ac3d-4292c1065f14 1 Other Other +795a629a-c9a9-4aaf-87f8-6f5f82698c3a 1 Other Other +795a707e-ac22-4aec-b72d-2bc8c64cc017 1 Other Other +795a7ff2-96b6-488e-acc4-0018238fed71 1 James Other +795aad30-7550-4d46-a910-ed34c9252976 1 Other Other +795ac78a-166f-499e-8e1c-0cecb9b9d838 1 Other Other +795acec4-026a-4f44-a634-c9f1e6ff167a 1 Other Other +795ad3f9-61ab-476f-a63a-0142406f5a76 1 Other Other +795ae1ee-e021-4f79-b326-fa001d94cf14 1 Other Other +795b3aee-5f32-4981-8697-426c1d312fb8 1 Other Other +795b6166-bbba-415e-a001-e77f4d523b2c 1 Other Other +795ba931-3b8e-4e24-a68b-63d63b38bbc9 1 Other Other +795baee6-895e-46fb-8082-f42f6141ef8d 1 Other Other +795bb3a1-67d2-46ed-8a3b-c6c5a64e1cda 1 Other Other +795bf624-f9f5-435a-8b63-176ef7220f69 1 Other Other +795c2484-4531-4e07-b30c-fe6f6f4b376c 1 Other Other +795c2631-6e3e-4e9e-85f8-edf532807ed2 1 Other Other +795c359d-dc28-47eb-81f4-65992c814d31 1 Other Other +795c40ca-43a8-45bd-a539-fb8e90c3ed90 1 Other Other +795c5d90-64c8-4fae-b9f2-cfbc6aa24f95 1 Other Other +795c7a19-2cfd-4d5a-aabe-ffdfa35e2132 1 Other Other +795c8318-4147-41fd-b9ea-2a84de5c3309 1 Other Other +795cc166-c419-4b2a-a8a9-8aeae880a29e 1 Other Other +795d6917-802b-4b5c-8cd2-c9fa4cbb0a70 1 Other Other +795d87d8-b27b-4687-91b2-4a973a29a792 1 Other Other +795d9dc8-e0a2-4c1b-a5fe-668da643d361 1 Other Other +795dcdc6-fe57-42a8-a8eb-aa368f9a5e8a 1 Other Other +795df047-50f3-4d3b-ae65-552a15a9df3e 1 Other Other +795df4d9-4f42-410f-8502-77c98d481466 1 Other Other +795e36e5-186e-4f73-abad-8a7d94ece092 1 Other Other +795e6eb5-3521-4bb4-9749-848837f0d3eb 1 Other Other +795e74f5-e378-4569-952b-5155630e1d21 1 Other Other +795e783e-78ff-46ce-b59f-941a7d05b89c 1 Other Other +795e7af6-9b9a-4236-b3b6-2f41bbad0305 1 Other Other +795ed87d-91a4-4629-977f-75d06421ccd1 1 Other Other +795ee465-df7e-4a1a-927f-081d1e2a158d 1 Other Other +795f139b-7c16-42d8-877c-ba8ee8bb8776 1 Other Other +795f65fd-5fc8-44a4-9878-a58142c5637b 1 Other Other +795fae46-3d67-42d9-a928-286adb505cdc 1 Other Other +795fb054-ff5e-4d6b-83d0-a4be572e9c64 1 Other Other +795fe7eb-364d-4150-864f-51d262969ea5 1 Other Other +79603f6f-5857-413a-8ccf-891347285d45 1 \N Other +7960d8ac-c98e-446a-93f0-d745cd07ac15 1 Other Other +796111d0-4868-41af-b499-2248c19b99e4 1 Other Other +79614fda-3b83-4984-8b17-9db088758b6b 1 Other Other +796160c6-642e-49b1-84dc-4c0d1783ac94 1 Other Other +79616cab-344d-4aed-baa2-4bcf8b23e773 1 Other Other +796177de-4d6d-4045-a0e9-5b7fa1c4aed6 1 Other Other +7962a0c2-9dad-4555-99e3-7f05bd884521 1 Other Other +7962fb6f-f8f8-48f9-9b66-6c448eb5ce10 1 Other Other +7962fd5b-0a52-4546-a74e-64465da23c97 1 Other Other +79632b41-a8c8-4268-ac36-1629ade1491f 1 Other Other +79632bec-8a54-43d7-acf0-7083fbb83ca3 1 \N Other +79637deb-eb2f-4931-a770-5a12299996a7 1 Other Other +7963a8a3-576a-47db-8ed4-c94299177a84 1 Other Other +7963c019-ca39-4bbe-bd76-924e886f7143 1 Other Other +796448b9-8b72-4f03-98a9-fcff57606c63 1 Other Other +79646b49-8499-4453-9110-01a5fc7049af 1 Other Other +7964817d-4e76-4f8b-8538-85225235ac55 1 Other Other +7964854b-778b-4afc-91a8-51af35aac394 1 Other Other +7964900e-c8e2-476d-a67a-331eea04e194 1 James Other +7964b463-f059-4044-9d29-1fe654de2e0f 1 Other Other +7965803f-f62f-45e3-aee7-0abe927b1a77 1 Other Other +7965fec6-245c-48cb-b02e-97f666cdf521 1 Other Other +79660fb0-6270-4604-a091-639ac39edb3a 1 Other Other +7966d57b-a960-4c41-bbed-865610fe1370 1 Other Other +79670ad5-5c23-4469-a842-3bdf37b5acb8 1 Other Other +7967c8bd-24de-43a0-a3bb-58423cbd313e 1 Other Other +7967e31e-acc3-44f7-8880-ef277523b9d1 1 Other Other +7967f93a-9dfe-4308-82e8-64304cdf48a7 1 Other Other +79681831-8052-4c1b-bf8f-7e4a8dbd4d06 1 Other Other +79682e24-d109-4d4c-8f6c-b5eb604954f3 1 Other Other +79685980-b181-4eb4-b262-33cf307cd5b2 1 Other Other +796876ba-e126-432e-85ec-7cc9c1d865aa 1 Other Other +7968bf5e-b7dd-4506-800b-015a9db3a325 1 Other Other +7968f3d4-bc44-4902-857a-56efd20eb95e 1 Other Other +7968f9fb-6558-44c4-bd2e-519bb4e78805 1 Other Other +79690158-f23d-4b3d-ad6f-bbe03b8fce30 1 Other Other +79692526-f793-48d6-bd66-4ad43d5c6f66 1 Other Other +796929ba-936b-4ce2-853e-6144044e6744 1 Other Other +79693795-e77a-4a5e-8d22-441c51aee682 1 Other Other +79695609-9ffb-48d7-848d-128cdbf0635a 1 Other Other +79697273-baee-4d3f-9214-ef9e1d32113a 1 Other Other +7969c671-a8b9-4c43-a1a9-e4bcaf7ee7f7 1 Other Other +7969e407-f48b-4d51-ab59-20e8187182b8 1 Other Other +796a6349-5c20-44ba-a150-e118b32839ea 1 Other Other +796a74ae-16e6-44d3-a76b-fe160619f53e 1 Other Other +796aab7c-452b-4059-bfe8-e63eb08a228e 1 Other Other +796b2c7b-348f-4723-91d9-b5392ba88acb 1 Other Other +796b52c4-7c46-415c-94b0-dbe589fde382 1 Other Other +796b81a5-9fe9-443d-80c5-0c91e0242b31 1 Other Other +796bb43d-ecac-4899-a4e1-1b2b1d13cc48 1 Other Other +796bb720-8c6f-4418-b736-e0a774ad6598 1 Other Other +796bcfd6-9e37-4ea1-af5a-8edd0acbf3cb 1 Other Other +796c3d0c-ba42-4e78-91eb-1e773736a70f 1 Other Other +796c43cd-da17-48f8-9695-93ed1a634c8c 1 Other Other +796c4490-3acf-48d2-91c8-356975112e02 1 Other Other +796c5723-6bae-453b-89be-2e2bc25eda6c 1 Other Other +796ccd60-6130-4a63-82a5-8ed03f880b2a 1 Other Other +796cdace-3d2c-436d-97f0-20dfa844784a 1 Other Other +796ce770-b332-4ce5-8884-86abf956624b 1 Other Other +796cf8f6-604e-49b7-8e23-59f0f0c51ccd 1 Other Other +796d263a-1050-47aa-bd74-e51e4345324e 1 Other Other +796d5451-83db-4377-9679-b74757f06d9c 1 Other Other +796e0866-c5bb-43ab-8e6d-1e992c8f8f51 1 Other Other +796e088d-d9d7-4ac8-9f42-21eaa4f8dc6e 1 Other Other +796e6047-a5c6-4f9c-a7f9-3866c465cc0b 1 Other Other +796e8c56-1416-4b9e-9ff4-80c5ce645e7a 1 Other Other +796eb972-8a98-4769-a2fd-6b26abdda25f 1 Other Other +796ee661-78ab-4535-9e1f-75f2cbbadfb2 1 Other Other +796ee792-1bc6-4c69-b0cc-f6d8e3c51ab6 1 Other Other +796f1787-5c4a-46b3-ae8a-e79a84ec7c8e 1 Other Other +796f2894-3f5e-4de8-90d4-eeeed7b76909 1 Other Other +796f3e46-3e4a-432a-8906-37eeccc7b37c 1 Other Other +796f664b-2304-41bd-93c9-af053089bdd1 1 Other Other +796f87c5-128d-487d-8803-161d5cc7a15d 1 Other Other +796fb892-f3f2-4c5b-9b71-ecd43f0b099f 1 Other Other +796ff390-5022-4661-b8a2-70e2ea76b9d4 1 Other Other +797035e4-d537-4894-9bcf-39784b502aa3 1 Other Other +797039e9-f2f4-4d8f-8cb0-1286c433aab3 1 Other Other +7970a594-8704-4313-b70b-ca98706ec068 1 Other Other +7970b17c-eccf-4640-ba54-5ec945e61208 1 Other Other +7970e13f-0736-4561-aa55-ee7b6edf48d6 1 Other Other +7970ec00-30c5-419d-92ac-c8818f675a82 1 Other Other +7970ff33-ba3e-4efe-9683-446207d475dc 1 Other Other +79712822-cad5-4c65-ad60-1e1b41d46a65 1 Other Other +79721e6d-27e2-4fde-ad13-69f7d33aa22c 1 Other Other +7972654c-c127-4647-b4f7-3ba89a65832e 1 Other Other +79728437-f69d-4378-b044-9bed646072d4 1 Other Other +7972bb2d-f994-475b-8e55-de660905f5bc 1 Other Other +7972de64-532e-4d7d-a7a0-6903cc64267e 1 James Other +797315b2-ba13-4541-9ef2-4d747be07be1 1 \N Other +79732c7b-fc8d-411b-9f95-831d12677e35 1 Other Other +7973752d-6f59-49ca-a8f7-269d0dab7502 1 Other Other +7973a50d-f8b8-4361-93a3-b7a717118a06 1 Other Other +7973bc91-8a3b-4b6f-b7b7-2ff33cc963cd 1 Other Other +7973c5fb-d56d-4d8f-87b5-67e403714e3c 1 Other Other +7973cd81-fa20-4255-be55-59f55a27a43d 1 Other Other +7973d6d1-881a-4ccd-a836-74bab8cc9ad6 1 Other Other +79743ee8-5bbf-4a21-80da-6b4ddb4cd1aa 1 \N Other +7974492f-f79d-418d-988a-cf12515363c6 1 Other Other +797450aa-b64f-49fd-8a8f-874db5c7f58a 1 Other Other +7974e4f3-bf0f-428f-a472-501fe77d3ce2 1 James Other +7974fc6c-d2d9-4713-96ea-480666c66d3d 1 Other Other +79751e78-8255-447d-bf53-9a4c54b898a7 1 Other Other +797522c1-3e4d-4e40-9fde-50350d456268 1 Other Other +797529a8-5c6a-4d81-a683-715f6f6206aa 1 Other Other +7975bc33-dd44-47ae-b80d-56be25236e26 1 Other Other +7975bf60-1ab8-4ad0-baa4-e2ec454a4450 1 Other Other +79760f98-987c-486e-8cc6-4db9cea815ce 1 Other Other +79768ed6-1db9-470b-8494-4c7a7f97817d 1 Other Other +7976bcd2-97b4-4917-9e2e-1cdd81fc6be1 1 Other Other +7976e17b-786c-4abb-ab8f-c82a209d8e33 1 Other Other +7976e5ee-2a4d-4c8e-822a-e12c6f5d9af6 1 Other Other +79771081-722d-4e10-93b7-0118e09bffe9 1 Other Other +797726db-1e61-40fd-b5d3-01d984c2b7eb 1 Other Other +79774b9a-64bf-4981-870b-a2d96c0087cd 1 Other Other +79779568-52ab-4906-8919-d8d9ccf8b326 1 Other Other +7977997f-f727-416c-b080-2979c80c9de7 1 Other Other +7977c026-51ef-40e5-925b-3105a951e727 1 Other Other +7977c200-f701-43dc-be77-a77216e20991 1 Other Other +7977fb91-bdf5-4e64-84aa-c1f04ee99d7f 1 Other Other +79784902-5af3-4339-b5da-87fa5ea0b96d 1 Other Other +79785016-279b-463a-a221-29d515158701 1 \N Other +79787647-ed8f-4ebb-93ad-0d5c60b58ca9 1 Other Other +7978a3e0-08c6-4c84-8e24-c3486d3dfe6d 1 Other Other +79790bf0-2fe6-401d-921e-b8a7fc745aa4 1 \N Other +7979a3ab-7265-482c-9577-1db7b42d7b30 1 Other Other +7979b611-287e-4f3b-abdb-bf7ea941f0e9 1 Other Other +7979b74b-dd96-4445-8e1e-15852244ca92 1 Other Other +7979e2b3-9964-4bb3-8cec-c8293459e461 1 Other Other +797a135e-5f31-4bd9-97e0-59fb25e156e9 1 Other Other +797a2c49-3de6-4ad2-9c90-c7282e378a60 1 \N Other +797a32c6-af3f-4748-8e79-6c002dc8a4c0 1 Other Other +797a5c9e-3c3b-4fee-b68d-d817b7d65c3b 1 Other Other +797aa9e1-a32b-4f96-afa2-ea7165a861bf 1 Other Other +797b2f86-b58c-44c9-80ab-deb715264816 1 Other Other +797b7cbe-184a-4c2c-af8d-1a449c9a95c0 1 Other Other +797ba765-915e-4e57-911d-efc9e161d0a4 1 Other Other +797c86fb-1c95-410f-b8af-1f8be9db434e 1 Other Other +797c9346-5274-46fb-b39e-442bc6a83da1 1 Other Other +797cbb63-83d6-447d-ab7b-98c58a806d55 1 Other Other +797d0f0e-6215-42ac-b7ad-13242080e527 1 Other Other +797d1689-1f96-4cd0-8339-6cad090b6f1f 1 Other Other +797d36f6-e714-4080-9574-7fab39546050 1 Other Other +797d3700-4f0a-4734-80a6-7d1dfd42b8d3 1 Other Other +797d5491-6790-4ff5-b67b-5dc1ab80912a 1 Other Other +797d6eeb-4cf7-4823-8709-c9d6e291298e 1 Other Other +797d8f42-81cc-4b9c-93ed-be037177be0a 1 Other Other +797dc870-bf64-455f-b6e9-6a6449398934 1 Other Other +797dc9c3-f92d-41a9-a3b8-9e44dd109974 1 Other Other +797e01d4-dcf2-4c09-b2ce-dce865a88f5d 1 Other Other +797e3166-9a8e-4de3-af8b-ee2e5ca301d9 1 Other Other +797e9c7e-e3ea-40a8-8770-9855c114a218 1 Other Other +797ec1bd-c35f-4d1b-a628-83b4b5f1d56c 1 Other Other +797ec9b2-4ee0-44ca-8a4b-757a26ac3000 1 Other Other +797ee47c-a0ea-4ef1-89e0-d03cae872729 1 Other Other +797f0b63-81f3-4d40-ad46-fb40b87935e8 1 Other Other +797f4a37-7432-414b-a1bf-602475210202 1 Other Other +797fd559-5082-4059-95dd-ede142816bc7 1 Other Other +797fd694-0b50-4023-a272-297c23312e37 1 Other Other +798001aa-014f-4dd7-9f17-e9ec57cc961d 1 Other Other +79801b12-48df-4027-8b74-9c92def25257 1 Other Other +79802531-a883-495a-b82c-360de9f458bf 1 Other Other +79803597-3793-4479-a8b7-8508c21100ca 1 Other Other +7980b05e-6cc2-4742-800c-1c4d11a42288 1 Other Other +7980b813-15c4-40d1-a383-18decf9740c6 1 \N Other +7980defe-b4a9-49c4-8ca8-b9ff088afa2b 1 Other Other +7980e639-8e36-4620-8711-31dd7169f518 1 Other Other +7980e793-6f1c-4155-a1f3-c87bbd2727f6 1 Other Other +79810991-115d-4ba4-84d5-426576493232 1 Other Other +79811203-e324-47a2-bf7b-08f4a06a0156 1 Other Other +79811b9e-414d-4257-9bb5-4223c08b9d8f 1 Other Other +79813c59-6d4d-435a-972a-a12b27de46ba 1 James Other +7981a5cd-2391-4fbe-b3db-9ced36150ef1 1 Other Other +798207fc-56c0-45db-b440-69279346e2c6 1 Other Other +798228b0-75da-4438-9948-1a708b5ec735 1 Other Other +79827cbe-b1bc-4bf1-90b3-b40996c25391 1 \N Other +79828a1d-e5cb-4171-8946-b7333fc82713 1 Other Other +7982ec0c-3759-4aba-a42a-13bd39f25e16 1 Other Other +79830158-c999-4df4-bae8-b6de863185d6 1 Other Other +79832a7c-dd1b-4577-89bd-adecc79c4cab 1 Other Other +79833522-3122-487e-bf86-3aae214158e3 1 Other Other +79834b3e-773f-4dae-8742-4f769bcbf36a 1 Other Other +798365ad-317f-4930-81fb-bc02bc54aa9b 1 Other Other +79838a0b-3a2d-4623-a865-0aa2767aef56 1 Other Other +7983c2f9-5fd9-40ec-865c-990e1f8c09d1 1 Other Other +79844d9f-3dec-47e3-a8fc-895ae7bd1aa9 1 Other Other +798480f2-ee9c-4776-b8a1-2bfd90115e2d 1 Other Other +7984b592-0a4a-4be0-b4e7-a1d164f25477 1 Other Other +7984f2e5-2b66-415a-aaaf-3ae9349c12e5 1 Other Other +7984fa0a-f21d-4e33-9992-881612e12e1e 1 Other Other +79850830-805e-4e8e-ba4f-487a2d8a5670 1 Other Other +7985263d-9efb-4793-8e53-f5e138cacdca 1 Other Other +7985373e-70b0-4f85-8d4a-51573cc5bfa0 1 Other Other +79854890-98ee-4c68-9e87-a0ac52b68c50 1 Other Other +798644ec-b837-40c1-b1ba-4d36b0b8a340 1 Other Other +798647b4-f82d-48ba-96e2-c54a9eb493f3 1 Other Other +79864850-31d0-42de-821b-442a34c004b3 1 Other Other +79870179-9d2e-4802-85e2-64a0bc397bf5 1 Other Other +7987e9c1-9697-4fd9-8186-ef7e3e73f761 1 Other Other +7987ece9-db21-47db-8c7d-04c54d6fc511 1 Other Other +79885348-f3cc-4279-abf1-f77ff2cc0688 1 Other Other +79887fff-86ab-477f-955d-77580bda4b86 1 Other Other +79889c36-2377-4309-899e-97a23a7987f6 1 Other Other +79891526-56f3-4b66-b7a6-74eba0156fa5 1 Other Other +79891f3b-b0ec-415c-a11b-c95be37b983d 1 Other Other +7989500b-0cfb-4cc9-bc2b-768aa5da8486 1 Other Other +7989b21d-9bfc-4ced-9399-3e383dc3a32d 1 Other Other +7989cf13-71e3-4df8-899d-7cd39e56b809 1 Other Other +7989f237-c022-453c-89b1-248aacd69774 1 Other Other +7989fd32-adb7-425e-b375-032a8ec73cbb 1 Other Other +798a2d88-1928-4dd1-8bf4-f8f6e45fb748 1 Other Other +798a4b7a-83de-4db3-9182-3c95e8800523 1 Other Other +798a7df5-3888-44f3-83d6-2c1dd4a061d2 1 Other Other +798a9966-6939-4df0-9f6a-ff1fb7f21f92 1 Other Other +798b4010-ddf1-4027-9ca7-b9e80b73b73a 1 Other Other +798b582d-6e43-4512-a60c-d0c1182d8a0f 1 Other Other +798b5cf1-0bd0-464a-ab5e-b6bf3fdddad0 1 Other Other +798bd16d-4bbd-46a8-ac59-d87127ba059f 1 Other Other +798be378-e927-41c7-afa6-313c1b56687d 1 Other Other +798be716-25c2-49f7-a306-e62fa60dca45 1 Other Other +798be8a8-f7df-4f93-b9ba-b63577130431 1 Other Other +798bf71c-c86f-44b3-ad0b-f2b28452a31a 1 Other Other +798c52f7-4161-47b6-9283-04f63573b71e 1 Other Other +798c6c69-ffaa-464a-afad-0292968a86e4 1 Other Other +798c75e6-8472-4633-9e21-b7196a13b35b 1 Other Other +798c760e-809f-4da9-bdc8-499c724d9c46 1 Other Other +798d0e3d-f507-4ed2-8f18-365a5e507d27 1 Other Other +798d27b0-7c4e-44cf-affe-07e3656ab312 1 Other Other +798d7600-bb25-4b1c-9368-f7ee4fb6d9eb 1 Other Other +798da67d-4352-46a1-8931-3f972ecd17cf 1 Other Other +798db885-7a21-4cb8-952e-6615391df110 1 Other Other +798ddd46-5f30-4d3f-8ffc-827d4a4f1d20 1 Other Other +798e165f-536b-4c92-964c-591c80cbc46e 1 Other Other +798e1839-d15b-40bb-95b3-4544263f1b05 1 Other Other +798e3bbf-ed3c-41c4-a4f2-a41f29f6540b 1 Other Other +798eaaa7-fe41-4b6c-8f71-8ef847eaaf63 1 Other Other +798eb3ae-46d4-4e1e-8d34-3056225f5489 1 Other Other +798ec7cc-5c83-4b93-ad49-ef1e5dad8eb5 1 Other Other +798f0c56-680f-4142-9124-5dba5be48c6e 1 Other Other +798f1e09-ed06-4fdd-a78f-440b362e8104 1 Other Other +798f270c-bebe-4867-a39b-22c0d36dd125 1 Other Other +798fe05f-8048-47c8-8b1b-65cef8a6425b 1 Other Other +799028e7-c7ab-4e3d-b1ae-bce90a31b302 1 Other Other +7990389b-531c-46b8-8116-708c7b018bb9 1 Other Other +79904d6b-fc05-47af-9af3-fdddb01d74da 1 Other Other +79905142-cd35-4557-bc97-f5a000008cf4 1 Other Other +79905ef6-2b33-43aa-91f8-b48b166fd74c 1 James Other +7990c5a1-5334-439b-abeb-fa70523d185d 1 Other Other +7990c9a4-7289-4fc7-b45c-fb2b26579def 1 Other Other +79913228-1ce2-4d5e-8fb5-9e3a2c64d7a5 1 Other Other +79916305-16e6-4c3f-8ece-d77b8489d6ba 1 Other Other +7992170d-61a9-440c-ba6e-f0bf77f2fede 1 Other Other +799232ed-6600-40f1-a0d3-305de037b503 1 Other Other +799258b8-db4c-498f-ab01-495b66a69444 1 Other Other +79926ff7-47e5-4030-97ec-4a7ea86b4e79 1 Other Other +7992acfd-4b4e-4ef9-b1a2-eda46fbc3fd0 1 Other Other +7992dc60-e6cc-4b88-b86e-e82ecb579aa0 1 Other Other +7992e91a-733b-4003-a2fb-249c08b3138e 1 Other Other +7992f9d1-bb0a-420c-b15f-d389ac550a91 1 \N Other +79932621-0c74-4537-980e-c4a31bb4320c 1 Other Other +79933f21-e82b-4dca-999f-4ef984042243 1 Other Other +799363cd-2fce-499c-9dfc-7cf30d226df5 1 Other Other +79941cb2-7d2e-4748-b5fa-82f84a13c95e 1 Other Other +79943df7-cff4-4b16-86ac-be4a52b9a483 1 \N Other +79946486-33c2-4d9e-8eb2-b908b619baee 1 Other Other +79949212-43e2-4ac4-b58d-54b3c126fb2a 1 Other Other +7994a791-8c8e-4e72-81ea-d00bb305e189 1 Other Other +7994d4ff-1bc2-438d-bde9-c97880a79bce 1 Other Other +7994f229-d351-4221-952f-dc52cb3f51bc 1 Other Other +799520f8-7637-40b0-a568-b93c20dfb69b 1 \N Other +79952350-5955-451a-8e6c-f2f8d40613c4 1 Other Other +79956250-684c-4b85-82c0-0a595ea72304 1 Other Other +799563e7-fa2e-4a13-9254-e7bfbe6678c0 1 Other Other +799571b4-30cd-4d85-84d5-569fd896f444 1 Other Other +79957e0c-9890-4e36-9c00-899a9495376c 1 Other Other +79959f40-bc4b-4802-a989-db8aa9b29ec6 1 Other Other +7995ba45-13f0-4ec3-9754-8cb0d8cf6883 1 \N Other +7995d650-c3c4-47fe-9b4d-97c14463baba 1 Other Other +7995fab6-f399-4d60-9a38-62d99c7ae314 1 Other Other +799638f8-b1eb-433e-bf4e-4e3c0cb65d48 1 Other Other +79963e83-6172-4f9b-95c8-8a803c472a70 1 Other Other +799659b2-a6e9-4ffc-bc56-c9f9fbe757b4 1 Other Other +79966744-e6d7-4744-9e54-393b757e43bd 1 \N Other +799691f8-875d-41a6-8819-621f175c81fe 1 Other Other +79969c67-4707-4679-a4b1-f53b2e2afb22 1 Other Other +7997066b-3ecc-4dc9-80e1-84da8283ef11 1 \N Other +79974410-2517-4bf3-9079-86a67042dc6d 1 Other Other +7997a581-b5ab-416a-9a29-128157c89f1d 1 Other Other +7997aaff-3d1e-472f-9d3c-053574ac673b 1 Other Other +7997f79f-c19a-4ccd-a4ed-27289663fb1b 1 Other Other +79983c98-5a9d-4abd-b3c2-c475ba2ce467 1 Other Other +79984429-156d-42aa-8111-037a0b0a18ae 1 Other Other +799870d5-2499-4bfa-8cf1-da5e78c8bb49 1 Other Other +7998a8a8-d9d8-44f5-bc0c-1137d796f227 1 Other Other +7999153c-b332-4c80-86da-8ec08722fb20 1 Other Other +799947b8-d053-49e5-9737-da28f54a7f26 1 James Other +7999684f-8a50-45a1-a106-b50cfb098a9d 1 Other Other +7999d6ad-f79e-4ff0-8b20-b2343eb91996 1 Other Other +7999def7-996c-43f1-ab99-ad14617f7fe6 1 Other Other +799a3e29-a832-496b-9d3b-7763ebe85a4a 1 Other Other +799a457e-8407-4793-91e0-86c96c96fb89 1 Other Other +799a77b6-8493-4f71-a999-fe09c20f9da2 1 Other Other +799a98dd-afa5-4cd7-a340-157fb30e9e36 1 Other Other +799bace3-f0a3-4407-8272-4bf573a6fc6f 1 Other Other +799c177b-89c8-4c67-b6ba-a8fc7d9d3cd5 1 Other Other +799ce459-6ee1-4f0d-b9cb-b63cc7a720f1 1 Other Other +799cfe4c-d0fc-4342-af52-215e33c65ca2 1 Other Other +799d2ac6-79f5-489a-9d4a-0041fdf57366 1 Other Other +799d2fa0-0934-4e25-9721-bb54b03eb8e6 1 Other Other +799d6577-fdfd-4be4-8250-008a247df7f2 1 Other Other +799dde24-93b9-4d8c-8a6d-c1ca63219f98 1 Other Other +799def86-a497-488b-bd84-983fb175c228 1 Other Other +799e222e-407a-422f-a19e-655edf1b692c 1 Other Other +799e3e72-91e6-4c06-82f7-83db518fcb32 1 Other Other +799e4cbe-9daf-46bd-9879-fd37219381bb 1 Other Other +799e53db-ce5e-4d2c-8720-6d0c9ced8e58 1 Other Other +799e5edc-8787-493d-9310-452a3ead2f88 1 Other Other +799ea838-2c0d-4fff-b0bb-1317c31a6f3c 1 Other Other +799ecb75-172c-4d46-a385-befa8feea198 1 Other Other +799ed7f0-502a-470b-901d-7c6dd65be30d 1 Other Other +799f469d-72ff-4d38-a924-a15f9e6bebe4 1 Other Other +799f4e20-77a2-4b52-8113-28f223a75d3c 1 Other Other +799f60a7-ba7c-4431-8316-0e04a0141522 1 Other Other +799f7e0b-4bb5-4c1f-ac18-55eac3d87696 1 Other Other +79a04ea1-652c-4d46-9cef-7b4c6f68d12b 1 Other Other +79a06688-ceac-489d-a3c7-29712963c503 1 Other Other +79a06842-96ca-11e7-b44d-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +79a11094-a495-4157-806f-baa1dbe7dfb2 1 Other Other +79a14b04-1aff-4965-a131-4a477f2c191a 1 Other Other +79a150c6-1c96-4db0-823f-5e2b92560e37 1 Other Other +79a16cba-ede5-4634-acd3-4e8fe1204292 1 Other Other +79a1f771-007a-4336-ab6b-9dd148559b7f 1 Other Other +79a23115-8c85-4bd5-9f06-fa5f893d95e0 1 Other Other +79a24264-7c9d-44be-a877-45b5cf4bec63 1 Other Other +79a24305-1d51-4caf-9187-bba5f6e4e3ba 1 Other Other +79a2751c-0e94-4ea3-a3d9-d5f6f6faafdc 1 \N Other +79a28abd-12b6-43fe-8bfd-f0e23afe8259 1 Other Other +79a2ab3e-685c-42e5-b732-292f46adc163 1 Other Other +79a38be7-04a1-44fb-81d9-cca1a4bfa58b 1 Other Other +79a3c12e-5adc-40ea-ab3b-5076c9272930 1 Other Other +79a49d85-b7da-4c50-ba47-68e7d676f976 1 Other Other +79a4aea8-649a-4c46-9019-33067e168f17 1 Other Other +79a4c07a-9a88-493e-969c-22ececc98752 1 Other Other +79a4cf8a-8264-4220-a1c2-84df3d5d3e38 1 Other Other +79a4e434-d003-4c5f-91a6-620925875aad 1 Other Other +79a4e8b6-fd1e-45b3-a77b-873a3a422d18 1 Other Other +79a520bb-7b02-4a1b-8542-1312ffec2486 1 Other Other +79a548d9-53c4-434e-9145-6b81b7558b3d 1 Other Other +79a556da-784f-42a9-81c6-da720b59c288 1 Other Other +79a55c4b-5065-431d-a1fe-11d625041d64 1 \N Other +79a59305-07d9-46db-acdc-ffa1ed46bd50 1 Other Other +79a5a47f-2bf3-4acf-babc-713670b0f1da 1 Other Other +79a5bf24-57ef-4299-a21e-fc5a4a55c768 1 Other Other +79a5fd78-2b32-11e8-8743-fa163e8624cc 1 \N Other +79a68174-0621-412d-966d-f629f1e6fe21 1 Other Other +79a689f1-7545-49ac-9649-82b18b231d62 1 Other Other +79a7833d-c20f-4240-a24f-fbbe52f50d5f 1 \N Other +79a7b795-818c-4f3b-b6a8-11f152bec203 1 Other Other +79a7d3b1-bb80-4480-aedf-4fb7b0b6dc97 1 Other Other +79a81775-910a-4baa-87da-16baf4e89913 1 Other Other +79a8453f-658f-45cd-aefc-07555bb6af34 1 Other Other +79a8a373-da04-4a92-8919-3f838ad2104f 1 Other Other +79a931db-f2fc-44a1-a69e-a71709624c0d 1 Other Other +79a94e19-bc0d-4784-8a5e-0cab7496df88 1 James Other +79a97a12-cad7-4efb-ade3-a3e4b8eeaf82 1 Other Other +79a987a0-8964-46c5-ae5c-63daec143076 1 Other Other +79a9f0ed-1e1b-4b2a-a19d-1e238cabf85d 1 Other Other +79a9f950-8cef-4608-8717-43e6c297aa38 1 Other Other +79aa1f95-253b-4e5b-a0d5-b17bd9247e93 1 James Other +79aa2221-6a0e-44dd-a9ff-3fa5898a29cf 1 Other Other +79aa248d-3d83-4677-b19b-645fab3e3b16 1 Other Other +79aa5088-de46-435d-bbca-a42a495627a0 1 Other Other +79aa5e42-cd0f-4b7c-91af-04aa51fc3998 1 Other Other +79aadcf5-deef-4ed9-8038-124508dfa5ee 1 Other Other +79aae2ec-d473-40b3-9ae5-f78497725852 1 Other Other +79aaeb03-ebf5-4bed-9e8f-0437f0699c1e 1 Other Other +79aaf505-03fa-418b-9c65-93546050927e 1 \N Other +79ab2ab0-2035-4578-9b47-dcb188ae2c9c 1 Other Other +79ab49c3-48cd-4c69-9f63-25ba80f32235 1 Other Other +79ab5b4f-b037-4bf2-9dd3-b41ddbd60402 1 Other Other +79ab78bb-4454-4bf1-978d-3d83462c6cfc 1 Other Other +79ab852f-5ef0-4f07-beb0-64bf44baa2e4 1 Other Other +79abb5d3-394b-4263-bf60-b2c9c545bdfb 1 Other Other +79abc358-5111-455e-be5b-7b81057a5a78 1 Other Other +79ac10e7-130d-4b69-834a-bf698b716642 1 Other Other +79ac2799-c905-44dd-997b-32a37b04e6b5 1 Other Other +79ac8799-4f04-46e8-adec-8009afe41bc3 1 Other Other +79ac9dde-b776-48d8-8326-db7f319cdf75 1 Other Other +79acc94f-a364-41e8-abab-49e7c94333c4 1 Other Other +79ace4c2-08bd-11e8-a3b8-fa163e8624cc 1 Other Other +79ad183f-39d8-434a-898c-d8857cb45e98 1 Other Other +79ad512d-24d2-4dc4-98f3-8a0516410121 1 Other Other +79ae09b3-0b1f-4597-816f-f1a79d886ebd 1 Other Other +79ae3376-5841-4385-92c7-0655b2c93e11 1 Other Other +79ae8d92-1244-490b-9bfc-c65fa85dbc3d 1 Other Other +79aeafa7-6921-4793-9f73-3c0d123e395a 1 Other Other +79aeb0bc-cf04-4cdc-8f5e-af2927b0248c 1 Other Other +79af2eac-cd87-4216-b20e-aeed087d2c09 1 Other Other +79af4bb9-4d10-4c23-86ac-aa6be42d0c06 1 Other Other +79af8d00-352c-487d-8e7a-2a0484c94bc0 1 Other Other +79afa61a-27d6-4266-a7c6-0d5434033118 1 Other Other +79afa6d7-1479-485c-a710-abe6bd3a5ff7 1 Other Other +79afda78-49f2-4817-b98f-9135fe59dc50 1 Other Other +79afec3d-2984-49bd-a0e8-affb015c6411 1 Other Other +79b02b3b-8a46-4be7-bea7-bb12c04afaee 1 Other Other +79b035e6-65c2-46ff-a474-2bec0806cd4f 1 Other Other +79b07e0a-c198-49c8-9f20-6bf7b9d7c9e1 1 Other Other +79b0b4d5-1bae-4cc8-a8c0-1ceea711ac5f 1 Other Other +79b0e576-d591-4ee0-b443-01bc7ced849d 1 Other Other +79b18314-a98d-4301-bcf4-32450d1f4562 1 Other Other +79b1efd4-a076-4f19-bbea-6edd9f20b32e 1 Other Other +79b226af-fa5b-4a11-9948-af13e4e7ac8c 1 James Other +79b26a9a-90a1-4d8d-b456-1a8ff83414c3 1 Other Other +79b28ca1-9c3c-4fc3-9a86-5e73fa4f4dd9 1 Other Other +79b31308-c4a0-4057-ad67-f94c8812f8f4 1 Other Other +79b364ee-8e02-4e6a-ac0b-113eee89bb46 1 Other Other +79b378b8-89a6-48c1-8b16-2cf60c19a429 1 Other Other +79b3ab8e-0c4d-4305-824e-eb1c7c4ed627 1 Other Other +79b3e30e-a3d0-4364-9788-4d7d0b6311dc 1 Other Other +79b3f5c5-974d-4f08-9363-0a338956eb43 1 Other Other +79b40bf9-bcee-4079-a7c3-8a8556197541 1 \N Other +79b418b5-4097-4491-8efc-d503b6a82a26 1 Other Other +79b4724e-0b29-4123-910a-645534b8134e 1 Other Other +79b49853-2c1c-4d9c-8660-6b112fbbf9e2 1 James Other +79b4c5e2-e680-469f-9453-5314debca1ec 1 Other Other +79b554c4-5bc7-47be-959d-7b67a210c686 1 Other Other +79b555be-9e0c-49cb-bbe0-5c06b029374c 1 \N Other +79b563a8-d3f3-483e-b113-805c5c2dc1c8 1 Other Other +79b58be5-7cc5-449f-b815-6bbf21e3f05d 1 James Other +79b5a126-4380-4c8c-a105-94d3939bb906 1 Other Other +79b5a3ad-5def-40ca-aff3-1b5a6dfe34af 1 \N Other +79b5bc0f-ccc2-41d6-b439-137ddd135986 1 Other Other +79b5c549-0b16-4505-af1b-53212b5f7772 1 Other Other +79b63b14-ee7f-494b-bb66-2454d6ffa61a 1 \N Other +79b6c3ca-f02b-4315-9fb1-aeb0be4f216b 1 Other Other +79b7049d-6d1e-41ee-b500-4255241ec128 1 Other Other +79b70f33-f2a7-424c-80d4-0cc5ce7eb89c 1 Other Other +79b74646-0427-476f-b5a7-609fa987ccfd 1 Other Other +79b78193-539e-4d1b-a493-6eb4338b2f20 1 Other Other +79b7bd46-f441-463a-a343-24593a1a0209 1 Other Other +79b7cc4c-e606-4279-ab54-3b70cd481c6e 1 Other Other +79b85f74-cb59-4775-a329-421f61c9d8de 1 Other Other +79b89167-5583-41d7-a071-b9debc006ec4 1 Other Other +79b9367d-4f2b-4a18-aa4d-4285a820f9ec 1 Other Other +79b9ca09-2a10-41a6-aeb1-202c204bec2a 1 Other Other +79ba1d6c-6cce-41db-bc18-6b739471c19f 1 Other Other +79ba24b8-3467-4ede-8e3d-345f3c54ce32 1 Other Other +79ba6245-becf-440c-8e46-2eccd1def203 1 Other Other +79ba858a-d35f-4130-bada-72735e072c02 1 Other Other +79ba9517-3f26-403d-b0dc-2ef13596fbeb 1 Other Other +79baa28b-b61b-47f4-9400-4d6ceed0deac 1 Other Other +79bb0303-de68-4f0c-9f0e-31ae7d84e260 1 Other Other +79bb3c04-f41f-421c-ad56-ca82e43ba9cb 1 Other Other +79bb436f-f578-42e3-a466-2976abb57623 1 Other Other +79bb91c5-b0a0-400c-89a5-36b80f752ecf 1 Other Other +79bb95a6-b558-41d1-86a1-f806042d6d09 1 Other Other +79bba414-37fa-4ff9-983d-39908a5e3df5 1 Other Other +79bba5fe-442e-4e3e-880c-7a2a9603d9b5 1 Other Other +79bbc5c6-141e-4b80-9cc0-e276fce6c44f 1 Other Other +79bbed1c-46f9-40c4-9bde-a1b04ce50b9c 1 Other Other +79bc0542-9126-4d01-8022-e2b9bc66b040 1 Other Other +79bc2592-d8ac-483d-b21b-a9168e962606 1 Other Other +79bca44c-c97e-4540-92c2-36cb788767af 1 Other Other +79bd0153-3783-4ca1-b51c-cb4d3eed959a 1 Other Other +79bd0892-b430-40f4-935a-1b670a4772f2 1 Other Other +79bd2b5e-255f-430d-8844-d645ff508076 1 Other Other +79bd3be8-f329-49e7-93cd-2bc205a87204 1 James Other +79bd5252-b3ac-4b4c-a9ba-a6aedef6140b 1 Other Other +79bd576d-99b3-47c0-946f-1aa2335de834 1 Other Other +79bd69fc-5856-4d11-95d9-755c325ed9e0 1 Other Other +79bdfb39-e736-406c-80c1-a5c6702c1646 1 Other Other +79be153a-dd1e-4639-8682-bf45056817c6 1 \N Other +79be2286-fe7f-462e-8a2e-539bd9d54169 1 Other Other +79be3022-1112-4948-98ce-92f9fa8f1ca6 1 Other Other +79be79f7-4b68-419c-825a-d102935e2b47 1 Other Other +79be87fc-d76d-4b45-8d1e-89dac72ebfd7 1 \N Other +79be90e3-3c70-4e26-a246-2571328f4e2c 1 James Other +79beab2b-2d21-4a42-bf33-b3dd03ee4b6b 1 Other Other +79becc4a-5f36-41d5-9221-c40a3e637b65 1 Other Other +79bf0d0f-f428-4b4c-8ba9-d4b16aecb4f5 1 Other Other +79bf8007-9898-47dc-bf9b-a63e7aa25311 1 Other Other +79bffbaa-fd6e-4efa-b158-726cad9f08a1 1 Other Other +79c0b174-3410-494a-9fa3-72104a5d36a6 1 Other Other +79c0bdc5-e13f-4470-8ab6-4ff6059938a8 1 Other Other +79c0c7c2-5fff-4bd2-b192-62cf4008c8ff 1 Other Other +79c0c8c3-ceda-4f82-8b86-58f1f245f21d 1 Other Other +79c0d2d4-ab79-4800-8353-506dcff26103 1 Other Other +79c10dd7-3715-47e9-90b4-29aee9c99168 1 Other Other +79c12b63-28d4-4e71-9685-ec209d5915d4 1 Other Other +79c146ce-c75c-4aa2-a0d7-3682803c7369 1 Other Other +79c17573-3fbf-443c-a194-37a11b1bfc52 1 Other Other +79c17625-c22a-4d26-8739-dc48f6da22a5 1 Other Other +79c2099e-7e2d-4b33-8731-d9f87e69f6d3 1 Other Other +79c26a64-8a52-43de-bbe3-d275446ff1ec 1 Other Other +79c27acf-8714-4b0f-93ea-9ad354680b96 1 Other Other +79c296e6-3795-4a95-a8b5-22b7a35196de 1 Other Other +79c2f304-a0eb-4857-bb8c-6fab7467f390 1 Other Other +79c32017-dae1-4ab7-b3a8-a96bd39a6c45 1 Other Other +79c3223d-a65f-4190-9c52-eda53bea063b 1 \N Other +79c3355c-ec5b-4fa3-b713-e64abacd0f65 1 Other Other +79c39015-60be-4f03-a50b-d01c7246bd90 1 Other Other +79c3e72d-0df0-4698-a80a-3eb2539fb20c 1 Other Other +79c40651-de53-4704-8a08-27f38b6b1bd4 1 Other Other +79c48dc5-b6a6-4baf-b0dc-6a6b310fc941 1 Other Other +79c494f3-93d1-4ec2-81b3-f5ad611a413b 1 Other Other +79c4a08a-0705-4f69-98f1-c815430bcac2 1 Other Other +79c4e0e6-5728-4f09-8b3b-bd750c7e3304 1 Other Other +79c50172-740a-4f30-955e-e13539e110d0 1 Other Other +79c56a14-3e8c-4ac8-a11f-702b85243d72 1 Other Other +79c596b2-d742-48d0-98ea-8c48ed7b094a 1 Other Other +79c5c4c8-a873-474a-8883-03476cb33571 1 \N Other +79c5e522-f97f-4f81-a6e7-5e56f56e4fba 1 Other Other +79c608d0-546b-47d9-a26e-97f55151e2c6 1 Other Other +79c6324a-a5da-4a5c-a03c-46b55eb6de0d 1 Other Other +79c63a30-0dac-4aa1-afd2-a89d4b9521e3 1 Other Other +79c64545-92df-40d1-ab2c-dc9f2325cf92 1 Other Other +79c65a63-3c65-453c-8996-1a7af02fea8b 1 Other Other +79c6b179-f227-42ff-85ff-b204681ea955 1 Other Other +79c6b940-3127-44fc-bc42-9f59853bf234 1 Other Other +79c6c935-0656-419a-90c7-e57829c8cdfb 1 Other Other +79c6e9ab-31dc-4a22-8dc9-211f608081c1 1 Other Other +79c6ede0-7423-4a28-8c84-cf2d68fecb60 1 Other Other +79c74ccd-12f1-47cf-a737-0b22183b5dc1 1 Other Other +79c7780e-9aad-42c4-b2f9-cbace55ae796 1 Other Other +79c78a31-e2cc-47a7-9103-01a504d7598e 1 Other Other +79c790eb-4c5d-4cca-a8d5-7dcb9d64c32a 1 Other Other +79c79225-4791-479c-bd25-b0dd41976c0b 1 Other Other +79c7a03b-804d-4786-8b4e-b3caea2c7a5f 1 Other Other +79c7ea14-0b0f-47a2-a15e-9cb10ef9c635 1 Other Other +79c7f856-6eb1-46f2-b81d-f8c217e49eec 1 \N Other +79c89e16-b96f-4251-9f90-8fe6711e413f 1 Other Other +79c8db1e-d57d-4fde-9041-066e24675c2c 1 Other Other +79c96ee1-b33c-407e-8f0c-9af25af46730 1 Other Other +79c9beb1-4c64-4152-8e96-25fb42737369 1 Other Other +79ca2a39-d8b2-4019-be75-224dfe2971c5 1 Other Other +79ca3a59-8d7e-48d0-adb3-b0c59dae52ea 1 Other Other +79ca6beb-34c1-4842-b697-fcd1fad2c3b4 1 Other Other +79ca7cf6-4aa4-4676-9a14-981cc4b705b8 1 Other Other +79ca873b-ee01-465d-b733-2552b8e51cbc 1 Other Other +79caa04a-2061-4bf6-b785-1b7370945adf 1 \N Other +79cabf7a-18d4-439d-8a32-22d578c5abbd 1 Other Other +79cb3340-ee66-4886-9d6a-be8e70c346c4 1 Other Other +79cba969-f713-428e-becb-653fa7a3ab96 1 Other Other +79cc03dc-5a73-4e7d-8732-21c17574bb2b 1 Other Other +79cc15ee-2ccd-48ee-afae-1096bb111dc8 1 Other Other +79cc2144-0a0f-4c20-bcee-6ad6f64b3049 1 Other Other +79cc2776-5761-4512-ac2c-aaedfa8225d7 1 Other Other +79cc48ca-696e-4837-8129-e6d2cbef5cf9 1 Other Other +79cc6778-5bcc-4d20-9291-00b6f9680846 1 Other Other +79cc7a64-3cc4-4025-8ea2-31e7eef770ab 1 Other Other +79cca1b7-84f3-4161-9f0d-55e9d4cd0ca7 1 Other Other +79ccb1ec-2ccb-4daf-81d5-f2711f49ce86 1 Other Other +79cccd34-e678-4c33-9c64-c3837e4db072 1 James Other +79ccd989-82e5-4b61-90ef-51db8cb8a99a 1 \N Other +79ccdcc3-1c7e-4dc2-bb01-a4dbc5399935 1 Other Other +79cd12e4-00bb-44fc-bf03-c68e12a42aad 1 Other Other +79cd1d99-ac72-4eaf-bd4f-89c2bdfc641b 1 Other Other +79cd5ab2-f806-4f48-9f10-e20de907f2ea 1 Other Other +79cd65cf-1e77-46ee-a7de-6f496abe7965 1 Other Other +79cd9112-05eb-46fd-a914-6ab3e3ab627a 1 James Other +79cdd0ec-20d4-40c9-a206-c4e427fd51a8 1 Other Other +79cdd9be-a281-42e7-aa3f-55ab57bf863b 1 Other Other +79ce0557-c978-4fee-a99c-ff3ace2b4fd1 1 Other Other +79ce56f7-0a76-4258-9877-ec2001a07626 1 Other Other +79ce7453-480a-439c-a1ec-f085ade0aaa5 1 Other Other +79cea350-c6b2-4726-9cef-48df07978c43 1 Other Other +79cec089-eb13-4a5c-88c7-9862d27b1a04 1 Other Other +79cec655-9f8f-4d50-a04d-52fb92fbe13d 1 Other Other +79cf43ec-4d23-4c93-a706-8401afae344c 1 Other Other +79cf7e39-0b16-466a-af6c-19391d97b5a9 1 Other Other +79cf9524-f904-4d34-8bfe-ea5ec299fd49 1 \N Other +79cfe38b-61c0-4a2d-b68e-048038d32893 1 Other Other +79cfebe1-dd79-42b2-beb6-d45fc3145e0b 1 Other Other +79d0104d-f7d4-446b-ae50-53a4940a2332 1 Other Other +79d04d0a-8f9a-44e7-b79b-011ba70f8eef 1 Other Other +79d0c4b4-a00d-4e72-8d72-57eaf3d30928 1 Other Other +79d0f0d2-1d6d-4322-9ad2-68b4e8b77564 1 Other Other +79d1a517-dbeb-46c5-97a4-60b0023049e8 1 Other Other +79d1c3be-b2ca-48bd-986f-2eb9d5801fd8 1 Other Other +79d1c90b-c149-4e44-a618-e2ba90990091 1 Other Other +79d2ad6b-4ca4-4ed7-8d31-cd80f8e949c6 1 Other Other +79d2cae3-b9f6-4d51-a5da-07ec755863db 1 Other Other +79d2d5d3-8bf9-4555-b355-605ef6d7872b 1 Other Other +79d2f919-0c28-4fda-b12f-e2a95e3e0015 1 Other Other +79d30c21-a7f7-467e-ab78-ad91dc8155f7 1 Other Other +79d37c51-668b-40ab-a141-eac3b9491490 1 Other Other +79d38761-c2e5-4069-a9a0-a98a7398dccf 1 James Other +79d3bcd4-26c8-4ec1-974f-8131d20bb1f5 1 Other Other +79d43c3f-e8ce-4240-b63f-0f20578304bb 1 Other Other +79d45dcd-ae6b-4ae7-b590-cdd62b345e37 1 Other Other +79d46126-5bd0-49c4-a853-7d628923619a 1 Other Other +79d47e22-560f-424d-a886-414e7bc821e8 1 Other Other +79d489c0-9e83-40b4-b024-2b393b613696 1 Other Other +79d4ae42-3c11-47af-875d-722c530238d4 1 Other Other +79d4dc7e-1347-455a-ace1-ee19ca2b36aa 1 Other Other +79d4fb75-7606-4653-ae99-ba74e5cf712f 1 Other Other +79d5450d-241e-4428-8704-4d0dde4bd9df 1 Other Other +79d5483d-2dff-41e6-bfd8-8f4944b27488 1 Other Other +79d5d687-5753-48a7-b8c4-2f80ed4dfcb3 1 \N Other +79d5dfa7-a695-4aef-9bc2-de6118cd88a6 1 Other Other +79d5e2dd-9241-4560-9358-061531a53991 1 Other Other +79d65f1b-d1f6-4d23-9c55-2b00aab90b42 1 Other Other +79d66715-a55a-4ac3-bf40-2e41a3f43728 1 Other Other +79d6be96-a1b7-4158-a4cd-b3b38c9b6865 1 Other Other +79d741c4-4e62-4fed-a4fa-f6d40107a75a 1 Other Other +79d7cf70-a23a-446c-b891-2914bcd05216 1 Other Other +79d8152e-dc3c-4b1c-8358-b983ef70b320 1 Other Other +79d85fd9-9ec5-4969-8df2-0fb66375aa59 1 Other Other +79d8d56e-bb80-42ea-b852-490a28096832 1 Other Other +79d8e761-f549-4c0e-83dd-314598a79cc9 1 \N Other +79d8f175-2ae6-4ce9-be48-8138384131b5 1 Other Other +79d90d49-2e71-421b-ae5e-ef7e98b2c4af 1 Other Other +79d9a47a-d82b-4eff-94f7-f8de295482d1 1 Other Other +79d9d4d6-7214-48f5-84ed-bbe8435be171 1 Other Other +79da26b0-d9e7-4e30-b0f7-4ad3ab2ecb86 1 Other Other +79daa059-9292-41b8-a454-45bc70b0e74a 1 Other Other +79dace8d-98f7-4e93-81ee-1b356a63a7a5 1 Other Other +79dbd54c-2b01-4c43-a6c5-096e11bb360e 1 Other Other +79dc1c75-820c-42c2-9108-39b3657669f2 1 Other Other +79dc4d99-d034-4656-a6fa-d0b958d2ab29 1 Other Other +79dca2d7-0a28-45bd-bfb6-135e8b5ecc81 1 Other Other +79dcc6dd-6cd0-4dc6-844f-d4f8e842fca4 1 James Other +79dcc8dc-bd17-4dc0-95d4-b3060d97c09b 1 \N Other +79dce8ba-82bd-456e-baf6-ee7475603f9c 1 Other Other +79dcf148-6013-4b30-8c26-7d3572d87ddd 1 Other Other +79dcf664-59cd-4671-9bb4-4608020f2714 1 Other Other +79dd0b1e-7a56-4e2a-92e5-4fa6390b7b88 1 Other Other +79dd1dab-1726-452c-8d46-546ab97255eb 1 Other Other +79dd33a9-09b2-4d43-8e7e-8894ec229d0c 1 Other Other +79dd60df-5e23-45ef-b19e-f1ca72aeaa47 1 \N Other +79dd81bc-13e3-4a16-9f90-8b9ff309bfcd 1 Other Other +79dd89ec-6bf4-4776-9c8e-6998ad5ff0dc 1 Other Other +79ddd5d5-996f-4cd4-808f-ef0e5e4d05ff 1 Other Other +79ddfa94-82f5-48b9-a408-189dd89b0d70 1 Other Other +79de2464-cf66-4f25-adad-f2dc69cb2cff 1 Other Other +79de2987-f92c-4059-902d-33772ce2aa1f 1 Other Other +79de886d-3bcf-4750-8636-3fa48f539746 1 Other Other +79dec2d3-594d-4787-9fb0-6e1673afcb33 1 Other Other +79defb7a-b20c-4e33-a098-3070c03dd0f6 1 Other Other +79df7785-37af-4ee3-99c4-640b3f2648b7 1 Other Other +79df8708-d363-4073-bd07-f1452e9c70cb 1 Other Other +79df931c-98d2-42b0-875e-4348c2af1721 1 Other Other +79dfba03-cea7-4dff-a646-f708c7e3eb93 1 Other Other +79dfbfd5-eae5-4bbd-adfa-ca924a223457 1 Other Other +79dfd1fd-ec6a-45e7-947a-110e22ba92a0 1 Other Other +79dfdffd-463a-4d75-a6b0-6be5c63d7f31 1 \N Other +79dfe49b-0981-46d5-94e5-e5ce9f5a3092 1 Other Other +79e0337b-0fed-4a66-9915-a4c5193b427d 1 Other Other +79e03d08-ce3c-41f9-a651-08f527b9b6c4 1 Other Other +79e08daa-5a28-4620-8600-02eac76eb72c 1 Other Other +79e0f337-c527-4284-92e1-6c9507e70f18 1 Other Other +79e102ba-2391-4f2a-9960-a65f09342dd1 1 Other Other +79e1333b-67e4-4b49-9976-ed1212cb9196 1 Other Other +79e14ace-e46f-4eff-9e16-fc49da4c3b6e 1 Other Other +79e1a8c2-0da9-4236-b5ba-e509e2169385 1 Other Other +79e1c4d4-626b-44e5-8b35-79312babbf4c 1 Other Other +79e205a1-c178-409a-9831-746488d19da6 1 Other Other +79e240e7-81e3-4c15-81cd-404d3603fbb3 1 Other Other +79e2465a-42c1-483b-a791-0a9e5b86288d 1 Other Other +79e26ffb-b80b-4d77-88a3-78d6d9013764 1 Other Other +79e272c9-5e6b-474a-b8b3-7040c1b4b416 1 Other Other +79e27b01-e781-4faa-b2fc-931a83acfe32 1 Other Other +79e2aa95-80ba-4c02-ad1d-995d7a87be43 1 Other Other +79e30c19-c19f-41ca-ac74-bbb2742e5673 1 Other Other +79e31f3d-c535-47e8-8970-b9232439b4ff 1 Other Other +79e333f0-2685-4372-91cf-6a4c587e054d 1 \N Other +79e33da2-0c75-4c2c-b522-bd2d06483980 1 Other Other +79e36509-d04a-4e8a-9b86-39ce668b1b45 1 Other Other +79e3942c-8e45-42f6-9df2-f816134c0298 1 Other Other +79e3f49f-6c17-40b9-b385-edf4ac6b9303 1 Other Other +79e3fcf2-67ea-4f61-b14f-cba0198ccac5 1 \N Other +79e4196a-709b-4e8f-bd8e-27c83a62368c 1 Other Other +79e4230c-6b53-4f5a-80f5-8fb64fc52c64 1 Other Other +79e47393-3bd3-4d73-b2d7-9dcadc77f125 1 Other Other +79e4a444-03f9-4d5a-b953-c17a29007a12 1 Other Other +79e4dd5d-6952-48a9-8492-75aa9b32bfac 1 \N Other +79e4f86e-d559-4957-b58e-c3559677ef5c 1 Other Other +79e5d4ce-47af-4f5a-b96f-0a0fbfe6d92b 1 Other Other +79e61329-224b-491e-8769-d38e89414ab9 1 Other Other +79e633a3-a6ee-42b6-8c0b-4e85f0100281 1 Other Other +79e635e1-bf6d-4fab-923f-caa146af9b6c 1 Other Other +79e693d3-7e92-4fc2-b6d1-a66dd5ee6217 1 Other Other +79e696c3-bc72-488e-bfb5-ab0e13f54b61 1 Other Other +79e69b91-be62-414f-b144-ad990866bb99 1 Other Other +79e6df59-a6c1-4588-a313-8ebc30ffa210 1 Other Other +79e707b0-3a17-46c0-a43e-5a85dac57dec 1 Other Other +79e72fc4-31ca-46ca-9d10-4c7011a37d7a 1 Other Other +79e77739-56dd-4a4b-83b6-451dd8a4663b 1 Other Other +79e79478-ee49-4c7f-8c58-696a6c3ad803 1 Other Other +79e809d1-c0f0-4400-8d92-b6c809cdad9c 1 Other Other +79e81209-642c-4a88-b037-f707b29990c5 1 Other Other +79e84623-c7b4-4d3b-abf1-d3ed4d86f4c0 1 Other Other +79e86330-1300-4ef7-bb82-3846d9b543a9 1 Other Other +79e88174-395a-42de-941a-240add0e8fcf 1 Other Other +79e923ff-b279-4a45-896a-b31c81cbe389 1 Other Other +79e949c3-b51b-424c-836f-61a91128276c 1 Other Other +79e956b6-4790-484e-ba99-215bcc7d3e7d 1 Other Other +79e9a6a1-c87f-48e1-b9a2-c76665c0a2d0 1 Other Other +79e9bbe4-b504-415d-8f42-ae232b376e0b 1 Other Other +79ea02ed-78dc-4225-b171-e0ca21befb79 1 Other Other +79ea53b0-0b59-4d78-b75c-5f0204639af4 1 Other Other +79eb23ed-b4db-462f-9b6a-d6de1217a7b6 1 Other Other +79eb2531-0035-4ff0-aaf4-f939e75c9f86 1 Other Other +79eb2ddd-bd99-49b2-b2fd-762a0f8b1093 1 Other Other +79eb3f46-b8c9-4234-a38c-5382cea1d83e 1 Other Other +79eb570d-4eff-406b-9816-d070ca30d45c 1 Other Other +79eba5be-5712-4eac-8bab-1761f2e42fb3 1 Other Other +79ebb4c1-b3fa-4678-9f4e-8165b37d8ccd 1 Other Other +79ebbe42-7ab8-454b-913a-222f44a96d1a 1 Other Other +79ebd75b-9960-4cfa-9295-3ed5df36b4f5 1 Other Other +79ec06b3-af30-4087-afad-8891a1580951 1 Other Other +79ec3df5-d6d9-404b-9d8d-d2fb9fb28e0e 1 Other Other +79ec3fc6-39b4-440e-b44f-00f1d4c5431e 1 Other Other +79ec662d-d647-41a4-b6de-4d7abbfbc076 1 Other Other +79ec6d48-ca0b-424a-b5b7-aae9d126be06 1 Other Other +79eca668-a56a-4ace-9336-9412d565b87e 1 Other Other +79ecb28b-74a4-40f0-9fda-4f72976df164 1 Other Other +79eccb17-4d20-4e61-abde-a4d2da6c32d5 1 Other Other +79ecf969-6ace-4ba9-90c7-d1fbdf582be6 1 Other Other +79ed3c4d-c0f9-434d-a9c6-43b044f8d00c 1 Other Other +79ed43fc-8365-4a9f-ac05-467d32b0e513 1 Other Other +79ed473d-9af7-4b2e-8e7f-10bf0761233a 1 Other Other +79ed5c5d-af87-41f0-879f-037ca1fbf483 1 Other Other +79ed723c-b8e8-4cda-ae74-7a20f38662a1 1 Other Other +79ed7e69-64a2-4e0b-a269-747519eb5e2e 1 Other Other +79eda47c-7761-460d-a6d9-023f3e40a958 1 Other Other +79edcfdc-08aa-4f58-a3b7-3ae06a812454 1 Other Other +79ee033a-000e-44f1-9f12-13021cb8267c 1 Other Other +79ee0b27-a3fe-4cfd-acfc-b172496ee4d8 1 Other Other +79ee60bb-9bae-4714-a103-f476567f00e2 1 Other Other +79ee74bf-c3db-4e55-bd77-2ab03c36841c 1 Other Other +79ee94eb-2f71-4e44-be90-4267768baef8 1 Other Other +79eeb23c-161e-42d0-b146-7e16f69411cd 1 Other Other +79ef1eb1-7ba1-426d-beb3-5fc3650125bc 1 Other Other +79ef6032-d738-4dee-b5bd-401f570cdbf3 1 Other Other +79efc188-13a3-44ce-ac9e-80ef68de012f 1 Other Other +79efe5a9-aeec-4bfc-83aa-191f57921b4b 1 Other Other +79f0e3d9-2951-40ba-9782-bf3ddc30beea 1 Other Other +79f11ce0-74af-4c07-84c6-1f5aeace10e1 1 Other Other +79f1400a-8661-4c7d-90a4-d7a97000f1e9 1 James Other +79f1a885-b607-45ad-86ff-c66e465279af 1 Other Other +79f1fb64-474a-46d3-b4a2-b38ed056e30e 1 \N Other +79f26024-8f97-4a58-9cf8-6ccd211c8e17 1 Other Other +79f27b64-c4e2-43bc-959b-81053334eacb 1 Other Other +79f2d074-c479-47f3-b0ad-d9811d1aa3c6 1 Other Other +79f2de07-dd6c-4e8f-b163-4ac9c5ea4d9a 1 Other Other +79f2f102-72d0-402a-9b84-1465aee37fbe 1 Other Other +79f38b8b-155b-427c-a4c1-1ea82f7d1235 1 Other Other +79f3b0f6-6c79-4319-9b8c-8b10f32b926e 1 Other Other +79f427f7-8f9b-4506-89ca-2c98fbb996fa 1 Other Other +79f43322-d252-42f1-8412-b71dab3701d5 1 Other Other +79f4a060-e969-472f-b83f-34cfb994d41e 1 Other Other +79f4baf9-ced5-4249-8178-c8fe23335eaf 1 Other Other +79f4c448-bb10-41f4-970e-b71acb1037fa 1 Other Other +79f4f65e-c399-40c4-a933-f8047b93be8a 1 Other Other +79f54822-6f81-4a28-924c-5ab1c3f21c12 1 Other Other +79f55b92-0692-446c-8731-2a6a4ec23f9f 1 Other Other +79f592b7-cd94-4b83-82e0-e923169cb08d 1 \N Other +79f593e0-7441-4446-aadd-953680b32627 1 Other Other +79f5a158-ba4e-4fb5-97da-1b5e730c3847 1 Other Other +79f5c081-7454-430e-b5ed-2957453f9d76 1 Other Other +79f5d6a4-00ea-4e8b-abd0-6fb5fe41e22f 1 Other Other +79f5ee97-f11f-4f7f-a6b5-2c8847f394d4 1 Other Other +79f5fb08-328b-4147-8491-260289d16e0f 1 Other Other +79f60b89-d891-4020-8795-c074627107d5 1 Other Other +79f664bc-2309-4c26-9dfe-e99ba7d386f8 1 Other Other +79f68300-774c-4a6e-a10f-a022e35b3efe 1 Other Other +79f6d2d3-2bcb-44be-ac7e-b6a56f73fcdc 1 Other Other +79f6dc2c-e225-4f67-8ffa-3e67b4b76bfe 1 Other Other +79f70a32-5d63-4bae-a518-0d0bca57154e 1 Other Other +79f71bfd-177f-406c-b635-04630190463a 1 Other Other +79f74d5d-ed09-48e8-afe2-3049d5e2dbf1 1 Other Other +79f7cfdb-4d71-45ab-9cf1-0f611ad49f47 1 Other Other +79f7d25b-ff4b-4151-9241-01e6b6dc8576 1 Other Other +79f7fae9-8cbe-4532-9b7d-be5c1a175586 1 Other Other +79f800c4-c03b-4a3f-93b2-ed313ed381c6 1 Other Other +79f807a2-03fb-49ee-a7ac-b1d80e1b65fe 1 Other Other +79f82d3b-89f3-4c84-8c2a-1f54986750a9 1 Other Other +79f8a3f1-ccfc-4833-99f1-f1a9e779158f 1 \N Other +79f8bbb9-8483-44ff-8a70-e5acc0ffc098 1 James Other +79f92a01-0c9d-41d4-8478-0333602d8634 1 Other Other +79f92f9b-0959-4185-bc9e-4b07d377cd20 1 Other Other +79f9731e-8403-482d-a9c4-2ffffb79133e 1 Other Other +79f97f22-72ed-4654-b2c4-ee5d48c7d565 1 Other Other +79f9b140-0afc-4932-a2e0-742a42961be5 1 Other Other +79fa551c-6aa2-4064-8745-9c3986057625 1 Other Other +79fa77bb-b8f1-457f-8063-e5014acf67f0 1 Other Other +79fa8854-203d-4fa3-a4e3-03ebe4e87574 1 Other Other +79faa0e8-82d5-4fbb-bf6f-3ac77d78d60a 1 Other Other +79fabbe9-503f-45da-ab84-45634fb4bc9c 1 Other Other +79faca2c-ba59-4d92-bfbe-8651163cd546 1 Other Other +79fb191c-8693-4693-a420-e9d4886f9c5f 1 Other Other +79fb536e-9c23-4f12-a555-8ea78e11ed1a 1 Other Other +79fc483f-5223-4d5e-8420-e141ba78e0fc 1 Other Other +79fc4a36-8a00-4d53-9abe-4757c09662b8 1 Other Other +79fc5368-0457-4dd7-8ab0-40ab8bd1bbb6 1 Other Other +79fc5538-fde2-46ca-ac9f-81743f95e893 1 Other Other +79fc5c00-3228-42dd-8f9a-e1e48dc32aea 1 Other Other +79fc5c9a-75f8-40d6-af40-dc1129e405ac 1 Other Other +79fc75e3-deac-43f4-9a97-e12bb07f4fe9 1 Other Other +79fc7f55-4087-4b43-8504-aa40eaccc0d7 1 Other Other +79fcd913-24bc-45e3-90d0-b6f45028b63d 1 \N Other +79fced3c-d4c0-476d-9593-a788b020f80b 1 Other Other +79fcf6e0-1697-4ebd-883f-b3885e18b01d 1 Other Other +79fd4006-50b5-4c06-8c9c-d38d5be2efe8 1 Other Other +79fd5b5c-38e1-4d41-8f21-976af565d3b7 1 Other Other +79fd6d46-1781-4b43-b894-997c2d484896 1 Other Other +79fd8221-d9be-4ae1-be6d-31e8d1781829 1 Other Other +79fd83ad-c70b-4408-a295-9e9cabc86eaa 1 Other Other +79fdb00e-0701-494c-89cc-fce758b64064 1 Other Other +79fdefc7-bd9e-4963-90e8-e125a0d03211 1 Other Other +79fe43b1-3f05-488a-abbf-498c3bcdaaed 1 Other Other +79fe5448-8ff9-4480-bc7f-c130871d0428 1 Other Other +79fe6f14-06b0-4703-80eb-a6538f52a711 1 Other Other +79febf56-943f-409e-8d03-0ce05e4ae686 1 Other Other +79fece08-bebd-4e73-912a-dd8f8989295d 1 Other Other +79fef567-1950-444b-a002-8dcead115b10 1 Other Other +79fef87d-17f3-4b25-8c7f-ef62fb656a96 1 Other Other +79ff714b-513d-4c83-91ea-4643f04bf03c 1 Other Other +79ff7bb7-a205-4199-878f-c0b04e612cd7 1 Other Other +79ff8022-6aec-4055-a272-15bb861e8d71 1 Other Other +79ffe7af-a41a-4f03-961c-5ae86b193f22 1 Other Other +79fffb0e-7cc0-455e-9220-69557b281876 1 Other Other +7a000139-df6d-441e-9d94-3ba8c217dbab 1 Other Other +7a003123-9fa2-405b-a305-f4d7d84a5e38 1 Other Other +7a00372a-f6a6-4e0d-ab02-f235a531bb07 1 Other Other +7a003d3f-c1d4-4f28-97fb-142a1c8d3a1f 1 Other Other +7a0041c5-98aa-48ed-8a81-b67e8135e545 1 Other Other +7a0044d5-8b6a-4725-b235-0746911aeb1e 1 Other Other +7a008b30-68e6-448c-90e0-c124bfcb6560 1 \N Other +7a01015a-2b32-11e8-853c-fa163e8624cc 1 \N Other +7a015f65-0763-40d5-8fb4-5c232a66afbf 1 Other Other +7a01cdc4-10f9-4a32-a507-bf03df9e66e0 1 Other Other +7a01e005-aaca-40a2-97ae-e30960dcb665 1 Other Other +7a01e4ea-8112-46cf-aa62-cecf977bbe21 1 Other Other +7a01f3c3-13c6-481b-aa43-b86772f44f1f 1 Other Other +7a021a94-f0ef-4255-9dd0-20fdad33a02f 1 Other Other +7a02271e-5c97-4b14-b2e3-e6633947aa87 1 Other Other +7a029f04-a855-4c21-a75f-b91762207b3d 1 Other Other +7a03c143-6a3f-477e-af6c-1e91dcd0e850 1 Other Other +7a040206-55aa-4838-b534-576d9b870cf7 1 Other Other +7a04179c-53a7-4596-88fd-c96e246af43a 1 Other Other +7a044dbd-7958-4723-943e-53b50fa1a0bc 1 Other Other +7a0459cf-dde5-42f1-ba96-eba0103f2cbe 1 Other Other +7a04fd1d-6bc5-43c0-97ce-d9119febe0a7 1 Other Other +7a05437f-b1ba-4c63-920c-43769adcea31 1 Other Other +7a057ef2-3525-41a1-bc18-3d6bf0af7501 1 Other Other +7a0580d0-a25e-4f86-bdfe-dc1290ddd6bf 1 Other Other +7a05df7d-3389-4e2d-8ad2-0cc2b28e551d 1 Other Other +7a0601a6-c265-49ac-99d6-e3729d97fbfe 1 Other Other +7a061986-391f-450e-9ea5-4438bfbaeab2 1 Other Other +7a062fbf-e74d-4788-a24f-272e8792e5b6 1 Other Other +7a066795-11a9-4fbe-acd0-2c15fbeb707f 1 Other Other +7a066e99-92ea-4fe6-b39a-f37ef4b80a26 1 Other Other +7a068753-a76e-4518-adf7-ca720cacbeb0 1 Other Other +7a068f23-51fe-4422-a71f-6b3f3c97d1c6 1 Other Other +7a07031b-3a51-492f-91f1-920ac723663f 1 Other Other +7a074b64-11df-433e-bb6d-e8b3d6247204 1 Other Other +7a07620e-1e9e-473a-b25e-88f7401bb6f4 1 Other Other +7a0789d6-6c95-478b-b134-50755bd3253c 1 Other Other +7a0795b9-7eb4-4f17-8719-488460d1bf2f 1 Other Other +7a079d73-f8b7-41c1-84f9-0fb74b7b3aa4 1 \N Other +7a081bb0-9073-45c4-8818-1a9626c8107d 1 Other Other +7a085063-b24f-451e-848e-65b4d5cb9911 1 Other Other +7a085291-0c70-4039-957f-4a884874abe1 1 Other Other +7a085710-4d6c-4774-9146-67d20e8e0e2c 1 Other Other +7a087b06-d992-4e55-b533-edba9d9134e3 1 Other Other +7a08f526-d4b9-4a9e-84ea-adc4e3c31b05 1 Other Other +7a0910e1-c818-4a60-8ad2-5ebecbc1c6d9 1 Other Other +7a09c320-1904-45e9-8101-b2e45877c1d7 1 Other Other +7a09ecf7-7ef0-4547-9cbc-0679e2ffebf0 1 Other Other +7a0a0ef6-ca62-4dcb-9b19-3f7a2347ce0f 1 Other Other +7a0a634a-16fe-4319-bc42-d943f6055cb8 1 Other Other +7a0a9dcb-cab3-49be-95c2-961b9d6f1f1f 1 Other Other +7a0ac5ec-5f19-4577-a2e2-0dc8944ca445 1 Other Other +7a0af1ce-f6e5-471e-8549-4e711bb676e8 1 Other Other +7a0bee1b-467b-49e4-8828-c38873fc2653 1 Other Other +7a0c11f5-4bb7-40a1-9177-60d088ff3234 1 Other Other +7a0c2264-68ed-42bf-879b-2b4c1cff72ab 1 Other Other +7a0c2665-2ec2-4ab3-8dc7-4d420263e5e8 1 Other Other +7a0c28fc-c63e-4c56-b954-4b4f096d9a80 1 Other Other +7a0c600e-a62f-40db-a532-17c3310b3e78 1 Other Other +7a0cb0ed-877d-4a7e-a531-39913caae749 1 Other Other +7a0cb4a0-09a7-4a43-ae95-69624db0864f 1 Other Other +7a0cec3e-9a6c-4c95-8a26-64a9bb427267 1 Other Other +7a0cf4ac-f0bd-4005-8946-85dce6179a64 1 Other Other +7a0d08f1-7572-4f0b-88b3-67642381f3dd 1 Other Other +7a0d0efa-cc10-493d-b5e7-1f671053efca 1 Other Other +7a0d1a27-6bc5-4a3e-8cac-49e4e72ec16d 1 Other Other +7a0d36b1-b0f3-4f2e-a4fa-43b8f03c4c64 1 Other Other +7a0d853d-ab5b-4296-b0f8-a987723e0197 1 Other Other +7a0d98ca-2bb5-4564-af38-971f865a8e57 1 Other Other +7a0d9b13-1313-4fe7-a972-701d298a6a14 1 Other Other +7a0da7ef-8ba3-4f0f-b18f-7e1646961848 1 Other Other +7a0db71e-7521-405c-884b-c2564ed40e44 1 Other Other +7a0defeb-28ee-4043-a754-9f3f6c806017 1 Other Other +7a0e0b8d-c4f7-4a5e-b588-07d08170a1d8 1 Other Other +7a0e253e-9445-4776-bb57-d01ab717e75f 1 Other Other +7a0e53b7-45d7-434e-9f73-dcddfb1fbffd 1 Other Other +7a0e6afc-c30f-4bea-9501-38dc300d1347 1 Other Other +7a0e9d42-74f0-40bc-8738-4360492daa12 1 Other Other +7a0eaf09-24e8-462f-a057-9cba261659f2 1 Other Other +7a0edd90-207a-4ffe-ad7f-d60948da3fd1 1 Other Other +7a0ee017-8e4c-411f-9e33-8b377719c94d 1 Other Other +7a0ee074-8416-43cc-b5a1-0f9db5bf2ed9 1 Other Other +7a0ef1a7-1fe2-4cf0-b26b-f24125117bcc 1 Other Other +7a0f3412-d26f-4b12-8089-e30f91a45c2b 1 Other Other +7a0fb683-5a9f-49bb-8af5-a27332928543 1 Other Other +7a0fc05b-26f5-4478-bc7f-d8b8b2237da9 1 Other Other +7a0fcf2a-fd09-432f-9fd7-07d7eedc151a 1 Other Other +7a0fd794-6187-437a-a7f8-facc3cd38f49 1 Other Other +7a0fd81e-f9a9-47c9-a32c-cf6007c192f8 1 James Other +7a1025ce-7f2b-4e0c-969a-9cf487827f0f 1 Other Other +7a105dc4-1f0f-43ff-81d6-559b8e7a9c66 1 Other Other +7a109158-e2a8-4af4-9890-20b872fde5df 1 Other Other +7a10e9fd-b9da-4fec-a293-b4a9d19c7530 1 Other Other +7a11244b-f3ec-4a81-b054-4ad31fb44e1c 1 Other Other +7a11b10d-06f0-4178-a99e-70a257f071a4 1 Other Other +7a11bdb2-8f04-4724-aaa9-473af5857ff6 1 Other Other +7a11e9ff-35f6-47fd-bf0b-257f98b7f3c1 1 Other Other +7a121be6-4b72-4e5f-af4b-b8b892065056 1 Other Other +7a1257af-d03d-4930-afc0-f2dea46f068b 1 Other Other +7a12640d-2e69-40e1-bc06-b39dbcc12b1b 1 \N Other +7a1285a0-a295-45ca-bd6a-59396b62ae4f 1 Other Other +7a12ddbe-9f78-4efc-9739-46bd508efd75 1 Other Other +7a12e81e-567a-47ef-8503-c45dc2d80d54 1 Other Other +7a1322de-f8a0-41a8-b331-e52290d3b057 1 Other Other +7a1336ea-8abb-47ab-864e-376c14643f27 1 Other Other +7a137b94-c466-4dbc-bddf-bcc8350e77a1 1 Other Other +7a13ade4-ba3c-48fd-8d0d-37f9927d54e4 1 Other Other +7a13b686-43db-40f1-a17d-5ba2262bbec3 1 Other Other +7a1459ec-c9ee-41e2-b710-eb93a2ca7c1e 1 Other Other +7a1470eb-aba9-4497-a84d-d074b485542e 1 Other Other +7a14c90e-09ea-4bb6-9ad2-5111e095fef8 1 Other Other +7a14d106-0fb1-4c03-8284-8bc5df0857b8 1 Other Other +7a14e569-4c93-4343-8472-36e6b4915560 1 Other Other +7a14f6b0-f9f7-40b0-b7e6-c8fb7077297e 1 James Other +7a156ec2-8892-448b-b804-e8c62b78fe21 1 Other Other +7a159a40-e3c4-40e0-89c5-7a8da90fa34a 1 Other Other +7a15e0a1-b051-4d02-8d96-9ccc4c10456e 1 \N Other +7a1604ca-df08-4126-8d36-024de6a2eeef 1 Other Other +7a16761b-8919-4265-8952-b851b2713503 1 Other Other +7a16a2ae-1a71-4929-acb7-26917fd4593a 1 Other Other +7a16d9f0-f5e9-4aba-808a-43ead83db28d 1 Other Other +7a16e3f5-60a2-4a01-bb9e-9c27019fcb46 1 Other Other +7a16f53b-b708-42d4-8893-9f5f5b9d8098 1 Other Other +7a16fde0-c898-4bd0-ba77-fbc35686cead 1 Other Other +7a17130a-07fc-410a-94f4-66519a24a1f5 1 Other Other +7a171a6a-83bc-4c83-a881-1faa173b5663 1 Other Other +7a177507-5020-4ad2-aacf-db9af6b5c9f1 1 Other Other +7a17a810-4fe6-4883-9fe7-9345652a5d4c 1 \N Other +7a17abd1-eb57-41ef-929a-62962c22bb40 1 Other Other +7a17ac36-8652-4e46-980d-c77e6219a93b 1 Other Other +7a17c134-9fd1-4a51-97f4-b19cde229259 1 Other Other +7a17c2e1-5b11-4853-9ae5-0897492f0807 1 Other Other +7a17de1d-2c0b-4090-8eae-54591028ced6 1 Other Other +7a17ebcc-8a39-4493-a642-426b4767a45e 1 Other Other +7a1808ab-ad56-4818-9e18-6f8c109968d3 1 Other Other +7a183260-94b1-499c-8cfe-4adb2f87f96c 1 Other Other +7a185c48-0534-4baf-b7d0-bbd312ba8f0f 1 Other Other +7a18a59b-4eb8-4cc8-bdc0-44357758d120 1 Other Other +7a18c31d-7526-4aae-9b03-570a232d5551 1 Other Other +7a18e54b-9471-4ba5-9aba-ccda7bbd3d1e 1 Other Other +7a193fc2-b139-4dac-a11d-8b19dde1fcf2 1 Other Other +7a194049-03b4-4f8a-bd1a-0f17e05efc8e 1 Other Other +7a1957b8-e0f6-4ad8-aa1e-db7e8f7c5f1d 1 Other Other +7a19593c-6acb-4b91-8d06-0cc30137b051 1 Other Other +7a19e3fb-8031-4c4a-98dc-61af25d71b20 1 Other Other +7a19fab8-84f1-4461-a1b3-8cef0497858b 1 Other Other +7a1a3d5f-b1a9-4b0f-a964-8dc7a662ed9e 1 Other Other +7a1a4a90-8792-4a90-8a37-89a9effd76ed 1 Other Other +7a1a75c8-9efd-4a81-a153-b3558f245fe7 1 Other Other +7a1aa780-4162-4efd-80da-419e6b22e204 1 Other Other +7a1b71f8-09c0-4c1e-9dd7-82cc5ae06297 1 Other Other +7a1bc8f8-9511-43e4-bdf8-a94e247528e5 1 Other Other +7a1bd0cd-5d17-4eb4-81d4-5be390535163 1 Other Other +7a1c0aac-5cbe-4ae2-a025-b2362ac00ff9 1 Other Other +7a1c2d87-cb6c-4992-b949-e0a4ec1a0418 1 Other Other +7a1c692f-bec2-42ab-ace2-a0a3d58a97ba 1 Other Other +7a1c96d4-93e8-42a1-8b82-1b2d4830ab8b 1 Other Other +7a1caec0-baa8-48dc-a645-65eb6821ffcb 1 Other Other +7a1cce1d-a8b2-42d7-9f01-e460f81b8d93 1 Other Other +7a1d0b39-528a-459d-abb2-a5528c69ab2c 1 Other Other +7a1d2248-8385-444a-97d0-19ae1307f03e 1 Other Other +7a1d4170-ec55-4fab-82d8-fa4d6c77ddfc 1 Other Other +7a1d4e4a-1b76-4796-beca-97f458c7cfbd 1 Other Other +7a1d627b-866a-4033-9897-ccef950aafc5 1 Other Other +7a1d666c-f6c9-4fdc-adc8-eb06c0f79c59 1 Other Other +7a1dd5b8-4e22-4527-a216-e36e393a0392 1 Other Other +7a1e3798-ea05-4c35-969b-dd8066534304 1 James Other +7a1e4073-4bad-4c99-9dbc-198797419d55 1 Other Other +7a1e7701-6923-4e81-9784-dc5d7a94db2c 1 Other Other +7a1eb1b6-3553-4f89-903d-cbd08eb837c0 1 Other Other +7a1ecfdd-3c08-4998-b315-a2def273268c 1 Other Other +7a1f6386-7a9d-4a7b-b025-384498027356 1 Other Other +7a1ffc3f-e938-48d4-9f83-78e22f42ad6b 1 Other Other +7a20275f-7e21-4cce-92bb-ac0b351f7f35 1 Other Other +7a208816-f17c-41a7-9f05-becdeff8a9e4 1 Other Other +7a20b36c-c316-4f25-b569-b5043d50f9db 1 Other Other +7a215e91-2a27-4f68-a08a-dfd3c9d613a2 1 Other Other +7a219ce3-9af7-49de-bc80-485e26d1b75b 1 Other Other +7a21cb2a-22b2-4f7a-b799-8de975fcd196 1 Other Other +7a21cd6b-8831-4e4d-b2fb-f149cde14488 1 Other Other +7a21e313-6f7f-4d26-8c99-3a3ce3519f8c 1 Other Other +7a2210fc-1689-4838-88d5-5ade84ff8649 1 Other Other +7a223724-57f1-4c46-8427-438ecfe4cf5d 1 Other Other +7a224fdc-065d-4b73-a2ea-4124ee3e171f 1 Other Other +7a225699-49fe-4b83-9102-d03bc03eea98 1 Other Other +7a2291c8-902a-45af-a579-c7bf60e5b96b 1 Other Other +7a22937d-e3ae-403d-a26d-a21353196335 1 Other Other +7a22b392-489e-4158-b8a9-dac4a4e19023 1 Other Other +7a22c86a-d984-44d0-b73d-9856dd0df3b8 1 Other Other +7a22dde2-1b9e-46b6-a2e2-e4b54cbbd2fc 1 Other Other +7a22eccc-3596-4464-9817-0fbc67a7f97e 1 Other Other +7a233532-06a7-4ab9-9941-2cc05194589c 1 Other Other +7a233db8-3214-40ce-bf96-b2aaec1c9bcd 1 \N Other +7a239277-ee2b-4e86-9e50-e875fecd7173 1 Other Other +7a23c0b6-2c4d-4f1a-855b-e2230b2ca59d 1 Other Other +7a240274-82b4-4f01-b882-2167dfd3dafd 1 Other Other +7a2413a7-efc2-4754-b315-874c780bfc06 1 James Other +7a243403-2e79-483b-b50f-2308c657d331 1 Other Other +7a243e3a-bbd5-4278-b6f1-abacf07ab36f 1 Other Other +7a24a342-b479-4c51-bb36-d865df129f64 1 Other Other +7a256ac7-eb64-4fab-90c9-198e7baba8af 1 Other Other +7a256d87-234d-467d-88cc-e30f3d8fa80a 1 Other Other +7a257011-dacd-4b35-922a-8a5bf0261f0f 1 Other Other +7a257918-9e50-4bc5-b420-100fbd3d9ce2 1 Other Other +7a25aaf6-c51a-41ef-8424-bc4114730a45 1 Other Other +7a25c41e-6fce-49e8-9353-c17a36262ac8 1 \N Other +7a2616ef-452e-4b97-a926-f66da667f59c 1 \N Other +7a2655ad-8d33-40b9-bfb4-b5b0b5b5101d 1 Other Other +7a268255-fb80-46a6-a3b7-4cf1f51b3ff1 1 Other Other +7a268f7d-672f-4092-a4e0-efb951e5975a 1 Other Other +7a26a635-ba34-4305-96d3-e4bb6898c839 1 Other Other +7a26ecec-3ae0-4700-918f-24620f99307c 1 \N Other +7a2711a3-3824-4a18-ba91-c1d9257dcc63 1 Other Other +7a2719f7-135f-45a9-ab35-c01ca1e5175d 1 Other Other +7a271f02-e6ca-4025-b06b-236be077cdec 1 James Other +7a2749a4-2890-4fb0-b611-e22859c098d7 1 Other Other +7a275f51-8e12-4602-ba80-5bae5c9df641 1 Other Other +7a2763dc-42c8-439a-b0ae-ada9dc7831e3 1 Other Other +7a277015-b1c9-4b22-b86f-15791538ebb4 1 Other Other +7a278622-173d-4a4f-8902-c4b457150bc3 1 Other Other +7a27e5c3-8047-48e9-bc59-e1c9549f3ccf 1 Other Other +7a27ef41-4811-488f-891c-22ae61aee440 1 Other Other +7a280214-cc9a-418c-b0f8-65afc35b9009 1 Other Other +7a281922-90f9-48a5-a3a4-f53d64751a88 1 \N Other +7a282f9d-b01b-4cb9-9caa-f0f797a1c358 1 Other Other +7a285ae2-4b56-418c-8f68-27ff4c3afe77 1 Other Other +7a28a455-fd79-4817-8d7b-c95a2f7b47b6 1 Other Other +7a28a995-a5cb-4df3-88e5-ae701d2355af 1 James Other +7a28ce44-e36b-4cc2-9df1-25a8f78f169f 1 Other Other +7a28e69a-5467-4d39-98be-70d3220c2a66 1 Other Other +7a293424-7744-45ba-86fa-cf037535b754 1 Other Other +7a294f46-b048-481e-b60f-f357e56d9061 1 \N Other +7a29631e-ab0d-4720-ba34-5c6de78f0a28 1 Other Other +7a29ba54-f662-4bd4-b9d4-3e2f1d407174 1 Other Other +7a29d732-7946-40e1-9e4a-1ead74d10625 1 \N Other +7a29efce-ec49-4d00-8b26-a0b7ec8fe15e 1 Other Other +7a2a176b-377f-4caa-8f61-dcb496124971 1 Other Other +7a2a2026-bfba-41bd-b06d-e2328e19fdee 1 Other Other +7a2a3379-687c-435d-99af-07c23973dbab 1 Other Other +7a2a51b6-6098-4b3e-811f-976a500b6492 1 Other Other +7a2a5372-7d5f-475d-9581-d47da9ee7859 1 Other Other +7a2a94e3-8ea0-41e1-bf19-f1908dd3ce15 1 Other Other +7a2ac04b-b2da-4cd4-88e7-237d58cdeabc 1 Other Other +7a2ad36c-e070-4bc1-b331-12bd5905a0b8 1 Other Other +7a2b22c2-4cce-4593-9a17-7fa52feca274 1 \N Other +7a2b5b48-d870-4276-bb81-63c40efe5ae8 1 Other Other +7a2bfe4d-7b33-4579-b2e1-5e34ad256915 1 Other Other +7a2c0297-5087-45c2-bcb2-bb96f53e6fcd 1 Other Other +7a2c572e-1b05-4209-91df-1f6c99d03bb6 1 Other Other +7a2cb37e-9cb3-412f-9e9a-46bd88208895 1 Other Other +7a2cfb3e-c547-4098-89af-85c077c046e3 1 Other Other +7a2d0200-927d-4726-b28f-6494a2028ce6 1 Other Other +7a2d997d-a499-4c73-8b7d-156812320359 1 Other Other +7a2e55f3-a631-4866-87f2-5d089b52077f 1 Other Other +7a2e5799-d656-4df8-b5a8-9c35c0b2aa08 1 Other Other +7a2eb098-973b-4a19-b5ae-ad57dbdfb16f 1 Other Other +7a2ec2dd-1a52-403b-8a06-f2b0e1214a04 1 Other Other +7a2ece30-093f-4441-a51f-997e9e4d396c 1 Other Other +7a2f9266-389c-43f8-b712-009cc4473b6e 1 Other Other +7a30054f-a934-4fcc-8325-bfe4ccc3f56a 1 Other Other +7a302a23-849a-4d55-8cf1-01f1e0583621 1 Other Other +7a3034d6-49ef-40f6-aa10-b55d3deba720 1 Other Other +7a306b84-2883-4b43-bf9d-addb35240052 1 Other Other +7a3077de-367b-44ca-bb4b-128da6ebda86 1 Other Other +7a3092cc-5fdc-4e3a-8194-16262a08c1d0 1 Other Other +7a30d0ed-a1e2-4b7f-8662-acf0698c7f4a 1 Other Other +7a30da5e-3dd9-4f74-ab9a-588e542081d4 1 Other Other +7a30fd1b-f1c5-4c98-82ad-de7dc59fe614 1 Other Other +7a3146c6-4b97-488b-bca0-5e18e04c1238 1 Other Other +7a315c45-bfba-43cf-85a1-11bc10680b8a 1 Other Other +7a31a108-4ef6-406a-8c59-d3ea8b090449 1 Other Other +7a31c65a-dc0a-48b2-9fbf-da2bde7316a4 1 Other Other +7a322e3c-53aa-4275-a784-4caa4ae0427f 1 Other Other +7a32ea71-8677-4367-ae46-e61b12769ddd 1 Other Other +7a334b29-5e10-473e-b98a-29d7be529f14 1 Other Other +7a33515b-4e02-4f2b-887e-3214cc3df908 1 Other Other +7a337471-d475-4b5c-9939-7c3e305c6680 1 Other Other +7a338b55-46dc-40f2-ad34-4033e9d7fa71 1 Other Other +7a3398dd-10cb-43c3-bbf4-efde1f459ecb 1 Other Other +7a33a9ed-bd56-4f6f-aa5b-c3f22e099a71 1 Other Other +7a33c9a2-f636-4173-a294-5d5a4c674f02 1 Other Other +7a33d769-9dfa-4399-914a-660f38bb5597 1 Other Other +7a340a55-c99e-4187-a561-62e8393e0186 1 James Other +7a340c35-6e28-4970-a63a-036065d72ea8 1 Other Other +7a347e64-9e58-4216-aa08-20a1e2422118 1 Other Other +7a34b13f-e79b-49c9-a1b0-9396646be933 1 Other Other +7a34b40e-ef49-4caa-ae6d-03df282c7a0b 1 Other Other +7a34dd7e-df2a-4d9a-b6ea-7027c72f7803 1 Other Other +7a34e63c-2be9-4388-b670-fd4bda2fd5cd 1 Other Other +7a359665-2400-40a4-9318-b7c6ceff3c0d 1 Other Other +7a35bac0-1bfc-4b03-85db-f6c15a94d4fe 1 Other Other +7a35ec62-4a85-44ac-84ef-3f1f272bbb5f 1 Other Other +7a35f5a2-4b18-4aac-8d42-abb9fe39a9eb 1 Other Other +7a36458d-04ec-4136-8b80-563da8eba5a0 1 Other Other +7a36611a-ecba-4af2-82b0-edcc29d0badf 1 Other Other +7a366d07-f5f9-4f29-8607-bb5956226278 1 Other Other +7a36ada4-4c02-4a16-98be-644d2c6c013d 1 Other Other +7a36cc23-8cc5-4fcc-a619-2dad5a460247 1 Other Other +7a36e8c9-09d9-4a62-b124-b223533ab2a0 1 Other Other +7a3711de-1566-4d51-a189-3cc1c541c9dc 1 Other Other +7a374a7b-bf83-436f-ad0a-19cab82c0250 1 Other Other +7a375edc-8ea4-4a9e-8193-004d41614e95 1 James Other +7a376689-6c25-4a2c-b9ca-a68828e201d1 1 Other Other +7a37bc95-d1bb-47b7-8ca9-f139cdf53d14 1 Other Other +7a384fc8-670a-42a5-98df-13391abeb70b 1 James Other +7a387c83-9a28-4b61-ba04-76518fe39dc5 1 Other Other +7a389a49-da95-44a5-aac3-7d1d6c1ae48c 1 James Other +7a38b144-9d80-4b4e-9dd6-f76a46219076 1 Other Other +7a38c2e4-1373-41cd-ac0f-3ff822fbe042 1 Other Other +7a390401-d7ae-469a-9db4-c0c7a54cc81f 1 Other Other +7a393147-afff-47ca-a184-41da2ebac449 1 Other Other +7a39520f-0d15-4ef9-85bb-526de00d3c80 1 Other Other +7a3960c2-e37a-439f-9cf5-bfec4870495e 1 Other Other +7a3976b5-0e07-414b-8117-8219cc51795b 1 \N Other +7a398ee7-dadb-41bc-a1a5-6710a04d2979 1 Other Other +7a39983f-995a-4c17-92c4-127a054a3de1 1 Other Other +7a39d02c-354b-4da0-a2da-ea8923d60154 1 Other Other +7a39ff9d-d8ea-4b1a-9ff2-f7cd62986c92 1 Other Other +7a3a4eb1-5f63-4003-a74b-33e2596f3be4 1 Other Other +7a3a982f-dc46-4f88-bb3d-4fd08326b8fa 1 Other Other +7a3b18d1-14c3-4cc4-a935-d7cb9161ebc5 1 Other Other +7a3b2889-aa7b-4597-b11d-405ed18e3a24 1 Other Other +7a3b62bb-a994-4abe-8fb9-0fee29667f70 1 \N Other +7a3b76b7-d960-44cd-a0e4-3e7fec6795fc 1 Other Other +7a3baa83-4ca9-4999-96c5-73139a0ccf1d 1 Other Other +7a3bbd2d-d09a-4eda-a8ca-b1f7187d7b18 1 Other Other +7a3bc7c7-0c80-4eca-ac3c-229c9ce252cf 1 Other Other +7a3be308-2a5c-4374-9d6a-6e69cdbbc9b0 1 Other Other +7a3c3238-9199-492a-a9a3-5029533bf3cd 1 Other Other +7a3c3f32-d043-424f-9a71-109ff612f585 1 Other Other +7a3c538c-10fa-4968-8c08-3f6c1578e606 1 Other Other +7a3cedca-22ba-44c8-8023-d1d0bb470f8d 1 Other Other +7a3d22bb-b066-430e-a5d6-c3835c647ece 1 Other Other +7a3d2d68-ff57-4867-b658-e4278b7be452 1 Other Other +7a3d38fb-304e-4e7e-a6ae-07842b4ba613 1 Other Other +7a3d53f6-a2ac-438e-944c-d220c62cc8a1 1 Other Other +7a3d65ac-9019-4837-80c5-d9d56e3ab0e7 1 Other Other +7a3dd3c3-f3dd-44b1-a407-a9ca5e410c81 1 Other Other +7a3df9fb-0e34-4f49-9b55-3fb6473f3ae7 1 Other Other +7a3dfff1-493a-4f7a-8014-cc4ff094ddd8 1 Other Other +7a3e5444-53a2-4a7f-b3d2-1c16302cea34 1 Other Other +7a3f37e7-54da-420c-ba78-72fba7bf4aea 1 Other Other +7a3f6140-bdd2-490c-a3d4-d8ddb37c86c0 1 Other Other +7a3f93e6-c75b-4c9a-a0be-88517741e3f1 1 Other Other +7a3fb796-1489-4df1-9b67-ca3e7b2a7269 1 Other Other +7a406098-99be-484c-b36c-ea5f35582787 1 Other Other +7a4064bb-a4c9-4d4e-896c-6f367cfa363d 1 Other Other +7a408623-167a-475d-b012-9ce047c00d69 1 Other Other +7a408d73-b12d-478f-ac04-33eaa3b51b34 1 \N Other +7a40b0eb-b4d6-4153-9609-4fb148a0559a 1 Other Other +7a40b54b-8718-4e34-8486-7d84de7175e3 1 Other Other +7a40cbf3-970c-4c5d-8ae4-2ae49346c072 1 Other Other +7a40de6e-477a-42ba-8ab4-a72382910559 1 Other Other +7a40e467-8261-4a0b-b32d-33b14f094f4b 1 Other Other +7a4158cd-dcb8-46d5-aaf0-2e333bb882de 1 Other Other +7a418bdd-a819-4965-b0c6-93a0a253dfb3 1 Other Other +7a419b5c-0df6-4727-9687-bb9a4ceea189 1 Other Other +7a41d85b-b011-42a8-9963-2087495b877c 1 Other Other +7a41dfab-bd71-464b-8dd9-2a4cd99bf259 1 \N Other +7a420490-b67d-4326-9c34-4b2ba5fcde97 1 Other Other +7a426852-7deb-47b2-9873-1d5c411f1c4c 1 Other Other +7a43176b-dec7-4cca-8f86-2738542dc162 1 \N Other +7a4317b8-83a3-404c-8e2d-098300cc0c09 1 Other Other +7a438f09-d184-4db7-a54d-28ac1f202523 1 Other Other +7a440e7a-bdbd-4a7a-8b95-60fe2f9c7a91 1 Other Other +7a4420a7-8b75-44f8-9034-f3cfbbe0ff99 1 James Other +7a443326-4a8d-4fab-a065-839cd47bec28 1 Other Other +7a443c63-4934-4110-9826-e8d0ef2c5799 1 Other Other +7a444211-3bf7-43fb-a034-80c0f35d18a0 1 Other Other +7a447f48-d05b-45ba-a20f-40e2057248d2 1 Other Other +7a448af8-cc74-424c-bdd0-711921d7b77c 1 Other Other +7a44a088-5c7e-434b-a569-fee7617be152 1 Other Other +7a450c49-60cc-4218-b4e2-c98f2ca186ca 1 Other Other +7a4519ff-3abc-4544-a31c-e1ec9e4a9709 1 Other Other +7a45202f-ab30-41bb-90c6-8c237d1d10f3 1 Other Other +7a456b97-f592-4db4-92e9-b28d36260369 1 Other Other +7a458073-4a2e-452f-b383-1a41dae4f0da 1 Other Other +7a460b5e-8669-4f4a-9925-516c5da7224b 1 Other Other +7a460b8f-ee94-4027-a30c-c31369d94656 1 James Other +7a462bb2-3fd5-47fa-9780-b99771c0e821 1 Other Other +7a4652b4-b1ab-4483-947a-b62c78123ad6 1 Other Other +7a465f81-8b18-4165-8c5c-8e938db95efc 1 Other Other +7a469b60-ae55-415a-b176-7eb6a6d528ee 1 Other Other +7a46aa22-cf23-4ecd-a998-09344cc2ee42 1 Other Other +7a47153a-5e66-4156-8d66-fc775b5b7119 1 Other Other +7a473fd2-4f7c-40e4-bd6a-d2ba97f710c7 1 Other Other +7a47403c-8bcd-48b2-9871-64d98604410b 1 Other Other +7a474b78-83d5-4fca-b1a9-42d35970b622 1 \N Other +7a476854-a0b0-47e2-a400-c32c44ca55ed 1 Other Other +7a477aa3-72b9-4f4a-97f3-9aa2fc8f0d1e 1 Other Other +7a47a722-fd64-489b-b43f-ecf30f093f39 1 Other Other +7a47feb5-1ba1-4813-8fc7-a9b68c5db892 1 Other Other +7a4838ca-8df5-4c69-a6c9-c606cbb35010 1 Other Other +7a485318-7fbd-4793-89f4-97bfa14c7696 1 Other Other +7a486c95-3f1b-4646-a46b-18f51e171555 1 Other Other +7a487321-a33c-42ac-a60c-bea1a2eb47fd 1 Other Other +7a487547-e227-4976-b2d2-f2d83662fb4d 1 Other Other +7a48c345-a838-4d0a-b713-971af8614c5b 1 Other Other +7a48ed30-3758-43b5-8c4e-ef41955f2949 1 Other Other +7a49474f-2445-46af-80c8-9405fde92b91 1 Other Other +7a495441-6e05-441d-a28b-e2bf9b46766d 1 Other Other +7a497d4b-bce0-4732-b32a-9df113ef5b92 1 Other Other +7a49c446-c475-4d06-b560-b0dc8a09a295 1 Other Other +7a49d62c-31e0-47b2-9bbe-2ede189b973b 1 Other Other +7a49ebb0-3d21-4f23-a8bf-68d4846ed38b 1 Other Other +7a4a0af4-98e5-4a76-9235-e77125a574d1 1 Other Other +7a4a0bf0-4a59-4f58-bdb7-b88374cc964a 1 Other Other +7a4a21c7-6a8a-418f-b9d9-b79e6a9fade3 1 Other Other +7a4a5a6d-c4a1-4f76-a0a3-d08dd717c7bd 1 Other Other +7a4afe38-0075-4948-b75d-ad6391d5c137 1 Other Other +7a4b25e3-7afc-4e26-9113-089a9c79eb32 1 Other Other +7a4b27cb-e894-428c-b37b-79b3bf0de8ed 1 Other Other +7a4b3f92-8600-4641-b88a-fae4f1e12ee7 1 Other Other +7a4b9e2c-c217-4132-bf34-bb359b489db6 1 Other Other +7a4bf5bb-6c57-4d4c-b1af-75be44f4af39 1 Other Other +7a4c2f3f-6f0d-44d4-91a7-b7faca238eb0 1 Other Other +7a4d4cb6-554c-4ee1-9af5-d0d2c5ddde2d 1 Other Other +7a4d51db-c734-46b3-b8fe-d75e232d8818 1 Other Other +7a4d7702-ac53-40e9-b12b-c5d53cfd4393 1 Other Other +7a4de17a-3727-4499-9ac1-6415d7ceea7d 1 Other Other +7a4e7b3b-5234-418b-b794-050e810e27e5 1 Other Other +7a4f0559-dae3-4164-b946-51f59be938d4 1 Other Other +7a4f21ee-304c-45bd-b4c6-e7533919c1aa 1 Other Other +7a4f82fb-0d46-4a28-8ae2-33c2ae413014 1 Other Other +7a4f8942-6080-4e34-af7d-3a6f2a0b572c 1 Other Other +7a4fa92a-c28a-44b6-b814-9c2cde8b6650 1 Other Other +7a4fc504-6285-40fd-9363-375cba3c40f2 1 Other Other +7a4ff0aa-5063-4baa-9b1c-6a3d1b98b0df 1 Other Other +7a501354-f1bd-471f-94e0-641aebf49b98 1 Other Other +7a505629-e963-448d-b085-1f862fa3ccc2 1 Other Other +7a5073c0-22dc-48b0-ade0-4142d3d91a58 1 Other Other +7a50973d-77e1-485a-aa37-7ef4323a1d85 1 Other Other +7a50e80b-0b23-4086-b158-582af67703b3 1 Other Other +7a512ea2-9cbb-4ae6-a5b2-3d2873322523 1 Other Other +7a516a58-9625-405c-aa8e-e6c70d6dda96 1 Other Other +7a516d17-acf3-4a1a-9a4a-b8f780200646 1 Other Other +7a51817f-1f50-4ac1-810d-48ec605b6e87 1 Other Other +7a519542-b2d2-4e3f-a412-c127872b5c71 1 Other Other +7a51b6e5-9935-4ff6-8448-36acd1bdd5bc 1 Other Other +7a520512-e3f8-49d4-a5f8-aca8695fd37f 1 Other Other +7a52061b-5278-4fe5-833c-1a24fe3765a5 1 \N Other +7a5257c9-295e-4dfc-8ab0-0d74b3ef566b 1 Other Other +7a5299dc-b892-450a-a69a-b6b4e6a1e762 1 Other Other +7a52b709-b102-4c5b-927f-0994100fa34c 1 Other Other +7a532dd5-0045-4b8b-b90e-0956d10b2690 1 Other Other +7a534025-61a0-4fdf-8231-8a0519d4c022 1 Other Other +7a537671-afff-42a5-a59c-34a9380790b5 1 Other Other +7a53aecf-ec91-4a13-b36f-8fde2609d973 1 Other Other +7a5407ce-32fb-4113-b50c-d60d908f8519 1 Other Other +7a543ecd-df61-4797-afa5-140bfefcfa71 1 Other Other +7a544be9-79cc-418f-b4d3-fb61b35e1687 1 Other Other +7a547b36-1574-406d-a4fe-db94663cfd4f 1 Other Other +7a5480b7-4196-4883-9c33-372ad8fa61cb 1 Other Other +7a54a3c0-09fb-44ed-aad6-c5d1a73c99ed 1 Other Other +7a54c43c-58d3-4eed-b0ed-6092c84947ce 1 Other Other +7a54d65d-c7fc-495a-beb0-bfc36ea45486 1 Other Other +7a54d6f3-c22b-4c5b-9da1-158d91887e6a 1 Other Other +7a54dd46-29bf-48d4-b196-32e425af9044 1 Other Other +7a54fcd0-ac5a-4c4a-8b8d-4d118757cafd 1 Other Other +7a550436-a178-40a0-9c4b-bb782003822a 1 Other Other +7a551685-3205-4aeb-a7e6-fafc99077054 1 Other Other +7a552289-cfb1-45d6-83bb-ce1c0a508e50 1 Other Other +7a552381-b284-47ef-bd82-6037b47de950 1 Other Other +7a55340c-fb65-4692-b2f5-2dc3d8e4f252 1 Other Other +7a553c9d-627a-41c5-b19a-526b4d44cc50 1 Other Other +7a55735e-59bd-4204-bfdb-fdc533952b4d 1 Other Other +7a558536-d7e3-4df0-a6bd-94f515394e21 1 Other Other +7a55e2f4-8adf-4cda-890b-2e61e1673afa 1 Other Other +7a55e665-53ed-45a3-97d8-ece33ad161c7 1 Other Other +7a55f6d3-026c-4535-8701-72f13dd4e741 1 Other Other +7a562fff-8169-4892-ba1e-bfd0a3e5f313 1 Other Other +7a56344a-5d31-4412-9b94-425b8dd7fcc3 1 Other Other +7a56c6a5-fc99-4b42-bc6c-267a463efb4d 1 Other Other +7a56e2d6-638e-438e-8e97-2ec6b6883e27 1 Other Other +7a56f06a-8ca6-4a07-a56f-65bd0cf64deb 1 Other Other +7a571f81-17f8-4bf8-a152-3a7eaceadddb 1 Other Other +7a574b69-146d-49a4-b066-a7010e645cef 1 Other Other +7a575c6f-89ef-47f0-8baf-90430dae8df6 1 Other Other +7a5768bd-5f30-45b0-92f0-93ecb0fe3e89 1 Other Other +7a579eba-d31d-4df6-a318-fc725fc573ec 1 Other Other +7a57ad46-674a-4032-991f-f630c28de894 1 Other Other +7a580610-fc6c-4339-8fcd-d8d6c9399b94 1 Other Other +7a585513-d191-42a0-b2e1-308a2f102ce8 1 \N Other +7a588805-e762-47a2-b8c7-93f9b1665935 1 Other Other +7a58a66b-16ec-4f06-972e-275a306f2eb1 1 Other Other +7a58b515-4924-4efc-bdb5-ede30513b4a8 1 Other Other +7a59b77c-a8cc-4ff1-90e0-bb4ac85f0c27 1 Other Other +7a59bb1e-a8cf-4027-8daa-778a5e9de53c 1 Other Other +7a59c9af-4804-4181-93d2-9c9286aceb0e 1 Other Other +7a5a1c02-4253-40b9-86c4-11cdf1e546ed 1 Other Other +7a5a4473-92cf-44a6-8d87-71dd1342acbb 1 Other Other +7a5a5fcc-aad3-45d6-83d0-840075c70ab7 1 Other Other +7a5a8745-7c75-4543-a95c-c2b205518b92 1 Other Other +7a5a993f-b99f-4d67-bbac-4a3d560b608f 1 Other Other +7a5acf1d-86f4-4bc4-93c7-11e8db90a9ad 1 Other Other +7a5ad999-fb88-4689-bb68-2a301a7cfdb8 1 Other Other +7a5b1566-8616-4d80-92be-6b8b3749b915 1 Other Other +7a5b2f43-98e3-4f5c-a396-ad4623182f16 1 Other Other +7a5b7e14-3dd5-4f5e-b071-554d649576a6 1 Other Other +7a5b7ec7-7b15-410d-813a-4cb60f8dd564 1 Other Other +7a5bd899-d362-4947-a718-6811fa60312c 1 Other Other +7a5bf80e-a5d2-4f96-a3e3-8e797c3047d3 1 Other Other +7a5bf881-fbf0-42fb-b770-c7ea5495b6b8 1 Other Other +7a5bfbb7-6bce-4f3e-90d2-93cd8ecaaba1 1 Other Other +7a5bfcc6-9250-4415-92c2-7a7e6cb19e83 1 Other Other +7a5c093d-617a-4e30-a302-34e068887be6 1 Other Other +7a5c1542-749c-4303-990d-1b3fa2b219d0 1 Other Other +7a5c20a9-c07a-4d45-b684-4db1ef523936 1 Other Other +7a5c2d03-3d31-4fe8-9ccb-70e0639685c4 1 Other Other +7a5c3c90-b1e5-404d-8774-6a9ffa0b2cbf 1 Other Other +7a5c580b-a528-4883-8496-928131d1323f 1 Other Other +7a5c7e4f-d021-4b8a-a5df-da17140b1b00 1 Other Other +7a5cca75-bb2e-4c53-8c0c-db5d349afbdb 1 Other Other +7a5ccb9f-2ba9-4511-bbc9-df3034874c4d 1 Other Other +7a5cccc7-2bf5-4d14-ad51-a6effda4f765 1 Other Other +7a5d45fe-21e1-47ed-a86b-db96f90451f9 1 Other Other +7a5da1b8-2c34-4ecb-8851-b1dae5e23c72 1 Other Other +7a5e0150-1e28-4341-a51a-59f082c78380 1 Other Other +7a5e2c32-5dc6-44e6-b67c-7092e7c54614 1 Other Other +7a5e31d3-0f28-46a0-ad10-e450bb05c2be 1 Other Other +7a5e3929-f646-4cf0-bf00-3d46cf8fdbdf 1 Other Other +7a5eb984-8e97-4c76-b8b1-9700fc0c8757 1 Other Other +7a5ec9d1-32cb-42ae-b118-bac75c530703 1 Other Other +7a5ecada-948e-4033-8c97-b0caca586bf8 1 Other Other +7a5eee5b-df51-49d3-87c3-78ea0d49113f 1 Other Other +7a5f106c-dd5e-4a15-981b-5b6982c3d531 1 Other Other +7a5f51ef-4e0a-4d29-b7da-c3fd711959df 1 Other Other +7a5f582d-b63b-416d-a9e4-60665b6731ee 1 Other Other +7a5fbd9f-2783-4fa0-ad58-4491a569accb 1 Other Other +7a5fc6f4-52c0-4f85-addc-60baf571525b 1 Other Other +7a5fd3a9-2957-47f9-b5ca-6227fd162964 1 Other Other +7a5fdb42-bd5b-42aa-8f5b-0cf7c416fdf3 1 Other Other +7a600f88-6484-43fe-8b08-ff97c05e28a9 1 Other Other +7a60140b-3b5e-4b8a-8070-585f525f2b93 1 Other Other +7a603f8d-d0f5-41c4-9e63-9aa3e315276e 1 Other Other +7a6060c7-0cf2-4600-ad65-1e97fd98df7c 1 Other Other +7a60621f-6757-40c2-96e3-c230e692e09f 1 Other Other +7a60b029-bc5b-45c9-ac70-5c1df21d2402 1 Other Other +7a60eefb-69fa-4d27-b9df-c979b9cbbfe7 1 Other Other +7a612adb-4b5f-4d19-8a2e-f9bc1914de27 1 Other Other +7a612c45-051c-4885-b5c2-f6a07a78d76d 1 Other Other +7a61a039-c2ba-4c23-b351-1513336ce671 1 Other Other +7a61e2be-596c-4f9e-b4d8-1ceed6af4133 1 Other Other +7a624c71-891e-4d07-9f58-30ea8b0152d4 1 Other Other +7a624d1a-140c-4cc6-af3f-e3a2a9217fdd 1 Other Other +7a628beb-0501-4826-8bd3-0a74751ad948 1 Other Other +7a62dae9-702a-4680-a319-20d6ad1793d7 1 Other Other +7a6322e6-8321-4caf-8b2f-2b39fd23af0a 1 Other Other +7a632552-91c4-49d3-a198-b3b7fa96f656 1 Other Other +7a63587f-3194-4284-8328-f52db5456066 1 Other Other +7a635b39-c684-4842-a93f-832bd81670ba 1 Other Other +7a637530-94cb-44ac-9e88-1b5c0b03e610 1 Other Other +7a63f182-4559-42ef-8396-a55065a5c63d 1 Other Other +7a643fc4-7ec4-4356-8f70-558850d7b505 1 Other Other +7a645a49-479c-40e0-b5c6-02520723d387 1 Other Other +7a64855c-fa9d-49a4-a75c-075ed12f028f 1 Other Other +7a6485fd-4098-49fd-8420-29621b2459f8 1 Other Other +7a64969c-37fa-4c3a-91eb-11a6041c3362 1 Other Other +7a6498f8-d1a2-4904-8880-4117129521e8 1 Other Other +7a649b57-9fcc-49de-aa1c-43d4786d1526 1 Other Other +7a64ac97-d998-4595-8f81-e099736fb2c1 1 Other Other +7a64b05c-37d4-4632-9258-eed44981f4e4 1 Other Other +7a64c519-bc66-468e-8247-ae199e8036ae 1 Other Other +7a64f429-9d15-4ebb-b419-a6c2eb5a6194 1 Other Other +7a6506b4-9043-4977-a110-89775e8b086a 1 Other Other +7a651a64-8de3-4ec1-9726-867806e2615b 1 Other Other +7a652f54-a349-4435-b7ed-7a2fe66de376 1 \N Other +7a6541b8-19a4-4d96-83cc-20bc96cf58c6 1 Other Other +7a655ed4-3a14-4843-8b01-7e389682666b 1 Other Other +7a6597b8-9520-4ccd-b2a1-fae28132fd1e 1 Other Other +7a65b157-2905-4250-b6af-9a47979ab705 1 Other Other +7a661646-7b17-48cd-9845-c024ee21d799 1 Other Other +7a662bae-6ba7-4c0e-ae4f-f76b814353db 1 Other Other +7a6643d8-203b-44af-b865-d77be44b2e8f 1 Other Other +7a667f90-f1fb-4bb1-9e58-e005e001c9d7 1 Other Other +7a66dc33-a0e9-4b8b-b5df-0c914f9e65e7 1 Other Other +7a670f8c-783a-4c56-bb91-67073a486864 1 Other Other +7a676745-a40e-41d4-8fc2-22f2a247dbe2 1 Other Other +7a67b59b-46d1-4ab5-82cf-2a3b0d846072 1 James Other +7a67e2da-cb4d-42a5-920b-aa4f47338c31 1 Other Other +7a6806ca-1f3c-4dfc-bb61-2107b50ae4d4 1 Other Other +7a6831d6-db33-417f-8001-a23b170671ea 1 Other Other +7a684caa-d065-4363-874a-ddbe4d49baba 1 Other Other +7a685090-af0a-4edb-926a-191bde0b9ce1 1 Other Other +7a68d541-9926-456c-9e2f-d3410591049e 1 Other Other +7a68e2f5-9fed-4a38-81e7-c5a9deced622 1 Other Other +7a69176c-752b-49b7-8f81-9773aa09fb7e 1 Other Other +7a6963e0-c234-434a-8527-acf328b0a3bb 1 Other Other +7a697ffb-f07b-4bfb-b780-9a1373f7113b 1 Other Other +7a69a526-2d68-46b4-ba2d-f51e99d49b94 1 Other Other +7a6a0c39-b716-4f5d-a1cf-8a197e56a5a1 1 Other Other +7a6a66ac-34b8-42fa-8d9c-f1e6d329406d 1 Other Other +7a6a8886-f39e-4221-ab49-bf31be8b4cb1 1 Other Other +7a6aa42a-5b10-4472-96ef-2eb970eba11d 1 Other Other +7a6adff9-b764-4566-b9bc-a5003b1a809e 1 Other Other +7a6b0260-b6e8-4ec7-83f2-29d173f3bda1 1 Other Other +7a6b11ed-ff61-4f4b-95e7-c92b142e18e6 1 Other Other +7a6b13c9-9de0-46ca-928a-12fffa29c81c 1 Other Other +7a6b377c-bf7c-4431-8a5e-dd41180a6e91 1 Other Other +7a6b591a-6376-4ec5-b8e9-9d8401f9b141 1 Other Other +7a6baf07-e1dc-4c1f-b0c3-5327c7047c08 1 Other Other +7a6bb1df-b3f7-4120-b36c-5c1ece4ffce5 1 Other Other +7a6bc02e-5248-4584-bb02-5ddd8d9e18bd 1 Other Other +7a6bc7b7-3775-4b50-9dba-a9245221e062 1 Other Other +7a6bd26a-15ee-462c-8cc2-2a36d044c51e 1 Other Other +7a6bd587-e414-4b5d-8bda-bac9191f17d6 1 Other Other +7a6bfc4a-f95e-4c89-ae6c-3bd22f97e258 1 Other Other +7a6bff73-54e3-4518-8cc0-d47aa1fd9742 1 Other Other +7a6c3fa9-06c5-4501-b4e0-fa18b7b94a9a 1 \N Other +7a6c5936-2bb5-468d-8e68-d952ab22f89e 1 Other Other +7a6c844c-99ce-4ec9-bbfc-09dd24bdf024 1 Other Other +7a6c9dea-cab3-409a-be10-c53e838e677e 1 \N Other +7a6c9e25-42cb-4889-ada4-4da5823595b6 1 Other Other +7a6d3bea-7b27-4bcb-884d-6d26b42f8b07 1 Other Other +7a6d5e36-8493-4141-9c85-9c130ef91368 1 Other Other +7a6dc025-767e-4b58-aebd-2ce1ee485658 1 Other Other +7a6e844f-18e2-4bf2-acc5-c7ab63e65d98 1 Other Other +7a6e88d6-00c9-4a8d-998b-79a29f1fc6fd 1 Other Other +7a6ef8d8-2f4e-4de0-994f-a008e78f5c3b 1 Other Other +7a6f26b2-d215-4979-9db6-e5ce8f024fed 1 Other Other +7a6f2e2e-73ac-4962-939f-29a3e8221a40 1 Other Other +7a6f61de-54e8-467f-aa13-3a3e9abc0565 1 \N Other +7a6fa069-c5ea-436d-9852-2bd45e1a32eb 1 Other Other +7a6fbed9-1f1c-4625-94e7-6d356ccdb241 1 Other Other +7a6ffabe-6d86-4762-be9e-f6681be9dea3 1 Other Other +7a7008d8-191e-4353-b663-3886ef32d83d 1 Other Other +7a703097-3983-4645-ad97-7544512467d4 1 Other Other +7a7035b3-91ce-45ea-945a-4d06fc00d618 1 Other Other +7a703f25-2fdd-4e63-8c17-eb18149fe469 1 Other Other +7a7066c5-71b5-4479-a19e-68d87a7b6706 1 James Other +7a7095b0-abea-43fe-bc3a-49085c674668 1 Other Other +7a70a364-58f9-4a28-8740-9db4947411a2 1 Other Other +7a70a9d8-fa88-4c6d-9900-53e30dcca26b 1 \N Other +7a70ba88-dd83-4cc1-9fa9-2d9ead9399f9 1 Other Other +7a70c02d-280c-40bc-ab6e-919520be357b 1 Other Other +7a70c0c3-f0e3-4463-a40b-c63c741f88fb 1 Other Other +7a712b42-2c9f-453c-b390-9397df64fb42 1 Other Other +7a7130a9-0a2d-458a-b5eb-1a257239c601 1 Other Other +7a716fb3-0c03-480f-bab7-690ff636cc4f 1 Other Other +7a717a36-7570-4572-ba1f-82833812b137 1 Other Other +7a71da31-1004-44a8-8996-168ef0605097 1 Other Other +7a71e06e-d177-47e2-95ca-2e8a95cbcb1d 1 Other Other +7a724318-3eb3-4582-abcf-dc2aec64b981 1 Other Other +7a72510c-34d8-4e73-b754-f17826b8fbf7 1 Other Other +7a728d63-b812-4ded-ac5b-37c32134bc66 1 Other Other +7a72a586-a262-41fb-b273-180106066ec7 1 Other Other +7a72a8e8-5c04-42fc-8a23-2f710d350c2c 1 Other Other +7a72f27b-2dd4-476a-a9b6-75c20afb4512 1 Other Other +7a72fc58-a18e-4f61-8feb-c0c4322f5037 1 \N Other +7a72fe6b-fde0-41e5-95d0-3531d68b63d5 1 Other Other +7a7300af-416d-41ab-8fa9-3782180072b8 1 Other Other +7a731955-eb24-43f5-8013-7cdc315bfaab 1 Other Other +7a732f02-12cd-4009-ac0d-9747c7ad5ca7 1 Other Other +7a7332e1-c275-4448-b830-7ff6357a1364 1 Other Other +7a73b3ab-0d33-405c-864d-ada8782f4aa3 1 Other Other +7a73c5f7-739f-4554-b9ac-d29b9b4097ef 1 Other Other +7a7480b3-b13b-4b42-8031-d340d7ce3a86 1 Other Other +7a74967c-384e-400d-957b-7d5c95f88696 1 Other Other +7a749e56-054a-433a-a71b-d2d8c0c58e1b 1 Other Other +7a750b5b-a049-44ca-8ecc-b25848145d48 1 Other Other +7a751987-d425-41d7-8baf-d1f5e6a2f293 1 Other Other +7a75cb63-691b-4634-9b38-4bc60600cf45 1 Other Other +7a75fe25-b952-41b8-ab28-c23aecce259b 1 Other Other +7a76715b-f4db-441b-8c01-d026275f030c 1 Other Other +7a76765c-9416-49ea-a867-2daed946ae88 1 Other Other +7a76782b-ed5e-437f-a6a2-1c860bb1b099 1 Other Other +7a771970-f9e0-458f-a967-bca332ede7f7 1 Other Other +7a77d677-9a3e-44e4-bf34-5ea3eed30f09 1 Other Other +7a77e0ba-6001-46be-ba93-eb308ce6fc63 1 Other Other +7a781f7b-a0bd-45a0-88bd-bdec5d287f81 1 Other Other +7a78666b-8aea-434a-be64-b1e1ad67ca73 1 Other Other +7a788928-d8c7-4417-b1c8-fb8ea5030bfb 1 Other Other +7a78b5af-9d4e-401a-bc34-c6630c1f811b 1 Other Other +7a791e24-f96f-4dda-8783-eb894ae6aa87 1 Other Other +7a793cc9-e546-4786-9e2d-ba36d887231f 1 Other Other +7a794417-0428-4616-af8d-0f12319940b9 1 Other Other +7a796e6c-d619-4368-b04b-9161714baa4c 1 Other Other +7a79bd6c-2a84-4d79-84cb-dc35b72a2d62 1 \N Other +7a79d48f-80ad-4679-87ce-1098b7f32551 1 Other Other +7a7abdce-e58f-4e74-b608-a0838d00dd99 1 Other Other +7a7ac4f4-6199-4efc-958b-a6a2fdec8a48 1 \N Other +7a7b04b8-83a3-4ff2-9dd2-b1880e89642b 1 Other Other +7a7b21da-3d35-4f27-90cb-76c15cca6e77 1 Other Other +7a7b4197-151c-4957-b685-c1f6f815b67e 1 Other Other +7a7b44bf-3a30-4880-b922-c3f9063da7f3 1 Other Other +7a7b4e26-5fa6-4254-9e9c-b0f071e0fb0b 1 Other Other +7a7b7d7b-5ee8-4639-97bc-7f6f8b8429aa 1 Other Other +7a7ba20c-1330-4f10-8d61-4b40f0e6c64f 1 Other Other +7a7bd17b-0333-4410-ab72-d16738378a65 1 Other Other +7a7c01b1-45eb-4a54-b796-cbf26422bf1d 1 Other Other +7a7c4e7b-b8fa-436c-ae2f-42b02a14d0d9 1 Other Other +7a7ccf94-7e55-42cc-943e-1477882dc84c 1 \N Other +7a7ce1a6-408a-4434-85e1-9dba945ab44b 1 Other Other +7a7ce80a-ab29-464d-8670-e31b5afa9c0c 1 Other Other +7a7d0b63-6253-4052-8140-9d470c9d100d 1 Other Other +7a7d2dd6-137d-48a0-a684-8171e3ba5c2c 1 Other Other +7a7da1f3-5f05-4ebb-8dd8-54908d174a8f 1 Other Other +7a7e71ac-af8d-41e0-847f-903565d780c4 1 Other Other +7a7e8c4e-9f61-412d-a7e6-12cb66442c92 1 Other Other +7a7eeed5-634d-4ccd-ba8e-e4be32caaaf3 1 Other Other +7a7f056d-1664-42f8-8450-deddde5e54d0 1 Other Other +7a7f2473-3ad6-48aa-8b8c-8e2a0f6a2362 1 Other Other +7a7f6cf0-4853-4b17-a986-b0ef5f645fa0 1 Other Other +7a7f8276-f9a5-4ddb-9db6-50eff968bd5a 1 Other Other +7a7f966d-b416-436a-9438-6bcb95783017 1 Other Other +7a804dbc-aa3c-4603-ac86-e02d2285ab51 1 Other Other +7a805bc9-4540-4c89-ad0e-97abcb880b42 1 Other Other +7a808241-3592-40c8-aa78-be8e8a0d8203 1 Other Other +7a80840c-626a-4373-a368-28a31f0f2f46 1 Other Other +7a81357b-3a01-446d-a5c5-3a12a95eae1e 1 Other Other +7a81499d-75c3-4b0a-97ab-9d003c0c331b 1 Other Other +7a819927-6fc1-402c-94d1-3849697f50cb 1 Other Other +7a81f05c-d39c-454d-ab75-0819b23f38e4 1 Other Other +7a820caf-71a3-4c61-8a57-35ac3bce7cd8 1 Other Other +7a82323e-a535-4136-b882-554cc8791609 1 Other Other +7a825143-7cf5-47b9-a60d-4818ce98b94c 1 Other Other +7a8264e9-91ed-4b23-9258-fa4477007ebc 1 Other Other +7a829c2f-0213-47f7-8b03-648df08f8623 1 Other Other +7a82eca5-557a-48a9-af91-5087e2a7117a 1 Other Other +7a82f0c8-69a7-447d-955d-e2bfe007cad2 1 Other Other +7a830c66-3c00-4003-999d-ca36bb106fa1 1 Other Other +7a83162c-8596-4f3b-9071-6ae7ec6670a6 1 Other Other +7a831664-082f-450c-9181-dd8173469502 1 Other Other +7a831ed1-c994-4771-acc3-489277ff5817 1 Other Other +7a83bd40-85a2-4265-9f33-d6d74ed10c3f 1 Other Other +7a83d269-3a18-437d-89bf-307e5999bc18 1 Other Other +7a83f462-3a49-451d-990e-496e314df8b1 1 Other Other +7a8405ce-b4b1-4ff9-ad0b-d0f20cc0cac1 1 Other Other +7a841a08-f27c-445d-a1a6-e7800e06a0ed 1 Other Other +7a8481de-b8a2-490e-97fc-f1b3cd056fdb 1 Other Other +7a84a77d-4053-4111-8f00-d92610dde18e 1 Other Other +7a84e613-c875-4ee2-8f76-a271e8500d87 1 Other Other +7a84f70a-a207-46a8-9326-c3421e9e03b6 1 Other Other +7a85272d-58af-4892-8a91-3fbb1ff494ee 1 Other Other +7a855824-39c3-4dd5-a23a-c7a95b996d48 1 Other Other +7a857975-9dbb-4233-9753-b2aa51dc7f32 1 Other Other +7a85df19-f41f-4d0f-8fb3-f8a123dd6822 1 Other Other +7a85f7d4-0f35-4510-9246-98ea65f0701b 1 Other Other +7a860471-1e55-4056-a581-72d1d2878305 1 Other Other +7a8633ee-074b-4b7b-be71-737f493910b9 1 Other Other +7a867801-4641-478f-aa69-32ef23d00eb5 1 Other Other +7a86bd15-6e7b-44c3-9397-ec8a3aff11e1 1 James Other +7a86e9da-0b74-4a79-97a5-9390b6f76bfc 1 Other Other +7a86fa88-b46c-4c83-ba6d-a23483f98772 1 Other Other +7a871453-6cf2-4d3b-a672-7139b803dd1b 1 Other Other +7a877061-e438-4faa-a915-5b7aa1c74bb6 1 \N Other +7a878a29-bfa0-4988-bdc4-6e9b9cd1e7a2 1 Other Other +7a87dfa5-de2c-4253-a790-5455a492e15d 1 Other Other +7a87f28f-81a4-4f6a-97b2-c220ee3e80db 1 Other Other +7a8804fb-6a29-47e2-bda0-d259bb28fdff 1 Other Other +7a880ef5-557d-482d-b3c7-b1f40d20c37f 1 Other Other +7a8819c3-2362-4b7b-bd0e-78a8cab951db 1 Other Other +7a8883c0-0c82-4b03-be67-9c11f60505e2 1 Other Other +7a88b835-3ee0-48b3-862e-713044c8bc38 1 Other Other +7a88e397-2253-427a-9f7e-f7af4dd42fad 1 Other Other +7a88fb08-4cdc-446c-bb5b-28a88d772eb2 1 Other Other +7a890db5-7ade-4616-8772-28e1196436bb 1 Other Other +7a8946f3-77a1-4811-a17a-cceb1811f06e 1 Other Other +7a895244-0120-497b-9d6d-44b95f9c0341 1 Other Other +7a89d26a-0e47-4443-9bf4-02f4884c9e4f 1 Other Other +7a89d515-b9a7-4fd7-aa77-18bf2044f4cc 1 James Other +7a89de36-b098-49da-826b-42c896e54566 1 Other Other +7a8a114f-12c5-4e52-bcf0-b4be4f64ed6b 1 Other Other +7a8a1235-a4ae-44f3-8286-5dde50886fd3 1 Other Other +7a8a28aa-4ea9-47a0-ac40-f9c9898bb617 1 Other Other +7a8a3db9-ce1b-4db0-9ef7-6fcbaae04581 1 Other Other +7a8adf81-34ce-4238-94dd-5f2c150d945e 1 Other Other +7a8adfb5-5eb5-459f-a140-357b18128054 1 Other Other +7a8b1610-aaa2-473b-876d-2988018760a5 1 Other Other +7a8b7d45-64d5-46d0-9256-13305f5a3ee8 1 Other Other +7a8b8d61-a7fc-4a96-92dc-1eee81e24a39 1 Other Other +7a8c3532-304a-44cd-b560-7ceb3f1c9da0 1 Other Other +7a8d3f29-72f5-41d5-9c48-da5265ff11c5 1 Other Other +7a8e306f-447e-4352-bcfc-3b6db9ca3baf 1 Other Other +7a8e5bd7-a7f7-440e-8ace-a7d1904eb80c 1 Other Other +7a8e79a3-f342-4b16-9e03-f5fc05058de9 1 Other Other +7a8e7a40-7159-4424-9245-da674f0ca6a8 1 Other Other +7a8ea79c-494b-48a2-ac30-cda4bc654000 1 Other Other +7a8f1d9f-33f9-41d4-a004-b83c86fd0883 1 Other Other +7a8f9863-bf9d-48ad-b5a6-eea901c5cc32 1 Other Other +7a8fb685-f42d-4dff-a363-a37d56e6c200 1 Other Other +7a8fc326-4653-43b6-bbd1-e13a65c59714 1 Other Other +7a903ec4-62d2-42dc-94e6-64acac353cf4 1 Other Other +7a9046b6-1a76-4062-8e12-f9fb12e7211f 1 Other Other +7a906a07-4307-432c-9a51-be00c0dafcfb 1 Other Other +7a90a932-2c76-4709-9f04-728368a36886 1 Other Other +7a90abb9-9fec-4085-bb96-612d42dab409 1 Other Other +7a90f3e0-05d4-49e8-94cb-cfd220a18bfe 1 Other Other +7a911802-28a0-451e-a3c9-27791eddef8b 1 Other Other +7a91295d-078d-4a0f-99cc-2629a769f2ed 1 Other Other +7a913747-d953-49f9-aae9-e52b100d70d2 1 Other Other +7a919433-46ea-4485-8543-5550dfd48531 1 Other Other +7a919796-cf5e-4037-be95-08ec5a50c011 1 Other Other +7a91a925-2ca2-4ead-9401-2447fc9c5f77 1 Other Other +7a91c164-bf0c-479b-a5c8-54cff2656845 1 Other Other +7a91fb85-0388-40b3-957c-d52bbcf3dc5e 1 Other Other +7a9237da-76c6-4fdf-928b-a412f2351ed0 1 Other Other +7a92bf3b-f655-4c7b-b12c-89ebf2998e19 1 Other Other +7a92dc04-dae0-41fd-8909-96682f8219e3 1 Other Other +7a932288-c95c-40b6-a5c9-8e497c8305ae 1 Other Other +7a932f11-4061-4306-848b-1e578e0463f3 1 Other Other +7a93b122-c976-4d08-9a13-c253a3ea31a5 1 Other Other +7a93df5b-7db0-4b16-9317-67b6b8d4e0eb 1 Other Other +7a9400b8-0265-462a-a312-22c64e5fd300 1 Other Other +7a946bda-0878-4075-9d93-c80ad94ed663 1 Other Other +7a94d9f9-14f0-4f5a-95ab-9e4efd2ca23b 1 \N Other +7a95668f-9dc3-4f7a-9584-311c32d93e6b 1 Other Other +7a966e6f-0a60-42a8-bd32-a94b7bccb193 1 Other Other +7a96887b-ea68-433c-9a06-90a4aadb6d75 1 Other Other +7a968932-10bf-40fa-9d81-c9b395a0b3a6 1 Other Other +7a96a27c-b8f4-4b04-b9e9-6604164f3f10 1 Other Other +7a96d0df-460a-4f90-9b84-31fa7547b212 1 Other Other +7a96da4c-473a-4b7d-87d4-051560c01898 1 Other Other +7a974405-0c26-4978-985f-e34337486c62 1 Other Other +7a974d3b-beb9-4e98-af84-eb58ffdac172 1 Other Other +7a9757cc-99eb-49e8-943e-93552541a4a2 1 Other Other +7a98241f-912d-4fee-9701-c6604f9b279f 1 Other Other +7a988515-5132-4e73-b568-e33631e57d29 1 \N Other +7a988bf7-a558-417e-b0c3-1bf2aa75bdde 1 Other Other +7a98cf71-d69d-47cf-925a-740d2f8b45a8 1 Other Other +7a98d110-1a39-4089-97ff-8b3f5758d747 1 Other Other +7a98e177-c955-4014-a022-87e9de44e65d 1 Other Other +7a9921f6-c680-437d-a0ae-53ba25905808 1 Other Other +7a99416f-3e9d-4597-a3f7-1599d6a9ea33 1 Other Other +7a998193-2ca6-4b39-9fe1-b6d1739c7b6e 1 Other Other +7a998d95-f42b-4567-af10-1e6dae74c759 1 Other Other +7a99bc4e-e056-4e3f-998a-7eef0fa167fd 1 Other Other +7a99ddbb-3de2-42b5-b26f-9ad65b6d7707 1 Other Other +7a9a1791-8e00-4bd0-a8e4-ac0686b2b0e7 1 Other Other +7a9a1acb-9b05-4e5c-8107-e76ca2dc2245 1 Other Other +7a9a58ef-9055-4140-af94-a8307b53a686 1 Other Other +7a9ac657-d1cf-4fd2-a552-0e7421483e6f 1 Other Other +7a9afcfa-6382-46ad-9c81-cfd57cc68ce6 1 James Other +7a9b1334-d045-43b2-be3d-6f503058e630 1 James Other +7a9bbde2-be9d-4946-a321-4d2dcd5bfaf1 1 Other Other +7a9c2cda-a436-48fe-9ee5-6f20dc41f947 1 Other Other +7a9c43c0-ef6b-4543-8763-e52a54d5aa26 1 Other Other +7a9c5a8d-3140-4458-974b-ba2fa1460005 1 Other Other +7a9c641b-b3a2-4035-a538-acc1f7f3f7f9 1 Other Other +7a9c846e-49f2-4c2f-bd0c-5f57710cfdcd 1 Other Other +7a9c9ac1-4633-413a-9af8-a487cfd477b7 1 Other Other +7a9c9b6c-ea92-47c2-b47d-d7ed9ccd78cb 1 Other Other +7a9cd34d-3cfd-49f4-a6a3-68f49d9ec31a 1 Other Other +7a9ce39c-db00-4148-b785-81c3e52f736d 1 Other Other +7a9d10db-880b-49d4-a8ec-13b2686f0a55 1 Other Other +7a9d9bdb-83f7-4a6d-b04e-68c729022d78 1 Other Other +7a9dcd8e-aac0-4d56-8e84-885a779284f1 1 Other Other +7a9dd767-943d-482f-af5d-b1a527ba22c5 1 Other Other +7a9e2642-ce98-4bbf-8e60-356d88487e82 1 Other Other +7a9e5009-3429-479c-a19a-8ef455933ed0 1 Other Other +7a9e6dfe-7faf-4778-ad27-c094c776dfce 1 Other Other +7a9e9562-82b5-4378-9e51-13d97d81aaf1 1 Other Other +7a9eac92-4cf9-4836-a832-f2018dcabe4d 1 Other Other +7a9ec63f-ef3a-44e7-a36d-ce36d0a03cdb 1 Other Other +7a9f1d2b-1a1f-44c4-beda-c3354431fb19 1 Other Other +7a9f2829-e221-476d-8f53-55af33f47c78 1 Other Other +7a9f32e1-9e02-4918-b227-1de518c9f8bb 1 Other Other +7aa00b33-dcf4-4ec1-80c8-5d02d79ac09e 1 Other Other +7aa0280c-a302-4967-a97b-c34fea148c8f 1 Other Other +7aa02da3-9c72-47de-94b5-27e8fe4f5c9b 1 \N Other +7aa03ba2-cb50-4d80-b437-f496ebd9bd8b 1 Other Other +7aa04b37-5738-4488-bffe-ce59034053b8 1 Other Other +7aa0db23-9335-4227-a238-d20ef54fa5d9 1 Other Other +7aa12f3f-9713-4ff3-b9e0-20214dea8412 1 James Other +7aa15172-a65e-47a9-a2f4-14c98df5ce87 1 Other Other +7aa1733e-e282-4573-afe0-0cf18f05d0b0 1 \N Other +7aa17bd6-03a8-4829-ad46-b3e4ffe4231b 1 Other Other +7aa19764-2266-4c32-b01e-d2f6ce50382a 1 Other Other +7aa1b5dc-08c6-484c-98d9-f1da25e80726 1 Other Other +7aa25988-df6c-4f56-be8f-9d1aca740a5f 1 Other Other +7aa26fcb-be10-4e18-b3ba-58318b436385 1 Other Other +7aa2743b-b5d5-4a7a-874d-393f9f25ba31 1 Other Other +7aa29bb9-9811-486e-81bb-f5c7992479a7 1 Other Other +7aa31df6-f1ba-4132-bc98-24fb22535e56 1 Other Other +7aa32b25-55e1-4373-9158-0c998eae083f 1 Other Other +7aa33059-7e50-48db-b93b-9af8bbfc1ea6 1 Other Other +7aa349dd-26fb-42be-b8b5-f1bea749fd4b 1 Other Other +7aa36d37-1a93-4e07-b802-195668369fcb 1 Other Other +7aa39ac9-798e-4a6e-91ae-48f72ec7214d 1 Other Other +7aa3c86f-8c0a-4ec6-918f-37ea8cd1bb0e 1 Other Other +7aa3ef73-e445-4ae8-b0c4-f2f2b8c1e8bf 1 Other Other +7aa3f5bc-b954-4268-9144-58a20486448c 1 Other Other +7aa404f0-16d0-4320-b864-ca0e79781722 1 Other Other +7aa40e09-5d58-4d0d-9919-8c7f16ee5004 1 Other Other +7aa43605-3469-4d5f-80d2-c870d1153228 1 Other Other +7aa43714-856a-4ffb-a3b4-bcd6b3e9cc8a 1 Other Other +7aa4486a-5bf9-49a2-bd67-6632c193be8a 1 Other Other +7aa44f56-d959-46e4-8a07-c2dc9cd26d12 1 Other Other +7aa46494-c75e-439c-83b7-d728b0d038e0 1 Other Other +7aa52b38-27c1-4eab-9c20-fe53e208bf16 1 Other Other +7aa59376-457d-4542-8e6c-8c2eb5e9b905 1 Other Other +7aa5e5e9-7470-41a6-aa1d-9b30359c6165 1 Other Other +7aa5f4ca-2498-4569-83c8-397cfd00e57e 1 Other Other +7aa62c44-7c5c-452f-92d2-cf2d8dfcbcd5 1 Other Other +7aa655c6-4fa7-4443-b810-53f55e5f6c2c 1 Other Other +7aa65f4b-cde6-4fa2-b4a6-a05637f2fd01 1 Other Other +7aa66206-66cd-4162-b1d1-dcda43147496 1 Other Other +7aa67285-fc02-4918-93a5-3a5453608e75 1 James Other +7aa6a24c-9161-4cd2-a655-790581f14e0a 1 Other Other +7aa6cf8d-76c9-4074-bb88-907f82e644b8 1 \N Other +7aa6d0ba-abd9-4639-bdaf-a497a672a2eb 1 Other Other +7aa7cf47-7b2f-4945-a789-8d84d5325cd2 1 Other Other +7aa7f7c7-f469-44af-8489-6eea9fefbeeb 1 \N Other +7aa80b47-31f2-4b75-ab15-64e74e857900 1 Other Other +7aa817a0-950c-4518-a132-79b4691126b0 1 Other Other +7aa81e7d-38dc-4248-9828-dfbde992a04e 1 Other Other +7aa842be-6ca4-41a6-bfac-5ca11d0e07c1 1 Other Other +7aa87586-1280-4475-9b64-61273fc13e4b 1 Other Other +7aa899d1-e89c-4860-95be-8306b5a1361f 1 Other Other +7aa8b536-6908-4bd3-a467-beb98ea48c1e 1 Other Other +7aa99f71-8c31-49c9-b905-825d33dfefd9 1 Other Other +7aa9aee0-e97e-45fa-93bf-ef5176e5c7a1 1 Other Other +7aa9c1eb-0635-4844-b0a9-438284f378e1 1 Other Other +7aa9c9f0-d5fa-40b3-a3cf-5cc1991c68f6 1 Other Other +7aa9cfb0-3c06-4bb1-a916-a72d9e95d123 1 Other Other +7aa9e546-e15e-49e8-be8d-d463e3e026be 1 Other Other +7aaa4e48-68f2-439e-b0e4-62054431f308 1 Other Other +7aaa500f-5132-4165-8d23-0e1102c3badf 1 Other Other +7aaa5ce4-b012-431c-8108-ff30774abdb5 1 Other Other +7aaa5eca-9360-4bef-9277-0db71777f498 1 Other Other +7aaa7434-802a-4e59-95e7-3d281c556d0a 1 Other Other +7aaa7b7c-3677-4cf6-a55e-e432d0696c02 1 Other Other +7aaa90d1-7d6c-4b9a-9576-11791d7ef379 1 Other Other +7aaacf10-1e01-4eb2-b639-240dfc9f4b19 1 Other Other +7aaae948-7983-483f-9af0-f2ad730e4c21 1 Other Other +7aaaf9c8-4f91-4113-951c-a57f293b2756 1 Other Other +7aab02c3-6327-4aa7-91eb-dda1370d6875 1 Other Other +7aab22db-eab0-4d03-b1af-75e2db5692aa 1 Other Other +7aac076f-97aa-4f85-beb6-ff6aa3ec4c43 1 Other Other +7aac4830-ab82-4a16-a5ec-0931dc974b82 1 Other Other +7aace2e2-660b-4160-9ffa-89456f082cd0 1 Other Other +7aace3ae-8b75-4bd3-a6cf-dbf657f80e57 1 Other Other +7aad2137-395a-4652-9aa0-48e5a694c57b 1 Other Other +7aad2a5d-97b2-4ce6-8fac-5971f016180e 1 Other Other +7aad3b0f-9497-40be-b15e-243dd9e23209 1 James Other +7aad614e-a419-46b9-8bb4-bd76bcd93f3d 1 Other Other +7aad6208-0c32-46dd-ae36-952bc5bd9eea 1 Other Other +7aadab25-ec57-4350-9bfb-693febf52f70 1 Other Other +7aadc24c-f480-4c70-8fe8-7652ed366144 1 Other Other +7aade79a-2502-4fdc-b3f3-ec8ff859c325 1 \N Other +7aadf948-014e-433b-8023-8fd14cb19876 1 Other Other +7aadffb4-5492-4405-a8b9-4947f220dad4 1 Other Other +7aae462c-11d6-4b7d-8a39-ca110d981eb2 1 Other Other +7aae74c2-c0ea-49ca-81aa-0c78f17567ba 1 Other Other +7aae90fd-c113-494e-9976-cdc293c22e10 1 Other Other +7aaedd66-4256-4127-b250-7fa005f073d1 1 Other Other +7aaee985-883c-455a-8106-836ed9e7bb16 1 Other Other +7aaf0e4d-c441-4ab9-aff8-58bca519de0a 1 Other Other +7aaf69bd-c1ae-490d-93c9-44376d39b359 1 Other Other +7aaf87ed-5d6c-481a-8294-b18ba74c515b 1 Other Other +7aafa450-8e80-408a-bb08-3ffade4a495b 1 Other Other +7ab04e37-995c-473b-89f9-dd742290e27b 1 Other Other +7ab06221-450f-465c-8c6e-d168bee50cf6 1 Other Other +7ab0d7e9-630e-4e54-ac84-a7835e45b3af 1 \N Other +7ab0fedb-0d66-4c8e-a8d2-190b8c6102fe 1 Other Other +7ab10b2f-002c-4642-b41b-0ff204c25373 1 Other Other +7ab1392e-f6c9-4f73-8241-f4fdf5e2f95d 1 Other Other +7ab15f78-3ce4-4568-8b79-ca2d7d22d44b 1 \N Other +7ab1afb1-8292-4196-803b-ded76c0a57c8 1 Other Other +7ab1bd00-59a4-4e0b-9fa8-97778bbc56f3 1 Other Other +7ab1e116-0e8d-4e97-ac2f-9f152f577b94 1 Other Other +7ab1e27a-21b3-4d87-b020-db2e03ffc21c 1 Other Other +7ab22085-f479-4195-8d38-9d0cda86150f 1 Other Other +7ab2252b-659b-4363-afa6-50dc0c602acf 1 Other Other +7ab22923-a3f5-4c38-88ec-0e8927e86c26 1 Other Other +7ab23123-f6d1-4d21-a3ea-ff46db622542 1 \N Other +7ab24f09-b6e2-4ec4-aae4-dd98ba2b4849 1 Other Other +7ab25a6e-4a40-4b69-9b5d-98333e2f4d7d 1 Other Other +7ab2711c-9fb4-4354-8c44-9538d699dfed 1 Other Other +7ab29604-bf3b-4e76-ae68-2ddee5556f81 1 Other Other +7ab2fbfe-6274-46a8-9de5-8404134139fc 1 Other Other +7ab37378-f643-43c0-a0f0-ac7e5968f9fd 1 Other Other +7ab397cf-e22c-40df-a4e6-933c0cc91f99 1 Other Other +7ab3c93a-9128-41f4-87b6-c522222fd46d 1 Other Other +7ab47859-83c3-44dd-9f94-5328691db5ec 1 Other Other +7ab4a067-24cd-4301-8f66-e403e7e23857 1 Other Other +7ab4c381-8f33-47f8-bb93-7b1c194105f2 1 Other Other +7ab50969-6cf0-44cd-abde-fc059e53ef9a 1 Other Other +7ab50b54-f603-4a88-b9af-d23674dc8d35 1 Other Other +7ab513d5-ccbd-4216-b612-9268fb9c8456 1 Other Other +7ab53167-a81f-44e2-8eff-950cdb9b6252 1 Other Other +7ab53bf0-12ad-4ac1-afd9-aa1d6b3fb056 1 Other Other +7ab5558f-e890-418d-8df9-c7f7d25afeb5 1 Other Other +7ab55789-9a28-4cff-b85a-dc6369d5063d 1 Other Other +7ab56e2f-b6e6-49fb-95b4-1c1f6f0f39c1 1 Other Other +7ab5775e-04fd-40c0-bde6-82716e6ec561 1 Other Other +7ab5cc46-3e8d-48c1-89cc-96f9e068af08 1 James Other +7ab5e1ab-5ec4-43fa-8421-26d635b8bc65 1 Other Other +7ab5ec8c-3056-420c-818b-ad469d3bed9a 1 Other Other +7ab666cb-02f7-4629-971c-8716cb1c7a35 1 Other Other +7ab67307-c7ec-432a-bd22-74717a1420d2 1 Other Other +7ab6793c-bf19-4f6a-b75c-649adc3dfd8c 1 Other Other +7ab6c6cc-9d14-11e7-88e6-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +7ab70f92-f49d-4a35-bf7a-4846e9ef0452 1 Other Other +7ab772f0-ca17-42c3-a628-d6247819290c 1 Other Other +7ab7b817-ee9a-4c7b-8434-9bcc941fed8e 1 Other Other +7ab7e387-9815-4e6d-b4a8-2b98f160ea5c 1 Other Other +7ab824ef-3827-43b2-a810-855465faa004 1 Other Other +7ab8704e-77bb-4d20-84ad-7672c97ccc5e 1 Other Other +7ab8d935-d8f9-448f-89ab-f600001ddb01 1 Other Other +7ab8e640-ec40-4dcb-92df-1978db1d6bdf 1 Other Other +7ab98455-1680-4914-b8b8-52dbfd2c3605 1 Other Other +7ab98547-ab7b-4f47-b5f4-1fca1eee6219 1 Other Other +7ab989d3-af88-4490-9ee3-f29e6c0edc45 1 Other Other +7ab9a88e-8bdb-4f87-9721-1b7585a54b05 1 Other Other +7ab9f6ff-802a-41cd-aa95-6946ffa62ac7 1 Other Other +7aba18d1-2102-474b-b319-2ce0902f5ef1 1 Other Other +7aba4fb9-d2d0-4998-b8ab-84935c843274 1 Other Other +7aba63d7-db92-425c-98eb-81a0a6089d4d 1 Other Other +7aba648d-599a-4fa2-a510-48475814c425 1 \N Other +7abad522-e973-44a1-9291-6a02aec914d5 1 Other Other +7abb005d-b364-415c-a3f9-d2f2b12f0320 1 Other Other +7abb1469-af57-4d0a-842e-d6053c0aa56a 1 Other Other +7abb1f28-16f8-4d93-8fbd-f120e62946d2 1 Other Other +7abb590a-9866-43c8-afcd-37c8c6cd2431 1 Other Other +7abb83a3-57e2-4466-aa7a-5fd041e44dbc 1 Other Other +7abbbaf6-3c8c-4299-8388-4bb0d67bacae 1 Other Other +7abbbd0d-19f5-4951-b3b9-beb5a1fba748 1 Other Other +7abbe34c-1f35-488c-b0ae-326ca1bbfcd9 1 \N Other +7abbf693-2f3d-49b8-b509-8b2bd58aacb4 1 Other Other +7abc42dd-0905-4439-83be-c5e656862d28 1 Other Other +7abc6ea6-dc67-4bc3-bb7e-6eb8bd25ab7e 1 Other Other +7abc75fc-e0bb-4864-b1f1-ceb6ecbe9f86 1 Other Other +7abca068-e32d-4f76-a686-6e6fd65c4e4d 1 Other Other +7abcbe90-55ee-46d1-a936-af0c508e1419 1 Other Other +7abd9316-d623-432e-9b7d-c0e813c9047e 1 Other Other +7abd9a89-2b94-4aea-8ae4-ce7065cfa69e 1 \N Other +7abdc07e-2ae2-4041-a677-bbd6a404f5be 1 Other Other +7abe0090-319a-441e-8200-51d7318f9b7e 1 Other Other +7abe123f-97b3-4e96-a5ec-436483d8f6ce 1 Other Other +7abe82b3-244c-4269-a398-e7b47c65abde 1 Other Other +7abe9ecb-157a-4636-bd0b-d0a2b24c6cfe 1 Other Other +7abeb091-875b-4773-b0c0-2251bdc153c6 1 Other Other +7abed526-035c-4bbd-97fa-dbcf47805040 1 Other Other +7abf2f86-2c44-409f-a60f-1e0f776369df 1 Other Other +7abf9cd1-d9bb-4418-9883-2acb0f7cbe6b 1 Other Other +7abfc241-70f9-4753-8d63-2936ef9d1044 1 Other Other +7abfd064-5249-4b66-af0f-00325db2bf59 1 Other Other +7ac00b16-f635-4a59-af6d-6dc0c2ad19de 1 Other Other +7ac023f0-6454-417a-b465-774149e72c0b 1 Other Other +7ac02c24-daf4-4df2-82da-df710121c042 1 Other Other +7ac03f09-b5aa-439a-a8e3-d903974dd564 1 Other Other +7ac0a08c-a437-4220-b81f-58b91fecd76a 1 James Other +7ac0cbfb-72e9-4110-9247-617395b88bd4 1 Other Other +7ac0e6cd-d7cf-4cbb-b857-ab681506666b 1 Other Other +7ac13c43-43a1-4aec-bc50-d30e56a11766 1 Other Other +7ac18142-1ace-4f0c-aee2-1b60f315f1cc 1 Other Other +7ac1a0e4-08d8-4cd9-9718-28788ee0a550 1 Other Other +7ac22ced-cc21-4e2d-8ed6-56aa1953dc55 1 Other Other +7ac23016-296f-4faf-b612-bed5f32e743f 1 Other Other +7ac2334e-2da1-4745-ab25-3d9f4eb3c853 1 Other Other +7ac2b9f5-7064-4644-b21a-f0ba1f6a2c3a 1 Other Other +7ac2f4d6-a1c3-479d-8bb0-9dde4c23fc3c 1 Other Other +7ac32684-f6da-4025-a57d-5ea0200a8dc2 1 Other Other +7ac39134-28ea-43b1-a2af-206f6f8badf1 1 Other Other +7ac39d39-d76a-4109-8b70-985280605fd2 1 Other Other +7ac3ea24-003d-412b-a94a-21fd86f7c6c9 1 Other Other +7ac416b9-8ddb-456d-b26f-ac31c7f0f2f7 1 Other Other +7ac4286c-7342-4987-b963-d34da28151fb 1 Other Other +7ac43dc2-74bd-44d7-a955-600a9afd33d9 1 Other Other +7ac47c27-1e72-4771-a331-e3ff8b807d08 1 Other Other +7ac4c375-dec7-4152-80b4-0337d47db417 1 Other Other +7ac4e399-91d8-4d4f-ab6d-3410dce821c9 1 Other Other +7ac4f04f-fc8a-4bcb-b362-ffdb759e72e0 1 Other Other +7ac4f4ed-db39-4986-b911-fd0e82529e7f 1 Other Other +7ac51b41-1128-42f2-8340-d60d686d5e8d 1 Other Other +7ac5265b-f5a3-47d3-a910-f40510b3f671 1 Other Other +7ac52935-15e1-46c0-86ef-13ff8d4abb10 1 Other Other +7ac53e65-cfc9-4fde-8a5e-48bd86822d2a 1 Other Other +7ac54fb4-130d-40bb-8fd1-acce381fcbd5 1 Other Other +7ac56463-8b52-46f5-805f-a35fbc8f0967 1 Other Other +7ac58958-c969-4400-9236-95cd0357a0de 1 Other Other +7ac58b0e-234b-4ff5-965f-5058be642311 1 Other Other +7ac59c5b-eb78-483a-9401-e56925a1759a 1 Other Other +7ac5b5bc-a776-48f9-8b32-7e44e11084cb 1 \N Other +7ac5b689-8c6e-4eb0-9929-50ef780377a6 1 Other Other +7ac5cdd9-9130-4013-9854-801056655235 1 Other Other +7ac61f9a-2ab7-423c-a5fd-34d074858c56 1 Other Other +7ac641f8-8d32-49c2-8ad9-47ac0cfa3f77 1 Other Other +7ac6a422-7122-4ec2-9f5b-9ac5a10cb7fa 1 Other Other +7ac6b32c-aba3-4d42-ada9-437fda431a1c 1 Other Other +7ac6b39c-57a3-4b34-9e87-4e9876359253 1 Other Other +7ac6f5ba-fb94-405d-be96-298196685fda 1 Other Other +7ac6f718-87b5-41c7-9a72-b70b3a2674bc 1 Other Other +7ac7416b-e843-4443-8771-00546e70d9c2 1 Other Other +7ac74e04-e4f9-4838-99c0-a36f8a89506d 1 Other Other +7ac798a0-1994-448c-9405-6b2b61aaa33b 1 Other Other +7ac82e0a-3ffe-4018-930b-baf0e1133e1b 1 Other Other +7ac8b34c-ef29-43f9-a46f-cf77bd4f0262 1 Other Other +7ac8c76a-2082-4f8b-b724-44406e65cd29 1 Other Other +7ac8d7fa-2a88-4c7c-9110-c7fab19c7e36 1 Other Other +7ac8e01d-017f-4292-84ea-e03dbd345ffd 1 Other Other +7ac90078-14ac-453d-b806-1dc5a54c099f 1 Other Other +7ac917cd-f3cb-4414-b17b-ff0e536e471d 1 Other Other +7ac9565b-ab8f-459e-b42b-b028b3f78f3d 1 Other Other +7ac9795c-978f-4d62-8728-2fb89cc90b69 1 Other Other +7ac9861d-e7f0-4fc2-98f2-a9a72371c297 1 Other Other +7ac99070-a2ac-4d29-afa8-00620f476ae7 1 Other Other +7ac9a1d8-3242-4ca2-accb-550873d594d8 1 Other Other +7ac9ebaf-28f7-42bb-9d97-09f8c4df8b5e 1 Other Other +7ac9ec8c-54f1-40c1-8c6c-5d0bbefafe9f 1 Other Other +7ac9ee19-b91f-4f35-97e1-ad93d9b843cc 1 Other Other +7aca0f27-2757-410c-bfeb-66dad01b6f6d 1 Other Other +7aca6c0c-d4d6-4913-8c78-e2ca1fa6f11f 1 Other Other +7aca90f8-0d7e-4900-b983-dcc135cc36d1 1 Other Other +7acab217-beec-4c88-9b86-66bab60129c8 1 Other Other +7acb0606-7756-4a5a-b8be-f90722cd9093 1 Other Other +7acb1f97-3f4a-4735-b94b-e631af9cbebc 1 Other Other +7acb6ef8-15a8-485f-9ab7-d5ca86232526 1 Other Other +7acba385-5caa-409f-95f1-6413bbc03a54 1 Other Other +7acbbccf-efaf-48bb-938b-cc1eae82f699 1 \N Other +7acbdebd-4e03-4b41-8a74-073c016d85d6 1 Other Other +7acd1ee7-f615-41e0-8f46-33b8e99e34b1 1 Other Other +7acd4b65-9051-4702-9934-5188d5acb1ed 1 Other Other +7acd517f-87e7-466b-81b2-742cd92d6d9a 1 Other Other +7acdb458-4b1a-4793-b1f7-69f7d22f9108 1 Other Other +7acdb545-304b-4096-b170-ac3252365b67 1 Other Other +7acdb555-3b4c-46e6-8a43-451e93d9a667 1 \N Other +7acdfc1b-24c2-48f6-9a93-98b18fc3cf42 1 Other Other +7ace2349-29fe-4ab1-b8af-9f24d1deddb3 1 Other Other +7ace4a16-b5a2-48a9-81a5-18a75decbc80 1 Other Other +7ace526f-cf10-4b32-b181-4fe9811c7214 1 Other Other +7ace8bf9-2a01-4463-a7a1-602f672c20e8 1 Other Other +7aced786-6e04-44c1-ba95-1a24d710b677 1 Other Other +7acee43f-3eec-4ca8-b5ca-b8c615775ae9 1 Other Other +7acef41d-91ee-431d-bbea-1e2bd29f9b86 1 Other Other +7acf2654-1eae-43e8-ae9d-954eed44a81e 1 Other Other +7acf70a5-4a4d-415f-8c1e-4d8a1eb2afc2 1 Other Other +7acfb263-b315-4288-8dcc-00a741eb8032 1 Other Other +7acfd6e8-ffa5-4d45-a5b1-353ac7664bae 1 Other Other +7ad009aa-470e-4f64-a5c5-5cbf37cae150 1 Other Other +7ad017b8-aaaf-4aef-9583-87a4787a177d 1 Other Other +7ad02f0b-abcc-48c8-ac73-68a06e031b71 1 Other Other +7ad039d8-c75d-4f4c-9d68-e347dd08b14f 1 Other Other +7ad03ca2-1cfd-4b9e-8696-d78002832045 1 Other Other +7ad0452a-1dd3-4afa-ad1d-5ca7ca8202d3 1 Other Other +7ad05dde-7ccb-43c1-989f-148b373a4fac 1 Other Other +7ad06d03-25cc-4cc4-a4e5-50ef852113f5 1 Other Other +7ad09608-6374-4cb6-8302-82443f8f6cf8 1 Other Other +7ad12e16-64f1-48fc-aff8-46a9197e06ed 1 James Other +7ad178a1-dcc4-4d42-a186-539c2dd5a92a 1 Other Other +7ad18650-2041-4050-8237-bf0f04df7c23 1 Other Other +7ad1b537-9a3d-43b8-991a-9561fda2d33d 1 Other Other +7ad1ce77-0d79-48da-9445-a4b67bbb5e07 1 Other Other +7ad1e062-8af3-4667-bbe8-93d23ba858aa 1 Other Other +7ad22b9b-00f7-49d6-aa13-0a4e7c520eb6 1 Other Other +7ad25fac-c221-4dcf-8c19-8f31e84850a7 1 Other Other +7ad27c46-94d4-4f78-b749-56aefdda7530 1 Other Other +7ad286c8-7895-4d6f-bae7-cfc4a229f93c 1 Other Other +7ad289ff-da46-40e4-bac9-d125cf491998 1 Other Other +7ad2afbd-f29b-49e1-b5d4-c6cdad90eb7a 1 Other Other +7ad2b944-9f5f-4d61-b3d7-d63d48858c72 1 Other Other +7ad2b981-3907-4ab5-be73-0fa48ec222e3 1 Other Other +7ad360ad-3003-4c88-9565-8b54e7de0def 1 Other Other +7ad36d91-cf21-40a5-bdc0-d3c46866a4e4 1 Other Other +7ad3a862-884c-410b-8cc5-1de829c23f87 1 Other Other +7ad3b151-c799-44e5-9d96-e52b580d9101 1 Other Other +7ad3b2e7-955f-4c95-8329-ac5afad1aa30 1 James Other +7ad3fa73-a535-4f12-8ce3-0b03dd1c4396 1 Other Other +7ad42235-53e5-4700-81ad-1a9b091b86db 1 Other Other +7ad43ec9-465f-4f3f-ae4b-700282ea73c1 1 Other Other +7ad49eec-b78b-48cd-905e-651938a89aa8 1 Other Other +7ad4aa74-6041-4d96-a01c-1e05967b0c23 1 Other Other +7ad4ae5a-da48-448e-a7f2-5d5e3a57f0f8 1 Other Other +7ad4bb24-a584-434f-a31c-e965b46c8dfc 1 Other Other +7ad4eb4c-c46d-4c10-9cd0-2b29b7b554e5 1 Other Other +7ad50342-99ec-4751-946f-621e5cb2fb7f 1 Other Other +7ad53667-8be6-4ce2-adb8-71b3ca9c48d1 1 Other Other +7ad5caec-84e7-41bb-bfc9-d967edc21f93 1 Other Other +7ad61785-cef0-44e3-8881-26321cf87163 1 Other Other +7ad65341-51ad-4821-a363-51f7004a51a4 1 Other Other +7ad6ce0d-3d2e-4838-8612-edaf4c806e6c 1 Other Other +7ad6ced9-4b0e-4027-abf9-884045328f85 1 Other Other +7ad6e431-54b3-43fc-a564-532f5ffd750b 1 Other Other +7ad71cd2-bcac-4e4d-b1ea-15415596f94c 1 Other Other +7ad71f9c-0e85-4257-b471-9d0e8dab1e76 1 Other Other +7ad72fa5-679d-4d40-99f3-ed32a1d3cc93 1 Other Other +7ad736a8-ed6d-49eb-b07e-272c2f9defec 1 Other Other +7ad747a6-1bae-4ed8-8985-bf5f87f89c34 1 Other Other +7ad7640a-2f64-4ca2-bfdf-cc94ebaaa798 1 Other Other +7ad76795-90d0-459d-af17-369210aa9aa2 1 Other Other +7ad7bcd0-80be-475f-8572-653dc7736f74 1 Other Other +7ad82eae-fa71-498d-82cf-5d6560d740e8 1 Other Other +7ad851cd-15b4-4703-9494-f2eea9893964 1 Other Other +7ad8673d-9e46-46a3-92d8-39979e79217a 1 \N Other +7ad89515-1998-44d6-b094-3163d41aa232 1 Other Other +7ad8b59d-0941-4587-9e35-2cd951469142 1 Other Other +7ad9528a-0763-4b1f-93e2-df252f679f25 1 Other Other +7ad960e4-aaf4-4d3e-93af-dfbddd6e5d21 1 Other Other +7ad97bc3-d1da-4670-b70c-57dd27762c32 1 Other Other +7ad97e7a-5997-4410-b297-a7d89a091670 1 Other Other +7ad9c06c-e558-4fae-930a-85657a676659 1 Other Other +7ad9e521-b300-4fb0-b4e8-bd83b44b48e1 1 Other Other +7ad9eb39-9d09-4599-9529-04a6f116faa8 1 Other Other +7ada0360-d38d-42c9-9557-c6873d87addd 1 Other Other +7ada508e-d694-4cc2-acc3-a110343881e7 1 Other Other +7ada5493-d6b2-4363-96ae-8ae144514b72 1 Other Other +7adabdeb-2cfc-43f3-894c-bd224faaf296 1 Other Other +7adad388-855e-4f66-838a-5a221afd19d1 1 Other Other +7adaeac1-ddad-4eff-a9c2-c89a35aea2fd 1 Other Other +7adb02d9-09d4-4625-9df2-20d97f5ef51e 1 Other Other +7adb094d-e6d2-48f4-b8ed-fcea8956b69b 1 Other Other +7adb151c-35ed-4fbc-91f5-7efd80558baa 1 Other Other +7adb1e37-2104-43da-bf3a-11e9ead2ecab 1 Other Other +7adbbbf5-7d9d-4533-9a8e-a0d96cbbeb79 1 Other Other +7adbd82b-85e3-4208-8023-742e47cd3871 1 Other Other +7adbe35c-3e32-11e8-8c66-fa163e8624cc 257f6774-64eb-11e7-954b-fa163e4dd901 Other Other +7adc16b1-0b85-4bd3-876f-1684e91e14a7 1 Other Other +7adc5d7c-440e-4de7-bde2-3357811e98f2 1 Other Other +7adc814a-a554-49f2-8f9e-04fdb6d4a363 1 Other Other +7adc9e5e-631e-4a63-9cad-f3ae66a11234 1 Other Other +7add14fa-614f-4f7e-90f4-227e6a7993c8 1 Other Other +7add8226-77da-46e0-8446-a377863fbad8 1 Other Other +7ade0761-fcca-4093-be98-56c785d11a20 1 Other Other +7ade302e-8493-45ca-a472-928fe0e85fae 1 Other Other +7ade6858-540c-4b44-93a4-11afd507bdfb 1 Other Other +7ade6bcd-745d-44d5-afc6-693934ef42a9 1 Other Other +7adf02d6-59fb-4824-b36c-9ff37088695c 1 Other Other +7adf1868-af0b-4628-ac0d-443dddec536e 1 Other Other +7adf4174-d442-4ff2-953c-53fa505098bb 1 Other Other +7adfbf9e-5d1a-4dec-88f2-963ce3a31b98 1 Other Other +7ae04fa8-49c1-4f6b-a3b7-74291c5cd67c 1 Other Other +7ae052c3-7d97-417f-8346-75e3f92cd75c 1 Other Other +7ae0b0c3-3d8d-40b8-b956-0623b62a654e 1 Other Other +7ae0d6df-69da-42a8-bd23-4ffdbf198696 1 Other Other +7ae114f3-87ad-4a7a-af81-388cbd9a4cd8 1 Other Other +7ae118cc-1a9d-4352-bff9-08db5fb0c216 1 Other Other +7ae16586-790c-4805-8660-460f1fb7e08b 1 Other Other +7ae1779b-de04-4055-a3f9-80b44a6e866b 1 Other Other +7ae1976d-6a44-4634-b128-9ef64c0bbdd9 1 Other Other +7ae1a1a5-6fba-4304-a45e-d82b08166242 1 Other Other +7ae1aa62-5b91-49e2-921f-dcf78ec06d47 1 Other Other +7ae1f79f-3793-450d-97d9-4d56d798a997 1 Other Other +7ae20fe9-7316-4a7d-b07e-60d1ad420e84 1 Other Other +7ae25be1-e7e6-4271-83cb-616bb8f880df 1 Other Other +7ae2d031-1db3-4369-a0ed-9845d0eb5be0 1 \N Other +7ae303d6-29bf-466d-8747-15a7b33b5485 1 Other Other +7ae315e3-5536-4310-9934-513ab59eaa93 1 Other Other +7ae3c295-f23a-444e-8935-78036b39263f 1 Other Other +7ae3f966-68f0-4e83-b414-b49d3663c527 1 Other Other +7ae40c67-4804-415b-806e-9296dd757f3f 1 Other Other +7ae46a77-7cbc-4d0d-85ab-9b6abbc11ff0 1 Other Other +7ae470ea-c705-4529-8a88-97542e7f7fae 1 \N Other +7ae48d45-9425-4d63-89aa-306d8e4bbd96 1 Other Other +7ae4f158-b602-4974-9fdc-697ffe0810ac 1 Other Other +7ae5233b-a805-4a77-80cb-f8dd46551177 1 \N Other +7ae53f05-345a-44ce-8cde-6c27dba2c7d0 1 Other Other +7ae5595a-fba0-4cc9-b38b-5a8771139f8d 1 Other Other +7ae59d68-73ec-4a10-9ef0-afd0182bd3ed 1 Other Other +7ae5a958-899c-4ef4-8869-9d86aea3e647 1 Other Other +7ae61452-7f17-4727-8a2e-763095fe863d 1 Other Other +7ae660db-2786-43e8-8a57-072da3eec563 1 Other Other +7ae6af19-ad3d-4892-a5b5-e30b33553e5c 1 Other Other +7ae6c3ed-f3fb-4189-8c6e-6f2002572d47 1 Other Other +7ae6de2b-d55d-4800-afef-ad1d2e960b76 1 Other Other +7ae6f122-4dd0-4a81-b92e-1d0bfd52728d 1 Other Other +7ae74c1e-140b-4577-a3b7-1bee1b9520b9 1 Other Other +7ae76190-d83f-4092-9a62-2d0206caef09 1 Other Other +7ae77b71-3864-4be2-ad71-23ed00795114 1 Other Other +7ae78696-b2f2-41f5-908f-bc394192d521 1 Other Other +7ae79be4-d94c-4626-a7e4-81af3b3712e7 1 Other Other +7ae7ed76-f1e2-44a2-bc8e-c40a2b899c8d 1 Other Other +7ae81486-f9b0-4d29-9330-54cc1ed1edf2 1 Other Other +7ae826d4-c58d-4293-95ce-d767de717ace 1 Other Other +7ae89b9a-eefd-4fbf-80b0-4f1fbb35bd41 1 Other Other +7ae91fb3-134e-4808-afbc-34a6b8496694 1 Other Other +7ae96840-cfd4-4b56-be85-2fa96d7d58b7 1 Other Other +7ae9a5ed-c4d3-4b8b-ba79-fc6c6629307b 1 Other Other +7ae9b722-25c3-4c4c-8280-0b21ca75cc3f 1 Other Other +7ae9e52c-5ea3-4af2-8b81-aafc5ee649a1 1 Other Other +7aea03ed-0c5f-4ffe-9dbf-336a0c1869ca 1 Other Other +7aea49b1-c3f8-4081-87f4-7fc183a1aa2c 1 Other Other +7aea6e9f-324d-403a-aadb-13dbea66bfb8 1 Other Other +7aeaa4b6-3d04-48ec-b90d-b7fa60b792c0 1 Other Other +7aeb08c0-d412-4434-99b1-f1e793b4a055 1 Other Other +7aeb3b6a-bb85-41b9-ac83-7ca1bb4ee547 1 Other Other +7aeb4277-ecbc-43ee-95ea-a9200b4a7208 1 Other Other +7aeb4ed3-209e-4426-baea-8c027c230507 1 Other Other +7aeb5f44-38c4-48b7-aa9e-8c2410d1759e 1 Other Other +7aeb973f-e492-44d9-a7bf-fc33344d1648 1 Other Other +7aec503f-0d74-4f0c-95dd-0a70c2e7f3a4 1 Other Other +7aed07cb-42f6-4fa5-a891-77ec17b9e428 1 Other Other +7aed0c42-da41-4f28-aa7c-6d22ed3922c4 1 \N Other +7aed15d0-aecb-402a-bd83-ac11eb614f36 1 Other Other +7aed3a24-4490-49d0-a744-d7af79a69337 1 Other Other +7aed90eb-d17f-4580-92a2-f9a151fb60f6 1 Other Other +7aed91cf-c52a-4f06-93a1-725d00dec146 1 Other Other +7aed9a51-42ef-4e10-b4d0-8e0ddcbecfff 1 Other Other +7aedbd1a-63b3-4915-8970-efda38709e13 1 Other Other +7aedbdd5-41ee-41aa-a5d9-0c65903ef4e3 1 Other Other +7aedc3f9-85be-4c1e-a00d-e6cac43cdc2e 1 Other Other +7aee0a5d-d136-46ca-85ee-dd8ec63b587f 1 Other Other +7aee2573-891e-4f09-b74a-9b01cae63708 1 Other Other +7aee5aa2-c6db-45c8-9a97-666e4d772c88 1 Other Other +7aee816e-535d-4c8f-b6de-f1b9f3f9a578 1 Other Other +7aef1acc-5011-4156-97e0-8a58ec043a57 1 Other Other +7aef53b1-7be7-499e-ace7-81a8b128c1b7 1 Other Other +7aef5c16-6c0e-4216-8bd4-c78786519726 1 Other Other +7aef5e78-c740-414d-a9fb-64116074cc1c 1 Other Other +7aefe4aa-5b52-48b4-afca-abdbfd076460 1 Other Other +7aeffefd-6106-4520-a6aa-7e14071c39aa 1 James Other +7af0046e-5081-4883-be45-db848cffa87b 1 Other Other +7af0341c-f2cb-41ad-965b-097504ac0f9c 1 Other Other +7af058c9-8e95-4f23-94ae-3c30099fc236 1 Other Other +7af0792f-ca0f-4458-a3cc-d88b6f3f6bd8 1 Other Other +7af07bb6-8170-40da-9d6c-9849df764bfe 1 Other Other +7af08ffb-5e2e-4819-8b0b-4916322a7cc7 1 Other Other +7af0b3f8-7fa1-4ff9-a44d-ff3014f7312c 1 Other Other +7af0f2e4-2f1e-4f42-a490-c62f6ce4588c 1 \N Other +7af1029e-b411-411d-95e4-6be17eb8b76a 1 Other Other +7af1289a-474d-4b61-9c53-df3598037f4a 1 Other Other +7af13912-0e84-44aa-8a1c-d7601944e90c 1 Other Other +7af1df5e-d6e7-4266-b1e6-bfd2a62ef228 1 Other Other +7af2615f-3932-4267-a1af-1e763db40dd9 1 Other Other +7af2711d-83f8-4cbe-904f-e728e4f5ad6e 1 \N Other +7af2c0f8-be8a-4e5f-bd6f-3af2e5971e34 1 Other Other +7af2d408-9822-43e2-a833-85ae9b5f2775 1 Other Other +7af2d6a0-690c-4afb-b703-1f85da8731ec 1 Other Other +7af2daf8-fe28-42db-8f36-241c7520d130 1 Other Other +7af2dbde-f645-4aad-84db-407f1c17e2fd 1 Other Other +7af2e8d5-1684-44e6-9ca6-1d1311242031 1 Other Other +7af2ed41-e3dc-407d-9888-ffb7c999c0ef 1 Other Other +7af2f99d-e114-4ecc-8e9e-4687d697f802 1 \N Other +7af2fcbd-3498-4f2d-bc02-66ae3cdf2897 1 James Other +7af30518-8ff1-11e7-a698-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +7af33c11-eec7-49bb-8ba0-36eac308fa07 1 Other Other +7af34702-b57c-11e7-b75e-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +7af35319-1add-4268-acf7-ce172c3bb0fd 1 Other Other +7af3a649-0ad8-46ea-9a53-878c833a9871 1 Other Other +7af3ae13-68e6-4954-b246-2126e744fd93 1 Other Other +7af3c6d1-e71f-414e-a3e0-e7e821217abf 1 Other Other +7af401eb-71f4-41df-9dda-6a2ea9e38fc1 1 Other Other +7af50aa7-cd68-45dc-8e31-2d24729c6b69 1 \N Other +7af50e7b-49fd-4f80-9f8e-23357a7a290a 1 Other Other +7af57bfd-d70c-4341-8123-b7d60a9e8f7a 1 Other Other +7af58f6a-13d1-4316-ab9b-3398ab8d39ec 1 Other Other +7af61412-b340-4464-b893-cce0e255d975 1 \N Other +7af6bce9-64ec-4a98-9f91-4960c5332436 1 Other Other +7af70284-2938-4286-9f4b-fa273b691a6f 1 Other Other +7af73934-2d0c-4070-a06c-4e23463628be 1 Other Other +7af75fb4-3892-49d1-bed4-995b03341cf2 1 Other Other +7af7a941-aa08-4b68-8804-ce917f9ecae6 1 Other Other +7af880a0-a287-4647-b16d-84b5e205b85b 1 Other Other +7af89da6-a7f6-4da3-8d20-2c9786ddfcb9 1 Other Other +7af8a2e6-8a50-4305-8ab7-490bfa549469 1 Other Other +7af8b26b-6f50-4c24-83ed-a174003f5cb8 1 Other Other +7af8ceb7-24b2-4413-9521-1f27c2a825f2 1 Other Other +7af8f344-91ae-49fe-9c53-be28ba1e27a4 1 Other Other +7af8f46e-4736-4c19-907f-2196e1a66f8d 1 Other Other +7af8fff7-cec3-4960-babc-3cf1833076ba 1 Other Other +7af92380-096d-45f4-9573-21d5f05e51ff 1 Other Other +7af98e63-a085-492b-97f6-dcd2170ee02b 1 Other Other +7af99a24-ac92-493f-8835-20a548758088 1 Other Other +7af9b1e8-8ad4-482f-abee-c974481a3c80 1 Other Other +7afa4c72-c855-4b0a-a67f-791801ef5d9f 1 Other Other +7afa5e43-4985-4755-ac8b-067d792905a5 1 Other Other +7afa7527-6795-4581-91f8-37bc19427a6d 1 Other Other +7afa89a2-346b-4b29-a206-9d0c459e7f0a 1 Other Other +7afaaba6-ba7b-44cd-a33a-c66eec69f8ba 1 Other Other +7afac51d-de0f-410d-ab9a-e35ba9b35ed8 1 Other Other +7afaf078-9529-4559-ab31-68feb646e94a 1 Other Other +7afb391a-8b86-41a6-8dac-b6f2d250aacb 1 Other Other +7afb7814-ac37-4ac7-9064-97a0b6feb47d 1 Other Other +7afbde0c-da75-4cf5-aa92-b734da05075d 1 Other Other +7afc0c6c-a26b-4aba-9a13-63d4a31a4a75 1 \N Other +7afc18e0-4d5e-45f1-a688-9761f724dafb 1 Other Other +7afc45a5-c2d3-41c6-97b1-2d83e22e4396 1 Other Other +7afc92a6-b25d-4b53-b489-d7d91a68a8b9 1 Other Other +7afcb4fb-be0e-4092-9fe9-68c629fd698d 1 Other Other +7afcdc11-9da8-4a79-918c-9d053c0643bc 1 Other Other +7afce7eb-dcad-47c9-91fc-e647a5369002 1 Other Other +7afcf7a2-234e-4f10-9066-5f8a4ec542a5 1 Other Other +7afd093d-d131-4666-9657-701d4a7d3871 1 James Other +7afd767b-bfa1-4ccc-969c-2c04f226bb6d 1 Other Other +7afd8814-ba35-45ef-9296-3f2dda8fba14 1 Other Other +7afda38b-ab12-41da-aabb-886778ca641e 1 Other Other +7afdb855-b2d4-4870-a68e-5376b28be169 1 Other Other +7afe897e-c745-4d45-9e01-1e3c6bb9f397 1 Other Other +7afefb75-f7bd-4b0e-8a21-554c07eef177 1 Other Other +7aff2787-1f18-4532-ba17-c2a8ab9b1a6c 1 Other Other +7aff5ffa-9085-4c75-986d-ad8c3b5bba3e 1 Other Other +7aff8b74-0a33-4c59-9490-1198fcfecde0 1 Other Other +7aff9ef8-ce2f-46f0-9e34-1c62e8bd1b09 1 Other Other +7affcb43-d5f1-4284-bed9-e93f283dad5e 1 Other Other +7b0026c6-e9fa-4aac-8806-c65d84a5554b 1 Other Other +7b003904-2af0-4c13-a6d7-735cda21f23e 1 Other Other +7b004a9b-7bc2-4bb9-849d-597f0b6ef41e 1 Other Other +7b00734e-9bb4-410f-ab89-bb520de27408 1 Other Other +7b01affa-dd29-4273-8c46-d39811906a05 1 Other Other +7b01f996-909d-48ae-93b0-a3f220c221cd 1 James Other +7b01f9da-6db7-4bed-848f-dff21f27dba5 1 Other Other +7b0206bb-3c3b-4475-a842-de5355e6b1f9 1 Other Other +7b023e33-9068-4461-b97b-40ebcfa42138 1 Other Other +7b02eedc-1d5d-44c0-9e1e-07773175f049 1 James Other +7b0310a3-7ef4-49a0-935e-95e5f66d61b4 1 Other Other +7b03557d-520f-4913-9581-dd00c7d079ce 1 Other Other +7b03bc8f-76c4-411a-8373-51c443809295 1 Other Other +7b03e503-98cc-443e-8c91-d90b5270f8b9 1 Other Other +7b044337-002a-412e-8f7a-1f7fd72c5356 1 Other Other +7b0447ee-6e70-4146-9ed2-bdfcd05a3506 1 Other Other +7b049e60-17b3-4120-91a4-c03de7d0d38a 1 Other Other +7b04b1d2-68f2-4c93-b7bb-92c3cd0e3a5c 1 \N Other +7b05103c-f94c-4c9c-a300-2faf6aca50a6 1 Other Other +7b051e7c-3448-438d-81e0-7bb59cddb07f 1 Other Other +7b052901-9acb-4fbc-b70e-93d1284e0e46 1 James Other +7b0544f1-e070-439c-b03b-32656587a860 1 Other Other +7b055dca-6037-430e-a64b-bba39604fdf9 1 Other Other +7b059a47-0f29-406a-83dc-b86cdbec04cb 1 Other Other +7b05d7f3-cee2-4e5c-8af0-40b7fba25f68 1 Other Other +7b060cdd-a472-45fd-85d2-20f86da59be2 1 Other Other +7b066701-ca12-4105-9430-a516468a82ae 1 Other Other +7b06b888-15dd-4c5c-bbb9-9375ac984b50 1 Other Other +7b06b979-4d0e-4507-9faa-32b8b6e79ed1 1 Other Other +7b073fb4-fb7d-4ff0-970c-6054754685c9 1 Other Other +7b075185-9b73-4bf5-9909-0b2507fe5f15 1 Other Other +7b080070-68eb-412e-a86d-28ae6e4c3dde 1 Other Other +7b0806c9-a5cd-48a7-bbde-17ed7c0f8dab 1 Other Other +7b087ae1-48db-4cfc-b733-5f911faad543 1 Other Other +7b08bb73-32cc-4c7c-8714-bc3e52259d34 1 Other Other +7b08bc93-2fd9-4c7b-957c-cc8e852f8110 1 Other Other +7b08f4c5-7ceb-4902-aea2-7dd4a5ed262a 1 Other Other +7b090c7f-91d2-4724-8cfd-d2b2984352ad 1 \N Other +7b09513f-0009-48e8-b75a-cc1cff60225e 1 James Other +7b098e0b-9fd9-4f19-a721-9a9ad7023eb9 1 Other Other +7b0a13cd-a162-4922-b0fa-167d975293bb 1 Other Other +7b0a1909-d747-4064-9ede-9a84c8364b27 1 Other Other +7b0a37db-9957-4998-b1cf-4ebd80a529b1 1 Other Other +7b0a479d-9080-450c-928e-aa56645117b0 1 Other Other +7b0a6e7a-c36d-4358-8401-157d30ee11a7 1 Other Other +7b0a7d10-1cbc-4c3e-91fd-c2bea4eb543d 1 Other Other +7b0b34d7-de1f-40bd-9ac1-665720b347b4 1 Other Other +7b0b6209-26de-4ddb-82a1-4ac59f04071a 1 Other Other +7b0b6e1b-5288-455b-a8fb-4d337ed141bf 1 \N Other +7b0b7d90-83f8-49b2-8f54-faff81cd5766 1 Other Other +7b0b8961-1e4a-4e12-81c9-0d8a766298d9 1 Other Other +7b0b903e-c849-4af2-a2c9-28c6001187f7 1 Other Other +7b0ba080-7283-4299-90fa-05b3204e82e2 1 Other Other +7b0bad61-932b-4b03-9fa1-31a274642cdb 1 Other Other +7b0bbb04-9222-44e5-9e67-dc5a2881fab3 1 Other Other +7b0bbfb0-4727-4e98-ad40-1d10111995b5 1 Other Other +7b0bc2b8-a03a-4fca-8fd3-2422e37b007f 1 Other Other +7b0c4993-1285-4a8d-bf66-659f4ffe35c6 1 Other Other +7b0cc50c-c8cc-4212-9a75-4a24d371b61e 1 Other Other +7b0cca69-8437-4f95-8e95-09f92ef7e6c1 1 Other Other +7b0d1a32-c89d-4461-9774-b674a70f2caa 1 Other Other +7b0d2216-db37-4cff-a50b-1023c2171c1b 1 Other Other +7b0d4697-bb0e-4b3e-a152-900ff591930f 1 Other Other +7b0d4fa7-2b1b-4b7e-ba3e-502e63756bec 1 Other Other +7b0d5a7f-d589-48d8-baa5-29b472fdf1c3 1 Other Other +7b0d66fa-ee9c-4189-be3c-89988dd88d6d 1 Other Other +7b0db6e4-130f-4a91-aaed-b8202fe015ce 1 Other Other +7b0e217f-073d-4806-b99a-58103f91450f 1 Other Other +7b0e237d-c74a-41aa-b270-e23331e070de 1 Other Other +7b0e9798-bc91-4265-85f3-ad36fa9f1756 1 Other Other +7b0ef7cf-3ef5-4909-a72d-f6c36ec46282 1 Other Other +7b0f31b7-d947-4250-8734-953a820bfe78 1 Other Other +7b0f577b-b110-41e6-8342-561bce9bad7a 1 Other Other +7b0f60fc-4f5d-499c-9f96-186875a0af33 1 Other Other +7b0f8df7-2fd7-444d-869c-7b0c4354bbd2 1 Other Other +7b0f9841-c975-4e4e-a793-5fbe54a850c3 1 Other Other +7b0faf0e-788e-4f68-bd34-989a99849934 1 Other Other +7b0fd398-8b5e-4272-ae1d-29c3ad137ca1 1 Other Other +7b10234f-fd7b-4427-844b-e95befc86722 1 Other Other +7b10cded-9d79-447e-9472-0b9786afa38a 1 \N Other +7b10e0e0-f737-4799-a67c-8145eac77284 1 Other Other +7b1124f4-f73a-4b61-a575-a4411a52590b 1 Other Other +7b113eb7-1e02-4ff5-98e0-e9d7fbcaa981 1 Other Other +7b114403-b570-4339-a54c-6b5e70d96fde 1 Other Other +7b1158d8-c2f8-46f1-98cd-6dac5713be64 1 Other Other +7b11662c-cf2d-44b9-bd8a-52b978b658eb 1 Other Other +7b118a60-970c-4e15-912d-45f8c8cca2ac 1 Other Other +7b119a3b-56e7-4414-b2ee-565e5d697c36 1 Other Other +7b11a281-11bf-4b11-be50-d727d5468fa1 1 Other Other +7b11aff0-a8fc-474b-8ae5-16ca6ca3c85d 1 Other Other +7b11bc0f-8e5c-48f6-bc48-625748cbeac3 1 Other Other +7b11c61b-1979-48f7-8a05-03868c5385aa 1 Other Other +7b11d80d-815f-4949-a45c-7faddc5f3a55 1 Other Other +7b11d9c3-33c8-4a48-9fee-d4b03f58b3cb 1 Other Other +7b121654-1838-40c9-9c56-b80059645c72 1 Other Other +7b125ec0-bde3-4e96-bbbf-ec4ea5e47f5c 1 Other Other +7b127859-eac4-49cd-a0b1-47fd74b87f67 1 Other Other +7b12ff0c-ba44-4e31-ab89-3385ab863b05 1 Other Other +7b131225-9708-4bd4-9870-cbb437e1cd00 1 Other Other +7b1316c2-a949-4b6e-a543-c9e59007b4ee 1 Other Other +7b132754-2017-49b0-b56b-f994a06163c6 1 Other Other +7b132e68-ee48-4607-bba9-253bca032be1 1 Other Other +7b133313-99c3-4197-930c-c1152211f725 1 Other Other +7b1388b1-b79c-4121-b03c-f8f60a5d1dc5 1 Other Other +7b14079b-655a-4c07-90cb-799820148b85 1 \N Other +7b142db2-24f9-447a-be7a-26faead4b6f9 1 Other Other +7b148d4e-97ca-4adf-a7c9-72503d1651aa 1 Other Other +7b151090-334d-4cd5-97e0-684e05b11c70 1 Other Other +7b157dc2-8d1f-41f3-b91c-4242c0bea4c9 1 Other Other +7b15d5d3-3b96-402a-b0a5-66eb86d23cdd 1 Other Other +7b15de85-aedd-46fd-9943-5759689b12fa 1 Other Other +7b1653af-14d9-4b7c-add0-ccd812ee9ad9 1 Other Other +7b16699f-195f-4592-8170-3640e6874438 1 Other Other +7b16b192-1b6b-11e8-9b3d-fa163e8624cc 1 \N Other +7b16b19d-cf91-4328-a518-916ff314d524 1 Other Other +7b16d724-070c-4391-95fb-81924d2d6b83 1 Other Other +7b16f7f6-99eb-4767-b3fa-d0daa738f469 1 Other Other +7b174cf6-e62c-4ccc-a75c-17a4d2da5ff2 1 Other Other +7b179091-a00d-4b4b-95cd-03ba9895f96b 1 Other Other +7b17ed04-6c9b-4aed-97c4-4b0bd204ae50 1 Other Other +7b181b63-756d-4ac7-a783-9f756c8b3563 1 Other Other +7b1831c8-d33f-4921-98fc-dbec8ef709c3 1 Other Other +7b1839cb-cbf4-471d-b72c-379ba388f873 1 Other Other +7b1844a3-dbbd-417d-83f8-44f2bcacf2c5 1 Other Other +7b18830b-f3cb-4d81-91c3-f6f4c29acc37 1 James Other +7b18c7c8-5e82-43c4-8280-e4fc00093e2e 1 Other Other +7b191693-7d8d-4746-830d-9321cf60dc03 1 Other Other +7b1930ba-56d4-4744-b870-a6c1063c42e9 1 James Other +7b196c3f-5d7e-46bf-91fc-037dc500c17c 1 Other Other +7b199230-12bc-4bde-aa00-d04e83e659f2 1 Other Other +7b19ac93-cfb8-47d5-b054-200b08006bb3 1 Other Other +7b19c91a-3c2f-487a-a700-a4f6f203190e 1 Other Other +7b1a5c99-faa8-4e65-a8ff-b2cf9a8bed9b 1 Other Other +7b1a89e3-91da-420d-9a68-c674a1503f3b 1 Other Other +7b1ab1ff-ea27-4b28-a5de-46ee16b8741a 1 Other Other +7b1ad73a-d033-4c0b-b8b2-84882ba11855 1 Other Other +7b1b2e5f-582a-4dea-9ed0-9f38486a6485 1 Other Other +7b1bd515-fbd3-49c2-a367-9cbac4104747 1 Other Other +7b1c1123-e68a-4176-a61e-c0d092afdfab 1 Other Other +7b1c4632-3c76-4d09-952d-7438cd760833 1 Other Other +7b1c5e50-9912-4428-9872-372b438395dc 1 Other Other +7b1c6de9-bfb5-450b-ac7d-5ddd17de5714 1 Other Other +7b1d0ac7-9bc4-4797-a442-99ebc6e55d9c 1 Other Other +7b1d0d88-76ff-421a-bfd8-9a69ebf215be 1 \N Other +7b1d28aa-beb4-45ca-99b9-3b02642d9e1c 1 Other Other +7b1d54c5-8376-4460-8df7-158ec311f53b 1 Other Other +7b1d59f6-84d4-424b-8dfb-9ec7aaa50ad9 1 Other Other +7b1d622e-97a7-4817-a268-8c0de2f9d7ce 1 Other Other +7b1db119-5dc0-4cef-9899-50f0bd7f6396 1 Other Other +7b1dda2c-f36e-4f48-ae1c-29e421758945 1 Other Other +7b1df434-bdb0-4b11-a5a9-840a49202d7b 1 Other Other +7b1df80d-2111-41d0-8416-e08a4120ed79 1 Other Other +7b1e218c-caa7-4a23-bd39-ddd17e6ce901 1 Other Other +7b1e45bd-e4ab-499b-ab28-e1f9bb3303a0 1 Other Other +7b1ec60e-0f67-40c4-a09b-03b1b8d81a85 1 Other Other +7b1ed0fd-d239-474d-baa7-f84fc6d8912d 1 Other Other +7b1f1a36-fae9-4aaa-ab3e-d2249d4e0938 1 Other Other +7b1f38bf-9e2d-4109-b581-0c1be1e6633e 1 Other Other +7b1f4aad-0713-4c07-9386-f574293b02ca 1 Other Other +7b1f8436-065c-4cff-9f2d-f6a6c37108e5 1 Other Other +7b1fa968-e3ed-432e-a42a-c29750e6e030 1 Other Other +7b1fd80f-3c0f-467e-8a91-fd56cfc3bfe4 1 Other Other +7b20ba75-2186-4a8f-a832-df78b083a891 1 Other Other +7b20bb1c-aaaf-4585-9413-f89e0e64e2f9 1 Other Other +7b21168c-e4b9-4976-b34b-57ae2b88a987 1 \N Other +7b211eeb-bad6-4702-820d-a0b7f6d41ee3 1 Other Other +7b214524-254c-445d-89d3-654193939c13 1 Other Other +7b21793b-30c7-4f18-97e6-e31306a26a59 1 Other Other +7b217a59-aaa8-4b51-89b1-5c1e32f1f271 1 Other Other +7b217f17-3b36-43ee-af13-2717be3b80e2 1 Other Other +7b21951e-c73f-4971-9930-8ae0369273c2 1 Other Other +7b21be90-217b-470a-ae4a-4b99a9dd9f1d 1 Other Other +7b21ead2-e07c-4915-a0c4-5294da75176a 1 Other Other +7b223c4e-fbf3-4592-be0e-51d0b6e5529f 1 Other Other +7b22f1d2-3fcc-4779-8fac-90008307d666 1 Other Other +7b23171c-16c5-45fa-8cc9-47807770d142 1 Other Other +7b233eea-d830-4105-bd66-f7b0891b70a0 1 Other Other +7b23cd9e-965b-4ca9-a52c-58c59dc25dd3 1 Other Other +7b23d339-4f50-455a-9509-ca7d158e4099 1 Other Other +7b23e64b-ce6a-4e58-81cf-26990de5a82b 1 Other Other +7b23edc1-c59d-4b58-a08e-97b4e41219cc 1 Other Other +7b240ce6-edc1-4fbe-8973-85e3cc81d2ad 1 Other Other +7b242dcc-12cb-4ffc-9c76-bc422821d8d1 1 Other Other +7b2446eb-92b6-442b-ac1f-011210f7ce0b 1 Other Other +7b246ced-1de8-4b65-9a1b-fcb0d2fe7575 1 Other Other +7b246f7b-4a20-466f-b850-eea4a4c1aed3 1 Other Other +7b247cd5-22d4-4423-a975-bb707472dad3 1 Other Other +7b24ddb8-1f0c-471f-b62c-b9748254fbfb 1 Other Other +7b24ee94-ad91-4646-86d5-032440fe1d65 1 Other Other +7b253f61-e44e-484c-8a92-6a6b597114dc 1 Other Other +7b254e59-ca10-4fb7-95f0-7b783c097534 1 Other Other +7b258070-1eb2-4367-8ecb-75cb271d88f9 1 Other Other +7b25cdf3-4642-4b4d-98d3-576df396a0a7 1 Other Other +7b260958-0ff6-4e70-a614-1371f545a0f7 1 Other Other +7b261da1-54b3-4b66-ac2c-9856e1753179 1 Other Other +7b2667d1-2df0-477f-beed-cbdfb2c3457f 1 Other Other +7b2696d1-ba1e-4fae-aaf5-277c3e981761 1 Other Other +7b26d876-da66-4d9d-b2b5-aea5b037b0c5 1 Other Other +7b272917-8644-4743-a416-73d83e9cc187 1 Other Other +7b272be4-e33d-439c-bcb1-b8c1cb38e46f 1 Other Other +7b2738a9-223a-45d5-9df0-2fc23f4994bd 1 Other Other +7b273bab-9e31-4d26-b8a5-fc72e94b6ba1 1 Other Other +7b27652e-498e-4c99-8aa6-ecae4c22afe9 1 Other Other +7b277c6d-74cb-47e6-98f2-c6c40a6d5e3d 1 Other Other +7b27eba0-cfd8-45f0-8947-0b7fe684d897 1 Other Other +7b27f562-27ea-4b77-9637-69e74a616da6 1 Other Other +7b2828e0-b6ed-4385-8106-35f20b440799 1 \N Other +7b282f0d-5a10-4367-8900-bd0a0a69f633 1 Other Other +7b28496c-1346-49d3-9f73-ff80af2c8ad3 1 Other Other +7b286171-a533-492a-bcf8-57626930e1f1 1 Other Other +7b2878cc-0052-421f-9d74-cb69705c3aa4 1 Other Other +7b28953d-3e97-4fe2-bbc3-81126f096251 1 Other Other +7b28ae89-1fc7-4372-a333-127213a52371 1 Other Other +7b291adb-de12-40b9-aed8-be6de530f785 1 Other Other +7b295d60-41e6-4ffc-a6ba-53767df6a41c 1 Other Other +7b297026-3231-40d3-bc68-77148509a704 1 Other Other +7b29a88a-1fb7-48e9-9c14-bb7d78a1350e 1 Other Other +7b29fec9-a290-47fd-8545-fcdea5562fff 1 Other Other +7b2aa63a-2d73-4e3d-b4ae-5d6255966395 1 Other Other +7b2aaa9c-022a-4142-a9bc-ff492451ed45 1 Other Other +7b2ac93c-5f77-4253-b813-123043b51849 1 Other Other +7b2adff3-4a9c-48e2-9218-8e43a1f9d42f 1 Other Other +7b2b150d-8d51-4fb4-905b-12aa5d58c25d 1 Other Other +7b2b29d5-d3dc-4f36-8abb-4cde5b131948 1 Other Other +7b2b41e9-31f0-48a4-b605-2b4f76830185 1 Other Other +7b2b7fec-04e4-4d8b-a106-d11fe78819dc 1 Other Other +7b2b9970-7bab-4c1e-b87e-b7877b4caff0 1 James Other +7b2bd2e4-cdb6-4042-9191-b482021d348a 1 Other Other +7b2c7a31-6ddc-4700-af39-e4d35f4e9cf8 1 Other Other +7b2d1363-f46d-4dbb-80d5-6f3f28d8d8be 1 Other Other +7b2d2876-ef91-403a-a428-3a9fe50ec8ae 1 Other Other +7b2d739b-5b2a-4a80-b513-ed48a76252b8 1 Other Other +7b2d9427-6524-42e8-88be-5fa09ecb95ad 1 Other Other +7b2db293-e447-4a2a-aced-6a1af20e5ad2 1 Other Other +7b2dd68f-54aa-478b-835a-a8f8c13fa5ee 1 Other Other +7b2dd9b7-cc59-401a-b321-d830efffa7d8 1 Other Other +7b2e33e7-7fc1-449e-8fb4-d01a0cf281a4 1 Other Other +7b2e3b45-0d60-431d-8ec3-76e499eaefca 1 Other Other +7b2e4a9f-e3da-4d07-afd2-8a3cf03d6301 1 Other Other +7b2f019a-c60e-4863-91ac-f62a39a78bbf 1 Other Other +7b2f2cba-0851-43e3-b9a0-ca6286f0d18a 1 Other Other +7b2f2d20-1438-4254-b0f8-9ced6834ec47 1 Other Other +7b2fc22e-2ce7-4c21-8ca5-804698c1e1b8 1 Other Other +7b2fd605-39f9-497e-8a79-0f05a8465dea 1 Other Other +7b301c01-052e-40b8-b627-bb7ff3bfc3e6 1 Other Other +7b3041fc-9a74-4851-b481-bdd6d1979602 1 Other Other +7b307ff6-5876-4d5c-84c7-f5c91d8accb3 1 Other Other +7b30a2d0-b27b-44ba-b6ca-0b3f03457b00 1 Other Other +7b30c5ce-9085-4db3-88d0-8a1d23137830 1 Other Other +7b315c60-a7c5-4704-8dcd-d3cee87acbee 1 Other Other +7b3183ff-91ad-46e4-bc87-932f38620057 1 Other Other +7b318d60-5f33-4be2-a4e8-41ff94902686 1 Other Other +7b321218-9ebf-40d0-9264-6e65b4279884 1 Other Other +7b333f53-fda0-4906-b676-ac9006862667 1 Other Other +7b335838-64a9-466d-9b9c-10c0c037f4b3 1 Other Other +7b3374e6-0f8a-4e49-8103-7bad8e373c25 1 Other Other +7b33ccd1-fcb9-4577-aebd-61b88d62af02 1 Other Other +7b345993-dba2-44a7-9783-3da0b637c4c0 1 Other Other +7b346b4c-966c-4e26-91f9-5862313e4a44 1 Other Other +7b348081-1cc7-4471-9da3-a6bbf55ed6b1 1 Other Other +7b3492dc-1d5d-4250-bb7b-39835b70a033 1 Other Other +7b34a2af-9a74-4001-89f8-bb0361df8a09 1 \N Other +7b34caa9-f407-46b6-8f0c-b40dccae3224 1 Other Other +7b34d219-2d13-498f-9c00-797d519433c3 1 \N Other +7b34dc8a-94fb-46a3-a798-d056cdfa5d2d 1 Other Other +7b350ae3-063e-4682-aa85-331c0f6339c6 1 Other Other +7b3516e7-4018-4625-ad64-ac2d8496cba2 1 Other Other +7b3535b8-abbb-4712-bb30-c4e0b072eb17 1 Other Other +7b3538a1-880f-479f-9e92-30ed689e8f48 1 Other Other +7b355529-eb8d-409b-bea1-8572bb8aebc3 1 Other Other +7b35582a-8dd3-47f7-9f86-b1cc62f7205a 1 Other Other +7b3558ce-0297-46cb-a452-ff14d4387525 1 Other Other +7b35793d-5c00-4cb3-aaa8-0edecd7f585c 1 Other Other +7b35c49b-4e20-4fa6-a142-97c5ce89a314 1 Other Other +7b360410-c192-42aa-b13c-3bf87696ea7a 1 Other Other +7b36751b-2fcb-4707-864f-4b12c2a767a4 1 Other Other +7b36a1e8-4eb2-43ba-880f-7e6d96f633a0 1 Other Other +7b36a4e0-3ad1-4a93-b5dd-32c3abf1eb93 1 Other Other +7b36b1ff-523f-4626-b088-33da8d8db14a 1 Other Other +7b3715d3-f85b-4cf1-b4db-334a4f1029ce 1 Other Other +7b373527-b544-4470-9ea1-fd5fe42ac7d3 1 Other Other +7b38716e-e0e1-4882-b7ce-cefcf4af9e0b 1 Other Other +7b3887fd-88e1-45dc-ba83-21ed07e73b60 1 Other Other +7b388e1c-1961-470a-b03b-2a6827e91451 1 Other Other +7b38ec44-8e8f-4662-8bd6-20bcaba4b368 1 Other Other +7b38efe6-5d0e-487b-a6dc-6c41993aebb5 1 Other Other +7b38f250-65ac-43ac-8fde-85bb9f5174db 1 Other Other +7b3907ea-1a0c-4f27-a8b1-14b563251d5c 1 Other Other +7b393cd8-e8f4-450e-addd-97c4aa75a8a4 1 Other Other +7b393dd0-1837-4cee-875a-fbaeff57d371 1 Other Other +7b395d34-616c-496b-bfe5-d4705bac5fa1 1 Other Other +7b39de51-7373-4fa7-83ec-ccfa67e17cc4 1 Other Other +7b39e31a-ec9a-477a-a3b5-aeba47aebe37 1 \N Other +7b3a2e2b-ef2b-4670-8c02-256927f32f53 1 Other Other +7b3a5df0-e909-4007-a5a7-599066967c57 1 \N Other +7b3adafd-421d-4058-a662-b00878788f3d 1 Other Other +7b3af189-fe44-4f19-9ef6-efa5862f1ba6 1 Other Other +7b3b052a-2776-471a-8b9e-939925c57b07 1 Other Other +7b3b20c8-2ede-41b0-bb0f-0ee1f5c82d8c 1 Other Other +7b3b3194-e159-48d1-8715-bf3406a6c153 1 Other Other +7b3b706a-8cfd-4a73-a91c-0e2977d8218c 1 Other Other +7b3b716c-837a-4bb9-82a7-ddbe08fd6f97 1 Other Other +7b3bb431-49ab-40c9-b5b0-02aa1eecae35 1 James Other +7b3cd07b-8077-4f6d-b4de-8c453c7dbf33 1 Other Other +7b3d020c-82a6-43aa-9879-b4ac897899ab 1 Other Other +7b3da74b-40c3-439d-83d7-dab414950396 1 Other Other +7b3e437a-ca42-431d-945b-50799b38f414 1 Other Other +7b3e79e4-7e13-4c5b-938f-9b48cc1e5287 1 Other Other +7b3e974c-5130-4e28-a271-2a57fa53ff79 1 \N Other +7b3ea30c-23c1-4f8b-b79d-69d292564a30 1 Other Other +7b3eb08f-36da-40f7-a950-24583b6882d8 1 Other Other +7b3ec61a-41f7-49d7-be84-711d8eb9e48f 1 Other Other +7b3f028c-0164-4916-a1bd-ed41d4041f65 1 Other Other +7b3f27f8-cc8d-4201-9cd6-85c5d8347c24 1 Other Other +7b3f2f52-1045-4f3c-bff5-8008ac73e6e3 1 Other Other +7b3f7955-5c7d-44ad-8307-1adc699ec54a 1 Other Other +7b3f988f-3915-4007-b8d8-7ff6f41e0278 1 Other Other +7b3fab94-9fd0-4c1f-b486-7a6d517a9603 1 Other Other +7b3fad55-9135-4457-bbf9-98a77ff846dc 1 Other Other +7b3fe2e5-66ec-4ef3-a0ab-866e4313c300 1 Other Other +7b3fec56-64f4-436a-9790-3042e620f4a8 1 Other Other +7b401b42-71d6-4a05-85c5-845e4e3f677a 1 \N Other +7b4038ae-29b7-4bcf-8bb8-201df0e594f3 1 Other Other +7b40ab0d-3879-4fd2-891f-ad2441ec8357 1 Other Other +7b40e015-54c8-45fc-82d9-34c7f77f78a1 1 Other Other +7b415331-9527-41ff-94ff-d4299cc731ab 1 Other Other +7b418902-3e1e-4b0e-bed6-586d74ea2d67 1 Other Other +7b41a503-7003-44eb-b403-7f259e50a272 1 Other Other +7b4209e8-9a56-49d3-b749-b8681a620729 1 Other Other +7b4242ad-95b8-4a2b-b32c-c0a3f67e04a4 1 \N Other +7b427058-a819-4ffc-8e2c-f9289814c826 1 Other Other +7b42eefd-9490-4ca3-baca-699faf594d98 1 Other Other +7b431f66-c4b6-485f-b289-e32fa396e279 1 Other Other +7b43acfb-8dee-4d2d-8a45-9b76d008e403 1 Other Other +7b43bde6-b3df-48c5-bfae-4ca7c0fefbcc 1 Other Other +7b43c25a-3bad-492a-9e21-b20be30d70c0 1 Other Other +7b43c3d2-58d3-48a6-8dcf-000d3a12a8a7 1 Other Other +7b43c534-79e4-4297-935d-5db0dde44bef 1 Other Other +7b43c71b-72f0-447f-9029-f9618cf6b010 1 Other Other +7b441c00-0258-4134-b955-f14fe5ce27ff 1 Other Other +7b445030-e83e-404e-8b46-721aa9ab652b 1 Other Other +7b446c9d-5d3e-4768-aa42-536635b71bb0 1 Other Other +7b447d39-c763-46cf-a9ce-00649e9e1d57 1 Other Other +7b44ab73-1732-48f4-82e3-85f36d859ccf 1 Other Other +7b44ca5e-3ffb-4d55-96e6-79347c79299e 1 Other Other +7b4509dd-1fa4-4461-a7bb-1602229cacbf 1 Other Other +7b45176d-2a51-494a-b15a-98151954e2cf 1 \N Other +7b45779f-f1f5-478a-baa6-4b82e0109dc5 1 Other Other +7b4595d9-e2d8-41a2-a3b7-a7b934b16f81 1 Other Other +7b4599e0-e369-48d6-9fa1-bcaae52eba85 1 James Other +7b459dfd-b15d-4193-8d82-7727c6245a70 1 Other Other +7b462f1a-b9cc-4c8b-858d-a74f522222b9 1 Other Other +7b464e6e-94a6-44a3-ad93-65ebd94a535b 1 Other Other +7b465a96-396b-4369-8509-bfe3b54e3972 1 Other Other +7b468859-a659-4fb0-ac09-1c8a571bc907 1 Other Other +7b46d250-2940-4ba7-aba2-0db6d2905cc3 1 Other Other +7b46d667-ecce-4372-bffb-fbb1da42020d 1 Other Other +7b46e62b-0779-4c6f-92f8-04f2a7ae54c4 1 Other Other +7b474e88-8025-4abd-bb22-d9050dc99e8e 1 \N Other +7b479e01-41c7-4769-8ad1-cb6cbae5c090 1 Other Other +7b47a092-2868-43a8-8d64-1fb9d84b2726 1 Other Other +7b47e9b9-9bda-4228-816f-ccc0001acf8e 1 Other Other +7b487b57-0d5f-42b0-b198-d32e24d28ef2 1 \N Other +7b48e572-1b29-4e20-85cd-00ff7a2e1b57 1 Other Other +7b493231-b5c8-4b70-b1d3-7e62c75ba0fa 1 Other Other +7b493e9e-e8da-4363-afba-13891242a551 1 Other Other +7b494cee-050a-47c6-be3c-2b817ca8dc21 1 \N Other +7b494f9e-789a-41d5-86d1-5fbb0ef908f4 1 Other Other +7b496a66-f219-498a-bd19-f70785108f3f 1 Other Other +7b497ca1-b030-4690-a035-279429624b70 1 Other Other +7b49bf48-9601-4ecc-b888-5166b2cc7892 1 Other Other +7b49c4fe-1edb-49d8-aa26-3d9c15d3a89e 1 Other Other +7b49c5d8-c13c-4e4e-b0a2-962900628f35 1 Other Other +7b4a7837-f325-42f5-99aa-decd2b8e8756 1 Other Other +7b4a890c-b81c-41f2-9e75-b4b593615908 1 Other Other +7b4a9a4f-9a66-4484-af60-7b8848d8e999 1 Other Other +7b4aa1d1-ea0a-4585-8916-cfcc2fe681e8 1 Other Other +7b4ab4d3-b0dc-4f55-8e3a-ceedad97a18d 1 Other Other +7b4acc70-99b4-4695-aee9-88358ce35093 1 Other Other +7b4af3d9-26d8-450d-ae42-5231978e3c36 1 Other Other +7b4b04bb-4cc5-445f-8bcf-55333110d15d 1 \N Other +7b4b2fea-0a1e-4ab7-8fca-0dab1302cd01 1 Other Other +7b4b31c3-dde5-4b3f-89e2-cced66eaf024 1 Other Other +7b4b71bc-3f23-485d-86d5-f16ff1525d54 1 Other Other +7b4ba33e-f504-4a6f-b655-feb25477768b 1 Other Other +7b4be1c3-7de2-4624-80d5-22d8d9754fc0 1 Other Other +7b4bf4dc-7d4e-4e70-acd1-001cb97babdf 1 Other Other +7b4c9d1a-790c-4d8f-abb3-b59904d72fcc 1 Other Other +7b4ca012-981b-455a-b933-8ef79e169eb6 1 Other Other +7b4cb793-5eef-4fe3-8e44-190db09f979b 1 Other Other +7b4cdb0b-9ebe-40d9-b3f1-c801544c0d0c 1 Other Other +7b4cdfee-b78d-4a5f-8f3d-fd8d0d932aad 1 Other Other +7b4d2cf3-957e-4f14-a2be-1eba1fd37e08 1 James Other +7b4d3cee-b5f6-405e-9b95-90b557f7462b 1 Other Other +7b4d43dd-e712-43dd-891a-f2fe4f858fcf 1 Other Other +7b4d9574-bf6e-4795-9f6c-0beab5675916 1 Other Other +7b4e14ed-764b-4d4f-8094-b39d56979c53 1 \N Other +7b4e1c8a-03ed-4084-b4d2-f7d00f25e895 1 Other Other +7b4e6d7a-35a4-4dc2-9d99-144ad8b2aef5 1 Other Other +7b4e8648-068e-46cd-88fc-527a24217481 1 Other Other +7b4e947c-19c7-48e0-bc52-3ef7dee2a67f 1 Other Other +7b4ef068-6da6-48a9-abe8-07bb784cf957 1 Other Other +7b4f2f65-d6b2-4b61-b453-bd5ff8e2e10b 1 Other Other +7b4ffa7e-eacf-4b6d-b968-f53c4123076a 1 Other Other +7b50756e-0634-46d6-bd5f-e20047db12e4 1 Other Other +7b5085fc-1273-4ec0-aedd-3f5b7370c86d 1 Other Other +7b50e968-a171-4163-8236-a600ca63195f 1 James Other +7b50f0fb-73b6-48c4-b340-480cd9104091 1 Other Other +7b5105fa-e2cc-4ebe-be82-140cb1f02951 1 Other Other +7b51185b-03eb-4b3f-abe0-2c3265e5dc72 1 Other Other +7b5120b5-951c-41d8-a99b-69b2da2385ce 1 Other Other +7b513bfd-7332-4628-ad85-6bb367bb498b 1 Other Other +7b51a1e4-b96c-4904-b56d-0cd3ace1d82b 1 \N Other +7b51c002-251f-47ce-8d2c-ee89a80261e5 1 Other Other +7b51cd2c-ae38-444a-a5c1-4e0c18c7d5f3 1 Other Other +7b51edfc-da83-459d-986c-654dd4feedba 1 Other Other +7b5226a7-b872-43db-8fc4-2aad9a17178b 1 \N Other +7b5255af-53ad-4f80-806a-295201ecb4dd 1 Other Other +7b525671-e9b7-4b6b-a8b5-96fe4390e849 1 Other Other +7b527551-0686-4165-995b-8d1c0e2006ec 1 Other Other +7b52843c-83f9-4ecf-8ec9-b17d01ba1d8f 1 Other Other +7b52b1b1-888a-4b95-bfb6-6c3949df676b 1 Other Other +7b52ea59-9207-4621-8750-c1b9c6c70de1 1 James Other +7b52ed0c-9881-4675-bd01-89eac18c98f2 1 Other Other +7b5332ef-0124-48f6-8960-e07cfe061965 1 Other Other +7b54dbad-52df-46b2-bb15-aeb6f66b3c56 1 Other Other +7b5595e7-dfa0-44e0-b5f3-9f130e8153a3 1 Other Other +7b56564a-98bb-459a-98ca-423cd41d0b87 1 Other Other +7b56d519-7d08-4fd5-8230-c73f3a9ca91a 1 \N Other +7b57267a-041d-48da-8dff-1b4a4a5876e6 1 Other Other +7b575f04-c992-419f-9cd6-2a2c4027035c 1 Other Other +7b576183-27dc-4a20-aad6-ac1f56acff95 1 Other Other +7b580189-5ee9-49c9-84c4-987e158f554e 1 Other Other +7b583727-6dc7-4c3d-9210-871feab7f246 1 Other Other +7b58f3e4-2301-43c8-99f8-683d9b24833b 1 Other Other +7b590f5a-2225-4406-a434-34f2d2dc163a 1 Other Other +7b595ea3-1cec-4493-849b-7b220bc9294e 1 Other Other +7b5978f7-4644-46aa-9659-bc179655a754 1 Other Other +7b59a664-9ec7-49e8-9fa2-0e85a8ed9605 1 Other Other +7b59dc98-c628-4ae3-bae8-0385087395bf 1 Other Other +7b5a2713-3a10-482e-964c-78f962d17d72 1 Other Other +7b5a408c-3d06-4e1a-8257-d6e531f2191e 1 Other Other +7b5a71b5-e6f2-414d-9440-d84b560dcfb8 1 Other Other +7b5a987b-20c5-4e9d-8b06-721f365c25b6 1 Other Other +7b5aa04b-5292-4661-a3d4-9ba140130496 1 Other Other +7b5ab014-ffd7-4110-aadf-4a273d9402fe 1 Other Other +7b5ab3ae-fd4b-4cba-9481-9293fa72ba55 1 Other Other +7b5acf5b-b7b8-431e-b662-383d02b80deb 1 \N Other +7b5afb38-564b-4d90-b439-72a4bffb9227 1 Other Other +7b5b189f-8fea-40b6-bbc2-853c0bb95274 1 \N Other +7b5b6040-f295-431c-96b7-7e47194636a4 1 Other Other +7b5b8db9-c0d2-42b3-92e4-9d4a12df814a 1 Other Other +7b5ba49c-0b3e-11e8-8bda-fa163e8624cc 1 Other Other +7b5bf819-2fff-4e77-8162-d26b9c0d7dba 1 Other Other +7b5c297d-6a9c-4beb-a165-5a129b7e007c 1 Other Other +7b5c7774-3501-404a-bf95-3abd686ab520 1 Other Other +7b5ca550-2e8f-49f0-8eeb-3b25366be5e7 1 Other Other +7b5ceff0-3926-475b-a030-f285f8b4f522 1 \N Other +7b5cf293-af73-4f40-8006-553049cb9feb 1 Other Other +7b5d0f8e-f224-4435-9250-a8ee1728fc54 1 Other Other +7b5d57f2-b554-4c33-ba1e-82b27bbb626c 1 Other Other +7b5d7caa-4142-4cc5-8f5b-5773c3c1aca7 1 Other Other +7b5d7ced-973b-4bc5-a60b-8ca2d820e836 1 \N Other +7b5db518-bbeb-40cf-ba1c-21cdf98d5a03 1 Other Other +7b5dfc2d-32d9-4783-b1a9-3bfe0008f513 1 Other Other +7b5e29dc-cf09-4147-94be-83df64f12616 1 Other Other +7b5e35df-4085-451c-a9fc-6bc63c22d1ad 1 Other Other +7b5e418f-674f-4ea2-9e48-53d165017c8e 1 Other Other +7b5e99c3-31be-44a5-8532-e79f11d43a18 1 Other Other +7b5ea3d9-ab4e-4b63-b49a-9a16a4f552e5 1 Other Other +7b5f13c9-0d46-49bb-86f9-14a9bc6baa2b 1 Other Other +7b5f2ef6-616b-4176-bd7f-45421142501c 1 Other Other +7b5f4f6f-d069-491a-a835-864bf832a341 1 Other Other +7b5f5cfa-0259-4c6f-83ea-8b1d0b0d4ad1 1 Other Other +7b5f962a-77af-4a5f-9ef5-58af9c90f2f8 1 Other Other +7b5f970c-1fd5-450c-b478-416b23f3cf8e 1 Other Other +7b601aa6-63fa-4459-8c9d-1c34533ebc23 1 Other Other +7b607662-f5f4-4b4f-83c8-29c904b8e7b7 1 Other Other +7b607754-cce9-4c09-9da6-9d1bd63a2bb8 1 Other Other +7b60b615-affb-4ad9-94cb-8e99f038c863 1 Other Other +7b60ebe1-d7dd-4271-b90f-cb4cb4f57146 1 Other Other +7b6123c9-a7d8-461b-af24-3c8f93b0956a 1 Other Other +7b614926-e509-4bb2-b2e0-f7be0866d983 1 Other Other +7b616227-6bc6-42a4-b286-17c964a5bade 1 Other Other +7b6166cd-6878-48e7-bc8a-d7a3dacdd262 1 Other Other +7b6168f0-1542-496c-9c15-167227ac49cf 1 Other Other +7b618981-a274-4918-ba36-0d58fce34faf 1 Other Other +7b6279a9-a1de-4fa6-aa89-09b2ab661387 1 Other Other +7b629aa2-c5f5-4c77-bd0f-fbb875925e31 1 Other Other +7b62d42c-3a3f-42ae-b99e-8bf23e163557 1 \N Other +7b632a86-cc75-4a60-838e-3c668b15d242 1 Other Other +7b633702-6f16-4f8a-8a94-c98dc83a6bc1 1 Other Other +7b6357d1-e01e-4307-bd3f-56188ee677e4 1 Other Other +7b63ab3c-f31b-4168-8203-828b627753ae 1 Other Other +7b63f301-ee81-41c3-8e38-e1fff694ba99 1 Other Other +7b6484e1-6b6f-41cb-884e-37c3dc6e3b96 1 Other Other +7b648bcc-f3bc-4256-8bb0-3518047bebff 1 Other Other +7b64b008-f735-4475-8408-21a4331638b3 1 Other Other +7b64bb57-637d-4948-afb0-380d4d175f07 1 Other Other +7b6511fe-3afe-4196-901c-948784bb4479 1 Other Other +7b6532c6-55c0-4c62-b556-c2a4f25ecd2c 1 Other Other +7b654b47-5ac5-49d5-bb18-748a773d216b 1 Other Other +7b654e21-1ff5-4827-a776-428aad50dd2a 1 Other Other +7b657196-a11c-4e9c-a1d2-c84a601b7e0e 1 \N Other +7b65760e-fa7b-43ad-9b9c-c898ea539801 1 Other Other +7b65848b-7bb1-4923-87f0-b7da28c73410 1 Other Other +7b6591e0-a48b-4c01-98fd-bb92ba83efc0 1 James Other +7b65a33e-a872-4ea7-87a5-d03c7632b39f 1 Other Other +7b660ce4-c7cd-4117-9e50-550223fbd1e1 1 Other Other +7b6619f1-4348-4e21-b49d-4fea0494e61e 1 Other Other +7b662431-55de-44ae-a1b2-e6a524df342e 1 Other Other +7b665872-1c14-40c3-a78a-da7892a9dc75 1 Other Other +7b666b81-e8aa-428d-89c4-2449f2723fc7 1 Other Other +7b666ead-8d49-4e62-8ead-a4ec9a841294 1 Other Other +7b667696-1754-46c1-a15c-a51e5fc2103d 1 Other Other +7b668e14-8fc9-4914-b2ef-e5b845dec79d 1 Other Other +7b66b01f-7021-464a-bb2d-5b7ab93b7270 1 \N Other +7b66b287-faa6-4b11-a820-01d6cf38d2bd 1 Other Other +7b66c016-57b6-466c-a00c-5c6385bc19c1 1 Other Other +7b66d332-ee44-46d5-a2dd-d05d28879a21 1 \N Other +7b66fffd-04a4-49d8-9876-096bfdf96252 1 Other Other +7b67b540-d79d-493e-8263-f8986ff10bf0 1 Other Other +7b67d136-818c-438f-a6bc-6a896662aaf3 1 Other Other +7b67ffdb-7831-4c45-8c7e-92b94408cce8 1 Other Other +7b68409e-194c-4d9e-80c7-0e97c2ab1b9a 1 Other Other +7b686848-95a4-4447-a6e9-c6ea6aa7c9ec 1 Other Other +7b686877-e88e-4fd4-ad2a-8844b210cd54 1 Other Other +7b6881c7-d51c-4c72-803b-6edddd594d94 1 Other Other +7b689390-1b6b-11e8-869b-fa163e8624cc 1 \N Other +7b68b725-7c85-45ed-86c7-9a0cc7838c34 1 Other Other +7b68bbb0-af74-4090-b16f-a6514ab01d8e 1 Other Other +7b68e179-3bb1-4005-bfee-9d813d161df0 1 Other Other +7b68e6e9-71b4-45bd-9fae-ae420a663fa7 1 Other Other +7b68e9c4-6344-400e-bd4f-8610f188d4bc 1 Other Other +7b69345e-c64d-4ea6-91a2-78bd3e6c55b9 1 Other Other +7b69419d-a5fd-427d-8c63-97bcb8f75aa4 1 \N Other +7b695975-41f0-4f53-9158-d375d5053d7e 1 Other Other +7b6984cf-c0f1-4f61-903e-1371f6b6c145 1 Other Other +7b69a171-966a-453e-9a2b-8bf1331d70fc 1 Other Other +7b69f441-8a40-409b-a8de-5efaba6d9c8e 1 Other Other +7b6a01e5-0858-4659-9b6d-90310ae0f9db 1 Other Other +7b6a498c-5d3b-4bba-a446-24284454abcc 1 Other Other +7b6a62f4-f371-45ef-9cbf-2694a55513e1 1 Other Other +7b6a6a14-b418-467c-85a5-5092aa5a2bcf 1 Other Other +7b6a7866-a184-44f5-9487-8d75e6a165ea 1 Other Other +7b6a8019-38d2-4404-86c7-ba20ea488e4f 1 Other Other +7b6a8e0b-7e9e-43d3-85c1-045bdabd1d34 1 Other Other +7b6af909-c1ca-4992-bb02-1ef10fe5cbfc 1 Other Other +7b6b0221-7d71-4ea7-aeab-8dba064bdf59 1 Other Other +7b6b155f-84e8-4ef1-a0fe-daedba074756 1 Other Other +7b6b6a99-46be-4467-a131-5afb70187429 1 Other Other +7b6b6f60-303d-4121-a528-387c6dd410e6 1 Other Other +7b6b8d52-7098-4e1e-9b56-6b3059e734f1 1 Other Other +7b6befb6-fd03-45e7-952b-c0fa363936f3 1 Other Other +7b6c674e-c923-4111-8640-cd2a6b68433c 1 Other Other +7b6ca5e2-150f-49c7-a3ef-4ec9db4838ec 1 Other Other +7b6cd6aa-24be-4c11-b9b6-809a172eb30f 1 Other Other +7b6ce76f-da74-4c0a-a0c1-3e5bf20e52a8 1 Other Other +7b6d1a7d-5ee8-42d3-aabe-e1644160baef 1 Other Other +7b6d332e-063c-4c0e-bd9f-75cce027aba7 1 Other Other +7b6d3691-6afb-4a90-8a05-b800bda92c0c 1 Other Other +7b6d4daa-dd6e-4c95-aa66-d6b258f17490 1 Other Other +7b6d7812-4aea-48e5-b89d-bff9385f9359 1 Other Other +7b6ded01-e957-40a5-bf16-c9ec1b6450b3 1 \N Other +7b6e1a9c-d34e-4d0c-9c7b-fa4cc941edd4 1 Other Other +7b6e497b-6cb3-46a6-8092-0951626082a6 1 Other Other +7b6e746b-d7a6-4d45-954d-edaece8478f1 1 Other Other +7b6e764c-1914-4ef1-857e-c035b8279912 1 Other Other +7b6e941d-36a4-4549-8951-d6ae8ee4f464 1 Other Other +7b6ebc60-7234-463f-92a2-1e22e7086887 1 \N Other +7b6ed249-ffd7-46e8-a4ad-ad107474ed84 1 Other Other +7b6ef479-39d5-435e-86d9-e17d311e61d2 1 Other Other +7b6efe80-2658-49ef-96f7-323bece31cdb 1 Other Other +7b6f1dc3-19a6-466b-ad9b-4b34d59a2b78 1 Other Other +7b6fdc57-15b1-4854-9739-ebbad67986fb 1 Other Other +7b6ff6ac-f6be-4b19-b137-f6a5c652f7df 1 Other Other +7b703f2e-6dad-4262-a00e-7a0d958af870 1 Other Other +7b703ffe-ed65-4868-96fe-23e271505741 1 Other Other +7b7044e1-b553-4c43-9009-ac21d5d2146e 1 Other Other +7b707d40-c5c3-4713-b3ae-7a75d120ceff 1 Other Other +7b70c940-eaa8-4ca9-95d6-134df4ccb5fc 1 Other Other +7b7119a4-8018-4f09-8a37-da7f77aed188 1 Other Other +7b711ea5-ebe4-4a04-a67a-77503f179083 1 James Other +7b714164-86ac-43f7-8fcd-390b54250cc8 1 Other Other +7b715aca-1785-46a6-820d-48138019dbed 1 Other Other +7b716661-2a27-4573-8218-8295ef650e5e 1 Other Other +7b71d140-a507-4533-8704-3b69b7544f50 1 Other Other +7b71ff74-9fac-4496-b2a7-8c497298392c 1 Other Other +7b7285e4-fbff-4f4e-a74d-d96be6993887 1 Other Other +7b733d8a-5054-47d4-ad01-cb56dfcb10de 1 Other Other +7b735758-7d2c-4f60-8a10-258f56c53c36 1 Other Other +7b744ca8-d21a-4994-a20c-441f0ec228a1 1 Other Other +7b745ea8-d33a-48e6-a8a4-28987ff4ad3e 1 Other Other +7b74630b-9347-4138-bc3a-2ef73c1ff186 1 Other Other +7b74b0f5-d79d-42f8-8c09-dcf61c0420f0 1 Other Other +7b74d252-6140-4568-9e05-62c38111ff4b 1 Other Other +7b74d55f-3bf6-4461-931f-dc36cdab1a4c 1 Other Other +7b750ead-e8c7-4320-b3c4-d902ab270311 1 Other Other +7b751df1-1ff6-4d4c-adbf-c638a5b77464 1 Other Other +7b751e9d-64ad-480b-87fc-95d7f27d115f 1 Other Other +7b7584c7-512a-49e9-bb27-8db51f73bde3 1 Other Other +7b759317-1f09-4c8b-9513-75268c5443c2 1 Other Other +7b7598cf-75b2-4916-b043-bcf56ef44e8b 1 Other Other +7b75b298-ac16-4629-96e2-dd9bcfd758b5 1 Other Other +7b75ed84-03da-4cdd-9b66-7d9eaca51d88 1 Other Other +7b7624cd-2a22-4b80-a2d9-05664b58d222 1 Other Other +7b767023-abb1-4a7c-bae9-8aaa943adddf 1 \N Other +7b76a907-d084-4b56-acdf-278118f5c348 1 Other Other +7b76ad59-8d54-4538-8ace-06bb65b04017 1 Other Other +7b76d127-d065-4a8d-a1a7-2bc3d6c52183 1 Other Other +7b76d66d-981f-4ac9-b177-532d04b1e445 1 Other Other +7b774fc1-991c-403c-86d5-582b9fb50814 1 Other Other +7b7762f4-434d-40bf-bd34-b8adb7fab6c4 1 Other Other +7b78152e-cc66-425d-ae57-e33c4bb5b56b 1 Other Other +7b7829f7-3696-4c4a-8a53-d2cc9287b288 1 Other Other +7b78425d-be2c-45e5-b0c7-a42f7a8ce31a 1 Other Other +7b78a14b-dba5-4a61-8823-435e7fee4eb9 1 Other Other +7b78b381-4ee2-4cd6-924d-ebb21edac232 1 Other Other +7b78fe80-5828-49af-9f95-2549948a0e65 1 Other Other +7b791ad9-e9b1-4fc1-b7a1-48ae11d2d048 1 Other Other +7b79b4cf-6c2e-4baa-a3b4-066af7bffec7 1 Other Other +7b79ba84-98f5-4245-8a0e-7b6ccb001d74 1 Other Other +7b7a8450-7a35-46c7-8182-2d645aef3650 1 Other Other +7b7abb9d-af10-4824-85dc-4bc6f1ce87d9 1 Other Other +7b7aeacc-5feb-4e5f-8c7f-0dcb72413bf9 1 \N Other +7b7b0915-8eab-4bf7-835f-c5f3e9eba4b3 1 Other Other +7b7b5ed0-1e8f-40e5-a6e1-c81f98a0a14d 1 Other Other +7b7bba60-cd09-47df-b762-4867ff5aaf18 1 Other Other +7b7bd90e-0ef3-4c9b-8004-5aaffcd90580 1 James Other +7b7c09fd-01cd-47a2-888e-5e354763a1da 1 Other Other +7b7c150e-c76e-4d99-99cc-023a076cc3e6 1 Other Other +7b7c1d77-669d-440e-a796-56b583b3e584 1 Other Other +7b7c2f0c-e8e4-4d6f-8edc-2cc8d7e8343c 1 Other Other +7b7c45e9-e07b-401d-ba7b-4f7aac70fa51 1 Other Other +7b7ca531-d18f-4c6b-98ae-2c623c5c8efd 1 Other Other +7b7ca83f-bf5e-4c76-b7ab-00592aca8436 1 Other Other +7b7cefbb-a554-4c78-a761-d1b7e238ad40 1 Other Other +7b7cff27-8202-4cc9-9f5e-bd0120b02841 1 Other Other +7b7d2060-d5be-4941-a93a-7d4c7a750595 1 Other Other +7b7d2706-1b6b-11e8-8a6e-fa163e8624cc 1 \N Other +7b7d7e74-ba9c-4345-9af7-46e4f1d77268 1 Other Other +7b7d7f71-7ebf-4309-8a1b-1211da96b2bd 1 Other Other +7b7d8014-b43c-48d8-958a-e72375299ef5 1 Other Other +7b7de5b5-ccec-49fe-9563-e8ed947e964c 1 Other Other +7b7e041d-283b-4cde-82b0-31630e3a2bf1 1 Other Other +7b7e2f87-e377-400e-8a81-a81a6853b484 1 Other Other +7b7e7018-58f0-484f-9040-3804ca9e7ab2 1 Other Other +7b7e871e-7527-4107-a295-6e5c4efccbb7 1 Other Other +7b7ea405-9f27-46f6-b1cd-3f8a9384db8f 1 Other Other +7b7ec56c-bfc1-11e7-b9ef-fa163e8624cc 257f6774-64eb-11e7-954b-fa163e4dd901 Other Other +7b7f2a33-e196-46ff-b3af-b5b348457489 1 Other Other +7b7f3a3d-f411-488c-98c1-0ca54a07be23 1 Other Other +7b7f7fe3-ec2b-4b98-8135-666284fc420b 1 James Other +7b7fa147-f3b1-40d6-8df2-796382ff78b4 1 Other Other +7b7ff973-2031-49c9-af43-2ec3c169473e 1 \N Other +7b801b7a-7e1f-46f2-8e3c-171ce2c35626 1 Other Other +7b805f26-6a4d-4a38-8c2c-ac46ef5e8a33 1 Other Other +7b807fd7-5af3-4e10-a97f-43129d1ce60f 1 Other Other +7b808a97-7edf-4517-87dd-4a65de24548a 1 Other Other +7b80a34d-8406-4ce5-a285-34a1a45cb15c 1 Other Other +7b80a5af-3ade-4526-965a-c1a9b1f58ec4 1 Other Other +7b80ba64-3e75-4647-8d5b-26316f4fb455 1 Other Other +7b80c7c1-404b-4557-bd56-a8c655cb27d7 1 Other Other +7b81054a-005d-4afd-be65-598c6aa45dd9 1 Other Other +7b8108e6-eac2-4f80-a881-7bbf994a77ad 1 Other Other +7b8136e5-f7c0-4e23-ad92-0f9d56c7a42e 1 Other Other +7b8142e3-a253-4c31-be4d-1d7b05ed1cff 1 Other Other +7b818d4c-1c0a-4e61-a2cb-132b580ef502 1 Other Other +7b81f305-94c1-4d1b-9bd8-ff370439bd7c 1 Other Other +7b81f32d-7f6c-4d7e-9784-dfce0fcc12ed 1 Other Other +7b826698-7075-4cb7-b54a-7f0d97d0b005 1 Other Other +7b8277e5-eb0a-4098-8a48-a0096fa18d6d 1 \N Other +7b82bc0d-7cdd-4c44-be9f-8677840dc89c 1 Other Other +7b832162-74b5-419c-99b8-6a8e739df8a8 1 Other Other +7b8391fe-c922-4a8e-82b0-c0af0304024e 1 Other Other +7b83f3e1-9718-45e0-ba7f-b4c33e2ed565 1 Other Other +7b84061d-1778-41ff-95e9-108eba2735a3 1 Other Other +7b8472ad-f8fb-487a-ab5a-ee462af87d48 1 Other Other +7b84b1ad-aeb2-4ed9-8565-8ec0a5cb25ef 1 \N Other +7b84b35f-7091-4a66-8cf9-757d8c89440b 1 Other Other +7b84cdc3-1bcd-4385-8601-2000f75f6d6a 1 Other Other +7b84ef7d-72ed-40fe-9c98-76ea55de9ded 1 Other Other +7b85066c-4f3b-42e2-bb4b-92a9012c8863 1 Other Other +7b850eb0-e6e7-4598-b9c5-53cbe764ded4 1 Other Other +7b85503e-55e8-425d-af3d-364b1fcf1bb0 1 Other Other +7b855e9b-d6b4-481e-aa33-7ac84058951b 1 Other Other +7b858313-1631-4ac2-8d6b-e69ac2d965d3 1 Other Other +7b85d12a-36a1-4a43-8d5f-fe9d25eccd4f 1 \N Other +7b85dc8f-17ef-4a01-afee-556d341cfebb 1 Other Other +7b85eb5b-7763-453c-b4bc-5ca2aeff2d4a 1 Other Other +7b8649ac-a83e-45f1-87e0-0083add8364c 1 Other Other +7b86613e-9abb-45bd-ada8-d9f7a0c5255b 1 Other Other +7b868bff-f98b-4c97-9e18-e1dd0c4bcd16 1 Other Other +7b86e02a-2995-4841-8d8f-ee9a7b53659d 1 Other Other +7b86e36b-ef9f-4bdc-9592-3d6769c7e253 1 Other Other +7b86f5fa-db10-45da-9fb5-98039db823e7 1 Other Other +7b8701ed-a522-441c-ac4c-469abb3992d1 1 Other Other +7b872f84-8ffd-4728-9941-3888c5250ed9 1 Other Other +7b876e99-b2ea-499d-8f28-be36f6686957 1 Other Other +7b8785f8-0c4b-4875-ad18-e8767a29fbd8 1 Other Other +7b87deac-753a-4cb9-a94e-1ef76b2e88c8 1 Other Other +7b87e999-e92e-4852-9b39-4309928f2374 1 Other Other +7b881647-80a0-43fa-a26e-ed80546e9160 1 Other Other +7b882ade-3bac-4e49-8ffb-3373490cb744 1 Other Other +7b88432b-d8c7-486a-8e0d-cf92841a9aa7 1 Other Other +7b88714d-8953-4afa-8407-f50d8ac8893b 1 Other Other +7b887303-0bd7-49f8-acad-e40ac220ac65 1 Other Other +7b887ea9-aafc-48cf-8d7a-3685ef273270 1 Other Other +7b88cef8-24c2-4fef-bc18-7a8a022bb933 1 \N Other +7b88fbdc-5fb3-43cf-86a9-65b35c9d9e1a 1 Other Other +7b890626-80c5-4dba-bb55-f286ea0cc1a5 1 Other Other +7b8913d9-4888-498c-a120-1c37bc2913d0 1 Other Other +7b894cd9-72bd-4c81-a786-e00ef397c670 1 Other Other +7b896041-fb30-49d7-82f9-ed4ff18053c5 1 Other Other +7b897395-8147-4257-9d41-e2902069ebc6 1 \N Other +7b8a0333-dcf5-4c30-8fd9-fb265a048c8e 1 Other Other +7b8a0351-32f9-4fef-9993-2f954b6c240a 1 Other Other +7b8a059e-ee67-4d02-8980-5ac317087af8 1 Other Other +7b8a1b49-eff4-4951-a496-79e3e6131cc4 1 Other Other +7b8a4ff2-7025-44ef-9612-1db12678a1a7 1 Other Other +7b8a5070-35c8-43d8-93af-90010f54f525 1 Other Other +7b8ac925-a54e-4e74-8409-9b9183435cf6 1 Other Other +7b8af38b-55da-4dda-9430-e15821ecd844 1 Other Other +7b8b03a1-f990-4711-8dfb-dd031dc9eda5 1 Other Other +7b8b191e-b53f-4aa4-9c82-1a8ef900cab4 1 Other Other +7b8b4edd-669a-4206-a013-9ea0ecf8934e 1 Other Other +7b8b5eb2-747c-48cc-bc03-35fa22b731b7 1 Other Other +7b8b6bc0-51a9-4bf4-81de-c5bc523b1ad2 1 Other Other +7b8b7146-5205-4ddf-8515-0f7cdeceaf74 1 Other Other +7b8bf3d7-ae30-4439-b1c7-223cac62e2fb 1 Other Other +7b8c1651-057a-4938-923a-62411ae3131d 1 Other Other +7b8c4580-db21-4fbc-baff-726d3df9bd6a 1 Other Other +7b8c6cb0-ddd2-4a5a-894a-653c7c27cf72 1 Other Other +7b8c7d44-122f-4d0a-b4b4-a8403e3587fb 1 Other Other +7b8ca16a-c575-4334-99ca-7fecd3b59667 1 \N Other +7b8cb08a-8315-474a-8711-2dc663f00ae9 1 Other Other +7b8cbd7f-ac45-4835-b008-6721092f18fc 1 Other Other +7b8cc4d6-c48b-42bf-92e0-31e0669ccf7c 1 Other Other +7b8d39b5-3407-4deb-ba62-0d482140c4f2 1 Other Other +7b8d5b47-b117-492d-bf4e-b324f1db252b 1 Other Other +7b8d603a-a773-4183-83aa-25f04a94647c 1 Other Other +7b8d9ef0-b0fa-4dc2-b5ff-d9d62f2866a0 1 Other Other +7b8dedd3-6328-435c-8c91-57f2796b93be 1 Other Other +7b8e32d0-ed13-4435-8115-c25d4cc8a98a 1 Other Other +7b8eb5d2-726c-4e7b-8157-b9aa045b964a 1 Other Other +7b8ece48-d6ef-44b6-af54-2910c774b149 1 Other Other +7b8ed55d-a89c-46eb-9254-d907201669cb 1 Other Other +7b8f2070-ffbe-454a-a842-f66f462f45ae 1 Other Other +7b8f23ac-a80d-47be-9085-5cea16a56c1c 1 Other Other +7b8f3a40-54a3-400f-906c-6b39e30ff909 1 Other Other +7b8f8553-cdd5-47c3-a5b7-3b4427bb6002 1 Other Other +7b8f8afe-1dc0-4c40-a043-4fa14e92f907 1 Other Other +7b8fa6dd-93fb-43b9-91aa-f5f5c76be035 1 Other Other +7b8fbd54-66ce-4030-a52b-2383d3358b74 1 Other Other +7b901965-f8a3-44c4-b4d7-37d3104d1eb8 1 Other Other +7b903f8a-1201-40e5-b811-c63dd3b99291 1 Other Other +7b90b377-a101-4cd1-9321-798a21be7837 1 Other Other +7b90eead-2278-4321-aa5d-c247f9068b54 1 Other Other +7b9115fc-6c9b-4b55-87d4-c9a2c5275278 1 Other Other +7b911f58-e7c5-4af3-9270-1082abf333d9 1 Other Other +7b915730-b511-4404-a02a-6bf18f296673 1 \N Other +7b918fce-664d-4c87-a24f-f17f857985f2 1 Other Other +7b91b850-21cb-4c14-b73c-8420538d13e6 1 Other Other +7b91c3ae-15ee-4909-b3f7-9a9e048c0169 1 Other Other +7b91cfee-9cb8-4f17-a0c7-0e80dc6f8b86 1 Other Other +7b91e4c5-ebf3-4419-93c0-baa1d6dfb48b 1 Other Other +7b91f479-b81f-431c-89af-732b65e67260 1 Other Other +7b922405-9373-4d8f-b628-98b43b96291b 1 Other Other +7b92253b-c840-4cfb-9db3-62a4ee3a555e 1 Other Other +7b922ca2-6edc-478f-97f2-89d5267d66f8 1 Other Other +7b92597d-407b-459e-aff2-ee6439732c61 1 Other Other +7b925d61-a84b-48b3-b11e-e13cd1b809f5 1 Other Other +7b931edc-cf53-4349-a920-2308a04f316f 1 Other Other +7b931ee7-1f44-46ed-acc9-b102f3482d5e 1 Other Other +7b933e47-0a9c-48b0-9f2c-f924fadf4b0d 1 Other Other +7b934ffb-07a1-4d7a-b19a-71348f20ab84 1 Other Other +7b93b308-49ed-40ff-88aa-615ace5593a3 1 Other Other +7b93ed59-9ad9-4032-be67-2eb7dbb4f134 1 Other Other +7b93ff37-b5ee-4f6f-a4b3-595b29b1c82f 1 Other Other +7b9414d7-3ed8-47e0-b212-8826f9457461 1 \N Other +7b947f03-04d7-4dcf-85ce-b08c69323ff2 1 Other Other +7b94a197-38e2-4cd7-b1cf-229349e4a68b 1 Other Other +7b94f3b8-f3e5-4706-bd8d-e1c16a084cb5 1 Other Other +7b94fd66-bde2-46ae-83ff-d98785e1e25a 1 \N Other +7b95627f-a319-4447-9d2c-aaaafff483a9 1 \N Other +7b95a234-86cb-4d21-bb0d-baa8fc97f0c1 1 Other Other +7b95da95-be76-46ba-859c-82f0a193d768 1 Other Other +7b95fd90-b5b5-439e-a9dd-aa460ed9e0e7 1 Other Other +7b961161-6ec9-43e6-989e-d19e218facc1 1 Other Other +7b9686e7-b7b1-4758-af91-71994ec267ba 1 Other Other +7b97c706-1912-4663-9b11-d8c7e9f96261 1 Other Other +7b97ead4-42d8-4569-af92-58343e90315a 1 \N Other +7b9821a3-973d-452e-8402-7cfe46f23fdc 1 Other Other +7b98523e-4e29-4867-87d7-693fa0993845 1 Other Other +7b9854bb-ab3b-43d2-9c1a-ae37ec561382 1 Other Other +7b99af0d-7be5-41fd-b7d9-7af4ca061fe7 1 Other Other +7b99cfc9-356d-4e9b-a75a-d3de9f55c310 1 Other Other +7b99f516-9bc1-4a2a-a8c4-68ceed85da1f 1 Other Other +7b9a1f06-57af-4a99-a33e-a9ac1d3923a3 1 Other Other +7b9a2e4a-deed-4cd0-a4a2-304831ff3044 1 Other Other +7b9a6346-2fd2-4847-8125-7328566fa46b 1 Other Other +7b9a8938-8390-4617-ba3e-d1f3beeff388 1 Other Other +7b9aaa0e-58d8-4cd5-ab8b-b2b22bc59193 1 Other Other +7b9abe21-2c21-4420-8003-df54694baf3e 1 Other Other +7b9ad7b0-9692-425b-bd92-a66e136a321c 1 Other Other +7b9b99b5-5092-4409-8b93-c721081b1b4a 1 Other Other +7b9babd9-7a43-4aa0-9eb0-baf51826759c 1 \N Other +7b9bc07a-eb95-41a9-a12c-35620fd0728b 1 \N Other +7b9bd418-3d22-4a39-ba5c-e602414a4d9f 1 Other Other +7b9bea99-daad-47e4-9483-86f8a98219ac 1 Other Other +7b9beba4-6adc-4a74-9b01-22781cf45f30 1 Other Other +7b9bf313-8126-4658-ae09-c6cc990d9596 1 Other Other +7b9bf571-fb77-4261-a816-c93e38d0f7bd 1 Other Other +7b9c13b8-6237-42a7-a48d-51f7a23a775b 1 Other Other +7b9c3460-9f56-48f9-84c0-c0301f24588a 1 Other Other +7b9c3e5d-6fd2-434f-ac95-48a0641826f8 1 Other Other +7b9c6bab-4e29-4884-8d9f-7708e3d53fb1 1 Other Other +7b9c9456-1b6b-11e8-91bf-fa163e8624cc 1 \N Other +7b9cb36e-2dc4-4ac3-b229-9ca3dc05451e 1 Other Other +7b9cd69f-aa42-49ab-99de-19ff1cf8d662 1 Other Other +7b9ce15b-458f-446b-8cfa-df055dd81759 1 Other Other +7b9cf5b2-be70-4ba0-9e9a-72241a4a49d7 1 Other Other +7b9d20c3-6a83-436a-a662-b2d84047a29f 1 Other Other +7b9d71a1-1f8f-41b5-b51a-daf5399703e9 1 Other Other +7b9d7478-beba-452a-8aae-ddedf2a3f468 1 Other Other +7b9d8148-9358-439a-8ce6-1336511b09c7 1 Other Other +7b9da16b-c7ce-4a21-a1b2-3c1fc9c69c31 1 Other Other +7b9da5ca-274c-4f3c-83ee-3af3bbde692a 1 Other Other +7b9de12b-7764-4085-9a27-5fd1d2f64e5d 1 Other Other +7b9e0101-3716-4006-b33d-53878f08c1d0 1 Other Other +7b9e15ff-2496-4526-bfaa-858d1d06909a 1 Other Other +7b9e9477-d84b-4c1a-8a51-a0dba0a0d3b2 1 Other Other +7b9e9967-9224-482c-aea4-404f3c2423bd 1 Other Other +7b9ed055-c85d-45ad-aedc-3c1afcbfa674 1 Other Other +7b9ee000-5ddb-4e8c-80d3-4f7809f5c5fd 1 Other Other +7b9efbca-8a3c-4416-9449-2b7c0ead19b9 1 James Other +7b9f44a9-d108-45d3-bdb9-44ad7b3a67de 1 Other Other +7b9f58ac-b53a-48cb-9372-d5e527feec44 1 Other Other +7b9f7965-5ac2-40b0-8806-1f132b914f84 1 Other Other +7b9fa127-977b-4710-a4fc-478a8ebad2e9 1 James Other +7b9fe5e3-c895-4d4c-8d93-d6b92aa9ef6f 1 Other Other +7ba02b47-1cdc-4241-b12b-b1886d4bdb34 1 Other Other +7ba070aa-28b7-45f8-ba49-a1b5f57944f6 1 Other Other +7ba07b1c-f891-4c39-9ec3-f905b25f6ee0 1 Other Other +7ba0b943-ebeb-434c-9bbd-c52a18b464b8 1 \N Other +7ba0fd31-ef73-4d71-8a6f-7cfe0d6dcf9c 1 Other Other +7ba1f5cf-b490-41ba-8efb-1743c48e127e 1 Other Other +7ba26ae3-c963-431e-92cd-dd5b9ebb01bc 1 Other Other +7ba29313-8a9e-4d51-a63c-3116f02e3a74 1 Other Other +7ba2a585-99be-4629-8abe-2be187042841 1 Other Other +7ba300ae-a23f-44d7-b58f-e83a3bb3bf55 1 Other Other +7ba32d7a-8983-4416-ae03-3278cd6f23fc 1 Other Other +7ba33b8f-9236-45e5-9748-57491a2f01c8 1 Other Other +7ba3662f-8af5-49dc-80e0-902366da4f78 1 Other Other +7ba380d3-d02b-4894-8ca4-e520c3cf00a0 1 Other Other +7ba3aa6d-2b36-4be9-90e3-9045657b5ead 1 Other Other +7ba3b638-4b3e-49de-bb06-6c087f979c9b 1 Other Other +7ba3d495-f2e7-463a-8d38-608f3ceef126 1 Other Other +7ba4173a-88be-425a-af4e-ab47138ad162 1 Other Other +7ba41a62-e72d-405d-9a62-447273311e4c 1 Other Other +7ba4686b-4a12-49a5-ab0c-3037a627151a 1 Other Other +7ba4a43d-e11f-481d-b9ca-8fd5b38733f4 1 Other Other +7ba4b8bb-6d2c-48d0-be61-05ed9eba996e 1 \N Other +7ba4c476-08f1-4044-a30e-6fe603a172fa 1 Other Other +7ba51bfc-073e-4617-bdde-da8d4ed77da8 1 Other Other +7ba55238-7cf9-4a5c-8c63-d43f0f4cab7c 1 Other Other +7ba55ada-d43c-4c2b-9120-18015693acfc 1 Other Other +7ba61ae9-e693-41fc-8b13-f45f9f1a0ef0 1 Other Other +7ba6228b-22c1-4af5-80da-d561b98a2d7d 1 Other Other +7ba63772-3ec0-4164-b1ec-d4d186ddf600 1 Other Other +7ba658d6-8ba1-4027-b31b-b5cbc42b2d3b 1 Other Other +7ba6880f-6fff-4c43-990f-ae3d3d29fe5b 1 Other Other +7ba6b253-24bb-43b5-8bb1-33bad69a77cd 1 Other Other +7ba74d42-d0b2-42d1-a5d4-c857b192d32f 1 Other Other +7ba7e808-18bd-4ecb-982c-3cd94db24e17 1 Other Other +7ba80e5f-bfc2-47b9-b6e9-8fa8d8b01a0d 1 Other Other +7ba82043-9488-4545-a6e4-fae89cead202 1 Other Other +7ba85013-1cfd-484c-95a6-54b9f914d604 1 Other Other +7ba8560c-fa84-4972-8e94-df06d97992a3 1 Other Other +7ba8916c-1d9f-11e8-b1f8-fa163e8624cc 1 \N Other +7ba8a9bc-e20a-4a67-99bd-2b6a8b89263f 1 Other Other +7ba8aed3-4f80-4a7e-9d6d-0df8f786756e 1 Other Other +7ba8c1ad-4a85-4cc6-84a8-15cb2e4e9b3e 1 Other Other +7ba8c794-33ff-41d1-ab79-9e0c3af66bd4 1 Other Other +7ba8d279-9aa1-4baa-bd33-4319ec1c60a7 1 Other Other +7ba8d325-d122-4bf5-9e8a-38dae2db910f 1 Other Other +7ba8e134-7723-483a-979c-ec75ea9a793e 1 Other Other +7ba8e39e-9d87-474b-bae9-83e0d7c59a35 1 Other Other +7ba91691-c199-4d7a-adf3-3844ec2be0c7 1 Other Other +7ba98bff-d57f-436d-b381-148ae8876f62 1 Other Other +7ba99071-7a9d-4271-962e-bb56111fd0bd 1 Other Other +7ba99704-cd0d-4118-93fa-9e3c913b3389 1 Other Other +7ba99aac-8f77-4481-a6f1-648cf96c4455 1 Other Other +7baa0a3f-4831-4f17-ba34-7fad8ce2b502 1 Other Other +7baa20a3-59b9-4579-b149-898cffd1f1ad 1 Other Other +7baa5da9-a619-415f-a08d-23779477cec3 1 Other Other +7baaece6-3942-4c91-9235-d1245bdb3d77 1 Other Other +7bab167f-e3c0-4ee6-ac0e-c2931791b269 1 Other Other +7bab2152-ae13-4d71-b5dd-63988f13c278 1 Other Other +7bab2349-5bd7-4e2a-a5d2-55e7e7a1407d 1 Other Other +7bab46ac-6596-4193-a4ab-6db18d8c5dd2 1 Other Other +7bab6242-3c85-4f74-965d-c4fa2a29d1bd 1 Other Other +7bab66c7-add1-41df-b5cb-1ae66ba5c330 1 Other Other +7bab9286-716c-439c-9214-b7f45663e5e3 1 Other Other +7babb48e-2373-436b-85bf-345863b7f7b4 1 Other Other +7babb862-ddc4-4bc6-a8a5-52ca07911316 1 Other Other +7babf35d-04f8-48fa-acf2-102d2196a0a9 1 Other Other +7bac43ad-bd5d-4d2d-b18e-5080315354ad 1 Other Other +7bac5103-4810-4014-906d-3c8a7847e60f 1 Other Other +7baccb7d-e190-4e21-9f91-fe961d6ea98a 1 Other Other +7bad1f65-0e90-4dbb-aa0b-0cb3c3314607 1 Other Other +7bad69e1-f1cf-4812-b33a-b20efffbbf06 1 Other Other +7badab32-dd1f-409a-ba64-faa699eafe22 1 \N Other +7bade52a-e4ff-4366-b889-050358af4e7d 1 Other Other +7bae1fe4-12a2-44cf-880b-6c99a70f17cc 1 Other Other +7bae20fe-a4e3-4d8e-8a1d-8e9324fb6d0d 1 Other Other +7bae56af-fdb6-4ece-b6e4-34eda5ae1f38 1 Other Other +7baec92d-f103-4b3a-9ca2-e2e0be3198af 1 Other Other +7baf1039-daf2-45ae-a255-32a34c03cdc4 1 Other Other +7bafcf17-5afb-4082-9e36-3be8ffdb11b5 1 Other Other +7bafd89b-6d92-476a-bf70-6b3d38334f15 1 Other Other +7bafd8f7-e95c-46e6-891a-3e0436418ea0 1 Other Other +7bafed26-aba2-4bc0-8515-25514b03a410 1 Other Other +7baffb2a-8fa9-4563-b598-9b785f06a3e5 1 Other Other +7bb0103d-0cbf-4dc6-8ea5-bee75f0c2db3 1 Other Other +7bb04b55-9006-4679-b624-9d314302c442 1 Other Other +7bb060bd-93c0-4576-8020-c8f13e468c0f 1 Other Other +7bb064e9-b273-481b-b550-107508a22ca0 1 Other Other +7bb078f5-a72f-4dee-b611-d909fba1a77d 1 Other Other +7bb09eef-54c5-4208-b768-dfc89558b457 1 Other Other +7bb0b8c1-1baa-4181-963a-6392aa728a34 1 \N Other +7bb0ce3a-e1df-454f-b05d-a6545a3cab46 1 Other Other +7bb11bb2-46e8-40af-993f-beca9e27f8b1 1 Other Other +7bb13ed2-90c0-4223-82f3-2b3cf11bc8a8 1 Other Other +7bb15cbc-5048-4bcc-83ea-36c2117e28d7 1 Other Other +7bb186e1-0cde-42ae-a68c-6d96f37438d5 1 \N Other +7bb18dce-05e2-4d69-ba79-7a81c0e90b50 1 Other Other +7bb1bb97-1ffa-452a-bc93-4875a80044e0 1 Other Other +7bb1d5bf-3348-4689-b8c8-cc01ff1bd14b 1 Other Other +7bb1da80-21f6-4707-aaf2-5555d869713d 1 Other Other +7bb229b2-0be5-4872-9611-c041a684d79c 1 Other Other +7bb23069-6740-4a05-b8ae-d2d5e0252dff 1 Other Other +7bb27be7-b127-4ba2-83be-d2cbfc2fb31d 1 \N Other +7bb29682-bcaf-4850-b14a-17e053e0c051 1 Other Other +7bb2ce5e-4fa7-425d-b7c2-e6d20d51d1ae 1 Other Other +7bb30524-dfdd-4f01-b2bc-0c2a988c9237 1 Other Other +7bb30c92-a8f0-4f73-807b-6ed481f876bd 1 Other Other +7bb31d20-3b75-4cf1-b950-44afd31a5965 1 Other Other +7bb33c5b-72c7-4eb1-9849-e22efe539a31 1 Other Other +7bb3d238-7661-42ee-8357-6b9d6ab4adc7 1 \N Other +7bb40ebd-72b5-4278-b031-eb54fde8e66c 1 Other Other +7bb42025-9ac8-42ce-bea9-fdfa05bf35bf 1 Other Other +7bb43d70-53bd-4be7-9c97-347434f5cc69 1 Other Other +7bb45eab-badf-4eb6-b16f-3b3c1053e7e5 1 Other Other +7bb46313-9d5e-461e-b856-de364b6af6f1 1 Other Other +7bb46bd0-c181-44a0-be10-cfb14aacea61 1 Other Other +7bb49211-8365-4734-8ca0-7e00922ec26a 1 Other Other +7bb4f2eb-95bf-4114-b09e-87e78b56660c 1 Other Other +7bb4f2f7-86c9-4c8f-bb42-948f986e8347 1 Other Other +7bb536e8-35a5-4bf7-812c-ff464820f219 1 Other Other +7bb56a7a-dcbf-4e95-a321-bf0b3bfa86e3 1 Other Other +7bb56a95-37c3-4091-ba84-22b4626cb264 1 Other Other +7bb5951c-1fd5-4ff1-adc1-2b907faa9c10 1 Other Other +7bb5e123-e9df-418b-84ae-ebff1e80f8b5 1 Other Other +7bb61ee1-70f5-4303-a68c-55169ffe33e9 1 Other Other +7bb678f2-302e-4022-9a60-9e713a239c7f 1 Other Other +7bb68581-fafa-468f-82c2-683a8ceaf0a2 1 Other Other +7bb6d085-6b67-43e7-ac6a-d885e4feff74 1 Other Other +7bb6fcc4-c2c6-4d9a-8bcd-208f67bae002 1 Other Other +7bb7086e-9796-44b2-a79e-974611351173 1 Other Other +7bb7291a-d463-4cc8-a4b1-e4ce680a0275 1 Other Other +7bb76508-1d9f-4706-a551-3480906a1cc0 1 Other Other +7bb78cf7-7d32-42e5-b6b7-4f04dae57e9d 1 Other Other +7bb7d104-cae0-43e3-be10-fef25de91bd8 1 Other Other +7bb7e398-3c3a-48ff-9bdf-aaec6fc94940 1 Other Other +7bb82809-4b46-44e1-a792-76f7fab07bb5 1 Other Other +7bb84beb-345c-43bf-86c9-3f78aeee2be7 1 Other Other +7bb858d7-61d2-48f5-bb44-97aa761167cf 1 Other Other +7bb86efd-f803-4cf9-879c-8f418c97748c 1 Other Other +7bb8b30f-cb88-4299-83f0-7f8c1481d3c0 1 Other Other +7bb92151-041d-4b11-91c0-071acfcc3d54 1 Other Other +7bb9d537-222f-4250-b296-b70c5b2d4b86 1 Other Other +7bb9e07d-2f00-4b29-9be4-dc9b22705ae6 1 Other Other +7bba20aa-c8e8-4519-81b9-34a47bb4d86a 1 Other Other +7bba78d7-b7b7-4c92-a196-465d741be583 1 Other Other +7bba9180-858f-43d2-b3d4-ee4373933f6b 1 Other Other +7bbab5cc-f1c8-4b74-909d-1b6d6c7b9b41 1 Other Other +7bbb07ef-8f17-4754-ab5d-3efb88474b21 1 Other Other +7bbb2696-ecf4-45ed-a94b-5b7b0474f5dc 1 Other Other +7bbbc566-8a2b-442a-a3d5-fc8af38245bd 1 \N Other +7bbbe0c8-0060-46e9-8c28-65a6a45cdbcb 1 Other Other +7bbbe8e7-0d7a-4402-b8fd-418f4c410330 1 Other Other +7bbc1950-9005-45b5-b09c-d5f5e8f9e71f 1 Other Other +7bbc877c-11bd-41cf-9982-8a2f5b8e7709 1 Other Other +7bbcd92c-aeb9-4748-af8d-b0c80eac8cff 1 Other Other +7bbcdf6f-baf1-457e-8a66-60d6a743decb 1 Other Other +7bbce415-4423-4c1e-b59b-fd80a2370332 1 Other Other +7bbd0c35-4105-4347-a449-a89626cfabd0 1 Other Other +7bbd1725-c561-43cf-bfbd-c8e00917bf2a 1 Other Other +7bbd1ade-0660-4ff7-9e9a-ca53a03b9b03 1 Other Other +7bbd3ba7-8e4c-4d86-acb8-13de24ca2b9a 1 Other Other +7bbd6938-a438-4696-ac34-8f234e9de50d 1 Other Other +7bbd769a-fb67-43fa-bb18-dbf86bbcef8b 1 Other Other +7bbda1eb-e9b5-4d5c-80a2-6b3639a1b922 1 Other Other +7bbde44e-9e7c-427b-9ae3-64a1f37e897a 1 Other Other +7bbde469-1786-423c-b0a2-3bd442a53aa7 1 Other Other +7bbe262f-1188-4b76-9fab-382bc8b5c8d0 1 Other Other +7bbebbce-d493-4167-abc5-ce1526b9f28f 1 Other Other +7bbed7a4-bb21-4f33-a33b-0b8fee97b684 1 Other Other +7bbf0234-2fe4-442f-be3b-926f5e60aeab 1 Other Other +7bbf359b-0022-43b5-814b-cb382540b02c 1 Other Other +7bbfbfd9-607b-4207-9253-c62863a12d38 1 Other Other +7bbfd702-6b43-42e1-8e14-98160dc03b38 1 Other Other +7bbff25d-ea3e-4f90-ae10-07ab309ab38a 1 Other Other +7bbff690-0f36-4dcf-a202-1e13db970708 1 Other Other +7bc03445-a295-4c35-a6d9-e5dc90a37058 1 Other Other +7bc03900-f637-4d57-b0b8-785a502eb0a4 1 Other Other +7bc07f2e-4a7e-44c8-874d-e2579769a757 1 Other Other +7bc0a477-f75d-4874-b4a2-32cf0e2e4711 1 Other Other +7bc11f92-92eb-40d4-b6c2-fdd24d14e93d 1 Other Other +7bc13034-ede2-4010-ac81-0a04ed6ae757 1 Other Other +7bc19000-0db2-4ab3-8ef7-d96c8b4a996f 1 Other Other +7bc1f8ef-70e4-44cb-8033-e91064eb59a4 1 \N Other +7bc2256e-1285-4c4c-808e-490b9690e47b 1 Other Other +7bc2a459-072c-4dfe-8426-52c06a2de604 1 Other Other +7bc2cca5-4ece-49bf-ac41-aab0da4016d9 1 Other Other +7bc2cfaa-3bea-449f-b1b9-624bb69c82f7 1 Other Other +7bc30bf6-6361-47b2-b067-28a8eb089ad5 1 Other Other +7bc34a23-be8a-445c-8916-3e16139a4855 1 Other Other +7bc357fe-ac2c-4141-9788-eed45123f4fb 1 Other Other +7bc3a5d6-14dd-46ba-aac1-205aae65f3c7 1 Other Other +7bc3cbba-a85e-413e-9b32-623196c8de41 1 Other Other +7bc3cbff-a789-4768-9ece-fe17e305c549 1 Other Other +7bc42a1d-294a-4ce7-8777-bb5faae881ad 1 \N Other +7bc4ad50-9a44-4dbe-880d-2ec2122cf794 1 Other Other +7bc4b5c4-7f00-4e93-a6c5-c444e146d016 1 Other Other +7bc4fba6-35bc-463f-bd79-148990c89a04 1 Other Other +7bc59338-271e-4bce-b0c5-22db242d5e34 1 \N Other +7bc5a719-c342-47af-ba26-e179b8b8b060 1 Other Other +7bc5b4cf-9d7d-4564-a3ac-b2661335b4f9 1 Other Other +7bc5ba23-6d67-4ae0-bac2-b5b62198cb02 1 Other Other +7bc5eeb4-b3fe-49c5-955a-e07e855fba27 1 Other Other +7bc60350-2623-407b-81b7-802315a3b72e 1 Other Other +7bc67307-79d5-46bf-8c05-b1a2c91f33b6 1 James Other +7bc6f258-3643-448e-be5d-19d95db9fbcc 1 Other Other +7bc70994-b7ba-487c-a7cf-949ef9765ae5 1 Other Other +7bc73c79-f2ff-40d2-8b9d-b3257d36433f 1 Other Other +7bc7aea2-e606-4963-a6df-d36cf1ff2eba 1 Other Other +7bc81884-f650-41c3-bcde-91cc29a75fe0 1 Other Other +7bc86c9f-7ee0-4939-bd09-20423bc19dec 1 Other Other +7bc88473-f2fa-4017-9c60-9eda2d7defd9 1 Other Other +7bc8e0cf-b537-4235-9e16-038691a250e2 1 Other Other +7bc8f685-b9c9-44a9-9424-ea6c264622ec 1 Other Other +7bc970a2-2c3f-4409-a79f-d7688a5bfba5 1 Other Other +7bc98be6-17f3-46d9-9093-5d6a52da7989 1 Other Other +7bc9a262-04ff-4583-8847-2488f30cd5d9 1 Other Other +7bc9a989-1ce9-4b58-a6dd-48f1d1c39af3 1 Other Other +7bc9ad24-1ac1-11e8-bd63-fa163e8624cc 1 \N Other +7bca1185-0299-452b-8fa7-0feac6d94bec 1 Other Other +7bca1320-e612-4a71-9091-3d812f7b428d 1 Other Other +7bca8d56-1e6d-497b-bb30-dbb3c2be5973 1 Other Other +7bcabb1c-0ef2-468f-9ce9-5685a39f0361 1 Other Other +7bcae087-a0c3-4528-86cc-b182f7993216 1 James Other +7bcae4bf-43ea-4ea1-a2ac-4edc2a4ea5c1 1 Other Other +7bcb0f58-9990-4454-b87e-f5ff071db73e 1 Other Other +7bcb3b22-3238-450d-92f2-f97319e293ab 1 Other Other +7bcb4c5a-81ab-4228-a09a-0d72e2d9b20b 1 Other Other +7bcb6113-8531-4217-982f-d4e830cc5e43 1 Other Other +7bcb77ec-9f61-4354-b58e-f9ea8bbd9f75 1 Other Other +7bcb9d24-2df6-4a89-9a3d-eb57b6d5ce9b 1 Other Other +7bcc1420-e9e7-4c31-ac45-e53d508f9e9f 1 Other Other +7bcc19da-15a1-46e6-883f-83d83198420d 1 Other Other +7bcc69ec-350d-444a-963e-134c02e31e17 1 Other Other +7bccd38c-d505-42a0-8203-d3920b0e0d81 1 Other Other +7bcd1795-1341-42ac-ae94-365b833d244a 1 Other Other +7bcd4436-405a-48f1-8666-7a386d2ae3ff 1 Other Other +7bcd742b-5fcc-47b1-987b-ce5f3aad9372 1 Other Other +7bce1d08-5faa-4b8e-aabd-0b0d76ed4ada 1 Other Other +7bce36eb-3f8c-4dcf-8dde-fac2e6a772a0 1 Other Other +7bce54af-9e95-46ef-b306-5356be16195e 1 Other Other +7bce9a19-d5f6-49c5-ac31-3526728026dd 1 Other Other +7bce9a94-9056-496b-95d6-f46365af49ef 1 Other Other +7bcf4ca8-7acb-4727-b8f9-365dfacc5ec7 1 Other Other +7bcf5cb3-8acc-45fb-8681-10f7ec9028ea 1 Other Other +7bcf7749-9a3f-4c7b-9af9-14c15c58f07a 1 Other Other +7bcfece6-a24b-4588-9766-cad9a0e7f9c2 1 Other Other +7bd02024-ea73-47b2-b48e-e6bf7f11dab4 1 Other Other +7bd03abe-f494-4b90-8a11-d1d9a38701fb 1 Other Other +7bd04bc1-b92b-4fc4-a8df-595a03618c59 1 Other Other +7bd08baf-68ba-489c-9e41-cce68f0b1900 1 Other Other +7bd0ac2d-99f2-4e15-a84d-7556daa699cd 1 Other Other +7bd0cda9-cf52-4018-b4d6-8722bcdb0244 1 Other Other +7bd1b034-e26f-4147-9695-6c29e6899b88 1 Other Other +7bd21081-91eb-48cf-814d-2fa4c533199c 1 \N Other +7bd21eca-b019-4bd3-8dae-76900e1bc6fc 1 Other Other +7bd22657-3c92-4f17-ae70-e0d92f6723c3 1 Other Other +7bd24594-35ef-43cb-84b9-7f6e10e13f9a 1 \N Other +7bd2f6e9-4c01-4514-a7c9-c7eb53b212fe 1 Other Other +7bd308e4-56e6-41ac-b55c-a4b497ddcb21 1 \N Other +7bd31b72-a1e5-4c1b-b1ae-5b7ea3cb6315 1 Other Other +7bd37c23-f744-4035-b9b2-306c04737903 1 Other Other +7bd3f5f6-a967-43cb-941a-6933f24d9ab1 1 Other Other +7bd41821-f966-450e-8336-23254cf4ba61 1 Other Other +7bd46f4e-e64d-42c6-9633-779c5ae1b228 1 Other Other +7bd4ea67-9c1c-45dd-9826-982f699028bd 1 Other Other +7bd4f68b-1eaf-4049-9c4b-037d52202a49 1 Other Other +7bd4f7bf-d335-4ba1-bc9b-d7e31348f926 1 Other Other +7bd50266-bf62-42ee-8364-8305a9c23c37 1 James Other +7bd581c9-546a-45db-a5e4-4fd744ef21bb 1 Other Other +7bd595d8-e976-4007-9ec2-d077f0eb0350 1 Other Other +7bd5b3f1-2c18-489e-8935-71f773c4d51f 1 Other Other +7bd6659b-8c2e-4f4a-a3c0-7d0dc8babacf 1 Other Other +7bd759a2-f6fc-4544-8ab1-6b292dd2c267 1 Other Other +7bd794a9-3ed2-46fb-b6c5-5bf454384589 1 Other Other +7bd79935-ce9a-4dcc-bc51-70ac826514ce 1 Other Other +7bd7b90b-f883-4749-94ff-01a182513187 1 Other Other +7bd7d1f3-4af5-4cbd-9e0f-8031ee93ecea 1 Other Other +7bd7dade-1d1a-4e46-8fe1-baf09d6d3e46 1 Other Other +7bd8258c-fa47-4496-854e-e96225b6a1b8 1 Other Other +7bd88556-352a-4825-99e3-10c0555bd50f 1 Other Other +7bd889fa-dcfd-4ab0-bb1a-f2a8ef63493a 1 Other Other +7bd896d2-4911-44e0-88ed-00fdcbe7d707 1 Other Other +7bd8df3c-981a-4870-8773-486879e238fa 1 Other Other +7bd91f00-21d5-4ad8-a946-db485684db7e 1 Other Other +7bd929bb-31af-4d16-89a1-c53b9d9322d7 1 Other Other +7bd94c6c-3082-4212-8fb9-da4352d054ba 1 Other Other +7bd95ec7-3b9d-4e9b-b352-897a133c57d6 1 Other Other +7bd99af5-1a8e-4cec-9d82-3711c5316ffa 1 Other Other +7bd9b384-07df-4692-ae35-4f1a390c0127 1 Other Other +7bd9cad9-8f7d-4ecf-8a6c-2d50ca5fc6d8 1 Other Other +7bd9de82-004a-40af-b415-60057db817ac 1 Other Other +7bd9eabd-9d46-4cf7-9819-f0f84ff7b9bf 1 Other Other +7bd9fe1f-f2f8-42df-a6e6-ad41fe266570 1 Other Other +7bda2df1-af14-457d-93fe-c1273200888c 1 Other Other +7bda98aa-a0ac-4dc4-aedb-de9f4c019508 1 Other Other +7bdaa55f-4bc5-4361-9451-503503d04738 1 Other Other +7bdaa573-6a98-4cc6-82c7-33bd3a064f07 1 Other Other +7bdaea73-372d-403a-8fa3-57052a063914 1 Other Other +7bdaeffe-cd08-4230-8cde-ecd9b2e06471 1 Other Other +7bdaf990-5674-4d2f-a840-247d02f4157f 1 Other Other +7bdb6196-1c8f-4b68-9327-2de339e2da66 1 Other Other +7bdb8abf-9a38-49f5-9f80-d724c93596d7 1 Other Other +7bdbe146-d70b-440c-bd6d-fe37fb3f7e4a 1 Other Other +7bdbfa63-a9fa-40bc-a283-980df3ffc007 1 Other Other +7bdc056a-0927-4f1f-b0f2-9d13a24287c6 1 Other Other +7bdc3b06-fb92-4ccd-81b6-b464f30264cf 1 Other Other +7bdc6921-208e-4e3b-98a5-9c329d1c7e67 1 Other Other +7bdc6e74-42d4-4fa3-acdd-126d636ab1c6 1 Other Other +7bdcec57-f0c3-4b37-9ffa-84fea70219c8 1 James Other +7bdcf510-42a3-403d-9fc0-b76faa87355e 1 Other Other +7bdd0817-94e6-4268-96e9-124d8dea01e1 1 Other Other +7bdd09ee-0ab5-4ec1-b61c-8eb167b527c2 1 Other Other +7bdda651-8446-40e5-9be7-4261ff109fd8 1 Other Other +7bddc187-217a-43f5-a0ab-fa93b4d074a2 1 Other Other +7bddcea2-4d50-4f03-863c-b667038587f9 1 Other Other +7bdde034-670b-4b6a-9693-c64ed7647eb9 1 Other Other +7bdde742-ced3-41f1-8ef8-579b8ceee588 1 Other Other +7bde2959-4c65-4237-8c9c-9931758623d5 1 Other Other +7bde3e43-3395-4de3-87ed-8f2a4e43802c 1 Other Other +7bdea0ad-17b7-458d-8b14-2f1cfe0fc3f8 1 Other Other +7bdeb4db-c16c-424d-adc4-e6511a15d074 1 Other Other +7bdeefa3-5216-4b95-9ec8-199f2d0dc03c 1 Other Other +7bdef2c3-a1e1-4ee0-90f3-7e62e7dabd21 1 Other Other +7bdf081e-30d2-44ba-a2af-83ed0993fce5 1 Other Other +7bdf18b9-042d-4a74-b41a-e537d72699cd 1 Other Other +7bdf2b29-6edf-43f2-9962-f6bb948ff0cc 1 Other Other +7bdf428c-0009-40db-ab9b-06c5b2e474ab 1 Other Other +7bdf63c0-eb08-49e4-938e-d7ba2e41709d 1 Other Other +7bdf72d8-80aa-4a39-9ba9-d9cc61979113 1 Other Other +7bdf7ab3-71e5-482f-9864-d6e476abda38 1 Other Other +7bdfb351-5783-4d31-ac00-166676340bc3 1 \N Other +7be00e6c-2252-445a-bbcc-61acc19fae6e 1 James Other +7be01c4a-e8fd-4260-b938-69d66bf308a0 1 Other Other +7be0b623-2e16-4403-bebb-242672c9fa1a 1 Other Other +7be0cbf4-80f1-4288-97a0-251ac2b66ed3 1 Other Other +7be0ecc7-ff38-4719-bed8-db7389b5da2c 1 Other Other +7be1153e-dcb3-4d10-9915-4850fc9de1c5 1 Other Other +7be13f8d-e811-4f57-b3b1-8f1fc3e54331 1 Other Other +7be16545-80b1-493f-b4f6-8f07eee90ca3 1 Other Other +7be1b5ba-80af-4163-9cb0-248a7a167f3e 1 Other Other +7be1bf7b-fbb6-4c0a-9f42-1ecaef48cec6 1 Other Other +7be20405-e595-4c30-acc5-17e2313d4a75 1 Other Other +7be2553f-08fd-4e4a-a507-2ce5bec2c8f0 1 Other Other +7be278d8-615e-45fe-9423-c3361170bb65 1 Other Other +7be286d8-eccb-4ad6-8070-e257b38eb198 1 Other Other +7be297e4-d6ba-43df-879f-80c6b4581d69 1 Other Other +7be2b418-9f55-4216-899b-7b43c9330bc9 1 Other Other +7be2d2c9-50b3-43f9-a47a-f594c233d67c 1 Other Other +7be31743-5297-456a-94ed-3c0af8b25588 1 Other Other +7be3206e-af08-4856-bc75-865daf2117f0 1 Other Other +7be32176-de76-49b5-844e-fbf588011da3 1 Other Other +7be32967-aeb5-401f-8544-5e3365399323 1 Other Other +7be32f09-5e0d-4996-9c74-fe7b87726d72 1 Other Other +7be34f04-a628-48d7-9a99-ff51e9f743be 1 Other Other +7be37cb7-4ff7-4539-b474-7f0fa8baafa6 1 Other Other +7be3908c-cbfd-4d8d-a2d9-395bc62a183a 1 Other Other +7be3992c-371c-4895-bee4-8b9a5ffca691 1 Other Other +7be3dc6c-4342-43de-b501-8f72dce975d0 1 Other Other +7be435a7-0dff-443e-b7a3-3d4523e25a09 1 Other Other +7be46158-ee2d-4e52-b68d-b2b55f5e3ade 1 Other Other +7be473ac-3b05-4e6e-b102-ebb94726552b 1 Other Other +7be473c3-c575-472c-8ea3-a720956ccb19 1 Other Other +7be47f66-742d-4c06-a033-907e57ea3542 1 Other Other +7be4f60b-c087-49cc-860b-f9a61a391a9c 1 Other Other +7be4fe5c-29ff-425d-91cd-dcf8889b96f3 1 \N Other +7be58acb-b844-4ada-952d-0a1e841cc5f9 1 Other Other +7be59ddf-df38-4dd7-b981-b10a61024b7e 1 Other Other +7be631ab-af72-4ec8-b140-92d572115344 1 Other Other +7be67014-d4e9-48f1-92ae-334900f89af7 1 Other Other +7be6b2cc-2889-4ead-a25b-112da6084e8c 1 Other Other +7be71332-bf7e-4b08-af66-7f9a49ecd33e 1 Other Other +7be7d499-1efe-4513-aaf6-8969371d5065 1 Other Other +7be7edc7-23f2-42b2-ae76-ccd618f3b32d 1 Other Other +7be807f3-c039-4b6c-89cd-7fc4aa01be32 1 Other Other +7be82528-76eb-404c-bb12-5f14e4ddddbc 1 Other Other +7be82fad-de00-42fa-a978-8a6f0506a775 1 Other Other +7be85417-8c9e-45a4-9dbf-afdfaf5e6dfc 1 Other Other +7be8767b-1959-4b92-9fea-2740928a802d 1 Other Other +7be97d1d-3d4c-4597-9aab-a53d12bd3d17 1 Other Other +7be97e00-079d-4049-951b-03ee81e986e1 1 Other Other +7be98ca6-c3b4-45f3-86f5-30e9baa726cc 1 Other Other +7be9c3f8-4e7e-42b5-b85e-ba4b4f20163a 1 Other Other +7be9cd6d-55e9-4fe1-ae13-ecfe95fe3752 1 Other Other +7be9f6d2-043a-47a6-b339-5c803fc063c8 1 Other Other +7bea368f-ddb5-44b8-bde5-09ec80a6c1da 1 James Other +7bea423e-062c-4fbf-a49e-138136d2eae6 1 Other Other +7bea902d-28b6-4092-a5f0-c474afa5eda9 1 Other Other +7beaab04-4a4c-49e0-99ee-1fd9b57af26d 1 Other Other +7beabf79-ca02-451c-87ae-efe00e4e275b 1 Other Other +7beaef83-258a-4f0b-82f5-795f50b6e7d6 1 Other Other +7beaf420-d38d-4b91-bbe8-e81b060145e4 1 Other Other +7beb0bc7-7ff6-4acd-a850-08a3b906cb8e 1 Other Other +7beb3091-3f77-4f1d-8f50-3ce7eac2c2c8 1 Other Other +7beb313b-ec8f-4629-b8e9-80cf5d86c344 1 Other Other +7beb99fa-0228-4aea-9573-5a70af63785f 1 Other Other +7beb9a69-8d4e-4856-b28d-fd9581afad81 1 Other Other +7bec08e7-ee1d-4630-8ac2-d1a46e45d97b 1 Other Other +7becf3fd-e069-47bb-9711-a5959f6d8e04 1 Other Other +7bed0ca7-9afe-4be1-8488-9139f98f1f8a 1 Other Other +7bed1089-0224-4d27-b9da-c0d5d4d43da0 1 Other Other +7bed2dd2-0ac3-4241-8d56-3b376dcc6ab7 1 Other Other +7bed46f9-98f8-491f-b139-d4f8f5952945 1 Other Other +7bed930e-e28c-464b-8dad-9cbe78b3307a 1 Other Other +7bed9dd0-0305-4c0f-a1f9-00b1a64e0e50 1 Other Other +7bedcb31-e2ad-43e9-813e-c31c38057580 1 Other Other +7bee3b3f-0687-4af7-baa6-aef7dedb89ba 1 James Other +7bee4e85-9ba9-4023-a8a6-c2c874a7d750 1 Other Other +7bee6bec-5947-4b25-846b-ed53702c9f4a 1 Other Other +7bee77f3-6f5a-4732-8b83-78e7cac49820 1 Other Other +7beeb9eb-b25a-4828-878d-0d850afd7da0 1 Other Other +7beecd01-01fc-43e6-befa-3fdaa612a62f 1 Other Other +7bef1889-5d0c-411d-8397-60fc1b0a257c 1 Other Other +7bef6c3b-8fa7-43f1-afc0-16fe7a06d526 1 Other Other +7bef722f-5fe5-4077-99f3-f52f951fd311 1 \N Other +7befabc6-5ee3-486a-a3ee-e1294951d1a1 1 Other Other +7befe11c-1093-4e33-880b-91c731fd4c68 1 Other Other +7bf08b25-1152-4ccc-8794-e334432d32c4 1 Other Other +7bf0accf-72e5-4dca-acba-4f4ad9e9020d 1 Other Other +7bf0bdea-c3ed-4f8e-9fa9-159e4fffdea4 1 Other Other +7bf0c92c-5056-4a0f-8d3f-b8dc157df3c2 1 Other Other +7bf0ef70-1ad1-4e45-ac57-16af5db424da 1 Other Other +7bf129be-b7e9-40d3-8297-c16e5db800b7 1 Other Other +7bf1567a-de92-41a2-a2ec-f2b83957c2b8 1 Other Other +7bf157d9-d443-4669-aae4-4694bcdfb337 1 Other Other +7bf16571-6b08-4010-904e-64befc3ff74f 1 Other Other +7bf1848c-098c-40b6-9e08-981a84225f98 1 Other Other +7bf1fae0-ace0-4e32-8e96-68cfc4ea9dce 1 Other Other +7bf2014b-99e3-4158-9b0b-7bd68ee5b759 1 Other Other +7bf21876-5c51-464e-8704-e4fde42de0ed 1 Other Other +7bf270e6-7df0-4088-aa0d-9983f43bb8c9 1 Other Other +7bf2a49c-b6ad-426d-abbd-d92d259e2d86 1 Other Other +7bf2fc66-e658-40d3-9342-fbf5cff1f84c 1 Other Other +7bf3105a-b024-4567-aeb2-2312ac6c521f 1 Other Other +7bf32f48-3e8b-45e9-acf6-5efc6c8af5ba 1 \N Other +7bf341ff-d6dc-4ec3-9c79-630f2517cbfa 1 Other Other +7bf363c9-9282-4321-bf33-68678f9fda32 1 Other Other +7bf36d6e-7890-42fb-bcf2-b987459d0940 1 Other Other +7bf38c9c-3778-463c-82c5-4148e7a9ca6b 1 Other Other +7bf39a74-b411-475a-9f67-02fb8c070187 1 Other Other +7bf3b0fa-8b65-4296-8096-b25e85e09d91 1 Other Other +7bf3d457-323c-4fc8-8731-9cd4267ece81 1 Other Other +7bf3d764-b322-42dc-a78f-95834789acb5 1 James Other +7bf3ddea-d3d5-480d-a32e-f83437eaf91f 1 Other Other +7bf427ad-c102-46f6-8cb1-2630ce45d91a 1 James Other +7bf43a37-03e6-4a4b-9979-13da35209f71 1 Other Other +7bf46655-ed46-4516-82bb-99f8b8ef82f1 1 Other Other +7bf4cfc5-9931-41ad-9321-3efcad930079 1 Other Other +7bf4d595-9cf0-4a1e-af30-874ac565f400 1 Other Other +7bf4e8d4-e726-4cda-90b3-7285ebca24d5 1 Other Other +7bf51ecb-01d5-4008-aaa6-d24761da415b 1 Other Other +7bf5ac83-4d9a-4c3e-b0f6-51b49650df55 1 Other Other +7bf5b1a5-40a2-4701-ae8f-c073a92ac862 1 Other Other +7bf5c821-c0e6-45f4-9561-d19c1b628b04 1 Other Other +7bf5cb87-43db-47de-b240-81011784f421 1 Other Other +7bf5da9f-a090-45f4-a310-4d6f9b3eac1c 1 Other Other +7bf5db88-d75a-4cec-911d-bb5c9d386b4a 1 Other Other +7bf5dfec-1460-4e3c-af05-0f8d30c8fb8c 1 Other Other +7bf61979-d09a-413b-82cd-09a8073fa271 1 Other Other +7bf6290b-237f-4914-9ea0-cdba47800dfd 1 Other Other +7bf62c45-1123-4e26-90ca-976e943d3a75 1 Other Other +7bf62c5d-3bae-491e-9e5b-0f7661932317 1 Other Other +7bf699a8-c2e0-4e12-91f6-94ab30e497ad 1 Other Other +7bf71bc7-176d-4ad9-b2b6-f60fdd2538cd 1 Other Other +7bf74c8f-3774-4635-be74-605bc3162e0e 1 Other Other +7bf76e94-e9df-4f2e-ae35-22a18bb002b7 1 Other Other +7bf78d10-648c-4825-bbfa-788413c6ab6b 1 Other Other +7bf7914c-4b64-4fc5-b37e-01d571a861c4 1 Other Other +7bf7ab6d-8a41-4785-84a7-bce32fa0a9a5 1 Other Other +7bf7abc2-8ed9-4d55-b2d0-8fba4746e26a 1 Other Other +7bf7af54-b1da-4f26-b745-9f28e340debc 1 Other Other +7bf7ca24-e594-4848-99bc-b95f371fa2d7 1 Other Other +7bf7cccd-6a2d-4178-a65a-d84a85138960 1 Other Other +7bf7d266-92b4-4f11-9230-c88f57225aab 1 Other Other +7bf7e3aa-b8cb-4838-93a2-e5df6bc1746a 1 Other Other +7bf7e818-cc86-4cf9-80c4-6743c991fdc3 1 Other Other +7bf7ff96-4ddd-4ffc-84c9-b6be0d6fbc40 1 Other Other +7bf83c29-5ea1-4efb-8199-ab919dbcb689 1 Other Other +7bf8427c-773d-4094-a740-69ff8a8265d1 1 \N Other +7bf8c824-abb5-4a91-89d6-d1c550d0fca7 1 Other Other +7bf8ca6c-0f76-4c73-9de3-ae9089b57cb5 1 Other Other +7bf8d210-a18f-4af3-b1a2-9a00df5c4f31 1 Other Other +7bf8e588-d62f-4711-8b9b-6b91c6dda49c 1 Other Other +7bf96501-8d12-4026-b7f4-e3763f029c67 1 Other Other +7bf98a81-372c-4d3b-ab4d-81fd1cdca2e7 1 Other Other +7bfa08b5-7e08-4015-a86e-3786e58e2ccc 1 Other Other +7bfa5fa9-e9eb-496b-bbb2-3e1d5fdeb360 1 Other Other +7bfa8916-e6d2-4f5e-960d-6a67c5c570c2 1 Other Other +7bfa963f-f43f-412f-a9d0-a64a90903855 1 \N Other +7bfabc98-5976-442f-b1b5-f5b6af3c59c1 1 Other Other +7bfac43f-9ea7-4e0a-9c46-c6413436807b 1 Other Other +7bfb3823-68db-42ae-98c6-f4574fabc2c5 1 Other Other +7bfb9a14-4631-4784-9369-a5f89679e6c8 1 Other Other +7bfba2e8-2de1-4892-988f-e3c903885cb4 1 Other Other +7bfbb8e0-f536-4708-9724-d40b7c545a9e 1 Other Other +7bfbc908-d9a6-4f04-b4e6-358c7f5eeb13 1 Other Other +7bfbd8bb-0984-4f9f-9c5d-506bcee4da71 1 Other Other +7bfc4bff-acd9-419c-a7ef-2b7d54c93929 1 Other Other +7bfc7ce7-8f02-403c-b575-8cc8cbd34159 1 Other Other +7bfc7cee-2a22-4f77-be17-07a8206053f4 1 Other Other +7bfc9bd5-1a00-4826-8d66-9aa45ab09a44 1 Other Other +7bfd9934-9310-4b76-a8ad-62e1c41745a9 1 Other Other +7bfdf97f-382b-46af-a16e-cdfce626c42c 1 Other Other +7bfe0d5e-280b-47cd-b029-6c1f0258a959 1 Other Other +7bfe2d74-b540-41cb-93e4-b0d17398029a 1 Other Other +7bfe58c3-93a7-4353-9d36-c29d0a40a04b 1 Other Other +7bfe658b-52e4-4b5c-9044-fcc63a24e579 1 Other Other +7bfe77b2-5289-4433-858f-1fbf57e4e9c7 1 Other Other +7bfe98e2-fa67-4764-9295-650133be1411 1 Other Other +7bfea736-e081-4d72-a51b-1bf37a5d18f8 1 \N Other +7bfed6c7-f3c4-460c-bfe5-22b985261999 1 Other Other +7bff1a79-80db-43c4-8ffe-fe74383e557b 1 Other Other +7bff6d12-8afc-45de-a016-b52e30f5ab1d 1 Other Other +7bffdddd-af01-43cf-a719-7fb7e2732975 1 Other Other +7bffe472-ab37-40fc-b7b5-8995b8323076 1 Other Other +7bffe6ff-d0f5-4b78-8c47-5e6f747e97a8 1 Other Other +7c00222a-4f06-43f9-92ab-90f088963fc5 1 Other Other +7c005282-0f03-4a68-a90c-0d2bd6b66491 1 Other Other +7c006b7e-a181-49a8-a08d-7ca626de14b6 1 Other Other +7c00b6c5-52fb-4d53-b44a-745bebcb9616 1 Other Other +7c00bbc1-1682-4b77-b55b-2992b786be47 1 Other Other +7c015dfc-cf28-49c3-a5c8-c29fda6a15ae 1 Other Other +7c01aae6-c9a1-40af-b5a8-5c58184f81eb 1 Other Other +7c01add2-5cf5-4df6-864b-414f0b478b72 1 Other Other +7c021efe-4b6c-4245-9f3f-a1fe360f5623 1 Other Other +7c02631a-8898-498e-9f8b-b0b723f61b53 1 Other Other +7c026bd8-5bf5-4e97-b438-6e47646c4111 1 Other Other +7c028036-9acd-4800-992a-4cee2d955b33 1 Other Other +7c02cb95-dadc-4689-a7be-acde3f81da71 1 Other Other +7c02f51d-2b62-4663-9d9a-96fd43003735 1 Other Other +7c030944-c8e8-4c03-8a51-00cb0aeb44ca 1 Other Other +7c0309ea-aa9d-4bc0-93f1-356d0ef75ea7 1 Other Other +7c03534e-a866-44f5-81bf-dabced2a850f 1 Other Other +7c037e55-6685-44d9-846d-cb1241380ee7 1 Other Other +7c03b0ac-3994-4c46-ad60-61c747aef7e8 1 Other Other +7c03b4a8-3239-4fd6-a91a-02a4b7c0eff8 1 Other Other +7c03c2da-730f-445b-b700-28348c87ecb2 1 Other Other +7c042604-3200-4c7c-87b6-13ce806985a1 1 Other Other +7c044ccc-8e9a-41d5-bef0-b81b6c48624d 1 Other Other +7c047792-1f3b-489e-91d1-54ab3a516c65 1 Other Other +7c047fda-0290-494c-92eb-2a7be8a36ec5 1 \N Other +7c0481aa-3bb9-46ba-b72a-da4a5459b2fd 1 Other Other +7c04834b-5b12-4eb1-b397-c41382defd0a 1 Other Other +7c04e427-f308-4c74-8edc-ef0edddb1d58 1 Other Other +7c0500ef-a0f7-4497-93a3-d309ba3a6c79 1 Other Other +7c056d8b-8edc-4e09-aefb-5a6c4d4cf02e 1 Other Other +7c05dfd9-66fd-4b30-88d8-2dbce20b3f29 1 Other Other +7c05f7d6-1e36-4b84-988e-2442adfd9e7f 1 Other Other +7c062207-29b9-44e6-9ae2-c36fa9d66e4b 1 Other Other +7c0626c4-c618-4158-8a6a-90e3843a4a78 1 Other Other +7c0649f1-adc9-4f6c-8aa7-5537b696494c 1 \N Other +7c06759d-c9cd-4e32-9c61-558a18634be0 1 Other Other +7c070db3-c76a-43d7-973c-6c7df133b9df 1 Other Other +7c071b3e-dac4-442a-8e7b-00c630061f75 1 Other Other +7c08bad2-1ac1-11e8-8835-fa163e8624cc 1 \N Other +7c08ebd3-0bc4-4647-b091-440648d6731b 1 Other Other +7c08f3fb-04d5-4869-b615-ebf1c883d302 1 \N Other +7c090232-97b6-4982-8b39-fad6c5b07d3b 1 Other Other +7c094110-1740-4f4c-8058-2569c697c2cb 1 Other Other +7c09e6e0-21ab-44fd-ab02-d8ea756c23fe 1 Other Other +7c0a062b-a5e3-48b2-a450-dbcbd757eeb9 1 Other Other +7c0a22d3-7cea-4138-ad88-395f7f101c0d 1 Other Other +7c0a30a5-ee27-4475-b895-c5adc8bc0c64 1 Other Other +7c0a902f-b920-42c1-bddb-d07fa532e566 1 Other Other +7c0a9a56-27eb-490c-9c69-dadb00e0fc96 1 Other Other +7c0aab0a-82ef-44d1-9a02-3a6c3178c324 1 Other Other +7c0ab356-d369-43d5-958b-29b0a42db343 1 \N Other +7c0b1424-96dc-45da-9ad7-d653f7fab11e 1 Other Other +7c0b1560-d030-4f3e-be59-f25b2979d1f1 1 Other Other +7c0b2553-f509-4e71-9faf-b0b3b2c4d9c8 1 Other Other +7c0b63f7-5198-43a7-a161-c72692fca1f4 1 Other Other +7c0b6992-215e-483b-9523-ccc577a93247 1 Other Other +7c0b8bd0-d1cb-4fe7-9e48-274fbb72ba79 1 Other Other +7c0b97a4-4c37-4a34-a180-c0a848df0175 1 Other Other +7c0bf30e-a0f7-4bf5-a671-685acbdca842 1 Other Other +7c0c329d-dbc9-4677-81e9-4bd15bc684ae 1 Other Other +7c0c4bb6-4c73-4471-95ef-2a589c852b3c 1 Other Other +7c0c56e3-9aef-45c6-af25-f6a2f2d15453 1 Other Other +7c0d2c50-0828-409d-9659-37755d2aa289 1 \N Other +7c0d9dcf-fcaa-43ed-aa98-e18adfb60720 1 Other Other +7c0dadb9-b596-4805-8569-c8ce555497e1 1 James Other +7c0dcc7b-ad77-4486-877f-aacf2b86c544 1 Other Other +7c0e008d-4d15-4000-878f-14194c24bbbe 1 Other Other +7c0e7450-237a-4914-b13f-2ceeffd066d7 1 Other Other +7c0e7dec-cf43-4a75-a8d3-aad58fc0d58c 1 Other Other +7c0e7e92-ae75-4500-9d67-81f423ed194a 1 Other Other +7c0ecfa6-47a9-4e3e-b34c-331abd38dfbc 1 Other Other +7c0ed49c-a90c-418c-80d4-b2f6c9a2f8b4 1 Other Other +7c0f01eb-4bc1-4313-8993-5a3c384a52ac 1 Other Other +7c0f61c9-2d96-43c6-a2a5-18000f264b41 1 Other Other +7c0f66b7-ee86-40af-8471-f5e009662c25 1 Other Other +7c0f70e6-08f0-4712-903d-64af7beb2694 1 Other Other +7c0fe903-d325-4988-89e9-befdae1512f7 1 Other Other +7c102d77-132a-482a-9c57-73920ecfc27f 1 Other Other +7c11522a-46e6-452a-8277-dd0d50648aae 1 Other Other +7c1171a4-22cf-4e40-b051-fc839301f534 1 Other Other +7c11a1ed-eb4f-44b1-bf89-fc4359a74eea 1 Other Other +7c11cb72-7ca2-488a-9c7d-8ed8242bc4e5 1 Other Other +7c11d5af-fa7e-4aec-81ed-5211420132cc 1 Other Other +7c11db50-9d14-42f3-9bab-98a69d2136d2 1 Other Other +7c120b03-918a-4755-ae82-257cc4e4483f 1 Other Other +7c120f87-9cfd-4517-ba03-da29fd9002da 1 Other Other +7c12c3d6-520a-4401-b5dd-3b102d6ba3c6 1 Other Other +7c12edfa-fe4c-4c45-a341-f3e80748d1f9 1 Other Other +7c132a59-7b2f-4b94-a93b-f5c43505236c 1 Other Other +7c139e2f-0b87-41ba-a94f-ece91654ad96 1 Other Other +7c142e6b-df79-4408-af68-c6bcca2e7183 1 Other Other +7c1443c6-0b92-4c16-ad8e-42437f0f21f3 1 \N Other +7c14440b-6d50-419e-86fd-e1e4f9f306b8 1 Other Other +7c146b59-34e4-4de7-9f1a-62c1c6ecc7fd 1 Other Other +7c14900f-5325-4615-822a-12e3a7418235 1 Other Other +7c14a06b-5f92-4cd6-91d6-b89075062a1d 1 \N Other +7c14af9e-150f-4e8c-8e97-2cace71f702d 1 Other Other +7c14c548-4c41-487e-9afb-272122dd6686 1 Other Other +7c152f47-da51-49de-8805-3ab1d0e90833 1 Other Other +7c1532ab-ffd0-4960-832f-93cd35fa4437 1 Other Other +7c1540bf-3f8a-4965-a61d-79a65a2ebff4 1 Other Other +7c15465a-5f87-4435-86c2-f24f00d0ce21 1 Other Other +7c1569ee-e594-44d5-8614-ed7f8aacec60 1 Other Other +7c160db5-afad-451b-8d15-213332df32cc 1 Other Other +7c16105d-bce1-4663-9afe-b6e9033b1832 1 Other Other +7c162236-f11c-41e9-bbe7-d27fac5189a4 1 Other Other +7c165b66-c2c4-46ef-bd9b-f9e0b5767ad2 1 Other Other +7c166cef-f36e-4f9d-97f0-8fc0482afe10 1 Other Other +7c16b23a-bfd9-4616-bc5c-e2f528cda6ba 1 Other Other +7c16d47b-75e2-4a05-961b-7e7e58b62c4f 1 Other Other +7c16efe0-2937-45cc-b4f9-f7a4550d5f89 1 Other Other +7c16f3fc-c3e5-4040-88c3-10a3e51d6538 1 Other Other +7c16f8cd-0a04-43c4-afa5-88b31fce6323 1 Other Other +7c172380-840a-45f4-b5d4-d261949b0041 1 Other Other +7c17727d-a85a-47ef-aad2-2fac8acf020f 1 Other Other +7c17a78c-40ca-4e45-a625-f1124433397a 1 Other Other +7c17adf6-aba2-41a6-b754-9d3358dcf2b5 1 Other Other +7c1802dd-4e69-4850-bd09-d20c2651a32b 1 James Other +7c18afb3-bbdd-434b-8393-9ec8cbdd5e1d 1 Other Other +7c197430-e7ce-40da-a940-c3bb51b0804b 1 Other Other +7c199fc4-f6c8-49ad-bf68-3c470e479e3f 1 Other Other +7c19ae69-27da-4b14-8c97-a7f7773fda79 1 Other Other +7c19faa1-9107-40d0-a863-8c7c8974477b 1 Other Other +7c1a535e-811e-4dca-8a9c-188f0a9129ac 1 Other Other +7c1a6dc0-9b3c-4972-99bc-f8edaabda669 1 Other Other +7c1b38a1-d5e3-4322-933c-bc6429de9c44 1 Other Other +7c1b8bca-caa5-4dd0-9fb0-b9d4c9b679c4 1 Other Other +7c1bbdd8-c748-4a94-a03a-6fed6657f3be 1 Other Other +7c1bdcf0-60ea-44b0-a985-58924ecae8b2 1 Other Other +7c1c0a80-50c9-47a4-b5a7-e55dbd821db4 1 Other Other +7c1c177a-c69c-4a3a-ac87-27e888e5728e 1 Other Other +7c1c5bc5-254e-465f-80ac-e1166fbb0ad1 1 Other Other +7c1c8eaf-18ec-4171-af94-a68096614207 1 \N Other +7c1ca156-04b9-4eff-b4f0-179a07dce051 1 Other Other +7c1cbffd-a9c3-4e84-a48d-1e438695a9cf 1 Other Other +7c1cc826-8380-48e7-89a7-93def0e03c22 1 Other Other +7c1d21f6-4e7b-464d-8b2c-1cf372a134ba 1 Other Other +7c1d41cd-e9d0-48c8-8e28-f255af462668 1 Other Other +7c1d58da-78ab-46e1-82df-cf39e1255b41 1 Other Other +7c1d6fde-388c-4147-b78b-5af390cc51f8 1 Other Other +7c1d83c0-1e9c-4a86-8ca0-0b4ff0ac2fb9 1 Other Other +7c1da223-3484-4af3-bc8b-09e6b6657370 1 Other Other +7c1dc14d-37ea-4e10-94de-51a033301fc6 1 Other Other +7c1dcb1c-4725-47f2-8307-9f7e7219f7a8 1 Other Other +7c1e00af-9d6d-473a-af85-d0008fa457cc 1 \N Other +7c1e3af8-d5d2-4974-9033-cdc9d6ce7265 1 \N Other +7c1e649b-175b-40ec-8eb2-fd9231cc9ea2 1 Other Other +7c1e68e1-1a61-45c5-915d-423dd611d8c9 1 Other Other +7c1e8d32-e0c4-4919-9af7-5e93496548a4 1 Other Other +7c1effcf-023c-4f45-87f7-6ca3e34adebd 1 Other Other +7c1f0420-f600-49f3-a120-c3999560e6a2 1 Other Other +7c1f100e-b615-40f0-8064-857f5a3d5352 1 Other Other +7c1f2f93-d460-4ed5-9478-bd38495e6c01 1 Other Other +7c1f37ff-5f02-4d8a-9774-fead175085e9 1 Other Other +7c1f412a-c17b-447c-a86b-722770a38086 1 Other Other +7c1f66b2-2fd2-4c48-a9bc-ece7ca3e58cd 1 Other Other +7c1f867f-be66-417f-93a2-7973d3fba3ab 1 Other Other +7c1f872c-345e-423e-b268-e172edc3fa09 1 Other Other +7c1f969a-296e-42fc-a0d0-57d2b42e1f23 1 Other Other +7c1fab15-0f38-4fe5-a788-0b0f6fba3ad2 1 Other Other +7c1fc4f8-8663-4bbc-b57f-4b7eda6f724a 1 Other Other +7c203d9f-f9c9-47d0-ba15-1a2114806db0 1 Other Other +7c203e5a-be0b-4be1-95cb-3dec01471a45 1 Other Other +7c205bee-bebb-4a7c-963f-67091d526c7e 1 Other Other +7c2063a9-4275-403b-9ab4-bf206b9b4331 1 Other Other +7c207014-504c-43c0-a6c4-04eeb5b46e31 1 Other Other +7c20785b-4c74-4398-92cb-e1b97d514c86 1 Other Other +7c20d8c2-a989-4d7b-9856-d9b586013579 1 Other Other +7c20e976-03dd-4bba-966f-8ece5ebfd1cb 1 Other Other +7c210ad7-b752-45f6-a545-4b4d7383f3db 1 Other Other +7c212c13-5361-4766-a091-677f41977daa 1 Other Other +7c212e67-ef0a-406e-9926-9a319f8ce07e 1 Other Other +7c214337-34df-4f8e-b7a4-7f66016a28fc 1 Other Other +7c2165cb-f2e0-44c1-a015-7023526fbb85 1 \N Other +7c21b15f-6066-4586-8a1d-d8742dc78e47 1 Other Other +7c22916d-38e5-4561-9fd1-b7e6debbe264 1 Other Other +7c22d4a0-2730-485c-ac31-3b5e02cb7d4b 1 Other Other +7c22da32-7e63-47ff-98d2-c7a465f770c3 1 Other Other +7c22e7b3-b002-48ef-a8dd-35a4c09a9790 1 Other Other +7c230eb0-4ebc-4361-a7e3-872a8ff95b32 1 Other Other +7c2335d9-b807-4e37-9e15-a61f9eee3327 1 Other Other +7c235796-8ebd-4e67-8891-9a73de6d8c01 1 Other Other +7c2367ed-08f1-4ac9-b915-3e752c766eb0 1 Other Other +7c237094-e6cf-4482-b5e8-e9aff284c656 1 Other Other +7c23e2f8-599f-434e-9f77-dda28b0f56bf 1 Other Other +7c243073-300a-444a-a8ac-fcc4e7a8c496 1 Other Other +7c243e7c-f239-4891-b4ce-86055c8efcc6 1 Other Other +7c248ef1-0e8c-4ac0-8f09-63e8ea98e806 1 Other Other +7c24d773-1820-479b-909d-f167706bf778 1 Other Other +7c24df4f-bc94-478b-86d4-8fd81ed692f8 1 Other Other +7c26151a-e2a4-4134-bf02-85b26c1cb645 1 Other Other +7c264465-7b4f-4860-a56b-ee91806ee02a 1 Other Other +7c26a9ae-9511-43dd-a6e9-25e7bf0f910b 1 Other Other +7c26d6fb-7ede-4edf-afca-86e65a3b78e9 1 Other Other +7c279ac1-2873-4c16-9d0c-4a064d2ed671 1 Other Other +7c27b716-31c2-4ace-848a-c8b57f070d7f 1 Other Other +7c27e94e-4aab-469d-ae7e-6ad2eaefc982 1 Other Other +7c280662-2027-4219-a6bb-06419eb43402 1 Other Other +7c2837a5-5c87-44a3-a76e-7c20820c8d05 1 Other Other +7c28634f-051d-4497-85eb-6e98a2935f6d 1 Other Other +7c286c72-2c83-4a0c-9050-ae739b6ee774 1 Other Other +7c28a37e-60fa-476b-b275-147f00023cd4 1 Other Other +7c28debb-d0fb-4b6e-8923-43b3833a1d67 1 Other Other +7c28ef61-12be-4ecd-ad43-52fdd21c0b61 1 Other Other +7c28f2cd-a6a0-4812-8898-3fa1270e1c75 1 Other Other +7c294ff8-e033-45ec-9483-8af796ca2805 1 Other Other +7c298d08-083a-4e46-97f9-efa92bef9cb5 1 Other Other +7c29c327-c562-4d2c-9430-4c26a8709e08 1 Other Other +7c29c78f-84a7-495a-90d0-6465fd22ddee 1 Other Other +7c29d0ca-32c5-4e09-b48f-6a4cd8324ab1 1 Other Other +7c2a26d9-a102-4abb-8a24-5445c2baa6d9 1 Other Other +7c2a9428-ee70-44b5-bc64-7dce8937e04a 1 Other Other +7c2a9fb9-5443-4b61-872a-54cf5f0aad9d 1 Other Other +7c2ae31e-91b6-4de1-8ca7-59c12a819d8c 1 Other Other +7c2ae579-4cc0-4b24-958a-b4cb396868a0 1 Other Other +7c2c28ff-b025-4001-880f-deeacef2a726 1 Other Other +7c2c2b84-e5bc-4ad5-a399-3acf231c15de 1 Other Other +7c2c46cc-d71a-4caa-b0b3-84d4063a4f95 1 Other Other +7c2ce69f-3e49-446a-be5f-259fe327df1b 1 Other Other +7c2d0064-0383-4409-be32-94e8ec478796 1 Other Other +7c2d52ac-6715-43ef-ab9e-13a05a17bbaf 1 Other Other +7c2d72a5-ce9a-4cdf-b161-3e958b36ddcf 1 Other Other +7c2db3ce-b04e-4b40-bedf-2d55e349dc9b 1 Other Other +7c2de932-ee3e-46cb-8c34-0c20db5fb613 1 Other Other +7c2ded1e-31cf-4b57-952b-93715089edbb 1 Other Other +7c2e4a16-fc57-45c9-8f44-564381b95976 1 Other Other +7c2e8ee3-f69b-46a3-b0f5-f8f0c43dbf65 1 Other Other +7c2e98ff-71d5-4e34-a482-6943dc4708b0 1 Other Other +7c2eaa18-16df-41ac-8db2-f62c4a2941a1 1 Other Other +7c2ec254-139b-4d09-b2f3-72e057d34be7 1 Other Other +7c2f04e3-477c-4a0c-88f1-19ef2a82fa4c 1 Other Other +7c2f074e-cd0c-4f93-a095-37110078778c 1 Other Other +7c2f2133-3260-4fb0-9796-68a1ce621846 1 Other Other +7c2f5183-a173-4354-96ee-0f4055151352 1 Other Other +7c2fa53f-8213-453c-be69-33810c042f59 1 Other Other +7c2fa7b2-1b17-47b9-b15e-b8028ed09cd2 1 Other Other +7c2fb61a-bc9d-4d30-b383-91f5c857a09e 1 Other Other +7c302b62-483f-4d71-847b-b05673c9f9be 1 Other Other +7c3065df-6a13-4460-92d2-42f54a19618c 1 Other Other +7c306683-7bdd-439a-b6b2-737346fcb390 1 Other Other +7c309a4a-99ae-4b7e-b16f-6e9fc38e67b8 1 Other Other +7c30a135-6eef-4286-8980-01a82766f3f7 1 Other Other +7c30b040-12d6-4535-ae4a-0d581e22f7ce 1 Other Other +7c30ff71-8a7a-4cfa-b509-65874786deee 1 Other Other +7c3116fb-944e-4918-9fd2-88b0518d655f 1 Other Other +7c314c24-44ab-46f7-a9ed-de8a3b995f6f 1 James Other +7c316af7-7b1a-4016-8905-247268130e32 1 Other Other +7c31946f-ab48-4a0c-8907-17bcf898c868 1 Other Other +7c31c7dd-3e1a-4891-bb8c-1769d53af6da 1 Other Other +7c31f4f8-33ff-47b2-b253-eef68e58aff5 1 Other Other +7c320639-4712-482e-8e75-559175864b1a 1 \N Other +7c324c3d-c3b8-400c-afbf-52cae09fc74b 1 Other Other +7c327fbc-a600-4184-8b72-924fd6b195d5 1 Other Other +7c328807-491b-422b-b529-7e7182175c71 1 Other Other +7c32a8f1-ffd4-4ad7-a672-dacd3fdbecbb 1 Other Other +7c33c3f7-b36a-41d7-888c-3949639e24f1 1 Other Other +7c33c860-8d15-4c64-97a3-e4a93e245ae7 1 Other Other +7c33ca30-c1cf-493d-a6d9-f03a5f007ab5 1 Other Other +7c33f94a-9515-45a2-aab5-49efef5b827f 1 Other Other +7c341b5f-dea1-41b4-a145-03833206adf9 1 Other Other +7c342856-a864-4022-939b-7b8266100946 1 Other Other +7c346ec8-1250-45e8-9b24-470ae88767ba 1 Other Other +7c3487b5-9027-4dd2-83c0-e92fbac9d626 1 Other Other +7c34a54a-c5db-4a94-8b03-3b4ca750902f 1 Other Other +7c34b23b-a29e-4135-a235-89355c671189 1 Other Other +7c34f920-4e6d-4a23-a04f-ea907633ad92 1 Other Other +7c350217-bb84-460d-9ab6-d664926b2eb7 1 \N Other +7c3558a9-6a09-402b-b6f4-2fa83104aaac 1 Other Other +7c36023f-4507-4a01-9cf6-2022b241b780 1 Other Other +7c361a67-6a6f-4275-a1fc-101a768206cd 1 Other Other +7c361b06-6421-4388-9ed1-6ffb31b5bcdc 1 Other Other +7c362030-532f-4066-8cb1-6558ed6a0a25 1 Other Other +7c3658a5-5522-4033-be8a-90facff7b6f4 1 Other Other +7c366d01-4daf-4601-ab7c-dc3489d0c056 1 Other Other +7c367935-1fd9-45a5-83f0-52350e628040 1 Other Other +7c3705e9-ba75-4ba9-88ce-99b3a7240e2f 1 Other Other +7c37487b-9d2f-49ee-ac42-27086ef7bfa0 1 Other Other +7c37765c-58c6-4375-afb5-05763df8facc 1 Other Other +7c37f71b-4430-4b8f-9647-0eefdaac03ac 1 Other Other +7c384ae9-9780-42cb-ad81-7ea21573c4f2 1 Other Other +7c386a70-23fd-42df-ae7c-5c7110049589 1 Other Other +7c38bf26-d3da-471b-857d-dea475818262 1 Other Other +7c38cd41-1b0c-4c9d-a15f-d3380325db71 1 Other Other +7c38e457-fb70-46dd-a01f-d7e15a5d321f 1 Other Other +7c391b8e-4f72-4d6f-ad0c-e6e5105532f6 1 Other Other +7c3950c9-0e9a-4200-ba05-05edf4c4d05d 1 James Other +7c396306-9b36-4e74-b74d-6f2c664dd7d5 1 Other Other +7c39cc7b-7ddf-4d55-9783-3f210ddab360 1 Other Other +7c3a2a63-5894-4244-9029-034e81194838 1 Other Other +7c3a5683-5187-4953-851c-9059a7938e4c 1 Other Other +7c3aa0f5-150c-4803-8ffb-1b95dbe3f536 1 Other Other +7c3ad1dd-0870-4de5-b548-012cb63268e6 1 Other Other +7c3b1788-e8cf-4ec5-8c4a-e5039d27360b 1 Other Other +7c3b4ca7-a71e-410f-a579-c1b468a3327f 1 Other Other +7c3b5ca8-6a09-445c-b5a2-8d5908af2171 1 Other Other +7c3b68f0-5cc2-4b73-9e51-7857f60d3c4b 1 Other Other +7c3b9e79-48c7-4fef-b513-3f674a4c5259 1 Other Other +7c3bb217-597b-4494-b409-276742521194 1 Other Other +7c3be6ca-b66f-11e7-8f5c-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +7c3bf38f-b824-4e0c-9915-aad196f033d4 1 Other Other +7c3c61de-8606-4177-9dd7-2bb419f64eb2 1 Other Other +7c3c7505-5d19-4f3b-b7e9-be202fd5a6ef 1 Other Other +7c3c7b54-bf97-496c-9647-91c011d0702e 1 Other Other +7c3c841b-7998-493d-99d8-9c9b50190257 1 Other Other +7c3cad74-ce3b-4021-a671-dbcf090c906a 1 Other Other +7c3d659c-0bb8-4297-9969-20ca074fc840 1 \N Other +7c3d9ecf-81b7-4f1a-bf12-1e7fb7ca811e 1 Other Other +7c3db0b8-1c45-4776-a296-c2d5715a7594 1 Other Other +7c3dff22-d1dc-46c5-859b-2f4d07f93f2b 1 Other Other +7c3e1501-2cf0-480f-9080-70a860d8dce2 1 Other Other +7c3e3106-e252-4576-8c17-45f3931b7f65 1 James Other +7c3e3cbf-7f04-4e35-9d9c-5d0fbd637b31 1 Other Other +7c3e6f7d-dbf4-45d8-bfa2-ddbcaa65aeb5 1 Other Other +7c3e8ee6-3ca0-4234-b97e-f025c3509a95 1 Other Other +7c3e952e-e1a5-4ece-af80-1ef54dcabf50 1 Other Other +7c3ece3c-2474-40c8-a297-b16112bd2115 1 Other Other +7c3ef6de-4690-4049-bffe-31e049248d80 1 Other Other +7c3f3feb-932f-4f03-8466-9953ca115c57 1 Other Other +7c3fcb28-ae97-4d05-a3fc-fca87e997ee2 1 Other Other +7c3fcc9a-a86c-4eac-b661-287aff855602 1 Other Other +7c3fd490-e1c0-4ea9-baac-1d13c31330d6 1 Other Other +7c400ceb-8a4d-4e49-a7a5-fa56ae574e75 1 Other Other +7c402783-9233-41dd-b4aa-c74c3e930e14 1 Other Other +7c40349f-8a2a-4814-bf45-16428030a52d 1 Other Other +7c407c13-5ad6-40c0-8e0f-bb19e17956d1 1 Other Other +7c40a211-6557-4f2f-8f29-fc86cbaa55de 1 Other Other +7c40b4b7-ffda-4d60-86d2-94155d142a6b 1 Other Other +7c40f2ac-e87f-47ff-9229-e38d8a6eb7cc 1 Other Other +7c4107c1-4b38-4dd7-95fd-b847cb7fd540 1 Other Other +7c416583-7867-4e27-a3e5-6c600b9e86fe 1 \N Other +7c418775-4f7c-4b05-bbf1-060064f41460 1 Other Other +7c418cad-6137-4f5c-bff8-91641e6b6e37 1 Other Other +7c421433-76b5-4f49-9633-778d7fa802c9 1 Other Other +7c4256c6-42e7-4800-ac08-9298dda126ae 1 Other Other +7c42754a-7ceb-45d1-a8c8-d53ee843310f 1 Other Other +7c42d10a-a658-41f8-ade1-53d5ad309e89 1 Other Other +7c42e19b-9733-4ec6-a888-2637bcb3b793 1 Other Other +7c42ff61-c0ee-4190-a859-c41514fe072f 1 Other Other +7c4382d7-b39c-4d27-abe4-3a3650ce5ad9 1 Other Other +7c440105-e295-4a08-950e-69d79c0b41db 1 Other Other +7c445451-52bc-431e-8c18-e0f6cadeecaa 1 Other Other +7c4457fe-1617-49e0-a410-e8ddbeffb128 1 Other Other +7c449034-d72f-4f2a-aee8-942084fd4637 1 Other Other +7c449986-4586-4b8e-931b-4b604015206a 1 Other Other +7c44ae2e-56b4-40cc-9249-77f6b1b75700 1 Other Other +7c44bb2d-7c27-46f3-9ac3-23415afc1f9f 1 Other Other +7c44cdb3-01cc-4aa0-ac0a-dfe14c37da8c 1 Other Other +7c44e820-ebe0-4380-a94c-4443a02fcc82 1 Other Other +7c452a21-3b2b-470f-a659-e65c22907f52 1 Other Other +7c453aab-7e2b-43e1-8780-c4790cd57e9d 1 Other Other +7c45481e-138f-4c4c-8e60-664e09ee189e 1 Other Other +7c458cf8-1cb6-4b85-8e11-5fefea8986bc 1 Other Other +7c45b2ad-1fa4-4534-949b-75bdb68b146c 1 Other Other +7c45d10a-e4df-4285-8f5e-87d2b715adea 1 Other Other +7c45f390-968e-415f-99d9-4547dcddbcfd 1 Other Other +7c460f98-fefa-4e92-a68c-02eaa932e03f 1 Other Other +7c461ef4-5056-4dcc-84f9-b0b828781663 1 Other Other +7c463f46-8fff-484c-b91e-c88acfdb0fb5 1 Other Other +7c47252c-3bd6-415b-a475-36b165db9bd5 1 Other Other +7c475176-84db-4a0e-9528-8c173513a706 1 Other Other +7c47a5da-05ed-4460-b180-b469690a3841 1 Other Other +7c47c7d9-0750-4fbb-ba45-16512916563d 1 Other Other +7c47eb1a-050c-413c-b638-5f0804e04413 1 Other Other +7c481a5e-6c10-4535-b8f7-205be0220683 1 Other Other +7c4820dd-3cf6-4de5-a426-91efd2477e0c 1 Other Other +7c4835d6-c56d-417b-8b6f-da577bb00933 1 Other Other +7c483dee-17ef-455c-89d5-5d03c5624322 1 Other Other +7c486477-c3ee-4e9e-b826-491dfe97de3e 1 Other Other +7c48cd4b-5d4b-450c-8b00-3231c055b82f 1 \N Other +7c4983fa-c78a-442e-a04f-bb76fd1d201d 1 Other Other +7c4991ff-4396-4430-ac93-8352a8686341 1 Other Other +7c499559-e4fb-4f33-9b7c-6bb0dd1bd156 1 Other Other +7c49b449-3f18-4820-8bc2-4abb293153f0 1 Other Other +7c49bde1-4c9b-481b-b4a6-8245642d0ac8 1 Other Other +7c49df32-16df-42be-b7fa-96d2c7478ddd 1 Other Other +7c4a4944-521c-46cc-9ba0-0947380fec2e 1 Other Other +7c4a994f-ea9a-43a3-9612-d511b5e58d02 1 \N Other +7c4ab8bf-90df-4a68-ab8d-39a37528f34d 1 Other Other +7c4acc9b-39ef-40bf-89fd-afde91f5e4ed 1 Other Other +7c4ade2a-d8b5-4d74-88b3-ec68974e9f44 1 Other Other +7c4b253e-8bae-4ad5-a183-62a8cef596a7 1 Other Other +7c4b9af5-2076-4028-9754-a7464e73ac6f 1 \N Other +7c4bb532-6ecd-4414-9127-01878e1d44c2 1 Other Other +7c4bb8a2-c28d-4104-879d-146e8f0cd20e 1 Other Other +7c4bd84b-7a91-46ab-96b5-3995bbcee27c 1 Other Other +7c4bdaab-d9a5-42f0-bf4d-c7653970d178 1 Other Other +7c4bdfab-65c0-4d37-bed9-e3464774f5af 1 Other Other +7c4bfa08-426e-407e-b37d-ed04234828bd 1 Other Other +7c4bfd35-b56e-49be-8b83-e26830e32a41 1 Other Other +7c4c1b5b-7006-4f9e-9790-ac362010b6a9 1 Other Other +7c4c357a-77b9-4a70-8058-44a013245d96 1 Other Other +7c4c46c8-fe9b-41fb-a577-2f0e29be7b86 1 Other Other +7c4c64f3-90e3-431f-9eda-c04aecc40e11 1 Other Other +7c4c6e3a-7bc5-4bd4-9506-d68b1705c024 1 Other Other +7c4c6ffa-519d-4520-96a9-41de12417f9a 1 Other Other +7c4cc285-dbf4-4b98-b59d-c3f0f53c92b9 1 James Other +7c4cc8cf-39b5-4835-826d-fad1f7a0e193 1 \N Other +7c4cfe0c-73dc-49a5-8a26-09dc9ec46822 1 \N Other +7c4d1e32-65f3-4a72-b769-1395322fd185 1 Other Other +7c4d2cd6-9399-48f8-98b1-16fb6259f501 1 Other Other +7c4d3635-aa4b-450c-a351-d084964c5c81 1 Other Other +7c4d9ca8-2075-431d-91c8-2b50f59c9b0d 1 Other Other +7c4dc5cb-9320-4e02-b6e9-d9d9a4394fab 1 Other Other +7c4e10bd-cf0a-410d-a4d0-7a3bc84495f0 1 Other Other +7c4e180a-c31c-46dc-ab51-9739be61d66a 1 Other Other +7c4e388a-6bdc-4f6c-b25a-5ed8006fbd00 1 Other Other +7c4e95f3-2f2b-4e9e-beea-3105fa232ca3 1 Other Other +7c4ec47e-a344-45a5-82f9-562f0c8dc7c4 1 Other Other +7c4ecbbb-9e20-4fd9-a17a-d54db1a593b4 1 Other Other +7c4edc39-5edc-4701-a0e8-9c5967a7cb45 1 Other Other +7c4ee3b6-9a97-4294-a63f-c7f5f27e5435 1 Other Other +7c4fc125-0368-4ff4-a2a4-7e29ab720b67 1 Other Other +7c4fc17d-184c-4c7e-b60b-18f984bd53ab 1 Other Other +7c50026a-6445-4e36-bc9c-d1e38c7a4225 1 Other Other +7c502cd3-55d1-49d5-8cee-46c46e594740 1 Other Other +7c50426a-8695-42e3-96da-b6951631419b 1 Other Other +7c509ccf-c164-401f-930d-463fd7adc3a2 1 Other Other +7c50cc02-4341-452d-a29d-ca111a114d3b 1 Other Other +7c512f91-f4d0-49d4-9acb-aef5bda39b36 1 Other Other +7c5133ef-131f-489f-92bb-149d0230021d 1 Other Other +7c5159d9-1793-44f3-9187-814ae4d037e9 1 Other Other +7c516298-9772-4c4f-a953-84e745ee9c37 1 Other Other +7c5207fa-7747-4328-9383-c0e0303f3c06 1 Other Other +7c5230b3-a621-4aa9-9dd2-6ad9b0525858 1 \N Other +7c523a6c-204e-4930-a4e9-79eb897f09bc 1 Other Other +7c525fb5-e1b5-4f04-a6b7-5dffef56cbee 1 Other Other +7c527210-c19a-4b89-82ca-a5a8508cf521 1 Other Other +7c52af89-982d-446d-9070-a52026a7aa17 1 Other Other +7c52d6a5-1751-438a-9801-4d244d6f7cae 1 Other Other +7c53d83b-d2a4-40a4-84e7-396c89aa4fa7 1 Other Other +7c5404ef-01ae-47bd-8fbe-fc80701d4a91 1 Other Other +7c542611-aa7b-4121-b30b-049c7b2f281d 1 Other Other +7c5440a8-f9b2-477d-93ca-4fa54b6f30a8 1 Other Other +7c544a68-6733-49a8-a6a3-5614a96438d6 1 Other Other +7c548610-2ea3-4be1-8ca4-404228394d0d 1 Other Other +7c54d427-6d33-43c4-9f1a-6221af3c95d0 1 Other Other +7c551cf1-9dc7-4a5d-8245-f5cbd443bbb5 1 \N Other +7c552ad6-8954-47a3-951b-604aa49de473 1 James Other +7c554f61-3a12-4557-bd60-1fa93870cec3 1 Other Other +7c55a6a0-8d2d-4a95-99fc-7938de034ba5 1 Other Other +7c55f2a7-0389-45d8-9255-3d9b26b79327 1 Other Other +7c56414e-6ccc-4bc7-baef-c83419103dc3 1 Other Other +7c5657b9-c998-483d-a79b-3f64c5b60520 1 Other Other +7c5686cd-9e7a-439e-9e01-43bbcc9b64b4 1 Other Other +7c568f23-9b31-4252-9a5f-281d0cc5da81 1 Other Other +7c56ba1a-ab5c-46ea-bfa3-16986e2ef260 1 Other Other +7c56dcb6-cdc4-4e2c-a317-87c0062c235c 1 Other Other +7c570253-e5ac-41da-a6ba-92421e57872d 1 \N Other +7c577b63-c40d-4c17-a569-4f440d81cb85 1 Other Other +7c5790e1-9321-4174-a2e5-2a02e8c5fc63 1 Other Other +7c57ca74-566c-434d-a549-ce04cd57e7cc 1 Other Other +7c57dcfa-6b9a-4be5-927d-a5a51106b802 1 Other Other +7c57f680-ed1d-4181-88a8-76ec74fff96c 1 Other Other +7c580d40-5c67-4490-a8f4-c9c9b25edc76 1 Other Other +7c583584-2e81-4bb0-94e6-10e01ecfc8b7 1 Other Other +7c5852bb-e7f8-473c-8aba-86bd28c5fdf6 1 Other Other +7c587ce5-59b3-4fc0-b10f-8b36d08eb709 1 Other Other +7c587e68-d92d-44d8-9f3f-89aa147be72c 1 Other Other +7c58f032-1f05-4007-9f63-260dd8ccc00b 1 Other Other +7c5932b2-d94e-431f-bac2-03db4061bc77 1 Other Other +7c598a9d-4b6a-4fdd-a0ff-fa64f5461daa 1 Other Other +7c598ff9-dc3c-4029-a2d4-791048999707 1 Other Other +7c59c577-a891-4a2e-8d6f-4bb768e48bce 1 Other Other +7c59c737-b458-486c-babe-5179c43fe1ae 1 Other Other +7c5a080c-0c58-4698-a8b6-eb3f2494aa48 1 Other Other +7c5a1f65-3e35-4748-af2e-a3a5dca1e909 1 Other Other +7c5a5bf8-69bf-4383-9d75-9d8b6d534dd9 1 Other Other +7c5acb55-e3a0-4917-a660-d42f51ee89eb 1 Other Other +7c5acf7c-485f-4f8e-ac2b-f0e3abe9e5a4 1 \N Other +7c5b11bc-0dac-4848-8b6c-fb307d3cbe06 1 Other Other +7c5ba1b7-7ea7-4beb-a568-9038ee242f1d 1 Other Other +7c5bb8c2-aadc-45fa-9dba-75378f0bef74 1 Other Other +7c5bcdb1-c3b7-4479-9706-ec4bab79266c 1 Other Other +7c5bedf1-cd91-4cb2-843f-129df74e500a 1 Other Other +7c5c14a2-e68e-41fb-ab8a-59609057d9a2 1 Other Other +7c5c2483-8153-43a6-8914-f4100a8b7d38 1 James Other +7c5c2fdb-da33-4f01-9475-1392451a1187 1 Other Other +7c5c58dd-1099-4018-8945-9455efdb4577 1 Other Other +7c5c7896-7576-491f-b05e-42f07729ee7d 1 Other Other +7c5cfe9c-beca-4202-8df2-d0d3d1e8e873 1 Other Other +7c5d13dc-dfb6-4511-803f-b298027395f7 1 Other Other +7c5d79a0-fcff-4aea-a64f-e9fe394cbce0 1 Other Other +7c5dfc89-82ab-4f48-9fd9-a1fd83f22340 1 Other Other +7c5e0308-f5f6-438f-af5e-4ab92b10930b 1 Other Other +7c5e2f5d-63e4-41b2-897f-2eeb176c1072 1 Other Other +7c5e3d1c-71d3-4dbc-83e4-cbba55dda04f 1 Other Other +7c5e600f-20dc-47d5-ba5e-a1c7b7552222 1 Other Other +7c5ea6a1-5bb8-476a-b492-5d3c78afc5b8 1 Other Other +7c5eb5a5-9e36-425b-93ff-a66abe3f1d7f 1 Other Other +7c5eb65d-4402-4540-8196-68a5a494f754 1 \N Other +7c5ec0b5-2c70-4fb8-8ece-212caa125836 1 Other Other +7c5ed036-77ca-4202-bcfd-fa4aa715b920 1 Other Other +7c5edf68-6341-4a9c-805e-cfa4380e35b2 1 Other Other +7c5ef3ee-c47f-4e40-8fdc-b0df2ea167d3 1 Other Other +7c5f3a2c-aaf0-4144-8e98-7d08c0a3792d 1 Other Other +7c5f65c2-9e53-434d-beaf-02579c7f3f30 1 Other Other +7c5fc8eb-6afd-42f7-b4e9-2a0199599c4a 1 Other Other +7c6029ff-03e8-40ab-aec0-3b509fe53caa 1 Other Other +7c602cba-ed17-439c-b4bb-559f04218d3d 1 \N Other +7c60a473-71f4-4e1b-ac9e-ef48ad709c23 1 Other Other +7c60acc8-c1d4-454c-a99a-1f69c21412f4 1 Other Other +7c60af8b-fa2e-4638-a5c3-823e772ba897 1 Other Other +7c60d79a-1ee9-46fe-9d99-66fbaf92f889 1 Other Other +7c60ff28-deba-47dc-b389-fb4c7119e937 1 Other Other +7c610d1c-80b4-4266-8e4c-1d4835bf3650 1 Other Other +7c611aec-5a34-4ebf-9ad9-46c658341a46 1 Other Other +7c6200f2-b39f-4059-aea6-2510f01ead47 1 \N Other +7c623e83-9389-4c91-b9a9-33b425d21f0f 1 Other Other +7c628a10-5f5e-4cf3-9c1f-eec7546caf04 1 Other Other +7c629556-a28c-43e8-a307-e35819784772 1 Other Other +7c62dc09-2629-4f4c-9fe4-b00e7ec291ce 1 Other Other +7c63745b-bb80-4f50-bee4-c9b8d8356e26 1 Other Other +7c637a06-0a20-4bc8-bb65-736257d60643 1 Other Other +7c637c94-3d6b-47a6-846d-727a6a8582b9 1 Other Other +7c63da07-bbda-4b91-b551-271b4d7c1f34 1 Other Other +7c63e8ce-57c5-40c0-a4d1-4cabd28ee9cb 1 Other Other +7c642123-2c2c-4c85-a724-3f591e960f88 1 Other Other +7c64363f-379a-4a6e-b737-c5242012a1d9 1 Other Other +7c6442d0-109e-4900-a243-739ab1428d42 1 Other Other +7c649191-d97a-4192-8b6c-0181dcc3ff68 1 Other Other +7c64ad28-76f2-4b5d-b5c7-e302d89fef2a 1 Other Other +7c651cbe-0e87-4ae9-aab1-d88547a9d928 1 Other Other +7c659f82-f834-41c4-b577-57cec8e5f15a 1 Other Other +7c65a158-37a1-471b-965c-e4906e78cec6 1 Other Other +7c65adb5-46f9-42d2-80ab-a444ab94faf2 1 Other Other +7c65b229-a2bc-41ca-9cfd-1caf3c629bee 1 Other Other +7c65c4b4-c065-4260-a768-8a1925c185c0 1 Other Other +7c65e431-7fd9-4c86-893f-ef468a7195f0 1 Other Other +7c660d8f-72df-4a51-89ab-1aab9cd9d8d5 1 Other Other +7c664ab3-2b1d-43b9-a083-1acee550a101 1 Other Other +7c66ab1c-23bb-41e3-a714-bb98459a9542 1 Other Other +7c671110-9b94-4ec9-89d2-cdec4d9b3282 1 Other Other +7c671f76-97d3-4928-aede-698fdc79bb6a 1 Other Other +7c679460-99c9-49bd-9707-511a27249b37 1 Other Other +7c67abb4-8c71-4204-8003-9bca6a4efbf4 1 Other Other +7c67c1a4-f13d-4a77-ba0b-59795caeea29 1 Other Other +7c67c36f-a34f-4931-b2f8-1c5253836b5b 1 Other Other +7c67d756-d24a-49a2-9779-bffd2e82ba98 1 Other Other +7c67fb56-cb1c-46c4-bc38-5a9dee2ddf24 1 Other Other +7c683d7e-0c42-4f21-b65f-b097121513f9 1 Other Other +7c68cc30-9d62-4358-b93d-391ad08083b1 1 Other Other +7c68e5b4-27ae-4b36-a74c-97891c79a83c 1 Other Other +7c68ee64-5c93-449e-b1b1-645945ea555b 1 Other Other +7c692191-03e6-47ed-bdfc-eed69ee701c5 1 Other Other +7c6930fe-18f6-45ec-92bc-3ebefaa59f4d 1 Other Other +7c69f2ae-8404-46fb-bb23-be6429bb1658 1 Other Other +7c6a6022-745b-4804-981f-b60f22e770eb 1 Other Other +7c6abf06-6655-4ec0-b825-3443cd8b2fc4 1 Other Other +7c6acc78-dbfa-43d2-a14a-6458d2a2b27d 1 \N Other +7c6b49e3-d08e-44f0-97a5-d184193f512c 1 Other Other +7c6bb48d-2df0-41cb-b4fa-71579197e5df 1 Other Other +7c6c038d-e874-41e3-b59e-2df23048911a 1 Other Other +7c6c1866-0f4e-47e8-972f-1c23bdcc1959 1 \N Other +7c6c60b5-9826-44cb-b416-3776f689ae8a 1 Other Other +7c6ca5f5-4f66-4a0b-9741-9a73ceb10a65 1 Other Other +7c6d2125-744f-4e50-8605-17b91b9c2f56 1 Other Other +7c6dc841-3057-48c2-9e92-f9b6a9278571 1 Other Other +7c6de5f2-92a7-47ea-a201-b2d276e8886f 1 Other Other +7c6df401-8655-4211-82a5-3ac7c27a55e4 1 Other Other +7c6e0120-e213-4161-9628-3f6e1de9990e 1 Other Other +7c6e2f7a-32b4-4ddf-8683-cae74130fc95 1 Other Other +7c6e8923-c42d-46b1-8074-30bc403c0d0d 1 Other Other +7c6ef13a-6fad-47f1-9087-eb2dc1b7028b 1 Other Other +7c6f3356-0a7b-4cab-90f9-de167859811b 1 Other Other +7c6f5b53-686e-4c51-8864-268ea92153a7 1 \N Other +7c6f6b0d-6f74-4784-86b9-f2df1fae3464 1 Other Other +7c6f8371-457a-4345-8027-0fa1dbc74652 1 Other Other +7c6f8ed3-b394-451a-8069-6549bd118c79 1 Other Other +7c6faf79-b2b4-4842-a740-985c4e3b688d 1 Other Other +7c6fd27c-8e2b-47de-a51b-311db585c2c3 1 Other Other +7c700c1a-d2e5-4e17-996d-7c93aca345e9 1 Other Other +7c703b69-c683-40cb-ad99-9d5f78b362e7 1 Other Other +7c708ca9-ed9c-4d84-8a14-e76e36a90543 1 Other Other +7c70933f-7acc-47f9-b231-6cf9aa4490f6 1 Other Other +7c7099da-19fa-4798-bdab-e46f1bc22327 1 Other Other +7c70dd56-5ba0-42ab-b69c-648752058e3c 1 Other Other +7c70e27e-69c1-48d6-8462-057da50acad3 1 Other Other +7c70e2c2-9452-47c1-8435-307eca7c17a2 1 Other Other +7c70f998-5048-439f-8b2e-a43c21c0ae1c 1 Other Other +7c70fdaa-fd7d-4151-b9b9-c56c7d9beeae 1 Other Other +7c71052d-ae51-48fd-ae8b-da65dcb7f89e 1 Other Other +7c7122f9-03ca-434c-bcef-e0a0f638ce95 1 Other Other +7c7124ed-cbf7-439e-9ef4-b0a5c1940c4e 1 \N Other +7c712b03-d33d-4487-b234-bbec7042e9d7 1 Other Other +7c7145f7-7b40-49e9-ab0a-f3dbdd8335e6 1 Other Other +7c717c1e-fd56-46de-a91a-3aeb722e9d7c 1 Other Other +7c71cfb5-5a3d-480b-8350-9df30db63376 1 Other Other +7c72a23e-9612-4528-91a2-c94d7b491354 1 Other Other +7c72be36-3527-48f8-8c07-ac7df1c85659 1 Other Other +7c72d3f9-d051-47c9-adf4-9012a127c0ac 1 Other Other +7c72f06a-ee8e-4fb3-b1d7-03ebc9318f6d 1 Other Other +7c7310dd-5b5c-4495-a34f-255b9e146661 1 \N Other +7c734d81-0962-47d1-80af-7da28fcfd257 1 Other Other +7c73c17f-621d-4f0f-ab09-9d377a1dab75 1 Other Other +7c740d5d-1de6-4a68-ba83-ecfc470f2166 1 Other Other +7c740df5-9d00-45cc-92ef-aec96b581b47 1 Other Other +7c74397e-9bb4-45ae-aa17-2ec216d22bd2 1 Other Other +7c74823f-c36c-4eae-a0cf-423e0f92aafc 1 Other Other +7c7482a2-db79-44a6-af86-212c045b0eb2 1 Other Other +7c74b43d-3f0e-4ead-8755-c5a939b3b61b 1 Other Other +7c74ca2a-c6e6-4535-aa2c-5062d604cdf5 1 Other Other +7c74f215-12fc-4578-b8b6-e76cff9b0c96 1 Other Other +7c751d67-726f-410c-bea0-7a7e6ab5d3a3 1 Other Other +7c75204e-4428-4004-9742-fbb2600ffaae 1 Other Other +7c752424-0e72-4e88-ac06-d9995c19fea6 1 Other Other +7c75cac3-a25f-4bba-aa26-c774745ca38b 1 Other Other +7c765fad-1f40-464d-92c4-7a3e05989d8b 1 Other Other +7c767e7a-2fb8-408a-8acc-2bcc74807799 1 Other Other +7c7688b7-517e-4901-b0ed-a021d89325a7 1 Other Other +7c76edc2-503e-4b37-93f3-a523e9d5005b 1 Other Other +7c773262-0722-435e-ba3d-6dd1431286d0 1 Other Other +7c7753c9-5677-4048-99cd-1c8aa739a2c9 1 Other Other +7c776715-f999-46f0-a66b-5e39bfee7b35 1 Other Other +7c7808df-efc7-4eb0-8574-065648063a24 1 Other Other +7c7809ad-cbc1-4358-95fc-8151fa1c6c4e 1 Other Other +7c7823ad-0d56-4ecc-a070-eff4819a88ff 1 Other Other +7c7865d8-3817-4c50-a0df-f6ffc1421105 1 Other Other +7c78944e-6dcd-432d-a4b4-16da4155e0a5 1 Other Other +7c78b5e6-def0-4a1e-960c-d33f8cb57e3e 1 Other Other +7c78d34f-5322-42b9-9e14-6bb958ffb075 1 Other Other +7c794d3d-8d13-44f3-bb1f-e7dd389357bd 1 Other Other +7c797167-4c2f-48f9-a761-2d375fa85899 1 Other Other +7c798ace-c605-4ed1-bf0f-5eaf1677d0b2 1 Other Other +7c79c891-7bea-41f6-9b73-f4b50184adb2 1 Other Other +7c79f1ec-58bb-4a24-85cb-c060c3572199 1 Other Other +7c7a11f0-a81e-427b-9cf3-258f34c88bf5 1 Other Other +7c7a25a2-dfec-47ea-9908-0573a234eede 1 Other Other +7c7a6958-01bc-4677-bdd9-3981605546ea 1 Other Other +7c7a903a-9904-49d8-b803-7d3f05830bc1 1 Other Other +7c7aa1d9-29e8-4b70-be97-85a8d92b20be 1 Other Other +7c7ae361-fa3a-4e28-ac5b-11597ad4f37a 1 Other Other +7c7ae70c-a95e-4e34-a6bf-2855c6823b4c 1 Other Other +7c7b7fb4-f46d-42db-88bd-3558b528fb4f 1 Other Other +7c7bb6aa-8453-4a5e-814f-c776031318e3 1 Other Other +7c7bbad6-a607-4ed1-b9e7-3f98c19fab2a 1 Other Other +7c7bcf4d-226c-481c-90c2-3e0d84236d59 1 Other Other +7c7bcfa8-23b6-44a2-bd4f-b74b3762c2f1 1 Other Other +7c7be258-4e95-4fb2-9386-4abd6e3de9da 1 Other Other +7c7cb2de-d40b-44fc-a5f5-a0aef5e7fe6e 1 Other Other +7c7cc512-e2b6-486f-b076-23dbed78ed82 1 Other Other +7c7d7765-50ab-42e3-9d33-647052a1f2a7 1 \N Other +7c7d8c82-0013-4446-b8f6-c2a1c9a90727 1 Other Other +7c7d9d74-7b0d-451f-8aa6-6492602bcb63 1 Other Other +7c7e0f1a-76ce-4cfd-960b-9afdbb74ba05 1 Other Other +7c7e2c85-0b51-474c-9712-c5c025da6ec0 1 \N Other +7c7eddb0-b697-4922-bf95-46876c96c8e0 1 Other Other +7c7efc0f-881c-4c6d-a823-736ecbc077d4 1 Other Other +7c7f0ef7-b8d7-4afc-a7f7-3fa2f6116803 1 Other Other +7c7f285a-6997-4649-88b7-428e28a5b49a 1 Other Other +7c7f4a11-dbde-463d-9205-7236029f41b3 1 \N Other +7c7f9c27-ec90-442e-955b-4cf27f0eb0d1 1 Other Other +7c7fb7bb-0c27-41b8-aa3d-5f03c049303b 1 Other Other +7c7fbfde-f18e-4c53-bda2-badb4b91e2ee 1 Other Other +7c7fc871-e385-43c7-b97c-c19eeb412945 1 Other Other +7c7fd296-c289-45d7-9182-f4f8540713eb 1 Other Other +7c7fe0b8-2f9c-4e24-acd0-5081caac2d9e 1 Other Other +7c811b91-4bb3-4193-ae61-091154a6236a 1 Other Other +7c818d42-9f2e-4c2b-8b90-9f87fa47a29a 1 Other Other +7c81a244-94a5-4587-b68e-ad86f27ee4c9 1 Other Other +7c81ecb5-a5ea-46ca-9374-8443ae51f392 1 Other Other +7c8205b3-3f88-4be6-b3b4-5230f521b18f 1 Other Other +7c820e48-fef0-40ba-b66e-ea39115a8cee 1 Other Other +7c82211d-849e-44f6-a3d6-5a024baed810 1 Other Other +7c828b8e-150c-4577-8910-72e9b4e12f38 1 Other Other +7c836266-3abc-49d3-9816-e7491a7aceed 1 Other Other +7c83caab-a4be-4e56-afa9-d6c675837fac 1 Other Other +7c83cfc1-0806-4d0c-aee5-240fb38f3a57 1 Other Other +7c83f79d-95bc-41ec-bf69-f88823dc52dd 1 Other Other +7c844a13-4bf4-460a-9c7b-15bf39a79ec8 1 Other Other +7c844e63-9991-4755-8285-13eeaf4bd1f5 1 James Other +7c84a561-74b5-4de3-a100-0d5b969a2883 1 Other Other +7c84aff3-a8d0-4fce-ab18-a45fd351fb22 1 Other Other +7c850d6a-bdf7-4cc0-a5e8-8e115b49c54d 1 Other Other +7c8561bd-bcba-4ea6-8909-7e58e3359a72 1 James Other +7c857aeb-918b-4444-9be2-1c75c3a36bef 1 Other Other +7c859c2d-a43e-4483-af16-93ab21904688 1 Other Other +7c85a52b-5a43-4bc3-963f-93a74c30fd09 1 Other Other +7c863c4f-6eb0-4507-93b2-e47af0a927d8 1 Other Other +7c869d65-8853-42bb-8146-42148ad44531 1 Other Other +7c86e81a-228d-49bc-a05a-4a85d6a2f4fb 1 Other Other +7c870d5f-5108-49a9-afce-3be4ec0c6421 1 Other Other +7c877c29-9773-4734-bb7b-456b8ee6000a 1 Other Other +7c87a5fc-0aa6-4278-98e5-79b531883050 1 Other Other +7c87adfa-6593-4bcd-ac9e-4c73313b51cb 1 Other Other +7c87b2bc-0d43-4638-8373-9f1046ecae40 1 Other Other +7c87c12c-2a52-4185-bb79-b1a6397c180b 1 Other Other +7c87f3d6-40fa-4277-954c-e7ea2a845855 1 Other Other +7c88095f-ae10-4d0f-b2c7-b589cd1126bb 1 Other Other +7c885fc2-fbb9-4d9c-a48d-f7a99a6dfb15 1 Other Other +7c8862f8-797f-4817-a815-40f794ce7f3c 1 Other Other +7c888dcb-bc1f-4a54-bc70-ee4e5fd6ae57 1 Other Other +7c891896-41aa-42a3-acd3-7997f3a6ebc3 1 Other Other +7c892153-14b0-4fd3-a0f0-5b095d44e9a9 1 Other Other +7c894f75-28e5-4a9f-af5f-0cc7843da1a4 1 James Other +7c897ee5-e97b-443c-88ab-74efbabf1dbd 1 Other Other +7c8a353e-174b-40b7-b976-a8d6059190fa 1 Other Other +7c8a7974-dda6-4dfb-a177-2ea49e1fbccf 1 Other Other +7c8a7f70-062e-4bc7-8e8e-83f82b909c95 1 Other Other +7c8a8d31-8c06-4590-88e1-8a187fa696d1 1 \N Other +7c8a92da-0a75-4015-b9b1-e1cbf2155018 1 Other Other +7c8acc61-8a5d-4814-afe9-a52af11615b5 1 Other Other +7c8b1a28-60d4-4d6b-b104-3779c8d37317 1 Other Other +7c8b3174-285a-484a-a0c7-ca13bc61ead2 1 Other Other +7c8b33f3-8f95-4101-ac10-eb20db7c2606 1 Other Other +7c8b409e-82d2-4ebb-9d4e-c3d92fddb67f 1 Other Other +7c8b706f-9bf5-46b4-913b-bd47b6a95b26 1 Other Other +7c8b7a47-0ba6-4b7a-85d0-87a9351574cb 1 Other Other +7c8b99ff-9d7e-4382-b372-944a2e7fb569 1 James Other +7c8baa31-2f5f-4e10-9178-0370263506ee 1 Other Other +7c8bac59-7b0b-433b-b53f-fc78feed0df6 1 Other Other +7c8bbd45-f2e1-497f-ab42-387c14cf7e0c 1 Other Other +7c8c29ac-8759-4638-b246-0868820872f3 1 Other Other +7c8c3eed-4d6f-45fc-886f-aac1a005cc6c 1 Other Other +7c8c6302-c04f-4924-9a45-1e4585008572 1 Other Other +7c8c85aa-66c9-4d44-9908-92e138e1c5b7 1 Other Other +7c8c9de3-97b3-4660-84bb-62296d5152cd 1 Other Other +7c8ccd20-da2d-4d62-ae7f-095953b94987 1 Other Other +7c8cf25a-04aa-4057-94b7-8c7a2750dc62 1 Other Other +7c8d4256-632e-4a0d-8d20-c94b20ddba8d 1 Other Other +7c8d5334-cc64-4211-9ecc-653f5c16ff14 1 Other Other +7c8d5ed5-74cf-4163-b61f-fa167593fcaa 1 Other Other +7c8d9b19-05e4-4d1a-b6e9-cd469233cf0d 1 \N Other +7c8e0f18-5ca8-4a7e-97d7-ad2dd720522f 1 Other Other +7c8e439d-6ba4-4fc5-884e-0ba0da068244 1 Other Other +7c8e453d-fc4b-4787-8669-fe7f7f60bb1c 1 Other Other +7c8e6109-cc45-4d1a-89e2-39a7e034c29e 1 Other Other +7c8e6564-9356-4258-84c4-856b7d288fcc 1 Other Other +7c8eb677-e3f0-447f-beef-9c018a7701ad 1 Other Other +7c8ebdc6-7715-4f10-98c8-e30bbb9b3a41 1 Other Other +7c8ee49b-f3b0-41cc-b9a0-6338748cafb1 1 Other Other +7c8f6967-8786-4f84-a55d-c9fe7e6a6caf 1 Other Other +7c8fa2e9-5922-474e-b894-0c8568a1a737 1 Other Other +7c8fcdee-297c-4ec9-984d-9df6762fafd4 1 Other Other +7c9017ba-d8b4-4d73-9887-11a100fcd575 1 \N Other +7c902ff1-dfce-4217-8158-302ee650f668 1 Other Other +7c906631-6942-4bbc-afbf-96da0f819fdf 1 Other Other +7c90b0fb-6f7a-44e0-a869-140eecd7fcbf 1 Other Other +7c910260-c3ab-45b7-a784-688bfc61115b 1 Other Other +7c9131cf-55b2-4613-a338-3fceca06c03d 1 Other Other +7c91742f-034d-4c0b-9a8f-818e6d1c54a9 1 Other Other +7c91b528-997c-464b-b2b0-1f9ad7f7b37b 1 \N Other +7c924d84-9a33-4a36-bfa6-76d007839f2e 1 Other Other +7c9264b3-3fc2-41c7-9a26-e8a9fbc08bba 1 Other Other +7c926f70-7998-42a5-ae28-07e4048b1054 1 Other Other +7c927bf4-fa4f-481c-b35c-593d36bac2ed 1 Other Other +7c928aec-c38e-410e-8262-002232affef2 1 Other Other +7c92d0c6-f6a7-40cb-9bd5-fd46ba5bea8d 1 Other Other +7c930ad6-a1fe-4988-a78e-76d1296d79c8 1 Other Other +7c933c6e-9c27-4505-bf1a-3a11f669ce5b 1 Other Other +7c933e66-8d38-487a-971f-349c432db72d 1 Other Other +7c9365de-7e00-42a9-befc-acdfc7c43010 1 Other Other +7c937fbd-4e22-4c69-8a7b-7eaa3509db0d 1 Other Other +7c939835-17eb-474f-8ead-e5f232cbcc0a 1 Other Other +7c93d2a6-2e8e-4fed-af25-f595a29f8c8c 1 Other Other +7c94156d-0aab-487f-ba8e-cae2123494c4 1 Other Other +7c94223b-b5cb-4920-b4fd-2aadfc362f24 1 Other Other +7c943dcb-3393-4a43-8c44-57f7fea788fb 1 Other Other +7c94608e-5817-43ab-87c6-e5d0658f3428 1 \N Other +7c947aad-bc68-4181-911d-4a9c264c522d 1 Other Other +7c948a95-12a1-420e-8f7f-336705216c6f 1 Other Other +7c94c38b-e0f6-460e-ba2b-1a879ac962be 1 Other Other +7c94eba4-5972-4dc8-8b41-86be8bc494c1 1 Other Other +7c95131f-5086-4552-be63-2fa26964b255 1 Other Other +7c95319c-855f-4d50-9437-6a1643b8d933 1 Other Other +7c954284-e6d4-43be-8e43-f1e078bf4c8e 1 Other Other +7c954dec-302a-48a9-b0fe-1434b371be13 1 Other Other +7c954fdf-f598-479b-9a41-133f6a2818db 1 Other Other +7c9553ed-e557-43b5-9621-753edd370eca 1 Other Other +7c95625b-16ec-4587-8ffd-ef8ad708dcc8 1 Other Other +7c956d28-ca44-4674-ba92-aa7a356d79e6 1 Other Other +7c956e34-5884-4697-b063-091e2331d9e1 1 Other Other +7c959caa-6ea8-438d-bad9-dc6732cf864e 1 Other Other +7c95ae0f-3d86-478c-9e6e-4c466e4de467 1 Other Other +7c95cd53-5665-457d-9697-3aa8e180bb52 1 Other Other +7c95fd1a-2414-4162-9e2a-5fa88b526b0f 1 Other Other +7c961e93-33e1-435d-a2c4-b5635efa33e4 1 Other Other +7c962b0c-5dfd-4c7a-9012-c6ebc21e6cfd 1 Other Other +7c96452d-5ab5-4729-9af3-b92e7958b201 1 Other Other +7c966b8d-2b0a-48d9-87fe-514e38b2d776 1 Other Other +7c96b79e-6c1e-4fbb-9be2-d265e20f13b6 1 Other Other +7c96c7ad-cfa6-409c-8fc4-d68b121d54ae 1 Other Other +7c96cf4d-7719-4dbb-b19c-e1fb678e85e9 1 Other Other +7c96d048-70b3-4b4a-9cc9-9f104728b47f 1 Other Other +7c96d4c6-7469-4ddc-a106-50e4053d5ddb 1 \N Other +7c9736f9-9aee-409a-9ade-7034a79ab451 1 Other Other +7c97749f-a7c7-4414-97d0-5d8c04b4acca 1 Other Other +7c97a4e6-8f7f-44ba-ba1f-d5e22634cb60 1 Other Other +7c97b6b7-5f21-49f9-b147-c257738bcec9 1 Other Other +7c97c13d-9e13-42df-bab2-ac4ed85b6985 1 Other Other +7c97cc61-a2a1-446e-bb05-b0db36ec77e4 1 Other Other +7c97cf66-e267-4505-82ca-d11897dc61fb 1 Other Other +7c9838a2-9b48-420f-820a-4da7c149a1a4 1 Other Other +7c987311-704a-4b88-9832-369ec9aea671 1 Other Other +7c98d1f9-b049-4ba5-8665-516b9652148b 1 Other Other +7c98eb2d-98cd-4171-b1b0-73455b13893d 1 Other Other +7c995258-0426-40c1-9923-928f10b2c283 1 Other Other +7c995696-5f22-4845-a6a4-2036507a139c 1 Other Other +7c999a87-9819-4686-8b58-38ad3f7f623e 1 Other Other +7c99baf2-954b-4bec-b3fe-c605391dce1c 1 Other Other +7c99c2d4-a47a-40d6-866a-7246b84a1d7a 1 Other Other +7c99d196-88c9-4835-beda-a79b18e25979 1 Other Other +7c9a30b1-80b3-41d9-9515-19b2750cb678 1 Other Other +7c9a788a-780c-4854-92d8-0ada4a7bb7fe 1 Other Other +7c9a7a39-b66a-4f08-a1d3-06e535ae2239 1 \N Other +7c9a857d-8009-4576-9476-14123f42d960 1 Other Other +7c9a9971-7333-410f-8778-1f65ef41724e 1 Other Other +7c9a9ec2-ab4f-45fc-85c7-5c198e8e1004 1 Other Other +7c9af14e-155a-4121-9ea4-38f64cbf41fd 1 Other Other +7c9bbb1a-b902-4325-91fe-68c935151433 1 Other Other +7c9bd094-35d0-43a1-86fc-9906e7efad2f 1 Other Other +7c9c39cf-277f-467e-b13f-d315aa850aa9 1 Other Other +7c9c3bd1-a976-4a4e-a2a7-54e2605960a8 1 Other Other +7c9c530a-1d02-44ce-87d2-f66676769478 1 Other Other +7c9c5e95-5dbf-4826-a81f-4b18bca26164 1 Other Other +7c9cb54e-f23a-43f4-8055-87047a368d8e 1 Other Other +7c9cc8b3-5fee-4d4e-a6d8-765d8d35d097 1 Other Other +7c9ce9dd-3922-4042-b6e4-0ed9c22d2942 1 Other Other +7c9cfd04-8004-48b5-91f2-e7c64d442314 1 Other Other +7c9d43b0-91cd-41b5-9be2-63bf58e72b72 1 Other Other +7c9e3367-4179-4eca-abd1-89981c32f366 1 Other Other +7c9e6844-efe0-4c50-bc4f-f91b732b3d8e 1 Other Other +7c9e7398-167a-435c-8155-7588b5c8dbf6 1 Other Other +7c9ed5b1-c61d-40a8-882c-4b3296ff4df6 1 Other Other +7c9eede6-1bbb-4ad3-821f-ca7c45cbdd5b 1 Other Other +7c9f1afb-7aef-4d0f-a5e3-57da53bc40af 1 \N Other +7c9f2b41-b05c-4ae2-9662-67af9050d708 1 Other Other +7c9f8bb1-fefc-4c85-8d56-490a8c70c2fe 1 Other Other +7c9fabbc-170e-4e51-88e2-978a5d78b52a 1 Other Other +7ca024ca-29b4-4082-a9fa-d889d2988acf 1 Other Other +7ca0400d-2656-45b7-9dd4-8987e1c155a5 1 Other Other +7ca06096-c7b6-43e5-9ba0-ef4088ac7c8f 1 Other Other +7ca08a71-c607-4823-b805-ff5f9d595263 1 \N Other +7ca09631-10d7-4292-a4a9-7abbab335ce3 1 Other Other +7ca0bd25-11b6-4970-bbf7-d8e5710a769c 1 Other Other +7ca0e680-5f73-49f4-8865-5b24c4c16469 1 Other Other +7ca0ec5c-9c04-4702-aa1d-a4d501a67b3c 1 Other Other +7ca0fcef-e90b-496a-b31a-8f436d8fb8c1 1 Other Other +7ca113a5-e716-412e-bda9-284e6fa8a2c5 1 Other Other +7ca118d1-dca0-4645-9070-74ccd188624d 1 Other Other +7ca1b241-d6d3-44fb-b87e-649b57f5fbde 1 Other Other +7ca1c50a-f8f8-49a8-8907-7ae4230a7654 1 Other Other +7ca24d94-39b1-43bd-947d-b2b15fa648c9 1 Other Other +7ca2e733-463b-4ef6-9276-54bf6e48bf09 1 Other Other +7ca30500-a6bb-4cff-8c2a-959a1a7e48fa 1 Other Other +7ca37f6f-18ff-4590-bf1d-7829f1fad78b 1 Other Other +7ca3800e-49fd-4a3d-a405-0105ebded304 1 Other Other +7ca3cab6-9456-4d62-8de8-b92dba3de173 1 Other Other +7ca3db01-a17d-44df-8c4e-0ddc1ec24d21 1 Other Other +7ca41593-6998-488c-9a9b-805adb45db0d 1 Other Other +7ca4be98-0e9c-4891-b329-189989c86b46 1 \N Other +7ca4c84a-c304-4c94-9994-73fa489cd16e 1 Other Other +7ca515ba-c768-4b84-b4ae-fc0537cb74ae 1 Other Other +7ca56764-0371-4861-89a6-1ae9c1df7ee6 1 Other Other +7ca5bc97-3729-45a4-b5e6-003516b08605 1 Other Other +7ca5d92a-df92-4837-a01c-1272675f28ed 1 Other Other +7ca5ed18-171b-4914-9d76-3161062e5beb 1 Other Other +7ca5f3b0-0554-4841-a914-62c3eb50446d 1 \N Other +7ca5fd5e-1a87-4b83-bfec-c066549b176f 1 Other Other +7ca61d7b-a546-4e0a-a11e-16d1732e09de 1 Other Other +7ca62cf7-adc3-4483-b05c-d49f150188c9 1 Other Other +7ca62dcc-2cab-4a79-8ad5-55dc074c2732 1 Other Other +7ca652db-c5c1-4324-b73d-0f9323ca8bce 1 Other Other +7ca65c41-508d-4199-8b16-e5df311c6a45 1 Other Other +7ca66478-34b0-423e-8ecb-3ee3d007ab31 1 Other Other +7ca67aa9-3074-4230-9629-61c7221d624c 1 Other Other +7ca6ab12-2854-4d4a-9d26-d7b4cce2a2c0 1 Other Other +7ca6c295-cf18-442c-ab01-d17003e174b3 1 Other Other +7ca6d56d-32d0-41d7-ae59-22bf4c62c33e 1 Other Other +7ca6f58b-4e07-4300-9cd3-efd01f016df5 1 Other Other +7ca71b14-3de0-4052-a92f-a9c3bb24ce58 1 Other Other +7ca74c66-f89d-412a-bb2c-8aea8ebaa083 1 Other Other +7ca7c854-5535-4425-b9bc-5d7ae7704fdf 1 Other Other +7ca7f0fa-e389-4b9c-83eb-e64ba7bd6d53 1 Other Other +7ca8920f-86e9-43ba-9f8d-0d366b6e381c 1 Other Other +7ca8d073-84cd-4d5c-a80b-c07a2bd0f824 1 Other Other +7ca8e481-92c4-40d9-a2e3-b5718ae20064 1 Other Other +7ca8f8ed-68a1-4920-a75f-a8a1f42b3465 1 Other Other +7ca94d95-61bb-4ea5-81da-9463089ae53b 1 Other Other +7ca969c0-56d3-4237-9bdc-23f92609951d 1 Other Other +7ca96ff9-ed61-467a-8bca-ede2a51e60f7 1 Other Other +7ca99047-ee3f-4f1c-8493-13b8d712eeff 1 Other Other +7ca99204-bf72-4043-bba2-7685e65e64ea 1 \N Other +7ca99f00-8563-4f3b-b629-e2f4abc0ea30 1 Other Other +7ca9a6a7-d1d7-4511-b883-415ac01a59fd 1 Other Other +7caa3a9f-9eae-4efc-ba78-ecca6b25b635 1 \N Other +7caa4e9f-1211-4500-9c68-74da8dba46e3 1 \N Other +7caa5d4d-a1a1-4eb8-a14a-a7894482859d 1 Other Other +7caaa5bd-2918-4a5a-9b37-c66ca9a09f10 1 Other Other +7caaa6bf-09ab-44b2-a633-fd236ce7f3be 1 Other Other +7caaa973-9675-436d-94c2-7187005b84be 1 Other Other +7caaaa3e-1530-4dee-9387-8dca024181e5 1 Other Other +7caad23a-cb2c-43a0-bada-566a0e6e36cb 1 Other Other +7caae066-7f61-4f21-9c48-4ecc55b6e511 1 Other Other +7cab0c02-b38c-494e-acda-7b43f06bc043 1 Other Other +7cabdeca-3dd6-4be4-a533-689f901f48a3 1 Other Other +7cabfcc5-f82b-43b1-bdda-57293687cda6 1 Other Other +7cac50ec-e970-4f3e-935c-8536afc68d81 1 \N Other +7cac9685-bf4d-4313-aaf1-dd87b39e80fa 1 Other Other +7cacba03-1aae-48f1-99e2-7245bab0a525 1 Other Other +7cad95ae-daf4-4e8c-9fc0-85f1cfdfc094 1 Other Other +7cade3ff-04ea-48e5-b8c2-9f8218e8524f 1 Other Other +7cadfad9-8e4f-4f18-bbfe-8fc0daf4ece2 1 Other Other +7cae0ab4-6cf6-40e2-bfa6-f10c8a92bed2 1 Other Other +7cae1e76-45e2-45c7-b279-8d68a1ac4ad2 1 Other Other +7cae221b-4a07-4e5c-9b6f-454013a28e3b 1 Other Other +7cae349a-bbff-46e7-a726-4479a50851a6 1 Other Other +7cae7d3e-2e08-4d4e-b220-c497b17d6296 1 Other Other +7caeb4fe-e754-4f90-885b-9c9715832813 1 Other Other +7caf5437-02a5-43d8-aa01-03c5a738d76c 1 Other Other +7caf7d29-e053-444f-ba0b-10017ae8279e 1 Other Other +7cafd0e7-4e32-4632-8de5-11d3df375c18 1 Other Other +7cafee07-eb62-4f1f-b711-88868fad5b60 1 Other Other +7cb0193a-3ae0-48bb-8c1d-85b6700992a8 1 Other Other +7cb02d2b-c2af-4c95-8999-70c97af001e3 1 Other Other +7cb03c57-985f-4d54-ae5d-1381da95f64b 1 Other Other +7cb0760d-c7a2-4a9c-a3d3-a8eca7defb43 1 Other Other +7cb0792d-8f3a-4aeb-b560-bd71c8b1385b 1 Other Other +7cb0d0bb-4223-415d-95c0-c7f7f371607b 1 Other Other +7cb11d32-82c6-4d56-beb5-4127bc4f0ed9 1 Other Other +7cb16bff-af07-4c50-a8c5-14e5249bab76 1 Other Other +7cb16db7-1a0a-4005-a2c2-e016630a6649 1 Other Other +7cb17287-d8a9-496f-bf37-7aa1f301b905 1 Other Other +7cb184c2-c827-4ae9-88c9-6b492db0666a 1 Other Other +7cb19fdc-4434-4463-ad42-3d94d6aa67fd 1 Other Other +7cb1bddc-f46f-4a0e-8329-1dfb7e387cc3 1 Other Other +7cb1ef08-4af6-4176-9ce7-5fa228e019e7 1 Other Other +7cb20224-6d5c-413e-ba44-0bc6b5f2c881 1 Other Other +7cb244b3-4469-4d3d-a513-93d3bacea721 1 Other Other +7cb278a4-d5a0-4373-9ed1-4e3cee96d914 1 Other Other +7cb279a5-59e2-4459-873f-e2009248cf93 1 James Other +7cb2aa36-497a-4713-98b6-82cf1d8c01f8 1 Other Other +7cb2e1ec-f45b-4d4e-89b3-4454f552111d 1 Other Other +7cb306b8-1d69-4f4a-b977-89d51e06ad28 1 Other Other +7cb32e09-6825-4e00-bfba-4c43fe2ace01 1 Other Other +7cb33bb8-2806-45bf-9714-e967413dbcb7 1 Other Other +7cb37300-e9e3-430d-baaf-2ee0e34c4fbf 1 Other Other +7cb3754d-be2e-4f38-aa25-0a547cd78184 1 Other Other +7cb391e5-4d4f-4fbe-a39a-affc3f506ac4 1 Other Other +7cb3d3de-0fc4-45f2-a1e3-85ac7342ef70 1 Other Other +7cb3e0c5-a5ec-4cc3-a139-cf36ab6d002f 1 Other Other +7cb3ec12-3c21-41e3-aa4d-b2a446ebbf1f 1 Other Other +7cb406d6-25c7-49ea-b316-fcf587a5a7d7 1 Other Other +7cb42731-9b4c-4273-bb2a-92cf13e55ef6 1 Other Other +7cb44724-ec12-40cc-8d89-b701ddedeb60 1 Other Other +7cb4a6db-3b2e-4527-95c0-2755f7e29e9a 1 Other Other +7cb4bd5b-6374-4fee-a104-a62ae5355b55 1 Other Other +7cb5330e-d398-467e-88b9-e0c31e0b4077 1 Other Other +7cb5851c-273e-4fa9-abc3-2135f5845f48 1 Other Other +7cb5cc62-3794-4ea1-9413-9e3b02f01ea2 1 Other Other +7cb5ccac-1aa4-4b32-b54f-b564dc7509eb 1 Other Other +7cb5e058-1ed5-440d-9890-0d728a23c7f1 1 Other Other +7cb68c3c-293e-4b04-bd76-dacf9c4b96c6 1 Other Other +7cb6b4d1-bfcf-478b-9017-92ceaff891eb 1 Other Other +7cb6de25-634a-45e0-a1b9-1f402c6c128f 1 Other Other +7cb70df2-e951-4109-a995-8aac24d2ba68 1 Other Other +7cb7270e-6dd4-4c85-bf40-83b1cffd86e3 1 Other Other +7cb72d2d-56c7-4236-bb72-d398f2ff3f75 1 Other Other +7cb748e7-22cb-4d95-a7b9-ff9f55932bbd 1 Other Other +7cb7d98d-a609-4c76-bfdd-b951224c06d5 1 \N Other +7cb911d4-1f85-4b48-8bac-804132f0b691 1 Other Other +7cb94c07-b0fd-419e-b430-1f5a1ce25d62 1 Other Other +7cb9537c-4327-41e9-aaa2-16ab9334e7b4 1 Other Other +7cb95990-8e32-42e8-b9ce-542e70ca09dd 1 Other Other +7cb9d813-6ab9-417d-be8e-5ca38071868b 1 Other Other +7cb9eceb-ca23-40bf-b68e-7d6aeeabacfb 1 Other Other +7cb9f614-ea5c-458c-9a7b-4ee9c5bbcc18 1 Other Other +7cba0a02-4a06-4ce5-bd21-65b94e4a670e 1 \N Other +7cba2a00-cb54-41ac-becc-412f399c4dbb 1 Other Other +7cba314a-2717-4b8c-bb9c-b68806fdc8d9 1 Other Other +7cba37f0-7f7c-4378-80a6-fd04d3da26cb 1 Other Other +7cba676a-0179-4b8e-9559-c7ee371270bd 1 Other Other +7cba88d1-a425-4cef-9a50-9407195a2921 1 \N Other +7cba9177-cadb-48b3-9ffa-992ad897f2d8 1 \N Other +7cbacd9f-aab9-4304-ab6d-e61f9397eb37 1 Other Other +7cbad8cf-7186-4c4d-a99a-f80ec5af7e91 1 Other Other +7cbb0058-e301-4ce0-b673-1b6b773aa536 1 Other Other +7cbb3167-cd39-45a0-8f0d-1a96a7c0c953 1 Other Other +7cbb3f08-1009-4b31-b6c8-74011da6625c 1 Other Other +7cbb52ff-5fa3-4ef8-a747-102e1beab5cc 1 Other Other +7cbb7050-91cc-4942-a480-8ab7df80e927 1 Other Other +7cbb7896-4760-4647-a15d-97dd410c07fa 1 Other Other +7cbb7bd7-8b2e-4855-87fc-4a013925c8ca 1 Other Other +7cbb9f68-8a67-494a-9cd0-6067dd23c5ca 1 Other Other +7cbba4d3-c09c-4fc6-a0a6-2137693aff28 1 Other Other +7cbbb6f0-3413-47ee-8624-c8fc93a5723a 1 Other Other +7cbc03dd-56f0-4acc-9cfc-8fc9a5628882 1 Other Other +7cbc0edf-9c69-440f-8449-159f845823a3 1 \N Other +7cbc1fdd-941c-46b8-b760-5fd4638050bb 1 Other Other +7cbc4a8f-255f-4f75-88b3-ed8300edf661 1 Other Other +7cbc949d-2de1-49ca-bd7e-3f06de12be64 1 Other Other +7cbc9752-d346-4314-abf3-ed15a68407f7 1 Other Other +7cbca2e0-1ac4-4647-a614-58d291f60735 1 \N Other +7cbd06b3-5eb5-4df2-9b8d-b46bc9909dfc 1 Other Other +7cbd21c8-a1c7-45da-a4d6-85beacf096a3 1 Other Other +7cbd51ea-a009-4f73-a499-0fef8418fdb3 1 Other Other +7cbd6af8-17ed-44e9-a26d-1492979aa516 1 Other Other +7cbd6bd6-392f-431b-9638-e49c985e80c6 1 James Other +7cbd9da2-c166-40d8-965a-352c3eb1baff 1 Other Other +7cbdb3ce-b8f5-4714-9abc-be710b31061a 1 Other Other +7cbdbc75-1aa1-4b53-80b9-98aa5a8689d8 1 Other Other +7cbdf807-ac53-4984-ada6-adf6baceb403 1 Other Other +7cbe0f93-6376-441b-bd52-4b38434f2a46 1 \N Other +7cbe4710-6126-4545-b8c9-0b104ba1365e 1 Other Other +7cbe4d28-befb-43b6-9c54-455f5f36e0cc 1 Other Other +7cbe7aa4-66f1-4034-9f5b-b53024996940 1 Other Other +7cbeaf70-e426-4d44-98e2-d81ce9e10160 1 Other Other +7cbed7e3-08b9-42c2-ae56-55280a717b2e 1 Other Other +7cbf1f58-9663-416b-90f6-730061d4ed1f 1 Other Other +7cbfc0c4-b90d-4a30-8a30-cae32fd7526f 1 Other Other +7cbfd1d6-2bc1-4007-a881-02bc0f8d69e1 1 Other Other +7cbfd798-d9e9-4a1b-8c82-ebddc1c25322 1 Other Other +7cc00e80-5a88-4943-8044-694762bbb35b 1 Other Other +7cc017b3-84d4-4f5d-abe8-c618062ecb01 1 Other Other +7cc0537c-90ef-4f6e-a648-b0c1dd681468 1 Other Other +7cc05608-ae5f-4128-8d4a-a861d59f8afd 1 Other Other +7cc0a5ec-d030-11e7-952e-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +7cc0c432-32db-4de4-8f86-d213a958ecd2 1 Other Other +7cc0ccdf-c596-420e-a934-be070a7322dd 1 Other Other +7cc0d6aa-3709-44fe-9909-5c1290604a6e 1 Other Other +7cc0fd71-66ce-4c3c-92b0-3c586d3a0764 1 Other Other +7cc14ab6-7e66-4672-b598-0e6c1a8fdb8b 1 Other Other +7cc14cab-eb6f-4918-a8ee-f84fc45c7195 1 Other Other +7cc176c9-666b-421e-b6fa-d46e9402ab0b 1 Other Other +7cc2231a-d25e-4d74-9ff7-384c842b0a95 1 Other Other +7cc27bc0-653e-4e34-a3cf-2959e1030c93 1 Other Other +7cc2840c-1261-4f01-bf52-6025fbafb3e0 1 Other Other +7cc2bf21-c7d8-44eb-9c92-429985d10479 1 Other Other +7cc2cdbb-8e40-4147-a02a-3fa0b4d3befa 1 Other Other +7cc337b6-9a01-4124-82fb-c786be75ad7f 1 Other Other +7cc38fae-6bcf-4e60-9b54-e5aab9fc4fc7 1 Other Other +7cc3d827-da22-4512-8d28-511f8f65a8a2 1 Other Other +7cc42e06-20ce-4943-9589-d0f720f05a45 1 Other Other +7cc45d84-875f-416d-b78f-461b4731fd2e 1 Other Other +7cc49a6f-880f-43f3-bb5a-f894ba3e75cf 1 Other Other +7cc4d8ba-8224-444a-a016-2af9c45531bb 1 Other Other +7cc51f08-2e29-411c-a16a-5a0b664d0e28 1 Other Other +7cc5229e-57a3-4df0-bbc8-4ce3af1f72d2 1 Other Other +7cc53eb7-7b9c-488f-93a7-9b62e7e59f1d 1 \N Other +7cc58eaf-2ad8-4c5c-9bef-1e9ae3c4195e 1 Other Other +7cc5d77f-1411-42bf-b4fd-5c52c246af89 1 Other Other +7cc6137d-9778-4275-98d9-810c87fc5232 1 Other Other +7cc6ae1b-6722-43df-930b-74dddd7c49b2 1 Other Other +7cc6b1dd-2a5c-414c-b05e-31f421fe8739 1 Other Other +7cc6f366-559e-4e09-9d91-6566ef874e5c 1 Other Other +7cc7122b-a12b-4a97-ab92-0c2a7e312e89 1 Other Other +7cc71821-16b1-4357-aff2-26b52fe644c5 1 Other Other +7cc72874-1a19-4234-b970-605a3c369205 1 Other Other +7cc729d0-f93b-401a-be00-4e5bce7701f5 1 James Other +7cc75542-c60e-440e-a27a-87608afce402 1 Other Other +7cc76469-03b1-433d-94f7-7266d00e00d5 1 Other Other +7cc7b00c-ebd5-4e0c-8913-713243f6a6f5 1 Other Other +7cc7cbf6-89b1-428e-85dd-19136206d846 1 Other Other +7cc7eabc-7870-46fd-a20f-25644870b6a1 1 James Other +7cc7eb03-441f-4cd3-af2f-e56f31bbbd00 1 Other Other +7cc82910-d15e-4452-b38f-4e03f39bc532 1 \N Other +7cc87c71-133c-4c0e-80d9-11eaf48300c2 1 \N Other +7cc8a2ca-f91c-4618-bf9b-244ef9609fa8 1 Other Other +7cc8b1b3-1e25-4783-a27c-c5540b4cb63a 1 Other Other +7cc9390e-0cfd-44bf-9cbf-360026bd9df5 1 James Other +7cc95fc9-e980-4249-bb4d-50f320775878 1 Other Other +7cc98275-fb3f-4261-95e3-ce94cc02a9c8 1 Other Other +7cc98cfd-7eaf-475b-9faf-427d74076ed4 1 \N Other +7cc9b9ab-3d46-41ab-a6de-6d3a3e78b09a 1 Other Other +7cc9d8a5-c4c1-44f7-91de-72da07e6eced 1 Other Other +7cca8e9d-ede7-4421-a7c2-2bd902753fc6 1 Other Other +7ccab5a3-69e2-45e4-a1a0-a447b69fd585 1 Other Other +7ccacf65-043c-4ead-a8df-4656d8db1aa4 1 Other Other +7ccae124-6849-4e74-bb6f-d6119bd4a576 1 Other Other +7ccb1faf-f332-4e0f-90e6-c1377f4970d4 1 Other Other +7ccb37ad-b5ef-4778-80dc-434e371778a3 1 Other Other +7ccb5e36-5ef2-4ba5-a2d6-269ff407fb1f 1 Other Other +7ccbc38d-cfc1-4c9a-846a-8a535c43f419 1 \N Other +7ccbe1c1-9d00-4913-86ba-4a73111e87ca 1 Other Other +7ccbfafc-37a3-4a6c-b12b-3445a49ad120 1 Other Other +7ccc15ee-1be6-41d4-85c9-fd88c93d095d 1 Other Other +7ccc3838-c4c2-4eb7-83a1-6cc36aa26cca 1 Other Other +7ccc85b1-4843-4c62-bd96-2c71b4330f61 1 Other Other +7ccc9f2a-09c6-4a8f-a764-061f22c566c8 1 Other Other +7ccca3a9-7818-4f3f-8248-018a84a340b7 1 Other Other +7cccaccb-2f1e-4a5c-b5d4-14fe369ccd03 1 Other Other +7cccd0ad-9aeb-4fbf-bcd7-52d12b92a3c7 1 Other Other +7cccd4cf-e4a0-4d23-ac92-3266790c5163 1 Other Other +7ccd5c36-0657-4547-b48d-55eff5dae8b4 1 Other Other +7ccd84e2-6443-49f9-b08e-1ce9f31c10a4 1 Other Other +7ccde773-f08c-4f90-b865-47a47302be38 1 Other Other +7ccdec58-8e59-4411-9c25-395fa28cd916 1 James Other +7cce0a9b-3d57-4beb-ad8b-847d7a30e312 1 Other Other +7cce6f14-14a7-4b63-9964-5e4a50f4f8d9 1 Other Other +7ccee99d-56b3-4865-aaec-81b38efe9b94 1 Other Other +7cceed5f-09c0-44fa-9409-aad167732a82 1 Other Other +7ccf00a4-1edb-459d-b003-e64c6fa022c6 1 Other Other +7ccf68b2-9dba-4c7a-8209-534da34a3153 1 Other Other +7ccf75d8-c958-4908-bceb-eaa9da6828c4 1 Other Other +7ccfbc77-8d26-4535-af84-d80dc3df5b72 1 Other Other +7ccfe0c0-bcdb-4e1f-879c-a2c3a01c6043 1 Other Other +7ccfe6c0-3625-4497-bc2d-4c8d4f59839c 1 Other Other +7ccff743-9698-4089-ad4d-480eaee8d566 1 Other Other +7cd05929-ebcf-43e0-bcad-46ebbf831b4b 1 Other Other +7cd0b1d3-f7a1-4d40-9470-90cfb30290c0 1 Other Other +7cd11282-64e9-47c7-8b5a-44cb1104d179 1 Other Other +7cd11f47-55b3-42da-912b-0a255bbab783 1 Other Other +7cd1232c-2080-4300-ba57-df55f447171b 1 Other Other +7cd13c40-c55e-405e-8ede-50253167fc23 1 Other Other +7cd161c4-109b-4ca7-a43e-778f95e0216b 1 Other Other +7cd17abc-ec3f-4633-bef4-ff454accf9f2 1 Other Other +7cd1b1f0-ed12-4bce-943c-5363444a5b0f 1 Other Other +7cd1c5ac-1a55-44d6-b9af-1400b8acbdce 1 \N Other +7cd1f7a3-4b06-418b-b40f-aaceeb1d9427 1 Other Other +7cd21705-7fb8-423e-b72f-31dae3628441 1 Other Other +7cd230b9-bc2f-4ad4-af6e-cdc138864118 1 Other Other +7cd23e9f-bf6c-4e99-8671-fe9a5852dfc2 1 Other Other +7cd26f75-4e24-4b30-a83d-f2ac6fc63436 1 Other Other +7cd2c734-c16c-4926-a2ed-d5f64ed33759 1 Other Other +7cd2c7fe-e8c9-4fb8-9d00-e20241405b20 1 Other Other +7cd2e47e-465e-4dd7-b231-5e37396a533d 1 Other Other +7cd339be-f46c-4a42-b24f-a5e4c253bd7f 1 Other Other +7cd3405e-43df-47fa-b7e3-03d4504bde6b 1 Other Other +7cd3441b-5257-4ea9-96cc-c6d864ebadc5 1 Other Other +7cd3827a-67a4-4c14-a34a-5bae27f6cd26 1 Other Other +7cd39ac4-d8ad-49c5-9618-d896cd4976dc 1 Other Other +7cd3b61e-e963-4fc7-bad2-f0800f81826c 1 Other Other +7cd3db2b-6352-4108-b024-9405d8b4832b 1 Other Other +7cd42f75-b558-4132-a111-4ed1e89fb7a5 1 Other Other +7cd46e80-5206-4cc5-a811-b631b8414ed3 1 Other Other +7cd4804e-9503-4a9a-87cd-93c7cdb32011 1 Other Other +7cd48194-55c0-4767-95d2-683fc41169f1 1 Other Other +7cd49bdc-76f6-4b17-b1e9-ef8dedb37483 1 Other Other +7cd4c8c5-82ef-47e0-b469-ceb47a735897 1 \N Other +7cd504ee-96ee-40f5-97bf-3b3667a72dc5 1 Other Other +7cd51da0-cb36-46d8-a256-823bdc9099b7 1 Other Other +7cd54249-3187-4880-983b-46320eba6d17 1 Other Other +7cd56c9d-c5dd-4c0f-8fb0-f989efc56eef 1 Other Other +7cd576f5-6a8d-476c-8309-7d12e764dffd 1 Other Other +7cd5909c-9a6d-457b-b6c1-7fad0c898d6e 1 Other Other +7cd59ff1-e3bc-4452-9d3c-fb0e1fbdf7c4 1 Other Other +7cd5b432-ed5b-485d-a0b4-dbc8480e084e 1 Other Other +7cd5da44-7c89-4b74-8bc4-902a4af890ab 1 Other Other +7cd5ed98-c370-4e28-b714-2c8c557f9716 1 Other Other +7cd63680-f6a6-46e8-9e82-5f86d0e7d98b 1 Other Other +7cd63ee3-a49a-4f46-9374-b048fc2336b1 1 Other Other +7cd641a3-6102-4d71-907e-4c6eaf806a47 1 Other Other +7cd65855-9c86-47ba-9a2a-e264d1cafee9 1 Other Other +7cd65bab-7695-4285-af89-16e61136ac87 1 Other Other +7cd6643a-6afc-47b1-9976-6d079b589c8d 1 Other Other +7cd69763-39ec-4833-9537-d9eaadcb312f 1 Other Other +7cd7092c-97a6-49f7-b363-e2138476b462 1 James Other +7cd71163-84a8-49d0-adb9-f87d2ce37760 1 \N Other +7cd77a51-5747-4037-b438-05043cd84fc9 1 Other Other +7cd78d39-e2cb-4cb2-a6e5-864bb9cc65d5 1 Other Other +7cd7ae88-5920-47dc-890d-51b5cb527ee8 1 Other Other +7cd7c6f1-36d1-4e20-8856-1acdb640080a 1 Other Other +7cd7d43d-408a-45ca-8c8f-df563cede9b1 1 Other Other +7cd7edb0-14f5-4a8c-bcb1-b3388c8f3225 1 Other Other +7cd800be-1f5f-41b0-9bb8-2815cdf16b0b 1 Other Other +7cd8240c-9374-43e6-ab70-ddec72d25fa0 1 \N Other +7cd845e2-127b-4457-a98f-eff656bc78e1 1 Other Other +7cd85e08-51fa-4462-b4d1-164a4c6e5797 1 Other Other +7cd89cf3-571e-4d61-8e1f-0452c0cdb505 1 Other Other +7cd8a82a-b628-48ae-af8b-4c2929ebadc7 1 Other Other +7cd94b86-caae-402f-96a3-329a66dd8dd3 1 Other Other +7cd9c4af-0ff3-4470-a626-d5a2d70f564f 1 Other Other +7cda6f54-d993-4385-88d7-5e94ee3f34ad 1 Other Other +7cdac0c9-0dd3-4e6b-acbc-c938e8f2d3d6 1 Other Other +7cdadfc9-9c14-467b-b4b7-46f690ad06a0 1 Other Other +7cdb59e7-b3fd-4d8c-8193-27b836a585b0 1 Other Other +7cdb934d-b6b8-4fa7-8125-fe64614df474 1 Other Other +7cdbb673-975a-450b-bf00-43bd99df92e4 1 Other Other +7cdbedbe-f347-4738-94ac-1366b7bd967d 1 Other Other +7cdc32c9-3e66-4107-895d-2963a7fce824 1 Other Other +7cdc4683-9372-48cf-aa88-05f02051f04b 1 Other Other +7cdc4926-6f01-46b6-a148-4aec1bbf6d1c 1 Other Other +7cdc802c-875e-434a-8c7c-ab3456444e84 1 James Other +7cdc85ee-5ae6-4599-ac0b-6f351b152895 1 Other Other +7cdc8ec5-85b2-440b-b869-c437c9f43cfe 1 Other Other +7cdccb74-c902-4cc9-8d98-187286ea6b39 1 Other Other +7cdd2ef4-18a4-40ec-8368-041ceedd5a3e 1 Other Other +7cdd45e1-0232-4f1c-85cf-bb06cf96df83 1 Other Other +7cdd6007-e9e4-4371-bf68-67609031ddfd 1 Other Other +7cdd68a8-de3b-4786-8613-2f7d4734afdf 1 Other Other +7cdd7dac-2671-4951-9e84-c409d9c8c5e5 1 Other Other +7cde00d8-a0e2-45db-93d8-db116358608f 1 Other Other +7cde22ec-6bf4-4b55-8080-f129b4457985 1 Other Other +7cde2467-462d-4e70-bb65-9e94a0cd23d9 1 Other Other +7cdeb19d-9f78-4482-9d3a-1a43482836d6 1 Other Other +7cded1a7-ece8-432f-8d5e-b01bcf63759d 1 Other Other +7cdef74f-4621-4405-bd00-936e6b8b41a9 1 Other Other +7cdf032b-ced3-4af3-bb8b-50fc48a3b1d9 1 Other Other +7cdf406e-a8d7-4170-b4e3-ebb5ca9e359e 1 Other Other +7cdfd5e8-3bc6-4ad4-9819-a2ee5cc4c15b 1 Other Other +7ce02304-2010-4fe9-8d29-5d5b6ba66b1c 1 Other Other +7ce026f5-482b-46e2-b1f3-41cf0d540655 1 Other Other +7ce06489-d479-4317-a650-531d56a1a42c 1 Other Other +7ce0d0f8-028f-421c-8da3-380c8b72a452 1 Other Other +7ce1360b-b2d9-4baf-af76-9d96fd528cd6 1 Other Other +7ce1809d-8952-49e4-9a3d-4c037689d15f 1 Other Other +7ce196d0-a074-4259-9d7c-b538aa67c894 1 Other Other +7ce19b62-1912-4013-ac46-b2e681ad6302 1 \N Other +7ce1bcb3-a0a4-441a-b2fa-5fef38361d95 1 Other Other +7ce21477-b4c9-4472-ba2f-dfb6a5c2ac80 1 Other Other +7ce226af-0add-4f8f-be05-d28bea3849e0 1 Other Other +7ce27bdd-84c0-4244-b11b-29c4b551fabb 1 Other Other +7ce30cd2-595e-4eb1-a6fe-f290bbcc99ca 1 Other Other +7ce32be8-3764-4d29-acee-9df66b630d2f 1 Other Other +7ce33417-70d1-4e13-81ea-d6dd0574edd1 1 Other Other +7ce38076-5833-4c70-880e-910306b5bba0 1 Other Other +7ce3963b-efee-445a-8c83-194fa7ad6251 1 Other Other +7ce3a07a-3f1e-4fcd-ab1d-ab14bef37548 1 Other Other +7ce3d2a7-e14b-4ae8-945e-69ca55b918ed 1 Other Other +7ce4b21e-083f-45da-b222-9c11bfe9486a 1 Other Other +7ce4fa53-1c9b-49c1-b1b3-73b54db7fcf4 1 Other Other +7ce50ab2-ff40-4bc5-9e96-15f50355bdb8 1 \N Other +7ce5696f-c94c-42de-9081-48f5d31da958 1 Other Other +7ce591ee-c65f-42a2-8846-9409fc7fce11 1 Other Other +7ce5d859-0ece-4e84-819c-83d7b577f51d 1 Other Other +7ce5e91c-7ddd-423f-b298-78351697f699 1 Other Other +7ce627cf-6f71-4f73-b8c2-a814a2747592 1 Other Other +7ce62c25-edaf-498e-bba0-b0648241366f 1 \N Other +7ce62f02-b80d-4893-a8cf-5e417ccba3e4 1 Other Other +7ce6358e-de30-4ba3-93ad-278748f440eb 1 Other Other +7ce67a67-3a62-4178-9a6b-017dfc0616f8 1 Other Other +7ce67b91-55b9-487d-b055-d7a024ea4265 1 Other Other +7ce68191-dc10-401a-b07d-fc99ef39ae80 1 Other Other +7ce69da1-03c0-4c3a-a01a-9c500c361bbb 1 Other Other +7ce6a24a-a1d9-47e9-a789-6e92b0caf70b 1 Other Other +7ce6a821-9392-496a-b556-e37ba8308a26 1 Other Other +7ce6ab76-fb01-4270-8588-39d7766288dc 1 Other Other +7ce6ddac-d07f-455d-9a85-588c21b198fc 1 Other Other +7ce6f0e5-02fc-44c0-ba83-3f439b9e3d5e 1 Other Other +7ce6fc81-475d-4c2c-9cec-82233ea6f8f9 1 Other Other +7ce73057-969b-4445-a411-b3b2bf0035ff 1 Other Other +7ce74b6c-64fc-4adf-a122-3605bdcb46f3 1 Other Other +7ce7c75c-4d8b-4d15-bffc-6da03be26c7e 1 Other Other +7ce8c3e6-08b8-4ff3-950d-b75886208eda 1 James Other +7ce90aee-5bca-46c5-969b-d0164183e11e 1 Other Other +7ce9a75a-614d-4ce7-8f3c-33c80fbc774f 1 Other Other +7ce9cfbb-ebe6-4157-9a14-529db17b1124 1 \N Other +7cea6a21-ab08-417b-a27f-91803f488a53 1 Other Other +7cea8e90-e6bb-4e4b-8e7b-6974a4b0b1ef 1 Other Other +7ceaae5a-c111-4f98-8cc4-42aaa372549b 1 Other Other +7ceabc06-bbe8-4b20-a40a-f3dbc3f17bd1 1 Other Other +7cead2cf-2cfb-4864-9bc2-7e5966397b86 1 Other Other +7ceb1deb-21bb-4d89-982c-ff6f95fcd2ce 1 Other Other +7ceb1f9b-ed11-444e-a93c-1a9d4f6f4881 1 Other Other +7ceb3476-e577-4375-bf9b-70e25018847f 1 Other Other +7ceb5e5c-7c92-4313-8b6c-cb2fbf3faadd 1 Other Other +7ceb7f52-fe0b-4558-9712-5577bc8ceccd 1 Other Other +7ceb969b-5a00-4be3-b0a3-d568cfaff14a 1 James Other +7cebec26-c705-4c9b-acec-8e21167b5c78 1 Other Other +7cec2910-ba9f-4b7e-a150-1caada6ebaa0 1 Other Other +7cec603d-ddcb-47a9-b2ba-8f50261c8218 1 Other Other +7cec6c90-0b3d-406c-ad76-f9e7b0e92193 1 Other Other +7cecbc65-94b0-4269-8624-e5d7a740cc33 1 Other Other +7cecdf2f-bd6c-4638-9904-1ed6e2a25943 1 Other Other +7ced2319-10f3-4c54-98e0-fcd1f1078f10 1 Other Other +7cedb864-95eb-48cb-9197-024507c9d940 1 Other Other +7cedf5dd-85ce-4fa3-b4e8-8591ac6e7929 1 James Other +7cedfcb8-06dd-4937-b360-0f8a22f3f3e9 1 Other Other +7cee5009-1b84-4f8a-85db-87708a7ebe32 1 Other Other +7cee805c-c02d-49b5-9bff-346dbf342434 1 Other Other +7cef2e08-23e7-4888-983c-2d4938aba5fa 1 Other Other +7cef9728-f519-42bf-9283-bd54534124f9 1 Other Other +7cefab5e-8548-4f3c-a209-6772f89e6963 1 Other Other +7cf02bf4-0689-4982-be4c-f2a839344224 1 Other Other +7cf07f5d-468a-44b6-b4cd-ac79c76b3771 1 Other Other +7cf08dde-2ebc-4428-ba80-a6e61c899405 1 Other Other +7cf0a569-f311-404a-b1e3-1108414d70ca 1 Other Other +7cf0fbed-819f-4a64-9854-2ad83cd3207e 1 Other Other +7cf10015-a5a5-4471-a0ce-f2862bf713dc 1 Other Other +7cf113a7-6fe6-402d-95d9-90855747ef34 1 \N Other +7cf1557e-49ab-46f0-8b58-3d34113a7147 1 Other Other +7cf172d3-2cc2-4c53-966d-045ebdef6282 1 Other Other +7cf1fa4d-c634-4d0f-9fb2-a3f238192327 1 Other Other +7cf20b7d-c93e-476c-8bd6-aba73dc49986 1 Other Other +7cf22337-c31f-4d2b-9c47-ad478a5a7f47 1 Other Other +7cf231a3-6926-480d-96fe-69f86a20895f 1 Other Other +7cf26deb-90c7-48a3-831a-ae0fd7808219 1 Other Other +7cf2cc68-9e43-41fd-99b1-c71039c7378b 1 Other Other +7cf2d049-65ff-4c21-9d9b-e13ff2d62908 1 Other Other +7cf2f575-bce6-439f-8892-d063bfe38f37 1 Other Other +7cf3487b-43a7-4c09-b2d0-ea86c0d52f5f 1 Other Other +7cf35614-ae7e-4ae6-83d4-a72fa9a7b535 1 Other Other +7cf3c110-6a6f-4c39-9366-28a432cb3881 1 Other Other +7cf3efa7-a5fe-4833-b81c-59965e710863 1 Other Other +7cf43c96-c9e0-46de-9102-ec928d3c6026 1 Other Other +7cf47f02-0b0b-4156-b089-b0a755a18aa6 1 Other Other +7cf4f11b-36cb-4fb3-876c-ccabc6167edd 1 Other Other +7cf5066e-cdaf-48d5-9d21-d15ec6c18c6b 1 Other Other +7cf5b40c-7801-4a7f-b9a3-94f388d80e00 1 Other Other +7cf5ec5d-3e49-4949-8755-59e19adaa7a9 1 Other Other +7cf5fb6b-7182-4b44-8b9f-2c37cf3c99d6 1 Other Other +7cf6017a-9689-4b53-ab53-450343339384 1 Other Other +7cf6180b-2fd9-49c7-9033-2b2a210394a0 1 Other Other +7cf627a9-7eee-45cf-9ea3-b511e5d41879 1 Other Other +7cf63c99-31be-46e3-903d-ee2b527d7594 1 Other Other +7cf67ff3-1f81-4a0e-8584-9e6e8b678018 1 Other Other +7cf695f5-c192-4c0a-8308-5532a81d4f82 1 Other Other +7cf69ef7-8d2c-4b83-8f57-911e3c90ff86 1 Other Other +7cf6b55b-ed4b-41da-86f2-5f02b91ffabd 1 Other Other +7cf70318-80b5-4eb4-8b47-01c063c1347a 1 \N Other +7cf7432e-13c8-4a6c-8f49-b10315368852 1 Other Other +7cf75c54-88b9-4391-82c0-be4441edd3d0 1 Other Other +7cf76d26-1fd6-47d1-9389-24d31d597853 1 James Other +7cf7a10d-fd09-49b7-bb67-e8a6ea311a16 1 Other Other +7cf7d3f0-08c7-49c9-8f4d-133c241e653b 1 Other Other +7cf7def0-8aeb-4513-b451-44288a1c004b 1 \N Other +7cf8511a-bf56-4f4a-9e1b-a5fe8c263dc4 1 Other Other +7cf863a6-f86e-4cdc-b462-35b38286f1d6 1 Other Other +7cf8cdb9-c3d6-4b07-8a6a-d6912369a656 1 Other Other +7cf91f59-b5f3-46cc-8ba6-31f547687936 1 Other Other +7cf9900c-e161-4c4a-ae76-cb1fde2e5bf4 1 Other Other +7cf9923b-5bed-418c-8a1e-f0e35f217091 1 Other Other +7cf9ff9b-665a-4879-b461-ef73bb7f38e7 1 Other Other +7cfa14ca-75bd-4f48-ac48-2c0df3cb6d3b 1 Other Other +7cfa2bb8-0b08-4004-a42c-91a437bb0f0a 1 Other Other +7cfad4d7-3f7b-4a5a-9a7e-72fe4e1b4ff1 1 Other Other +7cfada65-95c2-4a29-9e8f-f7d938e260e9 1 Other Other +7cfb0afe-fa18-4753-b9be-cabeea54a4a3 1 Other Other +7cfb0f43-b2a8-4775-84f4-355d2a48baba 1 Other Other +7cfb63e8-eb14-4195-91fc-ad38e63a1cd8 1 Other Other +7cfc06d1-0f4d-4dc9-9abe-6e776554e001 1 Other Other +7cfd4c91-1e9f-430a-883f-f1375e818b27 1 Other Other +7cfd5b02-6326-4570-bccd-a41126438ba7 1 Other Other +7cfdc511-e963-4036-bd6f-e274fc2011ec 1 Other Other +7cfdd810-09cd-42f8-818b-977087c892c1 1 Other Other +7cfe2078-6c0c-4e42-99de-5eb66f737c2d 1 Other Other +7cfe3cc9-7afc-4ad7-822f-7f8de1e3f883 1 Other Other +7cfe5e1e-dd90-41c9-ae2c-f56b978cc816 1 Other Other +7cfef867-b562-49a3-9033-921527761174 1 Other Other +7cff0283-062d-4538-b82e-ad53aea588ce 1 Other Other +7cff13f4-fffd-4cd3-8a06-df696c8158e8 1 Other Other +7cff4af4-8e49-45a0-9449-0d132892721a 1 Other Other +7cff8111-ae74-40a0-a31f-d8217c256939 1 Other Other +7cff9f1d-7960-4a11-b153-285add31a081 1 \N Other +7cffcddf-284f-4582-84f7-a21373ed7c9e 1 Other Other +7cffd3c0-6ff4-469d-a23c-6199ca42cd53 1 Other Other +7cfff842-086a-49dc-a101-9877630c2e8b 1 James Other +7d002500-cd45-4943-ac64-52c4e3fd90a8 1 Other Other +7d003048-6f55-4513-a894-fa569b7194d5 1 Other Other +7d005568-4c53-4d35-aa7d-4cb26bc6f635 1 Other Other +7d00937c-6b53-4ee4-b88e-4e0d1d4fb7f9 1 Other Other +7d00cbc1-be8d-4fca-8628-9646ca2c9891 1 Other Other +7d0102ba-29a7-4400-bfaa-23810aa0ef22 1 Other Other +7d012a07-c1eb-4e7e-8eb6-8eadcf242090 1 Other Other +7d013239-dec3-4d37-be16-0933cece0ae3 1 Other Other +7d0156c5-5a78-48b8-a282-ddf66abfc76d 1 Other Other +7d018571-7f81-4710-98ef-71dc6d1be0fb 1 Other Other +7d01af44-fa4a-4e34-9f5f-218fd579e227 1 Other Other +7d01b734-d079-4db4-becc-187b977c31c0 1 Other Other +7d01be3e-4008-4ebe-943e-d2b8fdf5aeea 1 Other Other +7d01da23-4259-4bf5-81ee-0529ab0c083e 1 Other Other +7d01fc70-15f1-4c56-9abb-bc500381b4d5 1 Other Other +7d02158e-3fda-4df8-a7f9-3b9350c5f1da 1 Other Other +7d027b89-4f0d-46fb-bbe9-2d92707eddd3 1 Other Other +7d02bb96-525c-40f3-a5a6-8722f4348bb2 1 Other Other +7d02c521-c532-43ea-a6c1-35cde1b65dcc 1 Other Other +7d02d89a-04ca-4b43-912d-e9d4f1990111 1 Other Other +7d031fcf-a0c1-4348-9bc4-f40eea39ea6c 1 Other Other +7d0327ed-0716-464a-9042-bcaf6c82dc7d 1 Other Other +7d03305f-5f9a-4595-914a-7c06a7f5514c 1 Other Other +7d0330f0-57f6-4b16-b164-237e77ae4d48 1 Other Other +7d0365e9-1dd1-4c16-9da1-8081357e1fec 1 James Other +7d0377b6-800b-473f-8c66-7c77389607e4 1 Other Other +7d03ace6-f3e5-4370-93c7-b2f35ec9438d 1 Other Other +7d03c912-0a4d-4cf1-a43e-65b7cd7dd52c 1 Other Other +7d03e87e-1c39-483f-b2a9-3c5c6aea4832 1 Other Other +7d040909-5ea3-47b6-86ed-ccf5456f1cec 1 Other Other +7d04262f-fbe1-4855-818c-351e2296e966 1 Other Other +7d04b0ef-67b8-4e0b-8c38-03c30c1823cd 1 Other Other +7d04c9b7-b223-4ebc-a8d4-2007285e9eba 1 Other Other +7d04cb64-cc3e-42d2-a200-e917efb0c4a6 1 Other Other +7d04e946-fb83-4d0f-8e73-bb2bcb9dc484 1 Other Other +7d053c65-bfd5-4491-83b1-faf67c963702 1 Other Other +7d057696-9145-4a9b-b8e3-b4f783935f42 1 Other Other +7d057876-bd9e-408d-9a6a-c205db82f266 1 Other Other +7d057934-2ea9-4ed8-98bd-daac4d5d13f3 1 Other Other +7d0580b7-1b77-445d-a372-89b7787226c0 1 Other Other +7d05820d-9986-4b55-a806-bc67420d5ecd 1 Other Other +7d05968c-d379-432a-9c4b-e0e096971ad9 1 Other Other +7d05fd72-6bfc-4c7f-918d-753147549b83 1 Other Other +7d062353-2663-42c6-bd43-451b8d52c155 1 Other Other +7d063733-4901-4a97-92e2-3e15ecd7f7a0 1 Other Other +7d0665a9-003e-438c-afd9-c4d0b9860df2 1 Other Other +7d067299-7cbb-420b-ac56-29652044d38a 1 Other Other +7d068d76-56a1-4993-8135-25d73ef34c8e 1 Other Other +7d06911c-b2c3-4f13-8748-ddf36e3d6bce 1 Other Other +7d06a253-791b-45ee-95e0-f337872c6456 1 Other Other +7d06d9d0-c930-4099-905a-e0ceb7f9c931 1 Other Other +7d0752b1-6d66-4a57-aa34-6b38535ae503 1 Other Other +7d076752-1b99-4a8a-a92c-b278ce401181 1 Other Other +7d07a5f6-287d-4b9a-ab93-cf329f332ffc 1 Other Other +7d07b5b7-eed2-4a60-8650-2e7e69a09d15 1 Other Other +7d0840d6-78c1-46ef-a935-f96f1096f455 1 Other Other +7d085dcc-c623-4298-a764-adf803af9ac6 1 Other Other +7d087fd0-14d2-449b-9430-12eda912a566 1 Other Other +7d088f7f-5a9c-4a1b-b5ce-aa32ac9d1f18 1 \N Other +7d08c461-cf0a-4c2d-9ac1-fe76cdeb2a34 1 Other Other +7d09269e-926e-435f-8373-292dadf08882 1 Other Other +7d09508b-d39e-42fb-b3b6-baa1c073ee44 1 Other Other +7d0956cc-cfad-40a6-9245-9fd9ef535206 1 Other Other +7d0963b3-d292-445f-84ad-09a1cf288b04 1 Other Other +7d0976a9-722b-42f1-a8d3-1d1ea67adab0 1 Other Other +7d099780-fc0a-415c-9c39-6a8a8e69eabc 1 Other Other +7d099a63-f93b-4da5-91c1-afa088321d00 1 Other Other +7d09d565-9a45-4c7d-8e69-0154d33d0de5 1 Other Other +7d09d580-725f-4449-9d92-66d8b0348d30 1 Other Other +7d0a1033-e2f9-4c34-b462-4a35b0f30ab1 1 Other Other +7d0a889d-96c4-48bb-aabe-feec4ad42455 1 Other Other +7d0b01b3-6272-46ff-9b22-f490c81c8ead 1 Other Other +7d0b20d7-a888-4ad8-9d6b-d7f4910e2c81 1 Other Other +7d0b2ba2-5868-4339-8838-0fbf3a71b76b 1 Other Other +7d0b3a30-4411-48ce-9588-40c8a208ce08 1 Other Other +7d0b4d0f-b08f-47db-a857-6649ff4921e9 1 Other Other +7d0b4d25-c414-4c95-a7af-54d2c88aebd2 1 Other Other +7d0bfb5c-8f44-4f13-a543-d5fccb0f831e 1 Other Other +7d0c9ab5-205d-4745-8cf8-f0f05b78c78f 1 Other Other +7d0cd6b5-e105-4da2-9477-3d6957c75f63 1 Other Other +7d0cd9e7-e8b0-40f1-8545-7fb37019edab 1 Other Other +7d0ce948-7d59-438d-b035-da9f50ef33eb 1 Other Other +7d0d0e24-2656-486f-a2b5-bd657399ad04 1 Other Other +7d0d349d-e9fb-4a48-b191-c772eb58e8dc 1 Other Other +7d0d88d9-0cfe-43d7-bab4-8f8962850c7f 1 \N Other +7d0e1ac9-a8c4-4e96-8128-1d02a64af7e2 1 Other Other +7d0e39f3-3b6a-40b9-8580-0827b836c92b 1 Other Other +7d0e4142-7985-405b-930a-91f13f3552d7 1 Other Other +7d0e44fb-3aaa-42ee-a3d1-a73bd7951b14 1 \N Other +7d0e4b57-2f84-4e6c-891d-f3012a1e294e 1 Other Other +7d0e7ee2-bfcc-4996-9fe2-018b1abc4a5b 1 Other Other +7d0ebeef-31c0-4fdb-8cd0-e9359ffa7cc9 1 Other Other +7d0f3838-5341-47af-99cb-5e93b6b9a636 1 Other Other +7d0f5854-9f9d-418a-857a-693357d24547 1 Other Other +7d0f5ec5-da29-4cbe-b646-456ddb5cda7f 1 Other Other +7d0f68d5-4e90-4375-ad63-d42c97ce3bf3 1 Other Other +7d0fd513-326b-4b7b-9ea5-8686af11567e 1 Other Other +7d100867-6c18-4f03-bfa1-d907605fe907 1 Other Other +7d101484-52a9-4b9c-b88e-c14cdfb59a26 1 Other Other +7d10240f-4356-4940-8bec-44589518b60e 1 Other Other +7d102f49-eb65-49b1-ae75-559f5a0ed7c6 1 Other Other +7d106921-a353-4449-b3ff-c0a24d568994 1 Other Other +7d107530-be5c-4c48-aa70-fbeba8154953 1 Other Other +7d107ebf-354c-47ce-b543-ef0d6394ffc7 1 Other Other +7d10d701-ba8a-47c9-92a4-20883ec375e2 1 Other Other +7d10ffe4-6d7d-4dc8-a9ce-822fbb8e7f6f 1 Other Other +7d11065c-6c65-464e-ba22-ccaa41efe7d8 1 Other Other +7d112f57-cfbc-4f14-95d1-9aa7f21fd363 1 Other Other +7d116f82-92db-11e7-aeae-fa163e8624cc 1 Other Other +7d1175dd-76c0-48dc-99fc-a48a34b624cf 1 Other Other +7d11ba3d-be72-496e-b106-36cdcb163f47 1 Other Other +7d11cfc3-d5b9-42a1-aa89-d24f45eaffa6 1 Other Other +7d11dcfe-6ce8-414f-a8ea-797352d73593 1 Other Other +7d11e181-6624-4c3d-ba9c-c99bb8666a52 1 Other Other +7d126886-5c27-4404-ba2e-71f6d937baaa 1 Other Other +7d12a936-5c58-46a9-b08b-c0bc3e09233d 1 James Other +7d12bb62-26f2-46c6-a625-606401a1883a 1 Other Other +7d131d6e-e387-493b-b412-5e86f62e3c19 1 Other Other +7d1353a6-55d2-4c3e-82b0-22526019e497 1 Other Other +7d1389ac-7f23-44e5-880d-cafcefa15a7c 1 Other Other +7d13a8eb-e0f9-4c50-9697-62fa8086760a 1 Other Other +7d13a995-4e7e-4538-9382-dfc464070d99 1 Other Other +7d13ada2-69ae-4e58-9e5e-e42548e70593 1 Other Other +7d13b68a-4243-4b52-8ac3-c81f1fe4fa49 1 Other Other +7d13e703-b235-400e-bef1-29989ad7eba6 1 Other Other +7d14156c-24f7-41f5-9645-cd3bdb6cfccf 1 Other Other +7d14ab80-bd0b-4728-841c-1fd9ae96bf90 1 Other Other +7d14bb2f-9e09-46c0-8cb0-a2875d3d9113 1 Other Other +7d14d098-c3ac-48f7-bb2d-a30d13a6e930 1 Other Other +7d1521ba-bacb-4390-9dc0-b2b863d80a3c 1 Other Other +7d155ecf-ba8d-4563-8ff8-8ba5a8d32fad 1 Other Other +7d156521-7d62-4a01-92c9-4d5ab67bd946 1 Other Other +7d15a1ec-ed20-4dc9-8ee6-705db118bae2 1 Other Other +7d15f81f-196f-489a-afae-d1f0b29746b6 1 Other Other +7d1607f4-9341-4885-9628-baeab5f273c0 1 Other Other +7d167591-b01b-4b9a-947d-cb2c81f7e4c7 1 Other Other +7d16c2bf-4852-4e10-ab9c-64da979953de 1 Other Other +7d1702ec-7f11-4a81-8a5f-183d1afc4d36 1 Other Other +7d170708-3539-4be7-b13e-6fdd20d6b7f1 1 Other Other +7d170dac-2d64-4422-b13e-dea8c5861aa0 1 Other Other +7d17476d-0dc2-433f-a471-270d14354908 1 Other Other +7d174882-c688-4f00-bb58-2ca91f29c577 1 Other Other +7d1762d1-2c61-420f-8480-761efd93c6cf 1 Other Other +7d17cbe7-6f65-4877-8e82-b75c5228881b 1 Other Other +7d1804c4-7678-450a-a811-9f6aa18a3db3 1 Other Other +7d18184f-d1c3-4f9f-96c3-8060129cd14c 1 Other Other +7d18379c-6d86-4fdf-a0e9-1fffd3d84a02 1 Other Other +7d18716d-2f77-4e10-8da7-37c4cd32b560 1 Other Other +7d1872b7-c768-45e3-8fce-8ec74d747039 1 Other Other +7d18c267-00a6-47fa-8e9d-987be183b7d1 1 Other Other +7d1910bc-08a9-41b8-a4b3-4cd26ac5ba08 1 Other Other +7d191f34-8aa9-4fec-9777-f09446ffb3c1 1 Other Other +7d193287-b687-49ad-a2cb-e651ee8be026 1 Other Other +7d1946f7-ddd9-4f76-ab49-ae24fffa3247 1 Other Other +7d196a31-c9fd-4fe5-9790-3104483f4124 1 Other Other +7d196a85-8534-498f-9563-d0f9917292c0 1 Other Other +7d1987c2-7926-455b-bc9e-326283cc6f7c 1 Other Other +7d198a81-f6f8-49f7-814d-6b8c651e2b59 1 Other Other +7d199e07-7116-49ff-9259-bef215f209a1 1 James Other +7d19c4ce-b26c-4a8a-a723-94b49010ef8f 1 Other Other +7d1a1ad0-2a98-438f-b428-b5fa081c1524 1 Other Other +7d1a222f-4c55-4b9f-a1be-da1e126b72c4 1 Other Other +7d1a23ee-d5e0-452d-b079-d73668074dc5 1 Other Other +7d1a2e94-3576-486c-a4f1-3a489fb1a04f 1 Other Other +7d1ad629-31e6-4c67-bb1c-754e2782f67e 1 Other Other +7d1ae778-88c1-421d-bbef-7b5a235b9e6f 1 Other Other +7d1b3057-5c25-4a71-88d8-140392b90cd9 1 Other Other +7d1b3273-d6fa-4e02-be40-f20f87e2e831 1 Other Other +7d1b45df-d34a-4f23-935b-1f60aac9e7cb 1 Other Other +7d1b4f33-5768-498b-ad38-2ab933642374 1 Other Other +7d1ba709-69c1-4976-8576-2eb1976ebb74 1 Other Other +7d1baaed-d5f2-428f-8eac-60bd48419277 1 Other Other +7d1c2c31-3615-4671-8dbd-1a63e6c25ea4 1 Other Other +7d1c7fef-b520-4f60-a413-a0e93332148f 1 Other Other +7d1cd496-24d0-44e3-923d-9e0583918980 1 Other Other +7d1cebbf-c7e4-41e6-8cfb-8fff7e54c496 1 Other Other +7d1d0f71-f07c-4bba-8a96-61eb6350980a 1 Other Other +7d1dac3e-b985-4c8f-bd89-ed7443a2e6e0 1 Other Other +7d1dbfd7-db3b-47ed-a50e-54d1b300b367 1 Other Other +7d1e7bf3-8915-49e5-859d-603537dc0ae0 1 Other Other +7d1e953e-cfc5-4ba2-b9ee-4c96bfc07027 1 Other Other +7d1eaa1a-48c4-43ee-9b5a-e7f71def3823 1 \N Other +7d1f9c6f-2748-41cc-91b4-6047eb5f971b 1 Other Other +7d1fd23e-2467-452b-9e41-20eec0fb9e9e 1 \N Other +7d202019-026b-43e3-979d-53d58a139bc2 1 Other Other +7d207a29-0392-4573-852a-a9036009103c 1 Other Other +7d20a9e9-c7b6-4d7f-a9e9-61e0abcd23f2 1 Other Other +7d20fea8-7285-4277-9a9b-c7686ba78a07 1 Other Other +7d21429f-43ed-40b3-9f34-233d075223ef 1 Other Other +7d21493e-b3c4-40c5-b34a-4f3c05be5c81 1 Other Other +7d216031-3131-436a-a81e-ba2f9761685a 1 Other Other +7d219251-481f-476e-a72e-f0a2e71aeb9f 1 Other Other +7d220ae1-9213-4040-b102-c05085099cc1 1 Other Other +7d223812-ff09-4be1-ac1a-29434e3012c0 1 Other Other +7d22454c-3184-47c5-b03a-bdc06a796da9 1 Other Other +7d22c123-fb95-45cf-8db9-1fa38d42d0c9 1 Other Other +7d22c340-51c3-4541-87b1-6bc43bc691e0 1 Other Other +7d22dfda-6b40-442b-a810-ecc345415121 1 Other Other +7d22f24b-4d93-491f-acd2-a8464be92f5f 1 Other Other +7d232860-6362-4f4c-af76-cfe34f9e1fa7 1 Other Other +7d2338b9-e98d-409f-b3aa-cba5354a8545 1 Other Other +7d233b5f-0ea5-49da-b732-e9d3b099bfe6 1 Other Other +7d238da4-e255-443d-a5ff-cf0fd5d34726 1 Other Other +7d23b9f4-5a9c-4c1f-9497-018ae4b26e4c 1 Other Other +7d23c8ee-7ed4-47ee-ae0f-9811198d7bb1 1 Other Other +7d23e50a-11b1-46d4-92b9-57ee82b18993 1 Other Other +7d23f5a4-0c67-4796-bd02-a7d2c29ae2d9 1 Other Other +7d2421fc-a269-4296-8f69-538e921c31d4 1 Other Other +7d2435f1-a3b9-4d58-ba0b-6d435cba79ad 1 Other Other +7d244e1e-1a30-461c-ac18-fc5f38cd0fea 1 Other Other +7d245552-bc1b-404f-b65f-cf43281363a3 1 Other Other +7d24ef09-7be1-4d75-9c15-829e82ef49bd 1 Other Other +7d250edd-726c-4f3c-9976-adcfee487f57 1 Other Other +7d251558-863f-438c-83b2-79184ce793fe 1 Other Other +7d253faa-be5f-43aa-af89-97b7ad5cd327 1 Other Other +7d2578f3-2f78-4500-898d-ca7e364805d4 1 Other Other +7d25ba97-ccab-4da5-81dc-39d0467b5dbd 1 Other Other +7d25d331-c6bf-42d7-a1f0-67727b2b5ee5 1 Other Other +7d25e385-fb49-4216-bfba-f04bf9faad00 1 Other Other +7d25e568-6d4c-4aaa-9341-16403a6e7757 1 Other Other +7d261e62-2cc1-4322-8b55-0306587e81b0 1 Other Other +7d262d48-4b30-4c5d-929c-b03fd073069e 1 Other Other +7d264a9c-eeee-44ff-b5f0-70cde3d85b13 1 Other Other +7d2663d2-ece1-4575-9e45-b648f1edd0ba 1 Other Other +7d270360-afad-4897-a8b9-6d0b0652e895 1 Other Other +7d27333b-9a51-426c-94a2-c5d5a4f2c605 1 Other Other +7d27356a-f67e-418d-ae7a-97ea97c74c8c 1 Other Other +7d278dd8-8b51-4c36-a0c8-3b2229425167 1 Other Other +7d27a912-b2cc-47f7-a83d-df533281350d 1 Other Other +7d27ccd1-f7c8-4931-ae4a-ff5a17d6a77f 1 Other Other +7d27ea78-f258-4e72-81a4-c82e61110d68 1 Other Other +7d282e37-9595-40b7-bca2-91918fbdb90c 1 \N Other +7d283608-6ab8-4645-8de3-2b8afe5afe3e 1 Other Other +7d284304-a4d0-4ecf-a4fa-662ba3006a30 1 Other Other +7d286710-2cf8-481a-bdaf-9992bf1c23d4 1 Other Other +7d2910d2-7e39-4bfb-9853-c7227468192e 1 Other Other +7d29aa1e-623c-4689-bf8c-267b8786a305 1 Other Other +7d29de3a-51e4-42e7-8bf3-d28a190dafbb 1 Other Other +7d29de63-9f06-499a-af37-3b995c19383e 1 Other Other +7d2a292f-aa85-4897-9ce9-ed6d8a24bdec 1 Other Other +7d2a29c6-32f9-4c3a-9f76-003848f9a166 1 Other Other +7d2a3b5b-39dc-405f-8ed2-e3aee1adcabb 1 Other Other +7d2a6552-b473-4475-b192-cbce2758173b 1 \N Other +7d2ad7b4-41b4-4e89-ada7-31c68c390005 1 Other Other +7d2b20ca-0c96-4bc3-ab9d-403002d6f398 1 Other Other +7d2b4e77-3c68-4bf4-bd8a-e1e200a841d8 1 Other Other +7d2b8b89-cfb0-4326-97ca-5abdb0cd17bd 1 Other Other +7d2b9c2a-aed7-44c5-9586-8ea940809004 1 Other Other +7d2bcb5b-fe83-49e0-a619-d94317451d08 1 Other Other +7d2c264e-1a92-4bf9-9db7-f4ce38473856 1 Other Other +7d2c4d1f-cb26-4a09-9bec-7797cbff050b 1 Other Other +7d2c537f-c470-4dca-bbf3-8f668de35ea5 1 Other Other +7d2c880e-f869-4785-9439-e8ad0e1bf85f 1 Other Other +7d2cfaaf-65a6-4f47-b567-4e1b6dff180a 1 Other Other +7d2d0108-82b3-4b9e-b764-eba94f9f1f87 1 Other Other +7d2d41eb-989d-4c4b-b597-0aad4c29b475 1 Other Other +7d2d4819-8849-44b6-90e5-c3c54a8ff195 1 Other Other +7d2d8bc9-6a48-4595-99fa-803826554e5a 1 Other Other +7d2d8c65-c052-406b-ae9a-76d1ca81b0b2 1 Other Other +7d2d9a32-e781-4da3-9061-c881ab6edaad 1 Other Other +7d2db8b0-a7bb-4879-8831-6a05371e21e1 1 Other Other +7d2e1cb5-19e1-4c19-8958-934e67becf0d 1 Other Other +7d2e59ca-13a8-4d61-ab3a-c32a25d886a8 1 Other Other +7d2ea0d1-cb72-4ba8-a824-21205e8d65c2 1 Other Other +7d2ed2e1-0932-46f8-80ca-8a1cc9991286 1 Other Other +7d2f1e9d-8b8a-47df-9ef4-3f5cc8e9eb31 1 Other Other +7d2f5d77-0486-48bd-bc2a-4b9e2f20bc47 1 Other Other +7d2f77a6-2145-456b-a522-9ec6d84e58cc 1 Other Other +7d2faf5a-72c1-47b7-8f76-e47427709efe 1 Other Other +7d2fe7fd-aa63-43da-804c-bf3200e7b334 1 \N Other +7d302177-35ec-44aa-9f6f-bd5ad749f652 1 Other Other +7d305443-544b-4f43-848f-6d1265bc9566 1 Other Other +7d30bf10-4335-4e29-92ca-3a5d562bfea8 1 Other Other +7d30ca56-3d25-4a31-96d4-8bd2c59ce8c9 1 Other Other +7d30fd2b-34e8-4358-b2a1-296f9981eb6c 1 Other Other +7d310b94-f339-4372-864b-04b271c82042 1 Other Other +7d31b8e5-dd55-484d-8ab5-c81955634ae3 1 Other Other +7d31cdbb-6af5-41af-943c-2b921581af16 1 Other Other +7d31e2e3-2d9f-4dab-af29-8bfc297c8ee9 1 Other Other +7d31e963-8d9f-4251-b8f4-05e9624adc5a 1 Other Other +7d322e64-263d-465b-a427-a01e74048194 1 Other Other +7d3255b2-ab5c-4bef-a38d-f0db4d3f77de 1 Other Other +7d32565d-608d-4cdc-ae60-5c1dd8b75a56 1 James Other +7d32610b-3a07-4c2b-8939-8d9230e6f234 1 Other Other +7d328b8a-f9b2-4303-8a82-fab56fe5c423 1 Other Other +7d32adb1-2a99-4059-bd8a-e25e7241073f 1 Other Other +7d32ccf8-d680-4e40-a31b-07ece774b673 1 Other Other +7d32e853-27e8-493c-b0f0-fc03685002fb 1 Other Other +7d331f14-d272-40c8-9b56-1d60ffd0a6d4 1 Other Other +7d338048-845f-4741-aed1-45bbb36ac288 1 Other Other +7d33dd51-623d-467b-b213-f4ecc87244be 1 Other Other +7d3423df-5682-4cad-afd1-a3bda5d740ae 1 Other Other +7d342f7f-b69d-4249-b3c8-d95f32ff9901 1 Other Other +7d345281-6a3c-40e0-9bb7-3b3fcf910f37 1 Other Other +7d3492cc-0658-41d9-8dfe-f4af7b4e9239 1 Other Other +7d34a15a-ba99-44ce-9388-5d62fdc89eca 1 Other Other +7d34b27a-8206-417c-a5f8-fdb342655967 1 Other Other +7d34c8ab-d3e9-4214-b416-92b0eca66107 1 Other Other +7d351902-7105-4dc6-969a-f1c9472c102c 1 Other Other +7d353b57-f6dd-459e-900a-cfba71a5d454 1 Other Other +7d354293-2603-4128-b33a-09d17842354f 1 Other Other +7d35433c-3476-4c6f-a26c-7c2b93d1cbb6 1 \N Other +7d357da8-2f67-41fb-afeb-1a9cb7f9089c 1 Other Other +7d359655-46a3-4dbe-8b61-e514ab2e7fe2 1 Other Other +7d35b823-cc11-4b96-ae8f-47b0a29f3693 1 Other Other +7d35bd17-e75c-4058-aed2-45eb2145b156 1 Other Other +7d35da46-399d-43c2-ba85-029c953af07f 1 Other Other +7d36068a-48b5-4c7e-8923-da0411203be3 1 Other Other +7d360949-9ef2-4a5e-bbde-553e7748cb91 1 Other Other +7d3615d2-6cd0-40ca-accc-5075279c8e86 1 Other Other +7d364259-0b81-42d1-8d81-0e2f89fb8b7a 1 Other Other +7d3649c8-f0b2-41ff-b218-8af1f74d976e 1 James Other +7d368d47-e6c8-4189-aeb7-bc3cac5808dd 1 Other Other +7d36ba37-cd9f-45bb-b13b-f292d986442d 1 Other Other +7d36c474-b48b-46ae-90af-91eab139c8dd 1 Other Other +7d36edfc-4157-4816-be92-75834435d011 1 Other Other +7d370d88-4788-4d65-842a-9b20600f82db 1 Other Other +7d37137d-31fa-400c-b39a-8036a8195b41 1 \N Other +7d37500e-2e79-4677-8262-4623a1835aec 1 Other Other +7d376503-5b38-4c55-bd6d-4d7c7fcc0585 1 Other Other +7d377508-9076-4db3-9826-d94aeea25584 1 Other Other +7d377f5d-b257-4148-96ce-a2b156b3ab19 1 Other Other +7d37d812-4545-11e8-891f-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +7d381359-e1e1-460c-a1db-95cddbafa431 1 Other Other +7d383093-bfcd-4f47-81f7-0670d0b275e2 1 Other Other +7d3854dd-8865-40ae-a83a-2cab8fd08d8d 1 Other Other +7d386104-cde7-4612-89e7-aa130f742ab2 1 Other Other +7d386cc3-5836-4a0e-856b-0b66156bc239 1 Other Other +7d389e00-016a-44f1-8d4b-00bd7703d3d3 1 Other Other +7d38fe15-f940-4e81-9bd0-8603759f83a6 1 Other Other +7d391ff0-3971-475c-be2a-f803483422c4 1 Other Other +7d392467-65f8-46a7-a1c7-3241a62670fd 1 Other Other +7d3953b1-c50f-49f9-9da4-dacb9e064427 1 Other Other +7d396c4c-788d-4038-aab1-239049d9ddfd 1 Other Other +7d39885e-9444-4485-a639-b47f28227004 1 Other Other +7d39aa04-3793-4219-8084-ca8761303fe8 1 Other Other +7d39b4da-93a2-49d4-864e-c266d3ced464 1 Other Other +7d39c296-d758-46ae-9ca0-04bbd78be59f 1 Other Other +7d39ed9b-1317-4b72-838e-6c8e0943c09d 1 Other Other +7d3a2516-0a81-45f8-9ea6-6a258ee36796 1 Other Other +7d3a6787-acd2-40e2-8ea7-f55e839b938f 1 Other Other +7d3a8466-edef-420f-90b8-405381ac9383 1 Other Other +7d3a8686-9d4c-4bd3-b243-ade9b256e700 1 Other Other +7d3ab964-9213-4c2d-811b-be9b8dfd337d 1 Other Other +7d3b2b85-a890-4f6f-8f14-5febc7b318fa 1 Other Other +7d3b48e8-813c-4c09-a9a7-5df904c5bdf3 1 Other Other +7d3b8131-ed80-4d0f-904b-e70549c71ee2 1 Other Other +7d3b8352-47e5-409b-9557-c9700864dcf6 1 Other Other +7d3b8410-4a16-4b5e-bd4a-50c55d5de507 1 Other Other +7d3b8bc5-35a6-4d4b-bee3-eb6248517521 1 James Other +7d3b8f1a-83fd-46c0-95d5-8c28c4ad5b88 1 Other Other +7d3becf4-ee2f-4f48-bd27-4c895020543c 1 Other Other +7d3c0272-7c73-4251-a9e5-ea2a3aff0c97 1 Other Other +7d3c2905-e60f-440c-9aaf-3a241866b6ad 1 Other Other +7d3c4440-0015-4574-a4d0-e77b6ad449d4 1 Other Other +7d3c5d82-33d6-4bd4-b431-ceca2ed7a373 1 Other Other +7d3cb28a-e050-4fd3-b233-3716810ebabe 1 Other Other +7d3cc849-7a08-4f11-b524-eb631cd1ea6a 1 Other Other +7d3d06bd-3b19-46ca-80ea-f82160565597 1 Other Other +7d3d1adb-2438-49b0-aa36-a88f2b28fd82 1 Other Other +7d3d2b7a-fa11-4d6e-a6b3-0a682bc11f83 1 Other Other +7d3d3e54-2d48-4cdf-b557-f295709fd3dc 1 Other Other +7d3d716c-5e61-4ee7-8cb8-a2d1de64a0df 1 Other Other +7d3d8ac6-0602-48b9-9ec1-b8e494daa013 1 Other Other +7d3d8b83-354a-4a8c-a334-90f7a4c01f54 1 Other Other +7d3db70b-8766-474e-bc85-dbd2d1880a66 1 Other Other +7d3df07a-9a3e-4ad4-8f0a-48dc3c85b069 1 Other Other +7d3df60f-e35f-4e3a-96a0-db57f85a739c 1 Other Other +7d3e1ceb-d794-42d1-891f-f45034808266 1 Other Other +7d3eaba3-8e46-4fd6-ad1e-498dfa87960f 1 Other Other +7d3ededa-e20c-4d90-a216-88e646cbf59f 1 Other Other +7d3edf53-dcb0-401a-b3f7-5e620b59b112 1 \N Other +7d3ef63f-2039-4d87-90a8-c3b3ab54d107 1 Other Other +7d3f0275-d8cd-4e05-9044-63d4705c7547 1 Other Other +7d3f047f-3804-498d-b0e8-68e8e9429d48 1 Other Other +7d3f5525-ee8f-4fd5-beff-1a45f53db279 1 Other Other +7d3f7b1c-2816-446d-a6b0-fa551c9f0b70 1 Other Other +7d3f896c-9892-4c13-881f-cca3c99660ce 1 Other Other +7d3f8a21-e646-4ef9-a8c8-beef3ee7bfdf 1 Other Other +7d3fdcc1-6ab0-4347-bcbc-f6fe10d37e2e 1 Other Other +7d3ff762-a6e9-431a-8f5d-9e434d0c8d50 1 Other Other +7d400e31-b3c8-4237-bd1c-70ccb366712c 1 Other Other +7d4046ba-84e2-4ebb-a856-6c8663c7f021 1 Other Other +7d405874-394b-40bd-bdd9-a054c72fffbc 1 Other Other +7d40bf0c-e026-473a-a8fe-ad4ebe576f2d 1 Other Other +7d40e90d-f3c8-4ac4-bed6-9603a750ea74 1 Other Other +7d41286c-25f9-494e-944b-7111ddf4d06e 1 Other Other +7d412a43-29f2-4727-aece-941bcb7291d9 1 Other Other +7d41340e-0a64-4120-889d-fa773248e28a 1 Other Other +7d414140-1cca-4a47-8464-9bb5b1bf6fba 1 Other Other +7d41e6d4-5e6f-4297-b3e0-8ed1965c2ae3 1 Other Other +7d41f455-345c-488f-a615-298d4d820a92 1 Other Other +7d42170f-be0e-4207-b05d-7bc0d46cba71 1 Other Other +7d421eef-cef8-4436-81b0-50a8f9ded7bc 1 Other Other +7d429581-ff8f-435b-a0ea-65b76e86f199 1 Other Other +7d430e70-102b-4ff3-9265-074c49f979c2 1 Other Other +7d4317a3-e9f0-4625-8928-208f5a3af1cd 1 Other Other +7d432387-b5ac-4b17-acbc-042ab8e4a900 1 Other Other +7d4335e3-74cd-448c-917a-3eca7a75d8e4 1 Other Other +7d436317-4d62-469c-a14c-c85e26f5339c 1 Other Other +7d436a5c-c608-447f-85bb-581231257ecf 1 Other Other +7d4376ba-87a7-479c-bc60-c22a15834985 1 \N Other +7d43d505-78b7-4f26-9a30-1a27e8c510f8 1 Other Other +7d43d7c3-e36a-45e1-ad11-db4267137e4c 1 Other Other +7d440dfa-17c6-11e8-9ae9-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +7d449870-a18f-4ad0-aad4-94bc1d4d540a 1 Other Other +7d449f0e-386a-40ad-a59b-6e6f67bdc77e 1 Other Other +7d452137-5e1b-45b7-8f8c-969f0aa0189f 1 Other Other +7d4566dc-dd1d-460d-85a5-31f8b140f5ab 1 James Other +7d458d9f-f060-41ac-a1de-53cc8385ffdc 1 Other Other +7d4616f8-c0be-41fa-b5d9-69485534213a 1 Other Other +7d462b8e-c5ce-4841-a27e-5298a6d20738 1 Other Other +7d463648-8840-4b5c-8390-5aed68087105 1 Other Other +7d46530a-da27-47bb-8e9e-0e835d1508af 1 Other Other +7d466810-cb5f-49ff-85f0-c68de06bbec9 1 Other Other +7d46788e-82a2-47b1-8e7b-3b30f78c458e 1 Other Other +7d468a64-d4ab-49f4-8b7e-80a05182b88a 1 Other Other +7d469c69-8672-4563-81e0-edc8dfe32d06 1 Other Other +7d46ac95-9897-4918-ae11-1908697192b0 1 Other Other +7d46b01a-241e-42b7-8a7b-8116aa562087 1 Other Other +7d46c426-1fbe-4a0e-a34d-c3da7f02cb43 1 Other Other +7d46e344-6246-4d82-860b-8e671bc13c32 1 Other Other +7d46e705-6e85-4ccb-9de5-ab5d8b3551a8 1 Other Other +7d4721a0-181c-47c5-acd9-4a09d5756af6 1 Other Other +7d47397f-43a3-484d-9a4c-23c33b39c167 1 Other Other +7d477277-8dd0-49bf-8cd4-f1c5881e9667 1 Other Other +7d478c14-c256-4abe-ae68-bd69f14a65fd 1 Other Other +7d47acf8-12e7-4b41-9241-212e7b834129 1 Other Other +7d47f6a8-879a-432c-a768-dd2a613bd64b 1 Other Other +7d47ffc4-6a0a-4648-9c8b-ac3488f45a9f 1 Other Other +7d483a96-02a4-4d37-b226-8a84d82034f0 1 Other Other +7d487381-6990-4106-81ff-a5fe69276c9b 1 Other Other +7d487ed9-4497-4feb-92a0-e06c35dccd11 1 Other Other +7d48ad89-0d7b-41c0-a458-a998310b6beb 1 Other Other +7d48ae37-b886-4d0e-add8-971698f51835 1 Other Other +7d492f6a-45d6-443f-8907-e68f6f80e3ea 1 Other Other +7d4961b2-657b-4341-9f3b-b98dfee4eecb 1 Other Other +7d497c69-8b48-41f5-8419-23bea09e0315 1 Other Other +7d49969c-9c95-4e51-945b-46860c01b936 1 Other Other +7d49e981-df11-44cf-894c-d480ebec67ce 1 Other Other +7d4a2b89-322c-4a2d-b76c-0c79ee96d445 1 Other Other +7d4a4156-56b3-47b2-bebb-a02de9d1b698 1 Other Other +7d4a6f39-13b6-4693-adb6-c6ce3676af86 1 Other Other +7d4a945c-7c3d-4bb6-9ef9-9324e3b2e80e 1 Other Other +7d4a9a1c-6f1e-48be-82a2-8420728af3d0 1 Other Other +7d4a9ae0-4d3b-4ee3-8c3a-2b87135a7eb6 1 Other Other +7d4ab59a-e919-4443-bf35-3884c8a6a3f2 1 Other Other +7d4ac23f-09c5-4348-b8f1-0b1f1ac8ed4f 1 Other Other +7d4aef40-1dad-4d14-b2b1-19908d43d410 1 Other Other +7d4b3885-1c78-43fc-8eb7-2fd7b7a48dec 1 Other Other +7d4bb1a1-47ab-4628-a208-219b1b4b8634 1 \N Other +7d4bd443-16d6-4a8e-9b0f-1cda82a45cb9 1 Other Other +7d4bd50f-9ba7-431b-8c5e-6839e474b2e1 1 Other Other +7d4c4000-5df7-4005-bead-efb54296410a 1 Other Other +7d4c543e-d93c-44f5-be7a-9246fe538ef3 1 Other Other +7d4c5482-05f1-42be-a54b-15cb12a2feab 1 Other Other +7d4c6915-51d6-4c8b-997f-0c4ad2a61a1a 1 Other Other +7d4c9ce2-c25a-4dfe-a891-27bb94433a52 1 James Other +7d4cb666-789c-4eb7-af7e-10d8e5a42936 1 \N Other +7d4cffa6-d12c-4a01-b0a8-7799065d3d99 1 Other Other +7d4d4777-9631-4e09-8fdd-392094a5a983 1 Other Other +7d4d76e4-c250-472e-b037-f1649858f103 1 Other Other +7d4dd86c-b8f7-4d4e-8897-65b1376b858d 1 Other Other +7d4ddc82-b079-43d5-beb6-5da4bfb8d0db 1 Other Other +7d4de538-4c69-42c7-8b35-7e6f101d0562 1 Other Other +7d4de86d-0a8f-4ec5-94a6-784b90ee1ed6 1 Other Other +7d4e5dfe-67e6-4cf9-b509-674dc01a5d58 1 Other Other +7d4e6ddb-daf5-4399-adb3-f1fa12ff7d52 1 Other Other +7d4ef7d5-0d4f-4ced-befe-91a73c523468 1 Other Other +7d4efbeb-ff88-402b-a33d-004e12ba3f0e 1 Other Other +7d4f5741-2c58-491a-bcb0-216025df1e23 1 Other Other +7d4f8836-4f55-4950-8e04-e0c516956de9 1 \N Other +7d500d51-23e4-44e8-982d-7cf597381113 1 Other Other +7d503f60-75f7-4f6a-a305-adf024990fc0 1 Other Other +7d50521e-9aa2-4733-b4f9-c162354610ae 1 Other Other +7d50997b-2615-4603-8a28-d6c18e6f1dde 1 Other Other +7d50a965-44ad-4be4-bc80-052f211a9ceb 1 Other Other +7d50b17f-dfd3-494a-a0d8-dcfaaaf6d7ea 1 Other Other +7d50e358-a68b-4869-b9a8-9d70ac440d2d 1 James Other +7d50ec4a-8086-40c0-8811-7509dc39a85c 1 Other Other +7d513005-56e2-4f6f-932f-50b1bb266a75 1 Other Other +7d518b6f-41fc-473e-8219-81fd8e21ba35 1 Other Other +7d51a491-d71d-41a4-9b9b-f7d05b3e1590 1 Other Other +7d51c999-8728-48e5-950b-6d6c8652e9d6 1 Other Other +7d51eeb4-8b3d-437b-aa08-df7baebaf34b 1 Other Other +7d520284-ed6f-4613-8917-b04988e8a851 1 Other Other +7d520ae2-ec40-46e5-a73e-2c10c55a6636 1 Other Other +7d520af3-37a2-4d45-a670-333abd3a4b6a 1 Other Other +7d522c1b-08db-47ae-a5d3-69c6b1af29a8 1 Other Other +7d5239d4-68c0-41fc-b416-143eec75ca3f 1 Other Other +7d52454a-a5d8-4b60-9f1c-a95be11caa7c 1 Other Other +7d527096-8aa5-4948-b65b-75167d2f27a2 1 \N Other +7d52a349-2ea9-4cd3-b557-bb44df59439d 1 Other Other +7d52aafd-e582-4159-9d49-781b36c30017 1 Other Other +7d52d0f0-b370-4dd6-9a27-065620d62599 1 Other Other +7d5305c8-e4de-4431-b58c-e8c57da48cc3 1 Other Other +7d535733-5207-438b-bedf-e9a2dd384482 1 Other Other +7d539c35-1ee7-4431-8508-4ddb2072038b 1 Other Other +7d53cd25-11d9-41ff-8133-7eda01c8316c 1 Other Other +7d54137c-6177-420e-9814-7f49cea64233 1 Other Other +7d541544-fe0c-44bc-abc8-a3d3ca9a0af9 1 Other Other +7d543204-6947-4326-be4b-3a49928a241c 1 Other Other +7d54faa6-6923-4372-a74f-1c9d0fb37566 1 Other Other +7d550658-a85f-4cf9-a436-bb8224318efb 1 Other Other +7d553942-0576-45b5-8b4d-a09811e8cd7d 1 Other Other +7d55540f-6c80-451b-afc5-25861c6c8a31 1 \N Other +7d559049-4466-45b0-8efc-ba98fa740a11 1 Other Other +7d55f8b5-3f16-4e58-ab0b-c0da64cf50e7 1 Other Other +7d56977e-02e5-4b69-9e8b-a85b2d09d293 1 Other Other +7d569d31-9806-43f6-8328-7d0581cc42aa 1 James Other +7d56f0c6-4d94-4daf-b068-520af938f772 1 \N Other +7d583e19-a577-4c16-beb6-054b0494267f 1 Other Other +7d58668e-8d06-4d1e-999d-6701096428a7 1 Other Other +7d587544-c4f7-4130-801c-3ea36c8a0ea7 1 Other Other +7d58b3a8-c21c-4e1f-9c6d-b92f8ec67fcd 1 Other Other +7d58b734-b437-4f41-9ba2-21de2c47edc3 1 Other Other +7d59082d-2afc-44b1-935e-87d6f29b52a9 1 Other Other +7d59135a-cb5a-400b-b7ac-a50b4d66ddb8 1 Other Other +7d594076-cc39-47a0-ab31-6dad978d3735 1 Other Other +7d596970-d850-4206-809f-57dcc08a2c02 1 Other Other +7d59d9ac-acb2-43d4-8c6c-01e41033a324 1 Other Other +7d5a2082-6264-47a0-8bc1-aaf3ff1e47ae 1 Other Other +7d5a233a-e462-459d-aa7c-e92842e7dd55 1 Other Other +7d5a6573-bc84-4650-a463-43b58839f981 1 Other Other +7d5a6b88-8dda-4b4f-b9a0-df91e83f7dc9 1 Other Other +7d5a82c8-3a98-4baf-994f-b736ca61d7dd 1 Other Other +7d5a9dd3-663b-40ad-93e8-a4e261ebf221 1 Other Other +7d5ab738-0be2-45e1-b543-0bcf8618a6a6 1 Other Other +7d5b15a9-2ac9-4e35-b83b-ae5889286d1b 1 Other Other +7d5b3400-cb2d-4a68-a491-2802b7e09ed4 1 Other Other +7d5b584f-b242-487f-90a8-4545ee0eb3f9 1 Other Other +7d5bf7bf-4c30-4dfc-a8d8-c2af33206fad 1 Other Other +7d5c33b6-0ccc-49b8-9e01-51fc46039c3c 1 Other Other +7d5c5836-df31-47eb-8f7d-f0ac4b92a1e3 1 Other Other +7d5c5f9c-75ab-4e14-94dc-0d977c1b40b8 1 Other Other +7d5c9eec-92af-46ae-ad1c-2a4dac3af564 1 Other Other +7d5cd78b-355c-4aeb-81cd-c21d22737d49 1 \N Other +7d5d4209-a4ff-454f-a7e4-78318086638b 1 Other Other +7d5d8922-21ad-4894-aa6c-cb18e9b4d952 1 Other Other +7d5e19b8-cb97-486a-8183-7318eedad545 1 Other Other +7d5e474d-9a3f-4aa8-a3c6-f1978d366ecc 1 Other Other +7d5e4886-1570-4419-9064-6b562f3662f4 1 Other Other +7d5e5fb9-763a-484d-864e-a8b74f33c203 1 Other Other +7d5e8d06-323d-4442-8e95-e27e5df698e1 1 Other Other +7d5ecaa9-86e5-4210-bee2-b385b3864e80 1 Other Other +7d5ed246-2c2b-429b-95c0-fa4b7054ca76 1 Other Other +7d5ee209-93cb-424c-9252-10fdb4a78682 1 Other Other +7d5ee28b-f889-42db-8bc0-af6e89aea866 1 Other Other +7d5efc79-6fe6-487f-a452-e9b04f80e7e1 1 Other Other +7d5f1740-659f-469a-8e13-09d84301f7d7 1 Other Other +7d5f2c09-76a8-431e-b507-4504acc96b8c 1 Other Other +7d5f4264-2c5b-4a9e-8e25-dc1cc8488c1d 1 Other Other +7d5f5d64-bc6e-41d6-b1b3-8e5f44d85771 1 Other Other +7d5f6d53-8498-4973-944e-8c34cd9b9785 1 Other Other +7d5f7a3e-3b40-4a1e-8868-7277565813a4 1 Other Other +7d5fb3ed-b4a4-49d0-bd61-86733d908ff0 1 Other Other +7d5fc6e7-0d82-4b8a-b32d-67faf07496b3 1 Other Other +7d5fd362-1295-4644-b58d-1a59d689621f 1 Other Other +7d60192f-cfa5-47a0-a364-1981a03078b1 1 Other Other +7d602ec8-c2f4-4f13-b2cf-e8bb2a66863c 1 Other Other +7d603ee8-35f8-4924-8f84-d2413fb4bd04 1 \N Other +7d60ad9a-9e6d-4d78-ac89-e7e058dad0c2 1 Other Other +7d60b7cc-b5f1-4298-b5b5-21d3b6c7356c 1 Other Other +7d60f8de-b5fa-46f8-bff6-9a0c84c7a46b 1 Other Other +7d610e58-37cc-422d-aedb-5b553235dfc9 1 Other Other +7d612d86-8973-4e92-97d6-4d2984760e32 1 Other Other +7d617cb9-d182-4b93-95e0-01d478055068 1 Other Other +7d617e51-6e6d-4fc2-999c-a90f9248240d 1 Other Other +7d61bf84-380d-4363-a826-9effaee041e1 1 Other Other +7d61f089-74f2-4afe-99e8-62578bb06c68 1 Other Other +7d6208ac-02e5-463f-9d09-30df11afd888 1 Other Other +7d62b18e-ba82-4098-8001-02ddce7ecb4d 1 Other Other +7d62b96f-2a56-48d6-bbd9-e2f10ce746d4 1 \N Other +7d630a6f-c2cd-4f08-9511-3e4f17f966d5 1 Other Other +7d633b0d-afdf-4b00-9997-02d33abc7680 1 Other Other +7d634bae-d186-47d6-b706-aeaf69ffec51 1 Other Other +7d635041-17aa-4f33-bb21-ab9763723b8f 1 Other Other +7d641514-62e5-44ff-969a-f137224e4430 1 Other Other +7d6438dc-92e7-4ef9-8eb9-8b06acb42ec4 1 Other Other +7d645165-d69d-475f-87b2-0ed361521f60 1 Other Other +7d645b6e-4198-4adc-bc62-2342132862e6 1 Other Other +7d64b943-f13d-45b4-9869-135dad8c25c9 1 Other Other +7d64bb17-0226-4e45-afa0-385eac4b69d3 1 Other Other +7d64d143-132f-4ede-b484-598d04eeed73 1 Other Other +7d64d62f-4998-4d57-b0b3-28397333b43f 1 Other Other +7d64da0f-890a-49a6-b7c6-763b626e3a44 1 Other Other +7d64e327-74d0-45de-bafa-c088e41aae6f 1 Other Other +7d6500c6-f46a-4922-aa51-a13a56d61b9b 1 Other Other +7d652111-d8a9-45ef-9ead-99ba633bbc8c 1 Other Other +7d652139-deda-4ea1-a3c8-f6d167ae8bfb 1 Other Other +7d65229b-9388-45bb-bb7c-850300de3ec0 1 Other Other +7d65e343-bc24-40c4-8538-b4ab182ea794 1 Other Other +7d65e4ed-445d-4984-b79c-31fef4b74f79 1 Other Other +7d65f38d-0091-434f-828c-a77613052584 1 Other Other +7d65f775-c822-49be-91cf-fd504f7ee3aa 1 Other Other +7d65ffa7-4c90-4cbb-a1c1-a667c9bb142c 1 Other Other +7d660930-69cd-4dd7-a668-c8eafbde69e1 1 Other Other +7d6625fb-609a-4033-a86d-256ae609db32 1 Other Other +7d666d31-1c9c-40d4-812d-1f42c3297fdd 1 Other Other +7d668ad5-5abe-4853-b53c-97533b39ee3e 1 Other Other +7d66dd73-0502-4335-959d-a21bff55b8ec 1 Other Other +7d66ed50-c5f2-4f49-ba4f-7787633a587a 1 Other Other +7d66f7eb-a518-42cb-888c-e8405bf6eb11 1 Other Other +7d67083e-3603-4ad4-b4cd-368ac7c2032a 1 Other Other +7d671b01-2658-4d70-a4f5-735ea46f1f88 1 Other Other +7d6722ab-d9f4-4026-bfce-780db3666383 1 Other Other +7d674705-168c-42a8-b861-6b68151c19bc 1 \N Other +7d6781f7-a2e5-4ee4-b6fe-19dabac3d0e8 1 Other Other +7d6792d8-9319-40e6-839b-2953975bb89e 1 Other Other +7d67c673-c53b-482c-af8d-376c3b59cb57 1 Other Other +7d680a7a-d04d-409a-b820-44b353ae52f3 1 Other Other +7d683ae9-0701-407f-94ea-87a576fe3d49 1 Other Other +7d68445b-61fa-4b7e-aca4-62a009bd9c71 1 Other Other +7d68662c-99fa-11e7-b994-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +7d68cc07-7a33-48da-867f-a0478e05d787 1 Other Other +7d68ccec-bd39-4094-943f-e2235b15e5c3 1 Other Other +7d690a87-55ec-4af0-8c11-84146c8d1640 1 Other Other +7d6945cd-e160-41aa-a7dd-5922e153c896 1 Other Other +7d6968b6-fd58-4bb6-8b5a-383e575a4ef1 1 Other Other +7d698c83-d2f2-4197-a997-8e01bcdf118b 1 Other Other +7d69e0b4-74f4-4578-af00-245e01ae15d3 1 Other Other +7d69f1dd-2d0d-41b6-b2ff-e5d790f2c4a1 1 Other Other +7d6a4cb0-80ee-4758-b181-fd435cc3dc90 1 \N Other +7d6a9add-83d6-469c-ae27-6f8c33384cc2 1 Other Other +7d6ac482-2832-4888-8a4b-97bdcbc692bf 1 Other Other +7d6ad390-3699-4d13-8880-a6eddb2dbc99 1 Other Other +7d6b5b47-05b8-45d3-a5df-787f14ff64cf 1 \N Other +7d6b7107-8d22-47d8-a269-daa79f6af785 1 Other Other +7d6ba465-105d-444d-9c4c-9e74e4e062fe 1 Other Other +7d6baf0b-5e28-4918-878a-0e44d67a9b1e 1 Other Other +7d6bc3e2-3ed8-4b7d-beb5-4fb104e41d7a 1 Other Other +7d6bd744-9978-479e-8e2b-0b85296d6a79 1 Other Other +7d6bf311-1987-49b3-b131-7fd9ca1d6e4a 1 Other Other +7d6bf566-f437-4b30-acc0-32e1fe97073e 1 Other Other +7d6c472c-181f-4b21-a69a-6d822d5fcbe1 1 Other Other +7d6c4bbb-0d5f-420c-a747-5ff028b81f45 1 Other Other +7d6c950b-6603-4830-a8a8-c3dabcacb7d0 1 Other Other +7d6d1577-daa7-4d32-a36f-f5a3af2c5d62 1 Other Other +7d6d193b-4840-4fe9-926c-1b4d8bdc5a8f 1 Other Other +7d6d4c28-a708-4586-8aa0-d1a73544adb3 1 Other Other +7d6d86a9-10c1-49ed-a4e4-48300034b982 1 Other Other +7d6da2f2-ff29-453e-979c-c5abb4dbfec5 1 Other Other +7d6dbed2-5418-4463-b7d6-4685f915592e 1 Other Other +7d6dc777-ae3d-47fa-b68d-e94e6e26b222 1 Other Other +7d6dd2d1-87fc-4543-bae6-124b72680f6a 1 Other Other +7d6dd87d-ec7f-49d8-b5fd-494d20ac8c1f 1 Other Other +7d6de8bd-4ac3-4807-acd8-35b0126b0ee6 1 Other Other +7d6dfbde-fd9a-4956-81cb-35e87c4e5ff9 1 Other Other +7d6e258a-4ac1-432d-beca-4710e072ba76 1 Other Other +7d6e42e0-dfe2-44b4-beb9-5c2c54b89af3 1 Other Other +7d6e6e65-8c28-4806-bd91-2c1442564678 1 Other Other +7d6e87bc-30a5-45f5-92d2-2c949bb1e6b9 1 Other Other +7d6f38ec-7236-419a-bd56-37b31237ae10 1 Other Other +7d6f782d-c716-404c-b9a4-4163c03f051f 1 Other Other +7d6f8c97-cd13-470f-8bc2-3eb5b8a75f48 1 Other Other +7d70062f-b937-4a7b-8a95-e41e6839a479 1 Other Other +7d704a64-e3c4-4878-aadb-5ee100a3489f 1 Other Other +7d707141-0ced-4068-87d1-54699ca33422 1 Other Other +7d7076b2-9e79-433a-bdb6-c3f96673cd8b 1 Other Other +7d70878e-1805-4fde-9df0-6e88ec1abfd6 1 Other Other +7d7087e2-4ee6-44cb-90ae-d5e02bf19d7b 1 Other Other +7d70afe9-36bc-403b-a21b-da16e8e09d0b 1 Other Other +7d70f95a-f671-4702-8443-dd642ee5d0c0 1 Other Other +7d710f09-8173-4adb-811a-58ef2c520897 1 Other Other +7d7117c4-866e-48f3-82bc-d6ab5c1270b5 1 Other Other +7d71e94a-a4d8-4c71-b6c4-1d1bab9fa0bc 1 Other Other +7d726732-be7a-4c7d-b33f-b59302ae524b 1 Other Other +7d7275dc-97d8-4d56-9115-9512b2e09567 1 Other Other +7d73089e-4589-4fbe-b039-2e5f66341e49 1 Other Other +7d730911-7019-40b6-bd33-ea2e5cbe4ec9 1 Other Other +7d7345a8-14f1-4f8f-a889-5fd305c5a1b8 1 Other Other +7d73599c-8aad-4524-a9b9-cbc14a48f68d 1 Other Other +7d737e42-886d-4306-a373-639c52348a38 1 Other Other +7d73cb1d-33f0-4c44-a178-abcf0f851c81 1 Other Other +7d741814-9928-11e7-9712-fa163e8624cc 1 Other Other +7d742295-60f2-4f2a-8dab-e77ff03339dd 1 Other Other +7d743522-7226-40d7-aa2b-0e113f7a81c7 1 Other Other +7d7477b2-b40c-4ff6-98e6-0489e88dcfb7 1 Other Other +7d74ee31-e95e-493b-ab2c-d0ca671408ac 1 Other Other +7d750353-37b8-445b-a947-89d529868647 1 Other Other +7d752ad3-9f1a-48d3-a245-f64011b8c4fb 1 Other Other +7d754c9e-9bcb-4737-a5b2-6913d2c45e92 1 Other Other +7d7563c8-6b7b-43f0-b943-d245eaae83e3 1 Other Other +7d75c069-069b-4bb7-a046-90ed1d56917e 1 \N Other +7d762126-1652-4e13-a162-9b8581d4d45f 1 \N Other +7d7697f0-8e3e-471e-8e75-ac0a6b7bdc03 1 Other Other +7d76f01e-d88e-4624-b0db-e42d7e4c0b20 1 Other Other +7d76fbe9-c055-47d5-a1c3-085b0b7f2f25 1 Other Other +7d772cac-334f-44dd-948c-670a4d9151f6 1 Other Other +7d7740c3-b34f-4234-96ad-2c142bd867e2 1 Other Other +7d777295-5640-41a5-8176-06cd97c68bc0 1 Other Other +7d77f2be-b2c7-4bcd-b3fd-1947aefd535c 1 Other Other +7d781a20-326b-44c3-8038-17b3157629c3 1 Other Other +7d78bf0e-8dcd-48ae-988b-e3ed6ecb5e08 1 Other Other +7d7931f6-b651-46c4-a99a-13f210dd0dd3 1 Other Other +7d79b416-2f76-4ae4-a1ad-cdd2614e27a4 1 Other Other +7d7a2a0f-3ee3-45b8-85c1-c853836f55b1 1 Other Other +7d7a9313-a571-4028-b5b4-3e94aed777b1 1 Other Other +7d7a9e4e-51c8-49c5-b112-fc49812ef72a 1 Other Other +7d7adc4c-fde8-443f-9847-1d9c9c46a78b 1 James Other +7d7ae576-fba3-4439-b3b8-855a641143ae 1 Other Other +7d7b8a47-2b2f-4fcb-aa77-e144640d9eec 1 Other Other +7d7bd38e-5447-4e0d-bb25-db98e97a6d07 1 Other Other +7d7bf2a7-b9cf-407e-9cd3-48d7d4595c1c 1 Other Other +7d7c0672-b350-11e7-a5e6-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +7d7c6295-dbe0-49e2-84a7-b08aa670a7f1 1 Other Other +7d7c932b-ec38-4f3a-89b5-709fd146c3a8 1 Other Other +7d7c9ce9-748e-432a-a4bf-20455cbdc07e 1 Other Other +7d7cf354-f5fd-4c4c-ba7e-04ffdfe57dfa 1 Other Other +7d7d059e-ef9d-4d8b-aebc-881adb3329c9 1 Other Other +7d7d0df7-bcf4-4e48-8c4a-fbb7caf30e8f 1 Other Other +7d7d3fbb-8ad2-45d3-9a70-48846fedf036 1 Other Other +7d7d7313-750b-407e-bbea-8347c367bb70 1 Other Other +7d7dc833-1003-45f9-ad39-4ee2c32ad4e7 1 Other Other +7d7e1290-1aaf-4806-9f90-66587d8c3fb8 1 Other Other +7d7ff5bb-7455-4ee3-b9eb-e00ca9586c65 1 Other Other +7d7ff7a7-1efa-432a-bc87-e61d80892779 1 Other Other +7d80a4c7-f537-439f-af3a-05b53b59debd 1 Other Other +7d80b001-46c1-4d0f-8ca3-51d2fd9b983a 1 Other Other +7d80bee4-6f46-4426-bbc5-b4466a9b804a 1 Other Other +7d80e42d-fb85-4864-8801-61e899d7bbb5 1 Other Other +7d8124a9-0968-40c0-81f5-f840d7a801e9 1 Other Other +7d815ecb-201d-41f8-bde7-9f11e89efed4 1 Other Other +7d816163-0cb3-4892-bb52-90702330b6ea 1 Other Other +7d818229-2add-470c-9aca-8716c28c6c77 1 Other Other +7d823d34-b006-4aab-90f5-ad2b0479b7f7 1 Other Other +7d82478e-ef0f-4d47-8bbf-9b029a49e507 1 Other Other +7d824925-4b27-4e52-949c-c65da47280dc 1 Other Other +7d824ede-568d-4e95-adbd-7cd25b0356f4 1 Other Other +7d82976d-799a-42cf-82f9-47f0421c8597 1 Other Other +7d82cbb1-35e9-43b6-8055-81533a46a49f 1 Other Other +7d82f6b0-6e46-4f5f-9e6b-a5ea638b052d 1 Other Other +7d8352cf-9dce-4d68-a91c-98a96dfe1cc4 1 Other Other +7d83da06-b403-4ae5-bb84-0f2f64791051 1 Other Other +7d83e321-3755-4d6d-a2b3-c6ac589a73e0 1 Other Other +7d83e791-23d4-4726-a483-8009ef5430eb 1 Other Other +7d84039b-4313-41ce-92e3-4bf81f60e599 1 James Other +7d848005-cefb-4200-adca-c56271c02c37 1 Other Other +7d848bdd-b80b-49c0-b644-9300d0205999 1 Other Other +7d84fbaf-a679-406c-9203-1648d87a1efa 1 James Other +7d85b07b-b970-49bb-8858-c569f62627e6 1 Other Other +7d85de8e-b775-4b14-8d28-2d8caa082a70 1 Other Other +7d85e399-2bfc-4860-b488-638b7ec4f5a5 1 Other Other +7d8618db-a14c-41e6-9a14-98f95b8f8f3c 1 Other Other +7d8647bb-34f8-49d5-91bd-3ba842a7c9ce 1 Other Other +7d864c29-fd6d-4bcb-9d0b-065cb07997d9 1 Other Other +7d866313-3929-449b-b584-7015349d2d33 1 Other Other +7d86690c-4235-4ea4-8ddc-84c98181f4bb 1 Other Other +7d86d0d3-bfcb-4090-8ba7-93b8408d2969 1 Other Other +7d871044-be68-4ea3-89dc-b0c8bb548191 1 Other Other +7d8722ff-8050-41ba-8cfb-ce1966629b8c 1 Other Other +7d877263-d886-4ae6-bc96-ddd05f4018f4 1 Other Other +7d87f3ad-8037-48c2-9f8b-b03875763d4d 1 Other Other +7d88bdb1-d807-4b06-834e-eb59385622dd 1 Other Other +7d8906b2-12c2-43ee-8bed-b585ad09d755 1 Other Other +7d890eaf-7b14-44cd-9d25-65f57bfa2737 1 Other Other +7d892728-a3f9-41c5-b415-91ec5e87eb9f 1 Other Other +7d894f38-060d-46a8-b51c-60ca99da029f 1 Other Other +7d895b9b-4212-4748-a6b0-b716c2ee2709 1 Other Other +7d8982c5-426f-4455-bcbb-ae944bc928b4 1 Other Other +7d89900c-2e02-49cf-90d9-15e287227964 1 Other Other +7d89a865-6e23-4daf-83c3-ecc5e0b33007 1 Other Other +7d89dd1b-8c2a-4931-b669-c807462079bb 1 Other Other +7d8a0756-ec51-4669-8616-1f5a74bb1760 1 Other Other +7d8a6a7d-4b38-4241-ab81-2724f4533317 1 Other Other +7d8a87e2-955e-470a-bdd1-43fc42e8635e 1 Other Other +7d8ab7d8-0b31-4802-b6d0-28303b733ab4 1 Other Other +7d8ac17f-936b-43e1-a2e5-0b1f14563f2b 1 James Other +7d8ae7df-3d1c-4f27-8f8e-6af87d50797e 1 Other Other +7d8b30a1-6b40-4fa8-be2a-8689ec845055 1 Other Other +7d8b3d3d-a6a1-45ca-ad7c-8116a0e8efc0 1 Other Other +7d8b6460-399f-4fc3-9f27-7066cabfdf83 1 Other Other +7d8b8b98-55a3-4a4b-87a3-38d91547322b 1 Other Other +7d8c0127-1516-4f2b-9dbf-5cb9d91c0177 1 Other Other +7d8c0180-dd85-4a8d-9cae-2fea177f1db8 1 Other Other +7d8c0944-0747-4cae-a318-f7996877e71b 1 Other Other +7d8c47a5-72d9-4e4b-a237-f6901830fbb9 1 Other Other +7d8c5501-72e2-450d-ae78-734a4fb5509a 1 Other Other +7d8caa15-a867-44d1-b3ea-9470df0d7ed9 1 Other Other +7d8cc3cd-1d93-468e-9419-a0a82b5becd4 1 Other Other +7d8d07ce-f4d1-46f0-9ae4-14701d71ab41 1 Other Other +7d8d7d65-44f0-40c4-9512-82852180a23e 1 Other Other +7d8db871-c829-4aa8-9aca-35c68b908dd2 1 Other Other +7d8dca26-72ce-4b38-aa1d-d034a21eb1e8 1 Other Other +7d8de066-cbdf-4ead-b2b7-e996ac19abf6 1 Other Other +7d8ec474-d39c-4476-ad37-e95f70e4544a 1 Other Other +7d8ed5c3-ea3f-40d2-8d36-61aac23969c7 1 Other Other +7d8f3843-b7ff-44d6-9339-e74f29f1f521 1 \N Other +7d8f3aa4-ff7a-415a-9051-ca9da05dc2e5 1 Other Other +7d8fa86d-d6da-4c3d-ba64-6586ecee7f22 1 Other Other +7d8fd153-e6ad-4fba-8295-a7ae03c30aa3 1 Other Other +7d8fdc30-da45-4897-867a-3d6544a89fd1 1 Other Other +7d8ff24d-4d03-4147-bd29-a8cfac5566c0 1 Other Other +7d8ffc9d-2141-484c-a5a9-6c0c4763729e 1 Other Other +7d901852-b3fb-475f-9c85-045f50d8aa35 1 Other Other +7d902aaf-2d93-4afe-bd8e-ee1a3824a4a4 1 Other Other +7d904958-9c25-48a5-bc3f-89fc796d4b4c 1 Other Other +7d91b152-9b34-4b57-8962-1d8be93aef76 1 Other Other +7d920440-2c6c-4eff-b846-b4da40910928 1 Other Other +7d9248d3-b7c9-4a8a-b0ea-3830e5824b1a 1 Other Other +7d92c1ea-40b1-489f-954e-860dab86d614 1 Other Other +7d92cb6e-c557-499c-8180-fbf677cd6d5a 1 Other Other +7d92e383-ebf4-4c44-8b9b-c4e23ddcef5b 1 Other Other +7d930d94-16d7-4218-bf4d-d0747923540b 1 Other Other +7d9310dd-e857-4163-b26c-f0d22155a04b 1 Other Other +7d9349be-6939-427a-86b9-a676494bd53c 1 Other Other +7d937fa7-30ca-4a61-9b7d-33036a1e5039 1 Other Other +7d93a027-cb3d-44eb-8bce-4c80e1c9736c 1 Other Other +7d93a9ba-c7e7-4c86-87b8-398aa10c543d 1 Other Other +7d93aeae-7714-4305-a4d5-cdd563fab0ca 1 Other Other +7d93d279-5333-491e-abaf-c76a232b2aa0 1 Other Other +7d93f20b-bae5-4468-8b82-1d85c31fc1b1 1 Other Other +7d942c02-0a9b-4e16-bf9e-9b7be9d908b3 1 Other Other +7d943721-523e-4b48-a0d9-15e7f58131ab 1 Other Other +7d948f5c-b9a2-460f-b4c9-0f050a3eda71 1 Other Other +7d94a10f-4da5-4a6d-9d5a-d68a94562a1e 1 Other Other +7d953464-654c-45b7-a475-bf81c30fd344 1 Other Other +7d953fdc-c77b-43be-9e4f-4df239b921d8 1 Other Other +7d957904-5a54-4b19-917f-c272089b0517 1 Other Other +7d95f252-0db8-44b1-b909-acfece979e42 1 Other Other +7d95fd52-8c8a-484f-9f9d-de7500a242d8 1 Other Other +7d9609e5-e627-48e5-83c2-4d3037329e8a 1 Other Other +7d960b6e-10b9-412f-906d-49444a8a9814 1 Other Other +7d96489a-8cb4-409b-b82b-2ff65fa18084 1 Other Other +7d964ade-42fb-4175-87da-4c7f410b9072 1 Other Other +7d968ca9-4f4d-4a4d-9bfd-8c1e50e3a56c 1 \N Other +7d96c5a3-1030-47e2-bd4e-377384b843ce 1 Other Other +7d971da5-b675-4ce1-87a3-0d640badabfe 1 Other Other +7d975834-e942-4023-95d7-834be2aec08d 1 Other Other +7d978f4d-3421-4268-b3f1-fa6b50d049cc 1 Other Other +7d97b84a-ac0e-4734-9462-12f29ceb01a5 1 Other Other +7d97ba85-a86f-4a9e-bd6a-8afac86bdc71 1 Other Other +7d97cb3c-8a6c-48bc-bd9d-1f30b0963f92 1 Other Other +7d97cb8c-598c-427a-9185-87d6919219fb 1 Other Other +7d9800f7-c9aa-4a6b-8fb9-f8a52ea39078 1 Other Other +7d981031-c637-4f5c-ae56-07c8a52b7315 1 Other Other +7d981285-aa9e-4aaf-acfc-7ecb78ab28c3 1 Other Other +7d982324-7ae9-4140-af30-0d151c8e1a15 1 Other Other +7d982c21-868d-404e-86a5-ef79f64cd79c 1 Other Other +7d9838af-3154-40f5-9589-dbcabb4a5edd 1 Other Other +7d986b21-b025-47ad-9cbc-32bd7428943b 1 \N Other +7d989931-825c-49bd-8a98-3672272e938c 1 Other Other +7d98a97b-cbf5-4195-a1d0-43a58a1bd10c 1 Other Other +7d98ae85-f79f-4ad0-b5b7-51ed68d354d5 1 Other Other +7d98c05c-c5e7-491a-a207-2a3c155334f3 1 Other Other +7d99069e-065f-4e04-9ebc-0755ccf2774f 1 Other Other +7d991534-0f22-47ca-85c1-6a5fa29614bd 1 Other Other +7d9943d3-d783-48f0-8098-4f468914025d 1 Other Other +7d999e64-140e-469b-b0db-794d73824510 1 Other Other +7d99bba2-fe59-447e-9b31-071ec3f81f30 1 Other Other +7d99db34-86e6-40d9-ba69-c1b535706b3e 1 Other Other +7d99f264-07e6-4c28-96d5-bb42e0fb8164 1 Other Other +7d9a5f2b-bb94-45dd-ace4-d26163aed86c 1 Other Other +7d9a7262-1b66-4949-a254-c80b19c89887 1 Other Other +7d9a849a-f9e7-4b07-97b7-4289252a1e99 1 Other Other +7d9aae53-b352-4379-b706-c2f1be487ed1 1 Other Other +7d9ab2ec-3851-4f9a-93f2-f05771efb354 1 Other Other +7d9acb0d-9fd6-444e-9126-1483c84ba3ee 1 Other Other +7d9af680-1024-439c-afc2-b7b0e1dff992 1 Other Other +7d9b52ff-c346-4647-b547-e9c27ed0f431 1 Other Other +7d9b80e3-c8d9-4813-b0d9-ca3f16a82c45 1 Other Other +7d9b98dc-6373-4097-9a52-227a8242a8f1 1 Other Other +7d9bb55f-0b93-432d-b6a1-c498a187dfa5 1 Other Other +7d9c82a2-ea83-4bd3-8f53-b1dbd4d64d96 1 Other Other +7d9c94b0-0e9a-459c-8538-971e4c45276f 1 Other Other +7d9c9647-1f3e-4819-af94-a6a817bfa919 1 Other Other +7d9c9835-a3a5-4dbe-b9a2-324f7078176e 1 \N Other +7d9ceaa3-3cb1-4fb1-a551-3f8bd93001a4 1 Other Other +7d9d0c65-e210-4c69-bcd7-e15fb9d6e57f 1 Other Other +7d9d1fb4-dfea-44aa-b0e0-b8b6d80baaec 1 Other Other +7d9d8af5-24db-4e83-b5d5-cdd939c52fa3 1 Other Other +7d9da9f2-9516-430e-873d-e024b7589db5 1 Other Other +7d9dab02-c4ca-4ca8-8276-4d158499e5b6 1 Other Other +7d9deed0-6ee3-4189-b5dd-4a8bcd642cb5 1 Other Other +7d9df48a-df15-4968-9527-f5ce3cb44210 1 Other Other +7d9e149a-1dcc-436a-acaa-b0a28a7d70f4 1 Other Other +7d9e4ce1-63ef-4d58-b26b-dad00e7b22db 1 Other Other +7d9e74ec-539d-4326-8956-9778066adaaf 1 Other Other +7d9ec066-fc2d-488d-8e44-02545beff48f 1 Other Other +7d9ecb6d-85e5-419c-8ff7-968196cd45b5 1 Other Other +7d9edaa1-9891-447f-86d5-3558650f0f87 1 Other Other +7d9f1feb-6995-4beb-af7d-a061bebb5d9f 1 Other Other +7d9f3660-3051-4917-8c69-6063e31335bc 1 Other Other +7d9f422c-839a-44db-9d3e-d89d05d5b56d 1 Other Other +7d9f4355-5359-44cc-a5ac-b706db23941a 1 Other Other +7d9fce6a-5fbe-4872-a66d-d185c613fb3d 1 Other Other +7d9fd1eb-c1ae-4f48-89c1-f38a43b54947 1 Other Other +7d9fe68b-a8f6-4f54-b6ad-2c1389773f6f 1 Other Other +7da00e79-b9eb-41ac-95b6-ca100873d94a 1 \N Other +7da046e8-e4c7-4a38-98df-ef58310a1529 1 Other Other +7da071d2-6f59-4d4f-9231-a4e7289fd62a 1 Other Other +7da0a986-db1d-439e-a61b-09bf74930588 1 James Other +7da0c69a-f727-45f9-b488-ee43783366d5 1 Other Other +7da0de30-5864-425b-b5d5-36b6928e7580 1 Other Other +7da0e1e7-edcf-46fb-a02b-ea36d11414d7 1 Other Other +7da0f42f-fcd6-41fc-89a7-61ade4e6e3d8 1 Other Other +7da18a57-527f-472b-ac7c-ad2e18365989 1 Other Other +7da19512-5ebe-42fa-9afa-02934088c216 1 Other Other +7da1bda7-f4fc-4e2c-8eb7-908dcc85d4fa 1 Other Other +7da1ca47-32bf-4edf-880b-430c2638712a 1 Other Other +7da1cb92-def4-4e25-ae69-fd4d8fac3667 1 Other Other +7da22fab-bf17-4030-81c2-1c69459f29e0 1 Other Other +7da3229e-d34c-4599-bb98-0885eef0ae4b 1 Other Other +7da34183-d6b7-4dc1-baa8-0f5a9c3fd5c4 1 \N Other +7da34767-f7e2-4c0b-bbae-7fcb0a7deaa1 1 \N Other +7da3541d-5595-4c97-a381-cd3bd08ee768 1 \N Other +7da39ff9-4690-48cf-9e53-9f3ee3cc6c21 1 Other Other +7da3b39f-ccde-4176-8076-85f9e2e3ad49 1 Other Other +7da3c79d-3876-486f-b4cb-a92e3780e409 1 Other Other +7da3e1f8-008c-4d84-9141-e4ec8cb5c215 1 Other Other +7da3fbc9-cb50-489e-a6cd-859c50bdd3ac 1 Other Other +7da4533f-4003-46d5-9fe7-432364e55c08 1 Other Other +7da45f2a-8da9-42a4-a2bf-9f845f1e313a 1 Other Other +7da49863-79ab-4d57-aac4-5d50533dbe71 1 Other Other +7da4c834-79c6-4c84-b1b7-4623008298fe 1 Other Other +7da4ebf5-d51e-4178-b6b2-a93aaaab8d67 1 Other Other +7da50743-447e-4b9f-b211-4e92f51990e2 1 Other Other +7da53be0-b1be-4c6e-b028-cab0c088050d 1 Other Other +7da5524e-f438-477d-9c77-d72093ba928c 1 Other Other +7da5e01e-284c-4eaf-ba18-5a07aa94e123 1 Other Other +7da5e026-bdf3-4700-9b3b-083b82b2e25f 1 \N Other +7da5f605-bf85-4c5b-a233-a445353b345f 1 Other Other +7da62d8d-42b7-4bc7-a132-e84da700d03e 1 Other Other +7da637a5-10fc-4156-9d10-9460b6c36a39 1 Other Other +7da65b10-da60-4fd7-88aa-5fec94fb6401 1 Other Other +7da67068-ebe4-4411-92d9-7f386ec02d5b 1 Other Other +7da6a14b-752d-4d26-881b-88ff8f57bb01 1 Other Other +7da6b392-32c1-443e-9a2b-7b154bda6c91 1 Other Other +7da6c508-a63e-46e6-a1fc-43f136b484f7 1 Other Other +7da6c953-800a-44ce-b60b-36c372296a35 1 Other Other +7da701d7-ad8a-4211-bf73-bc3690e8ff43 1 Other Other +7da710de-3589-4513-8ecd-67b76ceef4bc 1 Other Other +7da73f78-116c-45cc-aad7-db618a534a6e 1 Other Other +7da74fb4-6c3d-40f6-b3df-04cea888dff3 1 Other Other +7da76b0b-dcb7-4e3b-8b85-532cc85ab468 1 Other Other +7da7af18-ed3b-4b62-a325-3da6fe2b5e3d 1 Other Other +7da85c6b-4f6b-46a6-b635-22433a7f2446 1 Other Other +7da89b4c-6a9b-40e9-862b-6a861889d163 1 Other Other +7da8b7c8-4f5b-45ba-9997-a3b0b53ad180 1 Other Other +7da8e6dd-a4f3-447e-9b77-07ba2264e591 1 Other Other +7da94925-e053-4595-a4df-710cab55a28e 1 Other Other +7da975f9-8211-467b-8dca-4846bf409a98 1 Other Other +7da979a2-9256-4d48-addf-0bfbeda356b0 1 Other Other +7da9c12a-6bd5-40cc-91af-69884fbb3e4d 1 Other Other +7daa7558-0bf5-4812-bc7c-8e1d86ecee3d 1 Other Other +7daa779d-fc23-441f-9fed-843ecba3f381 1 Other Other +7daa9119-131f-4404-aeac-eb14ac2cc16b 1 James Other +7daa9c3e-70f3-43b6-b032-3a7e0ae31e1e 1 Other Other +7dab625d-af4f-4d31-b4a2-67b6f46aad81 1 Other Other +7dab8c9f-3263-4d71-9a16-eec3432caea2 1 James Other +7dabc6ff-8ad5-4601-9b1e-8272122d5fd6 1 Other Other +7dabcf6f-ad5b-41f7-8334-f22333707c85 1 Other Other +7dabdfd9-048d-4341-bed3-021bf9b90944 1 Other Other +7dac35b4-2016-4d39-b277-c0c9088d1611 1 Other Other +7dac4906-3b7d-4810-94a6-6e105c1b941a 1 Other Other +7dac61bf-b2ac-4df4-b10a-755062699607 1 Other Other +7dacb797-09c0-40b9-b085-d7adbe6d0f6b 1 Other Other +7dacf06f-5abd-489b-81cd-e6a8353a791c 1 Other Other +7dacf30d-e955-4aab-a860-6a8c5ebcacf3 1 Other Other +7dad33a7-abde-4963-bdb9-5bd8e9f8b5b7 1 Other Other +7dad4f73-8a72-42de-8903-c98be0d9a25d 1 Other Other +7dad86f2-932b-4b24-8f23-e58d893f19d8 1 Other Other +7dada715-0d6f-4264-9cb9-9e8577cf7376 1 Other Other +7dae768b-ce9d-43c6-8f70-67d798ac94cb 1 Other Other +7daea775-90de-4fd2-af9a-5e2ec4fc2b12 1 Other Other +7daeb802-49f2-4c7a-8e2c-f1cf16736eee 1 Other Other +7daec758-d28b-49d6-a2dc-0148eff8e41b 1 Other Other +7daefed9-a082-4169-a444-99dc36743c20 1 Other Other +7daf247c-2511-484e-befd-1fe9787d7033 1 Other Other +7daf54fc-c309-4384-9096-a70965228360 1 Other Other +7daf8c59-6b0f-4533-a1c0-fb28ea42fcaf 1 Other Other +7dafa77f-d9f9-476f-a846-37e28c48cdbc 1 Other Other +7dafb924-c9ff-4fb5-835c-0aab655a059c 1 Other Other +7dafba62-8772-444b-9133-ee281d74c70a 1 Other Other +7dafbcdd-957f-45aa-8504-d481d33bc4ff 1 Other Other +7dafd28d-20f6-4629-b2bf-1c0c2a692170 1 Other Other +7daffe21-8d3f-4319-aaf9-c2df2fa6ac4c 1 Other Other +7daffe44-3db4-454d-b503-9b78f2f969bd 1 Other Other +7db0665b-614e-4533-845c-481893bdaecf 1 Other Other +7db0a85d-47c7-4aaa-8f02-eabe93f71be1 1 Other Other +7db0c596-8b8a-4199-88b4-9d966a2e601b 1 Other Other +7db0df6d-a302-4f02-838f-25c0f3e1ff97 1 Other Other +7db0dfee-4754-4bdd-90e1-d48eb3658b3a 1 Other Other +7db0e491-8278-4afd-90f6-73a87541c1cf 1 Other Other +7db0e89e-3fe4-4af3-8de2-bf8abd0f6408 1 Other Other +7db0fdb9-6c42-40e2-958b-8bed8b45ae7f 1 Other Other +7db10f59-84a3-4a51-81af-86099f7faa71 1 Other Other +7db11308-a973-43d6-9f59-624a272d45e1 1 Other Other +7db1273a-893b-4dd3-a930-8351f6c2e366 1 Other Other +7db1557f-c250-4d62-ab50-ba916a0b9636 1 Other Other +7db1784e-f914-432c-a44b-b21122b52e94 1 Other Other +7db17917-c9dc-4f8f-a785-0cc4e616842d 1 Other Other +7db17e5f-e2d8-4f8f-806c-65c2f5f8430f 1 Other Other +7db19aad-2d7f-4fc4-8a14-b7b129fe7307 1 Other Other +7db1b949-13f7-47b4-bc23-8ba058774005 1 \N Other +7db2010b-9df2-43c9-8ee7-5ab96130fe8a 1 Other Other +7db264a6-fc93-44b8-8788-1ff3c988d9d3 1 Other Other +7db26619-7d53-41d7-99c9-5355a1ef1890 1 Other Other +7db2bc46-3e98-4323-877c-775f9c22f3a3 1 Other Other +7db2ff2d-7904-4f2e-9eb0-ab393a0ddcef 1 Other Other +7db33666-8f10-4fbc-817a-152340a92904 1 Other Other +7db33ece-1566-4233-99f7-65253c17ac32 1 Other Other +7db35568-ab03-49c2-af74-e0544f01e695 1 Other Other +7db35612-358f-4a40-87c8-f15a2ed695d4 1 Other Other +7db360f0-c825-44d5-a6be-f2fe97b169da 1 Other Other +7db368b5-713e-4992-a0ef-44a4891e4ae3 1 \N Other +7db3ba2f-1356-4bb5-9caa-b0d8da052e38 1 Other Other +7db3bc9a-28fe-497f-ad73-e572f6c055c4 1 Other Other +7db4147c-1e36-4fc7-a82b-acd42ac8b8ba 1 Other Other +7db41efb-c48f-4cbb-8ede-dbe34b5a7569 1 Other Other +7db451a2-4d77-4057-ad76-05f28427fb52 1 Other Other +7db492df-6bda-4972-8420-435b2a5cac56 1 Other Other +7db4a659-d6fc-4a69-9949-a3f8bf604e72 1 Other Other +7db5a189-3839-43bd-a7b0-b03a8fac5d79 1 Other Other +7db5dc16-63ab-4e7e-907e-e38d44020bde 1 Other Other +7db609ba-0032-11e8-869b-fa163e8624cc 1 Other Other +7db65e8b-7932-42b9-9702-d16fb53b6ce4 1 Other Other +7db669d7-a851-4102-98f6-b4834c572348 1 Other Other +7db70530-5e66-4478-9609-b66206da35e9 1 Other Other +7db7369b-d114-4632-9c24-053281be7940 1 Other Other +7db7547a-4add-44ef-8bf4-6e7d11e5d4d6 1 Other Other +7db7632e-96b3-4474-9778-ccb1f72bea88 1 Other Other +7db77aac-a5b1-4396-9ecd-71e8f6d00fe1 1 Other Other +7db7a81b-45c4-4fbe-856b-13f9c6a70519 1 Other Other +7db81bb7-defa-4fbb-84ba-6e1f1c268bd5 1 Other Other +7db82ea6-f717-4cec-bb81-75bdba53ab6b 1 Other Other +7db8379c-6d7f-45c2-a4be-bde9a533cb85 1 Other Other +7db88d0b-f05f-4a9b-bd49-20ab44f40373 1 Other Other +7db8a252-2bb1-4520-816d-86b2c3d55061 1 Other Other +7db8ba14-7512-4efb-bd20-58b7d6538500 1 Other Other +7db8c8fa-68e7-4334-8988-ad50c36c66f8 1 Other Other +7db91975-500f-4a31-b801-19150e2c6042 1 Other Other +7db92894-3a90-41f3-b1ce-661808572ade 1 Other Other +7db94c26-287f-4834-a139-b4670b3daebe 1 Other Other +7db99174-e7be-47c3-ba1d-37d49ff30352 1 Other Other +7db9c68a-d632-4fcd-aaa8-0da4d68a49ce 1 Other Other +7db9cc7b-51d7-4270-a9de-9af294793b79 1 Other Other +7db9d57b-bd06-42f8-adf5-ad577dc335d8 1 Other Other +7db9e1e0-6764-44cc-994a-20f2ff95055e 1 Other Other +7db9ee14-f24c-4e58-9e5b-d6a542dfd769 1 Other Other +7dbb1142-7a7d-4406-9dce-2b976ebf52e3 1 Other Other +7dbb7fb9-5e38-4c03-9648-060202601944 1 Other Other +7dbbed49-6934-4d21-ae5a-a3413c983a59 1 Other Other +7dbc1682-005f-465e-a661-03dc5309454f 1 Other Other +7dbc3fc9-8b05-4c6e-a736-05720b9d48d0 1 Other Other +7dbc7197-c038-40c8-93c2-ee147dece3a1 1 Other Other +7dbc79b0-e70e-4e50-aee0-883535a4c9a9 1 Other Other +7dbc7b52-9092-471b-8f13-5131dc735390 1 Other Other +7dbce231-f22f-4ed4-a651-3bca79e55314 1 Other Other +7dbd2cac-941e-4410-8c21-9c203df55e3c 1 Other Other +7dbd7612-9695-4eab-8e5a-aecd703fd899 1 Other Other +7dbd79fc-85cb-4285-8a01-a1149119d86b 1 Other Other +7dbe2b0d-24fd-4a76-a120-03527e97ca70 1 Other Other +7dbe2bec-d0bd-467e-8b5a-51269c6ad269 1 Other Other +7dbec0c9-faaf-47fa-a726-b4057a1fae85 1 Other Other +7dbed8da-dbf8-4b79-baec-66beb601d280 1 Other Other +7dbf467f-0ec5-4127-b4ad-c645ba847d6c 1 James Other +7dbfa7b1-5150-47d6-a7d3-a62e86921461 1 \N Other +7dbfabde-3d42-40cd-9174-12ef5c8fc755 1 Other Other +7dc00264-56d5-473d-bf00-3a01f872f814 1 Other Other +7dc00f88-1dca-4e65-b30c-ed751fb9b50e 1 Other Other +7dc0600f-46e5-44bc-96b1-917edce193e0 1 Other Other +7dc0c168-fe65-451e-a568-df8e02d9adfb 1 Other Other +7dc12524-8e8a-4102-8ac2-5987bf747da9 1 Other Other +7dc1a27a-a911-47d1-9f96-5fcb337d4fc0 1 Other Other +7dc1e578-eb10-4511-8948-66fee6e0abf9 1 Other Other +7dc258ae-fefc-4618-bc48-44425df20e43 1 Other Other +7dc275db-e9d1-4097-b9bb-7c1ae93ea418 1 Other Other +7dc2c13b-e882-437f-a6c9-dbd84e71e770 1 Other Other +7dc2e37c-7020-43a3-af9a-09b530154281 1 Other Other +7dc30683-42e9-4873-9674-d66c2ed2ca35 1 Other Other +7dc32b31-b8cc-4c9a-8792-8b6839a2fabc 1 Other Other +7dc373a4-6412-4fd7-9c4f-52e1a6e6f817 1 \N Other +7dc37a0e-0bbf-4721-8003-1c99ead14629 1 \N Other +7dc37ab0-7fb4-42d4-b977-2eaf01692593 1 Other Other +7dc38f02-04a0-4777-b46e-d5a0cb24c905 1 Other Other +7dc3a4fe-9cd1-4411-b515-ecfbf0adabc9 1 \N Other +7dc3da5d-6b9e-4983-ae7b-e0134e49354d 1 Other Other +7dc3dbb3-833a-4e6c-a29f-8414d1e1f598 1 Other Other +7dc415b4-5065-47c9-a959-e28a0e3ef550 1 Other Other +7dc432cf-c29d-4090-b9da-06dcc1cc02d2 1 Other Other +7dc44af4-35de-478b-9499-e9905a05baaf 1 Other Other +7dc45145-3207-4385-8994-7a6be88ccb16 1 Other Other +7dc46fe8-b698-4783-be61-3cac8bca0cbe 1 Other Other +7dc504e9-f294-428d-b601-c539363fa651 1 Other Other +7dc51712-d60b-4c85-b02c-dceb0f7903c8 1 Other Other +7dc520b9-3fe8-4394-859f-9480b582f2ac 1 Other Other +7dc53810-6a5c-49f9-b665-cfb64103449f 1 Other Other +7dc580a2-a969-4778-806a-3bebb6b199aa 1 Other Other +7dc599c6-0f66-452f-9836-799487269252 1 Other Other +7dc5b56b-2dbc-4c43-b949-e4946d72d2ad 1 Other Other +7dc5e33e-f2d2-4b71-b382-5c7ea370a802 1 Other Other +7dc6ada9-5fed-4df1-bedb-2f6155037ee1 1 Other Other +7dc75692-d276-4cad-b7fd-f10e52abc97d 1 Other Other +7dc78c48-d408-4687-9d61-b65aff122c78 1 Other Other +7dc79875-59b1-48d8-b0fe-92a5f726a38d 1 Other Other +7dc7ab74-99f8-4a64-9b70-450504deb5fd 1 Other Other +7dc83d9a-59ea-430c-b677-65cb07370408 1 \N Other +7dc83fc3-41f8-4325-b041-731994c4b678 1 Other Other +7dc87607-f5ad-479c-ab78-43c3128d31c2 1 Other Other +7dc8f718-d134-4030-a897-9645bdecb62d 1 Other Other +7dc92d3d-12ae-468e-96a9-bd2a6f32f70d 1 Other Other +7dc94943-94ab-442c-9f2d-9ee9531dbc43 1 Other Other +7dc94b1a-97a5-415b-a00b-34fb008d3bac 1 Other Other +7dc965cc-d626-40fa-b931-39cd46bec7b5 1 Other Other +7dc98d45-aca4-4b49-b091-d4f1649c5f91 1 Other Other +7dc9c215-666f-4a19-858a-73cac01eb457 1 Other Other +7dca67b7-c0fc-429f-9cd0-1c2e00624f73 1 Other Other +7dcaefca-5599-4529-86d0-e08b000a738c 1 Other Other +7dcafaf6-2143-4eaa-9a5c-4d1f08e64b66 1 Other Other +7dcb17dd-2bc0-4769-b8be-bd26337e264a 1 Other Other +7dcb2f40-e9ec-4c40-96ae-678467cdbb85 1 Other Other +7dcb402c-a97a-4d3e-8b7d-ae1238691b07 1 Other Other +7dcb4a21-8209-47ef-8946-d873651de78b 1 Other Other +7dcb9534-bb35-4d2b-a397-d6d5a6bf0333 1 Other Other +7dcc1fd4-99f3-430a-b4e4-6003f92b99e4 1 Other Other +7dcc8db8-faba-41f0-b936-e1ac6da426bd 1 Other Other +7dccef69-9b20-4513-b99e-31e3e2271052 1 Other Other +7dcd1a75-c67c-4567-b48f-1cde481a755c 1 Other Other +7dcdcff3-6ed7-406f-95e4-eb926f18b149 1 Other Other +7dcde0ee-76ea-4ed4-a7f2-917706590cc5 1 Other Other +7dce25a5-8635-4c7f-9d55-98ca027c1460 1 Other Other +7dce47a1-3dbe-4d8a-bdc1-23615746f84e 1 Other Other +7dceddd4-b31b-45d0-af01-04ee5d8f86e9 1 Other Other +7dcf2b9a-4128-4cf0-b77f-b2588102fcae 1 Other Other +7dcf6683-d981-4a1c-9e18-8e306ab1f374 1 Other Other +7dcf92f5-58ed-48e6-b073-ff9a4d406f35 1 Other Other +7dcf9ce2-dc7f-4530-9379-34738385a5f1 1 Other Other +7dcfc3a9-286b-4703-9930-089ae9dd6f37 1 Other Other +7dd0076e-adfe-4faa-954a-64afb85d7303 1 \N Other +7dd00ac5-44e5-48f4-aa95-44f68ce809ea 1 Other Other +7dd026b3-58c1-4c98-84b3-59bdd291a0f4 1 Other Other +7dd02cfb-58d2-4313-abab-431b5620b1c5 1 Other Other +7dd07f0c-d250-4a13-a395-f03b3908c91b 1 Other Other +7dd0a970-eac9-4a12-b5c3-5d7609c890af 1 Other Other +7dd0c634-49bb-4b26-82b2-6caac83ca816 1 Other Other +7dd0facb-3bc7-47ad-8edc-689ac026b398 1 Other Other +7dd10434-26d8-4851-853b-a5b1fd008f8c 1 Other Other +7dd10917-f3fa-420b-ab36-0513cd80d965 1 Other Other +7dd13cd4-638d-489f-9cb3-c661b8fe2f9d 1 Other Other +7dd15c38-70c5-466d-80be-b497c7ce0eb2 1 Other Other +7dd16a18-56ff-41e1-95d0-36ad219ad0fc 1 Other Other +7dd1936f-392e-4df6-b1f3-821c4e76ad2d 1 Other Other +7dd1b2c2-c728-48aa-b87e-4064c8f82751 1 Other Other +7dd1c34d-eefa-4b26-b12f-6e6fb2106ce6 1 Other Other +7dd1f1ec-317f-4ffb-8893-c63eae2602df 1 Other Other +7dd224f5-f286-455d-a82c-e819673ccaa3 1 Other Other +7dd291bc-a641-4b34-915e-956cd01cab84 1 Other Other +7dd29795-000e-4575-b1cf-e983863fbd72 1 \N Other +7dd2b996-a4cb-4640-ac60-ce0322285a87 1 Other Other +7dd2e613-7de0-4c71-88d1-c710f9ffd8b2 1 Other Other +7dd2e8a8-9f1a-4a0e-a09f-2a48f4cee88d 1 Other Other +7dd318eb-8d18-4f59-82b6-0fbc093ecf7b 1 Other Other +7dd335ae-0fe9-43b5-8e8e-1b7bd27a3cfb 1 Other Other +7dd3bdf7-b373-4259-9050-adb50ec3639d 1 Other Other +7dd3c008-cdf5-464d-b856-bb8497c181d6 1 Other Other +7dd3d384-358f-4cdc-9b0b-794e4e4e761c 1 Other Other +7dd3ee31-d06c-4988-a2fc-018b82a27f98 1 Other Other +7dd43a74-5bbd-4b9c-9bdf-e37c94b00d6a 1 Other Other +7dd47974-f32f-4300-9946-ff91382d46fc 1 Other Other +7dd47f9e-fae2-47af-867c-d2c286a4d080 1 Other Other +7dd4c45f-73d4-4f16-8cf6-32d6a07bf6e2 1 Other Other +7dd4c742-2cd2-412e-a9c8-8a39c74a65f1 1 Other Other +7dd4f513-0770-4e38-a579-2a1e796fbe53 1 Other Other +7dd51fc1-2a28-4c60-b8a9-aecf49512776 1 \N Other +7dd52749-4996-4ce7-b6b2-28d19798fa26 1 Other Other +7dd580e9-31b3-4190-90f9-f28d79402b62 1 Other Other +7dd58d6b-07f2-4a12-ac27-8db6e972370d 1 Other Other +7dd5ab9d-8029-49c2-8284-d97d5887eb88 1 Other Other +7dd5e6f9-c741-4b7c-ad16-21284fcb6208 1 Other Other +7dd6184f-7918-48b3-9428-367a5e96f3f5 1 Other Other +7dd63dba-b237-49c9-bd64-1869d7f1fc37 1 Other Other +7dd64ab1-384b-4766-b5de-28981778fcfc 1 Other Other +7dd6615d-f3a6-4fc8-a095-bc47d3341891 1 Other Other +7dd6d2e9-98da-4dda-a0b7-ba2f1eca48b8 1 Other Other +7dd6df74-2d21-4d9b-a4d3-08bce0419f08 1 Other Other +7dd72e15-7d16-4200-b55f-28088adcc57e 1 Other Other +7dd73da1-fa80-4589-a83f-6bd602f8bfa9 1 Other Other +7dd77efb-76da-4830-b9d0-fec45576aedf 1 Other Other +7dd783df-e997-4b9f-9889-ae1def1cc2ef 1 Other Other +7dd78c24-1f4e-4fe3-80dc-bbf6c21aba1d 1 Other Other +7dd78df4-e9d2-4e9b-83d0-bb1070041a0f 1 Other Other +7dd7cfb8-55fd-40fc-b1ba-344603c987f9 1 \N Other +7dd7eba1-9392-4c49-a0a8-4e0f3d98796a 1 Other Other +7dd7f6f4-d51f-43fe-84fd-351632bbd023 1 Other Other +7dd83dd6-b498-42b7-bb3d-2b25bae421cc 1 Other Other +7dd85250-6a11-4296-b44a-5105a23de446 1 Other Other +7dd8a0a0-ae97-4f36-b864-00a914ac8a89 1 Other Other +7dd8e03c-c18c-4f1c-a869-2ebfe3cea159 1 \N Other +7dd955df-ca6d-454d-bd80-8f58fdacd7dc 1 Other Other +7dd99eaa-e09c-4675-9593-aa1f0850b1b5 1 Other Other +7dd9cae8-311e-4816-a120-9d895ebda5e6 1 Other Other +7dd9e77a-fca8-4ca4-95d1-c21cc586237b 1 James Other +7dda0591-d299-43d1-ae1e-7aed10befda3 1 Other Other +7dda1b04-b47b-4577-8a43-0f9c45a96a35 1 Other Other +7dda73d2-12eb-43cd-8a85-458dcde144d5 1 Other Other +7dda97d0-a283-4da7-b079-7588184b92b3 1 Other Other +7dda9f64-d953-4863-bbbc-626b90779e79 1 James Other +7ddafe4c-e303-483b-a6ab-4304768067b4 1 Other Other +7ddb2da4-53bc-4ad2-85a6-b141beb3f92c 1 Other Other +7ddb33b3-d4fb-4fe0-9a15-fbd318dae325 1 Other Other +7ddb4fa0-9dc5-4c9a-a721-963d52429702 1 Other Other +7ddb729b-c2f0-4dce-b3be-726043807977 1 Other Other +7ddbfae2-cc06-4576-a3b9-bd52202bd12b 1 Other Other +7ddc5263-3b7f-44ca-9008-937553939e85 1 Other Other +7ddc5780-61d3-4e78-9024-6b3f3040039a 1 Other Other +7ddc58fe-d1bb-4952-83f1-2202c5611c6e 1 Other Other +7ddc9dad-3bf7-472b-b73d-a9a5083bce47 1 James Other +7ddcc382-2034-4fc4-b4f8-de5757b66672 1 Other Other +7ddd0cac-351b-4163-8892-7ca364ef4453 1 Other Other +7ddd4466-ac2c-46bf-869a-49ccd4baff12 1 Other Other +7ddd6bd0-48c9-4f47-a4e3-f8b63e5f37a1 1 Other Other +7dddf0b0-c229-46d5-9240-491dc81da1a2 1 Other Other +7dde3b35-2855-41eb-bf16-2d94198e0d1a 1 \N Other +7dde4a3a-49d5-4823-b26e-b18df3392adc 1 Other Other +7dde8759-bdde-46cf-8e4a-5f2e41d20ab7 1 Other Other +7dde930c-0698-487d-9488-8b69655a0d8a 1 Other Other +7ddea7e7-1db6-4738-96a9-a78483ff5403 1 Other Other +7ddecee9-a857-49d2-b108-fe82fa339ea8 1 Other Other +7dded900-1564-4c87-8592-56560f06a91f 1 Other Other +7ddedec7-4c52-47c7-b37f-c6e094d6363e 1 Other Other +7ddf3a3f-2c1a-424f-bdd1-0ca1d920e76f 1 Other Other +7ddf73c6-3c8e-4695-8772-bb039f4a9e99 1 Other Other +7ddf9bc2-164c-4326-b9d1-7f46dc23cedc 1 Other Other +7ddfa9c2-818c-4ac1-9003-e91e838ec55b 1 Other Other +7ddfaba5-a2b3-4d4f-83e5-9b45760dfa53 1 Other Other +7de003d9-d1f0-4ca0-88eb-02067973a112 1 Other Other +7de00a25-a6ff-4bb4-bf0c-57d21e5c26e7 1 Other Other +7de03c4c-2ec1-4aa1-a13c-2d8268084985 1 Other Other +7de03d92-c09d-48b9-8fd3-587365e90c40 1 Other Other +7de055a8-7cfd-4ed9-b9ec-ff2ff9c213a3 1 Other Other +7de06798-63ff-4722-803f-3449cf45120d 1 Other Other +7de0f466-9454-44f8-bbf6-90865c54161a 1 Other Other +7de0fb57-8f9f-4e52-a57c-6bd155cf9b5e 1 Other Other +7de1065a-7c19-477c-925f-fa51e8dcaecf 1 Other Other +7de10e9b-4a93-4fda-81ea-343dfb2ca3de 1 Other Other +7de11223-55cd-45ee-8cc7-5841ada3f419 1 Other Other +7de16553-9256-44d9-9844-b6ffda3e8b0e 1 Other Other +7de1931f-986d-4855-ba63-313c8234ebda 1 Other Other +7de1a02b-b2c1-4b3c-8f9e-d676f4782da2 1 Other Other +7de1b48f-a30e-410a-8482-9c12abff0f4c 1 Other Other +7de2260f-e25d-4396-9d34-ca159baa0db6 1 Other Other +7de2503d-4484-4baf-8a1a-9c17b9425c7b 1 Other Other +7de26206-7d61-423c-91c1-d48f6fc42115 1 Other Other +7de27636-35bb-4943-bfd6-fc6074f0e4cc 1 \N Other +7de297d6-7538-40a6-9d18-f45315da41cd 1 Other Other +7de29aed-27d8-4103-a38e-756663823913 1 Other Other +7de2a8f9-85b7-4eb5-a3cb-fd3c821d0b83 1 Other Other +7de33af1-2dc0-4344-bb81-05a3921fa1b1 1 Other Other +7de34ace-f87a-42d9-b78c-fbebfec4ec6c 1 Other Other +7de3710e-7e13-4175-8534-dbe746909fa3 1 Other Other +7de39c2c-66cf-476f-aa8f-78b41cb0898c 1 Other Other +7de3cd34-b3aa-4f6c-b372-93e46fac1606 1 Other Other +7de42b46-6dfa-4d3c-b654-c56a800b9242 1 Other Other +7de42e0c-a703-4ed0-ad69-ae3ec2788f67 1 Other Other +7de469d3-f64f-4080-9ca7-23de5fec5677 1 Other Other +7de480d4-e960-444c-9204-699c7f6532fc 1 Other Other +7de48102-0358-4284-aa7c-0e15c12d0309 1 Other Other +7de497d2-d505-4f9b-b54b-ad42cc4e7792 1 Other Other +7de4d6b5-b350-40d9-979a-bfd302ef6772 1 Other Other +7de5448a-cfa9-44b7-840a-859b9634f277 1 Other Other +7de58cf8-9ad0-4720-958a-807eb5ffce0a 1 Other Other +7de5f316-82b7-49a0-bc5e-4cd25132df45 1 Other Other +7de650d8-7391-4839-88e1-29a3ac6e855d 1 Other Other +7de6b22f-7c4c-438c-9245-7de336c4b33c 1 Other Other +7de6d028-eddc-4e47-a56b-a021ad0c47f0 1 Other Other +7de6ed88-c400-4512-b75a-388b37079adc 1 Other Other +7de786e6-a88a-4b9a-bea0-09ed617a4996 1 Other Other +7de791b2-9e0a-4fde-9ae5-127d0cbdf529 1 Other Other +7de7a49d-06dc-47f0-be85-1c18fda29a10 1 Other Other +7de7ae2e-2ce7-4c35-a6df-bdfdeb6b97d6 1 Other Other +7de7bb9c-6ffe-4066-a2ca-09792686bd38 1 Other Other +7de7cd34-9aaa-4f04-a30a-506f32e16f31 1 Other Other +7de7f355-1e17-4af5-8796-fc11498becbb 1 Other Other +7de7f39a-eed6-435e-9273-70f7d948ac63 1 Other Other +7de7fd88-a6ac-4ec5-9cdb-744f2d5bc791 1 Other Other +7de84d94-d644-4221-80ce-33e1d79042c8 1 Other Other +7de8502f-6d05-4199-813a-551b1864165b 1 Other Other +7de859ce-e28f-4ca7-880c-a24a5687955f 1 Other Other +7de8abcf-eede-46d9-be82-d84989daf1ff 1 Other Other +7de8b504-2c85-42ec-9360-2a651f5d3f89 1 Other Other +7de8eeb5-8d60-4a9a-9014-74a4c97a4977 1 Other Other +7de90f9a-f2f7-4787-a660-08a85140a457 1 Other Other +7de944eb-a1d0-43b9-af30-42c88faff95c 1 \N Other +7de95ea9-7736-40f5-9d3c-05881d0a52d7 1 Other Other +7de9f1ff-ee23-468e-8d01-03e294c0e4e9 1 \N Other +7de9f49e-76c5-40e7-980c-1814604b7a0d 1 Other Other +7dea0520-0839-4dff-b368-1c714b52a0a8 1 Other Other +7dea1c63-a291-439b-b7aa-286f5e88d769 1 Other Other +7dea5b62-6353-4da2-8bc9-8467793f5ee4 1 Other Other +7dea9e58-632a-43f5-b999-39af35fce165 1 Other Other +7deab08c-7f15-4e37-8c69-1cf2cf13ed56 1 Other Other +7deb546e-1f31-43b3-972d-467daac35656 1 Other Other +7deb8c09-fa45-488d-a75f-ede2aa2d8c2e 1 \N Other +7debe521-951c-4e4c-9d10-ba08f1d926cb 1 Other Other +7dec0a25-eb7b-4909-ac73-418908130ee7 1 Other Other +7dec3f4e-8033-4f4b-9ab8-25c9a44bacd4 1 Other Other +7dec51dc-a36f-40e9-8526-a3d1636b1ce3 1 Other Other +7dec7b2f-00ae-475d-8454-40924e349f96 1 Other Other +7dec7d3b-bb3a-4263-b16a-b4057953f6b7 1 Other Other +7decb84c-23da-436c-aba3-0fd84e613b63 1 Other Other +7ded337e-6952-44c1-9b10-9b7feeebbded 1 Other Other +7ded880a-8173-470b-896d-22fc31856871 1 Other Other +7dedb0e1-65d5-4776-80ae-d79ab63ce4e3 1 Other Other +7dee0c3b-ee43-485e-a1d5-49d876760d5d 1 Other Other +7dee0f67-a636-4fdf-9114-df1b5060982b 1 \N Other +7dee5968-7429-4697-a9b6-9327bb8e98b4 1 Other Other +7dee7071-2fd2-466f-abff-3f7a101a2235 1 Other Other +7deeb5f2-9189-4462-94be-4af6a848d6e9 1 Other Other +7deecaee-9909-48d1-8080-21123d68e990 1 Other Other +7deeda93-f560-401f-987a-41849255ac24 1 Other Other +7deef64b-0107-4cc3-96cf-311f67702e42 1 Other Other +7def4c73-c12b-4a56-bf9f-7dbebf0a1fff 1 Other Other +7def6758-249c-4fd1-950a-654e0d991abe 1 Other Other +7def77a8-00d1-4c12-97fa-f8ae62f5a0aa 1 Other Other +7def9c06-8b4c-4aac-bcf5-c077855fe0e8 1 Other Other +7defb957-dee2-406a-ad2b-943fd3b94d93 1 Other Other +7defbea4-287c-4dd8-a841-47ed47cc86c6 1 Other Other +7defe281-eeb7-44be-a203-c89d71a5140d 1 Other Other +7defed18-95e1-4a3e-9a1f-8e3f8f41cc66 1 Other Other +7df02834-6a79-4bff-9030-c6caa3a09c8d 1 Other Other +7df05bc4-0989-479e-b5c8-746929bb603b 1 Other Other +7df06f28-b938-460e-b997-f2b6beb79b1e 1 James Other +7df070ba-9917-4aa4-8704-0b887f1f7e5b 1 Other Other +7df0d5fb-4aa0-479f-887b-c624f1752b7b 1 Other Other +7df13f75-4211-4052-9f49-d4cd2997b672 1 Other Other +7df16ec8-c981-460c-8548-6978f70d3025 1 Other Other +7df175d9-00a6-4e0f-85d4-f2d859582ac8 1 Other Other +7df1b6cf-0355-4100-bb17-edac0bbbcea0 1 Other Other +7df1cf68-bfc0-42f2-ac1e-a621a169a64e 1 Other Other +7df1eb77-7574-4d3b-a245-f77fc2f12529 1 Other Other +7df23c67-0125-491e-84d6-6caf42630ba9 1 \N Other +7df24ae1-d50b-4df8-b7df-d4ba15091ade 1 Other Other +7df26729-9035-457b-bf07-9f8ee1311b54 1 Other Other +7df277d6-aa20-4413-accb-a39c5699100e 1 Other Other +7df2a15a-d9a5-4256-84c7-3134c0d6e039 1 Other Other +7df2acd8-a4d6-48d1-b347-c87a0cbaf998 1 Other Other +7df38ad3-0eab-4516-a4fd-c7b539a866bf 1 Other Other +7df46bee-16f8-4cf7-b206-2682f204bebb 1 Other Other +7df4f37d-f9cb-4718-b9a7-26bdd846a9e4 1 Other Other +7df516be-f779-4d75-b507-03e3b8687f17 1 Other Other +7df54a8d-b7b4-4214-b9ce-7a5f0a202ce4 1 Other Other +7df569d7-92d0-4b97-ad8f-1aa592924714 1 Other Other +7df5772d-f3d7-469e-9fb9-11db7c03c457 1 Other Other +7df59a3f-14ec-4ffd-ad9d-bd8c35a2c226 1 Other Other +7df5b291-e516-4cf6-aa1f-c932dd84d31c 1 \N Other +7df605c1-f326-4409-8e93-1f9a2e77e1a7 1 Other Other +7df61830-6bd6-467f-9fb2-bba642b549fe 1 Other Other +7df618a9-ecb1-4f05-92d8-213a8f16f531 1 Other Other +7df624bf-0eea-4620-905f-ecebe3bba9f0 1 \N Other +7df63f7b-beee-4aae-9756-5c1d7e8fd94a 1 Other Other +7df6e605-7d00-4907-838a-91fd39183fc9 1 Other Other +7df796e7-2f57-4e9a-ba24-b3cafecc443f 1 Other Other +7df7b231-da2f-4302-b9f3-7ea6be5086b9 1 Other Other +7df8074d-aeb8-400a-a3cf-e88d9e71c70a 1 Other Other +7df810f8-8f00-46f0-afb1-5bbdd5ab5ff8 1 \N Other +7df84d22-ef7d-415e-9b8e-522777a07446 1 Other Other +7df8836b-22e5-433b-a4ba-96579aa8a395 1 Other Other +7df8b263-0d7c-4d0a-8650-cd6d4adfb9bd 1 Other Other +7df8e9c6-c89d-4aa4-97d7-0977f5d2f948 1 Other Other +7df903a3-acd4-4f83-82d8-cdf3232c107f 1 Other Other +7df91922-89ab-4c28-8bea-420dce2f460e 1 Other Other +7df96732-ce54-444a-9fce-adf02bb90a82 1 Other Other +7df97dda-7679-477e-b6a2-57b785d3b77a 1 Other Other +7df998ea-5b32-4894-a0da-1fe3b9b71cf0 1 Other Other +7df99ec2-f485-4703-af3a-f8b98de1159f 1 Other Other +7df9a263-e453-4668-a94d-bdb8d5e47e6f 1 Other Other +7df9bedc-9af5-4fd0-8429-b996bb1bd8b9 1 Other Other +7df9bf9a-5500-4e90-919d-db07ef40e9bf 1 Other Other +7df9cacc-544f-4cee-b164-eb08af5058fd 1 Other Other +7dfa40e0-7367-4161-8e29-1500710921d5 1 Other Other +7dfa9ffe-3c15-435c-930a-e8277355ad2a 1 Other Other +7dfabab2-3d0f-480d-85db-33cadd38a2ac 1 Other Other +7dfad59b-692e-43bc-9ff5-9a2d96ee7a0c 1 Other Other +7dfafef8-0607-45b8-9317-a0fda4ed3a0e 1 Other Other +7dfb08f5-8855-4ec6-8889-d605cada3a51 1 Other Other +7dfb205d-d015-402b-a926-93db53983834 1 Other Other +7dfb43f9-2733-461a-a2de-dd64d31bab34 1 \N Other +7dfb5ccb-8ade-4a71-81e1-93bfe4666afc 1 Other Other +7dfb69d1-e716-4d68-ab79-9347f428db90 1 Other Other +7dfb7b8b-bc34-4c9c-b005-fb31d472e6d4 1 Other Other +7dfb9e34-9a70-4fc3-bb83-1fcf65feb68f 1 James Other +7dfbc7e1-1058-4ebb-8a79-924dfb2fb5e0 1 Other Other +7dfbc98b-b75d-439d-a276-8b09cebe9b6b 1 Other Other +7dfbd65e-4115-40f5-984b-9d331969c6eb 1 James Other +7dfbfa2c-71ec-4d6a-b2f8-222363239900 1 Other Other +7dfc180d-241e-4c6b-b678-9dda2ead9c93 1 Other Other +7dfc1d1a-6bdf-444f-8dd5-a2c63bdb840c 1 Other Other +7dfc270d-859a-477b-85f6-e1c7d6b7351b 1 Other Other +7dfc3de5-4c6e-41b1-b9d4-017514d4f0a3 1 Other Other +7dfc4af5-c83d-4691-959d-a21d9a45a8f6 1 Other Other +7dfc6ead-00f4-4c56-b7f9-29984cfe4cac 1 Other Other +7dfc73b4-35f7-41c8-9687-5f3396183ae4 1 Other Other +7dfcf65d-08af-4af1-9de3-64b944ee81c1 1 Other Other +7dfd1f97-7569-49f9-8324-f9b86748a2b2 1 Other Other +7dfd76fa-d9af-4d0d-9fe0-b718899b9e59 1 Other Other +7dfd9e01-13c4-4cfd-89ad-3eab9b206853 1 Other Other +7dfe4572-3f10-44de-8e8a-09b295dc19a2 1 Other Other +7dfe847c-e92e-4fa7-b5a6-88e0ad431481 1 Other Other +7dfea5df-6d46-41b8-935d-c1373687a8d3 1 Other Other +7dfee5cc-c22a-4836-95a2-42e4e0bd82f9 1 Other Other +7dff3253-bd01-44b2-b13b-29047a131964 1 Other Other +7dff457d-74c4-4293-9b8f-a075450ba2d9 1 Other Other +7dff5c84-0981-4396-88ec-7d3110d6a7c6 1 Other Other +7dff67bb-262c-4f3d-8c13-1105777be93a 1 Other Other +7dff6b12-351a-4478-9c50-366130560f09 1 Other Other +7dffe1ac-7e40-470b-be81-24cfba96247b 1 Other Other +7e003cac-6aac-4855-aad6-8d4bfdd1d842 1 Other Other +7e003cdb-7710-4848-9e7e-19668b10bce7 1 \N Other +7e004012-6f4d-484f-90f2-7b7942215622 1 Other Other +7e005439-4049-43e3-97c7-3ad19390b61b 1 Other Other +7e008dfa-1de8-46b3-9cd3-c3e61d94ccf2 1 Other Other +7e00bb99-9ec0-4b10-8497-5a8015b88370 1 Other Other +7e00ca19-dfe5-499b-9bd4-d655772b4960 1 Other Other +7e010c89-13d7-4b7d-afb9-15629972fc22 1 Other Other +7e01a669-5f91-46fd-bcec-1863c3b227ee 1 Other Other +7e01a919-c7ff-43bd-8e04-1ad2e3d120ab 1 Other Other +7e021d08-b59d-4b2c-8bcb-0b94844c2e5d 1 James Other +7e029d42-144d-49e9-b22b-f370632c7dba 1 Other Other +7e02ca3d-d4a3-49d9-ad9f-a9277edb6146 1 Other Other +7e02d5de-5420-40a0-8f6e-0a7a2e960135 1 Other Other +7e02e60b-b597-4fae-8529-891971d071f7 1 Other Other +7e02fb80-e3e8-4e21-90de-c53a6fec98fb 1 Other Other +7e031c01-a038-4271-a21f-64f005b30eac 1 Other Other +7e03652b-7558-4601-9803-f2ea43a0ded8 1 Other Other +7e036759-1d63-4680-8509-b8adae5b2f69 1 Other Other +7e037ad5-868c-465d-94cd-d50e5281191b 1 \N Other +7e037e8c-8346-4161-a0b1-3c376cea889d 1 Other Other +7e039ef5-f333-4c6e-8d7b-8d62becb428a 1 Other Other +7e03cb87-0877-43d4-a812-d5fb25c8fc42 1 Other Other +7e03d663-7075-41b4-bff3-adae61e089b6 1 Other Other +7e03d66c-1f8d-4151-837b-83e4305a9418 1 Other Other +7e03de1b-0182-48c9-8bfe-52bfca63db7e 1 Other Other +7e03e0d2-e31f-4b49-a3b0-cc61011baeeb 1 Other Other +7e03e642-b584-4a96-8648-e2695045cb7c 1 Other Other +7e044866-92da-11e7-a17c-fa163e8624cc 1 Other Other +7e0489d6-4b80-43cd-9785-deefe6722601 1 Other Other +7e04e39f-f466-4ae2-b462-35babb4870f1 1 Other Other +7e04f5b0-dcd8-4105-86a7-cd29a6bf62e3 1 Other Other +7e051e6c-e1b2-4e8d-95a6-571895df283a 1 Other Other +7e0526a5-5fca-413f-969a-a3b3835cd4a9 1 Other Other +7e05523e-4850-430b-be67-a5026281e277 1 Other Other +7e05723d-1dc4-426e-84a6-b73c7a99e2c4 1 Other Other +7e058f8c-a41c-4015-94d3-20a746146ad2 1 Other Other +7e06551e-ff5d-4485-b47f-a1ff6c00cf83 1 Other Other +7e06dc1f-0a59-4f15-8813-79797f745261 1 Other Other +7e0718d7-971a-4ffc-866e-2a014e1587d4 1 Other Other +7e07241c-13a0-4d89-be3d-10ae55314a29 1 Other Other +7e07414f-90f7-4990-9689-f123f3dc93ee 1 Other Other +7e074460-c5a6-4818-b52c-5eb3333a35f3 1 Other Other +7e07ca9d-2b11-4b79-83c4-c7d1cad23dee 1 Other Other +7e07d4fa-7152-4e10-b4a3-955b853aeb9d 1 Other Other +7e081de5-12c4-4e37-b525-d79cd0de324d 1 Other Other +7e081e8c-2d19-47f6-92a1-91d1f72db708 1 Other Other +7e09a04a-a361-4689-a433-c4a8a7b059ef 1 Other Other +7e09a251-faff-4902-92cf-b6416ba70cfc 1 Other Other +7e09f5ca-54e1-4924-85c3-8e4b87f26ece 1 Other Other +7e0a0924-810e-4d9b-a79f-a46914fd6907 1 Other Other +7e0a4c38-b770-4f46-965d-6b948af963de 1 Other Other +7e0a914d-b474-4a2e-9d02-c596fcf5475c 1 Other Other +7e0abdb7-f10f-48ec-a95a-73702393c8c6 1 Other Other +7e0ae18d-93d7-4f96-b781-71748d0d3dd9 1 Other Other +7e0ae500-75ab-4417-9a4e-0aaa3d327aff 1 Other Other +7e0b0367-ae1d-40f7-a5ee-2648fc64045c 1 Other Other +7e0b3a99-4c38-47ab-9aee-335bc273d4bd 1 Other Other +7e0b518e-9e67-4cb4-b94f-7e22e2c36d56 1 Other Other +7e0ba4a0-8ecf-455f-8b92-a3c70533031c 1 \N Other +7e0bbb9f-ad11-487a-974d-b30a54a9bfa2 1 Other Other +7e0bcd5b-e57b-45df-803b-bef43b26f1d7 1 Other Other +7e0be076-9d20-41dd-a3f9-9ac0719c626b 1 Other Other +7e0bf2f4-1464-495e-b5e4-7788485af94d 1 Other Other +7e0c1b06-2195-4e40-8957-da59e54fbfad 1 Other Other +7e0c3e5a-8db7-4589-8d6f-7f233fa68212 1 Other Other +7e0c8077-4a66-401c-822e-5eb55275cf26 1 Other Other +7e0cdde0-09e5-464f-96bb-4a5e19b4b0a9 1 Other Other +7e0d1819-7ea8-4c10-9056-a173a3f5201e 1 Other Other +7e0d29b6-f3af-4750-a504-6173a59cc148 1 Other Other +7e0e3bef-1662-4672-9880-faa0e6fa048e 1 Other Other +7e0e5e88-0661-4fdd-8499-074e85d65d9a 1 Other Other +7e0e8977-15e4-4b32-b4a5-e29219260ef0 1 Other Other +7e0ef78a-3e1d-4c17-bb93-4aa5db168e46 1 Other Other +7e0effaf-a040-47d6-8b64-6ab01cb3d3aa 1 Other Other +7e0f07da-0942-489d-adf6-c1988b2c1191 1 Other Other +7e0f5b64-673d-43d1-923f-861b7fbc80c2 1 Other Other +7e0f5d43-fddf-4385-b01f-abc1c3704d11 1 Other Other +7e0f91f8-87a2-4f5f-8aba-80c837016eee 1 \N Other +7e0fa0b9-9cbb-4270-9dc6-b33030d6b0b8 1 Other Other +7e0ff63a-5114-4b6d-b1d7-87bc692a7fc5 1 Other Other +7e101b5e-2f4d-4760-9851-5040f2f070af 1 Other Other +7e103ffa-9c82-4371-a561-f70fc567ecc5 1 Other Other +7e107aa4-f865-4932-8f50-328f9622ea19 1 James Other +7e109ea0-f1cb-453e-896e-9ec1d304c1bb 1 Other Other +7e10cb22-5617-4f9c-914c-609be1591987 1 Other Other +7e10cdff-a9ec-4c72-8daa-0c85f8943369 1 Other Other +7e10e2df-b606-48c9-b711-7e6882b64171 1 \N Other +7e114a6f-8e9a-437b-afeb-3075c522d4f5 1 Other Other +7e115d67-4f71-4388-88c0-d87fddf71c12 1 Other Other +7e116d1f-fea5-453d-87bc-e07dccc8d69d 1 Other Other +7e1173ff-2e39-4a68-8f04-0c418644c657 1 Other Other +7e11a020-4372-458c-a637-a22397403545 1 Other Other +7e11ed0c-678a-4b7c-b52d-8f61cadbb531 1 Other Other +7e11fb9d-883e-486d-9fd6-ddbaf4a656d4 1 Other Other +7e126660-c9f9-48ef-8e43-1eaa54f0077a 1 Other Other +7e126ced-7765-4a31-b35c-3a24695e533c 1 Other Other +7e126cfa-ed8b-42d4-89f2-d38b8489e59c 1 Other Other +7e12774a-48d5-4a4b-971f-b620d515dfdd 1 \N Other +7e127f9d-1dee-488d-844e-c86dd640b2d9 1 Other Other +7e12c673-e2e0-4af0-995a-0add859b0a85 1 Other Other +7e12cdc0-8ce3-4aaf-875a-af37ab002a64 1 Other Other +7e12f587-8baa-4c26-a521-004840a8b7a4 1 Other Other +7e12fcab-7eb4-4348-843a-be30ced51bbd 1 Other Other +7e13456b-bf6d-4305-967b-3510a4465f23 1 Other Other +7e134b25-044a-4551-9a05-619822069436 1 Other Other +7e13935f-cb96-46cb-ada2-203e31cfde94 1 Other Other +7e139c18-368b-4b4e-9840-82241c440485 1 Other Other +7e13a312-d3d3-4bac-a226-53323b684073 1 Other Other +7e13c310-927c-4e6d-87cd-699bfc3d9029 1 Other Other +7e13dbdf-2d75-44a6-bedb-fb32ec970e94 1 Other Other +7e13f866-c90f-4a80-ab7e-d59a4a13e8c4 1 Other Other +7e14331f-e98c-4bd5-a01a-0a93228c208e 1 Other Other +7e14c851-a026-4bf2-887e-a0e5f0e0e8a8 1 Other Other +7e14dfe1-d045-40c5-96ca-d8802c5497e1 1 Other Other +7e14e205-e1b9-42ec-93b2-c440e26f6548 1 Other Other +7e14e3bc-581b-4075-8b76-1a12040efff0 1 Other Other +7e1550fd-3641-4a00-a060-18003fa6292e 1 Other Other +7e156188-781a-4650-945a-ff4c4c1a2ce8 1 Other Other +7e15626d-e980-469c-8f48-1b88e6f42447 1 Other Other +7e1587e1-d74f-4852-bd13-764476bd610c 1 Other Other +7e15a73c-ae38-4176-8d77-10d1f44643d3 1 Other Other +7e16235d-197e-4cf6-bde1-3230a919d7e2 1 Other Other +7e1637ba-c18c-46c9-a701-776d1b39eca0 1 Other Other +7e1666ad-2488-4452-bfc7-039b7725a38d 1 Other Other +7e167ee9-2314-49c3-8d02-be200da49e82 1 Other Other +7e169087-de91-4572-b1e1-e04d563b91bf 1 Other Other +7e16a897-bc19-45ea-8578-faa78b20c20d 1 Other Other +7e16c56a-15da-46e9-a029-2390d3fa8027 1 Other Other +7e1716e0-db4d-419a-9efa-256ca23580f4 1 Other Other +7e171cb2-a0e5-47fd-b87f-c6e053671141 1 Other Other +7e17233f-bf41-4aec-8143-8c39f1d73e23 1 Other Other +7e17362e-ceb3-4ca2-b469-2c788153ea5a 1 Other Other +7e173963-44e4-46bf-8180-d48b757f6464 1 Other Other +7e175ee1-f420-4a09-8068-16f51cd9a4fe 1 Other Other +7e177985-9790-4b2c-aa1d-5543cddc0f37 1 Other Other +7e17827c-b63f-4b03-b31a-19f996596d96 1 Other Other +7e1782c9-09f7-4493-9c07-df6e7d501a61 1 Other Other +7e1792e6-a3b6-4fa6-b779-866af47bffb3 1 Other Other +7e1794b9-5455-4d34-89bf-8ffd0e336a4b 1 Other Other +7e17c064-aae6-437b-a088-6091820dfd4b 1 Other Other +7e17c6dd-1cf5-417d-a5af-3ef447930b6b 1 Other Other +7e17d36f-c0e9-49e1-bcac-828e6b79cf8a 1 Other Other +7e1809cb-cb72-4f08-843e-65558f503e80 1 Other Other +7e1813e7-649f-426f-bd36-995c1b07a393 1 Other Other +7e18522c-91bd-4ebe-b43d-1005d7d06170 1 Other Other +7e187af0-b05a-43c3-a059-8711ae776123 1 Other Other +7e18f2bd-d996-4d97-a076-aa1606cde0de 1 Other Other +7e1949a3-e92b-49db-a383-70118a419a8a 1 Other Other +7e195f9f-0f7e-4569-816b-5cdd48b947b4 1 \N Other +7e19605f-9326-4118-9769-b6281fee2523 1 Other Other +7e197bf8-f807-431c-939f-7f22c629270f 1 Other Other +7e198304-e590-4ee1-b48c-99c1cc47f0a5 1 Other Other +7e19be58-1e79-44c7-b7e6-13a6d743a376 1 Other Other +7e19e429-cb53-4459-8527-aea5744f9914 1 Other Other +7e1a31d9-3e39-48af-b5b8-0871ffe20820 1 Other Other +7e1a49b3-f4ad-4dfc-a411-0a010ab33c28 1 Other Other +7e1a5753-992a-4708-bef2-140b60000fe7 1 Other Other +7e1ab337-965e-4aaa-aba2-938142812662 1 Other Other +7e1aee73-9455-48e2-afeb-d20bb442bf32 1 Other Other +7e1b7117-6496-49db-ab72-dbf199771916 1 Other Other +7e1b9d7e-ccb3-4f16-bd94-f43dfcab60a2 1 Other Other +7e1bf63c-a6ae-471a-8541-26c780dd2a87 1 Other Other +7e1c05d3-4b45-4f2c-b919-665cea919e57 1 Other Other +7e1c0982-4429-4c2f-83ce-f7430efc3112 1 Other Other +7e1c1c6c-d7e0-4d79-ab5f-70bb75b4efde 1 Other Other +7e1c9430-038a-4069-a58c-488e22e7467f 1 \N Other +7e1cd932-c7b9-411d-8c3f-767437dde969 1 Other Other +7e1d52bb-11c4-4cac-bf67-d8951d1aeb74 1 Other Other +7e1d6c1d-2259-4938-a895-1bf96af509c9 1 Other Other +7e1d78d8-94f9-484b-af54-caac8092119f 1 Other Other +7e1dc223-0f49-4d00-a32d-ca583474b62c 1 Other Other +7e1dd2dc-05e3-4e33-837c-e24ba289aef1 1 Other Other +7e1e0cc4-75f6-4186-b9d2-585dae84c03d 1 Other Other +7e1e3035-99f3-4bf5-ac8b-0dff3a2adea3 1 Other Other +7e1e49f5-2349-478d-a449-53663be4f2b4 1 \N Other +7e1e6c00-d146-4722-95ec-6f0110cbf0eb 1 Other Other +7e1e87a7-eaa8-4852-b730-d51f6c6912c5 1 Other Other +7e1eb0b5-7572-4951-95a0-14a844736d9a 1 Other Other +7e1ed0c2-4713-49cc-b4b0-f3187bdeacc1 1 Other Other +7e1ee5ae-729d-4b83-9bbe-dae0d2ce7db1 1 Other Other +7e1ef0f9-626f-4808-82ec-5f4704c5736a 1 Other Other +7e1f13da-c95a-4c74-96d6-26fac8da707d 1 Other Other +7e1f2ce5-dc68-4e72-9a3d-51a5159e865f 1 Other Other +7e1f7447-962f-42e7-954e-d9087146c0ce 1 Other Other +7e1f76f8-bb4d-49c6-9466-504f2e959b65 1 Other Other +7e1fb853-4f55-4c5a-a909-29d3926e3345 1 Other Other +7e1fd5fa-9615-49cf-9143-f25aa56850ee 1 Other Other +7e201d51-c559-46a7-84f5-1d2b5f261213 1 Other Other +7e2036b4-9d71-447e-aa25-d010891d2de4 1 Other Other +7e205a5a-58aa-4abe-880c-65ba45ec9fe6 1 Other Other +7e205f03-f175-425c-a8f2-06d48c9efedc 1 Other Other +7e20babe-cf2e-4d6a-b928-8833133990bc 1 Other Other +7e20bd72-df53-4b43-96b6-a84f395daf33 1 Other Other +7e20dfcd-3cc4-460a-acf4-50768248b36e 1 Other Other +7e20f0ad-8bb6-4a31-9104-4baaf6eb61e7 1 Other Other +7e210d66-bf20-4f96-9b57-8b2b48023607 1 Other Other +7e212a99-7db9-432e-94d4-e04452211e5b 1 Other Other +7e212f6c-b408-40b8-927c-380ddd310036 1 Other Other +7e215dba-0607-4f54-9c10-b2268e7c953a 1 Other Other +7e219d4b-249b-4686-9d28-ad7c9bce9df5 1 Other Other +7e21df79-6015-4443-b29d-7204dd680f5e 1 Other Other +7e21fcc5-6759-4abe-9cd3-5976225e88f9 1 Other Other +7e225926-32ff-4260-9dcd-540f3b72d06c 1 Other Other +7e22d7a7-b052-4d23-8bd6-eb7cd20c7a23 1 Other Other +7e22e954-3d2c-46eb-96b0-86d201270418 1 Other Other +7e231144-5ab6-49e3-8de6-bc3f1ae52300 1 Other Other +7e2347b0-157c-4802-9340-8af25b959def 1 Other Other +7e235588-35eb-40b3-9c4a-fbd67cc4a983 1 Other Other +7e23761d-a204-4774-bbcc-b68f4e74623a 1 Other Other +7e23a286-3385-4d21-8eb0-445efaceb9c2 1 Other Other +7e23a6ff-d131-4829-afbb-c0aee2486ba7 1 Other Other +7e23b247-fcde-4ade-ac76-3b3d4ab0895f 1 Other Other +7e23c0ef-15d4-4c37-8651-2d38ae0c4870 1 Other Other +7e23ed2f-a0fd-4169-9218-ac3b04b1e6ad 1 Other Other +7e243408-cf67-4f75-8da9-d89abf9a9829 1 \N Other +7e2486c5-604c-4c2e-bdef-7373cab014b5 1 Other Other +7e24a553-6108-4edd-939d-da3c15c8d4de 1 Other Other +7e24ac55-85c9-48dd-b65a-7c2eefa7dbaa 1 Other Other +7e24bdef-0936-4111-8226-d635294aeff2 1 Other Other +7e24c761-cc7f-4c10-ae92-1ada03cdd5ea 1 Other Other +7e253305-a901-4682-a640-f4949f568267 1 Other Other +7e257412-cc43-447a-8f6b-00d4f5e0a63d 1 Other Other +7e259ef5-6be5-4131-9952-1647f134d291 1 Other Other +7e25e5e6-ce3f-4b6c-8dde-3f8ff8cdcb18 1 Other Other +7e261868-ef56-43b0-acd4-a225967ec0b2 1 Other Other +7e263630-e0a7-4d72-b882-00d4ea8daf4e 1 Other Other +7e26830d-19a7-4586-90c9-603b8d80b1cb 1 Other Other +7e26b080-a24e-47a5-bd12-26cb04c43f65 1 Other Other +7e26b4f5-a957-4e53-9548-2ddac731e827 1 Other Other +7e26c488-ce64-4de8-a76c-5eca844c9e7d 1 Other Other +7e26d8d6-79d4-4327-aed0-a0b1635ecec8 1 Other Other +7e26e1c7-54a9-4ca4-9df1-86341533a8fa 1 Other Other +7e26f442-1752-4124-bd88-50724e9b6499 1 Other Other +7e26f51e-7562-4e3b-930d-dd0edf295140 1 Other Other +7e26f6c7-71a3-463f-bdba-9afb5daf19e1 1 Other Other +7e271917-aa06-43fa-a6de-afa65600e9aa 1 Other Other +7e27283c-2eeb-4732-bcf4-24a403033448 1 Other Other +7e273574-1d67-44f7-894e-f4ee99167b22 1 Other Other +7e275e68-c1e2-4b20-bcc7-c4f4058c7f2b 1 Other Other +7e27799e-f5fc-422f-bf44-c8cb85b50134 1 Other Other +7e27b3c7-5135-47f0-9c5d-6268672ce287 1 Other Other +7e2832b4-6be1-4e1b-99a8-53ba1f396ca1 1 Other Other +7e288375-b4f3-45af-bb42-50580af4e696 1 Other Other +7e28fbb5-9436-4442-bbf3-51706361d8bf 1 Other Other +7e29e088-65cc-46a2-aea6-bc833aedb565 1 Other Other +7e2a1599-d268-4f14-8d2d-bf67c4e0a137 1 Other Other +7e2a1f47-2b05-433a-8daa-7109344045b4 1 Other Other +7e2a5928-e1fb-49ce-8216-a0e6154ffe71 1 Other Other +7e2aad2c-6fad-4eea-9944-4d95ef5ea9b7 1 Other Other +7e2aea56-2542-43cc-9dcb-404881191fad 1 \N Other +7e2b1d39-7e92-481c-b145-4aa08953bc9d 1 Other Other +7e2b5a0b-8c56-45cb-855e-28e02a03c306 1 James Other +7e2b7290-e707-4b6d-bcdb-08baa20080fe 1 Other Other +7e2b81ff-cf7b-4296-be57-d0e79136409e 1 Other Other +7e2bbfff-ecc9-45a4-a71c-f50ac31558ab 1 Other Other +7e2bc3eb-783b-410e-93c2-fe287ae0ea9a 1 Other Other +7e2bc778-eb64-48b9-b675-7ac23d855413 1 Other Other +7e2bd9fa-4823-4775-b7ab-12011720cf41 1 Other Other +7e2bdf2b-0f58-4507-a04e-42018117aae7 1 \N Other +7e2c2e45-4a63-41af-a8b6-e448e120b8a4 1 Other Other +7e2c4233-6230-44c5-8e92-5ac0c3ff8e1b 1 Other Other +7e2c46bc-d40a-46db-a8b3-f5c780eb613b 1 Other Other +7e2c51c8-e832-4db5-a411-a7aac0989ba2 1 \N Other +7e2c74f4-1136-45f3-ab7a-6450392ab84f 1 Other Other +7e2cc2fe-690b-4e2f-a20c-3bb3c986f0b5 1 Other Other +7e2ccf59-621d-46f4-bd08-6af9e8e5ac12 1 Other Other +7e2cf92b-b698-4bb8-9560-3922f4ce886b 1 Other Other +7e2d4936-8f8a-4730-8e77-fa811662ec30 1 Other Other +7e2d4d06-3a8d-4c54-9a67-872c5dfebbd7 1 James Other +7e2d5b97-2418-426d-8919-c5ea542b352b 1 Other Other +7e2d7e3f-12b6-4026-b61a-c01ca96a1677 1 Other Other +7e2d9b8d-f08f-41bc-808f-bac32e6f8258 1 Other Other +7e2de66f-fa99-44da-982b-f47805ca6f3a 1 Other Other +7e2e3756-f241-430f-8384-2faff043c20a 1 Other Other +7e2e5525-9243-4928-9e5f-6bc22c01fe4b 1 Other Other +7e2ed91e-6e4f-455a-aca8-0217ca7877b2 1 Other Other +7e2ef310-6393-4324-8ebd-8b238e2695b6 1 Other Other +7e2f1dc5-c1c7-45d7-a6a8-32dbbaecb667 1 Other Other +7e2f297a-2bcc-410b-9ab7-36335533f3b0 1 Other Other +7e2f47e3-fd9b-4f53-8f14-4f2c4f37df1f 1 Other Other +7e2f7850-d966-4f52-90dd-d12e8d74b0e9 1 Other Other +7e2f8cc6-0217-43d5-aad8-674955786e60 1 Other Other +7e2fb279-c39c-40fa-9f46-e8204da102c4 1 Other Other +7e2fd6b9-4e1c-4a73-b97b-e1b7d82f236c 1 Other Other +7e300cea-a7bb-4c20-a71a-18b7d1f08230 1 Other Other +7e3012bd-866d-4ccd-a014-e8c1a824ecdb 1 Other Other +7e303ede-6465-4659-b341-7cefc63394c6 1 Other Other +7e308700-60a1-4791-8a85-311927679b27 1 Other Other +7e309a7a-168d-4c90-b8e7-7eb7e2a7067a 1 Other Other +7e30de38-18c3-4e21-b80c-8dea386e0d48 1 Other Other +7e311a76-2ec5-4d75-be95-0853f6813630 1 Other Other +7e311b10-2698-40c2-aa5f-d382846d27ad 1 Other Other +7e31352b-5747-47bc-a4a6-9c12e43fd135 1 Other Other +7e317f80-e729-4c0e-9a24-fd7a9eb98067 1 Other Other +7e31b5bd-ec42-4989-bfbf-6a70804518ba 1 Other Other +7e31d40d-f466-4601-b30c-f6694a37bc55 1 Other Other +7e3233ac-29a3-4b0e-af2a-af70875076d3 1 Other Other +7e32526b-ad12-4c10-8770-9c039d2bdfcb 1 Other Other +7e326689-3a9b-4bb2-8442-87d8eb4727ed 1 Other Other +7e33653a-7a27-49ac-901e-f4896860229f 1 Other Other +7e344242-28f8-4882-8784-41c63f5bc945 1 Other Other +7e34499e-9368-4872-80de-7131e119bb08 1 Other Other +7e346078-fcba-4c9a-9761-fe2d9f2e62ac 1 Other Other +7e349784-939f-4a45-b61d-79e70feded89 1 Other Other +7e34f188-a203-4252-a6de-1f56c19d3861 1 Other Other +7e34fecf-e304-4cfc-a3e2-019856013cf5 1 Other Other +7e351e84-6461-4ce3-9421-5df689e811d8 1 Other Other +7e3525cb-b830-4a9b-8a37-cd60580ec8ce 1 Other Other +7e353060-7e4c-454c-9ac6-54fb744cb694 1 Other Other +7e3577be-4808-4097-ade4-bc1beeacb3c9 1 Other Other +7e35838b-523b-4e00-9689-4e00da1d87f5 1 Other Other +7e359034-7f8d-44e3-8401-c7240ebf92d8 1 Other Other +7e363c4f-fe6a-4e2b-8ee9-af49cc8625b3 1 Other Other +7e3650af-1ed1-44c6-9821-a6f63d71b396 1 Other Other +7e367041-e794-4ab5-bef3-976786790242 1 \N Other +7e36ac5e-0ff8-4a64-83d1-933e915595c3 1 Other Other +7e36ff5f-2ef4-4cbd-8743-23b56fa773e9 1 Other Other +7e373b79-4992-4f1c-8df1-2ec7411c65bf 1 Other Other +7e377415-d72d-4963-b544-33a718d37a9e 1 Other Other +7e3775f7-97cb-4f0f-be5c-34037939e69d 1 James Other +7e3780fc-7a4a-4858-aae3-2946668cb41e 1 Other Other +7e378191-f333-4f1a-91ba-0281b1a27673 1 Other Other +7e37ce90-c0a5-4de8-832c-cf61efed585a 1 Other Other +7e37d3b9-45bb-49c6-b82e-ed2938af73c0 1 Other Other +7e37d48e-1a3a-419f-bb46-1b626fe292cb 1 Other Other +7e37d85b-b30f-4472-8740-c43b5034154e 1 Other Other +7e37de13-f307-4ff9-959f-b2cc089ab5f7 1 James Other +7e37e622-3d27-4cd6-8358-277a6ae492ff 1 Other Other +7e37ea4d-7298-4b24-9e84-c857c243c122 1 \N Other +7e380f20-67e1-4a81-8279-f65ada36b850 1 Other Other +7e382714-0e40-4a60-b54c-43962d26881c 1 Other Other +7e387189-da86-448c-a146-ec3f2499952a 1 Other Other +7e389ab7-03cf-4a1d-a721-293fe7a2a51c 1 Other Other +7e391378-60a3-4e2b-93c6-e9ccaaa90fe6 1 Other Other +7e3953d4-7bf4-4001-91c5-4da6f051baa9 1 Other Other +7e39637f-7601-4971-9361-627d16012210 1 Other Other +7e3966ee-8018-46bd-ac30-cfec04a464e1 1 Other Other +7e397032-11c4-41aa-b484-15c4d4ee0f8c 1 Other Other +7e39bd7d-db62-4b96-94f0-b4df262b9f2a 1 Other Other +7e39fff3-a613-4222-a47a-b66379ee257c 1 Other Other +7e3a406e-57ff-492a-b370-ac9b36004ce5 1 Other Other +7e3ad4b2-6100-4c7e-a781-2dac08637a19 1 Other Other +7e3af16f-c7f8-4e68-85fa-74d78266c94f 1 Other Other +7e3afd9e-fc9c-4fc9-b7d3-52abe7a62aee 1 Other Other +7e3b229f-393e-4b6f-9ba2-b4f005f5ac65 1 Other Other +7e3b5c7e-4d9f-4637-8036-d643fbc2ecd2 1 Other Other +7e3b9dd6-e9b2-44c3-9442-3ecf70d0da68 1 Other Other +7e3bb0fd-aabf-49f6-bc35-5b7d2d0cfc8b 1 Other Other +7e3bc28c-0c9f-4b39-9b83-314e95903fa0 1 Other Other +7e3bce8d-f638-4697-ab34-1541e37edc89 1 Other Other +7e3be914-e5aa-4605-8678-5b65a08f2fe5 1 Other Other +7e3c0ae6-2b04-4d7f-b38b-1bbe69eae35d 1 \N Other +7e3c301c-050e-4cdf-b625-3d069d762644 1 Other Other +7e3c3385-f8b5-48c6-b2f8-c4a6bd5eee13 1 Other Other +7e3c5575-a59f-475e-bec0-5a5596be9595 1 Other Other +7e3c8240-d5e9-4ad6-af83-d5c34c3c0f97 1 Other Other +7e3caa94-387e-4a7a-8ffd-ea7dd79da844 1 Other Other +7e3cc45f-1e9f-4007-bc29-2207958f473d 1 Other Other +7e3ceb73-9832-40c3-9b61-f239bbd9f544 1 Other Other +7e3cfc6a-b571-478a-91d1-370aceaec714 1 Other Other +7e3d1005-a54d-4999-b187-97a5271de803 1 \N Other +7e3d1429-eda7-41a7-b3dc-ee8f86081810 1 Other Other +7e3d7f86-2a7f-41df-871c-1e0e0cb1fa7c 1 Other Other +7e3d98bd-c388-48f5-9567-08d0ae1af791 1 Other Other +7e3da5fc-62a5-428d-8678-504293e7433b 1 Other Other +7e3da848-a069-4f0c-b672-5d45947affd6 1 Other Other +7e3e0516-4ea3-4965-8f49-9b4e303710cf 1 Other Other +7e3e0529-cf9b-45da-afd7-649a10a183cd 1 Other Other +7e3e2c39-9d50-4fd2-b37b-3c9454d2db89 1 Other Other +7e3e2eb0-5ead-411b-9077-7dcc69822119 1 Other Other +7e3e89c9-a0c4-4410-970c-0820f823f33e 1 Other Other +7e3f170a-dfe2-4498-9291-2f1427317f10 1 Other Other +7e40204d-9125-4241-a875-ad1ca940cdb7 1 Other Other +7e4030df-6009-4c3b-9aef-89cecdfd8b60 1 Other Other +7e42222c-b363-4553-b060-bfab3bfd7553 1 Other Other +7e4250bb-d940-454d-8f0e-af20cbfdee8d 1 Other Other +7e42959e-09a5-4a49-a9c9-aaf065e7300c 1 Other Other +7e42e44d-05b1-47ee-b0b8-ad31f65d870e 1 Other Other +7e42e8d6-bf0d-4d6d-9b26-472d3cf165fc 1 Other Other +7e430845-0d75-4d1d-852e-c1e7fd0d0130 1 Other Other +7e433e9f-c440-43ee-a594-e05c65d99142 1 Other Other +7e43aeca-3fa3-4cd7-8dde-67dbae0be557 1 Other Other +7e43c470-17cf-4b33-a622-c4530df0f005 1 Other Other +7e43eb10-06e4-4685-ae81-18ce265f1086 1 Other Other +7e43f438-d41a-4145-838c-3d200bae7a98 1 Other Other +7e440d6f-f643-4bdf-8922-39af0551c1fe 1 Other Other +7e440f70-f4eb-4fd5-a509-d814347186fe 1 Other Other +7e4415ad-a8d0-42a7-9b9c-0550f73b8d17 1 Other Other +7e4480a7-86a4-4192-9e2f-64ce3cd8c5cd 1 Other Other +7e44a340-296a-42e3-9b18-29740c72777e 1 Other Other +7e44a8ba-52d0-4ecf-b296-5b771262aa4f 1 Other Other +7e44dc73-f7b1-438c-b2b6-73bc60be9d31 1 James Other +7e450726-8553-44fa-bb8f-9fdcf22ffa0f 1 Other Other +7e458073-212f-4064-87d7-92d0ebc8e2ab 1 Other Other +7e458e1d-e3ef-4820-b378-cb8d800a08ba 1 Other Other +7e45c36f-fe15-4893-a195-b9aaccf079af 1 Other Other +7e466fca-399c-43c1-a79d-9175c696999c 1 Other Other +7e467f36-35ff-435d-8fbb-c4350accb6cc 1 Other Other +7e46d075-c9c6-4070-bcfb-c0374f49b756 1 Other Other +7e46d971-5a4e-47ff-ae54-5773fdb2885b 1 Other Other +7e46dcf1-aa75-4c92-a122-2131ca4e22f0 1 Other Other +7e46f127-8ba9-41e0-9aa3-193a1cdc68d6 1 James Other +7e46f13e-20c9-4edb-9a3e-60b87d73f4bc 1 Other Other +7e471aee-767f-4adf-b044-4f25a0c070d5 1 \N Other +7e473142-f158-465f-9fb4-1d243a9a3886 1 Other Other +7e47435b-b42f-4f72-8661-de319712ad63 1 Other Other +7e478526-4246-4cf5-8124-0669d8b9f0b7 1 Other Other +7e47a740-924b-4f9a-8c02-9b131bc6992e 1 Other Other +7e47ff19-80d2-4d92-8002-a3079470b6b0 1 Other Other +7e487a63-d60c-4f6e-a2de-57835763a7eb 1 Other Other +7e48e17e-fda5-420c-9f5a-8e49a7d460bd 1 Other Other +7e48f47f-4862-4021-9a62-dc4c9bd0dbdb 1 Other Other +7e48fff1-f262-4cdf-9146-935a1510c404 1 Other Other +7e490d72-a735-47d4-92fa-f856b438787e 1 James Other +7e491929-8b01-4174-a1d8-b74d7eb7cad6 1 Other Other +7e498161-6eec-4dd7-9dea-d43bdc4ea553 1 Other Other +7e49850d-c3cd-42ad-82b7-57717c263d3e 1 Other Other +7e4998ee-971d-483f-a60c-fc95c263ec92 1 Other Other +7e49fd27-aeef-42dc-9078-0f3705640324 1 Other Other +7e4a34b3-99ff-40f3-8b32-01c374c5fb99 1 \N Other +7e4a3b11-3def-4c50-a2a1-05950dbff74e 1 Other Other +7e4a3f07-5aad-4ff9-8499-b4fffd8731d1 1 Other Other +7e4a45a0-4a9f-4c19-9266-65b194b548c0 1 Other Other +7e4b3716-8130-42a1-9c72-8569d85db1c7 1 Other Other +7e4b3941-6e56-4b88-b45e-58c8721f4677 1 Other Other +7e4b621f-51ae-467c-bdbe-9f553ed6f1d1 1 Other Other +7e4b792f-2d28-4c1d-91fe-0b4240b0fcc8 1 Other Other +7e4b85bc-ae97-43cd-8704-c7de31fcebb8 1 Other Other +7e4c320f-f962-4d77-978b-f0311b326ee4 1 Other Other +7e4c4157-0422-4e91-8564-1e1de6ccba40 1 Other Other +7e4c4173-5b20-4e30-a0af-c042aa2406ba 1 Other Other +7e4c4fbd-ce2e-4eb7-ade1-29b4c74582dc 1 Other Other +7e4c7470-ad31-4a31-b0ba-118b29ee9da3 1 Other Other +7e4cee54-d7f3-47ce-8707-85ce0fef016a 1 Other Other +7e4d108b-6f03-428d-bd5a-e78559682230 1 Other Other +7e4dcbc3-b2b0-45bb-ac9d-d15e8d78ee6b 1 Other Other +7e4dd8dd-6757-44ae-94ff-b37d71e6b92d 1 Other Other +7e4dec6c-d7df-4279-914a-bc25efd09346 1 Other Other +7e4e187d-6497-4fe5-847c-2b875d4710b6 1 Other Other +7e4e514d-0c6a-46f3-a416-fe01745f79cb 1 Other Other +7e4e742e-c25a-4d70-82d8-1f38540cca69 1 Other Other +7e4e9415-40f7-40fb-a3fe-b7dffcbcfe53 1 Other Other +7e4ee8da-58f0-4277-bc97-93fa964c1213 1 Other Other +7e4f1f53-8e66-451b-99be-5c73b2a6e694 1 Other Other +7e4f70a3-9a0d-4dbe-aa4a-5b927222768c 1 Other Other +7e4fe29f-4b05-4380-8d3a-c92f68fa5d14 1 Other Other +7e4fe8ac-cc11-4221-b09e-84ccf63aea9c 1 Other Other +7e4ff71f-877c-4a10-95c5-4220f67d6b6a 1 Other Other +7e5003a6-973e-4f01-be3c-b3f2c6e7d6cb 1 Other Other +7e507b79-cc8b-4a99-88bc-b6b332d3f390 1 Other Other +7e508715-5540-44b8-a30a-5cf1b760aac2 1 Other Other +7e508a5b-53d0-493d-a2c3-334a17ecbeca 1 James Other +7e5102c8-1a6c-476d-b076-5270c5984a76 1 Other Other +7e515e5a-bc1c-439f-b8a1-7099f8e599c8 1 Other Other +7e51c001-55d5-4fc0-b5ac-835c3ba94c92 1 Other Other +7e51fd08-ff3a-476a-9608-0d93aced95f3 1 Other Other +7e5216b1-b2f1-4a62-948c-cd9da87e156a 1 Other Other +7e521907-f50d-402f-b5f6-0fd107319931 1 Other Other +7e527307-e3e7-4c90-a7e1-e9cec3622029 1 Other Other +7e52fb02-ba0d-4ef6-8121-923027438347 1 Other Other +7e5339b7-28bb-4254-b8b7-1b644f0a4262 1 Other Other +7e535886-f190-4e98-96ce-da88e16b67f5 1 Other Other +7e538a2d-a97f-4aa9-8917-15c622b899e5 1 Other Other +7e53c665-f896-49b9-b4af-40339ae6f0e2 1 Other Other +7e53c8f4-4c82-4d71-86bf-e2c3ee65378d 1 Other Other +7e53d2aa-c8d1-48e7-ad5f-e6cc25b7380e 1 Other Other +7e53d821-6e09-4145-b51d-5d02526001f9 1 Other Other +7e53e1ad-373f-4ad5-a2da-317ff3754d49 1 Other Other +7e53e74a-87ad-4034-a314-b2883f78a2fd 1 Other Other +7e548bdb-2a39-4002-8251-a715d7045ca4 1 Other Other +7e54df00-49e9-4d08-84b3-ef5c4cb5128b 1 Other Other +7e54ff10-8626-4a7f-af67-3f1b4682bedc 1 Other Other +7e552fc2-f7f9-430f-b432-ad6d523464c1 1 Other Other +7e5537df-22aa-4683-b4d6-3574127ddc42 1 Other Other +7e556c63-6dd1-436d-9964-6f6e950de48c 1 Other Other +7e558f2c-52b2-4516-87fd-21e880000707 1 Other Other +7e55a9e7-6c6b-41cc-9939-c9d601e09ec6 1 James Other +7e55d4b2-ac9e-4fde-91b0-fc1c0cdc52d5 1 Other Other +7e55f6a4-3037-41bc-a220-bafac62eb4c4 1 Other Other +7e566dcb-6fea-4151-896b-50f974aef868 1 \N Other +7e57ab6c-2e3d-447c-bfbf-de7cadadc8b6 1 Other Other +7e57abd0-deae-463d-ad72-389e0e024193 1 Other Other +7e57cc77-e175-4710-9dd8-1f5c28ff5264 1 Other Other +7e580220-dc29-4888-be34-47d6872d6de1 1 Other Other +7e58614c-504b-4928-b549-9abd232ed935 1 Other Other +7e5873a8-6a02-49c9-8436-2fa869ee396e 1 Other Other +7e587f64-2984-4f9d-943e-42a7df0a184b 1 Other Other +7e589759-8d47-43a0-a674-9f493993b6dd 1 Other Other +7e590ec1-5092-44f1-8d11-a33474f6699e 1 Other Other +7e591d07-6844-42ba-84e3-c8350e1a5a11 1 Other Other +7e595a67-ae53-4646-9f23-cd6d503ae135 1 Other Other +7e599ccb-13b2-42ca-8737-7d5c85281e10 1 Other Other +7e59ac65-8f1d-41c0-b4c2-3b55e76ee52f 1 \N Other +7e5a5f77-9e12-4a08-9ac4-95ffa3e98ea0 1 Other Other +7e5a6ab5-31fb-4934-8d40-bf46cb478998 1 Other Other +7e5aa7f2-b64b-4dee-b25d-76cd549c855c 1 Other Other +7e5ac710-2524-4e95-8895-0d923058fda6 1 Other Other +7e5b9b32-8d23-4be4-9745-7aff0ef5583c 1 Other Other +7e5b9ed9-aa6e-48c6-b60e-38816caaf55b 1 Other Other +7e5bb1f6-d5f3-4127-9d3c-78c456470c86 1 Other Other +7e5c554b-66f5-413d-aa3d-1318baa16c98 1 Other Other +7e5c8425-034a-490a-8629-57fb1b85a351 1 Other Other +7e5c8e8f-9a5c-4bf8-a251-b49f13fe511c 1 Other Other +7e5c99eb-26d1-4239-95b0-d74c598e07be 1 Other Other +7e5ca2d5-4728-4ea4-a773-40c61e9d93c7 1 \N Other +7e5cc209-1a92-4d55-bd88-9c9d17f5b334 1 Other Other +7e5cebfa-91d9-45d0-abb5-e77fc4c3e8f7 1 Other Other +7e5cf1cd-076f-4086-bea1-9fc2cfff39d1 1 Other Other +7e5d4408-3172-4b3b-a122-e9f9397a7892 1 Other Other +7e5d6439-e648-4227-8fb7-71c8e8e922d3 1 Other Other +7e5da206-2785-43be-9c4e-2d93147c2dec 1 Other Other +7e5daca6-5b4c-4d84-8c48-f068a462fb27 1 Other Other +7e5dc92c-b2ef-4616-bae1-6e8150bacb89 1 Other Other +7e5df37d-a383-43d1-9bce-0a40fa8e0354 1 Other Other +7e5e0014-4940-11e8-bcdc-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +7e5e5b30-0e92-44c3-8d76-189bdb8f0708 1 Other Other +7e5e6e96-fcfb-11e7-9a12-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +7e5f54ed-00af-4e20-8feb-616d4919cbda 1 Other Other +7e5f9500-1f5c-4f70-9349-a6a4f38c7881 1 Other Other +7e5f9610-4f18-4bf3-b9f3-2993b7533373 1 Other Other +7e5feb53-e1e2-496b-aa0d-0bca7f6565fd 1 Other Other +7e60292f-8ded-487e-895f-4b9dc0a2b929 1 Other Other +7e604890-86d0-4f62-94bf-54011fe84e93 1 Other Other +7e608da3-e0f6-4875-9b91-75892a84906a 1 Other Other +7e613141-67d3-4554-8d0c-e37fe8bd0eca 1 Other Other +7e618a45-8e1f-4215-9dee-9853962db9d2 1 James Other +7e61d548-ce0d-4ab7-8350-d3d1a2705552 1 Other Other +7e61eafd-1c0b-418e-a45c-4007ba5f9e8e 1 Other Other +7e62618b-143e-4e85-9242-e2efb41d15d8 1 Other Other +7e62af70-355f-469e-ac2b-aaee3cff2c33 1 Other Other +7e63076f-a1c8-4867-be0a-81a13efa0bcf 1 Other Other +7e63a073-75c3-4de3-b1c9-4986256da2d1 1 Other Other +7e63e6d4-7ad1-4a16-b925-7a18010f5b36 1 Other Other +7e640888-2e8d-4bec-8b05-394d279cd2eb 1 Other Other +7e6411eb-2425-4a84-8537-8b53864874dd 1 Other Other +7e642cd4-ab8b-473c-9b14-d087b475ff3c 1 Other Other +7e6448fb-e231-48b6-90eb-2eccbc779c01 1 Other Other +7e648ac2-757d-4f98-946a-69cbd8b4d7c0 1 Other Other +7e64d27c-235f-4f39-8678-7945fd44acc6 1 Other Other +7e64ec06-8470-46ab-b421-8e46808453cd 1 Other Other +7e650ccf-290d-4d69-bf3a-9fe4f2015787 1 Other Other +7e6526f7-fe7c-4abb-ac6c-eb595bd10f61 1 Other Other +7e652f8c-341b-4cc7-8cf4-8dfb49f174ed 1 Other Other +7e6553d8-b70a-454a-83d5-6b7548961f56 1 Other Other +7e655b53-f2ea-488e-9c2e-a788ac1c4911 1 Other Other +7e656b4a-c1e6-46bb-850d-2255945aeda8 1 Other Other +7e65c5a3-8c59-430f-93ce-dc3182958f5b 1 Other Other +7e65cca1-4204-4db4-bdf1-189ac22d1a00 1 Other Other +7e662271-c5dc-41c6-a519-241d0c9b6885 1 Other Other +7e666030-349c-4f3a-a7d5-7030e650f896 1 Other Other +7e66c18d-d2f3-4866-9d8d-03efb3e34bce 1 Other Other +7e66c22c-0d92-48cb-9dec-f91c62068944 1 Other Other +7e66cac0-c12e-4cea-b031-199cea7a8a8f 1 \N Other +7e66d547-a80c-4f6d-ba70-1f09c6032d81 1 Other Other +7e66d800-2d19-4480-be59-31f764cb14c1 1 Other Other +7e66f525-e0c2-480c-8c7a-c960f84ce3f8 1 Other Other +7e67187b-eff1-4ab9-b186-ed08033248b4 1 Other Other +7e67a951-c8ab-409f-8f92-923107e8b1de 1 Other Other +7e67aab5-1ea2-4627-8848-4e75f31e070e 1 Other Other +7e67bd0a-857d-4b55-9f40-eb9ea356d033 1 Other Other +7e67c651-5fc1-412c-9b71-e7da7307a432 1 Other Other +7e68111f-f100-43f9-a19c-d4232c9c3984 1 Other Other +7e684fd8-5a87-47f4-9677-413095510915 1 Other Other +7e68dd5a-69e1-4eff-85e5-1e43a9f88d78 1 \N Other +7e68ecce-b52a-4141-a96b-f1cec2558bad 1 Other Other +7e6930b5-34f1-4bf9-968b-d2f502f61a70 1 Other Other +7e6948ff-2be8-40be-8f4f-e9db4f91f350 1 \N Other +7e695b35-d460-4c21-b471-ddce2ee4c4ad 1 Other Other +7e699e61-504c-476a-a2e4-fe91183dea81 1 Other Other +7e699f08-d00f-4319-b950-981247bf1757 1 Other Other +7e6a30ed-bfee-4bd8-bff6-aabb35114bf3 1 Other Other +7e6a649c-47ed-4d25-8c56-cc9d0d136834 1 Other Other +7e6a7a20-f9da-471f-a9c1-cbcbd5024175 1 Other Other +7e6a91af-a3d7-4b2e-acaf-55009f862803 1 Other Other +7e6af78d-f200-4552-97c7-35e4052f0dfd 1 Other Other +7e6b3c12-f71a-4e8c-960e-5b4c2f26eb10 1 Other Other +7e6b840a-96f0-4f3e-9c4a-08e5f87feeb2 1 Other Other +7e6bd816-6c25-48f2-84fa-d80cfd0c52ff 1 Other Other +7e6beffe-1595-461c-9b59-887d1d03465f 1 Other Other +7e6c0bab-cb66-4e15-8c49-73e55079aa15 1 Other Other +7e6c3900-4e49-4c98-9821-5fe8daf9381e 1 Other Other +7e6cd6fa-6c48-4d31-bd5b-24c4208005ca 1 James Other +7e6cffed-18e9-46ec-b427-e5366026ae01 1 Other Other +7e6d1ba2-3f91-44d9-ad6f-63becfd25f1b 1 \N Other +7e6d470f-a5d3-4b40-93b4-88d49b1d8b8a 1 Other Other +7e6d701f-d7a5-4c0e-8f66-b39d04a11dd2 1 \N Other +7e6d86cb-70cb-4ad5-9c38-9ce1bc7295c3 1 Other Other +7e6dec28-db43-490f-9f26-1dada9a5f400 1 Other Other +7e6df4a7-e219-442b-a27d-569873947128 1 Other Other +7e6df4e1-b253-455d-95ab-0b303e80ea29 1 Other Other +7e6e1e35-2135-4d7a-8f36-5194b069e328 1 Other Other +7e6e4023-5574-4aae-ba6d-35e646fc5f47 1 Other Other +7e6e581e-7acd-4503-b11f-b31bc68b250a 1 Other Other +7e6e8b96-9517-4b7b-b35f-0d4e04f7e5c1 1 Other Other +7e6eac56-189e-4694-b7a8-8ba5d68096a0 1 Other Other +7e6f27a6-0291-41c1-9625-8b55f40192c5 1 Other Other +7e6f3950-1c7f-4f07-a8e4-b9ae4a732c94 1 Other Other +7e6f504d-4bd6-4fb2-bad0-1799421add5b 1 Other Other +7e6f5d70-a927-4835-8629-3d63baba393d 1 Other Other +7e6f688a-9e49-482f-bd78-de24c392cff1 1 Other Other +7e6fd58c-4d2f-4097-8f8b-1313ffe35376 1 Other Other +7e6fe62b-dcb8-4079-bb6c-f7493c9d60f5 1 Other Other +7e700178-d907-495d-8a5e-468a8938a7b8 1 Other Other +7e703778-9be7-4f79-8e07-2c2315e5fa44 1 Other Other +7e703b06-4a54-4cc6-b0b4-a386918db1fa 1 Other Other +7e70c6f6-8a78-4015-8ae0-5bcdbefde317 1 Other Other +7e70e510-ffd5-49ea-b6b9-7a1ca84d25b6 1 \N Other +7e7146ea-ea26-4353-b406-98282e17ff65 1 Other Other +7e71757a-66d9-4462-b9b2-ff583c102863 1 Other Other +7e7177e1-6f5e-4e4f-8c6d-ed5f2b9565d3 1 Other Other +7e71b594-a30a-491c-a243-fbb8d82519ce 1 Other Other +7e71ce33-cc5f-4ab9-8c93-97ae41bd5d67 1 Other Other +7e7206bb-e32a-4f90-99d2-aa84e1a46d8d 1 Other Other +7e724872-cc74-45cb-9323-f1af9634d0f0 1 Other Other +7e729023-1ec3-4420-97ee-6d03cca92489 1 \N Other +7e72950c-8ee8-4c8e-b762-c7d9d11de5ea 1 Other Other +7e733b1a-da1f-420c-b0d1-219bb63f9733 1 Other Other +7e735e6c-3ecd-477e-a16a-8ed32856cbd5 1 Other Other +7e73b7ac-6634-4b0b-9b14-76ac3dc344a6 1 Other Other +7e73eebf-8594-44f6-8edf-bc9b66615fb5 1 \N Other +7e747231-26cb-4a85-a319-5be9ad316a3a 1 Other Other +7e74a944-d799-4b4d-9a21-2a0127564348 1 Other Other +7e74e666-e482-4e69-8f5f-642b696dbdd4 1 Other Other +7e74e69d-32a9-4ae3-8960-3e72bba828e5 1 Other Other +7e7521cc-27cb-47ba-ae1e-31ef4bdc4e5c 1 Other Other +7e754ecf-9fdd-4500-8b94-3879c0a823da 1 Other Other +7e757df8-61db-438c-9858-e943e34910e1 1 Other Other +7e759623-e83f-42c3-80f6-1b2f54470ae6 1 Other Other +7e75a9e7-46aa-4e2e-8c54-ac3a1f4e6ff2 1 James Other +7e75ebed-23a8-4221-8152-e72e7f4d02d9 1 Other Other +7e75f9ea-43e0-47e3-9346-66c0888af648 1 Other Other +7e76031d-1ec3-4a9b-90e6-37a0d803e465 1 Other Other +7e7617cf-685e-459b-8276-f45bf716dc3d 1 Other Other +7e767ac6-b59f-4548-95f7-917996de3b1d 1 Other Other +7e768cd4-ec4b-4a7c-b854-ded1062aba7c 1 Other Other +7e77119e-9ff6-485b-8afb-32d2d6f45f63 1 Other Other +7e7731ae-a38e-4182-bfc5-c9c52675dc78 1 Other Other +7e775618-f7d7-42ab-be2a-f9e8c31f4ec6 1 \N Other +7e780175-3981-4b1e-a9e5-74fb6cb03541 1 Other Other +7e782139-66d7-4d51-b8ae-9e66a8053bcf 1 Other Other +7e789c62-1824-494c-ad29-07d5ac032375 1 Other Other +7e78db30-7fe4-4833-8b09-e377fd5e9ed0 1 Other Other +7e78f1d1-9f3d-44e3-bf6c-715d326cded4 1 Other Other +7e792ef8-add3-4f53-bc57-7a775388f6be 1 Other Other +7e79bc20-7f49-4601-9058-951fb249f0d5 1 Other Other +7e79fa53-3dae-4f66-8702-0b68d92fc192 1 Other Other +7e7a5518-26d7-4d30-88c8-705f00fc2a7a 1 Other Other +7e7a59dd-8d4e-4538-b361-379380e13b08 1 Other Other +7e7a5fd9-fe20-4b7c-b665-3f55967ba851 1 Other Other +7e7a9768-e1e5-4964-b79a-5bccc26c497c 1 Other Other +7e7ab474-c033-4e35-8c86-31538b37f529 1 Other Other +7e7ab964-b2b6-47af-a4be-831d34e7844a 1 Other Other +7e7ad9ff-ee9d-4649-9c8a-af49c0fbe242 1 Other Other +7e7ae4e9-7047-441e-844f-4f3a94c32fa2 1 Other Other +7e7af8ea-be0e-417f-8c25-edc35566ec2e 1 Other Other +7e7b0492-7f03-4ac1-b42d-d625ed9d946f 1 Other Other +7e7b6815-e86e-428b-8f7d-40651acee909 1 Other Other +7e7b8f95-627e-43e2-b879-c54343923084 1 Other Other +7e7bae48-c1bb-462e-87ce-ae5066b8e47f 1 Other Other +7e7c2740-4ff6-41c3-bc6e-5a9234b12ba7 1 Other Other +7e7c519a-a514-4668-9861-da0126b3d8c3 1 James Other +7e7c5654-b2e4-4277-92b1-bc0351a99d92 1 Other Other +7e7c859a-ee9d-4839-a580-543c85a8e5da 1 Other Other +7e7c97e4-7b93-4b97-8d72-29281d620fc6 1 Other Other +7e7c9959-e5d6-4648-9152-aeb262edaa4c 1 Other Other +7e7ccaa8-6bfa-40b3-bc5b-1555aa757db1 1 Other Other +7e7d7556-653c-4f8b-ac8d-89eb26570fb5 1 Other Other +7e7da869-8a7d-49bf-a117-54829b0a04f4 1 Other Other +7e7db083-c4ba-4d25-81b4-23fef41278a0 1 Other Other +7e7e1b49-5a7a-4f5e-8d22-5a92d6186f9b 1 Other Other +7e7e5eda-1baa-41bb-8f2e-0a3886aadb2c 1 Other Other +7e7e98df-88ae-4702-8e55-5c83f2227a53 1 Other Other +7e7ed66f-683e-4194-81ae-925317d15e0e 1 Other Other +7e7ede5e-744a-4585-bbdc-1759037e0480 1 Other Other +7e7ef442-4b18-4847-93db-a7746e888be3 1 Other Other +7e7f171b-cea1-4c36-aacc-5c66d9fa5dbd 1 Other Other +7e7f9574-0e4c-40d6-acab-20a73db6cf0c 1 Other Other +7e7fa496-620b-4c26-b925-d0461ed5f576 1 Other Other +7e7fb0b2-5b63-4c64-8efa-d94792a1a265 1 Other Other +7e7fdc88-cadf-46ff-ba5a-503db6f84473 1 Other Other +7e8031c6-6f91-40e6-a333-ff57620421a6 1 Other Other +7e804b43-1971-4d33-8e12-dce408a1319d 1 James Other +7e807394-78fa-4307-aef7-154159b41000 1 Other Other +7e8073cf-d889-4271-8377-2190eb5347da 1 Other Other +7e80a730-d0f4-46ab-94cb-dca8ea2d77ed 1 Other Other +7e80a7aa-4afe-4826-8074-acc18a7eb880 1 Other Other +7e81b98b-1893-441f-a00c-8004dabdcec7 1 Other Other +7e81c52e-bb01-463d-987b-4b06b7d3d48c 1 Other Other +7e81ca64-0793-427c-9fc6-9e1c6d1b07be 1 Other Other +7e81db73-285b-43db-a827-591d7eccc53d 1 Other Other +7e8229e3-b41f-4c68-8583-67faffd3cfd6 1 Other Other +7e82325c-939d-43e6-8042-7ec8c1a741b4 1 Other Other +7e82eebc-0ede-4f2f-a94d-7d5347b2a10c 1 Other Other +7e833801-4997-4a4b-9b05-8f69e4b2afa0 1 \N Other +7e8368cc-937b-442f-966b-bab20babbdfb 1 Other Other +7e839679-0cfb-402b-b492-297df99985e5 1 Other Other +7e83d02c-2d25-43ea-b52b-cf630437b1eb 1 Other Other +7e8447a3-41d6-4ded-91b5-503df797abc6 1 Other Other +7e845a83-e76c-4edc-a756-bfdfb812ed41 1 Other Other +7e848a87-736c-4c24-9d60-679469ed2979 1 Other Other +7e84a4fe-d13c-41d9-a85f-a897cb41db7f 1 Other Other +7e84aefc-4600-4dff-9287-ce6c9d37d2c9 1 Other Other +7e84b7ce-13a1-4414-b6c2-544ae4926632 1 Other Other +7e84f3dc-60e7-4440-a835-cf7bad1757a3 1 Other Other +7e84f482-7588-4463-bebc-2083c43d8da7 1 Other Other +7e8520d0-f0e3-4b6d-8cc4-f12a762aad10 1 Other Other +7e85562c-045d-42d6-86f2-6dc5305f6afa 1 Other Other +7e8556bc-d497-47d1-8035-8fcb6b0adf8a 1 Other Other +7e85b14d-3d8a-4074-b293-2949b05e7299 1 \N Other +7e860eb4-e362-477f-8961-5c33cb70cbea 1 Other Other +7e863206-aebf-457e-82bb-50def1a472de 1 Other Other +7e865fef-7d51-47ba-971d-65ceffa84be9 1 Other Other +7e866ecd-7b5a-44d6-a291-08a93ba70c2a 1 Other Other +7e8690aa-e97e-4e28-8fc1-641c81e7f3ab 1 Other Other +7e86c735-3646-4d61-80b2-be5577f2ae39 1 Other Other +7e86d3f6-4dd5-4376-ab43-7ed08395b01e 1 Other Other +7e8702f4-d9c3-46a8-884f-19409767b46c 1 Other Other +7e870478-c4c2-4da5-8043-f4767f38df15 1 Other Other +7e871821-c5f5-43a1-b443-8a7dcd0ed583 1 Other Other +7e873c03-6e17-4015-a21f-acf7750934e0 1 Other Other +7e877203-f2bf-4a01-9cd0-f0701fb5ea8e 1 Other Other +7e87e1b9-fc6a-4f58-9ac9-a2690e0dca6b 1 Other Other +7e880516-57b8-4bbe-832a-4453cfbd9cc6 1 Other Other +7e8841e4-cf75-4bc9-a568-feb0eeb71a90 1 Other Other +7e8887ad-dce5-43b7-8b1a-484f3e61230e 1 Other Other +7e88d3e9-b084-4831-9b8e-0568db1a0da1 1 Other Other +7e88ddcd-3bd0-4295-b299-be3173c34811 1 Other Other +7e892284-bc3a-407c-99cf-8f30e4c12bd0 1 Other Other +7e8931b0-6c85-4774-bade-e80ab47e4aae 1 Other Other +7e89328f-7bec-4eb9-9ff8-73ac752c0053 1 Other Other +7e898eaf-86a7-4f01-b591-54a8bfee9838 1 Other Other +7e899028-8fc5-4ab5-a696-2f6fe45ad9d0 1 Other Other +7e899c84-0ada-48e3-9122-7114a75b1231 1 Other Other +7e89f57a-aa89-4036-900f-7f97b7534527 1 Other Other +7e89f6f8-fab6-438c-b8a3-367dc83710d2 1 Other Other +7e8a0af3-35a4-404d-8c33-165ff6e77c4f 1 Other Other +7e8a17ab-5f1c-43cf-b6cf-a9d013c8ba57 1 Other Other +7e8a1a3e-fab1-41dd-a0bc-6624cb422b78 1 Other Other +7e8ae2ca-6da4-400c-bd03-e21755a84553 1 Other Other +7e8b0a29-1592-4d0f-a700-c5d2e98823e1 1 Other Other +7e8b143c-e561-401d-867a-18842f125bbb 1 Other Other +7e8b2401-d7e4-43af-b71e-dba0d425442f 1 James Other +7e8b4eea-39e0-4f05-b15f-21ec7084a738 1 Other Other +7e8b623b-e3df-4ee5-9fc1-cf72da67539d 1 Other Other +7e8baa88-5f55-43cd-986c-e1c70c276588 1 Other Other +7e8baf61-6921-4e5b-a91f-311f5ce28f48 1 Other Other +7e8bca54-5952-4a8c-b254-41057c637461 1 Other Other +7e8c19da-94b1-4120-94e5-52c3924347e6 1 Other Other +7e8c61c5-c0e6-4eec-acde-743d314f68dd 1 Other Other +7e8c9e84-dc5b-4041-9fbd-5b82b848363c 1 Other Other +7e8cdabc-1249-4706-9a75-b7a4f4d1a4f1 1 Other Other +7e8d164c-bd16-48d6-a053-3cdf5d21b7d9 1 Other Other +7e8d435a-85ec-4e23-a91e-8ea03442abaf 1 Other Other +7e8d6028-3416-4a82-b5b1-e04b812bd06b 1 Other Other +7e8d607d-b3c0-4c66-80d2-1aefc23b733f 1 Other Other +7e8deda6-3488-4f82-ac0a-b2c7eb8e9121 1 Other Other +7e8e082e-605b-469e-9852-6d51e02065ec 1 Other Other +7e8e122d-1d3b-4595-9e53-fdb61429bfc6 1 Other Other +7e8e1f63-5296-4eee-b5dc-f75f1318417e 1 Other Other +7e8e536a-8dc5-4129-bdd3-c761cdbb644f 1 Other Other +7e8e76df-3dea-4e87-b843-75397593cd77 1 Other Other +7e8f238b-a33c-422f-a16a-7808d691b150 1 Other Other +7e8f30d1-790b-46b1-a459-53deda883046 1 Other Other +7e8fc5e3-3c04-48ba-adf1-1fb138a17e6e 1 Other Other +7e8fd033-479e-49b4-b16f-4b96020e1bcf 1 Other Other +7e8fd585-05eb-4c0c-96b3-231bb8707f17 1 Other Other +7e8ff910-719d-4fc3-af4e-2d9cfae0851e 1 Other Other +7e901494-483e-4055-815b-29b4bec7083c 1 Other Other +7e901807-2e37-47e3-b3cb-36479d755ad7 1 Other Other +7e903282-fb82-496a-b933-6d2265bae2f9 1 Other Other +7e905a52-7622-4ad6-beda-a52c6c5e9ced 1 Other Other +7e906d57-6419-43f1-94ab-580deba3f0c0 1 Other Other +7e90be09-3a67-4802-a3b8-ede32bdd9e1f 1 Other Other +7e90cf00-d621-4256-b84b-cf2512076f7e 1 Other Other +7e9170b0-b537-4265-ba32-285c2c490566 1 Other Other +7e91b5c2-1f7f-4c5c-8458-526616ee233b 1 Other Other +7e91c72d-4b90-4aa4-9462-f43cc4eeaecf 1 Other Other +7e91fb48-9236-4297-842d-760fa29609f3 1 Other Other +7e91fccf-ca73-4a0a-ace2-ab565505aac7 1 Other Other +7e9214f4-a73a-4892-8753-a5355e2bd606 1 Other Other +7e925391-e3cc-42f8-98ac-ee931eab8c20 1 Other Other +7e92606e-66d8-4030-b8c2-7878181c945d 1 Other Other +7e9275fd-6682-46f3-a622-bb88daebaaa7 1 Other Other +7e92f39e-3ec9-4b08-8547-36003fb94836 1 Other Other +7e9306fb-4eed-4b08-9b01-f7c0654fceb4 1 Other Other +7e931119-c0d3-4a10-b59c-76409167f730 1 \N Other +7e93825d-c9c9-4708-be32-521eb489cdba 1 Other Other +7e938ce6-03fb-4490-9855-1a2c6518e1f3 1 Other Other +7e9394ba-fe89-4a19-82c6-3887a7476962 1 Other Other +7e93ce92-082a-43d4-9bf4-32d9f7302d68 1 Other Other +7e948734-0dde-4625-aadb-1c97fbc924c1 1 Other Other +7e94be2d-2c04-4964-8481-cc266c8d4704 1 Other Other +7e94c154-3ba2-46f5-8ada-367e593722e7 1 Other Other +7e94d5c8-5565-4c3e-8fe2-56c3c20cfed9 1 Other Other +7e94d879-bbbf-4ba8-a376-417b93922d56 1 Other Other +7e953836-07a2-4f9c-8bc0-a5e473e6bc42 1 Other Other +7e957573-4158-4b00-83aa-f2bfdf8118dd 1 Other Other +7e960dfa-8d50-4072-be1c-4735055d5ae4 1 Other Other +7e961a62-a4e3-4780-99e5-7031d34a6a96 1 Other Other +7e9632c7-f34e-4961-a4e4-40fca3c3fe4d 1 Other Other +7e965cd3-89e6-4ac0-ae90-ca0d3f45b78f 1 Other Other +7e96ae12-0473-4d37-9843-5339de2421ca 1 Other Other +7e96ef27-ac93-44f3-ad6c-2936dca65b19 1 Other Other +7e97160a-daf4-4610-8cb9-cc9a073bf876 1 Other Other +7e978d91-526e-4782-8f6e-5ebafaecc279 1 Other Other +7e97ba00-254b-4848-ad88-50eac6b033b9 1 Other Other +7e97d069-1ecf-46ff-8808-76bb3900c0f3 1 Other Other +7e985b77-93c8-45ce-be82-b200235aea39 1 Other Other +7e98f628-aa18-4544-8de8-8d0d74e86535 1 Other Other +7e990c2c-caf8-4c40-b06b-4b34f45a1a3a 1 Other Other +7e994ea7-f4d0-4ff5-a98f-992d223a1dac 1 Other Other +7e996fdd-92a7-4dd7-8035-00a1c0903e2e 1 Other Other +7e999ece-b34e-4c53-a182-f71c8db52eab 1 \N Other +7e99c4ae-de01-4d76-a478-e19f896720df 1 Other Other +7e99c633-e28f-481c-ac3c-028bf66f3e4c 1 \N Other +7e99ee8e-e037-4da9-b8be-f40c4581f9d6 1 Other Other +7e9a29be-5b9b-4097-8a14-ff7e12a2a4ea 1 Other Other +7e9a2deb-6bde-4566-9a68-8af42e911895 1 Other Other +7e9a3a66-4b3d-46ad-96da-3da757a2fed0 1 Other Other +7e9a4ec4-c2fa-4297-ac09-cb39ed33175a 1 Other Other +7e9ad4fc-4190-4d3d-af5f-c6c08e22b067 1 Other Other +7e9b03a6-6539-4bd4-abdf-ce4da153594b 1 Other Other +7e9b1e4d-006d-42f2-b8ea-5647e11b9b33 1 Other Other +7e9b9212-a7a1-426c-8b63-42e7f89ad25b 1 Other Other +7e9b922b-1932-4ea6-9343-07397e23743e 1 Other Other +7e9bbfe9-1b2b-44cf-ac8b-e35d1f984f2f 1 Other Other +7e9c165d-81dd-4dcf-9905-c890ebd29b5a 1 Other Other +7e9c5401-9edf-40c7-89ce-5a5f51dfd7d0 1 Other Other +7e9c8256-d624-4a77-ab2c-c9f74cd905b4 1 Other Other +7e9c8508-dd64-4cce-8fcc-fbdd2122f511 1 Other Other +7e9c8e1d-4ac0-4f39-bb07-55ce501e494e 1 Other Other +7e9c9ecc-27a5-4776-ad36-2e9fd1c3f96e 1 Other Other +7e9ca9b6-e687-48fd-b581-08f9d9fbd724 1 Other Other +7e9d54f6-c3d5-496a-8873-1725d4ae52b1 1 Other Other +7e9db9fa-ea48-4071-aa5f-1ad05f1f8733 1 \N Other +7e9dd91a-db18-4b1c-a4db-ed21571b3ae7 1 Other Other +7e9dfde3-df08-4e6c-8129-ac561475b82e 1 Other Other +7e9e0e5e-f01d-4600-a221-85c0f13fc654 1 Other Other +7e9e2eae-e2bc-489e-a4ce-5b67703d15b4 1 Other Other +7e9e326e-b790-4be7-87b6-bc197600ba0c 1 Other Other +7e9e403d-f476-4d2f-aa32-cdd602d7bdd3 1 Other Other +7e9e56cf-9eed-4035-b7d5-a0bc9fc21590 1 Other Other +7e9e7e52-3854-4c7f-8dff-a29c924e8bd2 1 Other Other +7e9e8d60-bb7c-45cb-ac63-8e80c9e7a381 1 Other Other +7e9edaf6-0c9a-41a8-b1aa-983d6702fda6 1 Other Other +7e9f4b33-b8c4-45ea-a8e2-f57cbee52175 1 Other Other +7e9f5ef0-f8c3-479f-91f8-4a4e1e2a7b74 1 Other Other +7e9f68c3-41e6-438f-a9f3-c2cee273809c 1 Other Other +7e9f6f04-130f-4738-89ee-516bb454de6d 1 Other Other +7e9f7f28-55ea-409c-baa5-f2dac801dd9b 1 Other Other +7e9fd5a1-e40f-4b59-a2eb-0d90fc1a0ebd 1 Other Other +7ea03791-278b-4afd-8f97-eb9216e54796 1 Other Other +7ea04560-2b90-47c7-a814-0e9098cec903 1 Other Other +7ea076b2-eb29-4719-a501-5c6cdc6acc78 1 Other Other +7ea0d4b7-cea0-43a5-b18e-4ccee281ab10 1 Other Other +7ea1031b-1270-4e7c-9106-bd9fcac79b19 1 Other Other +7ea12c40-90ab-4f54-aece-4a8833aed798 1 Other Other +7ea15c8b-1422-495f-b083-0e7de85b3a66 1 Other Other +7ea16cc9-cbda-4e28-bec7-5171597420a4 1 Other Other +7ea17928-3ca9-4a3b-9d56-c44c7403f7c6 1 Other Other +7ea1847e-2739-4912-9ca7-889b965fef49 1 Other Other +7ea19b8a-e4cd-4319-8052-d15bc5134c9c 1 Other Other +7ea1a125-80ac-4457-b06d-5778376c0893 1 Other Other +7ea1a8e8-4506-4ffe-9ab7-615922df34fa 1 Other Other +7ea1aee6-3969-429c-af7c-ba8e2f69c622 1 Other Other +7ea1e7bc-18b3-425a-b4e8-035395ba7fa0 1 Other Other +7ea1e846-6e78-4a88-9085-5f5c0e5028fe 1 Other Other +7ea22252-f239-4881-b6c0-e6dc1757c5a9 1 Other Other +7ea22c40-fa06-4399-8123-687984b914ed 1 Other Other +7ea23ece-c72c-4472-9ee9-969383e2a02f 1 \N Other +7ea2a618-b988-404d-88cb-48ee517079e6 1 Other Other +7ea2b836-fdcb-4ca3-974d-78e8ce48e8cb 1 Other Other +7ea2f29e-36c1-455e-8a3a-7e5ea4374384 1 \N Other +7ea2f5b5-9962-4469-8abb-f1892012f2d3 1 \N Other +7ea308d4-1a84-4a70-a955-8098c251f168 1 Other Other +7ea325dd-0a28-442d-b094-232bef9262be 1 Other Other +7ea37cd0-5fef-4537-9751-e4e168ca9c49 1 Other Other +7ea3ccac-575a-40fe-aa24-c32d94c6615f 1 Other Other +7ea3e87c-06e2-4391-a51f-34b1a35e15ca 1 \N Other +7ea3f82d-fb76-4ff3-a529-a165841b278a 1 James Other +7ea40a20-b4de-4aae-adee-4d1aba66d6a3 1 Other Other +7ea45145-3609-4e05-8736-b4399ab6a2b0 1 Other Other +7ea46c77-5d49-4157-9919-65337b0f6d55 1 Other Other +7ea49adc-ef9e-467a-9bb0-9a4a4ebd6e3d 1 Other Other +7ea4a398-e730-49d2-922c-939550d300a8 1 Other Other +7ea4cf88-4ce7-4877-9597-db317123c9bf 1 Other Other +7ea4f5c0-0d90-4048-aa5f-e04df9c563d5 1 Other Other +7ea5013f-0efa-4b80-8dda-40204c1cf163 1 Other Other +7ea516e9-24d6-4418-921e-bb0766cbd985 1 Other Other +7ea530cd-757c-4673-a0ed-b2cb3fef2384 1 Other Other +7ea5f062-98c4-4100-9ba2-89dfaa861372 1 Other Other +7ea6153c-fb1e-4909-bd99-27fff8a36dc3 1 \N Other +7ea6248b-719d-43d5-8bbb-4dd09f773ee8 1 Other Other +7ea70bb9-40e4-4e9d-b629-87c51cf0262d 1 Other Other +7ea7212c-68fe-476c-be9b-b1077fa5e006 1 Other Other +7ea73638-2aec-4ed2-9fe8-4b37aef350cc 1 Other Other +7ea73a67-ac16-431f-9afd-2ac8741444a3 1 Other Other +7ea74597-a264-4c34-ae3c-22968b8dd4e4 1 Other Other +7ea7af1e-cb9c-470c-a6e3-6aacc7569cb1 1 Other Other +7ea7bb97-04b5-4727-864a-19213ceb4174 1 Other Other +7ea7bdd3-8597-46b5-84bf-4738dd51564a 1 Other Other +7ea7ce1c-5bad-41e9-a9c9-5492b4da5810 1 Other Other +7ea7d34d-363e-4594-a23c-65972746832a 1 Other Other +7ea7d5c2-fa74-4623-9f33-6b8ee71dea22 1 Other Other +7ea7db3f-4e34-4d92-9a8c-c03f59b1767d 1 Other Other +7ea7f3d1-8e2b-4de8-b441-51001a249280 1 Other Other +7ea8438a-b6cf-49e9-aa7d-022a32cf5ca9 1 Other Other +7ea862d7-2321-4ef1-afe2-6a62c635c80b 1 Other Other +7ea88a5f-b266-414a-ac37-b29daf21a2f5 1 Other Other +7ea89109-f809-411a-9534-e3a66c7e49b7 1 Other Other +7ea920f1-434d-404d-b414-559578a22117 1 Other Other +7ea95ed7-db6a-4b4b-b8ae-826dc9694541 1 Other Other +7ea9f3d6-ae93-4c74-9735-5af7f9c1abaf 1 Other Other +7eaa619f-1c41-428c-8308-6572a8ce41bc 1 Other Other +7eaa657f-cc52-4152-b52e-e86b4980e0df 1 Other Other +7eaa6a94-599b-47f4-8390-fde74608e123 1 Other Other +7eaa6b80-3c4a-442b-8c89-f45fc41f5a09 1 Other Other +7eaa6e12-ddf0-4c13-bc21-a1f82e96483e 1 Other Other +7eaa729c-51cb-47b0-87ec-d8c1bc1692c7 1 \N Other +7eaabe3b-d136-4e6b-a96b-57fe41276340 1 \N Other +7eaabf71-0abf-4817-abd4-c37373e6b33f 1 Other Other +7eaaf8f0-b2be-494d-bf08-c38f192440ea 1 Other Other +7eab46e1-aac7-4b18-a515-98c0d1927cba 1 Other Other +7eab51c9-2328-4e39-9ba3-4a56ac14fc2d 1 Other Other +7eab5e79-158e-47d8-b899-2003458bcd22 1 Other Other +7eab88ee-5e6e-41bd-9c68-b268493f7bf1 1 Other Other +7eabb229-480d-465f-afe6-9e504ab9ff67 1 Other Other +7eabd291-ac58-4309-bd33-3e33952713cc 1 Other Other +7eabe9ab-bc5a-4f40-acf2-d61fb42c737f 1 Other Other +7eabfd50-10b2-4ec9-a04f-a4f7d0e40cdd 1 Other Other +7eac288f-5c71-42b1-8daf-9dbed3097c95 1 Other Other +7eac93f5-415e-4614-ab98-e81a9f108d2d 1 Other Other +7ead2e10-d20d-4e87-88cf-dd705e3c2902 1 Other Other +7ead3629-5879-4609-b3ce-26857c6178dd 1 Other Other +7ead6adf-f282-4211-97af-c5af4756259b 1 Other Other +7ead79d8-c43f-43e4-aea0-d189b23f1060 1 Other Other +7ead841d-0f73-4e45-b916-1a94d5b4b87d 1 Other Other +7eaddd54-ae4c-4378-862b-4c957903ace6 1 Other Other +7eae046f-94c2-464a-87a4-5c9451fe462c 1 Other Other +7eae1bc0-44a1-4978-afc4-6dc0c4c23410 1 Other Other +7eae5515-0806-49d1-a0f6-b869bea1f097 1 Other Other +7eae9181-fc69-4a9a-81ac-735e8fb80d55 1 Other Other +7eae9189-bb38-4131-b907-f01304b14ee3 1 Other Other +7eaea979-80ce-4776-b5ea-bd408f81b493 1 Other Other +7eaec544-8533-427d-96ba-70a4ca912268 1 Other Other +7eaee61c-5d96-4ac8-95c5-92e3e4670c58 1 Other Other +7eaeed9f-0e46-4672-adb2-73e6d114e2be 1 Other Other +7eaf1378-8744-4e58-99d7-fee677305f65 1 Other Other +7eaf3a49-ec82-47c4-b753-e12b665b1072 1 Other Other +7eaf600f-b81f-45f7-9bfa-afd397134830 1 Other Other +7eaf88c7-9273-435f-8660-ce834bde3016 1 Other Other +7eaf9937-6669-4c8c-ad19-1def111b51ef 1 Other Other +7eafaaac-04b8-4dd3-bbc4-b216c815604f 1 Other Other +7eafbe6a-fb3f-4a96-abb4-3c0b149bb0d2 1 \N Other +7eafdcd2-7041-47db-8eda-57b3481b6e93 1 Other Other +7eafe065-1582-4344-a7b8-b823a634025c 1 Other Other +7eb0e80b-cf79-42c8-9481-1f708feb1200 1 Other Other +7eb107a1-5673-477d-877a-8d3a3555d9ff 1 Other Other +7eb1a778-df64-457c-95ac-045f20c62efb 1 Other Other +7eb1bd4d-83c0-41a9-ac72-5a1754ad787d 1 Other Other +7eb1ecb3-356f-4f4d-b300-9febe68de4e8 1 Other Other +7eb1fc3f-6ace-4169-a160-a88066d55852 1 Other Other +7eb20675-30cb-4b01-ba02-7b1c48fd7c5e 1 Other Other +7eb27f83-be36-4e15-a22e-1f9c66e034f3 1 Other Other +7eb29f1c-2a0c-4ceb-9f06-a18e49097705 1 Other Other +7eb2cab6-879a-485f-b94a-3f260a2f111e 1 Other Other +7eb2eed2-06ff-4c8a-b9cb-4f1c20c4a199 1 Other Other +7eb3059f-a3a3-43fa-8770-bf7d64db0253 1 Other Other +7eb322b2-74d3-4c95-862a-acf9b7905f59 1 Other Other +7eb340af-dddd-465c-9ee9-95214ee92578 1 Other Other +7eb3b8ea-f659-4083-ae8f-d8109e1757e0 1 Other Other +7eb4475b-2c9b-4c72-bfc2-5ddbdf92365d 1 Other Other +7eb479bb-83f9-41ec-9bb1-c703aaeeac3f 1 Other Other +7eb4cedd-0575-434c-b1d4-adb3fd6ef74e 1 Other Other +7eb5382a-6322-438a-a71e-2980b79e9753 1 \N Other +7eb572ef-dcd0-463c-a1a0-91e2589e88fe 1 Other Other +7eb589e8-a3bc-47e6-b047-9a4d9a8d3ff8 1 Other Other +7eb58f24-9b7c-4e47-bc66-7f4ad375932a 1 Other Other +7eb5aa1c-35bd-4f7f-a2af-85251a7a0dfd 1 Other Other +7eb5ef41-1a13-4841-9e4c-6712bc4ba19e 1 Other Other +7eb60a2b-1655-48fe-88b6-629918475321 1 Other Other +7eb692ef-db7c-461d-b43f-7448c5c50df2 1 Other Other +7eb69602-6e52-4dce-ae95-f761d587569f 1 Other Other +7eb69632-ff4f-43a2-b0f6-65df593a6033 1 Other Other +7eb697e7-62b6-4bec-b8ec-fe5af143ca22 1 Other Other +7eb6f82b-3245-49a6-9ce9-fc6c96cd8c35 1 Other Other +7eb70b96-778b-4e55-8fc8-5388bde4a397 1 Other Other +7eb74c4a-3878-4ad1-9996-4552ad38aa15 1 Other Other +7eb7e8ed-e585-414e-8924-6063f0e2d7db 1 Other Other +7eb81a50-9bc3-40f1-b559-7415039ab981 1 Other Other +7eb85374-5eb2-4234-abe0-a18d9d523482 1 Other Other +7eb85e12-1158-42f0-900b-584680cc6ad6 1 Other Other +7eb8ea70-27f9-4303-ab68-18dcd4bdca9f 1 Other Other +7eb8ef62-52a0-4142-a4ca-95218220debf 1 Other Other +7eb96043-af90-4cfd-8c52-838aba27ad3a 1 Other Other +7eb9ab5b-2062-4c75-b58e-db07ec771cf3 1 \N Other +7eb9b919-8a79-4b1f-88f7-f75809f0dbc8 1 Other Other +7eb9ebfa-e220-4438-aaec-ec2cd49c80ae 1 Other Other +7eba235d-baba-4f08-9bb2-5317d703929f 1 Other Other +7eba352b-8ee2-4252-8ac6-e9932fd801f3 1 Other Other +7eba3ec0-4e8c-4106-b538-beed93d4b54e 1 Other Other +7eba663d-1c13-4f9b-abaa-d1a901b49cc8 1 Other Other +7eba8b00-70b7-4909-8d35-3c77a03116ea 1 Other Other +7eba9b6d-e876-49c4-a991-53d7a9aecc80 1 Other Other +7eba9de1-6b03-4a4f-b4de-72f9b8f0c7a8 1 Other Other +7ebaf0a6-7443-453a-8429-212d7f4afda9 1 \N Other +7ebb288e-836c-4aa5-8dfe-4a98364678ff 1 Other Other +7ebba4bc-c5dd-49d3-8b72-bf8315a62715 1 Other Other +7ebbae9b-7fcb-4f49-b922-f89c8c4f12fd 1 Other Other +7ebbb539-b0ea-4284-969c-9f7990ca80c1 1 Other Other +7ebbb715-f355-4c48-a103-a492442ed197 1 Other Other +7ebbc172-710a-492d-a778-b0664cba250f 1 Other Other +7ebbdb27-1285-4ff0-bfa5-60765ad04810 1 Other Other +7ebc241b-c72c-4b80-b750-a1b78ef550a7 1 Other Other +7ebc38ce-e241-4eaa-ba9a-3bb2ec1e05d8 1 Other Other +7ebcd661-769b-4068-b819-7c48033db28a 1 Other Other +7ebcfc5a-c788-498a-979d-d8d7b68b1988 1 Other Other +7ebd0f50-2614-403c-960f-415ce76a2f83 1 Other Other +7ebd18cc-c8e4-41f4-90a4-26177002f66f 1 \N Other +7ebd680d-7332-4126-8e56-ff7e5e0abd5d 1 Other Other +7ebda2ce-fba9-4396-81e2-da91ce5a0b9e 1 Other Other +7ebdd938-b5bd-43ba-b1ee-9db6939f0e19 1 Other Other +7ebdf1a2-854c-485b-b815-2c1793e98747 1 Other Other +7ebe03e4-2d8b-42e2-9330-3639a79e074f 1 Other Other +7ebe6ce2-9770-491a-bf72-6c941b679209 1 Other Other +7ebf0fd4-4402-4d90-8f34-af4d5caa5d4c 1 Other Other +7ebf2fef-6ace-4123-ad53-77ee12ca4fbe 1 Other Other +7ebf8ad1-a012-4c44-b8c7-ae9c3450e0a5 1 Other Other +7ebfb6d4-bee1-49ea-94ca-66a6d9bb9456 1 Other Other +7ec01838-03e4-476b-9acc-ff9847593a6e 1 \N Other +7ec02cd9-3236-49f3-99a0-bd604d88d201 1 Other Other +7ec033f4-e6f6-4ad4-946a-3f4a7300acf9 1 Other Other +7ec038c3-f962-4b50-be72-1a7c34ccbabe 1 Other Other +7ec051ec-d983-47e6-9fa1-217b11c8b43e 1 Other Other +7ec0890e-d748-4402-99cc-ef0a6507a8d4 1 Other Other +7ec0b495-dc36-4d37-8b1a-bf27357f76cf 1 Other Other +7ec0d291-726c-4449-8cd1-d616285151b0 1 Other Other +7ec0d2c1-6439-4ae1-abb0-f98bca7da87a 1 Other Other +7ec0da26-03d7-4aae-92b4-4b316ee6cc1c 1 Other Other +7ec15f54-5738-47af-9e5f-f633c9349b71 1 Other Other +7ec18e1e-711c-47d9-b3c5-6d2c25f8ae36 1 Other Other +7ec192a3-40bc-4544-83a2-c65bbbef77cc 1 Other Other +7ec1a573-e94e-4c59-bb0a-1f17578d4eeb 1 Other Other +7ec1dc84-5c66-4486-90b5-f4f46e2f74e7 1 Other Other +7ec2293a-cec4-4031-8cc7-baf331ea898f 1 Other Other +7ec24481-36b2-4be1-990b-1249ae2f23b6 1 Other Other +7ec2c391-98d9-4e8d-ab58-52ceb737a733 1 Other Other +7ec2d8f3-2995-4649-8242-36357880d740 1 Other Other +7ec353f4-dd28-43a8-bf6f-beaba6912693 1 Other Other +7ec35d79-ed60-4bf1-be80-c34faf437575 1 Other Other +7ec3a9db-a9bb-4755-a94b-8ebd147aeb6a 1 Other Other +7ec3c6a9-6e3e-4472-824e-3654aa0e20ea 1 Other Other +7ec3ea0e-4642-4b2b-9861-ba89c53cc57c 1 Other Other +7ec3ff4a-616d-4f2e-90fc-d349a2fededd 1 Other Other +7ec41181-b2e8-456a-9293-fe50c842fafd 1 Other Other +7ec458bc-5b00-4b8e-82cb-0e01528989ee 1 Other Other +7ec45cba-f512-43bf-b692-25bdd4bf72da 1 Other Other +7ec46dce-4460-4ab5-b31d-4b8393ba69ee 1 Other Other +7ec4e1c7-409a-4068-8519-bf33f507bd2f 1 Other Other +7ec51d6a-1821-4267-b243-1f291d8be165 1 \N Other +7ec57c2d-4cbc-4439-b30d-17fdeb60391b 1 Other Other +7ec58413-c0b1-4062-957a-b5d1bb34d12c 1 Other Other +7ec59d3f-bdea-46f6-9bd1-981495d33177 1 Other Other +7ec5c417-43fc-48c0-a773-0497164ba8ec 1 Other Other +7ec5d31a-4b11-448e-a6d1-40d73edf5c16 1 Other Other +7ec5dd22-26b4-4ec4-b315-fe10b9c00bf7 1 Other Other +7ec5ef5e-967d-4667-aacb-d630a89eeb8a 1 James Other +7ec64258-0879-4fb1-87c2-b65539ad71ca 1 Other Other +7ec6626d-557b-4ea0-89e2-7b49c0bfaab3 1 Other Other +7ec68ace-20a2-4287-85b2-bc8fdeac0693 1 Other Other +7ec6a9ad-0345-40a4-9a5e-63519ece510a 1 \N Other +7ec70faa-d00c-4be3-9a79-eb10abd1e780 1 Other Other +7ec750e4-31aa-470e-a531-6fa3ecafe681 1 Other Other +7ec76669-b2a9-4ec0-a639-ef4e7d903df8 1 Other Other +7ec78303-7bff-4fb0-b459-55b050b75115 1 Other Other +7ec79bcf-fd53-4121-bb28-968e783ddd3b 1 Other Other +7ec7a574-217a-40c1-8d70-5a442ddc73c7 1 Other Other +7ec7c1dd-009d-4b09-a5a9-f4eeab5cafc6 1 Other Other +7ec7cb0e-1d61-40e1-9224-0a04917eb2f2 1 Other Other +7ec8c40a-e534-480d-8e67-7e120c37af00 1 Other Other +7ec8c79e-4f3a-4fb7-a769-6fbe95e2105b 1 Other Other +7ec9011c-dffa-4500-9ca8-bc15573b6774 1 \N Other +7ec91290-8177-4811-8010-54bf68c7be0e 1 Other Other +7ec91bd1-a3c0-4296-94b3-86d8cbb0a4a5 1 Other Other +7ec92caa-929e-4639-ba5c-3118a08a412d 1 Other Other +7ec98c57-1944-40d9-8f72-5a07771dc565 1 Other Other +7ec9c33b-ccd7-4994-a732-06546df3a92f 1 Other Other +7ec9c3e1-3391-480c-9daf-f1146ede3ed1 1 Other Other +7eca144e-a54f-4313-a5d3-3dba75f58a03 1 \N Other +7eca2df4-67ea-449c-abe7-b0fe5dd23882 1 Other Other +7eca7d79-77ac-41d4-80c0-2704e0a4023b 1 Other Other +7eca8d61-7282-4823-9f90-00a4dcb0d5aa 1 Other Other +7eca92b0-6d13-4f77-aeed-6a45db132301 1 Other Other +7ecac055-86ef-4d32-aea8-591fd9fe7601 1 Other Other +7ecaf218-7fe1-4173-a018-ec65fa84d3e2 1 Other Other +7ecb02f6-40cd-43bb-a89d-5adc1379e7ba 1 Other Other +7ecb0f78-587c-46d8-865a-7b6e38bb6848 1 Other Other +7ecb2372-251f-4f2f-9f6c-687e397414fa 1 Other Other +7ecb2372-5b0c-4975-b98a-0210ecb79983 1 Other Other +7ecb288a-bd51-4794-a36a-c6ad4610c60a 1 Other Other +7ecb2acb-f3a9-4b42-aacd-919d9be1b60b 1 Other Other +7ecb2d5c-1176-43dc-aa4c-10bd0faee031 1 Other Other +7ecb331a-91bb-49ee-9ed7-b160397cb2f9 1 Other Other +7ecbad23-fd00-4d8f-9f02-b341b36e7b15 1 Other Other +7ecc104d-ca7c-45eb-9dfb-aa125f6e2eb5 1 Other Other +7ecc392f-8638-4d83-8897-c90d19edec77 1 Other Other +7ecc7d46-3f58-45bf-8714-a96b625d7b6d 1 Other Other +7eccaf32-70b6-4ac4-8196-c9a488710164 1 Other Other +7eccee53-f775-453c-ba92-c9e82d5d3439 1 Other Other +7ecd31a2-c120-4cbf-959e-88bc2de06afd 1 Other Other +7ecd3f36-d619-43aa-8598-d6949836d652 1 Other Other +7ecd469f-d06a-4015-b575-93c7415b6c0b 1 Other Other +7ecd709e-f93f-4c1d-b4db-7e399549ec04 1 Other Other +7ecda25c-3f56-42f6-9a6e-d757dc96e958 1 \N Other +7ecda983-2edd-4995-a2ab-c0ee70897f8f 1 Other Other +7ecde6a6-bc6a-4440-bb49-2cfab894f1e2 1 Other Other +7ece1315-e33d-4f5c-91a4-d57f5e9f76c2 1 Other Other +7ece3bd5-caf0-4c9f-aa75-94e9a1629911 1 Other Other +7ece4075-bb15-49c6-bf3a-3915e2d5b560 1 Other Other +7ece6ff1-1bb1-4541-a90f-5eefe6ae6ee0 1 Other Other +7ecec3ce-ea21-42bb-912e-fe889c81dc01 1 Other Other +7ecf0061-1b8a-44bd-b537-910afc0814ae 1 Other Other +7ecf59f6-0138-42a4-bd55-2938c95aa33d 1 Other Other +7ecf7df7-4f94-4564-bd62-4c6bdc1a724d 1 \N Other +7ecf94c3-8956-4c54-ab2a-ee10b057ae62 1 Other Other +7ecfd63e-e876-4388-bee4-b12841cb0617 1 \N Other +7ecfeb62-8f37-465a-8fdf-fae746e9f863 1 James Other +7ecfec72-5f17-4699-bfa1-2d4fbef14847 1 Other Other +7ed00d25-1670-4a5b-8b03-89efcafc0589 1 Other Other +7ed0209e-afc6-4f3d-a449-bc796836a44e 1 Other Other +7ed080f3-0667-4a16-8281-5b831666d872 1 James Other +7ed0b1a4-b340-4a32-b55a-147e4954ab3f 1 Other Other +7ed0c555-b0c8-4b5c-81fe-cd9d1a3b7124 1 Other Other +7ed0f436-732d-4cbd-bdb6-e5e6f02fa752 1 Other Other +7ed13545-9682-4a78-b161-5b1d33f1eae4 1 Other Other +7ed13b0a-db86-4275-b609-a60eca98c310 1 Other Other +7ed15f05-64ca-4575-8c2e-5f093116560a 1 Other Other +7ed17dc8-547f-451b-906e-abe45a627374 1 Other Other +7ed1b93c-afe4-4fc1-9135-9edaa61c467a 1 Other Other +7ed1bd90-85e9-4f26-99ba-c682f80d6827 1 \N Other +7ed1cd02-172a-4bf2-8ecd-d34f453be913 1 Other Other +7ed230c2-5af3-429a-a0ca-c4b49f07c665 1 Other Other +7ed27902-5eb3-4405-9619-d4b30c4a48bd 1 Other Other +7ed2ecb0-6f1b-48a7-889e-5bacb43d3aea 1 Other Other +7ed3ad34-8b68-45d9-ab4f-a199d40decb7 1 Other Other +7ed3f2f2-8485-449d-84db-b6199f4a8c28 1 Other Other +7ed400a4-bf94-43cb-aa96-8b8d98e188c6 1 Other Other +7ed42a06-1f72-49b6-acb5-cc1f7c9bfc38 1 Other Other +7ed46aea-04be-4147-b6f0-59e42f91e535 1 Other Other +7ed4e551-8f41-4b7d-9d6a-02ff551f35dc 1 Other Other +7ed59436-a6f1-43d7-84c3-4bdd81dcc291 1 Other Other +7ed5d5d9-da05-4099-b6b7-8005d0e9f5e0 1 Other Other +7ed6053d-0c45-4e0a-b528-901b37cdf0b1 1 Other Other +7ed63469-65ba-441d-84d6-ed92d8d48c70 1 Other Other +7ed65308-fffd-4f9a-b476-f8cd7d4f0e1b 1 Other Other +7ed67e4c-e731-435f-ab9d-2caee0125f05 1 Other Other +7ed6b4bb-71a1-41e6-aa2f-7d58491c6216 1 Other Other +7ed6d436-c2ee-4776-9e01-08a08f9ab0f3 1 Other Other +7ed71476-8a8e-4509-8558-4031168cb60b 1 Other Other +7ed73966-792d-4ddc-a59e-78f9ae912d95 1 Other Other +7ed74bf7-3bb6-4d8c-895f-a54377bb9ddd 1 \N Other +7ed76c7a-43ae-4535-bdeb-c49827cc6b75 1 Other Other +7ed77e7d-7b77-457b-9c46-2cfd32492904 1 Other Other +7ed78338-042c-46cb-ac54-d630fd613398 1 Other Other +7ed7b4db-067a-4ad4-9dcb-32d9bff36ba8 1 Other Other +7ed7c5b6-8692-417d-8cbf-1b6074ffedb8 1 Other Other +7ed823d3-467f-45c8-a22c-12d1b1a8f473 1 \N Other +7ed86c6e-93df-4e45-b354-12a696627818 1 Other Other +7ed8b83b-cc25-4023-813a-0c28c40f2220 1 Other Other +7ed8d8b6-3391-4321-9e4a-60eb71bfac28 1 Other Other +7ed8dd0c-d43f-461a-b738-f51a90ecf541 1 Other Other +7ed92015-babc-46ec-a2fc-81930980bbdf 1 Other Other +7ed92315-e6ce-42f4-9e48-30e68890ec4e 1 Other Other +7ed92fb1-2608-4d6e-a201-568de9f5139b 1 Other Other +7ed99c78-80c8-4688-a8f5-ae17a5b42633 1 \N Other +7ed9d2fa-8ecd-41c6-98fd-5441580427dd 1 Other Other +7ed9f799-e54e-45bf-85ab-849ba09a977b 1 Other Other +7eda1180-aab6-4e24-8743-b411d00496d7 1 Other Other +7eda198c-c181-440a-84d7-289224c28bd8 1 Other Other +7eda444b-a04c-4d58-8839-ea457174ae55 1 Other Other +7eda7101-5d9a-40e5-b8e1-af8fc50030f3 1 Other Other +7edadd47-ae9c-45bf-967a-242e92bcb7fe 1 Other Other +7edaf784-991b-471b-a6a2-cd7413140417 1 Other Other +7edb1fbc-ca1e-4b90-b3f0-860321302586 1 Other Other +7edbbe0a-bfaf-44b4-bcd3-16f5bce3d3ea 1 Other Other +7edc42a6-2ded-4885-8341-9212c9691b92 1 Other Other +7edc5097-4496-4e18-97db-e2b769daf257 1 \N Other +7edc5be3-6383-4a4e-a68d-89ae8ea5c7e6 1 Other Other +7edc5cf9-261d-4a04-8841-110ed3d1bc58 1 Other Other +7edcb771-00ee-4a8b-9cb4-dacef5e28494 1 Other Other +7edcc589-e5ba-458b-9e4c-cef88b6573ab 1 Other Other +7edd4173-02a4-4566-baae-b3f6234dd619 1 Other Other +7edd5f76-976f-4904-9f2b-840899a5424c 1 Other Other +7edd7dd4-ef0c-4c19-b25e-64671b51c1e3 1 Other Other +7eddd0db-c7b7-431b-8512-e8e529d038aa 1 Other Other +7eddddcd-13dc-4276-a3dc-1d58e449e91c 1 Other Other +7edde950-e86d-4171-8d93-4af339e2e7ea 1 Other Other +7eddfdd1-7ba6-4f21-b699-414b29ae2f80 1 Other Other +7ede272b-c6cb-4074-bbe0-7f65fdd09b03 1 \N Other +7edef090-671e-415a-85de-50e23dba4999 1 Other Other +7edf15bf-6ddd-4c3f-bd13-3b3684785869 1 James Other +7edf6025-133a-44d5-85ab-c1bb27511e24 1 Other Other +7edf9ca0-6ddd-4072-b442-ceb39eced573 1 Other Other +7edfa06e-9791-4480-ac5c-74a204e5690e 1 Other Other +7edfe046-6223-490b-b176-0673426760d3 1 Other Other +7ee00444-2c2e-11e8-b6e7-fa163e8624cc 257f6774-64eb-11e7-954b-fa163e4dd901 Other Other +7ee03427-5894-4892-a40c-1aa5d08b3d84 1 Other Other +7ee06c17-396d-4851-b740-a305ba0873f6 1 Other Other +7ee07d07-703e-4e29-ad03-420d347ecb10 1 Other Other +7ee084af-456c-420b-9c56-143caf39159a 1 Other Other +7ee09415-27ac-4fcc-bcd2-0318e4488204 1 Other Other +7ee174d2-83a8-45df-8c73-e9c827dc01ca 1 Other Other +7ee17d57-feda-4591-bded-2d6dbdd708dd 1 Other Other +7ee1d8e9-a420-4aed-9c75-8b4a36e379b9 1 Other Other +7ee205b8-ed76-4f01-91e9-1d96340b2b60 1 Other Other +7ee2180b-0270-446d-8693-20d46bb80548 1 Other Other +7ee242d9-aab5-4685-a262-393509cfcad0 1 Other Other +7ee24ea0-51e6-4274-87c7-94eec279f7ce 1 Other Other +7ee2654e-d754-4c0a-9a1c-5fcf80373863 1 Other Other +7ee2d6a3-d6f7-4708-a64f-3ad426f719f0 1 Other Other +7ee2f305-f60e-408e-a2f8-18f30676ffad 1 Other Other +7ee2fb9c-43a8-4798-9757-ee50e4d33067 1 Other Other +7ee3070b-eec8-4ec2-ba6b-932264a49f8b 1 Other Other +7ee31caf-3092-46a1-876f-cfd7e9df29a8 1 Other Other +7ee39a6b-1027-4440-aaf2-089746a777ba 1 \N Other +7ee3f3b0-905e-40ab-922f-90e031270680 1 Other Other +7ee4465a-cca9-4410-9926-a62f79ef1d60 1 Other Other +7ee45a17-a518-4b25-9cd3-fdc4e38c43dd 1 Other Other +7ee4a2be-b919-4811-b9dd-a0d4f876e5c6 1 Other Other +7ee4c296-7a8a-48b2-ad39-516b618c802e 1 \N Other +7ee4e1d7-7645-41ca-9dc2-86c8dfcec91b 1 \N Other +7ee4e9e6-519a-42ac-bfc1-0a6dfb3268f2 1 Other Other +7ee4f6d5-6fa7-4f9d-8aed-85e15baa4f35 1 Other Other +7ee522f7-4824-48d2-9c64-2fa230137fd6 1 Other Other +7ee532c9-8f71-4c92-b4f7-2f261a9cfa97 1 Other Other +7ee59cae-1e0f-46bc-9331-1ddb92455e0e 1 Other Other +7ee5bfda-d440-4e57-b9ab-18293a7520a2 1 Other Other +7ee5c47c-1d60-4274-ad4d-3dabb6b3b0f8 1 Other Other +7ee619ed-2979-4f6f-8c13-076834738510 1 Other Other +7ee64a44-e3a6-4acd-8efb-d7b9cfb33cdd 1 Other Other +7ee68cdc-11f9-43e9-bc85-29475cf7f1bd 1 Other Other +7ee6c6b1-2dc8-4c6a-a9a4-f5a94659fddd 1 Other Other +7ee6fda8-4143-423a-91d1-579351021735 1 Other Other +7ee7102e-b894-4b08-aecd-7e75e7b5ae77 1 Other Other +7ee71d9e-ad14-4919-9ae1-5c1d72f013e0 1 James Other +7ee72a3c-a868-49b4-9ff3-ccc117ab2ab9 1 Other Other +7ee74fba-526a-42e2-a08f-e038faf055dc 1 Other Other +7ee752cf-cb9a-41f3-89b6-1dda5d161935 1 Other Other +7ee768d2-e23d-4758-8b01-ef17a260cc1a 1 Other Other +7ee78e9c-2a02-44d5-912f-c419eb710c09 1 Other Other +7ee792f1-aa4b-479f-b0ae-cc859182507e 1 Other Other +7ee79845-0527-4ed1-866f-bbde847108d1 1 Other Other +7ee7b345-df9f-4e63-896a-c7ad83c5b2bd 1 Other Other +7ee7df04-ee18-4f45-a42e-b5ad712a3604 1 Other Other +7ee7fa23-c035-4c81-bfd0-56f73a292fce 1 Other Other +7ee87433-eb93-43fe-8f20-eedf51f858c3 1 Other Other +7ee89239-03cd-4c04-97ee-63293186cd76 1 Other Other +7ee8c414-be6e-4f8c-8737-adb3f082ed98 1 Other Other +7ee8df24-2f45-4986-8242-ce3c531bbcd8 1 \N Other +7ee8e5d8-7eb5-492b-9ab2-d8723cff6074 1 Other Other +7ee9158d-71ab-4ab9-b10b-12d2e8137e62 1 Other Other +7ee92283-d61e-4022-a9f7-5291bba4876b 1 Other Other +7ee926fc-9dd2-4005-8e43-95897a54ef81 1 Other Other +7ee9cfba-5c99-4dfb-95d7-c3c75edf9490 1 Other Other +7ee9e279-7d8a-40f1-b1fa-f7b2cff1e40c 1 James Other +7ee9fdfa-ec17-407b-a3d7-3c42d01cdb42 1 Other Other +7eea7428-9ce1-4181-a0aa-4f69e32d9e92 1 Other Other +7eea9e64-b1a3-48c5-8396-826c176a3285 1 Other Other +7eeaa9f7-171f-485e-97c4-4f47676849a8 1 Other Other +7eeaad48-8b90-49ef-b45e-2120d80f1abc 1 Other Other +7eeab6fb-3fea-45a9-bddb-a949e07f34f0 1 Other Other +7eeabfc7-0e65-4944-9a11-61f2f43c6e7a 1 \N Other +7eeae3e2-eea6-46d4-950d-b6738e36e5cb 1 Other Other +7eeae76a-d2d2-4b9e-a9ba-1b8081fbbcdb 1 Other Other +7eeb2226-fcf8-11e7-b398-fa163e8624cc 1 Other Other +7eeb2326-d308-4e55-9d19-3af7a369d136 1 Other Other +7eeb4b2f-cc9d-4c00-ba44-c8b0131d046a 1 Other Other +7eeb5a2a-9e5a-42bc-bcc8-049e16b948be 1 Other Other +7eeb8512-2c69-440a-9766-3da7d034c663 1 Other Other +7eeb91a4-4f30-4609-bb54-49147c99feb4 1 Other Other +7eebaedf-6da1-4ed8-bb1b-b3b1d5fd1823 1 Other Other +7eebbbd8-8662-4194-a978-3eca88edb76e 1 Other Other +7eebd523-0d5e-4dc7-95de-31c6efa573a6 1 \N Other +7eec02d0-407d-4fbb-af03-c28986851a76 1 Other Other +7eec1c1a-cd46-4ec7-ba24-725ec295d4b5 1 Other Other +7eec8fc4-2080-4c06-b9c4-3a6cde199982 1 Other Other +7eecce93-13ab-423b-8184-89ac4ed8bf79 1 Other Other +7eecfc01-b427-441c-8b8b-ca53fe672613 1 Other Other +7eed12c3-e836-49d6-bcdb-2580b597006a 1 Other Other +7eed4397-97d0-4c7d-a40c-56e02ad86786 1 Other Other +7eee4c23-287d-4dc7-917a-9a08d9b9a153 1 Other Other +7eee51a1-6e08-4eba-966f-00a4ac531e6e 1 Other Other +7eeeae53-6786-487d-99c5-94af3b7794f2 1 Other Other +7eeed4f3-2365-422e-8948-c76f94c9a619 1 Other Other +7eeeec74-5a06-46cf-a835-6031a984381f 1 Other Other +7eef2102-b339-4aae-ab92-96ea3f4df599 1 Other Other +7eef2325-3e06-476c-9e9e-35dd05463cbc 1 Other Other +7eef5cf8-48a0-44a7-8b85-8b169dd3b822 1 Other Other +7eef68bc-c7e5-47ad-a7c7-aaf83407d86f 1 Other Other +7eef9ad4-b2d2-4412-997d-de1ecd8fcd88 1 Other Other +7eefacc9-0266-4727-b7e3-771157407779 1 Other Other +7eefd9a0-0622-4b7c-9c88-ac911ff28022 1 Other Other +7ef05748-8fcc-4423-97c3-60ef98524e60 1 \N Other +7ef05a4c-2833-44b8-a2d4-592f98f19ee2 1 Other Other +7ef0a567-c01f-4eb4-a0c2-e2ed68b79142 1 Other Other +7ef0b3ba-59cf-4a8c-b195-81911febb9ac 1 Other Other +7ef151a9-b377-4ee1-b38a-09749da51f65 1 Other Other +7ef17204-478d-4e90-925b-d9bea7179ef0 1 Other Other +7ef173bc-ff02-4807-92a8-1960c5112d6e 1 James Other +7ef1b4b6-ad0b-4893-be5e-6121347cca6f 1 James Other +7ef1d281-d4e8-46e3-b8a3-578bc82c33a3 1 Other Other +7ef1d4c4-2030-4df0-b4fd-b53515507e4a 1 Other Other +7ef1e331-0ae4-4d82-978c-61a575770bd2 1 Other Other +7ef1e381-37ee-431e-97f2-97b2824d4d49 1 Other Other +7ef1ee78-b64e-405d-8bf9-335127d80b93 1 Other Other +7ef21cdd-ceb9-4d05-a367-a53f3c0822ec 1 Other Other +7ef24cc9-ed76-49ea-a448-92b3027d9d1b 1 Other Other +7ef251ba-6f40-4762-b084-36f3ff0102a6 1 Other Other +7ef2aea4-64b8-49e3-82c9-6e7a8449f52d 1 Other Other +7ef32189-2227-4ba7-80db-ad6216317f16 1 Other Other +7ef38695-ecdf-42eb-a84b-5e68b77526f7 1 Other Other +7ef4ac37-f7e2-48f6-9b18-0788a0d9b4c2 1 Other Other +7ef4eeaa-55e8-4cd6-b198-1f7808d68642 1 Other Other +7ef57c66-464c-49f7-b9fc-b30b62f732b3 1 Other Other +7ef59bb2-bc6d-40e8-baef-a8bf4104c643 1 Other Other +7ef64e31-3a4b-490d-9e09-7a179ef56e1f 1 Other Other +7ef6581e-257d-473c-be75-e46242147103 1 Other Other +7ef66c7f-e726-4337-a836-2fb78b026018 1 Other Other +7ef67b56-d69f-454f-bad2-50ad3d2774a5 1 Other Other +7ef680fc-0174-45f4-a3a0-c2ec798eb3ec 1 Other Other +7ef6e5ef-c145-41af-9333-7f369b820075 1 Other Other +7ef7019e-43ad-46b3-807b-930a69fa99f2 1 Other Other +7ef727d9-44da-4bca-923e-4e9537d7a7a5 1 Other Other +7ef73db4-1d96-4b61-aca3-e039d9d5f8d1 1 Other Other +7ef7ca06-750e-4672-83ad-5de4f097e366 1 Other Other +7ef7d821-5671-43e5-981a-6ff2c7f1cbd7 1 Other Other +7ef81a05-4c3f-43f8-8a5a-2ea808f5ec1e 1 James Other +7ef831b6-ecd6-4ddc-889f-e87065ce2ddf 1 Other Other +7ef872ac-673f-48a5-9163-45fcf5f02350 1 Other Other +7ef8e11f-7f1c-4918-8c46-4c6af2dbedeb 1 Other Other +7ef8f0cc-2d74-4e77-91ef-6978e6a92430 1 Other Other +7ef9e138-7afa-4dc1-9e2d-48a46e71adf4 1 Other Other +7efa19eb-b8f7-4f74-96df-96f5bb68f079 1 Other Other +7efa9746-96d6-4114-a291-f30bf1051f51 1 Other Other +7efb1cd3-ff01-45c8-84e0-55e4e12f854d 1 Other Other +7efb4f53-7cb4-4025-86d5-fbe415d524c6 1 Other Other +7efb62ce-da9a-46d3-a054-e73c072ad32b 1 Other Other +7efb859b-b481-45cb-a795-a43a205e0067 1 Other Other +7efb8c02-26da-4d72-8977-ef5865991e04 1 Other Other +7efba905-f10c-41c9-a86a-1cdf9e8978c8 1 Other Other +7efbce3d-e65b-4757-879f-30a536fc32f0 1 Other Other +7efbdf3b-27e0-4930-b441-8f1c1016b7ea 1 Other Other +7efbff4a-7472-4d72-9133-9d8ef69dfbee 1 Other Other +7efc1564-1d60-4348-aa7a-6cb8ec51688b 1 Other Other +7efc390d-e62f-45ab-840e-e69243cff09c 1 Other Other +7efc4ec7-6d74-4536-9ec1-2c44ee5a85ff 1 Other Other +7efc6fa0-5603-4406-8c3a-4cbc47b06da7 1 Other Other +7efccd39-3197-43b8-97d2-63195eca8f37 1 \N Other +7efcd218-75cc-435a-8931-a3ee9465fef8 1 Other Other +7efce2e2-454c-4b0e-a010-4e33e13761a5 1 Other Other +7efd1294-0672-484e-8de4-67ad5bbe2890 1 Other Other +7efd1a2f-3a77-4f86-9ec8-f6e7dfdd7d45 1 Other Other +7efd5e94-d8b3-4c8d-b21e-c3abb8e27f5a 1 Other Other +7efda57d-0459-480b-93fb-ba28406d9727 1 Other Other +7efda9e9-83c7-4a37-b86a-557cd362b689 1 Other Other +7efdb877-0737-4ed8-aa6b-779d09301d3a 1 Other Other +7efded47-31c1-4510-acf5-a7094f2eff0c 1 Other Other +7efe1790-31f1-4bbe-8796-e4709375ae39 1 Other Other +7efe229b-e21e-4f3a-84a0-9f91e7a5e08b 1 Other Other +7efe891a-aa7c-42e3-a4d1-5a6e9edec6bc 1 Other Other +7efe8d62-faa2-470a-bcdb-37465339fe3d 1 Other Other +7efe99f7-5801-4e86-b711-1547cd99f91d 1 \N Other +7efea66e-5447-4813-8517-05a4ab1c1634 1 Other Other +7efecbee-c396-48d8-bd64-8eaabe1a7403 1 Other Other +7efef94e-7775-44fa-98fe-7daa5eff64f5 1 Other Other +7eff15bf-cda4-4c33-b69e-5e272fb6b62f 1 Other Other +7eff6d22-bc66-4c65-9fb1-9a0cecd67edb 1 Other Other +7effabd4-fbe0-4e53-a596-24f4ce06d6b8 1 Other Other +7effbdb4-aa09-42c2-9bad-12b4f7b34665 1 Other Other +7f00740e-b953-44b3-b2da-552c9fccddef 1 Other Other +7f00a30e-1418-416d-8d1f-8dd0d1a20c26 1 Other Other +7f00a4fd-f97c-44dc-9355-053ec2af24c2 1 Other Other +7f00d880-7b76-440b-8fd7-092257dd4b26 1 \N Other +7f0109ff-8344-4bf2-a958-562f9fc938b8 1 Other Other +7f013e4a-b183-4214-93b1-0a2cfed101e0 1 Other Other +7f017027-aa6b-4407-b3ba-933264376530 1 Other Other +7f0184af-6ad0-4fd8-b710-7039ef91de4c 1 Other Other +7f018d9a-b0b4-42b4-a5b2-aad50baedb81 1 Other Other +7f019009-9fb0-4508-99bd-d4e78f02615b 1 Other Other +7f01919b-ff17-466f-b4a6-59ac433fb22b 1 Other Other +7f0196f5-e5a3-4d93-9a3e-96bcebb65fd5 1 Other Other +7f019ff6-0f1e-46b4-9e04-ae592fdaba6a 1 Other Other +7f01fd34-684d-4813-9ec5-79b29143be79 1 Other Other +7f01febb-4fc6-4bd7-8636-62b042a723eb 1 Other Other +7f024e9d-8fa8-4053-9d59-fd43881d7ed0 1 Other Other +7f02538b-1835-49ea-8255-a4bf01af702d 1 Other Other +7f026e44-7299-4907-9a6e-81fdfa60eef3 1 Other Other +7f029579-a2b3-41a5-9a97-fb3b94fdc1fa 1 Other Other +7f02d8a8-f36e-4a07-b1a0-5a34303fc2e0 1 Other Other +7f02df45-c81e-4b43-a667-95044d630a0a 1 Other Other +7f02e23c-c02c-446f-a655-b9f33acf29f0 1 Other Other +7f034f38-b0bd-478a-b26d-eb1412d028da 1 \N Other +7f03e41b-ea0d-4b05-82bb-9b3f1e618926 1 Other Other +7f044a31-6ca0-4818-b880-1d964447db6e 1 Other Other +7f04a3e9-4b86-42b0-b500-1545fd8f97d4 1 Other Other +7f04a6f1-906c-4140-9928-38cd8f7162a2 1 Other Other +7f04aedc-a882-473c-877f-afb5ab5d8f38 1 Other Other +7f04d154-dacc-4a01-8112-29204b2cd8da 1 Other Other +7f04d9bf-6874-4ec4-b107-89af48743fec 1 Other Other +7f04e88a-7031-493c-9947-abc7d316beab 1 Other Other +7f0515f5-e44e-4b14-908f-ed2bd8f2c9c0 1 \N Other +7f053035-cb1f-4833-b870-5b0aaba3735f 1 Other Other +7f054fe2-8350-4296-aec3-fd8e3010caf8 1 Other Other +7f0598c1-bfe1-4050-ba32-37975fbf2a81 1 Other Other +7f05d987-01db-4ed3-b316-85c56466808f 1 Other Other +7f05db51-20fa-441a-a05b-3c91db6a80ba 1 Other Other +7f060891-0495-42fe-a5c2-8f00fab35a32 1 \N Other +7f0674e1-d32b-403d-baa7-23447755148d 1 Other Other +7f0679dc-2cd8-4213-b6c8-86109cf70685 1 James Other +7f068728-3183-4995-b926-0132b463580f 1 Other Other +7f069775-4fa3-4143-b634-1a17fc1c7ae7 1 Other Other +7f069b20-218c-465f-bdb9-72033f57c460 1 Other Other +7f06b087-a6e5-4859-86ff-cc7b68f91d29 1 Other Other +7f06ede3-ed4b-4524-ac93-67f5935a861b 1 Other Other +7f071734-0f82-4864-9197-7970039c7158 1 Other Other +7f0748b7-4168-4620-be21-7cae7ffa54ab 1 Other Other +7f07787a-e0fe-471c-ba2e-50b605a380d5 1 Other Other +7f077f98-a732-482d-be3c-d395a90b4775 1 Other Other +7f07abff-7896-4dee-b4cb-38670b28ec21 1 Other Other +7f07df3f-8e2c-4849-87b2-1ca0866f3284 1 Other Other +7f0859cc-7bc4-4569-ada6-d8859c3dbc5a 1 Other Other +7f0862c8-2ccd-4603-bec7-9ad10a5e131c 1 Other Other +7f088aa9-7f65-4118-a01f-82147815db49 1 Other Other +7f090879-8ff0-4675-a528-c0e691af9787 1 Other Other +7f09fc61-7ad9-4498-8d25-8975371c1537 1 Other Other +7f0a1279-d74b-476b-bdf1-65a59a06cb5c 1 Other Other +7f0a9558-3896-4b43-9157-7ded402821b5 1 Other Other +7f0ad022-eca5-4a7f-b578-bea47ed26538 1 Other Other +7f0ad412-0f49-47fc-ad70-b0550a9762f7 1 Other Other +7f0ae4b2-5c93-4ce8-b258-1e79beabcf28 1 Other Other +7f0b1235-d054-4945-a4e0-8e166fd0bcf3 1 Other Other +7f0b5a6b-befb-48b7-9050-90b1c6295728 1 Other Other +7f0b717d-140e-4ba7-bd1d-bde7d093290d 1 Other Other +7f0b78bd-50b3-45e6-bc49-c59585b4ae4e 1 Other Other +7f0c7604-3643-4e20-ae32-2ef2a55e9afa 1 James Other +7f0d8367-8714-4ac9-9191-14ba9d51dc08 1 Other Other +7f0d96e6-210f-499b-8e08-2d3ead53a7b9 1 Other Other +7f0e6ed4-a833-4f12-a230-e663f330e219 1 Other Other +7f0e7e66-518e-48e7-a66b-ef9545a87e30 1 Other Other +7f0e87f0-1bfa-4326-8c0a-491e2725db04 1 Other Other +7f0eb07f-e91a-4e92-8676-cc2337eb9bc2 1 Other Other +7f0f43bb-c2d3-4f88-9dc2-169d1edda545 1 Other Other +7f0f4897-c8e7-4002-b79c-165def25cb2d 1 Other Other +7f0f8f50-de56-11e7-a6ff-fa163e8624cc 1 Other Other +7f0fa9f4-62fd-4f8a-b29f-977525e557d6 1 Other Other +7f105c58-0bf2-48c0-acf7-6878470259d2 1 Other Other +7f10722e-322e-4b19-8d6c-65285344864e 1 Other Other +7f10b75e-2c89-437b-b20b-687954304388 1 Other Other +7f117719-39eb-44e1-8c38-9b7717c4ccd2 1 Other Other +7f11c352-9fb4-4e8d-8cee-5245b08a438f 1 Other Other +7f1228a2-99ab-4dc7-ab4f-b8a58262553f 1 Other Other +7f12fb2e-63a5-4705-8b2a-3c105bd5145b 1 Other Other +7f1345fb-5d61-4d13-9097-d9c656e95ce9 1 Other Other +7f136b7c-07c2-40ab-8cef-f2d2fada5546 1 Other Other +7f138b14-4a46-410c-b43b-2d78f53fb00e 1 Other Other +7f139080-0c97-4715-b602-1a0dde1a132d 1 Other Other +7f13e18e-fb0f-4ba0-9fbd-5c26cc7c2157 1 James Other +7f14226e-e117-4397-9470-f4546db3ce10 1 Other Other +7f1432c3-8a87-4173-80e5-1d5b2b1fd695 1 Other Other +7f149eae-5c34-4441-b8cd-b53b246ac142 1 Other Other +7f14c553-6387-44a0-8508-f75f97a1b8e3 1 Other Other +7f14e8c3-2726-4cc0-bdd2-bf594ed4bfd3 1 \N Other +7f1514b9-fdb1-48ff-89d9-8fdba204dc29 1 Other Other +7f156ec8-bcbd-43e5-b4b5-bd52ab946074 1 Other Other +7f158cf1-8369-4b88-9c83-344a3915d19e 1 Other Other +7f15b4a1-24ba-4bee-b36a-5cd3e5ae3203 1 Other Other +7f15d6c3-6008-40e3-b44e-9bdb892cf2a5 1 James Other +7f161bc2-3b3e-4b7f-8139-3128a56e0d20 1 \N Other +7f163b79-46dd-4b33-84b8-d78cc2014dc5 1 Other Other +7f166c8e-c108-4456-abe0-f6f8cfe00c33 1 Other Other +7f169a5c-f077-4218-9ea2-283a37e0d652 1 Other Other +7f16cc58-22fb-4574-b2a3-027c3f40b543 1 Other Other +7f171750-a395-4e6a-b965-9060a358f5ae 1 Other Other +7f17436b-f88a-44dc-a473-5e9a135778ec 1 Other Other +7f17876f-e703-4c31-ad50-a856c69d791d 1 Other Other +7f17adcf-93ac-409b-a673-9fa07dbb2419 1 Other Other +7f17c160-fea4-4d0d-b789-5fb3d64ccde8 1 Other Other +7f180194-fa61-4aa2-a87b-a558da86bb60 1 Other Other +7f187891-4c4e-40fb-a533-5e6a97206495 1 Other Other +7f192a94-1e69-418f-be5e-2a617c88d007 1 Other Other +7f192fe8-21ed-41e1-9773-6bac57acac65 1 Other Other +7f1a1600-766f-40a3-81b6-a418096300ad 1 Other Other +7f1ab0f8-f613-4fee-9474-fdbcf0aa94a0 1 Other Other +7f1b0d82-844b-4fa2-8f64-9675e7ee14bd 1 Other Other +7f1b38cb-bf84-4242-9800-6bb5aa983c48 1 Other Other +7f1b62bb-5e44-4202-996c-8d583f93c134 1 Other Other +7f1b7e6b-39d6-4802-b96c-3abe18eaa0df 1 \N Other +7f1c22ec-76d8-4635-a0d0-71d083b1fa4d 1 Other Other +7f1c5c27-7e3c-4bae-820d-820e278cf177 1 Other Other +7f1c6e28-d793-4815-b970-df5e8cc6d728 1 Other Other +7f1c8285-a231-4295-bed8-4385d84c8088 1 Other Other +7f1cce2d-62f6-41b8-8394-cdffedf24912 1 Other Other +7f1cdea3-d043-4086-9591-08c3e9652320 1 Other Other +7f1cfbf9-4007-43b3-86d6-58755fc17115 1 Other Other +7f1d245e-dd21-4072-ac58-a92de2ded4a3 1 \N Other +7f1d9930-0d26-430b-8128-31ad333b46e3 1 Other Other +7f1dc3ad-c76b-4fb4-8f0c-b8e5f17eb135 1 Other Other +7f1dcb8a-d05a-4eff-ab4a-905992a2972f 1 \N Other +7f1e3bc6-f04b-495d-93bb-345edae03132 1 Other Other +7f1e429c-bf83-429c-9ebd-9e6e4a35d624 1 Other Other +7f1e66f9-66d5-4554-af6b-e727a5c6c61b 1 Other Other +7f1e67c9-c564-495e-85cb-7aff2f10f9f7 1 Other Other +7f1e69e3-4ff0-4852-9fa1-6e5eb2643d22 1 Other Other +7f1e80c7-48a9-4fe4-971d-35b8a957922f 1 Other Other +7f1ec77b-df40-4859-866c-f2170a559dc0 1 Other Other +7f1ecfe0-e74c-4d5b-a7ea-e33eafba10f1 1 Other Other +7f1ed3bd-1a8c-41e0-971b-f9817ae61114 1 Other Other +7f1ee780-70fd-4020-98ee-df47668539b3 1 James Other +7f1f631a-c41e-4df9-9acb-5662f7af5400 1 Other Other +7f1fe08d-263b-4ab1-a020-078740a34aa8 1 Other Other +7f200548-2511-40d4-9513-9d45a7e1fc58 1 Other Other +7f20f5de-109b-427e-b79b-c19fb1687f68 1 Other Other +7f2118fe-c57b-4949-88f2-b6569edab0c2 1 Other Other +7f21348f-bdde-4101-aa64-18b150231efd 1 Other Other +7f21aa61-a340-4107-aa05-ea118910314b 1 Other Other +7f21e5e1-fe8c-4ebb-9cde-bec4913819ea 1 Other Other +7f21f2b3-aaab-4adf-add2-e11e68ab6e64 1 Other Other +7f222e13-6cd5-4ef5-8810-bec06b43ad45 1 \N Other +7f2260c1-de7b-4be6-a909-3753c8c293a5 1 Other Other +7f22b3a1-ad3f-4897-9d4e-62146fc929e1 1 Other Other +7f230a3d-f394-4b2e-b7a0-1a880fa70226 1 Other Other +7f233855-27f7-4265-b7f0-c5f3b4023b3d 1 Other Other +7f234cfc-01f9-42c6-b23a-a497b894d26c 1 Other Other +7f23b346-480e-4b07-835c-6663c2508718 1 Other Other +7f23bedf-1141-45db-b086-1a12aeae9b66 1 Other Other +7f23bf69-2ef7-41ee-8c0d-402bf2d3723a 1 Other Other +7f23d91a-b460-44d9-b6f2-1446679e0fe6 1 Other Other +7f240326-f2cc-429e-b993-2202c875436d 1 Other Other +7f244531-4ba0-4472-b3d0-aff0819d91cb 1 Other Other +7f244d88-0b53-4ccd-a4f0-68aee9842ba3 1 Other Other +7f24638d-24a0-4416-b942-1f6890d6548a 1 Other Other +7f2464d4-9376-4977-93d7-20f843183c08 1 Other Other +7f248a4c-4a38-4b40-b373-3fc6bbcf7d3d 1 Other Other +7f249c96-7234-499d-baf4-dbcb0e3b9508 1 Other Other +7f24b054-8156-40de-b302-e3b1c1d6b669 1 Other Other +7f24f179-91fa-4743-b828-c7ceb3c4a222 1 Other Other +7f2530c6-f496-4047-9628-e6bcb6c9bc2d 1 Other Other +7f258e05-ee54-4c37-aa8c-4caf66343965 1 Other Other +7f25bef7-40dc-4481-bbf8-564fb563e95d 1 Other Other +7f25db50-740c-4b17-ae79-0277accf7111 1 Other Other +7f25de9a-7e5a-4fa5-9330-f3bcc58a2670 1 Other Other +7f25e47c-c1c4-4986-a32e-362f95e407f4 1 Other Other +7f25e965-5d74-4ee3-834b-39a8491a5238 1 Other Other +7f25f541-eb7a-4d1a-bcab-2f36a342109e 1 Other Other +7f2652be-020b-4a5b-9c61-ff7f00b57d1c 1 Other Other +7f266518-003f-4632-95dc-dc6addeeb83e 1 James Other +7f268575-f8f4-4670-81a2-59d741be6e26 1 Other Other +7f26c01c-e1bf-4518-b43c-8a9833aab753 1 Other Other +7f27b45b-9828-449f-a170-71183fd5a1f6 1 Other Other +7f284a03-ac0a-45b9-b94b-86096c848d79 1 \N Other +7f287146-ba1a-4036-b29e-cb3a63466398 1 Other Other +7f2918ad-2a7c-4cf5-a0ad-b07fb0e51f0f 1 Other Other +7f294595-421c-4b74-9785-6229b2dfe219 1 Other Other +7f298638-deb4-4c9e-bb26-71e9cb0498d7 1 Other Other +7f29e6a1-a06a-4ab6-9f7b-edf6c3ddd768 1 Other Other +7f2a03f2-2eff-414a-9479-7ccf682425cf 1 Other Other +7f2a1938-9a98-4d94-a8da-7a662be993ea 1 Other Other +7f2a67d2-3234-4c29-8ad4-27ea69f80997 1 Other Other +7f2a79c1-0178-4cb3-bd54-ee5e529efb03 1 Other Other +7f2ab20b-cb4f-4b45-a7d0-ff4953646e79 1 Other Other +7f2b7f1d-0169-4740-8037-c7000ae89bda 1 Other Other +7f2bc34e-0efb-4037-bad0-e654a29080ba 1 Other Other +7f2bfc57-acd1-4c2d-a5a8-474b23d2dc3d 1 Other Other +7f2c0445-129c-434d-bff2-61f5d9ef582d 1 Other Other +7f2c9f06-eb61-4907-b413-1367ac1cee76 1 Other Other +7f2ca2f7-e3c2-4510-8ea0-1b80f8389e68 1 Other Other +7f2cbe8d-7090-46ea-9432-60172e3deb6f 1 Other Other +7f2ce045-2eb5-41c1-8e0a-f2a280118cd2 1 Other Other +7f2ce099-a6d0-4d8b-88ab-b8f9b31b4ada 1 Other Other +7f2d177c-1ede-43eb-a341-0dee269fa2a3 1 Other Other +7f2d1e44-75a6-4c1f-941b-805afe4c0319 1 Other Other +7f2d27b4-f637-49d8-bae7-db2aeeb0f206 1 Other Other +7f2d4566-f9fc-470f-8968-8bc3b9d08e59 1 Other Other +7f2da751-cd6a-4005-a429-4fa599b0f935 1 Other Other +7f2db904-dc19-45e9-b65a-df5ee082b5ee 1 Other Other +7f2e4fef-a23e-4dab-bba1-dd2e1a87de98 1 \N Other +7f2e67c2-76b4-4d95-9410-529195e714b0 1 Other Other +7f2e8844-2fce-40cb-87c6-5cd6f066492d 1 Other Other +7f2ea05b-dd46-4ec9-8fd2-f451e54e6817 1 Other Other +7f2f0059-2ee8-4a77-b0fe-b4d3143d31c7 1 Other Other +7f2f1cb9-114b-49fa-9362-d5a33c16a9a5 1 Other Other +7f2f6db5-d6f4-425b-9079-7d1bf66b4d43 1 Other Other +7f2f9574-646a-47ad-a2db-7d9121e1485c 1 Other Other +7f2fd661-f353-4607-b601-831d0a354b2d 1 Other Other +7f2ff406-4d1a-44a0-af7f-a1d134276db9 1 Other Other +7f300f82-84ce-4157-8de6-a274742b5b14 1 Other Other +7f3024b6-cc73-4abf-b469-0eb1c3542bb4 1 Other Other +7f308bbd-b1e7-4248-959d-7bc4e9bb2d85 1 Other Other +7f30a1ad-c617-41b1-ae91-290b082ec14d 1 Other Other +7f30ba25-a207-41d2-a2c4-075c7ccd48f7 1 Other Other +7f30be61-7f95-426f-8369-6c5769114c59 1 Other Other +7f30be80-573a-46ab-aac8-78e55b638354 1 Other Other +7f3112fa-f3ad-42e2-afd0-591a6013d49c 1 Other Other +7f31248f-d600-4d49-b72c-9b98989066d6 1 Other Other +7f31c011-15e2-49d7-a9d1-ae9d18700f67 1 Other Other +7f31f841-9c02-4f05-989b-1e4cca22c408 1 Other Other +7f32259d-d547-4f50-9560-070c771081dd 1 Other Other +7f327858-0bd2-498b-83f2-9673a637d843 1 Other Other +7f32852e-4d56-41f2-8f95-89cba6009426 1 Other Other +7f330281-ff00-4b7f-931e-3931bce16818 1 Other Other +7f332866-2b4d-4503-a918-077924162b7f 1 Other Other +7f338151-a628-4772-8f03-028616f77736 1 Other Other +7f33a05e-b324-4c17-8431-838141ff1957 1 Other Other +7f33b54e-d765-449a-b82b-3ae2929ab646 1 \N Other +7f33c49b-cfd5-406c-a813-1e02291bdcc6 1 Other Other +7f33e925-0f25-48ee-b963-a77c616d5dd3 1 Other Other +7f3417a9-8f1a-43ab-b903-79a1329131a3 1 Other Other +7f347816-087c-400a-bd73-fd3b6eef77bb 1 Other Other +7f34aaef-4540-4966-9067-8676382b7ba4 1 Other Other +7f34c5bb-b83a-46d1-b369-73f5c5f8801b 1 Other Other +7f34c910-4374-4fa4-beb6-3fb6f11051d0 1 \N Other +7f34d673-cd40-4490-864f-d5ac2f9d5f7c 1 Other Other +7f365032-7e1d-412b-b0cf-6b0cde05e762 1 Other Other +7f3679c4-74d9-4a67-9e65-4710003d76ec 1 Other Other +7f369868-0e0a-421a-9ed1-fa10a6f1461d 1 Other Other +7f36c237-5767-42f4-b476-2928afa0d222 1 James Other +7f370acd-c7b8-4f35-8220-6f1a4c3e5892 1 Other Other +7f375eaa-f120-4ed9-ae2c-6b0f1a800b4e 1 Other Other +7f37d3f5-4505-4dfe-b326-7a500ab4224d 1 Other Other +7f37eee7-b34f-446b-a86d-442822236af5 1 Other Other +7f381d0e-465c-4b77-91a1-4e2235735527 1 Other Other +7f38b292-f484-4ee7-a69a-f731a70f0cdb 1 \N Other +7f38d28d-b1f2-415e-939a-d69e2d961c98 1 Other Other +7f38e8eb-2325-46b6-9399-549d510508d6 1 Other Other +7f38f1ab-b506-4f1a-ac27-a205805f0c66 1 James Other +7f3913f4-38c5-4d5a-9f32-8952d27f9f91 1 James Other +7f391ad7-0bea-44b3-a767-96653a29b690 1 Other Other +7f395469-acdd-4515-b740-a9ce3cca49f7 1 Other Other +7f3988a6-9e88-4c97-9f03-c65e3b24de86 1 Other Other +7f398d73-46f9-4879-b6af-1762315264b9 1 Other Other +7f3a0f90-11ed-49de-80ad-9b22c63d5fd4 1 Other Other +7f3a64ba-9808-4f6c-8f21-23a5af13fcc8 1 Other Other +7f3a765e-c02c-4d61-8423-4ee3cbc93513 1 Other Other +7f3add18-5711-4dc7-9142-b58f40b433a0 1 Other Other +7f3b072e-7046-43aa-819e-d1adb4a4f642 1 James Other +7f3b133b-673a-41dc-8b7f-aa514eb36cc6 1 Other Other +7f3b1891-637c-4ea8-802a-baf226560ede 1 Other Other +7f3b7b7b-d478-4ca4-867c-66323c33f9e7 1 Other Other +7f3be074-3eff-40b7-a7f9-a285aedf3dc8 1 Other Other +7f3c41b7-0772-4a30-8d03-5b7bce415d83 1 Other Other +7f3c46a7-f6c0-4595-be30-8d9951f4467a 1 Other Other +7f3c4fb9-0229-42f4-a465-2d4bd4675998 1 \N Other +7f3c9682-35f9-4d09-84c2-3cc387ad1865 1 Other Other +7f3c9800-a79b-4195-b921-57d14593cc49 1 Other Other +7f3ccfcb-c2d6-421f-ab72-466066b4ed60 1 Other Other +7f3cd401-6b6e-4c34-b91f-a9a873229fbd 1 Other Other +7f3d0e5f-8206-49aa-a99d-6dbf8f9680ca 1 Other Other +7f3d325d-533c-475e-88fd-1d3109ef07fc 1 Other Other +7f3d679c-14d4-4634-9eca-768e6c5d813d 1 Other Other +7f3d6869-ac34-4ad8-b20c-16fbd4621772 1 \N Other +7f3dffed-b43d-4dd5-b096-af28b3e21fb7 1 Other Other +7f3e34e6-12d9-49f2-bd6a-2789de35c6c8 1 Other Other +7f3e34e9-612c-4265-bf5a-a4b363eb5816 1 Other Other +7f3e4134-fba6-4b65-a473-d12f0c4bd9d6 1 Other Other +7f3e74c2-5889-4df7-87c0-0c9e7442227f 1 Other Other +7f3edae3-e377-475e-b1a1-1ca77f79cfe4 1 Other Other +7f3ede01-f27d-495e-a7c8-b5e4587d0f61 1 Other Other +7f3f7b80-dc72-4faf-95bc-5925fb56e9f5 1 Other Other +7f3f7db6-ed72-11e7-91b8-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +7f3fd9c1-b6a0-4a78-ae1e-32c0ee49ecc1 1 Other Other +7f403872-812f-4d20-bec5-57de525bbcad 1 Other Other +7f404bc1-b7ac-4fa7-a929-59ec3ca26458 1 Other Other +7f405e4e-d521-4b68-90b3-fc2aff53b0bb 1 Other Other +7f40ff3e-4a8b-4cb7-b83c-1ad3c6c867dc 1 Other Other +7f411d6b-0ac1-418c-b850-e6595e5d9367 1 \N Other +7f41708e-e806-493a-94a7-24fb8ce0b060 1 Other Other +7f418e3d-6868-4b6b-bc8b-79f7908b98a6 1 Other Other +7f41aa4b-7a92-4d1b-83fd-e316900e5b8f 1 Other Other +7f41ea59-d534-4e29-bade-a4153e79117c 1 \N Other +7f41eb27-fbc2-4fb1-a21c-856b5db3299e 1 Other Other +7f422344-f493-4170-be6e-125d1aa27561 1 Other Other +7f425108-f469-403e-9c42-c3c3008a3019 1 Other Other +7f4255fe-fbb1-4be3-aad0-4044eb09d7ac 1 Other Other +7f42786d-42d5-468d-9c59-6876f07dab99 1 \N Other +7f42b041-fcd9-408d-b42b-31c9c0e469e3 1 Other Other +7f42cb34-d8f7-479c-acb2-8ed071beeed5 1 Other Other +7f430ded-a2bd-4b20-a4d5-e60128363cc3 1 Other Other +7f432c48-0de2-4953-b8cc-444b1cffdf1c 1 Other Other +7f4333f1-6a25-453f-8175-549659c0d8d9 1 \N Other +7f4362f3-67e6-4ced-a9f9-7f80c48f23de 1 Other Other +7f4375ae-3fc4-4cec-9267-4a78fbf71883 1 Other Other +7f43ac0a-ad21-46de-a02b-41dc74637655 1 Other Other +7f43d081-861b-483d-81b0-59e5851394d3 1 Other Other +7f43f923-7a27-4703-921c-e80a95899e1d 1 Other Other +7f440d09-e0f3-4753-99b2-5dbcac961379 1 Other Other +7f44205d-1046-430e-b1f8-9c009447fab4 1 James Other +7f44e274-1566-4cdf-9f2d-c3a56d14cd88 1 Other Other +7f450f04-3fb4-45d9-8bb4-5089df191e51 1 Other Other +7f4529cf-6124-46e4-ba7c-2a8f82f16a21 1 Other Other +7f45ead6-d025-4567-91a9-02552dfb5a60 1 Other Other +7f463d07-dec7-4c1d-9423-c2e4ccb70a73 1 Other Other +7f4659a4-5e8d-43ff-b958-147f64435106 1 \N Other +7f469734-1d83-4ab3-bfe3-779a1078957e 1 Other Other +7f46c8f8-dc9e-486e-88cf-df661bba9540 1 Other Other +7f46d05a-a5e3-4211-8455-49bbb1266953 1 Other Other +7f46dc73-a30f-47ac-8aa5-e8c11698de35 1 Other Other +7f471f51-9057-4a8a-b3d3-f28da3215fe6 1 Other Other +7f472e13-6f77-4c4c-9d93-24aec697feaa 1 Other Other +7f4735ee-a082-4fec-a88e-7d4745bb0707 1 Other Other +7f47cc7a-a244-4ba9-9c39-849c1aa707b2 1 Other Other +7f47f2a9-76ee-4e57-b3e4-49484ebdc7bd 1 Other Other +7f480887-fca0-4b0a-a52b-f122ab557a43 1 Other Other +7f48d1fb-0880-4fbe-bf70-0bd2326745e3 1 Other Other +7f492fbf-d926-45e5-9005-54663891b7df 1 Other Other +7f49c0fa-bb20-4a4a-b0fa-77a525d339f8 1 \N Other +7f4a5a62-6e50-405c-bcf9-56e71638eec4 1 Other Other +7f4a6403-9a3c-427c-97c7-fe7a81f801c1 1 Other Other +7f4a8d81-d626-4835-b861-7abc7518a426 1 Other Other +7f4aa4eb-8515-46cb-aedb-598bcc8a7105 1 Other Other +7f4acef6-05fc-449b-91e9-1153bc8ddaf2 1 Other Other +7f4b666f-1934-47aa-89e0-56816a2c7df4 1 Other Other +7f4b6747-98c2-4a24-aaef-729bac695f33 1 Other Other +7f4b7a01-c4f0-4779-984a-469c3b1c543d 1 James Other +7f4b854b-3545-4047-be2a-9a112ca4edf6 1 Other Other +7f4b9bd3-4652-4837-a265-b55f2dceb7bd 1 Other Other +7f4b9bef-eede-4f54-8115-f0972197116b 1 Other Other +7f4c0ade-d698-46c9-b78c-f443a4e3f866 1 Other Other +7f4c13f4-847a-487e-afa6-00b9133ae532 1 Other Other +7f4c9bac-5866-4a87-b35e-1c3e669afb21 1 Other Other +7f4cb60c-28cf-4f42-978a-c076678c2683 1 Other Other +7f4d4eeb-a727-4af2-8c8a-a5b3bfe6b333 1 Other Other +7f4d5f96-dbb3-411a-a457-aad8511f3246 1 Other Other +7f4d6526-a8c9-48e5-9818-41bdf2fcba0b 1 Other Other +7f4d7154-ef0f-4239-b5d2-b39e098986cb 1 Other Other +7f4d874a-af8b-4cbb-8611-614a27c1846d 1 \N Other +7f4d8b2a-2c33-4573-a5fd-3390f5c09438 1 Other Other +7f4ddd25-cbf0-453b-84a7-195684854803 1 Other Other +7f4e0442-f304-4318-8395-a9d54e82f7f5 1 \N Other +7f4e8351-bc7a-424f-a5b0-19143497b42d 1 Other Other +7f4eb0a8-4d3d-4e95-9811-5f38573eed1f 1 Other Other +7f4edbf3-4564-43cb-970d-01038fe5f7ed 1 Other Other +7f4edc3b-88bd-4c7d-8e0a-ef838a7d3f10 1 Other Other +7f4f0477-29c3-4be0-8dba-62d936347add 1 Other Other +7f4f1401-e641-466c-8f12-3e126357e7a8 1 Other Other +7f4f4d20-ee86-4e11-af7e-afe8b8cb4066 1 Other Other +7f4f617b-1c04-42b5-9c8d-41c2faf5c623 1 Other Other +7f503cb3-c018-408e-ae1c-bf143ea2f607 1 Other Other +7f50515b-603e-4f2f-85e5-57d160e15562 1 Other Other +7f5087ee-9d37-40e8-a340-21c0f8af2163 1 Other Other +7f513835-f1ff-4bcf-9e0c-4dfdeac0a492 1 Other Other +7f516992-7196-4589-a1b5-cdc1ddd3e4ce 1 Other Other +7f516d6a-77dd-446e-b623-9d1f1ba246c2 1 Other Other +7f5190b4-db21-4996-ad5d-2c90f5d3d34e 1 Other Other +7f51e2fe-9080-419a-8dde-ddd40cff675b 1 Other Other +7f51fbdd-f251-4b90-8adb-04cf4ad80739 1 Other Other +7f521856-b8df-4a3f-947a-599181ce513c 1 \N Other +7f52286b-190a-414f-b2ec-b7eeb9eb2d45 1 Other Other +7f523485-2887-4167-8775-8cecf9765da1 1 Other Other +7f5297fd-efc8-4995-82c3-0e5bf82e3ed1 1 Other Other +7f52b384-852e-44b2-9b26-ecbcc9c887f8 1 Other Other +7f52bea9-b8eb-42aa-9f7e-c0818fb82b40 1 \N Other +7f5352a0-0232-405b-8fd8-c1bf688567ad 1 Other Other +7f53a7d7-22d4-41a3-9e9b-186bfa8fec8f 1 Other Other +7f53ce80-e84b-4b46-9d68-000014d74117 1 Other Other +7f545873-d5e8-4556-81db-2439e841048a 1 Other Other +7f547a9a-cced-43e4-babe-ac082b9f8221 1 Other Other +7f54f6ae-17cf-4c1d-9e54-b77c87896c8d 1 Other Other +7f5552c5-aa36-4eac-9ddd-46a8953f0fd6 1 Other Other +7f55ad4e-2c47-4f6a-b22d-1a839565675f 1 Other Other +7f55f062-681f-41d8-a771-0a02c26b2c00 1 Other Other +7f55fe51-1a5d-4d12-8c46-88f378d2164a 1 Other Other +7f569cea-2197-4d53-8878-ed65334e96bd 1 Other Other +7f56a32b-7dc6-4bdc-ac5b-b247beadf15e 1 Other Other +7f56b8c0-b39d-4959-ac7b-8f11903dbade 1 Other Other +7f56e4b5-d019-4bf8-930f-6d9b0a2cf4ce 1 Other Other +7f573d44-5e6f-44d2-9c28-95828071d061 1 Other Other +7f5749a4-cae5-4ecd-8104-abefc8ed2e25 1 Other Other +7f57657d-3fc9-4052-b411-23667aba05fa 1 Other Other +7f57804d-5721-4a69-92a1-dc5cef090141 1 Other Other +7f579616-ea66-4f23-b2f2-dc00b679bdd6 1 Other Other +7f57d776-5639-4078-9a38-bfa9034bcb7d 1 Other Other +7f57dad9-7668-485e-83c7-2ea608aadc00 1 Other Other +7f584055-84b7-43be-b683-8170b800b00b 1 Other Other +7f58532a-52b9-45b4-8cc2-b8ef4df81de6 1 Other Other +7f5859cf-698f-4fae-9907-78b5f4a51444 1 \N Other +7f585eb8-4067-4a8c-b5d0-06943ab472d8 1 \N Other +7f593db0-bc4d-4e05-957a-dc260051d2d6 1 Other Other +7f595270-0730-4ea6-9699-a4216850b286 1 Other Other +7f59a16d-48ec-4845-91d9-eac6a6f867f4 1 Other Other +7f59ca61-3404-456f-8295-4425bd32c4a6 1 Other Other +7f59dae4-5855-4c09-b048-5d57df588813 1 Other Other +7f5a00a2-610d-45ee-955d-c5dc979d9106 1 Other Other +7f5a1a7c-0451-4811-9b10-72e47d82ae3b 1 Other Other +7f5a2447-a8b8-4822-b805-65c7d36af160 1 Other Other +7f5a8711-5a95-4074-a7ef-f44bada2bf27 1 Other Other +7f5ac65e-8791-472f-8b3d-298e3b03c251 1 Other Other +7f5adca0-f53e-4f72-b2db-9b99fe4823d2 1 Other Other +7f5b1147-0ee3-4865-8086-4d1425671fa9 1 James Other +7f5b34f5-7733-4278-8d97-18c6a3cf6abc 1 Other Other +7f5b40c8-16fe-4602-ac2c-83334c8fac5d 1 Other Other +7f5b50ee-b78e-47ca-985f-672f08650c00 1 Other Other +7f5b55ba-7552-4889-9b1b-a5bf031a9061 1 Other Other +7f5c046b-9610-4dea-8000-8ec1931bfd7f 1 Other Other +7f5c0646-739d-495b-b267-8330a79cfa14 1 Other Other +7f5c0d2d-be07-42ca-8bf2-9f9c8a961e2a 1 Other Other +7f5c1fe0-cadc-4ebb-a27c-96dfd60ab4f7 1 Other Other +7f5c35bf-aa90-4f10-96d7-6799f2804a57 1 Other Other +7f5c3ea7-fb5a-4dcb-a90f-097895478014 1 Other Other +7f5c9291-9817-47c7-8cb4-975dcc503b59 1 Other Other +7f5c9892-8be6-43a5-8f76-d155a5c32368 1 Other Other +7f5cda8a-8952-4408-9775-ca095893714b 1 Other Other +7f5cde3d-f359-4c7b-8d86-aeeb4b06da3f 1 Other Other +7f5ce988-dbf6-11e7-a68e-fa163e8624cc 1274fc8c-64ed-11e7-ab3f-fa163e4dd901 Other Other +7f5d33bb-c057-4c63-932b-0d169799cba4 1 Other Other +7f5d3cc5-f8cb-437f-885b-b69238e4a9d9 1 Other Other +7f5d438c-c499-4c93-b371-03f8e704a3a9 1 Other Other +7f5d71a2-a71f-45f8-8436-50b1a2d20db6 1 \N Other +7f5d768a-75f2-4a07-bb0e-cfd5b730d478 1 Other Other +7f5de7c3-1bce-47ba-be0e-6d0ea628c1f0 1 Other Other +7f5de856-95f2-4ea6-a08b-d22faf4854fd 1 Other Other +7f5e13ba-e5e8-4ed3-8763-dea89f62df63 1 Other Other +7f5e1ae0-4d84-48c8-b6f7-7e693fe3a7ae 1 Other Other +7f5ea8e8-efc6-482e-970e-4d323ae73b5f 1 Other Other +7f5ec102-9ae7-4b62-83c5-4d8ace857e12 1 Other Other +7f5eec62-72f5-4ca2-9a5d-dd2ef97f855c 1 Other Other +7f5f140a-b541-41a0-9d45-935318c18f3c 1 Other Other +7f5f1c0b-d250-488f-bbfe-2f18b7fd5c89 1 \N Other +7f5f36d4-2056-4e3d-a04e-04524abc2e3e 1 Other Other +7f5f4811-c7b6-4df0-a0f9-ef4b5b08dc40 1 Other Other +7f5f5e9f-ca88-413d-b1c6-b009a340b360 1 Other Other +7f5f9290-4e59-4511-b311-2c9d48686158 1 Other Other +7f5fab53-8a38-4b2a-b04c-aac6ca25e4b9 1 Other Other +7f5fb288-c3df-44a5-a1ab-f6c6e04d8175 1 Other Other +7f600676-9e39-4952-adfd-565e29097f8b 1 Other Other +7f6029c5-d73c-4756-ae96-5a8ea6afd055 1 Other Other +7f603a49-6039-4afc-8e09-5b8433f0903a 1 Other Other +7f60728c-4475-11e8-aa5a-fa163e8624cc 1 Other Other +7f60bea1-678e-4595-947d-6b92e73ff807 1 \N Other +7f60ed1b-55ff-47a2-8240-df384986339f 1 Other Other +7f60fc59-5dc7-448d-b190-b39939edad2d 1 Other Other +7f615f19-1d55-473e-918d-18a35f42ea7f 1 Other Other +7f616cd4-c0e1-4554-83d0-af6f1b9347fc 1 Other Other +7f61714d-7985-4ff2-9ce6-8ea17566f37a 1 Other Other +7f619765-b21e-43b9-b94e-0efdf33703f5 1 Other Other +7f619dba-0b80-46cd-bf1c-ee8f7a969487 1 Other Other +7f61b2ec-8c17-493f-b23d-e29088f6fc4f 1 Other Other +7f61b35a-1760-4e3a-8149-7e4e5ca4dfb2 1 Other Other +7f620ef5-50de-4457-a92a-01843aaebd3e 1 Other Other +7f6287e6-8d68-47e7-aa1b-d0f2c57a5119 1 Other Other +7f629da2-be6f-447c-9d56-68ea14f760fd 1 Other Other +7f62d26a-e72b-4320-b07a-9f7fddff9b6a 1 Other Other +7f62d3cb-fde5-4888-8d3a-9279bc45804c 1 Other Other +7f62f1b1-8937-4d98-aba7-ac13f963e761 1 Other Other +7f631413-30d4-47db-a187-629d21e8e1fc 1 Other Other +7f631868-1ac3-4bff-bab3-235605546d17 1 \N Other +7f6321e7-07a5-4378-a72e-e574a2209fbc 1 Other Other +7f637082-96c9-47c1-9e68-b963580703c9 1 James Other +7f639b85-7cdd-4501-9abb-cc9ed405975c 1 Other Other +7f63e73a-8c7b-490c-aa93-9c8a2e94eccf 1 Other Other +7f640b1e-8a82-4e20-abb6-963b61c070bd 1 Other Other +7f642281-a359-4e9b-87d9-5d98ab59e5e4 1 Other Other +7f646b6a-a3d5-49d7-9844-d30bbdeaf692 1 Other Other +7f647891-e3e1-403d-8702-32e96837a0ea 1 Other Other +7f64800b-e71f-4d9a-a52d-2255676a458c 1 Other Other +7f648cd6-4f03-404e-aed4-348baea8762c 1 Other Other +7f64a0e1-66e6-4c95-8622-56221839c8c1 1 Other Other +7f651c7a-d0ca-44ef-9cb7-cde50c900bef 1 Other Other +7f652ab0-a236-4273-87d0-eabec5039f29 1 Other Other +7f65a230-e1a4-488b-87b5-a0f3c102e696 1 Other Other +7f65b7ac-bb61-404d-b891-44743dad5fb5 1 Other Other +7f65dc64-af33-46a0-8eb4-96cf94a17cf9 1 Other Other +7f65ff1e-e99a-4129-ad81-54c79a33d9a4 1 Other Other +7f66245c-1b1f-49a0-97cc-954ad04e0fe1 1 Other Other +7f665523-58cf-49aa-80c5-1d7c45eef4da 1 Other Other +7f66b856-afd5-46d4-a6f8-1b51c181205c 1 Other Other +7f66dcc2-4d2c-424a-b53d-b43ed9c1816a 1 Other Other +7f66ea96-d6a9-41dc-b8e5-8b2113b0a3d3 1 Other Other +7f672d52-7739-4e6f-aed1-2f2add366f50 1 Other Other +7f67b2bf-8e58-4ac8-a791-b549866caea3 1 Other Other +7f67c35b-9655-4e7f-a2bc-a37854a96f22 1 Other Other +7f67e001-de80-427b-ac86-8d748b5ee627 1 Other Other +7f67f957-ef94-4ef4-86fb-56d663a86c1a 1 Other Other +7f684600-12d2-498f-b82d-894bd028799b 1 Other Other +7f68ab07-eb32-46da-9ddc-c7eabb07f753 1 James Other +7f68ba88-1511-48d1-8aa1-6dfa1f3c6522 1 Other Other +7f68cbd7-cd5a-4555-878c-35310813797d 1 \N Other +7f68e994-019b-4b84-b01f-5e72e8cf2258 1 Other Other +7f692b38-226a-4886-9885-26b01818f1b5 1 Other Other +7f694b1b-581f-4ef5-bc72-25c56f7c87ea 1 \N Other +7f697e91-d3e3-4180-bf13-2b30ee6d21f9 1 Other Other +7f6a38d9-c50c-49fd-9b03-158feb85d141 1 Other Other +7f6a43a7-a7a2-4c0c-8dab-3494e3020b6c 1 Other Other +7f6a5351-f873-417c-b10a-c927a46cd8bd 1 Other Other +7f6b0cf1-ec63-4cb5-8d62-81e6605d41ec 1 Other Other +7f6b0f46-963f-4132-a34f-3b2d546390e0 1 Other Other +7f6bfe86-c4c5-402e-a8ad-82e77af704a8 1 Other Other +7f6c05a2-2186-4649-882b-570a91955fce 1 Other Other +7f6c42ba-b197-41c7-95cf-ae8e4f21e455 1 Other Other +7f6c62e8-8a0b-4fa0-87de-3a250aa6551e 1 Other Other +7f6c98a1-b73b-49c8-a3f7-9b041ef6b6fd 1 Other Other +7f6d44e4-b348-4758-8ca8-31de1ebd1f22 1 Other Other +7f6d4551-305e-4e9c-b25a-72ad2c28471f 1 Other Other +7f6d646d-f521-4996-91e6-c0a70f541ee5 1 Other Other +7f6d7f7d-5e9b-4b81-9acf-b79dbe083e09 1 Other Other +7f6dc099-19cd-43af-bb69-4a786f0778e2 1 Other Other +7f6df85c-28d9-4857-b605-9a224927536a 1 Other Other +7f6e1e83-6059-4a89-b45c-954b6a366ffd 1 Other Other +7f6e406a-9264-4c57-9350-f180239ca131 1 Other Other +7f6ebc60-355a-45b4-bec8-708790d7fb6e 1 Other Other +7f6ec044-9e17-4209-855d-b5cacbd4e9d9 1 Other Other +7f6ed5ee-4abb-4cde-8260-9bdc2ba047a9 1 Other Other +7f6f1911-383f-4cea-bff4-1f2fe58ebb65 1 Other Other +7f6f8a79-40bc-4d4f-a985-5e179988ea31 1 Other Other +7f6fe4e9-777b-4c1d-a576-f590838cf450 1 Other Other +7f6ffc9b-33e9-47b8-bc14-caf208bec1d3 1 Other Other +7f701d21-e34c-44e7-addf-c64a46b7a7e5 1 Other Other +7f7023b5-204a-4609-bb3b-2ae72ca84992 1 Other Other +7f703544-81b8-40e1-8025-8087104edcd7 1 Other Other +7f7035b8-cebe-433f-845c-80dea831a905 1 Other Other +7f7081a9-9bb0-41e7-bebd-ee358e934c55 1 Other Other +7f7084e8-60a0-4546-abd3-1b88a2417fe5 1 Other Other +7f708882-96fe-4445-b268-453f8960debd 1 Other Other +7f709cfd-6408-4fc7-aea9-128a7888012b 1 Other Other +7f70a295-4b54-496e-88d1-069f81b67acb 1 Other Other +7f70a3e4-dca0-404d-bf79-fc4161d8688f 1 Other Other +7f70d646-0921-4545-919f-021a73275d7d 1 Other Other +7f711a99-cfb9-4c6c-8938-935c2ebdb06c 1 Other Other +7f7141b9-a449-48b5-b172-16bdb08146cf 1 Other Other +7f7144e5-b8ad-4d55-a1cd-102d4c0875b1 1 Other Other +7f7156b9-219b-43e4-b96c-1f4e82c17707 1 Other Other +7f7167a0-2d4f-4a79-bec3-4bc0889bb416 1 Other Other +7f717adc-c154-4d45-a24d-494ccca811b1 1 James Other +7f719215-47a2-4828-b36f-d553503c6be1 1 Other Other +7f71dad3-3215-4b6b-b030-ed1e55731a4b 1 Other Other +7f72176b-d76f-4cd7-95cb-7dd0dfe4e3f4 1 Other Other +7f7262a8-4df7-4aeb-9a17-44c650bd22ee 1 Other Other +7f72853e-911f-455b-8fc7-3f4a22f02d02 1 Other Other +7f72f928-c0c2-4ed7-b628-88968d8d6627 1 Other Other +7f730367-f8a8-4397-9318-f3413646fc75 1 Other Other +7f730a32-5ee9-428f-b40e-c1d11e520427 1 Other Other +7f736977-c1a5-4226-89fe-f5a37d557671 1 Other Other +7f739838-37fd-4b6e-b11e-03f5308e876c 1 Other Other +7f740e5e-e4f5-4375-993c-6db1dd006d50 1 Other Other +7f741b50-3880-4401-931f-ccc9b1145e40 1 Other Other +7f744d19-049e-40dd-b33a-13c4855b0501 1 Other Other +7f747089-dbb9-479a-a687-ea51c3d327de 1 Other Other +7f749793-53e5-4e0e-9298-039c8f06b74e 1 \N Other +7f749c67-838e-4c6e-a143-4f187e173718 1 Other Other +7f74a7a0-772e-49a0-8fa0-08507a501e66 1 Other Other +7f74a848-cf9f-44f4-a634-f7161b4952d8 1 Other Other +7f74b256-182c-49a8-bca2-f9be65153333 1 Other Other +7f74d48f-b2ab-4d69-9124-c0bfba4a5a7c 1 Other Other +7f75202e-e8c1-4b9a-96f8-83017f3bd9ad 1 Other Other +7f753399-8448-4ef6-91cd-03153598d85d 1 Other Other +7f75522c-1515-4a0e-9008-5b86fce9f1eb 1 Other Other +7f7562d4-f4fa-45b0-8044-b7388d331a30 1 Other Other +7f757067-bee9-4083-b47d-3015062e483f 1 Other Other +7f75781d-eedb-4c75-a2be-dec360252c35 1 Other Other +7f75793c-019d-4bbd-a1bc-59ffc2bf088f 1 Other Other +7f7581a2-8a71-4314-ab09-00726c1e883a 1 Other Other +7f75b6b7-d208-41bf-b305-0edb6e0b4279 1 Other Other +7f7622dc-5cef-4e84-9745-dca0fe1f22f0 1 Other Other +7f766d9c-b861-4d8f-8a09-32156d007d4e 1 Other Other +7f766ec2-4349-46a4-aaae-2038952f3f69 1 Other Other +7f767541-cf7a-4b7e-a667-b926324a8dc1 1 Other Other +7f76b3bc-e5ef-4a63-b174-47ba102b9da0 1 Other Other +7f76bb50-6521-4ea6-b8ba-7d3c998a8998 1 Other Other +7f76bc99-9fcc-4ca8-8915-47310699b52e 1 Other Other +7f76cc5e-5803-480d-a6d7-0d1a247bb85c 1 Other Other +7f77592b-728a-4956-9a38-534baf2d025e 1 Other Other +7f77602e-e09c-45eb-911f-29eb0156c027 1 \N Other +7f7783cf-b37d-4c4c-a01b-4710ac372335 1 Other Other +7f77c629-e384-4e43-bf96-ca7d1d030846 1 Other Other +7f77d486-5224-41f1-a21e-f756e1bb1d88 1 Other Other +7f7846c6-897e-475a-a474-8557244f7c24 1 Other Other +7f78da65-7d2b-4f41-8578-ad80d91bf612 1 Other Other +7f792bf0-955b-4ee3-a72a-8a3ea71f1d3f 1 Other Other +7f796274-d15d-4164-b64c-9d5a9b25c89b 1 Other Other +7f79e606-a694-4d21-b77d-b1285feb56f2 1 Other Other +7f79f828-ede6-4504-a589-dfb51443f4b0 1 Other Other +7f7a00f2-284b-4cb1-9050-69814958972e 1 James Other +7f7a0b51-83d6-441a-8f5c-b8bf7f2ed01a 1 Other Other +7f7a3333-6278-480a-9529-8d2812493eb7 1 Other Other +7f7a588d-10b9-4dc0-ba36-babe53a80be0 1 Other Other +7f7a7bf3-d72d-4685-aa04-f582e554c886 1 Other Other +7f7a8975-9a38-49ff-8de9-36a3e3c82332 1 Other Other +7f7b733a-4310-4a5e-aa8f-c820a6e8ef76 1 Other Other +7f7b89bd-7e38-45b9-937f-df1ef88336fb 1 Other Other +7f7bbdc5-c755-4531-939f-70a4dcafc509 1 Other Other +7f7bd0b8-1891-4b41-afa8-8e4d5b569633 1 Other Other +7f7bd779-dd98-4ce0-bef4-390c51fdec48 1 Other Other +7f7bfd8e-2f63-4ea5-8f81-7bdb3b8308a0 1 Other Other +7f7c1995-55f1-45df-b301-389eaebfadab 1 Other Other +7f7cc401-2b06-4d2f-87af-e1462f008316 1 Other Other +7f7ce061-ac2f-4dac-9b7e-a60ab6d63381 1 Other Other +7f7d288a-c69a-4312-8cf1-5c6bbb6c5d4f 1 Other Other +7f7d6077-44d4-4d7e-b744-c8bf5923cc98 1 Other Other +7f7d8b49-a366-421f-bb39-0707c0ecc462 1 Other Other +7f7e120e-bf32-40a5-8a37-c4f01345a400 1 Other Other +7f7e18bf-6eec-49d2-9e3b-a1ed198f4f43 1 Other Other +7f7e788a-6c1d-47f8-ba5e-8e296634aaae 1 Other Other +7f7eaeb2-a2b8-4d28-bb21-d32b86126c20 1 Other Other +7f7edcf0-5058-48f8-8402-89efe33bee2b 1 Other Other +7f7ee590-29df-4c30-a7a1-3271c8416214 1 Other Other +7f7eed88-bc9a-4cce-95de-400521f3c041 1 Other Other +7f7ef30e-ff97-411d-9346-f6ebb04c811e 1 Other Other +7f7ef7de-78f3-45a9-920e-772a5babc005 1 Other Other +7f7f2435-8be2-4a6e-97f9-2404a2556311 1 Other Other +7f7fb18a-c8d9-433f-92b9-6cea1bf6405f 1 Other Other +7f801323-f17f-4664-9bdb-afe6a78ac788 1 Other Other +7f801f1f-8c08-4545-87a9-4401230cde9f 1 Other Other +7f804716-5473-4da9-b469-0b4fe8b6f102 1 Other Other +7f809072-39a8-4833-9fe3-7c6c6763317e 1 Other Other +7f80a77e-f785-45a8-8ac2-fc19e5df3ac2 1 Other Other +7f80f663-11b5-45b0-8584-e77bb03efd8c 1 Other Other +7f81122a-28a0-45b0-9a1d-4ea0b8b0b579 1 Other Other +7f814c74-7853-4115-a00f-280b83c7a75a 1 Other Other +7f816912-4a0f-4c20-9650-602f16c71253 1 Other Other +7f818c07-0c75-4d1d-92dc-ab5ef22b063d 1 Other Other +7f819be0-64be-4432-95fb-de59a889066b 1 Other Other +7f81ee13-d1a5-4847-a227-c91773083528 1 Other Other +7f81f3b8-26e8-48f7-a7d9-7dff0c5b7a19 1 Other Other +7f82170c-9bf1-4aba-be9a-67e598cbb442 1 \N Other +7f821c95-8daa-4b8f-a76a-1a0dc6e8b86f 1 \N Other +7f823fe3-8adb-4ed9-ae51-ff9bbd1d541f 1 Other Other +7f826869-d70c-4391-ab28-1e6c580398b8 1 Other Other +7f827d6e-05e0-4de9-8ccc-aec6a2c06af9 1 Other Other +7f8294ec-63c4-40ba-aa5e-58f5fdf64664 1 Other Other +7f82bace-8bfe-4ba0-9248-fc0d701da1d7 1 Other Other +7f8341a8-5e61-4594-a253-8b45705f758f 1 Other Other +7f83a15d-641d-4bf2-88e1-d0a6ee353c7c 1 Other Other +7f83b629-8261-43b2-ace0-f74cee868189 1 Other Other +7f84056c-8a64-45d4-bba3-8aa69c076ced 1 Other Other +7f84651d-dd4a-41d5-bd0a-264c2490553b 1 Other Other +7f851d0d-de94-4c91-bb5a-6204bcd9554c 1 Other Other +7f852528-9592-4f0b-b03d-4ac638d48390 1 Other Other +7f854d30-8947-4269-9483-b484b724ead9 1 Other Other +7f8572f0-699a-4126-95b9-162d8ff5a6a5 1 Other Other +7f859d33-cab5-4669-9fc1-41f7923577de 1 Other Other +7f85b352-0bb2-4a7d-9b63-cabcde856ddc 1 Other Other +7f8600ce-1c6f-487c-ae30-f67ebf598c03 1 Other Other +7f8625bd-9552-4055-b9c3-3cec0badfcfe 1 James Other +7f8653fe-0636-449a-81ef-4950e51722fa 1 Other Other +7f866019-edac-4a73-ba51-6a15fa14dca9 1 Other Other +7f868ef9-9e96-4623-88ee-4ec6eb56cf16 1 Other Other +7f874cd5-1635-4111-83c9-fae2e9539501 1 Other Other +7f875e3f-3466-4afa-90e8-5aa6db4d2e3b 1 Other Other +7f8779c6-95d3-4ec9-9c4a-beb6461934fe 1 Other Other +7f87b1ec-a728-4ca8-a695-12fc75781d73 1 Other Other +7f87d26e-3ebe-4b6d-8efb-9eb3d006e75b 1 Other Other +7f87e194-7933-48d3-86d1-ebb88a310644 1 Other Other +7f882056-f54a-4e60-a1b7-599723386ad7 1 Other Other +7f882730-c0b5-4c57-ad4f-6ac4d1e92369 1 Other Other +7f883dfe-8a84-4c28-923e-b7069125532f 1 Other Other +7f88594b-d617-44be-8ed7-95776dae6ade 1 Other Other +7f88fb3c-e333-4856-b004-001b4df0166e 1 Other Other +7f892022-293c-4563-8d84-13a67d62a482 1 Other Other +7f89363a-a3aa-4404-ac0c-78d398af0a1a 1 Other Other +7f897507-3279-4efd-9a21-0b5ab69b9399 1 Other Other +7f89bd0c-304c-44e9-8231-6d9509c7d236 1 Other Other +7f8a0e19-34a2-472f-9470-aebb3364e561 1 Other Other +7f8a3a56-0bd8-45fa-8de2-8484cdcba0d0 1 Other Other +7f8a5030-e8b6-425d-906e-2238252f2088 1 Other Other +7f8a73bc-b59b-4a59-84a2-e058eae73206 1 Other Other +7f8a7800-2841-4994-b0cc-d4eb0ac3f324 1 Other Other +7f8ae0e3-060e-44f7-9b48-babfe121d56f 1 \N Other +7f8b8cd3-9d79-4b24-81ae-24a58e2b4673 1 Other Other +7f8ba295-96f2-414d-a132-2aa2bdf3c1e5 1 Other Other +7f8ba339-a027-4959-bb2e-fc0f5a6cf6a2 1 Other Other +7f8bb1b1-6698-42a5-a534-cba2ac16276a 1 Other Other +7f8bbd5d-3172-4ec2-9beb-f2dfe380628b 1 Other Other +7f8bfa12-76ff-4ea1-a2b3-33e573b0c7af 1 Other Other +7f8c004a-9302-46ce-b5a9-a6891aafa057 1 Other Other +7f8c025b-a010-4c58-9ebd-dd050427b92f 1 Other Other +7f8c70c1-83f6-4f2c-9148-7617557f38b1 1 Other Other +7f8cecb1-f227-4b2a-9538-1fa7e8141cba 1 Other Other +7f8d3843-ebb4-425d-b252-d317b4fb189d 1 Other Other +7f8d57de-0d8d-4b07-9351-50110a1eab1e 1 Other Other +7f8d7275-be06-4b63-8e5b-409425b77c35 1 Other Other +7f8d738c-b13d-44ba-8793-2cdcc88026c9 1 Other Other +7f8da0e6-486b-4a36-8ebf-4a36217e7c9f 1 Other Other +7f8dadc6-34f9-4ec4-a6b8-c30b0fbc6d77 1 Other Other +7f8dcbd9-1349-4251-85dd-be0542944dfa 1 Other Other +7f8dda2e-3f8a-4383-b750-78338f57441a 1 Other Other +7f8de3e0-27ea-48e8-83fd-6dc0d7ec0a65 1 Other Other +7f8e0382-9c8d-431e-9cba-458b5ca59111 1 Other Other +7f8e5ad6-2790-4412-809c-fb630afccffe 1 Other Other +7f8e9eeb-b747-45fd-b913-bba1185cb105 1 Other Other +7f8ea1bd-aced-4b88-bcf5-18a76f9c5f1f 1 Other Other +7f8ec11a-539d-4832-8a56-8aeeb9ba34ef 1 Other Other +7f8ee283-52e8-4de4-bf6a-bb09862f37a7 1 Other Other +7f8efd89-d51d-4313-8842-79c3f64d2e9f 1 Other Other +7f8fdcdb-ca8b-41ad-9777-c40281c27376 1 Other Other +7f904b71-779c-41a6-bcbb-42fcb55687cb 1 Other Other +7f90898c-d5a8-4d8d-afb3-46559f2f11d1 1 Other Other +7f90d923-fffa-4a20-abf1-80dbbb89edd7 1 Other Other +7f90e723-71c9-49e7-be3f-4c680c781fa7 1 Other Other +7f910978-1678-4e18-a4a7-e2e73575dfc0 1 Other Other +7f9120fb-9d61-40e5-95bd-90e38bf96029 1 Other Other +7f9167ff-89f0-4f9f-b1c0-03e5cb595ca7 1 Other Other +7f91684c-7705-4a08-b074-ad65bd55027f 1 Other Other +7f9173d9-b500-4f8d-b32f-d5df72656e42 1 Other Other +7f91928c-1f1f-4198-b3b3-4628a461d412 1 Other Other +7f91dcf3-4fe1-4cb7-9799-9468041b959b 1 Other Other +7f91e201-0e23-4b74-a7de-d1709448fdce 1 Other Other +7f920c59-40ea-4901-9b09-f03cbcf49a1c 1 Other Other +7f92bc5c-4ee3-4c50-845d-b9b411ce09fa 1 Other Other +7f92f0bc-1371-4461-93a7-d06b486ce492 1 Other Other +7f9313b8-3b31-46f4-8180-cec6efa20109 1 Other Other +7f9378cb-8827-433b-86be-ec42f2e1dd2f 1 \N Other +7f93892f-3955-4640-a7b1-f58f992b9ffb 1 Other Other +7f93d556-00ad-433d-95a2-707e07df11ef 1 Other Other +7f94135b-58b1-4468-80bf-4c5f86c8c341 1 Other Other +7f941c41-43af-49db-b68e-60dc0b03dfa1 1 Other Other +7f943b84-ef59-464e-9ff0-d267df104058 1 Other Other +7f948578-9d73-4fda-881e-60732f3b89c8 1 Other Other +7f94c51f-e93e-4d0e-9ca3-61a2a4b30b47 1 Other Other +7f94e65a-b668-4ba5-ad3f-5ffa343485db 1 Other Other +7f950a38-c23a-43fd-b7fe-6eaf8f8d5fc6 1 Other Other +7f952d0b-3cf2-4333-a891-a0d5efb27abc 1 Other Other +7f953e81-5a95-4ded-8e6f-1e3c8b22ea06 1 Other Other +7f95f55f-e778-4297-badf-ed84d17fa86b 1 Other Other +7f960d14-3e72-451d-9981-77c26469e78a 1 Other Other +7f963a87-3290-4f25-a1ab-09b7d76404f5 1 Other Other +7f9674d4-01ab-11e8-aa3f-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +7f96adaf-2791-40af-a6dc-bad0a6c0e15c 1 Other Other +7f96e29d-dc25-43ba-a5fd-c818d5409a78 1 Other Other +7f96e673-357b-4a1a-8536-e9ba2686898b 1 Other Other +7f96eb60-34b6-442b-803d-ee473669e9df 1 Other Other +7f970f3b-4de4-426e-ae04-f4a8306cf816 1 Other Other +7f9745dc-9335-4888-b513-d8fd0426816a 1 Other Other +7f979150-d682-475a-b546-ad2be91739f8 1 Other Other +7f97a521-cdb9-4c10-952c-e9f9eca33939 1 Other Other +7f97bf7d-3312-4ffa-a656-2db8f9ced69c 1 Other Other +7f97fefd-afbd-4876-bb1c-743fc0401fd4 1 Other Other +7f9801ae-52ad-4688-95d2-7ac8e9052125 1 Other Other +7f981361-c1e2-4817-aad0-9e68df349781 1 Other Other +7f983ca8-560b-4c83-807d-c4d787ddc00f 1 Other Other +7f983ea5-36fb-4abe-94e5-68471d6b3bdd 1 Other Other +7f984468-1fdc-4a91-95ee-e56b87e327fc 1 Other Other +7f987d1c-394e-420f-a4ca-b63d424c5d0e 1 Other Other +7f9886b0-980d-425f-82bb-ec6e037c3e68 1 Other Other +7f98ca92-71fe-441e-b70b-805d3e99b90b 1 Other Other +7f992dce-ae75-4517-aa12-53f20acfdb5a 1 Other Other +7f998936-5ee4-4d17-a16a-196a3930f406 1 Other Other +7f99a2ee-010c-4c2f-9505-85255cb1f9ca 1 Other Other +7f9ad098-1407-4c37-b50b-e86a98add993 1 Other Other +7f9af6a5-f470-4d69-8cb7-5c36925c364e 1 Other Other +7f9b1f73-293b-4eb1-8a9e-3e8f22e2201f 1 Other Other +7f9b2d4d-170f-49ac-961d-8b3deefbb987 1 Other Other +7f9b97d9-6a79-4ba2-8c16-ff7794e18ee2 1 Other Other +7f9bc26d-60de-4dd7-8c98-67fa11a264fc 1 Other Other +7f9beee1-6756-480a-b776-5e157909cfb5 1 Other Other +7f9c24c3-70f3-43f7-ba9b-62839c56deba 1 Other Other +7f9c24fe-cb0e-49cf-be6b-34d44dc7e641 1 Other Other +7f9c63db-a805-410c-a6ed-f3d814e8efd9 1 \N Other +7f9c71c5-de4e-47b9-93e1-282fc7bd1d7e 1 Other Other +7f9c8abd-b715-49a7-8932-84cbf81d5f82 1 Other Other +7f9cb0d4-19d8-4f54-be64-0449253f76b6 1 Other Other +7f9cc1d1-9cbe-4733-aa66-c02e995280b2 1 Other Other +7f9cff0e-3d29-49ec-ab7e-8107225c38b9 1 Other Other +7f9d4102-c24d-4d98-b798-9acfadb073c2 1 Other Other +7f9d4962-e865-4d6b-a3b9-1cbe2d256a47 1 Other Other +7f9d6429-279b-4542-9d62-7b3ce5d52504 1 Other Other +7f9d72b0-cdb4-4262-a285-b72432722c6d 1 Other Other +7f9d9109-6e6d-4029-9dc1-b7779014ee7f 1 Other Other +7f9d985f-92e3-4781-be9b-0cb6926bbf12 1 Other Other +7f9dcefa-991e-473d-8341-9e85352f05fe 1 Other Other +7f9e112c-f1a6-4318-97bb-5537c435513f 1 Other Other +7f9e130e-3cc2-4edd-be5f-5fc8bcaa8c5c 1 Other Other +7f9e5e65-cad5-4394-8191-f39dc3d472e0 1 Other Other +7f9ec561-f7de-4691-ac64-179a7d8c0f40 1 Other Other +7f9ee2f1-a346-4a8f-9a32-01e1dbb3d5be 1 Other Other +7f9ee4b5-7369-4860-acd1-339640325a5d 1 Other Other +7f9ef06e-9702-4f7f-940b-56fd29649646 1 Other Other +7f9ef4b9-d585-489f-9621-fce9583af84b 1 Other Other +7f9efb3e-a0cc-47e6-a596-452ae3ceb2bf 1 Other Other +7f9f6b17-4ae4-433d-a10f-6b5f6cbbd07c 1 Other Other +7f9f95cb-dea6-4dcb-969d-7ab5b357a860 1 James Other +7f9f9f0c-4568-4d5e-8e59-2876e6589cec 1 Other Other +7fa0026d-068d-45ca-bfef-f47fd6d1d180 1 Other Other +7fa00b3b-92ed-4987-ba0d-10589ddee0bc 1 Other Other +7fa039a3-4526-4f10-88a9-3a30db6d27a7 1 James Other +7fa05266-d8b0-4c6c-a4b5-cc2760b0e573 1 James Other +7fa064ff-95b9-4fa6-b1e9-18b9273c714e 1 Other Other +7fa088a3-b7e2-482b-95db-aacd24d8f9eb 1 Other Other +7fa113cc-17f6-4d36-b6c0-52713b13a515 1 Other Other +7fa122a8-c986-42fa-a3be-169d36f4871e 1 Other Other +7fa131be-7253-4756-9335-eb9a5d59b730 1 Other Other +7fa15d54-8f43-4f0e-936e-085fe3fdba8f 1 Other Other +7fa19273-adb3-47b9-8bc7-0c6c5338203c 1 Other Other +7fa1b07b-8308-4d8e-9f04-f358471f2262 1 Other Other +7fa1b5e4-fbb8-4756-a479-2d3f3d741f04 1 Other Other +7fa1fb2c-68e1-4a0a-87e7-be16dff87df4 1 Other Other +7fa21231-86a6-41cf-bfba-73f91b37e078 1 Other Other +7fa22908-7183-4373-a79d-fe4e8539a43c 1 Other Other +7fa256d9-0bad-47de-8ea1-89d8def36abc 1 James Other +7fa2828a-bfcf-4076-bc50-31e54d751fbb 1 Other Other +7fa29280-6490-4154-94df-b261736ce587 1 Other Other +7fa2a82e-f447-4692-8274-5c0e905de056 1 Other Other +7fa2fa33-65c5-43b7-89c9-fc78b2271e59 1 Other Other +7fa35966-0cfc-4437-9b9c-3ac756824453 1 Other Other +7fa38dea-5b97-4ff4-ba98-186a6e526b6f 1 Other Other +7fa3c1e2-1883-4982-8ced-e6b8f2d24749 1 Other Other +7fa3e2f9-03d2-4d14-b1ae-efcd0593604c 1 Other Other +7fa41fc2-a6d7-4267-9bd1-98cee5f07284 1 Other Other +7fa441ce-7d86-497f-a101-785b99174043 1 \N Other +7fa47f49-ed9e-433a-923c-d3fba7ce50b0 1 Other Other +7fa49061-3cfe-4c93-b89a-2cc0b1484cb6 1 Other Other +7fa4913a-209a-4960-8375-98c3580d559a 1 Other Other +7fa494e3-1555-45a6-91fb-96935f643b29 1 Other Other +7fa4968b-2f28-4708-87dc-7fd6de0ddbb6 1 Other Other +7fa4973a-99b3-418b-b4e3-ab0e3357266b 1 Other Other +7fa4b9d0-cb57-405e-ae4b-398b2c1d6e8b 1 Other Other +7fa4be78-d724-469b-89bf-31ef6e06cf01 1 Other Other +7fa4d6db-9f05-4ec2-a534-3da94f66e322 1 Other Other +7fa52d7b-8bc2-4b57-b712-86873e25a8b9 1 \N Other +7fa54a39-4a11-4458-8879-60ba7b1a1899 1 Other Other +7fa57a93-8eaf-4692-b9ef-fe75b7e86746 1 Other Other +7fa588c0-17da-43b9-93ce-f07b11450a11 1 Other Other +7fa5cff3-7b3e-4cdb-af41-3980660f9c41 1 Other Other +7fa6205c-00ab-44ca-be99-e917d7940c95 1 Other Other +7fa62ae9-ee7a-4aff-8b5b-ed3730507754 1 Other Other +7fa64d77-0b79-4482-bd1d-ec74cbe79e55 1 Other Other +7fa65ee7-19d8-4b02-8ee5-57cefeddc8f6 1 Other Other +7fa661a6-48ef-4513-8bba-e05ccf96a51d 1 Other Other +7fa69757-c5d9-4460-8a47-e6bcbcf9cafd 1 Other Other +7fa6af4f-59d5-4e26-8981-a646caa46ba5 1 Other Other +7fa6e6cc-ef8d-4c9e-a98e-f18376b08651 1 Other Other +7fa72824-1152-40fe-aa74-e6cb944706c5 1 Other Other +7fa780e3-b868-4acf-94e2-89c00a79e5a5 1 Other Other +7fa78108-8686-4932-9242-a8ab5501cacf 1 Other Other +7fa84191-5553-4c76-bee3-1d22a986565d 1 Other Other +7fa890d0-adad-49ad-a47a-61393c3d3638 1 Other Other +7fa89c0d-9e0d-4a25-90a6-aab580b7f57c 1 Other Other +7fa8b392-f58e-48c9-b69c-be58d7e5a54e 1 Other Other +7fa8da32-d4d0-4e89-ade8-9dd363b46016 1 Other Other +7fa8ec8f-73c0-4bbc-822d-545f941452f6 1 \N Other +7fa938f4-2736-49d7-ac05-d0816ce10a8d 1 Other Other +7fa949fd-0cce-4874-bf90-124997813c39 1 Other Other +7fa98527-a312-44f2-80bb-f8c37ba541f4 1 Other Other +7faa5088-2c25-4256-82bd-c6f8fe568549 1 Other Other +7faac4f9-296e-45ff-ba76-98b97642b7fb 1 Other Other +7fab2b09-693e-44cb-9e3e-28f3dc62ddd4 1 Other Other +7fab4919-82ae-42a3-8728-26701deeed05 1 Other Other +7fab831d-71b0-4adb-993d-65030b058a3f 1 Other Other +7fac228d-4822-4c4e-8f95-769ea4e8e060 1 \N Other +7fac4056-e38a-4074-9b96-72392b059e53 1 Other Other +7fac4c6f-6cac-4ec2-86d5-ca737284057c 1 Other Other +7fac4fd5-27b2-494e-a8d5-c8e486d1f5d1 1 Other Other +7fac5213-231a-4106-a19b-bfd9d06f24ff 1 Other Other +7fac71bc-4255-479e-b6df-00779fcbbafb 1 Other Other +7fac88ac-6c35-46bb-97a8-5890cbac280b 1 Other Other +7faca5c4-c0af-4166-a390-178e5b53dec0 1 Other Other +7facf75a-e43f-4f20-8c18-4caab696a4d0 1 Other Other +7fad109e-de75-4ad7-ba21-362b4ecf3209 1 Other Other +7fad3551-c972-4e6d-9f6e-a2946457adda 1 Other Other +7fad7ac3-a807-42d5-81cb-4edf6407773f 1 Other Other +7fad9095-e00c-4e97-80e8-98a8b11d6ed0 1 Other Other +7fad9b33-7e3e-4617-ba64-8d396db11606 1 Other Other +7fae17bf-263b-4533-92c8-d590732e4d68 1 Other Other +7fae3a64-3e63-4fe2-955e-a88bed82f575 1 Other Other +7fae71ca-c334-435d-9c17-e2b7473f7417 1 Other Other +7fae7442-86f9-4798-9205-2b572103ee90 1 Other Other +7fae77ed-b318-4a68-beae-1a0d2f690f31 1 Other Other +7fae7d56-221b-4524-8a4f-057f5422e3b9 1 Other Other +7faea36e-de37-410e-b091-1f30abc1daa1 1 Other Other +7faeb99e-4057-4cfd-9923-0f024dd07a0e 1 Other Other +7faed6cb-c312-4bd4-a77d-368a4266166a 1 Other Other +7faf6769-5323-4e18-8b48-996ba35e69cf 1 James Other +7fafd8f0-aae5-4cd3-aa72-d7974eac4a13 1 Other Other +7fafffd7-9083-46a1-a99e-311725dc7370 1 Other Other +7fb020ac-6b9a-4537-88f8-67cddffb0d2e 1 Other Other +7fb02d79-b9db-4ac3-978c-df42e32074c5 1 Other Other +7fb02fef-c360-4b9f-933e-37453561510f 1 \N Other +7fb03a38-8106-4b9b-8e1f-bf206173d9b4 1 Other Other +7fb0b4af-4a83-4cbc-8b6d-21c989d9597e 1 Other Other +7fb0beb7-0ee9-4e8c-986f-52767dbf2118 1 Other Other +7fb0fd60-f8f0-453c-a6c8-1c811bd3f8a6 1 Other Other +7fb10805-d5c2-4456-8668-887089c7ea9c 1 Other Other +7fb13ada-d07c-4e79-ae43-7146d735d2e3 1 Other Other +7fb1527d-5ade-47d8-a14e-2735d2584905 1 Other Other +7fb18ea4-808c-43db-9c9c-4cf00bced1fb 1 Other Other +7fb21cd8-fea4-49f0-a809-3b8f3ca8d065 1 Other Other +7fb24f05-b409-4b9f-bcc6-b98db5b92097 1 Other Other +7fb28d67-ffbe-4800-b70a-ed54f85314ba 1 \N Other +7fb299ab-ed6e-4689-a2d0-06a48fdc9302 1 \N Other +7fb2b98f-a36d-40a8-9208-66baa91c8120 1 Other Other +7fb32326-703d-4d89-bc32-a973f71eaf89 1 Other Other +7fb3e0f6-e7d8-4fa2-8276-606d54c18f77 1 Other Other +7fb3ea2e-6db6-43da-b4a0-1ea9d422a0ca 1 Other Other +7fb41937-a466-4b9b-96cc-92317a6dd4b9 1 Other Other +7fb441ca-7463-4435-b9ad-e6d3ab64605b 1 Other Other +7fb48bc5-5847-4627-a7d0-9e53b1d1d60e 1 Other Other +7fb5510d-cc2b-48e1-8fc2-57298e6135c8 1 Other Other +7fb56608-2c3d-4553-86e2-6ffdc952db7b 1 Other Other +7fb593d9-098f-481c-af0c-3be33e00b2ec 1 Other Other +7fb5d140-531c-4035-bbef-9025f3524a90 1 Other Other +7fb68dea-dcc9-4eda-98d2-2df9d2192171 1 Other Other +7fb71d34-f8c2-4583-b2bb-435228cdc867 1 Other Other +7fb72da5-8687-4f3b-9f98-0d664cc5a585 1 Other Other +7fb76b48-988e-4728-b5e7-0914235e6b4c 1 Other Other +7fb76c23-d911-4b00-a177-f0d760c5bcad 1 Other Other +7fb7fe57-5dd6-4c36-9d3e-3e4d5de63907 1 Other Other +7fb89ab6-494e-41c6-be46-6a654663be72 1 Other Other +7fb8aace-cbec-4dbb-9ff5-3b84dbf5185e 1 Other Other +7fb8db82-c14f-4210-83d6-152b05fa3cdf 1 Other Other +7fb9788a-9694-4d32-9c9b-c206155a6183 1 Other Other +7fb98f96-7edf-436c-8501-9d296e5e37b0 1 Other Other +7fb99fae-98fe-4c02-9533-760ef3045483 1 \N Other +7fb9baab-9c2f-4e5a-ab07-e92ea070e014 1 Other Other +7fb9ca4a-887d-4cf7-b1c8-d5fc3d823843 1 Other Other +7fb9ec97-aade-4387-a375-39c18a10829e 1 Other Other +7fba2b81-80da-4fd2-ab6d-86c6d015f544 1 Other Other +7fbaa61d-5b31-446c-b9f9-c196e4d55b51 1 Other Other +7fbad18c-5cd4-4979-9a87-bdf1395e4e32 1 Other Other +7fbaf794-0193-433f-bb24-6d5df98347b1 1 Other Other +7fbb2de9-aee6-4607-b06a-963f43870b69 1 Other Other +7fbb6b0c-56e8-4d55-b82b-e9fc81f93583 1 Other Other +7fbb77fb-7e0b-4e78-b00b-34d91a5090f4 1 \N Other +7fbb7896-7a4f-4071-b69a-7ed5da643086 1 Other Other +7fbbe6ed-ac68-4f1f-80e0-494da97ca70b 1 Other Other +7fbbfdf5-0894-4f1f-80b1-077121c9c731 1 Other Other +7fbc206b-c579-405b-8d4d-0fd0c2ddccd1 1 Other Other +7fbc552b-33eb-4a8f-83cc-40a2565e8c34 1 Other Other +7fbc76af-befb-4c1e-a12b-c9ef98e5551b 1 Other Other +7fbc8e97-3209-4fef-91c4-491f3ac65696 1 Other Other +7fbca95f-e9cc-4498-9ddd-6c8760eef315 1 Other Other +7fbcbf75-51a7-42da-91c2-59f4523b4c9a 1 Other Other +7fbccd6e-2310-455c-b4d0-dcaaeb75ed15 1 Other Other +7fbcdb9b-0f0e-4570-876b-21d7d9f7d50d 1 Other Other +7fbd46f1-1a83-40c3-bf2e-1f40b16b34ad 1 Other Other +7fbd834d-7eb0-40cb-87de-0724be039b50 1 Other Other +7fbd8538-6f1a-48c6-88e2-dbd61e318337 1 Other Other +7fbdbe1e-01b1-4336-956a-e08f9192f28b 1 Other Other +7fbde9f6-a2d0-4d47-b59e-7620ceb59832 1 Other Other +7fbe19ab-9fef-48a1-92c8-7429ba18428c 1 Other Other +7fbe6c52-4c19-42ab-9004-be8505b177bf 1 Other Other +7fbec560-eefd-4d46-a9f1-db6c6ab4212d 1 Other Other +7fbf55a8-426b-4c16-aa41-8a76040040c4 1 \N Other +7fc0bc06-8bf1-4d32-a02d-2e5acb203a39 1 Other Other +7fc0dc6b-3f5f-4221-804e-e5c30fb552f9 1 Other Other +7fc138e1-1b4e-4268-a623-821ae1799e83 1 Other Other +7fc19bd5-2caa-47b4-990e-d80bd6e1a39f 1 Other Other +7fc1b20f-2a55-4919-865d-3238441dc7bf 1 Other Other +7fc1e1fd-81f9-4bad-99af-4f9ba6d5cb97 1 Other Other +7fc21a5c-e7d6-4297-b796-4a396ac04483 1 Other Other +7fc32370-dc39-4474-934c-3f1a4f270f8d 1 Other Other +7fc32c12-d795-4e08-89d1-e8a4b6919cf0 1 Other Other +7fc3418c-2536-4941-9838-91b244db22da 1 Other Other +7fc367bb-fcf6-4e29-ac44-1787bebf4a99 1 Other Other +7fc38ddb-e261-46fc-be48-458b53afd741 1 Other Other +7fc3f6ca-3c70-4ced-92a3-dd0674e7d829 1 Other Other +7fc43a87-07f9-45e1-aa34-44d274d2cd13 1 Other Other +7fc43d31-2956-42b8-b99d-9ddd33730d75 1 Other Other +7fc4481a-bbf8-4b83-933c-af50eb66e16d 1 Other Other +7fc48e90-7807-4c1a-bcf4-4ac9c9a5845b 1 Other Other +7fc4cb06-7a4d-4700-9f67-bfbdf147c166 1 Other Other +7fc4cb29-40e4-4b2d-a06d-2083a1dfaf5c 1 Other Other +7fc4d2ab-d9d5-4d58-849a-a85e21a63845 1 Other Other +7fc4e562-e80a-465e-89e5-f6caca2222d7 1 Other Other +7fc4f9dc-6769-47e9-930f-ef74e6b7aee6 1 Other Other +7fc4fd31-fc0d-4cba-ba80-5e0c700c9cc9 1 Other Other +7fc5774b-5e10-4089-8086-145a32cff00e 1 Other Other +7fc66e72-b900-47cd-bfda-388d7a3fdf1e 1 Other Other +7fc72189-3880-427b-9440-f35e25c60574 1 Other Other +7fc72ea3-f31a-4143-951a-55ea859f6709 1 Other Other +7fc7a111-9e7b-4c7c-9e27-40442dca3515 1 Other Other +7fc8037a-a9f8-4811-b300-06b7320909ce 1 Other Other +7fc8324a-9bdd-49a5-87c0-4984a48bec14 1 Other Other +7fc8430c-8c21-470b-99b5-ae4a2d051014 1 Other Other +7fc84730-4b14-4678-8e34-2d71abf18331 1 Other Other +7fc898df-6e72-452c-8c64-da5696a8871c 1 Other Other +7fc8a3d0-b532-431a-9b0b-3d6a315c00cb 1 Other Other +7fc8d66b-dedf-4f3b-b74b-f753f8c1b971 1 Other Other +7fc8f235-ff2e-4337-947e-eeb7e5457d2c 1 Other Other +7fc8f447-cfbf-4a6a-a4b1-85df5ee8def6 1 Other Other +7fc924a7-dad6-47f4-8fc9-5ec018c9c874 1 Other Other +7fc95c36-6d70-4bd5-a926-daea43dad35a 1 \N Other +7fc9a50a-26ff-46ba-ac27-e49243383bd1 1 Other Other +7fc9c770-b6a6-4d64-9fb4-f9a11f353d76 1 Other Other +7fc9cffc-bf3a-4aef-834b-d462d6cea380 1 Other Other +7fca12f6-f353-4237-b214-d2fed8c3ed4c 1 Other Other +7fca15ee-52b6-4362-95c8-39f386dd0486 1 \N Other +7fca5af3-6fe9-4295-b719-ed14824fd762 1 Other Other +7fca6f09-4c98-472d-9e8a-c5c460b5cef7 1 \N Other +7fca8282-0d4e-4029-b4df-126cc8d70904 1 Other Other +7fca9e00-1b70-4f5c-9601-a50d604a07fa 1 Other Other +7fcab10e-cbe5-4cc0-b773-511e7a726de4 1 Other Other +7fcad0ec-7ccb-4514-9cc4-d810405266f9 1 Other Other +7fcafcba-e4d9-4714-802f-c11a3200a1ca 1 Other Other +7fcb0b9f-a3aa-4b9d-bd02-060aadaea386 1 Other Other +7fcb9057-aa8f-4805-8fff-7ba338296657 1 Other Other +7fcbb75c-f158-4336-b7eb-b37bcc2d5bf1 1 Other Other +7fcbea71-8c9d-40f9-9e12-0b9cb30a1dff 1 Other Other +7fcbfc4f-733d-4b79-b665-52f94702e4bc 1 Other Other +7fcc7c40-716e-4129-9b10-0b218c882bb5 1 James Other +7fcc838f-3889-455d-8fc8-01d01b16cd64 1 Other Other +7fccca42-795d-47e7-9a83-84999e079b88 1 Other Other +7fcccca3-091f-444a-98a0-6de06b007fe2 1 \N Other +7fcd1fab-589e-463c-8621-cfe947d2d077 1 Other Other +7fcd21f5-9c1b-458e-adf0-393ad15d65b0 1 Other Other +7fcd786b-24fb-4208-93f1-2defa7749e2d 1 Other Other +7fcd8535-1be9-4390-9e45-21533de330bd 1 Other Other +7fcda961-09b4-42e1-9b22-da8f81e7eb85 1 Other Other +7fcdc9bd-8c06-4371-a530-578127c00d72 1 Other Other +7fce265d-f6cf-4b6b-be13-54b7c12b582d 1 Other Other +7fceb359-5abc-4340-a236-84fe55d12285 1 Other Other +7fcf1923-8d8d-48b0-8942-0b4a9a3fdffb 1 Other Other +7fcf383f-596a-4916-803b-356c97b8f8a0 1 \N Other +7fcf4e69-903b-4421-9b4a-09478b699353 1 Other Other +7fcf4e6a-5f02-432b-9091-63bd6bb11aa6 1 Other Other +7fcf91c4-2af7-4c3c-a0da-f3c109f20fc6 1 Other Other +7fcf96a4-34af-406f-b400-7305f0eb4944 1 Other Other +7fcfd625-7f77-4737-aeb8-ca2eee78b3fe 1 Other Other +7fd00dc7-c684-4410-b16c-6970338c5681 1 Other Other +7fd03ed5-ebc8-44e0-8539-f4075052e9b8 1 Other Other +7fd04dfd-daf5-436b-880c-783d7f01c5e2 1 Other Other +7fd05287-8ad6-43ea-bfe4-ad8794f88756 1 Other Other +7fd066ff-1d5f-42ea-b108-6cc75b20afd0 1 Other Other +7fd0a6ea-65f4-491b-843e-74c665aa44ca 1 Other Other +7fd0d964-04a0-4778-b5b0-e9fd5eba7b53 1 Other Other +7fd153a1-5af5-4832-a76d-8db8131c777d 1 \N Other +7fd16441-3360-40cd-aa32-2a705d966b69 1 Other Other +7fd16547-75e3-4228-ae9f-ed7fb3b2c030 1 Other Other +7fd17825-2e16-44bc-a4a7-8ec486408c64 1 Other Other +7fd18630-b3ee-4ed0-8af0-8e14eae44629 1 Other Other +7fd1b975-2567-4b7a-a1c1-47a62e568677 1 Other Other +7fd20736-25ee-48b8-85cd-a077d2d938d1 1 Other Other +7fd2197b-5afa-4b65-ac4b-a5008db54db2 1 Other Other +7fd23669-12cb-4cc5-a85b-f96e6ff48e6d 1 Other Other +7fd2550b-5c39-495c-a14f-44ff0a403573 1 Other Other +7fd2d93e-9922-4803-b2f2-40a18763e349 1 \N Other +7fd31b57-bf04-4c80-a303-160d8b16c7fb 1 Other Other +7fd347f5-b20c-4c82-af03-2e8f69f7e0f0 1 Other Other +7fd34873-f04a-4eb2-b4be-e90bae3ea62e 1 Other Other +7fd35609-bc27-4e19-9091-433e4951755c 1 Other Other +7fd3f60f-4095-4b59-88e0-387341bfcb3e 1 Other Other +7fd42871-7f1b-48e8-9d25-7563052456db 1 Other Other +7fd44738-0b90-4dec-869a-ca9180750d08 1 Other Other +7fd47545-ebd9-4ec9-b18e-5ec6253895a2 1 Other Other +7fd4a691-9389-4c35-bd7e-c76e9b15f73a 1 Other Other +7fd4ce64-f38a-4c2c-a643-ba73e834bc8e 1 Other Other +7fd50a33-bfa1-4758-a1b1-1dce5bdfbf80 1 Other Other +7fd600e5-5db0-48cf-a795-b32819db6155 1 Other Other +7fd64bc8-57ee-47a9-bfd1-d94587db899f 1 Other Other +7fd66a7a-b6fe-481f-beee-422cbd4976a2 1 Other Other +7fd68028-ed36-4159-9085-e746a4e13223 1 Other Other +7fd683bd-1542-447d-a991-e6ef5cbee2e9 1 Other Other +7fd6ba82-868c-4ee9-bc05-d0aec8ad259a 1 Other Other +7fd6bdad-eac5-403c-8ec2-ebdc5fea152f 1 Other Other +7fd6d4fa-3ff3-43f1-a42c-c45f3d999ea2 1 Other Other +7fd6faa2-94cc-4dea-816d-9d3db2bc33ab 1 Other Other +7fd744c7-d836-467e-8a2f-7b9b512cbeea 1 Other Other +7fd7f694-91b0-48a8-a4d2-5c31f9fce874 1 \N Other +7fd852dd-4dc6-4e69-80c5-01f2f3d2a97d 1 Other Other +7fd8b7a5-ea6e-4353-927d-6f21ad7e560d 1 Other Other +7fd8b963-7f57-40ef-895f-5cc476ebf4c7 1 Other Other +7fd8cefc-7800-4b42-b7c3-ad973f2e18fa 1 Other Other +7fd911f8-160d-4853-8bd9-76c3df62fa4b 1 Other Other +7fd96071-db91-454e-8e29-09c93a5c34f4 1 Other Other +7fd961d9-1bff-4f8f-8287-494082a28b96 1 Other Other +7fd969e0-9278-48bd-9a84-c554c124fc54 1 Other Other +7fd96be5-1824-44d4-9c42-f07dea510469 1 Other Other +7fd9937b-6cc0-4029-9204-361a642bf8ff 1 Other Other +7fd99a48-8d80-49ab-bbc8-340dad371efb 1 Other Other +7fd9e4ad-19e8-45a2-aeab-6404ead73511 1 Other Other +7fd9edec-5e7e-4c46-9e34-4c7e9ae7f49a 1 Other Other +7fda587f-73a7-4561-94f2-274eea0f464e 1 Other Other +7fda96bd-11df-4dd5-b132-5b679a335b90 1 Other Other +7fda9e49-c55b-4914-84c0-973d7053a622 1 \N Other +7fdae13f-d69c-4293-bc99-00671e510eed 1 \N Other +7fdb1c73-5928-4c42-be56-0f9742207f4d 1 Other Other +7fdb29bd-c06f-4c31-8467-0a32ba26198f 1 Other Other +7fdb302b-50e5-4bb8-80c2-0c6acefeb1d2 1 Other Other +7fdb415b-9b19-4598-904a-6d0626d07d80 1 Other Other +7fdb6df3-a441-4f6d-a8a2-c460adfd5afe 1 Other Other +7fdb7bb2-482c-4296-93f1-ff1113e6b46e 1 Other Other +7fdbbcfa-3d4b-4b65-bfdf-d5cabc267cde 1 Other Other +7fdbed29-81f9-4ec3-a6f6-781b486a93cb 1 Other Other +7fdbf112-cd8a-42c9-9e17-df2790561b9b 1 Other Other +7fdc8403-9e0a-4c1b-9741-88e742131f5c 1 Other Other +7fdcbe2c-806e-4a25-9c70-9a85a7705fc0 1 Other Other +7fdce585-145a-429e-9829-10e024b4c9c4 1 James Other +7fdcefe2-6666-4584-a7f1-4e35c5be54db 1 Other Other +7fddc5d4-f495-4acc-ba1d-29482de9a1eb 1 Other Other +7fde079f-a789-4837-be3e-d24aefa1de5c 1 Other Other +7fde17bc-4884-437c-b0b1-f9b11cb1b4b2 1 Other Other +7fde4e41-dccf-476b-83a6-8c390baabbad 1 Other Other +7fdee3d7-ad21-492f-9b1c-11a3e1d93c75 1 Other Other +7fdf15cb-c97e-4df4-84a4-fcab919eff54 1 Other Other +7fdf506c-47d7-4177-b7db-7c82eadbeb34 1 Other Other +7fdf698e-6c0c-4eec-8ad6-307ded695d28 1 Other Other +7fdf755e-ff51-4f63-a428-e538fea01693 1 Other Other +7fdf87ba-f074-4760-a32b-b99823c8f3e0 1 Other Other +7fdf9ed8-4cfc-49b1-8859-d21191c6735d 1 Other Other +7fdff1ae-043f-4726-bf66-dfa8e72c1282 1 Other Other +7fe01fbe-b530-4c88-9eb9-03cc59f5cc8b 1 Other Other +7fe09696-1634-4e34-98c4-0b432192a844 1 Other Other +7fe0bdcb-02f0-4209-b8ea-d52038fbe8f6 1 Other Other +7fe10b75-8e68-4aae-9a87-59d89877dfac 1 James Other +7fe13784-6947-4a0e-a2b4-d6d77932065e 1 Other Other +7fe141a3-e00a-4f37-8ab2-26883fd79d41 1 Other Other +7fe1586b-3ad6-4f6c-8665-8fdfd3b36906 1 Other Other +7fe16c61-d28a-4f71-a9bd-2995daac0a0c 1 Other Other +7fe18255-f0af-4f0a-b078-bd01598efec8 1 Other Other +7fe1addf-1bb6-455d-a37c-aa62fdb5b470 1 Other Other +7fe1bdbb-d342-403e-bcc4-cd6733e8410f 1 Other Other +7fe1d267-3a4e-4f40-a646-67978261ee9c 1 Other Other +7fe1fbdb-085e-4991-b09b-8b3d83f668f4 1 Other Other +7fe1fc61-a365-4786-8f10-544cf68f8ef3 1 Other Other +7fe21538-5a79-4c0d-90d3-eac350e20ae0 1 Other Other +7fe22fb6-427a-4256-9a6f-51f94a12d034 1 Other Other +7fe2472a-705d-4b0c-adf7-16982f946748 1 Other Other +7fe2750d-efda-446e-88b0-a4d1b54ee0de 1 Other Other +7fe2a1f9-2228-4293-9f41-ddca27435fa5 1 Other Other +7fe2c939-e405-427f-ac47-df3713469185 1 Other Other +7fe2e57b-e10c-4547-bf45-4f15b93853a6 1 Other Other +7fe2e8e0-9e3f-4bf7-9dfb-99136b1f5968 1 James Other +7fe2ffbb-195d-4998-9ad1-5bf00b372ddb 1 Other Other +7fe3200a-562d-4b64-9b82-8947b1156965 1 Other Other +7fe3392f-719b-419d-90f6-c10950d48724 1 James Other +7fe3873a-b021-4e80-b8c6-6e43c0a25c77 1 Other Other +7fe395dd-041b-46fc-a8dc-e78ff7b6b6b2 1 Other Other +7fe3aa8b-3fab-4e5c-a627-cf8067df2573 1 Other Other +7fe3c0bd-d921-4086-8bc6-f7665b99f0ad 1 Other Other +7fe3eff6-a45e-49c5-ac94-e6554ee52c8e 1 Other Other +7fe3f95d-d7d7-4dbd-997d-efc7fcd3a54b 1 Other Other +7fe408bd-a704-40a1-9e9b-5ded2ae668e4 1 Other Other +7fe435a8-b323-4e22-b757-2da2681040c7 1 Other Other +7fe495ec-f020-48d4-9661-b07a2ebc79c7 1 Other Other +7fe4b876-ce89-4acc-9225-c9cfc78623c8 1 Other Other +7fe4ec0e-17d6-4e48-b1b6-2627c687bdb9 1 Other Other +7fe50beb-9631-46ae-970f-3d0ac2440f70 1 Other Other +7fe54eaa-3859-49a2-958b-a7ae3cd2a4fa 1 Other Other +7fe58ffb-04c1-42f4-a21e-568123394132 1 Other Other +7fe595c9-be5a-4123-99ad-e62af7eb10b0 1 Other Other +7fe5b03b-9f6f-405d-acb4-6eef9aa0d78a 1 Other Other +7fe5b2bd-94e0-46f0-a95a-c0d8458bc6ed 1 Other Other +7fe6adb9-5fc7-47e4-8696-24aacc0d6df5 1 Other Other +7fe6bc8d-84f7-4279-9ff0-8e0f5c6053dd 1 Other Other +7fe6bc90-4e49-497e-94bc-77928502c00f 1 Other Other +7fe6e4ad-2a43-4e98-b1e0-a94c34583e69 1 Other Other +7fe6e70b-0359-4528-88a4-ebb2552551b3 1 Other Other +7fe701b3-8d7d-4893-9fc6-b41f3c9df6f4 1 Other Other +7fe70213-0f57-420a-8e51-9ada5200f3c3 1 Other Other +7fe78a50-2a2b-45a5-b73a-f163fff007bd 1 Other Other +7fe81604-45a1-4b7d-b3e2-56e6db6e3b03 1 Other Other +7fe8204f-7fa2-4b88-9677-8525fb9c914b 1 Other Other +7fe84eae-0fc9-4c4c-9aa1-6df3f4b20dde 1 \N Other +7fe84f5c-9ded-4549-a8d7-d9c75a79316e 1 Other Other +7fe85c48-3137-4c6a-bb72-3bd65ee7346d 1 Other Other +7fe8f263-47eb-4e8a-aba6-9f4d34f99257 1 Other Other +7fe8f917-be5a-431e-a06f-8cc9ad7abc24 1 James Other +7fe900ea-c3c4-40f2-924e-49d449a1a4e7 1 Other Other +7fe93178-8b93-4895-8e49-4c44566a8b48 1 Other Other +7fe93807-873d-48a2-9468-1e37122dc70c 1 Other Other +7fe9425a-ccd6-48c0-a132-ddc990021e1e 1 Other Other +7fe9a48a-7746-421e-8877-3157ef4c42a7 1 Other Other +7fe9c1ef-56ca-4da6-a0ac-b3ace8229908 1 James Other +7fe9fd3f-fec0-42d3-bb06-5fe285cd7024 1 Other Other +7fea419c-21f4-4ef6-b277-f804ab3c4c5c 1 Other Other +7fea555f-7f53-4984-ae8b-9384174927d9 1 Other Other +7fea8440-0a2c-4254-832c-3c71894a0f7c 1 Other Other +7fea9422-5281-4512-8c2b-ed8c4f583ba8 1 Other Other +7feaacd1-675f-478b-b869-d275dabce693 1 Other Other +7feae44a-a2ea-48f8-909a-1df50152ca39 1 Other Other +7feafcb9-f048-41fb-895c-3e03662a49c1 1 Other Other +7feb06b9-7725-47bf-83b4-764a971c2dcf 1 Other Other +7feb442d-673b-417a-b6de-ee8a9dd93243 1 Other Other +7feb504d-b255-46cd-8c8c-25594964ac82 1 Other Other +7feb6b3a-c212-46f0-9d84-fad4a9f4e19d 1 Other Other +7febe81b-ca4a-4e55-9515-4cf600718f25 1 Other Other +7febf956-58c9-4d04-8244-6e83547b349d 1 Other Other +7febfb39-4405-43fb-9a9f-967e024c2243 1 Other Other +7fec3fb8-00e8-4265-854c-05cf804ed543 1 Other Other +7fec8743-e08e-4dac-ba83-ffc26e854250 1 Other Other +7feceb57-7bc1-4899-8cd8-f80c3677cb3d 1 Other Other +7fed6447-29a8-4c84-b437-f9b15d59a761 1 Other Other +7fedfa94-4f16-4ffa-930d-6559b04ab616 1 Other Other +7fee1378-8dbe-4baf-a79b-e80fc06272c7 1 Other Other +7fee1902-498f-472a-a6a6-d2b73ae7b219 1 Other Other +7fee62ed-f26c-4155-9eb7-0063683c19b9 1 Other Other +7fee7468-db9e-4cc3-964e-c7e676dfa587 1 Other Other +7feede6a-3a56-4ce0-af10-d66d17e3ec40 1 Other Other +7fef50b8-155b-45ed-851b-a87369705c56 1 Other Other +7fef7631-76a9-4569-a21e-6ae41a8e2b25 1 Other Other +7fefb000-9abb-479e-bd4d-2280626a6900 1 Other Other +7fefb27e-6863-4230-96b9-7850b51e29cb 1 Other Other +7ff00ebf-1eca-4a0b-9a3d-8c4de16fee00 1 Other Other +7ff07925-abb5-4ada-a0aa-77eb664ef657 1 Other Other +7ff0aa79-01df-4d81-a5ef-0a8a4331159b 1 Other Other +7ff0ac7c-53e2-4063-97c3-c3ca173ab007 1 Other Other +7ff0bc50-f2ec-4e83-a699-9d06278f1135 1 Other Other +7ff11763-c383-4954-9bf1-74342a1ea0bd 1 Other Other +7ff144c9-636b-4686-8992-2809a1dc11a9 1 Other Other +7ff176ad-062a-48b2-b411-4c342f5b28e8 1 Other Other +7ff177d1-cc11-4db2-88a7-04d106bf5f07 1 Other Other +7ff17dbb-b0f6-4137-80e6-d3eec6373ae2 1 Other Other +7ff1d9df-8650-41e7-b5a2-e780838c1018 1 Other Other +7ff24786-f2b6-44ba-8387-19b5a062302d 1 Other Other +7ff28cf9-4842-4a64-b5aa-dc53e5f64d41 1 Other Other +7ff2b203-2152-49c0-a7b8-0ba118b4a55d 1 Other Other +7ff2b33b-aae8-4100-b613-75f7e33aa6c8 1 Other Other +7ff357d8-3754-4d94-aced-f86f86f35001 1 \N Other +7ff35878-bb31-4cd0-9911-6cb40c84dfd9 1 Other Other +7ff3635a-1ec3-4497-b18d-ddc1bda6eb17 1 Other Other +7ff364a6-69fb-46b7-8d3c-3050e1473d78 1 Other Other +7ff37f8c-73a2-4d79-ac35-dd64a33430c3 1 Other Other +7ff39cea-e226-4b8b-824d-38a3a64cff82 1 Other Other +7ff3b0dd-c581-41ff-b7c5-babfa22fd848 1 Other Other +7ff3d698-7cd7-492c-b101-8304ea9902bd 1 Other Other +7ff40ab3-0163-4050-90f0-c4acb9ed46be 1 \N Other +7ff42dae-5ca1-4ab3-b7b8-477fcc0be56f 1 Other Other +7ff446aa-18be-4c18-8cf8-900139cd8d04 1 Other Other +7ff47cdd-b4d7-4d0d-9f88-9b58d3c00a4a 1 Other Other +7ff4ce55-f98f-463d-85a3-6cc48c4e7648 1 Other Other +7ff4cfbd-1944-4b98-878d-aaa637f0951c 1 Other Other +7ff4fd24-fc85-4fe7-979e-ca4c2ba7f082 1 Other Other +7ff52792-e058-4cbf-a148-7fdc21cae2c1 1 Other Other +7ff52944-d0b4-4f60-9cc2-1ed54b444cc8 1 Other Other +7ff58fd6-867d-43a2-a8f8-ef8a99bfc512 1 Other Other +7ff5dd30-0183-4522-acd2-f14e7230b02c 1 Other Other +7ff5e882-4b6a-4079-a877-8309f9792d7d 1 Other Other +7ff6050c-5f1f-4072-9296-ad209ecd8a17 1 Other Other +7ff67a0b-4e79-4d23-a3ec-285945105f81 1 Other Other +7ff69352-20df-4ec7-8336-03831f093f2c 1 Other Other +7ff6c996-4bde-4405-931e-e50fa8616ca5 1 Other Other +7ff6cf9e-7d7e-4fa0-b369-4fae36296f11 1 Other Other +7ff6e698-5c9a-429e-b266-bda56ddf7d42 1 Other Other +7ff732c1-a52f-4b7c-91c6-55941f64f287 1 Other Other +7ff73b65-4b92-4e5e-86c3-627d29ae8a1d 1 Other Other +7ff7885c-8b39-44d5-99dd-57586ec5109d 1 Other Other +7ff7b65a-729f-4127-abff-78a1c8ac5020 1 Other Other +7ff7f8ae-e4bb-40ca-bfcb-c62faa230ea4 1 Other Other +7ff88ed1-26ac-4670-81e7-093ef72c6436 1 Other Other +7ff8f63b-2bc1-4ef2-80aa-523879018297 1 \N Other +7ff91399-778e-4a22-b6fd-3c0fdb5f8196 1 Other Other +7ff951e1-8aa0-4313-9b2c-3bb561794856 1 Other Other +7ff95656-3125-4252-b7e8-5e9ca5dfcfdd 1 Other Other +7ff9660c-4d01-4c20-88ec-7be6977a7597 1 Other Other +7ff9efe1-2539-4649-abaa-865d84c9cfa0 1 Other Other +7ff9f752-f995-49a4-9a33-42d46c3f0a5c 1 Other Other +7ffa020d-19e5-43c6-8184-8e3497d4f968 1 Other Other +7ffa0970-af78-4835-9fd0-b53cebb754db 1 Other Other +7ffa12bc-9e34-4867-b7f7-7b3041b7aa7f 1 Other Other +7ffa2148-a196-4ba8-8264-aeb654577f30 1 Other Other +7ffa40f0-92b6-421e-935d-98af83fbb73a 1 Other Other +7ffaa88a-4f2c-4490-b294-b483a6fb874a 1 Other Other +7ffad632-a4d7-4099-82eb-f566c701a973 1 Other Other +7ffb30a9-76cb-45af-9c5a-e7d40ba3f320 1 Other Other +7ffb965d-1890-4022-99f6-4602660e7b71 1 Other Other +7ffc7409-3cd9-4c1f-9054-c93cc1dae094 1 Other Other +7ffcb644-4e4d-47f8-8600-140e93a07101 1 Other Other +7ffcbc17-70a2-45f9-beff-34483a1fb080 1 Other Other +7ffcd4cd-66c9-4ba6-b06c-b1f523a0a281 1 Other Other +7ffceb3b-98ae-44db-95a4-3377058bc2e2 1 Other Other +7ffd1d6c-5cfd-4590-8874-9c4825abc2ed 1 Other Other +7ffdc3ab-4be6-4825-9097-61291ae4e4ef 1 Other Other +7ffe6209-8642-4f85-a7fc-b0263455ffe1 1 Other Other +7ffe9e07-470f-473a-8526-dc12d1267d01 1 Other Other +7ffed492-17b1-48cc-afcf-a4cd329071bb 1 Other Other +7ffee56c-af88-4eb3-8f3e-fbf0e8057960 1 Other Other +7fff5b79-172f-4c33-8773-7d32e540dcd6 1 Other Other +7fff5cea-10d0-4e33-bc8e-f032ab5b0b38 1 Other Other +7fff61d5-3b81-4360-a1d3-44eff3934a12 1 Other Other +7fff6651-01e4-461d-8816-95d206eb12f4 1 Other Other +7fffd1f7-3b49-49f1-8d04-583c05ac739f 1 Other Other +7fffef33-5f80-46f2-a368-72246bc7d4e1 1 Other Other +800004ab-4859-4b0b-ac20-cf921c6bddfd 1 Other Other +80001195-f475-41d4-8bec-20185ed44fa7 1 Other Other +8000170d-c319-43d7-b9c5-f528677bf5e1 1 Other Other +800024f3-b524-4310-9761-1282385c6663 1 Other Other +800067da-c5cc-46ac-a3a2-b6ffc92dcc9e 1 Other Other +80007623-d0cf-4a93-8aaa-f5f84e9c1b96 1 Other Other +800079fb-0e96-43b3-a9f5-1e7175fb8948 1 Other Other +8000a1a2-7ebf-4ad0-b32b-c7baaafcd843 1 Other Other +8000cfd4-7147-40dd-b8a9-f652e3e8230c 1 Other Other +8000ee9b-efc6-4eec-9360-c044b0a380d2 1 Other Other +80012885-8be8-4604-8816-0ebf8f70bcdd 1 Other Other +80013561-8501-4e1c-a634-c3b984046e0f 1 Other Other +80017ea7-d26a-43ef-9730-56c8fe93cb67 1 Other Other +8001b2ff-76f8-4a35-a665-17ab5cec8969 1 Other Other +8001c99f-1f54-4197-afda-3f49fd139d3a 1 Other Other +80022242-46e0-4d88-82a9-0d6240e15b3b 1 Other Other +80027750-bdbe-45f8-800f-3f5438136c0f 1 Other Other +80027e75-8c91-45df-85f9-c00d0f99afc0 1 Other Other +8002e6c3-2bb6-406f-af17-f703cad9ad09 1 Other Other +80030c34-6fe4-40e2-aa45-cc85f5d818e6 1 Other Other +800371dc-f9b4-4aa8-8227-8fe424681ffc 1 Other Other +8003c0d5-d248-43c8-9c51-5d1b29d7477b 1 Other Other +8003ca4a-cef2-4dc2-9851-585d24fa81e8 1 Other Other +80041a2f-c8c4-4398-beba-00836a773dbe 1 Other Other +800455f5-ed48-4d2f-b2ad-fd51b2c94706 1 Other Other +800474eb-e848-485a-9cc5-a784d03113cd 1 Other Other +8004c4c7-14c1-4599-be12-d9fe41e7d028 1 Other Other +800504d1-9473-47a8-a8ab-1aa9728632f0 1 Other Other +800533f3-d56c-4eed-a43d-a82b78577193 1 Other Other +80056212-b0ea-4a2d-a3e7-b0930fb0d6ea 1 Other Other +80056cf7-c5c7-48b4-b7cc-c4c48dc2e986 1 Other Other +800589db-a5e6-46f2-a945-fc0ffcda3555 1 Other Other +80061ef5-71a2-419d-89d0-2530bc83b852 1 Other Other +80067186-bfa0-4393-858e-516cdef4e650 1 Other Other +80067e24-50ea-4c2f-b945-044e9b37291b 1 Other Other +8006a155-75f7-40f3-8b94-901b8eb258c2 1 Other Other +8006a970-cee7-4cce-846d-ab7a2dfd7b8c 1 Other Other +8006efea-80d1-4982-b746-f29a1cb2e907 1 Other Other +80070c83-5eb0-4b90-a04e-c6f316005495 1 Other Other +8007ecef-6d37-40b0-b5a7-0eb89b329a3f 1 \N Other +800827a3-a912-41e6-9a1e-14f26f602bbc 1 Other Other +8008d006-4b63-4c0c-aef9-cd9ad400b106 1 Other Other +8008d9a0-1e2a-4f4e-af07-9f14ddccf67e 1 Other Other +8008e829-6e5e-4710-a8b5-aaacc1e3dae9 1 Other Other +8009449d-b068-401f-9ebd-c623251bf111 1 Other Other +80094e6a-1478-4651-809b-1e3db910d4ce 1 Other Other +8009df16-0248-491c-94a8-093f822e05b7 1 Other Other +800a066a-4953-47a2-902d-8e7103b1e40f 1 \N Other +800a0ef7-518f-442d-8c55-36c64da4edf7 1 Other Other +800a3598-fc53-4e5f-aec1-20ea997c2887 1 Other Other +800a7d6f-9a82-4930-b08a-679886dafc72 1 Other Other +800a8756-5ed8-4929-8698-53b212686d13 1 Other Other +800a9d53-13e0-4e1c-a762-d244af281d1f 1 Other Other +800b0a42-a635-4428-ab29-cc92e077f718 1 Other Other +800b3068-6c20-429e-b0f9-99d512684de6 1 Other Other +800b3268-e4fd-4ff1-9abb-7b80c4f59f90 1 Other Other +800b3e78-c896-4db8-ad2f-20ea58506bae 1 \N Other +800b6644-b569-47fc-943a-97bcfd92ec9c 1 Other Other +800c36da-2054-4a61-98c6-5464e9351b6d 1 Other Other +800c73ac-22eb-4ca8-ab31-04763949a839 1 James Other +800c7d56-1153-4baf-a0a0-187ca9c7c722 1 Other Other +800cfc56-2bac-4353-bc18-3be789c8f010 1 Other Other +800d0bc9-ffed-4d59-a700-7c0e7bd96652 1 Other Other +800d42df-de6c-4ee5-92c1-897ca34873ff 1 Other Other +800dba04-5aa1-480f-bc38-abd3fafe0edb 1 Other Other +800dcedc-7b78-4e31-a2cf-80814118db2e 1 Other Other +800dd047-c21d-4f4a-85af-6a28074d8dbc 1 Other Other +800ddeb0-81bc-4609-8e51-9e63cd8c3e02 1 Other Other +800df8da-9e78-4d3b-a548-12b48a84e875 1 Other Other +800e1444-bb29-4f8f-a6e1-e3eefd28619d 1 Other Other +800e260b-3078-4ba9-a877-c86de42d6e2d 1 Other Other +800f32f0-cef7-4443-b57b-ecde2b1ddbe0 1 Other Other +800f37e1-aa25-42d7-831a-8099342c5ee0 1 Other Other +800f4a75-0523-4131-8f76-979e467bb3a3 1 Other Other +800f6015-5f71-45d6-ba1f-5fd4c1fdd171 1 Other Other +800f8aa2-eb22-4343-b129-c23aa461dfd8 1 Other Other +800f8fb9-202f-4dc3-97e3-b50fde1fd363 1 Other Other +800fa3bc-2f28-4dd2-96f9-e9659913a2a9 1 Other Other +800fbb83-fc7c-4401-8fc7-2c0baec39cb3 1 Other Other +800fd923-3b76-4acf-aec9-0f14fb325a9d 1 Other Other +800fe607-9518-4e9a-867d-f7403cfaf487 1 Other Other +80101af4-0b7e-4ce0-8ff8-9114e48e9ec6 1 Other Other +80104473-d450-4ab4-8dca-c5415118187e 1 Other Other +801050f5-8d88-4bf6-8649-b015dddeb777 1 Other Other +8010850b-c3b1-4fc2-b733-9187e3f10b43 1 Other Other +80108f38-ff6e-4fae-ae98-6ba8f1b0a5fa 1 Other Other +8010a4d1-0afc-4e9d-b41e-69e38c6cdcd5 1 \N Other +8010b89a-9eec-4232-943a-15594213e592 1 Other Other +80110c54-3c7a-4020-923b-3286db1f6cc5 1 Other Other +8011192d-ea69-4c4e-9edb-8c129213ad62 1 Other Other +80114a02-4291-46a0-8266-cd5615748287 1 Other Other +80116121-b53b-48d0-afeb-bff8ee685785 1 Other Other +80117db0-49d9-4ce0-ac8d-4c31975984ce 1 Other Other +8011aadd-4b7d-4296-b64f-ac938e6c6a0f 1 Other Other +8011bd90-dc5b-4055-b36f-1b4e6c1abf15 1 \N Other +8011e174-9d44-4b8d-92cc-0e316b6ca7cb 1 Other Other +8012300d-8e90-4f82-b123-2987f592d7e9 1 Other Other +8012ad61-3e9e-4ddd-95a2-937bf67a17b8 1 Other Other +8012b969-4d2d-4157-8d32-10f61da18359 1 Other Other +80132a8f-8c3a-40da-88bf-6ca0ebdcf574 1 Other Other +8013723e-a8e8-48d5-a917-5ac7a0f57d18 1 Other Other +8013aca7-363a-4519-88b1-a120a6af9d26 1 Other Other +8013b783-2287-4db3-8661-98f2cdddab9f 1 Other Other +80140b62-c117-4b2e-9374-512c138f88cc 1 Other Other +80140e69-cc47-453b-b825-68a3c2b694b9 1 Other Other +8014be1a-ddb8-47be-8d7b-ce69295efc79 1 Other Other +801543fc-c7ec-49ee-8190-c302a6e8f22e 1 Other Other +80157fc5-621e-4cc8-a334-5804473fd558 1 Other Other +8015fc6e-c263-4317-9c28-d613026362c0 1 Other Other +8016844f-3980-40d6-9d6c-45d74dda47fa 1 Other Other +8016845e-122b-42fd-af62-baeaeb9ab385 1 Other Other +8016d3f7-4620-4031-9380-97a3c91deb67 1 Other Other +8016e6d7-05c0-4aea-a5e9-674b8bc5aeba 1 Other Other +80172aa7-6744-4122-abc8-87786f4dee4a 1 Other Other +80172e96-52d1-4474-b2b1-007844f13cff 1 Other Other +8017776b-f344-41f6-864e-ad3bbf9053c8 1 Other Other +8017d9f3-808f-482a-b0f0-4213a588d53c 1 Other Other +80183469-75a1-4a50-b3ec-e117cefd026e 1 Other Other +80185e38-c496-4f1c-a9ff-d978a1a866fa 1 Other Other +80187b8d-ffc4-414a-90e2-1706dd944dbe 1 Other Other +801968d4-92cf-4875-82f5-99dfc93862e7 1 Other Other +80197262-8542-4465-a456-6c60ef8960cb 1 Other Other +8019c5b4-3ef2-4438-b601-9cf4aa05f8d8 1 Other Other +801a07c7-acfb-4b78-b2fd-5b4f8947b29e 1 Other Other +801a08db-946d-476e-b7d7-3c7297d91830 1 Other Other +801a2468-e275-4f7a-9165-6bbe76c26a35 1 Other Other +801a625c-b04c-4e0c-ba39-d4b042f6457b 1 Other Other +801ac7f8-5112-4100-875a-bc1dea751e03 1 Other Other +801b4be4-476e-4fe1-8f66-badf961e9d61 1 Other Other +801b8453-5e2f-4750-9c6e-9f0d755c2501 1 Other Other +801bc7d5-ce3d-45c1-8a58-fdf0a565eb9c 1 Other Other +801bce66-5bc1-4e88-8d39-a72b747b2f96 1 Other Other +801c3db6-f399-4700-ad4e-7cf088aa997c 1 Other Other +801c4241-5a38-40d2-b3a2-9944ee4fb2f8 1 Other Other +801c4e17-94b2-4119-ad2b-4fe99b7b6e39 1 Other Other +801c9b40-9b0c-4035-a44a-21532e278d8b 1 Other Other +801d15d5-b9be-4601-90ea-f331522aab53 1 Other Other +801dd2c5-18b1-4add-b673-86fb107485a9 1 Other Other +801e173a-a03b-427d-bcdc-c49885e598ee 1 Other Other +801e4df2-848c-4e4d-a802-fb77d0b2e2fe 1 \N Other +801e72eb-9462-4b84-ac47-30f547f4bc4e 1 \N Other +801eaf9d-acb9-4808-ae13-19ab300db575 1 Other Other +801edc0b-7112-464c-ac3e-a9cd95282f39 1 Other Other +801edd6e-7adf-4c37-b432-3d2d3e8a4c73 1 Other Other +801f1b4d-ca88-4be7-a2eb-56b1ec4fa4cf 1 Other Other +801f4db1-f1d0-46a7-9b74-5cc20ce3cda9 1 Other Other +801f9207-e541-4e02-8526-9bae2feb89b1 1 Other Other +801fe199-65da-4c3a-8791-1ed345dc84a3 1 Other Other +80203c35-faed-4d1f-bb60-ff5597678f69 1 Other Other +80204689-dea4-4200-941a-221ad3480fab 1 Other Other +80210fbf-b88c-43bf-8da8-6d7c5f47f9c8 1 Other Other +80216603-cc17-432d-a09b-1f8aa344e527 1 Other Other +80217dad-855c-48d2-8f59-ae8ae6e45e6f 1 Other Other +8021cace-c9c5-41ef-84c5-8ad7004e343d 1 Other Other +80220594-2527-44e5-ba99-8a88a8a70784 1 Other Other +80221b94-50d4-40e9-9d9e-085b9a139221 1 Other Other +80222259-6718-41e8-82ff-0f710835a1e0 1 Other Other +8022458e-237a-4435-8fd7-ec9ec2f03683 1 Other Other +8022bfac-55f2-4c64-b0c3-b8d76100fcb6 1 Other Other +8022cabd-79f3-4619-9843-d95baf6e377d 1 Other Other +8022e6ce-cca3-4447-805c-e7bf41b45354 1 Other Other +802315bf-67d1-47c9-a419-4f0ea11a5ca3 1 Other Other +8023a773-4e62-4881-a4e8-cf7559e59062 1 Other Other +8023f699-553c-40d8-aa78-7589939f06bc 1 Other Other +8024230e-1dee-4bf2-8bfd-b47301b571c1 1 Other Other +80250d05-240f-4eaf-9386-6e1a6121b190 1 Other Other +802520fc-a275-4659-8bbd-0bdfe67db252 1 Other Other +80255320-0820-448f-9f59-118341132052 1 Other Other +80259ea2-8660-49bb-b7d7-871c33903227 1 Other Other +8025c30b-4f64-4039-a653-aa711f68e2de 1 Other Other +8025cfd4-60a0-41ea-a0c9-b5a7d4c6c423 1 Other Other +8025dd51-59a3-46fa-9465-55357d73b36f 1 Other Other +8025e456-e6d5-4c40-80df-9abea69160a2 1 Other Other +8025f9f6-7e54-4a07-8fee-af2d7f08b8bc 1 Other Other +80261cbd-d926-4b68-a765-c82e742ac7a9 1 Other Other +8026348c-539b-487c-8341-d5086419deb9 1 Other Other +8026beea-2c11-4144-9cc4-1ea881998b95 1 Other Other +8026c6ee-c658-407e-bea0-7fdfaf302cd9 1 Other Other +8026f0b2-db8f-4024-b784-afa603d06c28 1 Other Other +8026fe60-7d36-462d-aa14-96e4207a4388 1 Other Other +8026fea0-ad4e-48be-86a9-c48caacf4773 1 Other Other +80275246-bd8e-4ebc-9251-872b675a0fdf 1 Other Other +80276fa8-bb69-4f92-8282-53bdf5329ce9 1 Other Other +80277148-eed6-4364-a560-94ca9347852e 1 Other Other +80279c00-56e0-4868-b909-b8fc98ba46fe 1 Other Other +8027a9ea-fd6c-4f4e-b7fe-fc7756b1f18f 1 Other Other +8028a41d-3ab4-495f-8c90-50638a369737 1 Other Other +8028ae72-855f-4f9d-8120-2d7ab41c92ee 1 Other Other +80293975-140c-4340-a2e9-ff8172b84d93 1 Other Other +80293c9b-0d96-4352-bdeb-b5c2863239f2 1 Other Other +802991c1-3f2e-4f60-b824-2b69fda5c716 1 Other Other +80299fbe-2f53-4065-a916-fa402badce72 1 Other Other +80299ff1-2035-47b9-af1e-fcb2cc682202 1 Other Other +8029b7a7-4de1-43a8-92c4-ad0ab97c0b04 1 Other Other +8029dced-3742-4a01-aa45-d9a980cb9a2a 1 Other Other +802a68c9-6f19-4d4f-a0f6-b969c1366a50 1 Other Other +802a8167-e675-45a9-bf83-7b33175f7d8f 1 Other Other +802ab662-e636-4040-8b39-cf2388701694 1 Other Other +802adbbe-c503-41f2-9b5a-c291f8540e6c 1 Other Other +802b7b20-2ec1-4267-8ecd-32b05ad4b992 1 Other Other +802b7c30-f1b5-43fd-8151-fa77dc4195d4 1 Other Other +802b7f68-f946-4d8f-a15c-37476f0aedbc 1 Other Other +802bc4de-1c59-4006-a18b-3c08973d257c 1 Other Other +802c7e1c-aad0-490c-a2e8-7f5226d9fa56 1 Other Other +802ca2b7-b07a-4a02-8f73-b837b8628ac0 1 Other Other +802cc13a-eea1-4e26-a47f-77e85bfd69d0 1 Other Other +802cccb0-77f5-4b61-b3a6-dc08e3b35053 1 Other Other +802cf5e4-6105-4596-84c8-a9e750538455 1 Other Other +802d2360-e7ed-42b7-a8fc-83d2da136d5a 1 Other Other +802d8913-c321-4a6d-b233-0cdcf81b65c7 1 Other Other +802dad0e-4e4e-4928-a117-a2a0f8c5ad27 1 Other Other +802dae89-c2b2-4ee4-9e3c-3053c45a3dbd 1 Other Other +802db06a-87ec-4348-b8a6-b96c775fd686 1 Other Other +802dfcb2-e37c-4b05-a065-ab17ae979d0a 1 Other Other +802e0d1a-d03b-40cb-aab6-4c7a21c97cf1 1 Other Other +802e73b1-0965-46cf-ba3a-f2963f5080b4 1 Other Other +802eb4f6-5189-4029-beb7-ff41672340b2 1 Other Other +802ebf78-e932-4651-986c-e8d3c5e71d29 1 Other Other +802ef63e-d1d7-42ae-a09b-85c611cbf452 1 Other Other +802f6a72-92f3-4a23-9022-a1e7c0c07971 1 Other Other +802fa6d8-c323-4717-9e2c-214e2afd98dc 1 Other Other +802fb6af-5750-4f23-aa05-d6f71513b90e 1 Other Other +802ffd19-c155-4b4c-a175-91f7bf548ea4 1 Other Other +803007f2-0d46-4f08-83c1-f111877536aa 1 Other Other +80304316-fa82-4b13-82e9-bc5524a1614f 1 Other Other +80305f73-8324-4220-adca-f00d5eff040c 1 Other Other +803065ad-bc83-442e-b24a-4d76d99112f2 1 Other Other +8030bfc9-d8b0-4cb9-bd19-68b3e41b097a 1 Other Other +8030ea2a-ae72-4ba7-8754-51e7e8a11c30 1 Other Other +80310b16-5445-46f6-ab3e-2295408af755 1 Other Other +80311ec7-8025-4652-85e1-506acbf639a3 1 Other Other +803149b1-7a6d-46c9-86ca-fc34c543445f 1 Other Other +803184d0-6864-4eb8-9a47-c04316412bb8 1 Other Other +8031b139-8465-454b-b78f-1f248993a1b5 1 Other Other +8031cf96-b162-4216-94ac-f63cd53cecdc 1 \N Other +8031f833-83d6-440d-9bae-163e927b2371 1 Other Other +80321d44-b8a5-4628-a673-e00c43ef2430 1 \N Other +803240ae-5330-4be6-8594-278d278ff7b3 1 Other Other +8032806d-f6e5-45f4-b189-8ad64e914a4d 1 Other Other +8032811a-3ec6-495d-b4ae-cb6db6950e41 1 Other Other +80328f6c-4481-409c-9cf8-d24fb061c7b6 1 Other Other +8032916f-8e11-4812-a6d1-0fe1d5bf624c 1 Other Other +8032b9f2-d2b3-40b6-99dd-4f2d4fc11f4d 1 Other Other +8032e76a-8415-4a16-9f42-0bca5a65bfde 1 \N Other +8032f239-f037-4678-863c-7199036a95ac 1 \N Other +80332045-126b-4980-98fe-9781ff60b925 1 Other Other +80335455-0717-49bd-972f-8019107dd4f3 1 Other Other +80335ca9-b0ca-424b-a3fe-1b685938ce4e 1 Other Other +803368c8-7707-485d-8c97-69a1257817d8 1 Other Other +8033727b-3e72-458b-9e5c-f857a250d613 1 Other Other +8033c24e-f495-40d5-86dd-8b6c93c5e8ec 1 Other Other +8033f029-43c4-4010-bd5e-556ef755ffdc 1 Other Other +80349507-5857-4253-b5ea-05183bac816f 1 \N Other +8034aa65-f0fe-4606-8fc7-f08be952e83f 1 Other Other +8034cf9a-29d1-45e3-a861-3cdcc65a84d5 1 Other Other +8034f92b-8ed1-4e57-ba8a-c92f29c71ab6 1 Other Other +80357a5c-593e-4b77-adce-db4106eda070 1 Other Other +80357d77-8e0f-453d-b6c9-b77c5779d230 1 Other Other +80359f1a-9731-4370-a1a6-eed712785272 1 Other Other +8035dba5-0f10-4778-8d9f-811c4efddb13 1 Other Other +8035e9a6-ee06-4e8c-a36f-fe4588e56a4d 1 Other Other +80369aa9-13bb-49d1-9f55-1e32c621903c 1 Other Other +8036cd4a-ebb3-47be-860e-ac49b9a413be 1 Other Other +8036d183-9dea-412b-9bf1-d8bf60870c6c 1 Other Other +8036df9f-42f9-4684-80e8-dd317fd6c470 1 Other Other +8037372f-43ec-414e-a8db-5d4aa0e0d12c 1 Other Other +80379d08-db54-4573-82b2-5ecd77613a6c 1 Other Other +8037efc2-e297-4535-8fa9-3b02bba69c92 1 Other Other +80380c87-06be-4122-8f4b-6acb179e24a7 1 Other Other +80381eb8-1471-43c7-bb25-1493ad34ecea 1 Other Other +803874b7-3b32-4bb0-8c59-626fe03f4c90 1 Other Other +80389c3d-70b7-4255-9535-576ab14ce709 1 Other Other +8038b364-0421-4a54-9595-de2e3d3fc481 1 Other Other +8038e28d-41c5-4087-9444-73bde86cb784 1 Other Other +80391efa-10a4-4239-bd0a-5248c79d119c 1 Other Other +80399844-2514-41e2-9ba7-b1d36fd21fe3 1 Other Other +8039b797-e154-4333-ab5d-ce66bc27aadb 1 Other Other +8039c3f6-be02-405e-8a6d-ec276b246848 1 Other Other +803a58b6-60a1-4a93-b344-7967f9e86ed1 1 Other Other +803a6e1a-3c7d-4f98-8927-198d4f3cfdcd 1 Other Other +803a7a04-244a-4f48-8f92-56008079af10 1 Other Other +803a9f76-ce65-49e5-9c57-7fdc06231443 1 Other Other +803af39f-68bb-4979-8649-cb15688d203c 1 Other Other +803b57ae-6f1a-4a47-b52a-a1f8b1d99c44 1 Other Other +803b7eb3-cdce-4b85-8fe6-e3adb3222fd3 1 Other Other +803bad24-5685-4fa4-a519-334f12b9a8dd 1 Other Other +803c1330-bbda-4658-82ca-fb2580549d2a 1 Other Other +803c308f-d221-4616-8404-c0831d940e7d 1 Other Other +803c4a10-1b54-49df-ad07-816acb4f78c3 1 Other Other +803ca731-b9e1-4a04-859b-f9109dd5ee0b 1 Other Other +803cdd84-bcf3-4a81-889b-635fd733a8d9 1 Other Other +803d2a46-6b60-45c0-adf5-65049d8c5b9a 1 Other Other +803d5440-8e13-4eba-929b-7e32b3f8cf6d 1 Other Other +803d606e-cd0e-45e9-97e8-8d959c1c87ee 1 Other Other +803d873e-f4bc-45bb-a747-c535726352e7 1 Other Other +803dcfba-a25f-4512-a549-73a4d1bc0ef3 1 Other Other +803e105a-efa4-433e-b77b-e31ca2685cad 1 Other Other +803e3a91-b8b5-46c0-b5b7-56208b766542 1 Other Other +803e498d-001d-441e-a9fc-95fa02663959 1 Other Other +803e683b-0cae-4219-99f2-4222f5fd0da3 1 Other Other +803ef50b-274a-424a-95c8-d564c3c40df8 1 Other Other +803f4b99-64d7-4253-81a7-25be333fcf4d 1 Other Other +803f681b-df05-41f5-b616-d6868e5b2bdf 1 Other Other +803f79e7-e8b0-4e9a-85e1-091327106c29 1 Other Other +803f7a72-7cf6-4e9e-88ab-4fb221b978e6 1 Other Other +803f9b80-1124-4818-b6aa-5649ec34dfe5 1 Other Other +803fb492-ec98-4963-b37a-da8eba7c37c0 1 Other Other +803fd35f-cf0b-4dde-baef-c3b3e1b3e7ff 1 Other Other +803ff069-64f5-43cd-970b-0ed41b593be3 1 \N Other +80402877-948f-43f1-bc8c-1d674adfa731 1 Other Other +80403457-192f-467a-9cf0-941b773097b1 1 Other Other +804070eb-796f-4603-9f42-59aed9a7331d 1 Other Other +8040a1ad-3166-4872-b6da-fe1237012871 1 Other Other +8040dae2-2c3d-4574-a13d-26333848459d 1 Other Other +8041140b-2842-46ad-90f3-4e37001591e6 1 Other Other +80411cdd-8d0f-4e10-b834-8707cfe6c577 1 Other Other +80411f8c-8cbb-4978-ad42-f0e9f4d392d7 1 Other Other +804191ec-9fe2-4908-ae48-c7b100aaaa93 1 \N Other +8041cca4-2c56-46d7-9bf5-5b820a498277 1 Other Other +8041e26b-a46b-437c-8b1f-24553175a24a 1 Other Other +8041ea7b-0bc0-422f-953f-9c18bbdadb84 1 Other Other +80431189-2456-417a-ba59-659122ada1d0 1 \N Other +80434cdd-f7dc-4c54-a53b-4c1b87e33aa5 1 Other Other +80439a58-405d-4c42-85ac-965cd53786ae 1 Other Other +8043b4a9-5822-46fc-9c32-952329e93d11 1 \N Other +80440a6c-8c52-46e6-a42a-499085c087b1 1 Other Other +804446b0-7792-4279-af16-d5d451e97028 1 Other Other +804460c2-5b46-457c-a359-e2811896d513 1 Other Other +80448e58-1e9f-4fb3-8224-dfbbe382b54d 1 Other Other +8044b296-710f-46f0-a824-b820b92eb137 1 Other Other +8044f189-adc6-4c43-8bbc-824fb8841f07 1 Other Other +80450444-f3c0-4932-8852-6ed558d3fc52 1 Other Other +8045625a-7762-4b52-8232-b0d63910179f 1 Other Other +80457ee8-a0f8-408a-9dde-d5a324895dd6 1 Other Other +8045a329-6dbf-4e5a-b964-4ef1cef0d36b 1 Other Other +80462952-4567-4490-a33e-870964b9f3d1 1 Other Other +80464cd8-6dc9-4946-ae37-d7dcbb6f20f9 1 Other Other +8046c5b9-f60b-4ee9-8653-50a909a16399 1 Other Other +8046f1b9-b870-43e2-8db8-287e08422fde 1 Other Other +80474d88-70fc-4bf8-94fb-41a5eb3e55af 1 Other Other +80474f9c-2940-40bf-8ee8-81865a00397c 1 Other Other +8047cc74-a3e0-48ee-8c29-b0db33893990 1 Other Other +804870f7-72a2-445a-b0f4-863cac748692 1 Other Other +80487a65-057f-47e8-b4ed-165bb13ece26 1 Other Other +8048ad83-5f78-4e45-8864-374dfd3c135d 1 Other Other +8048f34c-cfd5-4f85-80e1-9bf18e1c16f8 1 Other Other +804905a8-9aa0-4f89-911f-b3ac70401fb7 1 Other Other +8049227e-9f53-4cf9-9100-acd2adaf5897 1 Other Other +804937c4-758a-4790-a895-df7587209d1a 1 Other Other +80496466-50c6-4eb8-9e5e-26feda4b4add 1 Other Other +80497291-4436-47d1-a15c-1fec5b81c61c 1 Other Other +80497735-7d11-405e-a3b9-3da99166f052 1 Other Other +8049b243-7bd1-40fa-b075-9f4417589a83 1 Other Other +804a0164-7e9c-463f-84a5-83e656b23c0f 1 Other Other +804a4df5-38be-45c3-81af-63a8b0725195 1 Other Other +804a7cce-828e-4fea-99c2-ab91127781db 1 Other Other +804ad8da-4757-4c8a-be52-cc91e43d6b58 1 Other Other +804ae33f-b37f-48cd-b03c-631994164a23 1 Other Other +804b2722-0265-4a16-9211-95cbd00c2d27 1 Other Other +804b4e1a-e077-4896-9a62-064f071eb569 1 Other Other +804b55a0-a6b8-4595-b0d5-d90fff0fa3f1 1 Other Other +804b7936-86f4-4679-9deb-b9c56518553c 1 Other Other +804b8dbe-62de-4b33-bd0c-80fb11e3c13a 1 Other Other +804ba0ed-2958-479b-ac0a-4d025ad5cce4 1 Other Other +804bde44-5bfe-4560-8962-9c6a96c44d83 1 Other Other +804bfe0f-42f0-47e1-a4ef-9a8d805c9c8d 1 Other Other +804c2116-6e2b-4041-83b2-72bd84d8f8fd 1 Other Other +804c48f9-5ae3-4f8a-9af8-a23655ba659f 1 Other Other +804c9397-eaad-4316-8c62-74d9b5374c81 1 Other Other +804cdc9d-fbd2-4f78-9a52-450b9a6d7c86 1 Other Other +804cf068-4e04-48ec-9d96-160381ccc463 1 Other Other +804d102b-4d65-4ba3-8dd5-c61ad3d504e2 1 Other Other +804d2f57-e297-4205-852f-3b613ffc11e0 1 Other Other +804d31e1-f577-4072-98b7-278ca56c78eb 1 Other Other +804d8603-cd6c-410e-8dc9-dea562697137 1 Other Other +804de14c-4547-4b54-9cac-9c6f34c7e092 1 James Other +804dffde-0211-4da0-98cc-8ba976f79009 1 Other Other +804e00f6-b848-4148-bbd6-09dbe931df80 1 Other Other +804e0f8a-f134-41db-bb15-8fdad1245ba3 1 Other Other +804e4e38-0d2e-4b8b-951c-d3beca06ad87 1 Other Other +804ea1a9-4a1d-4e10-b7fc-be4f8bd68306 1 Other Other +804f39f0-5486-4f8a-8955-e406463d7c20 1 Other Other +804f6fab-26e5-4cc5-ad31-048c11372aa1 1 Other Other +804fe9fa-24fa-4ca8-9010-33a03be8bbf5 1 \N Other +804ff5a2-868e-44a7-8f64-12b7752da6cb 1 Other Other +804ffaa5-848d-46c2-8a56-3b4a8104a9ec 1 Other Other +8050135f-f347-45cb-8c12-471d6845319d 1 Other Other +80504caf-f155-4a58-bbcf-50e1dc0da906 1 Other Other +8050504f-172f-45e5-9d3b-36849115face 1 Other Other +805056b2-d398-4b52-983b-cca7c66e7a5b 1 Other Other +80505943-fa2a-4d44-8135-98ffcfb32108 1 Other Other +80505e40-8933-4bcf-955a-5bbbed922a4a 1 Other Other +805099e3-8997-4dc5-9090-8b513c58ec8d 1 Other Other +8050a1b4-b8a5-4add-9b5d-b42425409fc8 1 Other Other +8050bed8-ab02-4e5a-8bd7-d2d35b781608 1 Other Other +80512dd3-d6ab-4c66-b526-c8dfab475267 1 Other Other +805190ef-7abf-4f11-b611-f6ad3bd2d56c 1 Other Other +8051cf39-70ed-4436-b5d9-ba0eb52b015c 1 Other Other +8051d324-66fb-41cf-ac50-73b3933301af 1 Other Other +805210f4-baa1-4567-98ca-905e254a19a1 1 Other Other +80527426-60c8-42fa-a3dc-600854c09082 1 Other Other +8052aba1-ed54-44df-8fe9-206d917db14a 1 Other Other +8052df96-9cfa-46e8-b0d3-4e72119d2fad 1 Other Other +8052f6d9-2e00-410f-9f2b-e355c87e5ed6 1 Other Other +8053469d-296c-44f4-9b9b-e46b48f1ccc1 1 Other Other +8053a739-b537-4466-a126-139eac51cf95 1 Other Other +8053fd9e-d0ca-4abf-af73-67f73d63b59b 1 Other Other +80541dc7-9bc4-4c71-b90e-c10018d0722f 1 Other Other +80545afb-8b05-456b-9ac0-e32fd5e9bd8d 1 Other Other +80545e84-3e69-4ef3-a973-0c4e95320f8d 1 Other Other +80547f4e-d586-44ed-b326-7f9a13a1ba72 1 Other Other +80550aae-8b95-42f4-97cd-f3fe0a785baa 1 Other Other +80550cc9-6c6e-4503-a299-d96ead6a1153 1 Other Other +80550d9b-4af1-49b2-845b-aa98001d142d 1 Other Other +80553c8f-231b-48f7-8a92-db52dd98df82 1 Other Other +80555179-4f9d-4aa7-a04b-14bad07c1683 1 Other Other +805566db-3c47-47e8-9bda-05570360cb7d 1 \N Other +8055e17c-bfb6-4ab8-836d-e61fe9c911c9 1 Other Other +805686fc-900b-4740-b4a4-4aedb6884c0d 1 Other Other +8056aa5e-36e3-49d2-aa53-009bb2dd8656 1 Other Other +80571d1e-f9ba-48bb-8dd9-df15841b4328 1 Other Other +80579fa1-0d19-4ff8-9244-52ddebc01827 1 Other Other +805818f4-a345-478c-b1c6-b460d81fb96c 1 Other Other +805823f8-344f-4d11-8ff3-0cd0fafc700a 1 Other Other +80586441-b07f-4e55-9b90-3092a45c4c3f 1 Other Other +805889db-5aae-4bbd-935d-539092128630 1 Other Other +80589ba6-a8fc-412e-bde3-6fbdef4f775f 1 Other Other +8058a2ce-1af8-4eb6-b074-a293604e5021 1 Other Other +8058c425-3101-4dfd-998b-688888f41fca 1 Other Other +80592715-923c-4d38-9195-2700fcb87050 1 Other Other +8059502b-7a5c-49b7-90b7-a88ccef08a87 1 Other Other +8059bf3f-2a14-40c2-95c3-3b95c83b288f 1 Other Other +8059e984-f1ee-4f70-8bf8-6460336edf2e 1 Other Other +805a23fc-b514-44d5-86f3-9ad3d2de9c3e 1 Other Other +805a2bd1-9867-4e3b-8ab4-c2ff7d4455e0 1 Other Other +805a3148-6e80-42e8-9631-d8407d1b9ade 1 Other Other +805a69a0-9d78-45c5-883c-58c416f10da2 1 Other Other +805a8539-d2be-4489-b41d-75780397dcbb 1 Other Other +805a8ff1-52fe-4700-915a-20124bb670bc 1 Other Other +805b3270-ffe6-41c2-b0cd-40edf95397e5 1 Other Other +805b5a8d-ee2d-4d79-9a6d-c367e9210da8 1 Other Other +805b5f26-fe8e-4d22-ae7a-ca2889c97456 1 Other Other +805b6f1e-1cba-4111-8b65-13bca077c39a 1 Other Other +805b8277-de42-4a1d-b233-dae99568a7df 1 Other Other +805bdb2a-e076-4b8a-abf9-adf8e4d6049a 1 Other Other +805c03d7-8455-4ac8-8823-bec262dc4c86 1 Other Other +805c24f2-d8d2-474a-aa4f-673b9a71e4bd 1 Other Other +805c6a8a-e2b4-42da-bd5c-d1abc5316efe 1 Other Other +805c6ab6-9fb8-4947-81d8-023d7c4fd8e5 1 Other Other +805c87f1-8b98-4908-85aa-4894f51d9303 1 Other Other +805ca5a9-2d4b-4a71-88aa-83bb5b286fc1 1 \N Other +805cece6-f88c-4282-a227-9d2ad3b7fcd4 1 Other Other +805d0409-5951-424a-a95f-15ea20576490 1 Other Other +805deda0-6b0b-4698-ba18-0bd88135cb28 1 Other Other +805df3d9-eacd-400c-8270-c0ebfe8de08c 1 Other Other +805e3c0b-d2e8-4855-b2e3-f096ad10ff6e 1 Other Other +805e4f9c-c2b8-4c0b-a26c-d2a8f8a24370 1 Other Other +805e912a-16d7-4fab-8956-f55f6db28dbd 1 Other Other +805eebdc-de5d-4a19-9599-bbb115179bc6 1 Other Other +805f34a0-6420-4a94-a0fe-be5261a0511d 1 James Other +805f5cfe-ff84-4b74-8aa7-12a8b894e8cb 1 Other Other +805fc3e6-195b-4b61-9267-fc825ed03bb1 1 Other Other +805fcd92-3150-4ff2-a395-6d602f63721e 1 Other Other +80601efb-0401-4f2e-b2a3-cd9e4a2bf01c 1 Other Other +8060479b-cd22-48f3-8934-1623fc28caa0 1 Other Other +806052ba-5efe-4d7b-9e07-bfdd6c1f2d28 1 Other Other +80607cb7-6631-492c-bbb1-ca5be0e99a44 1 Other Other +80608346-bb68-42dc-a850-b34d06af5c03 1 \N Other +806090bd-a3dc-4b41-926c-6fa8a0b7414e 1 Other Other +8060b235-8e9c-4f68-abb2-03de3407941c 1 Other Other +80610362-62a3-4ec1-a7e6-4a8eb044b868 1 Other Other +80610b48-9e51-488a-ac87-1ee6fe57a306 1 Other Other +80614d76-42c6-49cf-96be-32ac664b817c 1 Other Other +80615616-edd2-45b9-ac62-3787dabc545d 1 Other Other +8061eed5-1e10-402d-8615-a6c0d4a8a88d 1 Other Other +806213a8-d0f0-4838-8a7c-2f8d56f7bd5b 1 James Other +80621665-0f74-4cb4-a719-712be7f9cc8b 1 Other Other +80624366-88f2-4bae-a69c-d141352d3a12 1 Other Other +80627b19-e12d-47b6-adff-cc6a3ab0b93e 1 \N Other +8062ac3f-401f-4e95-8c6c-95a5d63c7d1a 1 Other Other +8062ac82-4914-4868-89bb-f863752ba43e 1 Other Other +8062e04c-ae9d-4b40-9acb-139aa9259a55 1 Other Other +80630470-374f-4dc5-bc28-0353d4ba0d65 1 Other Other +80630b1b-9ffa-4447-962c-e61f86e9d218 1 Other Other +80637d46-8870-462c-aa57-1d9044909b5b 1 Other Other +8063be56-b917-4092-8b73-38c3dd0b792c 1 \N Other +8063d1a5-fd59-4ee6-96a7-b0fa47468dfa 1 Other Other +8063faf3-21f3-4281-ba3c-f17c640f9ee4 1 Other Other +806482bc-7339-4591-9bd8-a972b586e44d 1 Other Other +8064e142-e793-4bff-a0e6-c95583972ac2 1 Other Other +8064e147-fb98-4c5a-9051-45ae83c93b0d 1 Other Other +8064fec6-5bd4-44c8-b8c4-5c6e53f105e7 1 Other Other +80655a1d-4ee7-4144-84c8-7b8cf7838a43 1 Other Other +80655d34-11e8-4ed1-a93a-77aea9c8ca42 1 Other Other +80656f17-1936-4f27-9e30-835546cee097 1 \N Other +8065d835-f14a-4d00-8a13-169a1f32c3b1 1 Other Other +80663a09-a89c-4230-b963-3c8e2af97efd 1 Other Other +8066aea1-008f-4347-a304-615e8b8ff633 1 Other Other +8066b55c-03c5-4a44-8deb-f440738c9516 1 Other Other +8066cfe7-5057-4861-abf1-2619869635bd 1 Other Other +8066e6fd-c973-4bd6-af21-fa135667a0e3 1 Other Other +80672384-4cef-4114-8b7f-28ec74e79bad 1 Other Other +80674afb-cce9-4c65-8b63-0eaec58417c8 1 Other Other +80675913-eff9-492a-a1d9-df675c0b8462 1 Other Other +80675b96-c5b1-45cc-b7ac-ab07c457ce89 1 Other Other +80678d58-d11f-47fc-9a4f-3ac40406b7c6 1 Other Other +8067c5c7-982b-4f55-8397-2fca5bbb70c7 1 Other Other +80688cf3-1512-4d99-b748-4687d0f78cbf 1 Other Other +80690c7f-5a7d-44ce-870a-4ce6ce6eeafa 1 Other Other +806995ee-213f-4fe9-be0a-4d8c691c5c62 1 Other Other +806a53c8-b086-41f0-b7f2-646888f217dd 1 Other Other +806a6605-e27f-45a3-93b2-a8db12985f13 1 Other Other +806ac021-19aa-4ad5-a71b-395eaba06a21 1 Other Other +806adecc-97b5-423c-bbaf-91d9ebe11dab 1 Other Other +806af117-ad44-4cab-b858-6a157b150e91 1 Other Other +806af2a0-6487-4796-a932-5775a4b9db02 1 \N Other +806b047c-cb9f-4e83-8d7e-25358971e1d0 1 Other Other +806b86ed-11a4-4ba8-8c10-f455e7b7195b 1 Other Other +806b880a-cdd9-4790-9c57-780443e37fdc 1 Other Other +806bb9e1-2013-4627-bd70-a13113390b8a 1 Other Other +806bcefe-a5da-487d-bc8b-794789994a05 1 Other Other +806bde14-fb37-4461-b9c5-c2efe4710edc 1 Other Other +806be32a-15ec-43e9-9bc6-d617c24a9ed4 1 \N Other +806bed54-8604-4e3c-bcc1-0b6ad1b5e906 1 Other Other +806c525b-d72b-4a21-af27-4700e63ca149 1 Other Other +806c5d7c-f5b3-4c78-bd14-349da37661c3 1 Other Other +806cb6e8-cf92-4a4b-bf89-7f9be94e691b 1 Other Other +806cc9ef-1043-4953-80ea-839d237a01a9 1 Other Other +806d8171-31a9-4a8b-b066-6f2fb88c09fb 1 Other Other +806e049a-ee06-489e-83f1-c4ccaf72665c 1 Other Other +806e09ce-adce-427d-b1d1-3a3524da20b4 1 Other Other +806eaa70-7512-424f-ac4d-ce8610b7d39f 1 Other Other +806fa0d8-ed4f-499d-8d4a-aeba71171d54 1 Other Other +806ffda0-3504-4818-bd7d-e1e23a4a4c69 1 Other Other +807017fe-5b01-4b09-90e6-3949534559ae 1 Other Other +80703b6f-47b4-4821-bb5c-5a302943c7e2 1 Other Other +80703c1e-df02-4227-8e27-a62262671139 1 Other Other +80704d7d-051a-4e5c-b3f8-46777a0b4c04 1 Other Other +807088de-0870-4743-8a0c-e7f26dc46e34 1 Other Other +80709f2e-052f-48ab-99f8-ca47f7d9d8a1 1 Other Other +8070ab94-2426-41cc-94e5-c0346d41f7d4 1 Other Other +8070bd74-ff95-4aaa-94ca-36843434490d 1 Other Other +8070df13-e8ff-457d-bd7f-aacb67146d37 1 Other Other +8070f760-42c4-4098-b138-ec3cf36be2dc 1 Other Other +8071107b-6f93-4097-8e0d-c82365e6f681 1 Other Other +8071591a-97d8-49d2-b8cf-a5799259dbcb 1 Other Other +80716cf3-2171-4941-9a24-dfbf8cb1f361 1 Other Other +8071a01f-2870-4d73-90e5-d396d45a68bf 1 Other Other +8071c88a-6e41-4eb2-9db7-8a216f1175ff 1 Other Other +807204b3-adf1-470f-b752-44af8b1d9830 1 Other Other +80726a23-2aa6-4e51-94cb-b95b00fcfb7d 1 Other Other +807284da-b446-486e-ab67-be9667e5577a 1 Other Other +8072afc3-d6a1-4ec6-92d5-272a164931ff 1 Other Other +8072b0c8-63f4-480c-864d-96d47bf2c516 1 Other Other +8072b1d4-e59c-43c4-b662-efa8169c5d2f 1 Other Other +8072c8c3-cfb9-4f7b-b3a1-fae602fa0615 1 Other Other +80732d01-7432-472f-8098-1fe59b24e579 1 Other Other +80734b58-8f37-4353-99fc-493a07c52c91 1 Other Other +807358a0-5b14-4925-a704-dd1e6009fa3f 1 Other Other +80735a8c-584f-4bc6-ad35-0c9cd737d2b9 1 Other Other +8073789d-b85b-48fa-b1d6-da5b8aa957d6 1 Other Other +8073b79f-2559-4a62-b3af-c5663f65fff6 1 Other Other +8073c4e0-a951-4baa-b491-1a6c87d58ecf 1 Other Other +8073de7c-618c-4ea5-9033-c957123145c5 1 Other Other +8073fa9c-1e2b-4f99-96dd-5663f8f58504 1 Other Other +8074069a-f055-4d84-acc4-2acfc3060ead 1 Other Other +807408c2-aaf5-4a51-a6b4-d12425452069 1 Other Other +80740f83-2864-4edd-9b05-dde96e95becb 1 Other Other +80741f59-9902-4aac-b4c8-b39ecdcbadfc 1 Other Other +8074d5c8-fef9-497b-a117-6febd978f4a2 1 Other Other +8074eec5-e3c9-47ca-9a90-e8af7a9705c6 1 Other Other +80755d39-a69d-4ba2-988a-3ea0e3f5f5f4 1 Other Other +8075a5e9-6dc0-4043-9574-49380d30e96e 1 \N Other +8075d1e0-2e74-41c2-a06e-e7656f504605 1 Other Other +8075db01-b191-4f89-b4f3-b26161b140da 1 Other Other +8075e4c7-06d8-4c16-8ff8-e6757c91520b 1 Other Other +8075f7f4-227c-4292-a532-4af064392186 1 Other Other +807692ee-a7fc-44c3-a877-f675b2b4fa1e 1 Other Other +80769da7-a77d-4767-888f-ef71b19f3a9b 1 Other Other +8076c08e-9e32-41c8-a751-580436ee0ec4 1 Other Other +8076ffc0-a41a-4ef0-b047-daa980182005 1 Other Other +80773bb3-d059-4b10-924d-b00ea7c61208 1 Other Other +80774d74-cb73-4d58-9fa8-76c3c8abf630 1 Other Other +80783251-e98c-46ad-a37a-c95126386b56 1 Other Other +80783b9f-5f73-46cd-a816-c96d08ffec07 1 Other Other +80784200-83c6-4904-9e7e-e51b99e12262 1 Other Other +80789031-4b42-481b-a5b4-ca656293d856 1 James Other +8078a0a8-fc5b-4625-8799-8f9f26b56527 1 Other Other +8078b85b-8b28-48ef-84f9-45cbe21582a5 1 \N Other +8078c2b0-2437-4462-bc6f-9844c37ffa1e 1 Other Other +8078e989-8e48-4e03-95c9-f11a3a5b6c8d 1 Other Other +80791246-7609-4afa-85ac-73c95d9ba0d6 1 \N Other +807932ff-e26d-4c13-a02b-a7d7a49bf4f3 1 Other Other +80793cd3-0272-4fd8-b31f-594812980142 1 Other Other +8079851a-7f33-42fa-8688-994295eee856 1 Other Other +80798fc8-ce3a-4eec-80bc-4519a05b7dee 1 Other Other +8079e5ef-d16a-4c3f-85a8-9d43d4fd6b64 1 Other Other +8079e7e1-ae8b-455a-a16b-14615e56dfaa 1 Other Other +8079eda4-1125-4764-b9b3-2dd251b250e7 1 Other Other +807a08fd-5bdf-4891-a385-bdc861445a84 1 Other Other +807a31e3-910a-4c8d-9978-f58045c2f20e 1 Other Other +807abff4-14ab-4817-9a3e-9c7fd389a899 1 Other Other +807ad8e7-9314-4dfb-83c6-2f097c4bddc4 1 Other Other +807b2c50-96f0-4bc6-b3d9-f66fc0429055 1 Other Other +807b55c7-063a-4ef9-87cc-dc89fb2f495e 1 Other Other +807bb8bd-a4b9-4000-a2d2-aa3343cc3dae 1 Other Other +807bd54c-4986-4c5a-b1b2-eae2108d6437 1 Other Other +807be42e-04bb-4e73-baa0-e6366aea2c0b 1 Other Other +807bea08-dc0f-4a8e-a7d6-71f6af4995fe 1 Other Other +807c8dfd-463a-45ae-a05e-5725aa75cb37 1 Other Other +807c95d7-46e4-47d6-b510-28315c3d74eb 1 Other Other +807ceeb4-7b94-4e84-a74a-6443f91e535d 1 Other Other +807cf55d-5fa2-4291-b057-a2b265d062e3 1 Other Other +807d0b34-8826-49b7-827f-e5b3784c4da5 1 Other Other +807d2fbb-63dd-45c0-b582-2e6a60fc7b19 1 Other Other +807d3544-33ac-4006-90c1-7409e0a1fc37 1 Other Other +807d72d6-92ea-43f1-bac0-c2b11f838854 1 Other Other +807db7c0-785b-4f31-8abd-c262d4cd51c9 1 Other Other +807dc7b7-9e1a-4a7f-92f6-c74040ad650c 1 Other Other +807ded17-ceea-4fcb-870c-6637dc087b1b 1 Other Other +807def8c-598a-4d84-aebe-6b5865066820 1 Other Other +807e115a-c2c7-49e9-99c8-c0edc06b90de 1 Other Other +807e31d4-030b-4d41-985c-bf6a812200bb 1 Other Other +807f1c84-97e2-4902-8f48-1b5c6d802db9 1 Other Other +807f2116-c100-45ee-b11c-1f529a38c3c6 1 Other Other +807f3988-d056-4761-886f-f08998e95136 1 Other Other +807f49bb-a872-49ec-8375-69751c4c3807 1 Other Other +807f9a04-0c39-4780-ac63-e0db790c17ce 1 Other Other +807fc727-fc93-434e-8602-b9c8cc39122c 1 Other Other +807fd4b9-a4b7-40e3-8961-99cd145dd16e 1 Other Other +80801ecb-95b9-4671-863b-3c8792a365e2 1 Other Other +80804033-1851-4302-94c5-5d2c62ed7b11 1 Other Other +808062ed-09ac-4f93-a072-bf9ee507c696 1 Other Other +80808070-9a5a-4b42-a3f3-9446696b8ab0 1 Other Other +8080b324-6a7c-4f63-9389-efbe80373b76 1 \N Other +8080e229-4599-49cc-97f1-c7b8a32d8f85 1 Other Other +8080f94d-89fe-40a2-a7a9-0c23e990b423 1 Other Other +8080f990-4d2a-4f09-82bc-bb365ea1b43a 1 Other Other +808101e6-0f44-4544-8c3b-6a57af417d36 1 Other Other +808117b0-6864-4210-88cd-582e65e1bf6e 1 Other Other +8081273a-b9ef-4f61-8cff-5f5e7c7ddcdc 1 Other Other +8081390f-dc2a-4c3c-ad92-312f0fdfd2ba 1 Other Other +80819304-0091-458d-82e4-ad7d13014d43 1 Other Other +80819d1c-2b78-4cc8-b275-4a3fa7203624 1 Other Other +8081ee0b-89bf-476a-b35f-ed512a3fd75f 1 Other Other +808236d2-be23-4656-a48b-cbd5c80eb2b9 1 Other Other +80824ba9-77a4-4901-89f9-c0150fe530df 1 Other Other +8082924a-afce-413b-b14d-a9a2951c5cd1 1 Other Other +8082d778-d694-4df6-a1af-ecf8d9e35060 1 Other Other +8082fcaa-70ed-44e2-aeff-81d0c7a26249 1 Other Other +808328e5-e855-4cbc-8845-c75b35a43783 1 Other Other +80835af9-ddf8-426c-acb8-82a4b5161650 1 Other Other +80836ec7-64dd-4024-82fa-14aaa7b64e2a 1 Other Other +80836f59-68cd-473f-a165-72fc07b38465 1 Other Other +8083e419-816b-4620-8fd2-3ffefb38129b 1 Other Other +8083e4e7-59fe-4446-8fc3-36ce6d986d8a 1 Other Other +80849a63-d075-426b-acc5-8f6c40d5a7ad 1 Other Other +8084bd71-4074-4696-9595-36756af43274 1 Other Other +8084c61d-1b17-4315-9431-9104606174fd 1 \N Other +80850c95-9d6f-4d69-8caf-1871be947ff7 1 Other Other +80851f64-14f7-4265-82a9-f97c3df4e71b 1 Other Other +808538bf-37ad-4a0e-8885-6dfb11cb6178 1 Other Other +80857a33-3e13-4ab8-a175-9a4d881f7cf5 1 Other Other +8085e779-90a6-4b0e-afb9-8be6d1960b70 1 Other Other +808652cd-f73c-499f-bffc-112229723fb7 1 Other Other +8086a7b7-5d0f-4146-a282-3e0cdfdd817d 1 Other Other +8086c8f8-b756-4bdd-9d91-25f4a4384932 1 Other Other +808765ef-e601-4df7-8b60-99df6ad8256e 1 Other Other +8088320f-bd0a-4b0f-a4bd-4cfab543c6a9 1 Other Other +80884f71-9dda-4f44-b8a4-bf67c658456f 1 Other Other +80886f66-f3df-40d2-badb-3613c0ca3787 1 Other Other +808872bd-fa5b-4d1d-9ef4-1e57a7381d02 1 \N Other +8088af77-f1a8-4255-9baa-f75e967bea2c 1 \N Other +8088cd5c-109b-4c0b-919d-f299d50fa704 1 Other Other +8088f8d9-3413-4f27-b79f-df5c0f5339b7 1 Other Other +80892365-a59c-4864-bea0-d809eae8f68c 1 Other Other +80894e4f-7998-48fe-b1f3-5200e64383f8 1 Other Other +80897f72-a9c0-4403-85dd-5c0e54435df1 1 Other Other +8089808f-ab20-4c85-aecf-1741665a812c 1 Other Other +8089a576-cbbc-45dc-a4bd-2f160796f63b 1 Other Other +8089c8b3-70d9-436e-86f7-c8c0c34de064 1 Other Other +808a1f29-33ca-40e4-909f-c1ecddc6e80d 1 Other Other +808a8b2e-37d1-4593-b4fd-11d700a79275 1 Other Other +808aa81f-8fa3-495a-b635-81cab8a75138 1 Other Other +808ac9f8-0d4d-4d19-be68-ff9ec1bee663 1 Other Other +808ae10b-1140-4dd6-ab9c-eef3757eff21 1 Other Other +808aee6b-7a68-4cb9-9d49-627004bb344e 1 Other Other +808b0980-1f4b-4fb1-ad31-c9c712f4a5b4 1 Other Other +808b1e19-4d67-4dee-a554-48f0ee96652f 1 Other Other +808b4891-be10-4956-92d3-8fcac8e46cb7 1 Other Other +808b4f0e-fe19-4031-a0ff-bff2e6482e62 1 Other Other +808b543f-1f11-4646-8810-dd51b1ddc0a9 1 Other Other +808b6708-d47f-452c-a434-2308bb07aff0 1 Other Other +808ba21c-0154-4b9b-9fae-6db3c0401cc6 1 Other Other +808ba749-ca82-489e-a989-47b8366b70e5 1 Other Other +808bb363-a122-4432-8879-336b7418578c 1 Other Other +808bc723-8b5f-4c18-88b0-e5c02f0b254c 1 Other Other +808c0c3f-4297-4f76-aa08-e89edc901731 1 Other Other +808c63b7-9839-4025-b8b2-eba4507b60ea 1 Other Other +808c68e7-61f2-4781-bbe3-53ee0cc95660 1 Other Other +808cb8c8-538a-472a-9d70-6487fbf69f3a 1 Other Other +808ce378-1996-4ce4-9e05-4a4f5c527a69 1 Other Other +808cee1b-cf87-4973-9111-d986aad4ff44 1 Other Other +808cf687-ef8c-41dd-aa39-8661a4134954 1 \N Other +808d19cd-9512-4467-bb93-1ad696466ebd 1 Other Other +808d37f0-2dc0-4640-bb02-6c165310e25c 1 Other Other +808d5ba8-6d79-4b96-a8dc-e952640cdb75 1 Other Other +808d6c68-5571-4436-bcbb-2d743b8ffc71 1 Other Other +808dc77b-644f-48a4-a553-9a8ba36f474d 1 Other Other +808dd392-00c2-4767-b137-3fa4a10522de 1 Other Other +808de349-74af-43c2-a951-aabcbd135bd5 1 Other Other +808e0169-7f35-4ceb-999d-2f1186e61ae5 1 Other Other +808e0630-297f-4ea8-8e48-9fb56387b55a 1 Other Other +808e586b-2bd2-4883-a5a2-56220f680ae1 1 Other Other +808ed635-2af4-4159-abe5-014fc893d4ee 1 Other Other +808ee93c-919e-481c-891c-c2c1389c3d1e 1 Other Other +808f2b0e-a905-4538-9c3d-38b02d5da21b 1 Other Other +808f43ff-c538-4dae-a6b3-fd3599853d8b 1 Other Other +808f8579-807c-4689-8d62-d33c8ed36e48 1 Other Other +808f867f-12e2-4a77-80e5-3a60dc8213c3 1 Other Other +808f94a5-851c-4b6a-ab34-edc23454c040 1 Other Other +808f9de7-8f02-44bc-bb41-0fd93097e698 1 Other Other +808fb34b-6b04-43b0-b20b-359b720e8f8d 1 Other Other +80900de9-5cd5-4542-9386-8e85d14305c7 1 Other Other +809014c4-f07c-4c46-9e8e-ae69d86bb9bd 1 Other Other +80902116-4e5f-485d-a898-1df5d48b90bc 1 Other Other +80903e8d-44eb-486c-8a94-5ae36509d0bf 1 Other Other +8090909e-2d38-49ad-b862-cec1e851ec15 1 Other Other +8090bac7-75e6-4d92-84f9-b4f9ffb1e745 1 Other Other +8090bde5-9725-4e8b-beb1-93cd2edeb3e7 1 Other Other +8090c14c-e4b0-4443-b306-ff709d6d097a 1 Other Other +8090e62c-3fcb-46fa-b263-18a1a85ca697 1 Other Other +80911851-e184-42a3-a8ff-f9b7939854a3 1 Other Other +809132c4-f032-42e1-970e-81744dc219b8 1 Other Other +80913aaa-9d0f-4eb5-a0d7-663cadadadcc 1 Other Other +80917b8f-d6d1-4dfd-85fc-dc06a2e9e885 1 Other Other +80919599-cd1c-43b0-ad5b-ac85dce75e79 1 Other Other +8091d16c-242b-4202-b6c4-5ed798a1d015 1 Other Other +80920c89-a918-4f73-872a-d80019710f67 1 \N Other +80935bea-b7ef-4734-952c-d381482fdfaf 1 Other Other +80937c10-a589-4eab-bbd8-3302f5d0ef1e 1 Other Other +80937d20-49cd-42a7-8cd3-622c574ec7ae 1 Other Other +80938569-70fa-44f0-bb77-e4d1af1aabe0 1 \N Other +80939ad4-fa61-4212-896f-331e6ea19fe0 1 Other Other +8093bd44-f0b1-4930-90cf-f26eae38f623 1 Other Other +8093bf96-384f-4c26-8169-6a90e6122b13 1 Other Other +8093c9b0-9b00-4386-bbde-b82cf3ccfc90 1 Other Other +80942b5d-a137-489e-ab36-e8ec9877a9ce 1 Other Other +80942c3a-44d9-48d4-a51b-fb7467168a52 1 Other Other +80945047-94fd-44ad-b6b3-f2b89e124773 1 Other Other +8094ccc6-61b9-4649-b784-81f511f9da45 1 Other Other +809506ec-5cc8-4bf0-9176-4c303d4e657a 1 James Other +80950ae3-eda1-46d9-bb9d-3056ee43a515 1 Other Other +80956f26-89f2-4478-aaca-74a471157d89 1 Other Other +8095742d-edf3-4f60-98a5-8e2e5e5860eb 1 Other Other +8095860d-fb88-4d29-a2ff-e3a37974d129 1 Other Other +809599b3-490d-4277-b445-136667006b9e 1 Other Other +8095a30f-f2ee-4329-ae3b-7f32595af278 1 Other Other +8095bf09-049b-40dd-97c0-7a93a2f1d9d3 1 Other Other +80960ea5-665b-4ee2-bc79-1f0f0527e5b6 1 Other Other +80965fa7-6f9d-4510-9940-812bcb886b54 1 Other Other +8096b99b-285d-4e5d-ac89-e2a2cae2882d 1 Other Other +8096c3bc-d095-4219-b2ae-0164b9acce06 1 Other Other +809705cb-99b6-45c2-8d3f-a7d41830367e 1 James Other +8097351d-6c52-4fb2-bedd-cbb754255670 1 Other Other +8097582f-24ce-4352-ada4-097cccf5eff6 1 Other Other +80978aca-9b45-4cce-9d35-fbcfc7560bb1 1 Other Other +80981d1d-a4df-4668-a8fc-595411a5b86a 1 Other Other +80983deb-069a-4cc8-b865-8bafa21bb2bb 1 Other Other +80984e55-e335-4e75-b76d-3765fb8a6b95 1 Other Other +8098e0de-8bda-4fe0-b272-efbaef1bdbc5 1 Other Other +80992895-8544-4a5a-9fd0-7c4cdc385599 1 Other Other +80994752-bbd2-4c13-a697-d99014bf10f0 1 Other Other +80995abc-cf4e-48c6-b09c-7be5462cac51 1 Other Other +8099f1b6-5fc2-4444-95cd-b879a1204070 1 Other Other +809a26f6-bec8-4f93-992c-eed9bbf13519 1 Other Other +809a3106-224b-4d29-a8ad-c544996ce367 1 Other Other +809a6b27-c10c-45a6-8c0c-0383713c1e05 1 Other Other +809a833d-c655-4da2-8e27-6427fd18f138 1 Other Other +809ad696-251d-4358-8283-e118e9601ec1 1 Other Other +809af469-d82f-4ec0-84bd-e2f319bf1c6a 1 Other Other +809b014a-666e-4347-bf04-eadf2970f146 1 Other Other +809b0543-2d40-4f97-b223-e092f08367c7 1 Other Other +809b0978-ba0d-4721-b780-2e3d60db31b4 1 Other Other +809b207f-2819-4c78-8038-9f17a8c2e463 1 Other Other +809b5a73-6ce0-4374-bf20-96823f68285c 1 Other Other +809b6419-fc39-4e0e-8635-2cfa27970c4e 1 Other Other +809bc1f5-0e06-4c21-97f6-ea0356247e96 1 Other Other +809be6cb-9d6c-40a5-b80d-66af897b2e5a 1 Other Other +809c21ec-8e27-48c3-bff2-d06f098d3a15 1 \N Other +809c515f-d746-4581-bf30-119acf319f3a 1 Other Other +809c52b5-699b-4166-b0c3-c1857dbce954 1 Other Other +809c5c5f-dd27-422f-af16-d117924444ee 1 Other Other +809c8799-9953-4fc1-80e6-2958e1bba90f 1 Other Other +809ca73e-3526-4ef4-88f5-3334a15e15a4 1 \N Other +809d227a-9a50-4e7e-8c17-db7714ae221d 1 Other Other +809d58d2-2316-4890-814d-8ffd4eb6d636 1 \N Other +809d6079-e13f-4ceb-b630-08efb0516884 1 Other Other +809db312-ef32-4092-b990-aaf8d3d02ba9 1 Other Other +809deb58-b8b6-4a50-b02a-2eba2536fb52 1 Other Other +809e37eb-0ce1-4dea-81ee-15b571fb07b9 1 Other Other +809e43e9-09f8-4b12-8986-de763c6fec28 1 Other Other +809e49bf-063d-453c-b4cf-e541cb67de4b 1 Other Other +809ece9f-4dd3-4085-a986-de0194fee5d8 1 Other Other +809edf41-06d0-4d93-b261-7921955fc8e7 1 Other Other +809ef04a-ced6-4fe6-8514-7de6c2c3b988 1 Other Other +809f1bba-da80-49fc-9c25-95d8b3cdcf4b 1 \N Other +809f2692-1f23-45d6-bf37-c4f957461a99 1 Other Other +809f393a-53c5-4cff-b196-4c3ddacb0eed 1 Other Other +809f5b79-edf3-40a2-8548-fa72d2a64e57 1 \N Other +809f92b5-9377-492b-a66d-22023901d468 1 Other Other +80a00716-508d-41c4-9c91-e135b8830350 1 Other Other +80a03274-f363-49df-9037-a87d692f2b34 1 Other Other +80a0468f-aad5-42f3-bafa-c6505abdcfe0 1 Other Other +80a0775e-09d0-4ac9-b06e-c86f0bb77aab 1 Other Other +80a07e60-dbaa-4ba2-9bed-6c873f7566ae 1 Other Other +80a0969f-2999-4eae-90a3-a03ee47258d9 1 Other Other +80a0b2fe-8cc5-4645-82d3-22ace86dff8b 1 Other Other +80a10d42-5299-4c13-8eb8-0e1d81e5c8e8 1 James Other +80a140f2-19ce-45ea-b7a3-48c2c78dd07c 1 Other Other +80a14c07-632d-444d-b140-f4dbc6556dfc 1 Other Other +80a15f57-c1d1-4ba2-ab97-9b8eeb0a6e25 1 Other Other +80a19569-ee8b-4862-a6bb-ad0b1f91d909 1 Other Other +80a1d200-561a-4b50-9a4b-1df4dd4325b9 1 Other Other +80a1d58c-7a95-4000-8cbe-0eeb634d2d59 1 Other Other +80a20131-f74a-46cf-8eb6-463ed3dc7ba5 1 Other Other +80a223a5-9aa4-4bd6-a732-94dd41566a3f 1 \N Other +80a22643-b7a2-42b6-8985-83b135d63ef1 1 Other Other +80a2a393-6194-4133-800a-3cb40ec20a67 1 Other Other +80a2c8ee-b48c-4a4e-b58b-9ad2d72f74b0 1 Other Other +80a2eae8-d5f2-46aa-96cc-fa44eeda8bb0 1 Other Other +80a33b1f-ede0-49db-8fa0-4203bd0c5273 1 Other Other +80a3809d-8bc2-486a-9ca5-5bcbf12364ec 1 Other Other +80a3914e-963a-4d8a-91ee-f1357d3fd45f 1 Other Other +80a3b3a2-6769-4103-b10b-d637dad8dda7 1 Other Other +80a3cdac-20ad-449a-bd35-0331d1837b92 1 Other Other +80a3fe86-6dc4-48c2-82f4-92210f9fce87 1 Other Other +80a40b62-4954-42b5-86b2-a7c778562739 1 Other Other +80a4223b-2ba9-4e51-afb8-d5e6cb326a81 1 Other Other +80a4431b-fadd-44ff-98cf-1b85328d535e 1 Other Other +80a45a80-22db-4cc9-abc0-273292eaab30 1 Other Other +80a460cf-d6f2-4eb5-b62f-fbb05ed238e1 1 Other Other +80a4931f-031e-4a95-b79a-41cdb427854f 1 Other Other +80a49b25-5daf-45b5-9fb4-2a9d1057446a 1 Other Other +80a49caf-e751-4986-8bd3-c1f890576e70 1 Other Other +80a4bb8b-2a2e-4974-9043-f86b0b0167b2 1 Other Other +80a4f6c3-0538-4c06-aeb7-73f8ac76ad56 1 Other Other +80a54609-6d44-4cdf-a666-bead54f937a5 1 Other Other +80a55c76-848a-49b0-baad-aeb0b700fe78 1 Other Other +80a5895d-af91-4895-aa7e-5d39e9d2c448 1 Other Other +80a5fda3-17b5-4be1-84f5-cb97ca2c4dd5 1 Other Other +80a61570-e378-48fd-9cad-c49c15b30be2 1 Other Other +80a65f45-7c54-43fb-ad81-fe101e6fcb50 1 Other Other +80a67c3c-7ca2-4f15-8589-0f8b782e3656 1 Other Other +80a68667-91b5-478e-a3f8-8919538ae186 1 Other Other +80a69b21-a9e5-4064-a7df-31eaa7103327 1 \N Other +80a6b01e-b229-4331-b116-712435683771 1 Other Other +80a732fa-0764-406c-8857-23f3330aa914 1 Other Other +80a7638b-a72c-4ed1-a04c-9fc1a7a5efb6 1 Other Other +80a7c4dc-8d4c-4a18-9d39-316ff18175d3 1 Other Other +80a7cdb5-4d75-4597-a497-63c83854e3ca 1 Other Other +80a88af5-564d-43f6-a781-51da2522df5c 1 Other Other +80a89808-f0d6-416a-aa33-b7be60a3f8f3 1 \N Other +80a8a7cf-f205-44c1-84c9-ae85a83acbfd 1 Other Other +80a8c9d7-9213-42f5-9f2e-068ffd0175c0 1 Other Other +80a91fad-f734-42a4-b107-f3defa3ac6ed 1 Other Other +80a9507e-f5c0-4234-ac67-384765fbeb4d 1 James Other +80a95be9-fb1f-49c4-b746-54a4f834dad5 1 Other Other +80a97458-0d10-433c-ac92-776d95341e59 1 Other Other +80a9b898-027f-421b-a375-c246e32c7d77 1 Other Other +80a9d12d-3d8a-4c81-893a-de2200ac3cd4 1 Other Other +80aa4036-e3a9-4bc0-a2fb-a02ce8c58e0f 1 Other Other +80aa4c6f-78c3-4f6d-8136-ccac3f1dc441 1 Other Other +80ab0287-c516-4aa7-9cb3-3ea8774b1c9a 1 Other Other +80ab494f-dd95-4b74-9d06-3cc0aced78c2 1 Other Other +80ab892e-58d8-471e-96d9-8c03219438a5 1 Other Other +80abb914-dfee-4656-82ed-7e8807c7c2bb 1 Other Other +80ac06ac-e29c-4ca1-b66e-89e2af77a177 1 Other Other +80ac0ad2-bcca-450d-932c-cc627621ab7e 1 Other Other +80ac6120-f230-454f-8307-53534b2d968c 1 Other Other +80ac8851-67d9-4f6b-8055-0ac9accf4220 1 Other Other +80acd43e-c1c9-46ab-9cfb-9d315e63e3f0 1 Other Other +80acf916-46f7-4c5e-80ba-e2b726f86aa7 1 Other Other +80acf974-ccdf-41da-8801-9b4169e7e681 1 Other Other +80ad0462-c155-4def-a76c-5698f63b236c 1 Other Other +80ad2373-8eb1-4019-bb49-11eaf14dea7d 1 Other Other +80ad4e7f-158a-4fb5-a8bc-eb64997d97bd 1 Other Other +80ad5fac-6fdc-4d32-9082-764d366e7bec 1 Other Other +80ad631d-03b5-459d-992f-d9c0be547ae7 1 Other Other +80ad7f97-aee3-4c67-b695-331999769c9e 1 Other Other +80ad980b-9ac6-4cfb-bad1-a9a23f6237e5 1 Other Other +80adf76f-5179-43c2-bac1-d9fc0ce83406 1 Other Other +80adf874-ba5a-48d5-abdf-bbe5478cd5fe 1 Other Other +80ae290a-e7ea-4acc-9d34-06f2d74595a7 1 Other Other +80ae5711-2c48-4ea1-b4c9-0d6d1ca7801b 1 Other Other +80ae5736-5bcf-44f7-bdd9-8d3b6185b35e 1 Other Other +80ae6fa7-5281-4abe-8427-028431e47ac5 1 Other Other +80ae70d8-9470-4ea1-b3a2-64a49bc215dd 1 Other Other +80ae7ad9-b18a-4f3b-985b-b24b5f3c9fe8 1 Other Other +80aef66e-d1bc-4d91-a309-ef8b0d455743 1 Other Other +80af0f60-6664-4c36-a6e5-27acf86152ef 1 Other Other +80af1a82-f11a-4a2a-95f8-0c40922863a2 1 Other Other +80af7108-26eb-4187-bcd8-e31e765d5405 1 Other Other +80af7446-a1bf-4897-86c6-b2f773be0976 1 Other Other +80af7b19-59bf-4377-a8a3-2ffa06a02e37 1 Other Other +80af8c99-5286-4749-9f48-52cbbea26467 1 Other Other +80af97e0-9f61-48d7-9a77-4c758610e21d 1 Other Other +80afa77a-4118-4fbe-97e3-7246b134db23 1 Other Other +80afa9b2-48b1-417f-a3c4-4e563fdc6e49 1 Other Other +80afdee8-5860-41b8-95a1-2ce8d215bd66 1 Other Other +80aff0db-c45e-4898-9f49-ca844aad5569 1 \N Other +80b06cd8-f470-42f8-b6ef-4cd3ff96593e 1 Other Other +80b0c9da-b288-4c9b-8689-e33a5e050cb1 1 Other Other +80b108c3-465a-4c7e-bd5d-83e739516cd6 1 \N Other +80b1c9c8-9765-421c-82c9-553c0b2efcb9 1 Other Other +80b1d49b-1be5-4458-9310-376d6d0b471b 1 Other Other +80b21181-e485-47ec-9b65-7aefb279b4fc 1 Other Other +80b23f98-ff80-4eed-8622-ec2593ee2f4c 1 Other Other +80b2535c-2cdd-49f1-92d8-0af6fbebdd43 1 Other Other +80b27f90-1194-4444-ab1a-59a84f3d6576 1 Other Other +80b2dbe7-4386-4125-a0aa-c0a081ec737e 1 Other Other +80b310d0-eb08-40c5-a449-052c25c19a63 1 Other Other +80b36099-34bb-44f2-b0f4-b78e1a550a27 1 Other Other +80b376ac-8d04-4fc0-8881-f3d971edb2f9 1 Other Other +80b377db-e334-4e74-9543-405f8da3adae 1 Other Other +80b38015-8178-48f7-81e0-ebb76cbb0184 1 Other Other +80b3ba00-a2be-4d2c-a88b-9b36854efac4 1 Other Other +80b3cbfd-6489-4e04-92d2-cebe64b6961e 1 Other Other +80b3fb9a-4a77-4a1a-a02a-f6c2840369ea 1 Other Other +80b4218f-9a09-421f-a999-7e8069de6839 1 Other Other +80b43a97-3f38-41c7-b8a0-9738d907e10a 1 Other Other +80b456db-0051-4d4c-bdf3-e495cffd587a 1 Other Other +80b46f5a-bf74-44ca-9e04-0f024e1c7fe2 1 Other Other +80b48194-1aed-42d8-835b-0852525f1732 1 Other Other +80b4a411-c0ec-462a-a307-cc8a49ae1b52 1 Other Other +80b4de93-6ff0-4888-b21b-133c04c3ee2e 1 Other Other +80b50d06-6510-4cf4-912b-d9cfaf28124d 1 Other Other +80b56aca-1c7e-41dd-9460-e574cd70b7e0 1 Other Other +80b6218e-b870-430c-a865-406aad94b3ce 1 Other Other +80b63d4b-75d8-4601-82a9-8aa5dee60ba3 1 Other Other +80b64443-0b03-4755-894f-d6a7c3019104 1 Other Other +80b65c42-298e-40b5-8110-ee262f0ff6d4 1 Other Other +80b68788-a267-46c5-a263-10356850eb8d 1 Other Other +80b6fe07-0cc1-4529-8978-fbf59057ec27 1 Other Other +80b799e1-f89b-48e9-82ce-528279d2aa26 1 Other Other +80b79e93-00c3-4a52-a086-1264fd46e81d 1 Other Other +80b7b056-4b09-4616-9797-4c8fcad74127 1 Other Other +80b7b538-a720-4de4-97ca-3646b618303c 1 Other Other +80b7b850-07ec-4790-a131-165bf18d358d 1 Other Other +80b7ce00-6555-4acc-b056-aba2b96f0537 1 Other Other +80b7f424-24bb-4b2b-949e-73e549e1f3c2 1 Other Other +80b7f6d4-5d0f-4b8b-9a3f-80e024432ec6 1 Other Other +80b82b13-58af-4f19-b3f2-8012322dabdd 1 Other Other +80b830e4-fc36-4006-a833-f93441b506d2 1 Other Other +80b840f4-f9a7-454d-945e-6ce00ac62a2c 1 Other Other +80b866d8-47b7-4942-adff-364f58958cd9 1 Other Other +80b8bf89-ece4-4106-869a-dfc52f5b30d3 1 Other Other +80b8cbcd-9229-49ac-99db-a5fe2d4e1bc0 1 Other Other +80b8e958-4217-4ac5-8882-fd810497d8ba 1 Other Other +80b9bbb2-80c8-41b6-bb53-6664fe02e815 1 Other Other +80b9d976-fbae-4f20-b2b7-e889d407a7ad 1 Other Other +80ba058a-8307-4478-b00f-fa57c056c85c 1 Other Other +80ba0de3-d94c-4ff9-9a34-18ea971f0d55 1 Other Other +80ba7987-0079-4216-886e-3fb69c246e9f 1 Other Other +80bab26d-e264-4c8b-b32a-02ef29fd59e4 1 Other Other +80bac748-b7bc-4b67-b395-33a7ecb021be 1 Other Other +80bb429a-3a49-40af-a9f4-9578c15e319a 1 Other Other +80bb4932-77e5-4946-8548-48286f844192 1 Other Other +80bb500a-adae-440b-b50b-4fc93a5c076d 1 Other Other +80bb83d6-95ca-418d-9195-b8ed08f39f2a 1 Other Other +80bb8900-e8e8-4cf6-a73e-a04c29dd953b 1 Other Other +80bb9be7-cf84-4512-b722-2c815310f086 1 Other Other +80bbcd7b-a93c-43a8-b51b-dfef3310440b 1 Other Other +80bbda86-874a-4066-8e43-0b708fce7394 1 Other Other +80bc03a3-83d5-4e31-a31c-02322a391a83 1 Other Other +80bc5fe3-e0f1-45c2-8616-c73b0528a729 1 Other Other +80bc6ae1-d2ae-4161-b22d-832033d55d3f 1 \N Other +80bc777b-b32a-4249-b2fd-922f5b7fcb27 1 Other Other +80bc7fb8-de68-418f-a49b-cd60cde1cf04 1 Other Other +80bcd074-2327-48d9-b8b6-bc9c59578da1 1 Other Other +80bcdc42-29a6-4e40-bcdb-35971fe490bd 1 Other Other +80bce83b-2383-460a-afaf-97c3cf2ca667 1 Other Other +80bd3f5e-29f1-48a1-ae90-bee3d3df47dd 1 Other Other +80be55da-5732-44b1-b56d-3197e62fd973 1 Other Other +80be83b6-eabb-4380-aa0f-5b89d265e9fa 1 Other Other +80be8806-0d3d-42b8-af84-cda7f4c8546e 1 Other Other +80bf1649-1273-4f6f-9a80-02c8482ee3c6 1 Other Other +80bf2ea8-1527-4839-a792-1dcf002788c0 1 Other Other +80bf48f5-82bd-4f39-8e89-391e3ef032be 1 Other Other +80bf78e2-b3f8-45bf-bbdf-7b2d119edf5c 1 Other Other +80bf7a86-4ebd-415e-99e9-54bfccbfbfbf 1 \N Other +80bf7ca1-9b95-4ae2-a9a1-8164b79d124f 1 Other Other +80bf91ce-9e03-495f-84c9-fcdc06cb7c26 1 Other Other +80bf9a78-bad6-47c3-a87e-05408f7b1bb3 1 Other Other +80bfe351-8a7a-41ba-8d1b-0a4726b449a5 1 James Other +80bfe66d-109a-4bd8-a88b-07122c6d4ecf 1 Other Other +80c0245f-11e5-46a7-a56d-116be42af24a 1 Other Other +80c07ef4-4bed-4a51-8036-87cca0529f40 1 Other Other +80c097e2-20c2-43b9-95f0-73c410d3c002 1 Other Other +80c0d64d-1aef-4589-8a2e-a8cce024ac0f 1 \N Other +80c0e64b-8a1c-44b0-b938-d1a8cb31ae26 1 Other Other +80c10044-29a2-4005-82be-4a0ea0c71a2b 1 Other Other +80c15768-cf8d-475c-ad22-e5949e99ddc9 1 Other Other +80c1e9d8-0c83-48a6-85ce-c8a7c21e11b5 1 Other Other +80c1fbb4-1a4c-4acd-b85c-0616d0c7e6fd 1 Other Other +80c21dd4-818f-4eda-a6bc-0d2450121826 1 Other Other +80c238e0-b910-4d86-a8cb-4c671b855f5a 1 Other Other +80c2514b-1474-4e92-8290-b7321bf8c1e2 1 Other Other +80c280ee-2d48-46d3-acef-3a16c5a168d2 1 Other Other +80c2afa7-8fbc-4c8f-9209-8d59c58cf6b8 1 Other Other +80c3447d-dd4a-46bc-8c52-29cbd0a01142 1 Other Other +80c3463d-1482-4e8f-b385-58fc02696661 1 Other Other +80c36277-c0c3-4474-a535-781ba8574b9f 1 \N Other +80c380c8-bbbc-42f1-b634-13969ae644b7 1 Other Other +80c43ae2-0bfe-40b5-983a-dde7c41d9b3e 1 Other Other +80c444ab-909a-41f4-9bc9-e8a62bdaf07a 1 Other Other +80c4bd18-bf4a-4fb6-ad1d-f6ef1d9ece6e 1 Other Other +80c4d620-3426-4823-b7d6-31317d7264bd 1 Other Other +80c5594e-6afe-4d5c-add3-10f922a9fe65 1 Other Other +80c5b32e-b776-4694-b238-82a0d33ae27e 1 Other Other +80c5c409-c1c3-4c5a-8ee0-e86283166822 1 Other Other +80c5d3d6-72c0-4074-9c6f-e7e1003e95d1 1 Other Other +80c5e01e-2ee3-4819-9528-b2621a4a5247 1 Other Other +80c60673-6c31-4b87-81f3-6ea222d60c4d 1 Other Other +80c642f7-aaf4-47c6-88b6-419952193dc4 1 Other Other +80c69029-87d2-4988-9772-4b33e65e5d63 1 Other Other +80c6a6bf-fa7e-4c78-9926-e4accbd0471f 1 Other Other +80c707a6-8edb-4536-9f17-77aef01e4220 1 Other Other +80c712dc-7e65-4ba9-89b9-f346f30c7b93 1 Other Other +80c719d8-1a4b-4571-8376-8e34069c5fb2 1 Other Other +80c78325-c774-4569-890e-f69138dd62bd 1 Other Other +80c79878-feb4-4bfa-ba38-a7b3bd5f1795 1 Other Other +80c7bb16-615d-4051-9306-1299d88c5fa3 1 Other Other +80c7faf9-06b6-4f26-ba2a-78d14bb42b54 1 Other Other +80c85269-37a4-4d5b-8c86-b2b051e77595 1 Other Other +80c85a41-d6bd-4ab0-a201-98481ffae510 1 Other Other +80c86af5-8367-4a74-b520-4ce77638db79 1 Other Other +80c874bd-2141-4e72-a903-44fa5a3f27dd 1 Other Other +80c9573b-7722-45e3-b003-a9d1c1a721e8 1 Other Other +80c96cbc-7f15-4abd-841f-a00ce6737a34 1 \N Other +80c98317-7bd7-4292-bc9c-cfdeba20eaa7 1 Other Other +80c9d925-588e-4bcd-9b78-3a25d2b49e9f 1 Other Other +80c9db85-e617-4d0f-b1cf-127e9ddd893a 1 Other Other +80c9e3e0-6976-4771-8ffb-257190263055 1 \N Other +80ca0c46-c7ac-42ea-9812-6fd7f65cd506 1 Other Other +80ca33c8-207d-4cac-b132-5a184378f0ca 1 \N Other +80ca372a-d82b-494b-8281-f8f4cee9b80b 1 \N Other +80ca3c44-03e7-4eda-8689-cc30df9f8532 1 Other Other +80ca3e43-b73f-4668-b67a-b80ab84470a3 1 Other Other +80ca501b-c478-4e56-a09f-ac68f6b026cf 1 Other Other +80ca54e6-1459-4da5-9913-b94c989eb52c 1 \N Other +80ca6c93-a659-44a8-9891-6cea5f64b6bf 1 Other Other +80ca7e17-e7d8-4b52-9b84-8ded28b4bfc0 1 Other Other +80ca9e03-81f8-47e9-b177-9356b529e935 1 Other Other +80caa53e-f08e-446e-8b3c-8543210cba66 1 Other Other +80cab8b5-e86c-41ba-99a8-d0220aaae0f2 1 Other Other +80cb3d10-bd02-46c4-9bcf-05bbbbaa2e8c 1 Other Other +80cb520a-f4dc-4a56-9920-068ca7e24e88 1 Other Other +80cba822-b57e-48ba-88c7-42a65eb0c2ab 1 Other Other +80cbcf63-1014-4566-9870-b4775e00e1fa 1 Other Other +80cc0e50-865b-4636-84f5-0dab0b246e4a 1 Other Other +80cc5a20-3e0a-4d9c-b480-2b6b380d3857 1 Other Other +80ccd146-afc6-42cc-9740-74804a976506 1 Other Other +80ccd697-9b7f-4db9-90a3-01b541a300ec 1 Other Other +80cce524-6af5-4490-8724-5b6c76cefcdf 1 Other Other +80ccf549-81a2-4137-9878-791d10952648 1 Other Other +80cd5914-5fc9-4fe0-9575-a349a8abb7ae 1 Other Other +80cdadcd-a9fe-424c-8755-69a7b3f6eb9d 1 Other Other +80cdb6d8-91df-4ccb-9505-60aa220da502 1 Other Other +80cdbe06-3f66-47ba-97c1-9f57e3480bb7 1 Other Other +80cdce4f-0b7d-4c67-aaea-26f3deb1b0a6 1 Other Other +80ce300e-af96-4a38-bbb0-b076c928740a 1 Other Other +80cee17c-eb3d-4de5-b60b-cfa09c1c52d6 1 Other Other +80cf15b3-cbd5-4f0e-b860-39ed3e279869 1 Other Other +80cf1df6-a8fc-4378-a110-30068cbd09ba 1 Other Other +80cf3381-1769-4d05-95c6-1dbf8a8da27e 1 Other Other +80cf7041-c403-4132-aa20-6157059ece5f 1 Other Other +80cf73ea-4375-4ec1-8743-f3d63e3438bf 1 Other Other +80cfa9a4-1b5a-4874-9584-94b109b10abb 1 Other Other +80cfb4d6-ed01-4158-804c-99b3465ea773 1 Other Other +80cfb4f8-5cb4-4739-9e59-4cd30116ebd5 1 Other Other +80d01f29-baaf-4a74-8e3f-2ebda3674065 1 Other Other +80d0590e-8219-465c-8acb-f7afd15f7a2e 1 Other Other +80d1ae86-7ed6-4bef-abca-8106df274eee 1 Other Other +80d1aebf-2090-40ed-aa7f-1887fe579dd3 1 Other Other +80d1cda9-3657-42c7-aee1-adbfc2829e2e 1 Other Other +80d1d4e1-bdaf-4461-9dbe-d8ca8be18150 1 Other Other +80d23100-078b-4e00-ba42-e9ac2b634d51 1 Other Other +80d2534a-f4de-4af3-be32-b6639a550042 1 Other Other +80d285e8-c74d-41a1-9864-b5f11f5c96aa 1 \N Other +80d2a2b7-1be5-4a82-add2-a3caa260296d 1 Other Other +80d2e24f-11ac-4ff8-99d2-748755fe1f3b 1 Other Other +80d2f4a5-1dea-4eff-9896-e3400c5c4edd 1 Other Other +80d32acf-9c61-48a3-9d75-45bf7a56bd86 1 Other Other +80d3460a-5db0-49db-a7ac-22195662af19 1 James Other +80d34e55-99a1-4218-a058-01859e2cae08 1 Other Other +80d3512a-7c21-489b-aff0-28564cf46d2a 1 Other Other +80d37323-4eb6-413f-ae5b-90368fe458fe 1 Other Other +80d3917b-0eea-4398-a385-bedc9557ec09 1 Other Other +80d39b36-c918-11e7-9e5f-fa163e8624cc 1 Other Other +80d3a3ab-8d4f-4c56-a127-0a4d07cfb6b8 1 Other Other +80d3b367-d73e-45d3-a591-0e44af8070e8 1 Other Other +80d3b755-aa68-4574-b22f-2969e83a8f1b 1 Other Other +80d3d8aa-aff1-4af3-86d0-15635e01648e 1 Other Other +80d41ecf-dfa9-41dc-9d46-44a5e5270ba2 1 Other Other +80d44b39-6b4f-4ced-bd14-51b956051f69 1 Other Other +80d45899-e7cb-4f1f-bbc1-dcd301d57c7a 1 Other Other +80d46b1a-5d6d-4009-ba65-e8d5426b2464 1 Other Other +80d482d1-9073-4504-93e4-5af78f4a702d 1 Other Other +80d49a38-e077-4293-b030-d77584288882 1 Other Other +80d4cf57-8a09-4cda-8891-0c87155e2c22 1 Other Other +80d4fd74-5dd5-458e-88d6-8853543983d5 1 Other Other +80d531a2-7427-4622-97fa-36af2af3f96a 1 Other Other +80d56aba-7b95-4d54-88d2-a65635cb421a 1 Other Other +80d572cf-fb53-49ca-b936-f5dbf91a2204 1 Other Other +80d57ddc-6f18-49ef-8aa2-049d93d2fb37 1 Other Other +80d62bfe-7bb9-4f82-925f-b32bdbae6677 1 \N Other +80d64eaf-fa1e-43e6-b5fa-b0f173ccd934 1 Other Other +80d6b27d-e9b6-4af8-8a14-ffcbf358a57d 1 Other Other +80d6db0a-a78a-43e4-8a26-4baffbcb8465 1 Other Other +80d6dfe0-944f-4222-b31c-86eeb7b337a9 1 Other Other +80d6e83f-50d1-4f65-ad35-b4818bd70f9f 1 Other Other +80d6e850-1391-4378-88ff-a8f2839c7060 1 Other Other +80d72e1c-2a61-45f9-a4ca-ebdf266ace8f 1 Other Other +80d737d2-4b02-4d37-8ca6-75118ca883ce 1 Other Other +80d7386e-e085-4355-b1a9-0dbce288df90 1 Other Other +80d77c31-cb16-469f-b52c-a98be18cd2f0 1 Other Other +80d7b392-f650-4302-a370-f08c3887941f 1 Other Other +80d7ccc0-2ca7-4d9c-81c7-37d46821296c 1 Other Other +80d7cf17-97e2-4682-a096-c0f76723e574 1 Other Other +80d7f28a-8a27-4833-b999-f3c7a0881c89 1 Other Other +80d81a7b-5c25-40b5-b69f-409a7df38382 1 Other Other +80d82556-2889-4bef-83ae-c31f8214a2d6 1 Other Other +80d8320c-c3c6-4450-b850-24a79cc1aa92 1 Other Other +80d83247-233f-4c29-af6a-91d60956e987 1 Other Other +80d85cb4-2ece-4b22-8992-b1f39353fceb 1 Other Other +80d871c7-49e2-4f89-8740-f9ecbb25d047 1 Other Other +80d977c0-37aa-4893-a20c-14bcb04ed024 1 Other Other +80d9be4d-5916-43da-bb1d-a8ce0bcf0c18 1 Other Other +80d9ca0c-c656-4e81-bcca-f25d1faba88a 1 Other Other +80d9e421-a7a6-4ab8-a898-a8994b46634a 1 Other Other +80d9e815-4f37-4c67-8e04-22a1cde46756 1 Other Other +80da54c3-6e25-4c1c-b086-5687fd4df615 1 Other Other +80da6459-2fa7-4651-ae07-2380ba44cd38 1 Other Other +80dab94f-79da-49c7-b001-e85b675205f7 1 Other Other +80dadd4c-2484-4467-8d44-a6a75666bce0 1 Other Other +80db1b7e-7383-4908-a51b-cd78f995deac 1 Other Other +80db4a5b-506d-4bca-8b68-d839034fe0ea 1 Other Other +80db53e1-d359-4dd4-92b6-8fc20ade4f59 1 Other Other +80db760c-b70a-4d73-b8a3-11a25c4acc2f 1 Other Other +80db7f43-dbaf-4ded-a114-1e1707c58376 1 Other Other +80dbc8cb-b3e2-4a26-bbf0-f504285477ab 1 Other Other +80dbce2c-5eba-49f0-b265-c91ce6a3ff1e 1 Other Other +80dbd2e8-c5dd-4baa-8e13-a0a59fce22ad 1 Other Other +80dbf9d5-bac0-4d1b-b80a-2cbd55faf329 1 Other Other +80dbfc07-ba3a-49e5-81f3-04e6df983136 1 James Other +80dc2453-afb0-4ee0-89d7-c3ba024e5e5a 1 Other Other +80dc60ea-7f4b-4aa4-a194-f539c70387c0 1 Other Other +80dc8c38-6efb-4654-9636-937f6721310e 1 Other Other +80dcca4b-1fd5-4c2c-bf15-ef2b1874bb1d 1 Other Other +80dcd82d-ef50-4642-bff3-defcbec79836 1 Other Other +80dd0c74-68da-458c-be1b-4c34e8722ccb 1 Other Other +80dd474c-eb40-4145-bdd3-191cfd882022 1 Other Other +80dd735a-51c6-4011-8cc4-1714d2062411 1 Other Other +80dd74aa-6242-4b3b-9c61-3f5640bd94bd 1 Other Other +80dd774c-5001-49e6-9256-3d521e54c9f9 1 \N Other +80ddc58e-fc5e-437e-a645-d6f318302e90 1 Other Other +80dde094-44fb-43d2-bcb2-7bf131c6938d 1 James Other +80ddf579-23aa-426d-9612-89ce3fd15a2b 1 Other Other +80ddf904-e199-44ca-863f-5567ac1a670c 1 Other Other +80de14e7-92e2-4c54-bb7e-179e1a357430 1 Other Other +80de1642-9304-4abf-89ad-41415efe357c 1 Other Other +80de29dd-f05d-42c1-ab49-4976e7b76ada 1 Other Other +80de2fd0-c87f-401f-aa6d-fd54c2ebbfe7 1 Other Other +80de6ff8-8072-4890-ba0b-3321ad35dad8 1 Other Other +80dea557-dc2f-4cef-a171-6c823903e713 1 Other Other +80dee696-b317-44c3-9542-8aa383f4da20 1 Other Other +80df26ef-11ec-4677-bd46-f719c1021ca9 1 \N Other +80df4ceb-f22c-48d3-9d7d-66a1eb7a82c2 1 Other Other +80df5160-43f9-4708-a9db-abf54e77efbf 1 Other Other +80df602e-659a-4d89-bc1d-a751a0c0f3d8 1 Other Other +80df6b13-7688-486a-af0d-59bfdb6f1eda 1 Other Other +80df81cf-f307-404d-a76e-6a079ff14857 1 Other Other +80df89a2-e8d6-40ca-97a6-c1689dcab289 1 Other Other +80dfb93e-acc4-4dbc-94d3-505aa6720099 1 Other Other +80e00ccb-7ba6-4edd-9dd4-a5a719d51abb 1 Other Other +80e065ba-d19d-47bd-839a-dc56bcb4e45d 1 Other Other +80e08f7b-cefe-4118-a8ec-8de255412590 1 Other Other +80e0e2e0-c331-434d-aaf0-4f136cf4c69f 1 Other Other +80e0f902-572f-4275-8bb7-8c5057c37454 1 Other Other +80e107c1-04c8-4532-bf6d-9141296b01c8 1 Other Other +80e113a6-c789-4825-8ad1-ea4fddff36a0 1 Other Other +80e1440f-f7a6-4e5c-9318-0893fddc2d3d 1 Other Other +80e148e6-02f2-4714-9808-9cae7cc93eac 1 Other Other +80e19980-18a1-45ae-9490-f18488cc8e98 1 Other Other +80e1c180-61fd-422f-93c9-dfde00ecdebb 1 Other Other +80e1ea35-3b81-4505-a2b6-cea23411c118 1 Other Other +80e20b0f-bb9f-4dea-856f-54fa1747f65d 1 Other Other +80e2192c-8de2-4249-a51f-d76fcc1170e3 1 Other Other +80e22d5d-d77b-4620-8308-299a22559409 1 Other Other +80e27bfb-458f-4cfa-b79b-4ea7f24f81b3 1 \N Other +80e283da-cb42-4cdd-af83-8edaf43948c1 1 Other Other +80e2a42c-a032-4689-a806-0e279d900e8c 1 James Other +80e2ddf3-6093-4a98-9d96-c00f5b92e791 1 Other Other +80e345a0-174d-47d2-b582-a6bd5bb97d98 1 Other Other +80e3b64f-2d9a-4732-879b-d29c2d83ade0 1 Other Other +80e4147e-0f44-472e-8f09-3cd5cd0823a3 1 Other Other +80e42364-af8c-43e5-a4a0-ce1bf9afef93 1 Other Other +80e47a5e-98cf-44fa-b302-69d51add9a8d 1 Other Other +80e49590-8617-460f-85e4-c72e55ad482b 1 Other Other +80e4ce62-3f2e-4d3f-960f-60e138fe5556 1 Other Other +80e58492-abb4-4ee3-8a2f-de0cbb5f76aa 1 \N Other +80e58c49-c78d-4a44-bdd3-48c15b8daa8d 1 Other Other +80e603b7-d299-4c74-b068-55d404de9baf 1 Other Other +80e60967-feae-4333-8627-88ebbe0689d3 1 Other Other +80e69768-c5b7-44f6-8d43-5ba8450516d9 1 Other Other +80e6a0ca-893f-4a14-94dd-53a7466c5dd1 1 Other Other +80e70ab8-2421-4f23-86b4-51e57e7bbcb9 1 Other Other +80e70f35-dc42-4d2c-9489-a8a8797c60ea 1 Other Other +80e756d0-1581-40a7-bf0e-d6f9e29b9ac4 1 Other Other +80e79e59-8d4b-4ec4-9dbc-cc6522bbc205 1 Other Other +80e7b16a-c8bd-4290-bc25-c726e3328966 1 Other Other +80e7bf16-350c-4d3b-937f-a5db4381347d 1 Other Other +80e7dd6f-6b3e-454a-9d90-916e84f40eae 1 Other Other +80e87d58-51e1-404a-9b2f-67c526815ca7 1 Other Other +80e8a4b4-62cc-4d2c-95b6-3be7181dab73 1 Other Other +80e8b044-8238-4434-8b27-434b12b9e39a 1 Other Other +80e8b368-bd55-4bd4-8a3f-83de6d4a3792 1 Other Other +80e8fe03-9a51-450d-90f6-441e3d0fa06f 1 Other Other +80e91344-ff9d-4d4f-9f87-252c26ff816e 1 Other Other +80e94557-13c1-4c91-8979-44dc30028d5c 1 Other Other +80e96867-9f25-4513-9c1b-9f21fc408309 1 Other Other +80e98d20-27b5-431b-a6a8-cb512e7aac17 1 \N Other +80e99daa-1b53-4d40-aef0-7c490f410e4b 1 Other Other +80e9cac1-2b10-4476-a8a4-c165e65d343b 1 Other Other +80e9cd37-df3a-471c-9c94-502ae9dfc854 1 Other Other +80ea0bc3-1baf-48e9-a6c8-c5124e7a257b 1 Other Other +80ea14e2-dca4-4a08-966d-e96eef779e62 1 Other Other +80ea51ed-0c3b-41f8-9d72-8238ef6ef339 1 \N Other +80ea5d1a-c0a8-440c-83a7-2c667d52c1a5 1 Other Other +80ea7e87-c585-4be6-8b49-c2051edd7504 1 Other Other +80ea86ca-9ba5-4af6-8dec-546bfec7f8f3 1 \N Other +80ea9148-231b-45f7-ac52-1abd5debad45 1 Other Other +80ea9e93-e592-41ea-a6d0-2adcaa6bff84 1 Other Other +80eac842-40a2-44c7-bfe5-74f319a3c115 1 Other Other +80eaeaa0-a57f-4530-8556-2a1614656429 1 Other Other +80eb2ffe-977e-402e-a844-bb7a3d6af63e 1 Other Other +80eb33ba-9c4a-4915-a0cf-3a2ce05ed5ce 1 Other Other +80eb63b2-bed8-4223-a03f-07e40b6101ea 1 James Other +80eb88ce-5ba3-4b93-a01a-ccee752e3914 1 Other Other +80eb9b8e-d5d5-484f-aef6-fa4fa223fd94 1 Other Other +80eba99c-9ebc-4c21-9e2c-3edb817bd980 1 Other Other +80ebdd97-77cc-43e7-95da-c66180d7d4b2 1 Other Other +80ec0961-5cd6-4f96-b455-65dd0db4ac36 1 Other Other +80ec198e-1947-408b-acb2-c0633a0cdf0d 1 Other Other +80ec57fd-112d-4193-9479-6d80868412cd 1 Other Other +80ecda95-6511-44e6-9994-667e436d018f 1 Other Other +80ecdbaa-e2dc-401c-ba0c-0e97db4492fb 1 Other Other +80ececc8-5a29-4db5-9329-13d2ad4a64eb 1 Other Other +80ed0559-93df-44b5-be37-2d5feb89be0b 1 Other Other +80ed12c2-6b75-4d3d-bb84-3f17769a645b 1 Other Other +80ed3189-c7f7-4f0d-989a-bc7923316e79 1 Other Other +80ed58e3-d8da-4bb0-9ae5-ec2f1d8294e0 1 Other Other +80edc286-1768-4c4c-b47c-ceca79f81009 1 Other Other +80ee18d0-a11f-488f-9855-5d7d6a35fe83 1 Other Other +80ee2f7f-a6da-4be7-ae28-0157fa8ac9b6 1 Other Other +80ee3e24-10d9-4579-b397-b52e764fc699 1 Other Other +80ee678f-5fbd-4a28-ac34-2a9b02d9409f 1 Other Other +80ef1736-5329-40af-9a5d-5c8d54cadb2c 1 Other Other +80ef996a-ee94-46e3-ae09-b1998ead6bcd 1 Other Other +80efa59d-0248-4e62-b2bf-84b9b68b6494 1 Other Other +80efc6c6-2e43-40d7-9364-89535c9c418a 1 \N Other +80efec3d-2b87-40f2-b885-57c5882f164e 1 Other Other +80f082d5-be94-4fe6-856e-80f2ee8fc5f5 1 Other Other +80f0ef74-61cf-4344-a1ac-3560919ab45d 1 Other Other +80f139a3-4e41-4c9a-96dd-5a33f2763e70 1 James Other +80f154d0-b1ac-4f2c-84e5-fb4c529332e8 1 Other Other +80f19436-0d28-4fef-bb63-ff299feff977 1 Other Other +80f19658-4aad-4946-975a-6e9ded4a0266 1 Other Other +80f1cb02-4f0d-4c52-9f0f-bd1f9bcf2cbe 1 Other Other +80f22ff1-2857-44ea-b134-84a15d78fbc3 1 Other Other +80f28394-816f-4114-91c6-df18cfa87a49 1 Other Other +80f29fa8-daa5-45ad-9f6f-e7f471a003c9 1 \N Other +80f2ad7c-fa68-48b0-8972-7ef103658cf4 1 Other Other +80f3375a-29d4-4fd7-ba27-37a7fc920202 1 Other Other +80f34c78-8d53-4109-bf16-faefc33ab15f 1 Other Other +80f37e81-3e4d-4c57-b6c6-5bdd33b9c91c 1 Other Other +80f39901-cae0-4a1e-931f-92c389b09ff9 1 \N Other +80f39d89-7dd8-4bd0-b7d7-2727fd294633 1 Other Other +80f3ca0e-1920-4946-a85e-1f4e2b59e519 1 Other Other +80f3cb3e-389b-4855-9948-4983fff13f8a 1 Other Other +80f40488-d4f9-4dd6-9dd8-06f2e18cfbab 1 Other Other +80f46fc1-d65f-42b7-b4d3-9700cb5dc2b2 1 Other Other +80f4dfbf-af00-47a1-82af-b0c803bfae53 1 Other Other +80f506a2-3e6d-4dea-9c6d-176eab1f8e4d 1 Other Other +80f51092-0262-4fe1-84df-f7cc136e15e4 1 Other Other +80f52f56-40f1-4d39-9c94-47bdb1e5aef7 1 Other Other +80f56438-e0a7-45c0-a167-38685bc06522 1 Other Other +80f5734b-51ac-4993-adeb-dbad1ab72917 1 Other Other +80f5b893-1f17-4bef-a299-056e3651c503 1 Other Other +80f5fe5f-bd91-4ec5-be53-c57c0f3ab4fe 1 Other Other +80f60955-c77b-4a51-b144-765169536682 1 Other Other +80f65b0d-0623-4ba8-a818-e2a82f4ae121 1 Other Other +80f65c3f-753e-4de9-8801-102073b2f287 1 Other Other +80f69af6-82e7-41c2-816d-3e68a9d4337f 1 Other Other +80f6cab6-4fad-4e98-b2a4-81cf5a6fe237 1 Other Other +80f70799-6615-4d86-b935-d9c2869e1dc9 1 Other Other +80f70c8f-e86e-4943-be63-3ca85dc2b44e 1 Other Other +80f7174f-3831-4a32-b9bf-08ee68fafe78 1 Other Other +80f753f8-7afa-45d6-be01-b7afcf8cd3c3 1 Other Other +80f77481-d61b-444e-aa49-9355a73ede38 1 Other Other +80f7ba36-a631-4992-9546-380e2281e3d1 1 Other Other +80f7c076-adcd-46a9-8b47-4ff20b8a2731 1 \N Other +80f83c44-d44f-4af1-9a0c-3ac618a8afea 1 Other Other +80f84d57-c205-42cb-aec9-3d5e4be61c56 1 Other Other +80f85b56-ae67-4146-a7fc-7c355785ceae 1 Other Other +80f88ee3-8cbc-442f-9e97-983059a2808a 1 Other Other +80f896d7-6f08-4132-81a4-83bd25c10150 1 Other Other +80f8b36d-76dd-44ce-9ae1-422da93a425e 1 Other Other +80f8b7d0-dbf7-11e7-b325-fa163e8624cc 1274fc8c-64ed-11e7-ab3f-fa163e4dd901 Other Other +80f8bb0d-89e4-486b-9822-631e164896d9 1 Other Other +80f95d7e-146d-4b59-9edc-66e4bfb66857 1 \N Other +80f9737e-e6b1-4ee6-918a-7445a0fd9e5b 1 Other Other +80f9e003-a865-4e9a-b40a-b27b78064b7a 1 Other Other +80fa0a75-e187-4189-b807-e37ea1adb87d 1 Other Other +80fa3fbb-09ad-4133-9338-c48662f3ea99 1 Other Other +80fa611a-b01b-470d-8210-dd322ab3113d 1 Other Other +80fb0b25-6ccf-4b1f-a813-2b35cce5a1d7 1 Other Other +80fb36d3-0b15-463b-beee-cdc099952339 1 \N Other +80fb3f72-5187-49b1-902d-fb22b38c32a5 1 Other Other +80fb63e4-eb8b-4772-998a-458744b0399f 1 Other Other +80fb7d81-959a-4b0a-b16b-fc6d507f3c98 1 Other Other +80fbf400-fa4d-46f1-aa6c-3e176b9e18b3 1 Other Other +80fc21fb-e5e5-4d31-b529-d01004d77cb6 1 Other Other +80fc4c6f-a228-42c1-a35b-821ec89c657f 1 James Other +80fc5a0b-8c09-4501-9510-55e107099a63 1 Other Other +80fc9fac-d68f-42b7-b26a-e34b3297a866 1 Other Other +80fcb82e-b7f2-4572-808f-189a255b5303 1 Other Other +80fcf79f-2320-485c-bbaf-7f6b9c657fd0 1 Other Other +80fd1bdf-5365-4745-825b-8df5d73315ec 1 Other Other +80fd375a-1513-4a78-a044-a50e237f24ec 1 Other Other +80fd38ec-8abb-4216-a11c-c78b93d58cd0 1 Other Other +80fd6295-0c3a-48b9-812e-b73b4cdec9c5 1 Other Other +80fd800e-744b-4597-8a14-9ad6bf9b976f 1 Other Other +80fdd907-9fcb-4642-9c33-83d1e81fd839 1 Other Other +80fde094-c964-4303-bf0d-0f10cdbaab34 1 Other Other +80fe12a2-54c3-49d6-b2fb-36d25336a650 1 \N Other +80fe138c-a481-400a-b6fd-0bd7e93c9396 1 Other Other +80fe1c62-7ca7-4e6c-a062-34d162355e11 1 Other Other +80fe754e-015d-415f-8a17-272f177bc777 1 Other Other +80fe8550-8356-4e47-abc7-6de083892026 1 Other Other +80feaeee-71fc-498f-b0f5-d1ed692be233 1 Other Other +80febce8-f9ac-4be1-9287-5866f516e001 1 Other Other +80ff0dde-0fcb-4d71-8652-61e8aeeef132 1 Other Other +80ff47f4-87b1-4d2a-a615-80a56a61836a 1 Other Other +80ff645d-919b-44fa-a4d5-e64403d9744f 1 Other Other +80ff7c09-1efe-4a04-8d2b-1e04ec2ac000 1 Other Other +80ff8bc7-4531-4c2c-997c-a6db653ff303 1 Other Other +80ff9abe-af24-4ace-9f2e-ad2d59029a9b 1 Other Other +8100a25b-cee1-4a29-b8e5-b5b249f8870b 1 Other Other +8100a324-47b6-44cc-9c6f-d80bac61f418 1 Other Other +8100a4b3-8a54-4015-ae87-563c4d03fecd 1 Other Other +8100afd8-7afa-4900-a8ea-3d62ebb0ad3f 1 Other Other +8100ecf6-cda2-43f1-9b1e-3a832f8d10ab 1 Other Other +810116f9-c31a-47ec-b164-2cb38b73f25d 1 Other Other +81011a08-a269-46e5-8f70-6114530356d4 1 Other Other +8101263e-f637-48b7-8680-3f89701a6ead 1 Other Other +810158f0-6ceb-4491-8f4d-33a661467493 1 Other Other +8101eded-f1aa-4e2e-a09d-377ab3d5fc8b 1 Other Other +8101fae5-d61e-4932-85fa-adf98554e832 1 Other Other +810252c3-a2cb-4ad5-a6b5-25a168a03e48 1 Other Other +81025b7c-5282-4493-8687-7a5a2a2d6f8a 1 Other Other +81025da3-9ef3-4c6f-ba6d-1f64f44944c4 1 Other Other +810266b6-ccd4-4c14-9c3f-dfe8ed382a9a 1 Other Other +810283ea-fefe-4ee6-8b59-9159a4521cae 1 Other Other +810329ab-d705-4c66-a8d2-ccf2ec26d7e8 1 Other Other +81033901-55ba-4469-ae2f-357bb132a87c 1 \N Other +8103413f-5f23-4fa0-9e76-a983de4f4a46 1 Other Other +8103653f-67ac-4bc8-8e50-ff639cd49950 1 Other Other +810375d3-995b-4919-b762-f276fc8ec9c8 1 Other Other +8103aea4-9161-42bf-b6d5-efe4cb9289bc 1 Other Other +8104534f-6b58-48ba-abad-5e85cad1f0d4 1 Other Other +81049144-2c12-418c-ba02-ed3a122c84c9 1 Other Other +81049c1f-99d1-4e23-a308-3791bd12ee59 1 Other Other +8104a487-6179-4c96-8c82-d9f9b0227b8d 1 Other Other +8104b7b5-b680-4b30-836e-956476575eba 1 Other Other +8104c8d8-a760-4661-b8b3-ffee0c324464 1 Other Other +8104d0fb-5c09-4fb5-8892-7116b3050a61 1 Other Other +8104f575-008f-480a-b857-14fe828023f3 1 Other Other +810527a9-4c11-49c6-b8c9-8143b6ca898f 1 Other Other +81055fc3-0690-4381-a4a5-7759a996c22e 1 Other Other +81058967-dd0b-4537-b6b8-fb3ecb6658dd 1 Other Other +8105896b-312b-4727-a97e-4eff91c559e1 1 Other Other +81059836-0437-4923-9535-dbe9fe92097e 1 Other Other +8105b89c-4fbc-4b0a-8db8-8038c3f9a6a0 1 Other Other +810637f3-aa90-43f3-9ccb-27e6464b6e77 1 Other Other +81065211-381d-47a7-8a61-bfa3e60051bc 1 Other Other +810652f8-5a3b-4948-862d-883e5fa544dc 1 Other Other +81065cc1-5f18-47a5-9e0b-e46c319a1fcc 1 Other Other +81067a93-153f-446f-86f1-c108ae25c6ab 1 Other Other +81068eec-7795-4e8c-bcec-792705b31ab4 1 Other Other +8106c36d-4b14-418d-9d45-24bcc517c38d 1 Other Other +8106cc2c-4ff0-49cd-827e-f8b073e71852 1 Other Other +8106cc85-ace6-4dfe-87be-c25278badae5 1 Other Other +8106eb25-3297-404a-b78a-61170c23162e 1 Other Other +81072c67-0bd7-49dd-b765-9b3f8c29e3c0 1 Other Other +81073452-25d9-4e31-9048-4967aac2e236 1 Other Other +81077097-92b5-43a4-9b29-00e42ef14b8a 1 Other Other +81077702-c33f-49bd-9177-9080ec3eabd8 1 \N Other +81077bfe-ac4c-4aa2-86ce-398d14cb34ab 1 Other Other +8107dde0-8864-4c1c-8f18-04670df99255 1 Other Other +8107fa58-da48-4060-8987-093d8ed652cc 1 Other Other +810835c2-9758-4f74-8d75-16a9de2160cc 1 Other Other +8108669f-6cb8-4442-bfb3-54f5e655e2ed 1 Other Other +8108739e-db56-4b81-8ec5-27f7a4c3b84a 1 Other Other +81087f16-9bcf-43dc-923c-224fca2eeec7 1 Other Other +8108bd50-3dcc-4abe-b7de-106d6b99a7be 1 Other Other +8108c40f-7e92-4c94-ad9b-736d23ae56aa 1 Other Other +8108cdea-ca93-4426-95d9-74f73776db5b 1 Other Other +8108ea95-2084-4d9c-add1-780da80adf3c 1 Other Other +8108fd5a-be0b-4526-8507-2de6a3f89b1e 1 Other Other +81091be9-5581-4c3f-afcb-cfb8a01e6348 1 Other Other +81092fdc-cb4a-471d-9b5c-b42504447025 1 Other Other +81093978-88bf-4cc3-88c7-a42f6f74f52c 1 Other Other +810989d9-bfde-410b-8fcc-042be74ac988 1 Other Other +8109a591-5cb7-43ab-a33a-88420ee1154c 1 Other Other +8109b280-7029-4fc6-b531-a15e92cdf040 1 James Other +8109d87b-2a0d-41fe-9107-5a56b0e94166 1 Other Other +810a115d-a6a8-4dcd-9a3a-f6105efd1f7b 1 Other Other +810a26f4-886c-4bc0-b6a3-0deb854c10b2 1 Other Other +810a29a6-e237-40d9-a470-717aa6a300ef 1 Other Other +810af6d6-dcb4-4aa0-913b-93ac188703c8 1 Other Other +810b0bac-f8ac-45b3-8cb6-05c32e3d2858 1 Other Other +810b209b-9d0e-4ed2-ae2c-cc25005f5086 1 Other Other +810b39a5-97e9-4e42-98de-da2a35f3b97f 1 James Other +810b4d68-46c2-43fc-87d4-8f3d2db5f360 1 \N Other +810b5490-8fef-40c7-85cc-25b2f25a53a0 1 \N Other +810ba5d7-226c-42a9-b7ec-89906993f4ba 1 \N Other +810c1e89-9d30-4c36-ae1d-26c017d78451 1 Other Other +810c2b01-7e32-4aa3-b7a7-2a008d5d6366 1 \N Other +810c430d-cab0-48b6-b939-47ff604f64d7 1 \N Other +810c8cfa-c080-4a59-be9e-57188a6cd099 1 Other Other +810c9a3f-1fc2-49b8-8b1f-3c57d490d697 1 Other Other +810cb5ae-ec9c-459f-a862-e55a55cfe9c3 1 Other Other +810cd675-a270-47d3-89a2-a69b6e2aa6dd 1 Other Other +810ce10c-6265-448e-abc6-871fa350c4c0 1 Other Other +810cf8da-e1e8-41ba-9394-9adb2d24808d 1 Other Other +810d1498-0592-4c54-b4bc-f91be8f6c39c 1 Other Other +810d5ca0-6db6-48a9-b16e-b33a49249604 1 Other Other +810da269-18d4-43ab-bd63-b42fd65752b5 1 Other Other +810e0017-6a9e-4ca8-870f-51fb9c1af4a7 1 Other Other +810e2d30-d655-45dc-9811-d8c7d67a3595 1 Other Other +810e37f8-489a-4acf-9185-c62376040dd6 1 Other Other +810ef944-0181-4a88-b41a-4efd66fefc84 1 Other Other +810f506b-2a32-4fc2-9c0c-86cb240fa906 1 Other Other +810f56f6-9a55-459f-9a9b-cc5252500a0c 1 Other Other +810fb41f-0cef-4f10-9921-df689372de00 1 Other Other +810ff400-39c1-4d37-bb9a-0d64b7afc927 1 Other Other +81109497-e51f-4607-ba01-0a0ba518682d 1 Other Other +81113b91-4876-4efb-a147-3592599ee195 1 Other Other +81115d08-9a4c-406d-a231-d78c2438f7ca 1 Other Other +811175a2-d081-4f7d-ab53-aa70548cfa28 1 Other Other +8111f052-3f6a-47b4-b85f-1e419451df8c 1 Other Other +811206d5-cfe9-4a12-91f6-48f4dc7cf151 1 Other Other +81120953-20c3-4c9a-9db7-59524b9fa457 1 James Other +81120e87-4c5a-4ff3-9790-125df15ea7f7 1 Other Other +81123d4b-d872-405c-b605-b83b32b66972 1 Other Other +811283f7-4eee-49ba-ade1-01ba1cef2af6 1 Other Other +8112def5-01c1-4f23-88c1-c93dcf0b02b9 1 Other Other +81130e1a-f8f3-4767-bbc1-3b51d9a1d443 1 Other Other +81132704-c902-43bf-be9d-b34955e9a3b4 1 Other Other +81133203-cdbb-4646-a38e-ba88125499de 1 Other Other +811381cc-f2dd-4fd0-9a1d-dc533fd71f5d 1 Other Other +81138eab-667e-4d7b-962c-804394a57b08 1 Other Other +81139ed5-64cf-4052-b910-2748ed449f88 1 Other Other +8113e63a-233b-4d7b-8d78-db32a8abb985 1 Other Other +8113e6aa-e5e7-40be-b0a2-9f29fde942dd 1 Other Other +81146fb4-2577-4ede-a668-ef5a6b2e8299 1 Other Other +811474c6-9827-4efc-92b0-2b394a941cd8 1 Other Other +8114764a-c6fe-4c9a-90c7-5dcd9c7e3b05 1 Other Other +811520d5-f788-440f-93e0-1149bc76f4d9 1 Other Other +8115439e-3355-45aa-b534-4559a389ee21 1 Other Other +81155666-f7dd-4f8e-8f19-b833a030dd2c 1 Other Other +81162c0f-ec59-427b-9cb6-f74263b895da 1 Other Other +81162cfb-e9f7-454b-8a94-1a7552d17cca 1 Other Other +811634a5-7380-4fe1-a5c7-659259c3770a 1 Other Other +811739fd-bbb6-4d1a-aa36-7be47403d6c0 1 Other Other +8117630a-4fc4-457b-ba14-4b0e41e8c403 1 Other Other +8117995c-c465-4b02-a0c8-26a04cc5352e 1 Other Other +8117a747-3841-469a-a72a-0c3d16697dd4 1 Other Other +811828ef-8bf1-4203-857a-bf6963361c00 1 Other Other +81184be1-3343-4635-b1e1-91adb5949fc0 1 Other Other +81190ba3-39e9-4fd5-8330-8f6009118797 1 Other Other +8119a8d6-d682-4dbc-9caa-51ee6ee59ba9 1 \N Other +811a1560-fc4a-4d8d-9e4d-92e17846b3a2 1 Other Other +811a5659-c275-4257-a626-f2419a2d8073 1 \N Other +811a68dd-5468-4f65-928a-184ef52cf1fc 1 Other Other +811aa7ee-cdf0-418d-b2a7-16dfc561d871 1 Other Other +811afbb5-8e8a-4a3e-a85d-66d7ff51b1fc 1 Other Other +811b4ad9-2bcd-4619-96f9-eab9a7f9ea37 1 Other Other +811b83bd-c6c9-4eb3-953e-7718078581c8 1 Other Other +811c1f17-9782-40ff-a58d-229f5d9f1747 1 Other Other +811c877b-2711-4a7e-b88b-df0777af96fe 1 Other Other +811c9bd1-3d9a-4f3e-bd13-055a092550a4 1 Other Other +811caca2-405d-45a4-89a6-920dc779203a 1 Other Other +811cd2c0-0717-440f-a003-7a03ff7c6597 1 Other Other +811cd603-a745-4de9-9b60-aeedb7c7e411 1 Other Other +811cfabc-3d33-4a8e-b5a9-b0720fb788d1 1 Other Other +811d57a9-19c8-441e-80ef-f48150f9f660 1 Other Other +811dc690-c2c5-43de-84ab-e89f35b8cbe1 1 Other Other +811dce24-5249-4c3a-b4c2-8ae93f5d1671 1 Other Other +811e0727-cbf5-43c8-9d05-ae6013b27076 1 James Other +811e1fdb-361f-4c22-9c63-242470639d72 1 Other Other +811e23d2-5173-4d39-a82f-e0d0465ead0f 1 Other Other +811e798c-85f3-4f51-af91-157fb1f9a902 1 Other Other +811e8887-cfcf-4bc9-a4f8-84cafc90ce2f 1 Other Other +811ecd6d-35d4-4078-84ff-b42288e737ae 1 Other Other +811ed2ab-e75e-45d3-b477-6d2d7858fd4e 1 Other Other +811f0064-9495-4c1d-a389-a9cc4a7fd507 1 Other Other +811f14af-8fb4-47b8-8028-fa96fddec72e 1 Other Other +811f2ad0-d621-4220-9fe3-9d193c4e427c 1 Other Other +811f516b-35dc-462a-be6b-bbdb36424cb2 1 Other Other +811f7369-bbd2-4777-b72c-795f7468c9f3 1 Other Other +811f7b43-4f37-4e37-881e-9a65dd159059 1 Other Other +811f9138-f5ea-497a-b651-745c8e8b1bc4 1 Other Other +811fa904-b6da-4bd9-90a3-5c7ea148bcec 1 Other Other +811fb904-6888-459e-a9fb-5d437dafcb70 1 Other Other +811fc7f6-55e3-44d8-a75c-183fa4589549 1 Other Other +8120100e-1957-4d6f-8d7f-a38b5ddb139a 1 Other Other +812018eb-a386-40bd-83a4-2733a0dd15a3 1 Other Other +812022e9-49c5-4ecc-be26-6fca9b324877 1 Other Other +8120bd96-5f93-4f52-afee-ecec075f2380 1 Other Other +8120c78e-2d71-4a44-9870-edca79db4f1e 1 Other Other +8120d0f3-2ce5-488e-a51a-0d162f0f98d4 1 \N Other +8120e3d2-4642-4ccd-b3bd-632b841a8696 1 Other Other +8120f2d4-b837-4689-a82e-5415d89a5656 1 Other Other +81211cd6-f4cc-4f5e-9f09-632e5f2b3a22 1 Other Other +81211fa2-9dfa-4ff8-8c80-c0e476dffd93 1 Other Other +81212277-be50-44fa-aa61-1a6fb5aa72e5 1 Other Other +81214180-a4fc-4fe2-bd03-ec1e51e6cbbd 1 Other Other +81218e66-0cc6-4489-8d78-c508c7caa9b5 1 Other Other +8121b653-30e5-43f5-ac0e-9acc7b1277d7 1 Other Other +8121cff7-c832-40a8-83ce-de598843561a 1 James Other +8121d4c6-03cc-45ac-8bf4-d5cff46f5c8f 1 Other Other +8121f990-282e-4549-b254-8223f016b594 1 Other Other +812239f6-628c-43be-80e3-740a10f9f928 1 Other Other +812245a3-183f-48a3-9e30-964f41ab2543 1 Other Other +812276d6-fcc2-4900-a353-db6fe4715b55 1 Other Other +81228c5f-508c-49b6-9217-c4c6c0ec5a20 1 Other Other +81229373-3cf3-4359-b10d-d49380cc4061 1 Other Other +8122e6f8-de7d-4ac3-9616-3fb67b600067 1 Other Other +81232785-7994-4ac0-bdbd-e34a975e1822 1 Other Other +81233d87-c523-4b7f-a730-869b7cd04a0f 1 Other Other +81236271-28d2-47d0-a9a1-5f39a17f85cd 1 Other Other +81237f0e-1ccf-4c45-b174-c98f25a6b345 1 Other Other +8123a17d-24a3-4a27-a0c3-f2d2528ddbcc 1 Other Other +8123b5f9-4026-4cde-a29c-bed16c57f0bd 1 Other Other +81243cbf-4df7-4a9b-bc62-4b25bb0260a5 1 Other Other +812443e8-3537-4c1a-b4e0-4f364e158dbe 1 Other Other +8124aaf9-6b43-43f0-8b4a-e6df055c0e05 1 Other Other +812554a4-54d7-4c44-be54-692d76ee638c 1 Other Other +812572d7-74ff-49e8-b3d8-999a5b8a1310 1 Other Other +8125c216-84ca-42a4-8a79-2255f895b9cd 1 Other Other +81261c6c-e91b-477f-89cf-cb32fd54722f 1 Other Other +8126271d-160a-4238-85a2-92affc8d8cbf 1 Other Other +81263db8-4ed4-4c22-bd2f-03f38f675619 1 Other Other +81266e88-da0b-49a3-80fe-07b0fd5f367e 1 Other Other +81273e77-627a-4a58-9b3e-d28aa1bb4f4c 1 Other Other +812776b5-e5c2-4650-b096-ecc321bd8d5f 1 Other Other +81278c66-8d28-4c04-b6b7-159034716ef0 1 Other Other +81279824-80f1-40d7-a928-6f1b928db769 1 Other Other +8127bd2e-facd-4603-934b-74908915c6dd 1 Other Other +8127f116-35c5-47f6-9651-7516ffb2ba76 1 Other Other +8128207b-010c-4138-92cf-d19b14917a2e 1 Other Other +8128333d-af7a-4c99-8365-8f702c5ca77d 1 Other Other +812841f1-d0fe-470b-b195-ff7d2c5b856e 1 Other Other +812849e5-0259-4b81-8cdd-a97023a151ab 1 Other Other +8128ef70-913c-46fd-aaae-3af250b76a38 1 Other Other +81297e70-b89f-40a7-8ee4-8108199e5a9d 1 Other Other +8129812d-11ee-4b47-a37a-fec1a89ccde0 1 \N Other +812a13ad-b872-4592-adf9-90d3193bb4db 1 Other Other +812a3286-d883-479a-b9cb-a0ae82a49a18 1 Other Other +812a5f9e-89bf-4bd5-8883-e3739c60b4d6 1 Other Other +812a717a-4f23-4983-9b68-016ccf24f1c7 1 Other Other +812a9d62-f6dc-4835-a4c4-023cec28141e 1 Other Other +812b1516-b633-4f26-915c-919c0a69c84e 1 Other Other +812b8228-a051-4440-86c3-fce5f23f7bab 1 Other Other +812b8632-c015-40cf-8e3c-1f0568f894c5 1 Other Other +812ba6fc-425a-4f06-aba6-297340f1bc83 1 Other Other +812bbb14-d4bb-4b65-8d3a-908031e94afe 1 Other Other +812c2aa1-b0a5-4c86-adcd-0ef34939bcfd 1 Other Other +812c2b6a-2068-4be1-8bbf-6e1ebb051cec 1 Other Other +812c564b-d4b9-4114-9dc0-5f58c941aa36 1 Other Other +812c5bd4-8ef9-4e33-99ca-0b1fbb476da8 1 Other Other +812c8b66-821b-4df1-90f7-44ebcca375fc 1 Other Other +812ce0aa-d574-48ea-8798-66a6ace38f78 1 Other Other +812d2cbc-35dc-41aa-ae5f-30d097d54d7e 1 Other Other +812d7f93-795c-401b-a351-dae11c4aec8f 1 Other Other +812dac04-5070-4afd-9d52-c22268215d85 1 Other Other +812ddcec-00dc-4b59-8d88-e5f36ed6badd 1 Other Other +812de8da-3089-4f1d-9611-4b62af62974e 1 Other Other +812e3784-afbb-4992-85d1-94da58db1170 1 \N Other +812e6911-1aa2-46cc-8325-3ed92daa8af1 1 Other Other +812ef044-63f5-4802-9393-096559c04926 1 Other Other +812f77c3-a2ef-4fa6-88e0-d8469351398a 1 Other Other +812fef18-5e52-4765-b7df-9f4204afdf80 1 Other Other +813009ee-4b3d-4029-bcfb-328fec8c3389 1 Other Other +81307fbf-8454-401e-9186-0aac2dd6ee96 1 Other Other +813084ba-1928-43ea-b91f-4f28e2cc05a2 1 Other Other +813089d5-597b-461d-8440-7a9b7da30e67 1 Other Other +8130bc2c-68fa-4580-ab4e-30856b879e8f 1 Other Other +8130c247-05dc-4a28-b367-bbd4d56094c9 1 Other Other +8130ce9f-2d81-450f-9ff8-b528248bcee2 1 Other Other +81316bf9-de29-4859-b618-17d6f19673f5 1 Other Other +813179f0-eb94-4136-abb3-600f76ce46cc 1 Other Other +81319164-ce0c-4c52-b350-f39123412c57 1 Other Other +8131f82b-c7af-4d78-bda2-b43aca09b301 1 Other Other +81320a0c-4efa-44e2-ad57-adf3a2b7f68b 1 Other Other +813214f1-7c02-4424-bf34-1c3d9087cba6 1 Other Other +81323f38-a3bc-4a83-852b-2766d4b8ec6e 1 Other Other +81324537-9f72-4e1f-b0ab-f53bcfa9ad3a 1 Other Other +81328e74-a342-4490-94de-7ea994376d64 1 Other Other +81329965-a135-46f2-a448-f3438f1100a1 1 Other Other +8132d55f-90ba-4ecd-8032-adb5b8fa2241 1 Other Other +8132ff8e-fda3-4d74-80d9-f6ff09d26f2d 1 Other Other +813379de-7e4f-4602-af92-9ee4ecd7bd80 1 Other Other +8133af97-eb87-4eb1-a2ad-fc36240f45de 1 Other Other +8133dabc-d223-4aa2-aeef-e4621036dc85 1 Other Other +813407ea-de63-4dd1-9d25-f934e1737488 1 Other Other +81340bfa-fe61-4124-892e-e80498eb0786 1 Other Other +8134201c-250c-499a-b7d2-fd072b6679fd 1 Other Other +81342274-7969-4a10-87d0-69e73cee8efd 1 Other Other +81345d55-eee8-4de7-835e-359c0b36b456 1 Other Other +81348895-dca8-4784-bb4e-fde8a68cbf94 1 Other Other +8134bda9-62c8-426e-9da3-882d1cba1b39 1 Other Other +8134cb0f-af30-425d-917b-1d8fffc83eb1 1 Other Other +8134fd66-0257-41a6-89a6-1cddb6c251f3 1 Other Other +813503d6-669d-4bf3-bb21-334a0cc9e64b 1 Other Other +81351a93-570d-494f-b7eb-68581271c666 1 Other Other +8135618e-d119-4913-9458-45ff5873479f 1 Other Other +81358bd3-97ac-4ed1-942c-4c6ea3f4d2ea 1 Other Other +81359578-b979-49be-b789-33c1f89edb65 1 Other Other +81359bda-02a5-4d8c-b4f7-a8e40e2325a9 1 Other Other +8135e7b7-d9da-4d6b-b13f-db407a7fb94e 1 Other Other +8135ea90-13c1-11e8-9f18-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +813640c8-9f36-4619-ab7c-4816fbd5d105 1 Other Other +81368ff7-2c38-4d41-8b4f-628502271610 1 Other Other +8136e5f3-95f3-420f-85e0-d0990065e09e 1 Other Other +8136eac5-9925-4615-9a0a-3a06c5f0e4d0 1 Other Other +81372c17-e365-497e-a33a-3959b6d8c73d 1 Other Other +81372f00-7047-47d1-abb1-62663a3cadb4 1 Other Other +81375273-d351-4d74-b658-8c70bebe71a1 1 Other Other +8137909b-5759-4d3d-88f9-f8479ebc6254 1 Other Other +813791e2-5ef0-46a0-8922-694d6d8f8069 1 Other Other +8137ba31-e793-45b4-8442-4d45eed84cbd 1 Other Other +8137f974-6661-4964-b009-9123d488b419 1 Other Other +81384c82-be6f-4966-ba0f-1a4f9aba17c6 1 \N Other +81384e8d-025a-4f0b-83db-55c5fbbc070d 1 Other Other +813898d4-abcd-4cf1-ab4e-dbf1677b4b8c 1 Other Other +8138a498-b6f4-4ff0-bd0a-49bfa7d51c35 1 Other Other +8138f2d0-b90a-4be8-8387-8b40990f1db1 1 Other Other +8139107f-e2d5-4703-bd8d-7a8c561d20f6 1 Other Other +813934c3-ded6-4945-9a23-87f2cc13884c 1 Other Other +81393db2-646f-4d3d-9a2b-d32f757d4b50 1 Other Other +81398525-a196-437d-9674-83231f38aff9 1 Other Other +81399259-69df-4d5e-a579-1f013936c962 1 Other Other +8139c925-72fb-459f-b27d-bf084508011e 1 Other Other +813a73d2-e16f-4b27-9014-79ac1fbf3f6d 1 Other Other +813ac0f3-c6c5-4d16-995f-bac0ff815abf 1 Other Other +813ad3e5-5b0c-42d9-a0a0-d9a65745813b 1 \N Other +813ae8da-7ae5-4552-87f0-b8a7e1d53e18 1 Other Other +813b4c3b-7a7e-4280-8007-cc158d76cdf0 1 \N Other +813b6ce9-2626-4737-a6ca-38029a6ec244 1 Other Other +813bac18-963e-485e-aa26-79f9c0dd6198 1 Other Other +813bb54c-ca26-432b-ac6d-a7cf7891671a 1 Other Other +813be236-69cc-4780-ba1a-a97505f2c0ce 1 Other Other +813c6279-9006-4e65-89b4-2b80e58b3397 1 Other Other +813d0f2d-9776-4f4d-968e-d581a6da0766 1 Other Other +813dca2f-a34a-44d3-ab35-55dea1eeb985 1 Other Other +813dd36c-ccf2-4802-a79e-4f17cb458a6e 1 Other Other +813e91df-2184-47ea-8c9f-542d03da459b 1 Other Other +813e9203-8825-4c3a-ba2e-0b5cea99a859 1 Other Other +813ecdf8-3ac2-49e9-9750-8e47d0b89d97 1 Other Other +813ee297-f369-4d87-aed0-4bd7b9a292ec 1 Other Other +813ee44d-cd6c-4858-b193-a4db063e4b31 1 James Other +813eed5f-b423-41c9-bb2b-813382fb5b2c 1 Other Other +813f0055-0c91-4a92-82ed-46a22caed221 1 Other Other +813f2703-8eb6-44c7-815e-e7ac50c825e0 1 Other Other +813f378e-7511-4b9b-9283-b341fec507da 1 Other Other +813f68ba-9b82-441d-99a7-bfd440860ace 1 Other Other +813fe533-b4b9-4d20-a296-0e8c410b816f 1 Other Other +8140173e-1caf-417d-8973-41c3bcc69d3f 1 Other Other +81404988-19a4-4a74-9648-a8fbbf0a0f51 1 Other Other +8140acbd-5919-4a59-a6a4-e03c2f9e6d19 1 Other Other +8140dd47-82ef-4beb-a288-97de0259e8e8 1 Other Other +8140de1e-f84a-498b-8cae-593164d04b2d 1 Other Other +8140f1ad-b1cb-470b-b283-1dfe0778d34b 1 Other Other +8140f21c-403c-442b-8e4c-5d725601b8a9 1 Other Other +8141000c-bff7-4a1e-a842-b2ace14681c8 1 Other Other +814165ad-bda6-48ba-916d-88c45a710919 1 \N Other +8141ddaf-def4-4b7f-b45c-7b2a08a2a0a2 1 Other Other +8142393b-a5a8-40ac-91f3-052c5d88fe5d 1 Other Other +8142bb7e-14cd-4746-83a5-68962277be87 1 Other Other +814303e5-312c-4c78-ba50-5f0e95374513 1 Other Other +8143337e-2b47-479c-b037-4f31d31b8f3a 1 Other Other +81436829-85f6-4440-883c-525fa775c507 1 Other Other +8143a120-c177-4ca1-acf5-e241659211a1 1 Other Other +8143be02-1d08-4feb-8526-8e321e599e00 1 Other Other +8143f0d9-25fb-4a4e-a930-9e9d0a86fcbb 1 Other Other +8143fa99-996f-4a4c-a493-706125463d81 1 Other Other +8143fc6e-fb31-4182-a5fa-ab8a10062321 1 Other Other +81440508-1240-4514-82d8-a17e87b2e094 1 Other Other +81444166-7d8d-4262-93e1-0e81535290f2 1 Other Other +8144891f-fa1e-4edc-b5d6-edf5bc65e775 1 Other Other +8144a0df-d242-4791-9ad4-c8ac9ee12a45 1 Other Other +8144d96d-208f-4cb5-a8a4-13d818d6caeb 1 Other Other +8144f312-8e30-4793-af4d-7fbfe0003ccf 1 Other Other +8144f7cf-97ae-4a8d-8c03-8828f21a9157 1 Other Other +814509f3-5d1b-493b-b46a-b6d23606a00e 1 Other Other +81459c3d-e819-4971-93cf-cddfe6acc16d 1 Other Other +8145a89b-41a5-4504-9e46-0e7539f82018 1 Other Other +81464ae0-8927-4137-9e1b-786bec034298 1 Other Other +81465801-2522-4167-978a-679e58fdbcb5 1 Other Other +814711ea-06ec-49f1-ae6e-ca53ecaa967b 1 Other Other +8147210f-ddba-4ae0-81ed-8e9ac323a67f 1 Other Other +81474756-6222-434a-b2c1-ce28eb1cc931 1 \N Other +81474de6-70ef-4028-bdb8-8b786e22d692 1 Other Other +814784a6-912a-4379-890e-a7495e8ca75e 1 Other Other +814831ca-9ee8-4533-961b-1e657f3aa366 1 Other Other +814873d4-4547-4e9a-9d3f-7ee659fe25ae 1 Other Other +81487f95-e4d4-4509-ae27-ee65b243290d 1 Other Other +8148c382-3943-4863-a9ca-c28f9b848296 1 James Other +8148de8e-e1b4-4085-bd63-94062548c474 1 Other Other +8149cd51-9a72-4fe9-9805-af8415ecd86f 1 Other Other +814a031b-4080-4b47-b183-cb873b997296 1 Other Other +814a6923-ba28-40c3-91d5-87e2570666a0 1 James Other +814a9e94-0e1b-4c24-ace5-bf9f18e805c4 1 Other Other +814acde9-c595-4a0b-bd52-e8db24f95b1b 1 Other Other +814af45a-d79e-4486-9f29-e9f3a0d15a5a 1 Other Other +814b0c4e-3088-481d-b149-de7f03b42d4d 1 Other Other +814b1a93-f2f1-4c53-8d00-2b2a33e2b065 1 Other Other +814b2855-f376-41f5-abd8-dc3455edd31f 1 Other Other +814b3724-4be9-4c2c-88ce-5d24663c54a2 1 Other Other +814b3f8b-038c-4d33-a2bf-15707893dd81 1 Other Other +814b9a20-e3ec-42dc-8965-33fa8950cab6 1 Other Other +814bb77a-3c80-4616-9825-e1be4a646c9d 1 Other Other +814bef33-daaa-4bee-ada8-9c30c523fe25 1 Other Other +814bf8a9-f573-4dee-a23b-0db1e4ee5c54 1 Other Other +814c0c0a-4871-4797-b9fa-1f911e51e36d 1 Other Other +814c3a3d-3d40-4c38-9ad3-4e941ef6ec1c 1 Other Other +814cbc78-38ad-4a63-b196-8dd8c0aa3296 1 Other Other +814cdb4d-6263-4497-ad27-c82df11427fe 1 Other Other +814d28bd-3c44-4bc1-b6dd-ec4041d82b43 1 Other Other +814d3145-3c3b-44e7-a7f8-fbda7d97ec2f 1 Other Other +814d8216-29b9-4613-9299-be5756f29182 1 Other Other +814da657-682d-4f00-9b15-5f2c62734be2 1 Other Other +814da752-0cff-436b-836c-bfd375408def 1 James Other +814dc47d-5a80-4c0c-9a2f-8621768cd375 1 Other Other +814dcf6a-ad63-46dc-8178-049684b18bef 1 Other Other +814dff70-5168-4798-8ab1-1ff24d308e27 1 \N Other +814e47c7-478f-4e49-a9a9-0a3a95fd227c 1 Other Other +814e72b7-6d21-4c71-babe-6418f5bdd83a 1 Other Other +814e9b27-f169-4195-ba7d-9fc602d2a5f2 1 Other Other +814eaad7-34ef-4721-8911-80e2b41cb7ea 1 Other Other +814eae53-902b-4873-a104-e135e68cc3b1 1 Other Other +814ed1c2-fa7c-4cd3-abbf-bd06ec6f6207 1 Other Other +814efb17-3b0a-4182-a8b1-2ede88a45d2a 1 Other Other +814f0017-71bd-4b61-a64c-8f5cece71f71 1 Other Other +814f80bc-77b7-4d84-b4d3-35e0fb8fd55e 1 Other Other +814fa383-dd52-4d13-9d2c-e89d1af03e9d 1 \N Other +814fd5f3-d63c-4562-859b-617fc9292f54 1 Other Other +81500ebc-d719-4c04-864a-b64566e7effa 1 Other Other +81502fd8-f867-4a88-be39-c86096017696 1 Other Other +8150449a-08aa-4cf2-b1d2-0f2567e5d031 1 Other Other +81506b16-df8b-4a7b-aa40-eae0a8d6c357 1 Other Other +815073e8-d167-424a-b05f-7beba58a20cf 1 Other Other +8150ec2d-a78e-43d3-b563-a5ebb6e4c1f3 1 Other Other +81511660-9e01-4a2a-9319-d6361effc2c7 1 Other Other +8151816d-c142-406e-b1a3-f8dca20e6662 1 Other Other +815190d9-ae2f-41af-8f7f-a68dbb157352 1 Other Other +81519b9b-4edf-4b98-83f3-f4ba68962fef 1 Other Other +8151cf8b-99ac-4cc3-81f4-c51c70e880ff 1 Other Other +8151eadb-b8dd-4514-8a23-7cdc4f38bdf7 1 Other Other +8151f279-48ea-4004-8e57-4860be5fbff2 1 Other Other +81523dc8-0315-420d-bf67-a8fb3b30717a 1 Other Other +815254ed-9c19-4254-a2bd-4dcf6db13562 1 Other Other +815291f3-d5b0-429e-80f9-c6184e61b955 1 Other Other +81534937-f5bb-46b1-9d3c-20db3dbf8561 1 Other Other +8153ea84-3a80-4466-a19f-f19f4d89dc04 1 Other Other +81540a56-9140-4ae2-a752-e50c5cb5d812 1 Other Other +81544a65-80c4-4e2d-af58-37a211071cce 1 Other Other +81544b1c-0c54-491c-9ffe-e2c02a61f5c3 1 Other Other +815452eb-7207-4c3d-9509-4a6eecc4a237 1 \N Other +8154ab8f-6333-468d-b838-37a4385258f7 1 Other Other +81551683-9235-4af5-aac1-43c6226004b4 1 Other Other +815524f7-4a69-4eb1-bcad-67032232d252 1 Other Other +8155456a-9daa-4250-a16f-d1dce5ef8ae6 1 Other Other +81558ba9-7bcd-465d-85ad-c55e5a3027b6 1 Other Other +8155a981-8d77-455a-847f-264d3c5ddaae 1 Other Other +8155f1ab-3ca0-4982-b956-47aa982621f7 1 Other Other +815613fb-f98d-4080-aa2c-40218a2f3f9c 1 Other Other +81566b61-adaa-4ee8-8208-a47d63343ce6 1 Other Other +815670a8-18a4-42cf-a37b-b51483876fd7 1 Other Other +81568853-cb22-4784-bd0a-0a54fbf35756 1 Other Other +8156b8de-f134-4414-836b-a96ff8313a32 1 Other Other +8156d8d0-3491-4b68-aaf2-40f07cacdbe5 1 Other Other +8156ee2b-2c0d-4533-a28f-866c54093beb 1 Other Other +8156fecf-ba4e-49a0-b3ef-2a6aac5aac97 1 Other Other +81570cff-2221-438a-a114-c29b8f3b9bf3 1 Other Other +81571eb2-700d-44ee-b76f-d0de81f10707 1 Other Other +81574286-973c-4d90-b696-08f9a1ff785f 1 Other Other +815765c2-bb52-45d6-bc41-73aa3f4295d5 1 Other Other +81577447-6482-432b-a988-ee48daa9556f 1 Other Other +8157e666-77b8-448c-837a-d4a81843c008 1 Other Other +815877cd-ca27-4f20-8e8b-37f79ead7961 1 Other Other +815904b9-b764-4598-9793-5111a426bbef 1 Other Other +81595677-4810-4e10-bed6-31ba127405f1 1 \N Other +8159709f-dfee-4127-b96a-5fe98fc166be 1 Other Other +81598c3c-9017-491e-ad3a-b2cf76e03270 1 Other Other +815a063f-5dce-4a69-a86c-d4faf47624c0 1 Other Other +815a34ec-c8ae-4cfe-b8f3-a1f2d41bab4c 1 Other Other +815a4792-09eb-4ad4-a6e0-5ff4820123e7 1 Other Other +815a47c7-8933-4fd7-8680-ad5b6eba1a29 1 Other Other +815a5727-87c9-4662-adf3-1f1dc1996cb1 1 James Other +815a97d5-d2df-4946-97ff-5d9bb53b346c 1 Other Other +815ae523-c7ea-45d0-a55e-de78f30ccaae 1 Other Other +815b0aa4-4ac1-4e07-820f-b811298d83c6 1 Other Other +815b158c-9eac-4952-ab6c-b38b20394ceb 1 Other Other +815b1b7b-b9d0-42a0-9db4-30ea96dd2b46 1 Other Other +815b7cb7-470b-4601-a9ef-9b618e603bd9 1 Other Other +815b842a-d3ef-4f67-89dd-72d007251850 1 Other Other +815b847f-0c6a-411a-ae50-e636fdcdca3c 1 Other Other +815c5695-4f99-4e49-9ccb-f7266096ae28 1 Other Other +815cc827-8460-4606-8a45-d9adfbeda726 1 Other Other +815cf2c5-0ef3-46c5-8be0-9a9a78d1abb3 1 Other Other +815d0a2a-47d3-4e17-8632-38b8829a0328 1 Other Other +815d127c-8f21-407a-be18-3fd83ca63c74 1 Other Other +815d13fd-264f-4a61-b19c-cd407f39c96d 1 Other Other +815d1ab6-1e99-4666-9b87-f45fd642cd3a 1 Other Other +815d2d2b-7154-4f7a-ae43-21fcabefd70c 1 Other Other +815d5a46-c312-4a10-9ea2-e818e0b9eb8a 1 Other Other +815d78c2-396d-45d8-8903-f94588d17b4e 1 Other Other +815d7d23-46a2-4747-af2e-7ef06cea67c4 1 \N Other +815d9935-91d8-4467-81de-322d3eddc91a 1 Other Other +815dfd21-4a3e-4f2c-b20e-98215b167143 1 Other Other +815e0099-e1d0-4913-b348-f1dee3e9f4ab 1 Other Other +815e2cd2-b368-4fba-baa6-6a61dc411eee 1 Other Other +815e5c70-fc4e-419b-b4a7-c515bdda2843 1 Other Other +815e8ed0-1877-4297-aa28-22363944e9cd 1 Other Other +815f21ba-eb5b-4144-b094-a143a4d86138 1 Other Other +815f4328-9f13-4a42-a0b7-91bc1a3f5abf 1 Other Other +815f483d-7c5d-4d06-a9b1-9e95ecdfd54c 1 Other Other +815f527e-2298-48ac-81c6-a3883a4f9221 1 Other Other +815f577d-4f8e-49dc-b3c9-9093a433932f 1 Other Other +815f6a90-85d9-421f-926e-360ceb1dc131 1 Other Other +815f7dbc-f099-4c00-8e1f-0a8935f5ab4a 1 Other Other +815f953f-27e7-47c3-997d-79a51362336e 1 Other Other +815f9e6c-2416-4abe-aadc-f1fa9904cc1a 1 Other Other +815fab51-1adc-4581-aa9c-dbdc56e7be86 1 Other Other +815fc5c9-f0d7-45d8-8ff7-85269ef1be6c 1 Other Other +816039be-2a5c-4c58-bb45-92f0f669ff3b 1 Other Other +81607173-af6d-4b04-aae5-e9bee1a17b3e 1 Other Other +81608883-2395-46c3-bb3d-2a3198f5364a 1 Other Other +816092cd-7acf-4099-b4d5-774621b8171c 1 Other Other +8160a858-5bf6-4ee4-97d8-deada436336c 1 Other Other +8160cf4c-261e-4416-a598-81e61b69bb59 1 Other Other +8160d027-0607-43fb-bd40-2be13ca7ce11 1 Other Other +8160f728-5215-4399-9908-84e6b98f1120 1 Other Other +81611b14-1200-489e-92a5-9009700e1150 1 \N Other +81611b66-40bb-419e-8f7d-1434aa813f4a 1 Other Other +816120d6-52cf-4246-bbd3-d1f223eff637 1 Other Other +81617d3c-c67a-4d60-9b23-d423bf356f65 1 Other Other +81618fd7-f5a2-4e34-8e00-b87524fea2fe 1 Other Other +8161e1b4-d8ef-4383-a01f-3bf26de17bab 1 Other Other +8161f05b-d7c6-40fb-b473-dd680e8658dd 1 \N Other +81621eb5-ced4-4d94-ac41-d3d5f3f61ec9 1 Other Other +81621fef-da57-4408-89ee-b6fda89ece5a 1 Other Other +816253a4-c048-490e-8177-910dc737698e 1 Other Other +81625913-d7c7-4e9c-aca0-342d5e46a5eb 1 Other Other +8162698f-a020-4bad-ad9f-9f2a5deee98a 1 Other Other +81626e4c-d5e9-433d-828c-f6e9d81d4f20 1 Other Other +81627bb6-bb2b-4816-9df9-06b6450405d4 1 Other Other +816297cd-0462-48bb-9c8a-32a137016831 1 Other Other +8163061a-7556-468b-a329-0dfa1e7a15a3 1 Other Other +81631a94-d65e-45c8-8a8b-02bcf74126ab 1 Other Other +81634894-4904-483d-9c90-b6115a2b4755 1 Other Other +81635eed-4c36-4311-8060-4b58115d448b 1 Other Other +816368cd-1668-4ae5-9a01-b82357f90464 1 Other Other +81637278-c945-4f3f-ad10-8480835bfe1c 1 Other Other +81639f38-8b3a-43f1-8713-173791c55078 1 Other Other +8163e4c2-af16-4971-a18b-433879f87548 1 Other Other +8163edec-a00b-4e92-bbf4-e43c6456c090 1 Other Other +81642c7b-5775-4cd6-9376-47d60b497a5b 1 Other Other +8164ee90-68f8-4032-b48e-e8bbc1ea6b12 1 Other Other +816540ba-44a2-4852-892d-294e74cef016 1 \N Other +8165717d-91d8-4ef0-a2f5-19afaef7979e 1 Other Other +816571d5-6bfb-46ff-a5d6-4ece18633ece 1 Other Other +81657861-50d0-4089-b588-e190dbb84d27 1 Other Other +81657b87-7a3c-4a13-8c4a-7981b1e3af7b 1 Other Other +8165e127-fc20-44a0-a920-42232473f1de 1 Other Other +8165e77b-9b24-41f3-ae7a-c47a9436aa22 1 Other Other +81668726-639d-460c-9f0c-81d4d7b1b7ee 1 \N Other +816689ad-2cc3-4c27-8b87-0e4bdc9b1d1f 1 Other Other +81668fd2-b69c-4f08-91e9-410edfc0dc88 1 Other Other +8166e4f2-8dcb-468a-a069-5b3c9aeb456a 1 Other Other +8167565d-b3d7-4a48-8b92-1eca268b48c8 1 Other Other +8167a2cf-6c35-4da5-a674-36798e4df5f9 1 Other Other +8167b93d-00c8-41fc-bd65-d4185efce19b 1 Other Other +8167fd9c-9802-4b7b-8cb4-31be2f836eb3 1 Other Other +81681a82-6740-4105-8090-21e4e3066f3d 1 James Other +8169074f-131a-4eaa-bac1-800240041a55 1 Other Other +81690872-a5f0-42ff-be32-9a6bc5a37391 1 Other Other +81693510-41d4-4961-9985-6ebcedc078ae 1 Other Other +81694282-34ac-4939-80f9-e848fa6f80cc 1 Other Other +81694c55-e79f-4e0e-81f7-bb75fcc3a523 1 Other Other +8169a5ed-8435-42f4-8e39-14ba3280d758 1 Other Other +816a1eae-e450-463f-bd50-b30402db9254 1 Other Other +816a2693-dfa6-46bf-a64e-13fa2bb1fc12 1 Other Other +816a4bf9-c455-4c1e-8fe1-9772b77269f8 1 Other Other +816a9c5c-c97a-4020-b08d-7ce84de9de4b 1 Other Other +816ab5f5-4755-47a7-9f5f-74f94a7eecd4 1 Other Other +816abe37-2d11-473c-9f2d-64d0ac4712a2 1 Other Other +816af208-fe4a-49bc-bc87-15483080de55 1 \N Other +816b10c6-e7c3-4a74-95f2-6f1b00507d81 1 Other Other +816b81c2-d699-43a4-bc87-796c0a6acc81 1 Other Other +816bc425-3a73-48f4-9abd-4e982b516502 1 Other Other +816bcf27-9638-4b49-86ad-8df8b6d92bbf 1 Other Other +816c34b7-944e-455c-bd59-b8848644b67f 1 Other Other +816cacea-b9dc-4f97-8875-8f1524552c05 1 Other Other +816ce4c4-1301-445c-9350-da33af0e0dae 1 Other Other +816d4136-68ac-461b-93af-f00333186cdc 1 Other Other +816d56e4-1888-4282-b8f4-df24f2c28e71 1 Other Other +816d9dfc-69dd-4d0a-ab86-a0f42383c020 1 Other Other +816e283a-1126-456c-a783-e9ee45eb3824 1 Other Other +816ebef3-8b62-4af2-a7ed-30cb56743a45 1 Other Other +816ef820-3c54-45cc-98b1-21607dd99c86 1 Other Other +816f07c9-3f24-4dc4-9fcb-2a63789fa89b 1 Other Other +816f0d2a-6f13-42c9-88f1-6407fb54c085 1 Other Other +816f11f5-9653-4e9a-b682-cdb74989301b 1 Other Other +816f3994-e532-4de1-89d4-454483888e20 1 Other Other +816f69e8-d30e-4e1e-b9b7-afebb0ecb718 1 Other Other +816fcc6c-2c4e-49bd-aee8-6ca91015d669 1 Other Other +816ffd25-4130-4f1c-9949-78134793409f 1 Other Other +8170abbd-e16b-4e7f-abf4-940414a86fe9 1 Other Other +8170cd28-7a93-462d-bcfa-79d55beea1a3 1 Other Other +8170d555-ade2-4ff3-9e14-5ce5db4f5eb2 1 Other Other +8171461e-8518-42f1-9add-2345f7fe8e13 1 Other Other +817150d7-52d0-40fb-9e77-f13872292681 1 Other Other +81717555-907b-4b7e-b27a-a8340e83e8bd 1 Other Other +8171a089-af15-42b3-85af-80387ac3fc7a 1 Other Other +8172426b-7ea5-4f5d-8ef4-75db02161da1 1 Other Other +8172b7e3-ba61-45fd-ab93-ef091efe04a3 1 Other Other +8173012e-854a-4cb6-8775-b761aba9923f 1 Other Other +81732448-14a5-4f5c-bf8c-61635d87c3d3 1 Other Other +817360ee-2e3d-4210-b2a7-6119f04e331a 1 Other Other +817377bd-020c-4b7a-b091-d78a8da5d586 1 Other Other +81741803-9cfd-4660-8c97-6663aafe1f10 1 Other Other +81743cf1-bcb3-455d-b49f-a665e82f51c5 1 James Other +81744d6f-beb0-44e4-b04e-991f5e18ba5d 1 Other Other +81748b38-98f1-4c0d-a0b6-aa314acf50e7 1 Other Other +8174b89c-59a1-42bc-9c3c-28f6b9c4cb28 1 Other Other +8174dcb4-e8b4-41bb-81e4-d9c9c1b68699 1 Other Other +8174e963-17e4-4949-a3f3-9422e4742c1b 1 Other Other +8174f945-ee36-4e73-b7b0-847c28130971 1 Other Other +81752418-c13b-4b6c-ae6f-e2b2d52eb0c0 1 Other Other +817554e1-8a70-469f-8452-a33f3ccec488 1 Other Other +81756564-f49e-4bb3-813f-c695896731e6 1 Other Other +8175672d-5838-4e0b-a2d2-4d0c86829590 1 Other Other +81756eca-545f-48a4-9694-34b30c2a2b24 1 Other Other +817696e3-ecd6-46a5-a66e-d536f24cb67a 1 Other Other +8176b089-60ae-426a-bcae-4da9ab2d901b 1 Other Other +8176e249-e799-4707-943a-491aa73a10cc 1 Other Other +81774b21-5c7a-4873-8502-d3ad6420aae7 1 Other Other +81776f75-0ea7-441b-8faa-69e929f9989f 1 Other Other +81777486-5b4c-4e8b-afb6-ab6475c8ed48 1 Other Other +817819f8-773d-47cc-bd11-e5ca90d5d6ab 1 James Other +8178580e-d475-4fac-bc3f-259f1b296d27 1 Other Other +81787883-589a-4c26-b369-6b2fcd917c4e 1 Other Other +8178cbc7-f0d0-4a98-8465-b81bfe36da5e 1 Other Other +8178f15c-4a2d-4ea0-bf80-0b2701849a79 1 Other Other +81799e2e-7aae-467b-bf90-2242698359fb 1 Other Other +81799f49-c57c-4d46-9f92-b4ac9e4b0347 1 Other Other +8179c3ad-97a8-4ac0-af38-22d27015760b 1 Other Other +817ab52d-4490-4dff-94da-100a13da3076 1 Other Other +817b4ebd-f6a7-4a8c-8e5a-a691cee54288 1 Other Other +817b5fba-e1ae-45ce-a372-c10f1c8f0c0d 1 Other Other +817b7575-bf11-4b19-b149-e35680764f1c 1 Other Other +817bb4a1-efbc-41eb-a023-7b7686e2419a 1 Other Other +817bc14c-7c8c-4dcf-8792-787ebb43e680 1 Other Other +817bc5aa-2186-4cef-91bf-40717d8b472b 1 Other Other +817bd876-2ed2-4c17-8994-58741e3cceb7 1 Other Other +817bef26-d6d9-4e4d-a62b-b94ea3240f3c 1 Other Other +817c879f-918a-4437-a9be-2f95ca477d3c 1 Other Other +817c9fac-eb14-445b-bb3d-6bb9adb2d2a9 1 Other Other +817ccb36-79b5-45d9-8ff8-ea8bc3330a83 1 Other Other +817d41c8-ea55-4bf1-a2a9-7574089b8060 1 Other Other +817d9dfd-d150-4320-a766-7f5cb65cd1d9 1 Other Other +817df761-a9a9-4012-94ce-cc2a92378c62 1 Other Other +817e0961-c009-465b-bbbd-34558fc534d3 1 Other Other +817e1b65-e59c-4614-b053-2ec18671cdf2 1 Other Other +817e3685-fc67-4380-9014-6dc77bf07596 1 Other Other +817e510d-01aa-4ece-bff0-459561608ae9 1 Other Other +817e5f36-f1e3-446d-9fa3-7d505f441703 1 Other Other +817eb3eb-4697-4154-8aa5-fd41291507d0 1 Other Other +817ec466-5585-4564-b6a9-8eb89bf41e33 1 Other Other +817edca0-51a1-4f13-91b3-fcc8b1307cd5 1 Other Other +817f2b58-75fd-463f-93be-cb315bb3d0b5 1 Other Other +817f4606-393b-4cf5-86b6-535558c6e2b9 1 Other Other +817f549b-8a2e-4a05-aa61-83ba107e26ff 1 Other Other +817f5635-c67f-4cf4-99e7-6678d603fe0c 1 Other Other +817f624e-8732-4c1b-ba96-fd6324159ead 1 Other Other +817f6bb7-7af2-420d-a38a-38f020036489 1 Other Other +817f7222-ddaa-4888-8e9a-bb9fec03e41d 1 Other Other +817fbcd6-eced-48f2-8ae8-eed2e028e4d3 1 Other Other +817fcf40-0d3e-43a3-902c-1e88a96ee86f 1 Other Other +817fd934-657a-4606-8919-46802ec8d3dc 1 Other Other +817fdaf6-d3de-40c1-b43c-56c4892cc432 1 Other Other +81800396-91b1-435d-88b4-aae443502ec5 1 Other Other +818022ba-82a1-4dd1-a8a2-043870110f9e 1 Other Other +81803522-9bf6-4d51-afdb-6066e804e2ee 1 Other Other +818042c2-4220-4fed-b4dd-55d874bfeb5c 1 Other Other +818073cf-e888-4561-a663-08f2b260cf92 1 Other Other +81808be1-d856-48ba-ad67-101d5c308ab7 1 Other Other +818099d5-ff5a-47fc-a263-fb1f0a53988f 1 Other Other +8180a2cb-791a-4528-a39d-e5f7fbd15527 1 Other Other +81812dd7-6554-47be-8e52-71146dce8375 1 \N Other +81816141-4060-4528-afac-dbe07abdb12f 1 Other Other +81818ace-0e1d-4684-b991-cfdaf789796e 1 Other Other +818218f6-d218-419a-b953-306b82591e83 1 Other Other +81822533-9aff-4ab2-aafc-fea1382ff4d3 1 Other Other +81822737-0a34-4285-a7cd-914fa9068fae 1 Other Other +81829a47-0e64-4685-ba81-cc57315be70b 1 Other Other +8182e1d2-9802-4eac-a211-f46988d480d4 1 Other Other +81831798-25a6-4d17-badf-8a3422f91475 1 Other Other +81833d17-45ec-4e28-992f-4ad92a7c2c09 1 Other Other +81835023-76c1-43a6-a845-ba1fa37df406 1 Other Other +8183882f-ac58-4ae4-b3c5-76dde52c3b2c 1 James Other +8183c87f-1a03-4828-9201-62b815bd1719 1 Other Other +8183e345-0090-4b2c-a445-a975ea21bc93 1 Other Other +8183f134-e7e7-4acb-9140-c8943f3e28c6 1 Other Other +8183f81a-b02f-4552-90b7-b89471377350 1 \N Other +81843d09-b566-478e-9b1c-c1242509b16a 1 Other Other +818462b5-7ed3-492a-a17f-9571ff6c70b4 1 Other Other +81847541-6460-4409-9d85-c3c3a93eff3d 1 Other Other +81847712-36af-42a2-8f86-2431c0d02c98 1 Other Other +81847c32-6c0c-4ab3-b61b-807b9fcb00d4 1 Other Other +81848e7b-60b3-42cb-a9f4-06d41464db74 1 Other Other +81855116-395a-4bb0-90d5-a9b0f66e9b41 1 Other Other +8185de54-bb0b-4ef4-9c7f-ee2ffc76199a 1 Other Other +8185df57-d0b2-4c36-99ea-cb76dd49b624 1 James Other +8185f8fe-1312-431a-ae9c-a0082f730a93 1 Other Other +818626e4-f2ee-434a-b2a2-53b64dec1461 1 Other Other +818633d6-aec3-4d67-b8ff-356b0f8d69bc 1 Other Other +818634a4-c95b-4ca6-99ee-5b659e589f03 1 Other Other +81867a6a-c5c0-45a6-a2fd-9f4681f5e5f4 1 Other Other +8186866f-020b-4865-ad8d-81f59bd3c7b8 1 Other Other +8186b4e0-8660-4f15-a753-77effef1d322 1 Other Other +8186d394-8d6c-4432-964c-c6e70e1aad66 1 Other Other +8186e301-0281-4e4f-b68d-7dcc801add4d 1 Other Other +8186ecd0-c327-419f-af5c-a74ac0bcbcdf 1 Other Other +818711a5-92b4-41b6-a76e-c3b0ae33ddad 1 Other Other +81871c86-16f5-47bd-b881-951558388c57 1 Other Other +81873a9d-c328-43c1-a2ba-184c103d96de 1 Other Other +81876442-caaa-4c03-8981-5d7ae7449e0d 1 Other Other +8187b141-4fdc-42ad-bfd6-bd80a0d62e95 1 Other Other +8187e2eb-a042-4188-aa87-3d5293588aeb 1 Other Other +8187e5f9-a9a2-4a0f-9324-701d05530dc3 1 Other Other +81882b8e-8e95-4921-b9f2-2246b0374179 1 Other Other +81883d96-bc73-4fe3-b710-d9fa1f7cb81a 1 Other Other +8188713e-8f83-42e6-8423-24d517997006 1 Other Other +8188a936-cd8b-4e7f-a20e-8425f03f1861 1 Other Other +81890e79-2e64-4c74-8088-32bf524146f1 1 Other Other +8189224c-5412-44ef-96c3-4e21d245abcb 1 James Other +818946f4-bbb0-4038-bbd6-ad073bb77d76 1 Other Other +81896c6c-6a02-483e-8b46-852a47bf37f1 1 Other Other +8189a683-93be-4850-beba-23e5c333d31c 1 Other Other +8189cd0a-4525-4562-b61b-3e5744ae226f 1 Other Other +8189e36e-6cc4-42e2-87f0-70e86c25564a 1 Other Other +8189e950-7c32-4eb0-b6e4-0461946bee1f 1 Other Other +818a0b0d-6be7-42ad-a125-421b26eb2f27 1 Other Other +818a46b1-bc84-4e68-920c-88c9fdcd9954 1 Other Other +818a471e-5bad-4a53-9da0-b0f359e7c490 1 Other Other +818aaed4-e905-4a1d-8a79-c2e96911f8c3 1 Other Other +818ad186-a3bb-40e8-813d-edc46e5f9af7 1 Other Other +818ad7d4-9d74-48a9-8b6e-4551402e5312 1 Other Other +818ae64a-8e84-44b9-ae88-e9a6f9c8252e 1 Other Other +818af1bb-85d9-4cf5-bb2d-d758edbdf954 1 Other Other +818b0b4d-5131-42df-a3bc-6370a7b41ba6 1 Other Other +818b19e3-267d-48e8-b056-d448c924cfbe 1 Other Other +818b7924-7d7e-46ef-ba88-6a694cb149bd 1 Other Other +818b9ad5-79be-4ba9-a7a4-b92c9937f0ed 1 Other Other +818c302b-91a7-48f7-8baf-633ccacb06c5 1 Other Other +818c3845-fe86-4a92-a346-5a768569693c 1 Other Other +818c3c29-33e9-40e7-a078-ffa3a2de34b6 1 Other Other +818c6ebb-bb8f-4476-b98d-5ef57f03d616 1 Other Other +818c7ee0-ef78-4f4b-9b26-e5d84dc7a1ca 1 Other Other +818cb3a3-6d6a-4ccc-9108-fe4b65d55d4b 1 Other Other +818cca33-bd6d-4767-99b3-b8ca85622ef3 1 Other Other +818ccded-30dd-4e96-905d-3fe83f3f258d 1 Other Other +818cd603-e0cc-4a05-98f2-56b04610d150 1 Other Other +818ceefa-b3d2-4a8a-860d-208b7235480b 1 Other Other +818cf944-e97a-40a3-9d80-65566578026b 1 Other Other +818d117e-229b-4245-95e7-7f0376e17880 1 Other Other +818d13e5-4409-4201-a2a4-0ed40bd94b2d 1 Other Other +818e003f-85d2-4944-8d26-63ddb2568ad5 1 Other Other +818e13f3-6999-456d-b4d8-28472344ed45 1 Other Other +818e5241-2889-4f1b-a157-804b1fa68d73 1 Other Other +818e7310-f05e-48c8-ba9d-fbd5d708a538 1 Other Other +818e913c-e6a8-4bc4-a106-7d520997526d 1 Other Other +818e9460-2ad7-416b-ac87-170a94472f4f 1 Other Other +818eb1eb-9062-48f8-9584-e58d548a02bb 1 Other Other +818ebb75-734d-4f65-9b93-f8100bcefc7c 1 Other Other +818ebbe5-bdd6-44cf-9ec7-72a2d8825fd2 1 Other Other +818ef6fe-0dba-43a4-9da7-509768f60aaa 1 Other Other +818f17d7-c044-44ee-a3c5-19f98c247c0b 1 Other Other +818f24b3-66bf-4781-806b-4508c1989fbe 1 Other Other +818f74a8-ef26-48c9-9554-69bd7a76ccbc 1 Other Other +818f75d2-a53f-41ba-9804-4ae053701beb 1 Other Other +818f88d3-e5e6-4d6b-bb92-1283c62519e5 1 \N Other +818fa09a-78a2-40ca-b820-22b1653067e4 1 Other Other +818fa711-2698-43b6-b3ca-8ba6d5a90142 1 Other Other +818fb19b-5fd0-464d-b6fe-b35bae8feaf1 1 Other Other +818fb2c8-15d1-4904-878f-0dc573f1ac74 1 Other Other +818fdf0e-b870-403f-81ce-b3b8773d952d 1 Other Other +81901b95-9e80-41f8-99c1-4f7d5327e85b 1 Other Other +8190372d-e8ad-4092-9367-481ba4705a07 1 Other Other +8190616f-f368-4026-8e12-9a3a8bf97d63 1 Other Other +81908b95-a31d-439a-bc66-6944e36aee17 1 Other Other +819090d8-d718-4210-82ef-5a5bb20409ce 1 Other Other +81909680-8182-4cdc-8f71-1299115df1e4 1 Other Other +8191312c-ce10-4e06-93ca-233febac1c89 1 \N Other +81915a1e-a661-4205-9077-9ed5272c8d59 1 Other Other +81918f70-6282-42b0-8d10-0a43afe99738 1 Other Other +8191ac97-3421-436f-922d-e2e6d5449560 1 Other Other +8191b6f7-80c6-4e20-bf50-c61e82a4e743 1 Other Other +8191c3dc-f242-44ca-b949-ce6dc8f64999 1 Other Other +8191d231-444f-4d72-a142-c66c89528254 1 Other Other +8191d47f-78d7-4eba-8768-0f833302a44e 1 Other Other +8191df27-67a3-4d36-bdc5-c32261555e98 1 Other Other +8191fda9-5457-4f09-8095-3bc20f432096 1 Other Other +81921a8b-0b7b-4296-a9ad-51a94bbd3516 1 Other Other +819244f9-b3e8-4448-b058-c00d7f2b3249 1 Other Other +8192527b-c649-44d5-aa05-7ea72150c7e7 1 Other Other +8192750a-e1f7-48ad-b41b-9499ae99dcba 1 Other Other +81927d6f-c57e-42b8-8370-617be965b1ed 1 Other Other +819288b7-a672-4888-92fb-742511284858 1 Other Other +8192f270-d82b-442c-a101-03d45ca85edc 1 Other Other +81930b07-c247-4ad6-954d-699fca776b9b 1 Other Other +81941b0e-47cb-4cdb-9fe6-47b395b1be51 1 Other Other +819463e5-1a87-482a-bc7d-9bed14bd90a4 1 \N Other +819464e1-324c-4e54-b692-7359be7227ea 1 Other Other +819482dc-7e95-48bf-8ac4-6fbf5acabc43 1 Other Other +81949125-0131-4e45-b6c2-200b83ab6795 1 Other Other +8194cb9d-5ca5-4466-a571-fe38fcfa18a3 1 Other Other +81951feb-43a9-4437-a679-460c6d75f434 1 Other Other +8195233d-fbcc-4e5a-bf87-8bf360ba1e40 1 Other Other +81956972-42e2-4ab0-93ba-39d1926f236f 1 Other Other +819579a6-da64-42e8-b488-ac546dc81e53 1 Other Other +81958d6b-ce20-45c9-8bba-abef8a69761b 1 Other Other +819595b7-2079-4a0f-b657-5293cfcda768 1 Other Other +8195bbbd-c7d9-46c7-a32a-a5ef3e493307 1 Other Other +8195ed2e-8738-4268-8f79-0e5b2fe66c05 1 Other Other +81967296-113a-44df-b26a-06b55bc73680 1 Other Other +819694e2-d6eb-4c5c-a292-e445a146f7da 1 Other Other +8196ce6c-39e4-4cb0-a846-2b53143c6275 1 Other Other +8196e1e0-cf30-44b6-bfff-15081ac80ddf 1 Other Other +8196e5dc-711b-4854-a7c6-214a097c5250 1 Other Other +81973dc7-40e0-4c58-ac26-4f550605d0c9 1 Other Other +819749ec-31fd-49e1-afa1-0638aac336e1 1 Other Other +8197936f-7b32-45ee-879d-f70b5ea8d8b0 1 Other Other +8197fa50-aa46-4877-9604-a8c43cd3c05d 1 Other Other +81980594-931d-4fcd-913a-df085cc66f65 1 Other Other +81981c31-4401-4e93-86a8-d7eeb1880ea0 1 Other Other +819848ca-76bc-4ef3-b778-2f330a2ae58f 1 Other Other +8198bb91-0bd6-4bfb-800c-2dbc6440427f 1 Other Other +819912e4-b808-40af-9d25-0bcd1609071a 1 Other Other +81992a24-e761-44e9-a2cd-eda1ed839774 1 Other Other +81998a7d-938a-4817-9b91-9f9aeda8938a 1 Other Other +8199d42d-d2d0-443e-8026-31310a7e71ff 1 Other Other +8199d86a-81a0-4b7c-ab8b-b80670f59997 1 Other Other +819a1a8e-2546-4485-8880-a3e29346151a 1 Other Other +819a76e6-275f-463e-bb0e-ed8b2260f038 1 Other Other +819a83fb-5a80-4e60-88c1-f2357f9bf19e 1 Other Other +819ac8e3-04d7-4f00-95b5-4e68d14d7317 1 Other Other +819af98f-c973-43a6-b005-48f9e453c6e0 1 Other Other +819b418c-3f93-4441-ba87-2afdef83a014 1 Other Other +819c2a08-6bff-4d04-a414-1815d8efc772 1 Other Other +819c3dfc-0387-4bdf-b1de-2688d51644c4 1 Other Other +819c4f4a-e573-4a85-a6a0-f77d695af130 1 Other Other +819c4f7c-a514-496d-aa2f-954eedd1d0f5 1 Other Other +819c52cc-6f76-4fed-91e7-a8ae58d7ff63 1 Other Other +819c7bc1-69cc-49bb-8140-f800639b7439 1 Other Other +819d2b2e-178e-469b-a01b-5152ac2998e7 1 Other Other +819da36b-d593-4fee-85d2-13b23c87801c 1 Other Other +819dc402-4ee3-4f36-ac7e-8eed270b335c 1 Other Other +819dfd46-9062-4ccb-99c4-56fc5f196843 1 Other Other +819e87b1-2c10-4c1e-9f45-e8a4a5cca000 1 Other Other +819f32e1-4416-41e9-b239-7f541b22a7c1 1 Other Other +819f9328-7d8b-4684-b5e0-44c8c4cb8fd6 1 Other Other +819ff705-d24d-49ee-b6e2-b4c047589729 1 Other Other +81a031b5-733b-46e4-bbb5-fab775313086 1 Other Other +81a0c601-3c61-4bc3-94f8-d663ab945b9d 1 Other Other +81a0c871-98e2-4efc-a6f4-6bbafff4702b 1 Other Other +81a17ead-1914-4ec2-a44b-6342535ee317 1 Other Other +81a19b49-a2cd-48a2-b8e1-e2a3051c41c5 1 Other Other +81a1b7a7-20de-44dd-9d61-3dbd4b9a6b6d 1 Other Other +81a1d4e0-c99e-4cd7-8f8f-6c9061dccb66 1 Other Other +81a21677-dc6d-43cb-ad69-a7be0c7f9aa4 1 Other Other +81a22fce-a54c-4740-afae-02fc2c95391e 1 Other Other +81a23b13-b5fe-49ea-a82a-97ce7e603eae 1 Other Other +81a2c0bb-acf7-416c-af38-00118c1345e3 1 Other Other +81a2e7aa-dffd-4767-a24e-96feac463a08 1 Other Other +81a2fb14-db99-4d24-97a3-27b9e40ad3c5 1 Other Other +81a3043a-9561-42e4-92c0-9420dfbd1215 1 Other Other +81a3229b-7809-435f-b186-b0aa9c704b69 1 Other Other +81a3271c-dcd5-4ec2-b102-b9b4c2c775e6 1 Other Other +81a3c80d-fc84-4689-b8e6-d01b435205a8 1 Other Other +81a3c936-2295-42bd-b2c1-ca7feb891da7 1 Other Other +81a4017b-74fe-4c8e-913c-70ee94837f24 1 Other Other +81a48a06-c467-4487-85b7-2e517981d201 1 \N Other +81a48c11-645c-4344-8e40-a78917bbe632 1 Other Other +81a4e350-f04e-46cb-aa2c-f01f053a48dc 1 Other Other +81a59f74-47da-45a5-8108-0c8da2ad92a3 1 Other Other +81a5be8c-7ad1-4acd-b963-e8b09ac1443c 1 Other Other +81a61bdb-c718-4c37-97c6-20e128322c17 1 Other Other +81a68884-e123-4f6f-99fe-b914cd83e615 1 Other Other +81a6a361-8eac-46be-913b-1603f25c4569 1 Other Other +81a6ddd1-1d76-4e11-9286-c1000945fc08 1 Other Other +81a72196-ccdf-4576-925f-05f393edf54e 1 Other Other +81a7509b-d06a-405d-bbde-d62ae45ce0f8 1 Other Other +81a83e3c-3f01-4246-9034-1d2912ec9cc5 1 Other Other +81a8a940-9856-4155-8be7-2c8f453dc991 1 Other Other +81a8b3dd-855f-4ce7-9a72-8ac130d5f040 1 Other Other +81a8d9c6-77d7-4468-8131-9ac83df0bacd 1 Other Other +81a8ea39-aca6-4312-ada7-c8d77f945d39 1 Other Other +81a8f233-a2c8-4ea9-bbcd-67821fdcb247 1 Other Other +81a93811-3f9a-42cd-96b9-6df569380373 1 Other Other +81a96738-e36e-4b55-b53c-edfbcac81b79 1 Other Other +81a97596-2691-401d-b978-fe40b3007ffd 1 Other Other +81a9d6f3-3396-4f2c-b1f1-7701254d564a 1 Other Other +81aa0322-fdc3-4107-9e1e-439724ab909f 1 Other Other +81aa03a5-3fc1-4301-affe-415a57ff3b7b 1 Other Other +81aa043b-2b5b-4b68-bdff-b033eb053cce 1 Other Other +81aa3255-cb16-4485-a3fa-a571252f8917 1 Other Other +81aa532d-cdd5-4682-8484-41531cbd6d47 1 Other Other +81aab0bf-432f-4615-954d-ed4f00f50219 1 Other Other +81aae9dc-333c-4c63-8091-aff7593d28af 1 Other Other +81ab5641-e04d-4cfd-bd7b-8f42d0711e8c 1 Other Other +81ab5869-feae-4a17-beff-1e0ce010f18b 1 Other Other +81ab7dda-3ef9-426c-9f47-fc6789868d54 1 Other Other +81ab8ca5-4b1f-4932-926e-297c2b60689b 1 Other Other +81abad87-c6b9-4741-83f0-7d647d8e8414 1 Other Other +81abaf67-7f68-4aab-9634-eeb5ad6ca3d2 1 Other Other +81abd39c-6d2d-40db-a14c-9df375a580c8 1 Other Other +81abde5a-0119-4740-b322-6cda287a8944 1 Other Other +81abea83-fac3-4d52-94a8-4df942cf6edf 1 Other Other +81abfc9c-2f4a-4e34-a38a-e8de18f798bb 1 Other Other +81ac5535-2063-4ec0-8352-c21e2e295bd0 1 Other Other +81ac8d7d-7815-48ce-a1ef-c0f6dd54bb1b 1 Other Other +81ac9e2b-96d8-4ac3-b2fb-d9d9aea6d055 1 Other Other +81acf45a-4bec-4b1c-a88c-b2962be4a06c 1 Other Other +81ad0a46-65ec-4c7a-b527-c1ab089e8595 1 Other Other +81ad8c20-1c9f-444e-b666-a960ccb313d6 1 Other Other +81adabd8-f3ec-40e8-abcf-bc27d4fe9404 1 Other Other +81adc759-2089-4bbb-8ae3-589731524426 1 Other Other +81adcc36-0347-42df-8679-8280b4c1fae7 1 Other Other +81ade19d-984b-4666-a766-445ab2731260 1 Other Other +81ade5cc-097d-486d-907c-20fa83d5041a 1 Other Other +81ae1842-ff14-4eff-8474-035f946e49a0 1 Other Other +81ae7ac0-7839-4128-bd51-676de58a3c44 1 Other Other +81aee3b2-97ef-4f23-89f4-2bf94c73e792 1 Other Other +81aefb83-d2ae-4a44-bddd-8bcc0d1c6209 1 Other Other +81af6cfb-803b-4bc0-81e8-0aede8d4f5cc 1 Other Other +81af7c8d-4eb4-4b72-946f-0005eebb72df 1 \N Other +81af9242-c1f0-44ab-ac1f-a8d1591f39ad 1 Other Other +81afd676-5b59-43f5-bc41-2a18c58e604c 1 Other Other +81b03677-12b2-46fd-9104-e6ea7c0127bc 1 Other Other +81b04119-b206-42f7-8fbf-496797e9f97b 1 Other Other +81b041d4-c4b6-48e5-94ec-b7941bc553f8 1 Other Other +81b04ca3-429f-4812-8c92-dd34361a5330 1 Other Other +81b05f63-a95f-48c5-9f38-268f0603a7e7 1 \N Other +81b07ab9-344b-4188-bc91-804951f330e0 1 Other Other +81b0c8d9-35c8-417c-a2df-e69c41dc351e 1 Other Other +81b0d4cb-a203-4ef8-95d4-21aa6da9238c 1 Other Other +81b12a2f-e177-4d20-a501-51e2fd7e2d2b 1 Other Other +81b13175-0d0b-4147-8085-c304c1345549 1 Other Other +81b18f03-bed6-4126-8135-68825af56b4d 1 Other Other +81b1efa0-549b-4321-bc22-3dcdca8acb01 1 Other Other +81b20ed9-3ce5-46a5-83de-162bc6b24097 1 Other Other +81b21d67-1754-4f0a-85c5-9b9fd9337001 1 Other Other +81b24a4e-c236-4abe-a5f2-1b8e195b975c 1 Other Other +81b252e6-0738-40cb-9bfa-b558918f5fee 1 Other Other +81b2882f-69c9-448d-869a-64934783529a 1 Other Other +81b306a7-e48c-483b-a2e8-df84a8ecbcca 1 Other Other +81b349f0-0081-44f8-8cab-2207d5867a0f 1 Other Other +81b39ddf-1bfd-4ebc-9837-36f730b194e3 1 Other Other +81b3bafa-71e0-4b44-9c5b-7b69335bfa90 1 Other Other +81b40dc7-dd01-4c53-9dbe-6d8cb4e9094c 1 Other Other +81b4164e-65d0-4886-baaa-5cc10ab5180c 1 Other Other +81b497fd-101e-4e6a-be3f-b6e8edd44d13 1 Other Other +81b4ec1b-31d3-4074-9066-f3a2bc1de9d6 1 Other Other +81b541e4-0af7-41e9-8815-5b184210091c 1 Other Other +81b56751-1456-44b8-ab22-90ac2b0edc7c 1 Other Other +81b5e525-2a51-4603-bca4-3500d176782e 1 Other Other +81b618fd-52dc-477e-9680-8e014d454023 1 Other Other +81b643c3-f350-47d4-8311-b8ae70e6e0d3 1 Other Other +81b64c10-9b32-4ffa-bd19-26c5a7a846f4 1 Other Other +81b6536a-de9c-47f2-8a41-775141b4e983 1 \N Other +81b653f1-76e8-4e63-8e7e-4ddc2149821b 1 Other Other +81b671f1-caff-4de7-8c17-1c1c69e17afc 1 Other Other +81b676e7-77bf-4e01-9783-33136921a4ae 1 Other Other +81b67866-5a82-4f95-a7d0-2906cbb33404 1 Other Other +81b6790c-3196-4658-8dc4-12104b7f0fa5 1 James Other +81b69b02-f2b0-4c7f-878d-e295edc87fa3 1 Other Other +81b6a6e4-6d62-4d14-8e40-12390b12dff7 1 Other Other +81b7154f-3e73-420e-bc10-cd2585fbd679 1 Other Other +81b73551-e2db-4b37-92d8-e6d4cc9914a2 1 Other Other +81b77785-9b7e-4641-8274-8bd446ccaadc 1 Other Other +81b77820-3a6b-49a0-afaf-b83e36f30c5b 1 \N Other +81b7ce23-d7cf-4660-b9d0-e7cc7719c350 1 Other Other +81b858b4-325e-46c7-8baa-8d7f40aa4377 1 Other Other +81b8997c-22bf-4ade-b5aa-444d56b4466a 1 Other Other +81b902d5-da7d-4b34-9d23-5794e4e9010a 1 James Other +81b983fc-1236-403d-b209-4b49263cdf0c 1 Other Other +81b988c9-4b5c-4bff-b8b6-57237c432baa 1 Other Other +81b9b271-cfaa-47f3-8226-6832ab6ba385 1 Other Other +81b9fd14-d2a6-4a15-91fe-38a2c16ddfc0 1 Other Other +81ba2456-0b08-4fb8-a209-1f87a345ea36 1 Other Other +81ba28ea-2322-4981-b962-879649675447 1 Other Other +81babbcd-d7ae-472c-8fa3-ecdd2ca3098d 1 Other Other +81bac817-0abf-4a86-8fc7-f213a2bcdab9 1 Other Other +81bacf3f-8c7e-4884-b553-3d9a60bd009a 1 Other Other +81bae5a6-2d2d-4204-aeb7-25537054e0a5 1 Other Other +81bb31db-fd7c-4376-8471-9263ee1131ff 1 Other Other +81bb3223-d5b2-455a-8ee8-c2fe55e7f621 1 Other Other +81bb42f9-11c2-44af-b04f-d644050d03c1 1 Other Other +81bbb9bb-572c-4213-b66f-0e83c2470770 1 Other Other +81bbfee4-3450-488a-a7d0-2a693e9e55bb 1 Other Other +81bc34a1-03fc-4410-a408-f147529316f6 1 \N Other +81bc5750-e5e9-401b-bdf9-7fa0fe400833 1 Other Other +81bcf78c-7604-412c-ba8c-d100d40329e9 1 Other Other +81bd0eae-6aac-44fb-812d-10270c0b0ef3 1 Other Other +81bd3180-0e50-4ec4-9f54-d2ebe26656e0 1 Other Other +81bd3cd9-ea1e-4dec-82d6-ac00a436457e 1 Other Other +81bd82de-51ed-4ab1-8109-9fc0a93b351e 1 Other Other +81bd9d38-52ed-40de-a605-91935292c499 1 Other Other +81bdaa90-798d-4d73-8505-5446acfae277 1 Other Other +81bdc107-dee7-4e14-bb3c-594ac9524f1b 1 Other Other +81bdd75d-f7a5-42eb-b23a-eb2780d658a5 1 Other Other +81bdfe4d-56a8-44f7-88cc-9bb927e631d5 1 James Other +81be0289-106d-4356-ae0b-d82bc8ada619 1 Other Other +81be2a65-b986-411a-89f8-de8cf37f1e2b 1 Other Other +81be45f0-5059-473e-98f3-131bd7c87ac9 1 Other Other +81be7a03-c986-4f7b-9a2f-ba9ab3534796 1 Other Other +81be93b2-03dc-4094-b46a-e2f50fe30cf4 1 Other Other +81bec9bc-1b73-49da-a5f2-254e1c7af831 1 Other Other +81becbb9-4917-498e-bf61-d9df3b5b23f2 1 Other Other +81bf3be0-efc4-45f0-bcdc-e2131a73989c 1 Other Other +81bf653c-ecef-4105-bd6d-c98bdc817c1f 1 Other Other +81bf875d-4e4b-4097-bf18-581203e450a4 1 Other Other +81bf8d7e-b6ef-485f-8328-4f6c763de6b6 1 Other Other +81bfdbb9-1868-441e-8658-c04b8e067f54 1 James Other +81c01eaf-ae42-4d85-b57c-932c472b1ddc 1 Other Other +81c088ac-c8e9-4234-91a5-2e45266ea387 1 Other Other +81c16abb-31cd-4f66-b234-06e1b6826bf4 1 Other Other +81c1c3d5-d503-40b6-8833-ba0ba592b709 1 Other Other +81c1cdba-8b37-40bd-8f20-e63c5eb84bfb 1 Other Other +81c20434-f94c-4908-abc6-697f06280878 1 Other Other +81c2126a-0371-4103-9120-51820591acda 1 James Other +81c218d6-c35a-4814-8912-1f7f6e9455de 1 Other Other +81c261c7-04e9-4ab5-84b1-bf5085b2992f 1 Other Other +81c27b5a-2e4d-4c99-aadc-2ea74c381c7a 1 Other Other +81c2b6b0-07f9-456e-9ceb-9fd495cd56bb 1 Other Other +81c300c8-ea10-4180-bf33-149bc2bb5f87 1 Other Other +81c31e1b-a6bc-48f0-93ab-dcc4be412cfa 1 Other Other +81c33d0b-430d-4024-a67f-dc0b94afaf7d 1 Other Other +81c37ee0-0d8f-40fb-93b9-4d2cf41a3d9e 1 Other Other +81c38262-da93-4f34-9173-17aa67065e07 1 Other Other +81c3db9f-61dc-4ba9-876e-020c5dc52f3d 1 \N Other +81c4507f-4b9d-425e-8c46-da7bd64550bf 1 Other Other +81c45bf6-baf0-4363-ad1a-7a902641c971 1 Other Other +81c46364-e8c1-48d2-84e7-6340e64e2105 1 Other Other +81c47245-8922-4c10-8bc6-b44c3352685c 1 Other Other +81c47c5a-3e14-4330-9aab-c6629a0afca3 1 Other Other +81c49486-d26d-4caa-a242-39b91879aac9 1 Other Other +81c4c7ed-f5c9-4214-a162-084bdc6cb9f8 1 Other Other +81c4cbdb-267d-4bdb-8579-9ae3d1c8b8b0 1 Other Other +81c4dd18-3add-4c0d-9a57-f2c2556a0524 1 Other Other +81c50dfa-794c-4cee-b457-8bf0fb9caa70 1 Other Other +81c57bb3-bba5-4aa8-9805-73323b80d2e0 1 Other Other +81c596cf-7ca8-4548-905f-b982331b9c1c 1 Other Other +81c5ff39-a91a-46e7-95cc-fdce3e42127c 1 Other Other +81c5ff53-5743-4d44-a9df-1089300dc2cb 1 Other Other +81c6236b-73a1-4a16-8763-0bd15af3a343 1 Other Other +81c6879a-951e-4ac9-b472-aab45e0f9a82 1 Other Other +81c6a5d6-2dec-4d88-979e-31064af694df 1 Other Other +81c70c3c-20d3-446a-a3ee-df6d792536d0 1 Other Other +81c7421e-157a-4e23-ac94-a7dbe275e6a3 1 \N Other +81c77a00-149f-41f2-a143-59e7e38b89b8 1 Other Other +81c7a555-be3d-427b-beb2-4b5757d07e65 1 Other Other +81c7a8d4-0f53-4c8c-9b68-ad4bacfa414f 1 James Other +81c7d16b-6c5f-44f0-a7a0-a9eb0709f434 1 Other Other +81c861e5-07e9-4962-a3fb-0a6b5d401567 1 Other Other +81c8c222-5e57-45c3-be22-6fe9ac8da2bb 1 Other Other +81c8e627-5704-4742-a4da-659146db747c 1 Other Other +81c906ab-f717-4a4f-82eb-99f3fc4d702a 1 Other Other +81c927bb-2556-4910-ba8a-131af8c28fb6 1 Other Other +81c96824-26e7-4133-88c9-f5fc7b7279fc 1 Other Other +81c96bf0-b388-47a6-9d23-46348fe290ae 1 Other Other +81c9bb87-5fea-4fef-9a43-161ea6dc3b9e 1 Other Other +81c9f39f-78b7-45ef-8abb-b8c5dea0772b 1 Other Other +81c9f68e-a432-49b1-ae45-2d3e2a386826 1 Other Other +81ca1f5b-ac96-4c68-80da-b0b13aa61a92 1 \N Other +81ca3cf9-6ccc-498e-8037-bbfac749fc83 1 Other Other +81ca4d81-c579-49da-be8d-125a113380e0 1 Other Other +81ca983b-77fc-4e00-a041-a4fbc835b789 1 Other Other +81ca9bdf-2a17-46dd-a0c6-e809c053312e 1 Other Other +81cacf65-eac0-4a39-b45a-3c3ad366f704 1 Other Other +81cb47f4-4fc5-4716-9a57-c557d35ee112 1 \N Other +81cb9309-993f-498e-b21a-559474d032fb 1 Other Other +81cb9cdf-e28a-4f29-98b1-2a8887e7bc4e 1 Other Other +81cc3ebb-82e2-4831-a492-597eea1cef06 1 Other Other +81cd053c-5c69-4333-8ef3-161509572616 1 Other Other +81cd1009-40d7-491e-b785-d4399c61b475 1 Other Other +81cd2e2d-a48d-4697-ad87-e2755716dfea 1 Other Other +81cd3225-9fdf-4a22-a776-90cace083a7d 1 Other Other +81cd5f57-aa22-4d71-b14b-cec3068e3240 1 Other Other +81cd6793-13e9-4e99-8b6a-3260cbaba918 1 \N Other +81cd8b21-fd0c-4a6f-b0ed-a421a1a69a6b 1 Other Other +81cda4b7-3810-4667-8d1b-c3f246e385d5 1 Other Other +81cdbe79-f0e5-452c-ab0a-b31f0c157614 1 Other Other +81cdbf6c-23e6-4078-9a81-d3d188c40ab4 1 Other Other +81cdbf73-f0bf-4402-8370-b5f5680e2699 1 Other Other +81cdd277-826d-494b-b542-e1e474d8b043 1 Other Other +81cdfef5-61c3-4573-b1f1-2b651b38f509 1 James Other +81ce12a6-2dc7-4089-900e-acc5c666bfb2 1 Other Other +81ce6d29-5a8f-44dd-b9e6-fa6173123397 1 Other Other +81ce7953-dc18-4ae7-9b1e-bf639731d644 1 Other Other +81ced078-5065-4399-8cfe-492031ae2017 1 Other Other +81ced361-1f66-48cd-995e-8ac26e405b51 1 Other Other +81cf1c33-0ad6-4863-8ddd-d9acc6971e7f 1 Other Other +81cf4729-d344-4bf8-9023-22af732875f9 1 Other Other +81cf4862-b32d-42bf-bd12-e7de8a791fac 1 \N Other +81cf93c9-c46e-4c0b-9a40-d7028ab1cb2f 1 Other Other +81cfc552-25dc-4430-bd91-b04df9803422 1 Other Other +81cfd23b-ac27-49a4-9ff0-2215632011ae 1 Other Other +81d00fee-0f79-4e22-bae4-2e51247ee50e 1 Other Other +81d0bb87-3fe1-4707-a1a6-7d56b9ef1532 1 Other Other +81d0e258-06af-405b-9fe7-d9c7f8f6a01f 1 Other Other +81d12df9-58c1-415c-bedf-280dd9968ef8 1 Other Other +81d16c96-8229-41d0-a22e-0181a9482b2e 1 Other Other +81d17532-316e-4243-8a1e-d4480da1d439 1 Other Other +81d23495-e313-4c05-8e7d-db0a0add169d 1 Other Other +81d24260-40b8-4c15-b746-7fb249c680b0 1 Other Other +81d314cf-8a8f-4181-b135-9ee1dcd6c1d7 1 Other Other +81d387f4-7009-48bf-a30e-7de6734b6e50 1 Other Other +81d388f4-611a-40a4-9a44-f120cb26cb1b 1 Other Other +81d3ac0d-f5b4-4631-8499-37c9c52e05ce 1 Other Other +81d3cfba-0565-4f1d-b50a-1de947285fd1 1 Other Other +81d41bbc-1892-4b49-af70-e40c87299492 1 Other Other +81d46d12-2423-4dcc-bb8c-7144a700bfad 1 Other Other +81d48b82-ed5d-438f-9b9d-6cfe618360fb 1 Other Other +81d4fce9-f83d-4045-833a-6e134dfe7766 1 Other Other +81d53ae4-e8f1-4668-a2b9-ea788fc79f3a 1 Other Other +81d59fb0-451e-446a-b73e-c1736fad0c46 1 Other Other +81d59ff8-b087-4e0f-bfb4-e412db641b6f 1 Other Other +81d5e33b-87a0-4685-a418-dfe8efb0b9d7 1 Other Other +81d62df5-29ee-4e9b-a5f1-ab85405c1771 1 Other Other +81d692d6-46e1-4b98-b50c-c4e1141e5038 1 Other Other +81d69e5a-be06-49c4-a84e-84c0a2a612f2 1 Other Other +81d6ed3d-8e13-445e-9738-35236ac68298 1 Other Other +81d6f4c1-0339-412c-9db8-39d82e79016b 1 Other Other +81d72d56-f812-4a8f-8649-7b020d76006c 1 Other Other +81d73c97-7574-41a2-8668-fd65602cfe2b 1 Other Other +81d77558-dd35-480c-9050-b3682f3a045c 1 Other Other +81d7cf8b-2e1c-4a30-91a1-2a76c76337bf 1 Other Other +81d83ee6-7fec-4ee2-a8c0-c3ab94df956b 1 Other Other +81d8668b-570c-4cde-9565-e991c7df2913 1 Other Other +81d8b2b7-dcad-4854-8c5a-c93aa7020c10 1 Other Other +81d8d09f-b462-4c45-a108-3b8a83d6590a 1 Other Other +81d912d1-9226-46a4-b4a3-3026e25cc3ab 1 Other Other +81d92d3d-bd23-41e0-ba4d-6d722166f6f2 1 Other Other +81d95f56-6258-4857-981d-6b059e84e40d 1 Other Other +81d9998d-af75-4bf3-9c02-880774a9897b 1 Other Other +81d99ef5-c7fc-44a6-87da-d2520e925416 1 Other Other +81da0dcd-25d0-47de-bbc4-96127a55bed7 1 Other Other +81da9a8c-85fa-45f1-b667-410b79d8f352 1 Other Other +81db03b9-8e66-48cb-a288-b98c63d2e027 1 Other Other +81db30b1-5284-459f-aa1b-413cdbcc76e7 1 Other Other +81db5d5c-78b9-4845-9b07-8d94855bef44 1 Other Other +81dbf741-ed54-4bf7-b68b-d168acaa1da7 1 Other Other +81dbf933-5430-4232-8eef-7c38dd68ff1b 1 Other Other +81dbfecd-dea1-458e-8d70-20bd52213bcb 1 Other Other +81dc04b4-c9de-439b-8bc9-eb0d01f2f850 1 Other Other +81dc09d1-183c-487a-b1b8-a26db82cfa0b 1 Other Other +81dc1df4-03cb-40b2-90d1-b1d252c1516f 1 Other Other +81dc31a7-1659-4f05-82b4-822c2ad29be8 1 Other Other +81dc5afc-347e-44ef-9eac-f17334b3a4cd 1 Other Other +81dc7bbe-bf45-4b1a-8f3b-a29078c4fd30 1 Other Other +81dc8325-891f-47ac-9311-49852ac5600c 1 \N Other +81dc84e5-5c65-4118-85ff-ec98bee3f92f 1 \N Other +81dcb266-e5a9-44a3-9a82-8372382b5a79 1 Other Other +81dd1153-42c6-4df9-995e-17c20b8ad216 1 Other Other +81dd19d1-48da-48c5-a2a5-11b033a8c8c1 1 Other Other +81dd3840-d244-438e-8f4f-52a4a5803c2b 1 Other Other +81dd884c-cbc4-4871-a9bb-f19bcbf92482 1 Other Other +81de16f8-45c3-4d2a-9570-ad03bd6068c6 1 Other Other +81de46c0-dd1e-4dd5-802e-81cff0126784 1 Other Other +81de89be-62e3-4fea-87ef-162b0fa93060 1 Other Other +81def75a-9e59-4960-b48f-1c663d912e8d 1 Other Other +81df14be-5c9e-41a0-b7ed-1570a9073a6d 1 Other Other +81df3813-0fd1-4b94-94f7-c6b0114d5613 1 Other Other +81df52e6-45a0-4561-89dc-9645404c4d00 1 Other Other +81df84c8-00fb-4a71-aba0-8684e817a40d 1 Other Other +81dfbaaa-cf15-4098-9956-cd5f703d6e0f 1 \N Other +81dff15f-4b43-479f-91c2-3b9de9acb853 1 Other Other +81e003c9-ff8e-4f55-9269-597a8dbcf51d 1 Other Other +81e025ca-5d40-4330-850f-3d08345515e4 1 Other Other +81e026f7-b9db-45f2-842f-b03c1e420f35 1 Other Other +81e06410-06dc-4b01-baa3-44a61458b8fb 1 Other Other +81e06b3b-b7f9-4e0b-9ab2-c73cba1bffea 1 Other Other +81e0743a-8619-44b2-9365-67a8de305cc6 1 Other Other +81e08825-0d71-4355-8f06-c7d85eccd5ab 1 \N Other +81e0a61e-e2f1-4ffc-92d3-63500678524f 1 Other Other +81e0af47-a5f0-4cc8-8f9d-13778b169619 1 James Other +81e0c6f3-f69f-473b-9ced-b63771163cac 1 \N Other +81e0c7a8-fc77-40a0-949c-2ea6ab2147b2 1 Other Other +81e0dd10-4ac0-4e0e-b4f9-c1a667caede1 1 Other Other +81e1318a-affb-4f3b-a1f0-cfaf74684cf9 1 Other Other +81e14320-28a4-4e1e-91bf-36e3e994353c 1 Other Other +81e1559d-9841-40d8-b3d9-091cad9b1cce 1 Other Other +81e17fe0-d0c0-4f96-adc7-c4272e7d4a4c 1 Other Other +81e1cd66-c6ff-406c-b668-dd566e42863c 1 Other Other +81e242d6-46f8-4c52-abd8-441d58ba0d81 1 Other Other +81e2a6fe-a996-4a05-a2bf-9d481241186e 1 Other Other +81e2aebd-b9bf-4b33-a321-654fa7c3d003 1 Other Other +81e2b6f3-a791-4a7a-9efe-e869d2085f9a 1 Other Other +81e2e6b0-7430-4b91-87ac-2e5c0c7ef3b6 1 Other Other +81e2fd9c-f562-4bea-b942-b5b0b17f3054 1 Other Other +81e31951-5224-432c-9bc1-adaa6f990460 1 Other Other +81e32c93-c1d0-48e6-8534-b3127a6b8770 1 Other Other +81e32e19-63cf-4703-befd-2614c8e132a0 1 Other Other +81e335b0-cc5e-48f7-81aa-ba77c979d601 1 Other Other +81e34b36-3148-47dc-acfe-727609300d39 1 Other Other +81e37ac0-1f4a-4997-a459-5a0a4468a658 1 Other Other +81e40491-95d7-43c9-8607-6515abce55f1 1 Other Other +81e426e0-c2e0-4171-9f04-598c24fdbae8 1 Other Other +81e4f30b-b2dc-4e50-af40-fde2d7548b60 1 Other Other +81e510a6-cef3-4c0b-9377-a47ad85131d8 1 Other Other +81e51ee4-d680-11e7-9961-fa163e8624cc 1274fc8c-64ed-11e7-ab3f-fa163e4dd901 Other Other +81e52694-0548-48ec-9bba-2578f0eefd1e 1 Other Other +81e55b6b-ad52-4b04-9c2f-51110bc6f9de 1 \N Other +81e57d27-06b6-4d1a-a48d-684f5fdeee66 1 Other Other +81e5c5e5-dd8d-436e-a775-ae8bd76c0b6d 1 Other Other +81e5cff4-9f76-4519-99a9-6d8a10bd5198 1 \N Other +81e681a2-8023-4ca8-a99d-db564f56033c 1 Other Other +81e6a422-c7e5-4a14-8837-03e6fe7f915d 1 Other Other +81e6d1c0-2399-4f4e-9b7d-853751fc325a 1 Other Other +81e6eaaa-2246-4648-8ed2-7b4f54a6de35 1 Other Other +81e6f0e8-44a2-4e20-be38-61c4ea219b64 1 Other Other +81e71615-7e30-4383-970b-424c4a330a1e 1 Other Other +81e7295b-ee6e-4cd0-a747-83a4668f0f7b 1 Other Other +81e74098-b6fb-4669-b8b4-388e721c272c 1 Other Other +81e7c5a4-4d3a-4d7d-8b03-f53d0f63b64f 1 Other Other +81e7d0b9-81a1-4a02-8106-af9eb0f9e386 1 Other Other +81e7d510-46a7-43e9-8be9-5ff3fc36e14b 1 Other Other +81e87b42-39b9-4d1c-8aba-83cbc084d943 1 Other Other +81e87bb7-cc22-4928-b7fb-01e9c8bb4102 1 Other Other +81e8a2bc-5413-44af-bc0b-1ac631ac0070 1 Other Other +81e8f14c-c0af-4fb2-95e8-883b76197944 1 \N Other +81e90ad7-8ac6-462e-bb1e-1e8e707e6d91 1 Other Other +81e99cb6-dcbc-49a3-882e-b619268081f6 1 Other Other +81e9c280-8787-4161-a2f7-f06d801a3d2b 1 Other Other +81e9e36d-dbae-435e-9e08-7952721dee6a 1 Other Other +81e9e917-4c4d-4ac7-a159-83cc3ffc35b1 1 Other Other +81e9fbd3-909c-42de-944a-71be24b15287 1 \N Other +81ea00f8-9a68-4fa2-afbd-5080ea560941 1 Other Other +81ea1ce6-330d-4e36-b154-44423d4a2106 1 Other Other +81ea1e34-6380-4163-a11b-77c9996993e6 1 Other Other +81ea60d2-f2fe-42d2-ac38-74a8387fae92 1 Other Other +81ea66b0-e3df-4974-aca6-985dc8f7d6b4 1 Other Other +81eae2b2-e2c2-483e-a180-04a6bc2b8a54 1 Other Other +81eb4105-8d95-4770-a322-c50f40e45f11 1 Other Other +81eb57c4-6430-42a3-a1af-673d0e5784a5 1 Other Other +81eb9e00-2606-4964-b030-66b0c11938e7 1 Other Other +81ebf274-7abf-4880-b29b-ba9dfe59014f 1 Other Other +81ec5a7e-a885-402f-acbe-b452e8d990cd 1 Other Other +81ec5e37-7502-4307-910a-845b30a438ba 1 Other Other +81ec850b-ecf4-47b9-b07c-3f90e4c44e67 1 Other Other +81ec9290-c573-4cb0-963a-2a7607a75df7 1 Other Other +81ecba4a-cca4-450c-ace5-01321f0daee4 1 Other Other +81ece02b-cd78-4816-9935-867a33a46009 1 Other Other +81ed5971-260d-4a36-906b-dd9b00000557 1 \N Other +81ed9a7f-5c43-43a6-8303-c95f02e749e6 1 Other Other +81ee5ea4-775f-4142-8a8c-fcc46d8b9c2e 1 Other Other +81ee687d-cbaa-421f-9c11-01664754a91b 1 Other Other +81eedfd4-c022-4b16-8081-192557737dae 1 Other Other +81ef0543-31dd-4acb-b677-62d03a9df121 1 \N Other +81ef4eed-5eee-46d4-8ea8-4ec0855eab05 1 Other Other +81efae35-bdf4-4f0c-8b3a-bfb644ca8f82 1 Other Other +81efbdcb-3b0b-482a-8ce5-dbad61ecdceb 1 Other Other +81efcc76-5bf7-41ed-9a1f-4609cbd85b67 1 Other Other +81efeaa6-45bb-4c49-8485-61f67de5d4c2 1 Other Other +81eff781-b2f8-49f4-ae9f-d11648c70e15 1 Other Other +81f01255-26c6-4636-ae9b-032117f0a990 1 Other Other +81f086b2-fbf0-46f4-a448-dc7efaaa30a4 1 Other Other +81f0924d-e830-4cf3-ba11-64d8edfc47e0 1 Other Other +81f09aef-9426-48c1-8b8b-766799af8515 1 Other Other +81f0abec-e3cd-40b1-93e3-ed8745e9eb80 1 Other Other +81f0b575-f000-407c-affe-e4d6fb74d06e 1 Other Other +81f1866f-7646-4082-a5ce-b28d15f5dccc 1 Other Other +81f1a620-0a86-4751-a7ae-609088ceacf9 1 Other Other +81f1ef3a-e79a-4dfd-8005-c03e4681850a 1 Other Other +81f1fc5c-a9d4-4abc-a46c-2e6cf2aab108 1 Other Other +81f223f0-2ee5-41a5-8fc6-df2689c6010b 1 Other Other +81f2c3d4-d5f3-45b6-b9a2-8882121a28b6 1 Other Other +81f2d4f6-4203-4a3c-81ac-8c2007eace39 1 Other Other +81f3050d-9b9d-4f60-a5bb-dd10f040a657 1 Other Other +81f33621-576c-432e-8e5d-1da9570ccd64 1 \N Other +81f336c6-f55c-4aca-a561-bcefce8e7e8a 1 Other Other +81f33fe8-15dc-4510-8949-20af3c32614f 1 Other Other +81f383c8-b391-4df9-9292-e4457de98636 1 Other Other +81f392af-70ab-4729-bb3b-7c28e8bca333 1 Other Other +81f43084-3676-4668-8eca-3386456d639d 1 Other Other +81f43cbf-6c35-4ac2-988d-234a592d449c 1 Other Other +81f4763e-1bf4-4c7c-a3b3-f50603c35f87 1 Other Other +81f477ad-73eb-4db2-8028-b9d8349efd2b 1 Other Other +81f4b8e2-650e-486d-a0c4-0dbb0ad972ab 1 Other Other +81f4db06-185a-41fe-a00c-8a26273e950a 1 Other Other +81f5067c-4970-4fce-8f27-5c5891e54077 1 Other Other +81f53e05-a7c7-420c-9d44-cd2ba4cffdb4 1 Other Other +81f5438c-d033-4245-bada-b5ceb61d12b0 1 Other Other +81f54a2a-dd05-410f-9cf2-2ea173a31fbb 1 Other Other +81f56d10-e03c-456f-b561-032b35cdfae3 1 Other Other +81f57ebf-d12e-41cc-bbe8-1fdd8030b200 1 Other Other +81f5a526-491f-49e8-8169-092111b59320 1 Other Other +81f5d363-e3d5-42b3-b2d0-9f1557cb239b 1 Other Other +81f5d7d9-2f25-4a30-83ca-54f17a6575d5 1 Other Other +81f5dd6f-2cd8-42b6-adf7-d4dc3b161529 1 Other Other +81f5de34-afa4-43ce-8bce-c4e809af4d1f 1 Other Other +81f63dfb-9aa5-407d-918b-392626fd99bf 1 Other Other +81f653e2-686b-4566-928c-0501aa056c26 1 Other Other +81f68335-a41d-42b8-8957-44b0aa083215 1 Other Other +81f69d30-5d4d-4e5f-b602-7bb1322bdb10 1 Other Other +81f6a2bd-a901-42dd-a291-b5caa08508a5 1 Other Other +81f6ba9e-6ed9-4067-900d-2c768263b554 1 Other Other +81f76356-4854-402b-8acc-48bf60edfdb8 1 Other Other +81f7764b-6b00-4dce-8c77-571b4e353443 1 Other Other +81f79a08-05c2-4d50-ab8b-7ba8f268b90d 1 Other Other +81f7d369-3669-4b44-95e5-0ee86edac265 1 Other Other +81f7e58e-74c9-4b8f-97eb-554558f2a868 1 Other Other +81f826e6-f2b8-422a-a5b8-ae0fa8e0c485 1 Other Other +81f8565c-3752-499d-aa71-adb24a45fb7e 1 Other Other +81f8a897-be82-4828-82fa-12f732570ef8 1 Other Other +81f8aec3-d6e5-4a24-80b8-9dd818001f2a 1 Other Other +81f8d806-9bc0-4205-b7b6-2a80cda7672b 1 Other Other +81f906b8-221e-4210-a3b6-0e432d25c522 1 Other Other +81f90a02-a331-4941-b77a-944c93f4a7d9 1 Other Other +81f926f3-eb18-4706-93d0-2d21644d8394 1 \N Other +81f93747-675d-403b-845e-ace337d7e27b 1 Other Other +81f988e9-6f02-4b84-a346-b1f1f312ad49 1 Other Other +81f9aad9-66b6-4833-b61f-0d106785c1e9 1 Other Other +81f9b3bf-b425-4226-a0e0-616e3ecf8836 1 Other Other +81f9f1d4-30ad-441f-bb9f-9de501f3925e 1 James Other +81f9f245-a053-48b4-ac56-285006bf7c21 1 Other Other +81fa3a12-1972-4b85-9ead-d6b491469bdf 1 Other Other +81fa51eb-dc8e-4a25-a83c-e92aee40842d 1 Other Other +81fa61b7-3294-4fed-9f33-650d8249b5f9 1 Other Other +81fa73d9-3cb6-4cee-9341-3272861a5a1c 1 Other Other +81fa8e08-ab85-458d-b7f3-bde71d7f4fe0 1 Other Other +81fa957c-ed8e-446c-8599-5c709652fc85 1 Other Other +81fac46e-e604-4106-b9e0-95537c901349 1 Other Other +81fad714-5a1e-42b6-b78a-3009e5045184 1 Other Other +81fb0aa7-4470-45d4-898f-b528d2ce3114 1 Other Other +81fb234e-2de9-4882-a52c-4ad4a1fc01e9 1 Other Other +81fb5394-50c8-479c-9f6e-331d426f54e6 1 Other Other +81fb92aa-61e6-43ba-8421-f091a5df1260 1 Other Other +81fba931-d78b-4822-b110-1bc632becfb1 1 Other Other +81fbb0a1-fb82-436a-a137-c420e44a01ae 1 Other Other +81fbc7eb-949b-4bc8-a34d-c4f5f5550fe9 1 Other Other +81fbf2c7-d3a0-4fc9-9b04-bb53f42ddb50 1 Other Other +81fc230c-dca5-459f-8c13-7626d80a02d3 1 Other Other +81fccf7d-6870-485d-af1b-fb8f76dc0b6c 1 Other Other +81fd4e2f-a6ea-4c2d-8d82-e5cbe011b42f 1 Other Other +81fdc019-223d-4691-a5ac-f00ef2dffe5d 1 Other Other +81fdce94-a35f-4e4d-b8f4-dced818347b7 1 Other Other +81fdec3a-0865-4df7-97f7-4ea2a40bf179 1 Other Other +81fdef9d-be9e-4655-8fdf-d14fc9234c90 1 Other Other +81fe2492-7c5b-433a-81c9-4e0f9542310f 1 Other Other +81fe30c2-86c3-4582-b43a-c19f71e6369f 1 Other Other +81fe4818-1d83-4405-a397-af87e0454fce 1 Other Other +81fe62ab-d678-430c-9d77-61b94ae04105 1 Other Other +81fe74e0-8927-4151-aacb-6f0ac32f5575 1 Other Other +81fe8490-779a-4b51-84a5-18d01a9c8663 1 Other Other +81fe87ee-0d5e-4300-a433-1ab87512e805 1 Other Other +81febf5f-0cd8-4cf1-9790-88fd6b869640 1 Other Other +81ff3aad-e063-4933-a53a-89cf91f54f10 1 Other Other +81ff96ee-f04b-4982-ad0e-60aaf9b143b0 1 Other Other +81ffd299-a304-4819-826f-a355a8df3d5d 1 Other Other +81ffd803-5b4e-45da-a3b6-150132df45e7 1 Other Other +81fffed3-89f6-4ac4-a180-24c073097605 1 Other Other +82001f18-c9a4-4985-acc9-f1de1368dd65 1 Other Other +82004659-10fd-4a9e-97fd-0a1f257eaefd 1 Other Other +8200b70c-2c9d-465a-8ac2-1427dac3a0f6 1 Other Other +8200e2b5-f507-422d-92ad-2e74ead3b420 1 Other Other +820101be-8957-4392-bb0e-a1cf0090bf2b 1 Other Other +8201037b-3248-4616-ab06-5f297a6fb9c5 1 Other Other +8201285d-4c98-4674-a0b8-57fdd85875be 1 Other Other +82017897-2839-46bc-87cd-47d526914171 1 Other Other +8201c4fb-efb4-423d-962b-2d040fcd1cbf 1 Other Other +8201ce7b-3337-419f-8ebd-fce9c36f18a8 1 Other Other +8201fe06-bb8f-4685-8865-d0dfd6b10e33 1 Other Other +82020579-bbfb-480a-89f0-cfac39e01bfb 1 Other Other +82023c40-46f5-4dcc-bbce-bc52065842ae 1 Other Other +82024453-217a-489f-8ee5-aa2643c75aea 1 Other Other +82024d98-2d65-48d5-8e56-83b2d852b156 1 Other Other +820259ae-a74e-47fd-95e8-683d7c34eb41 1 Other Other +82027b10-fe5c-4f68-ae07-c0cbe2566c82 1 Other Other +8202b49a-258d-4792-ad2a-a1d365010438 1 Other Other +8202d44c-fbf9-4256-944b-0647486400be 1 Other Other +820369c8-6e2e-40c4-9665-10edd9d69eed 1 Other Other +820385b5-e2a0-49dd-8810-230f00ab1f3d 1 Other Other +8203969f-fe57-4d2c-9aeb-eaaeb9c38939 1 Other Other +82039f6f-56cb-457d-a206-e25845ed584a 1 Other Other +8203d319-77dc-42db-8f5d-3f9ded607dc3 1 Other Other +8203d6cf-7337-4bf2-a609-6ca80b2e88b1 1 Other Other +8203e64a-7ead-4e94-af07-8b14331c6593 1 Other Other +82041c39-82f3-4125-b4d8-5c9847db919b 1 Other Other +82044260-de3e-46c5-b061-18fbd99fca9f 1 Other Other +8204446d-d84d-463b-b9ee-4abc102ccb52 1 Other Other +8204c1be-ecc3-45e3-92cb-9237c065c1e8 1 Other Other +82055581-df40-4ebb-a7fe-8b671298eb76 1 Other Other +8205586f-cf33-4183-895e-bb3c4fdca1a7 1 Other Other +8205780f-77f6-44b6-b2f2-e26753c06f35 1 Other Other +82059469-2eb4-430c-b5c9-a94a5adc4ce8 1 \N Other +8205a4be-661b-4eaa-aaf4-6dde44701ddf 1 Other Other +8205a85a-e635-4a5c-938d-366a4d9e3eb0 1 Other Other +8205d211-d5d7-411a-bb9c-e9bdbfba8bfc 1 Other Other +820632e5-da73-4179-a886-bc21206f05c7 1 Other Other +82064bc2-c95c-406a-b248-1d2e2925a1c0 1 Other Other +820663fc-45d5-4dcb-9675-193d633a4802 1 Other Other +820668b0-d52d-4b00-874c-9bdcbd683072 1 Other Other +8206a735-c0b2-467c-9155-0bb34085d484 1 Other Other +8206ef28-a20a-4225-8774-504c873d5a78 1 Other Other +8208058d-78dc-4c7c-96a9-6d6b1985cfa4 1 Other Other +82081360-b8b5-4a02-9b5f-84f0972b62a0 1 Other Other +82088f28-4b3a-47b5-bdf5-c8e5a70fe020 1 Other Other +8208a74f-cde9-4d62-bd30-4dc2aa6c7a67 1 Other Other +8208c6bb-9246-465f-a428-3fb3471218f2 1 Other Other +8208f555-a607-4804-bdfd-65d89bccf980 1 Other Other +82091589-414d-4200-af60-2586260adff0 1 Other Other +82092b13-cbb8-43d4-b8a9-ea05615ab414 1 Other Other +82092d5f-dfee-44b1-a789-f2cd7c613801 1 Other Other +820940ef-5588-47fa-b71a-c680cfa9862d 1 Other Other +8209593f-d1ef-4ca6-91de-d0743a0b5e13 1 Other Other +820a42c4-05f8-44fb-9ed7-b47f3ebc1c3d 1 Other Other +820a7a4a-7c92-47e3-9fc3-6c4cd85ea929 1 Other Other +820a7f5d-b3fe-4827-8cde-3ff612d777af 1 Other Other +820a95e3-f66a-4289-ac44-477d8e6dba50 1 Other Other +820ae03a-5a29-485d-9b4f-0b644abd5e12 1 Other Other +820b1c01-b856-48e4-9697-3299d28c6c24 1 Other Other +820b2cba-ecee-4c42-a6c1-2e1e488e27c0 1 Other Other +820b8923-9f4f-46fc-9f84-bbd839fffd4a 1 Other Other +820bf8da-37b3-425e-94ff-662b06a3438e 1 Other Other +820bfe17-7b50-4233-9c83-07a006cad0da 1 Other Other +820c3230-e880-4ff2-b4d9-d65b3ff088c8 1 Other Other +820cd948-5af4-4271-b433-11faef5f7f72 1 Other Other +820ce79d-ca06-4290-87f7-5c65a8637d48 1 Other Other +820cf440-dc0d-4d6b-8ce6-bc069eed9cb8 1 Other Other +820d87d9-0118-4154-a222-ef05a45da959 1 Other Other +820d9ee6-bc02-44ec-ae81-3e0b772652f1 1 Other Other +820e3c58-bbe1-4d7f-a8c7-95e9f724afd8 1 Other Other +820e4329-44e9-4468-a1de-ea4d6ec8af0e 1 Other Other +820e6944-98d7-4fe3-885e-250796a2b1d7 1 Other Other +820eac48-246f-43fe-8928-049789db4f34 1 Other Other +820ef77a-7b4a-41fa-b5cd-1055264b8cee 1 Other Other +820f2748-4027-4596-90e4-38a9401be4d8 1 Other Other +820f42d5-a494-40c4-bdc4-1eba2c159e5c 1 Other Other +82102d5a-4bf3-4dab-b24a-cb40cfe117fa 1 Other Other +82104041-4b2c-4b28-aa27-f509e773d8c1 1 Other Other +82108a8c-3a9f-40c9-a984-429e48790da4 1 Other Other +8210bc2c-f1c1-4719-9e21-266b5f9674dc 1 Other Other +8210fb8b-5ded-465e-8935-087bd88625ce 1 Other Other +82110042-bbe7-4923-b988-5975e4615b51 1 Other Other +82110dbf-3804-4c84-b3a4-5ec1f0fcdff8 1 Other Other +82111d35-094a-4a00-9aef-b1347b5cf5ed 1 Other Other +82114f31-481c-4794-a357-2e818a600714 1 Other Other +82119674-3464-4749-b4be-a25ae1267c36 1 \N Other +8211a8ea-1af7-4888-9500-d6723ded9225 1 Other Other +82128d40-ff0f-4ca7-9322-b6c37db52d6d 1 Other Other +82128f82-f637-4d88-8b08-05926f153062 1 Other Other +82130954-b636-48c2-8bea-8f6701b1833b 1 Other Other +82137f81-1835-4403-a6f1-ce4ee3e827c2 1 Other Other +82139e16-2984-49f4-9b0e-7a7e712242ad 1 Other Other +82141eaf-7767-4377-80f2-a4347c266bae 1 Other Other +82146423-c6d0-41cd-8bc5-3ea35d318b59 1 Other Other +82148196-fe17-4b04-9651-12d14ab9d81f 1 Other Other +8215222b-7d3c-406b-b359-80ccf35d46c9 1 Other Other +82154187-c1bf-45eb-be09-9451468daa43 1 Other Other +821597d8-8acd-4af6-afc0-27675078de5a 1 Other Other +8215d607-1f97-4400-bb02-7a4d0661eadf 1 Other Other +82162441-95fe-4e6e-b908-15d5da4d040c 1 Other Other +82167690-21b5-4af3-8d38-00034101a3ac 1 \N Other +8216ad88-a496-4ab3-b696-59a4d6deb5f7 1 Other Other +821701cb-4e0f-42e9-81f0-05a1bc77822a 1 Other Other +82170e20-a9ff-45c3-989b-b6d4ff0bb7ed 1 Other Other +821777c2-04a9-4c4e-8e73-a1080680330d 1 Other Other +8217927c-3871-4fec-bb11-1743a7fbf2a4 1 Other Other +8217c0b0-416e-4936-98f9-1306b4fff731 1 Other Other +8218072b-dfb7-49c3-ad97-194323be3253 1 Other Other +82186c9a-cbb6-47c9-b0c4-70a3714933d9 1 Other Other +82188c99-5eff-4532-9024-9577c0f00171 1 Other Other +82189a66-177e-4984-8208-cd95b109d832 1 Other Other +8218a797-f1f8-4115-8f58-f37c173a762f 1 Other Other +8218ff5a-a891-4919-a621-4c8b55b346e2 1 Other Other +82191adc-227d-4e28-b25c-2e823659251c 1 Other Other +82194e7e-acfd-4e3d-89ca-d9ef04fab516 1 Other Other +821970b9-7de8-4526-9de9-6d6937b9e695 1 Other Other +8219a003-e69d-4e8f-b4a3-10111138f487 1 Other Other +8219a5ba-8284-4f5f-827e-f47c6309de6e 1 Other Other +8219d1bf-0de9-4f40-8304-b0c097a0a885 1 Other Other +8219e0c1-f4a7-49c0-9eef-c62725c0a82a 1 Other Other +821a0107-8bca-4cca-85f9-4838f278083b 1 James Other +821a4570-7074-4fd7-9262-dec428523d0f 1 Other Other +821a5671-7d19-4c9e-85d3-36608fa669dd 1 Other Other +821a5707-376c-4e60-967b-4164d38f2691 1 Other Other +821a696b-299a-4902-92a8-8a55edd889b0 1 Other Other +821aa871-3589-415a-baa4-0132fd6563ce 1 Other Other +821acbe8-7603-430e-a238-997eff4aff27 1 Other Other +821ad9b1-07e1-4c18-9463-6b90d4afac93 1 Other Other +821af4d6-d4e0-486b-8526-0636f76149f8 1 Other Other +821b1449-ca53-4c5f-a279-9229293d20c3 1 Other Other +821b3a65-a361-46d3-92af-434156fdfa12 1 Other Other +821b709b-3db9-49d1-a78e-826ebe8783ee 1 Other Other +821bc5b9-ab6f-4c0b-bce7-b921d7ebc94f 1 Other Other +821c16e9-9740-492e-8c40-e0ef29688173 1 Other Other +821c2258-e88d-4572-973e-40d90cd569a4 1 Other Other +821c35aa-d5f0-417b-bee9-58c895b2b9cc 1 Other Other +821c79c4-77dc-4bd8-abe3-cda1020efdde 1 Other Other +821c82a1-2fdb-48d5-831c-9b25ee6e2fad 1 \N Other +821cbb25-74a3-4262-ab0e-e990d7a55fdc 1 Other Other +821cceda-315c-48b8-bbe7-f0e3be0b13f4 1 Other Other +821cf99a-f7ad-40fe-935c-f676963765f5 1 Other Other +821d3ca0-c4ba-4565-b635-408bc049e311 1 Other Other +821d65da-b2b4-4ea4-adfc-1c34a62eb270 1 Other Other +821da4f0-aa9c-4f9d-b231-10fa591a0950 1 Other Other +821dc22f-baa7-47bb-9f01-1f8a387f6db7 1 Other Other +821dcee4-87a5-4a16-888c-1872b89e4679 1 Other Other +821f0188-8659-48b4-b731-0319bb567d32 1 \N Other +821f0618-fd23-41cc-bb74-51c6c603ce97 1 Other Other +821f5ad0-c3f7-48a0-8ea8-765beaa4c7be 1 Other Other +821f9f13-92d0-4020-8240-7bf07e4505f3 1 Other Other +821fee3c-e8e7-4f49-8aff-4e26b5667e31 1 James Other +82200e61-f06a-453d-80bc-60ed3fbb649c 1 Other Other +82204ad4-4b3d-4577-bdbb-5ea70a520590 1 Other Other +8220588b-71fd-47bf-aafd-7c9d322f30f6 1 Other Other +82208b27-3a4e-4f95-aecc-97d8fb350c0b 1 Other Other +8220dbb1-be16-4075-aa82-cb322e7a0f53 1 Other Other +8222187a-b180-4db3-a4e7-00d501dcbac1 1 Other Other +82227e74-c26f-47ac-aa0f-8cc2cb7be5e6 1 Other Other +8222b610-a394-4ae6-80c3-66c4a6647f54 1 Other Other +8222bfcc-7b72-4c36-8f0f-d80c1f693628 1 Other Other +82236340-de1e-45d3-ac9b-553ea0d4b0bc 1 Other Other +8223936f-53a5-4357-adbd-1c7a97ece4eb 1 Other Other +8223d0c7-a66a-4326-a06d-fde3ff4cdab9 1 Other Other +8223e431-1494-4e98-93c2-52e4c4491f97 1 Other Other +82243206-6c27-46b1-a4fd-3be7c177aa9a 1 Other Other +82246dea-a926-4bdf-89e8-0d7b9d0fd1dd 1 Other Other +82247858-08e9-4543-8aa1-d72ff2b20ee9 1 Other Other +8224c1ac-4232-43c1-9094-76016e4714f0 1 Other Other +8224c477-fdfb-464c-90d6-60086593e6aa 1 Other Other +8224c4ad-21a2-489c-b92d-4e2efbeb1c21 1 Other Other +822531dc-df53-48ee-ba8c-1dfbd38ab397 1 Other Other +82253d07-4ea2-4a10-9f6c-1c4bd7cf627f 1 Other Other +822566d1-d0bc-4f74-bd43-5e4a9843c50b 1 Other Other +82258cc6-cc8b-40fe-8e2d-1aa52aa5234c 1 Other Other +8225beda-d835-4f9c-bd72-3c0098f578f7 1 Other Other +8225d2a5-0dce-4314-b4bd-121fb2bf8cc2 1 Other Other +8225f0a0-0cdd-429d-9de2-c309db2cdb01 1 Other Other +8225f7a2-6733-4342-9353-a10f00be288b 1 Other Other +8226793e-f9da-4b62-a8bc-ef463174e91c 1 Other Other +822699d2-9db5-4ffe-913f-77b7a5bce440 1 Other Other +8226cd27-b382-4cd1-8099-545cec939706 1 Other Other +822705fe-4143-4abf-9ae7-a77e4e632285 1 Other Other +8227329b-63ad-441c-a35f-b6a7760c116a 1 Other Other +822736ec-5b7c-4bd9-a2ed-b3f883572603 1 Other Other +82273749-5e5d-41c7-a1c4-bc6f059fe806 1 Other Other +8227585c-3143-4e13-be37-1a8dfbde03bb 1 Other Other +82280559-4a39-4e58-ba9e-575968def7f5 1 Other Other +82282729-ec5c-46df-b70f-772c82743983 1 Other Other +8228ac8e-1ef6-4ffb-a3c2-4c1269223a76 1 Other Other +8228c1a3-1319-43df-99d3-6a525963390e 1 Other Other +8228dade-2c80-46a5-a2ae-3b55d48f260b 1 Other Other +82290a31-f3c7-4d0a-ba94-fa4291e901cd 1 Other Other +822931ab-74ce-4333-9624-d97ad79c02cb 1 Other Other +82294372-d658-40f2-bf76-82d6bb00642d 1 Other Other +82294edf-5ff0-421f-95fb-1759644e5eae 1 Other Other +822954d7-0e41-4f68-87fc-f7ea6fdf6787 1 Other Other +822961e0-8958-4435-af1a-45a2a32814bd 1 Other Other +82298e29-0f0f-4df2-ac01-9acc862f74f1 1 Other Other +8229a011-6897-4fde-baef-7ef0f8de451b 1 Other Other +8229cf3b-78b4-4cf3-bf0f-b05518c9dcbc 1 Other Other +8229e26e-3cb8-43ec-8729-3f7ed2ae0400 1 Other Other +8229f605-02a4-47eb-ac04-cb7e898b7406 1 Other Other +822a37ce-93ac-4399-b987-da844773ae6d 1 Other Other +822ac37e-8900-42fe-96ef-d508c4f2ec5c 1 Other Other +822ad32b-fc15-4c13-8aa9-d7f88f30e880 1 Other Other +822b2681-e750-4cab-81d3-00f91b6df5b2 1 Other Other +822b3746-ca2b-465f-ad70-5894cd6ff752 1 Other Other +822b66a8-9579-441b-bb5a-b80c86f5a453 1 Other Other +822c18d0-014b-44e1-bb0e-4885208bf2c2 1 Other Other +822c2434-e905-4142-83fc-a380463e3de2 1 Other Other +822c83ad-9679-46c6-8324-ee7d2d58e3b5 1 Other Other +822cae24-1f95-4162-82fb-0e8cca0cd5ef 1 Other Other +822cc070-bd54-4266-8ea6-ef623df4fbcd 1 Other Other +822d41c4-0143-4a2b-a916-e4575755e584 1 James Other +822d66d6-6b98-49e2-a9de-2330a5737e53 1 Other Other +822dd5d8-b1bd-4d70-9c0b-3a2c398aae2d 1 Other Other +822e247a-2b0b-451d-959c-12d27ea6e42b 1 Other Other +822e9471-a08a-4034-acb3-033809180c83 1 Other Other +822ef18b-5578-4932-a14f-95ade0b320e5 1 Other Other +822f3907-9f0c-45b4-a6c2-705a1e86d905 1 Other Other +822f7e9e-16cc-4e1d-8e6f-3f5a49a886bf 1 Other Other +822fa32d-05bd-4f20-95f8-9e052268fdbf 1 Other Other +822fb90a-282c-4721-94a5-67d08d63c606 1 Other Other +82300a67-026e-42de-97ca-c134260b6269 1 Other Other +82303e21-1087-4797-b6a2-9e87f156e935 1 Other Other +823054d6-2c6a-42fa-9689-d168224f0d93 1 Other Other +823063fd-0ca7-4a0c-9349-32665ae10d5c 1 Other Other +82308e41-bd62-4658-83c3-13be6ac0c5a7 1 Other Other +8230a707-6b01-4abf-af87-de512737f9e7 1 Other Other +8230f3bd-a958-4b03-9854-ed9a48bbca1f 1 Other Other +8230f6c1-c421-4234-a02f-9e31787f76a7 1 Other Other +8231526e-e43b-4a8b-9e59-b076c1771251 1 Other Other +82315ac2-2bef-444f-aa1f-2945b8065007 1 Other Other +823233cf-4997-4421-9c99-21974eaab812 1 Other Other +82324c0c-c428-4fa3-af04-79875d431776 1 Other Other +823261a6-c3ec-47ae-9b9d-aa6131a58168 1 Other Other +82326b4e-b959-4359-baa3-83c5786846f6 1 Other Other +82327d4e-97f9-4a53-bc46-90b4480baaf7 1 Other Other +823353bb-b6bf-49aa-9cc0-5399199ae8c6 1 Other Other +8233c1e8-2363-4d89-b836-ab1dbd7e77c2 1 Other Other +8233fef0-d2a1-4592-9fef-8d265824c74e 1 Other Other +82343da4-e6eb-44f2-b6f8-70307f83a128 1 Other Other +82346093-cc6b-405a-9977-f7c51d566f33 1 Other Other +823470c2-ee1a-472a-9a65-5cae358fc892 1 Other Other +8234af3e-b29a-4604-bfbf-7da8472687f4 1 Other Other +8234fff8-8728-451f-864a-e01059aaedf5 1 Other Other +82351298-8ca2-45de-b36d-d2afb9bb3dd9 1 Other Other +82351f35-8a2a-41da-a142-30d0b31e0257 1 Other Other +82354b1f-ebe1-4d0f-b0be-e75fd3fc83c2 1 Other Other +82356112-edba-409f-86da-ecf64e0a8d2d 1 Other Other +8235696c-d322-47af-a35a-179af778b889 1 Other Other +8235cd93-28eb-4ca6-9ed2-43cfa8cb392c 1 Other Other +8235dd65-4867-4764-bfdb-c5f68c957821 1 James Other +8235f6ca-884f-40c7-98e6-30d6e24ef32c 1 Other Other +82362397-6e11-43e7-9b49-fb782481ff5d 1 Other Other +823623e4-e0eb-4ebc-a499-649bbcd4bcb3 1 Other Other +8236246b-734f-4ada-b377-afeb2d726dda 1 Other Other +82364eae-1481-4c1c-8fb7-01b548005069 1 Other Other +82365518-0d61-4171-9a55-b2b8beb2e3a0 1 Other Other +82365da4-07a7-4dd9-819b-b99a65bdac87 1 Other Other +82366b87-e019-4c8a-b7c2-1d2e760f7948 1 Other Other +8236837c-7bb7-4b89-ad6a-9e9cf9323cb0 1 Other Other +8236ac74-978d-45f8-878a-0b4679be96c5 1 Other Other +8236d805-1b06-4045-973a-ff30f2baf2ea 1 Other Other +8237864c-4eda-4cbc-a6ac-b3b5ac020be4 1 Other Other +8237c59d-09d1-4717-a170-9fd505cf5271 1 Other Other +8238036c-cad4-411c-9f5e-9d0d3dab75ca 1 \N Other +82381ba6-05b8-433d-9c8c-9579ff78e593 1 Other Other +8238344b-e042-42e2-a82e-592a7d26bea6 1 James Other +82386aab-447e-4387-b9f8-eb72423dde6b 1 Other Other +82390980-a0d3-4910-81b4-0086e85724e8 1 Other Other +823942bb-b47c-41db-b4fa-77e6f3eab10a 1 Other Other +82399803-469d-4ae3-a5b3-3bb0cb1e338d 1 Other Other +8239befb-7da8-4857-9955-483d84986ea9 1 Other Other +823a3603-d74b-42e5-bc37-768a766c3df9 1 Other Other +823a3e90-6104-4129-8926-763a421ada01 1 Other Other +823afef3-9cd3-486b-9ace-f26d891ebb41 1 \N Other +823b2a50-3d71-4dc8-b208-8e913ab9489c 1 Other Other +823b4e17-6884-412b-b572-1b15ac5c7b2e 1 Other Other +823b6a41-32bb-4217-950b-eab6ad986010 1 Other Other +823b7ff6-a6be-4b11-b803-78222de431bc 1 James Other +823cb0fd-cdf6-4478-a416-48565ae57e2d 1 Other Other +823d0290-a3d2-49ac-8579-34b1c1692eb3 1 Other Other +823d4d5d-a8ee-4f1e-8265-b6214cc544bd 1 Other Other +823d59b3-dd73-45e1-b04c-5ba8de67708e 1 Other Other +823dab8d-faf1-46f2-8db1-15b08384007c 1 Other Other +823e1c59-9081-48b4-bd72-725ee04c327b 1 Other Other +823e4f17-a364-4b18-a19b-22a94d5acde8 1 Other Other +823e8887-0c90-41d2-b9a4-ebd99699ac55 1 Other Other +823eb46c-356c-492d-8dea-63e008dc7e56 1 Other Other +823ed1b0-9b4c-4a78-9fc9-352378d30c2d 1 Other Other +823f0427-70b0-4ad8-9ead-d6eb878b5bef 1 Other Other +823f55eb-be3f-4c95-95b1-b629eb6cdfb2 1 Other Other +823f6ad3-933e-4058-b3f1-0fe61cedb6ae 1 Other Other +823f6d6b-f4b7-49a7-acb0-434983a7007a 1 Other Other +823f996a-957b-48fc-8038-41b2d2a84dde 1 Other Other +823fe7a4-4339-4972-a601-589c6e4a3869 1 Other Other +823fec30-7a35-4398-837a-7fffeb3917ad 1 Other Other +8240354d-6cd0-496a-872b-7fd63079d6c1 1 Other Other +8240e780-ce53-48bb-a811-4bda44be02ff 1 Other Other +8240fd63-c833-41ea-91e6-52229d9a1a3b 1 Other Other +82412765-eccf-437e-999b-1d8ddbf04554 1 Other Other +824133c3-c47e-4ec0-ae38-f99368fc720a 1 Other Other +82416210-32aa-4ec4-911f-c710c4fb4330 1 Other Other +82419073-dbac-4860-b1f0-95c616fe7f5b 1 Other Other +8241a013-ffa0-4664-9c0f-dfa122e2ce85 1 Other Other +8241bed6-5a38-4972-b8eb-3fe41527088e 1 Other Other +8241cf8f-f434-4aa7-b4ca-e909698a2ff4 1 Other Other +8241fe09-f261-48ea-98f8-901ba05011da 1 Other Other +8242a380-a60a-4e4b-ac84-05bdc324fc5a 1 Other Other +82432c61-f069-4d66-ac98-02ec70bd1fe3 1 Other Other +8243314f-a79e-4a8c-8628-8f28e346b62c 1 Other Other +82434762-0f75-445d-8013-f16674704cf2 1 Other Other +82434a38-3961-4e9c-bf24-78e568b4939d 1 Other Other +824367b9-b1e1-46a9-adf8-420ecdc3c99e 1 Other Other +82436ee8-c583-4384-adcb-8d5c17e22c2a 1 Other Other +82437159-ca72-48c5-9f13-7186b8b8d0b9 1 Other Other +82438388-3e13-4685-8093-33b0ef69fe49 1 Other Other +82438718-f047-468d-aebd-24611f7bc5fb 1 Other Other +8243c837-1152-4856-9190-fb3bda072cd5 1 Other Other +8243d8f9-4417-485b-987f-3e57ae2246bb 1 Other Other +82448033-99c5-4375-9e20-ff57d3f23bfe 1 Other Other +82449cfa-9c39-4073-8744-83565ba773c1 1 Other Other +824504ff-9e52-43f0-a79a-41f448c8de4c 1 Other Other +8245ea5d-7138-4a15-8004-354d4889cda8 1 Other Other +82460fec-daed-48ee-be6a-2851cd118c05 1 Other Other +82461b08-4c40-400a-ae3c-da460a08441e 1 Other Other +82461d3b-a187-41da-b13b-9d708e7a12a1 1 Other Other +824629d8-a9fd-4666-a6f9-48654dc589a0 1 Other Other +82464314-6200-434a-b1df-db102b55a8e2 1 Other Other +8246f688-0771-41a5-a631-8e50f90a3113 1 Other Other +82470acf-b82d-43f7-bc48-f97b030459cb 1 Other Other +82474be5-b7e0-4e8d-a7df-73e7f329d478 1 Other Other +82475eb0-5463-4399-a553-8387cd76a220 1 Other Other +82476695-c652-40c6-ae23-71a5a12fe2f8 1 Other Other +82477092-308f-42e9-9fd1-abd3a1bfc1b0 1 Other Other +8247fbbf-8407-4891-84d5-f00e3dc4b0a6 1 Other Other +82480e28-a03f-40dd-b3d5-6e426b6c9614 1 Other Other +82483ca4-7ee0-4065-94d4-ccb970860ac1 1 Other Other +824884d3-5241-4910-bf1a-be4d48765c78 1 Other Other +8248b06d-f8d4-46a2-8f0f-04f077054757 1 Other Other +82490478-4026-48e8-9ecb-0da1e3a04bb0 1 \N Other +824934bc-fa56-4b9a-af7b-a8bd8d4650ab 1 Other Other +82497e40-a12a-40cc-ba9c-6efde9f49fc0 1 Other Other +8249a0c3-90d3-4d87-891a-eafb16416641 1 Other Other +8249a5ce-9dca-4691-bf03-c1a39109199a 1 Other Other +8249cb5b-90a6-441e-a5c3-d71472c43597 1 Other Other +8249cc0c-eed7-43e9-ad71-275722b24ec6 1 Other Other +8249d29c-eaca-4b52-a6d2-13637e409f68 1 Other Other +8249de49-c4c9-4615-9fa0-b2909571fd15 1 Other Other +824a3eda-3a61-46ab-b28d-8d9d57f44098 1 Other Other +824a4e62-a3a9-4c1d-a49e-24fd62aa2653 1 Other Other +824a6220-45fe-411c-8963-e2ab6716a8f1 1 Other Other +824ac52a-8d41-475c-9864-14a07add0582 1 Other Other +824b749f-f0d3-4660-9f20-2d8da2dc56fd 1 Other Other +824c0edc-145d-4399-be16-97832b94e752 1 Other Other +824c26bd-a326-4049-8eb7-fe7edf9061ee 1 Other Other +824c3ab6-0fff-476c-9111-7e6d7cbf0ff7 1 Other Other +824c9c9b-d904-4f15-9b74-c29f7ba20d75 1 Other Other +824ccfe9-d30e-4dca-b657-24855cfa8b6b 1 Other Other +824d0306-77b5-4c29-8b51-fcdd4fd5bbd2 1 Other Other +824d1358-2bc7-4038-b2ae-b5809978f0e0 1 Other Other +824d5cc6-0841-411e-8a55-6d33e913084f 1 Other Other +824d7555-ac7b-4258-88bb-47f51ab0ed5c 1 Other Other +824d8a3c-3588-411e-be9a-08fbf96655bd 1 Other Other +824d92d8-628c-45cd-a391-2352c0b9a3e8 1 Other Other +824da7a1-3192-4a91-bfef-9552d040ccea 1 Other Other +824dcd8b-0c45-492d-9803-200ee6651123 1 Other Other +824e121d-493d-41c7-995e-ecf6f73af021 1 Other Other +824e5cbc-abb6-40df-8b1d-b3fd25703f51 1 Other Other +824e9157-f6f8-40c2-8b36-06d220bfa8ee 1 Other Other +824eb240-a528-4ef2-8152-4ffe1090f1ee 1 Other Other +824ed240-214d-4b4f-9a53-a846b7e86bb0 1 Other Other +824f10ed-361e-4c7b-ab48-ee191a69c669 1 Other Other +824f5406-3c27-4f9f-9c14-9786f7ec0a7c 1 Other Other +824f5ab4-2034-47dc-91ca-7fc1c45d9f61 1 Other Other +824f9d83-1abd-47e0-98dd-168b67b4393b 1 Other Other +824fbf43-b1d6-4a64-8f85-fbaad277bde4 1 Other Other +824fdf5b-7a7e-4040-8bb1-1272c98ad955 1 Other Other +82500f51-0305-4d23-8bd5-6db7e15cd463 1 \N Other +82505c89-8e09-48cf-8ad6-eec4f65b9a81 1 Other Other +8250a950-8daf-4755-9374-bec2e7331aa5 1 Other Other +8251297c-07f0-432d-bcf2-2cd2d948c69d 1 Other Other +82513500-73fc-40ca-9723-71205bc6fff3 1 Other Other +825153b9-eb77-4130-bc89-5f9696b25583 1 Other Other +825171a0-b6b4-4d89-af2f-413881075d9f 1 \N Other +8251dd35-4507-4f5c-bacd-f95c1b83d648 1 Other Other +8251fca7-d665-400c-ac19-88740757c46f 1 Other Other +82523ac3-3bce-4f2e-b5f5-0d38f73ff440 1 Other Other +82523b33-d729-40c4-a9b3-c97d8f8a7563 1 Other Other +825269fd-bdbf-491b-a99e-249da4aa7c96 1 Other Other +82529b10-5a31-4218-acc5-29b1591f34d9 1 Other Other +8252b51a-f12e-4424-ac83-2b7062a08faf 1 Other Other +8252cfea-c19d-41a0-a246-bead42b724d6 1 Other Other +8252e277-90d3-4ab1-8514-5b6e5dd7a2a9 1 Other Other +8252e3cb-2812-4cc9-8725-56c0fb1bf892 1 Other Other +8252e92c-3222-4301-b5e4-9be40807a31c 1 Other Other +8252f5ea-b770-4564-a982-4c3cad43f862 1 Other Other +825362b8-2000-4d12-9a75-08b893af9dc2 1 Other Other +8253865a-22e3-4ad2-815f-b8e371509ce0 1 Other Other +8253b196-d524-433c-8791-2220f5ab117d 1 Other Other +8253b197-43ab-4e3b-84cc-9a9d5aeae9e7 1 Other Other +8253c8e1-b3dd-42ba-8ec1-30c9273fff02 1 Other Other +8253e76d-4c09-4aa6-8c3b-c31fb0a1d855 1 Other Other +825456e0-a0c8-4e30-80ca-83e9e334200e 1 Other Other +8254923c-7f62-4f72-84c0-46d22c868232 1 Other Other +8254ab09-b12f-495e-a87c-e5369ee4fa0c 1 Other Other +82550219-cb40-4549-b9d2-5c49297c6505 1 Other Other +82553d07-9451-428b-afd7-3b21af7236e7 1 Other Other +8255402e-8e16-48d6-a1e4-f12ab94c40b4 1 Other Other +8255940f-89db-4ea1-bda4-c1b63121df50 1 Other Other +82562638-ee60-4955-8225-f8fc4c00eb81 1 Other Other +82562998-81cf-4037-93d7-4076beb55dba 1 Other Other +8256aa9a-aa45-4642-902a-c1dc6e8cc987 1 Other Other +8256d124-17d0-4492-9427-d48993acba4e 1 Other Other +82575bab-ea6a-4dbf-9bbb-dc96959f482a 1 Other Other +825778a1-8189-4d91-8c29-92cef6b4d76e 1 \N Other +8257b8b8-90a8-4b86-94c9-1898c8ec984c 1 Other Other +8257c7e1-998f-4658-ad88-f970915f699e 1 Other Other +8257f17c-22c2-4964-a846-2585ffdf8106 1 Other Other +8257fc79-fed7-4ba6-af14-b606e8d0739b 1 Other Other +82584f05-700b-48e3-b4e8-e0b56ed5f13c 1 Other Other +8258a80e-44af-47da-89ad-1d044c69380c 1 Other Other +8258aaad-d942-4c14-a0ec-7684b6f39129 1 Other Other +8258c0b2-722a-4323-a705-7bf1802f870b 1 Other Other +82591852-91ad-494f-836d-4c4868cacaa4 1 Other Other +82595df9-6dd5-4a51-bd13-f26947ffc924 1 Other Other +8259dad8-4663-4916-a41c-39a4f87cf1e6 1 Other Other +825a02cc-d456-4574-b850-7f7defa9fe55 1 Other Other +825a07c3-f46a-4d98-a15a-30c81bf42c22 1 Other Other +825a3081-6bd2-48df-b35b-33a46935444b 1 Other Other +825a4fd7-fe59-4a4a-b7ae-b50775b77029 1 Other Other +825a7d00-fe22-428f-b98e-ec76e051c332 1 Other Other +825aba2a-039e-4a3f-9f02-2c53d58417e0 1 Other Other +825b12ed-f871-4a42-9a0b-ebf784dffdf0 1 Other Other +825b14e6-343f-4ca6-ba35-b3a58f388240 1 Other Other +825b1cdd-e800-4f35-b3aa-093bd42dada6 1 Other Other +825b2cb4-4f2b-4568-bcce-418aa53b5845 1 Other Other +825b5409-9f7a-460b-abc1-f7e1fe635634 1 Other Other +825b9344-1f40-43ce-9911-c204d91f5c93 1 Other Other +825bdb61-056e-4e09-bd86-834f9b60dff7 1 Other Other +825c2eff-9851-47e5-a77f-7de3fc61350c 1 Other Other +825c30ae-804d-485c-b8e0-4bca8e123de6 1 Other Other +825c3bdf-990a-4c68-a113-bd4bbb8a03f8 1 Other Other +825c4810-f929-4cd5-bffd-2a113c01f5ae 1 Other Other +825c5955-abe0-48a4-bde5-6e064a7eac12 1 Other Other +825d1ef1-5071-4368-aa83-130ea3045e53 1 Other Other +825d293a-7982-42f7-9ce0-ff7a0be69aee 1 Other Other +825d4385-b10c-432d-a276-0932f03d2283 1 Other Other +825d4bbe-c3ff-4add-bd48-f843018e88c3 1 Other Other +825d4ee1-3309-46a9-8a44-74d4cf7fbcc9 1 James Other +825d93d3-8a1f-4315-8547-8a2d5ff7443f 1 Other Other +825dc2ca-70d4-47b2-9bfd-fe9365a1eab5 1 Other Other +825df197-db7d-4112-8b5a-ec424d0f7d26 1 Other Other +825e13a9-63f5-47f0-9cfd-b60cd4008764 1 Other Other +825e5425-d3df-4d4c-9191-f1edcc8fcff9 1 Other Other +825e5696-989e-417c-a825-3564ff4dee56 1 Other Other +825f1b4c-6eda-4005-ba37-d4aa6eedd138 1 Other Other +825f2080-5b86-416e-840d-fae9830160a7 1 James Other +825f3237-c45b-409d-96ca-4974b1dbc9bc 1 Other Other +825f5e78-1a7d-47e3-b622-e8d16ce8eefc 1 Other Other +825f9458-421a-46de-8986-feee5ba37913 1 Other Other +825f9720-face-45f7-a65b-71b9c76f429c 1 Other Other +825fc327-9a5c-481c-839d-2a5fc110df8a 1 Other Other +825fd801-73f4-431a-863f-a6113ae2a8c3 1 Other Other +825fe4f0-0881-4d43-80c0-dd39336cbf28 1 Other Other +82600e80-5b0f-487a-988c-8c396ff348a5 1 Other Other +826096f6-3a41-42e2-8d67-e419b70fe278 1 Other Other +8260afe7-ec09-447b-9168-b6a1caf2a62f 1 Other Other +8260f311-e929-4309-82ca-b21a69278fc6 1 Other Other +82610050-81b8-4649-b83d-c937eec43d11 1 Other Other +826199e3-8e5c-417f-af72-682c0eaefc8d 1 Other Other +8261b067-ab16-40c6-a554-a48618bbf72f 1 Other Other +8261ea12-340c-4586-9cfc-1ccb0d72011c 1 Other Other +8261eb57-cfa1-4da4-b8e8-2d1569b4057d 1 Other Other +82621b78-82c6-4d2e-a44d-ee73b36da392 1 Other Other +826230cc-3f6b-48a3-995e-e70f6b91e78e 1 Other Other +82624243-bfff-46e8-8dfb-f36f974b6266 1 Other Other +82624340-0b93-40ad-925d-4cd28ad24684 1 Other Other +8262435a-0584-4b2d-b889-6488fc1a6867 1 Other Other +8262646f-3809-4f80-84e1-ce210ddb5b4d 1 Other Other +8262949d-5898-4f71-b5a5-20ffdca8582a 1 Other Other +8262b68f-aafd-4750-b7b1-b20d131fcdfc 1 Other Other +8262ba20-cd55-44f4-bdfd-dcae1c6754d9 1 Other Other +8262e22c-c09f-4ad7-a697-19e68f5b9d4e 1 \N Other +82632a31-dbdb-4cb4-9f73-98f03b723044 1 Other Other +82634998-3dad-4149-8b15-283f2a9b4573 1 Other Other +82635495-f548-49b3-8cb1-c4ffae52f4f7 1 Other Other +82636ebf-89a7-46a8-948f-116f3bc4e240 1 Other Other +8263a909-0a20-4e87-a43c-c2d05382f3f5 1 Other Other +8263b9f1-d939-450d-9de5-5d35441c7f64 1 Other Other +8263d7ab-19f2-46d2-9688-07f05a2b8875 1 Other Other +82646217-5726-42cf-acea-3ee4278e2813 1 Other Other +82647c4f-da28-4ffd-a009-3e8789012dc3 1 Other Other +82649bae-0d74-4d0c-8f5b-6c4bc317e757 1 Other Other +8264ad82-0ab4-488c-99c7-e1bf39f38363 1 Other Other +8264d888-791c-4000-9cff-d3cee0f2aada 1 Other Other +8264daac-7559-4146-9b35-da1689ab5fe2 1 Other Other +82658ae9-ee29-4beb-8ecd-00db9cd93259 1 Other Other +8265de4f-962f-4003-a513-ac6d4297ae01 1 Other Other +8265e603-1f00-4ea6-b70a-65620434303e 1 James Other +8265f77e-8b19-4944-afa5-59e64733e617 1 Other Other +82661a66-7da9-4558-b70c-922b2f9b6d46 1 \N Other +82662c14-1230-47df-833c-4487bf5d3a7e 1 James Other +826635a9-8bc4-40ae-b80d-41401bb5438f 1 Other Other +82663b03-e659-4b74-8942-2dabea79218f 1 Other Other +8266c9ff-bb98-4942-a832-320c52433746 1 Other Other +8266d337-e9ea-42f6-afaf-c4699cac7d51 1 Other Other +8266d67e-c245-44bb-a922-7106867cb83e 1 Other Other +826768dc-721d-4105-87d7-44506318250c 1 Other Other +826770f9-ab17-4953-bb3d-009915b14303 1 Other Other +826790ed-235e-4c28-9f4b-389c494244cc 1 Other Other +82679643-4d7e-49c8-8c82-5ca16736f3ac 1 Other Other +8267bc76-b47f-474c-b7b2-add39b4e3eb2 1 Other Other +8267c906-3dd0-49fb-8763-de463085fa26 1 Other Other +8267e713-026f-46e0-bf15-eff55f6f4076 1 Other Other +8267ffb4-7db0-4f00-8abe-e2586356290b 1 Other Other +82680008-317c-4259-b12b-c20a9c0ba27c 1 Other Other +826876ce-dfe9-4927-867f-773e6ed8fc2b 1 Other Other +826899bd-ed1a-42af-8cd9-522f3f0d67b6 1 Other Other +82689d0d-0ce2-4d98-9318-f60f7a41b252 1 Other Other +8268a7ed-d992-41b1-a23c-a7bf6c85813a 1 Other Other +8268bc16-16da-4fef-a574-86f386db9714 1 Other Other +8268c264-c360-4d16-ac9a-8b97e0b7fe9c 1 Other Other +8268c704-d054-4408-85ac-500b17bc12e2 1 Other Other +8268ce12-cc01-4a57-9e64-63181f261f8f 1 Other Other +8268d6e1-2c28-4add-9a7f-bb65c02a17fc 1 Other Other +82693fa5-72da-4079-9afa-9000b3a5494c 1 Other Other +82695a45-351b-4a19-a8ca-3cce9c4a28ed 1 \N Other +8269b372-ede3-4898-9e78-73d63ee04155 1 Other Other +8269c807-9565-48dc-a544-1cfebe55eefe 1 Other Other +826a0c59-1221-4d1c-b4db-82818f0be724 1 Other Other +826a3b01-f19d-47b6-8142-69e4ac63c01a 1 Other Other +826a488f-ec17-42ff-acdc-94bcf4bb586d 1 Other Other +826a59f3-e548-47e1-baef-5d25dc54377f 1 \N Other +826a62a5-9880-49b8-806b-2b45139c607f 1 Other Other +826a878f-8e77-4aec-9419-50d51a44b4f5 1 Other Other +826ab18f-b915-4781-831a-483b1e6a99cd 1 Other Other +826ae190-7ade-4d95-98a8-b390e39ef4d0 1 Other Other +826b28b1-8d53-4139-ad34-8d49902104aa 1 Other Other +826b57f3-5af4-4c33-a583-4417c7e90602 1 Other Other +826b66cb-9c19-4064-8f1d-f9d7e2542597 1 Other Other +826b8120-1795-4054-8a26-a9e843da0139 1 Other Other +826b87c6-0fc6-4e6a-aca5-ccd4d6f773f9 1 Other Other +826b8990-37ec-46dd-991d-d0a59902d4b2 1 Other Other +826bb2af-2ea3-466f-9a48-886d6f4eed04 1 Other Other +826be4b5-9cf7-4387-9f70-438e8ce2a1f5 1 Other Other +826c1b76-fca8-437c-a887-1c84b2b55282 1 Other Other +826c7555-aa02-4e0b-823c-11dedec7fa29 1 Other Other +826c802d-3beb-401f-a7cd-afd7583c8a37 1 Other Other +826ca9c4-8f75-4961-ad1e-0529c268fb0f 1 Other Other +826d43a5-40a1-453a-9476-c9e0c248fcfe 1 Other Other +826d5b3b-3b36-4c0f-8dd2-92152e31fc8d 1 Other Other +826d6ac0-a0b8-4c0a-86da-421db8b56adc 1 Other Other +826dfd3d-a7f1-48f8-a755-c0262f694bc1 1 Other Other +826e1599-8fa8-4f81-bd94-23258dfc9e6e 1 Other Other +826e2a25-c21d-4680-a045-8b539794e93c 1 Other Other +826e6386-5844-40d9-bd85-d5b056dffe8c 1 Other Other +826e7a10-473f-4d7f-8144-469a80aa62a5 1 Other Other +826ee8de-e684-48fa-93ca-cef3eb5c2e97 1 \N Other +826f0ab0-1822-471b-881f-48be7d6d0691 1 Other Other +826f1bb2-92db-4fa9-b72e-85ec5df91384 1 Other Other +826f2121-3296-4214-ad97-1140f1102c29 1 Other Other +826f330c-5055-4959-9fcc-e072c4bf8271 1 Other Other +826f6e21-41bf-4023-8f4c-065018330b6a 1 Other Other +826f79f6-caf9-429a-b688-bf414047ddbe 1 Other Other +826fd4f7-9238-4b48-810b-74ea6eccdacc 1 Other Other +826ffce2-df29-47bf-98d0-1b34adaa3375 1 Other Other +82706837-71a8-495b-9e07-edc546ada4bf 1 Other Other +8270808f-0d70-4840-9b90-38407b178031 1 \N Other +82709a6d-fbd5-411e-a41b-ce80c1d69657 1 Other Other +8270b13f-aa73-4766-8964-f55eabbf6877 1 Other Other +8271032b-d534-40c2-a4a1-5fe407969a5e 1 Other Other +82711144-5490-4d68-8ec7-c189b54c45c9 1 Other Other +82716bbc-37b4-4067-80e7-33907d15ec1b 1 Other Other +82719d5a-fe5c-498c-a2d8-06b0d45e0491 1 Other Other +8271bc4d-d460-4db7-8cd5-609771ebc62b 1 Other Other +82726d3e-adb8-4b12-852a-e2512f4d5f9e 1 Other Other +8272bcc5-71f9-4e40-ac3f-7c7d7b37d7f9 1 Other Other +8272c570-7a67-4a8c-9ba1-09a71b040fd8 1 Other Other +8272c7d1-edc9-4cb9-b3e8-9b64e34fdbf0 1 Other Other +8272f7ae-2293-4006-81eb-dadffae69296 1 Other Other +82730b97-879d-4289-b744-6e3935cacea6 1 Other Other +827342a1-44dd-46c1-9831-47b73816db01 1 Other Other +8273474f-9391-4136-80f3-870ad268bda4 1 Other Other +8273884f-89d6-4c8a-b2a6-a1b51f71df30 1 Other Other +8273aab0-7893-4f89-bdcc-a31656cb7e40 1 Other Other +8273b670-a29c-499a-aa54-ec99bc3b773e 1 Other Other +8274524f-27bc-4078-bab0-dd1baa33a27f 1 Other Other +82745b0a-bfaa-4cf1-aab8-4dbe13843aa3 1 Other Other +82748084-ac72-4abf-90e4-21f413f78039 1 Other Other +827496e7-74d7-4220-b229-a49d83c02dc1 1 Other Other +8274b071-4202-4fd8-993f-9a04e9d238ee 1 Other Other +8274eebe-ab16-43ea-8aab-4613578f9043 1 Other Other +827519a8-b837-4383-bef9-3877929d280d 1 Other Other +82751d55-0761-45e3-89c9-ed58a98604a3 1 Other Other +8275647e-e540-4f20-a9c2-917827c87e5a 1 Other Other +82757d9f-e7cf-49ab-bf5a-a3fdb1a5962f 1 Other Other +8275998d-56e0-4914-b63a-4ccd2ab8769e 1 Other Other +8275c08a-abde-42ad-baa6-12134ef25d78 1 Other Other +82761cad-d04d-4bc3-94a2-6b238ccb4b23 1 Other Other +82762704-8dea-4a39-85e4-1a5518995177 1 Other Other +8276405f-bc07-4973-a0d7-14a039698533 1 Other Other +827667af-7d68-4e8e-ab51-7d9ce80c23cf 1 Other Other +8276a093-25ef-43f7-b0b4-c6d73ed179e7 1 Other Other +8276d4cb-4e4e-428d-b9f5-fe2078ca7db7 1 Other Other +8276ff63-9979-4090-a1ee-06d869dd3d33 1 Other Other +82772f92-2d5e-4120-9ac1-fbeed82246ff 1 Other Other +8277a1fa-c33c-40ec-95ce-64e1bcef1fa7 1 \N Other +8277a455-ceb5-40a4-8aaf-30a809a137bc 1 Other Other +8277a61f-0bde-4533-84b1-0afd97a25540 1 Other Other +8277c7ce-6037-4209-a61f-276ec277c634 1 Other Other +82782566-0b87-4820-b2d0-af6abfc78512 1 Other Other +827849f3-a699-4275-96e2-ef03f2ec57e1 1 Other Other +82787cda-48b0-4cdf-981e-3ff049f4e744 1 Other Other +8278a603-8f38-465b-8fec-a2c1768f5413 1 Other Other +8278b022-cdd9-4fa0-8189-881b2c1d129b 1 Other Other +8279a603-a225-48d1-9a30-3580092e978f 1 Other Other +827a020d-bcf1-4703-8077-a9b20b43bc38 1 Other Other +827a22a7-6275-4152-8f36-ba1bb098ff45 1 Other Other +827a49fc-e4cf-4029-829d-2d62c6a1d1a5 1 \N Other +827a6e44-f7e3-4f8f-adf9-efac56603d44 1 Other Other +827a872a-01cd-49a0-a025-5c6d49eb3f4b 1 Other Other +827acaaa-7e4d-4724-a129-0cff4320800c 1 Other Other +827aef59-e0ba-4834-8abd-b35fb15a47e1 1 Other Other +827b23ea-3401-4f0f-bfc1-8c92b44f8f99 1 Other Other +827b2b04-3fa8-455c-8a56-e48da8fc69ee 1 Other Other +827b8b78-f872-4744-85f0-95ec26441c49 1 Other Other +827c0c7b-582d-45e8-a9aa-8fa2212fbede 1 Other Other +827cda18-422d-4e1c-809a-43e39d8b83cc 1 Other Other +827d13af-d290-43e7-b84b-dc222f976b09 1 Other Other +827d13db-e15d-4996-aa3b-f678e5e437de 1 Other Other +827d7cef-7f9d-4f60-9dce-19ef05e0a369 1 Other Other +827ddde9-42d0-4dcf-acb0-6cd67d995c98 1 Other Other +827df5a6-3a05-41e8-8c60-cdf433a86376 1 Other Other +827dfdd0-7ccc-48a0-95d0-3155d4b91a50 1 \N Other +827e220c-f5cf-4c41-a55d-f38d5b4b23b7 1 Other Other +827e310c-4ee3-4d8f-aa6d-51946b97857c 1 Other Other +827e3d70-0c9a-4e2f-ad5a-d474a8b200a4 1 Other Other +827e4e56-59cc-4153-83a9-2969c32e4f52 1 Other Other +827e8212-c7bd-4c6a-bbc8-0da00fd6f22a 1 Other Other +827e98fb-6a60-4273-b3eb-5aaedee25b02 1 Other Other +827e9cba-27f4-4416-86db-794b313aa98f 1 Other Other +827ea431-eeb6-435e-a518-d372ce1972bd 1 Other Other +827eb742-1acb-4270-be98-8949d0be76f2 1 Other Other +827f31a8-4386-4245-8c8e-1376eb6d9dc4 1 Other Other +827f690c-e7d1-4ca3-be54-1f42a174037d 1 Other Other +827f7b78-17a2-4f00-a9ce-54128f782518 1 Other Other +827f988c-d294-4e20-90dc-2db7f2d5a12e 1 Other Other +8280594e-06e1-4016-a16e-ef5ef2572f53 1 Other Other +8280667e-7223-4cc0-8058-a781c07b16e6 1 Other Other +828087bd-4743-4999-a67d-2d46a5b3e62f 1 Other Other +8280a74c-7cdc-419f-8f73-6cf04e81fe23 1 Other Other +8280d9ea-7598-49cf-9793-0a764ba3b61b 1 James Other +8280eb1b-210d-4979-a2d0-87c86dd93036 1 \N Other +8281191a-c1b3-4d54-8cdc-add2ee33c50e 1 Other Other +82812295-365e-4d08-88bb-3e28024d12bd 1 Other Other +82812d5d-d385-46e8-8025-9545ca4a0b9e 1 Other Other +828130b0-1343-4a10-981e-2173b7b86281 1 Other Other +82813d8d-aebe-4ae8-9ffb-1ee037db4c20 1 Other Other +828160db-e9a2-457a-a3eb-660fedd31d2b 1 Other Other +82819c1e-f058-4b7e-b033-13b372247d7f 1 Other Other +82821a15-0780-4e7e-b734-c648837911c3 1 \N Other +82822357-0856-45f8-84e8-fca2bfc67d2b 1 Other Other +828289a3-b346-42f7-a956-db0d3daf894c 1 James Other +82828a27-b32f-4141-a4c4-770344a56c83 1 Other Other +8282993c-112f-470e-8e74-0e23b836125a 1 Other Other +82830b78-c114-4688-881e-cb394485137b 1 Other Other +82832a55-0bb3-4502-be3d-108a6e4a4161 1 Other Other +82834942-2f9c-435c-aaf1-d6271ca2624d 1 Other Other +8283821f-8196-4a3e-bef5-f74234afc9b6 1 Other Other +8283f1cf-d58a-4faa-a12b-689bd962e5d4 1 \N Other +82844095-a853-412f-b2f2-5d9489e9ccdd 1 Other Other +8284a24d-7610-41a4-b7a9-45561a8a691d 1 Other Other +8284d29e-6965-4159-a4d6-872ed7c98478 1 Other Other +8284d542-f03d-40b1-82c1-87536b14dc29 1 Other Other +8284da72-5ea4-42fe-97cc-faef6560069e 1 Other Other +8284e01e-2ad4-4cbd-8af1-f7a209b2f317 1 Other Other +8285287a-acc3-4663-bd66-404526d43d44 1 Other Other +82853402-7bb6-4edf-9c74-a9a805a9d80f 1 Other Other +82854987-7e89-4998-9a79-729d8f68d67e 1 Other Other +828557a5-0a6a-489a-91ad-74cfbe07a00d 1 Other Other +82859711-b521-4b34-bcb6-69f9a8e5275b 1 Other Other +8285fcfd-dcd6-4fd8-8898-604bf527a66f 1 Other Other +82860460-1c4b-4cc6-aab5-79a7b8233654 1 Other Other +82860cb4-ff86-47ca-8922-de3086b11387 1 Other Other +82862b1b-1dde-4492-a4a6-ef0a95ec9d41 1 Other Other +8286446f-c640-4b0a-b5a2-5728888de6bf 1 Other Other +82864d3b-7717-436f-b194-eff3c0061986 1 Other Other +82865bcf-4ddf-43ce-aa1d-fb9c78212106 1 Other Other +82866e54-e0a8-4c5e-84d5-c81ce61429b8 1 Other Other +8286926c-6ef1-4a46-bdf6-7714f69a8795 1 \N Other +82869fb4-a040-47c8-9cf6-9067c8a1d48a 1 Other Other +8286c8ba-2a8c-4aba-9609-be0ab1c3f1a6 1 Other Other +82872bbf-a884-4eeb-bcb2-490abeb22cc0 1 \N Other +8287460b-bc7f-4552-b8e4-cf4c6f8ffe54 1 Other Other +8287e088-7113-4021-800d-0342cfb2ac04 1 Other Other +82882f3e-308c-429a-82c8-a76e59ec7c08 1 Other Other +828840c4-2e9e-44f4-a189-dc8547ed989d 1 Other Other +82887605-cf1b-4edd-b9ff-12c79a89b69c 1 Other Other +82888375-ca5b-45d6-ae37-d690c5fb16b9 1 Other Other +8288b7b7-6752-4948-9c22-e85d80016c52 1 Other Other +8288c82b-30e2-41ee-a9db-b9d850a95580 1 Other Other +8288dc8c-94af-4f90-963e-c745c4d2eff7 1 Other Other +8288f444-4c07-424e-8193-842f35f2cbd2 1 Other Other +8289310c-d972-473d-ac0a-83543b8ae756 1 Other Other +82894dea-2477-43ef-a363-1b736b036f66 1 \N Other +828981f2-dec6-43f1-9d60-5e7b45a1bed7 1 Other Other +828a5d09-2071-41a5-b47c-d3b51d7391ba 1 Other Other +828ad87e-4181-4ed2-97eb-42ed33ee388d 1 Other Other +828af2ae-12ce-478c-842b-d101e8d6f99d 1 Other Other +828af87c-faf9-4824-8271-c6c1bbf67645 1 Other Other +828b403f-0b74-4ba7-9c19-f81a82571257 1 Other Other +828b5582-c6e2-496c-9e83-c755503942d4 1 Other Other +828b6693-6cd4-43ff-8443-e8e811311b5b 1 Other Other +828b92e2-ed24-46e0-8145-f20d86c238de 1 Other Other +828ba9c0-5934-4980-9bcf-62c8c80280de 1 \N Other +828bd1ec-92d3-47cc-855f-ae8d0e6cb9b9 1 Other Other +828bf0a0-a704-4c51-ba85-951d32a4bbfc 1 \N Other +828c158a-636a-4754-a2da-9184917029a9 1 Other Other +828c6e91-946b-4f40-8f30-c7b13dcfe2a8 1 Other Other +828c9885-3d18-4a3f-86e8-2598911e1e34 1 James Other +828d2336-1f61-4472-af11-0447c53ce3d8 1 Other Other +828d483c-2b9c-4924-a492-5a23510f4bad 1 Other Other +828e0706-b30f-426b-bd1a-61d338a320fd 1 Other Other +828e3e30-83ee-4a1c-818f-8c2a81af1af1 1 Other Other +828e453a-d756-457c-b889-3528e5d30b4f 1 Other Other +828e5d8f-9117-4b7f-a4f9-b5915f078aa3 1 Other Other +828e750f-f321-40ae-a65b-861f145f6ac3 1 Other Other +828ec16b-54c0-4134-8005-81efb4f80fe7 1 Other Other +828f33b4-cb16-4f16-bd1e-7d7c32310c78 1 Other Other +828f5b4e-41eb-45db-babc-377326158b3e 1 Other Other +828f80f9-4358-435b-a4fa-96461d319ed6 1 Other Other +828fdd5c-c2fe-4547-8fc2-e4f05a0953c7 1 Other Other +828fde84-a8a2-454e-a94a-3ed0b2ff035a 1 Other Other +828ff883-0dbf-46f6-a0d7-4364c52d48a8 1 Other Other +82902487-3dc2-4f0c-ac2c-df615a342654 1 Other Other +829038ef-17a6-4237-a651-5df748bedd44 1 Other Other +8290757e-9328-47c1-918b-a5b572deeba3 1 Other Other +82908360-0705-4d85-b23a-36c2960eeb5d 1 Other Other +8290c439-474d-492c-948f-d36b32e4aeaf 1 Other Other +8290c742-ebdb-4626-8ee8-4a0a30f72729 1 Other Other +82915061-ed7e-45af-b500-3d05a40b53ce 1 Other Other +82915176-6420-48f2-9c04-8c9a65f86143 1 Other Other +82915eea-ee4c-4d51-b670-8f500a8566bf 1 Other Other +82917d81-71da-4bb2-95ae-fdc9e43364e0 1 Other Other +8291cce1-2a4d-4fb9-a287-ab1ff4a2d6e4 1 \N Other +82923c68-5f24-485f-88d2-dd8e14b857af 1 Other Other +829250c9-cae9-4919-9a8f-57245ca685fe 1 Other Other +829255f7-e087-41c0-a1fd-c7990b4a37ca 1 \N Other +82926224-e30e-4f6b-8119-6321e05dda10 1 Other Other +82927820-e67b-4abc-a739-8127e11c1c9e 1 Other Other +82927afd-269b-45b1-b7a0-f0948a846361 1 \N Other +82932d9e-1d07-45a6-a687-15df494945a0 1 Other Other +82938bf4-c897-4dfd-a56b-cae009d8afa0 1 Other Other +8293ab98-d898-414a-9a8a-a6b5841ae5f9 1 Other Other +8293b43c-1987-4b41-9a3a-c0e690bb71c4 1 Other Other +8294cb94-93f7-4a00-bb9e-8f03453426a1 1 Other Other +8294f1f6-cd35-4e65-a56a-5977ce37f155 1 Other Other +82953ce0-f711-49dc-ab70-54323de3d362 1 Other Other +82955ab3-cae5-4795-b41b-9873dd46d5c2 1 Other Other +8295d900-2a91-447c-84ad-2b67ae2d554f 1 Other Other +8295da7b-dc9e-4f87-b378-92f56d60e065 1 Other Other +82960ff2-5689-4cf0-97c2-d93b9def1157 1 Other Other +82962235-2b9d-4882-87d6-9e3d0f66df87 1 Other Other +829650a6-f8c5-4cef-8e14-2503c8b6cd31 1 Other Other +829658ed-c65e-4bf7-837a-f6a9adc519d1 1 Other Other +82967e65-d458-4681-ac75-60fedb4f1187 1 Other Other +829680dd-e580-4dcf-9e74-40d5976e2d1f 1 Other Other +8296b6bf-a1ad-4f59-8b6a-3dce36c2a775 1 Other Other +829708c7-3d57-4e2f-a67f-9753fc3d2ed8 1 James Other +8297205e-8927-430a-8db3-3fc09a8309ed 1 Other Other +82975b89-6d20-4e3a-846a-de78e7c6dcc5 1 Other Other +82979c8c-5b1d-4b54-92c8-e688f4eb44de 1 Other Other +8297d904-0f10-4c7f-a858-15205f8923a3 1 Other Other +8297ee5a-ead8-4183-9af6-1909ab00bcac 1 Other Other +82982457-1673-40dd-be11-4085938d6e2d 1 \N Other +82984818-add1-45cb-9bc4-24eb02112c61 1 Other Other +8298958e-e5fe-4702-bd3a-52b1e3260856 1 \N Other +82989968-0f47-4f99-a24c-155bba6a3d7d 1 Other Other +8298f14d-6e68-491d-8a4d-eeb83390600c 1 Other Other +82990cc9-4c9c-433b-ac4f-68cb5947fa74 1 Other Other +82990d93-0d94-4739-9bf3-8b76df24fbff 1 Other Other +829943dc-2716-4b96-bff6-f09bbc5dc751 1 Other Other +82994464-92c9-4eb7-bf5d-3860f511d81c 1 Other Other +8299a1ce-ce3b-4054-88c1-02fe85f8a668 1 Other Other +8299d4e4-d06c-4023-aafb-d5217ab852fe 1 Other Other +8299dd53-7f44-4238-b118-c21873ed339e 1 Other Other +8299e125-2dc6-47ce-8944-a1326ece9e15 1 Other Other +8299fe78-d26c-4601-bf70-6781f9236a17 1 Other Other +829a0716-22aa-4ec9-bd11-8665d12e6f89 1 Other Other +829ae8f1-aeb1-43c5-a03b-a7d4d887443d 1 Other Other +829aea3c-3759-4070-a69b-17e33956e5b3 1 Other Other +829b5f18-a3dd-4e7f-b188-67e6ae22f61b 1 Other Other +829b6d5d-0c10-4abc-8a0a-6b8adc0a8766 1 Other Other +829b830a-3164-4ba5-b4f0-d038cd122e8b 1 Other Other +829b8531-6c09-4498-bbe9-07e9baad7c8e 1 Other Other +829bb667-9979-4329-a2fb-b0ee76c37c68 1 Other Other +829bc4ae-0e0b-4e04-9ee1-8a9e3b17168b 1 Other Other +829bd0e8-6068-4918-90c7-99a0549cef5c 1 Other Other +829bda7d-01fd-4bfa-95a5-7e852169cf1b 1 Other Other +829bffc6-174e-4404-8e24-00420a804082 1 Other Other +829c010a-877b-40b3-b57d-b34d878ffd64 1 Other Other +829c27df-923a-4a87-9d8f-b752fc8452c2 1 Other Other +829c64a7-da0c-440f-b958-46b59e97b52a 1 Other Other +829c6bc5-dbfb-46a9-bf75-21adf1490bec 1 Other Other +829c90de-51df-4e86-9e43-0231e2d0eef6 1 Other Other +829cb619-0689-4599-a5b6-7f50f74756be 1 Other Other +829cb667-3d02-43a8-bf0e-8530870d12e7 1 Other Other +829cb673-7b96-463f-aaaa-57ed0da246c7 1 Other Other +829cbf47-3901-46aa-b994-a18153b2dfbe 1 Other Other +829d0650-7549-4e40-9818-1df1499d4e28 1 Other Other +829d3cb5-8380-49ea-8194-90bceb49ec51 1 Other Other +829d9c2e-872f-4094-b74e-4274c1dc4f53 1 Other Other +829dae7f-f53a-4a6a-9a0f-0de711df0f87 1 Other Other +829db8ed-4e97-430f-b5c7-c67f919d948c 1 Other Other +829dffb1-89a5-48cd-8367-2048a2a98c6b 1 Other Other +829e2db2-b3c5-4019-85df-0ce757ed6f08 1 Other Other +829e560b-5918-4bfa-822c-428f6b86654e 1 Other Other +829ef0b1-7bdf-4a52-92c8-e951f3cc0609 1 Other Other +829efb45-1d64-46a8-b85d-3f78f59fbfa5 1 Other Other +829f10e3-ac26-4ed3-a389-11788d1d2d43 1 \N Other +829f2e2f-5ed3-437f-ac70-7a77652b2a33 1 Other Other +829f4e81-04ae-4454-814a-6cb6cc904d22 1 Other Other +829f774f-9f43-4762-b976-91f34ba6e858 1 Other Other +829f8fd9-1dbe-49c6-87f6-706a4325aee6 1 Other Other +82a01668-dea2-46e3-b542-ef98e314056b 1 Other Other +82a05017-9dbf-458b-8a96-561f64de649e 1 Other Other +82a0519a-0bfe-4bd2-9f11-8982b06bc3ff 1 \N Other +82a11870-b1ea-430f-8013-613298095e9f 1 Other Other +82a17c40-6038-4d87-b955-fc2a380c4fe6 1 Other Other +82a1cc5e-9afa-4cda-a265-b614813f4755 1 Other Other +82a1dcd1-6697-479a-86f0-8ece7831c522 1 Other Other +82a1e780-8d50-498a-9632-6a4d1f33f5c8 1 Other Other +82a23cad-8fb5-45b0-b5cd-cad01ae5fc67 1 Other Other +82a24234-80e0-4aa2-af5c-ee1d89c987b4 1 Other Other +82a32281-f1a6-4483-ad08-2df0af42312e 1 Other Other +82a33f2d-2381-4850-9992-784fa4bdf1d8 1 Other Other +82a3ba59-6665-4838-87e3-c76e0e437a44 1 Other Other +82a3d404-9b01-4982-8792-a0eb0936b1d2 1 Other Other +82a4151b-3fca-4d1d-b45a-163267da2351 1 Other Other +82a41e26-d279-46f6-90a2-3a733a6bf342 1 Other Other +82a4a749-2f8f-4449-9eae-d04fd5312100 1 Other Other +82a4b7d9-91d4-4eda-86da-8c14499ddd4a 1 Other Other +82a4cfb0-714a-431d-8e3b-fd23661476b5 1 Other Other +82a4d5b0-3ad3-4427-95d5-ae2140df6ee4 1 Other Other +82a50b40-433e-4fab-85ab-9da7ce16948c 1 Other Other +82a55588-fee2-4a78-abfc-8322e66c4de4 1 Other Other +82a5816a-2262-49ae-a588-330d0d58537b 1 Other Other +82a593a2-e0ca-459a-8a14-6f451bb399ef 1 Other Other +82a598d3-c952-4bd2-a40a-ab369aab7da9 1 Other Other +82a5a6d2-f908-47c5-97e7-c0726b9d894b 1 Other Other +82a5b266-fd80-4bc5-be33-4c1ecb69d3ea 1 Other Other +82a5b4a1-a85e-4a9e-bcd6-775cb39115ca 1 Other Other +82a5cc4d-d38e-47d3-9687-6cbbc2a6bb4c 1 Other Other +82a5e706-f265-4853-aa13-371b6f9c2415 1 Other Other +82a5f94f-46a6-4099-9fd3-77dcc52b6bdf 1 Other Other +82a620b9-9b7e-44cd-85c7-7f10aac16f95 1 Other Other +82a685eb-6725-4ef9-acd5-71e5b8c81a98 1 Other Other +82a68833-64a0-48be-948e-ae21e26dfd5f 1 Other Other +82a6988b-163f-477e-adec-0a6cce4de6c8 1 Other Other +82a6df83-c2d3-410a-af69-f36939c0368d 1 Other Other +82a71559-413c-4e70-a120-aee8b020352a 1 Other Other +82a71999-e528-4909-9bfc-59e0e32b5400 1 Other Other +82a77e20-8fcc-46f4-a6d5-1564cedf813c 1 Other Other +82a81027-d1bb-4efc-8ab6-f7811c8963a6 1 Other Other +82a817ce-bbec-44a4-8cca-28f8a747bd83 1 Other Other +82a82927-9346-4475-859e-9bd8cf78a03a 1 Other Other +82a866e1-102b-4060-8c0d-c85848e0c8b6 1 Other Other +82a89eeb-326f-4f4c-a561-1294ba0e053d 1 Other Other +82a8dfe5-9d6f-403a-a91e-d4b03cbe25ad 1 Other Other +82a8e3a2-579e-47a5-91c0-c1a11629f174 1 Other Other +82a8e86f-46bc-4473-8994-b20261e5152c 1 Other Other +82aa003d-1fd5-436b-973b-0f843ff158f6 1 Other Other +82aa1808-0d09-40f9-8ca0-94513a32ccd3 1 Other Other +82aa1f7a-a136-4c6b-8b66-be2e6e5a0f99 1 Other Other +82aa35fe-29b8-4ee2-a4fd-bde34d2fa59f 1 Other Other +82aa546b-6f65-4c72-9272-e9df8a387ae8 1 Other Other +82aa6b21-dc03-4808-8f3e-223ee699fe0c 1 Other Other +82aacec7-4aca-49a7-935c-463c094f09bc 1 Other Other +82ab23b2-8064-4f51-b5c9-1092f1292344 1 Other Other +82ab39f4-7512-4239-b7b0-18078c36ebc9 1 Other Other +82ab47eb-34fc-4e5e-af22-35e6e12afbec 1 Other Other +82ac91e8-c650-48b7-8a59-2d3410edb315 1 Other Other +82ac9b45-b615-4252-9f0e-2850517315db 1 Other Other +82ad0998-e113-44ed-9b37-5d1378c1db30 1 Other Other +82ad1f09-04e8-46e6-aa3a-c50e883f5c08 1 Other Other +82ad2bd2-911a-4908-9248-a655c9444830 1 Other Other +82ad3e4c-1c9f-4245-a700-39158f879145 1 Other Other +82ada3c9-0aad-4d8e-86e3-7ade28d92419 1 Other Other +82adb30e-214f-4a5c-80b8-2e0c0d7601a4 1 Other Other +82adb6f6-aeb0-4f88-8fbf-a4f005332988 1 Other Other +82adf624-ba72-4d54-8132-676a93a3b357 1 Other Other +82ae2077-5341-4f16-a3d3-bd824d0aa2ae 1 Other Other +82ae2e8d-4bf4-4415-8877-65a1a7349dbb 1 Other Other +82ae866b-bd29-4aa7-9b6d-f1ce33de832b 1 \N Other +82aed54c-0b9e-4211-9630-ad387eadea7a 1 Other Other +82aeee39-2c8d-4af5-b6c1-831e35126e9a 1 Other Other +82aef6ff-f1bb-4d1a-aba0-0179cfd15c9e 1 Other Other +82af314f-9234-4444-b9fc-51ff83ce3e44 1 Other Other +82af4e9a-b195-4548-860f-fc86d283ecad 1 Other Other +82af7bb1-f608-4a0d-a19f-70bd5c1a4e8c 1 James Other +82afc7c9-63cf-43e3-a4d1-84a706c28256 1 Other Other +82b00315-5864-4476-bcb9-b93481538a13 1 Other Other +82b03ac4-b3e6-4a2f-913d-38fd56cc91aa 1 Other Other +82b09863-dd18-4abc-83e4-95f6a68e0105 1 Other Other +82b0cc06-18a3-4ddb-94be-29a35bd267f3 1 James Other +82b0f449-dc97-4471-a589-ca5c26def82d 1 Other Other +82b122b8-ec41-4b3d-8d78-2255b2efbf4d 1 Other Other +82b164bb-14dc-4fbf-93b7-2045abcedd87 1 Other Other +82b1a23d-2ffe-4150-b4a4-a6bc23cbaf0f 1 Other Other +82b1b19d-c147-4d47-9900-3e77cd2268ab 1 Other Other +82b22ba5-aea4-40c2-9b5d-992df5055a9e 1 Other Other +82b24161-bb2b-4224-a597-27bed6b1ae1b 1 Other Other +82b2843b-a15f-4681-a5db-5a6552e6bdc5 1 Other Other +82b29a20-d520-45c7-a72e-1d5ea09f9e58 1 \N Other +82b2de58-964d-4168-8509-828af23183cf 1 Other Other +82b31885-3e79-49d8-9bde-e4d9be1ceadc 1 Other Other +82b32a7b-b824-453e-8f2d-41ab48d13c81 1 Other Other +82b37abb-e722-4c4d-a2bb-e195c3c0af7f 1 Other Other +82b3ab9b-af77-426b-a632-b46c37b55157 1 Other Other +82b3bd4d-71a8-4243-aebd-2df498a5af13 1 Other Other +82b3dd5f-b3a5-4cc5-8744-2e5f83a41961 1 Other Other +82b40879-6a72-4cdc-b9e2-92988abed155 1 Other Other +82b40c05-f59e-45ea-8b4a-71e70ae9ae65 1 Other Other +82b4134e-635f-4970-9461-525c343eadca 1 Other Other +82b456ee-004d-49a6-89cd-dd03c13509ff 1 James Other +82b46fde-1f8b-4ba2-893e-18536ff4c127 1 Other Other +82b473b3-4fea-4969-8cd6-a78497daaa11 1 Other Other +82b4a2bc-a79d-44f7-8b68-a895d46a87f5 1 Other Other +82b4be12-39fe-498e-995e-c99bab815b0a 1 Other Other +82b4d052-a406-4e1e-973e-5e205ffe7657 1 Other Other +82b502ec-8b48-4a4b-a7b2-ef3aeb2f73f0 1 Other Other +82b5207b-abe4-4589-82d8-a8c1f30b9b19 1 Other Other +82b53571-9b08-433a-af02-c59e46b558fa 1 Other Other +82b5397b-e122-4f71-8417-dee4f09b3468 1 Other Other +82b572f9-0b34-48e0-a227-f7803a8c9c9e 1 Other Other +82b5875c-410c-47e4-af4e-136efc2cda4d 1 Other Other +82b5a1fc-3775-4e46-8c38-99807c4e16d7 1 Other Other +82b5a42d-6f3e-4523-acc5-e71b4d41588a 1 Other Other +82b5a9e5-9832-48ec-885c-cd0f21118ea5 1 Other Other +82b5e3d6-fa02-481d-82de-7725a5aba0df 1 Other Other +82b5e9de-be1f-4e07-b43b-ee319d33683c 1 Other Other +82b60077-7657-4aba-a836-545b5ac7f440 1 Other Other +82b61a91-3d59-47c1-a8a8-e037c8ea46ec 1 Other Other +82b62f1c-2746-4423-9b5d-a8b1eb8a22ba 1 Other Other +82b6498c-6fcf-4b77-8372-4591337e1e2a 1 Other Other +82b6519b-e81e-4535-9870-9e74b213791a 1 Other Other +82b65a00-cd83-48db-b6b7-4ce14294892f 1 Other Other +82b65c1e-8013-4754-8b57-86a6285744cc 1 Other Other +82b65f9f-972a-4af1-9c18-e50ee0c7d20c 1 Other Other +82b692a4-a1e4-4f42-9b95-fda0d83f9195 1 Other Other +82b694a6-16c3-4c15-a220-a4dbec774c44 1 Other Other +82b6a06f-c516-46a7-8818-f367d811af89 1 Other Other +82b6fc98-6fbb-4213-9aa6-c6978966aab3 1 Other Other +82b723c3-b029-406e-aef4-daedc570593e 1 Other Other +82b74e0d-d07e-4168-ad47-66dc48d259e7 1 Other Other +82b7a5d2-a41a-413a-b46a-3b22441385fa 1 Other Other +82b7ce00-d047-4fc0-bd71-62cd4e9ca5ce 1 Other Other +82b7e3c9-c3de-485b-9b94-0dcaf58ccc3e 1 Other Other +82b81d46-e336-439d-83f1-e8a0bf31e5d2 1 Other Other +82b86405-3093-4007-a422-ec0899b498ec 1 Other Other +82b8bfb3-103e-44ec-83bc-0a742063b901 1 Other Other +82b8fe39-8047-403a-bc52-0287c5195c59 1 Other Other +82b940ff-1edd-4012-8aa5-7ea77c91e7d6 1 Other Other +82b95df9-6480-4d56-a4f7-73e5cd5fab53 1 Other Other +82b97089-55ec-4707-b509-02f732b2e01d 1 Other Other +82b98dfd-37b2-4956-a121-d2b25fb37539 1 Other Other +82b9a888-a677-40c5-9a0c-4290a3779fc1 1 Other Other +82b9abf1-3624-4508-af42-c9edee6662ff 1 Other Other +82ba040c-380c-487b-ad5d-0a92c738e97d 1 James Other +82ba34fe-d86a-4b93-8dc0-19ebdd0e5a1c 1 Other Other +82ba35e6-433b-4fdd-958b-3c14b225a9ed 1 \N Other +82ba6042-1a6b-4646-8cd8-936dc0c8f7f9 1 Other Other +82ba9fa6-97ae-4fa4-a67f-a451a878107d 1 Other Other +82bb1ef3-2a67-4df7-9cc8-854434249c91 1 Other Other +82bb40a2-4dfe-41a1-8bbd-760f095cec2e 1 Other Other +82bb48d1-0126-4ea5-b631-9cfeab18852f 1 Other Other +82bb85b7-5500-4d46-9ad3-be519d692f8c 1 Other Other +82bb8c5b-113a-41e2-a32f-448371991831 1 Other Other +82bbb981-00b5-4f22-b131-875ccfe2f40d 1 Other Other +82bbf1a4-7a15-46b2-8760-efe4a345fe2b 1 Other Other +82bbf623-f9bf-40dd-b5b1-4dafee0e9884 1 Other Other +82bc518d-3403-468a-9820-3723cb4064dd 1 Other Other +82bcbdf2-e968-4c86-ba79-cee8be53150b 1 Other Other +82bcdbbe-2040-4806-82f5-7a1d14dec28b 1 Other Other +82bcdd3d-a753-4a54-a2f6-8352c38007fc 1 Other Other +82bcfc19-2e16-49d3-b6bd-8a014fd48db1 1 Other Other +82bd2ac4-cd61-4303-b592-d5fb3c4aa833 1 Other Other +82bd42ef-dd40-4275-858d-527f4cb6ce82 1 Other Other +82bdd156-44c9-4245-91d5-eebbf9ba1e98 1 Other Other +82be514a-b8ce-4a05-b755-9729f5ca7030 1 Other Other +82bee8b5-c65e-47bc-97db-ff120a7c80eb 1 James Other +82bf427b-62fd-41be-8162-71450dbfa9d4 1 Other Other +82bfbfe3-9ad9-4bc2-9e5f-7defda853bf6 1 Other Other +82bfcde2-b2d3-454f-9b18-4a18ea5a53bc 1 Other Other +82bfd7aa-62f0-4fa4-8b23-e260a10ad3c9 1 Other Other +82c04379-068a-4661-8efd-c7258fe0e254 1 Other Other +82c0e0ea-350e-4561-9a11-7cc2fc738e95 1 Other Other +82c0e774-a9d7-4c14-b979-bf332843ea74 1 Other Other +82c0f7df-ac00-45ea-bc1d-5b20bc6eb7c7 1 Other Other +82c0fa60-aa16-485e-b589-74265b7e7d6e 1 Other Other +82c0fb91-4c70-4b23-80af-7e04b4548844 1 Other Other +82c1224f-b496-4921-b99c-096395acaad6 1 Other Other +82c1a9f6-e0eb-42f9-8c0f-ec6b8439831d 1 Other Other +82c1b34c-2817-4495-b1ec-ab00e44b8431 1 Other Other +82c1c270-0075-4393-abf3-d6d625ce44b8 1 James Other +82c1ce7b-554f-454e-bd12-8278684ad029 1 Other Other +82c1dbed-32ce-4b4a-a68b-ffa546e776de 1 Other Other +82c1efc4-ee08-4780-ac3a-311770c561cb 1 Other Other +82c21667-f341-46ab-9805-d8a3bff37b59 1 Other Other +82c25af2-8956-4f8a-aec4-a16e0e2a1860 1 Other Other +82c2f688-071c-442c-83db-b3f018062448 1 Other Other +82c3068f-2952-49ad-9d2c-98f23c5ac318 1 Other Other +82c32d7d-fc25-4b6e-88fd-f1af01c0acde 1 Other Other +82c33493-9eb0-42b9-b46f-53712663cefa 1 Other Other +82c338fd-08cb-4669-8876-e504ca60f5f7 1 Other Other +82c3478d-cda4-487a-833c-de85a9c0cff8 1 Other Other +82c37607-d83e-4d3a-82dd-a93f4222e4aa 1 Other Other +82c3aa38-c51c-4eb9-8d34-652368d00cb1 1 Other Other +82c3bfa8-0b2b-4a93-9198-765c53ec9ab4 1 Other Other +82c3c4c0-5b7b-4485-91ae-e1fc3eaf9a73 1 Other Other +82c3ff39-5df1-49e6-ad07-69eccca4ffd6 1 Other Other +82c43101-24df-46ce-b63a-4088460b996d 1 James Other +82c45837-2702-4223-8b5f-cc8a410bf365 1 Other Other +82c4d4c5-1522-439d-b7ca-d5fe62fd79bf 1 Other Other +82c51789-0a56-49b6-ac7a-15bfeb08cb86 1 Other Other +82c566e5-d520-485f-9eab-8a6456e271a0 1 Other Other +82c57265-1cfd-4036-ad4d-93c785da3591 1 \N Other +82c5b4e1-0316-4bd3-845e-9e7fd1f71cba 1 Other Other +82c6896a-c229-42be-8261-e776dc874f9e 1 Other Other +82c68c5a-9e99-462e-8daf-2cbd5067ec0e 1 Other Other +82c6a967-34ca-484e-8707-9cd9f98ff014 1 \N Other +82c6b6d9-81b2-4ec7-b16d-57e11dff3e7c 1 Other Other +82c6b7bc-e0ca-48b0-a314-03b1322a95e2 1 Other Other +82c6d85b-6d4e-4721-9e3f-a6295d59bfbf 1 Other Other +82c6fe7a-94ea-4423-b462-7912c7409161 1 Other Other +82c736ba-bdb8-406e-ba4a-050e139d918d 1 Other Other +82c737a6-4a17-4b24-ab67-97ec71f015b5 1 Other Other +82c77059-920e-4ef8-bbc9-aaeb16efd8ed 1 Other Other +82c79106-279b-4ce2-8875-c52d35d40088 1 Other Other +82c7bf4a-6bac-48af-af28-a21bb444464e 1 Other Other +82c7c87b-bbb0-4ae0-983d-350f61f0863e 1 Other Other +82c822be-2791-42ae-a9df-fb3a2622dfbd 1 Other Other +82c88d87-1834-4c21-91c7-15053f6aa5af 1 Other Other +82c8dbbc-12a6-47a0-a61b-f36f79f887a0 1 Other Other +82c8f6e4-b675-4fc0-a993-431370973cf4 1 Other Other +82c911b6-251a-427e-b112-3c8f6057166d 1 Other Other +82c9123d-6346-4c06-88f3-986d13c9513a 1 Other Other +82c9311a-b90b-4e11-b2a0-f20fbfa1df52 1 Other Other +82c94550-6435-4577-ab5e-025873c7fbc9 1 Other Other +82c9d03d-eaee-4e0d-8db8-1b64a4766a3a 1 Other Other +82c9de88-3cfb-47b8-a4d6-a5a9a25da933 1 Other Other +82ca08be-5b7f-458c-9219-e14cf6aec895 1 Other Other +82ca2a17-75d8-461e-a712-a9a484c0114c 1 Other Other +82ca2e90-3fe8-4ab0-8df1-96ac666e00a9 1 Other Other +82ca3696-64c9-4364-b8d0-2433dde0bee3 1 Other Other +82ca5edb-5535-4a2f-8bed-d465b0f44814 1 Other Other +82ca7a85-8df9-4648-9db2-4afb3a4bd30a 1 Other Other +82ca7de7-8e0c-4915-8b77-a69f651ed809 1 Other Other +82cae4a3-8647-4142-ae62-d41489919058 1 Other Other +82cae978-8978-4ae3-ba9e-f4153d6c36d2 1 Other Other +82caea4c-8571-4eef-9e8d-6e2a4ce41833 1 Other Other +82cb5bea-522a-4ae3-8bfe-b79b0e777029 1 Other Other +82cb7f3f-8896-4d0d-8dca-e4a6d8b8fb1e 1 Other Other +82cbf2f6-bff6-4f8e-bf1a-22cbb1d94c56 1 Other Other +82cc12c0-06f8-4a39-9c58-efe575ab7c57 1 \N Other +82cc357b-b68b-4124-a938-d47bc53089d8 1 Other Other +82cc3fb9-ee49-412e-9802-b1f2228d5202 1 Other Other +82cc7b2a-9452-4bec-81eb-30e8453d58d7 1 Other Other +82cc7ea9-c77c-4c41-9f5d-af44fcd9b56c 1 Other Other +82cc8692-8941-46a5-9454-0253c9656774 1 Other Other +82ccfdaf-b7f1-46c8-a63d-1443c4479d34 1 James Other +82cd1922-14ff-48ee-919c-21e089992cad 1 \N Other +82cdfcd0-7639-455b-96a8-714a7cdb6d42 1 Other Other +82ce88be-be59-458a-8b7a-39ca7a6f1eb6 1 Other Other +82ce8e5e-369c-4ac1-8737-e6480fadca49 1 Other Other +82ceb56d-0ee8-4d7f-8745-08ec16607fc1 1 Other Other +82ceb5e6-7cd9-442f-918a-afda3e62d861 1 Other Other +82cedd9f-8549-4f12-a731-a835284bce26 1 Other Other +82cf1596-120e-4746-856f-4417a9533c3b 1 Other Other +82cf26f4-473e-4a45-8c8d-690bec08f34f 1 Other Other +82cf3f98-49b3-43b4-b825-fcd21b6a88b4 1 Other Other +82cf4159-4169-41eb-aabf-14eebc8c8ad5 1 Other Other +82cf4323-1d0c-4943-96b3-981297ffaf76 1 Other Other +82cf86f7-0c4d-46e7-8567-4f59e59f5ed0 1 Other Other +82cfb584-14fd-4111-b84f-8856d4211ecd 1 \N Other +82cfcd66-c00b-41de-83b5-3ce331641d86 1 Other Other +82cfdfbf-964d-430c-9733-8e1cc3425f77 1 Other Other +82cfec1e-387b-47f3-bd87-fe66bdf90558 1 Other Other +82cfedd8-494b-4104-9424-cde5fb12feb6 1 Other Other +82cfedeb-6915-4732-abdd-05563e747248 1 Other Other +82d0104c-29a9-494a-a4bc-529cda01f3fe 1 Other Other +82d0546d-8e0f-4037-b8f6-021b8c2aab6e 1 Other Other +82d091c4-c5f9-4a6e-9563-029dca9c52f3 1 Other Other +82d0b7b6-31e5-4988-9b87-ee61a2478515 1 Other Other +82d0ba07-04d5-40b2-a113-9a6277294b21 1 Other Other +82d0c117-f53d-4ae2-85d8-1c3a79e5d16c 1 Other Other +82d0df03-cddf-4fb0-ba1e-15a6d5515f59 1 Other Other +82d0f5d5-4bd5-4d04-8578-0e4b77db9f7c 1 Other Other +82d188ea-375e-4fca-aa75-688bbe6747fb 1 Other Other +82d18d93-9c3f-4c7c-9a5a-5ccf8242ecb1 1 Other Other +82d18f26-36c7-4195-8647-875b4eed67f2 1 Other Other +82d1a5ce-8272-4e2b-ab14-8506f2d3c1b3 1 Other Other +82d1e4e4-f5d1-47ae-bbb9-ea49dc5c315b 1 \N Other +82d1ec8d-4d3f-44e2-8b60-e1e02d4da340 1 Other Other +82d1f950-4eaa-4cc9-b1a8-adf4da1bf6cb 1 Other Other +82d22561-6618-40b3-8253-e496adc3054b 1 Other Other +82d249b8-b38c-4115-9575-52fa305c13b2 1 Other Other +82d25960-3cbb-4956-a6b0-b47f8c27def0 1 Other Other +82d27d0b-69c7-4d64-b34b-d6fe620c86a4 1 Other Other +82d2ad73-c952-4f4a-b300-5aba6dfdaeb7 1 Other Other +82d2d91e-30b5-44b4-abdd-03cb9303af65 1 Other Other +82d2e780-3390-4aee-8715-b256f9b1c96c 1 Other Other +82d30f0a-3cdc-4d61-889e-b7212c7e1015 1 Other Other +82d32450-e66b-4c18-8c3e-68766363b31c 1 Other Other +82d358fb-fe58-4c6a-b6d7-f7246a89a8cb 1 Other Other +82d3a0c2-3c8d-41f3-b434-411ae6f1cf6e 1 Other Other +82d3abbc-c488-4477-a8ad-f9ab891c8cc6 1 Other Other +82d40aee-92de-11e7-a65b-fa163e8624cc 1 Other Other +82d476e3-f5b2-40b5-a9d8-141885b11f66 1 Other Other +82d490c8-b991-4a35-940d-858be10a025e 1 Other Other +82d49ac3-972f-4be1-b042-3702fd4f6aa1 1 Other Other +82d4b390-5c6a-4907-a831-a2edfc8782d0 1 Other Other +82d4da65-5968-498a-94a0-eee8697df98e 1 Other Other +82d51130-001b-4489-a7c3-5be9e277e0ef 1 Other Other +82d53f2e-4dab-41c0-84d5-c78e17d48015 1 Other Other +82d57bef-9763-4bff-b46e-504e8b56a11a 1 Other Other +82d583c0-a010-4bbd-8843-e045bbdd1fb3 1 Other Other +82d58da6-242c-475a-bb0c-774ab05e96c2 1 Other Other +82d59aa3-832d-4561-ae2a-dd9de09b02a6 1 Other Other +82d5b186-4bc6-4666-85fb-c880a079aae1 1 Other Other +82d5dbd3-77a4-495f-ab0c-970cd4843eb4 1 Other Other +82d5e4d3-9161-4383-8a1e-ea5f003ddc17 1 Other Other +82d63acf-934c-49dc-a48e-af886762a3bb 1 Other Other +82d64752-9ddf-486c-903e-4a6f21a0f7b6 1 \N Other +82d64c70-3b6d-4425-bad5-c6b92817c2c6 1 Other Other +82d66aeb-616f-44f1-ab8c-8d82cbb14c67 1 Other Other +82d68f2e-5111-4295-872e-01dcdcc7f529 1 Other Other +82d6999a-551c-466e-95cb-229c6cf4daf2 1 Other Other +82d72bae-298f-4d65-91fd-c39d7f43c341 1 Other Other +82d73f15-fe5c-4002-b437-2dc43e582d11 1 Other Other +82d74c51-7573-46ce-82ad-ef548014be22 1 Other Other +82d7a7ee-c6fa-4db2-9715-18354c5eca3f 1 Other Other +82d86d89-4963-4e97-8264-4dacb8da7c66 1 Other Other +82d87152-5588-4c9c-a1d8-f0a0614f2970 1 Other Other +82d89ed3-f3d8-47a0-a202-48505f73576b 1 Other Other +82d8c3a2-f23e-4007-a4fd-b543aaf3232e 1 Other Other +82d8e398-2419-431a-9271-6cb0eded4080 1 Other Other +82d937ff-d5b1-4121-8887-f272d875eb44 1 Other Other +82d956e6-7d31-4f29-aea4-f1a3c3e78b88 1 Other Other +82d966cc-1cae-434a-b5ec-454be7d9a375 1 Other Other +82d9715a-a346-453e-8e29-c7b4e643c48b 1 Other Other +82d9a0c5-8992-4ea7-a976-6e7ecd295c0d 1 Other Other +82d9cf02-cd01-425b-83c5-49e6f9807ecb 1 Other Other +82da1905-878f-41f2-83bb-5f9810619be6 1 \N Other +82da2fea-1c80-4cf7-a8d6-e10ca6a5bc0e 1 Other Other +82da817c-1fdb-49cc-8d6b-74d78f38db3e 1 Other Other +82da91f3-ba31-497f-b6ab-998aaf87a547 1 Other Other +82dab80c-c6bc-4c93-8ff1-a363c3748c4a 1 Other Other +82dacb4b-370d-4df6-bb22-bf6645b5515e 1 Other Other +82db5764-3551-4f44-8eaf-340436fb46fa 1 Other Other +82db681b-b57b-4436-9c27-916bdbe57d5b 1 Other Other +82db9db3-b715-4110-8c41-a122fbdeb185 1 Other Other +82dbc909-d54f-4d0d-b147-cc07853a4d5c 1 Other Other +82dbcdb0-1801-4a93-b807-1c77bb902e67 1 Other Other +82dbde25-b7fc-41ab-b085-f479fde546a4 1 Other Other +82dc296a-eb2d-4503-a53f-f8104d26e1c4 1 Other Other +82dc50a4-06a1-4717-8da4-7e8360d1f414 1 Other Other +82dcb1d8-8a9f-401c-8479-86e674f65671 1 Other Other +82dcb5c2-c574-4722-9408-f543ba4f104d 1 Other Other +82dcd952-a82d-4bfb-8b47-7c719664e934 1 Other Other +82dd35f2-ab4b-43db-8734-74369f5f56ad 1 Other Other +82dd4de9-ff98-4264-9152-aa5a498f05f2 1 Other Other +82dd8136-0c92-482d-b4af-38f1f5711ef4 1 Other Other +82dde143-b139-41b0-a551-2914208a59aa 1 Other Other +82ddee12-be24-4da1-9706-a1beb4b1f6f0 1 Other Other +82de5646-5da8-4358-9c7a-4a0d7ff46633 1 Other Other +82de72a5-e384-4da3-8085-21d6b02e166c 1 Other Other +82de76cb-515d-48e9-a5ba-f51d709c53c9 1 Other Other +82de7a05-0cbd-4cd7-97a2-0a637667a63a 1 Other Other +82deb711-cec8-45cd-81ad-48b64bc30c0a 1 Other Other +82df022e-aa2d-492b-bc00-bebf1d0bff82 1 Other Other +82df6218-2be0-4ee2-aef6-60af3cb94155 1 Other Other +82df6d76-4a78-4dfb-af9a-cee8e55a4d89 1 Other Other +82df8d34-32c3-41a2-b044-8c296502e87c 1 Other Other +82dfc903-5135-4a4f-a79a-c4e98d973b7b 1 Other Other +82e01f6d-2d98-46eb-b8e0-6300b4ac895f 1 Other Other +82e08546-0ba1-4bdd-9362-fa5fea1d5aae 1 Other Other +82e0ceab-d234-41cb-89dd-02f62d004ddd 1 Other Other +82e0ef1f-3cc3-42a0-818a-90fdfa158791 1 Other Other +82e127bc-f61a-416c-884b-9821e4048305 1 Other Other +82e147b0-12fa-4b24-865e-abeeecfe515f 1 Other Other +82e15067-c5be-459f-ae0e-d6056618b311 1 Other Other +82e1650a-50cc-4de6-9d13-8a4f90fbc886 1 Other Other +82e1de9b-6743-4e6d-b53e-e1a5d2a9b773 1 Other Other +82e2121d-2d23-42b5-b0bf-06b16148d8ca 1 Other Other +82e229a2-efb5-4ff6-82ee-153f676d0090 1 Other Other +82e25ca4-fb83-4999-ab09-37753d816a59 1 Other Other +82e271ea-e349-4a17-917f-207227674da1 1 Other Other +82e28451-2145-4345-bae2-45a6a862de70 1 Other Other +82e314d9-4449-4381-a664-cf7f9e7e13cc 1 Other Other +82e31696-16cc-496b-8f32-cdfc2e6917ce 1 Other Other +82e3ec9a-1355-411c-8624-363f43fc1ff2 1 Other Other +82e3faa8-a369-4af5-83ca-ca8d1d81d36f 1 Other Other +82e408b4-2019-477e-9f69-a0db59d92aba 1 Other Other +82e41976-7554-40cb-a0d1-bcb0bfdeedfa 1 Other Other +82e4412f-e36f-4f26-b599-6b9bcc5148aa 1 Other Other +82e441d5-fea5-43a8-b033-c923bb5ea71a 1 Other Other +82e4ab2d-cbe3-48fc-8424-ee95911b0c07 1 \N Other +82e4d5e0-f9fc-4e1b-b0ea-a1903619d1b2 1 Other Other +82e51d9b-2f9e-44a5-9202-27632c4fa456 1 Other Other +82e52488-535e-4b7a-98dc-430b08fc1b5c 1 Other Other +82e55db8-a890-4ef7-af85-36babe2a78e5 1 Other Other +82e56e19-9c26-4f1c-983b-733b2e1c6974 1 Other Other +82e5a258-477e-44b7-b057-20197272636e 1 Other Other +82e5a279-ec84-45e4-bf08-cf968bd6d175 1 Other Other +82e5a588-d3fc-4ba8-a570-310ccb05a6a6 1 Other Other +82e5c2b0-f447-4f99-a143-953dc77e5ec9 1 Other Other +82e5ddca-605c-4400-a062-ae5748a5cb0e 1 Other Other +82e600cc-c64e-4408-9a88-835e5cae9cef 1 Other Other +82e65fcf-e638-4127-8f57-b94a0ff75a5d 1 Other Other +82e6b8fa-613f-4aad-9041-039a678c0f33 1 Other Other +82e6c595-11fb-4ff8-9c2e-7e3c79516402 1 Other Other +82e6f613-d50b-4380-a640-4d38d1c127b8 1 Other Other +82e71f9a-d933-4eb1-bed0-d1ada486cc81 1 Other Other +82e75b91-8fb5-40cf-87b5-3ed1e7a17290 1 Other Other +82e783c5-7dfa-4509-9887-487647a75361 1 Other Other +82e7a089-8732-4489-b810-09d265f21967 1 Other Other +82e7cb1b-c29d-4383-9c01-5eb0c56d6208 1 Other Other +82e7d0a5-6f7f-49de-9f40-d477078833de 1 Other Other +82e82ab3-060b-4163-8b87-80384f76ede0 1 Other Other +82e83f2d-e225-4018-a780-9257c9a107f1 1 Other Other +82e85cb6-7d88-46e2-9833-82b04984fa93 1 Other Other +82e89e32-b1d9-454e-8c6d-a5145b0c61e3 1 Other Other +82e930de-c215-40fa-be0a-6fa4802d0156 1 Other Other +82e97052-53bc-46ee-8b7b-6c7e087d8910 1 Other Other +82e97555-2c05-41c8-a823-356adab58cfa 1 Other Other +82e9e7bc-bd94-44c5-8a45-a1664c63f51a 1 Other Other +82ea2e8c-1f94-4630-9ee6-51d8d2db8e08 1 Other Other +82ea4069-de88-4b70-a592-559b7e0e21a3 1 Other Other +82ea5608-bed0-44e7-9175-e3b7c68ebb42 1 Other Other +82eae7c4-5400-464d-83a6-b792118bfec1 1 Other Other +82eb0827-9e23-41ee-b1c3-4e96564773f1 1 Other Other +82eb39fc-521b-422f-b999-ac73a345f26a 1 Other Other +82eb3a75-5d59-4619-8ead-62f24f399495 1 Other Other +82eb3e11-08ec-4e11-8330-ab1e057b30e0 1 Other Other +82eb62ee-9e1f-4ed1-a93d-31d45290f6f2 1 Other Other +82eb66d2-0b7b-45a2-ad17-cf5ad75153a7 1 Other Other +82ebb997-2a35-46f9-9203-9f1388ce286a 1 Other Other +82ebbb45-851e-4e99-b2e1-54ba4cfef380 1 Other Other +82ebc16b-0130-4d6b-8dfb-428a4be605cc 1 Other Other +82ebeed4-d7aa-4aa1-a7b1-abf35fce0bbe 1 Other Other +82ec4c8e-1ad4-4199-b364-a27e50462527 1 \N Other +82ec69bb-dcaa-43a5-8c21-4abd6dd53088 1 Other Other +82ec9ed7-5380-4706-b820-ead6b362b46d 1 Other Other +82ecbbdf-0bbf-4e64-9b11-6631b14e7bbc 1 Other Other +82ecc51f-7523-438e-892c-ef54f296ac9e 1 Other Other +82ecd356-ffbd-47ad-abc0-658dbb7407c2 1 Other Other +82ed0eb6-fd23-4a74-881a-04dd347550da 1 Other Other +82ed3d61-f861-4e79-b608-de8da80fa199 1 Other Other +82eddbdf-7b2c-4d8e-b75b-cbbb33fe3364 1 Other Other +82edf85f-40d9-4fef-9507-a96fa52ffdd1 1 Other Other +82ee6bad-386e-45c4-804b-aaf4a5e44caa 1 Other Other +82ee799a-78cf-4ac6-820b-d255708320ee 1 Other Other +82eea717-b6d5-4775-b961-02ae6ed1f6e5 1 James Other +82eeda90-452d-4151-b363-7ec9ad4966a0 1 Other Other +82ef05a2-41f5-42af-b9c4-f222d77da319 1 Other Other +82ef2c49-04b9-42e0-bdf3-cb25b1f4064d 1 \N Other +82ef7cbe-687e-43e6-93fb-b096a2efa075 1 Other Other +82ef89a4-5b39-41d9-9fe9-6f2e498016ef 1 Other Other +82ef89ce-ad4b-45a5-8053-264144d34a49 1 Other Other +82ef92e2-8210-4e38-b649-e9fd6f7dea9c 1 Other Other +82eff34d-4f3d-426b-b0dd-44f12cca9645 1 Other Other +82f026e7-40b5-4dcd-9f6b-44ec88650c80 1 Other Other +82f054bf-5d28-46c0-89e1-bf25b094231f 1 Other Other +82f0678e-1718-4dc3-b206-2f93ba2cbc5a 1 Other Other +82f111b9-4da7-4d97-890d-1c9a3d03bdcf 1 Other Other +82f12f6e-2ca1-4c24-b513-3b8d2b7b6aa4 1 Other Other +82f1975f-c296-4b66-883c-10e241abde9f 1 Other Other +82f1e3eb-39ac-4e8a-903d-9c56e1c66bcc 1 Other Other +82f1f999-b082-40b8-b285-6f29d2e4bfef 1 Other Other +82f21584-ae44-452d-9d2d-25f93a3945f8 1 Other Other +82f27f7f-f775-476b-9da6-6c89f353d2be 1 Other Other +82f30068-89d0-40e2-9b6d-ff00e0408d11 1 \N Other +82f319c5-32b3-4ba0-b146-e8fe37cdcdea 1 Other Other +82f33664-7227-422e-b842-77a0fda0f199 1 Other Other +82f393b2-f64f-47d7-b97d-a6e82ed7395f 1 Other Other +82f3b49d-7bbf-46b6-a2db-69cfe7a4ec46 1 Other Other +82f3ddd6-552c-48b1-9b46-48c20d70dcc7 1 Other Other +82f3f7d9-b61a-49fd-8409-474ce40355af 1 Other Other +82f43c2c-d25e-4691-9c2d-c59e6a9efb83 1 Other Other +82f48256-336b-4806-81e5-debb4325a601 1 Other Other +82f48b88-bd77-46bc-81b3-7d1d210b9c5c 1 Other Other +82f50a1e-c685-44f5-9b01-5c790694aac8 1 Other Other +82f52421-ecf6-47a3-878d-7ce072336458 1 Other Other +82f53545-0d7d-442a-adac-5be72cc193f0 1 Other Other +82f546d5-e02d-42d7-b655-f6812fc19570 1 Other Other +82f55878-d722-4032-8c1f-95d709bf88ae 1 Other Other +82f56524-b8f8-47d1-ab65-c85f5eeae34b 1 Other Other +82f597df-b3ae-4d7f-b173-328889ddb592 1 Other Other +82f5dee2-ca8f-429c-8205-8450cb40ef82 1 \N Other +82f6002b-35e2-45cb-bb47-c8dd5d232592 1 Other Other +82f64035-5244-4bfc-8f90-f894683e1058 1 Other Other +82f66eca-ab0b-427d-afbc-ddc699ae60b3 1 Other Other +82f6bb06-1821-4177-a677-1f0900ef40ea 1 Other Other +82f6c79a-2579-4aa7-8ab9-76ace79cd27e 1 Other Other +82f6c7b3-abdb-49bd-befc-3052fbdf67a5 1 Other Other +82f6c8df-5049-4c57-bea8-19e40f646832 1 Other Other +82f7115f-c0df-4e7b-a465-0ecfd4e0938a 1 Other Other +82f768d9-5412-40ff-9c89-40eecb74f760 1 Other Other +82f7d4ef-072b-4d2d-9be7-89e5bf43fdbf 1 Other Other +82f80f71-d3bd-42fd-a7e5-d905f9ed3c1f 1 Other Other +82f82367-f733-44af-8aef-993ee166ed0f 1 Other Other +82f823cb-098f-47cf-b3b8-ccdb55de0ce7 1 Other Other +82f830df-e144-4389-ad1c-556a4885e3e6 1 Other Other +82f88521-b44c-4336-874b-2a869fbd6a16 1 Other Other +82f8d9d8-5477-4047-bd88-28215dd8ebe3 1 Other Other +82f8de22-542d-4e33-b0ea-be8a02b6aad8 1 Other Other +82f8e097-c407-447b-9afb-60e10c628bb2 1 James Other +82f8ebd8-ce09-4edf-8fbb-071dfbcdf3e9 1 Other Other +82f8ecaa-ccd7-4acb-b4a9-c813d6e55247 1 Other Other +82f95553-a177-40ed-81f9-f89f35eb7725 1 Other Other +82f95f8b-ecbd-4177-89f0-fb90b08dc1f9 1 Other Other +82f96c1f-e274-4e91-be74-617401f74c3c 1 Other Other +82f96d63-1234-478a-94af-cd0cb9119af6 1 Other Other +82f9e7b6-ef98-11e7-9aeb-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +82fa30d4-e915-4445-96bf-effe72e003e1 1 Other Other +82fa4803-5baf-4ba6-aba2-bc8624eec50b 1 Other Other +82faa2fc-268a-4b6b-af51-50e2d54e54a2 1 Other Other +82fac424-e5e2-46ca-9d54-374cb0bc99b7 1 Other Other +82fad30f-2504-4ad1-8a46-3c7df4c9b05f 1 Other Other +82faed3c-7d9c-4939-a159-a78010b6be55 1 Other Other +82faf849-109b-476a-b40f-5632808e5fd1 1 Other Other +82fb10ae-7d6e-4990-8421-7a7ced2107eb 1 Other Other +82fb185a-4257-4c13-bca9-7346e3608c39 1 Other Other +82fb30c7-0bec-47b7-9472-10ff636bebde 1 Other Other +82fb3955-79dd-4909-92fd-f5ce3f236948 1 Other Other +82fb8e23-bbbb-4308-850c-7051757f29c6 1 Other Other +82fb9a8a-cc5a-44c3-a97f-99be0f8a0f71 1 Other Other +82fba409-3d60-4515-b78e-06d0cf98b0b4 1 Other Other +82fbd19d-8d6a-40af-8bf7-f56965e3f602 1 Other Other +82fbfd32-7491-4fcc-ba2b-aacafc9b430e 1 Other Other +82fc33f6-750a-4978-bf55-f6055a67868a 1 Other Other +82fc4848-92bf-49c4-9c56-b9ef0afada75 1 Other Other +82fc49c9-fd0b-4bec-8fef-dd30bed7fc57 1 Other Other +82fc985f-a9a6-4930-b79e-77f3918b102a 1 Other Other +82fcc85e-e44f-4e26-ac1d-45520b093679 1 Other Other +82fcf489-667c-443b-ba82-b677bd16ebfe 1 Other Other +82fd2207-98e0-4eb1-9989-f4217a180904 1 Other Other +82fd818b-ded6-454d-8418-65237e11ab90 1 Other Other +82fde4e9-d728-44fa-8db7-dc93be200dc5 1 Other Other +82fdfd3b-7aec-4c05-bbf9-b0dfd8f83916 1 Other Other +82fe4850-ad15-4f4b-beb7-7f420aa15752 1 Other Other +82fe4d2e-3c37-4b4d-ae86-aef3af96e3a5 1 \N Other +82fe555b-ec97-4966-bc82-57cb18e7efea 1 Other Other +82fe5913-8120-4dcf-ac91-cbcb6a447fc9 1 Other Other +82fe9672-f29c-479f-95df-d99923c45e42 1 Other Other +82fecc7a-ba5e-4567-bc7e-f1ed6fb2ef7f 1 Other Other +82fee033-7f68-4ffc-ab32-77bc05eb8966 1 \N Other +82fefcb9-0882-4faf-afa1-f14cb567b383 1 Other Other +82ff3688-34a2-4cee-83f9-39b9c6bc0f1c 1 Other Other +82ff3c72-eaba-4cd8-b181-ab5c09ef618f 1 Other Other +82ff3fa1-d9ca-4a35-a023-abcf9b77ac52 1 \N Other +82ff5b2c-2e3b-4369-9216-bfb5c5861564 1 Other Other +82ff64a0-de40-4bfc-a093-ef7e7ba14fa2 1 Other Other +82ff7c34-60f0-4b5f-a61e-89e5b2a16ccc 1 Other Other +82ff96f7-73ba-4f6b-ac8b-8ecae725e79f 1 Other Other +82ffb31e-3a80-419e-934d-6074e1083940 1 \N Other +82ffeb88-ce30-489a-8ea7-e3f0296f35c5 1 Other Other +83001fcc-4c54-4afe-bfbc-817ec3b44f27 1 Other Other +83007e91-6598-45b6-b501-1e6554d84cc3 1 Other Other +8300caf8-2c7f-4dd5-8081-ed2cb4143290 1 Other Other +8300f358-7416-4803-98c0-fbf299893df4 1 Other Other +8301caad-a88f-42a4-b2fb-ce81796200ea 1 \N Other +83025722-0dfb-47ad-bdc7-33ebe4f45166 1 Other Other +830275f9-1e78-4546-b9cd-d1d8a88b60c0 1 Other Other +83027786-eb47-425b-9e9e-b7df7f11e470 1 \N Other +830289d9-2f1c-4966-ac58-d3650d4cba06 1 Other Other +8302a30c-db4a-423d-a49e-6036d9dd3519 1 \N Other +830310b2-de12-4f10-ab16-04e8f7b02cf5 1 Other Other +83032066-ad7d-4a81-9d28-17065cdf672a 1 James Other +83032d96-07ac-4062-bd88-74574e69ba98 1 Other Other +830365d3-5540-4c7b-b5cb-f51adc53eeeb 1 Other Other +8303ea5a-66a9-49bc-9f70-ce9866eceb63 1 Other Other +83040ec2-5c91-467b-ae98-cf2330e69b82 1 Other Other +83041b0f-1b19-4b77-8f28-a0128bd30fcc 1 Other Other +830464a3-0751-47c2-8f80-f8d944a8f51e 1 Other Other +83046ede-8b44-4de5-b2cd-251d0f8398a5 1 Other Other +83047b4f-2add-4201-a52a-ab729f145f79 1 Other Other +830484ca-2183-421e-8ffb-def4449ad545 1 Other Other +8304a3b9-349c-4ba3-a01a-0ce7a34a4f3e 1 Other Other +8304f64b-335d-4ce9-8077-a784d4897668 1 Other Other +83052b27-7049-4465-9c66-3904563a13f9 1 Other Other +8305562b-0eee-41fa-9932-8ca25727885b 1 Other Other +83056449-04fb-47b8-8880-03476398badf 1 Other Other +8305c715-5b32-4b83-99bf-20d75fcbc9d4 1 Other Other +830621de-2ae0-49c8-816d-b2594cb65afb 1 Other Other +83064dd6-0738-449a-bf56-b14f6d965e06 1 Other Other +830663de-a61b-481d-8536-5c01dc466670 1 Other Other +830686e6-45c1-4568-b2c9-e4d80af19e85 1 Other Other +8306dc96-9678-40a9-98c4-1691638691dc 1 Other Other +8306e71a-a405-451b-a7f1-3a6eebea12f7 1 Other Other +830778c8-8fd2-4e73-aeaf-86780f142f6a 1 Other Other +8307827a-ea5e-4c12-b79e-aff84eea6c7b 1 Other Other +8307ef87-b1a4-48ec-b489-2124b05b0e55 1 Other Other +83081079-7493-452a-a8dd-6bc6ebd85492 1 \N Other +8308158d-e376-4322-a1ce-95128957e2ae 1 Other Other +830880f4-b981-49f1-aa18-5ceee12a3ab3 1 Other Other +8308c892-87a3-4eb1-b780-99dd504aa5b8 1 Other Other +8308d784-2fd9-416b-80b1-d8b052ab265d 1 Other Other +83092111-3337-48aa-aaf4-3e68c72f2f3f 1 Other Other +83092373-1a4e-499d-9196-3cf157bdd04c 1 Other Other +83092e0c-a4ee-45aa-9cad-7d583cda77c0 1 Other Other +83093503-5383-4a73-ab0b-521abf73284c 1 Other Other +8309615f-9860-4ed9-bb39-e64297d6b47d 1 Other Other +8309d1ad-9d13-45c7-b27f-d610edd345bd 1 Other Other +8309e255-d462-4b58-ae25-087d57602e35 1 Other Other +8309eaed-d9c1-403f-bc9a-da14042f77ea 1 Other Other +8309f06d-dc18-44f1-b3b2-546b2bc60e03 1 Other Other +8309f6cd-9366-4872-8c36-398925562ba3 1 Other Other +830ab842-a19d-4ba1-b5d5-5714ae0722b5 1 Other Other +830abe39-ecf4-41a1-a2fb-1a248c8302bd 1 Other Other +830ac026-1a24-4b7d-90da-7d8a21bacc39 1 Other Other +830aeb0e-6e87-4531-a544-6163d2e471c9 1 Other Other +830af296-1d40-4088-878a-fe0a7169c6a2 1 Other Other +830b19c3-2d6e-42b3-b5d2-6c0b1bf1d9b3 1 Other Other +830b4393-f438-49e3-9e1d-c065ff79c1a1 1 Other Other +830b43f9-5845-40bc-934d-99236ed83ce7 1 Other Other +830b49c8-8845-4f00-9117-0e52c7a186f1 1 James Other +830b6267-1261-450a-9ecb-bab41f9df15c 1 Other Other +830b69a2-5755-4a44-8cbb-8dc429c4ca74 1 James Other +830b7487-388e-48e7-950c-0cbcb0d337b8 1 Other Other +830b92c3-6cc8-470e-b84e-b10f2919fc5f 1 Other Other +830bfbd2-fafc-4501-8160-f9fa066d8076 1 Other Other +830c3fae-310e-42b8-a33c-5c70c5a46788 1 Other Other +830c5806-12fc-4fbd-b918-0a86f07e3885 1 Other Other +830c8a58-440d-4338-af37-7b5bb2596b85 1 Other Other +830c9c0f-8dad-4579-9f49-8809479992ea 1 Other Other +830caca4-948d-4268-b4c8-58291640d605 1 Other Other +830ce825-e8de-4ad8-a01f-76ebd1d74635 1 Other Other +830d0f40-348a-400e-a740-88ebd2a4d52a 1 Other Other +830d2af4-00ba-4519-aae1-0277cc8b018d 1 Other Other +830d4ba5-fedf-4194-99ee-32cc3bd3a41a 1 Other Other +830d802f-b1ed-40f7-9ccf-1cc8b6e647e3 1 Other Other +830d89be-227c-4502-b4a0-9bacfed50cf2 1 Other Other +830dc507-2510-4a7d-b44d-98087de12980 1 Other Other +830dfcfa-900d-4f4f-a362-02ddbe89c72f 1 Other Other +830e0d90-56d1-4db3-8568-b16a9deb1192 1 Other Other +830e1bb2-e817-4cf8-bfb0-e84e69188fac 1 Other Other +830ec84b-5917-4476-b1c7-86394bd1b411 1 Other Other +830f8c8f-30b3-4b96-b30a-4fc5f8da23ce 1 Other Other +830fb2cb-c623-4438-9d1d-9e52b8897129 1 Other Other +830fdf0f-34a1-4072-a5e3-ed83bdae7ebb 1 James Other +830fe1d9-a2e8-4541-a5a4-3d12f62c7ce9 1 \N Other +830ff89b-6ea6-47c1-b72f-8727670f7461 1 Other Other +831042a8-f7b1-4e55-b701-5cd29fa3fd94 1 Other Other +83106f01-1b16-42a4-9384-0560bca496d3 1 Other Other +8310775d-febd-40e3-b812-48e72e4248ae 1 Other Other +8310bfa3-3111-4ac7-abbb-a45037a3a830 1 Other Other +8310ca26-ad23-4c14-81f6-747f8596518f 1 Other Other +8310d6b2-1995-413f-8560-157a6c2aa8f2 1 Other Other +831123b1-8786-43b0-96be-f54b61fae243 1 Other Other +83114f24-0389-4f23-8f6c-b332bb17615c 1 Other Other +83119b25-44c5-4eed-ada9-e50d06295cba 1 Other Other +831215d6-f10c-40d5-82a7-20dfeef993f4 1 Other Other +83122baa-7d55-42bc-b433-450510b98c7f 1 Other Other +83127ca9-73e3-4d36-8b36-d0d69a697b87 1 Other Other +8312975d-ddc8-40c1-8026-7b828c58b3dd 1 Other Other +8312b983-def6-4d87-820d-92a74a3daf0f 1 Other Other +83136cef-8624-4e23-96ad-e6f20aba4a93 1 Other Other +83137f6c-1739-4c57-a77e-621ebff2d666 1 Other Other +8313897c-741a-4371-856f-08ec62c9be83 1 Other Other +83138f2e-1f2e-4474-b0bf-a05b5937aa16 1 Other Other +83139e87-3889-42a1-ae87-a1e44de87cf8 1 James Other +831415d3-d4ba-49c8-849c-186a1746c36f 1 Other Other +8314386a-5306-431c-bf00-a82f6a0ba589 1 Other Other +83144618-3309-4d90-84b2-d1d61f1f4acc 1 Other Other +8314469b-4495-4e7a-bd73-29df4bc36d8e 1 Other Other +83144e44-324b-493e-ada7-4f482c4b3a4e 1 Other Other +83147132-c19f-4352-b1ec-b28ce01ed7d6 1 Other Other +831478e0-8346-49dd-9ae7-5cc7d9fc0a55 1 \N Other +83148647-614d-4aa3-baab-766775def408 1 \N Other +831492ee-06c8-467b-bc3a-46ed841c625c 1 Other Other +8314cc28-191a-4671-b04b-22295de3312b 1 Other Other +83150e9b-06e4-4bf7-95c5-1d3db12435d9 1 Other Other +83154bc4-2a1e-40f8-8ecf-affd73421b04 1 Other Other +83154f02-0d8a-434f-92dd-bcfd6fb6c3de 1 Other Other +831572b6-74ef-49b8-a7c8-013918621f64 1 Other Other +83158c2f-c2b3-4587-a0d7-256c05267b72 1 Other Other +8315a134-cf81-4af5-a547-dc4388d5f62e 1 Other Other +8315b5df-9ed9-481f-b960-d126e8d68ad4 1 Other Other +8315cadd-e74e-4890-b07a-dad77c73212d 1 Other Other +8315d4eb-c0cf-4d1f-8dac-a43759491b0e 1 Other Other +831613f5-4151-45bc-a55b-7001bfe4b2e2 1 Other Other +83162bba-bfc4-4027-b71f-0a2fd67878d4 1 \N Other +83167fce-c795-46b4-ba9c-25c8a0454940 1 Other Other +83168d0f-ed49-46a8-ab14-00a1d1e8c534 1 Other Other +83169c44-855c-413a-8cac-7d7073ba57a4 1 Other Other +8316ca1b-6623-4aa2-8a4d-671127855466 1 Other Other +8316d841-481f-461e-8bda-8fe2ea69dca3 1 Other Other +8316d925-c7f5-4829-babd-4374666535e6 1 Other Other +83178424-5183-4030-b40d-7692aadc06d5 1 Other Other +831830b6-6a95-483b-a858-2f2a69e79dd9 1 Other Other +83188b56-c79f-47e0-83db-bb0fc198c2e5 1 Other Other +8318ca74-ebde-4eab-86e3-37c1debd8f0d 1 Other Other +8318e000-322e-42cb-9d71-911fab2710e5 1 Other Other +83194052-634f-4e07-be7b-94d2af66a55e 1 Other Other +83197de7-3f14-44ad-8f89-9303b62226a6 1 Other Other +83198e97-b3f9-4404-86bd-1a11a021d518 1 Other Other +8319a581-e22e-44ad-bd2e-e7367a7d36d8 1 Other Other +8319c6f8-1729-4f90-90a8-1095e1950286 1 \N Other +8319c7e7-f68e-4c63-8a93-60d151bea463 1 Other Other +8319ca5e-cf5d-4f68-8836-122741869a87 1 Other Other +8319e9a9-5f04-4c6a-bef2-92ed12a4927c 1 Other Other +8319f67b-da8b-4e0b-bea2-e2c492337d5e 1 Other Other +831a05f9-504a-4056-953b-db73733b3e1d 1 Other Other +831a1112-d5fa-41c1-bdbd-3a365e4a1dc3 1 Other Other +831a4f7d-c292-46da-bc54-704a051d5306 1 Other Other +831a547f-641e-4335-a717-1e9192d4e930 1 Other Other +831b01cd-eb7b-49e6-8001-7ff66cb92531 1 Other Other +831b213c-362a-4372-b9a0-758336539f23 1 Other Other +831b662e-b24f-4b8f-b74a-696f20caf47d 1 Other Other +831bce1f-8260-431e-9cc3-2621e8a9da0b 1 Other Other +831be5dd-3254-4aa5-af16-51f4b6cd063b 1 Other Other +831bf33e-9a42-4059-80de-903661c01ca0 1 Other Other +831c5d9c-e3e7-4105-b9b6-2ca6737b3d45 1 Other Other +831cd5fb-6c3b-4a14-ba92-f49b790caefe 1 Other Other +831cfe79-4274-4dd5-a4d0-00767b3ce7fe 1 Other Other +831d6592-ae4a-4069-a2e2-c2bb8cb1f926 1 Other Other +831d7ef0-cc3b-4568-9926-5d68a89ba4cb 1 Other Other +831deefc-fb12-420c-b706-c5cde5f0d7a2 1 Other Other +831e552a-8f9c-4e66-b0ca-074019f0d116 1 Other Other +831e9cfb-8da6-4fa4-97cf-32ad573747bc 1 \N Other +831ebb5b-c356-4d7d-a64e-9550f00529b0 1 Other Other +831ebc6a-d16a-4a1b-badd-e4a6d9810f10 1 \N Other +831ec1e4-90d5-4356-ae5f-c55c68fc26dc 1 Other Other +831f3e75-2948-4bce-915e-f1deeaca663b 1 Other Other +831f4cb6-21fa-4a05-8a4d-100f284fbbd8 1 Other Other +831f84af-b1b7-4127-8225-fa06daef36e6 1 Other Other +832022bc-7110-4131-bbe2-154488fd4ce1 1 Other Other +83202d61-599f-4313-83b9-eae69a1b07aa 1 Other Other +83202f20-2bbb-4872-83d6-ed69f8d76742 1 Other Other +83214ad5-73f3-48cd-9120-b55c44658eed 1 Other Other +83215f79-abde-4180-9b67-89f05d31e4d9 1 Other Other +8321a0e0-1b9d-4f23-aebe-c0035dcc85f4 1 Other Other +83221d05-e6af-414e-8d9e-ac87f26467a9 1 Other Other +8322347d-96e5-46d8-87e0-40fb333717d6 1 \N Other +83225928-e65c-4235-bfe0-d0170f8739db 1 Other Other +83226db1-101e-46d6-94a9-91c0684546b6 1 \N Other +8322832e-51aa-472a-928e-56b8a00d6041 1 Other Other +83228fd2-5842-449b-9074-6c134f6e04af 1 Other Other +8322c3a8-01b6-4a5d-8484-76441ce9eb1e 1 Other Other +8322d22a-dc66-4ed7-b198-9d2b3fd823e9 1 Other Other +8322df34-dd7f-4b79-a149-c4bd9bf9b31f 1 Other Other +83234a0b-03be-487a-ae5c-1362d60195da 1 Other Other +832350b9-bc46-4d55-98ee-7c31688ced67 1 Other Other +832395ba-87c3-410a-a40c-5297ca120734 1 Other Other +8323e75a-b296-4916-aa4a-7c3f7438fb99 1 Other Other +83240762-2992-46c3-b384-9e8581b67e02 1 Other Other +8324277a-a94a-4666-980c-2d4039376eac 1 Other Other +83243944-b4e7-45d3-ae4d-f9596c72c674 1 Other Other +8324abb5-791c-438d-a009-c14cb2e812a5 1 Other Other +83257c87-4dec-4286-a877-c4bd7bc1ebd8 1 Other Other +8325a478-a519-410b-a864-3c7dd8fa2ae2 1 Other Other +8325b04f-c91f-471d-b381-875bb2dabdfc 1 Other Other +83263645-acbf-478d-ac44-789d545f8000 1 James Other +83266f8a-a907-4cde-b648-abf394693434 1 Other Other +83267489-ac3a-4017-8312-888db0d8f3ba 1 Other Other +8326c870-76b8-4ae0-b57f-2787423e7c03 1 Other Other +8326eb84-b410-4636-a352-813729a8130a 1 Other Other +83270754-7789-4c63-83ee-7feb4040585b 1 Other Other +8327588a-0897-45a5-a21c-19718fcf6537 1 \N Other +8327957d-dc42-4b20-a9c1-d72b2a6dccf5 1 Other Other +83283846-39eb-4879-8e73-090d116f6da9 1 Other Other +83283a80-a280-465f-a0b6-5fa3f7b767c3 1 Other Other +8328422c-ab59-4258-ac40-2eed75530cc0 1 Other Other +83286089-335d-4c6b-88bf-8907f9753815 1 Other Other +83286606-a481-4e57-9219-27b5696217ac 1 Other Other +832898f3-53b8-463d-ac84-b0700820dbf3 1 Other Other +8328afd8-bde1-4ba5-b8ac-077027860d0f 1 Other Other +8328b311-5e74-491f-a016-19f7360e78cb 1 Other Other +8328bed5-ce11-44c8-a33d-fedddd615b90 1 Other Other +8328d4ad-864e-43aa-aa58-b6b83b245c60 1 Other Other +832907de-9c52-4b5c-a121-799dce66b5bc 1 Other Other +83290cc1-e47b-40de-9c5d-a90e2238c2e8 1 Other Other +83291323-d906-49d5-b8b6-c3bc672727fe 1 Other Other +83291efd-5bc7-42be-8833-fc7bcfc57618 1 Other Other +83295361-4b4d-4ebd-813e-64602b7043b6 1 Other Other +83298857-1b49-4bf9-bc0f-80b6591dcb0f 1 Other Other +8329d93e-5203-427c-b3a7-e83d8cf72bd4 1 Other Other +832a2e3d-874f-4ed8-bb2c-5daf7ad519d9 1 Other Other +832a5660-3f9c-41d0-9f35-fe01bc3bd48c 1 Other Other +832a920b-8cf6-4d6a-9072-0c7b516fd873 1 Other Other +832abf0f-3d8a-4509-89ba-7392cce6c227 1 Other Other +832ac579-ea8a-4d1a-85a6-0c1a9d3b238a 1 Other Other +832ad1ae-f105-450f-acef-a67828456089 1 Other Other +832ae125-a83d-452c-b384-432835f241ab 1 Other Other +832af132-d421-4402-a99a-2f8f39168235 1 Other Other +832b0447-bbac-4db4-8100-43abfe571506 1 Other Other +832b345a-c848-480d-bcd0-a7762a1219be 1 Other Other +832b77fd-b8a5-46bf-bfff-0b7430ed6313 1 Other Other +832b7b37-3323-47ec-b526-1378c09651d0 1 Other Other +832b855f-6f0f-4b5c-ab06-213244727885 1 Other Other +832b9e11-4fa4-47db-be0c-bcb8efcd15ee 1 Other Other +832bd799-4ade-4512-8833-f30e15ce7d9d 1 Other Other +832bdc4c-4b7f-4da4-8cbf-bef00e2ab33c 1 Other Other +832c37d5-4cce-4869-8706-b5110ba7da80 1 Other Other +832c4f6e-2191-44ba-89d0-98cdcc0177f2 1 Other Other +832c6e55-0a8c-4366-b951-1d0379985c14 1 Other Other +832cd4ad-f78a-46e6-b615-d5e3977e1ef5 1 Other Other +832cf25d-8d93-4453-8449-1db2e64e9db5 1 Other Other +832d7744-cd5c-4ddc-8b36-af261e43b23b 1 Other Other +832d7d7d-d2aa-4802-b656-f9047a72cc9c 1 \N Other +832d8bdc-5771-4348-b4ff-d3eedaf114cd 1 Other Other +832d8f9f-6c50-4ec6-86c1-f94a4e26361f 1 Other Other +832dbf02-fb62-4dec-8be8-2cbe33038c7b 1 Other Other +832dc9f6-46c7-497e-a497-1910144d5663 1 Other Other +832de87c-0808-4ca3-b29a-2d7c00e448e6 1 Other Other +832e1531-dfdc-40d1-98a0-32dc21e1e726 1 Other Other +832e337f-b58d-48df-8413-679b76556620 1 Other Other +832e7662-0d19-4f0f-bc21-1b52a4350678 1 Other Other +832eb207-2c3d-45ab-807f-04c09607dcf3 1 Other Other +832ec56c-b1f2-4d76-9ec4-b1a38fbcfded 1 Other Other +832f0227-2e7c-4c02-a976-8f40f4d40fb4 1 Other Other +833002d6-5c38-49b3-ba93-59cf6ac6959c 1 Other Other +833058de-6cf2-468b-8ec2-7802cdd381a6 1 Other Other +833072bf-8a79-42bb-ba97-d16ef311d1a1 1 Other Other +83308f45-cdd8-4ab0-b604-0f20cced8460 1 Other Other +8330b0ff-9e7a-4bda-bd07-d8380a03ab98 1 Other Other +8330d0e7-59b1-4dd3-810b-d826538ecdd7 1 Other Other +8331310a-3450-4216-b49a-98e71436adf8 1 Other Other +833165cc-47f9-49f3-97fb-e9eaa22632c2 1 Other Other +83319926-8506-4666-9789-9e92a933a2ba 1 Other Other +8331d5a3-4061-4ba2-a5e1-facf575cc5a1 1 Other Other +833206b1-a692-4d27-b4a6-3c8ae49b215c 1 Other Other +83325575-1097-4ae0-ad39-7fe3181e4a86 1 Other Other +83328bfa-7f39-4bd3-ac71-3fad591252d5 1 Other Other +8332e3ea-b073-4495-a5ea-b8a24dfa2e62 1 Other Other +8333d049-cf41-4a8d-8e3c-fbc39a14a12c 1 Other Other +8333f887-37c3-4f2f-b578-3015a9a64540 1 Other Other +833418d5-4851-4cee-bb0a-ebc07f2591af 1 Other Other +833420a6-a2de-4169-923f-34290119e445 1 Other Other +83347ccd-b0a2-4c1d-8c7b-5ead79306758 1 Other Other +833480b2-d86b-46d8-9d54-27e31bdab430 1 \N Other +8334ab38-dc2a-4f37-b394-1c789870a80f 1 Other Other +8334ad41-6a12-456b-a4ba-203187d76b0c 1 \N Other +8334c15f-ec53-4ba1-9bd6-58dc9de29d61 1 Other Other +8334c1a2-846e-402d-914b-ec65765f3b3c 1 Other Other +8335109b-6d6c-4a7c-8c52-01301bb38847 1 Other Other +83353927-b2cd-41da-8476-25f441eb4fda 1 Other Other +83354ac3-f076-4da6-b06f-b611b0d8e303 1 Other Other +8335a4dc-2a98-4561-b641-2d6c4b87e5fc 1 Other Other +8335d005-9523-4cfe-b2b0-70efebfd41b0 1 Other Other +8335dc67-8642-4c1b-9fd1-67eacdf900e6 1 Other Other +8335deb3-e1d0-41b9-a19f-9ef6be34b0ba 1 Other Other +8335f880-d9b2-4a5e-8b19-f0dd7fe767b0 1 Other Other +833662a7-67cf-4352-ab19-3aa964e0459a 1 Other Other +8336938e-b7a3-43fa-b718-f7f1ab07ea67 1 Other Other +8336e56c-bf1e-40d1-87c4-8e88e87f00ae 1 \N Other +8336ecef-9a94-4281-8508-2d93ea3fbfcd 1 Other Other +8336f2fe-8c9f-4e11-aafb-7a063d05b708 1 Other Other +833757c1-48a1-4aba-973f-e83cd612a02a 1 Other Other +83376658-e7cc-4726-ba25-9791ecc01afa 1 Other Other +83379412-2ed8-45d7-bd1c-15555e411086 1 Other Other +8337946b-0503-4ce7-afa6-137b0558a825 1 Other Other +833798a7-f989-463d-9244-c57577ba8150 1 Other Other +8337dc56-af3b-49ec-b90d-db893b4d131d 1 Other Other +833802dc-02ac-483d-ae29-c251942af74c 1 Other Other +8338447b-1298-4e1a-ab02-8294a9901f80 1 Other Other +833845f7-a8fc-4898-9c8b-21202bc136ea 1 Other Other +83385adf-06ff-42fb-b9e0-27c45473acbd 1 Other Other +8338ebf8-bd8f-408c-b22a-ec1a466bb7f9 1 Other Other +83392c43-e443-40f8-ad84-1a141c58e428 1 Other Other +833956b5-c185-4d60-b0ec-0b5e220e5941 1 Other Other +83395ec6-dde3-48b6-bc08-ae18289d4f0f 1 Other Other +8339ab6b-45dd-4014-8845-18d46745a0df 1 Other Other +833a019f-81c4-4a75-8fec-26a7869cce49 1 Other Other +833a0d98-38cb-4425-b2c6-9b41b2dbfa1d 1 Other Other +833a1957-f810-42a2-8ce3-f0e64164f648 1 Other Other +833a22ff-a979-4329-8187-dee7428804af 1 Other Other +833a31e5-d6d7-4fb2-93b8-ef8717b1edd7 1 Other Other +833a5080-9c77-4e31-97a1-9cb83b6b0624 1 Other Other +833a527b-0740-4196-a4ee-dafa2b293871 1 Other Other +833a65e7-dd8a-470c-bf77-0409069600ba 1 Other Other +833a7340-d255-40ce-86dd-0b094b84b3f4 1 Other Other +833af9a8-ad3f-4f05-97bb-9a342a114f77 1 Other Other +833b050f-77f6-4300-91eb-2053463745b5 1 Other Other +833b397a-ab0d-4591-b17f-9e2ffb10f7c5 1 Other Other +833b63a4-0668-4644-a222-8a32cbcc35b6 1 Other Other +833b7017-ad9e-441e-a300-3cee236bfd8c 1 Other Other +833ba7b3-608c-4321-8515-6f890fb5fc76 1 Other Other +833bb94c-aabb-485e-bee5-8d0e76222ae1 1 Other Other +833bfe75-60eb-4d70-bdb7-3f6e40267b2f 1 Other Other +833c08d1-f330-4d7b-9466-916d5c99aac2 1 Other Other +833cc0a0-20d1-4fa5-bdf5-3fdd9c682124 1 Other Other +833cc101-c605-4ab1-81ef-0083d81af2d5 1 Other Other +833cc2c6-0a46-4719-b0ed-5049522a06ed 1 Other Other +833cc9bc-1d20-469a-a106-78a62bc1f73f 1 Other Other +833ceb6b-aa5c-4fc4-a837-b3a1d7b690c9 1 Other Other +833d133c-a0ef-4262-88e4-39e69ca709aa 1 Other Other +833d4ca9-3da9-411c-9d79-eefc9451d01b 1 Other Other +833d4efd-e5ad-43dd-a29a-23ef5326d3f3 1 Other Other +833d5d24-22e8-4d48-99ab-3494dfd58a2f 1 \N Other +833d5f67-5076-4baa-a6d0-baa7780edc3f 1 Other Other +833d6fa9-6f8a-4726-947b-757235fe23f3 1 Other Other +833db340-d116-4f2c-96bc-c6d92f7d18b5 1 Other Other +833e0108-ff61-4232-b30f-9000a6f97fae 1 James Other +833e1f82-cc9d-4344-81e3-ac2388050530 1 Other Other +833e3f70-209f-460f-a1bb-754b20009985 1 Other Other +833ecba9-4c97-41d7-a921-cd6ae64f052e 1 Other Other +833ee83f-ec70-4b61-904d-660ce265ac3d 1 Other Other +833efb9d-2930-46f9-bf68-1b2ef46ee61c 1 Other Other +833f787f-9cce-46bd-941d-fb1d1ca4a4e3 1 Other Other +833fb583-f685-4b93-9674-31393098792c 1 Other Other +833fbd77-fc06-4e2f-87ba-ecf9f7742ffd 1 Other Other +833fd4eb-6008-45e2-a101-571f9410cddf 1 Other Other +833fdcb2-14f7-4e22-98c1-26d19a8a743c 1 Other Other +8340a276-67fa-4130-a9b0-60b9f6eceb36 1 Other Other +8340cd08-da9c-438a-ac19-6d3478927dd8 1 Other Other +8340e359-ddc1-4a0a-a9ce-7938988b4b38 1 Other Other +83414931-3baf-414e-ab92-e694ea03dfa5 1 Other Other +83419c72-7812-4080-a333-8278e62c4585 1 Other Other +8341d022-a885-4170-bee7-56b75b6b4f28 1 Other Other +8342147a-1fba-40b4-b97b-5dbbca8a4724 1 Other Other +83423c20-af73-4226-b276-4e0b0bde422a 1 Other Other +83428b73-8ac1-42f7-b912-8fd4345d004f 1 Other Other +83429830-0526-4056-ae81-b9c931e7fa67 1 Other Other +83429a1e-6efb-4b3d-926c-7feb89200b26 1 Other Other +83431663-0a58-4fa0-8839-61d2b01ae8ec 1 Other Other +83432b04-18e6-433a-bf89-44113f3002f9 1 Other Other +83434092-c7d4-437c-8fb3-e2148beb566c 1 Other Other +83434f33-207a-42e1-8393-011a70dd7e20 1 Other Other +83435052-c99c-4b9a-bb06-9b91f591c38a 1 Other Other +83435ef9-17e2-4093-b470-d1e60a2ccab2 1 Other Other +834361fd-879e-44c9-94de-9cfa38f03615 1 Other Other +8343697f-04bc-446e-be00-2ab425ff3d6e 1 Other Other +8343765c-1ee2-4e45-a4af-bbd8956d63e0 1 Other Other +8344964f-dc3e-4f54-92a2-990809482cfe 1 Other Other +83449d03-f3d2-4155-b1d0-52f762b0191a 1 Other Other +8344a0bb-930b-4678-ab18-d6324bb1c2d0 1 Other Other +834565bb-de08-41b3-b593-5af1c36b729e 1 Other Other +83459104-19f2-43b6-9783-b9db3c0c20c5 1 Other Other +8345997e-0498-4db1-b501-64db6ca9bee0 1 Other Other +83459b61-71de-43e2-9be5-3c7fd3e5fe1c 1 Other Other +8345a1f5-8211-4fbc-af37-6b3bfa84a8dd 1 Other Other +8345ab37-1e4a-4aa0-855b-a31e0b263477 1 Other Other +8345b8eb-0703-4234-8bb8-527de1784374 1 Other Other +8345ca26-954c-4114-8dd7-0be4e5aef346 1 Other Other +83461fc6-6744-4812-add8-6ed67eca8dfd 1 Other Other +834622f8-f92c-4cca-bb40-a82fe540519e 1 Other Other +8346497f-f664-4868-9b89-dc290943a223 1 Other Other +83465f42-63c6-42ec-994a-47468375456e 1 Other Other +8346ba89-87c8-4337-bfe5-40c9ead5fc92 1 Other Other +8346de5b-e2ef-4f89-8773-d796f4224f6c 1 Other Other +83470462-dff2-498e-a597-4e10642ee87f 1 Other Other +8347cd8d-4e34-4da4-94d5-94c6fc42e1e8 1 Other Other +8347eae3-90c1-4679-b2d1-2877d12b0b3b 1 Other Other +83483ee9-553e-4d53-81f5-c5673c9f1eae 1 Other Other +83484b18-10e0-447f-a388-31b0fc9a21e3 1 Other Other +83486d6f-a877-41af-aa34-58b6d70354c0 1 Other Other +83488545-02de-4c48-aa6f-da592e61ecdb 1 Other Other +8348c674-00eb-47c5-9f14-1ea83fe765d6 1 Other Other +8348d1b2-96a6-4da7-8f5f-0682ca87c782 1 Other Other +83490701-2004-4976-a7cf-390fdf8fb15f 1 Other Other +8349137c-792d-47c5-9ee1-3eaa1be60437 1 Other Other +83493da3-9641-42ef-8655-96a94680532e 1 Other Other +83498da8-95cb-41e6-96f1-8047cf31f18f 1 Other Other +83498fbd-c834-41e4-a67d-bec86d128386 1 Other Other +834995e0-6f6d-40c9-824a-bbffc055939c 1 Other Other +8349f4c9-9580-469f-8d61-07df50fd046c 1 Other Other +8349fb3f-4b0b-4a4e-9df0-c725fdc7889b 1 \N Other +834a573a-5a82-46f4-8574-87d311d91c79 1 Other Other +834a625d-f889-4f5a-9709-d4383a39b8bc 1 Other Other +834a69a6-46d1-4153-ae97-7503d452273c 1 Other Other +834a85f9-18d2-4d92-ab4d-26e524a975cd 1 Other Other +834a8648-1a36-4439-9dcf-1452af328267 1 Other Other +834aa3d5-f617-43ca-a3a0-07e77ebc3702 1 Other Other +834af3a4-cabb-4c3d-a678-7757ac55c8bb 1 \N Other +834b1089-c5b8-4de0-98ed-e03377e5f6fd 1 Other Other +834b14c6-78d0-41a5-806e-a748ec7ee055 1 \N Other +834b24c3-5325-44a9-b59d-f1339c347161 1 Other Other +834b2cbb-28a4-4e65-b27f-ae853dd4c742 1 Other Other +834bbe56-9ead-4286-9767-c305d11dbf16 1 Other Other +834bee53-af7d-4fa8-b108-c29f1e0fbd03 1 Other Other +834bf992-f6ce-40c7-85dc-ac6170c71376 1 Other Other +834c11a3-9902-472f-9e62-4ac6a482c91a 1 Other Other +834c19b9-5005-40c2-94cf-71cb02b7f664 1 Other Other +834d40a2-76fb-4b87-aa28-144e1ccf491e 1 Other Other +834d6a2a-e5bd-4090-b19e-c735d0bae7f1 1 Other Other +834dc8a2-faac-4e05-8feb-a9c7e28d207c 1 Other Other +834e1868-5243-4b7a-8478-1558b200671f 1 Other Other +834e4815-c191-4662-a9de-3ac7d4528f13 1 Other Other +834ec7cc-a207-4dbc-9cbd-9568c04a6dfb 1 Other Other +834ecf07-eb7d-4cd5-86df-e115a9ecd5b7 1 Other Other +834eea7d-a087-4ac6-8bd4-6248139653e8 1 Other Other +834eeb5d-cbf9-43af-a71d-c01569fd3435 1 Other Other +834eede7-d559-402e-971d-087f4779d0d6 1 Other Other +834ef6d0-bcd1-4d9b-92bc-c6aa80fceda4 1 Other Other +834f2c75-4d87-47bb-8c15-900ade50d87b 1 Other Other +834f503f-734e-4095-8409-42d7eda6639e 1 Other Other +834f930d-4576-43ff-818d-4a089b63d97e 1 Other Other +834fc266-9a06-47cb-b029-32400fcfe9d2 1 Other Other +834ffcaa-859d-4ca2-bd0c-a4276db837cb 1 Other Other +83502ef9-29e7-4ec3-aabf-472371c5d752 1 Other Other +835033aa-e847-48a1-b8ed-01ee5ac3bf6b 1 Other Other +8350adea-8a16-4b09-86b7-3713791e2f19 1 Other Other +8351e097-4b4d-4865-aa1d-2c67c61b69ae 1 Other Other +8352834c-20c4-45ce-bd39-180ecba19b01 1 Other Other +8352fbdf-234a-4c23-8376-4575222c0a88 1 Other Other +835387e6-b1df-45d1-9e8a-7558fd2ed97d 1 Other Other +8353982e-1ee2-4c57-b444-3d4107a69bd3 1 Other Other +835412c9-b1a9-4ab3-ad79-2f6b59f7d4ee 1 Other Other +83541823-3b2b-4170-b57e-be5efc271389 1 \N Other +83541a85-6ce9-455e-a53b-3e8a2e42c608 1 Other Other +83542343-48d5-4bde-b609-fca49a239872 1 \N Other +835495d0-9795-479f-8ea5-3387b6bbcce0 1 Other Other +8354e12f-ae8e-4f03-a72c-db7dd8576d56 1 Other Other +83552dcb-485d-40d6-b288-81e773ade357 1 Other Other +83554567-e84f-4124-93b5-a5db89f1afbb 1 Other Other +83554f0b-20ce-4a79-b334-4065853fa546 1 Other Other +8355c57b-ced9-44f2-9409-6b0a5e61ea50 1 Other Other +8355ddc1-a25f-4ae3-87f7-4b4a2162f43d 1 Other Other +835651e5-7e91-41c8-821d-ca7aa4e8f797 1 Other Other +8356a16a-162f-4c8b-9cc0-414cde88ac97 1 Other Other +8356eed1-021a-41f7-bc98-787de9d6f320 1 Other Other +83570d63-5203-419b-9eda-26c3d658be9b 1 Other Other +83575139-2c8f-4e74-b7a4-0f5611712eba 1 Other Other +83579b84-d747-471a-a3cd-2c8002057f91 1 Other Other +83579c79-2534-4498-a638-18e09f4ffeea 1 Other Other +8357da7b-41c0-4d13-95f7-239b48ad8083 1 Other Other +8357ebde-8962-4a7d-8de8-357d6a36d708 1 \N Other +83580c5a-7804-4f8a-a99f-df93ccb6c07e 1 \N Other +83580df0-7400-4ee9-8f37-63dc9cd9c898 1 \N Other +835819c0-cc38-4855-a62c-b98f7a824eee 1 Other Other +8358311a-dbe5-4927-a7db-a5d1f264273c 1 Other Other +83587102-d584-45c2-b597-115aed37adb4 1 Other Other +8358be3d-15b3-4116-b7d3-5e3d23aa7fd3 1 Other Other +8358cfd8-cecd-46bc-8402-bbec4f139152 1 Other Other +8358f532-e493-4324-96af-e9c0e40a87d0 1 Other Other +83590b06-f904-48fe-9c35-c970987d35de 1 Other Other +8359683f-fb7e-48e8-96ca-721b5b02da99 1 Other Other +83596af9-b424-4cb8-992f-38f246f64cf7 1 Other Other +83599116-d430-4fa7-b788-bc978953e0cf 1 Other Other +8359d264-5165-4c6b-8e01-3a86531516ca 1 Other Other +835a6b11-2e37-45cf-b590-2c793945ae18 1 Other Other +835a7395-2bef-47ef-81bb-f503730f3faa 1 \N Other +835a8170-9230-41cb-9c83-86992c23dd4e 1 Other Other +835a85ac-95a4-4616-b0b3-1e172b81479e 1 Other Other +835ad960-b229-45be-a6b3-9e024e865790 1 Other Other +835b1197-23cd-4d95-bf68-c38d3336b9f7 1 James Other +835b576d-0ac8-4793-a5c2-a2f3fb1e8830 1 Other Other +835b8088-da03-474b-9812-80fabce40355 1 Other Other +835b9218-944b-454a-9cac-0fb14296e221 1 Other Other +835b94b1-fd98-43b0-b56f-765429b9539f 1 Other Other +835babe5-3b5c-4feb-bb6a-cdf2a63b0b6f 1 Other Other +835bb48e-8b24-484d-bd8d-96d6b0c300b3 1 Other Other +835bc424-9a39-4e96-83a4-a7b45972c4f6 1 Other Other +835c068e-964f-4b63-ada0-f3075e1299fb 1 Other Other +835c100c-ef22-40e6-bbad-4330292342c7 1 Other Other +835c491d-cf5c-4a8f-98e6-bf6d14ce547e 1 Other Other +835c677b-9e46-4ab1-bb2a-138f3f9fbdbe 1 James Other +835caf34-ce98-4bbb-827a-eca9505e8772 1 Other Other +835d48a2-9180-4e75-8c98-c93107ae3ac5 1 Other Other +835da2bc-357a-4cbd-ad2c-12b7b4bb1d65 1 Other Other +835dbbad-6529-4eeb-b0d6-bd6ef0526e14 1 Other Other +835def63-4312-4cc9-95b3-4885e1a093eb 1 Other Other +835df97e-6908-4f09-a5d6-4563d27bedea 1 Other Other +835e0563-8e8f-4eef-b8cf-ba6327cced89 1 Other Other +835e3d78-fbb1-4ac0-9874-8a62b29f60d7 1 Other Other +835e3ffc-2d8b-4a57-a57e-1249255239f3 1 Other Other +835e4bf5-d99a-477b-8d82-8bad6da3c9b5 1 \N Other +835e5ad2-69b0-47c4-bb59-ac07ee0c1b62 1 Other Other +835ec566-6ebc-43f0-a61f-0329a1546733 1 Other Other +835f029d-0dba-4c09-b1f1-5d51099ffb51 1 Other Other +835f544a-1788-41ef-91e9-7cd60f90e06d 1 Other Other +835f7da6-9775-4e4d-993a-73bb37d2af22 1 \N Other +835fff52-ef6d-4660-b063-de9cc5b38390 1 Other Other +83601185-48ec-4b15-a5d8-5a8876e64b89 1 Other Other +83601e94-1578-414f-b393-c47b4ac29ca1 1 Other Other +83602b02-6b98-4af4-9b43-21b16324924b 1 Other Other +83604159-d6ca-4741-a882-5c012ce6855f 1 Other Other +8360ad61-045f-4067-be6d-619ab0fc8876 1 Other Other +8360ef8d-bee4-4341-be80-c2915cd976cc 1 Other Other +8361a621-9152-49b8-a5d1-edefe5dc1079 1 Other Other +8361b899-8255-49d8-a852-1954eb880d19 1 Other Other +83620103-6cd9-4201-aa38-0699f341e53f 1 \N Other +836215ab-fecd-4a79-8703-5c7c93c47055 1 Other Other +8362225a-a2ae-418e-9323-5f989bcf82a8 1 Other Other +83622975-9ecd-4d51-821e-f0a054add119 1 Other Other +83626d28-569b-49b1-8725-7b20774057e9 1 Other Other +83629211-c5e6-4a4e-9dd2-458915579ed5 1 Other Other +8362daf3-bf77-415c-8315-ed2a0c588c67 1 Other Other +8362e45a-9d55-4f32-a1b3-dd62d932ff82 1 Other Other +8362e5fd-7197-43da-b901-e70b1ad44634 1 Other Other +8363233f-67ea-4d01-a313-56c9c1e09721 1 Other Other +8363375b-d4fc-427c-852a-3dfb2c6059b0 1 Other Other +83633a77-d206-4790-a7b8-2e86454e9680 1 Other Other +836358b6-f1cc-48f7-8e09-63f1bab596f2 1 Other Other +83638453-9c00-402e-9bc7-6276871f17cb 1 Other Other +8363b554-f6e0-45cd-9d3d-866c7e3cbbfd 1 Other Other +8363cf3c-98ba-4d26-b90c-a5516b1b05c2 1 Other Other +8363d069-f956-4dec-81fc-11ec6e54a364 1 Other Other +8363d0dc-cc0b-4bb4-9c52-5c8610a70aa7 1 Other Other +8363d27b-58d0-4762-8a46-4c6a68b01018 1 Other Other +8363e834-3be8-434f-95ea-c489fdd33ba5 1 Other Other +836407e3-d9ae-4c5c-a25c-e005888ea7ca 1 Other Other +836453ed-a2de-497b-87f1-63695b2f40da 1 Other Other +8364c09e-408e-414c-b26c-90f9453b080b 1 Other Other +8364deb5-84e9-4b68-9a62-e6a1bce08c21 1 Other Other +8364fdf1-6544-4e9a-864d-6cf4a095eda6 1 Other Other +83654251-b944-45cd-9a82-1337a9cccea9 1 \N Other +8365cd1f-d0cb-4d4d-a75d-1fe27c725665 1 Other Other +8365dfdb-98e5-41fa-8ee2-f127cab5e083 1 Other Other +836636fa-f43e-457c-80c0-6a9a547563ff 1 Other Other +8366a3f5-9c89-4b50-b116-13056ec50875 1 Other Other +8366b107-edb5-4dc6-94b3-d2420eefd1e2 1 \N Other +8366bf08-8062-4940-b4ca-dbdce8a024da 1 Other Other +8366c589-afc4-4f71-a41b-c00d7856b7e3 1 Other Other +83674fc8-8822-467e-9411-f3bf7d3de761 1 Other Other +83676303-7110-4d09-a36b-49f1cfaafe42 1 Other Other +83676a67-71a1-4e7f-8394-3b4369ecf317 1 Other Other +83678112-9554-4913-9ee8-6b26bfed5222 1 Other Other +8367b1f2-18d3-4bf2-b139-d8896fa5dc6d 1 Other Other +83680201-e726-4e89-ad18-c791dd883a9d 1 Other Other +83680306-fa9d-49d8-b72c-dc95654f6bae 1 Other Other +8368694f-e826-44ac-9fdf-a18d6a436a1d 1 Other Other +8368b59b-f09c-45c2-b984-7d67bf5a68ed 1 Other Other +8368e993-6d7c-4775-8321-aa4773025d29 1 Other Other +83690804-3363-479e-85ad-993ea33b6d27 1 Other Other +836932e9-94f8-48b5-8e6b-06b824f1ef2b 1 Other Other +83694a1c-9bc7-46bb-8160-04b016f986e5 1 Other Other +836953c7-68c1-428d-a1ef-684b637d744c 1 James Other +836969c3-9ecf-4e60-820c-da7d511dbfa8 1 Other Other +836976d6-b08d-4fd5-b3c2-cddda71d594d 1 Other Other +83699723-7be2-4c7e-8177-63781f8039ce 1 Other Other +8369ad87-6175-4ad2-8cfa-9f388860f95c 1 Other Other +8369b546-0ad8-478c-ae8e-a26de89e421f 1 Other Other +836a1dec-8b6a-4cb5-89a1-6ab73a810c73 1 Other Other +836a51ba-b998-4332-a4f5-d975e7231874 1 Other Other +836a8aca-c360-42a7-b56b-ee24166b6dab 1 Other Other +836aa250-84e7-483e-ac5e-e830839652aa 1 Other Other +836ab2f0-61a6-438a-b45c-9260c1cba3e6 1 Other Other +836b44fa-d68e-4d24-84e4-e684d223ef74 1 Other Other +836b5f76-2f04-4d70-aa5a-1b12a3239b0c 1 Other Other +836b5fdb-42e9-423e-ba6f-c19cbaa4ba81 1 James Other +836b6231-e160-4387-be9a-7f74bcd4261f 1 James Other +836c2155-51a3-4afc-94e6-4cd0ffbb37aa 1 Other Other +836c7476-4d17-4188-b591-e1edf7930e84 1 Other Other +836cb318-8a0c-4da8-b38d-b2272b68568e 1 Other Other +836cc586-7742-43e6-8ecb-38fb1ba97908 1 Other Other +836d42f9-e2a0-4c6e-8b6e-41025f38561e 1 Other Other +836d761e-2c39-4130-bbb0-31c589cbb1fc 1 Other Other +836e70b6-4a1a-4fef-b7ff-1f5506b57df6 1 Other Other +836e8ea2-a372-4e80-a5d4-a22a34418ee5 1 Other Other +836ebf6d-83ae-4c60-8f11-d9e466193d06 1 Other Other +836f10a5-7d5d-48b0-b580-3aa4a1c531d5 1 Other Other +836f5f85-6eba-463b-95ac-5f3179f07ccf 1 Other Other +836f6e52-a2c1-4166-9f34-dc65d71e53ef 1 Other Other +836f747f-00d3-4dcc-a849-6a7f8a45481c 1 James Other +836f9216-68e2-4fbd-8336-05dafba44046 1 Other Other +836f99de-d3ef-4d64-a535-dbabfb90e30b 1 Other Other +836f9ad8-e80a-4f31-8e7a-babe41e86722 1 \N Other +836fa168-82ab-4c7d-b291-11d3abccd400 1 Other Other +836fd23a-2863-45a9-9ba7-24d39f28793a 1 Other Other +836fed4e-c264-4960-bf5c-c273a64bc41a 1 Other Other +837078f3-3c37-49b9-a3a5-195e47a12de0 1 Other Other +8370a698-825e-4098-8dd3-de9f0302a028 1 \N Other +8370ec58-e0bc-4dce-807b-7f44e986fb36 1 Other Other +8370ee56-b2c7-4283-9dfa-35418acd6dfa 1 Other Other +8370f84d-022b-455c-9fd1-5075599b992b 1 Other Other +8371faca-d4ee-4960-b20e-d321356efe96 1 Other Other +83720288-e4ab-4b0c-9e17-b27c26bd523f 1 Other Other +8372351d-e8b9-4b23-9299-97bf050519a5 1 \N Other +837257a7-c9dc-4b87-88af-4dada4b6c3e4 1 Other Other +8372d7bb-c7cf-4ec3-9860-75c9ed8a48fc 1 Other Other +8372d880-47bb-4d24-8e78-0f675edd803e 1 Other Other +837310bd-c10f-47b1-9ba2-678b703a5ac4 1 Other Other +83732e36-7c22-46ee-a8d5-ec48a89441f2 1 Other Other +8373514a-49b2-4700-8030-5a4c40a84895 1 Other Other +83737323-e390-4c49-9e2e-31048040aab6 1 Other Other +83739e5c-c576-446a-be6a-e12bbb55f229 1 Other Other +8373ab75-eeb5-4d49-aa36-a668e3c3e2d5 1 Other Other +8374447d-25fd-4644-ade6-563643a836b8 1 Other Other +837472f6-f59a-4f1c-af38-ba8a60f20147 1 Other Other +837483d4-b81d-4b7d-89b0-eaf8d02ee9d5 1 Other Other +8374f32f-20fe-4ac1-abbf-eaa860d4c3aa 1 \N Other +83750928-85bb-4c10-be2b-0bb34913952c 1 Other Other +83752c6d-697b-49d1-8c44-d4b8bd2422fa 1 Other Other +83754ef4-1a3d-4814-8b7c-6f33ce7d06bb 1 Other Other +837552d3-a362-4c27-bb71-9099234db86c 1 Other Other +837558c7-ca65-426d-b0a3-239a472e35c0 1 \N Other +83755b71-8d38-4ba8-8df1-0d1e6919e0ce 1 Other Other +837566d2-b4f9-4868-8918-bd59b09f603a 1 Other Other +837572f8-0dc9-4c3b-8a0b-2508fddc6f3d 1 Other Other +83757c44-af4e-4eaf-ba29-0cde8bbf688c 1 Other Other +8376491d-1d30-4928-9f65-ea8cdff28900 1 Other Other +8376cbdb-b284-4f93-adc4-6217e0c240e0 1 Other Other +8376df93-fe99-41aa-b1b7-0a1ee3f41443 1 Other Other +83770116-bb76-480a-a649-3b3eddb7a236 1 Other Other +83773c02-edce-4ae5-8458-0922745128fa 1 Other Other +837848c6-3d2c-4918-acc0-d5a2e362d8ba 1 Other Other +837857ba-2aec-4ad7-94a2-fa1dca136cfe 1 Other Other +837862af-6ffa-4bff-81db-58b5a7f23bbf 1 Other Other +837885e2-5f02-4211-b96c-9f9a344c640d 1 \N Other +83795cdb-30bb-4a69-b3a5-31f05bb14076 1 Other Other +83795cdf-d904-441f-9f54-4e997c858c80 1 Other Other +8379e2a4-ae99-4a0e-ae08-439e91c15381 1 Other Other +8379ec90-abe0-49f5-af89-ff284d6dec6d 1 Other Other +8379fac8-2d24-4259-ba49-e69ead8b017c 1 Other Other +837a2671-8c29-487e-b392-a3bfee05655a 1 Other Other +837a3fee-d078-4799-ac29-7d2b6712db3b 1 Other Other +837a5f9c-8828-4bbc-b320-15fdfd32cf80 1 Other Other +837a877b-9abe-4114-bf0c-e6153e8eff76 1 Other Other +837acc5f-91a9-4436-9393-20e61a42fb7a 1 Other Other +837ae4dc-d195-4738-aad9-e5882d6028f6 1 Other Other +837ae982-8c52-4b60-804f-96040e2df4a4 1 Other Other +837b2a3f-a0fb-4d8c-9340-1a9797a9caed 1 James Other +837b5e0a-2522-487c-8035-181ac0abd6b5 1 Other Other +837b61da-7c13-443b-9618-42730df391ea 1 Other Other +837b97da-dd51-46a0-b93b-6d95e39c534f 1 Other Other +837bab0e-ac8e-4e8b-96ed-448b265cd0e3 1 Other Other +837bc76d-123c-4c45-866f-e3704929db76 1 Other Other +837c0785-3748-4117-aee8-3c1ad863abde 1 Other Other +837cb976-fd40-468a-9051-1851e6834514 1 Other Other +837cc472-4a73-4417-976a-77289ed5031e 1 Other Other +837cc84d-202e-4210-b8b7-ddded2b09b03 1 Other Other +837ce1f2-57d5-4468-a51a-47a1d89dd78e 1 Other Other +837d03e3-0a11-4bd8-b1f0-8cac07fa38c0 1 Other Other +837d0403-f27c-48f0-86ff-c1166e904530 1 Other Other +837d0dd9-18c8-4f23-96d2-97765480b8da 1 Other Other +837dae8c-f7dd-44ca-ae2d-e2471cb4bef9 1 Other Other +837dc47c-2003-4539-b7b8-4834f567491f 1 Other Other +837df8cd-c47b-4f5f-ba88-95fec786e54d 1 Other Other +837e1a6e-750f-4b86-8079-6dfcdfcf277f 1 Other Other +837e2f0c-c1a7-400c-a48b-6bb7dca6c3b5 1 Other Other +837e45b1-1168-4074-be92-30a4e166cf4d 1 Other Other +837e4c5f-207f-4057-a38e-19486536d8cc 1 Other Other +837e62df-cab4-49cb-b9d6-1ae7ebcf4101 1 Other Other +837e7fa1-3fd6-402c-8dc7-3d81ef76efae 1 Other Other +837efc68-6ee7-45cf-8da4-089cbf9a8e35 1 Other Other +837f6181-36d3-49cb-ae62-86296dfd801f 1 Other Other +837f6933-50e5-49bb-bf0b-800700ec9425 1 Other Other +837f6abf-329f-4377-a0d5-3e440849b83e 1 Other Other +837f6b0e-7222-4c02-be7d-611cf1e6981f 1 Other Other +837f8457-5a7a-4f8b-8d1a-4ba4946371ad 1 Other Other +837f94e9-d1b4-46da-a0b2-4ced3ddc444d 1 Other Other +837faf90-0e21-4071-b047-4ddc014746af 1 Other Other +837fef7c-7a5b-4faf-b5de-0322dcef86f8 1 Other Other +83805ad4-b689-43c0-a2dd-1f84c8d299b0 1 Other Other +83805f13-4f6c-4c25-af36-33736dcc36f9 1 Other Other +83806572-eed9-4f5b-9202-ef4d67928546 1 Other Other +83806f7b-48d4-40a4-aadd-c023a2472987 1 Other Other +838080d6-f7ee-4e6b-8a6d-4a90165a03b8 1 Other Other +8380c395-b2f0-444e-a796-b200297222aa 1 Other Other +8380ff6b-11e1-4a3e-9675-26fc3c888356 1 Other Other +83811c08-d146-414e-9ef8-2aeaecf6b7c3 1 Other Other +838161ad-388f-4f8a-af6a-62b6401a4bfc 1 Other Other +8381b3a5-c2d5-42de-a02c-7e82402cb1cd 1 Other Other +8381ba41-2780-4bf9-8dc8-f6ec9fc242ca 1 Other Other +8381da64-a820-446b-91eb-7ec217d4e062 1 Other Other +83822c90-1a83-42ac-9921-f80cf861228d 1 Other Other +83822edf-08cd-4fd8-8b14-4969e5eabfdc 1 Other Other +83823c40-2e24-486c-ab64-ebe8e93f4933 1 Other Other +838269ec-5d18-4f56-8dab-a7598421bf38 1 Other Other +838363c0-28cc-4b44-8368-a0e097187ddc 1 Other Other +8383c4f0-e696-4b2a-b73e-39afacf6a5eb 1 Other Other +8383d42e-179d-4ebb-8f2d-73e189379997 1 Other Other +8383e103-8750-4859-9a64-7d61593065e0 1 Other Other +83840a1d-c6c3-44e1-8b46-1e164f68f1db 1 Other Other +838425cd-538c-4962-8445-635e1564c58d 1 Other Other +838446dc-8919-4dab-8aa3-2e49515a7824 1 Other Other +83845882-7211-4210-8c3a-f1714d270bd2 1 James Other +83847e07-cb71-4395-b633-124c3ffc5a19 1 Other Other +838482b7-a9f0-454d-9cee-7d2fb9e3f38f 1 Other Other +83853a1d-de03-4d85-9179-252d41090e33 1 Other Other +8385c865-f00f-41b5-bcd0-ef31a75198b0 1 Other Other +8385fd64-2cb8-42d2-84a8-1859c1dc8887 1 Other Other +83860cbe-ee61-442e-aee9-f0d31f68ef03 1 Other Other +838684d5-fdb8-45ce-92bf-1aa82505a3c7 1 \N Other +8386957e-3578-441e-8172-f5a8c7ffd2b6 1 Other Other +83871e56-5547-44ed-a714-fc4b2a76bf9a 1 Other Other +83876edd-9a6a-48dd-aa2f-2ad70d97fc03 1 Other Other +83878966-a6ab-40d2-85e5-8b810a76d70f 1 Other Other +8387ae44-407c-4419-86d5-d269f2e933a7 1 Other Other +8388c21c-8a50-4657-8c12-15ce95a99200 1 Other Other +83893926-5c88-4b6d-a3d0-64b0dfd0cacd 1 Other Other +8389468d-68dc-4f1d-aa90-f495f58327c8 1 Other Other +83894b66-8ce6-447f-9c87-82229a34547f 1 Other Other +8389785d-df67-480c-80fb-6ec97951f452 1 Other Other +8389a036-2ca0-43e9-b603-78ce3a073b88 1 Other Other +8389a25c-2963-4cfb-ac35-628bd02ff971 1 Other Other +8389b3e2-4587-49e5-919c-293ffbe583b0 1 Other Other +8389eed2-a0fc-47f3-8b29-c6b1b78dd42e 1 \N Other +838a66c6-d898-42f2-9993-c42a62890da7 1 Other Other +838a926e-c459-4b78-8341-86bf6526758f 1 Other Other +838abc16-48aa-4834-a167-49c465164a51 1 Other Other +838ad368-0df0-46a7-acfb-5496c263d7df 1 \N Other +838ad673-024c-460d-9f14-6cb72aeed351 1 Other Other +838b3438-8f70-4887-a6f3-d5d19e99c37f 1 Other Other +838b7d75-d914-4da1-a497-16336386ef15 1 Other Other +838b845c-c173-4760-b9a5-49ba047308db 1 Other Other +838bd9b5-64c3-4850-995c-559fbee887d0 1 Other Other +838bf2f8-f4b0-41d3-8979-364c61d734af 1 Other Other +838c2322-9eb9-46bd-b23a-cffb11974253 1 Other Other +838c79e3-56a7-4ecf-806f-1219bad03b74 1 Other Other +838c9c3e-8359-4806-8274-be1ed549f934 1 Other Other +838cd336-655d-4463-b59d-170be77cdbe1 1 Other Other +838d0fcd-7038-4b51-99e3-da96e911d707 1 James Other +838d3ee8-b123-468b-a923-35badf98d938 1 Other Other +838d449a-525e-4b8f-a99b-a5b0eebdc3da 1 Other Other +838d601d-6b4c-4379-8cc5-7989a787675f 1 Other Other +838d6f46-0aad-4bfb-9c5a-e5e6d8927872 1 Other Other +838d8b58-754b-4a8d-8dbb-9f82db3ecb5f 1 Other Other +838daa48-44e1-4f6b-95bb-635e11152af9 1 Other Other +838ded36-87fb-40e1-9af0-2bc28e9cbce6 1 Other Other +838e2a7a-2874-42b7-8306-671f163b8b19 1 Other Other +838e9f73-84b1-4f0b-9388-a68fafbbbc01 1 Other Other +838ee7ea-de37-420b-befe-6e2bea6b073f 1 Other Other +838ef86a-d8c9-4831-b16b-cfe9dfa3c350 1 Other Other +838f1ab5-6ac8-4d3a-8e21-47d474136909 1 Other Other +838f2fa2-77b3-46fd-b545-36f70cee29c5 1 Other Other +838f3754-a605-4c2d-9f78-536ce3496ed2 1 Other Other +838f8a9b-d7dc-47d9-ada3-955f24c409fd 1 Other Other +838fa51c-72bb-42ef-a62d-e97c77b80505 1 Other Other +83905fc9-04bc-4054-8451-777e7ec832e9 1 \N Other +83908f31-cd9f-4e1d-ae1c-e2ba61274f6b 1 James Other +8390e5aa-b08c-45a6-868a-9ffefb8e61a9 1 Other Other +8391133b-d857-4d5b-a331-ec247a5556f9 1 Other Other +83916d84-af4a-4ec7-9acc-efe2a38615ab 1 Other Other +8391d930-02cd-4943-93da-bd776ca2c7e6 1 Other Other +8391e4ff-17fe-4510-bcac-e7c2b98d22a8 1 Other Other +8391fc3f-cfce-4783-973f-fd33239a1e8d 1 Other Other +83928bda-1570-4881-a1fd-5877fcbd906f 1 Other Other +8392c427-214b-4754-96f0-aaf8613fef29 1 Other Other +8392e633-2732-4ff3-b0a9-a4ce5d37d9e8 1 Other Other +8392ea49-b8be-497a-b9b4-c2e4e8a01cdd 1 Other Other +839305cc-9bbb-4e48-a2da-63a2bc1c4959 1 Other Other +839367c7-0bee-4a52-9ae1-d662fe033f08 1 Other Other +83938abc-66c1-4bea-ab28-f835cd002c36 1 Other Other +8393ac99-46a5-4c26-b5c8-a9990f63b42f 1 Other Other +8393f615-7e2e-436c-abd3-07ec86056a94 1 Other Other +8393f9b0-dfa9-4f79-b78e-c39d9fe83155 1 Other Other +8394757d-2e90-4850-a3d3-b50a3b77c5d0 1 Other Other +83948c3b-3b36-4050-8ab5-12d1872d9b8d 1 Other Other +8394dfce-7435-4943-8167-eef32eed2600 1 \N Other +8394f02d-37cc-4199-9d5e-4bf5ab47b28d 1 Other Other +8394fc90-5d5f-4873-b1ac-639cb589c6a7 1 Other Other +8395386d-77a0-4bcc-a2b1-02fc592bb836 1 Other Other +83956779-10e1-49e9-9292-0f41718cbaa0 1 Other Other +83958f6c-8273-4f09-87f2-5f3167551689 1 Other Other +83959a7f-90e8-41ce-8cb8-5e6aa12208a5 1 Other Other +8395dba5-f492-4682-9bde-1bfc90ffe5da 1 Other Other +8395ecac-6ce0-4bc4-8756-45d86560dc68 1 \N Other +83961b7e-9ad2-4e72-9214-e4e33a9d3a3f 1 Other Other +83968c22-306a-4339-80e0-01171b4cd5b7 1 Other Other +8396a1da-8d0e-425a-950f-4b733f629963 1 Other Other +8396b7b4-dc01-4ac2-b588-24c767b4ecf5 1 Other Other +8396cf25-fd60-4760-86cf-c3bb166cd5e5 1 Other Other +8396d3a8-3474-4966-8604-866489a277f9 1 Other Other +8396deb1-46a7-4656-95a6-e8a6134550d0 1 Other Other +83974334-a399-48b3-b7a0-325424eea3c2 1 Other Other +839769f6-26f0-42ab-9e9c-c599c2c26fd5 1 Other Other +83976daa-52c2-4ffb-8dae-7b2bdbecce06 1 Other Other +8397a316-6baf-4af8-824a-b1db5e9f98ad 1 Other Other +8397c124-e516-476b-8932-443eb350eb34 1 Other Other +8397d0bc-a6f9-4aa5-8e65-728d89a2d276 1 Other Other +8397df1a-d42b-4e84-bf55-a7272ada7e2d 1 Other Other +83985aa7-9b7c-4e2e-a1bc-461970211796 1 Other Other +8398952b-2ed2-4444-8ed2-26047473e521 1 Other Other +8398e5bb-8471-454b-89ed-4f9ef4107840 1 Other Other +8398f323-12ca-411a-af35-55b5ef0d2df4 1 Other Other +8399040e-e315-4304-b16e-61cb27efaa3e 1 Other Other +83994855-26d0-42aa-8541-0d2a8251a6d6 1 Other Other +8399a992-2d49-4f40-8c25-00bcbb40c5c8 1 Other Other +8399b8af-50d2-4de7-a57b-5a99644b1a3c 1 Other Other +8399ede8-f92b-4c42-af57-1b8fab358807 1 Other Other +8399f964-cfdd-4ab1-9ad4-eb62f58ad13a 1 Other Other +839a15ca-0da1-4bf5-bb28-4b84f9b8910f 1 Other Other +839a37e8-11da-4393-81a6-17d5a883951d 1 Other Other +839a3e2c-aff8-4bd9-8c95-d6ec6a027c07 1 Other Other +839a75ab-bf17-4355-aa76-e16376b44a22 1 Other Other +839a7745-7889-4676-912c-30c4e1cc2104 1 Other Other +839a98df-b5c5-41cc-b283-6da65ff1d30d 1 Other Other +839ab694-394b-4f19-8ad2-06dc559953b1 1 Other Other +839b2366-0b0f-4519-9cac-4d134c519df4 1 Other Other +839b471f-7b0a-4ce9-b329-3cb0e8951c93 1 Other Other +839b5a4e-6114-43e2-86f4-03f399298720 1 Other Other +839b6427-ca50-4463-b789-23d4f9ee104e 1 Other Other +839b7e19-a53c-4ecd-b0c2-32799e759162 1 Other Other +839ba9c7-54cc-4a8b-b6d4-4009973b0173 1 Other Other +839bba68-e729-4c8f-a3ae-39730136010b 1 Other Other +839bd670-aa09-412c-8a52-1fa7c59e0423 1 Other Other +839c1021-4897-44a2-9bd3-8a22a1886255 1 Other Other +839c13af-9a8a-4343-bb3c-9384045e508e 1 Other Other +839c324c-dbb0-49a9-8418-c22abb88d879 1 Other Other +839c66a4-aa7a-4284-b811-bd390bfa4dbb 1 Other Other +839cff42-4a85-4e4f-9799-a3bc306bea60 1 Other Other +839d097d-c28c-4eda-907b-340e9e36c491 1 Other Other +839d6aaf-1f3a-4453-9998-c88b2c661acb 1 Other Other +839def8f-eacf-4d1f-960b-ef7de4866157 1 Other Other +839df761-e77a-4907-81e1-60c065c3f533 1 Other Other +839dfcec-2021-4063-bebb-02eab9186c5f 1 Other Other +839e72b9-07d9-4ba4-a88d-d6948c7912d6 1 Other Other +839e93bc-702f-4142-b83c-4f218f39b405 1 Other Other +839eb265-8838-42a2-a6d1-1d0c5a8fe1f9 1 Other Other +839f2f46-c45e-4e65-9e19-61a07f8da93e 1 Other Other +839f34d1-8534-4e1b-a9e4-01ecbda59232 1 Other Other +839f4cfd-c09b-4cba-a215-51460d03a0fb 1 Other Other +839f8490-6be4-4389-8d7f-77f076aa4bc5 1 Other Other +83a00952-27a1-485c-b484-b221a53e48a4 1 Other Other +83a033af-a480-492a-95e1-3adc1e626467 1 Other Other +83a05f18-a23d-4e58-a3d9-10694267eac5 1 Other Other +83a077b2-6caf-4353-8e86-4894b8fe5824 1 Other Other +83a0af6d-b2e4-4742-bfff-f82585cfd1ad 1 Other Other +83a153e5-8ee0-42e9-bbf4-2e468e557233 1 Other Other +83a186f5-f94e-4a2a-a40a-bced40c42ba4 1 Other Other +83a19a7b-952b-4429-a92e-b6c3ac6b5f6c 1 Other Other +83a1a81c-0dca-4597-9df3-81ba4a02f59c 1 Other Other +83a1a938-da0f-40d4-a8ed-d0f5d9c84413 1 Other Other +83a1baa2-f5fd-47d4-be10-17582c9ed9cc 1 Other Other +83a1ce9b-c664-4b06-a47a-481b32b97af7 1 Other Other +83a1e008-5797-4924-9753-98055b1e33ad 1 Other Other +83a1e661-bd38-4ba3-90dd-70fdb1817802 1 Other Other +83a1e760-b4ab-475b-82ce-695328c60cbc 1 Other Other +83a21ff7-b39c-4b83-a80f-9955c235d259 1 Other Other +83a248e8-c866-40a1-ab7f-3cba3c86b35c 1 Other Other +83a27946-c937-4523-8bdb-8379d2ace2ca 1 Other Other +83a2a2df-ae22-4ba9-81b7-e605a0c1245c 1 Other Other +83a2dd6e-bf64-411a-a579-c1459ce81185 1 Other Other +83a2e12e-5bd6-446a-990e-ee6bd2cc6352 1 Other Other +83a2fdf8-dea8-4d37-92ae-39fa28511fe4 1 Other Other +83a30dd2-a27b-4181-9a9f-3589672d9d31 1 Other Other +83a3433c-75d1-4a83-b78b-f2b8dc833b6b 1 Other Other +83a39369-85ea-4728-b645-1eaef7b21edc 1 Other Other +83a3ba50-125b-4fea-8ff8-3a5ef75f9ea4 1 Other Other +83a3e75a-0116-40f1-91f1-2fdf094aa248 1 James Other +83a40aa7-d1c8-4de3-86d2-cee08465fe6e 1 Other Other +83a40c9d-48ca-42e4-8b14-b197be5b352b 1 Other Other +83a41e02-6a48-4315-995a-10fd217a4f5c 1 Other Other +83a434c4-18ac-44a5-a215-70047d02e702 1 Other Other +83a435c7-652e-460c-a4ac-53db142b9beb 1 Other Other +83a44ede-cb56-4c6a-ad46-e6a3368c7825 1 \N Other +83a45994-45a4-4342-baf9-6f67915cbf9c 1 Other Other +83a4cb68-2520-4656-bee4-27627437a8a6 1 Other Other +83a4f66e-a769-48df-ad3c-576458244f0d 1 Other Other +83a50cf8-ec95-4328-9264-532d21cb3b82 1 Other Other +83a51cfd-e99a-478d-aa95-d43d0dd54437 1 Other Other +83a58b46-d831-4e26-a444-8aa4d25b55c3 1 Other Other +83a5acdc-4973-4d76-8475-3ab9b6c9fb7c 1 Other Other +83a5d8b0-3b1e-4194-9a5e-40fbf9201921 1 Other Other +83a5e2e1-792c-4f6e-945a-cd3217ee2ff1 1 Other Other +83a60a13-82c4-49bf-85ad-e4e42908cd17 1 Other Other +83a62a34-b680-4f84-bfbe-bdf5a984bb5a 1 Other Other +83a6865b-43e0-4b22-8166-6ff2395d8416 1 Other Other +83a6a742-5c8c-4391-b020-06b6252b67a4 1 Other Other +83a6ed52-9194-4fd9-a524-ac0f47e909ae 1 Other Other +83a703b5-37a6-4934-be7b-82a6cff2fa56 1 Other Other +83a70544-221c-43b5-a70c-188d72e88888 1 Other Other +83a72361-69c8-44fc-834a-5f94c58f737a 1 Other Other +83a72bc2-cc11-46b2-8b3c-6046d8ff6ce3 1 Other Other +83a74dae-e143-40dd-ab03-8f5101203f7d 1 Other Other +83a7b96a-422d-485c-b019-2c96b450e5cc 1 Other Other +83a7cc7a-dc32-4822-bdb7-ac6fd16ef659 1 Other Other +83a7e1dd-69ac-430c-90f7-282a68a43d3a 1 Other Other +83a84bfd-0e60-4a24-a811-0377c825ee1c 1 James Other +83a86a62-a840-441f-87d9-e1a3dfc0a8a3 1 Other Other +83a87c3e-413e-4eed-954b-7273fa9557d9 1 Other Other +83a8884e-4f00-4cfb-a96c-abc8bd09e447 1 Other Other +83a8b3cd-fd3e-4c34-9dbd-11f30f5770ec 1 Other Other +83a8f9a2-6bb9-44db-b01b-cf0f63c7fa3b 1 Other Other +83a99707-e907-431e-9b2d-c8fee68e8202 1 Other Other +83a9cb63-e8bc-41b8-ae33-96e998d826e6 1 Other Other +83a9f371-00a3-433e-ba09-b5366385b720 1 Other Other +83ab02f5-3ee1-4e0c-83b1-eb2fcf5b1b42 1 Other Other +83ab3c15-f262-4543-91d3-f49f6cd1fbef 1 Other Other +83ab64ce-616d-4664-9271-39a7d3e18eeb 1 Other Other +83abcb96-e967-4440-b908-e2c7cd036b09 1 Other Other +83abe79e-58fe-4aa1-8f88-b1ba660b2ffe 1 Other Other +83ac003a-ceab-4083-933b-fff82317e00f 1 Other Other +83ac0874-729c-4532-8d35-5ae2fe901eed 1 Other Other +83acbbb5-4342-4fe0-819e-501efe9e5df1 1 Other Other +83acc401-1184-4bbe-bd76-6b53ba62cb8d 1 Other Other +83acd70e-50b8-4d1c-b718-5a72709ea58e 1 Other Other +83ace062-71a1-4826-94c7-e649074ba4d8 1 Other Other +83acfbbc-c8c6-480e-bbbd-f90fde6a54db 1 Other Other +83ad2ad3-61df-46ba-861e-f4d4197c1f28 1 Other Other +83ad6085-aee5-4cc5-847b-79ea0318d568 1 Other Other +83ad6538-3de8-4855-bf32-3bab3d56cd94 1 Other Other +83ad8b50-8404-4cbd-b54f-c2c51e0bfa08 1 Other Other +83adc279-0b12-481e-8110-72efc2287eca 1 Other Other +83ae32d4-eed6-4f06-b0c4-96549213f461 1 Other Other +83ae6efd-7dbf-4219-be31-d579028d45bd 1 Other Other +83ae7716-17f6-4ab9-b74a-be94f5c689a6 1 Other Other +83ae7845-03f8-4256-9f0e-0796d219d471 1 Other Other +83aebea0-5316-41c7-bdaa-40b4f243fa3e 1 Other Other +83aee4c3-8c67-484d-a510-8d342468bf97 1 Other Other +83aef362-c2c2-4395-bd30-9bde92eb69a1 1 Other Other +83af0bd0-b41b-4ec4-98c1-aaf19aaff913 1 Other Other +83af1463-0af2-4f2d-a525-5bc35cc03586 1 Other Other +83af4d00-f42e-44f5-a393-b0e66a7adb7c 1 Other Other +83af6a5e-f6b8-4136-89ab-be062f315c84 1 Other Other +83af76e8-0d68-4aad-994a-02988e1c91d0 1 \N Other +83af8dca-9a6b-4d1b-a019-e71404ccb853 1 Other Other +83af9aa7-b64f-4bc5-ae42-e499bc689ebb 1 Other Other +83afb85e-20c4-4560-a78b-7d9be2309c49 1 Other Other +83afd95e-c52f-4bbb-8155-4c3e3cfe655f 1 Other Other +83afdd42-af6a-4f7a-a61b-8ca3f7163f0d 1 Other Other +83b00bdf-4ef9-477c-babf-a07a53e4ba94 1 Other Other +83b02d28-514a-40ff-bd5e-7913cec6b18d 1 Other Other +83b087a3-97a7-4104-97f6-a6a30a3995cf 1 Other Other +83b095e1-9506-49f0-9e79-065f79e5f533 1 Other Other +83b0aa76-b1e3-46cf-9e41-3e9b6c9cffa9 1 James Other +83b0e020-bebb-43ce-bff9-29377eb141d1 1 Other Other +83b1898b-fe41-4b58-adc8-022b7f566555 1 \N Other +83b1ad55-a8b7-4e40-af24-6ed9a89408f6 1 Other Other +83b1e48b-26cf-4795-93f8-04b6d4fcd71b 1 Other Other +83b1f8c6-ba63-4c3c-8888-b939831f8a94 1 Other Other +83b235e4-df57-4187-a0af-44fec8360a21 1 Other Other +83b2f1fc-87b3-49da-b47e-2c54f8170151 1 Other Other +83b34342-a32d-4579-8b22-f023304c2d81 1 Other Other +83b3f85c-5c1c-46d7-a8fa-6e5657ffc07f 1 Other Other +83b40047-139a-43ff-816b-1f9578d15614 1 Other Other +83b41530-342d-4589-8815-d99bf47078d9 1 Other Other +83b4d599-e08a-4d55-aa4c-be695a441879 1 Other Other +83b4d6de-d8c3-4662-8807-32aaed7fe66f 1 Other Other +83b5141b-fb3c-4783-a913-c843d929d9e4 1 Other Other +83b58b1c-b0db-462f-851a-38d2e78004ba 1 Other Other +83b61341-d2bc-42a5-a936-6807b11f50cf 1 Other Other +83b613de-ed4f-4d2f-8e73-edd52ea9cd5d 1 Other Other +83b61fe6-8890-422e-ac83-97827f049c39 1 Other Other +83b62399-1ba3-480d-8697-873bee0ad23a 1 Other Other +83b6335a-a088-4893-8f26-ca770c650b47 1 Other Other +83b64e5b-cf01-429e-aba6-5785db3f4426 1 Other Other +83b6d10e-94ce-4387-8069-96205a511695 1 Other Other +83b6f191-997f-40e4-9a1d-e12e75937d19 1 Other Other +83b75393-58dc-4b93-b777-243b4c2e99bc 1 Other Other +83b76483-b0d8-467e-b815-d232ab96acda 1 Other Other +83b770b9-270b-4a65-a8f2-1602e33c25d8 1 Other Other +83b78b35-d271-4a8a-b347-ed5c6f950ecb 1 Other Other +83b7a81c-99d9-45e9-9981-9afb4c2900f7 1 Other Other +83b7f5a1-a1d5-4284-b5ad-902f84246cf0 1 Other Other +83b7fc2d-1998-432a-a2e5-327773c8169b 1 Other Other +83b80528-c624-4a67-918d-b3329d6874d2 1 Other Other +83b814ba-f2ca-4dd8-b6ef-c9914952dc89 1 Other Other +83b897cf-eb08-452b-b120-e75964e62ce2 1 Other Other +83b8aeee-5b4d-44a8-a4e6-5d7130904c4b 1 Other Other +83b8c02e-9795-11e7-85b4-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +83b90878-fb35-42e3-b541-898278bab24d 1 Other Other +83b91a91-6f94-4a9d-a8bf-e83ef0da5511 1 Other Other +83b96012-963e-4aeb-880d-ff2da10ec184 1 Other Other +83b96507-bd83-4eff-a008-702f331d750c 1 Other Other +83ba1342-6e30-40fe-9a77-9136fc8d9d5e 1 Other Other +83ba22b9-5ee6-4e17-838f-721c1eb84a48 1 Other Other +83ba3e14-928a-4a0d-bf49-48096d3203b1 1 Other Other +83ba61f5-4b9a-4992-bec3-ae9a64e9c0f7 1 Other Other +83ba8e33-f7bd-42d1-b2cb-9027a136a170 1 Other Other +83baa8fb-264a-4214-9e5e-f0bed147be82 1 Other Other +83bac2f6-a102-45d0-82c9-5592cd91b14e 1 Other Other +83bada06-899a-427c-96d9-a5ef73bf4ec7 1 Other Other +83bade72-7ac8-406e-bf2d-7d6c94457536 1 Other Other +83bb1514-2fbb-4394-bfc3-0a61ea0f112f 1 James Other +83bb1717-ac6b-44bf-9dbf-67fb05d76cbf 1 Other Other +83bb6b83-9eab-4d2d-8874-9c7a4215d887 1 Other Other +83bb8310-555d-43b9-8536-1e1b7200f8cf 1 Other Other +83bbb7e5-15c2-47de-9810-f6c79f3a5269 1 Other Other +83bbbefc-58a9-4cc4-98fd-9331cacb2679 1 Other Other +83bc368a-5dd4-47a9-a8da-c9727c6e4b17 1 Other Other +83bc3927-3b0e-4c92-bfd6-35b2c7e2ab50 1 Other Other +83bcc305-9ae0-40e0-8f8e-e1567930e287 1 Other Other +83bcd919-3af8-4dff-bb63-ae17e1ec8315 1 Other Other +83bd01b4-755c-48ad-b5f7-37d610e04fd3 1 Other Other +83bd637e-9b24-4380-8898-62508af6db29 1 Other Other +83bd737b-4281-423b-8518-b535e20543c5 1 Other Other +83bd95c7-7521-4855-bd96-ddad7d89e735 1 Other Other +83bdbd43-96bb-4a4b-9eab-25b02bd473db 1 Other Other +83be3b0c-ce38-49c7-9a09-09207a2e758e 1 Other Other +83beef4d-5f59-4ba4-ad2e-48b69689b706 1 Other Other +83bf1405-ceff-4a96-a940-7806c4d50b9d 1 Other Other +83bf3ba6-7b8d-42cc-b2b0-74adc36423bc 1 Other Other +83bf4a92-274a-4436-94e0-9a956705314a 1 \N Other +83bf4bd0-be21-48d9-80a2-aa3be8c51b48 1 Other Other +83bf6198-044e-4528-83ee-6419c3c05d9f 1 Other Other +83bf9920-d797-4f8c-834d-a0cc7d649880 1 Other Other +83c044fc-c29f-4747-9621-22f7d61d246e 1 Other Other +83c0bc34-ca3a-44e7-abf4-bcc9dc867c0d 1 Other Other +83c0f0f8-288b-4060-a7e5-098e4fdbca6b 1 Other Other +83c13b55-d612-4822-9d43-8a9bf2aa6f4c 1 Other Other +83c13e58-6e35-43ba-be8f-c637e3de40a5 1 Other Other +83c169e5-8a4b-4f88-9083-8f207eb00e18 1 Other Other +83c1a90d-988b-44e2-a54f-4e6a5d08f4f4 1 Other Other +83c1abe9-9795-47e2-99dd-affb5a2a5182 1 Other Other +83c1deab-2e2f-4d5e-a817-673aa5d14c4a 1 Other Other +83c1e060-8788-4b8f-b3ae-44a403607f64 1 Other Other +83c1eaf7-6cde-4816-be55-ebb0142478a9 1 Other Other +83c21c9d-45b7-4d61-82a7-c492e8452533 1 Other Other +83c23d50-fb9a-4699-9b2e-c1f4b940262c 1 Other Other +83c252d1-46b9-4366-866e-c808177a5421 1 Other Other +83c26b77-f169-41a7-8b18-7595d6ac2f80 1 Other Other +83c26edd-e991-412f-a059-57277b364a93 1 James Other +83c2781b-bc64-4b57-a986-e76be22b77f5 1 James Other +83c2f203-a9b2-42ff-ae69-a4d3a5471521 1 Other Other +83c36a78-80f4-4a53-8d70-e32adf7e663f 1 Other Other +83c390fb-1051-4cef-9f31-f6689a026004 1 Other Other +83c39734-bc8a-4ef5-bec6-d7df1943c39e 1 \N Other +83c3de24-9865-4850-a214-058efb62bbc5 1 Other Other +83c3e5a1-49ce-496b-9265-f6a05df60640 1 Other Other +83c425e5-bdcd-43d0-9071-171ce1340265 1 Other Other +83c439ba-a51a-4bc6-ac78-d6ce4e4fa165 1 Other Other +83c456c3-47e5-4e9f-8a2c-d1147350f2a8 1 Other Other +83c47b65-2891-411d-988b-54ae0306d4da 1 Other Other +83c485ee-4113-45dc-a553-a5b8484d181f 1 Other Other +83c49a74-4caf-4e24-bb4e-45da80a85557 1 Other Other +83c5890d-c394-4d78-b6a5-4cd917d5b3c2 1 Other Other +83c5a406-49d9-47b1-bfda-3e70d19a0593 1 Other Other +83c5c0f5-6ccb-4b21-b38f-d547d3d68b9a 1 Other Other +83c6522b-f5aa-4f57-8253-9ea6d56157a6 1 Other Other +83c72727-8131-40e5-84b9-321e07e9cdc9 1 Other Other +83c72734-a18f-415b-b41b-53f3fb3797ed 1 \N Other +83c7534d-7e57-4aba-892d-4f7d3af60230 1 Other Other +83c7d004-27ed-491c-9539-55efaaa70d5f 1 Other Other +83c7e8c9-a52e-4a61-b632-b0a3cdd5cd99 1 Other Other +83c7f416-9843-4e44-8463-6e51447e259a 1 Other Other +83c814cb-2ed6-405a-8153-46b7521acba6 1 \N Other +83c85816-8da7-4487-b688-9453f808c769 1 Other Other +83c8638a-9142-428d-99cc-5eff5f6a0ed0 1 Other Other +83c8b109-10d0-4ad7-a812-a4970ec8ddf5 1 Other Other +83c8e9a3-9352-4468-9895-15207e8d24cb 1 Other Other +83c8ff42-756c-4c0f-bb07-aa1a4b8f0bb0 1 Other Other +83c9680a-4833-4a1b-8f0c-922773dcdd19 1 Other Other +83c9d5f9-070d-4845-beb6-408ce34fad92 1 Other Other +83ca4d0e-0f88-4dec-8ebe-44f6fb911eda 1 Other Other +83ca569c-97ad-4e3c-8e34-8564a67cdd5a 1 Other Other +83caae83-919a-4b33-bd59-579f46855b89 1 Other Other +83cab7c4-2da2-4e00-a354-1b53797e7c0a 1 Other Other +83cad133-3303-479e-8d99-4f8f06659d71 1 Other Other +83cb0363-ac5e-4723-a4c8-c6374448cc25 1 Other Other +83cb1e5e-5b81-4c3b-8f7f-a85be6f5c435 1 Other Other +83cb1f4b-6a52-443b-9723-27f97b08347e 1 Other Other +83cb82e3-bff2-41eb-b3ee-25b9d57a72a2 1 Other Other +83cb86dc-2179-4b3d-acb6-3234afe5be93 1 Other Other +83cb9668-5fa8-46bc-b8ee-e1569c1d6adc 1 Other Other +83cbde0d-6166-4e87-a084-edb6337cff97 1 Other Other +83cbec4d-e98d-4f1c-a5b4-183b1415e4b8 1 Other Other +83cbfabb-cbc6-4652-9edb-601fe03e801f 1 Other Other +83cc48d4-d856-415b-9f2e-cc7d5a610fdf 1 Other Other +83cc64bf-e677-41af-8a57-dc090bca8675 1 Other Other +83cc9cc4-e983-4dd6-8965-c9dccd91044b 1 Other Other +83ccac30-ae48-4c51-a529-d64875ef9213 1 Other Other +83ccd4c5-a514-46cb-a3f3-6108a54167e1 1 Other Other +83ccecf3-16f8-4932-add1-3cfef60910f0 1 Other Other +83cd21e6-81ba-4600-9d3d-fa508373e0a2 1 Other Other +83cd8d5f-30b5-4804-b3d8-1ac2bb3e5ad1 1 Other Other +83cd9402-c127-4d91-bddc-bbe8ae914e42 1 Other Other +83cdc266-0779-48f2-bb6a-52408bfd912b 1 Other Other +83cdca16-1b5b-46de-84eb-7ac3df61937d 1 Other Other +83ce1834-1fca-4ac0-af65-381cc3152193 1 Other Other +83ce1d08-ab48-4969-a16c-9d25cd736db9 1 Other Other +83ce26c9-6ce3-492d-82c6-367477b3a737 1 Other Other +83ce41d7-6e8f-4c89-9d87-b711cb4bc2b7 1 \N Other +83ce7e0c-d70c-4620-bdc7-723e5ff55693 1 Other Other +83cedd19-2760-4daa-85ec-b67cd1c2bccd 1 Other Other +83cf0179-14e2-4ca7-ad54-8c2868ed7db6 1 Other Other +83cf387b-c143-469a-a584-ce6fd92ae95e 1 Other Other +83cfc79d-77a3-4ed5-8324-1f29427ce34e 1 Other Other +83cfcd52-e2b9-4944-8baf-1b2d5d98c09b 1 Other Other +83cfea9f-5ae3-4699-8468-d8ae2cdab9b9 1 Other Other +83d0746b-0687-46d3-907e-5a5aa1ecb6e6 1 Other Other +83d097a2-6711-4bdc-b85e-b214a25c28f9 1 Other Other +83d0e1a1-4460-4850-bd96-4e7762732f90 1 Other Other +83d0f73a-d518-4e00-bda8-f4a65eaa85b9 1 Other Other +83d0f7c7-bde3-4e5e-9ee0-b6c984cbc18c 1 Other Other +83d0fae8-aefe-4920-932d-8ddb3be7cebd 1 Other Other +83d0fcad-3f90-4df9-af10-23fa79eb331f 1 James Other +83d1282e-1cad-4a26-bd71-069a8c830776 1 Other Other +83d13f81-8c68-4785-adba-02a60993bc36 1 Other Other +83d17edf-4db5-4212-940b-766b221696cc 1 Other Other +83d195f1-799a-482e-ae1a-8817fdad2307 1 Other Other +83d1a1d3-d31e-4d42-b5e7-c152f9ab88ec 1 \N Other +83d1e16d-890c-4409-bcbb-37586cc5a90f 1 Other Other +83d1f8cc-4d79-4cb3-a98e-056fcba08717 1 Other Other +83d20713-6511-4313-9675-202d5cee826c 1 Other Other +83d26619-a78c-43c0-8987-d5c5ae82749c 1 Other Other +83d27078-2608-49ac-a201-de2d0ab78a35 1 Other Other +83d30bca-1b5c-4652-ad3f-9c7800f35dff 1 Other Other +83d351ad-4087-4c96-93ee-7b7f7191a3fe 1 \N Other +83d36731-e5cd-4cb1-b6c5-9bd7c9b4cabe 1 Other Other +83d37a46-e16c-4ef9-84e1-33825e0d455a 1 Other Other +83d3aec4-106b-429f-bb90-cc589e5fd053 1 Other Other +83d3b369-f78a-414d-96af-b7b803b18815 1 Other Other +83d3e6d7-c5d8-4624-b3a7-31b56a663bc0 1 Other Other +83d3f858-135c-480a-98b9-752c05606e05 1 Other Other +83d44032-14f1-444a-862b-74a11792db96 1 Other Other +83d49bac-6f0b-4d94-8ebe-3662099b826d 1 Other Other +83d4e8af-d479-4cf4-a033-408db2a5d53f 1 Other Other +83d5036f-2c61-4bad-92ad-2e66921f477b 1 Other Other +83d525a6-37b7-4c18-8387-6b0710cfe7b0 1 Other Other +83d54d58-03ef-4c25-936b-06413b2e510a 1 Other Other +83d55204-7b94-471c-a07a-61fb0813fdca 1 Other Other +83d57586-963e-456e-8993-edd524009737 1 Other Other +83d58276-e375-4bb2-a68c-9641b381cf95 1 Other Other +83d59652-6206-4f6a-94ab-6e399ece07b7 1 Other Other +83d5a1ca-a56c-4601-9814-6e9295f1d6e0 1 Other Other +83d5a28c-b443-4b92-b572-6f90d7dc36e4 1 Other Other +83d5aa91-89b5-481e-9664-f80fc9b186e5 1 Other Other +83d65194-7896-4ef2-ae80-b8c4659a0e14 1 Other Other +83d68c1c-4109-44bd-98ad-bee052502926 1 Other Other +83d6b28f-d622-403e-9b99-3b83e29279df 1 Other Other +83d6d6b9-4d78-40ec-a0dd-4a78f2179f36 1 Other Other +83d6fd27-2fef-441d-bde6-28911a10441a 1 Other Other +83d728aa-edda-4ee6-974e-bb069517db4a 1 Other Other +83d73079-9111-4257-9578-9d1b162e6a9a 1 Other Other +83d74b8d-0d74-4a6f-96f9-67bf41f8f29b 1 Other Other +83d74fa0-e195-4fbb-98a7-1e76801285de 1 James Other +83d76a7a-c536-4b46-895b-8c6123b88e80 1 Other Other +83d76b04-c082-418d-9388-76a21c3fd779 1 Other Other +83d76cfd-8629-4795-9452-f60d0deefda6 1 Other Other +83d7907d-13cb-48cb-98ea-56a4d77b55f7 1 Other Other +83d7a334-deb9-4633-8f39-33aadcb43c6c 1 Other Other +83d7fa6e-ccfb-4b83-bd56-92e6f28789a7 1 \N Other +83d81e99-7426-46b8-93f0-2b6954a48726 1 Other Other +83d83634-56f3-43fc-8c87-3572e82930fe 1 Other Other +83d84434-82a6-4a21-a984-227863f34fd2 1 James Other +83d84814-efc3-4282-a45a-51bfab206125 1 Other Other +83d8a1c8-72dc-4a31-8549-1acf70ae49bb 1 Other Other +83d8c8bb-0d6f-428c-9d48-19d1436c4555 1 Other Other +83d8fe55-26b6-4590-bd8a-309b0cfecc72 1 Other Other +83d9a69e-e179-4f2c-8ba0-5daa9a2f4dc1 1 Other Other +83d9b769-1c1e-47cc-bb4a-fa86446867eb 1 Other Other +83da129b-1b0c-480d-b42d-edbb6712e052 1 Other Other +83da1de9-cf10-4abf-a04e-38e65bd8fab3 1 Other Other +83da3491-ceea-4385-9a7a-ed76b48cdf92 1 Other Other +83da4362-e9c2-4b10-8133-06517915e580 1 Other Other +83da8192-2d5b-4102-8a1b-49acd6f3a9cd 1 \N Other +83dab1f4-10ed-430c-aff8-6807b75bb971 1 Other Other +83daf935-288c-40e4-bf0c-f02dceea71d2 1 Other Other +83db25e2-bc6c-4cd4-88b0-dfb2da9a40ee 1 Other Other +83db3d23-3b31-4f62-bf21-2f7173e3dbc2 1 James Other +83db5105-54b4-49d1-b2e6-2670c9a47c04 1 Other Other +83dbca64-d229-451a-9759-7214fabebceb 1 Other Other +83dc0302-27c5-4b35-880e-cbe29388bcbb 1 Other Other +83dc1495-8ed4-4f00-824a-9432fe20bc17 1 Other Other +83dc26fd-e5c7-4317-b0ed-0f107324eaa5 1 Other Other +83dc7034-bbd6-4e15-8284-41dd8d85567d 1 Other Other +83dc7075-e294-470a-ba6b-cc56df17c166 1 Other Other +83dc7a1b-903b-4e3f-a3f6-06ad71c1cdae 1 Other Other +83dcba88-0ef6-459e-b7fb-9cf6c826573a 1 Other Other +83dcc676-7533-4e9e-a17b-6235594129b0 1 Other Other +83dcdd75-b87d-4b7e-8b13-1afd496f5ff4 1 Other Other +83dce9c2-18f9-4bf8-8628-6d1bc36134df 1 Other Other +83dd245e-5310-440d-85cf-3f36965aaa21 1 Other Other +83dd401e-93d2-459a-9662-9094a80f767f 1 Other Other +83dd72fe-4ee1-4d33-b070-41978da7c464 1 James Other +83dd80bf-321d-4c8d-93ce-bbc8f583731b 1 Other Other +83ddad3b-01db-4b85-8945-bd90bdfdb5a0 1 Other Other +83de2979-06c1-488c-8196-7b9c71b7ea6d 1 Other Other +83de3367-e95f-492b-be50-17b1541bc85d 1 Other Other +83de3aa6-5cf1-41e0-9c37-2b577e66ef21 1 Other Other +83de811f-8270-4ff5-9ca7-e92151813d08 1 Other Other +83de8730-70c9-4067-ad92-c1ea6c398546 1 Other Other +83debb30-f1fb-4233-ae20-018c526f6be5 1 Other Other +83debbc2-158f-4bf2-bb61-51f9433692d6 1 Other Other +83dec7de-de91-4053-a6d0-bccce494977d 1 Other Other +83dedcd9-7350-4f42-addf-fa3715fc224f 1 Other Other +83df0c73-36f4-47e9-8294-366e74361dcd 1 Other Other +83df0c9c-c79c-4f8b-9032-0d4f8327805c 1 Other Other +83df1b1d-d825-4195-a9fe-c32c2e74843a 1 Other Other +83df5148-7e94-441e-bc24-07e2364c9319 1 Other Other +83df5d87-a66d-4593-b91b-03157fe7cc01 1 Other Other +83dfd256-6d0e-443d-9d28-f719000ea382 1 Other Other +83dffba5-443f-4456-902c-4bbe50299fc9 1 Other Other +83e0492f-0b15-4f38-9d58-bb9f41c9ba85 1 Other Other +83e0517a-66e2-49de-a798-d95c1ab2aa16 1 Other Other +83e06ab2-5c67-4678-b281-f07a7af0218c 1 Other Other +83e0717c-4e26-4cbe-a8a5-53d5a95ff950 1 Other Other +83e08244-d795-4a42-9ef7-d0ba55ba686a 1 Other Other +83e09536-3f3f-44a6-a96f-9f29127c85d3 1 Other Other +83e0fb11-698a-4f82-9eb3-966a44fae94a 1 Other Other +83e11588-70a0-4821-b364-f847642377be 1 Other Other +83e14622-73a7-459f-9519-29645f14590b 1 Other Other +83e154b8-71a0-4379-8a6b-6c6f1ee284b6 1 Other Other +83e20d8d-4da0-4f90-b10a-3ef018cb8c26 1 \N Other +83e249d1-3330-4305-8de4-72ba4866797a 1 Other Other +83e26f24-454c-41b3-96a6-4216f9d26c46 1 Other Other +83e2a279-d1e3-4c7d-9d3e-7d3ddf655631 1 Other Other +83e2ce47-8fc4-4807-af28-9514b8827e31 1 Other Other +83e2fcf6-1a76-445c-86c0-55f5dca4e57c 1 Other Other +83e39154-9618-4d79-8b00-f6d02c07c0eb 1 \N Other +83e395c0-f9f8-4eb7-9fa7-0860aa3b0694 1 Other Other +83e3a821-9b62-4c77-91f7-59118d7b912b 1 Other Other +83e47075-2e6f-421a-b52d-20217b909bd2 1 Other Other +83e4d591-0729-4813-bb7d-d62833b373a0 1 Other Other +83e50eed-eb9d-495f-a624-fde1e1cf8c78 1 Other Other +83e54801-2ae4-48f2-a12a-f9ca49322115 1 Other Other +83e572c1-30cf-4cdf-b6c5-d7f901736ad0 1 Other Other +83e63c3f-bb8f-4f71-8c46-e58e2626170b 1 Other Other +83e66024-223b-4e91-9520-e8b7d722ccba 1 Other Other +83e67e49-eaf0-4dc0-8f12-ffcb1df430fe 1 Other Other +83e6a03d-e8ff-4b52-80b2-a83168741296 1 Other Other +83e6cd3e-6bfc-4578-a476-4861898924c7 1 Other Other +83e6fd12-6043-44fe-bdd4-8c3bfa550fc9 1 Other Other +83e75b51-88aa-435c-a033-e545ab1129d2 1 James Other +83e7a185-3bd3-4609-803e-68ee284121a9 1 Other Other +83e80115-1d49-4004-8ed6-cf55893cc0ca 1 Other Other +83e83a8d-623b-47a7-9fd5-5126823c5f79 1 Other Other +83e84017-2ab1-455b-b4f5-7aff8ff3373d 1 Other Other +83e85a49-847d-48f4-970d-c551cf40046d 1 Other Other +83e896bd-49f8-4354-b89b-6af251b06c29 1 Other Other +83e97950-2658-4042-871d-e7e0ee53168a 1 Other Other +83e9d91e-4408-4e21-9e1e-360502f2022d 1 Other Other +83e9fcd5-c1c7-4975-82c3-e95d0567c78c 1 Other Other +83ea1f99-ccfe-4ea5-9ddc-5f619ef4d508 1 Other Other +83ea331b-20f9-4a1d-98ed-fe081fc18007 1 Other Other +83ea4b88-21dc-4f11-8867-15806c930eac 1 Other Other +83eb189a-b9bb-4d82-981c-b48793c9356a 1 Other Other +83eb4259-683b-4ff5-9fc7-6d0d7245c06d 1 Other Other +83eba0f5-e562-4a39-a4cd-8b366484335b 1 Other Other +83ebd181-4878-4601-8356-eca69db412dd 1 Other Other +83ebdd50-9fd9-47fe-be27-42a777832321 1 Other Other +83ebe19b-7ad7-4379-ae45-01c3d2641e54 1 Other Other +83ec2a72-7b1b-4f97-bcb8-1da5412b1c13 1 Other Other +83ec9da8-27d4-4950-b46c-7c63ded8fc60 1 Other Other +83ecaaa0-a69d-4c9f-9db2-8efa49601831 1 Other Other +83ece681-94d4-4c65-80d4-27528de961df 1 Other Other +83ed1846-6055-415f-9b9a-2737474aa5c0 1 Other Other +83ed3e7f-13e7-40b1-b19b-101578a1d97c 1 Other Other +83ed8856-319a-43aa-8129-df29adc99f85 1 Other Other +83edbc0d-aca1-4fe2-9da5-4918a5cd575c 1 Other Other +83ede757-be5c-4d14-9b3f-99b6aa9042ce 1 Other Other +83ee6d3c-5104-4160-9a16-ab34533c69cb 1 Other Other +83eea0d5-760a-45ba-8fdf-f6c684f26042 1 Other Other +83eea2aa-41f6-4099-aa62-7891b3422068 1 Other Other +83eeb637-ad62-40b9-bf3d-de134d2f3c8f 1 Other Other +83eef335-105d-41fd-b981-cebc9303cb62 1 Other Other +83ef3113-5aa1-4edd-bcd8-f67b26ea46c3 1 Other Other +83ef5ab2-f902-47ac-b599-1532a5e7a7c3 1 Other Other +83ef82fd-6e2a-4507-ae79-7e93edbe3b36 1 Other Other +83ef8861-6cb0-4517-a94b-ba098f1e65d8 1 Other Other +83ef8f77-9f3b-4a5d-9097-c951b4e3fa32 1 Other Other +83efad28-b624-4e4d-81f8-4bccdf8dc236 1 Other Other +83f0327f-10e0-4525-9e0b-900b75008187 1 Other Other +83f0358b-882e-4ac2-882a-211c168321ae 1 Other Other +83f08724-c7e3-4d47-a107-58f9916a62cd 1 Other Other +83f0efb0-e1cc-445b-acc7-e02911d1bdf8 1 Other Other +83f1252b-8771-45c4-ba56-1cfad6439e89 1 Other Other +83f183c1-4d4e-4941-a1c6-743ed695f530 1 \N Other +83f1cb20-ddc6-4c67-a721-7d49caa4e43f 1 Other Other +83f21c4c-1a5c-48e1-8661-bd6afbf01eb3 1 Other Other +83f224ae-c865-44a5-8b7c-ee232152b25d 1 Other Other +83f239bd-b823-4426-b5e2-939f4a6f6821 1 Other Other +83f2a7cf-ba3f-48fa-beb9-223760b7694c 1 Other Other +83f2c7fc-b2fc-46c3-9e9e-5f75eb04c614 1 Other Other +83f2d9e0-fc7b-4dca-b8a5-aa8ca9c14bed 1 Other Other +83f2e180-4b20-4605-a333-dc514a17f8bb 1 Other Other +83f31a29-f144-4955-85dc-0fe216e1727e 1 Other Other +83f33de8-fac9-4741-b1e9-c30af35847da 1 Other Other +83f3407b-aa0c-45a6-aa01-6cf06cce262c 1 Other Other +83f349ac-5640-4a73-a167-7eb3fe62ebc2 1 Other Other +83f3d5bd-ecad-4028-a16b-d15b311067ea 1 Other Other +83f3ef95-b17e-4adf-a949-1e8d920b90f6 1 James Other +83f45d25-8050-41eb-b468-08138addcaee 1 Other Other +83f4a3d3-e686-4287-ba1e-ce1462c555f9 1 Other Other +83f51aa5-0f12-4e76-a6be-17d7c5f88ef0 1 Other Other +83f5297e-59a7-4072-a8a2-6e34e4cc9d01 1 Other Other +83f53b78-8274-4dc0-8403-270d42c379d4 1 Other Other +83f5428b-eec0-4f3d-9297-84969eb40df0 1 Other Other +83f563ae-6b70-4601-b8a4-b9cd893bf982 1 Other Other +83f577f1-695e-4454-a543-11e567229dc1 1 Other Other +83f5ac32-917d-4a1c-bc9f-ab734d79ea6e 1 Other Other +83f5b8c1-0ace-41e0-8e17-6d0dd2573c92 1 Other Other +83f5f928-8470-4b17-8e63-c19c2d4967c0 1 Other Other +83f60e28-dfa7-48c7-8c55-7a6a91afc3e1 1 Other Other +83f624ca-255c-4784-8e76-c27f8a4e4d93 1 \N Other +83f64c6c-70b8-499c-8399-6ac2d526a777 1 Other Other +83f75525-7ab4-4239-8a09-f7bd412170ce 1 Other Other +83f766eb-35eb-44ae-9367-9d2c15061992 1 Other Other +83f78b0a-f06b-4fe9-8cc1-f66f7ccdeaa8 1 Other Other +83f7bd97-fe36-4d08-aad9-a46fe98ee4ed 1 Other Other +83f82329-d5de-464c-8817-c73725f7981f 1 Other Other +83f855e4-46a5-4ccf-871d-af8a75d1a7a8 1 Other Other +83f86580-c63c-42f2-89ab-a7970536faef 1 Other Other +83f89c97-6921-4d12-ab11-0d517e57d799 1 Other Other +83f8b687-318b-419b-9f1b-d7fc4d674cc7 1 Other Other +83f8e199-181d-45cc-94bb-b9d75a3ce2c9 1 Other Other +83f93f02-cd70-46ec-b33e-8a33c39056c8 1 \N Other +83f94c7c-925d-4a7e-b96c-a384662d78e7 1 Other Other +83f9587f-a349-4b77-a457-c890fe1275cd 1 Other Other +83f96393-1012-4045-945c-68e6ac51316f 1 Other Other +83f98d62-ffc9-4d68-b6f3-652b2473d220 1 Other Other +83f9b11c-068e-431d-bc70-c46cbbd26534 1 \N Other +83fa39ea-f3d7-4449-83f4-146dd88c1f79 1 Other Other +83fa5d28-ce81-43de-9e3c-60b4c92a6cf2 1 Other Other +83fa9f32-1f03-4041-9962-f8f12cbb4e34 1 Other Other +83faa0c0-c95f-4c36-ab69-99a17219708f 1 Other Other +83faacf4-0574-4ff7-bd2e-06537e71e716 1 Other Other +83facba1-6d84-4ade-9f8d-1f1f7c560443 1 Other Other +83fad8d2-dc0c-4bf1-9cdf-c7ee3e8b3935 1 Other Other +83faf75f-1268-49e4-abf8-103209667330 1 Other Other +83fb6177-1488-4519-b2f1-985c9529be87 1 Other Other +83fb63de-bf76-4a43-b03d-0e4c3456431e 1 Other Other +83fb9670-606b-46b8-ae37-c10b68291e48 1 Other Other +83fb9ea0-7987-4ecb-b7c2-50c250b7d262 1 Other Other +83fbbed8-a774-4867-a8c3-8674e4f264c9 1 Other Other +83fbf490-55b0-4c88-b0b2-0aff5c967224 1 Other Other +83fc13ad-0f3f-4471-8e35-3f933077483c 1 Other Other +83fc28da-68ba-45f1-86f3-e98587ee3625 1 James Other +83fc5430-adbe-4486-9b73-6676a69eca21 1 Other Other +83fc5458-781a-4495-985e-cfc8c8eeff0d 1 Other Other +83fc57f7-53ef-45fa-8e3c-612badea7092 1 Other Other +83fc5fe3-0036-49a2-b316-c7cf6d7f1979 1 Other Other +83fc9d8a-336e-4572-a0af-2c1e640c5ca8 1 Other Other +83fcc148-c22f-4d2c-b247-ce36d6477132 1 Other Other +83fcc301-de7f-4ae0-aef5-fb7de6d9dc6d 1 Other Other +83fccd41-3614-433b-8a33-714be6d4e537 1 Other Other +83fd0618-9f7e-433b-aa56-427d200aa551 1 Other Other +83fd4ab6-6208-40e2-83f2-2d5fa0cf8da2 1 Other Other +83fd87fd-e37c-412b-9aca-fa2896406d01 1 James Other +83fd925e-32a3-495e-9f3b-8b79e81944d3 1 Other Other +83fdb0ea-810c-4a18-b45e-bb2b74749d26 1 Other Other +83fdb97e-0035-4c48-b198-8fb06d0219b4 1 Other Other +83fdd9d4-bc54-4f8e-9bac-683d6b1dc1f4 1 Other Other +83fde4a2-4cba-4d1f-8188-36531cbb68c3 1 Other Other +83fdfca1-7047-4467-b19f-0226ce864d77 1 Other Other +83fe9a43-441f-4e7a-9f39-d3228e634b45 1 Other Other +83fea415-ff38-4718-8c38-fb8f2ac86af5 1 Other Other +83fea90f-1e57-4e0a-aec3-8cae929c6776 1 Other Other +83febc97-8b20-495d-acb8-a62f83501e87 1 Other Other +83ff34ff-494c-4c34-8cef-c35620166b87 1 Other Other +83ff38c5-5697-4373-ad44-09bddb572285 1 Other Other +83ff8672-21fb-464c-a3c1-f8261c39481c 1 Other Other +83ffd82b-922c-45d2-9639-a2193e494454 1 Other Other +83ffdb57-5318-410b-871a-0128ffdb8a7f 1 Other Other +83fff7d1-f85c-4879-99c1-420e2e2e1a70 1 Other Other +840004e1-f3f6-4560-8898-06cb100df2d4 1 Other Other +84004e85-39ff-4ef4-8a52-50f2e89efeaf 1 Other Other +84005612-c3a6-4468-9cee-e0966b6c0dc8 1 Other Other +8400acf6-6d99-452f-aca5-7287bf5e3aae 1 Other Other +8400c6e6-f03f-49fb-b359-512ceb4b07b0 1 Other Other +8400c9ef-37b8-4ac4-806f-c2aa43658824 1 Other Other +8401353a-936c-46f1-b457-0d35703feff9 1 Other Other +84022429-9896-4201-8533-c1799696e720 1 Other Other +84026438-6788-4635-bc4a-097e4f45f46c 1 Other Other +84028e59-9180-430d-973a-326617f69e35 1 Other Other +84029e81-63f6-4179-a873-8974ef0236d2 1 Other Other +8402a05c-c16c-4ca2-a0fe-94e3f24e83c5 1 Other Other +8402ac2d-b5fa-405b-8bb6-370b5480ba8f 1 Other Other +8402bcfb-3e55-4267-bb42-8b723d3198b5 1 Other Other +84031181-418d-4b3a-a521-d5f5eb4c81b2 1 Other Other +84038f7f-0eb5-40fc-a81f-5da6f7ee644e 1 Other Other +84038ffc-c433-48aa-80c1-1f8819f65b98 1 Other Other +84040a6a-c6c3-496b-a995-94d34bf229d3 1 Other Other +8404431a-ce16-43f0-961e-777bc5369b29 1 Other Other +84045f16-3dba-409f-a35a-44ccb8fd4bb3 1 Other Other +84046d4c-2402-4295-80f2-ca203eb75208 1 Other Other +84048e0e-1804-4768-b78d-f951c84d87bf 1 Other Other +8404b9c6-69bd-46ce-81c1-bf87be781758 1 Other Other +8404dd36-0ea8-4b0b-90b0-ae7c905e0b9c 1 Other Other +8404f2a9-43dc-4584-8d38-a7230243e3e8 1 Other Other +84050a9c-34ed-4935-9298-9e0ad68be468 1 Other Other +84051a8c-57c7-454d-9665-e11bb1b7b603 1 Other Other +84055feb-a8da-4181-bc3c-ec7815aab565 1 Other Other +84058a9b-47a7-486e-b5f4-753cb08c43e4 1 Other Other +8405cfed-5757-4f6e-9390-8acea6ebf9cf 1 Other Other +8405e5ae-21bc-4f5c-b8e6-68c25a2375c1 1 Other Other +84067725-8362-4456-a537-aafbce4c9ac3 1 Other Other +840678da-0e6e-43e0-9ee3-c9afc3cb118a 1 Other Other +84069be6-5ec6-46fb-b34d-059c6254ba50 1 Other Other +8406b9e6-2940-470c-a011-355a74118e95 1 Other Other +8406e386-39d6-4a62-a106-aa2371b18dc3 1 Other Other +84072f76-e657-40e7-8b85-b9733f503e33 1 Other Other +840741b4-273e-4c31-a76f-c59664466a38 1 Other Other +84079032-06d7-4b49-9923-7be67b771e1a 1 Other Other +8407f077-a255-4dfc-99f9-bfa42683c49d 1 Other Other +84080de7-24ff-425f-ae13-5a1b4cbcf6c9 1 Other Other +8408127f-bc47-453f-80e2-30f5a0a85d55 1 Other Other +84083999-8aea-4152-821b-d6a167e1f2e4 1 Other Other +8408b6bb-ed48-4a59-aa54-18d05cb2455a 1 Other Other +84094c61-cd10-4c6b-9ebe-820e7b9724d9 1 Other Other +840964da-0245-4561-a1d2-22450e1c16c1 1 Other Other +8409b6be-6064-424d-89eb-5b01bdc2fa77 1 \N Other +8409e9a8-76f0-42e8-b097-9813b07a2115 1 Other Other +840a1f25-9380-4c22-907f-350b40786913 1 Other Other +840a9728-a42f-409e-8f24-66b033256832 1 Other Other +840a9f00-d234-4a77-86ac-94b79a4554cf 1 Other Other +840acf8b-e78c-4ba6-83a2-b1e760797e1e 1 Other Other +840ad6fb-504e-4c02-a7b5-3825e8ef66f0 1 Other Other +840ad91c-5210-4c6d-9066-64520d78306c 1 Other Other +840af0a5-52ad-4a0a-aebc-a01c7cf4a2d9 1 Other Other +840b2da7-9350-41be-b89c-87c99ecd235d 1 Other Other +840b2eaf-6f36-4a1e-8f86-9ef6245d09f3 1 Other Other +840b50de-7d0a-4dcf-9c53-ad840eb35521 1 Other Other +840bcb06-a898-4e96-adbb-10ce7cad06f0 1 Other Other +840c30e6-03b5-45e6-bda2-e3f2f8515ccc 1 Other Other +840cc8ea-964c-42a1-bff1-139bce1077ec 1 Other Other +840cc971-f844-4b33-9872-4ed79fc823bd 1 Other Other +840cd053-aead-4556-88a8-4c764daf5a71 1 Other Other +840d3c98-6c32-4cb8-b551-c5c38fbc1225 1 Other Other +840d990e-dd30-434c-b7cb-37d727b1bcf5 1 Other Other +840e0190-d28a-4378-ba18-5134d6ae805f 1 Other Other +840e21a7-7870-4ea4-b90a-064882686148 1 Other Other +840e3b70-91aa-4be1-be9f-c6ad0e8acdf8 1 Other Other +840e5429-e35e-4f31-bb20-1c3b2e529898 1 Other Other +840e6e8e-c216-4aa6-a7c7-f67e21503e07 1 Other Other +840e84bf-dff7-4f8b-a524-081a8d2c6507 1 Other Other +840e9e43-f394-4684-919d-489659360b08 1 Other Other +840ec861-397f-4265-8988-3a545f895a73 1 Other Other +840ee7f0-5830-4cf4-9c91-46c27db6f536 1 Other Other +840ef553-7da2-48d0-882a-8152c458d421 1 Other Other +840f102e-2f92-401e-9a23-f6e27252db74 1 Other Other +840f2035-5ef6-412e-a4bb-2dd8df11cdff 1 Other Other +840f2850-8d94-4911-95e3-1b871e70106b 1 Other Other +840fa275-0bef-4c1d-bd33-ac95ffaf28a2 1 Other Other +84101c5e-88ef-4eb4-9d98-89cc7ec68d66 1 Other Other +8410282e-57ad-4b83-b182-2db8752a1bf0 1 Other Other +84103319-2a9d-435f-9ad5-c39650456dc0 1 Other Other +84105a41-1f28-4f45-91f9-cb8d45ee9433 1 Other Other +84105b7e-4be1-4ad0-a051-76091c166e76 1 Other Other +8410656d-bd65-41fa-874e-2ddaac1d63f0 1 Other Other +8410af2a-fff9-4c7b-85b0-f8731e495ff4 1 Other Other +8410d787-6341-49e3-b2c5-59ee80bb4ce1 1 Other Other +84111d1a-d2f7-4c33-8386-7bc7c0e13ac0 1 Other Other +8411643c-831f-403c-ade4-e23be9ea624b 1 Other Other +841168c2-8239-476b-bc6e-2d6a45185fa0 1 Other Other +841189f5-d93f-40e7-a676-be4be87d287f 1 Other Other +84118e4e-8efd-4753-b2c2-15a9c28cb536 1 Other Other +8411c887-8ab5-497a-85e5-0e283df585bc 1 Other Other +8412321b-67a0-49a0-acd0-7c56059cc06b 1 James Other +84123e9e-7fee-47d7-b915-fd2898aaf617 1 Other Other +841287a0-cd4f-4fb6-b2ac-052b0d6b2ec9 1 Other Other +84129576-309f-4021-99b2-169f6e99bd0c 1 Other Other +8412a8f7-d1c5-4e1e-8e6b-2ead1103e58f 1 Other Other +8412b2a5-a49b-4b2d-b378-84c85b58abc0 1 Other Other +8412ded1-379d-4f6d-bc9e-38079501fec0 1 Other Other +8412e272-f23a-43e2-a055-8ed7dffc84aa 1 Other Other +841362cf-1085-45fc-aba6-a8cf9af528ae 1 Other Other +8413a8fd-86c2-43ba-a63c-3b5a42e6e4e2 1 Other Other +84140bd8-ca77-4b62-b5e5-53629679a66a 1 Other Other +84142419-63c8-4d56-8c88-0dc48853fe37 1 James Other +8414467a-ca72-4064-9f04-2ae4cae7a12e 1 \N Other +84145044-e85c-4f69-9b4e-41357f186b42 1 Other Other +8414c273-fbe6-4de9-8d9d-28c7130d20c1 1 Other Other +84157ac1-bd44-498d-ab41-e1e607bf4d8d 1 Other Other +8415c04e-2bfe-49e7-a79b-b8f98c771ca0 1 Other Other +8415d8cb-d9a0-492d-a776-4dd5948e36ce 1 Other Other +841601af-9d82-41c0-b425-02679b23eeb5 1 Other Other +84161e6f-9b05-4cc6-8fed-d88f1a0dc467 1 Other Other +8416473e-5254-4746-8369-11232fc4b51a 1 Other Other +84168b45-2699-421f-9816-f271227865c7 1 Other Other +84169dbf-5b05-45f1-82f0-2cce18737311 1 Other Other +8416b79c-df4c-4059-a24e-21536ff151e6 1 Other Other +8416dd05-ff61-43b7-9677-b43f10f258d2 1 Other Other +84172408-b101-4b8e-96fb-8986d902591d 1 Other Other +8417a38e-6122-4956-a165-c41b80c67a8a 1 Other Other +84180891-843b-4148-a794-06eae7b1fa61 1 Other Other +84187515-288d-45d2-a178-4afdf3816e34 1 Other Other +8418efe0-eb42-4b73-af0d-6aa816dbc184 1 Other Other +8419103d-eebf-4075-b6e7-8f0fc6eec120 1 Other Other +84199a55-63f6-4838-b866-38435baa5613 1 Other Other +8419e707-fb1c-485d-b57b-bb8a71654c65 1 Other Other +8419ea85-3d7e-450e-8b9a-0be1fe15d6a2 1 \N Other +8419f84e-80a6-41ca-a22c-2801ce5a90f5 1 Other Other +841a23e1-773d-43e3-9f77-8a8f2039c175 1 Other Other +841aae70-3692-43f2-8b55-0d2a0c7848b6 1 Other Other +841ad343-c97e-4ff9-b9ff-339accd4096c 1 Other Other +841ade3a-72be-49c6-a98e-4dbe04a5014d 1 Other Other +841b3942-6d49-42e8-a69e-993b7d8ac310 1 Other Other +841b997b-9ce7-42bd-b253-4009b63eb34b 1 Other Other +841bc96c-5e4f-44b4-8068-131753a57174 1 Other Other +841c33b5-665e-4b37-a8e7-fc94299ba63e 1 Other Other +841c3f06-adf6-41f6-a74b-5e5ff44894c2 1 Other Other +841c400a-4a7c-4902-b24e-b97a2b224124 1 Other Other +841c5b2d-7010-4082-b228-ad00ef4fdf06 1 Other Other +841cef0c-37bc-463e-9f1e-e503fbdc8d28 1 \N Other +841d4041-2068-43c0-8149-79f69554104a 1 Other Other +841d9785-2d65-4e2a-ace9-c4d3d1648c64 1 Other Other +841dd383-3a1f-4c24-ad4c-bc1d197f17b1 1 Other Other +841dd810-22f4-4688-974f-e043950c58bb 1 Other Other +841e4a87-ac37-48f8-9e1c-4aa9791d20c9 1 Other Other +841e95d0-5aba-4a07-942e-de1bcf2b5b0b 1 \N Other +841ebc8d-4fcf-4e34-bd08-6135523cb52d 1 Other Other +841f48eb-582b-4ee6-b5be-3e120d2ec84a 1 Other Other +841f6a7e-3828-4c11-873b-03392ea303e1 1 Other Other +841fcfef-6a7f-4ffa-8c6b-80cef1cc0dbb 1 Other Other +84205b05-5de0-411e-b828-4816dc6597e1 1 Other Other +84205d88-3412-43bc-b463-ca2fe59e4242 1 Other Other +842065a4-5a3e-4e29-a8fd-d231d5faf484 1 Other Other +8420b157-be8f-43b6-b185-cdbbcfd17f59 1 Other Other +8420d056-d7e9-4d5f-8d07-5b827f6f6082 1 Other Other +8420f3d2-a321-42c1-b889-eb221311683b 1 Other Other +84210f60-44ce-426f-9142-1e85476b8325 1 Other Other +84211cbd-f122-448d-b337-60a8027559e2 1 Other Other +842133ed-dd0d-44e0-b04d-542a80a5253f 1 Other Other +84214beb-5bc0-46dc-8d48-9582d29a026c 1 Other Other +8421eaf9-4686-4af1-9f10-7f6a938abe94 1 Other Other +8421fac9-8c13-4016-917a-4c4211b800df 1 Other Other +8422058f-8307-437f-873e-60c84422bc13 1 Other Other +842254d6-9d49-4ebb-82b3-f077f78906cd 1 Other Other +8422b9f6-e0fe-48fc-b4b8-f548d9b31295 1 Other Other +84232084-99c1-4d5c-a729-f85b64ca9a57 1 Other Other +84233056-7bd1-4d0a-91da-a374035e669b 1 Other Other +8423a651-c1ae-43ff-9217-261eaff1dda8 1 Other Other +8423af58-310c-4c58-8b1d-3c2cabeb7d6e 1 Other Other +8423d9cf-a1a5-42cf-b868-ddc4a31a5d87 1 Other Other +8423f36f-f21b-414d-9cf5-19c13f11af31 1 Other Other +84245b53-ccdf-4c7a-820c-17241db4cc52 1 Other Other +84246d96-dbaf-49db-bda8-bb8000788fe2 1 Other Other +8424c10d-37b1-4729-9cdb-2fd8f416e187 1 Other Other +8424c4d0-8c46-429e-b43e-3d47266709a4 1 Other Other +8424ea68-79d1-47c4-a9a7-2c5d121ee94e 1 Other Other +842517d7-e889-46c0-b296-07b1b100ae86 1 Other Other +84255dd2-c63d-4a00-b3dd-cd74148f05b2 1 Other Other +8425a2a0-02ed-484d-9c9c-22eda0ea10fb 1 \N Other +8425b266-6656-4b8a-b4de-99ca4e16c2fd 1 Other Other +8425f3b2-fae6-487a-9833-2e0a26172a12 1 Other Other +8426262f-1753-4e5b-b898-7716b01fbbe5 1 Other Other +842657b8-96ed-11e7-a227-fa163e8624cc 257f6774-64eb-11e7-954b-fa163e4dd901 Other Other +84269df6-015b-41a3-922b-b7e85c9383da 1 Other Other +8426d773-e7d8-40bb-84fe-9bdd593cd8c0 1 Other Other +8426fa23-4134-4846-b448-e182ec2b7b40 1 Other Other +842736cc-f1a4-49ad-9b5f-f6ac703c8282 1 Other Other +84275edb-bea9-40d8-bbf8-ad79d49384c3 1 Other Other +8427c2ce-06ca-414d-acc2-367982e6bc54 1 Other Other +8427d030-b0e8-4299-8be1-d6c42ba30ac7 1 Other Other +842853e1-ab1c-46ec-9522-fd8aa35435d6 1 Other Other +8428ad32-6787-4e66-9577-fc610150cfd6 1 Other Other +8429165c-fc85-4b9c-8c92-9e09a4cc07ae 1 Other Other +8429391a-bd35-46eb-ad97-cc64ee8d78a5 1 Other Other +84295656-157a-460d-ad3c-4c476630a07c 1 Other Other +84299bf4-afc0-4df6-9720-bfdee591fe7e 1 Other Other +8429a5c0-7f41-4cf3-9f7a-7caaeb5b487e 1 Other Other +8429b35b-5551-447a-a01b-3cc25ff7644c 1 Other Other +8429d941-d8c2-4115-8ca3-e240aa451b7c 1 Other Other +8429f323-d6f9-432f-a4f4-0888e3ccdf9b 1 Other Other +842a1235-c761-4b73-a6d4-f9eae3942d63 1 Other Other +842a2e73-e031-432d-8cfa-d38e42d86e81 1 Other Other +842a3e18-6ecf-4d54-90e2-6cf69c0f569b 1 Other Other +842a432f-afd6-48fd-80f7-e78337f0c911 1 Other Other +842a4823-ea22-4be3-8efd-d47e18a5f089 1 Other Other +842a6fc5-7d83-4e6e-9b4f-137f74e5394b 1 Other Other +842a74a4-46c4-4461-b924-07fb01fed4b3 1 Other Other +842ae545-2723-4a82-ba80-55b69c43839b 1 Other Other +842b0619-bcc3-40a1-bbd6-a3b7dd7d3ce7 1 Other Other +842b2d22-6a20-4df6-8eb2-15b0199ab20f 1 Other Other +842b8976-43a4-4116-92fd-29aa5846f246 1 Other Other +842b98c9-118c-43cb-86bb-bc4cb7f4e28b 1 Other Other +842bf297-28be-459f-a8c0-4a6545d33d32 1 Other Other +842c12dc-7789-4f04-ae1a-95e8235e244f 1 Other Other +842c20d7-b134-4d42-92fc-12e35a54065c 1 Other Other +842cb80c-71b7-46c3-8fdc-23d875a03b3c 1 Other Other +842cef25-2fa2-4e4b-bd3e-4a8652c6bbe2 1 \N Other +842d78bd-0793-4dc0-b723-da90ff54f5f3 1 Other Other +842d8a20-7a32-4d0c-982e-f6deefda1acb 1 Other Other +842dc023-558d-44be-95a8-dc10d5d32e78 1 Other Other +842de9a1-6bec-4075-8a12-dbcdbef5d5bf 1 Other Other +842dee13-116d-4d97-8768-89e1147664d4 1 Other Other +842e04a7-5297-4976-8124-fd2060ba4ee0 1 Other Other +842eb46c-608e-4621-8558-4144cf26c718 1 Other Other +842eda26-a6d3-4202-ad51-7ef962807688 1 Other Other +842f0a22-16ed-4ce2-8a89-1a6fc1efd4ed 1 Other Other +842f0e0a-9949-496e-94e8-bac8d06bf188 1 Other Other +842f1835-c262-40dc-9e9a-c790d887b9a7 1 Other Other +842f1d60-c99e-4b1b-941c-9532fd7b66cc 1 Other Other +842f5a50-8e1d-4f78-a3f4-cbb4069da173 1 Other Other +842f8613-7e08-4a1d-9006-8257399d19b0 1 Other Other +842fc771-de7b-425e-83d8-e446874f2565 1 Other Other +842ffdcb-0423-4fa8-a06f-497f8c7c9b3e 1 Other Other +84303f27-d6b4-4535-9f34-d9f775a4dabc 1 Other Other +8430457a-1315-4bb3-87a0-db6538e41032 1 Other Other +843052b3-3ce4-4783-8504-31dee4b3112a 1 Other Other +8430ac9f-1874-4f4b-84fd-11877ee853f5 1 Other Other +8430ce23-bf43-4136-8860-ac4012c164de 1 Other Other +84313e3d-bb30-4d42-a20e-d297e9a2dc0a 1 Other Other +843153d2-fa0b-486e-a450-fa65d4a69de4 1 Other Other +8431b4d5-052d-4e8b-9441-c451ba7c2998 1 Other Other +84320b41-3000-439f-8cd6-199ea6bbad87 1 \N Other +84323569-c6b1-47e8-b6ec-850033cf40a8 1 Other Other +843273dd-de8e-4182-9df1-96e32b0ebb44 1 James Other +84329440-79d1-4abb-b5ae-e6f068ef1c3e 1 James Other +8432e827-3fd5-4b99-806a-a2bd73ab4253 1 \N Other +8432f756-146f-4bde-a8f8-33fbb915cbaa 1 Other Other +8433c080-6797-4ffa-8ae4-62b8c1b5d0ee 1 Other Other +843432fd-a076-410d-805a-b0839d087fdc 1 Other Other +843485df-c939-468a-8d83-f16dc712530e 1 Other Other +84349101-2976-4c8f-9498-056d15d227d8 1 Other Other +8434d56d-2d13-4691-9c7c-cb63ecfdf7b4 1 Other Other +8434dcbb-412b-4391-b097-5ec9cd291f4c 1 Other Other +8435e2fb-4cb6-4635-9480-de687196d5c9 1 Other Other +84360010-19fa-4ee4-b69b-56f38c4a6bb4 1 Other Other +843628a6-4584-4eb8-a545-11243b802848 1 \N Other +84364441-cd6d-49fb-a200-4ecccdb2615a 1 Other Other +843676a7-2f19-464e-bc92-9e105ff8d6ed 1 Other Other +8436e686-5fbc-4ce1-9734-a1df8be8e8fe 1 Other Other +8437d7a1-41e6-48ae-906c-7cc49d0513a2 1 Other Other +843831d7-573d-463a-bd3c-12c6aa67fb61 1 Other Other +84387489-98c8-4d19-a382-c58eb5512bb3 1 Other Other +84389a19-99a0-4713-9e63-1a192f3d4e54 1 Other Other +84392ec5-e76b-4d3e-b773-c02fe42f9a6f 1 Other Other +84398dd8-2c4a-4a46-8f90-4b0b11bd8aa0 1 Other Other +84398fe6-8f0e-4f7d-a892-1500e7166c0f 1 Other Other +84399dbf-3f69-40b4-a568-6a9e46a31617 1 Other Other +843a06ba-897a-49ba-ab14-2f3d1af5cabe 1 Other Other +843a4a87-9ae4-4286-9bb5-2f91a277bb0e 1 Other Other +843af9c6-21df-4276-8c3b-40d28568f944 1 Other Other +843b82c1-a783-4f98-817c-a69146dcbd78 1 Other Other +843b88c0-b545-4632-bd9a-602e467eab3b 1 Other Other +843bb04b-0e73-4558-a693-d6737b902b23 1 Other Other +843c7cf6-678d-45ba-9730-fe7fd4a9b3cb 1 Other Other +843c923f-b083-44ad-87de-3a36849783ab 1 Other Other +843c9cb2-5098-4dce-ae60-87f87a29a672 1 Other Other +843ca6b1-e1cd-4a7d-a975-c78d2fa41124 1 Other Other +843cfc47-06d3-491d-b4ee-96a52232290e 1 \N Other +843d1d39-e66d-4f7b-b1f5-b8638f399612 1 Other Other +843d4850-c781-488c-a973-10b800571b49 1 Other Other +843d5b71-7bac-4688-93f8-545f9a39e846 1 Other Other +843d8c05-f471-4b04-8028-93d2680cec10 1 Other Other +843dc739-8a1f-4e8b-8820-437ff974ce0d 1 Other Other +843dd7e8-d22a-4a2f-a7fc-34de74504004 1 Other Other +843de363-c0c9-4c4c-a58c-40407bd318ab 1 Other Other +843df9d7-2cf0-4bb7-af43-da4ad6a174e7 1 Other Other +843e0fc8-f1a4-44a4-8d34-acc4a7ff2469 1 Other Other +843e6714-616c-493d-b9c5-35f3ec5d5dd8 1 Other Other +843e7696-32ae-407d-8e0c-4e432c03688a 1 Other Other +843ee074-ae7c-4d1e-84bb-6005d4f745d7 1 Other Other +843effc4-f261-4a43-8677-fa96d2b688b1 1 Other Other +843f4fc4-32d5-4050-b84a-7f613c3dc39d 1 James Other +843fb0f6-dac7-4ff4-b03d-ec9602201c54 1 Other Other +843fc07c-e43e-4dc4-9885-cabd571ca675 1 Other Other +843fc626-1e87-4334-89ee-36e69fc68084 1 Other Other +843fe861-47ac-422d-973f-39fb5af1c28a 1 Other Other +8440028b-d56f-4d2a-894b-588c8215edf4 1 Other Other +84403fb6-3eaf-4ed0-a914-0e3e062e6e9b 1 Other Other +8440aaae-d474-4120-9179-6e8f52ac37af 1 Other Other +8440b3c7-e478-4710-a5f4-7b74fea23802 1 Other Other +8440ba11-7020-4b25-9ebb-9b78304cd7c5 1 \N Other +8440e90e-a891-4227-bc7c-ad6642ea4179 1 \N Other +8440f410-de07-4d2d-ae63-35788bfb132e 1 Other Other +844139a2-bb43-45d4-9378-7afabd51cd27 1 Other Other +84416bca-57c0-4178-b0d0-5495680112fd 1 Other Other +844206f4-6584-46f2-b514-8ebe00809b43 1 Other Other +84423a10-4b7f-4c98-b483-38596f8bc6e6 1 Other Other +84425d3e-20d2-453e-a84a-9d74b19adf9b 1 Other Other +84426d00-6d3b-4de5-83c8-13120d0db989 1 Other Other +8442a5db-1de4-49ab-b292-5efcbe450e94 1 Other Other +8442e730-fa48-453e-b9e5-48452801453b 1 Other Other +8443209f-fe7f-47a3-a832-db902051655b 1 Other Other +8443a27d-4e79-4064-bb79-2e6c58d3ede8 1 Other Other +8443c9a6-83c1-4c57-bd21-ff89a4d26905 1 Other Other +8443cfc8-927b-46e5-9c23-b6c237ecca89 1 \N Other +844429d4-3937-4001-8f51-1264877d6b22 1 Other Other +84445ff6-7cac-4d1d-97b9-c7af05f455f6 1 James Other +84446968-d847-443e-bbaa-08a4f3a3e89b 1 Other Other +8444e744-70a6-4232-8bc7-7efef1f891ca 1 Other Other +8445371b-4a94-45a3-ad71-7344e4a6bff0 1 Other Other +84454dae-fa8f-4910-a358-eedd9b96e708 1 Other Other +84459986-6e9e-4639-8b10-89caf6298109 1 Other Other +844620f8-f4a1-4025-8bbf-4fc7cbc7354b 1 Other Other +8446218e-39a1-4c0a-bd69-102946cb5e21 1 Other Other +84463ae9-915b-418f-883f-5a76b87305fc 1 Other Other +84465a5c-e475-41ba-bd39-33a5425f1616 1 Other Other +84467dd0-204c-48a4-b5df-2d1fd84f104f 1 Other Other +8446895d-fb78-4fd9-9d7f-094c481b8b58 1 Other Other +8446e782-94ab-4ba2-a5f5-a23cdb2eba03 1 Other Other +8446f921-980d-4ce4-8d4a-9419a7a30081 1 Other Other +844751c6-6644-4f03-b833-86b4218bb76c 1 Other Other +844755f2-072b-4355-a669-c9b923a6c0aa 1 James Other +84476463-e5a8-48b1-a273-732fc917ee6a 1 Other Other +844782f1-178d-4fe8-9061-7c5727c435c7 1 Other Other +84478d73-57bd-49ab-b368-184ce71b405e 1 Other Other +8447a415-72bf-41e7-8e43-93d8ee4d2dd6 1 Other Other +8447b13d-1ea1-445e-a61e-26ed0536d9b4 1 Other Other +8447bd5f-cdfc-4657-8092-609098e489a5 1 Other Other +8447cc9d-ae51-4654-927d-64f597e53f8a 1 Other Other +8447d7b4-3d47-42c3-ad9d-241337c0e7a4 1 \N Other +844813dd-d0e8-40fe-bcde-acd8f33e10a9 1 Other Other +84483028-08e5-49b4-b292-2569cb730a1d 1 Other Other +8448368c-875c-43b7-982c-7707dae8faf7 1 \N Other +84483c12-bafd-4543-95c2-adb45f39d652 1 Other Other +8448693d-15c4-49d4-b8d0-78ab1436a425 1 Other Other +8448cc34-5669-470f-8893-12119d93b704 1 Other Other +844912a9-049e-4f26-bb39-9c40d16104cb 1 Other Other +84491d21-7f13-4529-97e0-acf2f8e7d4a7 1 Other Other +84493ed5-1d81-4b69-b047-0b0848193f02 1 Other Other +8449608e-2d56-429a-99c8-0e4c450d2c39 1 Other Other +844979e8-82a3-4a0d-82df-28632b6f193e 1 Other Other +8449e9ae-d145-4cac-9904-6ee7fa82e1a6 1 Other Other +8449f728-7f96-4e77-852e-c7db698cec12 1 Other Other +844a3f6f-9428-4f38-9452-f03cb3953ad1 1 Other Other +844a3fb9-07f4-49f4-8b11-ec1ab8a6451b 1 Other Other +844a488d-e425-45cb-ad9c-10b00f677c05 1 Other Other +844a6d7a-1b40-4470-b407-1f0344478bc7 1 Other Other +844a7d59-c8ea-428b-b327-be81f0b67dd3 1 Other Other +844a89b3-94ea-4cf6-a043-f5bff56d0dd7 1 Other Other +844a994a-8a0c-45a3-894a-233a7a116d19 1 Other Other +844a9afc-3cce-4af1-80ca-12bcd18957ae 1 Other Other +844aa6c3-e493-47d2-90da-15b257091a11 1 Other Other +844aa8f5-8ce4-4f7c-be8e-ddcbe18aec44 1 Other Other +844ab59f-144e-4226-b8a9-886378372e1d 1 Other Other +844ad61f-d3f0-44f1-be36-ac0bb84b5234 1 Other Other +844ad83d-5832-4cdb-8b8c-832d1e24f37e 1 Other Other +844b1a11-291f-416b-911c-22ad99e75e55 1 Other Other +844b4c5c-522a-4447-9594-629bc66d3593 1 Other Other +844b4eb1-d03e-4700-8573-45c9e0b3f3c3 1 Other Other +844b5f7b-3e54-4474-9912-3de950d4093a 1 Other Other +844b930f-7d9b-4b69-be13-4425261c2513 1 Other Other +844c38e0-5695-4cba-a88b-e695878a75ae 1 Other Other +844c636c-2605-4621-a4a9-77d5ce5c4eb3 1 Other Other +844c6db1-7932-423c-bc54-f8838b21f78b 1 Other Other +844c7000-cea9-4d1c-91bb-6f4bc4b88ae9 1 Other Other +844cac56-fcd3-492a-8e38-5ceaaaca11f0 1 Other Other +844d1b23-626d-4513-9bf0-5bc63cc82c93 1 Other Other +844d76d6-f469-475a-9143-bb5254e46e64 1 Other Other +844dc691-c31c-4376-826b-3387f40310de 1 Other Other +844dda68-edeb-48bb-9283-3533b5542aba 1 Other Other +844ddf6e-ae52-41ae-b524-33cc2c6b72c3 1 Other Other +844e18e3-1700-42cf-9421-d024c8575b25 1 Other Other +844e8d1c-d10c-490a-a85d-dd93202d8325 1 Other Other +844eb5d7-8759-4fbe-96b4-8361453b198b 1 Other Other +844f01a3-c98b-4538-bf1f-0540eeeb75e5 1 Other Other +844f203d-cdf7-4c1f-b2d8-0a034d2829a1 1 Other Other +844f572b-291b-451b-b9bf-d86071751108 1 Other Other +8450682d-4305-4585-b923-75dccd462315 1 Other Other +845077a4-577d-4a37-b077-b3ee72aa29c4 1 Other Other +84507eaf-6ed5-4b61-b52b-449e13abb678 1 Other Other +845154cd-308d-4856-8485-accfd561e921 1 Other Other +8451a4da-f6d8-48ab-a650-2f3bae87fade 1 Other Other +8451aad9-d988-461f-8cc4-e90807955277 1 Other Other +8451aee6-b73c-426c-b65e-26f0d775339a 1 \N Other +8451c2f7-6eb3-4270-818c-cecced3ee2cb 1 Other Other +84525055-5629-4c69-92e1-a690cfba516e 1 Other Other +84526329-0a70-4f87-bbc6-704b27346032 1 Other Other +845300aa-4702-47cd-8233-20ffc4ac33d9 1 Other Other +84538955-2a0e-40b7-9a63-3e2f6aff8cfb 1 Other Other +8453c17c-12f2-4922-86cc-8528cc95e9b4 1 Other Other +845410bf-14d9-49e9-b27b-521d551ec44c 1 Other Other +84544a12-97fc-4188-aa43-ddfa48b14b83 1 Other Other +84544c90-b1e9-450a-bd4b-b7ed7ce913e1 1 Other Other +84547dce-a438-4842-a2f1-2ab1c641659e 1 Other Other +845497f5-6ffc-4ee0-aba3-d386741d18c2 1 Other Other +84549bda-f563-4de6-991d-a2397ef94d9b 1 Other Other +84559669-bf47-4ca3-920a-ad8ef7f37630 1 Other Other +8455d0ec-a9b1-4ac4-a812-f6513a0ea85e 1 Other Other +84565d2d-32de-46fd-8b87-21cd405036ee 1 Other Other +845682e6-9612-442a-a67e-43ba78e13a93 1 Other Other +8457264e-29a8-44d2-a229-af2ca5e5ab39 1 Other Other +84573e9d-4a68-4599-9ed9-37a24658e0e8 1 Other Other +845789c3-6ff8-46b2-a581-ef5465f4de19 1 Other Other +84579ce4-f218-45ff-9a0d-9a31d4492e35 1 Other Other +8457acc2-7482-4d51-acf3-3ad9f731e356 1 Other Other +8457c1aa-fd28-4e75-acf8-9819bab990aa 1 Other Other +8457c7fb-ccfa-478c-8dcd-b10c2bbbd966 1 Other Other +84580419-3fb1-459a-b383-050be67ab1a3 1 Other Other +84580c98-39ec-44b7-a5af-c5dbfc848124 1 Other Other +84584c7d-80bd-4c80-9dbc-7abfc1cea08c 1 Other Other +84589172-860e-4656-820a-dbbdd9ce903f 1 Other Other +8458f1dd-062a-4ee2-9755-9db99296fb0d 1 Other Other +8459a8c3-84a4-4263-a387-70c2ef0b5ad7 1 Other Other +845a272d-9bfe-4b22-9670-0b597576fcbb 1 Other Other +845a3518-3bdd-4211-ab5e-ef451d8b1b5d 1 Other Other +845a49fb-2a0c-41ae-8c53-bf875dd7bdb0 1 Other Other +845aad78-ffbf-4aef-8cd9-bc7b4f810266 1 Other Other +845b0388-7197-4e62-a477-a0929a45e3de 1 Other Other +845b129d-6f31-4863-9de6-859bb657bfc6 1 Other Other +845b1591-27a1-4072-afe7-149c8ffd6208 1 Other Other +845b2f34-5a66-4c31-8d49-572acfff8a86 1 Other Other +845b3dfb-bcf7-4427-b5f5-db102710d313 1 Other Other +845b92ac-713c-4f72-9821-67c9b40d43ad 1 Other Other +845bbe78-0a81-4431-872b-561ecc0f5ad7 1 Other Other +845c315c-679e-43e2-b293-fd6e5926becc 1 James Other +845c3792-037c-4887-85e6-571a6f13311d 1 Other Other +845c5041-ca35-4f7e-9fab-2fc05d9872b4 1 Other Other +845c6a6c-8935-490d-bdfd-44fa889f63f7 1 Other Other +845cb398-58d6-43ec-b57b-4d6d8c31d809 1 Other Other +845cdbb6-551e-4c45-9cf2-66024dd7f7ac 1 Other Other +845d0aec-6ff9-4ab6-a82b-dc3b648638a4 1 Other Other +845d5982-8325-46f5-b0b8-cda25eb2886e 1 James Other +845de2b1-c9e9-4830-a1a0-ab474d6d0709 1 Other Other +845e0d5b-0b28-41be-9698-c8f44eeb79fa 1 Other Other +845e12d9-a4a2-4725-8f81-0412f315e6cb 1 Other Other +845e2597-2b8d-4b20-a620-bda1fa0dd3ac 1 Other Other +845e8140-3560-4775-8160-02341ce5377e 1 Other Other +845e846f-a3fa-478d-9c2e-d9ae134413ff 1 \N Other +845ea155-8b7c-489c-a1be-9d36985004bb 1 Other Other +845ea587-45d2-49c8-b25f-c01fb34ec528 1 Other Other +845ebe07-9be7-4dcf-b1be-282306a2c16b 1 Other Other +845ed47a-04ce-4840-95ec-793784876707 1 Other Other +845f05a7-92dc-42b1-b68d-513dbcee84e8 1 \N Other +845f32f8-1a8e-400a-b8d8-e404c4b9bc6d 1 Other Other +845f7812-1dd6-4334-bce7-2ecef26ddcb1 1 Other Other +845f7959-e369-4f00-bac1-7acd372325cd 1 Other Other +845f8896-0256-495b-8202-a8a45b96d0a8 1 Other Other +845fb3fb-dcf8-4fe1-b2a0-3eb01c0cbff5 1 Other Other +84600f9b-160f-4aa2-b174-a4e09efefce0 1 Other Other +84602a57-ed1a-426f-9377-420d960b3f8e 1 Other Other +84602a80-835f-474c-b124-e74050fb9aff 1 Other Other +84603a52-ccb1-43f4-86fa-c596165957b1 1 Other Other +84607716-8afc-4b45-900c-eec5ddcced16 1 Other Other +84609299-4378-4d68-ae5f-ab940ff37892 1 Other Other +8460feb2-1901-476e-8800-b71b0def80ca 1 Other Other +846109e9-cc4b-409f-a570-b3a47caea8b0 1 Other Other +84610d71-c4fc-4ecc-a881-cdc67fac8bbb 1 Other Other +84615814-bd3f-4626-a686-46a27cbae21a 1 \N Other +84616555-3b2d-4eba-9b87-fa9810d8da3d 1 Other Other +84618b6f-b456-44c1-977e-69afccb87b2e 1 Other Other +8461da42-1138-4393-aab9-af4376ec8ecb 1 Other Other +8461f8e3-f9b8-4dab-a5b0-c29dd6d73548 1 Other Other +846200a0-9b1f-4b2a-beb8-2caf32deef84 1 Other Other +84621b0f-6b5e-443c-aa56-0253e49a0e3d 1 Other Other +846295d0-7626-4696-89bc-1ce71f96d325 1 Other Other +8462a80e-fb49-43fb-b438-c3c77eee775e 1 Other Other +8462c2ca-f5bd-411f-b30b-2cff10ede330 1 Other Other +8462d7a1-563d-4ebb-a9cd-075f3de25347 1 Other Other +846303c3-f6f2-481f-a108-306c632b516f 1 Other Other +84631ab4-5631-4eae-abd4-c8b13617ef03 1 Other Other +84633422-ea18-479d-be4c-98a4d980ed52 1 Other Other +84633c07-44fd-45d6-b136-1f1348be57d9 1 \N Other +846368d7-eb9c-4ebd-9c6d-6c8d828f0ca3 1 Other Other +846373c9-6ae6-449f-8e7a-9bc635411f92 1 Other Other +846398ed-91c5-4615-ae14-03d15686abab 1 Other Other +84639fb2-462c-436f-9692-8f6d47c74046 1 Other Other +8463c53a-b27e-481a-b494-600b31cb73f1 1 Other Other +8463e839-dc20-428c-b7a6-19b66160130c 1 Other Other +84641fe9-ea3f-49fa-ad22-50c1c2a78656 1 Other Other +8464d6ee-8a03-4131-9cb9-783e2cbc7bfd 1 Other Other +8464fc4c-518c-4792-8a43-23c45875a2cb 1 Other Other +846507a6-73b9-4188-b0e6-143ef3f7373d 1 Other Other +84650938-ff44-4fd7-998a-bcf3b09519ba 1 Other Other +84650f8a-4580-40bb-8bd0-632f129ce3f4 1 Other Other +846557a3-9d88-4b3e-b449-ed0b873f4191 1 Other Other +84656e64-1d75-4100-a6a6-f338950d2140 1 Other Other +84657696-a635-4f9d-af48-1d8841453bcd 1 Other Other +84659a6a-247c-49cc-93a3-e74e90c86365 1 Other Other +8465dabb-6f69-4998-a365-cb06b6e46c7b 1 Other Other +8466354f-241e-4d9c-b825-a5666a373564 1 Other Other +84665c81-61c1-42a8-974c-a13d9433fe25 1 Other Other +8466605e-2ffb-4bf4-9c42-ff01bd048bbb 1 Other Other +84667ae7-8ec9-4c4d-b32b-99ac8eb78697 1 Other Other +84668f9c-14b3-456a-9c69-73451f46565f 1 Other Other +8466d00b-5483-42d7-b2f6-b12dbe8b0410 1 Other Other +8466d7fb-1e92-4eec-834e-171134e058e7 1 Other Other +8466f3f0-ebec-4436-a173-f68fc5309e40 1 Other Other +8467007a-c0e9-4cd8-92e7-8aa02017c487 1 Other Other +84673d2a-c2f2-4b3e-a8ec-be161a3a8dfd 1 Other Other +84675939-ecec-4924-8aa7-723bf431230b 1 Other Other +84675f01-e38d-4ecb-83e7-93758ad68c7c 1 Other Other +84678202-1cc2-4803-9b00-3ebf3894af37 1 Other Other +8467a9bb-e64b-4803-bf77-63361ff3c7be 1 Other Other +8467b421-7384-48c7-80a7-bf0db6b07793 1 Other Other +8467c197-a6be-472c-87ab-ce1ed28cbb95 1 Other Other +8467d21b-2d98-4942-9904-5106e1b60d3d 1 Other Other +8467da5d-423a-4f63-8532-dd1d31dc342e 1 Other Other +8467e843-2d0c-4e44-a005-4bd3d295eb27 1 Other Other +846818be-06b6-46a8-9256-ffa195b21d1d 1 Other Other +84684c68-536d-4936-9362-33238e9879d3 1 Other Other +8468a493-95fe-4f8c-8e11-8975eb7c1b9f 1 Other Other +8468a983-8f92-410d-8350-3af7c88683fa 1 Other Other +8468ea59-5d2f-4dc5-8b6a-ea98ce49d478 1 Other Other +846940d6-8d83-4f21-b5e3-8fe77502b208 1 Other Other +84699284-9de2-40c4-bc14-14ee4591a91e 1 \N Other +8469aaa4-bd8d-4d1c-8388-a6f90e0b667c 1 Other Other +8469bf2e-e52c-4149-87e0-33a79e7438f4 1 Other Other +8469d7e0-75ed-424a-9682-a9ef881b8ac9 1 Other Other +8469ee96-112b-49e1-be79-b5a46b97c52c 1 Other Other +846a1aa1-c7f1-4237-9360-ee2d714079d7 1 Other Other +846a9171-05c8-495a-8194-2e802e785d6b 1 Other Other +846a9463-8cbf-4e32-ac65-028bfb997240 1 Other Other +846aadd7-6e14-47c8-85c7-23a0c39404df 1 Other Other +846ab676-e726-407a-ac06-3dd1a3b9489d 1 Other Other +846ae654-9ce8-4867-917e-5ce0b960ba11 1 Other Other +846af2d8-49f7-4eaa-8105-2533a755ff7b 1 Other Other +846b21bc-48b5-4041-b33e-14ea4e01bf8b 1 Other Other +846b30a2-fa29-49c2-9ab5-6dd4ebff3474 1 Other Other +846bcd3f-b568-4d56-aea2-6d732f182d25 1 \N Other +846beb87-6a05-4c4f-81f7-0229787d22df 1 Other Other +846c0188-9479-425f-8ab1-3fe85235a6d0 1 Other Other +846c4953-092e-443f-a0e0-e517f666a510 1 Other Other +846c98b3-1e85-4944-ae4c-3b42af080fa0 1 Other Other +846c9a5c-ec58-4ce2-a90e-7bea7cddf92b 1 Other Other +846ccc55-3536-41d0-9005-a154ec054f2e 1 Other Other +846d16ef-69ae-49ac-bba1-63e2119e19b3 1 Other Other +846d1826-a23f-4bab-acf6-19df613a92ff 1 Other Other +846d19a1-6bea-4cc4-ac67-a36743b8cd2c 1 Other Other +846d23b7-2460-4024-b49f-ef0dcf2eb026 1 Other Other +846d46e5-2bcc-4417-a9bf-11697fcce727 1 Other Other +846d598f-81e8-4d72-8637-22687cc3dcde 1 Other Other +846db7f4-ce59-44d8-b1a1-0e6738ec945f 1 Other Other +846dd6b0-65bb-4c43-881f-fadea3e6f701 1 Other Other +846df0a0-66e4-4fd4-aff5-3dbc58289c15 1 Other Other +846eb721-d187-4477-b6e1-4e54695224f9 1 Other Other +846f2026-3fc4-47a5-93de-d8906b6c470d 1 Other Other +846f88da-58cb-479f-a188-630280109145 1 Other Other +846fd614-0fd9-4766-ae99-e8dd582639cb 1 Other Other +846fe610-ab7a-4814-94e6-c9ed045e20b3 1 Other Other +84703269-df94-4c07-98dd-fbb9a175be7e 1 Other Other +84703943-813c-42c6-95e0-6634d8471f00 1 Other Other +8470d4de-86df-4602-814e-75ca4ec57c29 1 Other Other +8470de2b-b84d-4052-87a4-82a0f7feb086 1 Other Other +8471814b-4f17-48b2-9140-445ffe94be2b 1 Other Other +8471a874-7dd7-4630-883d-477d05a0e015 1 Other Other +8471cb48-2aa2-4c4d-a97d-7df3c22ee547 1 Other Other +8471e6dd-6d66-450f-90b5-434fffa5b7b7 1 Other Other +8471f9ab-8bf7-40cb-b7a0-e2ff3873e261 1 Other Other +84720271-2283-437c-9028-3f61c6a91135 1 Other Other +84724774-07e5-4e0f-a984-77d256b52d98 1 Other Other +84724923-1120-454b-91e7-cdda81527abf 1 Other Other +847257c9-9d82-4666-b68d-28fe694e3e3e 1 Other Other +84725e53-0dfc-418c-91fc-02528e662803 1 Other Other +847262e6-d0da-4316-8838-a4bcc6206899 1 \N Other +84727176-ac62-44a1-b43d-b32d1d915ff8 1 Other Other +84728d22-5888-4055-9c0d-da4e12feb873 1 Other Other +84729c24-7ecd-40ac-9349-97cc9d83950d 1 Other Other +84729d52-53b8-478a-8bdb-4dbc36618da4 1 Other Other +8472aca7-9ffd-4f45-a90e-d30826532fab 1 Other Other +8472b00d-e461-4e5f-8c53-2bc2fd38a7b8 1 James Other +8472d1c4-8df9-455d-82aa-e1d2ebbac1c1 1 Other Other +8472d35a-ad17-42a5-b25c-890bbfa12008 1 Other Other +8472de3c-c228-4b83-8348-bff172f414af 1 Other Other +8472eb42-2060-4a8d-b3ee-c3df8ed67caf 1 Other Other +8472f115-c4bc-4236-9c71-3bf38ccc2435 1 Other Other +84735492-784f-453d-94bf-d79001fbb42d 1 Other Other +8473907b-b6ad-4f7c-8b47-ca26c1142e2a 1 Other Other +8473a184-cbde-43ce-b2cd-ba93d7064217 1 \N Other +8473b1ca-8f33-4677-a7e8-86d589defc28 1 Other Other +8473ceb4-cdfe-418b-b49d-6880373be582 1 Other Other +8473e85a-6650-4990-8fc3-51304781efa8 1 Other Other +8473ec3c-e96a-4324-9b07-c256a38712e5 1 Other Other +84740383-8a34-4f5c-852b-b2214328e401 1 Other Other +84741f27-09e8-4ed3-8def-ec64fe7d21df 1 Other Other +847442e6-5335-4082-b384-fc0f35328a1b 1 Other Other +84744f5d-35b0-4809-9495-9db971f926b9 1 Other Other +8474945d-c8b8-4ed8-90e8-c2cb1aa14b67 1 Other Other +8474cd34-c2e0-48d2-83f3-56a9ee206a23 1 Other Other +8475988b-2a95-4795-939c-c2404431f535 1 Other Other +84760e6a-9dfb-482b-8783-9db0945237dc 1 Other Other +84763559-5254-45d0-b75a-328c48d32a08 1 Other Other +84765566-bec9-43ab-9e24-dc285248cfe1 1 Other Other +84765c12-bd79-4f27-a48f-6d22017891f4 1 Other Other +8476b81d-a719-4b65-bc7b-2b1afb72cc08 1 Other Other +8476befb-6b0c-4ff0-b052-a45457cc6596 1 Other Other +8476c37b-c0bc-45c7-97c9-9e1b282ede87 1 Other Other +84770e3f-5778-4622-bc2b-6ff2c6a1eb54 1 Other Other +84774c98-d240-4982-8e4e-c4c1617a0b28 1 Other Other +84774eae-aa9b-4fa6-af2f-8cc5caa21c01 1 Other Other +8477733a-62b3-40d8-9fca-331dc5a909dc 1 Other Other +84779f80-4a05-4512-951e-7addf35f377e 1 Other Other +8477aeff-66fd-4b8d-8155-d8553d6c1567 1 Other Other +8477d443-682b-490e-a035-ded1e972d446 1 James Other +847816dd-be62-48b3-a911-4f634cce8e3b 1 Other Other +8478202d-40e1-4ace-b225-3003145eb528 1 Other Other +84788050-f076-4233-88e0-f712e0f2ba9e 1 Other Other +8478d871-d122-48a7-95a1-c77dc374ae41 1 Other Other +84795c4b-8fc8-49c7-ac8e-e28a01967e04 1 Other Other +84798a30-7160-4c96-a420-ee8fd5437fe4 1 Other Other +8479b5af-5a82-4768-a3f3-1e7ba33530d6 1 Other Other +8479b5e5-311a-48ee-b90a-b16a3ccb13b5 1 \N Other +8479c35b-fbff-49b4-8ab6-90682e8ea783 1 Other Other +8479cdfe-bc59-4a26-80f9-e3ea8f354091 1 Other Other +8479d829-5f5e-435e-a103-ffc18e8b208c 1 \N Other +8479f375-ced9-4f25-a4bd-d548880fa15d 1 Other Other +847a0450-7dc1-40ad-9c1d-6bb528463092 1 Other Other +847a1d95-899c-4dd8-b8cc-9a89159123e3 1 Other Other +847aae7f-b38c-42fb-87f2-f36e739ebdfb 1 Other Other +847b2cfe-b563-476f-9dae-a157a475b9d2 1 Other Other +847c291a-e582-4cf2-8832-431c24c84eb6 1 Other Other +847c9951-d01f-49b2-8a84-77f1a9f7533a 1 Other Other +847caa4a-d2ac-49b2-a4fc-3b4148854f03 1 Other Other +847cb778-df4b-47af-9b7d-65fcaeda416f 1 Other Other +847d1927-05e2-4784-84fb-61918f478b74 1 Other Other +847d5b25-6f71-472f-a561-ec07514d4d9c 1 Other Other +847dcc56-add5-428f-861d-a3d50e16d027 1 Other Other +847de4a6-1d78-4657-a6bb-d916b61fd0ec 1 Other Other +847e31b6-126b-472a-b4f2-e1118a1aed4c 1 Other Other +847e710a-3224-46b0-841b-01cb42de5001 1 Other Other +847e9a5d-783a-4b0c-9769-2c9661c0fe86 1 Other Other +847eaddf-7d3c-48bd-a701-700aaeb9e537 1 Other Other +847ed1d9-47f2-46ca-8586-fc4a60abfb71 1 Other Other +847ef56a-9d98-494a-9c69-ebd786b7ddf1 1 Other Other +847f4011-5240-4193-b2fe-bf9285188c40 1 Other Other +847fba9b-882f-4196-ac19-f8c87663324b 1 Other Other +847fd01d-4773-4e69-9967-71d84ea94dcf 1 Other Other +847fe529-e0a3-4901-8fda-b64a8e419a20 1 Other Other +847ffcf6-d121-4585-af8a-c2f91fee8b4e 1 Other Other +848014da-6868-48fa-971d-4a42a3a259d5 1 Other Other +848023ad-4891-4c23-9775-cb15f942e65f 1 Other Other +8480468f-e90f-40fa-963d-69d3269b11da 1 Other Other +84807023-f1c7-4816-891c-5923b10a03b6 1 Other Other +84807528-bf80-4523-94e6-f6778438ce1a 1 Other Other +84807fa2-c630-4afa-b32e-a199ad04648e 1 Other Other +8480f864-712e-43d2-abe5-2c8c112dfcae 1 Other Other +84810dbd-45dc-449f-b9fa-de656fc9d971 1 Other Other +84812bac-580d-4df9-8ad5-b5f44d0dd302 1 Other Other +848179ba-8956-4688-8852-d16ada916a5b 1 Other Other +848190c0-cd0c-487d-95a3-723cbf390c0d 1 Other Other +8481f086-c5e8-4d0e-8f25-3e2328c985cb 1 Other Other +848205a9-e3a1-4ca3-b77a-202b8211b484 1 \N Other +84820b4a-5e9a-41f9-b21c-275f652871aa 1 \N Other +84829eba-cdac-4685-9d8d-fad27c8d9b5c 1 Other Other +8482e8f9-3aa8-403d-8252-9487733f468b 1 Other Other +8483589f-6de2-4a4c-baa1-a3e4d022b869 1 Other Other +8484291d-0b0b-4e50-a7f7-6be4ba9b0e78 1 Other Other +84842c0a-259a-457e-8bc1-d8250f617074 1 Other Other +8484740e-09fa-4451-8eb7-991c11db0e75 1 Other Other +8484b36d-b142-436f-a9f5-dde6a43a30fc 1 Other Other +8484dbda-8e65-445b-ad36-d45d5614ec12 1 Other Other +8484ec1e-1399-4aee-9574-0b3932161e6c 1 Other Other +84852dd0-b0c5-4e9a-ace5-c30f3d57e3c2 1 Other Other +8485985b-56a4-4703-8231-bd30493a34fb 1 Other Other +84859bac-cd20-414c-aa6a-adeb667e9e0d 1 Other Other +8485a719-b9a4-4cf6-93c3-ceb682d08078 1 Other Other +8485aa1a-25ab-4f64-bd23-9f6b3b0fcab7 1 Other Other +8485bd09-59bb-4504-bd44-2776f09cb742 1 Other Other +8485be72-29cf-4c85-becf-059e058eed01 1 Other Other +8485c473-ea54-42eb-a99a-f3c1dde69e63 1 Other Other +848659e6-fc53-4722-a474-69b73f05dd19 1 Other Other +84866315-dc8a-437b-bbf6-9e8f07b3453c 1 Other Other +84868672-429a-434d-be01-69207a762dfd 1 Other Other +8486cb72-6b84-4b05-8eeb-8c50d69ef168 1 Other Other +848708e6-0463-4eca-bd8b-76ddc6af5ebd 1 Other Other +84872ec1-013c-431e-b72e-2ff4392dfc40 1 Other Other +84872fef-4ebd-406e-a59d-600bb9e888ad 1 Other Other +8487396e-28b8-44ce-92b6-e9dcc8296255 1 \N Other +848749d7-1921-4e4a-a8a5-7e2c9a067fb5 1 Other Other +84876c4c-de6e-4dd0-8c89-1ca686335494 1 Other Other +8487a6dd-0015-4d40-9eb8-c844338abed2 1 Other Other +8487dd82-6ebd-4c85-b6e5-37ec25c6994f 1 Other Other +848804c8-fe91-4dce-8236-b4adc38e0b3f 1 Other Other +84882ea8-7381-4630-a95b-037f1c79ed2d 1 Other Other +848848d8-b266-4a96-b14d-ebfbc4a9dd97 1 Other Other +84884a2a-b6f5-475b-af36-4ee08bb01c35 1 Other Other +848858fa-7d1e-4901-b7c9-29323f9143f4 1 Other Other +84886f24-2696-4b8f-85ae-25e58989e39d 1 Other Other +8488c028-617e-4bf8-887e-9d44144e6b3c 1 Other Other +8488d39a-45dc-49b5-8a7c-eaa11d6e6252 1 Other Other +8488e5cc-6c3e-4521-b66c-04b78859a7f3 1 Other Other +8488edc9-e949-4c7f-b00a-9045dab758d1 1 Other Other +8489093e-1c51-4b62-a51f-ea119cb5575f 1 Other Other +84894f48-28bb-4f99-a98b-d4a3321bc2e5 1 Other Other +848a02c2-1910-4e25-aa2e-930edc7a8541 1 Other Other +848a1b9a-e0a8-418e-af64-68947d7f1b4d 1 Other Other +848a47bd-89c2-47ba-ae98-48ef3ec8a6fb 1 Other Other +848ab9a7-3cf4-4c13-917a-d2f2ebb006c1 1 Other Other +848abfde-4d93-4c82-a16b-19c6d7f306c5 1 Other Other +848b563f-509f-4ad8-9873-959f39157eef 1 Other Other +848b63d8-dfaf-4bc1-abf2-4d407767a0d4 1 Other Other +848d0c2f-87e4-4148-b00c-ad41739a3525 1 Other Other +848dabc7-d190-4592-94cc-2aa2eb3f8a67 1 Other Other +848daf74-883e-4b0e-b401-efd097f6ad0e 1 \N Other +848db787-641b-423d-9726-3f5586374832 1 Other Other +848dc2f0-dca4-4e3a-acf3-1a6fffbc5ba8 1 Other Other +848decb0-0ab1-4b16-880d-f528cf63deea 1 Other Other +848e14c2-0bfe-456a-b6e8-edd7b4e23700 1 Other Other +848e550e-388d-4878-a5a9-8df58bb7df2e 1 Other Other +848e6511-c67f-4a81-888f-328310c931a1 1 Other Other +848e6cb5-206c-4445-9f79-87c927f68d0c 1 Other Other +848e8461-d740-45d4-9d58-83191e3adfaa 1 Other Other +848f0137-ce51-4a62-872e-622fedde35e5 1 Other Other +848f03b1-3bd4-4362-b6dd-b86b5182b973 1 Other Other +848f2dfb-4bfc-4cba-a148-f7cbed7ec35b 1 Other Other +848fa27b-2bfd-45a1-9b9e-40e311b432b8 1 Other Other +848fb802-e6a0-45c4-bb9d-a51a4e7760b9 1 Other Other +848fb9be-c66e-46de-8b64-986d14d17f17 1 Other Other +848fbf01-feb0-45cb-a2b4-275c6b048288 1 Other Other +848fe4e3-6828-4afd-8cec-f32ecc8e3a45 1 Other Other +848fef57-dd68-42cd-8c2f-21d0388467b1 1 Other Other +848ff63e-b4d1-4ca7-bc57-a1041e26b3a3 1 Other Other +84903adc-c40b-4b33-8d53-d68e1c843443 1 Other Other +849047de-4644-400b-8de2-3f2b9ac90158 1 Other Other +84904b15-382b-4e34-b14b-01b7a6587819 1 Other Other +8490551a-dd82-4288-9a06-3b1d2259d9fe 1 Other Other +84906fd1-bb6f-4300-b7f0-7e7b8ce3e405 1 Other Other +849071c3-1d17-4b36-bdf8-d974311caf9e 1 Other Other +8490848f-7f2a-4dd8-9e3e-9765c4b685cf 1 Other Other +8490950c-05f2-4bf3-8a01-e85bf6bc1bff 1 Other Other +84909811-7804-4c1e-bdfe-4c68bfc96201 1 Other Other +8490c2bb-93a5-498b-865b-00e30a1acc58 1 Other Other +8490f51e-10e7-4f86-91d0-9690b4aa5186 1 Other Other +8491053f-7d66-4700-b7c0-def23646ef5f 1 Other Other +8491106a-db24-4be0-bb1a-76a5f59327a2 1 Other Other +849122d4-51e8-447d-9782-a99654eaf03f 1 \N Other +84913706-d013-43ad-bca5-cb68b02b8948 1 Other Other +8491970c-5a76-4871-9121-ae6641d0251e 1 Other Other +8491b0ac-0157-451f-aaae-1c2f0709df7e 1 Other Other +84920ecf-ca1e-4771-81e3-8575161cc4bc 1 Other Other +849236f4-9b05-46da-b344-19ec999a8d71 1 Other Other +84923d6d-db65-40f6-aba0-2406af110ab5 1 Other Other +849272cc-dde3-41d1-a666-46a878dae3ab 1 Other Other +84929785-18d4-431e-9840-4a2580b50f36 1 James Other +8492a4fe-e581-4747-a858-4c0db8237eae 1 Other Other +8492dfc6-0663-4386-9df7-d503cd6ee98a 1 Other Other +8492e6d7-f379-4313-bd50-76f8dd012938 1 Other Other +84930fb8-08a3-4e2e-9c88-b5a66043004a 1 Other Other +849337de-0a30-4a1a-9861-0e7b8f3e42f8 1 Other Other +84938899-aaf6-432d-b8f2-5fb53c855e2b 1 Other Other +8493d4b9-80d2-46e1-b55a-ee23d3b61dd6 1 Other Other +84941d4c-8a00-4e37-8c61-ebdad6abbcf5 1 Other Other +84947ab4-7273-4da2-bda4-ef0b5e5dd09d 1 \N Other +84949ee9-db10-4abd-a98d-46eed80d5b30 1 Other Other +8494ea85-6da9-4d06-a19c-b79cc66a1e59 1 Other Other +8494f52d-4a29-4cbf-ac61-d153e196d089 1 \N Other +8495004a-45f3-499c-9161-f71f79a6b1c7 1 Other Other +8495a576-fd8b-4f2b-88d6-3621c8db3e06 1 Other Other +8495a982-0b58-45ad-ae38-b62db2cb2aa0 1 Other Other +8495fa30-0b41-4ac4-8fe4-3de9a04fb87f 1 Other Other +84964ed3-0b12-4cf1-9909-892321a05705 1 Other Other +849673a2-fb3e-4618-8e37-344c69878eca 1 Other Other +84977c89-897f-45dd-ba95-461ebb2c5e47 1 Other Other +84977f5f-6983-41f8-8fe8-91615530e14c 1 Other Other +8498190a-7d46-4236-b68a-01c7d1968c7b 1 Other Other +849821ea-d4eb-4d6a-a95e-c45f8d5fb5d6 1 Other Other +84983d34-8509-49d2-948b-402b33c905d3 1 Other Other +849860bb-18f9-4973-b176-313e05ff3624 1 Other Other +849895ed-8d7a-47c6-afb0-989216c6629c 1 Other Other +84989663-8f34-4be9-a1ea-7448a87cd91a 1 \N Other +8498c1fe-9241-4596-a5e2-b0a838fb72a6 1 Other Other +84990194-ec26-445e-9c94-34451798a85b 1 Other Other +84994e62-e033-4dc3-8288-f0fd33133c6c 1 \N Other +84997c5e-c9ae-454f-9439-4955c780a8ee 1 Other Other +8499d93e-18d7-4a1a-87d5-c657f53b7ee9 1 Other Other +8499eab8-02df-4f24-a736-6169c08dbe70 1 Other Other +849a2615-9218-4526-9f1b-1c3900c03a8d 1 Other Other +849a79c3-34ef-4b4f-a26d-a916b0e7ce92 1 Other Other +849ad45e-7c12-4243-a219-6dba73398591 1 Other Other +849aff23-60d8-49d2-ba08-a0df43da1be7 1 Other Other +849b6540-ef2c-4def-81c9-0675b5f750bf 1 Other Other +849b7e40-b868-4178-86eb-f52d0affb2d0 1 Other Other +849ba637-5be2-4382-a088-f4f63179fdc4 1 Other Other +849be29f-92c1-4f15-873a-bcb46a152b23 1 Other Other +849bfb05-68c0-4ce8-bb58-cc00e8992da5 1 Other Other +849c2d85-427e-4a69-94f7-734c5e6d7cc2 1 Other Other +849c6ac2-0940-4348-9b5c-acbe33ceacd1 1 Other Other +849caa39-a746-4385-bb0c-2b2fbbe42168 1 Other Other +849cabf1-51b2-4303-92f6-a247c8db29a8 1 Other Other +849ce233-18e3-41c6-9ef1-05e0165bd3cd 1 Other Other +849cfd09-2ffc-4ee0-99b4-8176e3c81e4d 1 Other Other +849d2b6c-c2dc-4d81-8771-0f218be40dce 1 Other Other +849d5a0f-afd6-4269-a517-eb60e1faac55 1 Other Other +849d7089-68a1-45d9-9c2f-dd66156fc726 1 Other Other +849d882d-5690-4b11-88b6-c8c1b96c04c1 1 Other Other +849db2e6-f4bd-4610-b82c-1ca8d796faf0 1 Other Other +849e10d9-c362-45af-bc66-9898e44abc0e 1 Other Other +849e22ec-6b07-48dc-bb85-594158a270eb 1 Other Other +849ec9c2-04c7-4d20-82fb-ddf634705f51 1 Other Other +849f2ffe-605f-405a-b0f4-7ffb02d18a46 1 Other Other +849f3939-3d42-47ee-bd55-43a65d7d30f7 1 Other Other +849f3a15-633c-4f7f-9675-cb0207efc829 1 Other Other +849f612f-d778-45e6-9a02-2e32ed4f5858 1 Other Other +849fabe5-1c99-436f-a88c-8f87a18d241c 1 Other Other +84a03eaa-3d77-450a-8843-fc94a4dab58e 1 Other Other +84a04d8c-b62d-40e6-b03a-f349dd831324 1 Other Other +84a08717-d7b2-4232-acd3-e3aefa7f9ae2 1 Other Other +84a0888b-09c6-4804-83cc-2c0ef7d39636 1 Other Other +84a0a1b1-aff0-45d7-a161-bfa9f9cfed23 1 Other Other +84a0ba89-727d-41ad-b8b6-8ac7e8f7daba 1 Other Other +84a0d979-6bcd-44ee-b9f5-fa877e604600 1 Other Other +84a0ff0a-dc5e-48b0-a9d3-9701b14fdf86 1 Other Other +84a102be-1524-4229-9a45-47ffe9f7d199 1 Other Other +84a11574-66f5-4222-8df4-fafee8b69e3c 1 Other Other +84a1255d-d8cf-4989-a59e-535929d5aead 1 Other Other +84a12af4-85f9-4b0a-9390-56b2952047a0 1 Other Other +84a18042-b28e-4f2e-bba5-c4adeaf51cf8 1 James Other +84a18517-f96e-48ed-a95e-a41ad9c89cf6 1 Other Other +84a193c8-07f5-46f7-8a5c-7d8f8d2823cd 1 Other Other +84a1a377-453c-4725-830b-5699fea07109 1 Other Other +84a1e0c9-2477-47bb-a83e-c58db85ecb90 1 Other Other +84a210bf-eddf-41c7-be2f-57eedddaba25 1 Other Other +84a26164-7574-485f-a420-36884de13060 1 Other Other +84a297ca-258a-4064-9a4a-eba62e4206a8 1 Other Other +84a39a47-5273-4033-abf8-19d8a2e4cd79 1 Other Other +84a3c569-d76f-4a5a-afee-2e3e92bd4ad0 1 Other Other +84a430b8-f3d7-46cf-975f-f199dea31f6b 1 Other Other +84a45c99-0ec7-4e28-bad7-e161f2b4c96c 1 Other Other +84a4616e-7cff-4b97-983f-a73add572afc 1 Other Other +84a483e6-adcf-450c-b970-bb662ac21df7 1 Other Other +84a4b882-7b22-45e1-b550-a4698d4c2fdd 1 Other Other +84a4e41e-aa1e-44f7-9c77-db9d2915136b 1 \N Other +84a5157a-1029-424d-a76f-199076526322 1 Other Other +84a54f73-c31d-47d9-b206-0bcba702368d 1 Other Other +84a5fde6-7a43-4484-8d3d-c86818232082 1 Other Other +84a60d5c-b75f-4b1b-891e-0b1a7fee25bc 1 Other Other +84a63459-6d9c-4d52-ae11-1da0d2e2f640 1 Other Other +84a67dce-d3c1-4049-9529-b6ca2628290e 1 Other Other +84a69af4-f171-4b3d-896c-5c788ce78abb 1 Other Other +84a6c797-d8e4-4caf-a0c5-7cb0bb7ce694 1 Other Other +84a6d2a9-35dc-45ed-9929-f8b166fa23a4 1 Other Other +84a6ef6e-7a19-4de6-b0a6-772e7d016264 1 Other Other +84a7246d-ceb9-4cc0-8906-5688f9c6f70d 1 James Other +84a760d8-2274-45dd-a1a3-74a7f68d7870 1 Other Other +84a851ca-d134-44af-a40a-6aa1bd60d09b 1 Other Other +84a85705-b77d-4401-9373-8e95dc48b1e9 1 Other Other +84a90fc8-3745-418d-b136-4c5579444331 1 Other Other +84a9a951-f7e9-43cd-bdc3-54b3266eb20e 1 Other Other +84a9b531-5443-4831-981f-8e19d6e5b70f 1 Other Other +84a9b831-d9fb-4c47-bf98-3e32337ed2b8 1 Other Other +84a9bc1e-9430-4e49-a8e2-901a348ba856 1 Other Other +84aa2dae-7324-4730-9140-36f6157c38af 1 Other Other +84aa700c-59db-498d-92b0-3ac23f660e5a 1 Other Other +84aab121-ba36-4ed7-8db7-a8d12c156373 1 Other Other +84aab844-7fe4-4fcf-a768-dca6d8c664c1 1 Other Other +84aaf50b-c14e-4975-89f0-1394714cdcb6 1 Other Other +84ab0a42-7aa5-4fa3-a2e6-346f1c1700e4 1 Other Other +84ab87cc-4a93-4e8b-b710-e20c8e659d7f 1 Other Other +84ab923d-28de-49eb-80af-f7a86277d99c 1 Other Other +84ab9a99-6ba6-499d-ae5e-0f7d0f38b520 1 Other Other +84ab9d4b-4332-4470-a585-96fde03672e8 1 Other Other +84abde8e-60fc-44ad-9380-e8b3ce35dc54 1 Other Other +84abf5eb-62a3-4be9-9292-9c679ccfbc60 1 Other Other +84ac05c5-b334-4034-a4ec-7201b835edf9 1 James Other +84ac262f-a105-420e-b883-76517f0b0bca 1 Other Other +84aca74a-99ea-4efe-8209-fd8389ac30bd 1 Other Other +84acfd8e-c192-4158-8413-9419f3a0dbc6 1 Other Other +84ad0484-104f-4625-a15f-a5fcbc0651a2 1 Other Other +84ad2f99-2766-4232-a451-3fd406323502 1 Other Other +84ad7234-ce8d-41a7-9d5d-dd7d5652cb11 1 \N Other +84ad7444-e725-40be-9cd7-9fd1c0a0dd42 1 \N Other +84ad7853-a700-4583-b982-075c3de27b99 1 Other Other +84ae3bc0-15eb-4985-851c-9795e3633d5a 1 Other Other +84ae54ac-831e-49a4-8855-3cec5f0fb99d 1 Other Other +84ae7d08-caa7-4b39-a606-a9f7c1dfcc42 1 Other Other +84aebd1d-8e9e-49d3-a537-ab91006d0e3b 1 Other Other +84aebe26-9787-4eb4-a201-ff9e5a826218 1 Other Other +84af11fb-ff84-481e-8b6e-1384d381fc29 1 Other Other +84af59dd-00ec-48f8-95a7-ca9d84a59386 1 Other Other +84af5b0d-1475-47ff-9ed4-69094ac75160 1 Other Other +84af6e9d-3caa-4bb9-b8bf-7294365567ad 1 Other Other +84afb614-78c3-43f5-b8b5-882d51f96bc1 1 Other Other +84afb6a4-5469-4fcd-a291-5a6753da1022 1 \N Other +84afbca1-f68f-40d2-9d85-aea4e6eab1b1 1 Other Other +84afc706-e544-44e4-bec1-dc29fc5ecfec 1 Other Other +84afeff3-6928-4f9b-b8e4-edb9bd5072a1 1 Other Other +84b06b59-5add-4a8e-a7e1-f78ad35a4ceb 1 Other Other +84b07187-225a-4fea-8157-d0cc9ba06f6c 1 Other Other +84b07db6-5dd1-4dd0-9d71-6df1628cc0d3 1 Other Other +84b0f917-318f-4fd0-a252-1c9c4a8aa47d 1 Other Other +84b107cb-e016-421f-a620-d83175d380f4 1 Other Other +84b11739-3776-4ef5-841a-3733c46f93a0 1 \N Other +84b126f9-1f31-4514-9349-21ce39a93d7c 1 Other Other +84b144dd-a54a-4867-b3c1-35f7ad03e9b1 1 Other Other +84b14ea6-78b7-4fe2-9bec-387bc292174d 1 Other Other +84b1dd13-bb22-4ce9-b26f-338d9f4a1a75 1 Other Other +84b1fb70-e095-4969-b351-37bff3db9a5f 1 Other Other +84b23468-53e9-4925-8187-58fec2bfac61 1 Other Other +84b29f0c-d978-402c-b9aa-954407b7107d 1 Other Other +84b2c1a4-f465-4687-9b8a-5f12ad331a94 1 Other Other +84b2f5ba-f34e-4818-8f53-027b109d6768 1 Other Other +84b2fb46-0f24-4a9d-906c-3c4d6bbd6a96 1 Other Other +84b31007-c856-4457-aab4-7bd6d0707676 1 Other Other +84b31b81-3094-4552-ae0d-be1bff7d5a1a 1 Other Other +84b35e88-14aa-4905-a533-1595bca5de74 1 Other Other +84b36f8d-796f-4476-84e4-e9da6be4d484 1 Other Other +84b38012-97e2-4448-9025-4b5d275b71d8 1 Other Other +84b39c98-cbb4-4560-8756-8fe8c08e8ed3 1 Other Other +84b3accf-77cc-4780-b0c4-21aa05d78578 1 Other Other +84b3ea88-2cde-489c-a4c4-7c8d9207e4c7 1 Other Other +84b420d0-d244-4f08-aab0-2b83d97e930f 1 Other Other +84b437ce-44f1-4326-b3db-561eea21e8b8 1 Other Other +84b4db27-d77c-4f38-a930-678737a8d36b 1 Other Other +84b51c1b-ad6f-4dc6-a30a-7780c07298fa 1 Other Other +84b54cfc-cbd3-47c7-a2ec-5fe2f4f971c0 1 Other Other +84b5933e-d4fa-4b88-9ecf-aa2744c57b62 1 Other Other +84b5fee0-58b4-4477-96b9-48d8fd432319 1 Other Other +84b625da-acd5-4571-a366-0a0ee8409e92 1 James Other +84b637be-bb59-41df-8c8c-080be6ca86bc 1 Other Other +84b6508f-f5ba-4617-90c9-f325e6fc067e 1 Other Other +84b657bd-49ae-45c3-9502-7580ffd63ade 1 Other Other +84b66669-df66-4bf9-bcf7-729b6b5d040a 1 Other Other +84b68738-a65a-4623-8317-d9c5c9021949 1 Other Other +84b6a38c-ead3-42f0-90f3-c28c8901ff4f 1 Other Other +84b6e63b-c8d8-4312-9a12-eef2b7068835 1 Other Other +84b72b89-a485-444c-9b90-43b3f948aae3 1 Other Other +84b73725-2ece-46bc-985e-bb8c89d0e8ac 1 Other Other +84b73e42-f759-405e-9a96-d1cdb9b549c7 1 Other Other +84b74768-20ce-4100-a7d8-4e9034e54581 1 Other Other +84b76d4d-448b-413b-b6e5-b3b78671b77e 1 Other Other +84b7a080-17fe-4865-bb3a-1aa06c64c833 1 Other Other +84b7b4d7-cf0c-43a7-86ab-6e57c719a864 1 Other Other +84b7c148-5875-4a05-a95c-cf9c0222d5e1 1 Other Other +84b7d3c3-3562-4280-81c3-84218df3b5af 1 Other Other +84b80255-a6cd-4491-b562-54ae77cda86d 1 Other Other +84b83101-dee6-4a7f-b7e9-3902522416cd 1 \N Other +84b86cfe-b720-417a-a650-e65682531988 1 Other Other +84b880d4-c77d-4919-81e2-23a4059f9fa5 1 Other Other +84b89f88-3332-4b9f-8986-fbd023e6b618 1 Other Other +84b8a415-0999-484d-a718-2b6c48e5b4ca 1 Other Other +84b90cc7-74f2-481a-9446-b2b0538f938f 1 Other Other +84b97c27-4c65-4cb8-836d-27031b11c6ad 1 \N Other +84b9a702-b16b-4197-bee8-5b524b7d7da8 1 Other Other +84b9ba5e-9a5f-47a6-bc1e-7ec47175bc19 1 Other Other +84b9e1f0-7509-4ed9-b193-c30e1b46ea27 1 \N Other +84ba14c7-7aef-488f-807d-110a62ddf6b4 1 Other Other +84ba4180-173f-4e52-bc1f-a915168a2ab0 1 Other Other +84ba799d-1c65-472b-8e8b-8194e1f93727 1 Other Other +84babef4-39fd-4c51-8fc4-2d80aa7286ff 1 Other Other +84bb3a1a-7fa3-4457-82fd-eda3b726a0b2 1 Other Other +84bb8451-410f-43d9-ad36-07e78440172f 1 Other Other +84bb98c2-a3bc-409c-a818-188ba26e771f 1 Other Other +84bbf00f-efd1-4ca0-9255-109721311a15 1 Other Other +84bc46b0-c669-47ca-be62-cec46aacff62 1 Other Other +84bc8159-8c97-46ed-a4d3-a89c80ff31b0 1 Other Other +84bcb390-0559-490f-90e6-8be53a740f2a 1 Other Other +84bccef6-acf3-4f2f-ab26-93b3403ae9a1 1 Other Other +84bd1a46-88ff-448f-b260-cc35f4200ac1 1 Other Other +84bd2d03-615f-4843-830d-6a17871c8ab7 1 Other Other +84bd6571-c247-4588-97a1-5c9794b032a7 1 Other Other +84bda38e-a8af-49ee-a945-495aa53dea6e 1 Other Other +84bdc466-502f-4c75-874c-826477cf0123 1 Other Other +84bde54e-80c0-4df0-98f5-8d09a04c78ec 1 Other Other +84be4315-3fa7-4dc4-afc1-03bb0c9e916f 1 Other Other +84be55cd-ecdf-4d87-bc7d-bae5dc9d607d 1 Other Other +84be693d-32f1-4d5b-8d11-d412b194f6a2 1 Other Other +84be74fc-6b29-41b4-ad48-6266c427ccc0 1 Other Other +84bea683-aca7-4686-9284-af9f7680b044 1 Other Other +84bef52c-20f7-4f68-bd89-1a04d04dd309 1 Other Other +84bf20c0-1da8-41d0-a113-ed6467d2c4e5 1 Other Other +84bf3f9c-8a33-4c0c-9405-b27944ca23c1 1 Other Other +84bf424b-ea81-4eb2-bfbd-095f59e12932 1 Other Other +84bf43e9-c581-433f-baf7-98b5de474672 1 Other Other +84bf9806-75c9-4cdb-8a5c-ec0f1925bd27 1 Other Other +84bfbabc-eb76-4968-b839-72df17bdaa00 1 Other Other +84bfd97f-0842-4b93-aee4-a464ce749da8 1 Other Other +84bfda22-aab4-4814-a316-95bc28c81f9a 1 Other Other +84c001c3-3e86-4601-9b23-8459b86a9fd2 1 Other Other +84c0897e-10f9-4955-acfc-dda790733d76 1 Other Other +84c09013-0e6a-46c0-acab-dceeabf251b4 1 \N Other +84c09079-a207-4316-8c04-eaf9c5394182 1 Other Other +84c0b806-5c2c-4bed-bba1-e6188ad62521 1 Other Other +84c0e4e0-aca6-4ccd-aead-5d768fd4bb29 1 Other Other +84c12667-3aa9-4cd8-b4bf-528f0a112946 1 Other Other +84c16d30-f694-4964-be96-3e5e3c738059 1 Other Other +84c18fa6-ab4c-4afa-8139-ca852a50c7b3 1 Other Other +84c1b4c3-2ba1-4221-9ec8-04ea0353fd5a 1 Other Other +84c230c6-15bb-4723-bf4c-afb15f844124 1 Other Other +84c26b0b-e10e-47ee-940c-290a23c8bb80 1 Other Other +84c28267-fb22-4821-8706-b39986032a27 1 Other Other +84c29fec-8d4e-4fd7-a712-ed623228efe3 1 Other Other +84c2aacc-45c6-47a9-8244-c31d40691c79 1 Other Other +84c2b836-90d5-439a-b622-76e5ec966583 1 Other Other +84c31514-7260-41a0-be97-4d902bb6165c 1 Other Other +84c3b16e-4c5c-4690-a989-b9fc324d3558 1 Other Other +84c3c266-7fa0-49c1-a3f2-f58f1d757006 1 Other Other +84c3d650-ee16-4c64-afac-ad49e1630591 1 Other Other +84c3e9d9-67db-4d4b-be6f-da0b96968518 1 Other Other +84c41065-15a9-4807-8c27-5450ed60020a 1 Other Other +84c44264-0a2f-4215-bc72-9f1aa10f9bfb 1 Other Other +84c4591d-28df-43da-9c37-0c72845828b8 1 Other Other +84c48fd5-0fa4-4de6-b262-84206a251bd3 1 Other Other +84c491c6-c82d-4d22-9216-5822223d30cf 1 Other Other +84c54fee-8982-11e7-aba1-fa163e8624cc 1 Other Other +84c60e46-21f9-4393-945e-2e363f00798d 1 Other Other +84c62a8d-7c6f-4c3d-81cd-477d11ad3f28 1 Other Other +84c62df1-8773-4cae-9de8-745721dbb486 1 Other Other +84c670b8-63d9-40c7-9425-f3958a6d7fe6 1 Other Other +84c6d5be-879f-4f4d-83ed-55b2170de53a 1 \N Other +84c6e907-e13c-47aa-bf08-032999ca3fe0 1 Other Other +84c6f712-7d89-46a9-8768-66a439c76e56 1 Other Other +84c72191-1b98-4b1f-b302-424db3e2bc51 1 Other Other +84c74764-e91c-4c9f-8317-c2eeb855565b 1 Other Other +84c76bd3-056b-4e3e-85d5-417432820f70 1 Other Other +84c77194-13b8-423d-b9f9-3b455d5c204a 1 Other Other +84c77918-7ee2-473e-b65b-a8f6f0653a22 1 James Other +84c8234d-fc59-4796-99d4-58777c1ae71b 1 Other Other +84c8d8e4-87da-4997-8945-0c4e094fd262 1 Other Other +84c8f806-b3ee-4f9a-98d0-54be545815fa 1 Other Other +84c9218b-d87e-4efb-8fe0-1a4b62f53483 1 Other Other +84c94dcd-b84e-4f34-98f7-da82625ca2d5 1 \N Other +84c97263-321a-44d3-9593-f560350dd3f4 1 Other Other +84c9c49c-7fe8-454b-a988-f16b9d450125 1 Other Other +84c9cdac-f345-4b00-9c7c-7541b499e152 1 Other Other +84ca1153-8242-4596-9bc0-806521d5367c 1 Other Other +84ca41ce-d370-44a5-810e-ac5cabe3fa8a 1 Other Other +84cae055-221f-4985-91ea-ebbf2440b2c3 1 Other Other +84caf516-7bf5-4583-bbcf-a2e8d8746a46 1 Other Other +84cafdae-2411-47ac-8b7a-1c6cbfe03360 1 Other Other +84cb1668-1bfc-44c8-8163-37bcc1367ed8 1 Other Other +84cb2b6f-e656-4608-a7bc-95296a094919 1 Other Other +84cb3483-3959-4c7c-a234-dcdbc986a293 1 Other Other +84cb3e1c-40ac-4a99-b13d-cd70d59ac4b4 1 Other Other +84cb666b-e485-4f61-8795-9d6a0e173e4b 1 Other Other +84cb878b-55e8-4fa7-a886-21e8bd494e4c 1 Other Other +84cbcb05-5fcc-4266-b2ed-038b90736b63 1 Other Other +84cbfa91-7600-4fee-9dc7-ceaab971be28 1 Other Other +84cc0aa1-cc39-4647-9bae-f81c2a505f8b 1 Other Other +84cc4299-8477-4f27-a7b2-119fbc697afa 1 Other Other +84cc5ea0-e625-44a1-a7c1-4454cdc085db 1 Other Other +84cc701a-e0d0-4b25-88bc-e2f2507d10aa 1 Other Other +84cc79ef-c147-4661-99a1-5900ff72ce2f 1 Other Other +84cc871b-e11a-4524-b606-795c672fd2cd 1 Other Other +84cc96a5-c61d-4302-a909-9f62739cbb24 1 Other Other +84ccc97d-6fca-41a7-b259-e0fb9533a909 1 Other Other +84cd6a56-94a0-4a39-830f-1583cae05ddd 1 Other Other +84cdfb02-92bf-4387-9f3e-f9704f7bc16a 1 Other Other +84ce0c93-66c3-4873-8b12-56ea8ca8bbda 1 Other Other +84ce26be-6c7e-4fe3-a3a9-4dedfb891e68 1 Other Other +84ce2d95-8587-4d54-bcf4-30050dee1a02 1 Other Other +84ce517f-42e7-4d52-9539-7fae8c287502 1 Other Other +84ced607-9143-4d0a-bfa5-c1c37e32c397 1 Other Other +84cee37c-779d-408a-a543-72c7bddc2feb 1 Other Other +84ceea63-c52b-4cbb-8b15-1fa6916c2e50 1 Other Other +84cf0675-b50e-4ddc-95b3-4280c881c364 1 Other Other +84cfd77e-ef9b-4475-8e8e-4f9ab4a11f01 1 Other Other +84cfefd1-d8e0-4500-a41e-56aa73994708 1 Other Other +84d00723-92b6-4885-ae81-12aa4da57440 1 Other Other +84d00818-84c1-4dee-8b56-6e08402c8fff 1 Other Other +84d018fc-154d-46a0-8c12-a83634adce4b 1 Other Other +84d058c6-879b-40f2-996f-e405d483f470 1 Other Other +84d0b115-a428-4990-adbf-66176952c92b 1 Other Other +84d0dbad-86e9-40cf-b8fd-8906bd867b8d 1 Other Other +84d10bc2-bb89-4e5c-8f29-c94d09c10380 1 Other Other +84d12c14-4515-4e68-815b-6ec109ab7b9f 1 \N Other +84d14c00-15fa-49ea-a9b0-94275d12f246 1 Other Other +84d16d4b-4301-4bf6-b501-932e328db4ca 1 Other Other +84d1a039-c2c6-4336-a263-00554121aebe 1 Other Other +84d2e6fa-2bb5-4b8c-9dfe-655b7bb3de83 1 Other Other +84d36f46-9a26-46a5-aa2e-e7d45827c248 1 Other Other +84d3ea51-0aaa-4874-bc53-49f8293a504d 1 Other Other +84d3f333-65f9-4b91-a92f-718660a49bd1 1 Other Other +84d41344-5f84-4fa0-9b31-56b726bdaadf 1 Other Other +84d44237-5a22-427e-8f33-23fb7e00b19f 1 Other Other +84d4c4c7-5d63-44b7-b40f-3a08449c04d8 1 Other Other +84d52bf9-2bec-4cd6-843c-edb467b04f47 1 Other Other +84d5c4ef-a481-4caa-bc1d-09c5f3121db3 1 Other Other +84d5c88c-fe4c-48b2-8366-ab911be28d21 1 Other Other +84d5e709-3329-49e9-b45b-205b3ef7ff24 1 Other Other +84d640a1-60bd-4eaf-9997-46189588de0d 1 Other Other +84d699bd-aeb6-4340-9ad2-6d98fe3fc5ef 1 \N Other +84d6a355-c577-4864-877d-b48d4f6125f3 1 Other Other +84d6bd1b-4ac5-4380-8c68-8e8c5bf13b25 1 Other Other +84d7451a-fd88-4d5f-812a-97074671f400 1 Other Other +84d7510e-17f6-4ca8-9cc1-f3c458137b03 1 Other Other +84d76bfa-a3ab-44f8-8852-69aa069433c5 1 Other Other +84d7ade4-9629-46e4-9797-18ec031fba29 1 Other Other +84d808e9-961c-4d17-be55-6e451d5065b4 1 Other Other +84d80dad-84bd-4359-bc46-94c26a53f298 1 Other Other +84d88545-5998-4ab1-8691-fb6277858d28 1 \N Other +84d8c393-d8de-42d8-92e8-59e61e6f86a1 1 Other Other +84d8df58-1859-4e6c-9a31-cc432b5c1827 1 Other Other +84d8f9d3-597f-4e5f-8e1a-89b4db3676ec 1 Other Other +84d901cf-73b5-45bf-b1b5-a75635a7d46c 1 Other Other +84d90aa5-e218-4326-89c1-24b525aa662a 1 Other Other +84d92431-f515-4800-9ec9-d8e2f3048d41 1 Other Other +84d964c6-2cfb-4239-bac8-ec518f51eeec 1 Other Other +84d9869f-a3aa-4b80-b92b-4424c522f690 1 Other Other +84d9b270-057c-4e4a-b966-bfaa837f9761 1 Other Other +84d9c994-0ffe-4b19-881d-2e6e627b08bc 1 Other Other +84dad0f0-2881-49e0-967c-6919089fa895 1 Other Other +84db0200-afcd-4f4a-909e-b844a0502598 1 Other Other +84db2112-90da-4eee-8f73-64654daee3ec 1 Other Other +84db2c1c-4659-4af6-80d3-0478eef835c3 1 Other Other +84dba26a-0e28-48bb-8905-ac11136b6432 1 Other Other +84dbb273-f36b-46b3-ab74-13ba7a468ff7 1 Other Other +84dc264c-e028-4de3-b212-7cdaad42b3ff 1 Other Other +84dc3470-9630-4319-863c-8bc22f441a6b 1 Other Other +84dc38f9-d1b5-4890-bc4f-b608790d4c81 1 Other Other +84dc4cf4-cca0-4f8f-abbd-e10ad7823319 1 Other Other +84dc9d8f-4eaa-4028-87c0-bfd373018689 1 Other Other +84dccf68-c341-41e6-8397-f5c74a5ae1e7 1 Other Other +84dcfdbe-8b52-4d5b-96ee-63a9612c50aa 1 Other Other +84dd0ce8-e06c-424e-a5ef-612c117d687b 1 Other Other +84dd1ba8-590d-46ec-876f-844ee8e1a58d 1 Other Other +84dd344d-6d14-4f5e-bc70-158568cf9fbb 1 Other Other +84dd3d00-ca59-4da4-a2b3-900c1aad142b 1 Other Other +84ddb237-9f93-4c17-b2bf-4c0e74a976a2 1 Other Other +84ddb4dc-a748-4a25-8c3e-8bfdab440f4e 1 Other Other +84de1f85-27f6-40a9-8768-5ed50444de59 1 Other Other +84de2cb3-cf41-4158-8cb5-35d5cc552cda 1 Other Other +84de4ffe-a847-4581-9df2-49d9970b6a68 1 Other Other +84de5c2c-3dc6-45c8-8bd7-0d8bd3adfdfb 1 Other Other +84de6cd3-6369-4b99-96d8-2a94a2c1eb2c 1 \N Other +84de8916-f376-4c1f-af95-d2b31df81b4b 1 Other Other +84de8e8c-f4a8-47ee-878e-bfbf76d568aa 1 \N Other +84de8ff5-14a3-4a14-b218-c0d568f43dc4 1 Other Other +84de9daa-d6c2-4064-99dc-6de898da2cdf 1 Other Other +84de9df4-8400-4913-a3e0-a1745b1ecda9 1 Other Other +84de9e30-72b2-4ea7-b061-e816a4de8285 1 Other Other +84dea405-0551-4695-9206-2261b52239d9 1 Other Other +84df589c-0c46-4914-af51-21b3efc96218 1 Other Other +84df8de3-ebfe-4f86-891b-33a3a6560be9 1 Other Other +84df9a11-018a-442c-ad6d-381e20d00939 1 James Other +84dfa381-2a2c-4f42-8a24-c058ad3b8017 1 Other Other +84dfa886-0e8d-4e5f-b761-74a604cff166 1 Other Other +84e055c1-77b4-42a7-9505-c4974d3390ec 1 Other Other +84e0679a-eb73-47ca-9b0e-ae8923b6b0a0 1 Other Other +84e09e65-ee27-4a55-9b47-c7aa19446638 1 Other Other +84e0bc27-5d84-4d2e-9d0f-210102c7c00f 1 Other Other +84e0c0b4-ab61-481a-9e44-b4310ded634b 1 Other Other +84e0f3b0-ce98-4748-8b30-d4a5130fe2f2 1 Other Other +84e14f37-b951-4448-a757-05e61ee7b0f2 1 Other Other +84e2318d-8bcc-4430-8a84-a5094c6e9733 1 Other Other +84e23912-9148-4593-ab6a-098ef84be631 1 Other Other +84e2e33f-023a-462f-9a50-9f261c9cf60e 1 Other Other +84e3966d-8991-48a3-be80-219350b7e6c8 1 Other Other +84e39737-7907-44c1-b5b7-e2c80003e443 1 Other Other +84e40433-d57d-4942-b60d-07450c7f6277 1 Other Other +84e40806-753b-44a5-a678-d65860c9fcea 1 Other Other +84e433a2-41e9-4d95-bdf9-7823e00eef49 1 Other Other +84e45c1a-19d3-4961-b99e-7b8551740375 1 Other Other +84e47ac7-4071-4bdf-ac1b-ea1622d1f776 1 \N Other +84e47dca-5e19-4b53-95fe-04c0739a0c2d 1 Other Other +84e4815c-1dae-4e54-ae2e-e9f5671c26f9 1 Other Other +84e4b4e9-dfcb-4df8-b75e-15420592d047 1 Other Other +84e4dd64-4ed0-42ad-a7a6-21931785bcb1 1 Other Other +84e51adc-0e5c-4f77-925a-62fb89619998 1 Other Other +84e51c31-caa1-4421-a628-516eb0c32061 1 Other Other +84e54e7c-cfa1-4261-b1ee-6db24e4ce78c 1 Other Other +84e578f5-6bc9-48bb-8139-ed13d1320f70 1 Other Other +84e585f3-7b8d-4cb6-ab05-07dc62b34bea 1 Other Other +84e58d91-ffb7-4f55-93d3-98264ca99751 1 Other Other +84e59a99-fb6b-402e-8c4f-257dbe63f6c4 1 Other Other +84e5db3a-6b0e-4652-a64c-9db44279de78 1 Other Other +84e5e593-6c2c-4a48-8ae8-c254e3c0ce0f 1 Other Other +84e60afe-2404-4a6b-9cec-1510dff3afd4 1 Other Other +84e62402-576a-4e24-8bf3-6ff17fadae5d 1 Other Other +84e66fbd-8b8d-46cb-a7d1-d7c0bd42e4c3 1 Other Other +84e6938a-40f9-46e5-b467-6fc46c9add98 1 Other Other +84e6c12a-6253-42ff-8130-e764e590cc71 1 Other Other +84e6d095-1b64-4898-9e53-10e087bb5051 1 Other Other +84e6df18-2a51-44ae-8d17-0d92df3df115 1 Other Other +84e6f1ca-fd12-4975-a62d-d1087e34e8c2 1 Other Other +84e76ff3-5b6c-4ba4-973c-538ee6cd0c00 1 Other Other +84e7a954-1d8a-4701-8ca1-4da49ceba1eb 1 Other Other +84e7bd14-c55f-4ba5-9821-903845e27075 1 Other Other +84e7c2f2-96a4-48ed-b07a-b338d21cadd4 1 Other Other +84e7c5e5-dbcc-4a21-ba66-3dd77513f594 1 Other Other +84e7caa7-5af2-42a2-b869-4f44a46c75ec 1 Other Other +84e7e3f2-61c2-4df2-bdb3-1f20a788029c 1 Other Other +84e7fa28-e90b-4b87-b687-e62543fe2b6b 1 Other Other +84e7fbb5-1170-44e9-9fff-fc536c272931 1 Other Other +84e8084b-6f8b-4cdf-9e62-e72071c130dc 1 Other Other +84e84069-f98c-4d09-9dc1-3aef26263feb 1 Other Other +84e841d7-4ef3-43e3-abfc-89c5e535ebab 1 Other Other +84e860b0-67a9-437f-a13a-f94dc0ad4daa 1 Other Other +84e86349-8345-4f69-a469-a4b96db296ca 1 Other Other +84e86cc2-c05e-4c3f-9adf-d0616fd53909 1 Other Other +84e8bba8-57f6-4bc3-8b9d-e7f6f3d2f584 1 Other Other +84e8e371-a7e2-4120-96fc-a77f87b6cd3b 1 Other Other +84e90db9-a319-4af8-9015-73f86e1090e5 1 Other Other +84e94eda-66ab-4fbd-b5f3-ee0acdfc5392 1 Other Other +84e95ebf-1b98-4e67-948e-14ec8e395464 1 Other Other +84e975dd-7102-4ceb-8101-a689ff143abf 1 Other Other +84e9d676-fe17-4a9c-99fd-85288d0bdf98 1 Other Other +84e9e443-be56-4066-86cb-4f262c187133 1 Other Other +84e9fa0f-dece-4c4d-918e-67afb0f5a287 1 Other Other +84ea6a6c-c4e3-4843-bd00-bdc61c228357 1 Other Other +84eab64a-986d-4369-989f-aa208a96df49 1 Other Other +84eac4e5-4f77-425a-86d9-5f0fbb1fe189 1 Other Other +84eadbd2-330a-4b8f-a441-6f4971013a25 1 Other Other +84eb03e8-43d0-453c-ac5d-83e6370e4487 1 Other Other +84eb1280-cc7e-4828-8602-6b85ecd4a72d 1 Other Other +84eba716-b5c9-422d-b26b-411ba72f0886 1 Other Other +84ebb220-1683-442c-85e2-3104cd40b061 1 Other Other +84ebc134-bdad-4c8f-8204-687d029f9b8f 1 Other Other +84ebc2f8-1010-4834-85cb-5436c45d7728 1 Other Other +84ebcd97-ffb2-4b33-9cc7-b027e5d7ee2f 1 Other Other +84ec1ae3-39e1-4584-b02d-c258b3fcd2ca 1 Other Other +84ec600d-1cfa-41cd-9e40-7a163941a276 1 Other Other +84ec8c2a-e0f7-41e1-92fb-a1203500b6f8 1 Other Other +84ec9df9-5529-42ec-af36-34d16b3e6b6e 1 Other Other +84eca75c-1e6a-43ef-8252-7c9fce994f35 1 Other Other +84ecaf17-1167-45c5-ab48-f54aeb6b8e02 1 Other Other +84ecb251-9ddf-4333-a866-a611777778fa 1 Other Other +84ed1cd7-c285-4229-926b-d99ff9f38b65 1 Other Other +84ed3916-7c0f-4e64-94bb-fe1391bde962 1 Other Other +84ed3da8-6aec-4efd-bfe5-1e3fcd947cce 1 Other Other +84ed52f8-67a8-4ccd-9df0-7fa3ab492c6b 1 Other Other +84edc9dc-8d4a-4852-b8bf-134a5b31c6ee 1 Other Other +84edd7a4-3993-4c9a-911f-9bab29dbc321 1 Other Other +84ee00a7-1499-4e4b-bba0-1b8058fe6b6f 1 Other Other +84ee1fcf-7aca-4660-8224-6c5ef2acdcae 1 Other Other +84ee720e-79a0-430a-a241-f1a51199d9c4 1 Other Other +84eeac14-692a-488b-8255-bd11619abe71 1 Other Other +84ef139f-1869-48af-a70f-1e07fcb9d6e4 1 Other Other +84ef34a8-a7eb-4e8d-a675-4d1d47a58803 1 Other Other +84ef740e-8493-4b2f-b2bf-8272ecf68dd5 1 Other Other +84efa33d-c12b-43a6-a428-706d80b4c2a0 1 Other Other +84efae8b-4106-4f01-82e6-4ed703878676 1 Other Other +84efe280-4e20-4df6-ace2-f7ea53ea859e 1 Other Other +84efee96-7b29-4455-b7e7-0159fd0be781 1 Other Other +84f023eb-7e85-4644-9ee0-68244e8b4563 1 Other Other +84f05356-44d7-4771-b876-6384b2dbe5e6 1 Other Other +84f07a4c-74fc-4b91-8652-5cfc9e3180de 1 Other Other +84f0d58e-0afd-484b-bc08-adf1d41a7b3d 1 Other Other +84f0d6bc-71d1-4a8b-890f-71ac2be29646 1 Other Other +84f0eaa0-c121-4d8b-a8ef-cb29e9dfa20f 1 Other Other +84f1042c-a805-4aa0-9357-99eb3555e44b 1 Other Other +84f167de-1a9e-4690-8b03-ba459ccf0815 1 Other Other +84f19da1-06e2-49ec-b610-442688126500 1 \N Other +84f1b0ef-9b5a-43d6-937a-819eb0719eb5 1 Other Other +84f1c48e-860f-4c5d-844e-26b1da534f41 1 Other Other +84f1e2c1-fca8-4c94-bb55-ab32f4da47cd 1 Other Other +84f219d0-611b-425e-b721-2d0130afd950 1 Other Other +84f2a292-1d74-49fe-82aa-93233faee996 1 Other Other +84f2b20e-3651-4aa9-8624-ddb2883243f3 1 Other Other +84f2d90a-7e6f-4238-99fe-c85d1c9a1a4b 1 Other Other +84f31440-6b09-4ae6-8f9a-03d66befe193 1 Other Other +84f3236e-eaed-4a35-b794-e932d8816b93 1 Other Other +84f34710-3769-4513-80fb-ef991c2d0eba 1 Other Other +84f35cbd-edfe-4fca-a677-9dd76f983f95 1 Other Other +84f38f54-6191-48bf-a59f-2668b5e547e4 1 Other Other +84f396c1-a738-4977-91a3-11535c28ff33 1 Other Other +84f399d3-d741-42fa-bfb4-4404e946bc26 1 Other Other +84f3fe0b-35dd-4772-88d8-de01c8e16abc 1 Other Other +84f41aaf-105b-4f32-b966-0f3c4d8e85b4 1 Other Other +84f4335c-69d6-48e0-8e89-d90db1133e72 1 Other Other +84f4838c-d2c5-416d-8711-0a224efeea85 1 Other Other +84f51803-81f7-49bc-b069-188c12503f89 1 Other Other +84f521d6-a4de-403b-87f3-b00c5300c80c 1 Other Other +84f57dab-7d63-4d16-9f5b-6039ebe0806d 1 Other Other +84f5a5db-a28d-4f2c-958a-5e3f46a41d7f 1 Other Other +84f5f305-71bc-414c-b271-6eed8abe2717 1 Other Other +84f6246c-0e03-40ce-9a08-6424877fda1a 1 Other Other +84f65402-bf49-4207-be73-f135bc494117 1 Other Other +84f6544c-50f0-439d-a07a-f1328f226754 1 Other Other +84f749ba-c826-42ee-983b-f0393f26a071 1 Other Other +84f759f8-7d6d-42d9-8e2a-95ecab9688bb 1 James Other +84f78481-191f-48d5-9af6-14fb1d5ac119 1 Other Other +84f7869d-e710-4933-bdeb-07647e05442d 1 Other Other +84f7b57f-db68-47b0-b319-5e6c63f5b20e 1 Other Other +84f7d10f-a863-438c-ada8-58c457a6657c 1 Other Other +84f7fa4e-e17f-4362-8f56-1bac914e63bf 1 Other Other +84f87cb8-8da9-4ab2-b977-a2992ce8bfcb 1 Other Other +84f8a807-3650-4172-bfff-852f4e52adbe 1 Other Other +84f909b5-4ca3-4175-98a5-8c40baa8df1e 1 Other Other +84f92eae-3b6e-4292-9219-590b3d6e111f 1 Other Other +84f94702-5f30-4bd3-b78d-19c39baaa89e 1 Other Other +84f97320-d58b-4ae0-95b8-9e04239f6adf 1 Other Other +84f98bcd-a035-4e59-93f7-f93c916d2c0c 1 Other Other +84fa8954-bb33-43ef-9ace-5586521bcb27 1 Other Other +84fabaa1-1e8b-49a7-bcd8-760064d3ddfb 1 \N Other +84faeaee-85a8-44bd-8270-bc31f9dbdfc1 1 Other Other +84fb4bfe-a655-4add-99b9-5d7c53c03b47 1 Other Other +84fbc01c-5623-4774-b55f-2c0b1bcf9a03 1 Other Other +84fbd85d-67f9-4eba-80c3-a8a60a9f7e4f 1 Other Other +84fbfc91-9abf-447b-bc29-f9282b949245 1 Other Other +84fcbdca-57f7-4e95-9790-eaeb75429f70 1 Other Other +84fcec4f-dc5f-478a-bf7b-9a39bf06d692 1 Other Other +84fcf860-3ea1-4585-a3e4-91ce73325f0b 1 Other Other +84fd12a6-4c56-4835-a13c-e7db9d90688e 1 Other Other +84fd22b5-6b43-4f39-8775-84e4252fadb7 1 Other Other +84fd410f-7042-4dfa-b43e-376ea27a2b5a 1 Other Other +84fe262f-4260-45b6-af18-9627f10e3310 1 Other Other +84fe4fc8-c2ce-4193-acea-da09e291e07a 1 Other Other +84fe7b92-2d58-4f17-9db8-76890c72f546 1 Other Other +84fe8f8d-96e3-48a2-878b-8b48746f7e32 1 Other Other +84feab00-a7ea-4909-b5e9-aae2ff63a44c 1 Other Other +84feb0bd-1e01-40c3-82d2-68f9d88d3dfa 1 Other Other +84feec5b-20f2-4e00-9a3c-71a6f0d30979 1 Other Other +84ff2692-b644-45bf-8a08-4c85bef313f5 1 Other Other +84ff79d0-9687-4974-a36d-65be44006f1d 1 Other Other +84ff7b77-c4a4-4e06-9883-5a47447573e8 1 Other Other +8500085c-1e14-4a5b-b695-24f3b9946701 1 Other Other +850009aa-9715-4e9c-af5d-28c9b0aa55cf 1 Other Other +850015d4-1721-49c2-a9a6-702c5ed8200b 1 Other Other +85002219-7f63-4db4-969a-61c0bf0acb3a 1 James Other +85003ad5-1ab2-4ae2-b6a9-aed6daa3479f 1 Other Other +85008268-e9a7-4007-ba61-3ae2403ba656 1 Other Other +8500aa55-3733-4d15-b8a4-975a1820a9b3 1 \N Other +8500bdfe-4b8f-4e00-8f8a-abb974e27d9a 1 Other Other +8500de78-f0a9-4880-bfed-75c6be85c5e7 1 Other Other +8500e835-ebfb-4ceb-ae47-f33ee676e69b 1 Other Other +85011e95-fef3-45d0-9313-19add674c05e 1 Other Other +85015a89-fe9e-4a58-8fa2-f1c9820fe2b6 1 Other Other +85016d11-74c1-45da-996d-36331f9f3f45 1 Other Other +850188a9-33de-4e5b-8760-d05f7d4340e4 1 Other Other +8501db03-f52a-41dd-a04a-5e57f76a12bb 1 Other Other +850248a2-ad5b-4582-bef4-7a4ebba386a0 1 Other Other +8502b866-284e-4cd2-b63a-b875f56a57b9 1 Other Other +8502bc3c-05a6-4501-a3f4-4feec26a8b51 1 Other Other +8502c494-9949-4b2d-b260-032dc6797f66 1 Other Other +8502ec73-c050-45b5-953b-aa1153d56768 1 Other Other +8503a996-3b8b-4bad-92ae-82f10bcf2290 1 Other Other +8503d891-e31e-48c1-b48f-47f1be604a5b 1 Other Other +8503e0f1-fab7-4069-ad10-f774db6a60b9 1 Other Other +8504150b-6de3-402e-9f94-3578dfeadc0f 1 \N Other +85043500-1f90-43e0-97e6-20a15d02fe4b 1 Other Other +8504465f-4acb-4e3f-b90b-5a952a487b75 1 Other Other +8504779d-edc5-4659-a0c5-16d2fdb18a94 1 Other Other +85048176-9415-40e8-9e0e-9acfbd3299a5 1 Other Other +85049d1a-91fe-4697-9dd2-0311660e3c5d 1 Other Other +8504ccaa-389d-4e30-b446-41f2b05139bc 1 Other Other +85053bfa-5187-4ff0-a16a-b15b652240bb 1 Other Other +85055e90-5f06-40d0-8cd8-7512c55edc58 1 Other Other +8505a3cd-bced-4520-b4d3-30c4ac20e003 1 Other Other +8505aa0c-328b-48b9-a86e-3dd09e7f7daa 1 Other Other +8505dc20-26c0-4560-b131-53e2d703ed6b 1 Other Other +8506013b-495f-49c5-af87-bbbcbf1bdfb5 1 \N Other +85062795-8e04-4207-ba6b-92ecd46656fa 1 Other Other +85063c13-6d2b-4300-bf78-8e2c38ba7c99 1 Other Other +8506b73a-b7ec-4bbe-9401-e4d03840ac15 1 \N Other +850700fb-f0bf-4ead-b676-5552f935ec14 1 Other Other +85075423-1404-4553-86de-88ac2ecfd955 1 Other Other +850768c6-537b-4f18-b15d-9c24f43b0a75 1 Other Other +8507f0d9-43ee-489e-ab29-7dafb58e640e 1 Other Other +85084b48-cfe0-4ca5-ac78-34393ab92351 1 Other Other +85087521-849a-4913-9885-75b6cbeac355 1 Other Other +85087cea-de69-4e7e-9e25-b3ff51f9e23a 1 Other Other +8508b2b8-ef12-4377-8327-9b4b30c08d96 1 Other Other +8508dd47-7b01-445c-a1c3-c78cc1e71aa5 1 Other Other +8508ec99-ef97-4939-96dd-7fbd5b012083 1 Other Other +85090ccf-1b47-4cca-9d4d-ac0d8c833cae 1 Other Other +85099694-ce4b-4a72-ab7f-41627962c62b 1 Other Other +850a0eee-abe7-4289-9f95-b800563a2864 1 Other Other +850a57e4-cbdb-4983-99ac-fb1b4a7886d8 1 Other Other +850a71ff-f30d-4e18-950e-7c754ab6b972 1 Other Other +850aa481-ef30-46b5-b10a-7f389a8a4763 1 Other Other +850aac22-6d81-439d-b365-c42246b90e83 1 Other Other +850abe6c-813f-4ef9-8c00-5d2e477e93fb 1 \N Other +850ae6c0-8ca8-4276-b668-af436d8e7ace 1 Other Other +850af8f5-5ff5-45e2-8d84-d23a34f339b9 1 Other Other +850b0a03-17f5-4b9d-b2d0-70b22158ef54 1 Other Other +850b2fb4-fbf3-4fee-82d4-e621abb40117 1 Other Other +850b371b-9a5a-409f-b221-194c5f15b253 1 Other Other +850b3862-c59c-41a0-8e42-18f649b2b5e3 1 Other Other +850b3fb5-cf4f-42d6-bb88-a20cfdbd6e7f 1 Other Other +850bb2cf-35db-4f8a-ac66-5d809822aed7 1 Other Other +850bc639-4277-4bae-b5ee-2338623ed357 1 Other Other +850bca2c-9404-416c-8962-b6e42ca366d7 1 Other Other +850bf971-1688-45f8-84b8-2bc5dcd11693 1 Other Other +850c475a-f678-40b2-8191-347408ee7d6a 1 Other Other +850c7587-8d4f-4721-8ab8-06dd8825128d 1 Other Other +850c82b5-b247-4d2f-b4d0-b5e863c87761 1 James Other +850cade4-e030-433c-bbbd-02bfb49d51d5 1 Other Other +850ccc85-edd9-44f5-959b-7c0ebcc7d2c3 1 \N Other +850cd401-a9f5-4d3b-b62b-bc878a90e3ce 1 Other Other +850d91a1-9581-4f73-888f-4209e13cec63 1 Other Other +850e0800-cad4-4006-8bfe-003df4937f1d 1 Other Other +850e1460-b8cc-4289-a915-552f7e93a5d3 1 Other Other +850e197b-be24-4193-8843-8a42b1a70bac 1 Other Other +850e40be-d13b-4aaf-a98a-ad7cf0735307 1 Other Other +850e4c66-cb29-4224-9bcd-9c766269e1df 1 Other Other +850eb113-912e-4238-b347-a076bc3eaee6 1 Other Other +850ed013-ee7a-4f9f-a02d-aff244406a3f 1 Other Other +850f070a-436a-422b-b21c-81c68008bef4 1 Other Other +850f0ac4-0862-4715-86ae-aae66e937801 1 Other Other +850f688f-f3b0-4c57-a1c6-6f31066d4d44 1 Other Other +850f7b71-7157-492e-808b-349653a26468 1 James Other +850fb455-bd5c-4d3b-8491-f78943a4e8f9 1 Other Other +850fb966-ec17-416e-93c7-74732f5167e8 1 Other Other +850fc935-4863-4b29-9c53-b0af2418048a 1 Other Other +85100917-e1d7-4933-8701-e2812d6c2e16 1 Other Other +85100f0a-7b15-487f-a6d5-658530f05618 1 \N Other +85103c86-0eba-4b42-bfe2-000bee8c06a0 1 Other Other +85104a31-c281-4739-a9f7-29e25010f88f 1 Other Other +85107b5b-0507-45f4-93dc-99b955a8e837 1 Other Other +851082e5-df2c-4d01-94c1-e4df0001f039 1 Other Other +85108cec-8001-4082-a016-12b9e636400f 1 Other Other +8510a340-a528-480a-9c02-945e0a3f360b 1 Other Other +8510c0ef-7b52-4daf-98c5-99c45d43a496 1 Other Other +8510e0f8-23b4-4931-a233-4550d148c376 1 Other Other +8511991d-4d3a-4247-bae0-76099198921d 1 Other Other +8511a0f0-a934-4d0f-9600-8f79867098f3 1 Other Other +8511a3a9-ac48-4fed-832a-835d0bdefd75 1 Other Other +85121206-7f08-4223-a398-2f53db9bcfc6 1 James Other +851245c6-fadd-42a4-9095-b2c301ffd96b 1 Other Other +85126564-c255-4e6e-b17a-a79056e0b014 1 Other Other +85126f66-169e-4d6b-86ab-2566550441ad 1 Other Other +8512d424-56b0-4a96-b5ad-a31f0b468b74 1 Other Other +851336a7-2604-490b-bdd1-0c0d6179fdc9 1 Other Other +851374d3-adb2-4885-9811-785ac672fc74 1 Other Other +8513ac08-9ca8-4a29-b477-23990eac21de 1 Other Other +8513ea33-2403-42c8-9b4d-fc79e9d366de 1 Other Other +851407a8-e6e9-471e-8c8d-81bfbcc3ba91 1 Other Other +851459ca-25a3-44df-afe5-71a7d9fdda28 1 James Other +851469f3-0fde-4abb-bacd-2d0358f80271 1 Other Other +85147d28-f340-4f05-86d2-b5963a0c12c0 1 Other Other +85148180-9d99-4e0b-8980-d6a345f82d23 1 Other Other +85148598-a62c-465f-81bd-2d3c7ffb10d6 1 Other Other +8514b52a-a6b0-4912-964c-7e1959fdd957 1 James Other +8514d806-818f-42fb-afe3-3f55e69e9e45 1 Other Other +8514e4be-369c-4d00-ab2b-2f7be3b1dbf9 1 Other Other +851534a6-14d8-4a9d-b0ed-75e97a4ba31e 1 Other Other +85155dec-d94f-4fae-81bc-8b182c6f3d44 1 Other Other +85158e44-6bc9-42cb-8438-a4b7b5417417 1 Other Other +85160589-63d9-4dcb-a9e3-8495027ed7ac 1 Other Other +85164ff7-07c0-470f-8219-9f6f806d973f 1 Other Other +851679cb-41d3-4e77-8f0d-77066ebfa9bf 1 Other Other +85169bb1-b39b-4f84-bac7-1d85aac94c58 1 Other Other +85169d45-642d-47cc-974f-8f328371f3fd 1 Other Other +8516bdbf-8b16-4e0d-a050-bd220a5dfb76 1 Other Other +85172460-0a79-4b7a-80cf-b939cefcb7af 1 Other Other +85175bf2-7167-4efa-b082-ab9d384b316f 1 Other Other +851780be-6579-45e9-8ef4-49599c993ad0 1 Other Other +8517af2f-45bf-4927-8cd0-500bddfe776e 1 Other Other +8517c365-ea10-4d58-b6ab-b6d4d00c838b 1 Other Other +851836d3-9387-4237-b7ca-a2c6e041ed38 1 Other Other +85186df1-d602-4207-8f65-d602f29dd66b 1 Other Other +851875ef-c58e-44f1-afa0-ef543bc3c101 1 Other Other +851891d8-dada-4e64-a7f8-ba962ee86194 1 Other Other +85189b39-6c03-4ddf-a607-00fa4df7f865 1 Other Other +8518a209-6e60-4dc2-9202-ce6309461393 1 Other Other +8518c987-7581-42e8-a778-bf7453a9dcf9 1 Other Other +8518eb3c-b821-4fb2-b69d-31463b4f5f23 1 Other Other +851911b6-f8e0-4772-8da7-74a21c5d6045 1 Other Other +85196ff0-12ea-4162-be96-6f9d52edf428 1 Other Other +8519aa80-89fe-4713-b9c6-d42120938fc0 1 Other Other +851a272e-efaa-4b68-934b-fe5751944026 1 Other Other +851a31e1-4c96-4abb-953a-3d4b7b28ace0 1 Other Other +851a546a-f7f1-4da6-b257-d66b0cacc0ad 1 Other Other +851a5b3d-15a8-49a5-833f-62f587773580 1 Other Other +851ab66b-bd53-4f10-8704-f4b2a6e2e87e 1 James Other +851ad613-3696-4ce8-b99c-63c38c728ceb 1 Other Other +851aea03-e6f4-4318-8590-362833565e39 1 Other Other +851b2f41-d5d8-43a2-9977-47a42f9ad96e 1 Other Other +851b8036-92e7-40ed-a0e5-124055e4304c 1 Other Other +851bb012-6031-434a-984c-e36c1e837005 1 Other Other +851bb524-cc76-47ca-a57f-cb96b3d4728b 1 Other Other +851bc18f-d001-4b91-9a23-c04f1987e889 1 \N Other +851bc995-fa3f-4435-aa0b-867d1e5566f3 1 Other Other +851c68a5-d9dc-4f76-a0fa-926392fe929d 1 Other Other +851c77a0-0974-4bf6-bc44-e44dbd84aac0 1 Other Other +851cc615-4228-4790-a916-e4b4ed1a5225 1 Other Other +851d7a68-53c8-43ae-aaa3-2aa5e13a3378 1 Other Other +851d8bca-23f0-4e21-ae98-89ad1602bf5b 1 Other Other +851da38f-4b1c-4445-8d43-abb205b99e6e 1 Other Other +851da3a5-5e20-47b0-b040-d4ef73c01a95 1 Other Other +851dbc50-5473-4a9d-99e3-8909bef2f235 1 Other Other +851dbc9e-c453-4c43-8ada-81ccccc54ba3 1 Other Other +851dc3ba-6694-45ae-9a76-c33f750d5dd4 1 Other Other +851df3c0-ece7-442a-8b55-1a6cf2724c50 1 Other Other +851e2556-08ab-45ad-8067-4ebf61c9d9bb 1 Other Other +851e7e08-5b4b-46af-9bd5-7589689b4113 1 Other Other +851eb00a-e17c-440b-9e74-13d85485b01b 1 Other Other +851eb7e2-7008-4cc4-a768-0aea772f850b 1 Other Other +851ec2eb-0100-4bf9-8480-b326566f1ab3 1 Other Other +851ed1a1-bde4-436c-953d-2296e01e8fec 1 \N Other +851ed786-717d-4eb1-b4da-935d77dc7599 1 Other Other +851f048a-a02b-4e3c-b4a2-7c1d70229aa7 1 Other Other +851f8b53-ce96-4525-bc1a-acfef4d846dd 1 Other Other +851f919e-de4a-45d2-a6a2-59881a76e811 1 Other Other +851f92f5-7b7f-45df-adca-df8e000eda31 1 Other Other +851fe48b-7ebb-4448-8884-4be7ea202086 1 Other Other +851feb8c-f5ee-4548-b680-8ae1f0f4c563 1 Other Other +85200920-5419-4802-99c2-33af237bce36 1 Other Other +852011ab-f77a-41e6-9a35-c2db81a68666 1 Other Other +852075ad-5556-4e9c-8b76-b11794c8ce21 1 Other Other +852086ed-1144-4ade-a925-547df7e72e75 1 Other Other +8520a4df-848f-4f29-a94f-604a52f9aa49 1 Other Other +85210ef2-3851-49dd-a885-21d8d7658a0e 1 Other Other +85213be6-941a-4710-9195-307eea666f75 1 Other Other +8521e584-ac9c-4f35-a2fc-e1819bfff00e 1 Other Other +85221cf2-1d7e-4bc3-9e0d-7170b9154b08 1 Other Other +85224f1a-c99c-4bc5-bafd-0ba00a9d68fa 1 Other Other +85227a0a-fd64-4d7b-9af3-b3b888b4377b 1 Other Other +85227ecd-082b-48fc-911a-ef347234f149 1 Other Other +85229d0e-9083-401e-a070-06f9c4686f2f 1 Other Other +8522b9a6-f3d8-4bb5-93bb-459bcdb115a7 1 Other Other +852348c7-3fae-4a5f-b965-fdc474093dcc 1 Other Other +85235779-70c0-412f-a0a2-de34e72beed8 1 Other Other +85235981-594d-4210-934e-6f84f55f8f49 1 Other Other +8523a162-1b8f-434f-88ee-d187ea13ea62 1 Other Other +8523b193-bb6a-4bb7-b7f7-5167c58307d2 1 \N Other +8523b6bc-22c9-436c-a746-406f2a1e92cb 1 Other Other +8523cf08-66bf-42df-8cc7-b966528ac8b9 1 Other Other +8523dd93-9b41-4c90-bde1-e2d06e4e86e7 1 \N Other +8523e2a7-ca73-439e-a830-aff550ee3246 1 Other Other +852479c1-5edb-453d-9759-62cc854929a7 1 Other Other +85250b98-227c-44df-8e9d-76ffe30bb626 1 Other Other +8525787b-e94d-4c33-945c-006d543ec976 1 Other Other +8525d986-a023-4f90-813a-fdfecf64bb2c 1 Other Other +85260c70-fe1b-455a-adaa-5a4b306eaebf 1 Other Other +8526314c-f590-49bf-8616-f23409fec05b 1 Other Other +852642b8-f282-4afa-955d-8974357c58da 1 Other Other +852643da-4b3a-4e6b-8a35-5486ee0dc4f8 1 Other Other +8526d54d-2b07-48b3-90dd-c0a5f2ef7d09 1 \N Other +85271e71-db98-4eeb-893f-983bb212e2bb 1 Other Other +85271e9a-4497-4ca9-a728-7e242849b850 1 Other Other +85272b13-2b92-41d1-b016-3dba30b8e4db 1 Other Other +85272cea-36d0-458b-a366-7bce612755af 1 Other Other +85276ce2-f6e8-4b9b-98b4-74ecdcdb4fb3 1 Other Other +8527723f-c5d1-4479-810c-ce00afaf70de 1 Other Other +85277b90-9037-4300-80ed-739f20f11f46 1 Other Other +8527842d-7a05-47d9-9c12-8bad38f27e9d 1 Other Other +85278880-fe80-46f2-9821-6a2c9e33bed0 1 Other Other +852790ba-4acf-4565-acde-0c0f3414eb8b 1 Other Other +8527d075-ac85-4acb-8bd2-3a3d061f077b 1 Other Other +8527e67e-ceff-4fa6-a406-e843c10bf9fa 1 Other Other +85284503-fce8-48ec-a365-691379ed555a 1 Other Other +85289052-1867-4af5-8be3-f1089fa54886 1 Other Other +852937e0-0376-4c4c-9581-8a24c401ce30 1 Other Other +85298816-f2d0-447d-8f67-d209d06972e5 1 Other Other +8529bb2e-997c-4e73-901e-f6648e105e46 1 Other Other +8529bed3-96cc-49cb-832c-af6dfd173c8f 1 Other Other +8529f06c-1980-4f54-a538-d5bdff6622dc 1 Other Other +8529f84c-00d8-4ace-b17d-354d9477b75a 1 Other Other +8529fd2e-4bea-44ea-ade6-7263406dbd8f 1 Other Other +852a02f4-0b80-454e-a8d8-bf6d718fb5e9 1 Other Other +852a1661-ba59-4c17-8a50-18b2c3452d0e 1 Other Other +852a3c13-e223-44a8-8302-5fb40bcdc1c7 1 Other Other +852a7ad4-fd7e-4fe8-89b4-3be4d8fe2cee 1 Other Other +852a8496-5d19-4dbd-a862-97013f92fe15 1 Other Other +852abf2f-853a-4b6d-b403-b8fe9e4f8f2f 1 Other Other +852acabe-6dea-4c8b-a42b-bd94ae0c488c 1 Other Other +852b4fa1-3c28-4d75-b4a8-22000ba3ae23 1 Other Other +852cb93f-df0d-46a0-90ab-66ef86933ca4 1 Other Other +852cf9ad-5cf3-4fff-a9c5-5c0cacabec03 1 Other Other +852d76f4-b30e-481c-918e-ba7d4433b61d 1 Other Other +852d9172-4053-4d1b-986c-559dcb5529d5 1 Other Other +852d9cb9-01fe-4f78-bccf-72293fcdba7d 1 Other Other +852e088b-91e4-491c-b1b1-ff359231d14b 1 Other Other +852e09c4-df83-413d-be8f-eba1b4f811ef 1 Other Other +852e2e48-096b-47f4-9b46-3e8cafb0b5d3 1 Other Other +852e7656-fee5-4586-8b07-fa1a01607a4a 1 Other Other +852ec069-1198-490f-9c50-6eac47920070 1 Other Other +852ecdce-c4d1-4e2f-a70f-b07cea6351f8 1 Other Other +852ed908-a636-4d19-a737-cc68c426982e 1 Other Other +852eda07-e35e-4b37-8cb9-525f57cda4a9 1 Other Other +852f4b25-6978-4eaa-8495-79b93a93c8fb 1 Other Other +852fae84-ecb5-472f-8b02-3bf2960fa508 1 Other Other +852fbb4e-7097-488b-bdf4-f7299c5142c1 1 Other Other +852fbc4f-95c0-443d-b214-88e3a135579e 1 Other Other +852fda80-6c54-467d-a85b-fba45cb026dd 1 Other Other +852fe17c-634b-4312-ae37-285cb365aea8 1 Other Other +85302814-13bd-4135-8d8d-93342fbbc1f3 1 Other Other +85306519-1b10-4187-83e7-99baf4da9325 1 Other Other +853089ed-51f4-4e22-a250-91db5982c669 1 \N Other +8530a309-c870-4a61-aab3-93319c780d80 1 Other Other +8530ccfa-2027-4033-ba36-c1e6c3f12563 1 Other Other +8530da4b-a21a-4785-9525-15d0ddd37a83 1 Other Other +8530fd14-e2ef-47d0-8eec-c600dc891775 1 Other Other +8531238a-299c-4e02-8196-0fbfe7e79312 1 Other Other +8531301f-5ad4-48e0-abaa-75587b2ec383 1 Other Other +85313202-4028-4667-baa8-f7d5fad28c15 1 Other Other +85314e83-da30-472d-b7ae-318fd394c483 1 Other Other +85316826-acf3-451f-89b4-8ba1cb148311 1 Other Other +8531c5c5-44a4-4ae6-9117-6423a9593a69 1 Other Other +8531c706-54d6-4448-96bd-a7797822e0f4 1 \N Other +8531f76e-1de9-400f-9117-d943dfb7a2d4 1 Other Other +853258aa-64b9-4e8c-b153-2739c1a3ddc9 1 Other Other +85329349-6eee-42d7-a0e5-77739d75656e 1 Other Other +8532a674-9e4c-48a5-b114-c4560a7fc786 1 Other Other +8532af60-f2af-41ba-8240-e1df97d977c1 1 Other Other +8532b578-8933-4852-a17b-635825ebe229 1 Other Other +8532b5aa-c603-4b0e-b993-7174765511ab 1 Other Other +8532eb6a-d1eb-47cb-bd64-74e1dc279646 1 Other Other +8533230e-3c8f-47fc-8b9a-311d96f2669a 1 Other Other +853338ee-1dd4-449e-ac5b-25de63174475 1 Other Other +853350fd-86f0-417d-898b-57d48dd96fcb 1 Other Other +85335622-b2e0-49c9-b9d0-78f88ca25fb5 1 Other Other +85335b9b-d3e4-4eb4-87a0-7ab81d8a4b6f 1 Other Other +8533a192-bfae-4360-8582-023b78053f54 1 Other Other +8533ed35-5ad8-4249-88cf-f8471a3e7eab 1 Other Other +85341b08-049d-4268-9779-38102fb463f7 1 \N Other +853431ec-c44a-4c25-ad85-31c265e69f29 1 Other Other +85343469-e19b-4e48-8e04-6f7de97f2fb6 1 James Other +8534bee0-7cb0-466d-85fe-7a62352233ee 1 Other Other +8534df59-ba6e-4733-93e4-6d2714194efc 1 Other Other +8534e7d9-dbdc-4f63-b6c5-3b2f64d04299 1 Other Other +853527b4-4f29-4d1d-a8e3-3310e86a31fd 1 Other Other +85357343-a770-4d49-88e9-3f90e10b026a 1 Other Other +8535dcdc-93db-4f64-9229-3c3ec4c9ae51 1 Other Other +8535e371-35e4-4a5d-a1eb-5d8729a5c90d 1 Other Other +85369e80-e1ad-414e-8f79-0966f8e32d7e 1 Other Other +8536a38a-c8dd-4288-84e4-7159ce6661a7 1 Other Other +8536bafe-92ea-49fd-85d6-51e5314aad02 1 Other Other +8536ca31-9ebf-4161-bfd6-27ac157dc2ec 1 Other Other +8536df60-d7af-4b3a-933e-ecee5e604df8 1 Other Other +8536f4a6-f728-455a-8b85-2b89716605da 1 Other Other +8536f5ad-826b-46e6-b141-31edf57e54ec 1 Other Other +85370282-fec0-4b7f-85ea-6fee19222dff 1 Other Other +853730db-0ac2-49ae-89b6-1a72c10bc347 1 Other Other +8537970a-52cc-4958-9335-30ffa179ef09 1 Other Other +8537b1d5-acb7-4767-98f8-f6bb38ac4f4a 1 Other Other +8537c0ae-de41-412e-839b-3adf97d95a16 1 Other Other +85380dc7-d8a1-483f-8fed-ff8428475e9a 1 Other Other +853827ff-5ed0-4bba-8cb8-2bdab9754846 1 Other Other +85382dd2-b4b2-4d75-a20c-aa2b6afe233a 1 Other Other +85383d61-72b7-463f-a85e-37abaced86e7 1 Other Other +853844bd-0937-4a90-a191-960e34bdfde8 1 Other Other +8538a5fe-bf1b-46c1-bd5d-c88c560177e1 1 Other Other +8538b7b4-45a1-471d-b8fa-190b67efbc07 1 Other Other +8538b7fd-e5e1-4c38-9b20-5d5c3cbbcd91 1 Other Other +85395a35-d75e-460b-81da-5aa0d7acc155 1 Other Other +85395cea-fd00-4070-924b-c713d4fef21d 1 Other Other +8539bd74-ef35-4ec5-94db-95d6410ef77b 1 Other Other +8539be7e-e830-4423-966d-8940ab103a59 1 Other Other +8539bf59-cde0-4178-a33c-818d1675d036 1 Other Other +853a12b8-ceed-4bfe-99b9-f814e8f89b60 1 Other Other +853a403e-342a-41f6-bee9-96c3db8d6567 1 Other Other +853a935c-9c0b-48c3-bae7-063e1699ba7c 1 Other Other +853ab482-8724-43b2-81d9-175f9527d64f 1 Other Other +853b0a39-be68-4b9e-9e21-10a8d3d378f3 1 Other Other +853b2c99-ae9f-4223-bb7f-b7974204aee1 1 \N Other +853b567d-553f-48fb-a316-203bc16e9e54 1 Other Other +853b8350-1705-48ec-b71a-dcf6901f78f4 1 Other Other +853b84e6-d744-42b5-b789-539e995b36ba 1 Other Other +853bbae2-842c-4dad-af8a-76e984d2112a 1 Other Other +853bbe10-ad43-40c8-9ec4-e5fcfaa21dbd 1 \N Other +853bf72f-5fe0-4103-9397-4e3bad4ca58b 1 Other Other +853c0ad5-e71d-49e3-894a-4ce3ec2ce1a3 1 Other Other +853c0d59-c262-407e-a35b-258c935bac69 1 Other Other +853c5e6f-4fa2-4645-a78c-a6d6158b3995 1 Other Other +853c7dcd-e855-473f-bc9d-56ec17fbd5be 1 Other Other +853c8e6f-c728-4c95-9f47-ed90baeaef1e 1 Other Other +853cb0d7-d80b-412f-b96e-1bac70d5abb9 1 Other Other +853cd8f4-cd40-424d-bfaa-5cb88fbc1128 1 Other Other +853cd93b-f5cb-4faa-a1af-c52694d08a0d 1 Other Other +853d15f4-4111-477b-85c0-2b318dc07445 1 Other Other +853d24e0-0e14-44da-8fec-ec07cddeb16e 1 Other Other +853d4278-f525-4443-8808-a60f7b9e44a7 1 Other Other +853db0ee-2756-465b-b4f3-a39f58860533 1 Other Other +853dc622-e7f5-4871-bac1-e37a6dddf682 1 \N Other +853e058b-4ba1-495b-93a5-9c3d64732c30 1 Other Other +853e3d9b-7cca-4bee-a48d-9b5c34ca2061 1 Other Other +853e3e52-6437-4c32-9fa6-5169461b071a 1 Other Other +853e5470-0424-4de9-a402-f011c846701f 1 Other Other +853eb6b2-f5ee-4efc-9e59-eeb5b9a540e5 1 Other Other +853ecadc-b0cf-4330-b4fc-e72ddef70171 1 Other Other +853ee427-f07f-43ba-8afa-c7681a85db60 1 Other Other +853ee68b-f892-4558-a09c-ff1d588bd0ab 1 Other Other +853f4245-be17-4b38-af48-43397af45788 1 Other Other +853f5ff0-5f4d-46ad-aed3-752ad53594db 1 Other Other +853f8ebf-4ed4-4b1c-bfd0-cb88a9a2b8a1 1 Other Other +853f9796-85fe-4dbc-aaef-9fb5a429345d 1 Other Other +853fd395-4f52-43ea-9d04-3ec146e11b67 1 Other Other +853fe718-2e11-4bf6-8fff-397eed2a50c1 1 Other Other +8540118f-0cf3-48d6-96bc-cc1c5e24ff2b 1 Other Other +85404674-f64e-4ccd-b783-d8a735f13862 1 Other Other +85408d71-701b-409f-a5e9-9c6495512c75 1 Other Other +8540982c-e4c4-4752-bc75-96b2e8c99017 1 Other Other +8540bc8c-609f-4e6d-a7a4-ba65857474e5 1 Other Other +8540c35c-298d-48e1-b77d-987a6f18a820 1 \N Other +8540e199-da4b-4b89-9518-228ed31afb85 1 Other Other +8540e42d-d2c0-4510-913e-49a3552e076c 1 \N Other +85410d10-9d8b-4790-adcb-f227e1c7fcd6 1 Other Other +85416b4c-aac6-4fef-a6ee-c5a07ab78e63 1 Other Other +854178ed-3a5b-4c42-b4f4-95d5d730fab9 1 Other Other +854179f8-784e-4c0d-a844-5616f55b7d68 1 Other Other +85422b66-7dcd-434b-a0a6-b7ecd438cec5 1 Other Other +854254b0-d46f-4bcc-89dd-9ccb30991a5b 1 Other Other +85426b41-e158-494a-a3a7-978f4c9100e1 1 Other Other +8542be5b-d040-4d71-82a1-32ef2003a2ab 1 Other Other +8542eb70-b412-4912-89c2-1bdabb1a98c0 1 Other Other +85437005-313d-4af2-9203-328af438ce46 1 Other Other +85439b51-7980-445c-8a2c-4159180a9b42 1 Other Other +8543a331-295f-4f82-b153-3b08caa59cd9 1 Other Other +8543a93e-4325-4c75-8656-b4cae74317b1 1 Other Other +8543da5f-9df4-4a37-95cd-6b126abc1b91 1 Other Other +854408b4-c73d-4509-b3e9-20b86ae7ed20 1 Other Other +85440db4-0d28-11e8-b49b-fa163e8624cc 1 \N Other +85445019-388e-49fe-891a-33d0374529ce 1 Other Other +85448ed3-ef2c-4b40-987b-3e278f574f31 1 Other Other +8544a66f-c899-42e9-af60-1e60a591f5e5 1 Other Other +8544c8f9-95f8-4613-82e9-67dc949f2e2e 1 Other Other +854517aa-b241-4bb8-9b57-a44668ec1ecb 1 Other Other +85454e1c-2b81-41df-a1a0-69d3e3b9938f 1 Other Other +854574b1-3eb9-4766-96ec-7e4648cd7a9e 1 Other Other +85459449-8e5d-43e8-9c7b-9c58fb0e1840 1 Other Other +8545b7ea-e558-4a02-8c24-9505120cd9cb 1 Other Other +8545d77c-0e2e-48cc-9c0c-92057d45dce8 1 Other Other +8545ed54-2b7c-46f5-842d-a1749d660466 1 Other Other +8545fff7-785c-44a6-9a98-05b7b54f97f4 1 Other Other +85469fc3-11ae-4c2b-a434-baf927af9d12 1 Other Other +8546b507-c630-4605-b71a-c599942ae6be 1 Other Other +8546e414-c2ab-4d97-a177-a7f855e5358f 1 Other Other +85470fee-348d-4abd-b20b-700e09818692 1 Other Other +854714b2-e76d-49c1-84f7-628fb15ebb24 1 Other Other +85472bef-83ad-4f06-b260-8fff233c8379 1 Other Other +854780bb-7c3e-4732-8783-6f1163e10eb9 1 Other Other +8547844f-97c8-459d-bc0b-787af83eab5e 1 Other Other +8547877b-c172-4368-a8b3-0beb347b1019 1 Other Other +854796e6-f725-40d7-807f-75e8be3793ef 1 Other Other +8547a8f0-0381-45de-ae39-ad43075cddc1 1 Other Other +8547ed67-1aaf-4cc1-bf3a-d747dfe4cb13 1 \N Other +8547f73b-6502-4de7-8073-18acd55da9d7 1 Other Other +85480e48-9322-4b8e-a6fb-85525d4b8241 1 Other Other +85481047-adef-486a-9553-7ac70cfb4506 1 \N Other +8548743c-e2b4-4fca-8610-ae1780a3cbf7 1 Other Other +8548ab41-0e5a-43f1-9aa7-2e38b5423e22 1 Other Other +8548c251-78ab-4e2d-916f-20113e9c8841 1 Other Other +8548f9cd-7e66-4049-b141-171aafb09f67 1 Other Other +85492037-d6fb-4faf-8423-3afcdf4d996a 1 Other Other +85492736-db79-4fce-8a3d-f6810ed95708 1 James Other +85492e85-864c-454c-bb05-2350ffb031f1 1 Other Other +854950f4-0dba-42cc-9d19-6f25f0ed2883 1 \N Other +854953be-08f7-4903-9e0b-e013190372ff 1 Other Other +8549796c-91cb-4ce7-9d55-b39c42d77c39 1 Other Other +854990b3-9926-41cc-b293-f60f06a4de84 1 Other Other +8549c2c7-2c4b-4866-addd-25fe5300c2d8 1 Other Other +854a901f-0f9d-4fa7-9d30-a7cac0b9c8f7 1 Other Other +854a94ab-4b61-46c1-99d2-0bcaa382c39a 1 Other Other +854ab3e2-6731-48f6-a339-cc2ef6c39e70 1 Other Other +854ad04e-813e-4c0a-837e-0b0b06177a43 1 Other Other +854aeb56-0603-4549-b744-e2697914a4c5 1 Other Other +854aeec1-1058-4eed-adc4-16afcdb1b90a 1 Other Other +854b048a-b0c7-4b3d-8970-aeee7aa5fbe1 1 Other Other +854b3c50-d0e5-4123-957f-ed9ca5cb2067 1 Other Other +854b67d2-de9e-41c0-bca1-07c18093335c 1 Other Other +854b8c0d-3801-43d0-be71-434fc336a078 1 Other Other +854be3e2-a5c9-46a6-992f-c325438e840c 1 Other Other +854bfa81-580a-432f-9bef-4c2a700358d8 1 Other Other +854c1c00-19e3-4032-9010-b9dc77d6bd51 1 Other Other +854c9960-7f4e-47b2-b60e-9cffa5e7beb0 1 Other Other +854ccd34-798d-491a-a0d8-1c5ac47b28e6 1 Other Other +854cf725-fdd9-4059-af58-8a17c27aac64 1 Other Other +854d21ca-dbe3-4980-a017-570678cbe070 1 Other Other +854d48ca-7b86-4cc9-b903-cee94f4d6dcd 1 Other Other +854d4a5a-a513-4236-8572-13dc520265a8 1 Other Other +854d6e6e-c675-4c12-9680-a2631b35f1c3 1 Other Other +854da977-f547-4824-89af-cd55a424c40e 1 Other Other +854dab5c-59ff-4d67-8e61-dbc85e4dcf72 1 Other Other +854dc1ba-7e17-4b96-bec5-a78c98c59344 1 Other Other +854e59bc-a544-4056-a069-ac3a9e25a67d 1 Other Other +854e779f-e920-4169-b665-a4d856f2bd09 1 Other Other +854e970c-d291-491a-bdc8-d9e9d86ea756 1 \N Other +854f06e5-5f11-432d-9d07-80834be078da 1 Other Other +854f19b5-c453-4189-80f3-861b7bca4264 1 Other Other +854f6b74-82b2-443f-8fe2-2c5ebf16c8d8 1 Other Other +854f9935-ef0b-46dc-baab-a492da7a1051 1 Other Other +854f9bd4-10bc-4109-900a-2c705156d609 1 Other Other +854fa3a9-ea32-416c-ba7d-c409ad9a39b6 1 Other Other +854fad51-987d-42d1-85dc-e016d8c8dc18 1 Other Other +855021f2-cdaf-4955-a424-639d4a814b90 1 Other Other +855057d3-a013-4c09-b0f0-738dd8b5093d 1 Other Other +855076ca-b117-44dd-b96c-33761a53d1ad 1 Other Other +8550b229-ab02-4966-bd02-367112556533 1 Other Other +8550c944-5b54-407d-a57a-0607c8bac33e 1 Other Other +85514d22-4d55-41fd-95b6-77ca64e0e84e 1 \N Other +8551a89c-0f62-4301-9e92-83547e3180d7 1 Other Other +8551bdaf-798b-4446-a2fd-0b4a16c88956 1 Other Other +8551c7b5-19c6-4810-985b-d161fabca58f 1 Other Other +8551e4a8-e530-411c-b9c0-defa82f431f4 1 Other Other +8552034a-fb26-44b5-9471-59c1779b57ad 1 Other Other +85523bdd-a6d4-463c-a142-34df3b650290 1 Other Other +8552986f-3829-4c91-a8ac-441fc366307d 1 Other Other +8552bc93-29e9-4903-bf7a-17d3e1253165 1 Other Other +8552d2ef-dcd5-4dd9-ade4-da03775b09d0 1 Other Other +855313c7-00eb-444b-a11c-44f1630eb684 1 Other Other +8553299b-87e4-4f38-8596-7393bc9c747a 1 Other Other +85533be9-b85a-4fb6-b015-cd70bb1a3162 1 Other Other +8553579b-0a4a-449c-9b46-71771bb5b66d 1 Other Other +855361fa-db4c-40b8-b532-c39433623366 1 Other Other +85538fb2-4ded-4eaa-871b-3e6ee6fb94df 1 Other Other +8553bc55-817d-4fed-8f5f-0c2aac5a1962 1 Other Other +8553e49e-1b20-483d-9fda-4d10bf28ead4 1 Other Other +8553f4cd-ffb8-445c-8abb-66c5bd0ae889 1 Other Other +85542736-1edc-4eea-b58f-866f5f4ebb6d 1 Other Other +855444bc-4438-46e7-9733-92bc105d05c0 1 Other Other +85548e52-bcea-45be-bdf8-7740f5d06f8d 1 Other Other +8554a64e-55d2-4f6b-8474-5b03147fd012 1 Other Other +8555759d-4def-49da-87d3-ca9eb3899556 1 Other Other +85557fa1-8f53-4520-b1fa-1a7e56f90e42 1 Other Other +85559e12-3857-444f-a79a-de3975d314e3 1 Other Other +8555c57e-4984-4ea2-8072-3f5b99afcb63 1 Other Other +8555e4e3-bce0-4058-ab76-81331488bc18 1 Other Other +85565ce7-e53b-4a2d-b7fa-eafd701c5b81 1 Other Other +85565d91-9278-4b6a-b3f3-5c71c56a082b 1 Other Other +8556683f-ebb6-4d37-8c03-ef8e277c714e 1 Other Other +8556af25-5402-42a6-a723-e35344209703 1 Other Other +8556b9c8-ffd9-4656-befc-5582556481de 1 Other Other +8556deff-ffb6-4ae4-aaf9-6722b48a2c3a 1 Other Other +8557242d-3dbd-4b8b-8956-8166fde4c77a 1 Other Other +85572d79-6473-4fbe-b53a-ac6361f4b38a 1 Other Other +855745fa-b975-4306-9fbc-2b4e66592ad8 1 Other Other +8557bcee-43f2-4abc-ae33-6a985a29377a 1 Other Other +8557e918-9336-4be2-82b6-d49920c26aa1 1 Other Other +855802a2-8050-4b5f-95ad-53cc46d02ea9 1 Other Other +8558295e-cc59-4c22-98e8-57cd1045cd52 1 Other Other +85587225-32bc-4ec4-a341-11018f78a001 1 \N Other +85593684-64f8-4367-8a2e-ff01f9f7818e 1 \N Other +8559445d-c1f9-4159-81c7-afe44e18eb8b 1 Other Other +8559ab0c-b277-480a-8587-eabcca2301f8 1 Other Other +8559e268-27d2-4c1e-9fce-b319eb1f4c42 1 Other Other +855a1f65-3e2b-4e05-a58f-0c14158d569a 1 Other Other +855b4707-38d4-4009-841c-9eb93d4bd9a2 1 Other Other +855b5ec5-62da-4bb3-905b-6739792ab257 1 Other Other +855bb7fb-c442-48ea-8c68-4cfbeb9dd824 1 Other Other +855bea88-3024-4abb-971a-f2c1ba8fb11c 1 Other Other +855cac48-c628-401d-a6e4-db965b374e51 1 Other Other +855cf633-eb81-4100-8c0b-9b233262676d 1 Other Other +855d00d9-dc04-4ae1-bfea-9e0ef6626753 1 Other Other +855dede0-234c-46c4-a286-88e4b0dc7605 1 Other Other +855e1f29-b897-4118-a5c3-3232d0f5f714 1 Other Other +855e2366-b381-4ad4-b995-28af330bbfd2 1 Other Other +855e3980-0ca8-4ccc-aaff-0befe334615f 1 \N Other +855e3a84-1405-439b-8d45-370eba59de78 1 Other Other +855e5964-587e-4496-b8f4-f7deb803941b 1 Other Other +855e907c-5f9e-41b7-bba4-065ff2d1e58d 1 \N Other +855ea34a-a1b2-4999-a639-13dc7fbf1c22 1 Other Other +855ed132-1b82-419e-b853-b81c8143cc16 1 Other Other +855ef2f3-530b-4ac4-bdf7-69c2b4bea918 1 Other Other +855f78ae-e1b7-4119-b293-98fa044bbc76 1 Other Other +855f9b57-c927-4d86-9b8b-9c1ffe52f22f 1 Other Other +855fa64f-a7d3-4d6b-9445-7e00271d6ef3 1 Other Other +855fcd3f-2950-42b1-bb94-add512d26686 1 Other Other +855fd6b6-e7e3-443f-aca1-c08431845290 1 Other Other +855fdd9f-2f8f-44b2-8693-9cc8e173aae6 1 Other Other +8560c64a-d01a-4f51-84cf-20ebfa33224c 1 Other Other +8560d26f-10a6-4ec0-a72b-bcc03ab21967 1 Other Other +8560d61e-e9af-4538-b62c-13c8f89dd237 1 Other Other +8560f1d3-ee97-4a85-be8d-ccd5cee5cf84 1 Other Other +8560ff2c-e256-40d0-9713-c40d58f98acd 1 Other Other +85613a2d-3cda-49f1-ba58-09c34f7ffef9 1 Other Other +8561895d-e053-433b-a217-b1df14822ee6 1 Other Other +8561f65e-7177-472e-9776-ad3aae18f0dd 1 Other Other +85624045-4023-4fb7-bb41-fc7d80ec5191 1 Other Other +85626187-7f22-4b6d-82cc-186c749636f8 1 Other Other +856272fd-a5d3-4a96-8aa2-1479c2fb5456 1 Other Other +8562b60f-117c-4773-a42f-a3b2ff997984 1 Other Other +8562d597-3263-41eb-8762-091df34e42b1 1 Other Other +8562df83-1c68-473f-a8a3-865ba65c3815 1 Other Other +8562fa2c-7541-4579-93ac-0bc9e881ef36 1 Other Other +85630b7c-1504-4443-88aa-185c3e22db1e 1 Other Other +85634c85-4192-4b75-a2e7-2e8dcb43f32b 1 Other Other +85638fd3-e921-49db-9599-f05f81f2434c 1 Other Other +8563c45a-0f06-4289-9254-72a8f08d1a5c 1 Other Other +856428c4-4612-478e-a66f-9030e4b0ebb6 1 Other Other +85643f05-be48-4f15-a07a-fcae67e13c2b 1 Other Other +8564c80c-91d2-4f98-b985-9e2c24288386 1 Other Other +8564ca0d-e0c2-4bc9-8255-c6dce56e61a1 1 Other Other +8564e038-35a0-417a-a820-7b65d858bcfd 1 Other Other +8564e140-0683-4c45-b7b5-11b1cfced289 1 \N Other +85652493-9ae1-4334-a40d-31e914a72ebb 1 Other Other +85657a21-ca15-4ed8-8ca6-227fdc83aba0 1 Other Other +8565b4c4-a738-4748-9d90-dbff04f33d66 1 Other Other +8565c9ff-2012-4f2a-89d9-034559e017fc 1 Other Other +8565d8bf-4061-444b-91bd-ae31463702dc 1 Other Other +85664d06-25e5-4c36-a55b-4fc26fcaf633 1 Other Other +8566b15a-2a61-43a7-965d-a841c3f823e6 1 Other Other +8566eb7f-cccc-490b-9a96-0b983a7c6436 1 Other Other +85685c4d-0e65-41bc-965b-543a765364a8 1 Other Other +85689dce-d44f-4929-8220-53a528d865bf 1 Other Other +8568f394-b666-40f9-9709-f7ef07c06b72 1 Other Other +85697b87-f526-4c58-b64c-90a6dad9b9a8 1 Other Other +85698a8c-5371-47df-8010-e2a23eafbf4c 1 Other Other +8569aea1-6e94-4388-a5a4-cc4be2abd7bb 1 Other Other +8569b0d0-cf5d-40b4-ad41-9de5a84d8a75 1 James Other +8569d3ba-a499-451d-ba1c-fc77743d5a21 1 Other Other +8569ed55-6c53-4c1a-be75-fdcc19a62bde 1 Other Other +856a4208-8273-432e-9aca-712f257be14a 1 Other Other +856a8b1b-3927-4a63-aea1-14ce4a026640 1 Other Other +856ab0e2-1e14-4bb3-a9e8-4804fa54e316 1 Other Other +856aead8-d8e4-4768-aa7f-7ae8ba9df153 1 Other Other +856b0651-c09c-40f7-b860-b983e0332447 1 Other Other +856b5e74-adc5-4dc8-9ced-74bdcb168678 1 Other Other +856c2b91-133f-41b1-81fb-b5ee5b4bc4ee 1 Other Other +856c33d9-639f-49c4-864c-bb9b4016d7b9 1 Other Other +856cb1f9-07f4-499c-b0ff-396ff7f75f09 1 Other Other +856cd60f-ac90-4247-b353-dbeb3f991d97 1 Other Other +856d17d3-d3d8-4f80-9bc0-24975093f8a2 1 \N Other +856d1aa7-3aa4-4d5c-a66c-2ad6f035489b 1 Other Other +856d24b2-fc3f-4ce8-9f4a-a54be62949ed 1 Other Other +856d7d9f-1630-4309-9bd1-83f35aff05e3 1 Other Other +856d9f9d-2aae-4019-aeda-f9afeb9d0aa8 1 Other Other +856db41b-6010-4773-bc0b-27190404df5f 1 Other Other +856e133f-cab3-4d0f-8573-ca3a3748f46d 1 Other Other +856e1468-7bdf-4d13-be51-09d8fac2f835 1 Other Other +856e2d02-89fa-4a44-bb76-84b97cc72bc2 1 Other Other +856e4920-2a50-4b9d-bffa-4cfc4cd6df41 1 Other Other +856e4edc-67b5-4084-91e4-f8db62406dc4 1 James Other +856e8820-1f56-42ba-a3ed-f207adee6fae 1 Other Other +856e9488-af23-42d6-b5e8-f8b48853addb 1 Other Other +856e9b80-8b36-44af-b98a-d1e2e7b1ca82 1 Other Other +856eb6ae-c769-4b42-867b-d6283c4aa149 1 Other Other +856edd04-b0df-4e75-8999-a2b4d704f6ea 1 Other Other +856ff49e-9e87-403c-b935-abd4841a3174 1 Other Other +85705ba4-dba1-4983-a58c-9678a3e5f411 1 Other Other +857071c5-2cb8-4d0f-9f11-98f0a8d977d7 1 Other Other +8570f5c8-6b29-4afd-8bb3-b8484aaf949f 1 Other Other +85711201-d503-40f9-b68a-6cc431f04d1a 1 Other Other +857183d7-c494-4bca-8add-ac6a2c93f61c 1 Other Other +8572335d-4a96-4454-9908-8c06261559a1 1 Other Other +8572642c-81c5-4527-a145-910fed995ed2 1 Other Other +85726872-7919-48aa-b595-09728dd2a927 1 \N Other +8572933f-104b-445e-9f7c-b408acd5cd6f 1 Other Other +8572bed5-934b-426e-88cc-bbdc89852f1f 1 Other Other +85731b6d-5201-4468-8be8-7e2d86187460 1 Other Other +857326be-e7b9-4ddb-b9c5-f0f78accc232 1 Other Other +85733780-c8ae-4a85-a4c2-21cc46767d4c 1 Other Other +85736828-4fe0-46b6-8974-dc3664a7f5b3 1 Other Other +85739e91-7593-42a3-a2b6-5ac8aa600703 1 Other Other +8573afc8-0261-49da-9570-dd11e6b57612 1 Other Other +8573f721-4079-49be-a07c-97d9135dc861 1 Other Other +857447a5-0584-4746-9cfb-00df4ffa45d7 1 Other Other +85746adf-4fda-4bdf-923b-c2b9c0ae1c78 1 Other Other +8574d740-60fd-4133-a7c6-3e10ecda7ad6 1 Other Other +85752867-1331-4a6b-a6ea-dee6df4f1b23 1 Other Other +85753506-dc40-4fce-8700-364acf92aaf9 1 Other Other +85754c5c-d004-4949-ad45-ff4c31661d25 1 Other Other +8575664f-7174-4fdc-96a9-c496451656cd 1 Other Other +857575c9-d9d8-496f-b76e-0932595fc802 1 Other Other +85759161-6d67-4f6a-b9fd-a793337b6238 1 \N Other +85759c84-9d5c-466e-970e-fb23ac426890 1 Other Other +8575a761-53e5-4208-9bb3-d07c33c1cd88 1 \N Other +857624b4-e1e8-411d-a81d-b9ed30b9ac2d 1 Other Other +8576255e-ad5b-4c2e-a195-d284465b56b5 1 \N Other +85764f0f-fbee-400b-afe0-5319e6d7aa96 1 \N Other +85768276-a573-4eb2-a5c0-5a6d9c3229e7 1 Other Other +85769875-cd89-4142-8bc0-dc50b17ed461 1 Other Other +85773a35-14f3-41bd-9c9a-5fb804d7a759 1 Other Other +857745dd-f8a4-4f92-b3f6-49ed6d3b3658 1 Other Other +85774a54-3ce0-4013-a93b-983953db68a2 1 Other Other +857781ae-e79e-4ed4-be8e-ce244acdde2d 1 Other Other +8577c4dd-7310-42f3-ba7f-6b75fff2cd51 1 Other Other +857804e8-aaf3-4362-b0e6-9a1c522028ca 1 Other Other +8578a748-2961-4be1-837f-86ac86543ce3 1 Other Other +8578d689-b1fd-4b19-b79d-522a22726c4b 1 Other Other +8578f50b-7d64-4254-858c-2834aca1e9f9 1 Other Other +8578fafe-8d61-4b63-9b3a-edde384f5343 1 Other Other +85790501-75fb-46f5-a3fa-da62b9818f90 1 Other Other +857930d5-206d-4c1b-af14-bdc28796aa10 1 James Other +85795dba-bcb7-498c-8788-c1da5e649bd1 1 Other Other +8579f7fb-8f99-426d-8705-ea1d26f188e2 1 Other Other +857a62e1-44d3-4888-b9f3-c6acd38a4940 1 Other Other +857a8569-4478-4b56-af0e-9c26dccecae5 1 Other Other +857a86a7-9f84-49ba-ac0b-09a29b216def 1 Other Other +857afb5f-be41-40c0-b1e1-b00b28d96927 1 Other Other +857b3ca8-12ac-4843-94cb-cda75f630782 1 Other Other +857b7a11-8182-4914-afed-104983de7961 1 Other Other +857c0d9a-1062-49c1-9f93-cae93a6e8c7f 1 Other Other +857c1cc9-2d4d-4325-8540-341803fecca1 1 James Other +857c20f3-90e2-4cb9-b324-0b07afeb1ac3 1 Other Other +857c6e31-5704-469a-8ea5-2e72763929f7 1 Other Other +857ca774-22c8-4d9b-b705-ed0a4f16b9ec 1 Other Other +857cb8a8-6124-4466-9790-c6900b388ada 1 Other Other +857cc936-292c-459b-8929-5d51716b6d50 1 Other Other +857d2f44-8d37-452c-87a3-7dc66f0629dd 1 Other Other +857d6b04-248b-4080-84ff-b94bcae4b7a0 1 \N Other +857d7656-f7ff-44d5-93ad-d167f866f7dc 1 Other Other +857e2668-ea30-4c5e-bf81-2b3afb9f1167 1 Other Other +857e3fb6-4211-4d02-bbed-1f2b9555ecff 1 Other Other +857eb8e3-6a93-4716-b60c-4cda3b8ba23c 1 Other Other +857f133a-5b0c-422f-986d-53d8005b325a 1 Other Other +857f28e7-cf6f-4b97-ac51-44e558589076 1 Other Other +857f5d89-d11e-4404-8193-4fe96ceebeee 1 Other Other +857f6645-fec4-47c9-89f1-64c180f5b925 1 Other Other +857f967b-8ee0-48f8-baac-e351de325bc5 1 \N Other +857faa27-d131-4ba6-8eef-150f37f4f084 1 Other Other +857fb65d-6444-4796-80b3-1167951fe824 1 Other Other +857fcddd-9a81-4256-bec0-9c8f55de6e09 1 Other Other +857fdaef-55b0-4af3-b762-62a75f4e9308 1 Other Other +857fff99-152f-4140-b912-c7d6d105022a 1 Other Other +858017e7-7d51-4471-a418-1ce196763588 1 Other Other +85803ccd-c59b-4dff-9d69-905724d6ecb7 1 Other Other +85806bdb-e40a-41a6-9f24-4dd7ffab1524 1 Other Other +8580914c-a16b-40e8-8a2e-b902a782f9a8 1 Other Other +85810032-fd7f-4ba7-9659-ee627b483737 1 Other Other +8581581b-0f42-4d73-8abc-2afc248e8bee 1 Other Other +85815cc6-d314-4677-a673-59dbe44a1901 1 Other Other +858181a7-7a35-4f6d-b823-e83f8575fba3 1 Other Other +8581a937-0498-4555-848f-a4c79d27bcae 1 Other Other +8581bc6f-0063-4547-a730-de5a1d15a025 1 Other Other +85820798-e9c5-42e8-9e8a-98bf434ed0dc 1 \N Other +85823d2c-e711-44e7-bf9a-4d9cace1e824 1 Other Other +85827991-449c-490e-832f-c124d02abfbf 1 \N Other +85828457-ba55-422f-b10a-027608e93019 1 Other Other +858286af-a127-41c3-8439-846b11e0c274 1 Other Other +8582dea2-fdc5-41ed-90d9-defc70d716bc 1 Other Other +8582e044-4ac1-46e1-865a-476477a8345c 1 Other Other +8582e69b-7abb-4bf6-afe7-cd6ef1990b33 1 Other Other +8582fd77-53bb-4f3b-8efe-92f2c6e911dc 1 Other Other +8583687f-5f1f-44df-ac5c-9cdccb8431c1 1 Other Other +85837264-5479-4b41-a0bf-561856058fb7 1 Other Other +8584698c-f60d-476b-aaa1-a8ba72e50008 1 Other Other +8584b0ba-6be0-404c-aa5a-a5f97b2b1d01 1 Other Other +8584dc5c-a6db-4a39-ae52-ba75ed166cd6 1 Other Other +8584f0fc-d837-4a7a-aa85-4db8f0b83b20 1 Other Other +858502a2-634b-434d-a93f-614b98ba2b35 1 Other Other +85851451-141c-4cbb-aa18-7e92fdaaa0e9 1 Other Other +85851dbd-a284-4fae-8aa3-1a0c1a930369 1 James Other +85852486-c177-4553-953e-3981e5c0060d 1 Other Other +85856c29-24f2-49e3-afd5-d51cd5fb99a0 1 Other Other +85857362-18d4-405e-b1ac-fa78b725ef45 1 Other Other +858586c8-9055-4209-b614-32d558355196 1 Other Other +858598d5-dc5d-4b3f-a09b-bc2aebb5ce3a 1 Other Other +8585b591-b357-4e9f-8f63-b3face101034 1 Other Other +8585f64e-8f7f-4fc2-9dce-5d9046cf00cc 1 Other Other +8585f968-a06a-4337-8331-01c890097b4d 1 Other Other +8585fdf7-f937-43ca-9542-ddae6fc0b58a 1 Other Other +858602f1-4ed5-4d19-b877-d8e0f9f9db8e 1 Other Other +858617c1-c21b-4e92-9567-c00c8094e808 1 Other Other +858623c2-314d-4b48-8a41-a4f84dd1595a 1 Other Other +85865ba8-b69d-4d2f-bc31-b1ff66405b55 1 Other Other +85866004-2911-46d3-af25-c349f0c9949b 1 Other Other +85866623-86a0-4b4f-b946-2d642ed78d5d 1 Other Other +85866c06-a0c9-4536-808b-34170550496c 1 Other Other +85867dbf-2444-41b2-9d22-eb9ac39a18a8 1 Other Other +8586a49f-fce8-494e-8f26-67804cd4923a 1 Other Other +8586b986-98ac-43e5-a933-4b3a46eae578 1 Other Other +8586bb3f-74ff-4474-9742-1ea5afcb24ae 1 Other Other +858770cd-a2ea-4831-ba62-41f71e4e7b66 1 \N Other +85878e92-5e30-4201-a78a-c1cc34e62dfb 1 Other Other +8587b04f-2f21-4608-95e7-d4256791ce19 1 Other Other +8587cdb4-f936-4454-856c-f83f5890d7e2 1 Other Other +8588578b-68e3-480b-bb0a-4d183a9f31aa 1 Other Other +85885a06-e2b2-442a-a0e5-5ef7ea787c1e 1 Other Other +8588c625-c831-4fd8-8dd7-972d0c589727 1 Other Other +85893233-c03e-4477-a2ee-5ce2a39b2300 1 Other Other +858994f4-a2ab-42d3-ab76-6979e9523389 1 Other Other +8589a886-ada0-4729-b924-05d438bc1487 1 Other Other +8589ba04-3a2b-4c7f-869e-95358d32c396 1 Other Other +8589d3e9-910c-4f5c-b535-b76462ed1d5e 1 Other Other +858a4c54-a544-49f8-bc63-b0686f39ad9e 1 Other Other +858a51b7-b666-439b-8b34-878605106352 1 Other Other +858a87e8-8eb1-4c64-9df0-b9fbc1d7b3b3 1 Other Other +858a8a5a-98d6-47d7-adc0-5df1e9d9b96e 1 Other Other +858aa010-ce76-4baf-8d8a-24aded5cb007 1 Other Other +858af1a6-6470-4fa9-bca4-adf7ef54175d 1 Other Other +858b705e-4b35-4f73-9a38-4c85d973249a 1 Other Other +858bb388-3e00-4896-a7b9-cf943aa33a23 1 Other Other +858bc5c6-0324-4957-9591-96ba9d5944a6 1 Other Other +858c1114-ff71-4f33-82b8-774aca71543b 1 Other Other +858c223a-c9a6-487f-8c14-377edc845799 1 Other Other +858c3bdb-fe04-4807-9e78-2ca23fb8a7a8 1 Other Other +858c3e78-c24d-4fa4-b094-7098b929754d 1 Other Other +858c6e78-2f9c-4b1e-a2f7-7ac1bb86a4e8 1 Other Other +858c94fb-c988-4f56-ac72-8564d38fcff4 1 Other Other +858cdecc-6d3b-48ea-91de-8e0c13813507 1 Other Other +858d2cf4-76f7-4d3d-8a75-ad79043c5b34 1 Other Other +858d5682-2e48-483d-bd02-8ac8dd495588 1 Other Other +858d79a9-2e9c-4c65-b190-dba4e97a24b5 1 Other Other +858d9e53-6f37-45cf-94c6-b7f3b93e5747 1 Other Other +858e77ea-da80-4850-b1fe-59d9e2c5b9af 1 Other Other +858e7c57-eff9-4e82-b303-2a8fb45bb687 1 Other Other +858e9dfb-5505-4141-b05c-378b3b9f5300 1 Other Other +858ea3e0-b919-4b59-a0db-85d9fe04e868 1 Other Other +858ef0ca-e246-4678-ab4b-c9df748f9015 1 Other Other +858f4937-f0f3-4e3d-b9d9-4ef93bf2f26e 1 Other Other +858f7726-55f8-470c-837b-1aabb9658112 1 \N Other +858f9ba4-6edb-4260-b906-df997b678eca 1 Other Other +85901ff1-5087-4a35-9f4d-a766cd98de58 1 Other Other +85902768-08fc-45cf-b673-6eeaddc66290 1 Other Other +8590db48-1b9a-4b3c-9759-500060c09618 1 Other Other +8590dd66-02b1-41e3-935d-56d6b8e9f659 1 Other Other +8590ffc9-4fc6-468e-9f51-e34aea877590 1 Other Other +8591110c-5770-48bd-9ff5-1088545d2431 1 Other Other +85916686-3bdf-4851-91b6-7eb81f0f0575 1 Other Other +8591b153-97e4-4a13-a0f0-6044b48be95d 1 Other Other +8591b233-5014-4931-b1a5-06b5193a2421 1 Other Other +8591c578-c97e-4425-b766-180eb6b49529 1 Other Other +859249dc-55d9-4b37-b5f7-1d65925065dd 1 Other Other +85925652-acc1-4907-8256-00f4895a595b 1 Other Other +8592b5d9-be63-4f38-abcc-d366c66d6531 1 Other Other +8592f636-7995-49ba-878a-97c22061e3c4 1 Other Other +85932f64-8fd2-458d-8887-69ea3f980950 1 Other Other +85933bb8-b231-4422-9921-4f488ebc6675 1 Other Other +8593499e-61be-405f-ae26-feaf86c5b240 1 Other Other +85938076-d70e-4659-a736-c0cc9b77f3de 1 Other Other +85938fff-8dd2-4b79-863d-3dad6f33ff45 1 Other Other +8593b6cf-0f01-45c8-bf2c-179483dd0365 1 Other Other +8593dba2-bcb0-4800-9e16-e3574e5cdb67 1 Other Other +85940e63-e178-4d29-893c-e534e1c38663 1 Other Other +8594125b-eebc-447f-8259-953bc7ddbe2d 1 Other Other +85945195-475d-4b46-be00-c564bd9cab82 1 Other Other +8594c0b7-853b-4b7e-88eb-69dd2bfef6ff 1 Other Other +8594c43c-c215-4c71-a5e7-6c8fe2aaa355 1 Other Other +85958189-6026-4162-b2ed-d3e7c17b2131 1 Other Other +85958a59-2ae9-4953-85bd-b80878cc6f88 1 Other Other +85959f2e-9fc0-4bdb-8bb5-7a410698ed7e 1 Other Other +8595c9eb-251d-4137-8a4e-d95214f3e49c 1 Other Other +8595dd33-ca3e-41eb-8905-460156cc6735 1 Other Other +8595eafd-90df-48bf-a871-bc94e2e97731 1 Other Other +85967d90-8db2-4c3e-9e95-08d049ba4d31 1 James Other +8596915b-cc86-4f6b-87c2-d64c30165f3c 1 Other Other +85969368-8a50-4f00-bf1b-fb365d6f9ec5 1 Other Other +8596a1d5-a6fe-4b94-a939-5e9eebeb26bd 1 Other Other +8596e0a4-5b31-430d-8d31-6022b2ca6d14 1 Other Other +8596f1e6-8c8a-4d18-9f5a-d1853bd476e9 1 Other Other +85973a85-f234-4c8f-b37f-8b7530054e73 1 Other Other +8597d13b-d654-4e91-8220-bf7541a441f5 1 Other Other +8597d155-8394-486a-a790-75b33d27166d 1 Other Other +85980782-2614-456e-895f-04beb48932be 1 \N Other +8598465f-b487-45e5-aeb8-2c0fe4f554aa 1 Other Other +8598cd3d-5b3d-4fc3-9807-94cc4a95f231 1 Other Other +85990cb9-57d2-4304-8e4f-2c9e221b67aa 1 Other Other +85990ea1-0e59-498c-ad74-4c551dbfaacb 1 Other Other +8599401f-fbcb-4851-9ca4-43bfc57ce1ae 1 Other Other +859942b1-c863-480a-943e-fed6fef5c192 1 Other Other +8599beff-a756-477f-9638-a813f5434885 1 Other Other +859a0451-f4c8-4673-a9d3-40de4396899b 1 Other Other +859a4c5e-d737-45d6-bbba-1fa62ffef495 1 Other Other +859a5409-5231-452c-be87-a50cda99ede6 1 Other Other +859aa0d9-62fd-446c-94e0-5bfcfe62e60b 1 Other Other +859b3192-b6d0-4291-8ab3-ee336d6f7f76 1 Other Other +859bef90-19f7-43a9-9df8-19bd1c4a76f5 1 Other Other +859c0345-6e89-4338-8375-02e40b3dd16a 1 Other Other +859c079e-dfd0-4c97-9727-3786c74ca2c5 1 Other Other +859c1c15-15a9-4392-83ec-0571b6770639 1 Other Other +859c6844-f9f3-4758-b9bb-22dbd649c95f 1 Other Other +859c73f8-6e86-4665-a1ce-02a922da2e10 1 Other Other +859c770f-5b04-48d1-be32-dfc4d39dac0c 1 Other Other +859c8131-7473-472e-aa88-62fe55f243f4 1 Other Other +859cf06e-458f-4941-8af2-ac14163db3b7 1 Other Other +859d06f5-ffa8-4212-ba51-070ffaaab946 1 \N Other +859d07be-9d33-4dbc-b9a5-bd9a840b9915 1 Other Other +859d0baf-b4fc-43f6-9cdf-3722d3bcd3d4 1 Other Other +859d1eef-701b-4ebb-a40d-ed106fc9ebc9 1 Other Other +859d47eb-70af-497d-a650-4054edcc9378 1 Other Other +859d5800-c4b7-44ec-8787-b66e04dd3aa0 1 Other Other +859d60f1-2003-4c93-808a-5b1f8de7201a 1 Other Other +859d9082-e54a-42d7-9539-56df85a452c9 1 Other Other +859da5e2-2940-4307-ac38-eaa49e036915 1 Other Other +859dbe78-1760-4109-843d-a41543970742 1 Other Other +859dcaef-85a7-4e15-8535-882cb232358e 1 Other Other +859e0260-1e48-4414-8e68-ba3c0470d052 1 Other Other +859e05e3-c1df-42c4-9968-44a64aeaed25 1 Other Other +859e107a-6e85-43b5-b5be-9101473a84c6 1 Other Other +859e257d-1028-4d8e-91f9-aa57dac48d62 1 Other Other +859e6197-4346-4e42-980a-56c82d8ae107 1 Other Other +859efe78-3c12-4bcf-ab55-17f6351a7cdb 1 James Other +859f5859-95fc-47bf-b1a4-27d5d70741a2 1 Other Other +859f5c9d-0c99-4e33-9844-cf9981e0b4b7 1 Other Other +859f7b61-9ec2-4eb8-8bd1-ce3b648cf11e 1 Other Other +859fa61f-dec5-4410-8e08-d381ce514847 1 Other Other +85a074b4-dc51-4b05-9bd8-aafefb1175a4 1 Other Other +85a07f4a-8aa4-46fa-90a8-7d2f28526246 1 Other Other +85a08872-ad43-40e2-9ad8-ced4206bdc63 1 Other Other +85a0cb32-c186-441c-b498-9b9341c20a01 1 Other Other +85a0e1a0-48b2-4c04-a0cc-938d1f5db689 1 Other Other +85a0fc60-1a5c-4189-9d65-6ffb149d53b0 1 Other Other +85a113ca-c3e8-4261-b5b9-7b56ed87fecc 1 Other Other +85a17dc0-74c3-48a7-9649-f2c03e73b4a8 1 Other Other +85a1e2a8-60e6-4ecc-bd8b-36291517ed25 1 Other Other +85a1f32c-d016-4a5e-9ec6-176ea41ae50f 1 Other Other +85a22c1b-cb49-4d29-9f9f-ad84d860c4f7 1 Other Other +85a263f2-3ae4-440b-939a-39a3dc6458a9 1 Other Other +85a28422-27bf-4a1b-a5b7-ffd4362aaed0 1 \N Other +85a29d0a-9a02-452d-9eef-e34390ceb6dc 1 Other Other +85a2ba6b-12ff-467f-a7eb-4b45f9ddf14a 1 Other Other +85a30d03-5023-43e4-b5fd-2a334310ef32 1 Other Other +85a32084-67ec-4380-8cc4-6f018204632b 1 Other Other +85a33483-578b-4015-b233-e8141190ab39 1 \N Other +85a358c6-e8a2-4030-8c49-a0a52886ecdd 1 Other Other +85a38f82-7e0a-4749-b7f3-ddf0de477062 1 Other Other +85a3c4e2-33d6-46f2-bb4d-838f852697a7 1 Other Other +85a3fa11-70ac-4080-ac61-34de7d0184d1 1 \N Other +85a408b1-5d27-45f5-bf27-6c0bed0a6755 1 Other Other +85a413a3-038f-435f-9d86-c10fd755f865 1 Other Other +85a41a8d-9544-4ed7-b177-1ba38a5db832 1 Other Other +85a44ac0-2ec3-4d39-ae24-7dbe7f7544bf 1 Other Other +85a46715-2985-4dfe-b457-d849e9ba19a1 1 James Other +85a46965-97da-490e-9b58-281481401e6c 1 Other Other +85a48186-5fb0-46da-a17a-e885651a3ec5 1 Other Other +85a4cc37-6263-4c35-b0a3-ecf152d3e04a 1 Other Other +85a4d575-a819-422c-8534-f4a16815a82a 1 Other Other +85a4dd67-f0dc-425b-a29c-7736108dd606 1 Other Other +85a4e8b8-4fdc-4901-bb89-c9901ef73843 1 Other Other +85a51e56-c3a2-4e39-87e9-35fa6dbe19d0 1 Other Other +85a53209-a0a7-4a34-b08c-21fe52f981ab 1 Other Other +85a549f6-b2df-4aac-ba99-7eb2c0f4d8ab 1 Other Other +85a574a3-a25a-4e14-8548-579eb45ee345 1 \N Other +85a57d6b-a6a2-4d28-84f3-98fdac8ecfce 1 Other Other +85a58118-b9b2-402e-929e-371a65012d7a 1 Other Other +85a59522-e4fd-4b2a-b1c9-905f16b56488 1 Other Other +85a66dda-1f2e-41fd-8dc1-a7f6e82558a3 1 Other Other +85a69852-c2c9-4f2c-8d7c-0baf321f6a5b 1 Other Other +85a7040b-fa83-4c7d-8ada-97c9f9050420 1 Other Other +85a74a9a-edea-4cae-be1f-815f97e95d6c 1 Other Other +85a7780f-bb74-4ec6-9f5d-03858d2d8f4f 1 Other Other +85a785e0-2325-4854-a1c5-181839df42c5 1 Other Other +85a7b07e-7cae-403a-b206-f0c2e3ed81f7 1 Other Other +85a7b51b-261c-404e-8b43-a8231762c01b 1 Other Other +85a7d881-d1f3-4535-a9b0-663a63a97d79 1 Other Other +85a834e9-39c4-4642-8b1b-47ab50762905 1 Other Other +85a86ba8-9e73-4865-b31f-beb063d8a74f 1 Other Other +85a8b4d1-d9b5-4d5e-8cbe-703208a55b05 1 Other Other +85a8d86c-0eed-444d-8118-6c16f3281f0d 1 Other Other +85a8fc33-f9db-4611-a1c8-24f4e2463158 1 Other Other +85a904b1-d4a3-4197-8a86-2c100325c62c 1 Other Other +85a9321d-f0a4-49f3-9270-be4b92da681c 1 Other Other +85a94d35-1bc3-4136-a51a-2aca43178272 1 Other Other +85a9bb16-627a-4490-b057-9f4a88fa854a 1 Other Other +85a9c183-4891-4425-8e86-19c60e4171da 1 Other Other +85a9ef64-fb32-44d2-bf48-c3cefcf282cd 1 Other Other +85a9f5f7-ea5c-4424-b260-9b63a791862b 1 Other Other +85aa2978-b62b-4c04-94c9-01ecbc63f7ba 1 Other Other +85aa2f65-2835-4f72-92fd-73c9c82200c1 1 Other Other +85aa3657-28bc-439d-b329-80ec7889822a 1 Other Other +85aa5463-5fbc-4fb1-a3e2-e7393454a94e 1 Other Other +85aa5ee7-718a-45a9-b903-26b507760c33 1 Other Other +85aa6a1e-87f9-4835-a7fe-b4de4ac3c9bf 1 Other Other +85aa6eec-5859-443e-aca5-9c158b8c0b18 1 Other Other +85aa9845-6ff7-4bc4-b884-a21baa1c05e5 1 Other Other +85aad09b-65ed-4559-8c77-41b7a7f48f20 1 Other Other +85ab3671-2a23-451d-8f35-550ac7052581 1 Other Other +85abd3b1-fd59-4d92-bafe-20fdc4e89494 1 Other Other +85abd7ba-68e4-4630-9524-dd3019819878 1 Other Other +85abdae9-631e-4c4f-a2d0-3606d909acb8 1 Other Other +85abec1d-9ceb-4e13-bba4-28d7e1d4aee9 1 Other Other +85abf733-1492-4c2d-8ce6-7f642f778a6e 1 Other Other +85ac1564-bcd8-4bb1-abcb-09b449af8d9b 1 Other Other +85ac2b7b-98c6-4f88-b6e2-60e6807c0a9e 1 Other Other +85ac786f-0d65-4bbb-ba4f-1a1259ffb456 1 Other Other +85acc2bb-8c7f-4f69-8c0b-28f2307693a8 1 Other Other +85ad11e9-2624-4303-8a1e-810c36bf6cfb 1 \N Other +85ad215d-dae1-4ff9-8842-58581845d21d 1 Other Other +85ad34ac-06a1-46b8-ad52-e6877168bd17 1 Other Other +85ad44ad-2a01-4200-ba72-bad2e85f82ca 1 Other Other +85ad7cb5-4f7d-42ee-9406-c7f7b3011d1c 1 Other Other +85adf128-14a3-4bfe-bbcd-8fd9fdb96dba 1 Other Other +85adfbb6-4524-402e-a2a6-a67b9190ba11 1 Other Other +85ae5886-4def-4f13-987e-4be8d11ffd60 1 Other Other +85ae5cf5-5a7d-4ba9-926d-63b10ca2bd7b 1 Other Other +85ae664b-07a6-429a-85ed-c9c824b6897d 1 Other Other +85ae90a5-dd2d-4bcc-8641-aca384e7416b 1 Other Other +85af598d-2758-4e42-aa5c-0c15c66d8c63 1 Other Other +85af5af6-ea60-4a47-8483-c6988558610a 1 Other Other +85afa322-17f5-4391-aec4-850d62dc52b4 1 Other Other +85afc83c-5fe1-4b44-b4f4-ee27166dbb21 1 Other Other +85afce0e-c6f2-4044-9678-67e607e1b636 1 Other Other +85aff900-8953-4cd8-8b0a-8e721886a1fd 1 Other Other +85b055ad-76b6-4039-aaef-fc3eb38d777a 1 Other Other +85b05d51-c8e8-416e-b8b6-2230aab49840 1 Other Other +85b0e8a3-5f6f-49ed-9c10-af92f9a2f802 1 Other Other +85b0fac7-66d1-40ea-a199-6c15f3ec4dbf 1 Other Other +85b0fc95-0929-4530-810c-b91dce7db434 1 Other Other +85b1343e-f900-45fe-9ee3-a36a95a1e5c2 1 Other Other +85b16309-69b3-43e1-a32a-618f2521b87c 1 Other Other +85b18b71-e971-4ba0-95ff-01a9959d2dd1 1 Other Other +85b1d74c-45ee-4cda-8a2e-2414efb3f2f4 1 Other Other +85b1e064-27fe-44db-bd2f-16842307a530 1 Other Other +85b287e8-564e-4b27-aac3-fa59cfb38b93 1 Other Other +85b29c6d-0aa7-4a69-a46e-bf41e003c0d1 1 Other Other +85b2d363-b6fe-4d18-9714-de741c62d765 1 Other Other +85b2e61a-f0a9-4e26-9dd7-8c99ca09899c 1 Other Other +85b321a8-7af7-4be7-9e82-d4eece3fcbbe 1 Other Other +85b3414e-23f2-4047-8803-74dcb403343a 1 Other Other +85b3489a-3bb6-43d9-87c2-be4ca9e16c06 1 Other Other +85b37690-a585-413d-b496-79e4b89adbf7 1 Other Other +85b3d852-70db-4135-9d66-9eea1c468de7 1 Other Other +85b3e7a0-46c2-496c-8940-7cdcbe4fef26 1 Other Other +85b3fe38-6ed9-4503-9de8-da3d95ec9252 1 Other Other +85b400c9-d56f-4650-8f73-d7ffd82f7168 1 Other Other +85b4096f-d7ba-4298-bad0-10ee41408b48 1 Other Other +85b40ced-99b0-4f01-b171-addaf7c9587e 1 Other Other +85b43ef0-87af-4087-ad94-b932a6ea902b 1 Other Other +85b49e8d-d986-4116-ad75-15bf6485bf80 1 Other Other +85b5755a-cd6a-409f-b3cb-b62b4e48cc81 1 Other Other +85b5de9a-10db-41ab-8e8d-84161c03f112 1 Other Other +85b5e420-c931-42b6-addc-54f8bdcfd651 1 Other Other +85b66419-9a03-4187-bb0a-ea92845232ed 1 Other Other +85b68383-d931-4416-b5b9-c1f65ebef76f 1 Other Other +85b69588-060b-4543-8354-75c5523b7457 1 Other Other +85b6c57e-3965-430d-bd11-f1f06f26cfac 1 Other Other +85b6e882-5474-4a4e-885a-2408b5b0e395 1 Other Other +85b70b43-ae4c-4d03-9043-e271d1c19415 1 Other Other +85b73764-50d1-4930-b125-8b00071312a2 1 Other Other +85b7a593-0e89-4a02-bddc-123a789e7fd1 1 \N Other +85b7c318-4240-4095-a913-7f3526f93ee5 1 Other Other +85b7f13b-b0e4-4a3a-889d-1a4814c1314a 1 Other Other +85b8552f-d293-4454-86bd-b15b75760b42 1 Other Other +85b87d59-2f03-4c93-b5ec-cd45469d0915 1 Other Other +85b887fb-3ec6-4480-aa03-e8adca787c99 1 Other Other +85b888fc-3ae9-44d1-9cf2-58e9e00be38e 1 Other Other +85b894df-5f14-4d99-9ce4-b80e2a3fd3e6 1 Other Other +85b8ae19-c2cb-4856-b36a-7634e39fc9aa 1 Other Other +85b8bb9c-73f1-40a6-bfa6-02fed508dfa0 1 Other Other +85b8ce12-2f66-4cfd-8aeb-68a8519b0e2c 1 Other Other +85b8e054-4e62-40db-8250-75ffc00b2603 1 Other Other +85b9447b-4872-4a67-9c17-c4e8be2812dc 1 Other Other +85b948a3-cdb6-47a7-b11d-244f86cdfb33 1 Other Other +85b956b2-b1eb-4640-a424-4815e0f8a474 1 Other Other +85b96f21-c3bf-4ec5-9a03-c05969bc0115 1 \N Other +85b976d3-0a1b-4efe-b241-65045e54cc87 1 \N Other +85b9a78d-05d9-4b57-ae1c-bc923d1256c0 1 Other Other +85b9b1ad-2f08-418e-9526-f52e236a431e 1 Other Other +85b9fea7-0c3d-4f89-9900-a32e38b7a590 1 Other Other +85ba3736-15bf-48da-8ae7-7908085502fb 1 Other Other +85ba3b36-0798-46a5-94fa-cc94cf6f1d1e 1 Other Other +85ba474a-fd7d-4ab5-973b-a69c8554aafe 1 Other Other +85ba8a89-18da-4128-b6b2-4ff4d2b2fd02 1 Other Other +85bae3d9-ea33-4cae-bcae-5942a81c6877 1 Other Other +85bbc624-8302-49fc-bc16-4699fbaa4ed8 1 Other Other +85bca29c-87f1-465d-86c4-b5ed23f6d160 1 Other Other +85bcdcea-52b5-4600-b2a1-6f7df4b2e7bc 1 Other Other +85bcf0b0-f573-45ab-93c3-b5efce07e13f 1 Other Other +85bcf4be-8241-43f0-a244-77048949a747 1 Other Other +85bdab87-e3a2-45db-99f1-bf75b2eab63e 1 Other Other +85bdaf60-de39-4a68-aab3-935b8532c1f5 1 Other Other +85bdbd50-a57f-4a4f-95ca-6c47af3aca8b 1 Other Other +85bdec9b-cc98-4d62-8b17-c88db9fc30e5 1 Other Other +85be2480-3497-495b-bfab-c53c11becb50 1 Other Other +85be7642-ca6f-4b6b-a354-63def58c0c77 1 Other Other +85bed41b-8b70-4685-b1e8-b3378098fa65 1 James Other +85beeebf-b02e-4c83-ba7e-05471264d9cb 1 Other Other +85bf1ca5-6408-4c31-9fac-7c2d5fd9a937 1 Other Other +85bf3124-fbec-443b-89f1-8e4b6b63d9e8 1 Other Other +85bf37aa-468a-49b5-9e0e-db3550f0a90b 1 Other Other +85bf717e-4a06-466d-89d5-033372feb448 1 Other Other +85c09660-487c-4e76-a84a-c0e14c7eb980 1 Other Other +85c0b3c9-418e-418e-8ffc-f85f113dd112 1 Other Other +85c0fea8-9df0-4211-8f0c-911f031f439e 1 Other Other +85c133c2-6489-4bdb-b173-25a31a40b3a1 1 Other Other +85c15975-8c17-4a11-8ab3-ca03867e8e7a 1 Other Other +85c16f13-6a71-4d24-9b5a-5dca13ed81df 1 \N Other +85c21efd-7f37-475c-8d38-05f3e7d24d83 1 \N Other +85c2249a-9807-4310-b068-6e6116a51d5e 1 Other Other +85c22d32-a9fb-45e5-a8a4-fc9dfb3d1718 1 Other Other +85c2510d-55fe-4df0-9cf3-224259f42aa2 1 Other Other +85c3010d-c97e-4452-b31c-b4997baea67c 1 Other Other +85c31189-c0f0-40c8-a17d-49272adc111f 1 Other Other +85c33ee0-3bd1-4e58-a996-6741b3cff7a4 1 Other Other +85c39deb-9cfc-4b57-87c5-ed7b95ccfccd 1 Other Other +85c3f24b-5994-4113-b9fc-c462bfb7b836 1 Other Other +85c427f9-c5f7-4b05-8598-a2bc02070e37 1 Other Other +85c4935c-78c2-4596-979f-8b3c83c5a813 1 Other Other +85c496ef-eca2-4448-88d0-b5bc28eb5fd2 1 Other Other +85c4a3a4-a2c5-47b0-9af5-d2b089fe281e 1 Other Other +85c50fd9-f2f2-436c-bdc9-177f92e6c1aa 1 Other Other +85c53a88-ff7f-41ab-9a7f-2aacb5517dc4 1 Other Other +85c5666b-f457-4bab-8874-70d89f81cc31 1 Other Other +85c584cb-9996-4fee-a144-ee70acc1519a 1 Other Other +85c60781-55b2-4d49-a5dd-dc9b623a3cd8 1 Other Other +85c6137b-d4f1-4f47-882f-e43d05b60162 1 Other Other +85c63794-8d6e-4533-99f3-227afade7f39 1 James Other +85c64449-ff25-46a5-b736-e229642b9b15 1 Other Other +85c6b059-7b0c-4b48-9f84-a7049ed3bf60 1 Other Other +85c6c091-777d-4d66-9a84-d920ced5e9e2 1 Other Other +85c785d9-a4d8-4317-bda8-43994c925f6b 1 Other Other +85c7ba66-a6d0-406c-9e08-f3c76ca0c292 1 Other Other +85c7d4b2-49fa-41a8-96d3-e1874179a42b 1 Other Other +85c7ed68-d462-46a0-836d-8ea4d6a2e4ca 1 Other Other +85c83df9-5b39-4314-93ea-9d44bf96a6ba 1 Other Other +85c85895-629b-451b-bb78-24a525418f64 1 Other Other +85c89176-b497-42cb-ac55-a12a55a01629 1 Other Other +85c8ba48-a62a-42e7-a271-0d5f3ce59b43 1 Other Other +85c8c6fa-9994-452e-9de9-3ba42d24fb3b 1 Other Other +85c93253-7db2-424f-8b1b-5f5cc1fef9ea 1 Other Other +85c93bb0-a068-40ea-af57-621592aaffb6 1 Other Other +85c97379-381f-4680-9b62-c817187e96f7 1 Other Other +85c97a8c-397a-4754-875e-5b842e27d233 1 Other Other +85c99945-e6a4-4450-8047-6cd31eb8dacd 1 Other Other +85c9efc5-8cf6-40bf-afc5-e35bbf1bc5a0 1 Other Other +85ca172e-4dd8-4e5a-9092-fa24d510bc46 1 Other Other +85ca9bc4-5d3e-4c04-9633-289c24634c3d 1 Other Other +85caadc2-0b64-4ae0-8fe6-2d3a0b1b923b 1 Other Other +85cabe49-9df8-4535-81ae-2453252b39db 1 Other Other +85cb0af0-f90d-47bb-a3a8-1f536d9b5482 1 Other Other +85cb208a-d98f-4152-8c2a-c0ab195d6de3 1 Other Other +85cb6898-9bbf-4360-940c-398da4a9533e 1 Other Other +85cb98d1-2eaf-43d0-bf80-775358468894 1 \N Other +85cc4c7b-2f14-40c8-8d2d-ec832a971779 1 Other Other +85cc63cf-ca07-477a-9e5a-01de10067929 1 Other Other +85cc7da8-3fc8-4fdf-86ca-8dfcbd7e0b62 1 Other Other +85cc8289-6df1-4602-9a59-ea30558a93a7 1 Other Other +85ccac3c-03fc-404a-b41c-7390febc4773 1 Other Other +85ccc9e4-ee33-4842-9bb8-285034b66eff 1 Other Other +85ccff54-7543-4d1f-b0d6-436fe249b535 1 Other Other +85cd08f4-aaf8-41b7-83cf-da584092b5fd 1 Other Other +85cd5021-d8cc-4d0b-bb65-a05de6958912 1 Other Other +85cd8f93-f9cb-47e3-919b-e57b43b8521f 1 Other Other +85cd9d44-18bb-4f47-a1ee-1044c0bf7b80 1 Other Other +85cde839-ae3e-4e6c-ac80-abc5cabdcc8e 1 \N Other +85cdedc6-ba41-4397-82dd-52c009eab78b 1 Other Other +85ce1bdd-43f5-47a8-803a-8e6d168e6a56 1 Other Other +85ce4b10-d8fc-4b14-80e6-5024b437651a 1 Other Other +85ce728e-d286-421f-ac06-fe171cd084fe 1 Other Other +85cecce7-77a2-438f-9d0e-a92d46f8b19b 1 Other Other +85ced106-0150-4129-90a8-ca4d109a4e6e 1 Other Other +85ceef35-5424-4801-930e-4d0bc0cb2171 1 Other Other +85cf0595-e063-4d3f-8d03-736ce2a46171 1 Other Other +85cf355e-64c8-4b22-8e9f-196b60724d90 1 Other Other +85cf4462-a043-47c8-8803-434b72865e25 1 Other Other +85cf7305-199b-4773-8e4c-555e6f97fd08 1 Other Other +85cf94b4-0451-480e-ae0e-f8d3a1f71031 1 Other Other +85cfac48-1b48-44f7-8c3b-7f0e93cc70ff 1 \N Other +85cfb366-1d82-4352-9b83-c52b831cfe57 1 Other Other +85cfecfa-0060-4bf8-bea4-79ac1249b15b 1 Other Other +85cfed02-6f6a-44cb-b800-be596e1c41dc 1 Other Other +85d00367-13ce-4714-9474-bb2c60960765 1 Other Other +85d00c08-c256-4a40-b374-9b29455fcde8 1 Other Other +85d01edf-06c7-4fd8-8e54-0c2cfa352b05 1 Other Other +85d03e46-757f-4e53-9d3f-330ab3c4d4d8 1 Other Other +85d06550-a198-4fbc-899d-e0391f28a0f1 1 \N Other +85d083a9-18cf-4159-ae73-a9e26ded4a1d 1 \N Other +85d0e858-5151-4f02-932b-6ecbe685541c 1 Other Other +85d10b7a-a341-42d1-92ab-076aff8804fc 1 Other Other +85d13603-6be9-4e2c-bec4-eea422a50787 1 Other Other +85d15004-0a69-40ff-8270-60fd9ddeb9ff 1 Other Other +85d17bbf-5f50-4364-8799-a11bd69b2035 1 Other Other +85d19333-3169-458f-ab3b-084287a5d846 1 Other Other +85d19492-f6a7-43f7-bdc8-15b5b09886ca 1 Other Other +85d1bc17-34a3-4a89-a3ea-5299646d5ae2 1 Other Other +85d1f8cf-ac32-4b41-aa95-a3249d00b0f1 1 Other Other +85d205bb-d20c-41d2-8032-439b4dc27b24 1 Other Other +85d27f30-8761-4801-aa04-7442c33d9e9b 1 Other Other +85d2ad85-e355-40e0-bd79-6210d7eff9b2 1 Other Other +85d2f60c-dd8f-4359-b8e0-58f0daeb3dba 1 Other Other +85d325b8-6a74-4ee6-b519-75dd721ea0bb 1 Other Other +85d3469c-d8e5-45c5-901b-140a8f5884e0 1 Other Other +85d35771-1758-403b-aff4-e2658cf877c1 1 Other Other +85d372bd-aed6-4196-92fd-84eaf75c58e8 1 Other Other +85d37dc1-a9fa-44b5-9b0a-e624ea6e83f0 1 Other Other +85d4627c-dc1d-457a-ac49-36787936067f 1 Other Other +85d4f10d-d5d7-44a0-bb06-55b928dd4192 1 \N Other +85d4fded-23af-457c-a911-13829105347d 1 Other Other +85d50225-3fb4-47c0-89b9-7524b2ffb8d6 1 Other Other +85d56ebe-0129-41c9-94cd-8a73a5e134e0 1 Other Other +85d589b4-a1de-4db8-aa85-a382b777818f 1 Other Other +85d589e6-0670-4229-b334-bbb31c14d0cf 1 Other Other +85d601df-fd20-48b4-bac4-c72be45f568d 1 Other Other +85d62635-7748-4e23-b3ad-828f1b51c80e 1 Other Other +85d68689-e887-4be8-b89f-566540a9bc38 1 Other Other +85d73e3b-0577-4ead-8b32-bb408bd11bff 1 Other Other +85d740ea-0721-4c60-ac0e-e8eb8d82ac10 1 Other Other +85d783a2-d9b9-404f-b9ba-ad8086cdadb4 1 Other Other +85d7934f-f337-4013-ab62-977165e7110b 1 Other Other +85d7a7d9-0d37-4d88-baa8-a087ddfcfbbb 1 Other Other +85d7bbcc-a047-4b35-b688-339ec38c2e21 1 Other Other +85d7ee65-f41e-4af1-8961-cf0ab0d33148 1 Other Other +85d871b1-1089-41c4-82a3-6b15876d034b 1 Other Other +85d89ea7-0302-4b87-b250-aff6503077e2 1 Other Other +85d8b553-58de-44bd-83c5-9b13fbf9bd52 1 Other Other +85d92b3e-6dd6-40c6-b536-d5dd449dc612 1 Other Other +85d93d88-aedd-42d9-ba8d-e3ce1a4bea0c 1 Other Other +85d98afe-b0e8-4445-bafd-5e3d300209fc 1 Other Other +85d9aa85-d267-4e31-88e2-ed614e5438ed 1 Other Other +85d9e276-4b9b-48ee-b673-e64dddbe4e3e 1 Other Other +85d9ea34-c551-4ec4-8e2b-7517f5f08baa 1 Other Other +85d9f944-2ca0-425a-a916-e8d8fca3e8e0 1 Other Other +85da2fa2-7bb9-42b1-bd9a-a1dca959336b 1 Other Other +85da5dec-20b0-457a-9daa-4379eb2c5664 1 Other Other +85da71f1-030c-45db-8096-7a11081ed170 1 Other Other +85da9b48-d2be-46b6-8c17-90b90b69f876 1 Other Other +85dab078-e96b-4848-b0ea-5c18e7c57a8a 1 Other Other +85dadd1d-1f98-4875-a5b1-4e11273e8d9b 1 Other Other +85dba7e7-25af-4c9d-bab0-01ce837ac036 1 Other Other +85dbd45b-6fba-44e0-a795-d12c5b6860ca 1 Other Other +85dc3f47-e4c3-4902-ba41-2cf52a3d1fae 1 Other Other +85dc753a-2b95-40bf-b8c5-c10b449f5c6c 1 Other Other +85dc86ea-b15f-4b4e-b08f-03cb50b350b7 1 Other Other +85dd622a-d552-4e66-bcc7-9e2ce86d237d 1 Other Other +85dd7a3f-6d4e-4188-937c-36265f63f489 1 Other Other +85dda31d-fb04-42f7-bb0e-2fb0558df0c8 1 Other Other +85ddf6fc-9e8f-4155-9dab-e239b06f48a0 1 Other Other +85de0ca9-881d-44aa-80e4-d12d419866de 1 Other Other +85de1c16-9272-4953-b4b5-7c5ed37f1930 1 Other Other +85de4b49-6365-44c2-9aba-e79997dab7fc 1 Other Other +85dea3bd-2e5f-4817-8e47-adade25ae8c3 1 Other Other +85deed6b-d523-4cbd-aaa7-c39147af6c1e 1 Other Other +85df0bfd-7656-456c-a13a-d05e6b222601 1 Other Other +85df1df1-2f2f-4cd9-a97a-8c29af3ffede 1 Other Other +85df3b28-4b95-46a0-9e48-ab9abd2952f2 1 Other Other +85df73c7-21fc-418a-bc90-12c42c0822aa 1 Other Other +85dfc7ce-b706-4199-b713-0ac0772a55f7 1 Other Other +85dfff6f-d3da-42dc-9f40-3857704bd83f 1 Other Other +85e024ff-9288-4e78-9162-e71f62fd4073 1 Other Other +85e056f2-a8cf-4039-994f-c9773a83d4ed 1 Other Other +85e0870f-80ff-4fea-83e7-e96307801058 1 Other Other +85e09936-38a0-4a26-a114-7c4926df627b 1 Other Other +85e0da7c-73e6-44b4-b2af-22d6f34cb521 1 Other Other +85e0ede2-c77b-4cf6-a456-c989e084c1f9 1 Other Other +85e0f86b-a9e0-4c11-936a-0402f3c27a1a 1 Other Other +85e14054-165f-4bc7-b391-a3a37e1425c8 1 Other Other +85e14654-c870-4ef3-8c71-a251ba19a7b1 1 Other Other +85e156e3-30cc-4452-b472-bb08ca8acbc9 1 James Other +85e1c7ac-4c76-4a06-b896-0d8c64206b04 1 Other Other +85e1d152-c538-4bb9-a98a-56f8fce96129 1 Other Other +85e20f76-ccf6-4310-8b88-5697e12f2a36 1 Other Other +85e23e44-b854-45bb-be29-330a864c2f75 1 Other Other +85e265b3-3962-4f9a-9cad-12747e39dd2f 1 \N Other +85e27b97-582d-416d-8a22-d9146024e334 1 Other Other +85e2bf7f-f63a-40ac-806e-893de46dfeef 1 Other Other +85e2cefa-a7c3-4b8f-b00d-1b23ba3842ee 1 Other Other +85e2cfb8-a3fc-4b1c-ae3c-62bd6b38e2e8 1 \N Other +85e2dd89-60c2-4a05-9287-7aac1ccb6e5e 1 Other Other +85e31447-b925-464b-bb98-f02d29992cf1 1 Other Other +85e34a1e-d912-4a93-a88b-ef02dffac344 1 Other Other +85e356c0-da03-4c07-a48a-660eec9dc3a6 1 Other Other +85e3d0dc-3b8c-4826-83ed-f4b2c165e7ef 1 Other Other +85e401f0-0445-45e7-bf8d-1243189aaa31 1 Other Other +85e45421-5707-46dc-9b2f-d24680562f41 1 Other Other +85e47922-168f-4562-837d-df07868e5231 1 Other Other +85e4cfff-be4c-48de-9148-22871bb79efe 1 Other Other +85e4eead-d0c9-4e5a-8260-7b2951a33a9b 1 Other Other +85e4fb52-0216-4a94-ac1e-1dc94cd22c9d 1 Other Other +85e4fd0a-0e7d-452b-87f7-511b79fef903 1 Other Other +85e50755-ef95-4d78-b973-68b1f0361f32 1 Other Other +85e510f6-c959-4020-bcd0-6495f469c413 1 Other Other +85e51c5c-ce7c-4ac8-980f-c12e4df2821d 1 Other Other +85e54ce7-dc08-4904-8e84-126dec35d5d6 1 Other Other +85e551ce-cfbf-43b4-ac3e-031058659822 1 Other Other +85e57717-d756-4143-b627-77325a4e4eda 1 Other Other +85e5b850-ac2c-4993-887c-93de8a1460fb 1 Other Other +85e5d662-ae50-44a8-b104-79270812f088 1 Other Other +85e5f5f1-c15c-4c7a-a5a2-c6af70a3be9d 1 Other Other +85e67507-26aa-438d-938e-4c0095b48364 1 Other Other +85e68271-2101-499b-b418-5322687415dc 1 Other Other +85e6cb9e-fc34-4b75-a3b8-0064adeeb392 1 Other Other +85e720a0-16b4-40c9-860e-38b481703640 1 Other Other +85e75760-e682-457d-9342-3c9ca577fef3 1 Other Other +85e77c58-782a-48f7-bca0-ddb35080d46a 1 Other Other +85e7baff-76c8-4c90-ae15-80127e8da669 1 Other Other +85e7fcf3-b7d5-4350-9928-78f160240264 1 Other Other +85e81ac5-5143-4000-8210-5294feb6d312 1 James Other +85e83737-50bd-4e38-9ce0-c917408a71b3 1 Other Other +85e852e3-a221-4b7e-bca0-3e0deab2a161 1 Other Other +85e88c1f-d900-45f3-a2ff-f3ac8d1bcdf1 1 Other Other +85e91775-4b73-4460-925c-e83655dec47c 1 Other Other +85e97e4e-7e4c-4a02-9066-d187efcb1d7e 1 Other Other +85e9bb96-464f-42ad-acf6-1982c0919d05 1 Other Other +85e9d825-4091-4302-b7a5-04e2ed1d261b 1 Other Other +85ea0c69-5bbb-4492-b2b5-454920795d1a 1 Other Other +85ead2e0-780a-411d-bd3e-1e578280b623 1 Other Other +85ead49a-ad28-4013-9e9b-1156cee34a6e 1 Other Other +85eafa6a-95ff-49d7-8171-015335a8534a 1 Other Other +85eb12a7-e9b1-4f1f-b02c-814c55bd6684 1 Other Other +85eb4c5b-fd2b-4c66-8f9f-88b43e42cc4e 1 Other Other +85ec0396-596d-4246-9906-eed356f714a9 1 Other Other +85ec50c9-8d27-4992-ab84-bd57c608cf56 1 Other Other +85ec5533-7234-4378-83e8-3f3e401fbffc 1 Other Other +85eca485-c745-47fb-ab72-b683f1e45d04 1 James Other +85ecab9b-f530-4ecf-8669-ea641c5553b6 1 Other Other +85ecae2e-8dfa-43e8-a74b-a1e0c39be917 1 Other Other +85ecb43c-3b58-4a8c-8bf2-04a0894fc786 1 Other Other +85ece524-4ca5-4821-be72-ef6f3a1e3234 1 Other Other +85ed9681-abce-4463-8ca5-c51ac6ea6ae5 1 Other Other +85edf65a-a508-4377-ae2f-c5ab6b5d2039 1 Other Other +85ee193b-4376-4472-8d16-f8052ee8a8a8 1 \N Other +85ee2424-00ab-4b68-83ec-1dbcb4416f2b 1 Other Other +85ee469a-c4d9-491b-afe2-481d506e96e2 1 Other Other +85ee63c1-b6af-49e9-8bef-60819dcadf33 1 Other Other +85eeca62-468c-44a2-a7fb-5f4971c3f204 1 Other Other +85ef2f38-8180-440d-911f-a6bf798b8716 1 Other Other +85ef3e3f-9dc7-4230-bd76-1a2790e5cda3 1 Other Other +85ef6ca2-91d1-4976-8d15-cf61493f0eda 1 Other Other +85ef7a57-b460-4f69-a8a4-d466828c2e42 1 Other Other +85efa7f3-99b8-4a38-a124-9b2a17b3d031 1 Other Other +85efaf43-ad72-486c-9e0b-8900b9586cea 1 Other Other +85efda6f-67ca-4c2e-947a-9457c02fa500 1 Other Other +85f05fd4-e69f-4020-9be8-62e73761e19c 1 Other Other +85f069c8-9f5f-4399-8736-75e45207e026 1 Other Other +85f0750c-b57b-42e7-90a5-e1a015d4f4b5 1 Other Other +85f07880-3942-4dc3-800c-006a945cf2d1 1 Other Other +85f0c9d6-6f26-492d-ae87-973d42bc189a 1 Other Other +85f11d03-952a-492d-a22d-0996cef9318e 1 Other Other +85f1955e-308f-4cd2-b92e-0a294518e2ab 1 Other Other +85f1a4b7-e49e-4d75-806b-e83fb8a3c67a 1 Other Other +85f1d259-21b1-4162-b765-54c25f2321e9 1 Other Other +85f1d89c-12fb-40c2-861a-e691974e0b13 1 Other Other +85f21342-1584-438e-b488-931fe8e5d4ac 1 Other Other +85f232a4-a205-436e-9096-37e209370e93 1 Other Other +85f24762-23f8-48c6-b3df-751d50056339 1 Other Other +85f256d1-4cf9-40f2-8190-77da0207fc40 1 Other Other +85f27d17-ea60-4a62-8506-c07695f3572f 1 Other Other +85f2ac3c-cc93-4f82-a656-690deff8871a 1 Other Other +85f336b6-65b6-41fc-a0d4-e0f3521c80b0 1 Other Other +85f3f2bb-2f3a-41ea-8d3a-4eb4a195962d 1 Other Other +85f4f721-1651-4500-ba4b-f992a42a95e0 1 Other Other +85f50c11-9402-49ab-ad4c-6a812cfc755e 1 Other Other +85f52082-f73f-479c-a391-adf651ff9c0c 1 Other Other +85f530ac-0dd0-43f0-9bb0-29fcc28a28a6 1 Other Other +85f53b6f-a49f-462c-99b2-6646fb9a523f 1 Other Other +85f54c75-3c8b-4dd4-89a1-0e58e74c49f1 1 Other Other +85f5be28-4871-4a87-875a-6f1f340101a2 1 Other Other +85f64d94-c4cc-4f4d-b708-3a88bb881b12 1 Other Other +85f69ca6-e727-4104-8c21-810cd117efdf 1 Other Other +85f6c1dc-02c9-4f9f-99e2-d004a13be389 1 Other Other +85f6d2e1-5031-4320-abd3-55e00bdff155 1 Other Other +85f6fd7a-5951-4ae6-8dba-2d0c2a774d2d 1 Other Other +85f73a84-c0c9-4b92-b1e9-a6dd3d3ba45d 1 Other Other +85f76c82-5402-42ef-901f-587bf7cedc2e 1 Other Other +85f77f15-2ce0-48b0-a63b-2836d000c05a 1 Other Other +85f7a5e2-eab3-4e45-8eb3-3325c67f1f27 1 Other Other +85f7b2b3-1fd2-4556-8084-0750b3b2957f 1 Other Other +85f7df92-60a9-43f9-9c4b-65f0b13600d0 1 Other Other +85f802ce-f32d-43f9-b240-d50a8c7eb763 1 Other Other +85f82960-f802-4a0d-a81e-e2f53efcbbfa 1 Other Other +85f86ec8-8b22-4c50-818f-a6a10300137f 1 Other Other +85f877f5-0d6e-49b8-b6df-2f93ae484175 1 Other Other +85f898c3-a040-4483-8224-9e51db2fd6d1 1 Other Other +85f89c32-ad80-4301-83e3-8292017b4ac8 1 Other Other +85f8c3f0-6b76-4465-8829-685bf7e2784b 1 Other Other +85f8d253-c00a-4adc-ae5b-e7c44317d17a 1 Other Other +85f8f795-eb39-43ef-a893-adaa17ad7654 1 Other Other +85f90710-84a7-4df2-9cee-5b0db80df4bc 1 Other Other +85f93386-f0fa-4006-a4b8-96b14bd8110e 1 Other Other +85f951d8-6a92-4a9b-b3e5-afab2fc81b3d 1 Other Other +85f9c536-822f-48cf-b986-4286c3f7a481 1 Other Other +85f9e828-a18a-44dc-8e86-7722044963d1 1 Other Other +85fa36ba-6443-44e9-b65a-03acc23275f3 1 Other Other +85fa36c3-a278-4c4d-bdfa-b30f3811ff5b 1 Other Other +85fa39b9-3c25-4816-90c0-3cd594bf0f6b 1 Other Other +85fa3bb8-1c2d-4733-a979-497f9a5a1e3e 1 Other Other +85fa50e7-74bb-4d97-9a2b-b691a3a31604 1 Other Other +85fa9f94-5ef9-471f-85e5-bf4789a6a76a 1 Other Other +85fb5b17-a6ec-49cb-a5d8-0d6d9a971427 1 Other Other +85fb5b20-e8cf-48ef-82db-7ce1aad32e46 1 Other Other +85fb68da-fa93-4079-955a-a34d6273ad33 1 Other Other +85fb9efa-f3df-46e2-8d35-78a5edd1b918 1 Other Other +85fbc053-abc9-48e8-83ba-4ea557228403 1 Other Other +85fbc249-27fd-42e0-82e4-86cceca31faf 1 Other Other +85fbc78c-68d2-4ced-9b56-3aacab074ee6 1 Other Other +85fc19b5-bfae-4233-a329-5596b865b344 1 Other Other +85fc3dc1-6001-4229-858e-3f73a2c66d59 1 Other Other +85fc4629-2654-47f7-844e-1380681fdb74 1 Other Other +85fc614c-b47d-41e5-8831-17f833288729 1 Other Other +85fcd407-2857-4acd-8fdd-759159c79fe4 1 Other Other +85fce44b-dac2-45c1-bde5-8964aad34186 1 Other Other +85fd5ba5-dddf-4834-97b4-48afeff2e2a5 1 Other Other +85fd6bc6-1428-407c-8abe-b471aae7da88 1 Other Other +85fd6cca-8eac-4cb8-ab20-604aba27f966 1 Other Other +85fd7320-5fd5-422d-a1f2-c6de21a4819a 1 Other Other +85fd9c3c-a05d-4b95-864a-4d6252aaab40 1 Other Other +85fe50cd-da85-43a3-a33f-7829acfb4156 1 \N Other +85fe52b1-93e9-40dd-a588-9ac53e2c90ad 1 Other Other +85fe6949-1d68-48dd-803f-75731b397975 1 Other Other +85fea517-28ff-4fc0-b9eb-e7f32fb0d731 1 Other Other +85fef8f3-7ee9-4849-81ef-11cabf50f36e 1 Other Other +85fefc79-1a10-4fbd-a7cd-04eac481c303 1 Other Other +85ff16c2-33aa-45f9-b6b2-2850dca639bd 1 Other Other +85ff3f61-1d09-460b-a6ea-d2b22a783697 1 Other Other +85ff420f-c28a-4389-a088-b83c0054cf9a 1 Other Other +85ff676a-2833-4112-9c85-6214432d9672 1 Other Other +85ffa7ff-3e1f-4e46-9d25-890b143c104c 1 Other Other +8600bcf0-abd7-46b8-a9af-0d79044601e8 1 Other Other +8600d1b1-db28-439e-bd90-87bcfdc378dc 1 Other Other +8600dc8d-440d-4142-a298-1ce20545de5e 1 Other Other +860108e5-929f-4778-83ff-ba6aaa323f7a 1 Other Other +86010b1f-8608-40b4-a99b-07a8d1b84d81 1 Other Other +86011a78-11c6-4cbb-b853-99e4c3ce89cc 1 Other Other +86015d36-94e1-401d-8377-d23501a22041 1 \N Other +86018162-421d-4658-8577-15525132c8d9 1 Other Other +860182da-8487-463a-a5d4-2a6c8ae4b3e3 1 Other Other +860188f6-5705-4865-b377-4ec38953cc91 1 Other Other +8601dd44-8046-4fc9-9c1d-9071670fecc4 1 Other Other +86021025-4a1c-4a67-9789-8ec57790acea 1 Other Other +86022b51-d4a9-4740-8c28-31b86d3de2c5 1 Other Other +8602348a-c85b-4775-9631-ad12d57b402a 1 Other Other +8602a3a8-6897-484f-b3d3-b08885892ceb 1 Other Other +8603603a-df1c-42ee-90b1-555ccbb9f1a1 1 Other Other +8603da35-2fc1-4592-a8d2-f636b656bcbf 1 Other Other +8603de4c-84dc-4819-8cbb-d5bee4284c2f 1 Other Other +8603e76c-4afb-46ac-b8ee-8f245c12740a 1 Other Other +8604278a-8366-4c43-9d45-c2fd79e7834b 1 Other Other +86042d32-ba44-4bfd-bdbb-5bab28dd608f 1 Other Other +8604347a-b881-481d-99de-a5487b060012 1 Other Other +86043c48-dab4-4a7e-b46b-f74055f7cf35 1 Other Other +86050f80-1bb5-4e02-aad1-c6da7983c2ff 1 Other Other +86051ebc-7e2f-44f3-8a07-ae81ddf7f620 1 James Other +86053c7e-2988-4623-902c-9446a295e63b 1 Other Other +860589e4-9737-433c-ac3d-6bccf419426f 1 Other Other +8605ee05-de98-4873-884a-2f0d392ab18b 1 Other Other +860614cb-1196-4277-906c-b00189fad1c8 1 Other Other +8606ea83-eed8-4429-9fdb-c65e3df2c4ec 1 Other Other +8606f1d5-1432-472a-a987-8bce0e20f8d1 1 Other Other +86072734-38eb-48b1-a059-6cb45da5b62e 1 Other Other +86076a1e-1098-4e03-9076-58042d743052 1 \N Other +8607727f-b285-4fdd-85d9-692b4c305205 1 Other Other +8607842b-0d7d-4db2-b7e6-be039ab4fbb3 1 Other Other +860786c5-ab04-43f7-9a53-89026b548c20 1 Other Other +8607a7bd-a14e-41cb-a288-2a7fc01c27a6 1 Other Other +8607ad0f-d603-4811-9934-b08211fbabf5 1 Other Other +8607b9d7-c9e1-4566-b407-6722b5438f91 1 Other Other +8607dd81-e294-4fd9-9073-71c7e8a86324 1 Other Other +860823bd-243f-4078-beec-ff09d6271bc6 1 Other Other +86082478-8050-451c-aeb7-f0c04500a06a 1 Other Other +86084e16-fcad-44fa-9e43-3caeeec76913 1 Other Other +8608ab7c-8075-421d-8719-2cd808052d62 1 Other Other +8608eb8f-e56f-46ca-86df-91aa3f502c6b 1 Other Other +8608fa16-0f5b-4a21-bc13-b592816b4651 1 Other Other +8608fa85-e951-47b3-8ac1-ffd625e64377 1 Other Other +8608fb84-faa9-4312-99eb-f4b27f70f5cc 1 Other Other +8609c230-8ab4-4dc3-a5dc-5aeeacd4c6e9 1 Other Other +8609c40e-6a1d-4e5b-ba01-7d3410e4f518 1 Other Other +8609d9eb-02a6-4476-be84-4cc1766fdf33 1 Other Other +8609edd3-9337-46aa-8d8b-9017e8b075ee 1 Other Other +8609effc-b6ba-4b91-aa2c-d9857e754a6d 1 Other Other +8609f484-4c00-42b9-83a4-ba28c509724e 1 Other Other +860a92de-246b-432d-b07f-a69cb92ab06c 1 Other Other +860a949c-b300-4ee3-acec-fe5023a2a169 1 James Other +860adfbf-e8f7-440e-b662-dbfcc6d8bea7 1 Other Other +860afa8f-7bc8-4f1d-9ca0-e696037d42a2 1 Other Other +860b45e3-ab0c-45f8-bf8d-54d6515ec48e 1 Other Other +860b52aa-5fb7-4135-a1d4-5993cf7dde2a 1 Other Other +860b70a6-7d54-4a77-aab0-8547445cac4f 1 Other Other +860b834d-dd00-41c0-97ce-b09af31c0d52 1 Other Other +860b8801-9fe7-49cc-80ee-c827ebb4df41 1 \N Other +860c1a07-0659-4e02-9732-d0058d02d3aa 1 Other Other +860c1e1d-85e4-4f29-aac8-9f84b3f64a6e 1 Other Other +860c4b8e-4386-4c0b-b17f-50d0a4c5f514 1 Other Other +860cc678-2ca4-48e6-aee8-b3cc7a0ca24b 1 Other Other +860ce45e-6034-4183-9416-274bfa961bd8 1 Other Other +860d2770-162b-43c9-87b5-35d25f34fc51 1 Other Other +860d9055-688a-4cb0-93e8-c22c339a5d67 1 Other Other +860dfb3e-4913-49ac-acda-eb30f277d4de 1 Other Other +860e0963-ecda-4e16-9fc8-2c19456058d1 1 Other Other +860e22b1-a66e-4fc0-bf45-cd12796c6f9f 1 Other Other +860e3bc5-17a2-4a27-8c97-5a015e124de7 1 Other Other +860e4d9c-1c1c-488f-bfc2-42e9f514bda0 1 Other Other +860e739a-c3fb-46e6-ade5-16d6f3b03ec7 1 Other Other +860e7b74-8853-4706-8988-f7eb3530896b 1 Other Other +860e81dc-75b3-4266-9aa6-f04f498f679d 1 Other Other +860ec8f6-2567-4e91-a807-9b7355510349 1 Other Other +860f0f22-8259-4d75-b3f5-636e2abed73a 1 Other Other +860f8215-a827-485f-99ad-57ea2709aef2 1 Other Other +860f9f1b-2952-487b-a317-465bedaf17fc 1 Other Other +860fbea5-f0e0-41b4-91a9-4d825679d267 1 Other Other +860fbfbe-b655-4d1c-a112-985f17e69abf 1 Other Other +860fc0cb-2d0b-4fd4-ba78-51d825ce53e6 1 Other Other +860fc2a3-2e78-4dc5-97bd-70ced2eef5e4 1 Other Other +861026cc-1353-4be4-a9ad-2a224f250afb 1 Other Other +86104a6f-fb3d-42cb-a5d1-147948378840 1 Other Other +86105c44-907c-448f-a0e1-55ee8b1c780c 1 Other Other +86107831-fe1d-461f-9504-46f147fd9375 1 Other Other +8610cf57-0662-4b72-9120-bdb589b4a6fa 1 Other Other +8610fbb9-875c-4e99-8f83-0b09fc82454d 1 Other Other +861116cc-b57e-4faa-a3e0-81396343f67c 1 Other Other +86112b56-396d-4de9-a02c-9e07363e95e9 1 Other Other +8611377e-95fe-4051-afdd-24b1b668261c 1 \N Other +861166a9-bcc2-4f86-be4b-cadc10ef6585 1 Other Other +86118ce7-42da-42ed-9bd1-e0016689b3e7 1 Other Other +861298c4-2ab6-40d6-95c4-12bdaa5fe3bc 1 Other Other +86129b3d-1fc1-40ef-b310-e9a4d8cfe2c4 1 Other Other +8612d86f-f858-449a-a822-d244be97b048 1 Other Other +8612fec3-7ad5-4b1c-ae64-b3d1e0884dfb 1 Other Other +861354ec-2530-41d2-a650-1ecd5d857583 1 Other Other +8613d60c-2fc7-4847-bb7e-9ae5bbd63148 1 Other Other +861486d7-8480-4aaa-9cb7-edb5ba04d42c 1 Other Other +86150771-035f-46da-b12b-e844ad1b03cb 1 Other Other +861545e5-4b65-4dd9-ad89-47b247d38705 1 Other Other +86156dcd-0f76-4aa7-a841-0c621337605a 1 Other Other +86165d6a-d968-4816-91d5-20d87020e462 1 Other Other +8616816f-a7de-4d7c-ad32-4cf595f3902a 1 Other Other +86169528-4f11-4fa4-971a-219b88612e6a 1 Other Other +86169538-92f8-48f5-865b-b886cc9299f6 1 Other Other +8616c973-719b-405a-ab10-dde16b21926d 1 \N Other +8616ed26-2ab4-41b9-91a2-33b79cae518c 1 Other Other +8616f1de-7164-4120-afe8-9af07d527fda 1 Other Other +86175020-048d-475d-8079-5da11d62b35a 1 Other Other +861760f0-a065-4b26-8fd8-f8efc906450d 1 Other Other +86176b5a-afe6-4a50-b87a-c8ac06859855 1 Other Other +8617740f-ad63-456d-b608-816223f56e25 1 Other Other +86177d53-9b8a-4042-829b-31ed3fda9034 1 Other Other +86178161-b1d6-42dd-8fcf-a9249843d006 1 Other Other +8617da1f-0972-41d8-a224-5284f7694bbd 1 Other Other +8617e5a1-6633-4e52-a291-54b4ff639c35 1 Other Other +8618173d-f216-42b2-a67d-91fbbdd154f1 1 Other Other +861859bb-a14f-45d2-a2ec-8e90a30c92c6 1 Other Other +861862ff-c7fd-4c7b-abd0-460cbf175452 1 Other Other +8618ca5c-7ddb-483f-987f-dfcf0aed7105 1 Other Other +8618d539-ec5c-431b-aa43-52235efa1fc2 1 Other Other +8618da4c-4ed3-4906-a0cf-b2dea7ee24d6 1 Other Other +8618f92b-b387-48c4-a200-ac53c9f7b797 1 Other Other +86192ad0-feb8-4ff1-809f-33cb7d46dfb6 1 Other Other +86192b9d-c1fc-4a19-aa0d-d6b5308da3f8 1 Other Other +86193734-1709-4f05-8553-e7594a0f1404 1 Other Other +86193f14-9b1c-4dc4-96f5-53aacd56a692 1 \N Other +8619c327-b046-448d-89a4-2783714fbd1f 1 Other Other +8619d135-ceed-4ff7-9243-fc10676dadb6 1 Other Other +8619de9a-ec56-4063-b830-5116b2e9725a 1 Other Other +8619fe91-5c0a-4e79-8f7f-537e53392376 1 Other Other +861a1e63-20d6-452c-9336-027d918bc53b 1 Other Other +861a83f7-822c-4a5b-b943-2c69f26f410f 1 Other Other +861aebae-18f1-47f1-8888-95a629d656bc 1 Other Other +861aff2a-108a-4ee3-8275-2e6b3ba605b1 1 \N Other +861b0e92-ea9a-498d-89de-fa9edf68f624 1 Other Other +861b15f8-32f6-460d-bd57-053ea14db164 1 \N Other +861b2dd8-1866-4baa-902a-992e3311c8d9 1 Other Other +861b72e8-4967-44da-a60b-5c28ac9af556 1 Other Other +861ba070-a42c-4e3e-b7f3-0133df83e5fc 1 \N Other +861bc94a-1404-4676-9440-948074959cbd 1 Other Other +861bd506-e54c-4ee1-a8fb-9e40ab6137c3 1 Other Other +861bfe13-c2bd-4c12-944c-8051d3248ac4 1 Other Other +861c10da-9509-4563-9f02-5fac5ef8dd83 1 Other Other +861c782d-d7c6-4ee0-8ce2-2e2538a02268 1 Other Other +861c8f19-bb73-4a49-84eb-d40dfa5dffee 1 Other Other +861cb87c-c076-4d12-a6b1-78a029eafcf6 1 Other Other +861cbad4-7b77-4741-b71f-90a46af327e8 1 Other Other +861cc28d-59b7-4be0-ada8-2512929d2e3a 1 Other Other +861cd0b3-cd11-4d62-8e2f-3ade22c94c6f 1 James Other +861cd735-b667-4227-89f3-f2abf3d0a13e 1 Other Other +861d1131-0c3a-402d-9e62-9c0dc20454fe 1 Other Other +861d658e-be1f-41ea-a09d-555774ca98c1 1 Other Other +861da909-fd92-4418-b437-92c365d1477f 1 Other Other +861e136c-d320-42b8-96dc-6dbf05912ab2 1 Other Other +861e1bde-e167-475f-9876-e6537307453e 1 Other Other +861e566d-f5de-4a2e-900f-5daaa8fad765 1 Other Other +861ed2c6-f456-4031-a9b7-b006593f9446 1 Other Other +861f5d2d-6bf6-4a3f-b071-6e3c424ddaff 1 Other Other +861fa033-f418-4ad7-bd67-1affa023ac7f 1 Other Other +861fe868-aef7-4606-9054-34611369eb5d 1 Other Other +8620338f-f661-4a0b-af7a-bcc6654a843f 1 Other Other +8620380f-0f55-40f8-8ea3-93fcc50a0f04 1 Other Other +86203ed4-dd5b-4999-855b-4172706aebe5 1 Other Other +862073c1-1c41-4a41-91f4-ea1451e83d28 1 Other Other +8620b595-b91b-4f8e-b3bf-3c13599f2029 1 Other Other +8620d43a-8db6-47ef-8a9d-56d40be20985 1 Other Other +8620f356-0090-41b2-b890-b4b7d0214103 1 Other Other +86210785-d7e8-450b-aa78-77527a199ae7 1 Other Other +86212355-9d85-4a93-98ef-8064596a3f0b 1 Other Other +86214a89-dd33-4acb-b632-84b5ba7420b0 1 Other Other +8621db24-6cd4-4525-850a-2876c277e13b 1 Other Other +86224dbd-4938-4c29-b6e9-a4cc2c76149a 1 Other Other +86226c68-632a-4f44-a373-9fb079a419a9 1 Other Other +86228188-85d9-42f0-97df-39db05a7e4c1 1 Other Other +8622a02f-3c04-4fe0-a857-468f57a8ae4f 1 Other Other +8622adb8-b764-4d02-8fba-e32467a30cf9 1 Other Other +8622b6d0-5f32-47ab-a26d-0671e8166ebc 1 Other Other +8622d30e-b498-4968-bf3f-f92e1386d643 1 Other Other +8622e741-0635-478b-b45b-2355dfff97d4 1 \N Other +86231841-f72d-48d5-a07e-60844b4c8c93 1 Other Other +86234af0-ac47-441b-b7f5-3f3da2b749f7 1 Other Other +8623dc53-8063-4943-acc3-eef547f35fe6 1 Other Other +8624262d-8d99-4af8-a8c1-6d991c40de90 1 Other Other +862475f9-d23b-42b0-8eb5-a9b0518f0ee7 1 Other Other +86249a04-5cdc-4f24-a6cd-05c5f3c1b3f8 1 Other Other +8624adab-0182-4166-9af1-b52cfc43d6f8 1 Other Other +862519f2-ed15-4d8c-aee5-5b325a5312e9 1 Other Other +8625b4c1-164b-4c83-bd4d-b3a703ef62b7 1 Other Other +86261add-5bde-4e3b-8a1b-740e4e7b32c0 1 \N Other +86267795-d655-47ee-a22c-8e270399968d 1 Other Other +86267b31-ccd6-43c5-8c2a-6c1d2a5de8f3 1 Other Other +86268d76-379f-4359-9e82-76284f935336 1 Other Other +8626da79-6982-41df-84a8-b8624f09a4f7 1 Other Other +8627a691-0dff-4892-822b-dd99404fe306 1 Other Other +86280d0d-f6b0-4bb7-988d-e453b0f5041e 1 Other Other +86283cd1-f5f4-408f-a9c7-d40b9d37ccac 1 Other Other +8628cadb-ddfa-407d-9f58-b24ae85e5ece 1 Other Other +8628df2d-f58c-4f5b-9796-ff7ac347c419 1 Other Other +86290cd4-ee78-472b-8191-6d4d4318c410 1 Other Other +862935e4-fec4-4a95-870b-ded8675a7c8f 1 Other Other +862936ce-27fe-43e5-883b-85727ed22d2d 1 Other Other +8629b66a-aa46-4a10-8387-f75d65e50d3b 1 Other Other +8629de0b-f8f4-43a7-9872-38c695657ca1 1 Other Other +8629e919-4c56-4742-b223-49b33390dbea 1 Other Other +862a44b8-4810-45e9-b20b-34dcfa58dcef 1 Other Other +862a4e93-1804-42d7-b2a4-d2bda53c3a2e 1 Other Other +862ad90c-46c2-43b9-a612-603f3c9ab22e 1 Other Other +862b47d4-5947-46ab-a2a2-d2f02bf0c8b6 1 Other Other +862b4a11-e7c0-4c62-a912-c3ea5fa9d6db 1 Other Other +862ba40f-0146-4ea7-95d3-4d981baa83a1 1 Other Other +862be377-21fb-4f62-857b-51cc583e8821 1 Other Other +862c374d-8863-4854-b02d-d6cfc6913db3 1 Other Other +862c3886-3879-45d2-b0ca-272f3c993dae 1 Other Other +862c5fb3-5647-45c7-aa5b-061724fba614 1 Other Other +862c680b-04a3-43e0-a4e7-5f3bbc26732c 1 Other Other +862cb895-2118-456d-b8cc-98bd39d4bbdb 1 Other Other +862cb963-4649-4679-8436-68334f51a7ab 1 Other Other +862d2fd9-71c9-43d2-bfc8-49d8c873a6a3 1 Other Other +862d60e4-12ab-41a2-96c4-b635988a6859 1 Other Other +862d68f2-0c01-4121-b78e-07fe874a78ae 1 Other Other +862d6ba8-0369-44db-8b91-a4631c3fbe50 1 Other Other +862d76b6-e4db-4723-b610-c135f83fb924 1 Other Other +862d93b4-5e7e-4ad0-8f5e-822ee8c59e3d 1 Other Other +862d9477-0898-471a-a61b-4ed2a05341fd 1 Other Other +862dbbe3-92c9-4e7e-9dfb-67519449abf4 1 Other Other +862f1158-7fd2-4450-99f0-3fead4102c53 1 Other Other +862f2738-f4c1-4561-a4f5-2a5c651cf3ae 1 Other Other +862f28c3-21d3-4035-bf9a-b712fb5eee6b 1 Other Other +862f3b50-fe0b-4985-a9ea-0c15079fd6f3 1 Other Other +862f3bde-2144-4d36-bb74-0e32ed98c78d 1 Other Other +862f40e7-2ae8-430d-a8eb-2c1fd1477e61 1 Other Other +862f7855-6706-4e19-bd8b-e80d7d87d5ab 1 Other Other +862f978a-412e-4053-8878-8f18b39e9d1f 1 Other Other +862fa84a-310f-4b89-8f1a-dc46021e4a5f 1 Other Other +862fbde4-3289-4975-9f9e-02e4d03ca69c 1 Other Other +862fe7d0-7e76-46de-9130-7b4644eb6dd0 1 \N Other +8630297f-bd87-442a-9796-8652dd87b103 1 Other Other +86309ec3-c138-4f7d-80d3-2d2ce2278251 1 Other Other +8630e811-2658-4ae1-8657-136e49b370e1 1 Other Other +8631062f-ce8b-4e84-bf0f-9532f268157f 1 Other Other +86316566-189d-4224-995c-45b66eff68e7 1 Other Other +8631f5eb-a07f-4184-a48a-dcfc309f5d18 1 Other Other +863205d9-9df6-47f1-8bea-2e3255d1e8e6 1 Other Other +863231a6-bb0b-4754-a82c-98c569029ed9 1 Other Other +86324b27-66a0-4e77-a482-5da1fac63a06 1 Other Other +86324b85-98f8-4343-83af-223fb27747e9 1 Other Other +8632a24e-6408-4a6e-943a-d09c3848101e 1 James Other +8632a78c-f506-49b4-a27b-26cb09cf045a 1 Other Other +86331168-32b6-408f-a2fd-3b93d651cbff 1 Other Other +8633209d-2228-4f02-b0e3-2cd7e862223f 1 Other Other +8633caf2-fc78-4089-889e-bd88873ba681 1 \N Other +8633d41e-d3dc-4416-b9a0-56ca9e2baea0 1 Other Other +86340b22-8061-43c0-a08e-dd6d7508dbfd 1 Other Other +8634159d-9e43-4d5a-a464-3d86eb9f7043 1 Other Other +863438fc-e12c-49da-971e-f27077821b1a 1 Other Other +86347261-c920-41f6-97ea-c89285b11900 1 Other Other +8634a07f-804a-44e3-ab4a-d599fa57682a 1 Other Other +8634d1eb-1912-4657-bba7-3c17c8df7e24 1 Other Other +8634dbe2-41d3-45d2-824a-6cfe1cc592df 1 Other Other +8634e14f-51bc-496d-9cac-367dc1bbd884 1 Other Other +863590f2-fa59-46ea-8164-d8f21a96a940 1 Other Other +8635b744-1639-11e8-a568-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +86361a1a-9eb8-4788-96bc-c6cdd930d930 1 Other Other +86362291-e6fe-485b-9b51-a1e8248acc81 1 Other Other +86364531-01d7-49a9-bb15-228c35580a3a 1 Other Other +86365ba1-a3fd-4187-9b30-7d48c30ca890 1 Other Other +86368311-af01-4f4f-8542-1016ca6d113c 1 Other Other +8636bb00-91dc-4eea-8ffd-26370b38f49a 1 Other Other +8636e0ee-b469-4a86-a336-61027d25116e 1 Other Other +86377318-a08b-4da4-9e89-3397f3f22879 1 Other Other +86378be3-6193-48e9-a133-14f9b9c98a4e 1 Other Other +8637984b-5570-47a9-b6bf-a97bb30913a5 1 Other Other +8637994b-66c9-484b-a222-55975c7c224b 1 Other Other +8637e73e-9e85-4541-bcd2-e56cf5bb175f 1 Other Other +86381b3c-90e8-4bf8-b12c-386f7f3b4983 1 Other Other +8638398c-3d7b-43d8-95ec-c8299dda4e9c 1 Other Other +86395318-9ec8-4a89-91db-178390c75e8f 1 Other Other +86396073-af85-4559-9077-d8298f546234 1 Other Other +8639737d-5dae-48d7-8cfd-aacef51ff98e 1 Other Other +8639a67b-4d36-40e5-a041-e42e337c1b3e 1 Other Other +8639b0db-bc0a-4fc2-ad5b-5e96e7292ca6 1 Other Other +8639cf72-fd70-423e-b107-f780af3c47b6 1 Other Other +863a0f0c-4a07-4a09-8fc1-1f5e31c2de34 1 Other Other +863a2394-64d6-434e-92ee-8e8aba1f910f 1 Other Other +863a2880-f11f-4541-9e6c-25188a011288 1 Other Other +863a2c57-a802-41a2-94a9-04c6f4a72bf9 1 Other Other +863a328e-e749-49d3-8481-c51d6830d020 1 Other Other +863a5626-9dad-40c7-b242-929e7c727c80 1 Other Other +863a62ca-c5ad-4b6a-b6e9-28d98166d6a3 1 Other Other +863a656d-b42d-4d53-b8b7-be4bd46638b1 1 Other Other +863a7ea5-de1c-4a74-8c6a-fc326add3abd 1 Other Other +863a83c4-417e-4381-a42f-e0c3183dff14 1 Other Other +863ad889-e9d4-401f-97c4-2626369b36d5 1 Other Other +863b141c-ac31-4917-94cf-ee487f2bb619 1 Other Other +863b3b41-8f29-4b8e-aa56-c5458a229b9a 1 Other Other +863b3c16-f949-4460-8cee-b1ea407757b8 1 Other Other +863bc16c-87eb-472e-bb55-4ccd7b2d2d41 1 Other Other +863bd8f1-6c6f-4ec2-8a8a-c5155d14d4f1 1 Other Other +863bdd7e-8f34-4ac9-a117-b957ef52bd27 1 Other Other +863bf101-949a-45bd-ae5b-c03813d94f12 1 Other Other +863bf6ec-3194-41fa-b125-422e8018a21f 1 Other Other +863c263f-3f65-480e-ab4c-7f2aa249692e 1 Other Other +863ca944-0662-4e40-b7ea-b8c9cf564374 1 Other Other +863cdd3f-2194-434a-b357-707f28ec7916 1 Other Other +863d3606-31be-4486-9f78-c004fdf4a0a7 1 Other Other +863d760c-65cd-459b-acde-e803641d4ba8 1 Other Other +863ddb8e-cc71-48ad-9631-636aa52a8437 1 Other Other +863df815-6ef2-4f46-814e-3974b3a70383 1 Other Other +863e11c0-e56a-4f9a-bd2e-7b21acb8a97c 1 Other Other +863e6771-cede-4736-9879-eca684dbe080 1 Other Other +863e7caa-6bdb-47ff-8661-9a24f26a3f07 1 Other Other +863efdce-bce5-4a1d-8ed3-1e143633e333 1 \N Other +863f328d-de2e-48e6-9c49-e355e62ef0b2 1 Other Other +863f9899-2352-499c-bebe-4011f39551f9 1 Other Other +863fe2b6-f186-4f1c-bf24-377b2693ae17 1 Other Other +863fec8b-b6c0-4b87-bd96-a31f75fd7550 1 Other Other +863ff7dd-7bab-4ac8-97c4-8cb9262f2f1c 1 Other Other +8640389d-f959-4177-a349-eb4ddec805d2 1 Other Other +86405dbd-ce87-499f-9749-62875b832fdc 1 Other Other +86407a5b-3bf2-4fea-add1-8acc16767765 1 Other Other +8640b1a5-7e06-483e-a5f5-e03876f8ac8a 1 Other Other +8640d0c4-5dfb-4af4-9928-fd55cd281bd0 1 Other Other +8640d6bf-b3ee-4fa7-8629-5b1de2824633 1 Other Other +86410405-ee17-4bca-94bd-50f5b072da2a 1 Other Other +86410734-a58a-48ef-af17-be10192eb273 1 Other Other +86410d8b-065b-4eb1-8657-77eade872c53 1 Other Other +86411db2-6f5f-415a-8593-0712fff42519 1 Other Other +86411e3d-cfe1-4e1c-aedb-0f4883f46e4c 1 Other Other +86417417-4310-482c-9e90-5c5b3e3480c4 1 Other Other +8641874b-c7a6-45b7-80c7-ad2e048f2d05 1 \N Other +8641bd40-fd6a-47b8-978b-cedc4eea4c5c 1 Other Other +8641d0c6-3bfd-4067-bc3c-2680811776d5 1 Other Other +8641e889-898a-4e47-a50e-f2aa5e6ba7f3 1 Other Other +864218ec-b0c4-4747-a133-3d5034afb18d 1 Other Other +86422ebb-3fff-456f-a367-ff6dbfa1f179 1 Other Other +86423dfd-c455-4087-84b7-4a3ac4b2a11e 1 Other Other +864280eb-0588-461d-9e85-876a87889484 1 Other Other +864300e2-603a-4ade-b72a-1f32f9908b1f 1 Other Other +86431ed2-bad4-4387-9f2f-6497f10e4f6b 1 Other Other +8643300b-9b22-4a04-9d7e-0b0cbc8a7fa4 1 Other Other +864339a9-1b92-4422-8ef7-20e9bbdde689 1 Other Other +86436e67-7732-4394-953c-d749599ff387 1 Other Other +8643ac28-1932-483e-9ee2-a4f8a96f9dc0 1 Other Other +86443b2f-03d8-4812-a0b3-af369b425ef8 1 James Other +86444751-82a4-4951-9359-25d46c6eb3f0 1 \N Other +86444a20-0052-4822-8c6d-eb8151eb4902 1 Other Other +86447df4-9399-49d4-a902-729c3a9cf4f4 1 Other Other +8644ee03-c77f-45ef-a51f-7542a345c1c0 1 Other Other +8645116c-34d4-42f0-b647-6fbaff474a8e 1 Other Other +86454190-21bf-438e-8850-c81f1140f9d1 1 Other Other +86455453-7d50-447a-9664-c3f3ba25755c 1 Other Other +864576b2-cd74-4ac0-bfaa-cd550fc1995a 1 Other Other +8645841c-2ef2-4e03-8b13-195cd9c8776b 1 Other Other +86458f0d-0308-43c2-a485-7ddc0c522308 1 Other Other +8645d8e8-68b8-4c6d-a55a-97ade25666e3 1 Other Other +86461416-74f8-400a-a85f-cfd0f080b1ee 1 Other Other +864620dc-0bb6-4f6e-be9b-dcb5c240b6ee 1 Other Other +86463a75-1159-4ce5-b103-a2dcb41e58f9 1 Other Other +8646c4d5-13d6-4a36-b094-aeb12673e814 1 Other Other +8646f8e1-803c-4865-bdaa-3ff5994dcb81 1 Other Other +864741d8-d608-4b10-9145-58ce0c49433e 1 Other Other +8647793a-ef04-48a4-9049-21f62f79047f 1 Other Other +864788b9-6a1b-4d2b-a9cb-b4672e72b606 1 Other Other +86478d10-7284-4ebf-ab92-e189d4434833 1 Other Other +8647fce2-9971-4647-9261-bfc0fa9e2ded 1 Other Other +864825a5-e05c-422d-b468-2f52c20109be 1 Other Other +864828bc-4ec9-4b50-ad7e-5a1a98531d35 1 Other Other +864843ef-8bf9-40b9-a211-83bd1f6353d3 1 Other Other +864845e2-985f-11e7-a058-fa163e8624cc 1 Other Other +86486c59-7ab7-4fa6-9db7-75b22d6632bb 1 Other Other +86489efb-bf11-4add-91b3-58d622b6f6fc 1 Other Other +86489ffb-6247-4c88-8f9c-ab2ddbe8e2b3 1 Other Other +8648e7b1-72e3-4d6c-b268-94c8821dccd7 1 Other Other +86490dcf-2d88-4b89-b2de-d34533cfcc64 1 Other Other +864942f2-6b6e-4f29-8c32-b11e8d749228 1 Other Other +8649d456-b973-480c-871a-c37ad349b7be 1 Other Other +8649e303-257e-44c5-b7ac-f5742ebbcacc 1 James Other +864a11e6-dc04-4840-8645-8290f359e009 1 Other Other +864a38ca-f344-4190-bcf5-6ec3365da11f 1 Other Other +864a759f-d71e-4ff1-9e41-fcb5357ffc6f 1 Other Other +864aa91e-4559-451d-9bf3-8b860e5eb308 1 Other Other +864afb96-8796-4914-85dd-ace5a55fa7b1 1 Other Other +864b3d35-2966-4170-b1ee-f74fedfc9d0c 1 Other Other +864be726-6d84-4be6-a065-f84639953009 1 \N Other +864be865-6376-4d51-8281-e25bf7fae4f8 1 Other Other +864c41a4-e020-48b2-91fd-7d92d7945cec 1 Other Other +864c4d82-b3a5-4726-a46b-aeebda63c41f 1 Other Other +864ccb24-3bf3-428f-b310-d163434efc06 1 Other Other +864dc6eb-74a1-4629-9568-c7c1f1d817e4 1 Other Other +864dff3d-9c01-4496-b271-309a9228684e 1 Other Other +864e4c49-a836-46bb-b7d2-f309311542a7 1 Other Other +864e5d1a-ed0b-4e01-aa21-a917c73cb6e4 1 Other Other +864e63fa-ee8e-486d-a444-8d51d2918bdc 1 Other Other +864ed6cb-9ca5-4310-878e-289c5050e245 1 James Other +864eeca3-a4e4-42c2-a366-05dedd11d55d 1 Other Other +864f3303-c0c1-45aa-a2e3-0b1989a74252 1 Other Other +864f4abe-6b4f-42d0-82ce-9a9e23f2d47d 1 Other Other +864f5028-93ef-4662-aa58-3e34861164f9 1 Other Other +864f5434-dd26-4835-a2d8-f5d8e3bbd6d8 1 Other Other +864f5b56-e903-48ff-8342-aec645b5b575 1 Other Other +864fafef-1c9c-455c-8ff2-aebf653acf28 1 Other Other +864fb9e4-6171-46b4-b980-74b82d256584 1 Other Other +864fbf5d-9246-4dfc-946a-57f6028b64d3 1 Other Other +86500046-ea2f-415f-9af1-a02558fe55fb 1 Other Other +865025a6-3431-4f82-8ccf-6c179f9110bc 1 Other Other +86504df1-8f05-4d4e-b6fe-7ed2fb142624 1 Other Other +865069fe-9330-47bd-88be-7ea596333780 1 Other Other +865075ef-6739-4bc6-b128-1c7ad2521f8b 1 Other Other +865078bd-d05d-4c72-9e71-fcbab6e09479 1 James Other +865081eb-c8c7-432e-b13a-48568cdf927e 1 Other Other +86511440-4d3a-4c9b-a29a-e694fb059003 1 Other Other +86519975-ec02-42fa-9fd8-93edd8b739fa 1 Other Other +8651dfc4-5336-499a-9831-6754fd6c9f26 1 Other Other +8651f1cc-f5b8-4579-8164-c8d85a077b80 1 Other Other +865215fb-88e1-43b7-b731-d52c9ee7fdcd 1 Other Other +86525b22-4ee4-4f9a-833d-3475334afb8d 1 Other Other +86528bb3-5af0-4678-86d0-56c3526eb1b1 1 Other Other +8652ac7d-9694-407a-bd69-1c32c44987dc 1 Other Other +8653106e-b1f5-4200-b183-d80fcd5ae998 1 Other Other +8653337e-891a-47e5-9bc4-de88da679e4d 1 Other Other +8653696e-2733-403c-a059-c73de14a4d3a 1 Other Other +865369ce-ad93-466e-992e-7f0551762620 1 Other Other +86536e2d-c9fd-4c63-b4ec-45f754d54f2b 1 \N Other +865378eb-e167-4013-8c8b-d86d1b747de8 1 Other Other +865394f4-410e-4198-b997-e0c8a60c1bc3 1 Other Other +8653a166-4a22-4358-9d1a-6c4e7c57cee1 1 Other Other +8653fb56-6918-4d76-91eb-1c14d4369735 1 Other Other +86540d1c-9fa5-4c2c-a76b-2fb18460b167 1 Other Other +86540e30-dac8-47f1-9989-0de0c9fab52f 1 Other Other +865412ef-d00f-4b1c-851f-1b3b9b468565 1 Other Other +865415e9-ec64-4f66-b31e-3a4b9d35c573 1 Other Other +86543e0b-afdd-4db4-a458-918ec6341eee 1 Other Other +86545c97-7652-4f8a-b5bc-a44f8f4e6696 1 Other Other +86549ced-cc5e-471f-9183-ebc4004c62f4 1 James Other +8654bdc3-29f4-4ad3-89b2-1df011c8c61b 1 Other Other +8654caea-2de3-4871-b162-29b81fac4e58 1 Other Other +86550445-c447-408c-a69d-5bc4c7ad3c2c 1 Other Other +86559dc9-8234-48c8-8868-b6bdb9c30872 1 Other Other +8655f632-a1c8-483b-bde2-097147f4ac0c 1 Other Other +8656172e-f8af-4a37-8fb6-45c0dc86abda 1 Other Other +86561ac8-0c72-4bc4-bb05-5004addc8934 1 Other Other +8656cce1-e133-4c65-a5db-6637f1ed9b39 1 Other Other +8656d355-9c4b-4eb6-92a7-45e1d672f4c9 1 Other Other +8656d830-1e98-4359-8add-5807579c4db6 1 Other Other +8656f322-70b0-4250-aa32-6152769923ea 1 Other Other +86574b67-05a3-4aa2-9f59-56a9c650e951 1 Other Other +865766c2-7460-4ad2-854a-fbddee32f4f3 1 Other Other +865770b6-a635-4cf8-8de2-116b456e671b 1 James Other +8657eead-e8bb-45b3-a526-fb550b916cf2 1 Other Other +8657f6dc-1c71-4fab-9382-23d0010056ab 1 Other Other +86585aa0-ac84-47f7-bf0f-f806188f93d6 1 Other Other +8658aecc-a31f-454d-8535-9c0865d857cc 1 Other Other +86590409-a7f2-44da-8edf-74931ccbde27 1 Other Other +86591ed4-1c24-456c-88a1-74d7ab80add6 1 Other Other +8659511e-c4d3-44ad-b26e-98b3c657381c 1 Other Other +86597bdb-5d84-49ff-a031-eff43fc0064b 1 Other Other +86598dac-8b88-444e-8df4-e71394f40e98 1 Other Other +86599206-713a-4192-913b-3108f93784f1 1 Other Other +865993b0-8f81-4a16-9d21-cc79dff1c3ed 1 Other Other +865996fa-82bd-4a55-9898-b8d14e610e97 1 Other Other +8659a120-65cb-4874-a151-2f701e33f0c7 1 Other Other +8659a78e-44bc-489d-b519-11ac4ebd428b 1 Other Other +8659e084-4b23-48a0-8eb7-52986b133b5e 1 Other Other +8659faf8-ef1a-422c-bdf7-5b3d4d583082 1 Other Other +865a1736-c6ca-4f9f-b9bc-9291090f49fb 1 Other Other +865a3d83-df3f-4a0c-82d2-ac25d404ae71 1 Other Other +865a58bc-0ae5-4887-a1b9-73a020894af2 1 Other Other +865a5e3f-006a-4778-8812-99b59761c6bd 1 Other Other +865a9efd-4fd6-46a6-ae9e-4ed556e4ccaa 1 Other Other +865aafa3-1cb2-4c5b-878f-ea1a25171073 1 Other Other +865ac26b-e20c-4508-9689-d49faf7cf66e 1 \N Other +865afad7-8534-42b9-bc89-8ffdfdc3d07f 1 Other Other +865b0b12-eb4b-48bb-afb0-42d55af30faa 1 Other Other +865b3d47-ff11-4ba0-8391-745f651939c9 1 Other Other +865b6635-3f13-49d2-928f-8ecca2955aca 1 Other Other +865b8e26-5305-4988-aad7-4285283022f2 1 Other Other +865b944f-c599-48ed-9261-339406488256 1 Other Other +865bb5fe-53f2-4741-818d-86e4b99abb08 1 Other Other +865bb88d-ba53-4c9b-a007-a9630710a170 1 Other Other +865bcf40-7409-4ede-ae59-8af2f7d250f8 1 Other Other +865c34d3-e600-4b5d-980e-2f6fbc73bd3f 1 Other Other +865c702c-1821-4309-a532-5fad790ea28e 1 Other Other +865c8221-af63-4995-ba49-67a62751dc89 1 Other Other +865c83d7-fb7b-4be7-9b79-26912be9dba3 1 Other Other +865cb61f-eb8c-4b1a-b66b-1131d45249e0 1 Other Other +865cef0e-578d-477f-9ec1-5d4b4f1dbfdb 1 Other Other +865cf7d6-8232-4849-a149-d07ae054023b 1 Other Other +865d145a-f38e-4177-995d-048660c7223e 1 Other Other +865d2678-ab79-4b80-a3c7-4e25b27f6648 1 Other Other +865d61b6-d5e1-4acd-88d7-f62e8586e9c8 1 Other Other +865dba02-2133-4d19-906c-a60d6ec6dc7d 1 Other Other +865dead7-d888-473c-9e98-5ac6225092fa 1 Other Other +865dffc0-4a0a-49f1-a137-34750d7f7c10 1 Other Other +865e01eb-39d8-413a-a32d-a274968c9aa2 1 Other Other +865e79b1-25af-4708-8d55-680ae5b8f531 1 Other Other +865ee853-f321-4060-8ba9-b9c4f8bc098d 1 Other Other +865f2671-8a2c-44b7-87cf-d91fcb64802b 1 Other Other +865f793e-f33f-42e9-b7ec-055a79dd1241 1 Other Other +865f8d77-4f64-41e2-b63e-1155d292c259 1 Other Other +86608d38-6647-4509-a645-5147535afea0 1 Other Other +866097c2-1cd2-4699-9a9b-85652ce82b7f 1 Other Other +8660a05b-9a72-42cd-af48-febfe4e133b8 1 Other Other +8660cbe8-1148-4723-b6a9-5ddfc30b4a11 1 Other Other +8660d327-d126-4cca-bcf6-81f2f743544f 1 Other Other +86610962-f269-48c1-b85f-7d158b34ec97 1 Other Other +86619180-d8ff-4d8f-a242-5116cfdaa0eb 1 James Other +8661cd38-edf5-4341-a37e-b7c756fdcbf5 1 Other Other +8661dd02-2534-4971-92b7-28021c9ddb00 1 Other Other +8661f908-c744-4ed1-bf8c-5e2632023512 1 Other Other +86620727-9253-49b6-93df-4e44989db926 1 Other Other +86622214-2517-4fe9-9c50-c1f415f1d87a 1 Other Other +866232e9-2df8-4494-83a5-eb09e677ea94 1 Other Other +866250b8-f680-4b22-8faf-0cc1c4f21218 1 Other Other +866255a3-d711-4f36-8baf-dd2ec023bdf3 1 Other Other +8662568c-7dc7-40d2-867c-e2c5682e40f0 1 Other Other +8662c797-db6e-40ef-aa69-b91c668e4fb8 1 Other Other +8662f55a-6b4a-424c-9c46-d2aaf371e700 1 Other Other +8662f828-82ba-42a7-aa27-5c79d263d5f8 1 Other Other +866348ac-5c23-4cfc-87ec-85cb9c94ebe6 1 Other Other +8663568b-bdfc-43a3-81b3-61d608e9b97d 1 Other Other +866369aa-47f4-4f7f-9231-d5ca069d417d 1 Other Other +86636f01-0b66-49da-a548-5dd566d360f9 1 \N Other +86637204-44c9-4771-a7d3-14a0dee7a834 1 Other Other +8663fdbe-45f1-444f-afeb-a2334080332b 1 Other Other +8664349f-8071-4779-9cb4-455557b48974 1 Other Other +86646cde-f048-4429-ac66-47337cf70dfe 1 Other Other +86649ca3-518b-4e14-b271-ce2b62acc87a 1 Other Other +8664a5b0-6d19-4c56-8b46-d39745a810ea 1 Other Other +8664b191-d2f9-4929-96b8-2be3e8720d32 1 Other Other +8665040b-12be-4725-a9d2-08d44a904d38 1 Other Other +866512de-c588-446d-8d18-b9c7aae05898 1 Other Other +866564a9-8a72-469c-a7ee-8e047bf84178 1 Other Other +86656cd9-5453-4be8-80b3-b05c34ef03a0 1 Other Other +86665c2b-9581-49e9-a807-5cb7de305d54 1 Other Other +8666c046-1ea4-44e7-bbe9-6148144f7e4b 1 Other Other +8666effe-f748-4718-bd0f-fa8fa2879cc8 1 Other Other +86670531-5a39-46ca-944d-13cc9900bb5b 1 Other Other +866745cf-f188-4a9d-b776-307864452faa 1 Other Other +8667c02d-3045-4b8f-ae74-ba8f084c3e88 1 James Other +8667dba4-9612-4f7d-9b65-0d164baaf702 1 Other Other +8667e9d5-3ed1-477d-af76-3a6fb1bb6c27 1 Other Other +8667f6c4-54ce-4fdb-935c-731f8c44e5d5 1 Other Other +86682623-e95e-42cb-b76e-af94924c1cb6 1 Other Other +8668608f-4906-412a-8707-327a53e415cc 1 Other Other +866866d2-cbb1-42b2-9d35-03103ea58486 1 Other Other +86688348-77ce-42c9-aba0-e6c34ac1fec6 1 Other Other +8668c37d-1ffc-4e71-870a-dd82e46403d2 1 Other Other +86693d4a-b1be-48b2-b0c3-5a13792fdca2 1 Other Other +86696d7e-5ba8-4066-9a8c-245d0c65efe0 1 Other Other +86699122-fa6d-41f5-85eb-9ddbda339c92 1 Other Other +8669a234-9b68-4f62-8154-1ffb480b3eae 1 Other Other +8669e906-ea0b-4313-9b3f-0832dcefe9be 1 Other Other +866a0788-f60b-46db-a9ab-7e7b676d43e9 1 Other Other +866a27a3-63ee-4d51-81c6-0b227d2fd2d9 1 Other Other +866a2e0e-0798-43db-8167-a7f020929c7e 1 Other Other +866a38e0-dde1-4c84-b8a9-4449491eb761 1 Other Other +866a607e-4947-4b37-9593-2ed4176f3e90 1 Other Other +866a6cc3-b23f-4a86-847b-0621a4eafb8b 1 Other Other +866a6fdc-4bfa-4307-aed9-417ff66ca97e 1 \N Other +866b472e-e86c-4616-9121-e4cff94e9ec6 1 Other Other +866ba68b-bd73-46e8-a345-735e033526dd 1 Other Other +866bae0f-3948-42e8-998b-fc35e3332739 1 Other Other +866bf46c-a7b1-4016-96f0-ad7d8844e91d 1 Other Other +866c2ece-f112-4c12-8fe9-b0f1b8baeddb 1 Other Other +866c5c58-c9ae-4150-ad65-e7a880edd140 1 \N Other +866c6461-4f3d-4b18-94b3-3f141380acce 1 Other Other +866cc6f1-b16d-4204-8a24-838839efe163 1 Other Other +866ce0b3-365f-49f5-a393-37c707c36bec 1 James Other +866d4b50-76c6-4de2-bdb0-708c621a79b9 1 \N Other +866d57e3-a669-48d1-8fc7-23817cff61af 1 Other Other +866d5f14-93d2-47e4-a6be-0f3ddfb87359 1 Other Other +866d6c76-5818-411f-b334-620489cd8328 1 Other Other +866d6f20-33a2-4837-a097-81e3a6affc1f 1 Other Other +866da86e-018c-427a-8c0f-bd83dc787061 1 Other Other +866e02a3-1fe6-4706-959a-e41b30d85d7c 1 Other Other +866e2bc6-569f-45d6-be5b-fa5b009bef39 1 Other Other +866e4807-0244-41cf-a482-a4567c09ba3f 1 Other Other +866e78bd-65db-494c-b021-3ecf75b77e9e 1 James Other +866ec00d-cb93-4b0a-8904-84994b439082 1 Other Other +866eca24-ebb2-4184-afa4-9197aa79e9c7 1 Other Other +866ed866-e4c3-47d5-8207-9d8e8b509aa2 1 Other Other +866f76bc-eed6-4e4f-910b-bf2e417aeacb 1 Other Other +866f7939-c16d-4cad-9fde-1aa8f4ccb7a0 1 Other Other +866f93a7-e9c2-421a-84d5-2b70733a8ee8 1 Other Other +866fa0bf-9509-4cdc-bf28-5e8ee185b26b 1 Other Other +866fabad-9d59-4555-87cd-6149189c2984 1 \N Other +866fec33-7424-4811-ade1-9d989a5f57c3 1 Other Other +866ffa7c-a95f-43be-96b5-3f926feb6a67 1 Other Other +86709a9a-f22e-4260-b51b-4f6d1aa3a429 1 Other Other +8670c2a8-0fb4-4df1-bdba-c6be5cdd1c16 1 Other Other +8671065e-aaec-4893-9366-633354228b55 1 Other Other +8671158b-21a3-406a-bb8e-b87834d32a7f 1 Other Other +86712079-d748-4e1b-8afb-85916a4a5b54 1 Other Other +86715f31-d0bc-4726-b2d2-421c1eb91900 1 Other Other +867191d0-4a36-4772-944f-d0fe4c27e838 1 Other Other +86719c93-8017-4eb6-a991-62c210b826c9 1 Other Other +8671fd45-bd7e-4894-9912-d21dc5b0e2ba 1 Other Other +86720e6d-b3dc-4631-851e-d6a7e41a0a51 1 Other Other +86721c44-eb61-4867-aa0c-9d1f335ad285 1 Other Other +86722e8d-5136-4f0e-aa2d-c6413eb2dc7d 1 Other Other +86723ccb-6194-4274-8ed8-276b0ff478e9 1 Other Other +86726dce-daba-47b4-9503-b8b8f0d2adf9 1 Other Other +867275bd-0fb8-4119-88ad-0f5509be4139 1 Other Other +86729d25-f257-4353-b9de-0eb4c8bc53b6 1 Other Other +86732239-09a2-4d02-81d1-058b44d4737d 1 Other Other +86735298-ce2b-499e-9702-015ad97b56b4 1 Other Other +867385fc-ca84-48d9-87e7-fcf4696df302 1 Other Other +8673953b-59bd-442f-a355-8fcfe198b33d 1 James Other +8673abd7-0d87-42e3-8fcc-41eb5619e791 1 Other Other +8673da31-5522-4638-81c6-044ba5f6204b 1 Other Other +8673f398-fff9-438c-a30c-f54f2ccd3801 1 Other Other +86743ec6-31d5-457c-8b25-cf56ced37537 1 Other Other +86743f45-b91d-4bb9-9ab4-748e8d5a3ba8 1 Other Other +8674546d-6756-4b91-b29c-d1fc7e59ccc6 1 Other Other +86748422-1ff6-48ca-9a31-8e3e2af5e8ec 1 Other Other +8674da78-c9b4-439e-8cb1-42fef1733924 1 Other Other +8674eb83-e475-4eba-9eed-126a7f1082d4 1 Other Other +86750211-3b72-496e-a791-4fe968087bec 1 Other Other +86753210-e801-4b14-beda-aacc43a2759b 1 Other Other +86756b53-9810-44b8-8eb6-f27e74ee95a9 1 Other Other +86758006-ca85-4919-810c-38429687bd52 1 Other Other +86758548-1a2c-41be-b5fc-f3e770cc1c9d 1 Other Other +8675bddd-e9d5-4a0e-aa64-89e24ddae6f8 1 Other Other +86763e61-6e06-4367-957e-5e325853bb74 1 Other Other +867669aa-922e-4ff8-887f-99ee41f0b616 1 Other Other +86769821-bbc5-48cc-a0f0-6373101eb6c0 1 Other Other +8676af75-3c78-407d-8836-a8d5849a884f 1 Other Other +8676dbf5-aecc-4c74-a04b-d8a56c2effae 1 Other Other +8676e176-1c0c-4ab3-bd15-a7e81a0d976d 1 Other Other +8677259b-b795-4594-9d9e-4e698777ccc8 1 Other Other +86773782-7339-4a90-831f-870b73a95e58 1 Other Other +867849d3-cc53-423b-8319-8ea0b598d2dd 1 Other Other +867856f6-14af-440d-a762-443cd84c6f3e 1 Other Other +86789701-dcd2-4ab8-9569-d6246073e6d3 1 Other Other +8678c371-3223-4e76-85ee-56f22409ea99 1 Other Other +8678d123-07b7-480b-af9d-b87456a533ca 1 Other Other +86795b20-dc46-41e4-adc0-0095db60f17d 1 Other Other +86799e7c-8230-4471-af10-02c43ea51d7b 1 \N Other +867a3563-5eb9-4e79-8076-62233a86063e 1 Other Other +867a5ebc-a054-4599-94ee-d2a6af72a873 1 Other Other +867a8fac-eb35-493a-ad54-e929230c7003 1 \N Other +867ab502-1c4e-46a9-94a4-1eb4a94609a3 1 Other Other +867acef8-a688-40b4-87fb-be8be36134b1 1 Other Other +867b38fd-6f42-471b-ae28-3e05d90e9c3c 1 Other Other +867b412b-fe9c-4936-84a0-a9572f7bcbbd 1 Other Other +867b4b6b-99a4-422d-beaa-215b6a0e3c9e 1 Other Other +867c0761-acc3-4f8c-a2e1-8abc31cd8807 1 Other Other +867c46eb-caad-4b1e-b5ef-c27056b6378f 1 Other Other +867c887c-ac13-4653-8fae-cc4978fbafed 1 Other Other +867cf0d1-12de-42c1-9e88-ad65a0913762 1 Other Other +867d1c6c-50f4-4a7b-b9e6-0fac0e4bcad3 1 Other Other +867d1da2-5f24-4e61-8610-b719408a5dc9 1 Other Other +867db444-a8ba-43b0-aa30-17386cc1b3e9 1 Other Other +867dbbc3-6ea7-4f9c-96c3-744f0e27e8e2 1 Other Other +867dc7ef-590d-4984-bb10-4d71180f1ca0 1 Other Other +867dffc6-6f45-4601-9b4e-0e89842e5b3c 1 Other Other +867e2638-aa8e-462b-ad6c-c871a6b0c796 1 \N Other +867e268d-de10-40ea-afd2-f68912de79c6 1 Other Other +867e3a96-bb7d-40e9-833b-a3dd246c4a33 1 Other Other +867e78be-8255-42a3-a409-b9e686b393e3 1 Other Other +867e9d0f-961d-4044-886d-f1956c559a55 1 Other Other +867f388a-eb45-4d2d-8887-edf9c81fe76e 1 \N Other +867f607d-cae2-4e3b-b2dc-a36ba1011818 1 Other Other +867f63b6-436e-4cb4-9a99-bf11d06dd144 1 Other Other +867f95d9-ddb4-4d78-bc39-63bf78fceeaa 1 Other Other +867f9f77-21e2-44b2-982e-e7e9403f8982 1 Other Other +867fd3a5-cd99-4f3d-a962-c725af1ddd15 1 Other Other +867fdba4-5ca5-40a9-8b50-c31057c68d7e 1 Other Other +86801d23-7078-41de-abd5-522d0b418383 1 Other Other +86802405-8135-4b32-81f0-b555151049f8 1 Other Other +868046f8-5c07-404d-84e4-beb27bfc7112 1 Other Other +86806150-ef6a-4eff-bd5c-b2a38d649f8b 1 Other Other +8680705f-a5e3-4449-b2c8-7944bc3e7709 1 Other Other +868092d6-c75a-4af2-af7e-18bd3ebae6a0 1 Other Other +8680974d-7746-40fa-9e9d-8d0420606741 1 Other Other +8680ae93-6fe3-4d30-b1cd-c5f617b863d4 1 Other Other +8680c46b-bc02-43a1-b89c-981d17933ff3 1 Other Other +86810737-15f5-49e0-a5c0-98f829845981 1 Other Other +868123ac-ec82-493b-857f-479412c0dc38 1 Other Other +868172b5-7e75-4357-b757-0c73a2de6098 1 \N Other +868189a1-bdf8-41f0-9a11-784cc708dbf8 1 Other Other +868190da-4699-4b4c-947f-6cba426d3910 1 Other Other +8681dcc3-0c27-4e2a-b2d3-6ba4ee02f0e3 1 Other Other +868254a5-f471-4ded-8e76-f3b336e2fd5c 1 Other Other +8682a030-3b4c-4f50-968c-d6454673951c 1 Other Other +8682bef0-d638-40eb-ba18-a71a061e8ffe 1 Other Other +8682cc7f-1b9c-4c41-be97-a85f0d356938 1 Other Other +8682d6b2-f655-44ac-aa0b-dbc5d449291e 1 Other Other +8682efcb-1e12-4047-af6f-951f13be0d60 1 \N Other +86836c0e-cda3-4786-9003-5f2e10ce4c3d 1 Other Other +86837217-ee6e-4b3f-a907-929f3a193faf 1 Other Other +86838fd5-0ff7-4b23-998e-8d24e4fb1ada 1 Other Other +86839213-636c-4226-ac8d-84c75fa0359c 1 Other Other +868392f0-1fd5-4b34-b142-69ddd91777df 1 Other Other +8683e50e-d58d-41bf-939a-817d971552a8 1 Other Other +8683f8ea-0b90-41fd-8d1e-4daf1edd8e93 1 Other Other +868497cb-1fb6-4b4a-9bc9-bf32fa628fa7 1 Other Other +8684a1ff-c828-45d3-9154-e1ddd840fa0e 1 Other Other +8684aa53-e3c3-4614-99d9-8bcede7141d9 1 Other Other +8684f3a3-ae0c-45ff-adc9-529165ca6f64 1 Other Other +868509d3-46e6-430a-8450-ac82c7c67608 1 Other Other +8685233e-1e4d-4b1c-86bd-76ecc7bca642 1 Other Other +86854a1c-5f88-428c-971c-8547e3d4121a 1 Other Other +86856ec1-e3b3-411d-8cef-14584ea1afe0 1 Other Other +86858a1d-4793-4449-91eb-c61190d7c7a3 1 James Other +86858d31-2256-4085-84d1-99d7b9de3cf5 1 Other Other +8685d20f-aa98-4601-bb75-75747812d1b4 1 Other Other +86860683-ae36-42b7-b774-d663f7b819ff 1 Other Other +86860ac6-bf78-45b7-994f-54bdf3679053 1 Other Other +868633e1-c89e-49a9-abe2-acc701dd9e72 1 Other Other +86863b27-0560-41b3-a8d7-010591a74f46 1 Other Other +86863fc8-d0bc-4d29-97d1-faa0f46a9904 1 Other Other +86867a3f-3d8e-4984-8b8b-e944bae766d5 1 Other Other +8686a447-261b-4ebc-ad91-c23f5de2bf4b 1 Other Other +8686b2b4-4d45-4176-9f42-2ce4fa11b501 1 Other Other +8686b546-3a73-4ab4-8744-98662849e0a9 1 Other Other +8686c395-b84e-4e71-a8c3-50933fe7ae40 1 Other Other +8686df3f-1652-433b-b445-94302b7ee33d 1 Other Other +8687618c-f042-4d84-a276-261eaa77b795 1 Other Other +868763c4-edf1-4dda-a34f-c393379aa1e6 1 Other Other +86876f12-dda5-41bc-886f-93d241d53614 1 Other Other +8687ada2-0e52-4e33-a74b-5e18b385d892 1 Other Other +8687e8a5-ba08-4c48-8353-6b2b1bddf066 1 Other Other +8687f45a-e754-48a9-aacc-6b6606bca141 1 Other Other +868841a8-0c93-4b97-82e1-01da43b33e2a 1 Other Other +8688993f-da56-427a-8b2f-3b9a9beb7ba5 1 Other Other +8688a814-1965-40cc-939b-bbe15409e264 1 Other Other +8688bf1f-bf5e-4f39-b617-7748202410f8 1 Other Other +86891ae4-da2b-42e9-b4de-3a01b15165ed 1 Other Other +8689358e-edb4-4b2a-b473-63b4321277bc 1 Other Other +868935cd-f070-4d72-a053-82cf8d2f7198 1 Other Other +86898e09-824d-48f3-b7f1-96e52eb3ec7e 1 Other Other +8689acfc-16f7-4ffe-840e-2f4abbb01dc1 1 Other Other +8689bd9c-2253-4dc3-85a4-3a3af7b709f6 1 Other Other +8689c062-ac4e-4ac4-a9cb-9d06a75c581e 1 Other Other +8689f9eb-39ce-47c1-bc0f-fa7921496b39 1 \N Other +868a1643-b910-442d-ab93-f19e37db7dae 1 Other Other +868a3551-9429-4ca1-8141-638b1d11775f 1 Other Other +868a378b-014e-4bdc-8232-bf11b352d605 1 Other Other +868a3fa1-2e56-4c21-aa61-2a2b568fc40e 1 Other Other +868a6440-9701-4eca-a858-8c7aa43784db 1 Other Other +868aa49a-a122-4e60-a454-72c141949777 1 Other Other +868abd73-3b42-4847-84c6-2082d29f1a29 1 Other Other +868ac4e1-60bd-41dc-9c86-d0069d2a1b16 1 Other Other +868af683-6877-4fdf-a2a2-16b8fe91552d 1 Other Other +868af86a-799b-4573-a7e5-4d903f5922b7 1 Other Other +868b1257-6670-49d9-81eb-2da83bdaeba5 1 Other Other +868b4b50-6c3b-4347-b407-fff33c96c99f 1 Other Other +868b64f6-efbb-4232-ac44-b5d2d05da2ca 1 Other Other +868b65e1-33a6-4b9b-aa84-2574252dfdbc 1 Other Other +868b6e51-3e4b-4acc-aa29-57a5a0df283c 1 Other Other +868b78de-1bcd-4900-850a-2b4e34fe3cfd 1 Other Other +868b8226-b433-419a-8188-fb3067c3a395 1 Other Other +868bbe7b-e11a-49e8-be6d-a28441f6817d 1 Other Other +868bf1c8-5605-4549-b42c-a01becac9dd7 1 Other Other +868c2ea8-0630-43f8-8664-e83b3b476466 1 Other Other +868c341a-6992-47d0-a8a8-26d44763e6e0 1 Other Other +868c4bd0-3f95-458f-8b1b-4d4cd1ed7adc 1 Other Other +868c5bb9-8e9a-467d-beb8-8336a3dfa930 1 Other Other +868c997e-e027-47b3-b2f1-5120f69b6beb 1 Other Other +868cf9d7-a684-496a-abeb-26c5d22165d5 1 Other Other +868d0169-8af9-4ff9-a082-2a550328be47 1 Other Other +868d4eda-c9d7-4997-bab0-a43f1526e2fb 1 Other Other +868dc723-ad3c-4031-ab90-82bc350a3c66 1 Other Other +868e07a9-978d-4152-95c7-94f467a4257f 1 Other Other +868e36b0-d135-40c1-8b5b-18ce240fb83e 1 Other Other +868e5522-e52d-45d4-9b3e-d0e3828c451a 1 Other Other +868e5672-847e-4285-84a2-6a3941c14c0f 1 Other Other +868e8037-9f13-48ae-b9d3-bfc49004c3b0 1 Other Other +868e82c1-7020-4e22-baff-43d2d8a96f5b 1 Other Other +868eb134-8360-4f5d-bd3e-edf629540e66 1 Other Other +868ecd32-d742-45b7-95c1-6c4b527316a6 1 Other Other +868f157b-2b91-4260-9e21-55955b84b21b 1 Other Other +868fccb8-f8f4-4b1e-b8b1-f8f3d7a86550 1 Other Other +868ff12f-b080-4a75-a18e-06e4fcef8e73 1 Other Other +86900065-abee-4ac8-9e74-ccb69a04aa87 1 Other Other +869068f1-4677-4ce7-9dda-a3d456ef8222 1 Other Other +8690ec95-1eca-4d8e-b8c3-9b0bfec18ad5 1 Other Other +86910039-a303-49cc-bde9-8388c0ef8bef 1 Other Other +86910c17-2ac0-46e2-b4af-d2dc34a29fec 1 Other Other +86911c94-9079-4529-a0ae-43d4b299a758 1 Other Other +86912675-c7d5-4ac3-8831-a400a0bf1d8a 1 Other Other +86913f97-dc57-4b21-9104-cc401422bdea 1 \N Other +86916b50-4770-4caa-bc6e-8cd0fbeed370 1 \N Other +869192a2-5b6c-47e7-891f-d9cf630bf600 1 Other Other +8691c924-cdb8-4eb8-9d97-6c1ebbafbb0a 1 Other Other +8691ca34-172b-423e-9846-144ec4a8491d 1 Other Other +8691eb48-b302-48f4-94ae-e2f1e0861154 1 Other Other +86921545-b1cf-4670-afff-816575cfa1ed 1 Other Other +86923928-4036-496a-9757-4f64df5f4ac2 1 Other Other +86924a35-54a6-4f85-b2dc-57b65ef0f87a 1 Other Other +86925ea9-f99d-490c-ac97-bc83de2fa6af 1 Other Other +8692c55a-a752-4528-bdd4-3b417a923ec1 1 Other Other +8692ce1c-3917-486f-98d4-52fcf64bc65d 1 James Other +8692e06a-ab7d-49c8-9932-5bf6447426ae 1 Other Other +86937b1c-ab69-4892-b99e-1c20d8ebeea6 1 Other Other +86939809-f86c-4a77-bf6c-97c13c5c4e5f 1 Other Other +8693a555-5563-4c15-b006-a53afb0de83a 1 Other Other +8693d8c3-031f-4e9d-b27c-2341af823d02 1 \N Other +86942926-8862-49ec-a217-a2176a059f66 1 \N Other +86945c4b-62dc-442a-a33a-189f87f07c57 1 Other Other +86948358-f084-4b89-af63-732b99770468 1 Other Other +86949409-264a-4053-b03c-90703c0f746d 1 Other Other +86949e41-9e83-41ff-8088-76fa63923b4b 1 Other Other +8694f048-57a0-4c2f-8c8c-dac7215252e7 1 Other Other +86953b72-646a-44fa-9a2a-95d994fff9c0 1 Other Other +869588e7-5a0f-4d8f-bd4b-e3c2c5deaffc 1 Other Other +8695c385-b7bf-4dff-9695-2c8a24f1c8d0 1 Other Other +869651d0-6230-47c4-b3bb-1a120a5dfefa 1 Other Other +86968614-16e2-41d3-9e10-35ccd2d2954d 1 Other Other +86969066-15f6-44e1-8790-cb7f41eddf14 1 Other Other +8696b697-c6ab-4b27-9928-2b6ebe413bda 1 Other Other +8696c06e-f446-4dc7-80f7-52789e5bae98 1 Other Other +86971437-856e-420d-a83a-b0c6fa442111 1 \N Other +86976b15-6696-447a-83a3-07ea2934aa2d 1 Other Other +86976c86-2014-42fa-8d6d-64a2fdc21707 1 Other Other +86978266-fd07-4d2f-9744-172f4146f723 1 \N Other +869801d6-fefb-4184-bccb-87c766f8ea56 1 Other Other +86981fc4-afc1-409d-95d2-35a73d48ea7b 1 Other Other +8698b922-5620-49f6-9a6e-872d237a6497 1 Other Other +86990ae3-ed51-4a43-8786-5c54b0b33ed9 1 Other Other +86991700-9c44-41e7-a834-362174096c27 1 Other Other +86993be1-1644-44eb-80f0-46c236c6d9bc 1 Other Other +86994168-959e-48e4-944d-1e1a57ae56b4 1 Other Other +86996a2d-6790-4d8b-92ee-33518a50f159 1 Other Other +86997c7d-11b5-493c-9016-db4d74ed26cc 1 Other Other +869a9ed4-026b-4a7f-a434-5cb9d03b08d6 1 Other Other +869b2273-1aae-476b-997f-59227eec32fe 1 Other Other +869ba496-c217-4675-896d-14b665371628 1 Other Other +869bb5bf-423f-4a39-9740-bb1151d8b4ee 1 Other Other +869bc814-5da3-4e91-8a0c-e1010aea6d90 1 Other Other +869bfdd1-3207-418a-8ac2-096eff288a7c 1 Other Other +869c11aa-65fe-4d4e-8f50-f0dc05026928 1 Other Other +869c409f-8541-41b7-8e8a-bb59e59d2fc3 1 Other Other +869c42f2-23f1-4e37-91ec-6b2a387d4f99 1 Other Other +869c732e-cfa5-4683-b3f0-964fec23d751 1 Other Other +869c801f-31ea-4333-845b-5f277a987013 1 Other Other +869cfec4-3d6a-4283-a68d-10142dca63f5 1 Other Other +869d2a37-529e-456c-8a36-090dabefe83a 1 Other Other +869d9827-c9b7-45c8-9e10-3e7c26dbd7e8 1 Other Other +869dcd04-c1e5-4b17-8313-8e6703cac374 1 Other Other +869e3f75-23d4-404d-b5db-e656d8f0a154 1 Other Other +869ebec6-eb26-4758-af1b-23e7146e63ee 1 Other Other +869f0909-01a0-4339-b9d9-91af8c57cacf 1 Other Other +869f6a77-0835-4fc1-b361-e45493d2f643 1 Other Other +869f7a4c-5c88-4566-87c2-fcaa38127f5e 1 Other Other +869fc031-7ccc-4c7f-a181-a432db95324a 1 Other Other +869fdc8c-ddc0-410d-a2b9-2224f9810cfb 1 Other Other +86a03d4d-1d1b-44de-ae0f-37c8b6103a57 1 Other Other +86a041d0-3ef6-4365-976f-1b3e5cd229ee 1 Other Other +86a0c870-de7e-4069-89ea-5b584b06e5ec 1 Other Other +86a11386-1d8b-4851-94ab-2de6b06a3dea 1 Other Other +86a1292f-acf9-4e40-9ae3-80eb38a48713 1 Other Other +86a19bf2-9cb6-439d-925e-c58c8863516b 1 Other Other +86a1b77b-114d-48c4-98d7-874af2bd35ac 1 Other Other +86a1cf9a-91f9-4f62-9a7b-b51e17e37bc7 1 Other Other +86a1edde-d99b-4821-8b13-2961f78a0434 1 Other Other +86a1fcaf-e865-4ec0-bf0d-07dfa78ee7db 1 Other Other +86a20ee8-9c8b-4a8c-ad2f-f680375fb82f 1 Other Other +86a21c8e-8b40-446a-8c02-f9e74c6a10b3 1 Other Other +86a237b5-59ac-4ff3-845f-214ba667c129 1 Other Other +86a28635-d060-4e50-932b-d3d3e0498e0f 1 Other Other +86a28993-ef7b-48d4-81bb-2d98a4521280 1 Other Other +86a2b119-b813-4e25-8e4f-132b6492e0b0 1 Other Other +86a2d914-4608-4824-a0fc-61fe4dfd4b91 1 Other Other +86a30250-d6f2-42f9-8d9b-d33202628455 1 James Other +86a358c2-c24b-4a3a-af23-baeaf0436f53 1 Other Other +86a374dc-aa81-4160-b095-34806366f4ea 1 Other Other +86a37cf4-535e-4d6e-8901-bb878e133d7e 1 \N Other +86a3adeb-3e4d-4f1e-9973-f3efd4338ee3 1 Other Other +86a40578-de2c-4605-91cc-c822fa1a3ea7 1 Other Other +86a4622d-2bdb-4ca6-a66e-e78ba34ae066 1 Other Other +86a489ab-2a71-435f-8e46-5696c68c5d61 1 Other Other +86a48e05-ed9b-40cd-90a8-cdfe84a79ab3 1 Other Other +86a4f66b-9ea7-4b09-88ca-9fb03df2d59e 1 Other Other +86a509d1-63a1-451b-9406-ec4ffb879810 1 Other Other +86a5332c-70a0-4942-a567-e16ef8595727 1 Other Other +86a535a7-4bb2-4cf2-aa66-4d450fc7e9b0 1 Other Other +86a56192-01cb-4295-a94f-83d3a2dcb3de 1 Other Other +86a5727f-6084-41cc-ba00-c0af02964949 1 Other Other +86a5d31f-3552-4f20-a520-a6b72cd9fab3 1 Other Other +86a620b0-6f2a-46b4-b1e5-713d18c6e0dc 1 Other Other +86a62cca-cb99-45a5-9c6f-86b5d97e2346 1 \N Other +86a63ed7-3514-453d-9b08-19e4f029e923 1 Other Other +86a67cbc-bd78-487b-9918-af342af29cad 1 Other Other +86a682c5-35ce-4124-aa36-fb8518b69166 1 \N Other +86a69bcc-113b-4477-82fb-f4fd6a6695c3 1 Other Other +86a6dc39-7656-43e6-8509-289d19227618 1 Other Other +86a6dfd9-47de-40c5-9f10-d7d800bd4823 1 Other Other +86a6e8d6-f0e9-4cf1-8856-5a8dff61c8bc 1 Other Other +86a71fbe-ad12-4c8c-b684-3799168e6f3e 1 Other Other +86a73f42-9faa-47f6-bb19-4ad253604690 1 Other Other +86a7419b-9a4f-4b02-9735-108563761801 1 Other Other +86a752f2-d1b7-41f3-a147-7a2dafeb1713 1 Other Other +86a793e2-6b51-4463-9aea-9a9bb1d5d9d5 1 Other Other +86a7d246-7f27-41c5-ac4f-9c96030b3677 1 Other Other +86a7ead4-fb87-4f2c-a331-e03bb796abc7 1 James Other +86a7fcaf-0600-456e-aa43-d005002513b5 1 Other Other +86a814c7-55c8-43f5-892e-e57b32c826fc 1 James Other +86a82a36-f94f-424b-bff1-c572a2cf5458 1 Other Other +86a8c0ab-7e92-44a5-8a16-69d886d71276 1 Other Other +86a9319a-1fae-46f0-8117-b49bda20cbb3 1 Other Other +86a957ee-6dae-4e99-b8b5-23352a3505ea 1 Other Other +86a9b3f3-436c-4166-b46a-15023eccef32 1 Other Other +86a9dad9-5fb5-4b9d-9aeb-33e5937d5268 1 Other Other +86aa36af-1921-45b7-9311-5c0415238a7d 1 Other Other +86aa4c29-3fad-4fd6-9779-81a4a0d2e078 1 Other Other +86aaf28f-ae53-44ce-9074-24a223397483 1 Other Other +86ab0dcb-e954-42ba-be83-7b059a5d2498 1 Other Other +86ab1179-2741-4514-a1b2-d433ec172646 1 Other Other +86ab7826-d5c1-4097-b48f-86d98024f622 1 Other Other +86abb8a4-3a99-4d54-9c00-02a151ef880e 1 Other Other +86abc79d-69d7-4c27-a6ea-80707ccd9fd2 1 Other Other +86ac3933-6315-4d11-b30d-46065cf1e8ab 1 Other Other +86ac7bec-0665-4fcd-8ae5-663b1723b928 1 Other Other +86acd387-7adb-47e8-9114-5e5601602c82 1 Other Other +86acd98a-277b-44bc-a895-ecb6c73b8836 1 Other Other +86acf51b-45ee-4f22-a354-efa9167e9478 1 Other Other +86ad39bc-c1d7-4179-a894-9a62790c223c 1 Other Other +86ad4ce5-0060-4425-92e2-2d26d9aabb98 1 Other Other +86ad8443-5497-4d60-9af3-2c5b2ee2dcd5 1 Other Other +86adb327-7be2-4bfc-97ab-7b3cda9ccde8 1 Other Other +86add556-f775-420b-8096-bdf9ca9d89f1 1 Other Other +86adf39a-3854-4c44-9772-6f87740830b2 1 Other Other +86ae9c90-ef39-4655-92ac-509bde888600 1 Other Other +86af2ad8-cdb1-47f0-bbd4-1f62babbb577 1 Other Other +86af50c2-fc41-4129-b257-ccc4a8270ec0 1 Other Other +86afbd09-acc8-4b03-9df5-723b23cdee28 1 Other Other +86afc1a4-1da8-43e2-bc7a-37476a20b57a 1 Other Other +86afe577-9eab-4284-a843-8c5993c9bbf5 1 Other Other +86afeee2-b95d-4a2c-b90e-8c95c63735f7 1 Other Other +86b00bc7-7a8e-46a9-b548-c8441e32bcc9 1 Other Other +86b015c2-2695-40d0-9c60-2ba8b172c7f5 1 Other Other +86b0d6e7-5aea-4553-a817-ab21dc194d9d 1 Other Other +86b10e6c-1e7c-4a0e-b2d6-95fc18501bbe 1 Other Other +86b13eba-0007-4a2c-81ff-e06f28cab86c 1 Other Other +86b180a8-ffa1-41c1-ab4b-439c1cac235b 1 Other Other +86b1d31f-184f-4368-bbb2-cc6968493635 1 Other Other +86b1de9d-f1ec-45f5-b2c6-bbed475c4b96 1 Other Other +86b1e12c-26c4-4d7e-94d8-bccc01ece28e 1 Other Other +86b1ef58-ba4d-4333-8a58-517edbcc54a3 1 \N Other +86b22ccc-7e9d-4c40-8b5f-a54be5bf05eb 1 Other Other +86b23ad4-313f-451c-8788-6690b08f0feb 1 Other Other +86b253c6-bd07-4e66-a468-22e06848d0ac 1 Other Other +86b2fc33-8701-4365-aeb5-afa5ff0dd518 1 Other Other +86b2fe0f-49df-4fee-9004-99570f635ba6 1 Other Other +86b35c5d-61b7-4a64-ba1c-24b03b66fca4 1 Other Other +86b3603f-1ce9-4d88-bbdd-3370b2679f52 1 Other Other +86b379a3-3a2c-4307-ba3a-ea5505057424 1 Other Other +86b37e27-fa5f-4650-9db1-0e650e4b3f25 1 Other Other +86b39069-844a-47d4-8648-651ffa2ed494 1 Other Other +86b3ac07-c1d7-4026-957f-7352ed0e5287 1 Other Other +86b3b8cc-27c7-4cf7-af44-29475163f1ec 1 Other Other +86b3dafd-b44c-4955-9eac-008e2cdbb3ad 1 Other Other +86b423e5-cdc5-4cc4-a166-d70e54376e9c 1 Other Other +86b43903-7336-4a71-9419-03a2d6399ebd 1 Other Other +86b43d62-f824-4a5e-99d7-9d87297e9ccc 1 Other Other +86b4507d-849a-4dda-bff0-938da5db3b25 1 Other Other +86b49021-63c0-4e5b-a2aa-3c08187e1598 1 Other Other +86b4b1a8-eb9a-4f2f-bc0f-c10c4ab73efc 1 Other Other +86b5321c-71b5-4bbc-89be-313968e0aa7b 1 Other Other +86b563a3-07cd-4066-b614-9c39734bf83c 1 Other Other +86b58b82-4cdd-4c5a-a7b7-a297f0d55b04 1 Other Other +86b59875-8e08-4f66-b3ad-bff657304157 1 Other Other +86b59bf8-0157-4610-9c2e-53c100ed01e5 1 \N Other +86b5b168-f6b4-440d-8d08-065ff6977afa 1 Other Other +86b5e32e-af47-426c-9f11-543e46121441 1 Other Other +86b66c18-1147-41a9-a847-0a5e5d597465 1 Other Other +86b69a51-7d2c-4894-86c7-4269376e3026 1 Other Other +86b6a4ac-07ac-447a-85fd-da49f6cc434f 1 Other Other +86b6b992-0f67-4c06-9d45-211d9bd05edf 1 Other Other +86b6c013-5d1e-4699-af9c-6b476cc4e1be 1 Other Other +86b6c593-8c93-40b2-8b87-97285a49ff29 1 Other Other +86b6ee0f-8988-46c8-a3b5-9ab321aa8c85 1 Other Other +86b7b264-409e-4e79-899d-2f94aeb893ed 1 \N Other +86b7bd6b-f05e-4c9e-b99b-0796ad37a530 1 Other Other +86b7c280-7a23-4ab6-bf26-a8c58548da6b 1 Other Other +86b7c9dc-ab23-4d0d-9c7e-138366419025 1 Other Other +86b818d7-e8c6-4655-a3be-6529ed354ea1 1 Other Other +86b81e6e-c5a9-4bc0-b2f1-b7f15d3d0acd 1 Other Other +86b8312c-9c6c-4ece-b14e-450c4c3e14f0 1 Other Other +86b83897-5b81-4b23-81a7-f482607f9c4d 1 Other Other +86b8acd8-c636-4113-9c5c-e69a9639887d 1 Other Other +86b8d662-a5c2-4f0b-90e0-6f69ce8aef28 1 Other Other +86b948e4-9d80-4497-a62a-8904835f0ede 1 Other Other +86b979bd-d156-4e1e-bae2-c9f0e86fe5f3 1 Other Other +86b99384-6f76-4519-a36b-a07ec1256063 1 \N Other +86b9c7d2-fdf3-496b-a89f-898c4b2760fa 1 \N Other +86b9d1d3-c3ba-4086-b5a4-13bdd3e47849 1 Other Other +86b9f4fc-a749-4356-8e8b-d99be16f2075 1 Other Other +86ba3189-bf43-489f-a1d7-570b9b099a1e 1 Other Other +86ba790f-d797-4273-adbe-7ebd946abbf6 1 \N Other +86baa86f-5daa-4277-a4c2-edeeadbcac95 1 Other Other +86baf8f7-1d35-446d-8bd8-475f088fe496 1 Other Other +86bb0f9d-4e5e-4bff-89a8-8484961baba8 1 Other Other +86bb2844-35aa-4af8-8c75-b92cc5308e4b 1 Other Other +86bb5198-4deb-4e6b-a315-2baeede49991 1 Other Other +86bb6eae-1a01-4416-8c92-8d58491dbd19 1 Other Other +86bb9450-02de-400f-b611-b124c8fa3f6b 1 Other Other +86bbd7ba-c416-4876-895b-1f1c829f9567 1 Other Other +86bc8b94-af44-4404-b9e0-d1b659539117 1 Other Other +86bd2f4d-bb3e-4d86-b172-b7ebe9d963e1 1 Other Other +86bdd2ae-b567-4eaf-a95e-0d51d0a51acd 1 Other Other +86bdf26b-8223-409a-adaf-933f3e592acd 1 Other Other +86be2c4c-57bb-4821-a8a4-973ec7494800 1 Other Other +86be3380-e7b7-4a2e-a65c-c8da6150f56e 1 Other Other +86be739e-88f8-49b9-9f7a-10bfac39ca93 1 Other Other +86beb6fd-3aca-42d8-a3c1-d661671d10c3 1 Other Other +86bec73c-196a-4251-99e6-de8c53c08276 1 Other Other +86bed4fb-0253-4113-a4a5-e9be577a2047 1 Other Other +86bf7828-2269-4235-a375-24ba815e3db8 1 Other Other +86c01cc5-a89e-4bef-84ff-4f971f4c77ff 1 Other Other +86c0710d-767c-46e3-8254-3bd8158b3103 1 \N Other +86c071f9-4fd5-45f6-8981-6b99e1567711 1 Other Other +86c0960b-86b8-499a-bea9-a1b2e2eea6dc 1 Other Other +86c0a9a7-4401-4f5c-ae6d-6a4d0185d149 1 Other Other +86c0b12b-d25a-4a04-aad4-bda4dae65eaa 1 Other Other +86c1161d-4913-4bca-a342-2039fbceaa5d 1 Other Other +86c12705-f603-4698-a369-f1291c241128 1 Other Other +86c1a01e-ccc6-4a5c-8181-267a4f0dd710 1 Other Other +86c1aad5-38dc-4ca4-963c-2fba1b4493ce 1 Other Other +86c1ae0e-7cb1-4f6e-b61c-f1bd099365e0 1 Other Other +86c1f18d-cd1a-404f-8e86-74384e91460c 1 Other Other +86c21369-c29b-47c8-9f39-09b53bc1949d 1 Other Other +86c2290e-9a73-41b1-b7f3-0e37290deb01 1 Other Other +86c2c41c-70df-4900-aa0c-a15538052e02 1 \N Other +86c31591-6630-4c0e-8a13-c981deedd76b 1 Other Other +86c32366-f44a-4a21-b75b-d6450ee54704 1 Other Other +86c35249-5715-4242-9a69-cdb29e241ebc 1 Other Other +86c390f0-f564-4329-96d6-a016e679bf65 1 Other Other +86c396ce-2a7e-4ae2-babb-d8a7aa511617 1 Other Other +86c3b095-5fb0-4ad3-a9b5-da14aa77d65e 1 Other Other +86c3f579-1030-4ef5-abf5-dce53c6af320 1 Other Other +86c3fa48-7a59-4a5e-84fd-7fca2799e2d7 1 \N Other +86c41c84-9dea-496d-8513-b477f2379133 1 Other Other +86c459e7-0216-45ff-a2dc-5dfeef26d820 1 Other Other +86c45ee9-d159-400f-a8d2-1b28c6d867a4 1 Other Other +86c47702-7196-4740-ab6f-323c03996cd9 1 Other Other +86c477f4-3881-4480-ba06-ba6ba0443d2b 1 Other Other +86c4a0a5-2464-4e7e-8c59-d5215c582114 1 Other Other +86c4afd0-6fec-4efd-a27b-04e421100095 1 Other Other +86c4e944-3562-480f-ada5-832343c049a2 1 Other Other +86c4ed39-b764-4234-8d5c-6d1a52100273 1 Other Other +86c508a4-8f48-446a-920b-db0e6a53ab9e 1 Other Other +86c518dc-d419-473e-b003-c1f967288d39 1 Other Other +86c51a62-9d56-4d5c-874b-6f83abca1c43 1 Other Other +86c543d1-085e-4515-a2c7-c4f182462f8f 1 Other Other +86c547a1-9102-4a04-a04b-7ceb9ab4e772 1 Other Other +86c5963d-cd4a-421c-9768-a291a6f67677 1 Other Other +86c5f3c6-4c53-4f17-84e9-9430504d0d44 1 Other Other +86c5f577-e9fb-4041-82ec-dba9b2346155 1 Other Other +86c62ddf-0075-4d34-98f9-968ecb9901dd 1 Other Other +86c67ab6-0ae2-4959-ba33-68e0ce70fbf9 1 Other Other +86c6c0fa-1dfa-4fca-9385-4e8f13ab7cc1 1 Other Other +86c6fd87-95c3-402d-bfb2-d245dd1fe4c8 1 Other Other +86c712cd-23a1-40ed-99b4-420ec86348ea 1 Other Other +86c768da-f80b-4b37-9f1b-1d513cbf2fb6 1 Other Other +86c78f32-8ca9-48c9-919c-6fdb6de88c49 1 Other Other +86c827d2-983a-4dad-8c0e-bd9a5697e4b1 1 Other Other +86c8970c-9a28-4d2e-92f5-f4739b26b021 1 Other Other +86c90b85-61a1-4b93-9174-33e4e9621840 1 Other Other +86c91249-edae-48ad-a47d-c890f7ba4464 1 Other Other +86c9541e-c1fe-454c-b3ba-7f1d0964b814 1 Other Other +86ca5c94-0613-4e88-aeca-95825ebdaf62 1 Other Other +86caa234-6068-4190-b93e-ca4c94529143 1 Other Other +86cabab9-accc-4712-8c93-97e7f0b5ec1d 1 Other Other +86cad78b-7751-4140-9333-5cb34191241d 1 Other Other +86cb0862-4aec-4a57-84a6-bc4656eab244 1 Other Other +86cb1aa6-3fda-42b8-9de8-80cdb842f230 1 Other Other +86cbf67c-e8a3-42a0-8fe9-4473fb80aab6 1 Other Other +86cc1ee8-cda3-440b-a051-c3fcfcdb2a14 1 Other Other +86cc4d94-90d3-4f99-ba7b-7732db01da24 1 Other Other +86cca2b7-5efa-452c-8679-268073f2314a 1 Other Other +86ccadad-2f98-4011-8263-aa95e0a1cae1 1 Other Other +86cd4e70-69c6-4d83-b442-2ef452b8e06e 1 Other Other +86cd7057-07be-4939-b5f7-59e545a9da18 1 Other Other +86cdea71-fa24-49a6-9fdb-2c4a58e3d2f5 1 Other Other +86ce8244-4f3d-4910-89c4-d08da36689d5 1 Other Other +86ceb224-0d28-11e8-aa7e-fa163e8624cc 1 \N Other +86cec92b-45d5-4442-9803-83ff38cf6608 1 Other Other +86cececc-a3c7-4281-93d0-867ea61456ab 1 Other Other +86ced24c-260b-4b0a-8104-a6ffb63ec89d 1 Other Other +86ced2ad-86bc-4002-84b0-498abbc37391 1 Other Other +86ced3bc-cbaa-48ad-8e67-5cf3adf7ac9d 1 Other Other +86cedff2-b774-42dd-9952-bfadaf55d7bd 1 Other Other +86cee626-400b-43ce-87c6-619e2fbed36c 1 Other Other +86cee62b-c20f-4ead-91eb-d7a2c024349b 1 Other Other +86cefbf5-82d6-4b65-87fc-6a2b08889ce4 1 Other Other +86cf2117-eadc-4ea3-91d9-b6d8f1e5492e 1 Other Other +86cf3e41-7939-4d7c-b992-53873cc40cc3 1 Other Other +86cfcca7-56b8-4cb6-aed0-3811d4850c32 1 Other Other +86d0275f-798a-4042-8900-f6be6c4b4d09 1 Other Other +86d02b54-c814-4693-a5e1-7c47152a0693 1 Other Other +86d05964-61ea-493e-9a6b-64b3d0de789e 1 Other Other +86d08f76-37bd-409a-90b1-4bb1f608e7e7 1 Other Other +86d094ad-f417-48fe-9176-08660f93ad58 1 Other Other +86d0bce3-49c0-4234-abca-dacb534b6ea1 1 Other Other +86d0c04e-b051-45cb-bb9f-a1f39eb2426d 1 Other Other +86d0c93a-21b1-41fa-832e-09d976d8c05e 1 \N Other +86d1341b-7d6d-473e-9ccd-992ea8319de8 1 Other Other +86d13538-e1dd-402f-b240-16081459319b 1 Other Other +86d1507d-d6b7-471b-8507-c7673c425b1c 1 Other Other +86d1662b-6148-4ccd-87cd-809406059891 1 James Other +86d170dc-7303-4723-bef6-d60de643857a 1 Other Other +86d209b6-6f22-4abd-8f05-51ded6130d8b 1 Other Other +86d26173-1ad8-4fe8-89ab-e5524fdf8027 1 Other Other +86d29735-758a-4040-98f0-722c6246764f 1 Other Other +86d336f8-c8e2-4ceb-9a18-02af07594702 1 Other Other +86d35a07-6b27-411b-9697-8f1e1df53e89 1 Other Other +86d361f2-4ae9-4245-9b13-71f5a0331bde 1 Other Other +86d3e162-e7af-4b60-977e-292450b5cc69 1 Other Other +86d42e8f-c392-4d62-8889-c556707ef0f9 1 Other Other +86d49b56-8765-4cd9-832b-d1726e8382b4 1 Other Other +86d4be93-e5a8-4ac2-ba2f-beafc9874973 1 Other Other +86d4e14c-810b-48b5-b69c-8959e8c39d78 1 Other Other +86d50649-ca2d-45f9-a7f6-2e8ef1e13ce2 1 Other Other +86d50e22-ab09-41ae-8103-5bbc6cb9314b 1 Other Other +86d51125-7127-4f58-8747-cd04d62b82eb 1 Other Other +86d51bb4-ca47-4b8d-ba60-efd97b0ec954 1 Other Other +86d56280-374f-45fb-9130-34aca30eef08 1 Other Other +86d58565-abd3-4d1a-b578-5a1046f7d600 1 \N Other +86d58c11-c0ed-4468-b404-d3cae787cf24 1 Other Other +86d58ce6-b760-4620-aa72-c1bea2b1533a 1 Other Other +86d59625-14f9-4cfe-84e1-abb945ab85c6 1 Other Other +86d59a20-2ea3-11e8-82c1-fa163e8624cc 257f6774-64eb-11e7-954b-fa163e4dd901 Other Other +86d5c4af-e4d2-41c5-b86d-12b03b935baf 1 Other Other +86d5d834-4a97-45cf-8dff-a7dabcf5fd66 1 Other Other +86d5dd76-1ca7-4c34-91e8-da4590b5ad6a 1 Other Other +86d600cb-3dc3-45e6-a749-42df66ff3f5e 1 Other Other +86d64f2b-11fd-4d6f-93fc-9d1aa8beb5ed 1 James Other +86d6bccb-9be6-48af-b7d2-48f03d9427a5 1 Other Other +86d6d563-4cee-4af0-b76b-2669c2aee27b 1 Other Other +86d71981-fba4-49c6-a284-6720c7433ee3 1 Other Other +86d72865-1d33-4e36-b14e-0760a9d86945 1 Other Other +86d75f23-ec9a-45be-8ae8-856456d3d952 1 \N Other +86d79038-ac05-48da-9a53-67aea2b2cf13 1 Other Other +86d7bbe0-691d-4ffb-8987-ccfe0f90e2d3 1 Other Other +86d7ff56-7dd9-469b-b5d5-06dc3052518a 1 Other Other +86d89d43-1015-49ca-8ea2-95c626c0194c 1 Other Other +86d8c2ff-2b67-45ab-b29f-e775858afd5f 1 Other Other +86d9418d-59bd-47b1-b696-edd8d076a53b 1 Other Other +86d945e6-bf10-47d4-8f87-2b23cc7e5f10 1 Other Other +86d94683-6fdd-496d-b7ba-c02462004234 1 Other Other +86d966f6-e8a2-4d3a-bb90-c44f31b845e7 1 \N Other +86d96f90-2316-4dd5-b127-457ce348ac19 1 Other Other +86da1a28-7c3c-438c-b79b-7bd5ba801c7c 1 Other Other +86da1fb5-16c0-44ba-a6d9-6ddd9b8f7547 1 Other Other +86da4c17-140e-4ef0-8ad0-36c31f7704cb 1 Other Other +86da9243-53b2-40cd-9cf3-bde6fdd63800 1 \N Other +86da9a67-ac3f-4d71-b8bd-44f16a57ed1c 1 Other Other +86dab519-e360-4da0-9f19-5b6e4e391cbc 1 Other Other +86dabda8-2027-440c-aadb-620c4e13d822 1 Other Other +86db2e0a-0943-419c-992f-b25ed3c5478e 1 Other Other +86db7226-acfc-4c39-b219-1dd489c22020 1 Other Other +86db99a7-d227-4d60-8ea9-84f369acc314 1 Other Other +86dbc436-7394-4428-b02c-b9da4f502c8d 1 Other Other +86dbef1c-f37f-41b2-a0d5-33df2410dda1 1 Other Other +86dc150f-0a5f-49c3-a6b6-c4cf46b663f7 1 Other Other +86dc88df-3253-4bb6-9db7-5350da50c756 1 Other Other +86dca702-d7e6-4648-ab1c-fef8ed562864 1 Other Other +86dcc520-9765-461f-baaa-159f9df5c0b0 1 Other Other +86dcc6b7-75e0-46f9-9aac-34da06ea0b55 1 Other Other +86dd5c97-28be-46a1-a0aa-ef14af42d07c 1 Other Other +86dd5d79-40d9-44c7-93f8-b59075c9f884 1 Other Other +86dd7bc4-97a5-4f44-ae7a-6af617e80f1f 1 Other Other +86dd912d-0c71-482a-97b0-25084244bb30 1 Other Other +86dd934d-132b-4300-a0c5-b408dc3b8ffd 1 Other Other +86ddadcc-bcdf-45fd-944e-ffb6f908ceb3 1 Other Other +86ddc94b-aae9-41eb-8d73-97ee7b5f6023 1 Other Other +86ddd5cf-1f75-46fe-a184-ca1d7d1ac417 1 Other Other +86de78fa-cd18-4007-92ab-d71ee1a8928d 1 Other Other +86de8fd1-bcb3-4625-8d6f-64ad25af80f8 1 Other Other +86df0714-6b33-40fe-bd6e-a24a89682fd1 1 Other Other +86df8681-e58b-4703-a225-f1141fea9d7f 1 Other Other +86df9a58-9f6e-4229-b0df-5c59250082b6 1 Other Other +86dfabfb-1c8f-4c02-a856-00f9ef65acbd 1 Other Other +86dff9fd-fd37-4b8f-ac77-846b4b75838f 1 Other Other +86e030be-db6e-4e06-bdf7-0f3d3a4bc3f0 1 Other Other +86e0788e-156f-4c7b-808b-4933f75f3825 1 Other Other +86e08e3d-4769-4f8a-8495-e9e78a8a251e 1 Other Other +86e0cb3c-d345-40d5-8816-f2aa9f3f1a21 1 Other Other +86e0f77f-1437-45e1-8411-6fa9b0cb8963 1 Other Other +86e1807b-33c0-41c4-8e5a-827c577118f8 1 Other Other +86e195f8-2c51-42d8-b597-9d14ceb9013a 1 Other Other +86e1a72f-802f-43ef-a641-ebc38ed1a51a 1 Other Other +86e1f7f4-f7b1-494d-bf0f-f03531b8163a 1 Other Other +86e20b38-4e95-4be5-b6bf-644bb27810f0 1 Other Other +86e21a10-565f-47ca-b72a-1f6267f2b495 1 Other Other +86e22b7e-3fb2-43d4-9687-6ff71ac2889c 1 Other Other +86e26493-6ecc-4523-8fd1-d401fa5d2860 1 Other Other +86e26edd-312f-405b-adc3-93f75d6fc137 1 Other Other +86e2958c-96de-48b4-9d19-2989a980bf4a 1 Other Other +86e37183-5db0-4209-81ce-bbea1dee4e54 1 Other Other +86e37670-9777-408b-9fee-ae47a6e267ae 1 Other Other +86e382c1-e169-4f4f-9a92-a20415ef635f 1 Other Other +86e3841a-b486-4fcc-befa-82958c97b223 1 Other Other +86e3d7e5-dff1-48f5-af85-0db6b045fc6b 1 Other Other +86e46335-9e4a-4848-a645-53df294efe64 1 Other Other +86e57c4d-8d59-4637-99af-250e4bf76fb1 1 Other Other +86e62b66-8efc-49b4-bca0-c2df8f72bc10 1 Other Other +86e64215-be35-4c73-818c-e9e481a8d6c0 1 Other Other +86e688e6-a26a-4bd1-8e1f-a76e885b093a 1 Other Other +86e691fc-6dcf-41d6-9a89-3cee371226ed 1 Other Other +86e69fe4-f564-4012-a7fa-fb65d20cfee6 1 Other Other +86e6d93f-f076-408a-8eb3-edfbd0a330d3 1 Other Other +86e6dda7-9fe3-4d37-93dc-fa40cc66c9dc 1 Other Other +86e6e216-aa4f-4ca0-8eda-d86397da6aa2 1 Other Other +86e6fe0d-1a64-4eb8-864b-9dd8395f28ca 1 Other Other +86e7084f-b6d4-43a3-bed2-6f387f25a89f 1 Other Other +86e71285-5f74-455d-be3d-ea7ce7fb289d 1 Other Other +86e71daa-2ee8-4d5f-b3f0-0bad73a7c6db 1 Other Other +86e7280b-b8d2-410e-a306-d24123f4e96b 1 Other Other +86e72b0a-a5d0-4ad6-9ccd-8b6b76eb28bb 1 James Other +86e74b18-de3a-47f1-a23f-a8f51d7bea52 1 Other Other +86e75d2d-0df7-4cf5-9b6b-bf486952230d 1 Other Other +86e7606d-5e09-4bd0-be81-ddd0862f8d29 1 Other Other +86e7805b-227b-4d4b-84c3-d2b0543e32e5 1 Other Other +86e78630-1e60-4c28-9955-5af44c17bb93 1 Other Other +86e78aa9-d7c2-49d0-a98a-6e6e832576bb 1 Other Other +86e7b139-fcd5-4d87-b8b6-063966db24f9 1 Other Other +86e7b734-cfa8-4702-bc2d-44cab401355e 1 Other Other +86e7f863-449d-4a7c-844f-c9f21575dcb2 1 Other Other +86e824c1-e40f-4879-8d89-5ecc8512d6e7 1 Other Other +86e88e4b-4c46-48d9-91c4-d8fd54dbab97 1 Other Other +86e8bb63-3ac0-43f8-bf63-c129d60c59ed 1 \N Other +86e8e43f-9b7c-49d2-8cb1-fff5af07cabd 1 Other Other +86e8f938-224c-4d45-a4a9-dee0b8ad3217 1 Other Other +86e905f1-4351-4442-b27a-c58674ecf0b1 1 Other Other +86e973a5-9280-4f5f-8860-8eb1d0a50ef7 1 \N Other +86e986ba-3a2f-48ab-bfc0-e51a56b22ff6 1 Other Other +86e995ab-e506-43d3-8fd6-d5bebe3047df 1 Other Other +86e99bc6-5558-405a-b935-1dd00890fa68 1 Other Other +86e9ad92-aab3-45fc-b57a-16b8f7988ed4 1 Other Other +86e9da11-63b4-4af9-8309-5575a70847f3 1 Other Other +86e9f5a4-2fc0-41c5-8fa0-8d7df62dc2a0 1 Other Other +86ea344c-d1df-4b4f-b5c2-560d4541f6dc 1 Other Other +86ea35c6-aeca-4bf8-8260-d70460ded598 1 Other Other +86ea3b9f-1d49-43a3-b669-298d9dae3c29 1 Other Other +86ea47bb-0960-4a77-940a-9bc7b2300381 1 Other Other +86eb06fe-aa00-4573-9778-c2515e64293e 1 Other Other +86eb1f61-e51f-499c-a0b4-dc1b197c951b 1 Other Other +86eb5898-b10b-4da8-91e2-e2e6e31e293f 1 Other Other +86eb84fe-8789-44a0-8d18-e4305f3d0434 1 Other Other +86ebac7e-0f9e-49bb-9217-179aa50013f0 1 Other Other +86ec0092-cc56-4407-9608-64f014a59523 1 Other Other +86ec58c3-46a1-4a0b-bb01-ed036fbdfcad 1 Other Other +86eca9c5-30d7-4a3c-8825-e8fb9e82c95f 1 Other Other +86ecb1ee-955c-4736-80d2-6d3bb85737fa 1 Other Other +86ecce7c-f265-42e0-be2e-58a6ebfd25b6 1 Other Other +86ecd1f6-237f-4153-8d38-94eb640c099b 1 Other Other +86ece003-3b66-4c56-93de-af892863fdf4 1 Other Other +86ed209f-40ca-4732-b9f1-e376c5438121 1 Other Other +86ed4e79-ab7b-4836-8b63-4fcfe99dcaff 1 Other Other +86ed5598-0380-4bba-be46-4057564e626a 1 Other Other +86ed67fc-5558-42ce-9fd4-e19314603b76 1 \N Other +86eda5eb-4c85-49b2-a551-6b17e5adde23 1 Other Other +86ee14ec-dc06-417e-9745-6876c4342800 1 Other Other +86ee1edc-2195-4dfa-8f96-8a7e78d905fb 1 Other Other +86ee3bdd-e5ee-4668-9757-a5febf12215d 1 Other Other +86ee4855-f846-4832-9b5d-cfadd81df315 1 Other Other +86eead40-720e-41e5-a9a3-4a60b8a81939 1 Other Other +86eebf6f-c01f-4d7f-9fca-1fb4a5b9b4ea 1 Other Other +86eed05e-8b77-40c2-802f-157977c44d30 1 Other Other +86eef816-9895-4007-b138-abfef445b271 1 Other Other +86efa534-70b3-4dd4-bd43-5871385d1e31 1 Other Other +86efc2ea-66a0-4cb3-bea7-b8002ac0f5d0 1 Other Other +86efc63e-40ad-4f8f-a462-c8548f6c6dd8 1 Other Other +86efea44-4b30-40c5-b0a7-d12d0c541069 1 Other Other +86f0065e-1ad0-4068-9403-28b9efe27b5e 1 Other Other +86f041db-b301-4cb8-aecf-dcfdfb1d6bec 1 Other Other +86f0aaac-0838-40ad-9ce8-638f40bbea62 1 Other Other +86f0b1cd-596e-4325-9cf4-daa5de306e75 1 Other Other +86f0d536-632b-419e-8d35-74a1c19d0fa1 1 Other Other +86f0e9b4-aa9e-46d7-83f0-112a69dc3d86 1 Other Other +86f11d5c-49d6-49cf-accf-214dc197a7b4 1 Other Other +86f12b48-09a4-4202-a97a-e00f13d5d78d 1 Other Other +86f164cc-c3e4-437c-947c-9b91773e8c2f 1 Other Other +86f1efef-ea91-42c3-9fbd-b93bac006e66 1 Other Other +86f1f4ee-1433-46bb-a6d2-74855a617f8d 1 Other Other +86f1fc1d-2acd-4aa2-abfd-1deaeb6cde3f 1 Other Other +86f20857-daeb-44cc-913b-f8e55ddd7940 1 Other Other +86f2179a-b64c-4e7a-ac43-ef17f473e9db 1 Other Other +86f2327a-b8b9-4ef7-8534-47c4af2d9520 1 Other Other +86f23a01-9eaf-4c46-8fc8-60662110e5c3 1 Other Other +86f29650-d37d-4843-9018-17b895d0d520 1 Other Other +86f321e8-7a8d-46c3-b7e0-68686f982d56 1 Other Other +86f3326c-940e-4e06-a02c-44a3e3a345ae 1 James Other +86f33b1d-dd21-434d-8b44-5a7f0b203fd8 1 Other Other +86f34494-5bb4-492b-972d-797850486cd4 1 Other Other +86f35f47-6b74-4093-af43-8691e8464697 1 Other Other +86f37545-23b2-451f-afe9-b1eb9204fcd4 1 Other Other +86f37ba3-2dcf-413f-ae75-0d3b3be17309 1 Other Other +86f3a714-d9c3-497e-927e-abb75031ad10 1 Other Other +86f41983-623b-4b01-8e9a-1a047e7c6e67 1 Other Other +86f44f42-3dc6-43e5-8e2d-3823143b5992 1 Other Other +86f45caf-3b67-4410-abca-361106de2461 1 Other Other +86f4674e-09ce-4eb9-b0cb-6be5c08b1fa9 1 Other Other +86f4a93a-e2f2-4835-8896-ca58fe68bdec 1 Other Other +86f4b9df-ec94-432c-b213-c11250fe46c7 1 Other Other +86f4d78d-cd31-4e3e-a31f-14339dd99112 1 Other Other +86f4da31-c14d-4089-a059-01a09d7b6a42 1 Other Other +86f4e04e-1b1b-4770-91aa-91aa3a8dc158 1 Other Other +86f4f1e1-f00c-43fe-9c08-8b3a50ae70c8 1 Other Other +86f5312c-e7a5-4128-ba4d-a51a095ef40d 1 Other Other +86f57080-a2c0-41b9-a6eb-5da66152e369 1 Other Other +86f57a07-6d14-4cc3-8b7d-0f19181a0c33 1 Other Other +86f5ca26-0ebf-4e75-b2b8-389aebfe6b36 1 Other Other +86f60967-4fc7-40c1-b9ce-d56e42e1255b 1 Other Other +86f61039-2cd4-4a74-84f7-0c1094195269 1 Other Other +86f651ad-11bc-48a0-9840-8410cbc132ed 1 Other Other +86f66ab5-79fb-4972-9eeb-fcc478bf2831 1 Other Other +86f74560-1d65-4c0a-9473-b1ae4df4ef24 1 Other Other +86f79806-18df-4595-b8b7-e2ba0ee88431 1 Other Other +86f7a6ea-0a96-478f-b023-0bc84abe0d76 1 Other Other +86f7a9a0-d841-483f-b09d-db133d7bfd20 1 Other Other +86f7c3ed-dfb2-40fe-b14d-12ce03311510 1 Other Other +86f7eaf2-ed94-4331-8a13-69dc0d8320f9 1 Other Other +86f7ee33-ac31-471f-b335-e1cbd89e7112 1 Other Other +86f82382-1b12-4412-b550-213608ac504f 1 Other Other +86f89771-53db-4870-82f8-bf5e77ad108e 1 Other Other +86f8cd20-9837-4684-b3b1-57a3880221fb 1 Other Other +86f8e8b7-a709-42df-b894-8db248d8c82c 1 Other Other +86f8f737-6370-4afa-82c8-765927bd1e53 1 Other Other +86f9117a-0c42-482a-83bc-0cd4a173a2ec 1 Other Other +86f928eb-790c-49c8-b785-a324ac3bd2a3 1 Other Other +86f94dd7-7845-489b-ae67-91c4e821bffd 1 Other Other +86f95005-06e9-4621-8b0d-96906d2acaa4 1 Other Other +86f96d57-2f4a-4b28-bb4d-267c076dbf2f 1 Other Other +86f99f04-85de-44c3-b565-a7aa6e28c88c 1 Other Other +86f9cb6d-8165-4478-b601-d09da62d8be3 1 Other Other +86fb0524-2e84-4755-ad94-e7623a3f7ec5 1 Other Other +86fb1083-52bd-4e70-8c05-3505832e5cc2 1 Other Other +86fb3de6-3ae3-4c1d-b6f7-74e6d69caf8b 1 Other Other +86fb5d5b-ae4e-42c4-aab9-0c4ada3a9e16 1 Other Other +86fbb477-192b-4146-87b3-e54b7d618668 1 Other Other +86fbd023-0219-427e-93df-2422c1315b12 1 Other Other +86fbf27f-92c4-462e-8eec-7ef477c9b85e 1 \N Other +86fc0a2b-146f-4ffe-8920-336b60fc840e 1 Other Other +86fc7bd3-9278-4ce3-a1ec-ad63bbc3b741 1 Other Other +86fca95c-4ce1-4206-84dd-4f5ed73d436b 1 James Other +86fcc136-67c9-470a-8395-c9b324c880e2 1 Other Other +86fcf6c2-dbc2-4e3b-810d-440d668b4898 1 Other Other +86fd07e7-aa77-49ec-93d2-83ca045a571e 1 \N Other +86fd619e-8e66-44c5-8b37-da7b12e3328d 1 Other Other +86fd628c-1ac7-4128-8397-51120dc312b9 1 Other Other +86fd71da-e940-4edd-b8be-b33e8b45230b 1 Other Other +86fdd521-1c40-4d27-b030-40e6ab6ce71a 1 Other Other +86fe3273-4316-4ed1-a68b-ae5b7136638c 1 Other Other +86fe4732-da42-4f94-abf2-84d8accf51f4 1 \N Other +86fe7c2a-f992-4d85-a77e-832aeda1e3c8 1 Other Other +86fe895e-7f65-489d-8401-49b2cd57d1eb 1 Other Other +86fe9959-dc7f-4ab5-8161-00fe9e33231c 1 Other Other +86fe9f75-8064-4a50-9a91-b9122b33899f 1 Other Other +86fefdad-8071-4cb7-a875-f359b3323a7f 1 Other Other +86ff51dc-849d-4c19-8e10-c1aae1f01747 1 Other Other +86ff72d7-8c2f-49e0-a096-c8ea1a7444c4 1 Other Other +86ffdf4f-a4e3-4ad3-bea9-a9971f847e9a 1 Other Other +87005109-a427-4517-9c41-20f6f537f982 1 Other Other +87006acb-8695-440f-a433-59985282c1cc 1 Other Other +8700b488-0a24-42a4-af3b-d4b394f1c67b 1 James Other +8700d931-8b64-4a45-bf47-4ba223586531 1 Other Other +8700e157-28cc-4689-8bd5-0ba690824de0 1 Other Other +8700f236-77f6-4bf7-bc44-be4a4128be4f 1 Other Other +8700f719-a1d9-436e-9249-6ec912533e8a 1 Other Other +87010888-8261-49b3-8abe-87f6d8123753 1 Other Other +870160d3-f609-431b-979e-61009de10e34 1 Other Other +8701819b-1454-4e25-aaf2-3a9bc2d8b141 1 Other Other +8701a223-4da3-4493-a1a1-a83d8d4c1642 1 Other Other +87020781-d757-4e6f-b555-5cd210f02523 1 Other Other +87026ed2-9890-4e6a-85ae-93e8cabd1afd 1 Other Other +87027c19-d87c-481a-bafe-ff20dd9820fe 1 Other Other +8702c36c-0ff8-4b97-b53a-370a37077967 1 Other Other +870338c8-1cd3-4b16-8f31-76b89f0cf44f 1 Other Other +8703651a-f850-4ccd-996c-fd81f64e7ee4 1 Other Other +8703938e-e098-4013-be4f-9150c6370b59 1 Other Other +8703b79d-db51-4160-a072-18ae1207c226 1 James Other +8703ead5-d081-4edd-967f-45bea3a69dca 1 Other Other +87041506-09b0-4346-87ad-d954f5150d15 1 Other Other +87042372-05df-4271-9968-09cd8b6afa47 1 Other Other +87042a57-d4cb-43a5-9ef7-c5de2a31aadd 1 \N Other +87042e87-5b95-4a6e-a95c-1147a5d759c1 1 Other Other +87043fdb-e0dd-4cdd-8473-ca00ba7d5830 1 Other Other +87045e66-a389-407b-b9d1-0736f0454bfd 1 Other Other +87049500-e768-40cf-92be-b88c6916c0ef 1 \N Other +8704a3a4-fa66-4362-af8d-1428ef610a13 1 Other Other +870513d4-692a-4c56-a375-971172a6daa1 1 Other Other +87051c36-776d-4421-b8d2-d415c0c68717 1 Other Other +87052aee-804b-47a3-9ad7-44a2ad479c82 1 Other Other +8705411d-722d-4d3e-8091-9403dde3ff7f 1 Other Other +87054f2d-f5db-4d06-8c89-dc50c21a18ba 1 Other Other +8705fa72-d633-4f5c-8c23-927a779c40e2 1 Other Other +87067688-6140-4875-aea5-12baf051d06b 1 Other Other +8706ad6f-386f-4bd3-95e3-dcf382ecfd28 1 Other Other +8706af42-9288-40dd-ba62-020aa668ca79 1 Other Other +87078999-4590-4fed-b9cf-5ccf291ff859 1 Other Other +870796f5-6c9d-41ec-8bcc-70ace289ae9f 1 Other Other +8707a0d3-9125-4e78-9249-1262da751f87 1 Other Other +8707aa50-6a43-4110-be6b-9fc3cf078fed 1 Other Other +87080e81-88df-4ce0-8224-7107105717bb 1 Other Other +87081063-1b52-4cec-9650-792ae24b30c2 1 Other Other +87088862-de18-47b1-9dc4-aa251eb894b3 1 Other Other +8708d5fe-53fe-4588-bc57-2f943ffeebdf 1 Other Other +87091e54-d9f4-42e4-8b2e-2bc6568834b2 1 Other Other +87091ee3-bda8-4203-b5f1-87564557c4c8 1 Other Other +87095d71-c220-4be1-a741-f69d6a56f269 1 Other Other +870960ba-f25b-480f-8c1e-6baccf5e026b 1 Other Other +87098927-ea7d-4912-8d6b-07b618a0d905 1 Other Other +8709a094-bba8-49a0-9712-c1fd604d273f 1 Other Other +8709d230-d141-47db-9fc6-d791e41f542d 1 Other Other +870a5ac0-a03c-4e1f-9cf7-f69cf4e5daba 1 Other Other +870a7842-0ee4-47bd-a26b-4a61abb7270f 1 Other Other +870af8d3-7d3d-4a75-bfcc-a335cb0f31c2 1 Other Other +870b0022-8ad5-4bf1-a54f-e963bc9a7f0f 1 Other Other +870b406b-5995-4efc-9039-3edab971e338 1 James Other +870b4980-9d9f-443d-9aa3-c80a35064b14 1 Other Other +870b60c7-a035-45a6-bf80-c037d0a1630e 1 Other Other +870b73b4-cb16-4b43-834e-92252235842e 1 Other Other +870b8c6c-9469-43c1-b10f-24058ab4d88d 1 Other Other +870bac7e-e5cb-4479-bf6c-7215e160a08e 1 Other Other +870beb4b-2211-42a8-8bb0-341ed68fcfbe 1 Other Other +870c05d8-675a-4c6b-b369-f204920a23ae 1 Other Other +870c1a90-e1d3-4cc0-9316-937adf3dd413 1 Other Other +870c6659-03a8-455c-b7d3-0d0911709e4f 1 Other Other +870ca8c0-403c-4427-b8c4-51e28c46d7cc 1 James Other +870cf3ac-fedf-4812-bf92-df16593030f0 1 Other Other +870cf67f-f7f0-408d-8c68-6ccd8285bfef 1 \N Other +870d370f-102d-4321-a656-f5db2f4da3dc 1 Other Other +870d3ce9-190f-4821-b6e1-14cf01f264ca 1 Other Other +870dade9-3f56-42ed-abbe-f81b93e9a0dd 1 Other Other +870dc217-14ab-44fa-b772-1af9d1eecf5d 1 Other Other +870e0f38-e474-4cab-b033-79e4d2be5d04 1 Other Other +870e2315-7c5a-4ea5-ba47-710fc379153a 1 \N Other +870e3f62-d1c2-47de-9187-c4209bf4cff1 1 Other Other +870e5707-2b81-4d06-8adc-518ff5d35d99 1 Other Other +870e71cb-b977-4531-8e30-285666ee3084 1 Other Other +870e7d7c-681a-4969-8c53-4d43a00605eb 1 Other Other +870ea7b5-900d-46aa-95f0-3bbdc833582f 1 Other Other +870eb909-d3aa-4361-940b-42117f46df66 1 Other Other +870ef29d-6736-49e4-a293-c78ecb573893 1 Other Other +870f2c6d-b7e3-4e5b-bfbe-743b781497fe 1 Other Other +870f3279-6860-41b1-be81-cb419f954d41 1 Other Other +870f574e-76f6-4aea-8b77-c91c3d5f447a 1 Other Other +870f5a28-5b44-42e9-9b36-1e28c4457d8f 1 Other Other +870f60ec-7819-4129-ae4c-8a5e098454ea 1 Other Other +870fa723-99ff-4025-822a-059108bba705 1 Other Other +870fbbbd-714b-4955-8122-b4765e3676cf 1 Other Other +870fcd1b-c1ab-4b1f-8ec3-04c498588a15 1 Other Other +870fec0c-b627-467e-b26e-51fac21199f4 1 Other Other +8710052d-66e7-49d3-9a27-5b1c7be53b18 1 Other Other +87103baa-0e11-4029-8a96-26802d39d9ff 1 Other Other +87106498-e842-4dc6-842b-c557a3f5e3d1 1 Other Other +8710857d-8c7c-4350-8685-748532e08d1e 1 Other Other +8710a704-1460-4103-b4e5-bdb2891a21cc 1 Other Other +8710f5ca-0509-11e8-b5af-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +8710fe6a-b2cd-4ab1-b357-552212c18f93 1 \N Other +87110080-81ea-40ba-bac6-ccf11835d4a7 1 James Other +87113591-9c6f-4227-9892-f4bbf6cf39e7 1 Other Other +87116d2a-4f42-4bf3-8e72-01575479eabe 1 Other Other +8711950c-9828-433b-92c1-d64d8f93c883 1 Other Other +8711e0a0-a6a7-440e-bd66-deb83583bbd1 1 Other Other +8711e1c8-430d-11e8-9187-fa163e8624cc 257f6774-64eb-11e7-954b-fa163e4dd901 Other Other +8711eb30-d0d0-4b0d-8dbd-b132332b32af 1 Other Other +871252bb-452a-4aff-89fe-d90862ddb54c 1 Other Other +87128972-e2b0-41b7-abb3-39786fb560c0 1 Other Other +8712ac73-170f-4489-b925-4c32debdb7b1 1 Other Other +8712b7c8-4d7e-4dbd-9a02-70491bfddf17 1 James Other +8712ecd6-32ed-46b3-8147-7cc7aa105552 1 Other Other +8713188e-5480-4c14-a98c-783f9595a54b 1 Other Other +8713435e-1d77-4dcf-b207-9e7045c498b2 1 Other Other +87135c5b-5a92-4d1e-854a-56edc567e141 1 Other Other +871423b9-a8c2-4ca5-9ddd-546316f590ca 1 Other Other +87143aa7-965f-4251-9d6e-ad0c55ee2bed 1 Other Other +87148984-7786-4fa5-9104-e8ce74e63c65 1 Other Other +8714bf46-6fb8-455a-a24a-3f4f3879353f 1 James Other +8714bff3-6f27-4ea2-88ec-ea417036167f 1 Other Other +8714c18f-fe8a-4b3f-9656-8ddbdd57d50c 1 Other Other +8714ced2-6450-4cee-a7be-f932959a140b 1 Other Other +8714df2c-05c9-4029-81e4-23cedc418c70 1 Other Other +8714edb9-a397-4511-a6ff-08fecc7934a6 1 Other Other +871514ea-56ba-4b1b-b90a-561c9194cbc4 1 Other Other +87151e9c-bf45-4c8e-966c-4f39b35cfb1c 1 Other Other +8715d1bd-7f76-4366-b810-abe1856205cb 1 Other Other +8715d912-3c59-41a3-8d1f-40a8b577d537 1 Other Other +8715d9e0-fa8e-468e-9280-3c2ed177c912 1 Other Other +8715ddb2-2ee8-4648-942d-3fcf33cda7b9 1 Other Other +8715e94f-782b-40a2-9f83-9f1922e78a0e 1 Other Other +87166384-8746-4236-87f6-a1306b6731b9 1 \N Other +87166f0d-0f66-4992-8030-70c22778944c 1 Other Other +871698f7-6270-4a25-84bc-dddcb8865198 1 Other Other +8716ae0c-0ed1-4ea2-9f1f-655cdcc5ac0c 1 Other Other +8716deb3-c780-45a5-9357-20e6237ffcab 1 Other Other +8716e25d-8809-48c4-b491-2a62127d5681 1 Other Other +8717039b-1676-420d-89c9-17b066b518f9 1 Other Other +8717198e-b43b-4116-bdd8-ed95e9627b55 1 Other Other +87173279-34af-49bb-99c1-ecc034d6903c 1 Other Other +87176bb7-452a-4a11-b5bb-c1bee2f008b3 1 Other Other +87179965-ceca-4f6f-8b36-bd60a4a6da06 1 Other Other +87181ac8-cc36-4d4f-9315-bd7b51eafb0b 1 Other Other +871886a5-eb69-4577-a4be-eee3b118d397 1 Other Other +8718876b-8f10-4352-a948-3b41d20a2153 1 Other Other +8718cfc4-9b6c-43bd-8a3f-2101f74f4ca9 1 Other Other +87191088-4bf6-4ada-bca9-14c7b6ac612a 1 Other Other +87192d63-641b-44e9-a05c-15a4ca1826b2 1 Other Other +8719948c-54b8-4d77-bc86-e47de65ccb65 1 Other Other +8719cbb3-d051-4029-ad19-d8c178b44b86 1 Other Other +8719db70-a54d-459b-85d5-ee943779c382 1 Other Other +871a3707-8bef-431d-93bf-08a9021c5da3 1 Other Other +871a76fe-1a59-498a-b485-1c7ae5fb25e8 1 Other Other +871ae073-ef63-4774-ab37-60eef9280908 1 Other Other +871b1130-73df-4e0e-98b7-b2e35447a4b4 1 Other Other +871b14a6-baad-4fd7-86ff-2ae7bfc7d576 1 Other Other +871b7f43-7f3c-49b3-8eeb-7dac189f3b3f 1 Other Other +871bae14-c887-47f4-9016-e9b453503fff 1 Other Other +871bdaf7-a4fb-4329-a1a4-eec5781b8120 1 Other Other +871bdd9e-52fe-47fe-a2bd-3950c91a6a48 1 Other Other +871bde8b-f72b-4491-8685-e5d261cd5285 1 \N Other +871ccfe2-ad78-405a-81cf-a0b7d4087fb2 1 Other Other +871cd1ee-d9a3-48ba-ba1d-c2f79e6691eb 1 Other Other +871cf60b-3bbe-46d3-880c-56e679b89ae5 1 Other Other +871d1e9e-bc0f-46e4-9bcd-d0ed064428c3 1 Other Other +871d2e0e-2b26-45a0-9cd0-1f9b040291e6 1 Other Other +871d2f2f-dd5f-4edc-9159-ae64366fc33e 1 Other Other +871dc06f-42c9-4a9d-9342-aa29b6b227a9 1 Other Other +871de509-16dd-447b-89d1-a419ecbde55f 1 Other Other +871dea30-68a7-46ec-ac5e-c76586f7dc15 1 Other Other +871dfe45-7fa4-4e18-b456-efe4cc6fb041 1 Other Other +871e1cc1-30cf-45ae-b665-668009e4f917 1 Other Other +871e4157-9813-4d52-a115-baa8b48266d7 1 Other Other +871e8e13-0361-48a3-b83e-b29b3b6b7b7c 1 Other Other +871e9d27-a173-4e04-bf8e-63832fbde88d 1 Other Other +871ed1bc-d4e7-477b-9bb2-d1cd060ad6b4 1 Other Other +871ed38a-e606-4206-af98-60d4c2409109 1 Other Other +871eef14-110b-4010-84dc-88bbfcf0256e 1 Other Other +871f2113-caa5-432d-bf2f-51c69f7f1d3b 1 Other Other +871f68ae-c93a-4488-af5b-9f3b6620491d 1 Other Other +871f8bd8-1645-412f-b91f-fdc69ec178a8 1 Other Other +871fa32f-bd81-4918-a2b0-db4b9b54f071 1 Other Other +871fefc3-0ba6-4c0a-88d6-b3f3aef0d5c8 1 Other Other +871ff338-c4b4-42d5-ae2c-444a75b50d2a 1 Other Other +872019b8-5990-481a-9608-7bb798e16cfb 1 Other Other +87202bc7-5287-49bf-8971-f0c80f6aac13 1 Other Other +87203423-b7e6-46c1-b6a2-32321ebb2948 1 Other Other +8720418e-5601-4a7e-96e5-2427509f7611 1 Other Other +8720694a-1f9f-4775-88fc-355c0c1a6548 1 Other Other +872077ef-3673-44c4-91d4-914dafbbf738 1 Other Other +8720a7f4-50d1-4f00-8678-17529bd4aff9 1 Other Other +87212f77-1fcb-49dd-80cd-9864fb178e4e 1 Other Other +87219172-897d-4999-b6cf-dade1d2dbe79 1 Other Other +8721f0bd-0642-4f2f-aae8-70b001c22dc9 1 Other Other +872227ff-7718-4e04-bd9b-7bdf6db4c72d 1 Other Other +87224a98-0197-4e7f-bd1e-a77d7735596e 1 Other Other +872295f0-9ee4-407b-b2db-a1fb8dd07803 1 Other Other +87229d99-7538-4a25-ba00-ef033030fd1b 1 Other Other +8722d9fc-cab8-4ebc-8ffb-7778f7f3c2bf 1 Other Other +8722e477-8577-4fd1-9e23-1347cc3ce44e 1 Other Other +8722e783-eb20-41c1-ae85-22f2841ba05b 1 Other Other +872314a2-28fc-4e61-8b50-35ed62b21d09 1 Other Other +872339a2-08f0-45a4-9df3-1b87f92ecccb 1 Other Other +8723ad78-5cb1-4cd9-90b3-478227610deb 1 \N Other +8723dda5-6444-4f2b-9f7c-f5b053a390e5 1 \N Other +8723f6c0-ba4e-4011-87b6-8b66385b0806 1 Other Other +8724d833-5b45-4dcf-b953-66ea60201ae3 1 Other Other +87251a49-df12-4b4e-8fe2-470a47473df3 1 Other Other +872521ec-a0fa-4803-9b01-ecf48416f991 1 Other Other +87253b29-9b3b-4b7a-ab47-92d9189dc946 1 Other Other +8725682f-cd9c-4002-bbdd-535a76ef29f3 1 Other Other +87258208-b274-44d1-9f50-b90e6afde3ce 1 Other Other +872585e0-d9b0-400d-aa23-a46b383f8ba8 1 Other Other +87263811-e38f-4887-b303-9b1e5ef81eb0 1 Other Other +8726cbe9-49d9-471b-b56f-e4d5c88f5dd3 1 Other Other +8726d523-e6c2-4b42-87b5-25157c7f3acb 1 Other Other +8726f754-9aa1-4796-abd8-3d3d50518062 1 Other Other +87272757-1504-47b5-8af8-40ff87afd4b3 1 Other Other +87275741-d2ef-4be4-b0a7-78c1cd556856 1 Other Other +872767f7-09f8-4a25-941c-4ebb06ab0b78 1 Other Other +87278f16-b517-44a0-9963-0f57f2597b98 1 Other Other +8727ce9a-6baa-45cc-aab5-4840dbe2bf41 1 Other Other +87283f6f-8afe-4637-a2d5-3aa5df61ed3a 1 Other Other +87284a2c-f289-4f35-8966-55fcc2bd417d 1 Other Other +87285ca2-f124-4199-b978-bdc1ce3780a3 1 Other Other +87286b30-29b5-40be-ad3d-aeb2e3cbde84 1 Other Other +872876dd-80dd-4b67-b4bf-132c9dfe3fe5 1 Other Other +8728b0f2-bbd8-4319-a5fc-21a211da4fe6 1 Other Other +8728b60f-fe24-4c23-adf3-8c6c5e6d459c 1 Other Other +8728e47b-66a1-49b0-8772-f320073a977a 1 Other Other +8728f53b-4801-4bd8-8158-c2b897f9868f 1 Other Other +87292de2-2b77-4562-9b01-8c1955fcb331 1 Other Other +8729679a-6d4e-4a54-ab56-dbf213c3aaea 1 Other Other +8729699d-3ca2-4b8c-9712-85b3f4850d04 1 Other Other +8729a57b-038e-47cf-b839-a77564d3609f 1 Other Other +8729acb2-d094-4619-83dd-4c679aa0bef9 1 Other Other +8729c0fb-05fe-470e-845f-1013f88629ed 1 Other Other +8729fde2-3986-4dc7-9ddc-94d68c4e841e 1 Other Other +872a210e-0c8f-4772-ad88-1d331dbb42c7 1 Other Other +872a29a3-8528-4d49-8459-ab1703a0b5d7 1 Other Other +872a2fb5-0814-499d-b551-d055849cf4ef 1 Other Other +872a7524-3c4c-4a4a-8e81-32ce24658cf7 1 Other Other +872ad8e7-3772-4ca1-b614-16e0c580c455 1 Other Other +872b02b4-39fb-4cfa-add3-cec5536f7fd5 1 Other Other +872b0670-07b7-4442-996f-855560f0c461 1 Other Other +872b453e-9691-4a14-81fd-4dfcad40d3c2 1 Other Other +872b6628-4a84-428e-81e4-46514ab8dcc4 1 Other Other +872b8e02-49e6-43c4-9686-8fd438d0a150 1 Other Other +872bd829-bcec-4b72-bb5d-702acc57cd3e 1 Other Other +872be2aa-33c0-414e-97ba-7bc5cf232d9e 1 Other Other +872bfdc8-edee-46ff-b007-3f34d56e231b 1 Other Other +872c07e8-36f3-40b6-95a1-7c6d19e0f3fc 1 Other Other +872c2755-eb03-4cb6-8142-76eb1f78f6b4 1 Other Other +872c5618-3651-4455-9bc8-1489f1d7d752 1 Other Other +872c7052-3f23-438a-bdef-a8933a7028b9 1 Other Other +872c8303-82e5-4edf-b920-1204770c8882 1 Other Other +872c917f-5bd5-41ef-969b-4a57b5008552 1 Other Other +872cae3b-777b-49ae-a358-96a756277dc5 1 Other Other +872cc819-0205-4d99-bc4a-ede7160d93ca 1 Other Other +872cdd2b-c0af-4634-b390-cc923955521d 1 Other Other +872ce056-0f20-4350-900d-31cb65a02756 1 Other Other +872d1356-67f2-48df-839d-acd4947b2b19 1 Other Other +872d138f-7558-4113-bb19-77e8a2d961a7 1 Other Other +872d3b43-ee45-427f-86b3-07195470d3a7 1 Other Other +872d644e-960f-4a70-9a62-3dc3dcaeb7fd 1 Other Other +872d7a79-fe62-40b9-8e20-623b246f4286 1 Other Other +872d8d74-663a-434c-a6fb-e1eebac0e4a9 1 Other Other +872da871-6852-40ce-97f6-b0e565c5d9fc 1 Other Other +872dac68-ae47-4924-a599-7a81c70f624f 1 Other Other +872db88d-2fab-449b-96e7-5279c9254169 1 Other Other +872dba26-0d8a-4967-accd-7ce3ba8f8093 1 Other Other +872dbf45-9913-4526-b262-1bc179e085f8 1 Other Other +872df56a-dfb5-4081-a684-24b30327daea 1 Other Other +872eaf9e-b807-4f79-af32-e6cac9120b47 1 \N Other +872efe87-4c5f-4997-aa4c-89b4ce8b5ac8 1 Other Other +872f1787-7755-4761-bfe7-11000b6deb46 1 Other Other +872f5344-5d44-484a-a25d-2ac37f7dbda4 1 Other Other +872f8cea-d64f-493e-b098-961a3201a4ca 1 Other Other +872ff8d6-450b-41e5-a019-303d50694b77 1 Other Other +87300bbe-16ef-43c8-8c2b-518f6d36d540 1 Other Other +8730125e-321a-40aa-bc57-bb1f80deb47e 1 Other Other +87301723-af5b-46d2-bd0e-65ec99aa2a3c 1 Other Other +8730e10b-4600-4c7e-8201-db915b020d37 1 Other Other +87313d5b-69d7-4969-97d4-244677740830 1 Other Other +873152eb-a52d-4dbc-be34-48edc0769c81 1 Other Other +87315d0b-1b4d-4e0f-a1ae-223adc915a73 1 Other Other +87317c0b-a1f1-41af-b23b-208130ec69ce 1 Other Other +87318a04-d631-4ea9-b57e-d85ad1f4f509 1 Other Other +8731d630-3dac-4af1-ac3c-f7ffd2886d49 1 Other Other +8731f5eb-3b6e-497b-88f1-8cc05b68efbf 1 Other Other +873215e5-fe0b-44dd-94c2-346d53cbd445 1 Other Other +87321f7b-99e3-4299-a1a6-3eb8ba413257 1 Other Other +8732434b-8d78-4f33-9228-261495ee03dc 1 Other Other +87326ef9-2710-448c-8f65-8c6d4ed43302 1 Other Other +87329592-1415-4021-bb7c-59a593267fea 1 Other Other +8732a59e-5e4e-463d-b85d-61c583e00927 1 Other Other +8732ad14-1956-4807-82f9-58d143e4450c 1 Other Other +8732b892-1b4e-4c77-8b27-877c81322c25 1 Other Other +8732d8f4-dcdf-42af-b02c-abb83b6ba1df 1 Other Other +8732e4fc-35df-4abd-aa4a-49896b63d610 1 Other Other +8732fae7-6672-4cb0-af82-117e7a582dfc 1 Other Other +87330a58-5563-4f31-9834-c1904f5e6f36 1 Other Other +87333a6b-e7db-4c83-af4b-ea593c45a28f 1 Other Other +8733923a-4f12-4c12-beda-cb80050a8599 1 Other Other +8733a4c1-bd48-4199-892a-f65235558fdd 1 Other Other +87340da4-eb45-4a43-8f17-1b60ce37a0f3 1 Other Other +87342cab-6845-4b18-8387-1a32af617d24 1 Other Other +8734436e-1c00-42eb-83c3-23776eee933e 1 Other Other +87347df5-56e8-4b29-a8b6-f9d2607a0795 1 Other Other +87348df8-42a4-492d-ad64-711086bbe2cd 1 Other Other +8734a653-99f7-422f-8612-6d5c8b739057 1 Other Other +8734b50a-cefc-4428-8252-bd34818f957c 1 Other Other +8734b6d8-5721-4614-93af-37b9d6311efd 1 Other Other +87350d4b-fe57-4a42-9123-d0c369184e84 1 Other Other +87358ae5-1e7c-4118-9c1b-60a416bec0ca 1 Other Other +8735a776-2a0d-47bd-9953-ea6060998fb3 1 Other Other +8735c6a0-a1d7-4228-a66d-81208ed0519a 1 Other Other +873600d6-ac5f-4ecd-9527-47d033b3e02e 1 \N Other +8736030d-3956-41f8-b11a-375721eaf9c0 1 Other Other +87368114-f7b6-4e4b-ad9a-27ff61eef9c0 1 James Other +8736cf64-09bf-413e-9bcb-1faefa3720bf 1 Other Other +8736df19-e09d-4c95-bffb-eca06f7381c0 1 Other Other +8736edac-f569-4179-9ecf-f29fe90a4dfb 1 Other Other +8736f203-e3f9-4eaa-95d5-bee547c192b4 1 Other Other +873733f0-b4e7-4137-be84-38702c833e2e 1 Other Other +873752b4-d3e3-45b7-9e86-63657fd28641 1 Other Other +87379152-e52a-49a4-9bac-7905f4f5250d 1 Other Other +87379fc1-28dd-4b14-b60c-bd10ab7745ce 1 Other Other +873823bf-95d9-4eb4-bd26-c9cfcbcfbd80 1 Other Other +873857aa-e3d9-4a9a-bd65-14bac8d929a6 1 Other Other +87388c69-3fa0-4fc9-b4b0-523ad8a1674d 1 Other Other +8739232a-ea19-4f86-a057-54538a65e3ea 1 Other Other +873959a7-b7ae-400d-a6b1-a9512c125bb2 1 Other Other +8739965c-b721-4216-bca8-8c25e74eac70 1 Other Other +8739d4d1-2184-4ac2-97a1-1520cac447b5 1 Other Other +8739d8d7-c76c-4411-bac4-ab8ad2d09263 1 Other Other +873a07db-84be-49b3-b1de-391b6a87c1b7 1 Other Other +873a7949-3c19-4143-a37d-a995f185ab92 1 Other Other +873a86d2-c3e8-4710-8f9f-a9f0f6929292 1 Other Other +873ac6be-8283-4df5-95b0-63bfe02a424e 1 Other Other +873ad92c-4387-468f-b571-47784a4f50ad 1 Other Other +873af979-5b03-4541-a68b-84ce315e3ebd 1 Other Other +873b1ff8-551e-4d96-9212-cbb514beedd4 1 Other Other +873b2ecd-d0ed-452a-9e7d-31cf8aa81ccc 1 Other Other +873bd323-2dd2-4d7e-aa35-8a5ad0ecfe75 1 Other Other +873bebf7-74f6-4c17-bc42-bad5284c8025 1 Other Other +873c2d1b-d347-4795-b688-a0172fc13738 1 Other Other +873c42a4-f50f-4a5b-880e-b3fb53722e79 1 Other Other +873c5c34-ba85-4e88-8989-385d103b2261 1 Other Other +873c8381-9c7e-471f-9e41-1a7b34f1185f 1 Other Other +873c97b5-9ef0-4258-8e5d-1f5bc54d360d 1 Other Other +873ca67d-8107-4fae-8628-feb6dc902391 1 Other Other +873ce165-4920-47ed-a02e-9d98a30f4336 1 Other Other +873d402a-e960-4cb9-a9c0-e599f465274d 1 \N Other +873d5010-0a72-4525-a4cd-63b26626dc74 1 Other Other +873d70d4-5f91-4471-90ba-a9808c8d42ac 1 Other Other +873da15d-64bc-4ce2-a3b6-4fde29ec272c 1 Other Other +873dd7c0-56ec-44d3-9c46-2cf4e1fabe0c 1 Other Other +873e4ecd-675b-4877-a111-1dcdf4ca7076 1 Other Other +873e597d-265c-4d07-8802-3de98b558e8b 1 Other Other +873ebdb8-9dcc-410a-9b80-a9c1ddfb0921 1 Other Other +873f1300-2f96-4b55-9056-d339782d81ad 1 Other Other +873f210b-8a1a-4426-8482-18b5bf0babd9 1 Other Other +873f4780-8be9-4780-832b-8cef6e05ed3c 1 Other Other +873fece0-541f-400c-a0dc-9587bbfee8b8 1 Other Other +873ff585-0a7c-4e3e-8196-8d9b3bdfa943 1 Other Other +87400a71-e494-424c-9aea-a2926dfa83ba 1 Other Other +874017c5-6da5-4768-854d-3d95acdd4c36 1 Other Other +87403dfa-cd22-48cc-9ed7-37ff7986a36a 1 Other Other +87404659-73ac-4131-9a02-b687af27fd22 1 Other Other +87404f73-4b03-4d7d-b77d-d9be4972ece4 1 Other Other +87406bec-9f0b-4d50-b853-7a92dca83cd4 1 Other Other +87406e9d-3946-42bc-9835-fceb7283739d 1 Other Other +87408a43-6289-40ad-890c-3102b244cc40 1 Other Other +8740a9b6-031d-483a-84df-09249fcbf44b 1 \N Other +8740b884-ccc8-461e-99d3-5822577edce9 1 \N Other +8740c150-9d63-49c5-90bb-b78a743bf157 1 Other Other +8740d1d1-1162-4ff5-8483-60b3a6fc9630 1 Other Other +8740d34c-ef22-4e34-872e-fcc796282644 1 Other Other +8740dc6f-f879-4f48-b7ea-ed028ae679d0 1 Other Other +8741102e-0792-4a5e-903c-256b6decd076 1 Other Other +87413624-c89c-47f5-95c4-07ec1970de8f 1 Other Other +87414150-058f-48bf-84e4-350f8ba570bc 1 Other Other +87414af2-3662-434f-b729-19f4caca33b5 1 Other Other +87418f98-788e-4e4a-8cab-292a613a10a1 1 Other Other +874201b0-5e15-4af0-b9c4-ce789dd8a28b 1 Other Other +87423f7f-09d9-485c-a4d4-7a7a38e58eff 1 Other Other +874279a1-f73f-4378-ba49-ef8faf3ddbd0 1 Other Other +8742e0ca-5a18-4e75-b1a3-68f990d25c5e 1 Other Other +8742f11b-d682-443d-9a7b-e2c9b7336441 1 Other Other +8742f646-9a0b-4d02-98e5-c7569c497329 1 Other Other +874306fa-aabe-4bf4-ae2a-cfe0fe81242a 1 Other Other +87431ffa-3f2a-41e8-ba92-d1c64407b872 1 Other Other +8743aeee-797b-4d32-87e9-d6f5c4b66147 1 Other Other +8743e9d9-6b96-4167-8b10-a71e38d35ecc 1 Other Other +874448e9-51df-4312-a49e-efbae0247367 1 Other Other +8744545d-e4eb-49df-bb59-7ecc54492ea1 1 Other Other +874492a0-9641-4997-b7a7-764ae45892ba 1 Other Other +8745163d-8cda-4007-b970-b1109c8c66b4 1 Other Other +87454559-6332-4375-bf02-260c1eba26bc 1 Other Other +8745c96c-8dd5-4e3b-9b7c-9e1fde2d61af 1 James Other +874632a3-a4ca-41e0-b5bf-cd0c6882e49f 1 Other Other +87466b8f-582e-48e7-8cbb-cf5b0a7d4425 1 Other Other +8746a74a-2500-465a-ae51-b02755771dea 1 Other Other +8746c117-ee2f-468a-a573-0f00b97f01dc 1 Other Other +87473ad4-4357-4247-aa83-8e6bf0b98773 1 Other Other +87475af3-47ff-4245-8549-0b93c3fdf64c 1 Other Other +8747ca85-ec11-4910-9c28-342f7d06e8af 1 Other Other +8748422a-cab2-48eb-923b-0cc80c090270 1 Other Other +874859d7-7c09-449d-80d8-a50c71c667a6 1 Other Other +87485aa5-e1ec-482f-92bd-71b237de9f92 1 Other Other +87487594-8e27-4c7f-8a77-1f3c3efa286c 1 Other Other +8748950f-bb9d-478d-a719-d8c0d37928cf 1 Other Other +8748a0a3-eb23-4eda-9a63-4dadf892fefa 1 Other Other +8749dc9b-14b4-42a2-83ef-1849d3c6ed06 1 Other Other +8749fa38-14d0-438d-85e8-f1eae3300fa8 1 Other Other +8749fd5e-484e-4af3-95b3-b571d95d53ee 1 Other Other +874a0be7-7a2a-4d43-9e96-a639ff7e13d2 1 Other Other +874a125b-1b9f-4cad-bccf-990ca0fc168f 1 Other Other +874a2f8e-f8fc-45c3-886f-6719d4857025 1 Other Other +874a38ca-8bf8-4a3b-97ef-e97e19d6a740 1 Other Other +874a5849-6419-4b0f-9ce3-e5f18b72612b 1 Other Other +874a9177-63bc-4984-a4d0-735ef32e3936 1 Other Other +874a982d-287f-488a-9550-4e474c4c8348 1 Other Other +874ab2c6-fb42-4f3e-a345-9f4cde57ebff 1 Other Other +874ae663-98c3-4395-9463-3339aaad5492 1 Other Other +874b0bf9-dd06-44dd-8c73-09d61c62ac02 1 \N Other +874b40d1-ecc3-4fa9-af85-ffcb9507e08a 1 Other Other +874b4578-5221-4892-af03-768b053383f8 1 Other Other +874b54a7-8503-4c67-ae3b-ffc978a27eb5 1 Other Other +874b6a18-b07e-415e-b1b9-d2b78968fd12 1 Other Other +874b9496-29af-4f47-b0c6-0aa79db6eccb 1 Other Other +874b9e99-d6fa-49df-af64-91c5f5f17fc4 1 Other Other +874bf1d2-d584-4874-84d1-e48353a14110 1 Other Other +874bfe3d-a7d4-438a-aa5e-7e75ef4b11f2 1 Other Other +874bfeac-9b18-47c5-947d-9dd01b91d7f7 1 Other Other +874c2e53-7089-47bb-b53b-be0dca20218e 1 Other Other +874c34b5-1112-4b39-bbd6-83a6fb7aa021 1 Other Other +874c40d8-c401-4c01-bffc-ec8ae3262e6b 1 Other Other +874c8979-15da-4520-915e-6ae6258bb66f 1 Other Other +874caf32-e8f6-493f-a692-9ef2d45e15e9 1 Other Other +874cf931-0beb-4735-a476-a727c2f9f6b1 1 Other Other +874d59f8-162e-4882-b803-f41b528ef422 1 Other Other +874db8a9-e96e-4088-9606-bcda5286bb04 1 Other Other +874dd3ed-9270-4eae-bae1-2723ddc6ae8b 1 Other Other +874decd5-e193-49d0-b685-6894a7cae245 1 Other Other +874e0b99-98bf-445c-bdf2-a7437b3f826f 1 Other Other +874ecff7-749d-4aed-873a-a9cddf04118c 1 \N Other +874ef22a-36e3-426b-926b-48077c0ae2fe 1 Other Other +874f24a2-8258-4baa-9b38-8ed642de3a74 1 Other Other +874f4552-f8ac-457b-b756-30565b408588 1 Other Other +874f5989-0fe6-461b-9114-bd666f8d2959 1 Other Other +874f5c99-e292-4a34-8556-1771028be22e 1 Other Other +874f6a55-7f1a-4927-a37e-8b957e76fc7b 1 Other Other +874fa148-6141-49f1-8173-afb21b70186e 1 Other Other +874fb657-4705-4a0c-a6b5-50c54e557adc 1 Other Other +874fcaa6-092a-46d9-83c2-943af50465d9 1 Other Other +874fd368-b4a7-43df-bbe2-abcb29441c8e 1 Other Other +874ff981-041d-4812-ae65-62b654575d64 1 Other Other +8750377b-2996-4b16-8492-3fbb45bc2c71 1 \N Other +87503d49-bcd3-4dbb-8d93-d610f7a8e148 1 Other Other +87504fb0-9da8-4604-80ba-0fe5a3683c46 1 Other Other +8750cf99-20e4-44c6-a2a6-f5ac41d109a5 1 Other Other +8750d32f-0b13-4aa8-8ee8-c0942c63d495 1 Other Other +8750f045-f200-496c-ab79-2db3d264fe7c 1 Other Other +8751108f-d478-4734-9ef1-14f71e96e114 1 Other Other +87512ecc-0b89-4b4a-a5ed-42ab63aa91a5 1 Other Other +875130e2-718b-470b-95d4-b6fcb2a6db26 1 Other Other +87516038-ee65-4345-844b-d77394bc5ae9 1 Other Other +87518c2c-1be0-49a9-8a2e-954d66ae23c3 1 Other Other +8751a67f-bdeb-436a-a35a-e7b612a2dc9d 1 Other Other +87524375-9cdc-4311-a147-1eb4cdd1c2af 1 Other Other +87526a81-90b4-4448-aa69-05a56699e17f 1 Other Other +87528b96-c066-470e-99b6-5982f621c6a0 1 Other Other +8752bb3d-9e06-4f79-bb43-fef365aab85f 1 Other Other +8752df38-50c2-4eaa-a174-f9e0519259d8 1 Other Other +8752faf2-df05-4fb0-9a71-3c4818c7df38 1 \N Other +87534f96-6c14-4c97-843b-ba9b65500e51 1 Other Other +87538030-762c-4aa5-a28a-5ac4999500b9 1 Other Other +8753c557-0095-4020-8ceb-338a305be6d4 1 Other Other +8753d538-01cd-4a5a-a599-38603af107c7 1 Other Other +875462e1-be3f-44c1-be7f-dbe5faff5435 1 Other Other +875470d0-ca9b-4c61-b586-a8b019d1d054 1 Other Other +8754972f-712a-4de1-86bb-0811d1bfc8c1 1 \N Other +8754a11a-ad6e-473f-88dd-a53486d7fb62 1 Other Other +8754a582-edb1-4977-a50d-bfc9d4c9f0a8 1 Other Other +87553716-12da-41a7-909f-d1f7fa207571 1 Other Other +8755792b-6234-4808-8a24-fa994ca95877 1 Other Other +8755cedf-8229-4907-9997-1ff18759d341 1 \N Other +8755f237-92fb-4a44-9dc8-4d5411090048 1 \N Other +8755fa57-428f-4297-ba14-aa3258ec8d4a 1 Other Other +87561e31-4d58-4095-aa98-33d1a8ad1a49 1 Other Other +875672b9-8744-446e-9cbc-92b6fd0d1a72 1 Other Other +8756ca67-03a5-4214-bbec-9273b529b512 1 Other Other +8756d759-a873-4d8c-8c6c-536e3b9446b8 1 Other Other +87571d59-e699-4995-91c7-347baf26359b 1 Other Other +875724d0-7edd-4959-8bf1-0b3c1ad2b961 1 Other Other +8757335b-1e13-4143-85fe-f5a5880ce7c8 1 Other Other +87575086-4500-4e32-a3f5-fe7a693643eb 1 Other Other +875788b6-fee6-4180-a9ab-ffaeefe8c4ef 1 Other Other +8757af41-8b0b-48bf-bcc4-6e701c089b73 1 Other Other +8757c44f-3a03-4ded-add7-0b5941f581c6 1 Other Other +87580f06-e624-4a66-b0be-a5265be911f9 1 Other Other +875822c4-a4fb-4ccd-8455-df21c49a8284 1 Other Other +875822e1-6ae5-45c2-8076-f4f81f39a96c 1 Other Other +87582545-c764-409f-8165-0077ce93311a 1 Other Other +87587b1c-7ea3-4e8f-9bdc-c5cf1f0cad72 1 Other Other +87588e52-04cf-4050-9fa8-b8aa644ea7df 1 \N Other +8758a1c5-c376-414a-a050-728decfe3b81 1 Other Other +87591acc-fc72-4a2b-ba94-db7cf990083e 1 Other Other +8759381d-0474-4f7c-a9fa-ba8ec04c58cd 1 Other Other +875991fc-d40b-4c53-a27e-0862f5221af0 1 \N Other +87599fa1-1c54-4a83-8a7b-e95dab3c6cdc 1 Other Other +8759a115-5866-47a1-bc0b-37710ea51b79 1 Other Other +8759a78a-8984-428a-a4f3-ef772408917e 1 Other Other +8759aaf0-d9fa-4ba8-b77a-f74c2a13dfdd 1 Other Other +8759e4b1-bcbc-48bb-ac70-ff71cf45735f 1 Other Other +875a31dc-f7f0-4982-8296-b081a722c009 1 Other Other +875a4d48-bc7b-4689-a4bf-c28cb29a6f91 1 Other Other +875a7dcf-be0d-45ad-8af4-def81ae84f1c 1 Other Other +875a8eea-77e0-4c8e-b095-573e6a7363ee 1 Other Other +875abdee-06cd-457d-91af-5b0b924406da 1 Other Other +875ac743-2c95-48b0-a7df-a9439b91db2b 1 Other Other +875ae7a0-e967-44f8-9e83-6bdf3a05639a 1 Other Other +875b24ff-fa71-43f2-85e5-bcbb58126c33 1 Other Other +875b39f0-b4df-4237-9c39-cf157c2ee943 1 Other Other +875b4da3-a864-4930-9a45-43b687460b97 1 Other Other +875b6a2c-ed5f-4fe1-92f9-68eab2def91a 1 Other Other +875b758a-de87-4f99-ad87-9b81cb5208ca 1 Other Other +875b8dce-d7d0-46eb-bbf9-11d3d2857636 1 Other Other +875ba592-aa40-475f-bce6-871a03c0555e 1 Other Other +875bd0f5-a4c0-4380-95ed-0613c02e2a43 1 Other Other +875c48b2-aef6-44a6-82a6-89beef056934 1 Other Other +875c5db7-afb2-4e2a-b122-4c6101384f52 1 \N Other +875cbc1d-ada3-4c37-b27a-4630df75fd8b 1 Other Other +875ce2bf-116f-4bbc-8f3d-6a11def094e9 1 Other Other +875cee19-405e-4ec3-aa97-a4c444b89a4a 1 Other Other +875cfc67-ec11-4740-8ee1-91bf924d4ba6 1 Other Other +875d1271-73cb-463f-bd27-10900409d600 1 Other Other +875d24e0-3538-439f-adf6-4667d5e15133 1 Other Other +875d3a92-8e2d-4a0b-9292-2a76be19845d 1 Other Other +875e6541-7a2f-4052-b83e-2a6c348a7cd3 1 Other Other +875e667e-1c16-4fc7-9027-7df3ae0f4ac6 1 Other Other +875ebd07-2f04-440a-ba3d-5a4648c0e3d1 1 Other Other +875ebe0a-a94b-49be-bcd7-6d29342d930f 1 Other Other +875edb04-6b81-469c-ad89-7155b0ecf2da 1 Other Other +875f3fef-8f52-42dd-8bc6-b9347d24cae7 1 Other Other +875f5a0d-1995-4839-ac4a-7befb002c0a6 1 Other Other +875fb05a-69ae-4384-9785-bf7c106aa6b8 1 Other Other +87602c30-c0c8-4fbf-ba69-9bf42a13990b 1 \N Other +87602caa-74f1-46d4-901e-9934634676b0 1 Other Other +876034ca-d66c-4bc7-9129-09da6ad6e03e 1 Other Other +8760473b-4cee-4b63-a6f6-c768ebd8bad4 1 Other Other +8760a977-002d-40ec-a79c-a7a717e8cf8b 1 Other Other +87611717-5bee-4ba2-b6c4-b684f83994ef 1 Other Other +87611884-2e60-4e55-add7-8a77b6c29ff5 1 Other Other +876133a1-ca72-47b3-9ed2-023cb7b7ebdf 1 Other Other +876177a0-decd-4cfd-adfc-f7487e6c132e 1 Other Other +8761804f-cb86-42a2-b270-679a62bdf5f5 1 Other Other +8761d55b-6737-4bb6-9a8d-f25075b13e5f 1 Other Other +8761e9b3-c3a3-4de0-8c8f-96780b813b04 1 Other Other +8761eae7-f06b-4354-82fe-ccce11863d5e 1 Other Other +8761fa61-5ef5-441d-a59a-db080f613fbf 1 Other Other +876227be-047e-4f68-80a9-134e27d27ac3 1 Other Other +87622bbe-7b88-4a9d-9d3b-801879663bd2 1 Other Other +876235b7-c7bc-4ef0-b48c-d807a394490f 1 Other Other +87624a1e-9dff-4801-b3f3-d2d3b6cb807b 1 Other Other +87626782-71eb-4a15-8b15-9e52a192c87b 1 Other Other +8762c80f-b75d-412b-bc7e-b37e00793ad6 1 Other Other +8762e96c-60fd-420e-a93b-ca581f963b8f 1 Other Other +8762ecb7-9f16-4685-b66a-40ec3f035468 1 Other Other +8762f83e-77f4-492d-a3d1-1522d1b05241 1 Other Other +87636b6e-fdfe-445d-9b76-f945dc9940ad 1 James Other +876378b1-0ef0-40ca-bba4-99e7f8975a55 1 Other Other +87637bcf-bad3-45f3-964e-78a3c2002092 1 Other Other +87639515-dcd2-41ed-a2a2-38cc6e559972 1 Other Other +8763d893-63df-4c01-b366-6e9801b706e0 1 Other Other +876447b9-86a1-4eeb-98fd-3e14bc2f7299 1 Other Other +876464a2-8923-4198-9d42-7dab427742c0 1 Other Other +87647e3e-0be7-40e1-b726-9ea60c4a3a02 1 Other Other +87649155-3811-4c78-85af-b495861618d6 1 Other Other +8764f35a-c06a-4b1c-8ea4-9679372458c5 1 Other Other +8764f564-1325-45bf-ab3f-f01f6fccd6ab 1 Other Other +876567f7-eade-4122-8fd0-7634fba8155a 1 Other Other +8765e3bf-0bc2-4351-9c87-9e2d0abb8cd5 1 \N Other +8765ed3c-d104-49a1-ba57-81688de61d42 1 Other Other +8765eff3-8fcd-40ee-8fff-8cd8697dc1dd 1 Other Other +87662069-d6bf-4ef5-893b-7eb6f63a9967 1 Other Other +87662c9e-506b-426c-a9e9-f82d7775c8d4 1 Other Other +87663a69-f145-4eee-8079-70756b0483a3 1 Other Other +876652a2-ed0f-42f0-b557-d5763c7c77ca 1 Other Other +87665541-0306-464f-8c96-eb6df8e9249c 1 Other Other +8766729c-0549-48e2-9436-ad7c14c05821 1 Other Other +8766a8f9-72af-4190-9f96-210678fa0020 1 Other Other +8766e8e8-8b94-4458-9b2d-cc903b6fca5e 1 Other Other +8766ea4a-81e1-4249-9e52-15617bc2dd83 1 Other Other +87672fa5-a03c-4329-86c6-c65eb0570415 1 Other Other +87673ec5-feac-45cb-b8af-4fb3bbc82f6b 1 Other Other +876765b4-92e8-440d-8924-5472b6c2da00 1 \N Other +8767b0bc-25e7-4a1f-9730-2826bcdfc6b4 1 Other Other +8767b20e-2f60-4be4-afa0-fa27de7a09e4 1 Other Other +8767bc79-dcc2-4920-96c7-6915982714ef 1 Other Other +8767c56d-ffe8-4b86-9d13-4a1b23e29438 1 James Other +8767ead0-f41e-44bb-ba95-840a97457c33 1 Other Other +8767fca7-5992-46f6-b5a6-cef194e05b76 1 Other Other +87680b8b-0601-47de-b16b-e29efe98bba4 1 \N Other +8768268b-ea16-47f0-95a1-cc6964734ed4 1 Other Other +87684d0a-89af-4233-aab5-f1687da80356 1 \N Other +8768945b-a696-47f8-b8bf-f4e1f827ad8b 1 Other Other +87689a7b-8bac-4a10-973e-07fcfc23bbad 1 Other Other +8768bdf0-f96c-4836-97da-25b2961d7a36 1 Other Other +8768c75f-71ab-4d6d-8e53-9f000724718c 1 Other Other +87690f2e-3a25-4cd4-b127-27d4f904b414 1 Other Other +87693166-ef59-4071-bb7b-c341c1bef148 1 Other Other +876936bc-e7a6-4d5e-ad01-b68bd70adebb 1 Other Other +87698c12-9bb7-426e-98a3-71e29b9237cb 1 Other Other +876998db-ba39-4de1-a285-71be31f6e986 1 Other Other +8769d438-267b-46a7-b180-bd87979ee44b 1 Other Other +8769d659-3b5b-4a8d-823e-76fd0a47a3df 1 Other Other +876a0a1e-69c5-4cf8-8535-51ab18450f64 1 Other Other +876b72c8-c984-480f-812b-311e141e85db 1 Other Other +876ba220-5c72-4ede-ad84-da56bf5ddcf2 1 Other Other +876bc1c5-a076-4a20-a550-c0867099c6cf 1 Other Other +876bcc93-4e73-4034-83ec-b8eb1051265d 1 Other Other +876c0a3f-fa2e-4621-a9e5-54e987c4bc2a 1 Other Other +876c1ac7-3e7a-4d4b-abd7-a8f737618745 1 Other Other +876c46cd-9b64-4109-bdad-1417355e5abc 1 Other Other +876cc112-215d-4898-8aeb-613f69496dbf 1 Other Other +876d0e92-f419-40f0-b06e-46c8f2092050 1 Other Other +876d3d97-ba28-4e7f-8e67-5b6fbe28bf09 1 Other Other +876d520e-5601-4649-a1c2-56d2b3080242 1 Other Other +876da3ae-ea9b-44bc-81d1-735ab9d68d1c 1 Other Other +876dc9c6-a545-416b-861f-49c8e8a4007a 1 Other Other +876df1dc-9ef8-4a55-9bb2-518fa13ec7e2 1 Other Other +876eb76c-a735-450c-9d6a-22ce6ec17918 1 Other Other +876f5ebe-97bc-4f1a-9b7d-bb2056968c9d 1 Other Other +876fb3fc-a070-471d-8567-75012009f4a0 1 Other Other +876fe03a-0632-4cd6-8adb-2c280a91fc4f 1 Other Other +8770bd9d-4a81-4227-ac6f-f7208d693173 1 James Other +8770c4c5-8da1-423b-8122-5fb8f145ba10 1 Other Other +877114be-71c8-4e95-bccd-e4d9ce553d60 1 Other Other +87713647-f527-462d-bde7-5761df24b95c 1 James Other +87716d75-abf9-4f75-84e6-c572d6b29338 1 Other Other +87718a91-5f29-46e6-b1a1-ec098faf22a4 1 Other Other +87718fb9-102e-4079-9082-7ea046fe4735 1 Other Other +8771a171-2e4b-46b4-9198-eaed5c92b101 1 Other Other +8771fe14-20df-4d71-a2a5-97e109e9a588 1 Other Other +87721e88-db49-4afa-bf31-3ba7a6576f27 1 Other Other +877243bd-7e80-4a8b-946d-cf3195731ebe 1 Other Other +87725fee-1adc-4e56-ad0e-684e0724a85b 1 Other Other +877269fd-c8ad-4a9d-a3cf-e53e954e8c6f 1 Other Other +877289c8-759f-4010-8e84-a5b07caf7172 1 Other Other +8772dce9-ac63-4854-8aa9-7568bba8577c 1 Other Other +87730bc6-3cf5-45e0-b42b-e0a1eba2c588 1 Other Other +87731c1e-2edf-4cfb-85ec-94c312a55b29 1 Other Other +87734021-cdb0-43fc-843b-e85f0c2bd46e 1 Other Other +87738d8c-fbd0-4c5a-a677-39a00e14f5dc 1 Other Other +8773afa4-e5b2-4e65-965f-c58e40bd824c 1 Other Other +8773bf12-c363-42be-bf30-8fe4b1b90d91 1 Other Other +8773c49c-0bdc-4b21-9b46-c3d59b295846 1 Other Other +8773c5e0-7637-49e1-a643-563180b9edbd 1 Other Other +87740d8c-64fa-484a-ba2c-3a54236da283 1 \N Other +87742085-486f-4255-b974-e3f01977c6b6 1 Other Other +87742b2e-1e3f-4707-bbd1-b0cfdc6eb9b8 1 Other Other +87747a93-8720-4aa6-9a20-375eaec1c08d 1 Other Other +87747fc1-54b9-45db-b845-5b898744a121 1 Other Other +877496c1-8be3-4fc1-a9ce-be31fec707b5 1 Other Other +8774f506-2b29-40d4-b443-3c18ffb01a84 1 Other Other +87752095-dbbf-408c-a8a4-0c4ae33b1048 1 Other Other +87752a0b-5642-4848-a78f-8f88bea4f4a8 1 Other Other +87752d40-04d3-45a9-a94c-82fc02c0aaee 1 Other Other +8775344c-29fa-439a-9814-c9b506a916a3 1 Other Other +87753e07-823a-4f1f-8653-2fa9b3af1f41 1 Other Other +8775441a-36b2-4ccf-b755-275e4df9e911 1 Other Other +877551d8-b919-4e1f-9822-0b397b467285 1 Other Other +8775d570-04cd-4613-ac61-660f7c0a4a89 1 Other Other +8775e86a-3495-47bd-b3bb-48d4bc6e13a5 1 \N Other +87760041-9db0-4611-99db-edb46072f57a 1 Other Other +8776225b-2045-4bdc-90d7-67c28f79a69c 1 Other Other +877691ab-4089-49c5-96c9-e1b070f3f378 1 Other Other +8776e57b-d1ce-4f73-bf91-f6700943bf68 1 Other Other +87770067-4f99-4226-ad9a-192e39b04192 1 Other Other +8777472c-ab78-465a-a736-2ef46560b1b6 1 Other Other +87775fd7-708d-40a8-bb18-cb91f9cf2ef2 1 Other Other +8777dd60-aef4-41d3-b485-a7a348151708 1 Other Other +8777e224-4948-4c74-9ce2-982c7cf5ab6a 1 Other Other +8777fc65-7487-4f76-8ce9-786bc90f3277 1 Other Other +87780ccb-8f6e-4dba-80a7-ca0c4accbdd7 1 Other Other +87784580-e610-49b0-b7d6-37393d21afd0 1 Other Other +87785cd9-61b6-4421-983b-cf429ffcb5fd 1 Other Other +8778c867-a550-46c4-b804-c726e2b9f3cf 1 Other Other +8779a3e8-9940-4f83-9e03-a00e802a4822 1 Other Other +8779b922-2d8e-4be5-a603-58a62e41b4d4 1 Other Other +8779bc64-99ad-4ebd-acd9-2bd407d4ab6e 1 Other Other +877a07ab-c8ac-4c49-ba57-67ca5af682ef 1 Other Other +877a2907-93a8-4baa-8975-8eb4441c8d78 1 Other Other +877a4cdb-6e6a-4136-9139-5e736ec89cb5 1 Other Other +877a90a1-e447-48e6-a894-43cca866944f 1 Other Other +877a999c-e4b0-4c2b-9be4-1c15c45f4442 1 Other Other +877aa50a-8b12-4738-90c8-42aa2e70cd96 1 Other Other +877af888-6352-4e3a-9106-4704a5d665a2 1 Other Other +877b66c0-ac84-436f-951e-97f77388fb61 1 Other Other +877ba701-695d-4c91-97af-8687e96cab41 1 Other Other +877bede7-939d-4284-9918-e1f9c13bfe32 1 Other Other +877c09a1-9adf-43d6-9c9f-0d5d1b05c1db 1 Other Other +877c1780-2413-4ac6-a27c-5168a9e38188 1 Other Other +877c592f-a56d-4954-9cb5-aea1d96a2cdc 1 Other Other +877c6b4a-29a1-435a-adb3-dab8bfa110cd 1 Other Other +877cf24a-944c-4afa-8eb7-9a52f7745115 1 Other Other +877d13bb-e1a8-48af-9a2c-d9808616456c 1 Other Other +877d432d-657a-4117-99b4-00617450ce4f 1 Other Other +877d9d7c-9191-4f3d-856f-c6b2863b4aad 1 Other Other +877daa6d-d5f9-49db-baba-ae92be38955b 1 Other Other +877dcc0b-941a-4f3a-98fc-bfb2d105ce31 1 Other Other +877de57c-5f28-4e95-b282-e75f714578e9 1 James Other +877dfd6c-f570-43cd-a965-4aa2f3efb5a5 1 Other Other +877e19de-64e0-4ba6-a1e9-3ad5643826c7 1 Other Other +877e41f4-5420-475d-8d66-075526bc5d3f 1 \N Other +877e454e-b5e1-4e55-8e8b-3411cd1adc98 1 Other Other +877f128c-a534-468b-93b3-c2bd8c4efb62 1 Other Other +877f33c4-06ba-40ad-9ff9-14b2273e51b1 1 James Other +877f5acf-8a99-4dd7-9357-d308255fee39 1 Other Other +877f747f-0711-4f04-9454-ba7c799aaef9 1 Other Other +877fcf95-0acf-43f7-93b7-4e753ee21354 1 Other Other +877fd5a8-2067-494d-92ad-c86c2487b2a8 1 Other Other +877fe06f-b1a7-47cf-ac4e-6493495dc24c 1 Other Other +87802bab-8b17-46bc-b477-fdddd1436c52 1 Other Other +87802fd0-4abc-4f91-903e-bdc87d639c01 1 Other Other +87806338-dab3-4425-b075-08a1726419f1 1 Other Other +8780699d-6505-4120-94b5-e8ab69d4ca34 1 Other Other +878099e0-763a-4bf1-94d1-9ef54e16b72b 1 Other Other +8781496c-2375-424e-93c5-9281ea7dffc6 1 Other Other +87815771-e14a-4ddf-9710-f77c57c0c7f9 1 Other Other +878186c5-7c04-4f46-8b62-9ffbeaa4cfc2 1 Other Other +8781ce3a-0b05-4403-8bb2-be573e0023e0 1 \N Other +8781cf03-cff2-43f4-a4ab-dfaba599c863 1 Other Other +8781d061-75cb-47c6-96a9-814b8bdc44bf 1 Other Other +8781e62b-3e18-49a5-805e-ad140fbf9c04 1 Other Other +87821b71-fdf6-4fa8-8dea-f6fda3ce75de 1 Other Other +87827386-e7c9-4648-9f03-3ccaf9750d4d 1 Other Other +87829b63-3215-44b3-a32a-e22007f3b319 1 Other Other +8782a4e3-4334-4a60-b8ae-4151d313df17 1 Other Other +87830a7c-e4c9-40fb-a1e7-097ab01272d4 1 Other Other +87835ccf-f8c0-4f8c-91a7-32ba68ced793 1 \N Other +87840275-a075-4d17-94e6-350ea5302730 1 Other Other +87843ee5-e577-4fec-876c-0f4babce37c9 1 \N Other +87845450-e6cc-4964-a6a8-578933686f8d 1 Other Other +87845dbb-c86e-43ed-ba6a-d7e4828596fd 1 Other Other +87846af0-e80f-411b-af9d-8b76cdd40234 1 Other Other +878471f9-2966-4cbb-a453-0b488d9b915e 1 Other Other +8784b3b2-05cb-11e8-9368-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +878534ab-a174-45c1-992e-e17d4e6c5536 1 Other Other +878544cf-6384-4ef7-9f31-2b75827308d1 1 Other Other +878550d4-c2f4-4a98-8200-de16e7a6c070 1 Other Other +8785511a-b8be-43c0-8fd4-977cb6401c01 1 Other Other +87855e43-b7f8-4bb3-819d-b5c155422a50 1 Other Other +87858d1e-4a78-48ce-af6d-f1e5e20e452d 1 Other Other +8785a184-e972-423d-843e-1dee20eb630f 1 Other Other +8785d9ad-24b8-4de2-8e76-e55896116375 1 Other Other +878628a1-9c6d-41f0-9f16-c1dd17bb56af 1 Other Other +8786321b-805d-43ae-84c2-98a7279bc9c1 1 Other Other +87867aec-f6aa-4700-987a-16e9e2d593d5 1 Other Other +87869899-7f8e-4801-9aa0-c7c997dd657a 1 Other Other +8786a0ad-004d-4bfb-a6c6-cf1c3c67f35c 1 Other Other +8786a966-fc61-49d4-bd2f-f11e1d39c727 1 Other Other +878704c4-07b4-480a-be9d-43e71713e8ca 1 Other Other +87876b06-b4c5-4cc9-bd6b-d89ab384fd4d 1 Other Other +87878177-7951-43b5-ad81-06548afae695 1 Other Other +87878390-09e7-414b-a7db-da9450f224fb 1 Other Other +87878a54-44ab-4649-9eae-e7280b8c80bf 1 Other Other +87879eef-365a-4c12-af04-3a88f9d26cff 1 Other Other +87880f46-ec25-4ebd-93db-193992270179 1 Other Other +87885141-aaa1-4f13-b67a-3f4fc09582f5 1 Other Other +878857e8-2ffb-46ca-9c21-8c69ebb87ef6 1 Other Other +8788641e-b3cd-4c40-8aea-72b0665cd037 1 Other Other +8788b7a2-6244-41f9-8c3e-76d97089cd8a 1 Other Other +8788c404-ce7e-49d2-b563-b6054464e264 1 \N Other +8788d465-3593-4b9e-b7f5-548eff2b8645 1 Other Other +8788d832-cba2-46d5-b1b8-1bc4f0165c6e 1 Other Other +8788dc72-7902-4532-a9d1-95928358396f 1 Other Other +8788fc4e-74d8-41e6-a32a-cbc1db53b06a 1 Other Other +87892f3b-3dec-49a4-83ac-cba0676efbd3 1 Other Other +878937d8-b76a-4ccd-9d20-852250593193 1 Other Other +87894c4c-5d3a-4729-9950-a66be13e7043 1 James Other +8789e643-16a6-4331-9bd6-6cb58eac6c66 1 Other Other +8789f562-cf0b-4f7a-bae6-db8ba4d0b056 1 Other Other +878a2a41-2d78-4765-b453-a9db8a4474f8 1 \N Other +878a649c-de7f-4057-9982-6d368231bd69 1 Other Other +878ad2b3-4627-4c5f-a8c3-955fbcdd0b8a 1 Other Other +878ad9a9-4e82-4718-9a5e-7bf87967ade7 1 Other Other +878b3db5-e98b-4ee2-8223-6e5a0cf09a79 1 Other Other +878b5d12-a023-42ff-a219-dd98df431b54 1 Other Other +878b762b-5237-4451-9064-6100af0b66a6 1 Other Other +878bc1e7-8320-483b-aec4-ff2ac23feb75 1 Other Other +878bf204-fd3a-4b16-a2a0-ead4407c6650 1 Other Other +878c19d7-0cef-48a7-ade0-d60436653375 1 Other Other +878c3cef-3c09-46a3-921f-5976b63e5207 1 Other Other +878cdae2-d5db-499f-9758-444e1cb541d9 1 Other Other +878d8201-e00d-4f2a-8899-6adfce1b2ea6 1 Other Other +878d853c-9382-4b84-ab39-03291a3c6f71 1 Other Other +878d9aca-7887-4f6a-a1a3-e71863d3fe46 1 Other Other +878da185-978c-4443-83b7-a74f847b40aa 1 Other Other +878e0ade-d05c-4423-b822-700f38c242f0 1 Other Other +878e103b-8714-406a-9ec8-1ac39b764b0f 1 Other Other +878e299d-5245-4b79-a61d-95a29a7c0d20 1 Other Other +878ef904-7471-4210-9f19-8ddacd61c9cf 1 Other Other +878f52df-8185-4fb7-940b-e2e328f460ea 1 Other Other +878f5d9b-0ef6-4f7f-8219-61fa05700c9c 1 Other Other +878f7ca0-614d-4f85-b1e3-71b4309ffda4 1 Other Other +878f8a3f-7f2c-4676-907f-4dcc8b988c0e 1 Other Other +878fd892-59ed-4b08-a271-eac4d18afd3e 1 Other Other +878ffd46-902b-4023-a8fe-4bfa0aa3b7b0 1 Other Other +8790750f-96d3-485d-9aab-42e591310633 1 Other Other +8790964d-50e2-4a52-9fa2-12e3ef7e2264 1 Other Other +8791060e-ce08-4670-bd3b-89de5d4a4a4f 1 Other Other +87914bad-3c6a-4611-9dcd-dac096ba5fc3 1 Other Other +879191c0-c093-41b0-8064-b458b0333bde 1 Other Other +879192e7-ede3-49c8-8321-96655f8296e8 1 Other Other +8791a117-0c5a-4698-8bc2-3092b9bca34a 1 Other Other +879214ec-53af-4356-b45b-6fc4681e9228 1 Other Other +87929816-9959-4897-9d44-8f18da735eda 1 Other Other +87929d56-4b8b-462a-9010-248395638bba 1 Other Other +8792d9ca-7cdf-41b3-bde4-972350d84179 1 Other Other +8792dfeb-f374-4ebc-a3d2-2420da1cde89 1 Other Other +8792e309-2ff5-4bd5-a696-058385b22f46 1 Other Other +8792f4b3-64b4-41db-b90c-e2b4b846ee23 1 Other Other +87930274-35d1-4f5f-8d46-cfeb52beb644 1 Other Other +87932f24-53bc-41d3-97ca-274bbbb71946 1 Other Other +8793f82f-83fb-4922-8ed9-5034a1402a03 1 Other Other +87942460-95f0-4e25-9ec6-23790c28d08a 1 Other Other +87944e6a-edc7-4e21-867a-fe7834e402d6 1 Other Other +87946c62-bc73-43d3-b325-85aeb6092629 1 \N Other +8794bd4d-2a66-45e7-a187-48cc1a974747 1 Other Other +879527c9-edc1-4b13-8614-1fb552e7ae29 1 Other Other +8795327c-8a75-4de3-aab2-7feadaf82c7b 1 Other Other +8795547a-d0af-4ca8-8d2d-d621690be09f 1 Other Other +87957e95-d458-4ac2-a873-4d853ac2c3fb 1 Other Other +879595aa-79b5-4df8-b95b-9a167d219dfa 1 Other Other +8795a182-60af-4c00-942b-1114a16b79e2 1 Other Other +8795a61f-79b0-4905-a8a6-0cd0c8249374 1 Other Other +8795a625-be6e-4645-9f49-4c56da1bc05a 1 \N Other +8795b9f1-b725-41b7-84d5-602012a79b8b 1 Other Other +8795bf5c-9ca7-4f70-9595-fbdc96e1fd88 1 Other Other +8795c13e-a313-4d25-8a23-fd43e8b23f05 1 Other Other +8795e6d0-1f69-4e2a-8f3f-4bc2f4af4318 1 Other Other +8795f083-a1f9-4765-9034-77cf28b1f06a 1 Other Other +879676e4-889a-4507-8616-e5a0d0ccaf33 1 Other Other +8796e2eb-bae9-46b4-a4c7-097f22b5a677 1 Other Other +8796ecf3-90c5-403a-8a2a-524f89e69425 1 Other Other +8796f33b-b55a-43cd-a2f7-21950524871b 1 Other Other +87971f1d-d215-4068-82e8-dcb5f2509844 1 Other Other +8797260a-1155-4731-93d1-a9b4fd988ba2 1 Other Other +87975bc0-168f-4371-bcf9-917dd1eccdaa 1 Other Other +87976c9c-435d-42a3-8126-a407b58c3458 1 Other Other +87976dd9-8c92-4a10-aed5-31e8fbfe392f 1 Other Other +879815b0-f19e-46ac-a82c-e15e26d6129e 1 Other Other +879833d6-6c6c-4810-a896-3ab495a61140 1 Other Other +879840e6-87ab-4f18-9c37-7eee426def48 1 Other Other +8798962a-3a69-4d4f-9a74-b1a041d2ba40 1 Other Other +8798a7c0-7836-4c60-a98a-151397a7adc6 1 Other Other +8799050f-64d1-4956-896b-62b22d7f5e7b 1 Other Other +87990a3d-bdc9-4aaf-84c0-3560add51629 1 Other Other +87994064-018a-4f6f-a790-0b276233d9b1 1 Other Other +8799bcc4-f923-4567-bd6c-4a05fd14943d 1 Other Other +8799d6e8-37db-4d13-9943-6fc53ceb458a 1 Other Other +8799ddac-a3b4-4ba5-82c7-bed7618434b2 1 Other Other +8799f6eb-2adf-4abe-be16-201c0453c61b 1 Other Other +879a1436-c969-4c32-9995-06d8afc505d0 1 Other Other +879a1da8-5f81-417f-a8d2-9616c0837e0a 1 Other Other +879a33f6-35b6-41ca-b6be-d9a3aaebf2fd 1 Other Other +879a503c-8c4c-49aa-93a0-e4fffc4ff548 1 Other Other +879a765c-862d-4ef8-9382-1d809df7c613 1 Other Other +879a84c6-de4b-484a-b040-aeb5c4eb5e57 1 Other Other +879aca71-6529-438e-bfae-23c6b41fd42f 1 James Other +879ae80c-9763-42a7-aad1-5af0c5606526 1 Other Other +879b2bb2-e954-48aa-9a26-4b4708c9dab2 1 Other Other +879b4d98-dcb7-45c2-97bc-fed5abc8b97d 1 \N Other +879bb131-4ba4-4ea2-8775-aaa3a83a14a6 1 Other Other +879bd30e-5b48-47b4-8b71-35c387793a18 1 Other Other +879bd845-6e36-45a9-ba5e-28d722c0e33c 1 Other Other +879c074f-08c2-42bd-bcb3-18f10b9f526b 1 Other Other +879c7438-127b-427b-a296-ddf31ca66034 1 Other Other +879cc023-57dd-4ec5-9cad-03fcfb5ed181 1 Other Other +879d0931-2bed-48ef-8576-165719708c1c 1 Other Other +879d397f-14c7-491a-b364-116c51de92fe 1 Other Other +879d3acc-2f0c-49d1-a913-048e22324d31 1 Other Other +879d723d-e013-4af4-ab66-acf0756d9bed 1 Other Other +879d8e3c-f90a-49d1-8233-dd467227bd12 1 Other Other +879dbbfb-425c-4a70-9682-fd5d2eba5094 1 Other Other +879de906-66eb-4e63-8efa-abcdb1a98157 1 Other Other +879e1795-3b1c-4e74-b20e-d6ad522c9e46 1 Other Other +879e50e3-64cd-49c0-a7c7-379bbf68d3c6 1 Other Other +879e82f4-1b78-498f-ac45-fc7b62ed62df 1 Other Other +879ea753-ed75-486a-ad7f-9f4a6e8a9d7c 1 Other Other +879ea8ef-4c43-461c-85da-be406a33f25a 1 Other Other +879ee99f-eddb-4125-b69d-5279892fd00c 1 Other Other +879f3114-9411-4100-9031-394fddf68768 1 Other Other +879f659c-caba-4e64-9216-78758793d4a5 1 Other Other +879faaf1-46f7-4091-975e-a8c0570ee9c1 1 Other Other +879fe813-c7b3-45fa-ad8d-74c302ca626f 1 Other Other +879ff090-cc0a-41f8-8942-6804cbb5358e 1 Other Other +87a04a4a-80d0-4f1f-bb39-ca1873ce0346 1 Other Other +87a04be0-884e-4b9d-9b0f-b898d240fc5b 1 Other Other +87a07baa-33a3-438e-b7b2-8248511d7b7f 1 Other Other +87a0b544-9047-4090-acf5-c36c2c71fe2f 1 Other Other +87a0f0f5-0913-4dbe-ae1c-a374df465c40 1 Other Other +87a0f3c9-e69d-47b5-80c5-bdcfadfbc81f 1 Other Other +87a15500-d531-4f45-8265-7b0769054d3d 1 Other Other +87a1ae18-ccc8-4600-b8e7-c6f38935f829 1 Other Other +87a1b9f9-7c78-40a6-8c8c-c0f22482db5a 1 Other Other +87a1ca71-8490-434d-94f5-3c17ffe7011e 1 Other Other +87a1d82a-aaf1-4216-89d3-cf719bcb6351 1 Other Other +87a1fb28-cdcf-4196-b236-c4141b3e53f7 1 Other Other +87a215d5-9e19-4cb4-9e1b-e8375444edf6 1 Other Other +87a22d30-7d63-48cf-985f-e56a42ff322d 1 Other Other +87a2361d-a604-429b-9ab8-f15485e42d06 1 Other Other +87a25888-ae20-46d7-8195-95cd4b4e394b 1 Other Other +87a281c8-5ec7-4729-918f-465da1bd35a9 1 Other Other +87a31c79-c6d0-454b-b235-6ccd56bdc4c8 1 Other Other +87a33493-77c4-481a-a4c6-4dcfe0586eb5 1 Other Other +87a346c4-81a1-4e9a-a451-4aa9b0db9f7c 1 Other Other +87a365cb-3dc6-47cb-be0b-dc9efe8dc983 1 Other Other +87a370c8-7915-4b57-ae0f-8ff4484dc1b6 1 Other Other +87a3b1a7-ce3b-435a-a620-c93b864766e4 1 Other Other +87a3de7a-e83e-4fc9-8818-081422bd665c 1 Other Other +87a41459-b472-484c-8139-55f6852d34a0 1 Other Other +87a4265e-9047-45fc-9d2f-a8a4a6eaff0f 1 Other Other +87a43153-d1a2-4757-8883-da2822ece964 1 Other Other +87a46dab-3ad8-4f23-bd1d-c15aaea421d6 1 Other Other +87a48583-db3e-49a9-a45d-43cc51df11f9 1 Other Other +87a48c91-313a-4208-a2ac-c53ccf473dbe 1 Other Other +87a4a820-a278-449b-a71e-9806f9c8e555 1 Other Other +87a4baa0-d511-47bb-a844-ebe082bf746b 1 Other Other +87a4be26-ad46-4958-8249-9d80418f201e 1 Other Other +87a4e728-5f87-43e9-b544-665cbca78cdb 1 Other Other +87a536df-3b3a-4962-a41a-51b930443de4 1 Other Other +87a539ed-1141-4a8b-a706-32db5961207c 1 Other Other +87a55511-3dea-4c51-8d84-094a7d30df24 1 Other Other +87a57944-6926-4713-ad36-87312901429f 1 Other Other +87a5857d-9270-46a3-a364-f7da563d2dc8 1 \N Other +87a5fab4-6438-4aa3-b29b-00da5c00624f 1 Other Other +87a69662-6da5-4dc4-8566-6a4ce12ceb01 1 Other Other +87a6fd47-5d80-4481-b4ab-0ca4123015a2 1 Other Other +87a73658-80aa-4dd3-b687-d44b8fa3131c 1 Other Other +87a763fd-be07-4b8c-bbe9-c43732480648 1 Other Other +87a77f02-3a75-4020-886e-cab1273c1794 1 James Other +87a7db51-6368-4618-92e7-0bb0437a6430 1 Other Other +87a80042-6009-4368-a352-3b2bd789599d 1 Other Other +87a842f2-f741-4bff-801a-65b3bb439df7 1 Other Other +87a90fdc-47ee-4c97-a773-d00a49de55e1 1 Other Other +87a93789-7828-40c9-81f3-9636b68e90eb 1 Other Other +87a944d6-3898-471d-bd83-9b6e3f6d8320 1 Other Other +87a98e8b-c65b-4907-be13-11cecbf56e3d 1 Other Other +87a999c2-4564-4d11-b834-76da906bfc76 1 Other Other +87a999ff-d749-48cc-8854-e8d2420a4b20 1 Other Other +87a9ac59-b991-4d3e-9640-99282d6e88dc 1 Other Other +87a9b405-1988-4c5b-a9bd-8f59d83c5d60 1 Other Other +87a9d0a8-c9e9-4ba2-b532-cd84373e4268 1 Other Other +87a9dc4c-061d-4f39-9024-637ec43dbfe9 1 Other Other +87aa2b6f-2f43-4461-b93f-37daf02bfe98 1 Other Other +87aa2d44-6ca3-4034-9605-27d2ebaf4c5d 1 Other Other +87aa3ea5-ba73-4e65-9624-6328151e9576 1 Other Other +87aa7b71-74d7-4a65-b2e1-9cc6a38ea66e 1 Other Other +87aaa98b-1427-41fa-a063-05f7386ae195 1 James Other +87ab18d8-dfc0-406d-b498-1793cfd1e2fc 1 Other Other +87ab1b80-ee3e-4bef-8a19-86f558231864 1 Other Other +87aba121-430b-4760-9890-3dbf67e15c29 1 Other Other +87abc96c-8dc7-493e-878c-b25c60a0046f 1 Other Other +87abe60a-0b81-4029-bd66-7d04a5ba683b 1 Other Other +87abf19e-ba0c-42f3-b54e-3b8f0c9ee806 1 \N Other +87ac24b8-9dc1-42fe-9bb9-262c4358eaf0 1 Other Other +87ac3ec6-17fa-49e3-9f90-146cb3bf531a 1 Other Other +87ac4219-1ed7-44cb-985c-6d53a1e15be4 1 Other Other +87acae8d-30c1-43c0-906d-84431ada7a01 1 Other Other +87acb9bd-a105-4ca8-a203-e481e3e89bd1 1 Other Other +87ace8c8-7424-4391-9b77-6278e2c25990 1 Other Other +87acf564-7346-4aa7-a990-95b4f9708bb0 1 Other Other +87ad0973-1a1b-4f84-9787-1dec6263e5bf 1 Other Other +87ad2042-1590-40cb-82f5-6c5875dc21ed 1 Other Other +87ad5311-abae-476f-aa9f-dc0f21d71f74 1 Other Other +87ad69d5-3c6c-44a7-a91d-d501ae91242c 1 Other Other +87ad7e08-ff0b-47a1-98e3-9bd478a85794 1 Other Other +87ad8de4-b453-42a6-b941-6bcddf5c98ea 1 Other Other +87adcc09-2ef5-447a-9f1e-9951de588aba 1 Other Other +87ae4a53-dc5c-4d82-9b49-d9d00b3d7b12 1 Other Other +87ae80a1-4ccf-4053-8885-71b63ff792dd 1 Other Other +87ae8f0b-f617-4506-a47d-b7ce5674599e 1 Other Other +87ae912b-601b-4b1d-9fea-cd19a9aa766f 1 Other Other +87aea582-3842-4356-b5eb-85c5b29fa270 1 Other Other +87aeb73c-9926-11e7-bdcc-fa163e8624cc 1 Other Other +87aed697-26f3-419c-b34a-71d64d69010a 1 \N Other +87aef92d-aeb5-43ee-9f92-fc73228c7ecd 1 Other Other +87af18e7-8281-474a-a1e1-647fc63d19a5 1 Other Other +87af4a17-c03d-46e3-b463-f26e89705bf6 1 Other Other +87af692d-cfee-4ec2-b469-1d994f23c959 1 Other Other +87afd5ab-0b63-4cf2-bb15-9799af354721 1 Other Other +87b025b7-e78f-4df5-9487-339e6650fbdc 1 Other Other +87b03589-e2bd-4289-be8f-68d78d828c60 1 Other Other +87b06490-73d0-44ad-ac97-6b412eeb1ad0 1 Other Other +87b09db6-9697-4fa0-b1b1-a542a6798c27 1 Other Other +87b10e5b-0f93-469d-abec-4c881a2e2bf2 1 Other Other +87b16597-1bfc-4477-a237-92cf50150d3a 1 Other Other +87b1bb5c-3bb9-49c9-99b3-312ae1257929 1 Other Other +87b1e69c-7cdb-4a8b-bdd4-a75a05e46172 1 Other Other +87b1ef29-9eef-4e49-88cf-cd3d49a21568 1 Other Other +87b210dd-0f10-4b8c-aec1-2806d9c13f51 1 Other Other +87b24fd1-43bf-4f1d-9c2e-04ae26723000 1 Other Other +87b25a60-5cdd-4a26-a1ef-2ab102e3c753 1 Other Other +87b279f2-492b-4cd4-acd1-5244117b80fc 1 Other Other +87b28d91-ea19-49c4-aa80-5342c90b82c2 1 Other Other +87b2cf14-910f-45e5-be54-92a6d3f62093 1 Other Other +87b2f234-3f7a-41e1-83a4-c8408df8c82c 1 Other Other +87b301a7-2a69-44ea-8943-05d4be9afd1e 1 \N Other +87b30bc1-8b84-4eb2-b2fb-ae6a8f5cacd9 1 Other Other +87b324ae-b0fd-45e5-8180-503468672d53 1 Other Other +87b3b3bd-4a61-4111-8769-f3e10bab508a 1 Other Other +87b3b6e7-d910-444a-a73a-251aa6150cfb 1 Other Other +87b3b840-eeea-485e-bb76-c8f90800cb0e 1 Other Other +87b3bf20-7fc4-4cdd-8db1-03eca46e4057 1 Other Other +87b3bf80-8f4a-4811-8c9a-1fe2dd4ba61d 1 Other Other +87b3c788-2820-455c-92f6-998653c7b814 1 Other Other +87b3eb76-8f85-4e14-b291-36e0096911aa 1 \N Other +87b419a7-a581-4675-b04c-1fc46cbca7a1 1 Other Other +87b4a6a6-d3e3-4160-8c8d-11e7e702b173 1 \N Other +87b4c35f-0290-4f5f-b664-c4fc804219a1 1 Other Other +87b4c754-db86-4dee-af5d-c7790899c991 1 Other Other +87b540f9-bfa7-4a3d-bc47-3cb2d8e167e7 1 Other Other +87b56113-148e-4e87-9735-262e26b61cc6 1 Other Other +87b5a672-231a-428c-ae4b-fb7ea934aa22 1 Other Other +87b5ae73-12aa-4f2a-a42e-7c36c4c7a1dc 1 Other Other +87b5b878-bdbe-45a7-be91-8733e531255c 1 Other Other +87b5b94b-6016-457c-90ef-74d2ff0ab52b 1 Other Other +87b5dbf9-b386-4b33-9440-e131db50049f 1 Other Other +87b6aeec-5308-4b21-a433-38cfb843a735 1 Other Other +87b711a4-ae71-4b75-a488-753e7d7e6af0 1 Other Other +87b7304e-23dd-46b5-9b77-8451e2ba333d 1 Other Other +87b73668-c1c6-4cec-89e3-9f118a1869f3 1 Other Other +87b743e7-a813-4098-94a9-197fb8837e2d 1 Other Other +87b7527b-c5ca-405b-9e10-de218454a797 1 Other Other +87b7b242-ec68-4484-8623-16f2559b55e0 1 Other Other +87b7b775-d26c-40fe-8d15-04dd0dbebc55 1 Other Other +87b7dbb6-8704-4ec2-840f-9e1aca35a79f 1 Other Other +87b80bd6-f922-46eb-8e30-f14daba69898 1 James Other +87b88e75-cb89-4260-bc54-066bff4886a1 1 Other Other +87b8e02f-49dd-4049-9033-c6b9c978799b 1 Other Other +87b92b02-205e-4973-8a36-b17b14bd9e9f 1 Other Other +87b97684-d581-44ad-9b8f-20af7e526d6a 1 Other Other +87b9e5a0-b3cd-447a-9db5-539964de43fc 1 Other Other +87ba2dab-75c8-4798-b889-c9c388ac51e6 1 Other Other +87ba94f0-4049-4ac6-87ba-271211c137bb 1 Other Other +87bb7436-6bd2-4547-9764-bd847e77af7f 1 Other Other +87bb76c5-f803-4b97-9b72-b13f7091a147 1 Other Other +87bbccbc-ba57-47ee-8c02-4e07bbf0cebd 1 Other Other +87bbdb27-efa5-4bc0-8090-30e18d2bde42 1 Other Other +87bbf3c3-f0c7-460b-aa46-80746bf29a36 1 Other Other +87bc3d11-ea2f-4cea-bbff-bf2f2b592d7d 1 Other Other +87bc521f-d541-4c75-bc08-3be8f127aa4f 1 Other Other +87bc6270-6b40-4917-88e9-0f5a8f494dba 1 Other Other +87bc7be6-4780-4aa9-bbbb-7549f3087634 1 Other Other +87bcaa88-1fd1-452c-8b73-27e2d2271902 1 Other Other +87bcb8ba-21c5-4eff-877a-1612688f9eee 1 Other Other +87bcd1b2-a3b7-4b09-88e5-9d9ea1a902df 1 \N Other +87bcf24a-749a-4c3c-b110-234e5aedc8fb 1 Other Other +87bcf783-7e31-47c1-bb27-afb4b920ebb9 1 Other Other +87bd1e57-b749-46d9-9049-429a77c6764f 1 Other Other +87bd348e-eadf-4f41-89d5-9ea19a8a5204 1 Other Other +87bd3cf0-e2e4-4a04-a598-e8e88a0d12ca 1 Other Other +87bd5ac8-4937-4da0-bc71-13ea26566d34 1 Other Other +87bd8aab-5765-4294-98d8-f07fac5002d2 1 Other Other +87bdb2be-a922-46c9-9954-148c52a35e9f 1 Other Other +87be45bd-9644-4395-ad4f-f456da830a01 1 Other Other +87bea887-6ed2-4a7e-aba9-9dd40441e845 1 Other Other +87bf00b4-1da0-4258-9408-541c39c8c002 1 Other Other +87bf065e-4472-486a-9e5c-e9b0cd35843f 1 Other Other +87bf2a91-d0d7-4e48-ab1a-fcec471a9b48 1 Other Other +87bf3034-d096-4a63-baad-45e5016ee5d8 1 Other Other +87bf74ac-82bc-4159-a1e3-fa9c832aac07 1 Other Other +87bfa169-62f4-412d-8d41-0771011daca6 1 Other Other +87bfba54-21a5-4322-aa63-6b957dbb72ab 1 Other Other +87bfba99-5767-4d75-994b-64c4291f40ac 1 Other Other +87bfd1ca-2bf6-4967-a184-2562e0910dd8 1 Other Other +87bfe1e1-961d-4dc2-93c0-88f33630b7ac 1 Other Other +87bfed0d-0a6c-4548-a41d-40b473c7da09 1 Other Other +87c01f37-0693-4335-8555-6b417b9bf1d4 1 Other Other +87c05bd2-5f76-4c5f-b899-a83dfddbf6bf 1 Other Other +87c064f2-cfb3-4a08-8399-c4ae17a7d80c 1 Other Other +87c0c2ec-9777-4db4-9b7b-9917094ab34d 1 Other Other +87c0d416-fa61-4659-969e-0c4ff96a2814 1 \N Other +87c0e73e-7fea-49ae-9d43-7891cab40330 1 \N Other +87c11d76-389c-4e3f-b162-a573f2063941 1 James Other +87c17ac3-d28f-49a3-a846-04da131bcf57 1 Other Other +87c17fce-d0bf-49f8-b3ce-acefee49f59c 1 Other Other +87c18895-01a2-4074-8d9e-d90622238067 1 Other Other +87c22125-4bf9-419a-8c91-b1184cc247ac 1 Other Other +87c229ac-fc6e-42f4-b949-4e786bc3de40 1 Other Other +87c22d6b-f97c-45a0-a53e-87d6561adbc4 1 Other Other +87c237d3-34ec-4879-9733-ff875f85dbc0 1 Other Other +87c24990-c629-4cca-a0d0-8a9e319970c0 1 Other Other +87c268be-2c2b-481a-87d7-16ca3a32cdb7 1 Other Other +87c29f13-d892-488b-9fb6-92d191c65fb2 1 Other Other +87c2fef0-bc21-412f-a357-e7194bb90a2a 1 Other Other +87c30245-19bf-487e-8c10-db088dfe05d3 1 Other Other +87c37b26-9825-4f00-8ada-b07406ffd9a9 1 Other Other +87c39b82-bba4-4972-b63c-fb99e487efda 1 Other Other +87c3b53f-9f75-41f9-8da3-634da40d3e9e 1 Other Other +87c3c83e-1f1c-4334-b92f-294a75b382e3 1 Other Other +87c3eb93-08ea-4357-8548-ac9059aeccf0 1 \N Other +87c42bfb-a0c3-4c7f-80ea-7db908e78bfd 1 Other Other +87c49222-598c-4a18-be81-049283c41a6b 1 Other Other +87c4a539-5e24-43f1-a671-7cff81912dac 1 Other Other +87c4dc36-f079-456c-a1cc-d42c4cbc363b 1 Other Other +87c50ef4-28f8-4e2b-a732-c414fac443a5 1 Other Other +87c54042-aebe-4822-8130-1d680053df64 1 Other Other +87c57379-6b3a-44be-8db3-54ca0ed42d3f 1 Other Other +87c665e6-1d4b-4950-86bf-162ad36571e8 1 Other Other +87c666f1-3a69-4c86-ab23-564702443dfe 1 Other Other +87c6741a-f586-4b37-9aff-c1883dd24a84 1 Other Other +87c68812-6edb-45eb-a867-388402043462 1 Other Other +87c68e44-d3cb-44da-aa5a-bfdd5ed848e2 1 Other Other +87c6ec0e-967d-4d28-a247-70e23d3fa1fc 1 Other Other +87c703cc-01dc-414f-9d24-91583cad54fb 1 Other Other +87c71028-aa5d-4c72-a348-7da6458dfb15 1 Other Other +87c71f2f-159e-4390-8711-31acd5cf6d05 1 Other Other +87c73297-d685-422c-b4ec-d2fd1dec4670 1 Other Other +87c77cb0-547f-46f1-980e-b79bf1fe0b8b 1 James Other +87c78501-7a23-4390-b332-0b1027ed32ec 1 Other Other +87c786a1-6efb-4b49-b3ab-7fb4e062e34b 1 Other Other +87c78a4b-1c58-4e85-afe5-3e356f1ab89a 1 Other Other +87c7b27e-cc80-4136-b169-a12b649004d1 1 Other Other +87c7b691-bf2f-4396-a1ce-90f975141ae7 1 Other Other +87c7bc7a-800a-4c62-a61c-205cdb8add06 1 Other Other +87c7cc5c-1827-4bc9-8bca-fbe616cc0245 1 Other Other +87c7d25f-14a4-45c4-b3eb-3efb1981c387 1 Other Other +87c7ea3c-3107-49e0-b212-b68ff7d92b28 1 Other Other +87c7f645-c6a6-489a-a473-b7da9c16e187 1 Other Other +87c81e10-f1cf-484f-b383-b1ef7687fc48 1 Other Other +87c8ae1b-7471-4e8b-87f3-104a0708b95a 1 Other Other +87c8c1ef-f7a7-4277-a2c0-6828b1a7996d 1 Other Other +87c8d12f-02a9-4009-9e42-6fd14961004a 1 Other Other +87c95044-28c0-44c3-a2f9-d7ea74be780a 1 Other Other +87c97aea-348e-450a-97e3-63daba24414a 1 Other Other +87c9ce33-6e36-4e6e-9649-96dc9e57d0b0 1 Other Other +87c9d649-c09f-4552-bdc6-7dfaefcee551 1 \N Other +87ca0c6e-635a-41e0-98c5-a54e06fe9c5a 1 Other Other +87ca7d67-f1f6-4e6c-9136-125df85a66a4 1 Other Other +87ca8ca2-ef5e-4e18-a82a-37588dbaf295 1 Other Other +87cad0d3-57e2-45de-a901-661609141f10 1 Other Other +87cae18a-e89b-4860-b074-5ea63f8d2e96 1 Other Other +87cb00f6-ee15-48eb-a4d6-6286a2c38806 1 Other Other +87cb3bb8-b664-4517-a49a-0f988f3118ae 1 Other Other +87cb7b12-0bdc-40d1-b919-81bdcffe4b27 1 Other Other +87cc98be-933b-43b4-a51c-5bc99cf98608 1 Other Other +87cca85f-2143-4b65-8586-a1edf8b0b43a 1 \N Other +87ccceba-1af8-45c0-9c7f-b755a62d52d9 1 Other Other +87ccd416-6eb9-4738-9d7b-0ea31ba02473 1 Other Other +87ccd747-6ed1-438a-b7ce-5bdf6a715bf8 1 Other Other +87ccf393-e702-4ae9-be2b-411bbe3ed422 1 Other Other +87cd0e49-4620-4197-b2de-e27daf930abd 1 Other Other +87cd2232-45a5-44d3-979e-ef928f4795e9 1 Other Other +87cd384c-c414-4401-ae47-179ebf95bf4d 1 Other Other +87cd7184-71f2-41fb-b63b-8e3ccb9cd32a 1 Other Other +87cd96ea-913a-4da0-8bee-58edcdebcc00 1 Other Other +87cda616-4a2c-4f4d-a8a3-4b16c0e35b1e 1 Other Other +87cdfe90-8ff4-41cf-a02b-6c1cabbf1084 1 Other Other +87ce2ac8-1e84-4bb6-9d22-8d21fce4c7c7 1 Other Other +87ce412c-b619-4c12-ac01-a656dc80f602 1 Other Other +87ce457a-8c81-428b-816b-e119fb14ebbc 1 Other Other +87ce6348-5dc3-4bea-bb0d-a64b91c5885c 1 Other Other +87cedf81-a98e-48d1-80e6-7f306cd2af9d 1 Other Other +87cf099e-5722-49db-a07e-ee38833e6167 1 Other Other +87cf31c8-06d7-4c76-b26a-aa593cacc901 1 Other Other +87cf60be-89a6-4424-8cfd-e663264bc766 1 Other Other +87cf7869-6fab-4119-8e26-e4b8b40d7ef6 1 Other Other +87cf7c5b-1665-4830-a434-60336ed62cf9 1 Other Other +87d03a47-42b5-4e7f-a56f-f96f0d4bba08 1 \N Other +87d06f0d-7a7c-4001-ae03-9ea76cd5aef3 1 James Other +87d0ad8d-f3f0-49d7-a970-a1412ae5923b 1 \N Other +87d0b943-79fc-45cf-8266-3d3b5ea5bb60 1 Other Other +87d1111e-844d-4d64-be38-83c344f0a916 1 Other Other +87d11ae5-21da-490c-a4d9-769ea667dade 1 Other Other +87d1323a-be9b-4dcf-91ac-dc0ad8a380f2 1 Other Other +87d21265-c8d1-453e-8ab1-4a3627993716 1 Other Other +87d26f28-17ba-48e8-8270-d7641fa25b8d 1 \N Other +87d281a6-f8cf-47e7-9805-70b50be8f89b 1 Other Other +87d28aa6-9cef-47b8-a7a6-13050f4ac535 1 Other Other +87d2f49f-1f45-41e4-a478-a2357c029aad 1 Other Other +87d31ece-d81e-4580-9d34-ddb1a435b326 1 Other Other +87d3424f-5fc9-4441-b631-19f830f9621c 1 Other Other +87d381ac-e128-421a-8441-bc8ebe7e2581 1 \N Other +87d3839d-c4c9-4238-b4a4-f6caa3f13e1f 1 Other Other +87d3c88c-cd98-4559-b5ec-275d0a472090 1 Other Other +87d3cc6b-969b-47ff-8115-c0fab621d314 1 Other Other +87d3cc90-f572-4009-9a5b-55ee90b595d1 1 Other Other +87d3d841-e419-41d9-a887-dc51cfac10c5 1 Other Other +87d3e540-a0f5-468d-ae40-2abf2aeacb87 1 Other Other +87d481b3-2be6-4c61-a0cf-04b30a7f463d 1 Other Other +87d4a9e2-ec91-4408-99c9-ad6d99dd729a 1 Other Other +87d50a86-636e-42e4-a51b-527ba0125cdc 1 Other Other +87d55fed-4774-4ea2-8131-4efe002aa69c 1 Other Other +87d5716b-e6af-4a49-90f4-f44bd78bbb1f 1 Other Other +87d576b4-ca30-4748-8ed3-f26b5fb5fbc9 1 Other Other +87d5a1fe-dcc5-47de-a7b8-b7b228a4ae52 1 Other Other +87d5d293-4861-43f4-b1fc-0e28aeb9e250 1 Other Other +87d5e137-2b3a-4327-b1ca-5ca00d92d220 1 Other Other +87d6020b-937c-4634-9743-ffec955056af 1 Other Other +87d618cd-5715-40c1-bdd5-8decd865b766 1 Other Other +87d65bae-84ed-4b79-8c38-0a46ed57ad39 1 Other Other +87d670d0-9b02-443a-a84c-fa3379f7af08 1 Other Other +87d6a4fc-aea7-410a-aa30-9b753452cc99 1 Other Other +87d7489a-4183-4c9a-8f4c-a28fe5225186 1 Other Other +87d76514-c0f2-4702-a222-779b1621a8ca 1 Other Other +87d778e3-468b-44f6-92f2-27cd757c1bc8 1 Other Other +87d7c00c-1791-4da1-bf99-986198f87528 1 James Other +87d7c603-3223-4118-a8ab-fd5c66fbd169 1 Other Other +87d7f0e9-1f30-44ca-ba9c-db1ec5359277 1 Other Other +87d8258f-91b6-47d9-a31c-5044b02af6a4 1 Other Other +87d82bce-762c-412b-95fb-0493f812e402 1 Other Other +87d90006-3c23-4fa3-817c-c2c4f4a7d862 1 Other Other +87d92aad-bd49-4263-bc93-afec0478570c 1 Other Other +87d92ea6-0b30-4794-bf62-7ebe03a746aa 1 Other Other +87d9388e-5c48-4768-a5c0-9e24df78170a 1 Other Other +87d93bdc-acd4-476e-bbc2-3d39dfb272b9 1 Other Other +87d93f44-d84f-4339-9714-14033dbfe48d 1 Other Other +87d954b8-eac5-4f65-b065-06733e86ee7e 1 Other Other +87d99dcd-7f88-4749-a0c8-6af4898708f0 1 Other Other +87d9cdcb-3ee4-4d7e-b4fa-c49b0ed2aba6 1 Other Other +87da1bcf-4125-4318-8330-28b9d38b819b 1 Other Other +87da3c1c-8aba-4084-a0f7-c4d63bc45509 1 Other Other +87da5d40-dfac-4258-bfe3-0be1ce334cfb 1 Other Other +87da6fcc-cb87-4caf-b4e5-5f77d81c13eb 1 Other Other +87dad3ec-3ecf-48c3-9164-daf85274e61f 1 Other Other +87dadc14-ef6f-433b-8517-9c05530ec15c 1 Other Other +87dae83c-9915-405d-8a8b-fe7d0b62f205 1 Other Other +87db2094-6619-407a-bac8-4ccbac2add77 1 Other Other +87db32a3-b437-4760-a492-6b82f28bf1e7 1 Other Other +87db58ad-1b61-4fd5-b150-b7e609389f91 1 Other Other +87db7a04-9cd1-439f-b505-894c8c7c1f5a 1 Other Other +87db922b-a45d-405c-99cd-1e04d1c0deba 1 Other Other +87dba47d-60ec-4123-a886-fcaa83c781e1 1 Other Other +87dbaa8c-2dff-4c6a-b694-f48a94afbb78 1 Other Other +87dbaaec-3e77-4429-988a-69d3855e67a1 1 Other Other +87dbe9cd-dc40-4b78-b85c-c9d0b398954f 1 Other Other +87dc2747-45e0-46ae-9c4a-22190d41f55b 1 Other Other +87dc364f-a1ae-4271-9199-38c36816a6a1 1 Other Other +87dc6f45-57f2-4159-8858-84ea898fbcf0 1 Other Other +87dca8e3-91fa-4431-b100-cf78cbaccbb7 1 Other Other +87dcd2aa-e270-48dc-a8c9-c3ae54c173b2 1 Other Other +87dcea57-e507-4c8a-8e67-2f414155eec9 1 Other Other +87dd0e79-0780-437e-9da7-ed04ba7c6f30 1 Other Other +87dd1a1a-2218-45ef-b4a7-a2b630c47863 1 Other Other +87dd1e02-aebd-4d7b-b6f8-931c9c39c0ed 1 Other Other +87dd3594-cb53-4731-9eff-4e8313be4b23 1 Other Other +87dda0f0-7ae3-4a35-948b-15c7fd8dd3fb 1 Other Other +87ddb204-4e25-4b9a-9d0c-6441a32cbe5b 1 Other Other +87ddc1f9-e75f-4d78-8b0c-d07a76253b48 1 Other Other +87ddc51d-7fd6-42bf-80b0-1621b690581b 1 Other Other +87ddf823-05e1-4a66-b520-cca4239d371e 1 Other Other +87de1fae-0d1f-442e-a47f-657eac530648 1 Other Other +87de2360-407c-425b-b3c3-d522eeed2aa2 1 \N Other +87de4fe6-3e92-45ff-b41f-ea39e608f66a 1 Other Other +87de8ef1-5b6a-49d8-952e-6fc07c63d18e 1 Other Other +87de8fc0-5129-4c8e-a1a3-1d3a71cee912 1 Other Other +87dead5c-0dd4-40cb-9eb6-81b748544db0 1 \N Other +87defe0e-e2fa-4aa3-97eb-c90b8fca0cde 1 \N Other +87df0b08-445a-4806-a191-630034338e5a 1 Other Other +87df5564-4e4f-4e4e-b57e-d04c2c91c3b5 1 Other Other +87dfac99-f4ea-4cdd-bbff-bfa730056d8c 1 Other Other +87dfc902-bead-4e25-82a9-d84597a94372 1 Other Other +87e0389f-4385-4ea7-b20a-60df9695a042 1 Other Other +87e052dd-9a2f-45c8-91e7-c74ac82de904 1 Other Other +87e11589-cd36-45d7-9c63-3b4194bf3f60 1 Other Other +87e1246d-9c34-4d6d-91cc-833f356cd5f3 1 Other Other +87e12726-a254-47e5-b9c7-ea728b0d515a 1 Other Other +87e141d6-ab9f-4719-9ec7-49d14dff75eb 1 Other Other +87e15aa2-8801-4973-bde3-7c9082f18217 1 Other Other +87e15de2-6068-4eb8-939f-fa89bd36c032 1 Other Other +87e19a9a-a1f4-4ab0-a489-9753cfe35556 1 Other Other +87e1d861-b2d1-4743-a62a-fe63c61350bb 1 Other Other +87e1f227-bf0b-40c2-af48-c2df523b9a0c 1 Other Other +87e1f7cd-bcca-4816-93aa-98d3a21f3e52 1 Other Other +87e21232-7dde-46ba-a4de-d8abf0815603 1 Other Other +87e21688-b0d9-474a-adbe-27a727474acb 1 Other Other +87e238d7-042e-4dcd-ba75-ef65bbad3adb 1 Other Other +87e251a4-6a04-491f-ac79-81eb40089b76 1 \N Other +87e25e62-4856-41ad-9e5d-b5e05f5608e6 1 Other Other +87e2ad98-0930-4d3d-8c29-042b759d169b 1 Other Other +87e2c181-d079-4ca8-ae48-3ee1f22ed3f3 1 Other Other +87e2e991-bb7c-4716-8ff7-37aed0b061db 1 Other Other +87e2f7c6-398a-417a-a105-cf337c4973c5 1 Other Other +87e2fb9b-bdd4-48ed-b6dc-66c71e423ff3 1 Other Other +87e30ebb-f86b-43d1-aea9-b5b3cbface75 1 Other Other +87e32df3-c639-4383-9555-ebbb3aad6bfe 1 Other Other +87e354d2-4555-4c69-8f59-0e7142350522 1 Other Other +87e378f6-9158-4c1f-beac-ccaba2b496e9 1 James Other +87e379ed-6c1f-4927-b88b-148664605d45 1 Other Other +87e38149-8efd-44f9-88de-f5f732705494 1 Other Other +87e3cb15-d529-4449-843d-8192c26ebcac 1 Other Other +87e3ce84-6124-43fb-bb3f-ac86237c49d9 1 Other Other +87e3d079-16f4-473e-aa62-ab89f1907676 1 Other Other +87e40e43-99e6-46dd-ba87-749f0e9b337e 1 Other Other +87e41d0d-4f00-4333-aed2-e20cce51f3f1 1 Other Other +87e425f1-7ae1-47b8-815b-74b0787e8b9e 1 Other Other +87e45e20-ef78-4002-9843-d22f75752c00 1 Other Other +87e46abf-178d-4f02-b985-f2c7cc264ad2 1 Other Other +87e52cd2-ee25-4998-907f-70001902b356 1 Other Other +87e564a7-76f9-4b91-8df9-edc33563c318 1 Other Other +87e5c821-d89e-4f9b-8953-3ba0e72c5aa3 1 \N Other +87e5d110-a621-442f-a876-12bb7ed4047c 1 \N Other +87e5ef3a-a4d1-4290-9d52-700a9dba72b8 1 Other Other +87e61774-c86f-46d2-a22d-64d21fbc2b2f 1 Other Other +87e667fe-ab00-4d90-8204-8955249b2ea6 1 Other Other +87e6704a-9990-4386-a98d-7284b25c1db8 1 \N Other +87e68ef0-31d5-44b8-a42d-89b262522b39 1 Other Other +87e69a5b-a79a-42b2-bdca-d46c357c6884 1 Other Other +87e71181-2932-44e3-97b9-1a30b9a6475e 1 Other Other +87e74362-e6a6-49c8-8249-16d2069501e8 1 Other Other +87e75ca6-9d15-4dc2-9556-3ce8ecf90992 1 Other Other +87e763db-5cd2-48f1-a923-705eda7a5ab2 1 Other Other +87e79b5a-7bf6-4020-9abb-2f8bc381e722 1 Other Other +87e7a429-e685-4f00-b884-5aba54824bbe 1 Other Other +87e7dcf9-c0d0-45f5-bcc3-55d55f31d7f4 1 Other Other +87e7ea77-6fe2-452e-b3db-5db2b72f4e03 1 Other Other +87e802a3-a9e9-424e-9f88-e4921738fccf 1 Other Other +87e839d9-4421-4f27-9f78-0be6ec18f582 1 Other Other +87e859ef-1cf3-4b5f-871f-7c1fb42a739e 1 Other Other +87e85fa4-5ee6-44d9-95f3-c9ab03999fb0 1 Other Other +87e8798d-7014-40f0-8dd0-13a8634aea9c 1 Other Other +87e87bfe-0c3e-4010-a2bc-575fce95ca69 1 Other Other +87e89fa8-9c75-4fb2-aed2-64472685de2c 1 Other Other +87e8b72b-b5b5-454e-83ac-884df9b4da81 1 Other Other +87e8f702-cd19-4a38-a7e2-65e065178ac9 1 Other Other +87e900fa-78c9-4c5e-bf0f-1cfde1dac8c1 1 Other Other +87e92e93-6c9a-48c8-a3d5-29a512821f93 1 Other Other +87e9c835-2ce8-4eca-908d-aba03a7663e2 1 Other Other +87e9cc7e-1c5c-48df-9d64-0d4baa311ec7 1 \N Other +87ea0cbc-3851-4e5e-b865-e5f7956f54bf 1 Other Other +87ea4d2d-6634-4ebd-a628-9baf56b57c2a 1 Other Other +87ea88fa-d16a-4846-be10-4b473dc1d2eb 1 Other Other +87eaa6a8-6c2f-4605-8a30-8e8648e05d49 1 Other Other +87eaec98-4ce4-49bd-81c9-deb41106e07d 1 Other Other +87eb0a14-7ece-4bd2-860d-d9eb35e87598 1 Other Other +87eb6ba3-e9b3-428b-a9fd-6b90b4de2dba 1 Other Other +87eb7c47-a90d-45c0-90fd-0f3cc05d1084 1 Other Other +87ebc100-3bb0-4878-8963-42505ad1a6c2 1 Other Other +87ec1b13-195f-4efe-aea3-08fc58fbe5fd 1 Other Other +87ec248d-9c4f-45c4-a5cf-040faef46c12 1 \N Other +87ec255d-20ab-402a-8fb9-0b4e487b7132 1 Other Other +87ec51b0-12a2-4ffe-81a8-ddccdef0b83f 1 Other Other +87ec5fc6-b798-4b0a-8db2-1706d7dc9025 1 Other Other +87ec7025-5430-4baa-8859-ef7fda5754e3 1 Other Other +87ecba0f-6c00-48c8-8f3d-e85be7f6cee0 1 Other Other +87ecf638-0a29-42ce-919e-56d2a8e5eff8 1 Other Other +87ed1336-c679-4e96-bf88-6968fb992671 1 Other Other +87ed17e1-2397-4575-abc9-a813ebd53191 1 Other Other +87ed38b1-d50a-4a1d-8690-652cf8c8920a 1 \N Other +87ed45f4-aef5-4dd0-8e99-42e9797dba83 1 Other Other +87ed9a40-2a27-4735-9ae6-fde7c7f8da5f 1 Other Other +87eda569-05a1-4684-aea9-e12ef7d34609 1 Other Other +87ee11c7-2b0a-46bb-a4c5-f606d82a8d7f 1 Other Other +87ee5f4d-6841-44fa-af76-c91b8d745b50 1 Other Other +87eeea81-d9ec-43e6-b2ac-0f44f2975d56 1 Other Other +87ef1790-d18c-4388-89c8-301c876626a2 1 Other Other +87ef53d0-b1ec-492d-b91e-1f2294ccef33 1 Other Other +87ef6f75-660d-4920-ae30-e15e5e330da2 1 Other Other +87ef7dd2-28dd-4b35-bd8b-434e23b729ef 1 Other Other +87ef9508-e157-49f1-9380-0decdb6416bf 1 Other Other +87efabb4-fd45-4a02-a985-47c86d5d5a91 1 Other Other +87efb6ea-90ce-4598-8b5f-ff18fadee6c0 1 Other Other +87efba8e-520b-46d5-89bd-309b846ddbcc 1 Other Other +87efecd3-b191-4cb8-a690-0626e035f296 1 Other Other +87eff4ec-e49f-4dbb-9bea-f2df357da411 1 Other Other +87f0042c-fe2c-45be-b2a5-cdff6d0ab7ea 1 Other Other +87f04e5d-f10b-421d-9d2b-7a5adb06adaa 1 Other Other +87f07126-3a8b-47c6-946d-e2863accbd3a 1 Other Other +87f08ab2-7cce-45ee-a39e-8e5dd6063ff5 1 Other Other +87f11921-15b9-48cd-8d20-42b85f30f721 1 Other Other +87f19ffb-9f69-46ae-a70d-c5a1f987f943 1 Other Other +87f1a09d-409a-40c1-be61-4ec92c5e50b8 1 Other Other +87f1c210-bc11-41ef-b89f-479410040440 1 Other Other +87f1ea2c-2694-4b97-92c7-99cc523d4e8e 1 Other Other +87f22c80-62fe-4476-ab11-7efe394ff322 1 Other Other +87f23353-6cfe-44cb-aaca-980ffc1c1eef 1 Other Other +87f2388a-1eba-406c-97d8-7ee0c3b1fce2 1 Other Other +87f2cb9b-c055-43f8-afd4-75a4645ca2d5 1 \N Other +87f2ce42-9d03-44b7-8af9-8ee21b24ea55 1 \N Other +87f35116-7311-41d8-9b37-1a07193b0fee 1 Other Other +87f36c04-06ca-42d7-88a3-afa2b06f9a06 1 Other Other +87f3b34b-1c84-4a40-850b-34f15bd05ba6 1 Other Other +87f3c7d3-0931-448e-9a70-a0fcafb76367 1 Other Other +87f3d240-d3a8-4bec-85d6-93cdf88a9420 1 Other Other +87f40cf4-8a6b-4d9c-b702-0f0075a25063 1 Other Other +87f411a1-871b-4808-a3f3-0114c4559dd1 1 Other Other +87f41b14-74cc-41c5-bd7a-17255304270e 1 Other Other +87f46de0-771d-4829-8677-311994f8f0b3 1 Other Other +87f4ea5e-9114-4b24-a392-ff254fbb7859 1 Other Other +87f4f001-76e4-4784-8f5d-aa3d7013fa84 1 Other Other +87f5a1e0-9929-4811-8099-331529c1e7ae 1 Other Other +87f5faf7-d582-4c1d-8f02-91f72ae35dac 1 Other Other +87f61865-bdb4-49ad-880f-7afd88a1a736 1 Other Other +87f648c1-81fd-4ca2-bec5-784014605868 1 Other Other +87f6741d-c90a-4c0d-a2f4-ad9bf284c1f0 1 Other Other +87f68ae1-18c7-4f72-b0b7-1209f083f67b 1 Other Other +87f6a028-a463-48f5-9294-43d931c83509 1 Other Other +87f715d1-afb0-4595-870b-ae7136dca921 1 Other Other +87f7666a-7b6d-4fad-b8d5-5a9cf0b1878b 1 Other Other +87f7868d-502b-478b-a50e-2dcf1b950670 1 Other Other +87f791c9-3f54-4023-b176-6787cb398af1 1 Other Other +87f7d779-66c4-46a1-b79f-e521ec2baeab 1 Other Other +87f7e3f4-4fe3-43a4-b0bb-9e9feafc35fa 1 Other Other +87f8299a-ddd8-4cb5-96a9-a8eb7a9b0c05 1 Other Other +87f8c392-da97-40af-b5a1-7e0d69a339a6 1 Other Other +87f8d15c-eac0-4720-a9bc-9c9a1cd36f1f 1 Other Other +87f937b4-25ca-44cd-979a-d24296f16e4e 1 Other Other +87f99ff7-c918-409e-8c56-7e79e011fe8f 1 Other Other +87f9d327-f316-4373-be85-41d730540f68 1 Other Other +87f9f243-b309-4450-9e80-a32f5b99ecd0 1 Other Other +87fa257c-6dd2-4b31-823f-c62a1c3b1fff 1 Other Other +87fa4a50-fb47-4986-9b04-c7febdc92cfe 1 Other Other +87facda4-71dc-41b7-bd8a-518fc7f787c6 1 Other Other +87fae13f-95c7-451b-8943-cb9c95e087f9 1 Other Other +87fb1333-5ad0-4057-9dec-7d5adcbf3713 1 Other Other +87fb1be3-4e1c-4876-9e26-408f4cf74afb 1 Other Other +87fb1da4-5a55-49c1-9260-a4bd360780bf 1 Other Other +87fba788-bf29-43f2-b50e-d72c012c0e42 1 Other Other +87fbce3e-cc8b-4dc2-a877-b7383e64a859 1 Other Other +87fc19b8-ba35-4fa7-96d6-e24bda8afb31 1 Other Other +87fc2c73-63dd-4d6e-8e4e-713a2cc8c498 1 Other Other +87fc5290-734c-49d3-bd54-7457d456b675 1 Other Other +87fc955e-a74e-45f8-9a9c-a977293d2236 1 Other Other +87fcc42e-247c-4200-8c12-42f782ae88e4 1 Other Other +87fce941-b8e7-47b6-8f25-b4c9b125292b 1 Other Other +87fcfdd5-cd0e-4661-8708-cfbf702a71b2 1 Other Other +87fd4b18-d454-43d6-9763-d06c4a2dcf15 1 Other Other +87fd5891-2879-4e5f-821e-ba39c4f6adc8 1 Other Other +87fddb26-b499-433b-be8e-855dee1b0d46 1 Other Other +87fe0fcb-ebd3-4647-a0c9-0204cc1fd92b 1 Other Other +87fec1f3-8057-4410-9048-903df8a39084 1 Other Other +87fef4ea-6d4f-4296-b0e6-7bc9f4b258d2 1 Other Other +87ff0080-2fff-4426-bee0-b834a42fc54a 1 Other Other +87ff30c2-ac55-4c7a-bb9c-c307b0cf3c23 1 Other Other +87ff46b4-a7da-4ae9-bec0-1f0d0d2b03ad 1 Other Other +87ffb454-eb19-4437-8457-71a0b6829fd3 1 Other Other +8800f4ce-5dda-4ce6-b0dc-e767b6bfb6a4 1 Other Other +88011bf0-2d60-4ac7-a7df-862b06793225 1 Other Other +88016fcb-5094-4dbb-bd7c-0d8296c0e30b 1 Other Other +88017bf0-651f-448e-b9df-6f20b06d2d39 1 Other Other +880194a0-187c-4995-b551-f3942d254a1c 1 \N Other +8801d73d-c225-401f-af9d-c9b99935aa15 1 Other Other +88023f32-20d2-43e6-98db-697589e721e2 1 Other Other +88024eda-3556-44fb-b91a-127bc8eedd4f 1 Other Other +8802745c-fad7-49df-b56a-6ee6ecc9a6e5 1 Other Other +8802bf14-c391-4ef7-8008-a9a4e274fa07 1 Other Other +8802c0cf-02f2-44d2-8b14-b5d4bffb00cb 1 Other Other +8802d1d6-ccdd-4507-bd51-d4136043ea21 1 Other Other +88030e16-2bad-4c03-8e08-b46c80c26090 1 Other Other +88034df4-09e2-4134-8443-984949bffeb1 1 Other Other +8803f390-748c-4c2b-bd03-2fc097bd10a7 1 Other Other +88041075-cd5a-484e-8821-694b659af583 1 Other Other +88042441-111d-4537-9638-ec0905daec0e 1 Other Other +88043362-fa69-4260-9213-7e0df52ca460 1 Other Other +88044f20-da48-4a6d-b237-00b9bcc38693 1 Other Other +8804af81-aa6f-40a7-8f00-3c79bf2df25c 1 Other Other +8804c95e-01a9-435b-b3a6-b94229c76ddb 1 Other Other +8804e7d8-4e31-455b-9b2f-87fe538dab6c 1 Other Other +8804fc11-2cc5-49c5-93a0-57b404158ff6 1 Other Other +8805020a-8885-4d21-81f2-abd81fb80046 1 Other Other +880580ce-312e-4cc3-a44e-26c31eae724d 1 Other Other +880597a9-d33f-4671-b01c-155e843a0713 1 Other Other +8805daae-3a88-498d-8023-27970cef40eb 1 Other Other +8805dfa3-a448-42de-83e4-bc227edd743e 1 Other Other +8805e87f-a4b3-4f7c-9c41-13617cf061db 1 Other Other +8805fba3-250f-4354-8d7f-6d76f249cf08 1 Other Other +8806043b-09fb-488b-9c95-ca968de21f7e 1 Other Other +88064b1c-5ccf-4962-8403-8e72cf0a30d3 1 Other Other +880657f2-16bc-413b-9246-c9a4ccd2f343 1 Other Other +88066ecb-d56a-4770-872a-4898e9f2548b 1 Other Other +8806e8ad-b68e-47cf-a0f4-fddc6ebf7e76 1 Other Other +8807141d-8978-4be1-9b2b-677ff991fced 1 Other Other +880727a0-4a7b-4fdd-8633-6beb91393921 1 Other Other +88073ed2-8156-4b17-9dba-ad562f9c1da1 1 Other Other +880747d5-0c20-4960-b291-1c47c7d2f000 1 Other Other +880754b1-e3fd-4870-a96a-086adea2eac7 1 Other Other +88075668-7364-4bfa-b05d-719aa9417588 1 Other Other +8807bdc6-c512-4dcd-890a-dd77e30bbbd5 1 Other Other +8807bfdd-fb44-4604-a5e8-e7a4c8754b6e 1 Other Other +8807cfe1-d229-4b46-b274-2078d951c4e5 1 Other Other +88082460-bc80-4ebc-af14-08964d37bf52 1 Other Other +8808250c-9f1f-4257-b2b8-1baca3021887 1 Other Other +8808404e-66c1-4a6a-919c-da83ecf33e21 1 Other Other +88084641-e013-45b3-b9cf-4c0e6db66d19 1 Other Other +88084f1a-c175-444d-bb98-fe0b85e52939 1 Other Other +88088010-356e-40d8-ab44-f924e23f8106 1 Other Other +88088eb8-71e9-4169-8d9e-25ed43e456db 1 \N Other +8808a58a-c08d-4ba7-abd7-a8a60c639a08 1 Other Other +8808f150-5c22-4f4b-bb84-bf3bc5139b64 1 Other Other +8808f3cd-1744-4892-a6ce-502fbb04ee31 1 Other Other +8808f686-8fd0-42fb-9157-a7da231e4ffc 1 Other Other +8809077d-a95b-4bc8-a080-9939e375c67e 1 Other Other +88093c0f-201a-4380-8b98-bff52edb3368 1 Other Other +88094b15-9812-4b19-9a28-87c5be05ab34 1 Other Other +8809c367-883f-4af7-a9ec-cbf1a1198c19 1 Other Other +880a06f7-a059-4d25-99d8-3b4ebf0b38c5 1 Other Other +880a3d55-9b02-4049-9c40-e0f8f779317d 1 Other Other +880a574d-961c-4ef5-bc32-c8a7ed2dcc04 1 Other Other +880aa8dc-875a-446e-a247-8818051f5731 1 Other Other +880ac10a-3059-4fb9-bd6d-cbe9e50eb11a 1 Other Other +880aecf7-4c38-4380-8c60-3a56a268fbee 1 Other Other +880b0356-9ca0-49c0-8e02-bfa3e5e2be04 1 Other Other +880b316c-8410-47b5-944f-a3b1d941fcaa 1 Other Other +880b864a-95e4-4229-9442-72b815c675b2 1 Other Other +880bc5cc-5def-49c1-9a51-a989d0bf564c 1 Other Other +880c3b59-28f6-4e08-baa0-081a752d0ee8 1 \N Other +880c6dd4-8ce1-452b-8067-9ce866248152 1 Other Other +880c7f3d-fa6b-48f3-bf16-a66c8e39b783 1 Other Other +880d0e83-a9a4-43b8-873d-53c624a350bf 1 Other Other +880d1786-d965-4ec7-9054-332d30e855cc 1 Other Other +880d2862-15f0-4c4c-9906-f3a3dfb7f656 1 Other Other +880d78a6-8ad5-46a2-be17-236ff2ab9485 1 Other Other +880d78cb-3ac6-41e7-8185-29fc0ed3d44d 1 Other Other +880e3307-72fb-4086-9dc1-cdd60cd90e33 1 Other Other +880e5a51-ece3-40c9-8dbb-aa4c4b975359 1 Other Other +880e5cad-5205-4316-bd33-37155947cf4b 1 Other Other +880e5ccd-9023-4ddc-bbb1-67a4a84836f0 1 Other Other +880e651b-e333-4dec-beac-5276b5d95b07 1 Other Other +880eb290-b561-4d18-8f37-09f35dacb6ef 1 Other Other +880eff12-943e-4668-9882-a79bca8e2a90 1 Other Other +880f0f92-e752-4d74-ab2a-31422ea1fa9b 1 Other Other +880f457a-d083-4d6c-9043-9fff1e8d849b 1 Other Other +880f81d3-3852-4929-a547-af4bead0a0ca 1 Other Other +880f96e0-32a5-4c49-bd1a-20ec368ae0f4 1 Other Other +880fae86-cdf4-4fdd-83eb-7f1e80373b94 1 Other Other +880fd14a-a50f-4260-8fdc-6d355293b76e 1 \N Other +880fd16e-1bba-4692-80b3-bc90da65d3f0 1 Other Other +88107200-6683-42ac-afc8-cfb2e16b7888 1 Other Other +88108e74-2a00-4324-89b2-645c6a97ced2 1 Other Other +8810b812-6745-4d43-b723-a513a399ff1d 1 Other Other +8810e12c-2813-4169-b861-a6886e237ec9 1 Other Other +8810fcf8-ecbc-41c1-82ea-a7dbe8a5c9f3 1 Other Other +88110975-17b7-44c4-841c-bd907aa23be5 1 Other Other +88110a9b-67aa-4adb-adec-4a0fa41f63b9 1 Other Other +88111e04-8c93-4250-b5cc-9e74a19fe8be 1 Other Other +8811303e-d39a-4a31-a1a7-9ab4f32d6ef3 1 Other Other +88115b44-950a-4be3-9f4d-3204587e9bef 1 Other Other +88116e0d-98a0-4660-b5c5-21028ae971d7 1 Other Other +88119134-bc72-4630-8d34-416c19878724 1 Other Other +88119522-03f6-43da-917f-2c10ea0ccfc2 1 \N Other +8811a871-13e0-4ca7-9981-7a17c2434050 1 Other Other +8812593c-a732-45a3-8dcb-fabac5bae168 1 Other Other +88128108-e7c6-4d30-910a-58106a55e76e 1 Other Other +88128b30-4551-497b-ad2f-91b7c95c6044 1 Other Other +8813000c-541f-4b7a-982a-67923417ee53 1 Other Other +88132fa1-5ef9-4841-b089-da3492fc5fa1 1 Other Other +88138e94-efcf-41be-917b-538fa40f384f 1 Other Other +8813eb20-b58d-4dee-8315-756cf19c14c1 1 Other Other +88141b5c-4946-47f3-8687-fca4261e5c9b 1 Other Other +88143883-17bd-4676-a2c3-cd230029426a 1 Other Other +8814619a-15b6-4234-8f2b-a167d5bd8595 1 Other Other +8814a2cd-1298-4749-b3e8-057dd808bb14 1 Other Other +881570e3-3136-4a83-94f7-7913563c2374 1 Other Other +88158e64-b8e4-4a3f-b187-b87c2c8385c7 1 Other Other +881594fc-b5a3-4fb1-9b73-61fb3398fb5a 1 Other Other +8815b82a-6f5b-4068-9f8b-9e604748f2c9 1 Other Other +8815f14f-45da-4347-81bf-67e4885c7d59 1 Other Other +8815f8b4-613c-488a-8eff-fb3862c0cd37 1 Other Other +881610a3-4f51-4fc6-84df-c3fc065512f3 1 Other Other +88164ed3-4289-4c11-b585-3e5025d639f3 1 Other Other +88166061-95b6-42cf-83cb-2c7eb16dab1a 1 Other Other +8816759f-1b03-4864-bebb-f9cbf590cc07 1 Other Other +8816a7c2-3c0d-4fd8-855d-cbdcd168b40f 1 Other Other +8816a829-9ffd-4f4b-88e0-828ccfcedf31 1 Other Other +8817146a-c98a-47b6-9551-0e841bd33bbf 1 Other Other +88174aed-f871-4024-9897-25f6460939ac 1 Other Other +88179f44-6d6b-4e31-a2e8-77169725c3bd 1 Other Other +8817b9a4-af38-4d49-87d1-90a36ba24ea2 1 Other Other +8817fa17-c224-41e9-8b53-6c6cda5aaf31 1 Other Other +8817fa1f-f48e-490c-932a-1b04ed9f6553 1 Other Other +8818165e-a9b6-4cdf-894d-29d8e80580a9 1 Other Other +881841eb-7008-4db3-af6f-7143263f7b5e 1 Other Other +881867bb-0709-4ec8-9144-b2642350d495 1 Other Other +88188b76-c6df-4aa4-ad65-8b49d1139bb4 1 Other Other +881957eb-341e-4682-852e-397ae3ceb2e6 1 Other Other +881970d4-5b21-4a95-941c-f27448d9b80e 1 Other Other +88197fda-b53f-40f9-a44d-d6b9e7f7963b 1 Other Other +8819a46f-78b5-46bc-a9d8-0bda92ede819 1 Other Other +881a01fb-a87a-444a-b617-18c15d4a3cb1 1 Other Other +881a3909-5eef-4967-8ddf-dd59f8e2d20c 1 Other Other +881a988b-fe5b-406c-a7a0-7afcb9b05df5 1 Other Other +881ae28d-9224-430a-9b4d-a04bc65daed8 1 James Other +881afc1a-eb02-4609-971f-6988dde5c47b 1 Other Other +881bc65a-623d-458c-a764-fa0352c4c75e 1 Other Other +881bc93e-711f-493b-a1e2-efc5ba2a1a20 1 Other Other +881c0c49-1b20-4ce6-9d36-0fba3feb0388 1 Other Other +881c1a63-15ad-4294-9191-997628b22c64 1 Other Other +881c1ea7-9124-4619-8dbf-5b62fab7c1b2 1 Other Other +881c3f69-4a7c-42c2-88d7-d3787a01036f 1 Other Other +881cdd2c-ba72-4d72-ab47-0493a477ad9c 1 Other Other +881ceaf4-d720-4c16-9e63-6d519593124a 1 \N Other +881d175d-5af1-43a4-9534-46840fe732e6 1 Other Other +881d8c52-4c60-4137-832e-fa81d3c5240c 1 Other Other +881dc478-7a53-4a16-ac60-6d0f8c64c89e 1 Other Other +881e4d8c-6d93-4acf-86df-1fc687ca271b 1 \N Other +881e5039-25f4-4950-92b1-261a933d46ff 1 Other Other +881e7fce-f41b-454e-8cc9-2a5061599290 1 Other Other +881ea369-e1fd-4316-b298-9db7abfc351d 1 Other Other +881ea90b-3dec-4a07-97d9-2b2e4c3ca4f4 1 Other Other +881ef21c-a9c6-46ce-aaa8-d8e9d9128c1c 1 Other Other +881ef344-6293-4b2e-86e3-91f676b8e561 1 Other Other +881f8082-2287-43fa-9dee-e950eb8e6e51 1 Other Other +881fcfbd-6e2b-4419-873c-11b3caaf4eda 1 Other Other +881ff5c5-5553-4720-a75d-36a0012a5145 1 \N Other +8820b417-4a35-4fa1-836b-fbe924a181ad 1 Other Other +8820d209-f8e5-4a91-87ec-b26827635e6d 1 \N Other +8820ef5f-89fc-4663-9795-ebd8c140aabc 1 Other Other +882110eb-8377-458d-9bda-c0f1783b2cd3 1 Other Other +88211c37-d954-442d-8a26-a85c63353a25 1 \N Other +8821b5f4-fc96-432d-86ae-d0800de278df 1 Other Other +8821e7c8-3b80-455d-8684-23e3509f9d8a 1 Other Other +8822422e-a38d-4944-9821-c9ee8480681d 1 Other Other +882257a6-81ac-460c-81fa-f9cd7f01a397 1 Other Other +88232ddc-162f-447e-886b-d2c695a25ba4 1 James Other +882359ea-4bfc-43b7-8e3e-b36be553bb29 1 Other Other +88235e31-91af-402b-ba62-f5459bb4ea25 1 Other Other +882382cd-826f-40d4-8149-ec800f2967bf 1 Other Other +8823f0fd-a549-4ee0-9218-8bea1226fec6 1 Other Other +882412b8-19f1-4035-a29d-b9301353292e 1 Other Other +882455d1-a2e0-452b-82c6-a21cbc39e650 1 Other Other +8824aaca-de53-4dc3-9959-50dfdc0e609b 1 James Other +8824e325-8254-49aa-aa21-3fc4567774e9 1 Other Other +88251bb1-2e2a-4894-9b7b-74ff5ac1a54b 1 Other Other +88253522-0ab4-4a4a-b9bc-f95f6e9c1a28 1 Other Other +882544c0-25ec-4b2a-a586-68c125879047 1 Other Other +8825b6ae-e5fb-49d2-a048-ff22b5886aad 1 \N Other +8825c1e0-c89f-462d-b867-e9e2916254ea 1 Other Other +8825df08-cec5-4642-9d5a-4a22255a583f 1 Other Other +88260cfb-f5c7-4b57-bd13-431d8d4d9b26 1 Other Other +8826a785-d325-4706-a256-270ae435c8ef 1 Other Other +8826ab51-21ad-481f-94b7-ea3bd0ddcc4a 1 Other Other +8826b13f-2fa0-45dd-baa1-e49fc7d4b8c3 1 Other Other +88271f30-0b57-461f-a2ab-a274650f2469 1 Other Other +8827229a-5610-4cc3-b521-72c28871c941 1 Other Other +88272c42-b49f-49ce-859b-77aac50d7677 1 Other Other +882746b6-b00f-490a-852b-0b7896bdbe19 1 Other Other +8827508e-9599-4134-8ee2-21cae72a368d 1 Other Other +882770bb-df71-4051-a629-b07effffc3bf 1 Other Other +8827718d-d237-431d-b11c-c33dbaa2f5cc 1 Other Other +882773f9-27f6-4a0a-98ba-a76a3fbaf26e 1 Other Other +8827aaff-fc0a-4215-b137-03e943899edf 1 \N Other +8827cef8-dfd1-48de-b550-49656a95cceb 1 Other Other +8827d840-298f-4c8b-a260-f2a4313cca2a 1 \N Other +8828ae39-de60-4e27-b812-6a7af2eb03b9 1 Other Other +8828fb6b-ef98-41cb-97b0-707a9aca0dbd 1 Other Other +8829439e-472e-4363-88e8-2d4800dade6e 1 Other Other +88295e7d-6cc2-4e90-8ad2-5603f2b620a1 1 Other Other +8829b4f4-fe2d-430a-94cf-625d37df285a 1 Other Other +8829c8d2-5099-4ace-8140-9b407dea389b 1 Other Other +8829cf94-dfbb-4390-ac34-64105c2724fd 1 Other Other +882a3bf4-bca3-426d-9c6d-027bf53f5f60 1 Other Other +882a61a2-cada-4942-9d6e-f46211128355 1 Other Other +882a81ab-754f-43fb-9970-3a56e1cee232 1 Other Other +882a8992-0a73-473c-b2db-7b168db9e80a 1 Other Other +882a8ac6-ae5f-4ad5-bcd9-587f4fb90ba8 1 Other Other +882b129c-d02f-11e7-b897-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +882b6a0a-1c99-4a78-9a07-9bd865c69280 1 Other Other +882b7161-d252-4adb-bf0d-b76e1cd762ef 1 Other Other +882c0849-8ca0-4715-97fc-3d2e1a0664b0 1 Other Other +882c546d-b6a8-44cc-8c31-86fdc6d1137a 1 Other Other +882d0188-24bc-4256-8387-ecba59bed0ff 1 Other Other +882d0291-e909-43e2-8b3c-759fc8e70824 1 James Other +882d4ccf-b3b2-4e94-9a36-7a135f497866 1 Other Other +882d5a5c-5281-4f7b-a5cb-05fa0f1009e4 1 Other Other +882d6fd4-cd7c-4f4a-a9ae-c6da30d3b443 1 Other Other +882db2fe-6dfb-405f-afb5-9a98e2c1487b 1 Other Other +882de91d-e1fc-48b2-88bc-c62dc1cd6403 1 Other Other +882e1057-2204-44e7-85b5-3591b4c508f6 1 Other Other +882e4097-1334-4963-86b8-9dadf66ac27e 1 Other Other +882e6e45-64bb-4518-8c3d-f61ec6ca3f3a 1 Other Other +882ea594-e079-426c-8d99-61bf6bf7adc3 1 Other Other +882eff3e-0ddd-452e-9b36-42aa477649e5 1 Other Other +88301bfa-e2bc-4e20-8c32-64a676f5423c 1 Other Other +8830250a-868f-409f-b709-faf9ebc3b517 1 Other Other +88302bd6-978b-42bf-927b-817e7c6b4b66 1 Other Other +88303544-9a5b-4f5f-917e-26a80fc23380 1 Other Other +88303559-01f9-4a2b-aca0-2cf8ac9be7d8 1 Other Other +88305bc0-b93e-44b7-8c10-825cbac014c8 1 Other Other +8830fab0-d090-4d6c-9bb2-341d36d04204 1 Other Other +88310ee8-a27b-4f1e-ba18-3b8856f018aa 1 Other Other +88315894-1b00-48bc-bd07-886d1127cb9c 1 Other Other +88319550-00b6-42e4-8100-32f849ceb9ff 1 Other Other +8831b05c-5dbb-4f67-a6df-c4b48d36e4be 1 Other Other +8831b5ed-ee54-45d5-8613-97458f974d57 1 James Other +8831ca46-36d4-495e-b63a-7d1cc56319b1 1 Other Other +8831e2c3-8ae1-4605-b000-7d0d45864c24 1 Other Other +88320588-3a7d-4d0f-af2d-7d7db0ea6740 1 Other Other +88326831-b867-4530-881d-c4d277ac0e45 1 Other Other +88327930-5462-4294-8565-af523c9d1394 1 Other Other +883297ae-c1a6-42f1-9e3d-c438aa48d3b3 1 Other Other +8832b4ea-002a-4cc2-973e-06af464e9adc 1 Other Other +8832d41d-87fd-445a-b158-c7519e4dee8a 1 \N Other +8832dab1-3800-4dce-a4eb-2af153e26676 1 Other Other +8832fac9-da19-477c-a516-f4a155c39aac 1 Other Other +8833000c-0767-46c9-b7bc-0c4b5a45b8bb 1 Other Other +883339bc-92db-421f-89dc-d274b8126661 1 Other Other +88337f2d-d275-4307-a6ab-a41cfdf81d40 1 Other Other +88338f0f-1281-4199-ae87-69a90f74ce5a 1 Other Other +88342df7-4099-4161-8dba-dbe243e94843 1 Other Other +88345102-f714-4deb-8d97-ea36b07cc31d 1 Other Other +88345ac1-ace7-41f5-a9ab-eefa54a759a9 1 Other Other +883496fc-e200-4f76-9676-cff3e47706f8 1 Other Other +8834996c-e274-4be6-8db0-c5739f72aad8 1 Other Other +8834ca41-3f19-49b8-a001-ca61b0fd33f8 1 Other Other +8834d3d9-a8aa-44b7-b8e5-1773639c8d2c 1 Other Other +88350a38-be2c-4629-9ad4-7df06768f5c7 1 Other Other +8835197d-1536-4fda-9e43-2989722d4d5c 1 Other Other +88354359-f7ef-41df-8b6c-98f764d41f48 1 Other Other +8835cff5-e680-442a-a760-c14c501ae8cc 1 Other Other +88361140-c340-43c8-8c92-5981cc78a07b 1 Other Other +88365cf1-9031-41b6-bd0a-dd410a8775cf 1 Other Other +883664f3-ec37-4144-818c-8e0e43216357 1 Other Other +8836688b-2d9f-4a78-83d7-08acd20edd6d 1 Other Other +883686ec-e7b1-4c9d-80c2-9f9aaced02ef 1 Other Other +88368e71-ab53-4a03-9322-336e1aadc075 1 Other Other +8836b0f6-4f91-447a-a1cc-fdc7dbdd0125 1 Other Other +8836c26f-03f1-4e29-91c5-e5f358313d0a 1 \N Other +8836db28-e96a-40fa-affb-7c51ae230895 1 Other Other +8836ec80-eae5-48ff-aab3-57b6daf948e6 1 Other Other +8836fe71-17b9-43fb-a4c6-29b362cce6aa 1 Other Other +88374128-a2c3-4336-ab4b-8b7700bd9237 1 James Other +88376410-afd3-4e60-9d7b-982ad16d594d 1 Other Other +8837818c-3a97-4e29-a7d2-ca6a94bbec80 1 Other Other +8837a35a-9a36-4b42-8c9e-de23e271f923 1 Other Other +8837ffad-8f03-4c73-8de7-e67952a4841f 1 Other Other +883811ea-5c5a-437c-99d3-3734631cea96 1 Other Other +88381d81-c14c-4d65-a199-57b50b5737cf 1 \N Other +8838577c-4b40-431d-a053-cf66afab95ea 1 Other Other +88386a58-1cf6-41cd-86f8-a7f7e027f70b 1 Other Other +8838f2e9-f41f-493e-acbe-ce6dbcee9f6d 1 Other Other +88394b20-0315-43d1-aa0a-351f951ba705 1 Other Other +883967c0-0953-45ad-85d3-d1f5fca28980 1 Other Other +8839808a-53ed-4798-840f-9ec3b2e05e85 1 Other Other +88399ca6-2a73-40be-9193-c8109a9b58b7 1 Other Other +8839ad3f-16f6-40c6-86f6-418f9be11630 1 Other Other +8839cb97-28a3-43d6-a1a6-b28e40c613fc 1 Other Other +883a37ac-b2a0-4b97-8afb-a3a2101cb9b5 1 Other Other +883a5f58-54c0-476d-8c56-41510df89129 1 Other Other +883a78a2-ad72-4ee3-bd8c-32410967356a 1 Other Other +883a9347-9cb1-4f5a-8d5d-a04a39687487 1 Other Other +883ac8b2-6d7d-409b-9e7f-3d0cfe76a821 1 Other Other +883ae5ea-0800-4bf5-af0b-e4c83c7b113c 1 Other Other +883b2a26-3d7f-472d-b273-7c06bace345a 1 Other Other +883b62c9-649b-418c-ae0d-f8900342e39e 1 Other Other +883b7603-d9f6-4538-8872-9530ccc763dc 1 Other Other +883b7815-4249-4b81-9b78-2145c27ec528 1 Other Other +883bd3cc-c3e5-499a-9ad2-73b7a809be9a 1 Other Other +883bdd1a-dfd4-4ed3-9952-0f8a61f4bce7 1 Other Other +883be6cc-efcc-4a4e-97f9-41feb5af1c0e 1 Other Other +883bfd81-dc4d-4575-8fbd-3fd033fdab10 1 Other Other +883c51ba-7364-4867-a269-cb08c3ca1db4 1 Other Other +883c60f4-5429-46c3-aa64-89de7973967c 1 Other Other +883c7bea-93c0-492d-abba-e8e12ab40a3a 1 Other Other +883cedca-870c-4507-9352-b2d9849df798 1 Other Other +883d5aef-ee3f-48ac-b9d1-9111a0a46886 1 Other Other +883d8986-2266-421b-9a54-682de04436e2 1 Other Other +883d9f1a-5aec-4b8b-8ea4-3f91f2606ba5 1 \N Other +883da2a3-5686-48fa-a150-6090ce10ce4d 1 Other Other +883dc49d-77ad-496c-a286-4a8a539f7a62 1 Other Other +883e5f66-3d46-4586-88a8-166a57b8f560 1 James Other +883ef0c4-c57e-4e2f-bf17-11e03842f51e 1 Other Other +883f097e-b6e1-4cd1-a13a-1a8be90441a7 1 Other Other +883f1e05-3b0a-4fc0-acd3-b83d0b84a577 1 Other Other +883f3e9e-f52c-11e7-bdf2-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +883f590f-9bf0-4cc2-951b-2f914c22e629 1 Other Other +883f8036-922a-42cb-b0c8-2585a687ed39 1 Other Other +883fb1a2-f50a-47fc-8de1-0b099d0b5184 1 Other Other +884006b6-8db2-430f-b309-d20fadc082bd 1 Other Other +88408998-6c02-4861-987a-7623040a7a63 1 Other Other +88409714-dddc-4f37-b954-eca0bc41265e 1 Other Other +8840984a-00f4-4003-a986-4e53d0190667 1 \N Other +884111ad-15e4-49f7-bd67-171652d79481 1 Other Other +88413d68-7d13-4e3f-bf30-c21a1d15cc3c 1 Other Other +8841629c-cf6b-4788-9e96-5719a23d4299 1 Other Other +88419dff-57e7-4d29-abfc-b6c798f19382 1 Other Other +8842b929-ce3f-43b7-a01a-deca8e2c6ea1 1 Other Other +8842b999-e18a-431a-b69d-d685d1e842e6 1 Other Other +8842dfc8-37f6-4585-966b-c7c9628b3394 1 Other Other +8842e699-2fb1-4e84-9f95-50a915085ea4 1 Other Other +8842fcf6-ffea-47ea-a21a-94c7f6ae8dbc 1 Other Other +8842fd8a-cbd7-4f8c-8e0b-b32f93ef9935 1 Other Other +884301da-0d83-43ee-8f42-636827fa2fb3 1 \N Other +88430def-cd03-4b9c-9473-de62452af114 1 Other Other +88430eb0-8acb-41e0-9d9e-c47cf087ee8e 1 Other Other +884312db-91f0-46ce-b059-0905b760d0f0 1 Other Other +88431510-6f22-421c-a831-416398e1fb4e 1 Other Other +884322aa-17d5-4151-972e-118a459588eb 1 Other Other +884341d2-7323-406b-be92-b76c06d22034 1 Other Other +88436e4e-8c25-4bf4-a694-a074743ed8e2 1 Other Other +884370a1-2207-46b5-b819-14d3b3c6bc8e 1 Other Other +8843bb63-8d1a-42e7-a2dc-268b5b03a1e8 1 Other Other +884436f3-5b86-4ce0-8456-65367ad3ca41 1 Other Other +884438bc-9500-4e79-8cc8-eb0dc64cfe9c 1 Other Other +88443a6b-6694-4f5f-a14c-a1576f17d01f 1 Other Other +88445413-27e0-481c-b2af-07f24d89b72f 1 Other Other +884470f1-1be9-4ebd-82da-31f8ce0775ce 1 James Other +8844d191-ef86-4db7-8510-f5133c712b59 1 Other Other +884576f0-37b2-47c3-ac8e-54fff2fb107f 1 Other Other +88457d82-da0a-4c54-871d-6c94aff9914a 1 Other Other +88459d90-c244-4526-9ebd-f34abc748235 1 Other Other +88459f50-acdb-4286-874e-233fc7696f08 1 Other Other +8846d545-acca-4b0b-97a4-3f25f021819d 1 Other Other +884769e1-9010-46f9-b815-67cb8b2c8b74 1 Other Other +88478cdd-9cae-4742-968d-3191e712c1ed 1 Other Other +8847e7cf-b96a-43b0-b8bd-3cc77f05beb3 1 Other Other +88483d8c-467b-46c4-85ab-e3c3660cd472 1 Other Other +884868c8-02ad-4256-a9a5-1b8e7a650b10 1 Other Other +88488957-0f60-4836-a89c-24eb37898b5e 1 Other Other +8848a0dd-922e-477c-af36-9bcee53aa011 1 Other Other +8848a770-56ec-4f6e-806a-d5b3bbbaf872 1 Other Other +8848cffd-7765-478f-af01-429f317b50f7 1 Other Other +88491646-e20c-42c6-92c8-bc8867774fe8 1 Other Other +884916ab-fee0-48be-95d0-e28a587a3e0d 1 \N Other +8849221c-8088-4961-9953-fe5bbdc3d367 1 Other Other +88493fd3-e98b-4589-a3e3-9355bf939751 1 Other Other +884986fe-1a69-40a5-88be-4e81f68c8080 1 Other Other +8849b62c-bdab-4db4-a709-ebc6f3eaf732 1 Other Other +8849cd75-9524-4de5-b21b-6c32e488bf34 1 Other Other +8849e7f9-09da-44cf-98ef-e425a84a65d8 1 Other Other +884a1476-11a7-4989-8900-f522f26f3a44 1 Other Other +884a611b-ddb0-4691-8a93-c55cca38c0d7 1 Other Other +884ad937-ab9e-4ceb-b70d-a50effd75b04 1 Other Other +884aeeab-96d3-4cb2-9f32-313778eb85cb 1 Other Other +884b00c7-92fd-4d12-833e-7ed746fea8b9 1 Other Other +884b62c8-0e6c-42ab-8085-6345a2d4d595 1 Other Other +884b7a13-2383-4c13-9a11-90130599d037 1 Other Other +884b84a5-6a8a-4d9b-be5a-72381aead970 1 Other Other +884bde82-7f36-46d1-afde-925f9180bad8 1 \N Other +884c151b-f207-4c05-8e62-232089ebf4e3 1 Other Other +884cd616-9b33-46ac-af5d-5481955e43d4 1 Other Other +884cdedc-9fd2-4756-ad2f-767594040c78 1 Other Other +884d3532-30d1-4cb3-96eb-9644adfd70b6 1 Other Other +884d5f40-c06c-4fe2-8eff-60b8d25c0634 1 Other Other +884dcc02-f1c0-4088-9c20-fab4f58574e2 1 Other Other +884e085d-62a8-4943-a3a8-052f4f99d015 1 Other Other +884e5521-3106-4bb6-879c-0b8a0d199e3b 1 Other Other +884eeb7b-8110-4abc-ab40-45941374cbc3 1 Other Other +884efd1f-2351-4d58-b9c8-9ff2fba435bd 1 Other Other +884f986b-efe3-45f9-9562-13c5e3166b8f 1 Other Other +884fc1c7-4d79-472e-914c-9539c9da5a74 1 \N Other +884fc3aa-18a3-4985-844a-6ccf052c87ec 1 Other Other +8850283b-5b3e-4def-a6b2-9a0e24c50e82 1 Other Other +885141be-3d6d-4d77-a228-80854cea8f87 1 Other Other +8851506a-b13f-41f3-93d1-1d1af2da5f5d 1 Other Other +885171f9-5563-452e-8716-b94f5512e82c 1 Other Other +8851c786-331d-455a-b845-0d910d0f1bc4 1 Other Other +8851fe7b-0c28-4c18-a9d8-a0fd9e431561 1 Other Other +885230dd-e4d5-486f-9d67-a71f9560bb63 1 Other Other +88523e6b-27b3-4037-83d5-8c5018165951 1 \N Other +88528c9c-6254-4930-bb56-7fa1ff7f25b3 1 Other Other +88528d4e-eaed-4098-ad61-6054a5790809 1 Other Other +88529e97-b3e4-4042-ae7e-c946f6ef589c 1 Other Other +8852c2a9-7aed-448b-8773-a6634fc9a4af 1 Other Other +8852df11-8ec5-4f17-992c-ddfb276dda76 1 Other Other +8852e678-711d-4db9-93ab-b29ac424d9b4 1 Other Other +885379e1-b0fd-4ea2-ad85-2b6bb54affa7 1 Other Other +88537da4-e3e1-4a17-9442-03bfd0436e1c 1 Other Other +88546801-cdb9-42b0-86b7-d000a1159789 1 Other Other +88546b0e-467f-46a1-b49a-40fa96d5bdbb 1 Other Other +8854b50f-6640-49fa-a724-f988da0fa783 1 Other Other +8855225a-4d6a-45da-a52a-41cfdfcfc4e1 1 Other Other +88554f8d-08fd-4a95-853a-6fb1e9953599 1 Other Other +88555be5-849a-44c2-a3a7-5407bc79e394 1 Other Other +88559613-6e82-411f-8db6-2a34c4002f06 1 Other Other +8855a4ce-9b13-4b33-a731-798b3cb27219 1 Other Other +8855f80d-6863-4d3e-baf9-2af0ff5cc75a 1 Other Other +885641a9-225d-4b0a-b4f3-0c74a967d77b 1 Other Other +88564344-b6f1-4456-a5f4-0ff24e680f04 1 Other Other +88567293-d04c-43e5-8fee-768388d50aa6 1 Other Other +88569175-8502-4df4-8b2a-8049a7bf24ee 1 Other Other +8856af9c-b56d-4883-9f63-8d02c442f436 1 Other Other +8856dee3-69fa-48ae-a69a-ea10914395c2 1 Other Other +8856f5e2-51b8-4ed9-85cd-9f5365b64b66 1 Other Other +88571e9b-1877-471e-ad29-5b31c3fa7d91 1 Other Other +8857280c-e88d-4649-b23b-b825c9dcafec 1 Other Other +88578d46-caea-49a2-a86e-1b7114f1258a 1 Other Other +88579abe-2308-43b7-b3cd-fb279ebbea11 1 Other Other +8857e9da-6ae1-46e5-aa0c-77da10059b13 1 Other Other +8857efda-4ff8-48ed-a6c4-d802390fba34 1 Other Other +88580861-e12d-4788-af8e-4ce61030115d 1 \N Other +88584017-d525-4c34-bd2f-49558ee51a9a 1 Other Other +88585a07-23b0-42b1-bf6c-604339cd6729 1 Other Other +8858863b-c4ad-4460-8d18-4c8bcb06af50 1 Other Other +8858b5d6-c453-49c4-b5f3-22436f324549 1 Other Other +8858eb94-1a8b-4e8c-b0a2-9f8dcb00ec7c 1 Other Other +88593cbc-b81a-40d6-82ea-2fc356a0bae2 1 Other Other +88595d8a-b4fe-4893-b042-027bc62fbfc6 1 Other Other +885a087a-6c76-471d-9dde-44b90cefc88c 1 Other Other +885a56c7-2221-47c3-b6ea-1dc806ed5a64 1 Other Other +885acc80-e129-4da9-ae8a-e143dde3614f 1 Other Other +885ad45d-160d-4829-8c25-113ba04dccf7 1 Other Other +885adf8a-c249-4bc3-8b34-abe78fd4afff 1 Other Other +885b4bfe-7c50-4793-869d-926fc14da62d 1 Other Other +885bc476-235f-4a8a-9a59-a27b74251eb5 1 \N Other +885bd351-6d4c-454a-9bf8-652a92d02845 1 Other Other +885c2e6d-cedb-48eb-a816-8b7169605525 1 Other Other +885c6745-f881-42aa-92bf-5e124549c601 1 Other Other +885c89e7-f655-4be5-a0a5-b598acd68766 1 Other Other +885c9ccb-bca5-4d0f-8bef-fcfedd62291b 1 Other Other +885cb794-4172-45a6-9812-ec073cd4c15e 1 Other Other +885cdc38-c48c-4fe9-9a81-d5b67a1953ea 1 Other Other +885cde14-2af9-4790-937e-308a07bb68ae 1 Other Other +885cfbbb-6295-4846-9138-7f0cb35fc54b 1 Other Other +885d26fc-5803-46a2-9b8c-20ebfdfcd11f 1 Other Other +885d574c-1a53-43cb-9d6d-a3631ac3acaa 1 Other Other +885d576e-f304-48a5-97a9-9a77a1217f22 1 Other Other +885e49bf-7bd5-4207-a91c-6f8ea6fe87f0 1 Other Other +885e74be-f07c-41df-a451-d4eb6aeca5ac 1 Other Other +885ea044-1a85-401b-a022-5e5192ee7ac0 1 Other Other +885ef2a4-1479-433c-812c-3b24ec6146b4 1 Other Other +885f8d10-c071-4cee-ad63-0c5945287469 1 \N Other +885f8db6-4fc2-4710-927e-a16e4eb1ed83 1 Other Other +885fdc93-b56a-4dad-861d-9b493acf78a3 1 Other Other +885feabb-986e-4cd1-b0dc-43f1c38c379a 1 Other Other +88601600-6c19-4143-bd9a-0bf37826249d 1 Other Other +886056e7-9aae-43b3-9743-9da43b87aa28 1 Other Other +886058e0-80fe-466d-b13b-d59a364d870e 1 Other Other +886096a3-967d-49a8-995c-353eb658c23a 1 \N Other +8860ee60-d05b-490b-a55b-8b32ebe2e636 1 Other Other +886139ff-15d6-48ac-a724-a6d467e6a46b 1 Other Other +88613abe-1088-4482-ae52-f55b10ea5d08 1 Other Other +8861447d-446c-4d21-93a2-6806e35419ca 1 Other Other +8861747a-5dd9-46fe-bbcb-ab8e0f2b5fea 1 Other Other +88618b8f-2f48-456f-83fa-c12ce9759da9 1 Other Other +88619a88-2202-4bf3-8b8d-f381c758727b 1 Other Other +8861a1af-3bfd-4442-a368-d313c9459efb 1 Other Other +88626327-330d-4a0a-bcb3-d78a0bb32466 1 Other Other +88637720-c067-4170-881b-7fc2bf20fd13 1 Other Other +8863e0b2-7d03-471d-aa15-0b0672ee25ec 1 Other Other +886417b1-6cdd-454b-8721-7010b1720903 1 Other Other +88643541-fb1d-40e0-a5ad-93fb3a670ece 1 Other Other +886490ae-12b8-4471-8887-1f7ec6213255 1 Other Other +8864bd0c-2721-4272-aa2a-46fc01a09585 1 Other Other +8864e65d-58b0-48a3-8d4d-4caba8415214 1 Other Other +8865099d-12d9-414a-8bae-971162e56a7b 1 Other Other +88652499-378d-4f3e-8cb2-261f7a2e08b0 1 Other Other +88655872-fd7d-4ca3-8346-6e2ec2e3d6e0 1 Other Other +8865aea5-189d-42ab-80f5-be7c6ee2ebc2 1 Other Other +8865b1ce-f2e0-4c05-a3ee-14efb02b0bac 1 Other Other +8865c699-0a0a-417b-bb2f-928e80e4ef53 1 Other Other +8865efa0-e570-4647-b07f-68d6df449fdb 1 Other Other +8866007b-60f6-4183-90ad-a19479464602 1 Other Other +88665287-7acd-4f11-b6aa-ec5b491ad0ba 1 Other Other +88665b3e-8158-42df-b478-9f86774fea67 1 Other Other +88666644-aad8-4d04-8779-77de22f125f1 1 Other Other +88666811-3b5b-4223-ad03-4c4a3b75eca2 1 Other Other +88667549-ff09-42c5-885a-d38f757edbe1 1 Other Other +8866828f-d2f9-4b34-aced-10f8ed5be1a4 1 Other Other +88668a7b-e83b-4884-a5a5-f2abcc38a20f 1 Other Other +8866d9e7-e6bc-4e29-809d-a9b4cf963c5f 1 Other Other +8866df69-4526-4063-b0bb-3c45c3079d24 1 Other Other +8866f9c3-41f1-4217-b77a-b11e75d6e6ca 1 Other Other +8866fbaf-a427-4d8c-a8da-2f78a22ca74d 1 Other Other +88673745-6015-493a-abb4-91cd18f86824 1 Other Other +88677006-2773-4d7e-b541-d973c3498e0d 1 Other Other +886773f3-c44d-450c-931b-35bbec9a4224 1 Other Other +88677660-9a38-47a4-be65-3b593cc31945 1 Other Other +886786a5-cd00-4985-ab07-e9efe0f4a74b 1 Other Other +886798c4-3bc8-43ae-ac4a-57198bf7fa19 1 \N Other +8867a4be-09ab-4d06-a2c5-4eb6b7a51dd7 1 Other Other +8867b79a-55b2-4d41-8c07-1965fff903c8 1 Other Other +8867e5a9-07b4-4e12-9d55-1bc12ff529a7 1 Other Other +8867eccb-0604-4c42-bd40-de953258cf09 1 Other Other +88684983-cf69-4683-97c6-8c54f0cd8cc2 1 Other Other +88687040-ee97-4fdc-afd4-418040bd124e 1 Other Other +886884dc-d8bc-41c1-b457-62bec208c332 1 Other Other +8868c46d-d355-4f7e-8a7a-9663b6c8235a 1 Other Other +8868de66-e2de-4394-be1e-11b35717f63c 1 Other Other +8868f4c3-a4df-42d9-b1dd-9397779eaead 1 Other Other +88691283-9b9c-458d-a4fb-750be706b541 1 Other Other +886916d3-8e68-450b-88ff-81733fe27248 1 Other Other +88692308-1ce5-44cb-8504-9e5235411f3e 1 Other Other +886924d8-b3af-4b01-86c7-07fbd38a669e 1 Other Other +88695cd0-52fb-4441-9c1f-7e0318b27870 1 Other Other +88696405-6def-4da7-b073-7c02ed8410e2 1 Other Other +886979a8-576c-48d3-9208-c3ad90576dd5 1 Other Other +88699129-eb8d-4ede-a8e8-f9bcfca9ed4e 1 Other Other +8869c5c6-8fe4-4ef9-85a0-cdc5163f7111 1 Other Other +8869cd01-c1f6-4d94-b4af-957cb66ad206 1 Other Other +8869f9c4-fcd7-4b0b-b17e-1d06f93ba39b 1 Other Other +886a0c12-69df-4b2f-8d05-d6d6e2dfdf39 1 Other Other +886a1ecf-27b7-489c-9693-00c16d81de91 1 Other Other +886a25aa-581d-41fc-93c4-71957c85f083 1 Other Other +886a3638-852d-4657-9b17-baec3a02484d 1 James Other +886a5919-2038-4e90-8e5c-015f5b552551 1 Other Other +886a5d39-3fda-495d-8f0f-008e313d2fe6 1 Other Other +886a82e5-911b-4572-b4a1-bd736b180653 1 Other Other +886a9d35-b1ea-4414-954b-ed867bb3b030 1 Other Other +886adb89-115c-4bad-8157-372c4ee08d4b 1 Other Other +886aed7a-5848-4c27-b6e4-6fbb0044b6d2 1 Other Other +886afee1-f9c6-4ff5-a2b4-d01e83575e06 1 Other Other +886b03f3-6a34-441c-98b0-028bf5f11e3c 1 Other Other +886b0d13-0798-4cf2-9651-d8a549417255 1 Other Other +886b3c80-fb8a-4bed-9be2-8264e72323c3 1 Other Other +886b5a03-20d0-4444-8874-c526bad8362b 1 Other Other +886b5c89-b64b-4b7a-b624-3593b773e2dc 1 Other Other +886b80e5-06af-4ebc-839c-6b79e2b921d6 1 Other Other +886ba223-3d78-432e-9067-f1d1a00ad5d2 1 Other Other +886bc523-02ce-41fc-8236-c13fd46a0806 1 Other Other +886bcd47-0440-494d-aff1-4be963f3f56d 1 Other Other +886c0bc5-7a15-418b-84c2-0ea80c5c3fbd 1 Other Other +886c3edd-ce5e-4fd1-922c-f12d7fefc798 1 Other Other +886c4538-6469-4898-9eb8-820e789e4aad 1 Other Other +886c7718-62ff-4259-a18c-04435b75105d 1 James Other +886c8485-9bae-47b2-a14d-1968bc91c308 1 Other Other +886c9251-f723-4676-b914-fc58d1e2735c 1 \N Other +886c9f76-0deb-44dd-b0d0-34fe5b23925d 1 Other Other +886cda4c-662b-4f2b-9df8-fab675d84611 1 Other Other +886cf4d6-7889-4478-8e32-7ce40802b11b 1 Other Other +886d86eb-56d2-451e-b9d4-b96377f42ea0 1 Other Other +886daa89-11bc-4121-96d9-aaa9b8503614 1 Other Other +886dcd11-ba5d-48ab-905d-0afc222557ea 1 Other Other +886df467-5eeb-4cbf-be47-3a0086239b92 1 Other Other +886e5115-1527-4baa-a2cd-5f02e091a1e5 1 Other Other +886e5c62-1f2b-4f45-ba51-8ff832a0ba70 1 Other Other +886e8514-1fc4-48b7-be7d-13a8ec614ee9 1 Other Other +886ead02-9f49-4d27-902d-356af887d426 1 Other Other +886efde4-44dd-4324-a0d4-d7c90cab110c 1 Other Other +886f1012-889d-47c7-ace6-1214872ec2c2 1 Other Other +886f4d4b-fc97-4c92-a182-042cfc8e2efa 1 Other Other +886f6f56-028a-40b2-b7a2-b1f095f80cd6 1 Other Other +886f7a11-6aac-4e8e-b331-c446c6bf6752 1 Other Other +886fb5a3-8c0e-4c6c-9011-5bb2720f55f3 1 Other Other +886fd554-130d-4b9d-8656-08cf58404714 1 Other Other +88700b42-0da9-406f-9e3d-3f1152888cbd 1 Other Other +88700d5e-3340-45a2-90d5-12d0a664b01b 1 Other Other +88708d7c-9a78-4f71-b2aa-9cc4c7188a40 1 Other Other +8870b49d-9b4a-4902-a434-aa0c81dfb442 1 Other Other +88710729-18d9-43a0-b1f4-77c6a23ae9e0 1 Other Other +88718d18-3cef-42a3-95a2-b771032201d2 1 James Other +88719a42-9e7f-4fb2-9b42-25f03d0b98c2 1 Other Other +8871ab7c-49e7-411b-accf-5eca4b4d4617 1 Other Other +8871c294-e6f9-450e-88f9-cc157fa4e698 1 Other Other +88720b0a-80f8-4ca7-aee9-cc795848cc59 1 Other Other +88721f7e-0914-4808-a9c5-71e50ea35628 1 Other Other +88722775-7196-4f1e-b89e-3f7d96d6f8a6 1 Other Other +88725fa6-8427-4ca1-8c51-3ca63dbaa67e 1 Other Other +8873968a-36b3-4f76-a400-1bb7c3ce1314 1 Other Other +8873b753-2ac2-499d-8ef8-7ed2eab2c6aa 1 Other Other +8873e4a1-e319-4fdc-953c-d6e0313369de 1 Other Other +88740f5d-fad1-45bc-bcb3-b8968bfb00c1 1 Other Other +88741231-b03b-4993-9c45-1c76b3c7d94e 1 Other Other +88741574-8e9d-4206-a568-2f365972d4fe 1 Other Other +88749292-b3df-4817-a25d-f74e24af05ed 1 Other Other +88751d5f-5635-4d38-b91c-fdd83c2a9ccf 1 Other Other +88752c27-00fe-4c39-be53-3e48e086581c 1 Other Other +8875442d-0239-4adc-980a-8705b9e14927 1 Other Other +88754700-b84b-466e-8355-01945db4987a 1 Other Other +88754f54-cccd-45b3-b2df-60ea1e909ee6 1 Other Other +887586b7-fdec-4442-83a4-fe57b4f3b206 1 Other Other +8875c0da-3819-4ef3-82ea-3706cd567459 1 Other Other +887604f3-f34b-444e-ba77-20c66552ef30 1 Other Other +88762a09-cff0-4cd8-831e-d5dcbea6a995 1 Other Other +8876b3ce-34f5-4d34-997f-77ab3847f182 1 Other Other +8876c67d-aa1a-46a8-bd5b-2fd347af5d0e 1 Other Other +8876df22-232a-4ed9-b54f-a1f33393dfa2 1 Other Other +8876f35a-0f26-4924-bd75-d567fd82dc9f 1 Other Other +887788df-44b4-4ff0-80b5-5f44fb38534c 1 Other Other +8877c2d7-721e-4304-a367-c7e0ed833f6d 1 Other Other +8877c8f6-192d-4991-bb18-27b36536adf7 1 Other Other +8877c90f-c347-4016-8449-6e241274a7dd 1 Other Other +8877f894-902a-40da-83e7-5e31de437825 1 Other Other +8877f9db-7ef2-4981-9bb6-f3c460da0af7 1 Other Other +8878366c-e051-4bab-889e-d82a7e7ec792 1 Other Other +8878522a-4e33-4dd6-b219-3a1929d5f290 1 Other Other +88786909-d29c-438a-b8bb-b37f9566fda0 1 Other Other +88786b20-8879-4ba5-9d1d-795fba9d70a9 1 Other Other +88792ed1-aab2-4ddc-af3f-0b7a3515f76c 1 Other Other +887936a3-b3d3-4c4c-9f15-d12baa10509a 1 Other Other +8879583e-2975-4d6d-ba5c-05d521832f1e 1 Other Other +887a55c7-ed01-4b04-9428-0f87635315cb 1 Other Other +887a90f0-fa5f-4fc7-8d6c-00113709f9b1 1 Other Other +887aa1b5-7a76-4364-b83d-6f4d72c614a6 1 Other Other +887b0140-db9c-4914-b2f1-64af153ee711 1 Other Other +887b0c1e-ccea-4d63-b445-4f0791a56440 1 Other Other +887b2b97-56f6-4e05-831b-56f6aa3ffba5 1 Other Other +887b4597-f235-49b8-a3d1-cddffdd7c6e5 1 Other Other +887b5516-40bd-4775-85b4-9fe0294085ee 1 Other Other +887b651e-bc9c-4994-a238-07b9c42c8821 1 Other Other +887b8f93-235d-40dc-99ca-c10e740b1a03 1 Other Other +887ba8d4-cc66-456d-814c-81f05db07a47 1 Other Other +887be8d8-e2e0-4f2f-9f51-c4ac19f660f8 1 Other Other +887c1ab7-e0c1-4740-9410-75064d579431 1 Other Other +887c4869-8f22-4722-b071-0b0cea49e722 1 Other Other +887c8a31-9a81-4447-977b-83f79eccaab6 1 Other Other +887c9e47-96d2-481f-b548-29095ae0f241 1 Other Other +887cb177-7f77-4b2c-bd6d-7c8f0104ee6f 1 Other Other +887cc855-0da6-4586-b16a-67174acf16a8 1 Other Other +887cf1fb-e878-4c57-9c6c-9215c805dd64 1 Other Other +887cf625-7c83-4f85-8d64-baa72483c2fb 1 Other Other +887cf62c-209d-449c-91b9-899dbe895e2b 1 Other Other +887d1561-d954-4f25-8e6b-69d23b2f176e 1 Other Other +887d161f-e00b-4891-8e8a-47a683cbbc9f 1 Other Other +887d34f4-6685-4038-9566-645b757634d4 1 Other Other +887d350e-303e-4788-8fbd-2e0ed0e14448 1 Other Other +887d5c19-1099-4140-90a6-a838e9b3e84d 1 Other Other +887dc0d0-adfb-4563-85e4-29af2fc81b6b 1 Other Other +887dcd79-444e-4a2b-8fdc-eb79fb80a25e 1 James Other +887dfd8f-298c-444b-936d-0d18f0f1dab0 1 Other Other +887e11f7-8c0f-4e07-997e-997f628a2565 1 Other Other +887e4cfd-43e1-4f96-bb42-b3a13107cfcf 1 Other Other +887eb20c-1eba-463a-9e03-77f7d6c00b87 1 Other Other +887f4fd6-bd56-404e-b02a-ac5556e8400f 1 Other Other +887f53c3-1985-493f-8980-5a0ba11b0e65 1 \N Other +887f6309-0cef-4976-afbd-5f24231a2d02 1 Other Other +888018cb-e6fc-4901-a6ca-d4cb94cd2dcb 1 Other Other +88801b42-bd67-4eec-8e80-461dfafe72f6 1 Other Other +88803bf5-93b6-4825-bc44-41213a9590c8 1 Other Other +88806a09-84e6-4592-a33d-2978452a5825 1 Other Other +88806e50-adf0-47fa-a0be-5d64a2bf13fd 1 Other Other +88809abb-4c5d-4cd2-ac97-3b63586daf84 1 Other Other +888103df-72a5-4f26-85df-8db29f4e9931 1 Other Other +88817d66-780c-479a-bdeb-69152dd81fd4 1 Other Other +88819efd-a4fe-4963-bd8b-9c3657014e7c 1 Other Other +8881e92e-5e42-4682-a0ac-d8fcac7be8a3 1 James Other +8881ff5d-15bf-48a7-b406-bdb0ff4816be 1 Other Other +888229f2-071b-48bf-853d-129d5211b6fe 1 Other Other +88824ce1-1843-4064-9882-084143ce0627 1 Other Other +888259ba-e9ce-45b8-8e27-37326159ca02 1 Other Other +88825e0f-9e20-45b6-86f4-c387431f4c28 1 Other Other +88828ddb-bc14-4dc5-8901-f448fed15e25 1 Other Other +888304fc-06c1-11e8-81ba-fa163e8624cc 1 \N Other +888309fe-6283-4c5a-a592-fec6ec97da0d 1 Other Other +8883106e-832f-44ca-aa4b-dedf9f4be208 1 Other Other +88836aa1-087d-421f-a847-04d8db63265d 1 Other Other +8883aa95-ad2e-4e7b-a194-9e20b4b62897 1 Other Other +8883cea0-1327-4e8e-a77f-686321272a34 1 Other Other +888424e5-b0d2-49e5-bff8-7f0c63309e85 1 Other Other +888447c0-5c27-4c0d-96f6-a9196b68a366 1 Other Other +88847560-3135-495b-97b7-2135b6509a9e 1 Other Other +88849f22-e4df-4d96-90b6-e75a07213dd3 1 Other Other +8884ccbb-8200-4299-ad60-d80926355d0f 1 Other Other +8884ddc2-722d-4ec9-9b21-5fab369bb9a5 1 Other Other +8884e901-2cc1-4438-860a-b7d50b38957b 1 Other Other +888521f4-1a7d-4a79-bdf2-4bc176ca79d2 1 Other Other +8885239b-e20b-457f-adeb-57895f8fdb31 1 Other Other +8885798f-fe33-47d1-9339-c35f4ef87a28 1 Other Other +8885de2f-38a5-4c41-9b87-1a6baed8ad4b 1 Other Other +8885e9e1-cf1b-4cec-bb6a-2dfeb2addff6 1 Other Other +88860ad3-31e2-426a-ba1a-f73484fb534b 1 Other Other +888669af-8a80-4560-b501-2b6fd0ce3c3b 1 Other Other +88867bf0-e62e-4644-8e6c-49e14c10dbc6 1 Other Other +88869c66-3550-480f-b2b7-7076dfbb3d50 1 Other Other +8886a9c6-d282-42de-922d-4ebdb575d682 1 Other Other +88871645-8597-41aa-8b52-3338108bd79c 1 Other Other +88871821-724e-4c99-8a65-d7c51fd88564 1 Other Other +88875f34-ca93-4a7f-aebd-bc5d027b0ef2 1 \N Other +8887907b-6de2-4e4c-9c87-c1b57ba346c8 1 \N Other +88879a42-87f3-4890-823a-6b7fc7d86265 1 Other Other +8887b88c-fbca-4372-baa2-0e4ef2c07455 1 Other Other +8887cb42-3e44-4cf5-b453-a1adff26492c 1 Other Other +8887f7c2-7f0d-4a96-9ea9-f8cbc0b6c248 1 Other Other +88880179-97a7-44f3-acec-3aa2c88b0063 1 Other Other +88880396-0fe8-47f5-a4c6-f93064652fcc 1 Other Other +88882d50-c55a-46e3-a1ba-e49e98d1f130 1 Other Other +888862ff-e30f-4778-8db7-e660833dca72 1 Other Other +88886532-c4a4-4f4f-955d-e9e7e8d72e5d 1 Other Other +8888bb2d-adfb-4971-b000-8eba24c15238 1 \N Other +8888c8de-b73b-4349-bbd3-a89cb1e4bfab 1 Other Other +8888d9b3-0153-4c5b-b79d-1b81b680ded3 1 \N Other +8888e930-49aa-4aba-8c66-3f73305af83d 1 Other Other +88891de6-0f4e-4cfa-ade9-59530f3dda2a 1 Other Other +88899f48-a231-44ac-ae02-bc6ffeed8c04 1 Other Other +8889ce68-f562-46f2-9382-7c24badac637 1 Other Other +888a28d7-b26d-40ff-b05f-1ad583885a5b 1 Other Other +888a7709-28c8-49ca-8319-fb0c98d06631 1 Other Other +888a83ba-381c-410e-9406-289ca503d6d2 1 Other Other +888a8d09-45ca-4bba-875a-ad619f8840bf 1 Other Other +888adb06-7f70-48b8-95cb-58a62ad396e0 1 Other Other +888adcf1-d15e-49e8-9c83-c9a88e1b97bc 1 Other Other +888b3003-da71-4968-94f7-f9c1a6333676 1 Other Other +888b3f02-ace1-4991-a4f0-63e7c34a6927 1 Other Other +888b5a1b-5562-4ab5-879d-8531d4b81659 1 Other Other +888ba236-5bf7-45dd-a2de-39a1c7fbc844 1 Other Other +888bd23e-990e-40f0-b890-463e7ead0872 1 Other Other +888bd737-5ee8-4e4e-bef7-1b1448a256a3 1 Other Other +888beb24-1a29-44be-96d5-c22c0797e509 1 Other Other +888bef9c-67fa-4d89-9c80-b326b879691a 1 Other Other +888c3b38-f541-4eb1-8c16-4d4fa0ddeb88 1 \N Other +888c4d65-b00c-4dd5-a37b-5dbc98066452 1 Other Other +888c69c3-2b8f-490c-bcbb-a9f107892b2d 1 Other Other +888cbf5f-f136-4e4a-bdb9-ef3a1350ee1f 1 Other Other +888d3a6c-cfd6-4fbb-ac3e-e14876890c91 1 James Other +888d3f50-b2dd-42fb-915f-47e428ec2e12 1 Other Other +888d66f0-0556-4bb6-94bd-47df705383c0 1 Other Other +888d6acf-b1b6-456e-a4f2-38de7b840069 1 Other Other +888d9660-b2ee-47ec-b023-5cf0ea1555bf 1 Other Other +888dc16d-58b5-4047-8a09-7376741405a3 1 Other Other +888dd5ce-074a-45e6-bf6f-0a2486d5b525 1 Other Other +888e1810-1997-4e86-8f90-e942d87bdf28 1 Other Other +888eb441-dd59-4acc-9191-6e406406060a 1 Other Other +888eee22-6bae-42c6-a9bf-ba6dded95517 1 \N Other +888f0819-1369-4109-9a42-354766cb25c2 1 James Other +888f21fa-bf6b-4b8b-b43a-68e55727a4da 1 Other Other +888f4078-9892-4193-9e37-baecb5ab70ee 1 \N Other +888f5ebd-eb95-4659-b936-0d30b1509175 1 Other Other +888f60ed-70f5-42aa-a9fd-1bbb8ebafd04 1 Other Other +888fd338-33d8-4a3b-a493-f098c1057a72 1 Other Other +888fde26-ef4c-4e53-a917-c9a0e99dd681 1 Other Other +888fe3f3-7521-4943-b7b8-9938cdbd5281 1 Other Other +888ff392-002a-48c4-8b3c-861f27283848 1 Other Other +888ffc56-aaa2-493d-afd9-71a14eca1faf 1 Other Other +88900c95-e6f2-4202-bf9f-8aabe04f5bdb 1 Other Other +8890153f-efd8-4f31-978d-e7637b50d3d3 1 Other Other +88901597-73fa-418f-93ec-695b5a58c7f9 1 Other Other +8890657b-a729-460c-b15a-a971bda7740f 1 Other Other +88907b81-48d2-4117-b6bf-24cfe2d1a858 1 Other Other +8890b767-ed92-4e8b-895e-ca843adf5536 1 Other Other +8890c19a-db2c-4110-97c6-34fd8b1f0525 1 Other Other +8890cda7-407d-498c-ae70-e451a80e0fa8 1 Other Other +889105e3-4302-4539-8b3a-2b92312c13ac 1 Other Other +88911df2-8361-4ce2-9e9d-11aaba7f8f9c 1 Other Other +88915c4b-955e-41bd-a334-006ef68cd0b3 1 Other Other +88916294-aaad-4ea0-8f0a-0d33f5206cdf 1 Other Other +88917226-798f-40fa-94a0-9602f36260c6 1 Other Other +88918882-aaa4-4548-9ff7-fd5e601f8fb9 1 Other Other +8891da3e-ea93-49a7-9904-5be2ea282702 1 Other Other +88924630-c6b6-479a-b50b-119f47cea61e 1 Other Other +88924ef1-0ea8-49e7-8323-7f0d8394c154 1 Other Other +88926f41-4b89-4ad9-b51a-e03d5d2067c3 1 Other Other +8892f5af-aabf-45f6-9e29-a828a32a2d48 1 Other Other +889320d6-4a71-44e2-aeb3-b534623bd09d 1 Other Other +88932e3a-516e-475e-beb2-b7a0ca1713a9 1 Other Other +88933753-1c58-4ae5-a30a-830546245d66 1 Other Other +8893b29a-eca2-49e4-b229-70c680ab619f 1 Other Other +8893da43-1345-484f-af56-e85a13b6a219 1 Other Other +8893e75d-0a62-435a-98f3-b6193d0037ef 1 Other Other +88941a78-4423-4e05-9e4a-c05dcb4bfd87 1 Other Other +88946682-1dca-47b4-aecb-50c5bccb76ab 1 Other Other +8894e74c-9bce-449f-91de-9a03c32f10ef 1 Other Other +88950172-28dc-48ec-b90c-096c79f65b77 1 Other Other +88952ed1-bd94-4b3b-a7f0-bb407981edf4 1 Other Other +88953230-a692-4a24-9112-749aaa14aa44 1 Other Other +88958755-80b9-496b-95e5-b4f6740bf6a2 1 \N Other +889636c5-8f54-4217-a369-21733351b3dd 1 Other Other +8896651e-e23a-4edc-a571-f08b745e7d85 1 Other Other +88967ac5-3c3c-4bc5-8038-f1288104f6f3 1 Other Other +8896940a-c8a2-45f4-9b26-cc80703aeaec 1 Other Other +8897096d-b83b-4bcb-b4b9-0ce81b29277e 1 Other Other +88971df5-b6ab-4032-b686-dcfd8074db77 1 Other Other +88975eff-0e2d-4e8e-b629-51e352db2045 1 Other Other +8897c433-8c1c-454f-8175-424993db608c 1 Other Other +8897ce9b-5b1d-464e-862d-d158e4aafe9d 1 \N Other +8897f6d9-a1d6-4149-be39-bed02475ef90 1 Other Other +8898105c-778a-4c9c-b7f4-a52a0c61fdb9 1 Other Other +889854d6-9bf0-48b6-a0bf-eba83bbf0f59 1 \N Other +8898918b-cdc0-4f6b-9e4b-6e80620f144c 1 Other Other +8898c39d-36eb-4994-8ac4-443a5b278599 1 Other Other +8898c68a-e24a-4fd2-b53f-e55d458ad3f7 1 Other Other +8898db5f-adfa-43cd-85a2-22324e357ffd 1 Other Other +889904a0-e986-4cc9-b722-454cf479426f 1 Other Other +88991eca-7898-4d89-ba7a-b987a3b9f16c 1 Other Other +8899262b-5a01-481a-91d8-a6b0789b2d59 1 Other Other +889941b3-d2d6-41f9-a753-87f523558a67 1 Other Other +889944aa-23ad-4041-bc93-12c3972dbc74 1 Other Other +88996dcd-76ba-4260-a5e6-fead3cf356a0 1 Other Other +8899b660-5f06-41fa-802c-a5e085320d26 1 Other Other +8899ddc8-400b-4a14-85fb-311a7185ae4f 1 Other Other +8899e466-f814-493e-9915-2e39e2fc5a93 1 \N Other +889a8b2e-92ea-47a2-b8ae-6544a7a793c7 1 Other Other +889a9589-734a-4b83-98ef-b149f971ffdb 1 Other Other +889afad1-1c79-4853-881f-631aa33636f1 1 Other Other +889b195e-60ab-466b-8a2e-d1941349fc8e 1 Other Other +889b403a-d0e2-4d89-a8bb-54d8fa68f112 1 Other Other +889b4d30-20a1-4a22-b2aa-5c6f7c358c1c 1 \N Other +889b69f7-a2bd-4af1-8acf-2d5e2a0cd6d9 1 Other Other +889b702f-9b64-4f90-8535-7f24350c6dc3 1 Other Other +889b7d9c-082f-4a4d-a630-35f49334205f 1 Other Other +889b8826-6086-4c4e-999d-b34aacb9e5eb 1 Other Other +889bc840-6043-4a40-b28c-ee6854c48436 1 Other Other +889bcb6f-97e2-4f68-b7e5-52f07dd75b2f 1 Other Other +889bdef1-0268-462a-ac99-5db3767fce21 1 Other Other +889bebea-5ce2-40e1-a43f-8907d6fb8d22 1 Other Other +889c0f6f-995c-4e35-8a2d-863b4ae9dcc9 1 Other Other +889c1868-2f96-4108-9ac9-6f6b5f4d1b14 1 \N Other +889c41b9-d36a-4881-8eb5-3b002c99afea 1 Other Other +889cc832-235f-465e-8ef0-52a198ce4f7b 1 Other Other +889cf948-c90d-497b-a071-8ff4624e6104 1 Other Other +889d5929-2c46-4f3a-85a3-e477b13f90e7 1 Other Other +889d64bf-7f28-42a6-844c-6c7a3531b09e 1 Other Other +889db031-272f-4747-bd01-6d9bddaee9e3 1 Other Other +889dd6f3-41bf-47e7-a087-487ebd5df643 1 Other Other +889e0499-94f1-4d5a-8b1d-595f99ebce22 1 Other Other +889e0906-fc32-432e-9693-ab5de4e463ec 1 Other Other +889e2615-d572-4fcb-b13b-d839e3c15170 1 Other Other +889e88cc-4a7c-4c4c-897e-51bbf7a1cc53 1 Other Other +889e8e46-04f0-4efd-97e7-1757859ece40 1 Other Other +889e927e-7d83-450d-9aea-e6735e207674 1 Other Other +889edf54-47b3-4f24-8dcc-bf6d02415e22 1 Other Other +889eed7a-85db-4719-a74d-0684b5d5242e 1 Other Other +889f30fa-c7a2-4261-9acd-f7db3d055965 1 \N Other +889fbaf1-5daa-4f20-a518-ab9438618ded 1 Other Other +889fbc19-1e2d-4dd9-82c6-6c74920e0002 1 Other Other +889fdd0a-1aee-4c71-ae91-65e8430c2658 1 Other Other +88a0218f-93ed-435b-8d9a-b6fc0af51f0f 1 Other Other +88a02a9f-18cd-46d9-ae5d-c4f99b643f24 1 Other Other +88a03046-eeda-4186-9eb3-32392401d70c 1 Other Other +88a03946-406f-4999-a8f1-287e5cd51632 1 Other Other +88a09fae-9e51-402a-ab31-2ec500a8ae84 1 Other Other +88a0a901-20b4-479e-a93d-6dbba4fd60fc 1 Other Other +88a10a97-b5ab-4a3f-9190-88a01f9e6e99 1 Other Other +88a1172f-acd3-4c06-abfb-a3c8efec2977 1 Other Other +88a11b13-f351-4956-9881-b579b539d889 1 James Other +88a19e91-e7d6-4409-8994-cc88be4746a6 1 Other Other +88a1cc2c-14ca-4d32-ba1c-d2f1f0866054 1 Other Other +88a1fa97-4b7c-482c-872e-2bd2ccc5db26 1 Other Other +88a2a383-dc7c-4aad-816f-4bba175949e9 1 Other Other +88a2de2b-3ba8-4de6-8ff7-db9112fea8ee 1 Other Other +88a2f02a-b893-4f74-8d7d-6e10a66cbc71 1 Other Other +88a2fc42-bc7f-49ae-830f-1d31bf658405 1 Other Other +88a38dba-1605-46e6-8273-0247bb98f1b4 1 Other Other +88a3ba21-c424-4082-9f20-43fb7cf6e4ab 1 Other Other +88a3c289-7ea2-4e3e-b6f4-bdb1285beb6d 1 Other Other +88a3ea19-99b3-4d4b-8d56-29ce5485e36a 1 Other Other +88a3ffc1-f0f0-41b5-a0bb-ff9c4172f42f 1 Other Other +88a47cde-6756-4606-a1fa-9fbb533715fe 1 Other Other +88a4b715-0200-46cc-9372-f7bcee1d6479 1 Other Other +88a4da9d-56fd-4744-bae3-cd2b9f891d0f 1 Other Other +88a4e317-51ff-42ff-bdc1-c2aead264c0c 1 Other Other +88a4e915-ad39-4ded-b77b-5768d78d0fca 1 Other Other +88a4f186-3dff-4ced-9451-1b2c7a041709 1 Other Other +88a5088a-16e6-48f9-badc-ce904f441ef5 1 Other Other +88a583d2-e2cf-4827-89eb-f02e85e0770e 1 Other Other +88a5f175-3975-4258-806b-56de58a9bcfd 1 Other Other +88a60acf-df8e-4f17-bbbe-ac5e17676ebb 1 Other Other +88a6acc6-386d-4c2d-b150-91acaa4b1184 1 Other Other +88a6c496-2d36-4bb1-b33a-107030e03c34 1 Other Other +88a6c620-856d-47fe-b07b-62892411ee2a 1 Other Other +88a6e8f3-4da9-4fe8-bb83-c77f0ba274da 1 Other Other +88a6f1fd-7b43-465c-b736-e2929c548950 1 Other Other +88a7223a-d687-44eb-a6e0-5c2831d48e75 1 Other Other +88a72714-f94c-4ea6-bc46-e30b13837354 1 \N Other +88a745e6-54db-45c5-95f5-975aeb8d1f8f 1 Other Other +88a75010-e64d-45ea-bf83-067fd2298079 1 Other Other +88a7c05d-875a-4c56-904b-8efe28ee7460 1 Other Other +88a7cf90-ceb3-469a-bafd-3626ece44cf0 1 Other Other +88a8da9e-c05b-4b2b-ab34-583a7bb8ffe2 1 Other Other +88a8ec4a-2096-42dc-900b-964a9afd2893 1 Other Other +88a91620-ea84-4919-b244-2a2f00332d0f 1 Other Other +88a958e6-467f-46f5-a843-dc68088d18f7 1 Other Other +88a975cd-ed27-4468-9d11-d376e0113ae4 1 Other Other +88a98bf5-674f-493f-9e5e-fe7597a25889 1 \N Other +88a9a987-df99-4a10-a94f-125887ef6c10 1 Other Other +88a9e7cb-4eb0-448b-ad4b-9c252d1cf695 1 Other Other +88a9f54c-a286-4f25-9c1f-a86e4f78819e 1 \N Other +88aa75fa-c0a8-4afd-a02d-088f69a389c6 1 Other Other +88aaa8b3-6391-44d4-a352-4348fc35022b 1 Other Other +88aac923-08b0-402d-9f9b-70e9b44c06eb 1 Other Other +88aade50-e338-4c8e-8f17-82cfc252b57f 1 Other Other +88aafd14-4cac-4a97-9853-5748e81c600a 1 Other Other +88ab2ec7-4205-4061-80c9-7eca65dfdc95 1 Other Other +88ab4179-642e-415c-9fc0-ab2d66fc53cd 1 Other Other +88ab9baf-b339-4e5e-b866-4907f5ec3dcf 1 Other Other +88abbc2c-81b6-4920-a64e-ac7ba52d92ad 1 \N Other +88abbcad-1b22-4296-91f6-def90ff034b2 1 \N Other +88abf29c-c399-4fff-b8e5-caca65313fb6 1 Other Other +88ac42df-2af5-41ac-ae78-b1e27509ef8a 1 Other Other +88ac6be7-6044-4b85-b875-6d65ba5603de 1 Other Other +88ac9041-75c7-46d0-b4e1-62e46a8c1be1 1 Other Other +88acdc19-5cc7-4626-af22-3d96b651a608 1 Other Other +88acde65-e702-4e56-99ce-c95e80ade0ea 1 Other Other +88ad034b-ccfc-44ee-a08b-3e84e0b66604 1 Other Other +88ad57ff-02a2-4aad-ab96-5220c5dc569f 1 Other Other +88ad9779-f9bc-48e1-a436-27e56adc0c5c 1 Other Other +88adf1f2-1a42-4c6c-a0e7-0fd8a5ac12c1 1 Other Other +88ae0997-2b4b-4ca1-99fa-44ea3f816e5c 1 Other Other +88ae1029-2594-4cfb-9d88-a83659112cd5 1 Other Other +88ae2b92-7427-4656-a391-ea78483f8e6c 1 Other Other +88ae9259-cd5c-4d5b-9921-f8159a5b2082 1 Other Other +88ae93a3-73e7-49ec-86c8-ce88203fe974 1 Other Other +88aecd19-944e-4bf6-8f64-b27eba919c40 1 Other Other +88af12bd-bb32-4e22-a3fc-9d8822192291 1 Other Other +88af5814-a426-45ea-a0fb-acf68dcb08ec 1 Other Other +88afbf8e-489f-47e7-88c6-c4fd648351b4 1 Other Other +88afe146-c6e9-4d65-8329-e57907ea6d7b 1 Other Other +88affaf5-92c3-48d0-9bc5-d45bffd23b7a 1 Other Other +88b06102-553b-4ce1-b7a9-b3a29514051e 1 Other Other +88b0a040-d12c-40e5-82b7-7ca593a44fc5 1 Other Other +88b0e11f-afb2-4137-b29e-e79763309973 1 \N Other +88b0f3e4-1296-4b3e-90b2-fcb541244031 1 Other Other +88b13f52-7d3c-49ea-a24a-298780b4e259 1 Other Other +88b14f1c-d3a1-426c-b69c-a2aeab51a622 1 Other Other +88b16909-7c8d-44ef-9fa1-73722c840ad8 1 \N Other +88b1c5ad-aa20-4b73-9943-50da227f8812 1 Other Other +88b1e853-d0c0-4a56-9360-3a11c83becb3 1 Other Other +88b1f9fc-50d9-4135-a1c7-b747fdda4db5 1 \N Other +88b2e55f-6d69-4106-b1eb-7c2d2affffbc 1 Other Other +88b31a97-2118-468d-b799-6939f29389d2 1 Other Other +88b336fe-1dc9-4f05-8a7f-def0baff8298 1 Other Other +88b33d08-c61a-465f-a1e1-2be9de8b4ffc 1 Other Other +88b33f6e-3d5e-438a-a742-90c915f78edf 1 Other Other +88b377f6-01a5-4f76-83a8-8f308e9e433e 1 Other Other +88b3998f-3215-4485-834c-c9942d340195 1 Other Other +88b40d85-15a1-4e10-a67c-4f3b04d131d4 1 Other Other +88b41728-104e-408e-a14c-4f1dff500ad9 1 Other Other +88b43b3a-2e01-4c28-937d-f3e5932a5bc0 1 Other Other +88b43bff-c969-414b-887b-4c6b83bfd1c4 1 Other Other +88b4400e-50cb-4733-82a5-a4494201c350 1 Other Other +88b455d1-8e0b-484a-8e5f-8b99c33e300b 1 Other Other +88b46ba0-f666-46dd-921a-039fd4e26433 1 Other Other +88b49eef-92a8-47e0-9e07-f04b1fc5b986 1 Other Other +88b4e90d-64e8-43c5-a67d-9ade55d96040 1 Other Other +88b590bd-a77d-461a-8178-f23cb8e1f6dc 1 Other Other +88b5c84e-efb1-491a-b45a-26a888513d49 1 Other Other +88b5e6a8-e34d-4d90-a609-21c8580ff5fb 1 Other Other +88b610ff-78a0-4cf1-8633-79b170b71750 1 Other Other +88b66264-67d4-419d-86c6-932ea0981040 1 Other Other +88b6a140-75e8-4238-9305-25dcdde55cd4 1 Other Other +88b6db78-ffd4-4b08-ad93-c21f77420926 1 Other Other +88b6ff1c-58b3-472e-99b7-1f44ed0d2948 1 Other Other +88b70128-9c0d-4f3e-9661-1ee99c2e37d4 1 Other Other +88b715d4-661b-426f-952b-1f9c9968170d 1 Other Other +88b71994-170c-11e8-838a-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +88b726d6-7e39-440a-b4d1-685d674d9800 1 Other Other +88b75362-e2c5-4933-b6ff-152d9057523d 1 Other Other +88b7aea7-fa5a-49a0-ae79-b47e55055f18 1 Other Other +88b7b7b4-6cfe-4407-b01c-aea1d0fea000 1 Other Other +88b7f83a-e554-4a52-97d5-6769ce970d72 1 Other Other +88b864f8-3c32-44ce-abe0-9110df8e953f 1 James Other +88b8a1f8-3c6a-4a5c-954a-547f3be31a1a 1 Other Other +88b8c792-6aa6-4d9c-b227-4d246e3731a0 1 Other Other +88b8e39f-00f5-4c22-af48-226549237716 1 Other Other +88b8ed35-0216-44f3-8f4d-d7b6aad97db0 1 Other Other +88b90375-28c5-499f-99f8-02350f6f904b 1 Other Other +88b94d9c-5a60-488b-9893-2f455b92b038 1 Other Other +88b9933a-9bc5-451f-bd6a-6dbe7a58f175 1 Other Other +88b99596-20cf-41ef-b330-da8a82f2a17f 1 Other Other +88b9a6cb-8674-4fb1-b92f-746c2b3b9ce8 1 Other Other +88b9b4c2-9dc4-46e3-bb5a-e1418d49f137 1 Other Other +88ba0ea7-4a59-4398-835e-98d0a3788efa 1 Other Other +88ba1491-d168-481b-99c5-5dfe37654e67 1 Other Other +88ba707b-9d36-4aae-80d6-4c939e732e75 1 Other Other +88bac062-7575-40cf-9700-f83fbf8c6e49 1 Other Other +88bac09f-f5fa-47fb-acbb-e0b29396f66f 1 Other Other +88bac734-ca4a-437c-94ca-10ca38160fa2 1 Other Other +88bb0e5f-70a4-46da-8084-ec2f58fab09d 1 Other Other +88bb2be2-b9d3-465b-85e4-fd83807199a1 1 Other Other +88bb3da7-d541-452e-8b50-becbf5272724 1 Other Other +88bb5407-1b37-456a-ba5b-fa33824aca52 1 Other Other +88bb5963-e899-4b1f-bf57-462348d5d850 1 James Other +88bb5a23-b1b3-4fac-a49f-6333a5563332 1 Other Other +88bb6dc5-ad38-4199-8bdf-2758d506b116 1 Other Other +88bb7483-5196-42b2-a140-fe0bdf6838c0 1 \N Other +88bb8239-d66c-49a2-88b0-8e9359660c98 1 Other Other +88bb835d-6790-4973-8865-3a68491c0548 1 Other Other +88bba4ad-e2e5-496f-bc11-7a624f2714f4 1 Other Other +88bbdc07-0ad1-41bb-a741-29caa1a7d3a3 1 Other Other +88bbe917-4f6e-4f75-8755-b762493cd8be 1 Other Other +88bc0810-3b51-4aa4-a936-11238eb1f03e 1 James Other +88bc9092-1c78-4b5b-9cda-42be8b117a2e 1 Other Other +88bcb026-8d65-4e5d-868c-b7b584aaf61f 1 Other Other +88bcdc7f-62c2-4a7e-9595-947968681711 1 Other Other +88bd0701-7f36-4932-9f8a-4a7263d7c5e7 1 Other Other +88bd4bef-212c-4bce-89d5-6e228a7cabd0 1 Other Other +88bd7946-821c-4f8f-a11f-1d6cea82a44a 1 Other Other +88bdc1ee-201c-47ec-b668-4d9a545055fb 1 Other Other +88be20ba-3337-456f-8438-ee238c42c6c4 1 James Other +88be21ae-45e3-4993-a015-a4adca236c17 1 Other Other +88be2684-91f2-45fc-8a21-f30a802583fc 1 Other Other +88be8131-8607-4ec2-875e-a5047cccb7b5 1 Other Other +88bebb47-14a1-41cd-afb7-eaf8e08e3c6a 1 Other Other +88bebc9b-8675-4a5f-8711-8a970aea0d51 1 Other Other +88bf14c1-6d20-44ef-b3fb-7d7bf8f0c1c3 1 Other Other +88bf4e55-57a9-4654-9252-f33a1f88e3cf 1 Other Other +88bf5885-a82c-49b9-9d2f-7c5df733888c 1 Other Other +88bf8fc0-cfb5-486a-b60d-096ad3f88bf2 1 Other Other +88bfd785-22e1-4e33-92ff-79303443adfe 1 Other Other +88c04fb2-c475-4688-9a39-0cc683724173 1 Other Other +88c06529-fea8-4281-900c-abf1720d25c4 1 Other Other +88c08a89-0f88-4ffa-a782-0af354607f80 1 Other Other +88c08dfa-0f98-49a6-b470-6aef7b0c8d04 1 Other Other +88c0930e-94ec-4147-a177-4aec169229ce 1 \N Other +88c09cc4-5a25-40b8-b5d2-b5c402873f53 1 Other Other +88c11757-1362-4863-8d9a-420d0f7f1833 1 Other Other +88c1620b-7b62-4d95-b208-cefde84b62f4 1 Other Other +88c1758a-eaca-475f-963b-cfdbb82f19bc 1 Other Other +88c17839-9d1b-4eef-badf-5bbbaf8e0e00 1 Other Other +88c1ac64-30dd-4480-9614-c4684af3ed7d 1 Other Other +88c1c96e-8143-4fd9-a9ee-81167c395c62 1 Other Other +88c1e507-3dcb-4468-beb6-c6d7f0caa132 1 Other Other +88c221b5-816a-4115-92ff-90c2f944b86a 1 Other Other +88c234ed-2329-4be2-b08d-095858f20edd 1 Other Other +88c23682-5ab0-4cc4-b6c8-9073b3280071 1 Other Other +88c28f93-a1d2-43cb-8177-54921dbe3dca 1 Other Other +88c2b3c6-d7b1-41ac-a232-b06636e9e419 1 Other Other +88c3d455-2af5-434a-bf89-840295876981 1 Other Other +88c3d4b2-6a73-4d22-a669-4e14efb8e798 1 Other Other +88c3d8fb-65aa-4186-a4b3-238542bddb27 1 Other Other +88c3de8d-9922-4546-9fc6-e92b886ea1a8 1 Other Other +88c3e803-0631-4bdc-8236-37afbc602b60 1 Other Other +88c43930-7602-46ca-8ca9-2f58fa5a61ec 1 Other Other +88c46ee7-7e1f-4d2c-b737-da16ba743c39 1 Other Other +88c4d1cd-9d1c-4ad3-b877-43d1297efb8d 1 Other Other +88c4e943-be21-41b7-a38a-d0c23a4f757e 1 Other Other +88c52b24-eab2-4569-be84-efb5cbd9d08b 1 Other Other +88c592ec-a582-4843-8b76-7ba4db587afa 1 Other Other +88c5cb9e-407e-4090-a124-1bac9f5be611 1 Other Other +88c63a61-0373-4c06-b9e3-5c1bb08d8145 1 \N Other +88c64605-efae-4ddf-ad84-e3fc84c37b86 1 Other Other +88c6511e-6f3a-4213-9e0d-0ce9daf98b13 1 Other Other +88c673f2-5974-448f-9d4b-aedaaa8ef76d 1 Other Other +88c67c49-e984-4268-868a-6f8554bbd376 1 Other Other +88c6810d-aaa3-4fb7-94ef-d9ef63e7cbc1 1 Other Other +88c6b61a-620f-473b-83bc-f0b547c0b85d 1 Other Other +88c6d93e-e6d9-441c-a844-943b39b91d9f 1 Other Other +88c75438-4ad0-4986-9187-4446ee304d15 1 Other Other +88c7596d-c40b-42fa-9038-d5b016394965 1 Other Other +88c766f6-cca1-469b-9706-e93a0e84047a 1 Other Other +88c78d2c-ba45-443a-8c46-9b361c741a01 1 Other Other +88c7aafe-7b97-4744-bab9-ef9100635c4b 1 Other Other +88c7dff9-eb40-41e3-86ce-87f327a2c742 1 Other Other +88c7e462-0e5f-412e-aa22-d6a970dfd06d 1 James Other +88c8c4eb-b2ea-4f3c-858a-8e15434c7870 1 Other Other +88c8ee8c-0996-4c41-a674-62ca8bbc3e0c 1 \N Other +88c8fa12-21e5-4626-ac4b-c7299770d238 1 Other Other +88c93a00-930a-4411-a802-f5c47d79883d 1 Other Other +88c99b10-be1d-4776-925d-c31b863b2bfe 1 Other Other +88c99cc8-abb2-4783-a65b-9f5b31a3992c 1 Other Other +88c9ded1-9f9d-4940-922b-3814873a4058 1 James Other +88ca6e3f-9139-48ca-8246-f026e85772b0 1 Other Other +88ca7ca1-2e7c-4672-9832-dff7fff2153b 1 Other Other +88cabcc0-8551-460d-a84a-91d18028c8af 1 Other Other +88cb3823-6333-442d-a7ac-995ff900ade7 1 \N Other +88cb5414-2703-4cb0-a69a-0270830b3214 1 Other Other +88cb89d1-b7a7-4f66-94ca-e315a68590d6 1 Other Other +88cb912c-b384-4539-b87d-a4ba543459fc 1 Other Other +88cbf629-c3f9-4685-9d93-059a19ccfc88 1 Other Other +88cc1e9a-a696-4b59-953c-173b0f06c036 1 Other Other +88cc3ccc-7686-4098-b306-1b476ba2bb95 1 Other Other +88cc82f2-c401-4acc-839f-c4655573d48d 1 Other Other +88cd24ea-8b2e-43a6-bb7f-894bfb14c2cc 1 Other Other +88cd3033-fd35-4ac8-8a60-23e7bfdb0991 1 Other Other +88cd3bf3-4140-4fd2-a524-ae5a82ed5055 1 Other Other +88cd5408-6d16-488e-8fd1-2a7cdf356a50 1 Other Other +88cd9575-5d20-4e1b-b220-ed7b2686d96c 1 Other Other +88cda55f-b49a-4e5d-b29e-b2c0cf9b3a1d 1 Other Other +88cdfd28-ebb5-4ddb-b413-341a288917f3 1 Other Other +88ce60d8-086f-4a51-86c6-13067c9b2e4d 1 Other Other +88ce8fc3-92d5-46b5-a13e-e46f3957d185 1 Other Other +88ce9682-2b0f-40b0-a4fe-72a27618aeb6 1 Other Other +88cec72a-5183-47ff-961e-f93a51c7a3a7 1 Other Other +88cef25b-ab81-46db-bd07-30b54d5eca57 1 Other Other +88cf3be8-3529-4603-9567-0d46dbcbb9ae 1 Other Other +88cf476e-8118-4b34-817a-7bcbab6b4f44 1 Other Other +88cf6212-a50d-49cb-bcdd-bfdb49c3fdf1 1 Other Other +88cf7b8f-46d1-4d1f-befd-9944b5682322 1 Other Other +88cf8a8b-03ba-4171-9ac5-fc2b35570ccb 1 \N Other +88cf8f6f-e237-4a0a-bf81-70649b12d3e1 1 Other Other +88cf9670-ece0-404b-b09f-7888bdcbce3d 1 Other Other +88cff8a1-0a46-4888-9fcd-8a577e027fe8 1 Other Other +88d01870-faf2-4997-8db3-3b941d3ea1fe 1 Other Other +88d039fb-c047-4152-86a6-a8f9b628c646 1 Other Other +88d0543d-3dd7-4345-b68b-f8a34e3cf367 1 Other Other +88d09d3c-2404-4597-96ec-83a336b3098d 1 Other Other +88d09e84-e1ca-403d-82f2-92cbcb22ece2 1 Other Other +88d0a583-4fc6-4a3b-b7af-cb8bde8222b8 1 Other Other +88d0d4f4-2b1d-49ec-8769-eec076db7496 1 Other Other +88d0ecb7-97f5-4052-86d8-418b4c4f044d 1 Other Other +88d1220c-6168-4a1a-b27c-46271364399d 1 Other Other +88d1886e-584c-4f09-b550-c0b2d68e82f9 1 Other Other +88d19760-4346-4ccd-b8e9-085a5b50f4a5 1 Other Other +88d1a606-a1f9-411c-81f5-d64f383357bd 1 Other Other +88d1d70b-f67a-4a8e-a975-c794bc6a036f 1 Other Other +88d20ce3-d8e5-4fcc-ab59-808327387217 1 \N Other +88d21747-8f64-49bd-89b7-f88b96aa0304 1 Other Other +88d21f22-8983-475f-be00-5d2dd360a72a 1 Other Other +88d25ba1-85a1-4be0-a687-d8ce363813d7 1 Other Other +88d2b170-aef7-49f2-8a1c-dc73edf272b5 1 Other Other +88d2c41f-f31b-493e-8ddb-147750beca0b 1 Other Other +88d2cd1e-0e33-46e7-b609-25e97cc6c713 1 Other Other +88d2ce6a-8288-4276-8305-e8739316bffb 1 Other Other +88d2dc43-dacb-4068-8f69-0fd56ac2b924 1 Other Other +88d2e4dc-aaa8-4262-ace8-31be263f49b9 1 Other Other +88d2ef9c-4f57-4ff7-8d1e-0e15e08f1e2b 1 Other Other +88d2f93d-aef3-4827-bba7-47749a948e9b 1 Other Other +88d31f9b-3675-4f50-a2a0-d09b24bc8c98 1 Other Other +88d33bdc-a2fe-4a24-85c6-24fb20566e08 1 Other Other +88d36af6-6529-4083-a459-edf302d3662e 1 Other Other +88d3956a-7b01-4935-97fc-114740e2e464 1 Other Other +88d3be04-3597-4380-99c9-2daa16ec095b 1 Other Other +88d3bff7-2823-4a99-a82a-8eb3fab0dcce 1 Other Other +88d3c065-2ca3-4843-a2da-393f852a1a44 1 Other Other +88d3c783-6448-4631-bfe3-7bb845f6fc49 1 Other Other +88d406c0-e418-4fd5-af10-43e432879af1 1 Other Other +88d42550-bfde-4329-aecd-8e89a2c6dfa1 1 Other Other +88d429b0-e611-4160-8a22-bfcb86525ec1 1 Other Other +88d43752-5e8e-4cf8-b843-5ce0460f7d26 1 Other Other +88d456c4-dee8-4ee0-b22d-dfa860f380b0 1 Other Other +88d46db6-4f85-44e9-aa03-1389bf1a3099 1 Other Other +88d46f32-4596-4be1-9429-bb7937726456 1 Other Other +88d56270-a408-4c7b-b671-690ca31b87e9 1 Other Other +88d5a5f0-038a-4c3f-9084-044cd001a4ba 1 Other Other +88d5a716-7615-4a61-9500-72db6e1630e2 1 Other Other +88d5c3e8-664d-47d9-b4e4-3e1ed85fb8f3 1 Other Other +88d66333-bd39-41c2-b2a7-12fd08613bd3 1 Other Other +88d68ca6-c86b-4387-bb88-75b587a30c4d 1 Other Other +88d69e44-5921-4c3d-91b5-5cb30890eaf4 1 Other Other +88d6ce67-f3f5-4b5b-94e4-05cf41ba8a21 1 \N Other +88d6d007-0b2b-4571-966a-a3ff04cb5697 1 Other Other +88d712a6-3f6d-4319-815b-1862be51b60b 1 Other Other +88d74249-8eb7-4bbd-a562-7f70fa02ed2a 1 Other Other +88d7b3ac-3d0a-4c71-9405-c667418dba73 1 Other Other +88d7b7cc-529f-4b2a-a9e2-ff5c09b2acce 1 Other Other +88d7bbb6-a4e9-456d-b5ee-8afeb19564e9 1 Other Other +88d7e8c9-d0bb-4f93-a553-87bba862ef24 1 Other Other +88d81b12-694c-48a0-afe5-5ebd9c0374ad 1 Other Other +88d81f04-d7fb-47e9-8418-70aa55fc8667 1 Other Other +88d820a8-b6e3-42f2-a473-53562b2af95c 1 Other Other +88d87133-2b00-4787-b00e-c9ed8f130f9c 1 Other Other +88d876e8-cff0-440b-890a-ed8dbeb78b6e 1 Other Other +88d8e115-3cb0-4664-be97-84ff2c1a1599 1 \N Other +88d8f25b-ba69-46da-9f48-b96ab682045a 1 Other Other +88d90bd2-2d4f-4084-8061-fcb913a03190 1 Other Other +88d9536e-82f3-4dfb-be8f-100611253464 1 Other Other +88d9640e-067a-4e17-bb53-bd016f2fd43f 1 Other Other +88d9a593-ce17-4757-aac9-66ecdda692c5 1 Other Other +88da26f4-600d-4fd4-a92d-4ccc69d9add6 1 Other Other +88da5215-0ab3-469a-a1ea-5943d9c33b92 1 \N Other +88dadc0f-bc3f-44d9-8ad2-865616d3f275 1 Other Other +88dae5fb-6c82-467e-82d4-e029961cd6a6 1 Other Other +88db0c05-2425-4045-a03d-f1d83ec90443 1 Other Other +88db2471-f347-4222-af5c-cb08bad0f011 1 Other Other +88db6cc3-3a20-48b8-bce3-1a915a705e81 1 Other Other +88db75e3-f4ca-46b7-b677-a2cbcfe12a42 1 Other Other +88dbdefb-7cf7-49cb-938d-99b62c9cf665 1 James Other +88dc5cd7-d380-490d-bcc6-cb1e0efad1a5 1 Other Other +88dd6dec-5734-4916-be78-1df8a9fbf186 1 Other Other +88dd8a43-5e5b-4b4d-90a3-eadb94015781 1 Other Other +88dd9f61-cf83-441a-ad7c-6a79e55e7075 1 Other Other +88ddae7c-02c1-42c6-af97-7fe4a5e12df2 1 Other Other +88de3889-009a-4a3c-95dd-b52c4486e87b 1 Other Other +88de79ba-8aa1-426c-82fc-517b35f5325b 1 Other Other +88de8561-eff7-402e-945d-7b1e72d4586e 1 Other Other +88de9629-725a-4d54-8fad-ef1bac4a60bb 1 Other Other +88ded38b-88d2-4a43-b11f-4af4aa4d4e18 1 Other Other +88df1d2e-a413-4b0d-89bc-9db02457b76a 1 Other Other +88df3185-252e-42b8-a8b7-a1bdf19c1cfc 1 Other Other +88df3d87-b535-45df-ac6d-7088c6937b7c 1 Other Other +88df4152-ad6d-46f6-a1e2-e5a4d83bacb3 1 Other Other +88df46f2-95aa-4604-9a6c-2c3ba7e3451a 1 Other Other +88df5ae8-899b-4768-9ad6-450fcfee9d6e 1 Other Other +88df5dc5-13d4-4325-aa4b-eeef37b51db5 1 \N Other +88dfa5e4-c2a2-4170-a21f-9aafa228b20b 1 Other Other +88dfb9d8-3327-47d9-b55a-dfb53773be7b 1 Other Other +88dfcdc2-1dd7-4ace-9569-1203c4dc2ed0 1 Other Other +88dfd9a5-8389-43c5-913c-c1e3d39b72d6 1 Other Other +88dfe4d0-9e1b-4c7c-8dd9-22cc15bf5364 1 Other Other +88e0061f-a467-4f88-9039-52f6afd52d04 1 Other Other +88e04bf4-2b5d-48b0-9b69-bd1103be5051 1 Other Other +88e08a71-bf6a-4f5c-b59a-8920e0b4a236 1 Other Other +88e09c67-bc8b-4130-b530-05d981300740 1 Other Other +88e0a34c-6433-4c9a-be21-123e75d14df7 1 Other Other +88e0a91d-7a5e-4c6e-983d-9c2a32bef306 1 Other Other +88e0aa84-2cb1-4d80-a24f-89af298f7355 1 Other Other +88e10adb-9395-4576-905f-933654c8f817 1 Other Other +88e1e846-058a-4c15-b5da-33f3f061119e 1 Other Other +88e20e31-49b9-4270-b5aa-80a9e2b7afe8 1 \N Other +88e21ee9-5a1f-4ed7-8474-9b5eaf4f55ed 1 Other Other +88e24ffd-ea23-49fc-816f-cf7b356d8c11 1 \N Other +88e2697e-9261-453d-ad75-8ed640f9a55a 1 Other Other +88e27e91-73f2-4ec8-b05f-2dc2c5e25130 1 Other Other +88e28591-d756-4cfb-bb12-a64d09d6cf80 1 Other Other +88e2870b-603c-44bc-a09c-c5fe8c17b478 1 Other Other +88e2ad41-fbaf-4080-8dce-dd4f373c7339 1 Other Other +88e2b6ee-d96a-4de8-98c7-fc97b3627fe4 1 Other Other +88e2e0b6-439b-4e7b-a0e2-8d568d1e7e86 1 Other Other +88e30791-93e8-4279-8be0-1eb3de20e08e 1 Other Other +88e3212b-9f3e-42ea-87f1-bf47a0f17bb9 1 \N Other +88e3273c-9350-4e0a-ad49-9e546bcd68db 1 Other Other +88e35585-9c32-4c09-af68-2cac0e8e37cb 1 Other Other +88e384a4-373c-4b75-b907-0677b4fe74c2 1 Other Other +88e4153b-595d-4727-878a-ea59bd626826 1 Other Other +88e444a9-f42d-4908-9eff-4d3658c0b350 1 Other Other +88e4531c-fd0e-4145-b9b1-241424555203 1 Other Other +88e4a1e9-d465-4da1-ba20-ebdd93731ad9 1 Other Other +88e4a2e5-5ded-41d5-b77f-90bcfe6934ec 1 Other Other +88e4b72b-b569-4109-b3d7-c87bb9a99ec7 1 Other Other +88e5085d-1557-4e87-af90-864c17d762fe 1 Other Other +88e52812-5801-4bc8-8120-2428c5adb6bb 1 Other Other +88e55cdc-6ce9-422c-b53b-8f6f5a312e9e 1 \N Other +88e56ff6-f63c-40a1-a973-a11a757a2c3b 1 Other Other +88e5c224-6e10-451f-8066-580aa3126942 1 Other Other +88e5d81d-05ee-4d67-969c-7eab93629012 1 Other Other +88e63e99-0676-49a4-a5ad-6d32713b7cb9 1 Other Other +88e6afa4-c176-4acd-9387-ef4a58ad790a 1 Other Other +88e6c885-e5ec-4523-8e63-bdb6b1b1a1a9 1 Other Other +88e6e1e8-40d7-409b-a579-e947a6c482e8 1 Other Other +88e6ecd5-b1cd-4c9d-b356-81d7c91aecc1 1 Other Other +88e70dba-0e12-4175-9bf2-675bce26d7a9 1 Other Other +88e71376-ee2f-481b-9e84-ffd058a1b412 1 Other Other +88e72cd7-8048-4acc-8007-5e208cba542a 1 Other Other +88e7d7c1-1725-4ab5-8d62-66215a304c50 1 Other Other +88e7fa7d-4fa9-42b5-8f2a-2ddbf45ab60b 1 Other Other +88e82e03-ca53-4d4c-871a-35eef23e40a3 1 \N Other +88e8403f-52b6-48c4-b724-a5132b0688ed 1 Other Other +88e88be9-b99c-4e8b-aba9-484494f297fe 1 Other Other +88e894c8-b024-4a02-b967-ed0360c79f5b 1 Other Other +88e95751-cc1c-4231-a075-de15c478f33e 1 Other Other +88e9a101-3de5-41a8-89cd-f898d9e6410d 1 Other Other +88e9d89b-3797-4631-b3ee-c2541f1d8166 1 \N Other +88e9f7b9-c051-4d16-a3f4-3919cdcc4a09 1 Other Other +88ea14c1-f96d-4cd0-8e96-8e4a229acd26 1 Other Other +88ea19e9-9036-43f2-8350-5832ac5227c3 1 Other Other +88ea22b9-f01b-4c0f-90fa-99477c2c7a64 1 Other Other +88ea82d2-cbce-4cb2-a1f4-404d8e3928db 1 Other Other +88eaa855-08b9-4ec1-aacb-2a5bb39acf63 1 Other Other +88eacaa8-a95e-4b0c-b9cc-b9efe25adb08 1 Other Other +88ead88b-311f-445c-8f04-7c3ebccdd281 1 Other Other +88eaeb41-eed2-41b5-b469-d3eb788e1823 1 Other Other +88eb154a-b4b9-4925-9662-80455e3e3418 1 Other Other +88eb1e3a-e283-4c26-98f0-9a17a3007357 1 Other Other +88eb3d34-e4d1-4a04-913e-5292fc02e2e5 1 \N Other +88eb71ff-b8ea-4a0c-8579-b57c2d156809 1 Other Other +88ebada6-20ec-4029-85ac-b5c330b51784 1 \N Other +88ec056b-708b-46e0-9730-a1d5237504de 1 Other Other +88ec0b5b-acda-4dec-b3c8-a237ed800ffe 1 Other Other +88ec0f68-f4eb-4b24-aaf6-17ab7a7f2035 1 Other Other +88ec3aa9-9afb-439b-8d94-3eb337c133b2 1 Other Other +88ec58ac-6a7c-4971-aa78-5bf205e52445 1 Other Other +88ec9b66-0e30-414a-8c5c-e85417709bcd 1 \N Other +88ecf3e7-85b0-49fb-b63a-9f8c776d92f0 1 Other Other +88ed159c-cda4-414b-8a48-5487ac7fff1e 1 Other Other +88ed2a07-3c36-45b7-bb43-66ff90f3d12a 1 Other Other +88ed7959-7ed1-434a-bd89-070515f004ce 1 Other Other +88ed9238-e708-4bf7-9a7f-15d1b5ccfe0c 1 Other Other +88ed9996-b0c0-4566-8ff5-c18587358196 1 Other Other +88edb04e-9048-452e-89ee-32c2d6db1dc0 1 Other Other +88edb36b-194b-4360-9601-8376539d33d4 1 Other Other +88edf46f-8032-4713-9392-3a9db1ed61e8 1 Other Other +88edf79f-38e3-4330-baf8-04187acf3354 1 Other Other +88ee1259-e82e-4054-b2bd-f5907f5a2d2a 1 Other Other +88ee24dc-378f-4ea2-98ac-1cb5ff34a83d 1 Other Other +88ee879c-c6b6-4ec4-808a-6a647c4521cd 1 Other Other +88ee8e32-7da8-457c-b348-c56ec6bc5d51 1 Other Other +88ef281e-5a83-4563-829f-7d97d54666fd 1 Other Other +88ef3c1e-5d1b-442e-a031-555e819ded9f 1 Other Other +88ef69b8-9d2c-45c7-8116-dd3f2bcec154 1 Other Other +88ef6cf7-e609-4199-b9d3-c79d90c25ee3 1 Other Other +88ef7357-bb08-4898-a582-a3eea67ccab7 1 Other Other +88efc293-5cd0-4f4f-b61f-b581a008287b 1 Other Other +88f00c9e-e423-4f33-96e2-4226ee28d1c4 1 Other Other +88f02817-4eb2-4ca1-abdd-1421bf075bff 1 Other Other +88f02cfa-e010-477e-a906-c3c197f57767 1 Other Other +88f033ca-91b2-48fb-b464-4f74c8ef5a9b 1 Other Other +88f05425-a915-48d1-ad1f-51016a642fda 1 Other Other +88f099bc-3f8e-4d37-aa8f-fedb9edb1f60 1 Other Other +88f0b1ce-7f8d-4146-bd0f-0924abd96efd 1 Other Other +88f11305-7b1c-48c6-bba7-6e4dbd7bb495 1 Other Other +88f14554-43b6-40ca-9c80-d86b65408ea0 1 Other Other +88f15208-bd1d-4173-8b59-2d1c12ce3b69 1 Other Other +88f27d25-0a08-47b2-945e-2e51c6557b8c 1 Other Other +88f2b9f6-d8a7-47a1-ba7e-5a55b5ed737c 1 Other Other +88f2cd32-8e25-447e-a6aa-95073dd69b06 1 Other Other +88f334d8-c3fc-47ad-b206-a98cbddd9da5 1 Other Other +88f36fe9-b859-439f-a290-ff227b9c3cc7 1 Other Other +88f38846-9081-4697-adbb-91902765d433 1 Other Other +88f388e5-e305-47d8-ae55-a3c6331bd09f 1 Other Other +88f38cf6-e889-48ae-8edb-a2da7368bfe3 1 Other Other +88f3b43d-ca3e-43e4-98a4-55da5f5a1f10 1 Other Other +88f3c368-1507-4434-9d3b-d93e39d5cf8f 1 Other Other +88f3ea99-7040-4ac0-9199-4f5df0d9e133 1 Other Other +88f424a2-cddc-478a-96b2-a48dcc5d4b46 1 Other Other +88f42e5f-ec42-4f53-a594-96a01efb6b71 1 Other Other +88f4393e-0856-4de8-b266-521afddbea20 1 James Other +88f44bb3-e596-4191-82c9-165c0a41a372 1 Other Other +88f46410-c0e5-4ebe-a6ed-b642623c0bee 1 Other Other +88f4b9c4-d4f1-4f7f-8568-ef9cbcb35d85 1 Other Other +88f4bb25-f952-4c65-b260-198f044d48b9 1 Other Other +88f4da33-9b3b-46bc-beff-1580fdf21945 1 Other Other +88f4e744-fac4-4d37-81c9-8330b3239cfe 1 Other Other +88f53888-06c1-11e8-8848-fa163e8624cc 1 \N Other +88f63072-5a63-4125-b3a5-bb7f0ef592c3 1 Other Other +88f63550-e039-4647-a8cd-bfc1fda0c983 1 Other Other +88f6626c-e791-4071-acc2-77facb4cbac7 1 Other Other +88f6b6e1-f0fa-4365-bce6-8a93502eeb9b 1 Other Other +88f6ba6d-ed89-42e6-824c-7bde1cfb94ba 1 Other Other +88f79f6e-0256-4a1b-8e20-c2440ecfd3b6 1 Other Other +88f7abec-0202-4961-b96b-d5a124cda005 1 Other Other +88f832b1-c86e-4f4a-90c6-e9288968d7b6 1 Other Other +88f850f1-72a8-4531-9f05-e2968cf28f71 1 Other Other +88f85e4b-5e8d-46aa-b8b1-03ca3e1c10c2 1 Other Other +88f875ed-b28d-4749-a121-73534efe5129 1 Other Other +88f8b94c-5f20-4c0f-80c1-fccdea26cc1d 1 Other Other +88f8d3f7-d9e1-4d13-9c2c-8e431b24b8d3 1 Other Other +88f93e9b-b97a-4242-be81-02249b22785d 1 Other Other +88f96c1b-5969-451f-956c-1bada1737dec 1 Other Other +88f9763b-9a2e-4c46-b663-cbd8fdc961ac 1 Other Other +88f9847d-0fca-4b93-bec3-f5705258adb0 1 Other Other +88f9d716-4630-4f37-9fdc-b68df52a4799 1 Other Other +88f9df2a-7412-4f7b-88dc-1497f6e9b153 1 Other Other +88f9e40d-d329-4d3d-81b1-b280656b73ba 1 Other Other +88fab80c-2aab-496e-a9d5-1bdc09fb23df 1 Other Other +88facb11-429c-4678-a99e-1cffa68615db 1 Other Other +88fadebf-eb8a-44dd-a962-c93eb997ffad 1 Other Other +88fae4c6-00c3-43e8-bd89-a65b080eff5f 1 Other Other +88fb0c90-17c0-4a68-9760-de3347fc9dbb 1 Other Other +88fb460b-05c6-43b8-884e-70470179a810 1 Other Other +88fb5499-546c-4d11-9167-fc20b39d516b 1 Other Other +88fb998a-f719-4dee-a300-38128a67daca 1 Other Other +88fb9bf0-919d-45bc-b5fa-a3f8d7cc2ade 1 Other Other +88fbd5b4-5ae4-479f-9ffc-e702de562971 1 Other Other +88fbff16-894e-4ed9-b292-9c444d912257 1 Other Other +88fc804b-4d2d-410d-8842-af6264c32bfa 1 Other Other +88fc9090-ca3f-43e3-a2aa-b371ba3ceca5 1 Other Other +88fce56e-582f-41f6-a138-b5a2bc21100c 1 \N Other +88fd29de-f139-4ca3-8694-7ce5ad454d14 1 Other Other +88fd86a5-9687-4306-b793-89ad8c8e06a5 1 James Other +88fda2ec-494f-4e8a-b4e8-25f1ddb5000d 1 Other Other +88fdf577-54b3-4918-aea8-1cb13f9ac36f 1 Other Other +88fe2845-1f41-4a05-95ec-10d3ed20c0a7 1 Other Other +88fe379b-7eef-4e61-897f-b5a244508f73 1 Other Other +88fe3c71-029c-42d9-86cf-7aa75f70f75f 1 Other Other +88fe47ed-b48a-446c-9720-0ce1b9511148 1 Other Other +88fe6033-901a-4aa2-87a5-d4140779e3b6 1 Other Other +88fe60b9-a624-482a-9ed7-e129fe3a3d13 1 Other Other +88fe8436-3e68-430c-b0eb-cc86f739f9e9 1 Other Other +88fea8ed-a4e5-4378-adef-523bbe50aa8f 1 Other Other +88feb6a8-9d23-4f2a-8a95-10ce12e708d8 1 Other Other +88fec4c4-5ab5-4d65-8454-b30425d2742e 1 Other Other +88feeb94-250c-44d0-a20d-5f4eaba71126 1 Other Other +88ff3349-b4b2-4e57-9f3b-f83113bbc0e1 1 Other Other +88ff7295-d711-441b-abea-9cf6b843a188 1 Other Other +88ff75b5-2a8e-4047-9d72-040c75cdcab2 1 Other Other +88ff7735-1803-4292-a1f6-91ef202e0685 1 Other Other +88ffb403-f9c1-47de-b8e2-a76f0162b143 1 Other Other +88ffb900-1d05-4dab-a4b2-62068e1e5d96 1 Other Other +88ffbc36-785f-404b-8dab-43f4cc13deac 1 \N Other +890031be-4b44-4bb6-8003-46edebed2921 1 Other Other +8900620a-7105-4cdf-bbb6-702dca099edd 1 Other Other +8900aee0-61aa-4b85-960d-fa224697c61a 1 Other Other +8900d950-8e87-41f7-b13e-761e70bd3a43 1 Other Other +8900f283-cb4a-4051-9dca-293b76c640a8 1 Other Other +89010238-317f-47ec-8c6d-ba06bd21d312 1 Other Other +890131e6-1cf3-4a69-91f2-765fb16cd72d 1 Other Other +890149dc-eac9-49cc-80e2-404c0f88c747 1 Other Other +89017cd3-51e0-4948-9940-4ae51e7abfda 1 Other Other +8901a9f2-ae2f-43fd-900d-eae8bcba77c7 1 Other Other +8901ec80-46ca-4c4a-90ad-9beda1e67441 1 \N Other +890211c4-54d3-46ff-8bfa-715ff0636cac 1 Other Other +89024f58-c067-4044-b435-3ebf31a4b8b1 1 Other Other +890304c0-5c64-4921-a7b7-3590a6b0d6fa 1 Other Other +89036434-1bdd-4852-ba2b-23acba2a5db1 1 Other Other +89037ea0-dd80-4f21-9ef3-a18879c33b7e 1 Other Other +890393f4-195b-4db8-91aa-050bdafac2d6 1 Other Other +8903da17-2bc2-43f8-85d0-b747a2ded264 1 Other Other +8903e105-a5b6-477a-9a2b-bfcba825930e 1 Other Other +8903fdd9-4008-42dc-88d7-bbf049b467be 1 Other Other +89040cd3-ae5a-4395-ae33-957f9547ed1a 1 Other Other +89042fe6-6268-49b2-93b7-98653a954531 1 Other Other +890437c7-c881-4290-839a-d4535df7d301 1 Other Other +89047faa-5816-4151-a639-1a0bfd8003d8 1 Other Other +890490f4-3c4c-415e-994f-988d2856cfa7 1 Other Other +8904d1a7-529a-42ad-bcef-ccb0d7c075b3 1 James Other +8904f3fe-cd19-415c-a539-b8c126c7ca4f 1 Other Other +8904f569-5ea7-4c84-a7d8-5cd6668d38a0 1 Other Other +89051f46-4fb3-4851-ba78-563a0edfdf9c 1 Other Other +8905b996-77a7-4f8d-8f27-5de21bc8cb02 1 Other Other +8905ecc0-b16d-4858-b1e8-9195abe30b6a 1 Other Other +8905ee57-f76d-4e59-9bfc-846a87a0d4a1 1 Other Other +89063d55-6949-48c5-b4a1-4179cf863db4 1 Other Other +89064ef8-dcaa-4e7e-bd8a-e1bf76854465 1 Other Other +89067c35-f7e9-443f-831d-61360ba128b8 1 Other Other +89067c70-a21e-4541-85f7-984fd1b85f9a 1 James Other +8906f7d1-ad89-40d3-b113-01cc97cfe2ca 1 Other Other +890719b3-1a21-4bf7-8966-da604a7f70e6 1 Other Other +890769ff-945b-47e0-8aac-d7cf3fdcc6d1 1 Other Other +89079535-6c5a-4472-ab3a-93aec3c7d395 1 Other Other +89081495-26d2-4617-b4fb-8e4a87847db7 1 Other Other +8908a5ae-68e4-4e4b-9598-494a2959dd02 1 Other Other +8908d1d3-334f-42cc-8fae-82666fe75839 1 Other Other +8908f4a8-e147-42ba-92a3-95cb92cde063 1 Other Other +89094769-fee8-4979-abb5-3f168cb94c1d 1 Other Other +89094f08-fd49-41c6-a38f-92b4c5e6039f 1 Other Other +89096c2d-8aca-4ee1-9cf7-68bffc947a90 1 \N Other +8909965b-78f1-44a3-99d5-da06d29b21af 1 Other Other +8909be30-5817-43dd-8d68-4fa3ceaeab39 1 Other Other +8909d4b5-7931-4250-82bd-aae680d6a558 1 Other Other +890a4bfa-8084-4c4f-b8ed-2929187d9159 1 Other Other +890a6558-2215-455e-bad3-05270069482e 1 Other Other +890aa287-2dba-4420-bc52-5c030fef4705 1 \N Other +890aa542-199a-4c1c-92ea-f911ba7d659f 1 \N Other +890ae8aa-fa5a-445b-9479-e086b99af2cd 1 Other Other +890aeb14-ccd8-421d-8c91-d732ed943716 1 Other Other +890b5d7f-7add-4033-a393-656cb4e2cb93 1 Other Other +890b60c1-7aec-48b2-b03e-fa0b3b80bd94 1 Other Other +890b658a-3971-4836-b24e-c0a6fdd21bf6 1 Other Other +890b80d3-affa-43db-98c3-3567f7f0e39b 1 Other Other +890b99ba-41aa-4b25-bfda-43113491a3e5 1 Other Other +890c0024-54eb-4b81-b20c-208db33d8448 1 Other Other +890c2c2f-4ce5-43eb-9cd2-92932282b6b1 1 Other Other +890c65a2-666e-4e15-b92c-bf0a94b14833 1 Other Other +890c8d3d-17c1-4548-ae8c-8c9194b5b5d0 1 Other Other +890cb16f-ce97-4fc1-b9e4-d45b4389b62f 1 Other Other +890cce09-2d07-44e5-a4d9-1835bbd4e2da 1 Other Other +890ce5ba-dccd-4a62-bd01-425f41d8c335 1 Other Other +890d0893-ef05-4958-a68a-01d7b5e1f8ab 1 Other Other +890d0ac8-310a-4988-9e0a-5eac0f8380db 1 Other Other +890d12af-229e-4c47-99cd-91ff89c11cb8 1 Other Other +890d2917-4c29-4a22-8789-bc2271cf5439 1 Other Other +890d4f99-9672-4535-b964-bf00d1d7b3d5 1 Other Other +890d72e4-161d-4549-b0f6-23df8786562a 1 Other Other +890db277-b9df-4f12-8d5d-ee6056d1cf32 1 Other Other +890db574-04ae-40f4-bb84-879f363e8c42 1 Other Other +890dc215-f880-441b-b027-f4ac246f69ad 1 Other Other +890ed8a2-c7b7-4bd6-8d13-c8aae5edcb1c 1 Other Other +890edd40-271a-41cc-8954-bb838a6975b8 1 Other Other +890f072b-4582-45f8-b6e8-873a777b81a7 1 Other Other +890f2a93-5c07-4e1b-8e41-62658de8d914 1 Other Other +890f55c1-9acf-4efa-ad80-3c8270152a54 1 Other Other +890f9941-9e79-4154-80dd-583d158a391f 1 \N Other +890f9a4a-b0e0-4cae-b48f-8f552cb1769c 1 Other Other +891004ea-7f17-40b1-ac51-72aa769b50b3 1 Other Other +89109389-26a4-491b-94cf-1e24ef5dda38 1 Other Other +8910b5f3-270b-4f94-aae4-b3036764ad98 1 James Other +8910c29c-4869-46e2-85d6-ea8c96ae7eb5 1 Other Other +8910e41d-fa87-4bdb-a27d-16e46ed901b9 1 Other Other +8910eded-7f0d-459a-81c6-363e2dba12a9 1 Other Other +89114fcb-73d6-4931-969c-887618fa9490 1 Other Other +8911502c-d54b-404e-94f9-dcf08bc328a1 1 \N Other +89118504-ee8a-4a12-8ecb-bb57df40398c 1 Other Other +8911882c-4122-47c5-bd15-f2de033f4e98 1 Other Other +891199bc-0a5a-4e0b-81fc-0609c66bea2a 1 Other Other +8911a1b6-e0e0-461e-af2c-47171d7c16de 1 Other Other +89120974-6fbc-4d77-b6eb-da5e765250af 1 Other Other +891254da-14cf-4d21-9416-4188a0dc6efc 1 Other Other +891264a5-d2aa-4f5e-9c96-649e817f5c07 1 Other Other +891280df-203d-41b6-bd3a-0a712d80780e 1 Other Other +89128318-b532-4e71-9537-72ea6875f700 1 Other Other +8913207c-807d-44b5-97f7-976450af728e 1 Other Other +8913ad50-a1e6-4343-badb-1e75baa7a571 1 Other Other +8913dae7-3ab0-4cb9-beca-cfcb2cedca68 1 Other Other +89140292-7423-42c8-bb23-0ebab9587fdd 1 Other Other +89141879-82de-4b8d-951d-8a60fdbd4bcb 1 Other Other +89141a22-b8d7-4231-9c76-91cbe8d2ce8c 1 Other Other +89145726-da86-4947-977b-0062a9a88fc6 1 Other Other +89147a2c-01b2-48f6-9bce-9f96cd0b8be7 1 Other Other +8914e8ec-e4a5-4ce4-8058-510025ae2130 1 Other Other +8914ff18-edd0-47dc-ac4a-14a9d6693362 1 Other Other +891508fd-8fa9-4a65-856b-9c6d1c6d4dd0 1 Other Other +891578dd-5fb7-4a6e-8bbc-1edb96516a9e 1 Other Other +89158e7f-b71c-4659-a994-0178ef1150fb 1 Other Other +89159f26-212c-4607-8bb8-26a0286109d7 1 \N Other +8915adab-592f-4107-9155-b2a03e3850ac 1 Other Other +8915d9fa-c78a-44dc-a0e9-490df3d3da0e 1 Other Other +8915db60-b877-4d81-ab85-aea5b3da25a3 1 Other Other +8915fdde-6c36-4cec-b584-7e5771a471ea 1 James Other +89161530-dd46-49ce-b707-5d67166ada4c 1 Other Other +8916469f-7d21-4646-919f-52b74ba84807 1 Other Other +89167600-0a55-4d65-883a-9995c53d9452 1 Other Other +89168503-df85-4094-87cf-d2ef80685e3e 1 Other Other +891687a4-49ac-450a-8d17-45f2e2d0f90a 1 Other Other +8916c8cd-ab8d-492b-99b3-7e5fd8e055ac 1 Other Other +8916e977-7017-4cf1-b512-34a78ee59220 1 Other Other +89171b68-0a30-468b-8b48-4d41ecc7d0c9 1 \N Other +891730f1-7789-4087-8d20-a404102c1412 1 Other Other +891741ac-9ac9-4d04-be0c-d5ee0550de6e 1 Other Other +89174bf3-7fc0-45bc-a4d2-727ef3dc5522 1 Other Other +89176477-07a1-444c-b91a-b0ca20588cfd 1 \N Other +89176ad7-756b-42a6-8278-79cc75d7e2f5 1 Other Other +89176b28-053c-45ae-9858-c04cb2ed70a7 1 Other Other +8917aa61-8e9f-4f64-a743-f1a98102fd1e 1 Other Other +8917c636-3ec6-4f77-af7c-22033f4822d4 1 James Other +8917e57b-91cd-443c-a806-e85f849ece34 1 Other Other +891845a3-dcdd-4aa0-aa51-0ec66bfd0815 1 Other Other +891848af-57c8-4770-8ad5-8b0ad4e232bd 1 Other Other +89187132-bc48-4538-a9e3-b2cc8c095e45 1 Other Other +8918f7dc-f3f5-45d0-9b6c-bb3b7a22b13c 1 Other Other +891a0bb2-7652-4159-bf6a-040daa9937be 1 Other Other +891a0dad-513b-4752-833c-cf8ba9b9d7aa 1 Other Other +891a1eae-0eec-465b-ae20-76cde203fa1c 1 Other Other +891a290f-025b-4fad-bf06-4e2a4181bad8 1 Other Other +891a493a-6116-4e6a-bcf4-a0d2af10b7ee 1 Other Other +891ae3dc-b678-46b2-ab19-cf21c9c7e7d6 1 Other Other +891afbf0-a2f9-4ba3-af47-28e7a4f63f4e 1 Other Other +891b1c03-25ce-46c7-9d3c-93ff63b7b8a9 1 Other Other +891bc0b7-f2e6-4acb-88ee-b9a4edb00ff0 1 Other Other +891be3ea-c67d-4f3c-8d6d-54068c71d5d3 1 Other Other +891be7da-5ce0-443a-bfe0-6733081a774a 1 \N Other +891c0a6c-c82f-495c-98bb-041b2446de1b 1 Other Other +891c3c84-1767-45b6-9900-b3db94c0812c 1 Other Other +891c9088-fa74-49f5-8efa-aa95b852d4b0 1 Other Other +891cced8-eb58-49f0-96ff-ef7287fa9527 1 Other Other +891d1035-299e-44b8-a92a-5528b50fbc52 1 \N Other +891d1e73-6265-4295-905b-b1bf8c89a438 1 Other Other +891d3b90-8d40-4943-b8b4-7ef34568ccee 1 Other Other +891da185-abc8-419e-bbaf-6fdcdbc3b8e8 1 Other Other +891dccac-918e-4764-b8ce-71e04ee34383 1 Other Other +891e0159-086d-4c49-9b72-fe9cbcc7b950 1 Other Other +891e434c-906e-4717-80f3-5f9117cf7f6e 1 Other Other +891e4824-b10f-48fc-a885-7414bd1d7274 1 Other Other +891e78d6-878a-47a7-8b1c-8cae1383c812 1 Other Other +891eb7e2-7df8-49cc-b216-add12f358ce1 1 Other Other +891ebf92-bdd9-488c-bf79-a30c7d7e1781 1 Other Other +891ed5dd-1f49-42c6-b5be-90b5fcb65bb1 1 Other Other +891f1cbd-54c9-4fcf-b6e0-3daec9998a28 1 Other Other +891f21bd-ceef-405a-98e5-56a8e0bb0cec 1 Other Other +891f28e2-da58-4752-bddf-e7f4529eb43d 1 Other Other +891f2d02-2550-4ec8-962c-3fd888b5a183 1 Other Other +891f7d2e-51db-407a-9396-1873aa7caaf9 1 Other Other +891fda88-9df2-4267-9950-2849a914c1c4 1 \N Other +891fffeb-8569-4924-9f4e-ffa29d3ce564 1 Other Other +892016e4-4fe8-4ca0-9ee0-ac05a6239b2b 1 Other Other +892037ce-434f-4e03-86aa-0dd31c57a1a6 1 Other Other +892097db-d0f0-4568-9c38-9f2afb5affb5 1 Other Other +8920a4a0-aaef-4600-9840-1f82a1dc49aa 1 Other Other +8920bc68-7cd9-46db-ae86-c9c14685e904 1 Other Other +8920d72a-dd27-494e-b575-7d84305c39d5 1 \N Other +89217891-7c70-4154-926b-822507268f88 1 Other Other +89218163-dd61-425c-975e-8297c4ad820a 1 Other Other +8921ee7b-489a-4340-b713-f70dfcbca663 1 Other Other +8921fa45-76b9-46d1-9fa3-928b56f2e290 1 Other Other +89220fc4-a85d-4075-98a0-8a163dd19602 1 Other Other +89226108-92c6-4a24-ad89-ed39dd7b6bf1 1 Other Other +89228b61-6064-4782-b21d-715cb3d8eb5e 1 Other Other +8922bf63-ac7b-4b8f-82a6-3d4881ac5fa4 1 Other Other +89232c8c-fb35-48be-b951-6c34577c2214 1 Other Other +89233cd9-9057-447c-ac43-cd2fd510f74f 1 Other Other +8923c5cd-f133-46da-9061-4bc0e02d6910 1 Other Other +8923c776-39ef-46f7-9764-1ec656589af4 1 Other Other +8923fca7-cc47-4b87-a2c4-65456e9f7536 1 Other Other +892400e9-8e5d-4ddf-b91e-172b4eb09c02 1 Other Other +89241d75-01cf-449b-9204-df26d38c6bc8 1 \N Other +89242cfd-fc15-451d-a0fe-2de692dbc541 1 Other Other +89246018-e905-40d7-8f3b-0a65f9507644 1 Other Other +892460c5-0100-4acc-9236-9fe002f29499 1 Other Other +89253f77-5cb1-4654-a8e9-39b6b29a0971 1 \N Other +8925870e-ae27-4bc7-8a65-23a16e2f9078 1 Other Other +8925a445-043b-49ce-b2b9-3c4f36f0bd80 1 Other Other +8925b3f3-eae8-49cd-b064-b52dc470d1d5 1 Other Other +8925b56f-53f8-46bf-a544-d615338a69b5 1 Other Other +8926b222-7e64-4174-9a7c-624915d0a0f4 1 Other Other +89270ff4-bba6-4c30-bdbb-4f1096d85d4a 1 Other Other +89278438-ec18-4fc8-86e7-c8bcfb02f510 1 Other Other +8927cd2b-1c53-4b9e-b9cf-b0038641adec 1 Other Other +8927fcbd-22f3-44eb-a5d1-5a062c421123 1 Other Other +8928318d-fa81-408c-89b8-e046b6b089fc 1 Other Other +892877c3-8dd1-409f-b2e5-9846a32ed29f 1 Other Other +892882ff-5289-465c-9e6b-33544a590c74 1 Other Other +8929212f-88da-4819-b62a-b7b785f5905c 1 Other Other +892935e4-5644-4d78-95b9-663c5c74e30a 1 Other Other +8929422b-ba3e-4c63-9163-27c7270f2b8d 1 Other Other +892985e6-f845-4675-a38f-04f72276da9b 1 Other Other +89298959-ec3f-4715-b3ab-6271ccee433a 1 Other Other +8929c40c-0b8e-4c4d-b5ef-754f14d58027 1 Other Other +892a3802-2617-455e-806b-f63b000af827 1 Other Other +892a4368-8e6c-4180-829a-2f8d73cd949b 1 \N Other +892acfb3-1e59-4f4a-a6c1-785024288bb2 1 Other Other +892b70db-93d3-4956-b740-c2a72863a6fd 1 Other Other +892b73b8-8d6a-4b97-981e-1b2ace25c17d 1 Other Other +892b8f86-b47b-4db3-8f31-3f130ff5982e 1 Other Other +892bd4ff-acb1-4912-b192-1c63e6819d0b 1 Other Other +892c32f7-4b0e-49b7-982d-0a3ac67a5445 1 Other Other +892c33aa-64de-4119-9791-f5aeae6d95ec 1 Other Other +892c4e2d-0fbc-4a02-b7c0-9f7cf490e587 1 Other Other +892caebf-9b50-4fca-85e4-aa4373241372 1 Other Other +892cc38e-f44c-48d1-9692-ad0858afdb20 1 Other Other +892d0df6-7a6a-47ba-80d4-00d02ea651b4 1 Other Other +892d240f-5c8a-4e48-b76c-a88475573254 1 Other Other +892d6b29-46c3-466c-98b9-3a6f738ce8a5 1 Other Other +892d72a2-3478-4702-ab07-95b70b4016d3 1 Other Other +892d8434-c5f5-48c8-aadc-f9728fd62f5a 1 Other Other +892dd90a-ae52-4726-8a12-dc4a7a2f364d 1 Other Other +892e106f-99e5-438b-937e-c6614820eff0 1 \N Other +892e123e-caad-11e7-8c9f-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +892e21de-4db1-4dc4-bcc0-7808676bbfe7 1 Other Other +892e6dab-79f3-4b1c-9a8c-47de609177f7 1 Other Other +892e9397-080b-4555-8653-7126e04ef565 1 Other Other +892f383f-a900-4554-a435-9d7ab3b26450 1 Other Other +892f68f9-0ca5-49b3-91ab-27076dbccf05 1 Other Other +892f751e-bc56-4afe-8747-f4b33ce1954c 1 Other Other +892f83fc-6425-4074-81a1-e0ebcd56148d 1 Other Other +892f8a99-80f7-412d-ae21-ba942784b500 1 Other Other +892fa1f7-03e2-448b-a9cd-3bae7bdfa174 1 Other Other +8930823d-4e17-4ab4-8e33-19cc66837869 1 Other Other +8930cb4e-67e1-4817-919f-9727ff677382 1 Other Other +8930f854-bf42-4cf3-a1fa-1c7a37b3a27e 1 Other Other +89313a5d-086a-41c9-b0fa-cba7fa2de2d7 1 Other Other +89313f5f-16ed-4375-9ea1-9479c52f761a 1 Other Other +893150d2-fd04-4547-a1ae-f197ba2672f3 1 Other Other +8931524d-7871-4dd8-b63c-ef7106c92e8d 1 Other Other +8931934a-7d01-47f8-a38d-5611822c3f09 1 Other Other +8931a57f-da3a-41b3-9286-5ca02a6f908a 1 Other Other +89323b0d-92ac-49b2-aa45-3a569968362e 1 Other Other +89323c1e-2604-40ce-b27a-d0a04522bc08 1 Other Other +89323eb8-3a51-4594-b8ec-26d8687dd772 1 Other Other +8932856a-82de-4f4c-9190-cea12592ea9d 1 Other Other +8932d44b-c72f-465a-96e0-7ee2f6db1777 1 Other Other +89330231-3792-41da-9221-a5e579230f53 1 Other Other +89332f1f-4d8f-41c5-a6e3-ba5880616116 1 Other Other +89332fe2-1ec6-4183-bcef-08a466ba32c5 1 Other Other +89338094-d1f2-4691-8dd6-ffcb6c4b6dd0 1 Other Other +893394f5-a0ed-4583-a5d1-8afb7efac27b 1 Other Other +8933a2bb-fcda-4051-a272-607a8dcda42d 1 Other Other +8933ea0b-7ea8-4e57-916e-0b715cd45e55 1 Other Other +8933f2f0-b8ac-45ba-8925-c9bbaaaa65f1 1 Other Other +89342542-285e-4d0c-a0e8-11d92f700d75 1 Other Other +893466e1-19cf-4d8d-ade5-15df84009d10 1 Other Other +893479f0-2f7f-4ed4-8201-d659dec35d08 1 Other Other +89347b15-7351-4950-9391-f692fd7bd27e 1 Other Other +89348f26-2a8c-405b-b989-4906becfdb85 1 Other Other +8934b7ae-1bee-47fa-b61a-6926b15cb1e7 1 Other Other +8934fe80-a4d5-4541-90dc-9b5c5f4e50ac 1 Other Other +893534ac-c0c3-4d14-b4b5-23e68030081d 1 Other Other +89353d54-94d0-4f4e-ab8d-e9b69d76036e 1 Other Other +89354144-31c2-4b4d-b029-28574ef90a28 1 Other Other +89354149-292b-4e70-b332-c9c237d5e94c 1 Other Other +89356266-e5a3-4dc4-9a92-351d551022aa 1 Other Other +893579bf-0c56-4e55-8957-cf087793b84f 1 Other Other +89359fe1-f633-4ec1-821a-65640bbb1ef9 1 \N Other +8935be8f-c1a8-4d02-af00-3b47c7058e53 1 Other Other +8935f4e3-8e31-481c-9a64-2c7738d83ac1 1 Other Other +8936263b-7e4e-4ba0-9e4d-30200f532d90 1 Other Other +8936a25e-3caa-11e8-85cb-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +8936c9e2-febb-4351-a53b-71859d1965be 1 Other Other +8936d085-27fc-41f2-9408-e77967d30363 1 Other Other +89372171-f4c0-4e49-a0a4-0b488a3fb762 1 Other Other +89373893-775c-49ec-8dd8-089c42a90594 1 \N Other +8937658c-2d3e-4708-a899-806d90745913 1 Other Other +89376864-1a41-49a6-86c5-b1115478bcb6 1 Other Other +89378299-20b4-48b7-948c-1339ea9825aa 1 Other Other +8937878d-f1ab-467e-b2f8-7968d1f0e460 1 James Other +89378e28-8868-40b8-87dd-f7d9d2124e1c 1 Other Other +8937a9b3-6428-436d-80ad-af5dd41b0f0b 1 Other Other +89387fe4-ab9b-4136-a220-e46ddd353136 1 Other Other +89388800-38d3-4b6f-b7cc-ad49fc625a57 1 \N Other +893892e4-87e4-42d5-9b72-56df2576ac86 1 Other Other +8938bad0-d580-4f24-a72c-b5baef714f58 1 Other Other +8938d8d7-f405-4f34-9fbf-ca1bee073d6e 1 Other Other +8938e8fc-03ee-4937-b5a5-c130c42f3a61 1 \N Other +8939380f-1aad-48f1-81b5-c7a039a5027b 1 Other Other +893954c3-e2b4-4207-a0a7-b3176c48746f 1 Other Other +8939be7f-43bf-4dc5-9880-c08312dbbe26 1 Other Other +8939d6b6-358d-4a40-9cd0-32ffdd96c147 1 Other Other +8939e5f7-b6ce-4eb1-bdfd-4c52400656b6 1 \N Other +893a4cbd-6796-45da-b5b6-87a322c20227 1 Other Other +893a7b77-f0fc-4253-acb4-b31cf8e94f3f 1 Other Other +893aa23d-6748-4bea-b48f-e38032dd3c11 1 Other Other +893aa31e-9561-4dbe-8fce-38f51547c312 1 Other Other +893addf9-4a20-4306-88fe-8edb8bbbdd9b 1 Other Other +893b0b4c-d275-42db-9af7-90ef21dfe244 1 Other Other +893b0f1c-fcf0-4c14-b741-bb9eb37a2879 1 Other Other +893b9af9-e3c4-4d7c-949e-98cd7ebbfc1f 1 Other Other +893bc2a9-8774-434a-b236-b3b8993a5f62 1 Other Other +893bdb33-a4c9-420d-a5b2-97e1ad4108a6 1 Other Other +893bdf7b-0255-4bc1-a402-1b734c77b614 1 Other Other +893be208-2ec3-4374-a7e4-1f8004fa857c 1 Other Other +893c4342-5ecf-4298-85ea-ee1a78219d66 1 Other Other +893c680c-2469-46f9-b323-5160f95bd93e 1 Other Other +893c72df-d987-4f7f-8baf-584577610cb2 1 Other Other +893c8019-7004-4365-9a6b-471a268c8d5a 1 \N Other +893c95c5-96e9-4322-a382-ee8540e16896 1 James Other +893cb92a-548b-4c71-b1ac-1c029575ce68 1 Other Other +893cdbe2-76ce-4a5b-be48-4e084bb3357a 1 Other Other +893d198f-b242-4eca-a3dc-e22a3308388b 1 Other Other +893d373d-eb3d-4562-8c05-82181abd3817 1 Other Other +893d59b3-9700-4556-bd06-eae9e46abef9 1 Other Other +893db9eb-6ef0-4edd-9bb3-1dd98e887e83 1 Other Other +893dd03d-7ff8-4104-8711-ce1a036e5666 1 Other Other +893de21d-ca97-4cb4-ae40-ce166dd89e03 1 Other Other +893de274-dd95-4a95-9e47-42deb576bbfb 1 Other Other +893e2273-58b4-40be-a97d-358483b38e93 1 Other Other +893e3079-9076-40f1-bc9d-69fdb6bc765d 1 Other Other +893e9052-3b5b-42d9-b802-9c5a364cf44d 1 Other Other +893eabf0-9cb8-464b-9fc9-9ebe4b274479 1 James Other +893ec286-bc75-45bd-b52c-7e1f8e192311 1 Other Other +893edaaa-b6f6-406c-94ab-5f10a1bfcae1 1 Other Other +893ef1ef-a7d5-4d94-a6e6-ff8119689a17 1 Other Other +893f4d71-f3e4-4399-91e4-12db5edc2e4c 1 Other Other +893f5512-fed5-4005-8943-3979e3300d07 1 Other Other +893fc518-4ea9-423f-9e60-9d13bbd16cb9 1 Other Other +893fc62e-fcdc-4ed9-8985-41400a6c6e54 1 Other Other +89400efa-1903-46eb-8880-88db839c0c34 1 Other Other +89405bd0-f0de-4d95-8fbc-619a24743e6f 1 Other Other +8940639e-fac1-42dd-825f-736917887a90 1 Other Other +89409f2e-f424-47ca-b414-bd75f2d39d77 1 Other Other +8940a66a-c2a9-4fd7-9c5f-7a277f6095b0 1 Other Other +894147c2-493a-4df6-b21c-3756a9737f67 1 Other Other +8942002a-a4ba-4fbc-a44c-707f676713d9 1 Other Other +8942188b-efa2-4ccf-a4aa-825d67db8adc 1 James Other +8942a0d6-67c7-4748-b066-576bae91d585 1 Other Other +8942a507-7edd-4f19-86ab-8ba51b7cd5d8 1 Other Other +8942ef0c-e2f9-4fe7-886e-78da6d0028ba 1 Other Other +8942f40b-e7da-4bd1-ab2e-4172c3a7859f 1 \N Other +8942fb68-081d-47a6-baff-8df68e2ba02b 1 Other Other +89430a89-b148-4c2d-bf66-7c5d1c6b2e0f 1 Other Other +89432583-61c3-49bb-92d2-d0a348c076f3 1 Other Other +894361ec-d62d-4236-9c3c-b83d2905e98a 1 Other Other +89439116-f929-4211-a200-8adc9f057727 1 Other Other +89439437-e89d-4879-8239-ee9e71eee817 1 Other Other +8943db55-2119-4d54-ab84-b94948086a50 1 \N Other +8943eb10-1140-4364-b837-14dee479ea3f 1 Other Other +8943f3d8-228d-414b-8aeb-b31e5d846082 1 \N Other +8943f5f4-4275-401c-8a70-c3b5d6fd8cf0 1 Other Other +8944011b-7b36-468c-a695-3d52cb95ff9c 1 James Other +894417ce-0e6b-4872-994e-a82fdbf9a0fe 1 Other Other +89443d3a-40cc-4460-a16d-feaea9be7105 1 Other Other +89444898-6073-4de3-a12a-45b073a5c82c 1 Other Other +8944a8bc-4239-4037-8acd-f186a598508b 1 Other Other +8944b3de-2218-4556-a63b-018d2905bbd4 1 Other Other +8944b845-9cd8-40f9-a0a4-e392b307650a 1 Other Other +894507e9-6730-4959-92f9-4d1789755e14 1 Other Other +89455dfc-993e-4845-8d0c-be31dcc97d66 1 Other Other +89456a34-d743-4dd7-b364-146ccf1ac599 1 Other Other +8945c8fd-c7f0-4a33-8d2d-906cb03d2b0e 1 Other Other +894642fe-20dd-4074-a38a-7187bbd99b31 1 Other Other +89464483-c88e-4767-9965-84c6586fb693 1 Other Other +89464847-3285-4132-95c4-9557b8221831 1 Other Other +89464ba8-f6d6-44dc-b937-bb31f7937494 1 Other Other +89465106-ca17-488e-a828-7a039b2046eb 1 Other Other +8946a471-c50f-49e5-aab0-c81b936a19d7 1 Other Other +8946b60b-d61d-42bf-b133-32ed1af52421 1 \N Other +8946fef2-e05b-4f2f-b08d-53906c8baedd 1 Other Other +89474525-30ff-4f74-a2fd-501c1bca9515 1 Other Other +89476057-933b-404f-b164-62b467987a70 1 Other Other +8947a841-e643-4869-aea9-60f5a3b4e1f6 1 Other Other +8947c852-3b1d-4b58-a453-cebddcf23326 1 Other Other +8947e5b3-2568-406e-b4af-4fae08aa406b 1 Other Other +8947ff63-838f-4adb-9e5a-6afba76f19e6 1 Other Other +894817af-eab6-4bc4-b85e-1eca58a0e649 1 Other Other +89482e69-728b-4317-bd96-a0f21d7913c0 1 Other Other +89488894-59cd-43fe-b5af-d78112f623f5 1 Other Other +89488a6b-2d2c-4193-91ed-6b3aa4d068ad 1 Other Other +89488c4c-0b0e-4c32-a7a2-1ef8061b6ac3 1 Other Other +8948aac7-bd65-4d58-9565-98444f59abdb 1 Other Other +89490aee-9be6-4685-becb-bf069bc314d5 1 Other Other +89494e7d-995a-4e1d-9b1f-3b38a5e1a857 1 Other Other +89497b40-cb59-421d-bf79-9e88219b9193 1 Other Other +8949dd86-1958-4feb-908e-77487c90f98e 1 Other Other +894a33e4-7cdd-48b4-88f5-6d65fa0bb2d6 1 Other Other +894a5be0-64fe-4ad9-b710-0bd167f0bd22 1 Other Other +894a7023-ec37-4d32-baf1-910783bfafe8 1 Other Other +894ab4e1-cfb7-434c-b19f-a26e9be37511 1 Other Other +894ad988-89bd-4a48-ac19-0d104d17cb59 1 Other Other +894af5e9-0125-4e6c-84d3-badaae04866f 1 Other Other +894b2241-2026-49b5-bd3b-fc261e0f619d 1 Other Other +894b40eb-7a52-43eb-beff-7b0eeb951896 1 Other Other +894b4423-e7da-4078-ac61-e9948e530bb6 1 Other Other +894bd098-cc4b-4ab3-add9-af391fc45720 1 Other Other +894c16f4-93a1-45a2-b048-303564ada9e9 1 Other Other +894c4953-2e63-4f07-b668-63677133c4ad 1 Other Other +894cb876-d321-4880-94ba-cfd9967e332d 1 Other Other +894d5605-0367-4a52-a60a-9b29ffae9fce 1 Other Other +894df633-3b76-44b3-b929-672453eecc2f 1 Other Other +894e210d-ef0a-4205-b09c-02c27aa9125a 1 Other Other +894e310c-e31b-4c62-b0c2-3f20e6dc491e 1 Other Other +894e33d2-65ca-452f-a238-2b8aaf22eb44 1 Other Other +894e73dd-6120-43e8-a01d-a8235363931c 1 Other Other +894edb95-1822-4f20-9990-ca12d8bf60e6 1 Other Other +894f42e1-57aa-4cd4-8ab7-dc5cd5070389 1 Other Other +894f58d9-b341-4f99-b770-10b1b76524c3 1 Other Other +894f7d28-c491-4b5b-ad9b-8c109105748b 1 Other Other +8950160d-cf92-421d-aa50-8226c0146606 1 Other Other +8950410f-98d1-42a2-8299-38d40c1a8c6a 1 Other Other +89505121-84f4-441e-8eae-42529d4ee797 1 Other Other +895082fa-66ba-4c03-9e47-24197a71341d 1 Other Other +8950eda3-dfd2-4b09-bec5-6268f5099799 1 Other Other +8950ef5a-c444-4d1b-93c0-c0eceb846555 1 Other Other +895114f7-6b75-4262-a9c7-0e51775fa0a1 1 \N Other +8951546b-f1d4-49a3-a91f-81810e77b143 1 Other Other +89516122-ebbe-477c-a47d-a729dea2e76e 1 Other Other +89518329-0d4f-4aca-9226-f2daefe5ae13 1 Other Other +8951f77f-3045-4f01-8a41-b847bed3e563 1 Other Other +8951fec3-a592-4ca1-bca8-1af9e008c06a 1 Other Other +89527b43-ce8f-43b2-b5a0-0d6c3969fc4a 1 Other Other +8953027c-ea82-46ad-96b6-710e40275a50 1 Other Other +89539af6-982a-4e12-9ea2-ca7f1c48600c 1 Other Other +89539de4-5ed6-48f4-966a-dba68e82818b 1 Other Other +89542a2f-8b4c-4e6b-85bf-2ff027a1cd2b 1 Other Other +8954c870-1fa3-4de7-98d8-847ac3db4e1f 1 Other Other +8954d28e-75e5-411b-8aec-5c69d414a0f3 1 Other Other +8954d876-92a9-4876-b5ee-df062a8f1de4 1 Other Other +89554e12-1508-47e0-9964-d239bcf11e5e 1 Other Other +89557583-94d7-4d0d-9c48-1ceeb48f10b6 1 Other Other +89558dae-40aa-4d6c-a9eb-68cee661b628 1 Other Other +8955da2d-871e-4d97-90cc-4c7733f921d8 1 Other Other +895623f7-aecb-4c53-8a10-22cdb750377e 1 Other Other +89569d6c-8b71-40a5-893e-547a2219b64d 1 Other Other +8956a818-c31c-4968-8205-22a6e27aab7e 1 Other Other +8956be4f-b88f-4537-ac59-3dec203a6ba4 1 Other Other +8956d059-1b13-41b6-bf0f-d9872539d04e 1 Other Other +8956d28d-cb15-435d-b6f6-1e7773dcc6e0 1 Other Other +8956d68b-1fdb-49c3-aa67-424a3292f0ba 1 Other Other +8956df9f-4c6a-4909-af16-bf7eab79818b 1 Other Other +8956ef3b-adca-4e04-a817-955c5a89ada5 1 Other Other +8956f27f-e824-4ca8-a93a-d622bfbff50c 1 Other Other +8956f6a9-7e5f-4bf4-b825-e740b87e6fbb 1 \N Other +8957326c-1fae-427f-a1e3-fed40f8427ad 1 Other Other +8957353c-30b3-470e-a0a0-c801ee27f798 1 Other Other +89574fbc-b5dc-43b5-ab91-d4a021f2fa67 1 Other Other +895776cc-6183-4eeb-be64-0da84dd9f3d3 1 Other Other +8957dfee-facb-4933-9360-2759a28b2181 1 Other Other +8957f065-cf03-4b81-8392-810ce9d317c4 1 Other Other +8957fa34-212f-4d63-8b01-d70ebac6f365 1 Other Other +895835d2-0e4b-40fc-aaf7-c332b435718e 1 Other Other +89583fa6-f9bf-4b05-ba73-0af4072ce9ce 1 Other Other +8958469f-15a4-40e7-8ba0-032c418d10b6 1 Other Other +89587191-4e91-45dd-8a8a-d51734a51c16 1 Other Other +89587637-4664-43a0-b974-a34505742c38 1 Other Other +895883c2-1eaa-478f-8436-b4194fa563e8 1 Other Other +8958887b-859c-4f62-83ab-df868c982e4d 1 Other Other +895896fc-d53b-43c5-ba73-dd8cf6a80428 1 Other Other +89597708-39c9-47f0-8073-3c2a0fb58266 1 Other Other +89598618-d45a-4a82-a642-2f6095437b48 1 Other Other +89599ccf-1d15-4798-899b-cff8118f2829 1 Other Other +8959a07d-2656-4905-b896-9b4809a2265c 1 Other Other +8959c36f-5098-43bb-888f-8354bdc5a3fd 1 Other Other +8959df73-6c9e-4b60-90e7-af050530e20e 1 Other Other +895a1232-6e2e-4730-966a-fcbd58ff8c9b 1 Other Other +895a8ac9-4574-4f68-9437-4741211e0798 1 Other Other +895a8f44-6791-45c9-b381-90a9237c664e 1 Other Other +895a988a-6d43-425d-8e65-56bc9474ca4f 1 James Other +895a9ef4-35d8-4a54-9f8c-a33d6d0654d7 1 Other Other +895aa455-f364-459c-94be-166afecadd6c 1 Other Other +895ac008-6ea3-4e49-9a58-b9ad74cbadcc 1 Other Other +895ae440-4cb7-49a9-a9b9-65410fa72070 1 Other Other +895b0fff-6430-4dd0-92bb-ef785e77df2e 1 Other Other +895b53b9-8c82-45cd-9b6b-4cfaae5f9faa 1 Other Other +895b6ce4-aa19-4888-8291-b83a369a46ca 1 Other Other +895b774f-88a2-4e78-ac1c-6e764c9a684d 1 Other Other +895c0364-6053-4486-81c5-5792f0c3797a 1 Other Other +895c064e-0265-4f91-ba46-bb2a5374cbc7 1 Other Other +895c071c-2bfb-4457-a60f-fc3a27da30a9 1 \N Other +895c1101-98d6-4bc4-8697-8e65def48cfa 1 Other Other +895c380a-ce6c-492c-9056-19c6d7ebb666 1 Other Other +895c6ee0-77ce-4e41-832a-2e5c4482af29 1 \N Other +895d476a-a812-44a3-aa20-ec390361813d 1 Other Other +895d4c37-9d5e-4593-9332-ffe9e28b35c2 1 Other Other +895d525c-082d-429c-bc43-662c548b5653 1 Other Other +895d64e2-633c-4135-824c-4cc997c24f6b 1 Other Other +895d6b12-ea17-4091-9cb1-377fc14d1ef3 1 Other Other +895d7990-452a-49d9-ab7e-14d89942e43f 1 Other Other +895d9204-0bb8-4c7b-82d6-dbffdc4a16f6 1 Other Other +895dcda8-ebc1-47f9-a343-661779b36f5b 1 Other Other +895e0936-76e6-49cb-8709-fca23f08ce6e 1 Other Other +895e2e1f-b704-4ea0-94fd-7719e37db3ac 1 Other Other +895e57a6-63b8-4ebb-9f95-d4f402607d2f 1 Other Other +895e76e5-dd36-467c-a7d3-61d0e1d9062c 1 \N Other +895eb4b7-894c-4856-8ccc-f55930cc0452 1 Other Other +895ebda9-9ebe-4b2b-9016-f80fcec1afbd 1 Other Other +895f0272-1c5d-4186-820a-d4a0dced84e2 1 Other Other +895f02de-3e99-4ce7-8086-6031e33c345a 1 Other Other +895f1103-574f-4b43-a2fc-7c062d783ab2 1 Other Other +895f4d66-3bb4-487f-a2c1-376e1341d68a 1 \N Other +895f517c-b8c0-4973-991e-504ac3b87ec7 1 Other Other +895f574a-cd73-4b54-b057-842487c68b1f 1 Other Other +895f8e61-7db6-4252-a0d6-c1c9e44403e3 1 Other Other +895fc48c-0fdd-4439-9081-7b91c8f0eb07 1 Other Other +895fe069-fee3-46d5-8b95-79db7cfc0d76 1 Other Other +89600df5-178f-4116-a62b-9c11d6be8f1a 1 Other Other +8960150d-8e30-4ebc-b6a2-4346acb734e5 1 Other Other +89602fa0-c994-48d6-9500-9e509393912f 1 Other Other +8960a24f-fc98-4fc7-9648-8b50ff39fd98 1 James Other +8960e640-85e1-497b-aaf9-7c0585581e48 1 Other Other +8960eaa8-3c74-4811-b0f3-18334e0f2420 1 Other Other +8961025e-1d7a-4223-b7cd-153243c1da40 1 Other Other +89610605-6e98-40b1-959e-af9c7865c890 1 Other Other +89614304-9aae-4afe-8289-9b5ae357e555 1 Other Other +89615b3c-9644-449d-9bb6-85c859dc443e 1 Other Other +896215f6-af63-4211-a2c9-7ad74cc66905 1 Other Other +89627dde-2b10-47c3-8848-8a4fafc0ddd7 1 Other Other +8962fbae-448b-4502-9520-7d683a24ca66 1 Other Other +89631051-6c9d-4ba7-9633-0f0a1a4de918 1 Other Other +89631a4f-a70d-4077-82fe-cdba2cddc622 1 Other Other +89633932-5a23-4d7b-9df6-094aec083076 1 Other Other +89635957-2731-456a-9514-5fd5686a0e9a 1 \N Other +89638f4f-a48b-4a09-9c05-585eafa91e31 1 Other Other +8963ac12-a9fc-4c62-aa99-624401d82b83 1 Other Other +8963e48e-ba77-45d7-aed8-dec1365f2263 1 Other Other +8963f09d-09f5-4a81-a641-08f0af67daac 1 Other Other +8963f73e-8c36-4649-a639-12041c2bb101 1 Other Other +89640375-d9a9-4831-ae9c-c1ae0cb3a9cf 1 Other Other +89642ba0-a35b-4e93-806f-78a51ec0d0c9 1 Other Other +896461b8-9021-4c95-b4fb-ab05d803dba8 1 \N Other +89647803-4740-4289-b943-50ad0faa4260 1 Other Other +8964c065-ebd9-4671-8e4e-f1c9c81ab1f6 1 Other Other +8964e684-543f-48d8-b76d-3f840e6785b6 1 Other Other +89654aaf-fdf5-4bf8-b2a5-cec9b23c4a10 1 Other Other +8965bf09-e893-4c7f-bb48-20f91eb941b4 1 Other Other +8966b4f3-9b77-4222-9e48-a89e064ea29a 1 James Other +89673c51-f593-46c7-b748-693bb55fd910 1 Other Other +89674128-d69a-4a1d-bed3-8d2a9b9df42d 1 Other Other +89678c81-30da-401d-bcd8-f8ca3bfb4c37 1 Other Other +8967a69d-e99c-4497-968a-764d681615ef 1 Other Other +8967d9bf-bd3e-4242-814e-d6b9b62205fb 1 Other Other +89682da6-9539-11e7-9981-fa163e8624cc 1 Other Other +89683d9b-242f-4829-a3a3-68992e028789 1 Other Other +89687a70-f030-422d-951f-55879cded157 1 Other Other +8969af9e-b528-4d0c-8589-a3f96f3485e9 1 Other Other +8969d85b-772f-4a59-a752-dca121aa4c17 1 Other Other +8969f208-63c1-45b9-9b4a-8b962fb5a9e7 1 Other Other +896a4f12-43f2-4f56-834f-541afe37f7cd 1 Other Other +896a9ec4-b990-4968-8037-dcf7ed5bff01 1 Other Other +896abce3-715f-4e69-a500-1c6a626e8371 1 Other Other +896ad735-e670-4c9a-8a78-6309ece988f2 1 Other Other +896b5318-dea0-436e-8cfc-54f3b5852310 1 Other Other +896b5ae6-ce8e-45a2-8e69-67c63579f58b 1 Other Other +896b8047-407c-4214-92a7-0d157f944157 1 Other Other +896b9cb7-dd3a-436c-8d7a-f671139e0a58 1 Other Other +896c03b8-29a2-4055-a887-96ddda8af8a4 1 Other Other +896cbb5f-f4cf-4e2d-9272-8531fc41420c 1 Other Other +896ccd43-77c7-4055-9ba9-8b2a800fe961 1 Other Other +896cd654-2daf-4148-b8f6-beeb42903425 1 Other Other +896d2d07-a7d0-4cd9-9dc5-cc3ba52a894b 1 \N Other +896d6d0b-021c-4cea-834b-5e218dc7b8e7 1 Other Other +896d9428-950a-416a-9a9a-8964bce5343f 1 Other Other +896dd898-8f95-4457-bf40-7fe0e941c18a 1 Other Other +896e2b37-7bff-4e5b-8770-8236fde998e0 1 Other Other +896ef0b9-4543-41c5-8205-99ba37adae40 1 Other Other +896f48ec-b281-4631-901f-52aa85b98041 1 Other Other +896f67fd-fdcb-48f8-a4d4-770d51bed67d 1 Other Other +896f73a5-f46f-49c4-afd6-db312c84778c 1 Other Other +896f9f62-0a46-4e1b-8b3b-5898a991d0b7 1 Other Other +896fb780-1293-4a49-9d7e-9f499b4c4225 1 Other Other +897013b0-72ef-454a-91b4-e5e1ea99b656 1 Other Other +89704ff0-b5ca-4d68-a4ef-fde2d0fff186 1 Other Other +8970a8cc-7a6d-4e5c-bc75-5db98010f808 1 Other Other +8970d17a-0150-40d4-9647-c41f410b4959 1 Other Other +8970d9d7-55cc-4755-b756-b20d1464bbbc 1 Other Other +8970e3f9-b060-40bb-9b30-620b1395be33 1 Other Other +8970fefb-c346-4465-81f5-0a5822de6e8f 1 Other Other +897114a9-d053-46c2-bdec-3339c39b5539 1 Other Other +897125d8-1642-4d21-a512-7033bc783e98 1 Other Other +89712998-cf2b-4a6a-a37c-c1449d4825ed 1 James Other +8971317d-5f7b-412a-ad6d-9471ae41001f 1 Other Other +897172e9-249e-468f-bb78-6493191ff073 1 Other Other +8971bef5-51a0-4a6c-bfb1-b98e34d6997b 1 Other Other +89720ef6-ab45-4638-944f-b4a1a05745de 1 Other Other +89722a65-cd95-4533-b08b-434e8283b809 1 Other Other +89722bc7-0f50-4240-9824-672ff5c47745 1 Other Other +89722c03-94d1-4412-aa67-13ee158bc9bf 1 Other Other +8972a0e8-3055-4c08-b03d-830cf4e90664 1 Other Other +897353c2-05ec-4b38-8902-1e4409eb3d2c 1 Other Other +89736bdc-aeb4-4894-a896-909af4773113 1 Other Other +8973c335-4ad3-4ab5-8561-93a8f24c8a69 1 Other Other +8973e0f9-c2df-4df4-86fb-6529b1e0de66 1 Other Other +8973fad6-7b00-40f2-96c9-a095761c526e 1 Other Other +89740049-2187-4079-95b1-546b8f114b9f 1 Other Other +897407bc-87ad-46bf-955b-b8b04e1fb014 1 Other Other +8974b3df-9232-43fc-ae69-55180c90aa5e 1 Other Other +8974f51d-a608-4dbc-b4b7-0415f33c2598 1 Other Other +8975341f-4fa0-4411-bc30-ce96438bfce8 1 Other Other +89755376-6b40-4f97-bb36-f9ad5bb3fbba 1 Other Other +897573de-ae81-4d51-9269-5360ebef40b6 1 Other Other +89757cad-3800-45cb-b730-425251d786aa 1 Other Other +8975f7e7-a26d-4049-98c8-85eb087ec59f 1 \N Other +89760a95-9207-483b-a28c-31c555f6bb23 1 Other Other +89760b03-309d-40f0-bd2f-5ef9bf1593d2 1 Other Other +89761056-ecf5-490e-b8d1-01c2b10851a8 1 Other Other +89766b48-d53b-4334-a67e-bdbf6c12afb0 1 Other Other +8976bc79-533d-400c-afce-684da6f96566 1 Other Other +8976f337-e786-4811-8244-af347334d3d9 1 Other Other +8976fcab-9e95-4fe2-9a8c-43dc5e9c0809 1 Other Other +8977016e-6b9e-4537-a4e1-e7e04c619881 1 Other Other +89774202-2e56-4d6c-a06f-aec03e58fab9 1 Other Other +897791d5-d8f7-4df7-a6d8-115c789bacaf 1 Other Other +8977a5c9-7d75-47a4-9fd1-6957562c98bc 1 Other Other +897821fb-a477-4557-a687-069f76262857 1 Other Other +8978290c-3d78-4b79-8be6-790f500f90c1 1 Other Other +89783acf-a0b3-4774-8602-c53bc0980620 1 Other Other +8978757a-ca92-4832-aac2-ce1024c74fe6 1 \N Other +89788598-08e7-4839-af7f-aa93ca0b5742 1 Other Other +8978889a-3c97-465c-904f-daffd6bb83ee 1 Other Other +8978a5a2-72ab-493f-8506-f1eb80a2719d 1 Other Other +8978b3b7-81a5-4bc3-9bc5-2b62442965ef 1 Other Other +8978f1c0-96a8-48e4-ad5d-e53cb0a38f9b 1 Other Other +897932a5-4b59-4ab3-80d2-b8dd6dc97f4b 1 Other Other +89793743-84c9-42b7-97ae-c2929f53fe43 1 Other Other +8979af1c-1318-4d99-b164-757d98547d8a 1 Other Other +8979cd61-bdf2-45e6-b2e3-973b762fb93c 1 Other Other +897a50a3-5fee-4609-acb5-7fc25eb85a62 1 Other Other +897a547a-c3e4-43a4-9ee9-af2902a8b46a 1 Other Other +897a7ab8-1572-4c75-9926-88eeab33da47 1 Other Other +897a8a58-1bc6-4ee2-88f9-dcb26b357fbb 1 Other Other +897ac752-8ef2-488f-b440-305ab5bfc106 1 Other Other +897ae42f-d64f-4823-b262-8abd5dd01a0a 1 Other Other +897b20b2-e02f-465e-87ae-47b310b06e4d 1 Other Other +897b4ed4-14d3-4460-89b2-b3dc8a3f43e7 1 Other Other +897b562c-6282-44a2-b2ae-c95e9df30f0c 1 Other Other +897b6b9c-82ec-4654-be4a-bb59f4f5618a 1 Other Other +897b7cbd-abf9-4ce0-a805-067968ff0f6d 1 Other Other +897bc88f-c34b-4e73-a4c7-d4ff04c05f39 1 Other Other +897bccf3-0af5-42b9-857d-de99c64ae889 1 Other Other +897c00bd-40fc-42b8-acac-907eccd56449 1 Other Other +897c4cc9-c0c5-4611-9fc5-0c802cd22eab 1 Other Other +897c54e7-eae8-4da8-9779-17b6dbf527c7 1 Other Other +897c80bf-9e4c-4105-b0f0-067dc0f7163d 1 Other Other +897cae05-91c5-4c7e-86bc-7a09e91ade07 1 Other Other +897cb70d-a317-4a07-b142-b2818255239c 1 \N Other +897cd2c9-e1d8-43ff-b95f-a55d48b3ecc8 1 Other Other +897d58d6-f691-4f9f-80e9-9fc085654de3 1 Other Other +897d8fd7-27c4-461d-8341-267533e9a791 1 Other Other +897d9ad4-ae04-4d76-8e07-e434014ff528 1 Other Other +897d9c16-a007-4e4c-9560-6b4eeac49f50 1 Other Other +897daca0-b1f2-4fbb-b029-f4090f6ee440 1 Other Other +897dd21e-aff4-49ce-b834-5b6a6400ebe2 1 Other Other +897df0e9-a94d-4859-98e6-a78fddd8e50d 1 Other Other +897e15c9-62b3-484c-86a0-a843da2269ea 1 Other Other +897e4398-d0b4-4c85-9b88-394180291354 1 Other Other +897e7b1c-e1b1-4a20-a98b-72c5f7d3991c 1 Other Other +897e8419-0fde-4c8d-b74e-cd64cf2b0252 1 Other Other +897edd6c-0cd0-4c19-abbb-410c4178026a 1 Other Other +897f38ea-b793-4ac5-9edf-7fdb0b7a4bd6 1 Other Other +897f9940-cbc3-45b1-97a5-c6dc5664e798 1 Other Other +897fad4b-304b-4b0e-8d87-b082966255b8 1 Other Other +897fadd0-0638-4b5d-8947-bbc3d7faf3cc 1 Other Other +898033bf-3204-4c7c-a7dd-f48cd8b463b4 1 Other Other +89804532-ba0a-481d-a28b-ffd982f5fd64 1 Other Other +8980e8b2-4487-4215-a634-1f0735415c2c 1 Other Other +8980f226-d52f-4b8d-8c9b-7577203b6c83 1 Other Other +89816382-b3ae-451c-8b5b-cec7973e0d5c 1 Other Other +898191d2-86d7-41b7-ab24-bb7a10cfe99a 1 Other Other +8981bddb-97fe-4132-a630-b9f033e9e3be 1 Other Other +8981db23-6407-4faf-9f8e-56ad61557162 1 Other Other +89820669-a210-4801-8019-2505218941fc 1 Other Other +89820c03-a483-4351-bb43-9330099f576a 1 Other Other +8982a1e4-2c5a-4be1-b25f-214d0508cd62 1 Other Other +8982ae75-a2d1-48a5-a847-b167a14dccb9 1 Other Other +8982fdde-89cb-43c3-a4e4-7f844df69ea0 1 Other Other +898334e2-cf9c-4606-8315-b91ce75329d1 1 Other Other +89839fd7-909c-430f-b51c-6b86b52705e0 1 \N Other +8983a77c-7b60-4d35-a5e9-1ce4f9e8ee4a 1 Other Other +8983cbfb-a8e3-4bb5-9773-725499bb8ec0 1 Other Other +8983e686-b838-4a12-a4a1-bfa64f5068cf 1 Other Other +898413a7-3871-4961-9188-26bdcbbc03a7 1 Other Other +898430a8-344f-492c-a4dd-1e2712074f28 1 James Other +89848fbd-c727-4d1e-a2bc-0284b553b224 1 Other Other +8984970b-5a39-4e78-ae10-cb3e2f4f9974 1 Other Other +8984eb58-ae33-4789-a168-487a8c50b642 1 Other Other +89853890-bf18-49db-ade8-76736fbc3d77 1 Other Other +89853faf-99bf-44fd-aec9-741ba083aaaa 1 Other Other +89855896-4cbd-449c-bcfd-3af4d17095c1 1 Other Other +898575b9-35a4-470a-955f-a319d259ec3a 1 Other Other +89858541-c4ac-4faa-ad9a-80d16026b126 1 Other Other +8985c6a0-1b90-426e-8f1e-dd2a2b4f9121 1 Other Other +89860c05-afc4-40c4-b52e-57de5e8b5440 1 Other Other +8986142c-14ff-4a47-839c-558978b665e6 1 Other Other +89861b7f-541b-454e-9b4f-9826cc7296ef 1 Other Other +89864924-108e-4322-8282-25072e43023b 1 Other Other +89864bc1-68c2-4f96-8b3b-8798e5858996 1 Other Other +898661bb-5732-4b5b-9cca-4eb23174e8ec 1 Other Other +898668f6-fa8b-46ae-8279-83d3b447b19e 1 Other Other +898677f0-7c83-4c5e-b76c-a43cb352ca12 1 Other Other +89867bef-fc25-46a4-8b3f-f7c1576da770 1 Other Other +89874ed3-850a-4425-9abb-14fa4a2ae57b 1 Other Other +89877620-c407-4604-8ca1-77b67ff6a121 1 Other Other +8987b732-4df9-4bde-b74e-3d30c3657a80 1 \N Other +8987e9cc-9ff6-4c04-91aa-9b394d8fddb5 1 Other Other +8988bf06-b9b2-46e1-963b-e5aa421af92e 1 Other Other +89891752-c129-45fa-8785-bf34fcb458ee 1 \N Other +89894b4a-c48c-48b1-92dd-51bc7be5c9ed 1 Other Other +8989c69f-3a14-4b0b-9383-86f073c71593 1 Other Other +8989d5d8-e9d3-48b9-a9b4-2390a4143163 1 Other Other +8989f3ce-4c5f-4a04-a2ac-143f1aabd80b 1 Other Other +898a130f-7a2b-4bcd-905c-2de64bafdf4e 1 Other Other +898a3ac1-2b5b-4bd1-b02d-e0460a74706f 1 Other Other +898aa690-9def-4354-a96f-42ea5127ceda 1 Other Other +898aa98c-d853-4b72-a4f7-7dc8fe6867c7 1 Other Other +898b023c-a3b0-4ecd-9402-320809dd05d3 1 Other Other +898b3d9c-1c84-4df5-9544-4bf819ef461d 1 Other Other +898b806b-2c39-443c-8e67-b5ac2e2001dd 1 Other Other +898bb818-d1dd-49bb-b104-779e6d95c4f2 1 Other Other +898c0005-be64-46f9-a483-d502e1701dbc 1 Other Other +898ca57f-65b6-47e3-b716-0e4b85d5349f 1 Other Other +898cd052-f43e-4142-ba61-254bb636e83d 1 Other Other +898ce415-f856-4c0e-aefc-0eb1690d704a 1 Other Other +898ce828-dc65-4a0d-8379-0bba5139644f 1 Other Other +898d0013-9d44-4359-aa74-1437e0af0e67 1 Other Other +898d0192-decb-427a-931b-a74ebe44baab 1 Other Other +898d1077-054c-4e4c-ad37-41e1aa5d022b 1 Other Other +898d187c-9046-437e-8fe4-86f0236f4845 1 Other Other +898d8932-f704-4325-a14d-7f8a82fa2d8a 1 \N Other +898e3720-4b2a-409a-8aee-9c7f8e3ddf25 1 Other Other +898e44d8-4df5-4dee-bd6a-a55827d31ccf 1 Other Other +898e7169-d97a-4a6a-97e6-f8492faaf684 1 Other Other +898e796f-9838-49fc-b870-0c1679c7ba8c 1 Other Other +898e850b-0440-45a9-b004-db6df3933e6f 1 Other Other +898eaec6-3fc3-42ce-afd2-f3281ecb9ddb 1 Other Other +898ed138-4dd1-403e-8226-eb9cdaebf015 1 Other Other +898f6f88-a4a6-4e52-bbca-ba84bc51e6dd 1 Other Other +898f80c5-0e25-4cdf-9207-b31d968169d8 1 Other Other +898f9efa-8cc9-4f79-9a0f-4b44990edadc 1 Other Other +898fab5c-e368-420a-877b-f14b51f13fd9 1 Other Other +89902759-d3cc-4504-8083-39ec35837302 1 \N Other +8990679c-6e4b-4a21-951e-a2c5ee3c3350 1 Other Other +8990be94-4835-441c-80fe-52dd0eef5f12 1 Other Other +8990c213-e72c-40ee-a7df-efc71b4e7475 1 Other Other +89915111-f49f-4936-adb5-45896c557ca7 1 \N Other +89917f4c-e3a2-4ddc-8b9c-c5e195016207 1 Other Other +8991938f-34c7-417a-bd2e-3e1f14ef91a4 1 Other Other +8991a16d-66d8-4155-8b8e-4d0e80204a23 1 Other Other +8991e446-5331-43c5-b7b2-b44934bf85e1 1 Other Other +8992073a-6cc2-4883-9ab4-63f492eb3e3c 1 Other Other +89920da2-e827-476f-bea5-4009b487554a 1 Other Other +89920f7a-3327-4df7-872a-5c105e719ad8 1 Other Other +8992534f-2cfb-4aa8-a831-642f2b1aa453 1 Other Other +89925a0a-ea3e-484b-a251-b8078acd22af 1 Other Other +89926281-66f0-4ce9-9635-518c0e1691a6 1 Other Other +8992b774-d89b-49e0-8136-20defff19e71 1 \N Other +8992c363-0188-4564-89cc-4d265312b756 1 Other Other +8992eafb-afda-49c7-a047-9258e8bb0bde 1 Other Other +8992f9cd-afa9-4d8d-be6a-feed63b62103 1 Other Other +89935b21-94c6-4eae-b078-24d22cc10c4d 1 Other Other +8993c395-44bb-46ad-9957-d8bbe7939e52 1 Other Other +8993ee96-7f07-4ac1-bf2c-d5ed1d973122 1 Other Other +8993ff48-f363-49d2-b459-7726212e73c7 1 Other Other +8993ffd5-4422-448e-b84a-7e197b59be1e 1 Other Other +89941da7-0485-4ca6-8602-aab1b34b7bef 1 Other Other +899424b4-615d-4642-82ad-55191c0448a6 1 Other Other +89943fdc-56a2-4ddc-8f98-8d7d10786a01 1 Other Other +8994769f-b31a-4f16-b0dd-9e3d6df169c9 1 Other Other +8994858b-7f71-4b87-b753-6cf0782a04d9 1 Other Other +8994a920-2957-4da1-ad3d-9deeae213cd8 1 Other Other +8994bc06-4906-4479-8bc4-cff8dc818fc7 1 Other Other +8994efd4-e644-4464-a3cc-661a6300b9f5 1 Other Other +8994fb84-cefb-436f-bb7e-ae4c874dae36 1 Other Other +89951236-92e0-11e7-a8dd-fa163e8624cc 1 Other Other +8995286c-2b81-4391-b9a6-c6a0c163c08e 1 Other Other +899569c8-b4c9-4cd1-ac58-47c53a58b10a 1 Other Other +89959f83-0ea2-49c8-b982-32d7143c1fd1 1 Other Other +8995d78f-3b66-491f-a3bf-575a74266024 1 Other Other +8995da5d-e69a-4993-b867-e88a9452168d 1 Other Other +8995e1fb-b858-4ee5-acbf-369eb0fac7c9 1 Other Other +89960dbe-c08d-43d9-b770-4198cf61bc7a 1 Other Other +89961af2-868b-4c84-8593-b3293e3944ff 1 Other Other +89962a71-a137-4d2c-b036-2e9308ca4078 1 Other Other +899663f2-f562-47b2-81f0-1e25ac298e07 1 Other Other +89967863-0f9c-49ce-a41d-b99ec75ab759 1 Other Other +899690df-e1dd-4bd5-84b6-b348475c5d22 1 Other Other +899690ee-e966-4c7e-94da-419c426e56aa 1 Other Other +8996cdd2-7fd6-4b3b-b7ec-54696c8585f7 1 Other Other +8996e9f1-9039-4321-adcc-6e0e226fd953 1 Other Other +89970f8c-f2ba-434b-8f7c-7de694d7b699 1 Other Other +899756f7-e427-42db-a07e-64b6912e1d44 1 \N Other +89977552-d02b-440a-b867-1f10ef0b332c 1 Other Other +8997c6d7-ca7c-4496-aa85-a228910abdeb 1 Other Other +89980c81-a374-4056-a15b-b826e145a421 1 \N Other +8998631b-3b1c-42de-ba66-e14614e85c46 1 Other Other +89987589-84ee-418a-9571-3de389408290 1 Other Other +89989674-d3e0-43ed-9f78-91782cc9604f 1 Other Other +8998a36e-970d-4c1b-ba27-fb1bb67ef415 1 Other Other +8998af2c-b4ec-4697-bce1-83890754f243 1 Other Other +8998cd0f-8b30-4118-922a-e071e77bd518 1 Other Other +8998dbdd-37cf-4e78-8e92-08dc4d1c2679 1 Other Other +899972d4-e661-4dfd-8953-d21dd5ca2fd3 1 Other Other +8999bd7c-70ac-438f-bd2b-4a9903d7deb9 1 Other Other +8999da84-9952-4b3b-a777-d9413f605d8e 1 Other Other +8999fd5d-1330-47d6-9136-35858e3a68c1 1 Other Other +899a1b7d-c616-4b1c-baeb-a29213380e5a 1 \N Other +899a211e-b154-4853-a314-81b04f8107fc 1 Other Other +899a23b0-cf64-4246-8e08-9ab635d457e7 1 Other Other +899a27c8-d86d-487b-901c-aa547584c1df 1 Other Other +899a59cf-d71f-4af2-9537-3f0edabbcde9 1 Other Other +899a96cd-b5f5-4f2e-9f82-d73df90b0045 1 Other Other +899acc60-aa84-11e7-989a-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +899af888-2b4e-4c68-81e2-0bd20ae902f4 1 Other Other +899b1bb2-9f54-4eda-ae16-00cdc4440f62 1 Other Other +899b5b1d-6036-423a-b954-c3d4cb387a55 1 Other Other +899b9fea-c11d-47f0-9488-b5149333faed 1 Other Other +899c0e09-7a86-4989-9e2a-7cf9e12b4db2 1 Other Other +899c36d6-9d8c-4672-a88b-c561c97906b6 1 Other Other +899c447f-0c51-44a9-bb48-4671e8b69369 1 Other Other +899c4644-b739-45aa-8fef-7cb3a949c2c6 1 Other Other +899c64dc-3051-4365-a4aa-33ea7b3e694a 1 Other Other +899c78cb-8b55-413d-bc36-58671cf9b4e3 1 Other Other +899c7d79-7eb2-4e5a-a1ca-d852c21b53cf 1 Other Other +899c8679-93ff-4e57-872b-9fb352920bf3 1 Other Other +899c8c80-439e-4ddc-a354-fc7ccd57bfc4 1 \N Other +899ca2f7-bda3-425b-822f-ac7ef551fb8a 1 Other Other +899cdbaf-5979-4d2d-bc86-01ec5c6215db 1 Other Other +899d1a0c-fba9-460b-9398-26d09be81ae9 1 Other Other +899d202c-44bc-4afd-9ad3-4ea368bb28d0 1 Other Other +899d351c-4fd1-4688-8b25-e6c626899873 1 Other Other +899d3fbb-da5a-491d-98c2-f19362f98ac5 1 \N Other +899d713c-8049-42a3-bd23-e649645ad955 1 Other Other +899d7eaa-b82c-4aa2-ac97-3b8f85d14695 1 Other Other +899d9975-d733-4fcc-b59b-05af7b7a03f4 1 Other Other +899d9a3d-a634-4a7e-bbb9-55bbc7ca641e 1 Other Other +899d9a91-ad9d-42f3-baa5-9fd15423f116 1 Other Other +899dffcf-8425-44e2-98e2-a94573d0404f 1 Other Other +899e1c0e-6bef-43c0-aab5-03a8234810fc 1 Other Other +899e245f-3931-48c8-bf95-e9964b0417fc 1 \N Other +899e279e-05aa-4e94-9bce-0a21f59c802e 1 Other Other +899f012e-1abb-4a61-852e-712de5d97620 1 Other Other +899f3ee8-f526-11e7-b1df-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +899f6d96-7529-43d9-9c60-67ceef82f7c0 1 Other Other +899f78d9-1859-460a-98cd-6491cd195e8c 1 Other Other +899fcdf8-a959-4a50-877e-a8aeeb54ca21 1 Other Other +899fd68a-48fc-4584-87af-fed38d270807 1 Other Other +89a04c3d-1687-490c-a7a9-acec969e5844 1 Other Other +89a04ff6-898a-408a-a13f-7de3b75d986c 1 Other Other +89a052aa-d9ba-487c-ba68-d3ca366abf00 1 Other Other +89a072df-003a-4b0d-a03c-f33d61b78e99 1 Other Other +89a07fdb-babb-40cf-a1f9-fbf554a4f39b 1 Other Other +89a086a7-93bd-4c8e-b24c-616de7fc1092 1 Other Other +89a0a331-4862-4182-92fb-e4fd88125f96 1 Other Other +89a0c085-2b27-4d9b-a2b4-3f7bdbd062e9 1 Other Other +89a0f6c7-66c4-40c4-a1fd-c5f89a7ae2d2 1 Other Other +89a14f09-f6cc-43b3-8404-367668362e97 1 Other Other +89a19b1e-04fb-49b2-b074-3745b0099df4 1 Other Other +89a1c2b3-5741-4ebe-9734-3ab4a8f33176 1 Other Other +89a1f3b8-4519-4f43-bdde-99ac2f853c10 1 Other Other +89a24550-aa3b-4279-af17-4aee78f7e592 1 Other Other +89a25d45-e070-4b6d-b17b-76e3b603d3d7 1 Other Other +89a2cc39-7202-416e-86b3-dc65b486bfa4 1 Other Other +89a2e3e4-8e44-45e0-b055-d3e459a18992 1 Other Other +89a31616-50c5-4bea-9ce7-b7aaee68e8c0 1 James Other +89a33c0e-4a35-4c46-b648-00862546593a 1 Other Other +89a34eca-3b79-4148-af74-77c074661e75 1 Other Other +89a35742-c3ee-46cf-be05-a8e764c54dfb 1 Other Other +89a3b680-80c5-4941-a867-5d7d809e31fe 1 Other Other +89a3bc62-c22a-4c4e-8c27-98a70d2c53cc 1 Other Other +89a3dffd-1ad3-4552-8459-c86f3b45045a 1 Other Other +89a4025c-6d84-4d5c-adba-3d69537b7f17 1 Other Other +89a44425-71c8-4f73-a8b1-e80fbe4038b8 1 Other Other +89a4576c-c0ad-4196-939e-4d5b8871d335 1 Other Other +89a47cd2-fdc8-41c5-ae31-68cad5b86351 1 Other Other +89a49477-8e0d-4758-b362-426873f9a685 1 Other Other +89a49591-3db9-42a3-ac24-46f4b92451ca 1 Other Other +89a4a41f-aa54-405b-b887-26d6364afad8 1 Other Other +89a4b1ee-baca-4ec8-8a3f-5f83ebf83695 1 Other Other +89a4ba9a-7a80-4b2c-977a-355b23e11248 1 Other Other +89a5953e-3a8c-4225-b77a-3a674d61aa12 1 Other Other +89a59713-760b-4ff1-b86d-442d7ecb7397 1 Other Other +89a5da25-b344-428b-9904-b2dc745c3608 1 Other Other +89a5fb61-d14b-4f4b-9c4c-81b5df8c0cd9 1 Other Other +89a606c9-35ae-4ba2-bff5-5bb16d8fef78 1 Other Other +89a65826-9d97-4ea6-8166-49f0b46b84c6 1 Other Other +89a7185f-02b8-49f1-a9a8-7a5c5d8be9f7 1 Other Other +89a7582a-664d-4508-80be-771277900d09 1 Other Other +89a77572-c322-44c8-a800-c0eb45c17a35 1 Other Other +89a7a171-82ec-48da-8681-a195a82071fb 1 Other Other +89a7aa8a-3ec3-4dc4-8def-29f76e619f46 1 Other Other +89a7e18c-4540-440b-90aa-13671a225ea8 1 Other Other +89a7fa25-0421-4f2d-b04c-c01f42d323da 1 Other Other +89a80e8c-0d11-472c-aece-200ab44055ce 1 Other Other +89a866fb-4067-447c-95b9-f525d4de1154 1 Other Other +89a8ac2c-f6f9-4a8e-ab5e-e7dc903416c7 1 Other Other +89a8c602-9082-4ad7-b184-6b56c598277b 1 Other Other +89a95579-811f-410f-807c-d36362e02faf 1 Other Other +89a95bae-fee6-4943-8ed2-02135b75e994 1 Other Other +89a9d296-3ee8-47be-a486-a0108ddd78cf 1 Other Other +89aa6b14-cc19-482d-80f7-b20bee9b8dca 1 Other Other +89aa7d3f-cba0-4c6b-a528-a9eb5aa35039 1 Other Other +89aab4bd-66c7-4835-9ca8-70c6ce8d101f 1 Other Other +89aacaec-d7e8-4947-b9bd-53cde7673280 1 Other Other +89aae352-7a28-48f0-90c2-8b75219861aa 1 Other Other +89ab2853-9a1d-4c36-8016-e25756fbfac4 1 Other Other +89ab35aa-c612-42ac-a694-d5b958514755 1 Other Other +89ab9294-c6c2-4fe5-993d-f7cda122a785 1 Other Other +89ab9840-a730-43ca-a1f5-c786a5da79fe 1 Other Other +89abd157-1a38-424e-a0c5-1eef3b26910f 1 Other Other +89abe7d8-2c8b-419e-85c9-287a3b2bf6a4 1 Other Other +89ac14aa-ff57-4711-9349-ad77fc3fcb78 1 Other Other +89ac3bed-98cb-4816-a8ed-c84dde664b5d 1 Other Other +89ac587b-7e39-4519-8291-f82c7145946e 1 Other Other +89ac9ce1-f4d9-4327-a7a5-d055212464b0 1 Other Other +89acbe39-272b-45bd-b913-0c98b1718d4f 1 Other Other +89ace84a-36cc-48a7-970e-ec7874296efd 1 Other Other +89ad05f2-6621-47dc-9dd5-df599498bacc 1 \N Other +89ad38bb-b0ec-4962-8f66-3d131df6dc5c 1 Other Other +89ad5595-560e-4a8f-9484-cc9c6491d3fb 1 Other Other +89ad7160-e4ac-4f78-8b0d-d57c918d2aaa 1 Other Other +89adad47-2f5d-42fb-94c1-2482b61ae6e0 1 Other Other +89adb220-075e-46b7-acdd-432e967da4cb 1 Other Other +89addfc5-fc33-46d1-9159-ce3537d91506 1 Other Other +89ae3507-4bf4-46c6-a088-68cfa8da9e06 1 Other Other +89ae4615-19d8-4f77-b041-4e93da5e2b17 1 Other Other +89ae63dc-1d26-4540-a4f2-5592e54a18a3 1 Other Other +89ae7dc4-6b63-42a8-9209-9493cd436cad 1 Other Other +89aea8d7-0051-48ad-94c8-724c924ac500 1 Other Other +89aed69e-c8de-47c8-9e8b-22487db83f10 1 \N Other +89aee275-1d35-415e-9228-179013b60aba 1 Other Other +89af0b95-8c60-49b1-b898-27cfc54e7212 1 Other Other +89af3271-18e1-4e06-b646-db37adb8865a 1 Other Other +89af57d4-c568-4d3e-b5b9-b6543496f326 1 Other Other +89af63a4-3664-4fac-a1ac-92b593716bbf 1 Other Other +89af70ad-051a-4ddf-ba0c-f1b95fcc1bcd 1 Other Other +89af72d5-c598-483d-8acd-6555289b12d2 1 Other Other +89afc409-5832-4c8d-b5ef-667b64a6653b 1 Other Other +89afe96c-cfdd-4ec8-af70-791eb101a2a1 1 Other Other +89b006b3-a115-47c1-a01a-6a8ad6aaeae8 1 Other Other +89b019f4-2a74-47ca-b753-540d90cd9c79 1 Other Other +89b0cc0f-51a3-472c-a37b-e3cc68110389 1 Other Other +89b0cf29-775a-4f7c-aef2-02709217866a 1 Other Other +89b14405-3bd7-4ddd-88ed-39b6b7479307 1 Other Other +89b14a3b-1568-47c8-a0f6-81795395f792 1 Other Other +89b1e0e2-d7c4-44e5-a338-dbceb8fc95f6 1 Other Other +89b1f8a5-0bbf-4d11-9115-5c4671caa1dd 1 Other Other +89b22759-52f2-4910-bfab-92b1d67d5f96 1 Other Other +89b25768-5dca-4de3-b30a-48804c113885 1 Other Other +89b27605-323d-4580-80b8-b163de5cc901 1 Other Other +89b282f9-a6da-4209-b7b4-f89441fdf1a9 1 Other Other +89b2890b-c9a7-4034-8870-50c6a124d15a 1 Other Other +89b2f62e-b611-4d09-a50d-226d604dcaa2 1 Other Other +89b3522e-40ad-46d5-bb59-e7b8c2760a74 1 Other Other +89b37504-561b-47c6-a559-e68463545d9b 1 Other Other +89b3f5f2-a37e-4663-a581-81b897be4abf 1 Other Other +89b43e06-fab8-489d-be61-92b84fa5db61 1 Other Other +89b480af-d0c4-4377-a6fe-0f14d9d0e279 1 Other Other +89b4b72a-16d4-4327-969c-ce5cd6434a34 1 Other Other +89b4dac2-eb58-4aa6-9a4e-d95940961838 1 Other Other +89b4fb99-c9d2-4d7a-be29-15640be5ffc8 1 Other Other +89b545fe-79a3-4b64-a52f-23dcd517a30f 1 Other Other +89b57f03-a381-4f66-9fb1-16471e380b9d 1 Other Other +89b59ecf-b572-4136-8cce-e7fe44a2f4a8 1 \N Other +89b5c3c1-6c7b-4ed4-b8ad-9ef4a36ef8aa 1 Other Other +89b5c5e1-1439-43f8-8d86-e01275a84316 1 Other Other +89b60874-455b-45ff-a8d2-a6d94f1e8351 1 Other Other +89b611e5-8cf3-426d-9e1b-6c84033dbec8 1 \N Other +89b62fc4-7fdb-4e0d-b5dc-8df6e7289d19 1 Other Other +89b7176b-5bd9-4e74-a9dc-ed1e8fce8d0d 1 Other Other +89b73d39-e030-4bd7-8e67-c78a96976e33 1 Other Other +89b74d20-2f8a-4ddf-8795-c8da0ec28491 1 Other Other +89b76fce-5a9f-41f0-b17d-de4db9cf365b 1 Other Other +89b78f31-3618-4cd3-b2d3-eb2c611d26ed 1 Other Other +89b791d6-f694-41c7-be05-e07ada62855e 1 Other Other +89b7a8e4-95d8-425c-a8f8-37271adbfbeb 1 Other Other +89b7ae76-fb8e-4b14-9490-7e7711c77f56 1 Other Other +89b7b8f5-55c5-46e4-bb02-84a7a36ef61d 1 Other Other +89b7c324-054b-4698-a275-28eae21fc255 1 Other Other +89b87481-7d5c-469d-b710-0db6d9d9dbbf 1 Other Other +89b8a5f8-7d8c-44a7-8c31-0e7139084e3e 1 Other Other +89b8e1c3-4fb6-4052-af8f-a89f52727fd1 1 James Other +89b952cd-f6ac-435a-a812-b11e69c65d26 1 Other Other +89b9b571-c0b4-4362-b272-ef1d640aa2ad 1 Other Other +89ba3f85-570e-471a-b71f-cb138998e8de 1 Other Other +89ba5190-39a5-4334-be7f-a586874b8ab4 1 Other Other +89ba5b64-a74b-4412-803f-99330022952d 1 Other Other +89baf48f-0901-4f3d-aa1d-58c451595152 1 Other Other +89bb61ec-31dd-4cda-932e-a8d8413afa3f 1 Other Other +89bbba38-7614-48cd-9b2d-41da35271ff1 1 Other Other +89bbfe80-1930-45cf-8f88-312f154752b0 1 Other Other +89bc2b9c-55c0-4ccd-ac8d-c7d84c8efb0a 1 Other Other +89bc7e93-31f3-45cb-a9f7-c13777f37de2 1 Other Other +89bc918d-7dee-4dbf-9059-d5ccf5c8c076 1 Other Other +89bcc8fc-1f50-49b4-a177-eabc15af55e2 1 Other Other +89bd33b5-e3a3-44e4-aa24-5ac1fd18b241 1 Other Other +89bd5139-8daf-4eff-89e0-0ff9f5f7e1fb 1 Other Other +89bd6d22-ce6f-4967-a6dc-497ba6143b07 1 Other Other +89bd9dd0-4ca5-48ce-a9fd-a3e2182937e7 1 Other Other +89bda507-8a65-420b-a088-a0c9c5d2a24e 1 Other Other +89bdd83b-5e1e-4f80-87ff-b466c862b4a7 1 Other Other +89be0232-99c1-431c-b306-c2bf31137f26 1 Other Other +89be32a4-bc24-4c66-a911-2ab799bb0406 1 Other Other +89be640a-1e5d-4780-9a85-117d1f48c8a6 1 Other Other +89be6e3f-6dfc-4a56-8d4f-972b0eaf536c 1 Other Other +89beb67e-fb3c-477c-bbb3-841661a3e7c3 1 Other Other +89bed856-207e-4b7e-aace-18731917bdbb 1 Other Other +89bef8ef-3f5f-400e-bf3c-f33b54a07e6f 1 Other Other +89bf07aa-224f-4908-9cdb-273d7f752806 1 Other Other +89bfa75e-9ec9-440a-b1aa-f07585cc5eea 1 Other Other +89c002cf-56e0-4c44-b39d-72c8a6860a04 1 Other Other +89c0ab39-fe5a-468b-83dc-b832488a25ef 1 Other Other +89c0e8a0-f12b-498e-b87e-1a48589055bc 1 Other Other +89c0ed22-d484-4b67-8832-89badcee7e4b 1 Other Other +89c10ba1-83fe-4ea3-841f-758ab48bfa90 1 Other Other +89c10f42-030f-4791-b5ce-91b6751962e1 1 Other Other +89c112dd-b13a-41c9-a051-a5b82b0f2f2d 1 Other Other +89c1c1cb-0680-415b-8aa3-4a5082538f0e 1 Other Other +89c1d8f0-bd47-4c93-a395-bde4fc8dcb71 1 Other Other +89c1edb4-6af6-4fca-8af6-a2b068bb0868 1 Other Other +89c203b8-fd30-4dbf-b0d4-683a9f369704 1 Other Other +89c21f0f-95fc-4aa2-bef2-f81931e93e80 1 Other Other +89c22ad1-e0ce-4b9a-9af7-ad0a76528ec6 1 Other Other +89c29237-a9c2-4f99-9d33-031339c5f0bc 1 Other Other +89c2f52f-79eb-4667-a5b2-269ce84e67d1 1 Other Other +89c352d9-daea-47ea-9f82-08e4b17cf68c 1 Other Other +89c39e2d-12eb-46e0-8df5-cba21d0a9669 1 Other Other +89c3c473-2249-4e8f-a651-8ccf2fbaf723 1 Other Other +89c46927-fe5b-4cb4-8f60-68eeaaaed500 1 Other Other +89c49216-b519-4f54-b17a-1d1bae000912 1 Other Other +89c4dc48-fa1b-4502-8bd2-3c5e153933a9 1 Other Other +89c53193-8931-4b27-9142-aaacbc19b65a 1 Other Other +89c5b8c7-0206-4c24-9a93-83dd45bf63ab 1 Other Other +89c5c01d-958b-40de-8e63-48683854995c 1 Other Other +89c5c9e7-7f76-48ac-b414-bd9f0182a71b 1 Other Other +89c5eb33-9694-4029-bd77-a37e95dee510 1 Other Other +89c5ff85-e60a-467f-843b-39f3c48bce79 1 Other Other +89c60010-4155-404b-8c41-7000895145d2 1 Other Other +89c65fb3-3918-4fa3-a80a-b4bda631ec42 1 Other Other +89c6befb-046c-4f12-976b-0c4376796634 1 Other Other +89c6c75f-86ab-470b-851d-d201cfed6df5 1 Other Other +89c72375-8b3d-4f31-a930-bd8b1c75e979 1 Other Other +89c7355a-1956-4ae1-994b-7321c6b42c53 1 Other Other +89c74974-0e03-4be8-94e1-c62c4ae5c12c 1 Other Other +89c74e88-25c6-41d1-9a46-2f5a30d34431 1 Other Other +89c75b66-ec1c-4bb8-b176-b262ef63c496 1 Other Other +89c76de3-2613-47aa-a6b5-b8eaab4cb3b7 1 Other Other +89c78623-e340-4cba-96f2-f41851a07126 1 Other Other +89c788d8-dfdc-4f9e-8ceb-ea4d4fa4b5d6 1 Other Other +89c7b275-84e2-43a5-8269-252849ee054c 1 Other Other +89c7d373-fd8c-458e-a2a1-145fd3d8b400 1 Other Other +89c7dd59-cd7d-478d-98a1-0ffb36143800 1 Other Other +89c816fd-0225-473d-80ab-884be3de0530 1 Other Other +89c88e38-d89b-4041-a605-f991b455efa4 1 Other Other +89c8b7f7-ddd3-47bf-a00f-b443d5d2792d 1 Other Other +89c8c959-7a5f-4f74-adfb-f603f2944883 1 \N Other +89c911e6-50a9-4f08-96de-1cd99c7610d5 1 Other Other +89c91e0a-cbc3-43ef-be44-8bc1c0cdc30a 1 Other Other +89c922f0-4709-48e8-aec4-7cccb3a69e2b 1 Other Other +89c934fe-dba7-42d0-b9c2-b3285654b1dd 1 Other Other +89c94717-8fa8-4f3c-9ffa-0245786ac4a9 1 Other Other +89c97b03-cfe2-4600-b76a-cd111126fe00 1 Other Other +89c9ad7b-42f0-42f8-9b65-1405cb3033f1 1 Other Other +89c9cae9-442a-442a-8055-543b3251bae5 1 Other Other +89ca0db9-5bc9-4bf9-9e27-87bc32f166f8 1 Other Other +89ca111a-7ee7-4e63-84dc-e89354a58a90 1 Other Other +89ca1a53-6a72-44b3-8db3-cc0e65ed2e53 1 Other Other +89ca5f16-b83e-44ae-8c14-79cb0db2ce97 1 \N Other +89ca84e2-65e6-4c60-b49e-6454941a21b2 1 Other Other +89cad9a8-4fa9-4396-972e-2bccb7b9f22a 1 Other Other +89cb373f-c8df-414d-8708-5cc5e03fceea 1 Other Other +89cb43de-3b7d-42ed-b657-7cc570b7adfc 1 Other Other +89cba390-4ff8-4af7-b98f-5e5c7ef87b90 1 Other Other +89cbfc4c-2e43-47e4-bfd8-0e53d864592f 1 Other Other +89cc1ba2-04ee-458f-9fcf-2317fdfa111a 1 Other Other +89cc1d05-6188-48e4-b842-34470cb2a9eb 1 Other Other +89cc54a7-4601-47f3-8693-2a91667f9f6e 1 Other Other +89cc5e48-8f1b-4e47-852b-1410850da2a8 1 Other Other +89cc5fb0-344d-462e-9bae-a0d42cd5301f 1 Other Other +89cc84e8-5f43-4195-b3af-c248c1ebdc34 1 Other Other +89ccab73-33da-4522-b151-fc929391a0c9 1 Other Other +89ccb7fc-b92a-4409-afa6-22b9bbfce190 1 Other Other +89cccf16-8083-48e9-9daa-e2dcfe7b101e 1 Other Other +89cd1432-2295-484e-95f9-f91276279b24 1 Other Other +89cd4b07-e455-45b3-814e-1f175934d728 1 Other Other +89cd6b4a-1bdb-4b02-a175-bb786df7c046 1 Other Other +89cd93f4-84d9-499f-b2e7-cce73b46593e 1 Other Other +89cd98b8-d8cc-4e83-b020-4d5e895135fd 1 Other Other +89cdc748-3ee9-4b84-a675-9bd59bcd27a4 1 Other Other +89cdc7b0-89c2-4934-80b3-f4af98c6cc0f 1 Other Other +89ce7655-2096-486d-9a1d-bda1476eeb4a 1 Other Other +89ceba24-2df8-42de-bf21-5f659900335e 1 Other Other +89cecd30-618e-4a44-9356-5d2e1a2f95dd 1 Other Other +89cedb84-1b04-4436-8c3d-e51aa33efe9f 1 Other Other +89cf28dd-ac92-4f08-bb10-0c9a8639c6a1 1 James Other +89cf7dae-cec1-492f-a6a5-184995b1e114 1 Other Other +89d0144d-fb7d-46a4-8976-1e14f77537a4 1 \N Other +89d04cb5-fedc-4901-b380-2f021bdcbaa7 1 Other Other +89d05418-87eb-4efa-9bb7-3571eb81d4f4 1 James Other +89d07991-308e-43da-a43d-5a2d7c6494ad 1 Other Other +89d07d96-c93c-44d0-9fa6-23243a1ac671 1 Other Other +89d09558-9c6a-4607-8388-13c1dc59ecd5 1 \N Other +89d09c68-9863-4320-ad6c-9975891978af 1 Other Other +89d0d606-02f7-4a0d-82da-5fbd08519b41 1 Other Other +89d1183e-d56e-4182-b7a0-6424bb36875d 1 Other Other +89d1249a-0d20-44fb-abbd-a133463cc6e5 1 Other Other +89d147e1-2f6e-49f0-89e3-d186d10c4389 1 Other Other +89d15fc9-d757-40a5-a1ea-4293941449bc 1 Other Other +89d186c3-98fd-4b5f-837e-cc9413c8623b 1 Other Other +89d22886-afe4-4f5c-95d7-c48077129ab1 1 Other Other +89d2e484-6190-4765-9244-8dd0644d24c4 1 Other Other +89d2fa5a-9ee0-4ffe-94f3-2024dbff7a86 1 Other Other +89d2fdde-99c9-4494-8a79-eb271302af1b 1 \N Other +89d31702-5a42-41f3-9182-5ef661f1b1dc 1 Other Other +89d328ea-8361-48bc-8396-d5926865c68f 1 Other Other +89d369f7-48d2-437b-9704-058b2c347b20 1 Other Other +89d37f8b-1ffb-44c6-9eed-200bb0800650 1 Other Other +89d3a87c-d8bf-42af-90bc-7371737a04a4 1 Other Other +89d456b2-003f-4976-a4c3-7328c8b61eb7 1 Other Other +89d501e4-5577-4419-8c7c-8dd704a8cb3d 1 Other Other +89d51d1f-f77b-443c-9fbc-3e76be98dfb0 1 Other Other +89d562f1-5732-4675-a906-6861625266e2 1 Other Other +89d56774-60d9-4260-8ba0-afa5e22a5233 1 Other Other +89d589c4-b2b6-47f4-aeee-36189ecf3bcc 1 Other Other +89d597a2-6c31-47b9-af6e-2792d21ba788 1 Other Other +89d5c273-8d33-4f31-a15a-0d595d45b22a 1 Other Other +89d5c3e7-4859-4604-9427-7d9b763f55e9 1 Other Other +89d674bf-0a7a-4a61-b9a2-311d6d626056 1 Other Other +89d67fcc-0432-4094-be3a-832641ce4035 1 Other Other +89d6b6e4-d7ea-4f34-8843-c5c6cc7cf1d1 1 Other Other +89d6c57c-8b45-40ac-948c-034aa5f1fab0 1 Other Other +89d6c880-8ee2-41b5-b775-0521ea341e4b 1 Other Other +89d70d19-419f-4c8a-a9d1-011fef9be360 1 Other Other +89d70f6c-5865-4655-97a0-6e20cb171fa1 1 Other Other +89d76ada-e613-4fbe-bd8d-5034c3e04c49 1 \N Other +89d76af8-0042-438e-97ac-9142a1b8b007 1 Other Other +89d786d8-2274-4157-8b70-3bf81f9b66d4 1 Other Other +89d7901f-9237-4316-9ee5-16df9d1eb4a7 1 Other Other +89d83cc2-e809-46e8-9f03-fd822cc1cff6 1 Other Other +89d90b8e-7277-48b0-a57b-ad3c1fce98b7 1 Other Other +89d91d1e-53ad-483d-87d3-f2eaabfe5b6d 1 Other Other +89d93db7-c039-41d7-be9c-9c34a3818ac7 1 Other Other +89d94185-3043-4dcb-9fdd-422dc839e869 1 Other Other +89d952a4-c2e7-413c-abf9-9cbb07190fd4 1 Other Other +89d96589-6973-4a01-8a1f-65ebab5cdabb 1 Other Other +89d99a4e-ea0c-41b1-bb43-28fe56a8ff18 1 Other Other +89d9a667-fc26-4f18-8276-ff6e49db3fe3 1 Other Other +89d9c48b-6249-43ef-b78a-e8213818e0a5 1 Other Other +89d9e8e0-8c97-4774-af2a-e7609ac5e0ce 1 Other Other +89d9ed85-5221-411f-a3ad-7621e2602414 1 Other Other +89da1898-6f31-45e2-ac9c-b22829ce7229 1 Other Other +89da243d-aa52-4afd-ab50-df6f4cd1353a 1 Other Other +89da46f8-2f22-4b81-957d-19cf9ee67cc9 1 Other Other +89da4d9e-f600-499e-81e2-510583ecdc38 1 Other Other +89da4eea-8542-44f3-bc87-5910d754dbaa 1 Other Other +89da68ac-e713-4c8b-ab8a-476a1c761b15 1 Other Other +89da7069-274d-48ee-a5e3-e536a0e840df 1 Other Other +89da7d8c-bf42-4282-992c-246b88bd4c1d 1 Other Other +89da9147-7c86-49e4-9c80-91e6d708b7a9 1 \N Other +89daae83-30f0-4106-a2eb-5fd9c663dd46 1 Other Other +89dae226-8ee2-4adc-94a6-69d973b0ee98 1 Other Other +89daf05e-8e96-410a-bc9e-a4c38aa46259 1 Other Other +89daf99a-e916-403d-94ed-a8d9bd882445 1 Other Other +89db3c46-3438-4f9b-9e81-a189d17227a4 1 Other Other +89dba80a-c529-4fa6-8da8-65abe39a59fd 1 Other Other +89dbae09-f4bb-4014-af76-0a345e7848f0 1 Other Other +89dc2999-66bc-4fb7-b7e1-fc0128f89f5b 1 James Other +89dc6057-d55f-4732-b3e4-ebb6caf9e1c4 1 Other Other +89dcb9a3-e213-4041-ac15-63db8b95f766 1 Other Other +89dcd9d2-59bf-497f-bffc-e6bd0f36ceb0 1 Other Other +89dd49e9-0e01-4a94-8cee-21ad9af0030e 1 Other Other +89dd8f1a-20d2-45b1-89bd-97ee20e68c02 1 Other Other +89ddd6f6-d079-4c03-9152-adcde520edef 1 Other Other +89de1035-ac96-4237-a1b4-2b8f96058a12 1 Other Other +89de1302-b3d7-43ac-8279-05ff6a6112f2 1 Other Other +89de7383-8db4-406a-8fa8-2c963e66c5c0 1 Other Other +89de8342-65f9-45a7-80b9-5c4c3e80bab9 1 Other Other +89dea6e6-aa7f-4817-8f0a-4326a1e181e0 1 Other Other +89df7fe1-6824-4aac-916b-a603f80c3a50 1 Other Other +89dfaefb-dcf5-48ae-966d-97b1d787cb21 1 Other Other +89dfc478-397e-44e8-b73c-65626c8bdb83 1 Other Other +89dfed19-745e-4d75-b941-bc444da7c01e 1 Other Other +89dffd29-8256-4f09-94b8-55cce1b11cc3 1 Other Other +89e081b6-f89a-4d2e-8485-a1c20e116160 1 Other Other +89e092d4-1e2b-4cc6-a290-8409ee5606b6 1 Other Other +89e0a691-9e74-4c5f-bf84-3ff1d4da364e 1 Other Other +89e13215-efe2-4437-892b-51457d6571c8 1 Other Other +89e14447-a679-4834-9d26-4ae995f6e924 1 Other Other +89e159c9-4325-4090-85e0-b7451c42fc6c 1 Other Other +89e19499-11db-46d8-9a81-73f343e8124c 1 Other Other +89e194b8-d8ef-4b5b-805e-cf4e1b25588f 1 Other Other +89e1f6b8-46e2-49bf-b2f9-162bdc93bdd7 1 Other Other +89e2057d-bd79-4095-8eb1-35f077394dc1 1 Other Other +89e211ab-a3ea-44f4-aa65-213b615ad0e7 1 Other Other +89e23fb5-03e4-4e95-a457-c4266773aa1e 1 Other Other +89e26bdd-0763-4738-9bf4-97bbeb6b34c4 1 James Other +89e36e38-0479-4847-8630-6e8af9ecc201 1 \N Other +89e377a7-ba28-4521-863c-85e20f129275 1 Other Other +89e39b12-4391-43cd-bc09-2754b738ff2b 1 Other Other +89e3aca3-996c-40f2-b5f1-e3de66428bf4 1 Other Other +89e41e4a-ef9e-469b-b2db-a7945818228b 1 Other Other +89e42dce-a455-4096-a555-2ac87dba5b62 1 Other Other +89e43633-f63c-4ac6-8e2a-3d66b21e7771 1 Other Other +89e482ff-3bcd-48a7-bee8-87935be717e5 1 Other Other +89e4ab9f-b70f-40e0-8efd-8c12c8fb14af 1 Other Other +89e4abad-2a00-4e40-8e56-557fd5b191eb 1 Other Other +89e4ad9f-57a8-444e-bc0b-c511ef4841e0 1 Other Other +89e4c58f-9f1c-4979-8a5c-ca5f21165660 1 Other Other +89e5089e-c98b-43d8-9d16-b8a204662b4a 1 Other Other +89e522ab-b72c-4423-9efd-940408981017 1 Other Other +89e54af4-8102-4129-bd51-3816fb061eb4 1 Other Other +89e54d9c-cc53-4978-94ef-9f57c5166040 1 Other Other +89e55498-63a1-4f02-b09b-905940ada165 1 Other Other +89e557c0-d3b8-4b06-8ee2-68857abf9a0b 1 Other Other +89e5e43a-8415-4631-9f22-eb481bad5637 1 Other Other +89e5ee9d-4778-4593-8e84-4be84db8e747 1 Other Other +89e5f987-5a55-4a31-a282-1c1b7cf07509 1 Other Other +89e62f56-db4a-430c-ba84-5f6e844a5022 1 Other Other +89e67584-324d-4001-95e2-0b6d59be4d86 1 Other Other +89e6976d-8d27-45e5-96a2-f335f2feb2ce 1 Other Other +89e71fbd-925b-4750-9b9a-e4b99e6c7992 1 Other Other +89e737fc-1a11-4e0a-b3a3-0f103ca44949 1 Other Other +89e73fe8-244a-41f1-aba2-7b6cfe61d74c 1 \N Other +89e756d1-1fd6-4dfb-a5a4-cfc4f2f7569f 1 Other Other +89e764fc-62b1-4f52-84f5-96aeaf6c5d59 1 Other Other +89e7820f-33a0-4225-bc01-f3f94f2073ca 1 Other Other +89e79c70-d374-4e3d-ad70-26de9ed04c37 1 Other Other +89e7c47e-0b1d-4844-a6a4-dbed6ffcb6f9 1 Other Other +89e7d4bf-df76-4c4e-a5ad-68b5b4181039 1 Other Other +89e81d51-bbf7-4115-871e-11e7d44cefca 1 Other Other +89e83c55-906d-43fb-8fae-5d91ad68e80b 1 Other Other +89e85773-4938-4e50-b4b2-4a20102365eb 1 Other Other +89e85b5d-5cfa-471f-899e-28e7655630d9 1 Other Other +89e89fe5-27ff-47fb-ab92-2e95f6aeb961 1 Other Other +89e8a654-85fe-4e76-9d5c-01edca0990c9 1 Other Other +89e8aa2d-26e6-411a-80c8-8dd566d36969 1 Other Other +89e8c73d-ae12-4d57-9c6a-2d38fb71ad51 1 Other Other +89e8c748-929d-4c03-967f-526f049c91c1 1 Other Other +89e90716-1052-4b6b-8edd-546ec2df3c2e 1 Other Other +89e90900-a76b-45ff-9a6a-a54aba826271 1 \N Other +89e90977-a05b-4787-a9f4-46cc6a356afe 1 Other Other +89e915f7-15f7-4f22-8367-b73900897e88 1 Other Other +89e98132-d07e-4d7f-b368-60b772d09eb5 1 Other Other +89e99092-7801-43db-862f-49d6c8fa0813 1 Other Other +89ea11c3-204c-426b-8b47-76e6fa08608c 1 Other Other +89ea1fb3-94f6-47cf-b937-9915e3ee1a8a 1 Other Other +89ea5560-2c86-40b8-b50f-8f34853751ba 1 Other Other +89ea6935-83d0-4e1f-926f-7e914cdb5bed 1 Other Other +89ea932a-36e9-4110-954d-cf16f05f5e2c 1 Other Other +89ea93e5-68e5-4049-9134-2b71f0a5c756 1 Other Other +89eaf42a-159d-4001-a5f0-0679ebd3424f 1 Other Other +89eafa2f-73f2-473e-92c2-737752d09deb 1 Other Other +89eb3828-7acb-4f74-9293-37ac477d581a 1 Other Other +89eb7695-d540-4c67-8636-da22260197be 1 Other Other +89eb7c0c-1ad0-11e8-979e-fa163e8624cc 1 Other Other +89eb7d7a-56b6-45a4-ad8a-8dee5f401d6d 1 Other Other +89eb90a7-c5c2-4c1f-b2f8-2a8ee5734d34 1 Other Other +89ebe57d-68bf-478b-93f1-fce6b700e2fb 1 Other Other +89ebf4b6-2808-4a43-99c9-5e21d572b7d5 1 Other Other +89ec3012-389d-4dcc-96e9-efd6c0953460 1 Other Other +89ec552a-6d45-4026-b700-9cab6ed61eee 1 Other Other +89ec9edc-330b-4269-87e1-ce4a442f6238 1 Other Other +89ecbeeb-48db-4da0-88f5-1e85506b6bc8 1 Other Other +89ecc327-815d-4099-af10-0040b015dd35 1 Other Other +89ecd91f-a940-478c-8c20-df7c0515c1bb 1 Other Other +89ed0266-21ee-46f6-bc65-7b53dfa90d7a 1 Other Other +89ed5ce0-2439-48db-a9fa-911117413e6e 1 Other Other +89ed5cf2-eaae-4338-8748-aa908e8a1bbc 1 Other Other +89ed784f-9574-4d2e-9587-7e41cb765146 1 James Other +89ed7ada-e8e1-4273-880b-c07c51ad3cce 1 Other Other +89edae5e-f81f-42db-8e38-6ea166301c77 1 Other Other +89edbed7-b6e9-4a8e-81f1-04f981625545 1 Other Other +89edd2fa-fbe1-4257-80cf-cae5e4b6ba1d 1 Other Other +89ee329e-f3d5-4760-94e1-29f2782a09ef 1 Other Other +89ee3474-8ab3-4a41-b817-49dd6f6359c2 1 Other Other +89ee3874-b3f8-411b-9092-5eb2d562399c 1 Other Other +89eef68c-d13c-4e8c-a3b0-6d546c16cf5c 1 Other Other +89ef1cde-f2c4-4f2f-8920-23ae5fb6fd24 1 Other Other +89ef894c-a2dd-4682-81a1-c5b75c46bab1 1 Other Other +89efad3c-a2a5-428b-ba74-87808aa79bb3 1 Other Other +89efd253-cc3c-4c6e-bcd6-dbf779ebc4dc 1 Other Other +89f00d63-2c24-42ae-b700-2e6404447966 1 \N Other +89f01fb9-b6bf-4600-8a6d-8f0479fcb2ff 1 James Other +89f0a4bc-8d7e-4128-af87-3dd1cd658471 1 Other Other +89f0b11b-925b-428f-9302-e0ea200f0059 1 Other Other +89f105c8-a939-42d3-b05f-4e29169dba1d 1 Other Other +89f1201a-d520-40f8-a3da-fb5fdd0807b8 1 Other Other +89f2003b-6a3d-478c-b563-1fba1288a8e3 1 Other Other +89f23400-dd7b-4e63-93db-9faf4f61b371 1 Other Other +89f2bcbb-657e-49a5-aba8-266573c7c17f 1 Other Other +89f2d286-ac3f-4ca4-9eab-3c2d7fd17f7b 1 Other Other +89f2dea4-ee83-45bc-91b9-96180253699e 1 Other Other +89f30756-de7f-471c-989f-74796c1e2ecd 1 Other Other +89f30d01-3e5f-4659-8260-7a87e27def79 1 Other Other +89f32c20-a54b-42ed-a8aa-b62c8cea5b1e 1 Other Other +89f32cfa-c41a-46f2-bee0-958bd888741d 1 Other Other +89f3379e-dc47-46c6-8c2f-c387d9427395 1 Other Other +89f36de5-8c4e-4687-88af-a54067e52f2e 1 Other Other +89f3a9ac-dd8f-43f2-b015-25b9a064343a 1 Other Other +89f3e0f0-05a2-4f40-92fd-11fc87f2f6fe 1 Other Other +89f448d8-75ea-493e-819d-1723ed9a8228 1 Other Other +89f4614a-cb32-4795-99af-35f9299d457f 1 Other Other +89f476a5-9b08-4fc3-9fab-8742dcfe0e40 1 Other Other +89f4d7ee-fd85-4826-8ca8-e919fe39954f 1 Other Other +89f4ea69-fbdf-47c8-8160-b0e70551099b 1 Other Other +89f5257a-b329-499e-b9fb-ce015daf07e9 1 Other Other +89f526ea-2601-4d33-bcdf-d9020c2473e7 1 Other Other +89f52eb4-e680-40db-a13a-21a3020d92ad 1 \N Other +89f53a20-abf5-445e-af0d-acd564889cb8 1 Other Other +89f5b6e7-1235-48cc-93ee-28855d575a01 1 James Other +89f5eb55-bbed-4bcb-8c49-66e90c868ba1 1 Other Other +89f61e53-8113-4431-8789-d5e166e21f6a 1 Other Other +89f62e80-2fbb-486c-a215-7b21416f37ed 1 Other Other +89f69261-e373-44f7-ab38-df70b4bef937 1 Other Other +89f6a42f-f148-4369-9025-03a047066a8f 1 Other Other +89f6f9a0-ce8a-4285-8923-a9c567358978 1 Other Other +89f73d70-1628-4ee5-ae8c-8835d277370c 1 Other Other +89f7cc1e-78b1-4aad-b705-88efd59aefbd 1 Other Other +89f7e5ff-08d0-4a8a-b31e-e7785e4bd6d9 1 Other Other +89f80b2f-ae83-4442-8c9d-adb364694fed 1 Other Other +89f816e8-e084-4058-a123-7112cd3ae85f 1 Other Other +89f81ba5-ae66-4b26-8a7f-89f12ddb32fb 1 Other Other +89f84225-0255-4f66-aef4-1a1a14c859cf 1 Other Other +89f85087-2035-4fbb-8e58-24baebc7d8f8 1 Other Other +89f85478-2ba9-4daa-b368-19c454ee377c 1 Other Other +89f8ac6d-ace7-42d3-8065-e4037960bb70 1 Other Other +89f8cc30-552d-4b5e-8d6c-52f2aaf8f346 1 Other Other +89f9148c-4625-459a-a514-163a10be1803 1 Other Other +89f92869-d416-4afd-9b1e-a741b860accf 1 Other Other +89f94d10-9e4d-4990-b4cc-e84faecb7adf 1 Other Other +89f94ec2-d82f-4aef-a90a-faa7de22201e 1 Other Other +89f97e2a-af85-4511-9332-7ed090f0b735 1 Other Other +89f98cdf-cdc1-4cc5-a8af-4728fb5b371f 1 Other Other +89f99edf-95f6-442a-8a2e-b4dd91e89e74 1 Other Other +89f9b3a3-d941-421d-b05f-632e2b6af000 1 Other Other +89f9b596-1133-4038-b757-1b2ac3bbd3a8 1 Other Other +89f9ceef-8391-4ce7-b42b-92f24607a86d 1 Other Other +89fa1d89-892d-47a7-a80d-3caf11272c55 1 James Other +89fa5c32-ff12-497f-b005-f1c4d17959cd 1 Other Other +89fa88a5-cd27-4c8c-acaf-4c03393900d7 1 Other Other +89faa865-e2fb-400b-a573-112883be3361 1 Other Other +89fab824-2129-4dd1-b6ed-012f2d2df6fc 1 Other Other +89fb0e6b-2ded-45e6-bed6-379fa4c34df9 1 Other Other +89fb2e9d-832f-4563-9bfa-ec8d1ec334b9 1 Other Other +89fb7cd0-dc68-4df6-9706-c1f20b291e0e 1 Other Other +89fb9830-63f4-4d06-88ec-c21a96c6733f 1 Other Other +89fb9e71-33f8-49c4-bd88-a65eaddb488f 1 Other Other +89fbbf08-8d30-4238-864b-646e52b03a5b 1 Other Other +89fbebaa-18f1-4387-a368-371b9ccacde4 1 Other Other +89fc2c37-06ff-45ae-b5d8-7ea76be2706a 1 Other Other +89fc4862-e1d3-432b-9373-f307d34d1865 1 Other Other +89fc5a96-207b-4086-91ba-c06cdc6ab4f5 1 \N Other +89fc60ef-f2d9-47eb-bf87-1036adf5b6fa 1 Other Other +89fc71d7-2c59-44e3-86b6-90ed1b5e3611 1 Other Other +89fc8207-ae41-4fa8-9f42-aa3eb930a143 1 Other Other +89fcc52d-8a6a-42c9-afc4-257cb7a4342f 1 Other Other +89fcea40-7d48-4b64-b46c-52f23b53b31d 1 Other Other +89fcec3d-82dc-4524-a14f-55a90760f2ef 1 Other Other +89fcf885-a149-4453-b429-a83b9fed86ae 1 Other Other +89fd4323-f504-4809-bfcb-35f2523ca1c7 1 Other Other +89fd46c6-5ed3-48ca-a3bf-1900cbedf64b 1 Other Other +89fd4e88-ca9e-4d0e-87f8-73e3a822bb11 1 Other Other +89fd71f0-7540-4f26-9a53-602aee1e5faf 1 Other Other +89fd999a-e6c8-48b3-b41f-5e8c721a6865 1 Other Other +89fdacba-acd7-47a1-a8ea-04032e4654aa 1 James Other +89fdbaa0-6d0c-4808-bedb-c456b7c4ee4b 1 Other Other +89fdc6d5-7fc0-4643-b5bb-742e407ab257 1 Other Other +89fdcc29-c9fe-482c-93fd-7b57630a8064 1 Other Other +89fe0e9b-28a9-4e13-bca9-d890c71591f4 1 Other Other +89fe3d32-94a3-455f-a364-d31331161705 1 Other Other +89fe431e-a096-4755-849a-473a55bf1260 1 Other Other +89fe7889-69d8-49de-8453-db45d0aa88e4 1 Other Other +89fe8672-3655-48c4-a1db-fe3b2b2018d1 1 Other Other +89fea0ff-302e-443f-a6f5-4825acc4fbbd 1 Other Other +89febe01-5408-4cc5-8fa0-10758226015f 1 Other Other +89fec4f4-f30b-4628-a2bd-c64db1c02a48 1 Other Other +89ff07f0-dfcc-4a41-954c-188835bcbefa 1 \N Other +89ff68fd-147f-42c4-9de3-c997015f5b80 1 Other Other +8a000566-38f7-4b2d-be82-912f805fbfb0 1 \N Other +8a002d45-9e93-42a3-b690-7b23b977fe21 1 Other Other +8a004671-7f2b-43ad-bcbc-e43eed380267 1 Other Other +8a0046f5-5424-4902-8de3-5c98edd3c907 1 Other Other +8a007c35-ed99-4c91-9b9a-d82cef2e4569 1 Other Other +8a00f074-d71c-40b8-9a08-8f6da2577743 1 Other Other +8a0113d2-62ab-43d1-bfa9-c6ca78c11ea0 1 Other Other +8a013ccd-3570-4499-9e67-a24dff0633c3 1 James Other +8a014c94-22fe-415e-916c-086b537c0976 1 Other Other +8a01785f-77c0-4849-8b56-e7c010199d7e 1 Other Other +8a01bbbb-349c-4d80-99f2-a50f1692901a 1 Other Other +8a01d6d1-5693-447e-97e9-11186f9c53c3 1 Other Other +8a021f81-a8a6-4ead-9370-a6dd475877ea 1 Other Other +8a0231a6-803e-4730-a615-fd22eefe98e1 1 Other Other +8a025a18-8f78-4dd0-a7cc-2ca4529553c2 1 \N Other +8a0264f5-45f1-43ec-9a8d-61a0ea9c20d2 1 Other Other +8a028643-4324-4fb4-b66e-6a7f5b358785 1 Other Other +8a02adbf-ea64-4b9d-958f-f65e5d55b505 1 Other Other +8a02e72a-19cb-4742-883f-dd84dbc907eb 1 Other Other +8a03360e-eae1-400e-bada-40006cf01234 1 Other Other +8a036299-b671-42dd-8ac8-4fb0056301c9 1 Other Other +8a03f826-bb9d-46c0-8933-992ae98c1b0b 1 Other Other +8a03f902-1d19-4476-aa3a-9c33637a35ab 1 Other Other +8a043028-f2be-467a-bd7b-78531addc97d 1 Other Other +8a043fc9-1590-4372-8df2-a0ee58380233 1 Other Other +8a045b8f-cfbf-484e-a671-aa07afe1a2ab 1 Other Other +8a047e1f-18ee-47a2-abcc-87344b466732 1 Other Other +8a04b43d-4b52-4be8-b67e-803b4004aa2a 1 Other Other +8a04e071-05bf-4cff-8e9e-23265de7d02c 1 Other Other +8a04e7c1-1836-40e1-9773-2e9708c1970e 1 Other Other +8a05193c-be5f-458f-bff9-102e874317ca 1 Other Other +8a051bd1-aa7a-4be6-ae1e-c5990b4e7f69 1 Other Other +8a052542-8551-4ac8-85a4-1d6a084cc895 1 Other Other +8a059f99-bb98-48f4-9686-c337f3416e6f 1 Other Other +8a061f3a-29ff-48fd-8e83-544fbbafa21c 1 Other Other +8a06551f-2937-4049-8da1-73dc5c741470 1 Other Other +8a06a2b2-ac31-49e8-9752-c32d6ce9108c 1 Other Other +8a06be1f-e344-40f9-a617-ee15ac9b3897 1 Other Other +8a06c7d3-9831-4859-99d8-a0cf44308cdf 1 Other Other +8a06f823-820f-40b5-b8e1-40ab0b6d9d2e 1 Other Other +8a070acb-0898-407d-a45f-19a9d00cc265 1 Other Other +8a0717c5-cebf-4966-a1f8-77ec727fe23a 1 Other Other +8a07288e-b62a-4cab-b6ec-dcb54cb7a249 1 Other Other +8a0747a9-79bf-4c86-b907-30fa80c19fd5 1 Other Other +8a076031-c8de-4b50-9745-56ac04f1a5cb 1 Other Other +8a078b94-ca2a-48c0-a515-55969d5ee86a 1 Other Other +8a07ca12-2751-43ff-9144-01fab498c4c4 1 Other Other +8a07d4a2-5d89-46a7-b156-879f92f70e4d 1 Other Other +8a07e836-35de-425b-ba12-785a1cd23941 1 Other Other +8a089495-7191-4b8a-9234-1d87b7a2d8cd 1 Other Other +8a08e7c0-a544-4fa8-b98d-fe73f65352d5 1 Other Other +8a091cdb-1417-452d-8a7d-74de135ea7f2 1 Other Other +8a0983d4-c7b7-4cf2-8900-b3094e7d6c9b 1 Other Other +8a0995c8-dc38-4fe3-adec-ad6fb991e1a4 1 Other Other +8a09a0ac-38f5-40cb-b670-2b3997ce210c 1 Other Other +8a09edef-0bb1-4843-8459-3d321817493c 1 Other Other +8a0a10ec-ff78-4ca4-b9f9-f0b808e52a8c 1 Other Other +8a0a8b2c-56b4-4a3a-a3f1-d904c3c72380 1 Other Other +8a0a9fc6-acfe-4452-8185-0601954c92e7 1 Other Other +8a0abec0-57c5-44cd-8957-9ff1cb231bab 1 Other Other +8a0af0c1-d2a7-4f69-b989-c0e0c37b8509 1 Other Other +8a0b326a-c048-4453-ac1f-c7f3b4f822f1 1 Other Other +8a0b5140-d549-4a1c-8633-d9b6a915a605 1 Other Other +8a0b67a8-7e2e-4806-a72c-4bbe8eee4313 1 Other Other +8a0b7045-7950-4685-a220-b9679b75b1fb 1 Other Other +8a0b8dc3-6362-448f-8999-2e1ea8fd0c7b 1 Other Other +8a0bce1e-fb03-4b0e-9e16-8dc3af51ad11 1 Other Other +8a0bd7ab-21bf-48b5-9a36-02a485f635ce 1 Other Other +8a0c0a6d-2a04-4208-87ad-10500f2cdad6 1 Other Other +8a0c286b-9911-40f9-bd36-dafe6ed999c9 1 Other Other +8a0c312b-d06d-4e9b-9243-2457284637ea 1 Other Other +8a0cc115-85d5-47c5-843e-90234a769f08 1 \N Other +8a0cc2b3-b044-4105-af1c-c95c54d8496f 1 Other Other +8a0d2a69-36ca-4c71-aa3d-fa8d308fcc31 1 Other Other +8a0d3811-97bb-4497-9473-6e8d6216d934 1 Other Other +8a0daca1-f3d7-4968-a41b-be82a810dcc6 1 \N Other +8a0df7e1-9b1b-4fdd-b7a4-4cd04b280d9d 1 Other Other +8a0df7e9-ee8b-462e-8186-7d031e0d7f5b 1 Other Other +8a0e74cf-ccfe-4d4c-96fa-412bda6a9c52 1 Other Other +8a0eaca6-2600-4a83-a583-f81a7ce74a58 1 Other Other +8a0ecba6-b638-4923-8e31-c7256ee2685d 1 Other Other +8a0f0885-034e-4988-94d3-59e5b1a4d355 1 Other Other +8a0f1e59-8968-43c2-9c6c-1b40b0b2fc76 1 Other Other +8a0f5367-bb3b-40fc-ac7e-d525189add0a 1 Other Other +8a0f8bf9-382c-4081-bbed-0e89412ed86c 1 Other Other +8a0fcf6b-246c-451f-931d-640a4b07e769 1 Other Other +8a0fe1e2-c8b5-4b62-883c-294cb96090c4 1 Other Other +8a103df1-37f0-4910-9596-9078eeb56271 1 Other Other +8a103fe1-d6c5-405e-a550-8833403b0d32 1 Other Other +8a105119-868f-4473-a500-bd420de9f78a 1 Other Other +8a112e76-c176-41e0-9630-42b61fd65274 1 Other Other +8a11341b-dd86-4ae4-a177-ac7496ea045d 1 Other Other +8a1134f8-2f81-4ed8-b26b-a65c21718bf3 1 Other Other +8a114728-10e3-464b-bbf7-805f8d030796 1 Other Other +8a11517b-0467-4922-ae20-7e0e6b35980e 1 James Other +8a115baf-65ef-46e4-b787-c5ad09016107 1 Other Other +8a115f0e-5330-4754-bd56-17f3265303ce 1 Other Other +8a117843-f7ba-45ea-89c3-72719470b1f2 1 Other Other +8a117f5c-9541-41af-a54e-415452e495be 1 Other Other +8a11b268-7dda-4203-baf6-be39be6ce6de 1 Other Other +8a123142-34d1-4899-a44d-f4b14ce1a479 1 Other Other +8a123847-4ba7-44da-bca7-519d53f8651f 1 Other Other +8a1248f9-d436-4d99-b536-cc61403e89e7 1 Other Other +8a1271c7-220c-43de-bd6f-505dc2aa40bc 1 Other Other +8a129408-fe96-4471-9f17-80f3cc2e024e 1 Other Other +8a12b03e-ad35-4b25-9b2d-1c6fc5f4f056 1 Other Other +8a12b16a-4b40-4e61-9ad2-36affb67699f 1 Other Other +8a12f6fd-c3f0-4389-9046-6e1bc4f863e2 1 Other Other +8a130ab0-efd4-4c11-b738-fda9af2c8627 1 Other Other +8a131968-42a3-44d8-972d-626a9e29cc86 1 Other Other +8a13781a-d7c9-468b-bf9c-8ac4ffe59a2b 1 Other Other +8a13cd36-452c-4e10-ae5b-7c3ccb79d8e7 1 Other Other +8a13dc17-bf6c-42e1-9fdf-ee867eead0af 1 Other Other +8a13f057-f59e-4a12-82a7-2e21f2e7c733 1 James Other +8a13f091-0890-4ed8-a9ee-e3c0db4d285e 1 Other Other +8a149f7b-a847-483d-adaf-22d0b34335f4 1 Other Other +8a14d184-8c78-4944-92b6-33f88761509b 1 Other Other +8a153dfb-c9cc-47f8-b394-2433de1946f1 1 Other Other +8a157386-f4b1-40d1-aa54-368441dc5a88 1 Other Other +8a15a616-a3c4-4aa5-adb3-1810547ae026 1 Other Other +8a15c648-1cf1-4e35-b326-668cdd17526c 1 \N Other +8a160839-b919-40f5-92a0-f9f1523b5eaa 1 Other Other +8a16105f-c2cd-4722-b9d9-b379b7960413 1 Other Other +8a163bac-98f0-486a-b5b5-4d2b037bfaae 1 Other Other +8a16484f-d1d7-4e52-9a4c-04c3d6d13507 1 Other Other +8a165ce5-fffa-406a-9c36-3768d1b100fc 1 Other Other +8a167b6c-d732-4279-8185-ff0eac92e912 1 \N Other +8a16808d-249e-4621-975b-eec5869e490f 1 Other Other +8a16f526-2aa2-4fd9-9e57-40da8df47d4f 1 Other Other +8a16f84c-ec70-499f-ad7f-3c1ddbd0db80 1 Other Other +8a170911-3f69-4a31-abca-ee1df1ba9862 1 Other Other +8a171dee-1a6b-4e91-8e09-6a078b025f67 1 Other Other +8a173ec0-6590-456a-b2a8-4e04943db10b 1 Other Other +8a176576-5a80-444e-81b8-836ea54f10a3 1 Other Other +8a1794f5-a55a-40fa-8afc-2bf3a129582f 1 Other Other +8a17cddf-96cf-490a-adbf-c016e0da475c 1 Other Other +8a183956-bc9a-4d4b-9339-8eb20b5eea9b 1 Other Other +8a187e43-94b8-4cd6-bd38-8b9ffacf8def 1 Other Other +8a188e1f-ca95-4cfe-955e-1db250ed1010 1 Other Other +8a18cf67-6874-48af-95c9-48c5e587d928 1 James Other +8a19149c-2064-4c9b-a851-7b4a807a93de 1 Other Other +8a192e99-f4f8-4a78-a8a3-871856361ee3 1 \N Other +8a1996ff-876a-4c68-9bbd-035e20b1c722 1 Other Other +8a19d187-111c-4a49-8868-cf094ad78aae 1 Other Other +8a19d3ca-59b6-40cd-b590-2028f0ba4848 1 Other Other +8a19fd7b-e4c3-4ba6-b7dc-02a9d977372d 1 Other Other +8a1a6c3d-f239-4cfd-8bc1-558221f4c632 1 Other Other +8a1a993a-38f2-4a49-847c-7eb821d94ce8 1 Other Other +8a1aa9e6-c3fb-49a7-9641-aad18cb7993c 1 \N Other +8a1aaa19-b6e4-4251-b98f-e0d446d5de15 1 Other Other +8a1ac9d4-6d58-453c-8ffa-24b249ffc5d8 1 Other Other +8a1af01a-b6e6-4bfd-93a2-05f789be47b6 1 Other Other +8a1b319c-506c-437a-a990-7f211c00c7cf 1 Other Other +8a1b6aab-27b4-4a9c-a5e3-9faddd0fc7bf 1 Other Other +8a1c3517-1b61-47f4-8a14-33d6e736db8d 1 Other Other +8a1c4c71-154b-4600-a98e-9cf621a1fd2d 1 Other Other +8a1c4f58-886a-401c-84d6-e02081276329 1 Other Other +8a1c7cfc-ef12-472f-82a4-0419d8476149 1 Other Other +8a1cd381-8812-4fa6-b3e0-e85cb7646047 1 Other Other +8a1d50ba-0296-4050-b29d-8c8fe70d3070 1 Other Other +8a1d5d32-7469-41f0-a41d-6bcdcb31a0b6 1 Other Other +8a1e3adf-c829-49f0-b4ec-ccdf1a15f843 1 Other Other +8a1e4843-67a8-4b4e-aebf-064e4120e294 1 Other Other +8a1e8961-74f3-4bde-9d8f-56a5cf5c2343 1 Other Other +8a1ea2f4-83cc-4e11-9258-4c91df40bf59 1 \N Other +8a1ea83a-51cb-48a8-9ff9-4b13db7bc69f 1 Other Other +8a1f0ac8-492c-4187-8133-95a4c981f411 1 Other Other +8a1f35b7-3008-4885-b7b9-6e404fede3c9 1 Other Other +8a1f668e-95bd-4a99-ac18-24fe9110508a 1 Other Other +8a1fa7c8-bbc8-46b8-b10e-030048f954b2 1 Other Other +8a1fc917-6207-42f6-afb2-473b2d72b465 1 Other Other +8a201b97-a320-4c04-89cc-b93f87491177 1 Other Other +8a2021e5-7f53-462e-be35-5cac60e10826 1 Other Other +8a20553b-ef92-42e7-bf8f-4877d42bb81a 1 Other Other +8a20668c-3e03-4a4a-8df4-82ab3945e62d 1 Other Other +8a20e1c4-e85d-497e-8e4d-5b1ff4036c1b 1 Other Other +8a2124c8-b25a-4fc2-bc3e-ca8ae78f4f9c 1 Other Other +8a2183dd-2a85-42ab-8601-039f7c371986 1 Other Other +8a2196de-4510-442e-9669-ad07fe665b36 1 Other Other +8a21b04e-cb63-41e1-959c-008325ccb914 1 Other Other +8a21c374-5ff0-447a-845c-d9cb91ad72f4 1 Other Other +8a21e0e7-8c24-47fa-b90c-cf1f164751b5 1 Other Other +8a22212a-08d5-4c03-bd22-86441f622f24 1 Other Other +8a222344-39bd-4def-b031-6838d001fcce 1 Other Other +8a226bd1-9cfc-4ea6-8ca8-1519e6a6d039 1 James Other +8a227325-ea67-46ab-b50d-187c529fa49f 1 Other Other +8a227de8-723f-4cbc-a214-932e92260118 1 Other Other +8a22da6e-0b88-11e8-a93d-fa163e8624cc 1 \N Other +8a23e64a-f721-49c7-9524-ed147885e036 1 Other Other +8a242ac1-eec4-4453-9e39-634be4e6383b 1 Other Other +8a243ef0-6694-43db-b74e-ef48151215e5 1 Other Other +8a24430d-1d81-4b21-95bf-25f18cb956a8 1 Other Other +8a244dd2-049f-4bcb-b233-05f38f04b650 1 Other Other +8a244f12-7785-45a8-bf9a-045f5e61cd58 1 Other Other +8a24509e-bb73-4a89-a021-23ac08a127bb 1 Other Other +8a247791-1ec3-435b-aba8-cfbb091f2661 1 Other Other +8a247f55-f92d-47ad-bf5a-c1ffce54583d 1 Other Other +8a24cf6f-87db-43bc-b82d-c14b464d35ef 1 Other Other +8a24faa0-61a0-4a49-870e-8d5c61e631db 1 Other Other +8a2518f8-c5ff-4207-a507-84f3d1c16034 1 Other Other +8a25f82f-e4ed-44c6-a9da-18d4e74ba50a 1 Other Other +8a2622b2-3bf1-4d0a-a0ae-7c99b34b4647 1 Other Other +8a26345a-9cfe-4563-bdfe-debcd0dd69a7 1 Other Other +8a26398f-a4e6-4768-853f-08f4b7bc95a5 1 Other Other +8a26901d-b36c-4c08-9cbb-882e8d36ee67 1 Other Other +8a269254-6476-41e7-b861-fb98f8ec6dfe 1 Other Other +8a269f73-6635-4f71-9a2e-2959f842a0c0 1 Other Other +8a26a7c8-f3bf-4491-b720-104c76e21094 1 Other Other +8a26d44f-4c9a-4017-9bd9-c030f6f590ca 1 Other Other +8a26de5c-8c57-4767-920c-40d7a146eb40 1 \N Other +8a270eff-3b18-4ee1-b0c8-2c1b37c348d7 1 Other Other +8a277193-8100-4191-a7c6-3b24ebc54d86 1 Other Other +8a277852-2a7c-4271-872e-36984b30d00d 1 Other Other +8a278d47-034c-4479-9cc0-360ddb4f3850 1 Other Other +8a278f07-1601-4198-b8f0-00202f510224 1 Other Other +8a27f87c-48ec-40df-8a16-91c8e85fcba1 1 Other Other +8a27fbfd-c0ad-49c1-935a-51345800db5b 1 Other Other +8a285d35-c674-48e3-803c-8922b4991406 1 Other Other +8a2869d0-f7c8-457e-aa68-26e9be1b1893 1 Other Other +8a293624-5467-44f9-98db-612316b9e4c7 1 Other Other +8a294c9f-6c09-4378-9598-290302cd6d44 1 Other Other +8a296914-b6a3-4fac-b285-473f73b14e38 1 Other Other +8a29b0ab-dfbe-4ad2-bb05-90f773af28e4 1 Other Other +8a29b7d4-24bf-4f35-896f-35a558615166 1 Other Other +8a29fad0-18dc-4a1a-aaed-35a0409701aa 1 Other Other +8a2a1f10-087e-4719-911a-b80e76138dec 1 Other Other +8a2a1fff-c5aa-48f8-a287-eb62df810fe7 1 Other Other +8a2a27b6-8040-427e-9b52-594f256f922c 1 Other Other +8a2a39d3-8135-4fa7-b928-7fdd66a2eca7 1 \N Other +8a2ae580-716c-445b-9888-fd852dbf5a57 1 Other Other +8a2b3763-eecc-4998-a5fd-c8d2cb192756 1 Other Other +8a2bf77b-cb9e-4128-846c-c4530304a0f0 1 Other Other +8a2c0a91-a7f0-4efe-9e0e-c72eeebdc1dd 1 Other Other +8a2c21a2-8bef-441b-9ea2-5eb5668db8e0 1 Other Other +8a2c3884-d837-4d47-9c51-894724587415 1 Other Other +8a2c3b09-7e84-469f-bb0b-6f061beb75bc 1 Other Other +8a2c677c-7629-4f3b-8308-4fb6590d9bab 1 Other Other +8a2c8d72-8c04-4af6-b92b-c39f6844a646 1 \N Other +8a2cb055-093c-4695-9eb9-902834d33a2a 1 Other Other +8a2cd005-c39a-452d-8a96-b86d7954e334 1 Other Other +8a2ce10d-ca2b-4a4b-af82-3ae3472b7d36 1 Other Other +8a2cef22-777d-487d-8c8f-ec8d291c90c6 1 Other Other +8a2d15a0-4919-4fe2-9d6b-d44b1abd172c 1 Other Other +8a2d44f8-36a6-44c6-8ff0-95d84e3e0283 1 Other Other +8a2d588c-8f56-4b9d-a113-2a65ca14e49a 1 Other Other +8a2d5fe4-57ef-416f-be70-320577480852 1 Other Other +8a2da743-252f-4f17-8edb-d392eed3aa18 1 Other Other +8a2e06c1-5c81-48c6-a6b1-f986f33b9b21 1 Other Other +8a2e0aef-6739-499a-8de5-02d1ca556e1e 1 Other Other +8a2e2f22-80d6-4a64-a772-8079e7c6aeee 1 Other Other +8a2e4652-bb9e-4468-b3bd-5bf60a9c15c8 1 Other Other +8a2e9372-3ab3-4df3-8a51-252ff168286b 1 Other Other +8a2ea2b4-0119-42f0-ab97-2b5c1c7c1394 1 Other Other +8a2ea8c2-24f5-469e-990b-8f51b55d2531 1 Other Other +8a2edc09-e230-4ffb-b7d6-2be4dcbb0f1d 1 \N Other +8a2efec9-c398-41c4-ad59-04118ac546ac 1 Other Other +8a2f2c1e-052d-4a55-8407-1b29053fe16b 1 Other Other +8a2f3619-f8b8-474e-b080-f2f39c5ffa9e 1 Other Other +8a2f6a74-627d-4ab6-baf4-d8612b9c1351 1 Other Other +8a2f88fb-d222-4a65-8d10-33587d3f5551 1 Other Other +8a2f904a-9538-11e7-8bb7-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +8a2fa7be-c27f-4789-9a0b-22dda6bbc965 1 Other Other +8a2ff733-8b41-4587-b968-97e81a792789 1 Other Other +8a2ffe1e-902b-494c-9357-e8cc00508394 1 Other Other +8a3003d6-2f1d-4d97-8a77-d75829bc42b0 1 Other Other +8a302e2f-c289-41c5-b3d0-1c04d32f8fe1 1 Other Other +8a305fff-4418-45cb-bb8f-7083b0b347cc 1 Other Other +8a3063e9-0c8c-43ba-ae51-90c5472db591 1 Other Other +8a3087ef-50a0-4c15-bcbf-a0ba1e51e7a0 1 Other Other +8a308afb-1efb-43e6-8171-7937312039a2 1 Other Other +8a308da6-7934-4ee6-ae96-177b5712b7af 1 Other Other +8a308dd7-1198-4677-b3e6-0e6b38f1e920 1 Other Other +8a30905b-840d-403b-b624-b2d94cff6972 1 Other Other +8a309612-8702-4bbd-88da-c169c02e2eba 1 Other Other +8a30a550-dc1f-4e0b-b254-d65097f5a91d 1 Other Other +8a30c2e1-f0bb-4d8b-8cca-934d8d537a52 1 Other Other +8a30fa59-c1e2-4b80-89c4-997434bafc7c 1 Other Other +8a31067c-d425-4b4e-8ce7-f27a065f1a99 1 Other Other +8a31476f-ec90-40bf-8e16-8e6d1c4c08e8 1 Other Other +8a316054-f351-4eaf-b6d4-14d5903accaa 1 James Other +8a321d02-db31-4fde-b13c-85fce5966de8 1 Other Other +8a323b4c-e85a-4ccd-a695-bd35ca311a3f 1 Other Other +8a325c5b-0bc8-4b9c-954c-5189618adec8 1 Other Other +8a328621-e855-4c6e-a877-7937b3d80b05 1 Other Other +8a32aece-0533-46c6-8849-6640ae25629a 1 Other Other +8a32bf3c-88d6-49e2-b35f-19f89ca0c450 1 Other Other +8a32f2ec-a99b-412c-915a-4bf45c8eb892 1 Other Other +8a330a25-2d11-42b0-8003-9f8793ab4d4b 1 Other Other +8a331f8e-ef93-4b26-a848-83e105f3d1d8 1 Other Other +8a332fe8-2083-4668-95ff-0b1e4e6593d4 1 Other Other +8a334afb-b9b9-43e9-8bd3-75119b752547 1 Other Other +8a3363a2-4ebe-4e43-bf5d-885fa451a4df 1 Other Other +8a342a4d-49c8-449b-89d8-92f71561db4c 1 Other Other +8a34625b-77a1-491e-9940-890657069703 1 Other Other +8a349c19-0837-4984-b561-70e00c28457e 1 Other Other +8a34ade0-d0f1-48aa-bfff-2a38993b0176 1 Other Other +8a34af21-672a-4734-a71c-dc31b35c0b20 1 Other Other +8a34f2c6-9221-4b82-91f2-d1d84dabcda3 1 Other Other +8a34f50f-0b76-4047-816f-466c22754efd 1 Other Other +8a34f7e8-4ac8-4a2e-8d0d-d588efd0b474 1 Other Other +8a355514-38cb-4c43-8e66-e8a0ceb34d39 1 Other Other +8a356eab-acd2-4ed3-b0d3-8f9c863673e7 1 Other Other +8a357bd8-e39c-49e7-8515-3516e899faeb 1 Other Other +8a35d4f8-e546-4e99-a78b-cda428641ab1 1 Other Other +8a35ecf9-5f0b-4a4c-bf7b-b13663b19cd6 1 Other Other +8a35f5cf-3a68-41ef-aac7-425995fe1a4a 1 Other Other +8a35ffa3-cbb6-4de3-86ef-3ee7163e9acd 1 Other Other +8a363c43-2349-4e71-afc4-b7116d7cb133 1 Other Other +8a366ed3-d9c6-42b4-aa4f-d406ab30cc04 1 Other Other +8a3677ee-8150-46de-abc3-766eaa8c6379 1 Other Other +8a36a557-2232-4c4e-853b-7d9e71b99f40 1 Other Other +8a36bad1-0c86-4c08-978b-711e2b73827c 1 \N Other +8a37187c-f2ff-4616-aaea-225689f9916a 1 Other Other +8a3728a9-2c6b-4216-b785-c417fa598dc4 1 Other Other +8a372a23-c51e-43fd-b4d0-ba38c4694b11 1 Other Other +8a376cb1-fec7-4258-95b6-7785d6426b63 1 \N Other +8a3778dd-1384-42cb-b40d-cca99d0c95a1 1 Other Other +8a378d47-8570-45f5-9f9d-b52d687ddb19 1 Other Other +8a379480-7f59-48e7-af72-e72de1402d2e 1 Other Other +8a3794d1-9869-40f5-af43-2b3299f6fbfd 1 Other Other +8a37a11a-0452-4c2a-bb3f-fa2a8a1c7d86 1 Other Other +8a3802c1-724b-467d-8b9a-65c2439f195e 1 Other Other +8a386e1f-7860-42e7-8938-c0f208a0d4ee 1 Other Other +8a3870cf-4d9e-49fc-9086-e73f3f30ce3f 1 Other Other +8a387a79-ee4c-4f3c-83ba-fa76c018ef4e 1 Other Other +8a388942-00b6-45a2-b392-226d9a64c17f 1 Other Other +8a38e5af-5070-487f-8c90-a8bd0d8799fd 1 Other Other +8a38e5e1-4e72-42ce-89f7-63e55b473ad9 1 Other Other +8a395415-2adf-473b-aaca-c9fe7a22074e 1 Other Other +8a3965fd-e6f7-44cb-9c3a-7ca363349483 1 Other Other +8a39e4e6-de5b-49c1-917c-c7f7081ccf2b 1 Other Other +8a39ed87-732a-48b8-b00a-deae716c1702 1 Other Other +8a39ee1d-31b0-4e49-b76d-af8ae3dbae60 1 Other Other +8a39f1be-36e0-46c0-a316-17d6c251fd3c 1 Other Other +8a39f827-d431-4cca-b8f5-8070ee413b66 1 Other Other +8a3a0352-ef93-4481-8c08-042d7ba7a9cc 1 Other Other +8a3a066d-8465-414b-818e-37973cc9cf03 1 Other Other +8a3a1095-685c-43ff-8b05-81765aa7733e 1 Other Other +8a3b054b-9a56-45e1-8751-e6c602941b07 1 Other Other +8a3b0d5d-7a32-497f-a8b1-2d992036dad9 1 James Other +8a3b56b4-c64d-40fd-a775-4134bf13c338 1 Other Other +8a3bc806-27a1-4205-b354-dd4287b55e13 1 Other Other +8a3bcaa5-8118-4bc0-a74c-66dc7dc10a51 1 Other Other +8a3bd6cf-516a-442c-a252-71fafba9b3b5 1 Other Other +8a3bdd89-af8e-4109-acac-c7d89a63e90f 1 Other Other +8a3c6374-9e73-4840-9b8a-32a673f144e5 1 Other Other +8a3c799c-cb05-4c48-9a12-d7a63ac125bf 1 Other Other +8a3d041d-a1eb-413b-9664-b974cb5b7420 1 Other Other +8a3d19be-e591-479d-9ba3-dfce11ff260c 1 Other Other +8a3d3a3c-76b2-48e7-9968-42d0bdf2a94b 1 Other Other +8a3d5b63-b3ae-4e6c-b660-5d16145e1a12 1 Other Other +8a3d61ac-0a14-4cbb-95dd-ab270f7d8479 1 Other Other +8a3d6a47-d822-4aca-a0c9-6753f7483f6f 1 Other Other +8a3dbc11-cd22-44de-aaee-31db90cffe90 1 \N Other +8a3e360c-8ff9-4716-bb27-01cd9ae97768 1 Other Other +8a3e6549-a3e3-4226-a35a-21c74e5d92ae 1 Other Other +8a3eabfa-c05e-48a7-8819-ff6118825700 1 Other Other +8a3ec460-6f58-4193-a6e2-81c363c070f5 1 Other Other +8a3f014f-2e54-4324-9912-5b796aa5d1a4 1 Other Other +8a3f3ebd-d7df-4680-8745-e003fc88b534 1 Other Other +8a3f5525-4426-46ab-ba48-b6191c507e78 1 Other Other +8a3f6f10-8928-4e37-ad28-ce3aa1c120b8 1 Other Other +8a3ff94d-bfe3-4cd8-af11-46e80269c8cd 1 Other Other +8a401fe3-b8bf-4915-a499-6d94f5eb841d 1 Other Other +8a4049dd-4bf8-4201-bbf3-3f2e0a6965c1 1 Other Other +8a4059db-856c-4bd3-ac3a-fe38c6a9632f 1 Other Other +8a406e4e-07a8-43cf-b3d4-13c9f8dcfd1e 1 Other Other +8a4071db-3c11-4818-83c5-145e206a0082 1 \N Other +8a4074e3-6727-401e-b3a4-e59e0d60ac14 1 Other Other +8a40e466-b1b6-4559-884e-fff30d948558 1 Other Other +8a41093e-346a-40f8-b57d-c1002eb9f3ed 1 Other Other +8a416940-f0de-47ec-a4d8-f483d507a86f 1 Other Other +8a419bf1-9547-45b9-991b-cb6f22edaaca 1 Other Other +8a419ca7-c5a1-4b24-8fd5-1b6bff021ed1 1 Other Other +8a420098-00f8-400d-be07-7b129b0d35d8 1 Other Other +8a424232-b235-4a6d-835c-2b9817874b25 1 Other Other +8a426762-652a-474f-810d-f5960b4ade99 1 Other Other +8a42abc2-1081-446c-a305-c1626bdf7156 1 Other Other +8a42bb59-e3f7-4da6-bb1d-08881665b7d0 1 Other Other +8a42c7a3-5f2c-4473-9668-d3a3b9b97c31 1 Other Other +8a4306b4-652e-4215-8c4c-27690e4c9962 1 Other Other +8a434121-acb7-47bb-a80f-8729853f21b7 1 Other Other +8a434474-f43e-47ea-8609-c7d9910b7740 1 Other Other +8a436259-e473-47a8-9654-496007453bbf 1 Other Other +8a438906-10e3-44a2-af9e-81efa5e1abdf 1 Other Other +8a43ae6c-8f92-4ed3-bee9-eee53f448607 1 Other Other +8a43b424-7117-4c09-b1fb-b525928af66d 1 Other Other +8a43b50d-74c5-48d6-987e-0d46d81e255e 1 Other Other +8a43e506-95a0-4df1-9af5-23fb2a645274 1 Other Other +8a441ddd-41c7-45c1-bf12-cb79f6c81f73 1 Other Other +8a4460ad-86e3-478d-83c7-a1be8c7fdbd8 1 Other Other +8a4464e2-a457-422e-9a77-59b371589ed5 1 Other Other +8a44bc4a-af17-456d-98fd-a35816521179 1 Other Other +8a44c5bc-c71c-4e49-a2bf-28af70120bcf 1 Other Other +8a44de61-de1d-42c6-9064-a659f6a05236 1 Other Other +8a450373-d6f3-452b-8984-de4109b24f44 1 Other Other +8a451e4e-1e1d-47d4-8329-025d4d10e341 1 Other Other +8a4527a4-2ede-41f2-b543-b24d513f4f50 1 Other Other +8a455397-b14c-4c32-8907-5f80f42b1fd7 1 Other Other +8a45714c-5451-42fc-bb1d-0bbe8be0d1da 1 Other Other +8a459321-7432-47cf-92a3-a50496fdb908 1 Other Other +8a45fb58-4546-42a9-9b7b-a068ce732143 1 Other Other +8a460b6a-080e-11e8-8bf8-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +8a467a64-759c-46bf-815f-f8d03c1e42ee 1 Other Other +8a46a955-4ad4-4109-84d0-7aa557d9a48c 1 Other Other +8a48034b-f559-4f28-9209-c4e85c74b623 1 Other Other +8a482eab-9150-4d38-9542-17f0d39038d7 1 Other Other +8a484aa5-05af-4542-8e33-f804d6db8f4e 1 Other Other +8a485613-96a3-43f4-946e-62a3ef741dfb 1 Other Other +8a487eba-f57a-4a2d-a22f-d66898785c0d 1 Other Other +8a4888a6-d992-4b4d-8d51-baa41a21e1cc 1 Other Other +8a490821-6193-445b-8692-c2a58e98305b 1 Other Other +8a490db3-4cbd-4c0e-84fe-4e04d1389192 1 Other Other +8a498067-5a7b-4871-b81e-9913c134dba6 1 Other Other +8a49a2cb-88d0-4778-b036-b5cb65024b2d 1 Other Other +8a49a60e-5a2e-479a-ade3-9012778f323e 1 Other Other +8a49b0a9-5c80-409a-addc-dfec26597773 1 Other Other +8a49b0ba-d355-44a2-aedb-2764a0a049f8 1 Other Other +8a49f3e3-f345-45d1-b2c7-05ce1bef4887 1 James Other +8a49f799-df78-4c8a-858c-435b78d3e807 1 Other Other +8a4afa21-4db6-44ea-b959-72c8cca51571 1 Other Other +8a4afde7-0923-4062-8a88-81aa263d60e1 1 Other Other +8a4ba171-cee3-4f88-8cff-87a73500a725 1 Other Other +8a4ba224-f19e-4de2-9473-85dbf0abda0c 1 \N Other +8a4baa5c-2040-4164-b8ad-ee3d3a6206a6 1 Other Other +8a4bc708-7188-408e-9be6-c192acaf7f40 1 Other Other +8a4bd826-519f-455c-957c-b763e4f09b50 1 Other Other +8a4c5803-6ac9-4eaf-b0b8-444b236b9708 1 Other Other +8a4c5b35-9677-484c-9d81-bc2ce8abf0bb 1 Other Other +8a4c660c-aa77-4b43-af5f-9ba3eb9a2813 1 Other Other +8a4c6d25-fb12-49f7-9290-2a55effa9d62 1 Other Other +8a4cb0a3-91ca-4266-a3da-c44126b4cf5e 1 Other Other +8a4cb174-347d-4200-aacc-ba2a36965522 1 Other Other +8a4cc6f7-c81f-4c0c-b312-0b24c3de871c 1 \N Other +8a4cdc27-b878-42f6-824d-613d494ff41b 1 Other Other +8a4d145b-925e-41b5-bbe7-9f4449f4160b 1 Other Other +8a4d433b-46d4-4c37-b1a2-39bc5c5b9cb7 1 Other Other +8a4d5406-4e29-40ad-b448-13c79465f835 1 Other Other +8a4d6fd4-13fd-4994-b32d-b0acb96dc971 1 Other Other +8a4d78e1-39d4-4e00-9165-1a23a8e94225 1 Other Other +8a4d7fb5-1135-4a55-8d91-eeef1b64efb9 1 Other Other +8a4dbc50-feb6-46a1-b01d-7439c57a705a 1 Other Other +8a4dc710-8b9a-4f60-b2a2-6cd5ebc237dd 1 Other Other +8a4dc797-959f-4afa-8de5-8516897941d9 1 Other Other +8a4dee14-13d7-11e8-82fa-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +8a4e166c-bcf3-4772-8d3d-2143217eb75d 1 Other Other +8a4e25f8-c54e-49ea-96fc-d92022900cf1 1 Other Other +8a4e5c5b-0c1c-4a0e-a413-56fea45d5d86 1 Other Other +8a4e9340-64ca-4084-a7eb-9c74fa653aef 1 Other Other +8a4eb3c0-d3c0-47d5-98e9-914cae111ffd 1 Other Other +8a4ed2eb-f52b-4540-9706-57bd01dd40f8 1 Other Other +8a4ed7ce-c35d-4a9e-b0b1-6a03a654f304 1 Other Other +8a4eddea-5748-46ae-b411-8036b242feab 1 Other Other +8a4f06bd-6619-41cb-8fdc-dcc774ea5c15 1 Other Other +8a4f1dc0-ba18-44f6-ab96-a7e38174b4e4 1 Other Other +8a4fdf8b-32c7-403d-8e38-c4d99b1014c0 1 Other Other +8a5023a3-f13c-40c9-ad98-91f9a6057953 1 Other Other +8a506293-1d22-4749-8dc0-1977ac5a27e6 1 Other Other +8a50bd64-0c16-4136-909a-c5df28c99391 1 Other Other +8a510ba6-8485-4f76-9112-35ab7e8330b2 1 Other Other +8a51b817-9ca2-47cc-92c4-9d492bba32f2 1 Other Other +8a51ee38-e292-4179-96d5-d9ad91848fa2 1 Other Other +8a51fb1a-2821-4e02-a4af-b4d2d05a5a43 1 \N Other +8a5235d4-547f-43a5-939b-0b959ce92003 1 Other Other +8a524e9e-0bdb-4839-8a4b-1f41e32eca0c 1 Other Other +8a528e6f-582a-40f7-a763-4ec7fb0e9552 1 Other Other +8a528ebc-1ee2-4acb-ab43-5d55232cac39 1 Other Other +8a528f96-cf7e-4cc6-9270-cd8cdfc96a92 1 Other Other +8a52b98e-2729-401a-bac0-309e0b11e409 1 Other Other +8a52e26a-709f-4c5a-a466-6a3c5bf6e96b 1 Other Other +8a5308f7-295c-42b8-8d90-d091a907364d 1 Other Other +8a538740-06dc-4f56-8462-2b1e4b52bcd1 1 Other Other +8a5402c7-30fd-463a-ae87-57dc104d9084 1 \N Other +8a54664f-dd16-4588-9eb0-6d6da523f440 1 Other Other +8a5469c2-c64a-4558-a52f-908a74b0b896 1 Other Other +8a54859e-63bd-40a8-b855-84f47f9b538b 1 Other Other +8a54a518-88c9-4f77-89a1-c6126653e666 1 Other Other +8a54a9e7-7913-4b58-b1fd-4f7d53ba1f9e 1 Other Other +8a54be40-2ce8-4f79-a596-752ea2c5841b 1 Other Other +8a54e6bb-4583-47bd-941f-ec0321e8d522 1 Other Other +8a551741-d4aa-4743-941e-ad794367ff5e 1 Other Other +8a55c0f1-5d11-4bef-9692-f9d27b8167a0 1 Other Other +8a55ee79-1243-4e6e-9028-ee92676dd2d5 1 Other Other +8a5645b8-e6c2-41e3-aed8-cff1b7d7a5ce 1 Other Other +8a565ba6-c9df-49ba-9317-7df1993b473f 1 Other Other +8a56c858-c5e1-4869-a15e-c54a8dd2390e 1 Other Other +8a56d0b6-bab1-437b-b79d-a06aa129df0c 1 Other Other +8a56fcfe-d8c1-4e5f-915a-5fbda356c13f 1 Other Other +8a573e0f-df9e-4a1d-b177-28a488cfaa7b 1 Other Other +8a57ba94-3349-47f8-80a2-bcb54ef46b68 1 Other Other +8a57e747-1a6a-4654-8504-2ef2214afb38 1 Other Other +8a57ef55-8a9d-455b-a681-6ad1099db77b 1 Other Other +8a5803e2-1da7-4011-ad46-367cc737477c 1 Other Other +8a5830f2-9477-11e7-bcba-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +8a584413-69c0-4430-9046-3d2258150a2c 1 Other Other +8a586fd8-d6bd-45c7-b46f-c79caab7eb32 1 Other Other +8a58a61a-f2db-46dc-af7b-bdc02ba12b1c 1 Other Other +8a58e005-270d-4525-9762-216d17417884 1 Other Other +8a59199d-c46b-4092-b083-b82c4bc0a63f 1 Other Other +8a5942b8-4918-49eb-bf8f-6bee9814d4ce 1 Other Other +8a598764-75b4-4d94-89de-aff6c0fbe70d 1 Other Other +8a59c113-62c9-42f8-b197-f27946db7ab0 1 Other Other +8a59f9ac-a0b9-4ae3-b2c9-b66da115d66a 1 Other Other +8a5a04d3-a2a2-426b-8c6c-f38a1c70088a 1 Other Other +8a5a6290-02ba-44d6-9912-306851837e41 1 Other Other +8a5aa09b-5f9f-45d4-ac42-f119aff532e5 1 Other Other +8a5aa696-6013-41bd-9c87-8b9fd81b7c78 1 Other Other +8a5ab73e-5a58-437e-81e0-40267b245e39 1 Other Other +8a5acf2c-d806-442f-b8b1-0f803ef77d6e 1 Other Other +8a5aefcd-dda6-4ad6-bb81-bd92318fa849 1 Other Other +8a5b7100-2c4d-40e4-8bc0-ce523b953336 1 Other Other +8a5bdaa9-7ca0-428c-906f-f36681950c27 1 Other Other +8a5bdb3e-07f2-4b81-af3c-159dfcd154b9 1 Other Other +8a5c571c-7424-4dfd-b0e0-df463e29ab57 1 Other Other +8a5c62c4-e429-4983-83a8-be9ca4500490 1 \N Other +8a5c6ecc-a44f-43b4-ac9d-729f1dc2c0ab 1 Other Other +8a5c8948-afba-4135-abd7-257e3a6a9607 1 Other Other +8a5cb71a-f4f0-45b7-a6a2-c3c1f991aa5c 1 Other Other +8a5cbb8f-c182-43da-8cb4-a1ca0f377b9d 1 Other Other +8a5cc3bd-4cd6-4b2c-83a4-ac7ab5e89fb6 1 Other Other +8a5d9dc8-efa6-44ce-b5dd-f73e7fffdf08 1 Other Other +8a5dabc0-2ca7-4ea9-9794-f316ef5a2d7f 1 Other Other +8a5dc72f-78b6-45d3-9281-8531ca4d186e 1 Other Other +8a5ddf70-6df1-4e10-ab72-d02d301b8a64 1 Other Other +8a5dee1a-b52e-4f78-8789-c3db4cfad5c4 1 Other Other +8a5e1a63-b376-4ece-8bcd-f851f7e20241 1 Other Other +8a5e5b7e-81a8-4cd2-9f91-be01899e7b66 1 Other Other +8a5e7c09-1562-4579-9b08-a5ac4c1a0145 1 Other Other +8a5e8cb5-2e70-4080-bc4c-c6c9339237c9 1 Other Other +8a5eda9b-bcd5-4782-925a-8505cc161c60 1 Other Other +8a5ef4c5-cccd-4f24-ac51-077411cae394 1 Other Other +8a5f3e15-ea81-4c6d-9001-0350d7ff0a41 1 Other Other +8a5f7650-4da1-45f2-8a24-f922d90b47a0 1 Other Other +8a5f7651-9764-49c1-9d06-c85f5011be3c 1 Other Other +8a5ff005-2595-4be1-9109-9bc91276ddeb 1 \N Other +8a602fcd-e703-4d8a-998c-e85f2a154449 1 Other Other +8a603f15-5735-461d-9fc5-9ec98eacfaa2 1 Other Other +8a6057da-976f-4d48-a4f9-70d23ea6eeb2 1 Other Other +8a606dd3-46c8-44a6-a3ae-211e538daf0b 1 Other Other +8a607097-e5aa-4cd4-b2e1-2e035029d677 1 Other Other +8a60c72f-50db-4afc-80e3-82a099809b3d 1 Other Other +8a60c990-4ac2-465f-bbad-2a1f2beeaca1 1 Other Other +8a610c3a-d3f2-48cb-bb1f-39b528726b32 1 Other Other +8a612a4e-9e0b-4118-85ac-dacc2d3c19e1 1 Other Other +8a61768b-5f79-4e4d-8a42-1c3c33715755 1 Other Other +8a62234f-ae24-4aac-ae3c-1101b2700129 1 Other Other +8a624451-2453-4da3-9add-5698b57ca05a 1 Other Other +8a628bb8-837c-45a4-8ba4-21df76c0c3da 1 Other Other +8a62981b-6990-4909-8f9c-cff436b92532 1 Other Other +8a62d580-3ee1-40ea-b579-9cc9ed224015 1 Other Other +8a62ec05-6757-4c0c-9e41-b35b2b9e5ac1 1 Other Other +8a631fa5-ef0a-4d00-a911-2e123a4c9c3c 1 Other Other +8a633e2f-0564-423d-b0c4-84ccc9129176 1 Other Other +8a633fd2-4596-4ad9-a608-f5885457e9e3 1 Other Other +8a6370f0-b8d3-4191-a392-bbb5be0bd21e 1 Other Other +8a6398a1-2dc5-4369-b66a-135a7725af0c 1 Other Other +8a63c17d-1139-4a33-9500-8f67b81d4688 1 Other Other +8a63f319-4d4a-4fee-8a79-6d6f15c7e2cc 1 Other Other +8a63f76c-881a-4d92-a37b-be8f12b54c41 1 Other Other +8a6425a5-8ded-4076-9292-d731488cb8b2 1 Other Other +8a64e514-3bda-4725-9696-0a88e956dd6e 1 Other Other +8a64e76c-9311-4342-a237-dc0421e70e74 1 Other Other +8a650c00-2281-4d69-8678-099b3852256d 1 Other Other +8a655762-6806-4fab-941a-2ab33e5395fd 1 Other Other +8a65c373-08df-4cbb-9735-171b43bc7519 1 Other Other +8a65f185-e2bd-4e0a-aae0-a655085c9387 1 Other Other +8a65ff0a-cb1c-493f-a471-0e44f12271ee 1 Other Other +8a6638e1-2bbc-4a8a-9715-6490945206e3 1 Other Other +8a667291-4b67-44e3-9506-130ea58465ac 1 Other Other +8a668315-86fb-42c0-914e-c4bc06a84318 1 Other Other +8a66adf5-17b5-484b-84a5-1a6d2b5459df 1 Other Other +8a672038-bb66-400a-801d-ee58272438dd 1 Other Other +8a673c58-651c-49a0-a6f3-096f536fb505 1 Other Other +8a675e8a-fc14-4c99-9960-62297683becf 1 Other Other +8a6769d1-543b-4846-9055-8c9fa7f31304 1 Other Other +8a676c20-cb5f-4b6b-af6f-ac429c5c93c9 1 Other Other +8a67700b-a7f4-45ec-b26a-5950fab49568 1 Other Other +8a67b732-da48-46f8-b44c-b63ab50dab03 1 Other Other +8a67bd9d-30fc-4263-a582-03e59e62a7a8 1 Other Other +8a67e0a5-fb74-42f4-91d1-b4df28c6a5e1 1 Other Other +8a67eaf0-1115-4bdf-be22-348fc90dc641 1 Other Other +8a67fd2e-ddcb-40f3-abcb-7f1dcefc2b1b 1 Other Other +8a6857ab-6b6e-420b-93c1-4b85b92210d5 1 Other Other +8a6886b8-ae7c-49b6-8e0b-9db6e0c63d6f 1 Other Other +8a68fa4c-de7c-4f0c-83a7-3f6b742aa93e 1 Other Other +8a6979ef-208a-4882-8b61-b94466012f25 1 Other Other +8a6991af-0a09-4e28-ab80-4ac8a6f5c18f 1 \N Other +8a6a6aa9-5a5e-4401-9def-4128779a8256 1 Other Other +8a6a752a-f1dd-428d-9f06-d5cd709f16f2 1 Other Other +8a6a769f-f581-4fde-933d-72a068781f3b 1 Other Other +8a6a8f16-44e9-4802-8757-eae7147a8d65 1 Other Other +8a6a9461-33b4-4120-a5fe-b6d5cd5b711d 1 Other Other +8a6b8119-0652-4eb3-a487-4e01f635a2b6 1 Other Other +8a6b82f6-9cfc-46b8-a19c-c73dcdd20bf5 1 Other Other +8a6bc2b8-f942-49c5-ba95-48caeb087c55 1 Other Other +8a6bf658-3bc2-4d66-8b85-f5618631eaca 1 Other Other +8a6c6756-c594-49fe-8cca-7085b163c740 1 Other Other +8a6ca823-6761-4540-9a7e-82f3c50d95ec 1 Other Other +8a6cb4b5-20f9-45bd-865f-1a5f1a19e652 1 Other Other +8a6cbe57-8954-427d-a1f6-f02e661b2de2 1 Other Other +8a6d2d7e-1762-43a4-a785-2d12e27c4019 1 Other Other +8a6d53a9-dbf0-429c-8fde-d8c1943a7f63 1 Other Other +8a6dc984-0302-4998-8954-44be3aec79d0 1 Other Other +8a6e2360-f12b-11e7-9dd9-fa163e8624cc 1 Other Other +8a6e2eeb-bc12-48e5-a6e2-9c8d20f050d4 1 Other Other +8a6e4c67-d865-42b6-b9e1-3f0a2ca5e519 1 Other Other +8a6ed11f-fe5a-48b0-9a3c-bc8327590970 1 Other Other +8a6f3c9b-5abf-42c1-9e43-e7705a3a5cd7 1 Other Other +8a6f5f99-4bbd-4ebc-942c-839363b9695d 1 Other Other +8a6f6a1a-9de2-49cb-a040-b287e0560db4 1 Other Other +8a6f785f-5281-4134-a8e2-9e476fd37f52 1 Other Other +8a6f78c9-f1d0-4870-b494-9a422d2ba156 1 Other Other +8a6f9b7d-2043-42c9-b7a6-09943813e0c5 1 Other Other +8a6faad7-41a9-4bde-8122-54d3cce7a1d8 1 Other Other +8a6ff1ef-52ce-4240-a8f4-9df62ff784e5 1 Other Other +8a70359a-58de-4c9e-807b-d2f39889eb8f 1 Other Other +8a70941c-0db3-424e-8d55-230c367141d0 1 Other Other +8a70967a-dc9d-479f-8900-fafe27d51034 1 Other Other +8a70b169-bb46-4ac1-90f3-0e7347c5996a 1 Other Other +8a715090-5088-4149-87fe-03afbbb711c3 1 Other Other +8a71dc61-a04d-4f97-9ff4-c2731cffa8ea 1 Other Other +8a722c8c-bb28-4c4e-bf63-82b2ee2a77d0 1 Other Other +8a72967a-7ab8-4e6d-aaf3-e552a7b56286 1 Other Other +8a72bcc2-75ba-43ea-8de1-7394cd3193e6 1 Other Other +8a72d2df-6bee-4061-bb8c-d10e0481f74b 1 Other Other +8a72fba2-0b88-11e8-8c82-fa163e8624cc 1 \N Other +8a7337db-9ec1-4d77-a7c2-085315e5c36c 1 Other Other +8a7367ad-d83d-4f02-91d9-c06c46079af6 1 Other Other +8a738156-d383-47e1-aaf8-a6de4735b868 1 Other Other +8a73bbdd-995e-4a4b-aa19-b0a637591a85 1 Other Other +8a73bcd4-a682-46b8-a4df-5a9649504044 1 Other Other +8a73c001-d000-410f-9181-c33fcfb7c12b 1 \N Other +8a73d356-2f28-4663-b923-62b6775f388d 1 Other Other +8a73dd87-babc-47cf-ab4a-2009b4636648 1 Other Other +8a73edcd-5df1-4284-a54e-d747cd5ce10d 1 Other Other +8a7411d7-2403-47cf-afd7-19d379541262 1 Other Other +8a7417dd-f95f-4122-80e4-a030779e00a8 1 Other Other +8a746920-6bf8-4097-a3bd-cc193ba0102e 1 James Other +8a7486fc-cf81-4385-95a6-8a92be5d26b9 1 Other Other +8a74dcac-2f3b-4de5-a6d6-e9254ad81700 1 Other Other +8a74e492-7cdf-45ae-8bb4-61085cf35c69 1 Other Other +8a751898-b45f-40da-a159-8f0e7fc51439 1 Other Other +8a756c37-973d-4103-88cb-c8d0b37faf68 1 Other Other +8a759234-9849-4354-b241-98f331ca66e9 1 Other Other +8a7596ab-f3a0-4263-a097-bf0d1699c2cd 1 Other Other +8a764e6d-645c-40f5-97b9-2761648abf87 1 Other Other +8a7663ea-c609-43d0-b050-c66ebdd07ec5 1 Other Other +8a76a01e-d2aa-464b-aa14-4e145ddda2c0 1 Other Other +8a76dad5-2775-4f68-91ff-869d5b4239d0 1 Other Other +8a76e1d9-a34c-43e7-88da-b03a785d19c6 1 Other Other +8a76ecec-479a-4d0a-bb94-61589c2020b4 1 Other Other +8a76ef70-eb08-4c05-b8f9-50bf28780752 1 \N Other +8a772082-13a5-4378-bc2d-09c75f5f7d13 1 Other Other +8a772ebc-6c16-4301-812c-58cc37ad0c8b 1 Other Other +8a7738e5-a965-4d13-ac38-fd47e8814424 1 Other Other +8a778236-cbae-4c24-b239-eaf88733b0cd 1 Other Other +8a78090c-3e50-4c15-a7c5-ebab493f1c34 1 Other Other +8a780f5c-7709-4b50-86f9-576687209e65 1 Other Other +8a786844-f50d-4dfc-bb4e-908470629973 1 Other Other +8a787553-2aa1-4bb8-930b-3c23d60083e4 1 Other Other +8a788cfe-e376-41c3-b1ac-323d1da49746 1 Other Other +8a78d108-4a94-409a-8112-96a59f44858c 1 Other Other +8a78e4e5-e5a5-4924-9232-45b1e86cb012 1 Other Other +8a78e708-4704-48a4-9430-8a03b6b97411 1 Other Other +8a7940c6-c10c-4a35-866d-acd9dfbd9c4f 1 Other Other +8a79b5bc-1e0a-4ea9-bee1-6c7a9b704c1f 1 Other Other +8a7a182f-6a85-4514-a2e2-5933b7bf4385 1 Other Other +8a7a1f57-8ab8-4fef-8079-fb3cd3eea17b 1 Other Other +8a7aaa68-2cc1-46c0-aca9-2c3a0b724a57 1 Other Other +8a7ad128-7f59-440f-9822-f605debd1a7e 1 Other Other +8a7aed4d-9ca4-4e54-a464-7d49907c3410 1 Other Other +8a7b01e0-416c-4952-a2a8-d7cfed073620 1 Other Other +8a7b0f14-9ed3-4762-8c08-c8643a2927b7 1 Other Other +8a7b479a-a29c-4b3b-b528-a64f61ab6738 1 Other Other +8a7ba925-db86-4a25-8c7d-0b33b12ea75a 1 Other Other +8a7bc700-99d1-4f29-8fd7-47a1eb473776 1 Other Other +8a7c061e-4a89-4f0b-be35-3bad7f3dd211 1 Other Other +8a7c324c-bbde-4843-96cc-f2ddddbc339d 1 James Other +8a7c368b-29d5-4e90-8736-b71ad228dd95 1 Other Other +8a7c3bb6-b999-4688-835c-1388a2199852 1 Other Other +8a7c53a8-f12c-11e7-966d-fa163e8624cc 1 Other Other +8a7cc813-2410-4a23-8481-e81ff2cccc71 1 Other Other +8a7d05c4-68b8-4085-bde8-5c7338a584ed 1 \N Other +8a7d814b-3b21-4c47-b1c8-bc73b72f6d80 1 \N Other +8a7da453-f8b9-47aa-8efb-f95b9fae96a8 1 Other Other +8a7e34cf-ddb7-4759-9536-435addf22520 1 Other Other +8a7f66b7-3054-455a-889e-1e84b87b9de3 1 Other Other +8a7f8581-dbb4-4c18-a012-62dc66860b38 1 Other Other +8a7fbccb-3387-4e23-ae7b-4931053e300a 1 Other Other +8a7fe03a-9ee4-4b55-9c96-6325838bb3b7 1 Other Other +8a7ffc65-2bd8-4ccc-9dd4-f179f46c9807 1 Other Other +8a805486-cc69-4f93-889d-186cf3c6b930 1 Other Other +8a809288-1e77-4300-b95e-516d991ac870 1 Other Other +8a809742-912c-4dcd-b372-8015bc7f4b99 1 Other Other +8a809896-4fe1-41e2-96d3-f7c525004962 1 Other Other +8a809bb7-3338-420e-b811-282fd246c637 1 Other Other +8a80d18d-cd0f-4b41-a6aa-68907dc1120f 1 Other Other +8a8114b5-92d6-4d85-931b-1afe7428f5dc 1 Other Other +8a814030-5b76-46e7-ae76-5e5d17eb97bf 1 Other Other +8a816de2-f86a-40b2-84e4-34e62fa8b54e 1 Other Other +8a817cbe-3548-4ea4-85c9-c86f6c807f1d 1 Other Other +8a81a113-a793-4b95-9d0c-496b1de806ab 1 Other Other +8a821215-d8cd-4c37-b8ff-8f7390d22bbf 1 Other Other +8a822bf8-d8db-4ffd-a041-d3981be47880 1 Other Other +8a8251fa-36c4-4ddd-a923-6c0d2e69cf2d 1 Other Other +8a826ba3-c154-43d2-9d90-e5147237169d 1 Other Other +8a82abf4-2566-4e26-a180-375a016b3ee0 1 Other Other +8a83014d-48cd-41af-9df8-d49bdb2e9d77 1 Other Other +8a830e38-f8a9-4d01-ae81-9417d86b3ca2 1 Other Other +8a8317f0-85e9-4532-b6ca-7dd595c50c71 1 Other Other +8a8326e9-ae3e-4691-9b16-c8ccafc90ac9 1 Other Other +8a833a06-23ba-40e5-bdc3-da7909cd469b 1 Other Other +8a834b70-b85e-4b68-8dbe-75f1afb4cfea 1 James Other +8a83cd17-6be5-4bed-8999-a2064a3b15a7 1 Other Other +8a83ff33-2605-498c-871d-d2f343926404 1 Other Other +8a841c33-70ed-4b63-a33c-00bd1c224d5c 1 Other Other +8a84260b-0b1f-437f-8df1-bb7ab90cdea5 1 Other Other +8a8448f4-4a67-4842-859d-d00305b70252 1 Other Other +8a847dd4-e300-4aae-9f46-8df57369c46e 1 Other Other +8a848501-fe81-4d31-bec9-082d8d352076 1 Other Other +8a848dfb-5fa1-4556-a485-e6db4415b666 1 Other Other +8a84934c-c4f6-45df-82ec-8d3b7c6b1b48 1 Other Other +8a849b34-a8bb-4975-ab6c-9667a45db8e6 1 Other Other +8a84cdc6-9033-4d2b-bd37-5cfe547a1f86 1 Other Other +8a84d494-3bdd-4f3b-8f07-340d84fbe9d3 1 Other Other +8a8517e5-57d0-4244-afc8-19c9e663d91e 1 Other Other +8a8570de-c0a0-4db0-9c4c-e68772d5f039 1 Other Other +8a85b8ba-db13-477e-acbe-c84542c93bde 1 Other Other +8a85d66b-d293-42fe-83e7-ee10d7dcc570 1 Other Other +8a85f728-677c-4427-bd5b-1a2c676c70f6 1 Other Other +8a8635b7-bf66-4868-8e92-e4263c258af0 1 Other Other +8a8636ef-ab11-41c1-8e9d-5a31571b32dc 1 Other Other +8a868ddc-284b-41a5-a2bf-bb8495147ba7 1 Other Other +8a86e494-143b-4a19-b9cf-7ab9b422ec86 1 Other Other +8a86fec7-e4ad-4508-b252-5c1b50a33ba4 1 Other Other +8a870674-ea33-49d4-8df0-fe787fe28db0 1 Other Other +8a87495e-d56c-4138-808b-ac4eb35ca4fd 1 Other Other +8a87b264-ae78-4439-8774-ed89828fb41d 1 Other Other +8a87bf39-0ceb-44e6-bd28-4e9770529158 1 Other Other +8a8832fb-f987-4f2b-8cb0-b02d34747cc4 1 Other Other +8a883880-e411-4ae0-adc9-b3e5297ae0e8 1 Other Other +8a886b9c-b754-4cbf-b843-f55b5fad51ad 1 Other Other +8a8876a5-1527-439d-8a72-efd6d5c2cb1c 1 Other Other +8a88b947-d7cb-41bf-9535-75513d366d37 1 Other Other +8a88e080-0c27-49a7-8c9f-071134bf65ec 1 Other Other +8a89160b-05ca-4ebf-85a9-ea36681f0a7c 1 Other Other +8a892bac-b793-40cb-b047-8b84ead0c5e5 1 Other Other +8a8959b1-665e-4a6f-b3e2-a6c343042d14 1 Other Other +8a898f4a-c439-4f35-a2ba-4e7639211261 1 Other Other +8a89929a-f621-4ad6-94bd-ae46162d65f3 1 Other Other +8a8994fa-010b-47dd-b0a4-a25aac8f13ca 1 Other Other +8a89ad22-e2a8-4373-8d26-df614deb3b1d 1 Other Other +8a89af3e-149f-4880-84dc-773c7fd34671 1 Other Other +8a89d1db-07ac-4458-b17e-16589c0bbd6a 1 Other Other +8a8a2352-adc4-47e1-9fbe-21324d86bb3e 1 Other Other +8a8adfdc-3d62-4c45-92bf-875efcbdc643 1 Other Other +8a8b0c08-2d84-402e-8096-1355a16cb82f 1 Other Other +8a8ba90d-2df0-432f-a432-04de0d915320 1 Other Other +8a8bc0a0-db12-44b6-930b-2a488dacdf87 1 Other Other +8a8bf643-a727-4e11-b559-a1452f1b83b4 1 Other Other +8a8c0d10-790c-4650-aef7-5e75dc581fc7 1 Other Other +8a8c1a97-6054-43b0-a294-9ab8e4b83267 1 Other Other +8a8cda5f-9821-4867-a649-db6b1a2e1fc9 1 Other Other +8a8cddee-ae23-4222-be96-add173184b52 1 Other Other +8a8cfe58-07eb-4110-9d4e-0bca386d2c32 1 Other Other +8a8cfe58-7412-4f5f-9816-2c4822791cdd 1 Other Other +8a8d275b-8f8b-4731-bb47-3e32518a1460 1 Other Other +8a8d4990-dc57-4f1d-8056-88b845cb5c5c 1 \N Other +8a8d5a04-9082-432f-b020-9cbd5084aa45 1 Other Other +8a8db53b-4108-40e4-91d3-48fc2fa55a4c 1 Other Other +8a8dbe3c-0124-41ca-985d-fe91002a0a74 1 Other Other +8a8e2896-acdb-4362-8458-a92455a3a6f7 1 Other Other +8a8e3c1e-eb65-4837-ab6c-c4f0c23bc203 1 Other Other +8a8eb96d-4444-4919-9af9-148125353a6e 1 Other Other +8a8eeee2-9e8e-4063-b895-b39e37ee93f6 1 Other Other +8a8f1553-0687-44bb-a1e1-422493361367 1 Other Other +8a8f7cba-4e56-4010-878a-d27082fbccfa 1 Other Other +8a8fe73a-0379-49ba-92de-a6fd201c41bf 1 Other Other +8a900c68-8f69-4100-a73f-38581496330d 1 Other Other +8a901067-ce74-4aaa-98da-68948da15394 1 Other Other +8a909138-a2c5-4b11-b170-545c773bef52 1 Other Other +8a90c9ed-db69-4faf-8f44-c56af800ccd1 1 Other Other +8a90d23f-d7b0-4c6b-adf4-93191f9fa3a6 1 Other Other +8a90e543-a1aa-4411-8ce4-d96f93dffa6f 1 Other Other +8a90eac5-21ed-47f7-9a51-6f4c8601ccf7 1 Other Other +8a91d5f0-685e-47e6-959b-16e2f3de38a8 1 \N Other +8a91e915-352b-4c7e-a834-90efa00e1835 1 Other Other +8a91fffa-72e3-4169-a941-9f3d7f69b66b 1 Other Other +8a9233af-f985-4c4a-a566-ffd3c9c0d092 1 Other Other +8a923522-2368-4b2d-be39-48e6facda4ce 1 Other Other +8a927db6-f2ca-44a4-9d97-ba36ad8cb5bf 1 Other Other +8a92d6e9-4d58-45ff-a91f-1912b6cf5cc9 1 Other Other +8a9343b0-02ac-4160-b9c7-f99a9f1857ac 1 Other Other +8a93606b-540b-45d8-85f7-1bd7c7e5f63c 1 Other Other +8a9379c2-909d-4292-8e34-c45e120182cd 1 Other Other +8a93a765-e958-435c-bb79-620f6bcf2bae 1 Other Other +8a942a50-ba83-4f83-a904-f6770cb7817a 1 Other Other +8a942f3f-fd35-44f0-bfb2-1c42c4242db9 1 Other Other +8a946e3e-5f10-4134-8d2c-5a9bcbc57c97 1 Other Other +8a947abf-4013-4a6e-8df9-cb600ddfbc97 1 Other Other +8a9486ef-da07-4653-b745-df3943281326 1 Other Other +8a94a8b7-bb11-4d5f-ad5e-5f0fb3641f1b 1 Other Other +8a94b482-b1b0-48d4-a21d-b5bd13ca169d 1 Other Other +8a94b6bf-4d74-4940-a375-e1addf5d5435 1 Other Other +8a94f43f-9ec6-4f95-8f64-96b8fc69ed8a 1 Other Other +8a950605-42ae-4938-8bf5-49d106e58810 1 Other Other +8a954440-b450-45dc-8f38-4342afda42a2 1 Other Other +8a95ab3e-cd9c-49a4-9787-b4c8f5de3f0c 1 Other Other +8a95db12-9105-48d7-9b20-f8b9f15f539c 1 Other Other +8a962c43-836d-4aed-93ec-56119d9e46bb 1 Other Other +8a964115-89c9-418a-a9e9-e5470dd4c65b 1 Other Other +8a965199-5377-484b-883c-20fc47eac5f6 1 Other Other +8a966db5-7d6f-4c71-a61f-10f1650b6051 1 Other Other +8a967d26-37e9-45d1-98c3-c98831d63c47 1 Other Other +8a968b46-5b27-494e-a959-6b65c6a3d7e5 1 Other Other +8a96b5f1-6a93-4b11-9dcb-a446663b9eff 1 Other Other +8a96c576-5d0d-47ba-a120-f6cb24a72ff3 1 Other Other +8a96fa89-32ab-4dcc-abf3-711c53f29c5d 1 Other Other +8a9708c1-bc3b-4ccf-bf87-f043f42593fe 1 Other Other +8a971970-561a-4c02-88ac-3c727da42910 1 Other Other +8a974698-ea05-4314-97a2-09f9ca78659c 1 Other Other +8a97729c-9197-4291-ac14-79bed290fef9 1 Other Other +8a979664-f11f-4676-9e46-1f9d31b7e0d3 1 Other Other +8a97f283-25cc-49bf-a7de-f3353f9927fc 1 Other Other +8a98767c-6945-4a8e-ad9c-953a1a20357f 1 Other Other +8a9890b1-346d-4396-9d29-02f9025d2197 1 Other Other +8a98cf1b-bc2a-411a-843a-3f28852b36e0 1 Other Other +8a98e105-c3b3-4865-90bd-0ee887a361d2 1 Other Other +8a98f7ce-5b6a-40f8-a114-8fed0fb0d354 1 Other Other +8a990129-99e0-4e90-8f95-95ea0890d016 1 Other Other +8a992887-40e8-4589-9744-0a9716fd5d31 1 Other Other +8a99395f-c1bf-4003-b445-0e3ccbeb7712 1 Other Other +8a9958a6-6c19-4996-844c-01a9dbd54ad6 1 Other Other +8a999451-c6ba-4552-925e-663dd4006024 1 Other Other +8a99c2a6-2b16-4603-967e-8e93f04dce15 1 Other Other +8a99ce95-67ba-4602-976e-3c2b2e78258f 1 Other Other +8a9a111f-1912-40a6-a5f1-7023787465bc 1 Other Other +8a9a3dd7-49e2-48d3-a6eb-e7266cd6b8f1 1 Other Other +8a9a4591-2593-4f15-8edf-614bcc7047e3 1 Other Other +8a9a6043-7371-4060-94ef-967929b4c7b6 1 Other Other +8a9aa74f-d3e2-405b-ae06-cd1dc0502317 1 Other Other +8a9b15c0-1434-4a77-ba81-d63f5e75945b 1 Other Other +8a9b230f-92b1-47de-9425-0ef66280c409 1 Other Other +8a9b2a24-8556-42e3-a9ba-866cc2bbc268 1 Other Other +8a9b39cd-5dfb-4c2b-bdf3-1d76c8c59c36 1 Other Other +8a9b4685-f044-492c-b8fd-9e5841a7d4fa 1 Other Other +8a9bc772-ca97-4d0b-a88c-913be7fb7dfa 1 Other Other +8a9bdbf4-5ad8-4e0c-b418-aa2167717592 1 \N Other +8a9c23b7-312b-442c-a9ef-720ce99f7d23 1 James Other +8a9c45ae-7b46-4ca1-81c0-964f27df9fc9 1 Other Other +8a9cc574-0ca5-4caf-bff2-ce2462a18029 1 Other Other +8a9ce3ee-5f44-4fb5-920d-e4c3dcebf004 1 Other Other +8a9d4106-e4e1-482d-ad15-1eaf807f8a04 1 Other Other +8a9d622c-09a0-4c43-b552-e3860a6d619a 1 Other Other +8a9d8308-bde3-4e8a-a536-feba1be51485 1 Other Other +8a9df5f0-77a9-45af-82ab-f50f4305dfa8 1 James Other +8a9e20df-f7c3-4be6-9d35-6fd8af2a8daa 1 Other Other +8a9e35f1-a30d-4fb3-a007-7532d6f3f3e8 1 Other Other +8a9e6576-8ee7-4f1b-bdd9-09ce507dc9ea 1 Other Other +8a9e8930-4e15-442b-baf7-d53488334d2b 1 Other Other +8a9e9ece-66cb-4199-ad45-9fb3fa6a516e 1 Other Other +8a9ea903-373c-4dd1-a51f-c2e474243a0a 1 Other Other +8a9eb472-9f8d-4070-8109-f4684b7bec1b 1 Other Other +8a9ec9d9-81e9-42da-b142-99e2058d36a2 1 Other Other +8a9f3b52-cd8d-42d2-8178-79b7d1b7e5a6 1 Other Other +8a9fa710-4c20-4023-8fa2-9a7995254580 1 Other Other +8a9fa7c2-fa30-40c7-974f-2edfb6b22e8f 1 Other Other +8a9fb0c9-e1e8-4ef8-9e92-b418ee5c324f 1 Other Other +8a9fd243-42f5-4bbb-ac87-9e1498250fb3 1 Other Other +8a9fe556-1d12-4d98-b6b7-a25774b25cd4 1 Other Other +8aa007e3-ff07-4aa5-a5d2-6d70fcb0dbac 1 Other Other +8aa02f69-2756-4350-a4f0-8f39ec688d34 1 \N Other +8aa0487f-a294-446b-a6da-b44ca2bbfb75 1 Other Other +8aa0a957-e635-4471-9e1d-f3d8f2a0453b 1 Other Other +8aa0d558-690f-4641-a9c6-f26eed5e7145 1 Other Other +8aa11c8e-0e47-4038-9f0f-2550e47418cb 1 Other Other +8aa1a0d0-aa0d-4643-bc87-480f5a3a6be9 1 Other Other +8aa1a4d2-8959-477d-bc6f-dca6f37c007c 1 Other Other +8aa1a7ba-e7bf-459a-bac8-a80e4503c0cf 1 Other Other +8aa1b267-d38a-44c7-9d4d-81abe5f89314 1 Other Other +8aa1d1db-b8ab-4c54-8b9b-7a739f613dd5 1 Other Other +8aa1e494-cb16-4610-8b9c-bff426578024 1 Other Other +8aa201a4-cb51-4900-aa7e-acf3bff8f4f2 1 Other Other +8aa252ff-d531-43e1-bd77-f3400babbeab 1 Other Other +8aa2cac3-0bb7-4b69-b9a3-5fb763a06d11 1 Other Other +8aa2f35f-e98a-438f-90e1-8b5013c26d5e 1 Other Other +8aa41c6f-6ba2-4fb6-b0e3-8cc6d8f7b7a7 1 Other Other +8aa432ae-4e5a-45e7-8d27-c2ff4bf8c29c 1 Other Other +8aa4bf69-c8b2-431e-a65a-afee922d69b3 1 Other Other +8aa4c8b1-3a22-4585-8ef4-16d8aded76b4 1 Other Other +8aa4e0f3-9838-4a86-a6dd-fa99a14d0f36 1 Other Other +8aa513f7-5a1e-4660-958e-8ad83b2e1630 1 Other Other +8aa51c85-434a-439e-b703-43e9ccb825c2 1 Other Other +8aa53cd1-0a39-4686-94fc-cf80f6db57bc 1 Other Other +8aa576fa-458b-4b6a-a706-41acc7916a29 1 Other Other +8aa58cd4-528c-40a7-bd8e-e8bf0bd3b7fd 1 Other Other +8aa5ab7a-c295-4669-867d-460b414db2fc 1 Other Other +8aa5eadc-9718-4c8d-8d1d-cd09408a14d0 1 Other Other +8aa5f52d-3740-4b27-9338-8a57e552f721 1 Other Other +8aa5fa54-a4dd-4f2c-9dbd-105bca45a20c 1 Other Other +8aa65023-e6a7-4ccf-9a58-e38165c0193f 1 Other Other +8aa6c99a-d543-4cb9-b270-f391cfea9cd9 1 Other Other +8aa6ce12-9100-4f55-8937-1768e0aaeecb 1 Other Other +8aa6e180-b201-48a1-b28c-f7e43e49e847 1 \N Other +8aa704ab-a20e-4e2f-b011-7112aeedd1e9 1 Other Other +8aa70c5d-b139-4b55-97cf-78c36288078f 1 Other Other +8aa73bcb-ddfd-48e2-b724-5701d1ed29ce 1 \N Other +8aa76160-7706-4d4c-94b0-e491ef466d66 1 Other Other +8aa77e5d-72fd-4a40-a126-531a9cfeddd8 1 Other Other +8aa83897-1755-40e5-ab2d-6eadeffe5382 1 Other Other +8aa85852-0b09-46a7-a59b-402433ad16f1 1 Other Other +8aa88a77-f6a3-4209-8620-f02279d50371 1 Other Other +8aa8bb5d-2225-4d2b-8436-58f8658401e8 1 Other Other +8aa8d09e-3118-4841-8007-f9590e4f3f1e 1 Other Other +8aa8ef10-7670-4a7e-b9b0-1973537b3c69 1 Other Other +8aa991b9-c2b8-42e5-909c-1911c3fb37c8 1 Other Other +8aa99795-2401-44a3-a144-6d262470f9fd 1 Other Other +8aa9a568-cb33-4b98-868d-303f47afcb5e 1 Other Other +8aa9ec62-372e-492b-886d-e11b394d5157 1 Other Other +8aaa50db-f0c6-49b5-8266-b200f4062493 1 \N Other +8aaa8b4c-aeda-46c5-970b-63e6a463a145 1 Other Other +8aaafb73-0162-4344-b703-e58c4089a0d9 1 Other Other +8aab9617-83fe-477f-8ade-87761b4e2b3c 1 Other Other +8aaba2e0-b794-4b50-9a03-bcb42cbdf9ee 1 Other Other +8aaba8be-81d4-43e4-bc1d-df37bd4f1172 1 Other Other +8aabb6d9-9997-4a70-9da7-8a3bc3b20a0b 1 Other Other +8aabc05c-09fd-4905-aa37-8b48385edfe2 1 \N Other +8aabd4ed-a879-458a-b051-c59ddb4f90de 1 Other Other +8aabee1e-91dd-45de-a28e-c18c87f03379 1 Other Other +8aac00d6-ec33-40cc-9e64-b609151cdae4 1 Other Other +8aac8ca6-5c91-47d2-94f4-e448f14d31a3 1 Other Other +8aac9873-0637-4703-ba35-1e4e3ba7db9e 1 Other Other +8aad8e64-9bcc-4b31-8578-c0ffdcf91c69 1 Other Other +8aada126-db89-4eda-a3ef-07f15876cef8 1 Other Other +8aadc37d-53a2-4413-a634-dc1481213a21 1 Other Other +8aade6c4-4a0d-4b5b-8b90-818971dcbec3 1 Other Other +8aadea08-15f1-42a8-a180-f319d6424cc1 1 Other Other +8aadf98c-9cef-47a1-9d83-7d0b4ea225f1 1 Other Other +8aae016d-f86a-4ab1-afb7-12e4fd381243 1 Other Other +8aae1e90-c15d-4915-a276-1eac4a831ef2 1 Other Other +8aae3774-72de-4e6e-aed1-9cfba74bdc88 1 Other Other +8aaee238-b288-434f-abf4-a8fc28fb1d9d 1 Other Other +8aaee9ff-6f8d-4302-bb91-f2fcfcb79464 1 Other Other +8aaef186-9f0a-40d7-8f03-666f5b8cf625 1 Other Other +8aaf35c9-ec8a-4423-bdc5-5bf4d354f270 1 Other Other +8aaf47b5-e867-4f22-8889-4e1adbe5d357 1 Other Other +8aaf681a-7a43-43e4-945a-64e649d49693 1 Other Other +8aafa534-1913-405c-b399-1f7e5e3c17ce 1 Other Other +8aaff2b1-3c52-458a-9602-2e2c41355829 1 Other Other +8ab0463a-cb18-478e-84bf-347858f5b188 1 Other Other +8ab051e7-ae24-4088-bd2d-a35322558a52 1 Other Other +8ab06472-8a79-45e3-834f-0ac5068b0765 1 Other Other +8ab09547-1cc5-4eaf-86f7-e5008ada08a6 1 Other Other +8ab0a5a2-e6f5-4b8b-bd7f-9914f2674ff9 1 Other Other +8ab0c96c-2a2e-4e45-b398-96c0376c99fa 1 \N Other +8ab100ad-35fc-42f1-8a05-49332c790c39 1 Other Other +8ab14d03-a978-4912-9b82-caf46fa9b28b 1 Other Other +8ab182a8-a72e-47ad-a753-27d34b75f0ee 1 Other Other +8ab18ff8-2d9c-446f-bb67-c01ff33ee769 1 Other Other +8ab2069c-0479-4614-8a3c-79fba07a26f2 1 Other Other +8ab20df5-aaeb-4a84-8b95-85f6bdc93539 1 Other Other +8ab26388-d459-45f8-a404-52821bf11a46 1 Other Other +8ab27578-988b-45ed-ae1f-4278794661ae 1 Other Other +8ab2bad0-0b39-4f81-a98c-96b32521a0cc 1 Other Other +8ab2f8d4-8247-4119-bc90-f5b09bb79fd7 1 Other Other +8ab30927-e6fa-426e-b1e8-37b3d7196ba4 1 Other Other +8ab309a6-481b-4035-a81a-71f4e29579fd 1 Other Other +8ab32c44-9e35-4d21-8128-6d389ab47441 1 Other Other +8ab335fe-1b96-4bef-b8c5-c7d498c89efa 1 Other Other +8ab35a1c-15e7-4ebd-b06b-f361e7138897 1 Other Other +8ab367e0-c65e-41d0-8a7d-ba52fa1d804d 1 Other Other +8ab37432-b05d-4f29-bc2e-5b50da88126a 1 Other Other +8ab3a454-baf3-4eaf-9a47-434bf8434b22 1 Other Other +8ab3a81b-7437-4e31-bfb4-8fa8c7a7c917 1 Other Other +8ab4114d-951e-443a-8001-3945982b65d8 1 Other Other +8ab41b24-9510-48ea-b5d0-8f03ed34fc51 1 Other Other +8ab43797-b125-4b51-8de6-e854feee530e 1 Other Other +8ab48db3-0315-468f-b1a9-29df3604a70e 1 Other Other +8ab4f7da-3a0a-408e-a4c4-9c0512e334ce 1 Other Other +8ab550ec-5f8e-4877-8b9b-e4a0ebbb6945 1 Other Other +8ab57044-59fa-4c35-a86a-925db6e14232 1 Other Other +8ab583df-7848-4334-9c2e-8b8b6f83d01c 1 Other Other +8ab58c31-9fa6-4ed6-b767-274dcf85b327 1 Other Other +8ab5a183-60bb-4456-991f-d50db6c1257e 1 Other Other +8ab5c68a-fcbf-438d-9a81-834b068df48c 1 Other Other +8ab63ff8-4055-4230-a148-d9973bbf56db 1 Other Other +8ab64578-3be2-4843-9539-a4320907e19b 1 Other Other +8ab716cd-428c-4bba-8240-393439bd2744 1 Other Other +8ab76555-1b21-4570-98d5-478870b4551b 1 Other Other +8ab767e0-22a0-4f76-acb2-d54deb4f53a7 1 Other Other +8ab7db8d-552c-480c-b674-6cc9c1f3f703 1 Other Other +8ab7ffd9-0f6a-4cb5-9cf7-133e01e42ce2 1 Other Other +8ab8278e-6d44-4896-b7b9-fbdb2025ba6c 1 \N Other +8ab832e6-0ffa-11e8-9296-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +8ab84f75-288e-4c18-b111-b3decd682b08 1 Other Other +8ab870f0-f14c-4197-a316-d49137af8817 1 Other Other +8ab878e1-ea7f-4870-99e8-41ffcd75f8b9 1 Other Other +8ab94f37-cf1b-4198-8c94-68a85084224f 1 Other Other +8ab954a3-fcf4-47cc-895e-4d7617bd34b4 1 Other Other +8ab956c9-f3a6-4fa2-9980-0d18375ec665 1 Other Other +8ab96a41-fdd4-4c9c-a456-0de2f25c91cf 1 Other Other +8ab9c4b4-3e88-467f-a9f2-5ae930db7614 1 Other Other +8ab9f2e5-6551-4063-b270-6db6dd55219d 1 Other Other +8aba1dce-3a82-41e8-9f5f-298f7c8846bb 1 Other Other +8aba55ab-432d-4fec-b2f5-e527b31aab2d 1 Other Other +8aba88ac-d4f5-40ba-bb3b-e80be5eb7ca5 1 Other Other +8aba9609-1e5c-4877-9e70-bd78a7329684 1 Other Other +8abbe48e-eea7-4852-aa71-89d68eaf5f1e 1 Other Other +8abbeb6e-5f3a-4455-a6bf-dccad4ed6ac1 1 Other Other +8abc6119-655c-43ac-a034-5ea6ff5bfe68 1 Other Other +8abc8723-620a-4211-b8b5-5167a8550443 1 Other Other +8abca6f1-bc8f-4288-ae24-b72bb3f70b02 1 James Other +8abcddcd-96b1-48f7-923b-f312fe2a9a06 1 Other Other +8abd243d-de66-4d88-8741-e54189df2313 1 Other Other +8abd366c-f3f8-4668-ab3f-43b6f2f8c634 1 Other Other +8abd4004-0707-45cc-a3d3-9625364a34d8 1 Other Other +8abd433f-d8f0-4a1d-b327-f5fb8455e86e 1 Other Other +8abd829d-7b1d-4052-967a-57ca4c8c69d1 1 Other Other +8abd8345-726e-4a08-a41d-1e1cf55ecadc 1 Other Other +8abd86e9-e6d1-4700-ae22-fd582ca9f1bf 1 Other Other +8abda742-24b8-484c-b4fd-95acb63ca906 1 Other Other +8abdbbd9-9f57-48dd-84ea-e136dab64665 1 Other Other +8abe2ea6-1739-4d18-bb06-d89ee8730ff7 1 Other Other +8abe8ac2-5594-4ff1-9d53-e3fb27151d8c 1 Other Other +8abea09a-0fd4-4b96-a316-8f5ecb694199 1 Other Other +8abef762-81ee-4e80-b1e7-c912afa6b779 1 Other Other +8abf098c-20c0-4ee5-b36b-53a187381197 1 Other Other +8abf1567-bbb8-4fe5-8b4b-ab867161f9b0 1 Other Other +8abf15d9-a150-455f-b69e-249ebb224aec 1 Other Other +8abf308e-2da0-4e43-97a4-844bb436276e 1 Other Other +8abfcb0e-e93f-4e5f-b968-5e6f48646a77 1 Other Other +8abfed24-5a54-474a-8386-21b0cb53de19 1 Other Other +8ac0005d-7cf7-4775-9a14-8e741047328b 1 \N Other +8ac0516f-56ca-4e16-bf38-810b5de8db0a 1 Other Other +8ac06df0-d0eb-46c0-8e96-3c040c6455f7 1 Other Other +8ac0744d-3cea-482c-8cf4-27a9f3fe7b20 1 \N Other +8ac07940-15dd-4332-8caa-e272f1182b7b 1 Other Other +8ac08d40-b992-4e08-9f4c-be310d28bb98 1 Other Other +8ac0bf77-707b-4dc4-ab57-942f138b9c0d 1 Other Other +8ac1400b-5645-43c9-82c8-41b05675266e 1 Other Other +8ac16a59-cdb8-4c1d-86cf-07c2ca81c721 1 Other Other +8ac1724a-6daa-4271-8b1c-0c1856663ceb 1 Other Other +8ac19e59-6ab2-4f8c-9e09-29a24fefc48c 1 Other Other +8ac1c880-283d-45c6-93b6-b9a04f4ebd6c 1 \N Other +8ac22f20-9bb5-4563-858f-363d1b66b75b 1 Other Other +8ac233c6-6107-4ffc-9d7b-878c70fbcac1 1 Other Other +8ac35fcb-9a8b-4345-9845-6e4a2c8070f1 1 Other Other +8ac37676-0da6-45de-b37f-d3340e694cd4 1 Other Other +8ac40873-9bde-40a0-8476-65839b3c518a 1 Other Other +8ac4e2ea-081d-46d7-b13d-dad361665fb2 1 Other Other +8ac4e662-5928-43e0-9bf0-0f0ad558bddf 1 Other Other +8ac5864a-094d-4ad3-8951-c77ab5189539 1 Other Other +8ac5cdae-0d60-40d0-8d49-dd2a894b5a14 1 Other Other +8ac5eca0-86e2-4d4b-916d-b3c03aa03dc8 1 Other Other +8ac61ec3-6a9f-4c08-847d-c1bfad97c72c 1 Other Other +8ac66403-5938-4f55-933d-2a1ebb3092e6 1 Other Other +8ac69862-3890-444f-8865-e9738e89fb89 1 Other Other +8ac6b8ee-2cb0-4a9e-8bfd-21a7622e43a2 1 Other Other +8ac6d3d5-4418-4e74-8287-8d3048010314 1 Other Other +8ac6ebcd-a06a-413d-9040-99fb44eaf228 1 Other Other +8ac719d6-6bd8-4d8d-b28c-e2e2d8e53815 1 Other Other +8ac740e0-1f88-4c23-8d7f-4923b4692aaa 1 James Other +8ac76772-4be1-42b8-9f74-3c5e70265b21 1 Other Other +8ac7a9f3-8fe9-43bc-b0c1-47e2e4b25e46 1 Other Other +8ac7d2dd-7a71-464e-b314-db62ecae2056 1 Other Other +8ac7f3dd-b59e-44bb-acfb-9f5a13c8fb20 1 Other Other +8ac7f763-7bee-40a6-9089-c350fff918c3 1 Other Other +8ac814a2-5fa8-4d08-a2b4-dc39616dbc57 1 Other Other +8ac8a97b-6b40-4588-9268-e863f65d90ef 1 Other Other +8ac8dbee-528e-479d-a7e4-bdc242b0fc32 1 Other Other +8ac8f7e6-f518-430d-b60b-bc4272d4c123 1 Other Other +8ac99348-0afa-4326-a84f-19c0b1d4ef19 1 Other Other +8ac9b0a6-8db6-40d8-a468-18f4307f4784 1 Other Other +8ac9b0d1-b647-4080-baa9-19377a125a3d 1 Other Other +8ac9c5b9-3f43-44a1-8a6b-54b1adabc7af 1 Other Other +8ac9e382-27b3-4e9c-9086-abe052efe247 1 Other Other +8ac9e4a7-c986-4c9b-a28f-4552e74c7d1a 1 Other Other +8ac9f464-a579-46e7-941a-e4ed287b37f3 1 \N Other +8aca2204-521b-4cf9-94b0-8428d16e27cc 1 Other Other +8aca2479-fe7a-4130-85f8-375119328a4a 1 Other Other +8aca4a7b-687f-4096-9576-13747620cc44 1 James Other +8aca88aa-550f-49ed-be75-1fdf1eb3bc80 1 Other Other +8aca9019-d6aa-456e-bb22-928b692903f8 1 Other Other +8acac639-0655-43cc-ab37-77dfac891ffe 1 \N Other +8acade15-6fdc-4552-a3c8-4b44ef36cd59 1 Other Other +8acae5b2-d09b-4349-95a0-4fa7b7a69cfb 1 Other Other +8acaf2ed-2f5f-47d3-b4ad-daaa697dd73f 1 Other Other +8acb055e-613a-4b65-8d98-9dc51100bf1a 1 Other Other +8acb1085-fcff-4560-8398-aa71e0ff987c 1 Other Other +8acb1dd3-8915-423a-b19b-ed40f9cb80ba 1 Other Other +8acb42de-00c1-4a9e-8080-b493a52513fe 1 Other Other +8acb7e82-54f7-4b23-9d6f-e24813829c55 1 Other Other +8acba034-2355-4092-b88b-cd8602af3ba8 1 Other Other +8acc0cf0-73fc-4e80-853f-df150a423f7b 1 Other Other +8acc916c-c569-412f-ba50-f1e56a3f2e5a 1 Other Other +8acce016-7193-4eeb-ad18-3b5cd3790037 1 Other Other +8acd67af-eb5f-4c5c-a78c-2cdb852fc2f0 1 Other Other +8acd6fbf-537c-485b-83b4-56fd505087ef 1 Other Other +8acd760b-2188-4d0f-ad1b-f860c5f257ab 1 Other Other +8ace2563-ddd6-4481-b5e0-72ca7c1bb1ef 1 Other Other +8ace4479-1750-4219-8351-6082652302df 1 Other Other +8ace51dc-c2cf-437a-9b13-023e7ee02cf3 1 Other Other +8ace5a29-e495-465f-b7d3-467cc8df1f9d 1 Other Other +8ace83f5-75a1-41c1-b238-8d0ab9ffa056 1 Other Other +8aced02e-ffc0-42ce-ad95-017f9873c7bd 1 Other Other +8aced240-b2ad-479f-a3cb-7393c6de8a2e 1 Other Other +8aced436-3924-4f6a-9eb1-4e0978a9cb30 1 Other Other +8acf283a-2be6-4f31-9940-75e6eb20f7ce 1 Other Other +8acf546a-6b54-4d6a-bcd4-80ffe636f12c 1 Other Other +8acf9011-bdd8-47fd-9b25-f49ba2b24b79 1 \N Other +8acfc5ae-c256-40f0-baca-4853e9b4b782 1 Other Other +8acfc5b7-46ea-42b9-90b9-6563b6a8c031 1 Other Other +8acfe2a5-f6cb-47b8-ae7b-2ec9233e1393 1 Other Other +8acfeb37-3736-4c7b-8527-2bc9bc1548c8 1 Other Other +8acff1eb-3be1-47b3-91a2-03da7b672f8c 1 Other Other +8acff8e9-c2d9-4072-ad84-57779c178f16 1 Other Other +8ad00133-3bbc-4494-a6bf-63bbd11335ca 1 James Other +8ad058f7-b477-4d10-acda-5176fe4fd3d2 1 Other Other +8ad07491-a6f8-44e6-90c7-7175c0815fd6 1 Other Other +8ad07aa4-6546-4fa3-83ef-dcfe64f8ba4a 1 Other Other +8ad0a3c7-dec4-49e6-b49a-833006158540 1 Other Other +8ad0f867-57f2-4e6e-8f9f-60a0cd7c62b3 1 Other Other +8ad152ec-8946-464c-a513-276214a8edcb 1 Other Other +8ad15796-194a-428f-bc0a-6be4cf7cd9d6 1 Other Other +8ad15c5e-d49a-4819-bc62-f3de23e7f395 1 Other Other +8ad1dbe0-25ee-4913-9759-d8294c1b3ae9 1 Other Other +8ad20a4c-5a72-4776-8944-ca8799bc4165 1 Other Other +8ad2107a-ec95-44b6-a794-97a9aaf82c4f 1 Other Other +8ad23f35-03d5-49b5-9133-06c16d36d3de 1 Other Other +8ad26f9d-bbe2-4ec0-9c93-ae307f622655 1 Other Other +8ad2a46d-b153-4309-8703-829b75fa979b 1 Other Other +8ad2b2a9-58a0-4434-89bf-3db30b77e2a7 1 Other Other +8ad2d295-2b5d-42da-aa05-199fdc2e73dc 1 James Other +8ad2f349-1f7e-4226-8104-f44640ecf740 1 Other Other +8ad2fab6-e243-43b2-9a8d-cc4ec95a1436 1 Other Other +8ad336eb-c47e-43aa-9992-1dc907701018 1 Other Other +8ad337fb-05dc-4b33-b350-cd099827de69 1 Other Other +8ad36120-21ac-4f1a-9528-d59200249abf 1 Other Other +8ad362b2-9689-46a9-ab5c-470345c9148d 1 James Other +8ad3b8eb-c3d6-43da-a238-dac6824aed3a 1 Other Other +8ad3f4c4-ca7d-48e1-a755-1419ad304afe 1 Other Other +8ad43c47-86b2-4058-8afd-5c59efa9cd2b 1 Other Other +8ad446f2-243d-4065-bc1b-6800284fa55d 1 Other Other +8ad4745b-df7b-402f-9cb7-11e36940e697 1 Other Other +8ad48190-4fe8-46d0-aca7-8c511450bfc0 1 Other Other +8ad49676-2c4b-4014-902a-5699e1658b0c 1 Other Other +8ad49a3c-e974-4a16-8e6d-579c1b8116ab 1 Other Other +8ad5766c-3c4e-4703-a5d6-e64ab016639d 1 Other Other +8ad5b495-b924-4017-9cec-77361d391655 1 Other Other +8ad5c4c6-c79e-49e9-9d04-2ec3a7653ad4 1 Other Other +8ad60685-81fb-4c06-9af1-bac08bea8bb6 1 Other Other +8ad60e22-a217-47b4-b26c-56370d1332c7 1 Other Other +8ad62f40-c88f-4676-a288-4ce449315dd3 1 Other Other +8ad65d45-96fb-489f-91b1-4fdf24a8cc98 1 Other Other +8ad6711a-1e62-4eb1-8799-be7aedec91ed 1 Other Other +8ad6c566-d9d8-4236-8d9d-c6a564030f26 1 Other Other +8ad6c9a8-0b29-4b39-a6ea-85c3accf5437 1 Other Other +8ad6eddc-410f-40dc-b6a4-d4f4e8acc15a 1 Other Other +8ad6fd23-3abe-4a6f-b764-96ffa26cc974 1 Other Other +8ad739ab-904a-46a8-827c-c5e810c5d810 1 Other Other +8ad7a3c2-76ff-40cb-adc9-e4a56ca7c358 1 Other Other +8ad7d764-639c-496d-854c-4f49b13dd352 1 Other Other +8ad80a4a-ea62-4450-80ca-093212724c73 1 Other Other +8ad80aa3-b9b6-4361-8433-5e38c0b1b3b1 1 Other Other +8ad850c0-a4f1-4e72-a543-583d4da6ed60 1 Other Other +8ad87929-4acf-498f-b578-633b15443149 1 \N Other +8ad8cf2c-4cbe-454d-8101-723306e73b96 1 Other Other +8ad8e54b-9c0f-4a3f-a0dd-730efbc35073 1 Other Other +8ad90141-3d11-40d2-9267-12557e71889c 1 Other Other +8ad935ca-b667-4408-bf6a-d9f26211ef0d 1 Other Other +8ad993ce-8ba9-43c5-bd63-d9346273769a 1 Other Other +8ad9a706-202c-47cb-a8b7-785abffeedea 1 Other Other +8ada2382-26e1-4088-b758-188b6d8b3ab3 1 \N Other +8ada2da7-b977-4fd6-8722-67470a9a8185 1 Other Other +8ada433e-a3c5-4653-9484-6ff961a3d862 1 Other Other +8ada57be-c62f-4dfc-9663-e5df8e2d28db 1 Other Other +8ada5db0-c199-48e1-8973-dedb42a0a76f 1 James Other +8ada7f29-431f-46ef-9a5b-68813ed5c9ce 1 Other Other +8adac4fd-6812-4846-8fb9-ba343d4f131e 1 Other Other +8adb14b8-e89e-49a1-9201-7c907e310be0 1 Other Other +8adb1be9-577c-499d-939d-6902bdfe6083 1 Other Other +8adb32ff-57b1-45ac-bf3f-091c2f749b5c 1 Other Other +8adbead8-d279-46f5-a194-09c689c5a69a 1 \N Other +8adbfc34-16aa-4dbd-92f9-99a5b983bc8c 1 James Other +8adc120e-11f3-4057-8679-2b54755a5bc0 1 Other Other +8adcd9e3-cab5-4088-baf3-762c2ff2238d 1 Other Other +8adce22d-0e12-4aa8-8fdb-35d875e895d2 1 Other Other +8adcf46a-b645-4772-9d36-73067db00165 1 Other Other +8add0410-abfa-4c78-ad4b-8da265aa6eef 1 Other Other +8add4694-94c6-4f6e-82a2-b688f8b9ea3c 1 Other Other +8add4cfd-b378-4d32-ab77-e4695594baa9 1 Other Other +8add6080-3d81-488c-bdc3-b0862757f67f 1 Other Other +8add68d8-d8f5-4580-ae58-98d72f90f4be 1 Other Other +8add8255-5bd3-438c-afe0-593e3630eeb1 1 Other Other +8add946a-2ae8-46e9-9e45-d7d87d82dd47 1 Other Other +8ade2505-a6d8-405a-b904-15f8290fe800 1 Other Other +8ade3f9f-cbf2-47ac-96e0-dcac5a287734 1 Other Other +8adea96e-aa1e-43c6-8eff-fe3ab7cd1eba 1 Other Other +8adeb921-6349-4cae-914c-f146a18f56b3 1 Other Other +8adf5971-90bd-4f6c-bd7f-7f39bf93a2ad 1 Other Other +8adfc50a-9c59-4de7-8671-cce11eef9e9d 1 Other Other +8adfd300-c043-49a8-970f-fc9a91122046 1 Other Other +8adfe211-6ff5-44da-a0d7-ac50e385fb82 1 Other Other +8adfe65b-226f-4e71-83b6-184758b80a06 1 Other Other +8adffd73-0b45-46ae-9c24-cf1e89ae6858 1 Other Other +8ae0868b-2017-4bfa-9db8-30271cb5ea5f 1 Other Other +8ae08e30-6604-4691-9262-f7e0db361727 1 Other Other +8ae0b71a-b25e-4c7a-85d4-84c0db8f9993 1 Other Other +8ae0c222-9631-4835-b9fa-da3cfd3c326b 1 Other Other +8ae1123e-c212-4480-a0c3-d38bdfdd00ad 1 Other Other +8ae142dd-4807-4e1c-9ae4-dcb9efb606e3 1 Other Other +8ae143d6-e604-4649-91a4-32692647d043 1 Other Other +8ae1443f-8cf2-471a-8285-328b5f1bde04 1 James Other +8ae17609-7dda-4549-9b1c-dd89d1ae7c91 1 Other Other +8ae19a4a-0671-409a-aec9-a7233816124a 1 Other Other +8ae1c5c6-14ba-4f17-bd71-39b4866d3ce4 1 Other Other +8ae1f7fb-7dd8-4a3d-b92c-a4581b3c049b 1 Other Other +8ae1fe8f-9cc9-4907-a554-dc2500d5ce03 1 Other Other +8ae2561f-4ca0-4fa6-b0d8-82471db10547 1 Other Other +8ae295b1-0a75-43d0-94a5-f8c0e27ad078 1 Other Other +8ae29faf-4ca3-44a1-9eee-edafcea63be1 1 Other Other +8ae2afcb-fd9d-4587-8575-ea24ca95247c 1 Other Other +8ae30779-c271-4a53-9681-b6e109bc5bbc 1 Other Other +8ae30d54-7b7c-4ebb-b0fa-8d7b0b62b8f7 1 Other Other +8ae32542-b6e5-4d07-8840-8f39915c32a9 1 Other Other +8ae33745-0fb2-4dce-a54f-fa73d9aab3ba 1 Other Other +8ae35a1e-0541-42ed-a358-924ea93341cf 1 Other Other +8ae394bb-6150-4377-ac05-0748e5ecb7bb 1 Other Other +8ae3b073-f127-4af5-89e9-02f2851a7152 1 Other Other +8ae3d76f-8b83-4968-bb37-84c2451342b4 1 Other Other +8ae3d9c0-993e-4413-8329-df72b1c02f4a 1 Other Other +8ae3fe48-1821-4d24-948f-16647914b62a 1 Other Other +8ae5453e-d397-4262-bfc1-134bb8c8311c 1 Other Other +8ae54e6f-a98e-4297-b130-f967da04d987 1 Other Other +8ae5d612-320c-483b-9b8f-ab35308b17bd 1 Other Other +8ae5dc9d-0c34-493f-afdd-678295fbaab3 1 \N Other +8ae69aaa-8374-4120-ae99-827adea141c9 1 Other Other +8ae71327-714b-4b1b-b582-da3990e3d907 1 Other Other +8ae71fb3-4dc1-4f59-9217-6fbb05a2d502 1 Other Other +8ae80565-30cb-4e2c-a413-55548fb93750 1 James Other +8ae82ab2-4ede-4d97-8bd8-03f90cd1a5b3 1 Other Other +8ae84519-4195-4433-8f6d-91e3d0c43e03 1 Other Other +8ae84bbb-9840-459f-b08e-9a5a04c5e5f8 1 Other Other +8ae88d11-359a-428d-92c5-3f331a41bcd6 1 Other Other +8ae8a7d1-f465-4f51-95ca-18bc45af47d8 1 Other Other +8ae8ae6b-f77e-45dd-9b1a-9a5fa2869c9f 1 Other Other +8ae8dab9-9fc7-46ba-9f0f-79c1589a10b6 1 Other Other +8ae92802-1227-4ca4-93c8-7922e6ca67f1 1 Other Other +8ae93854-66d8-45dd-9e06-e23723e2e80c 1 Other Other +8ae9a212-885d-4fda-9182-dbf13eb2a0cf 1 Other Other +8ae9a4e3-76ca-48d3-baa9-3eef70dfc93a 1 Other Other +8ae9afb6-02a7-4068-8a10-884954e8959a 1 Other Other +8ae9f7ce-bb57-4319-b402-0982712175de 1 Other Other +8aea0144-dfaf-4f27-87a2-ba1eb3b7b5ea 1 Other Other +8aea5522-3493-499f-82c5-6a26affc1a1d 1 Other Other +8aea67ba-82f0-4f7b-a0b9-a97ba19a3564 1 Other Other +8aea818a-b412-4b03-a69c-c8aa4feb2aae 1 Other Other +8aea837a-2bcc-478a-8301-271a80ddcf98 1 Other Other +8aeac635-fd73-488b-abbe-22124d4c8e17 1 Other Other +8aeaf036-59f3-4998-988a-4ef05676adf1 1 Other Other +8aeaf7cf-d431-4099-8f5d-132caca5d501 1 Other Other +8aeb186e-b81a-4e18-b777-01c1c55ef2d3 1 Other Other +8aeb4954-160b-4e8a-b435-d0cc5cd66718 1 Other Other +8aeb6a7c-82d0-49e3-8f72-a6b3ea6e906b 1 Other Other +8aeb85f7-9288-484c-9183-a2cfc9096989 1 Other Other +8aebfa7f-83c9-475d-857a-73fda5f47457 1 Other Other +8aec060d-7b6f-4b2d-bfc1-e1427cbb8f99 1 Other Other +8aec45e9-2651-4bb4-995b-5ce2fbeb8b00 1 Other Other +8aeca88b-0563-45e2-942c-d51aebf57220 1 Other Other +8aecd6ac-ddf4-43bb-a404-84d8689fd0f7 1 Other Other +8aed1975-a700-4a6f-b46e-8fda04d82eb4 1 Other Other +8aed2dca-531f-4793-9a54-98b137727177 1 Other Other +8aedde81-fbe1-4f17-9ac7-fc89c390e639 1 Other Other +8aee07ec-ff21-432b-bf07-12d741f3da94 1 Other Other +8aee0aa1-2d68-4366-9b92-4aa50e7a9a45 1 Other Other +8aee0d2a-10e5-497d-8d67-24f18d79737e 1 Other Other +8aee58ad-1f45-417e-a9d8-8288db25b8ef 1 Other Other +8aee7615-9354-494e-b6de-7d5164d5a210 1 Other Other +8aee8374-d6bb-4e27-805b-bc51827caef8 1 Other Other +8aee8b3e-45b6-42c4-a106-837b1e6276ea 1 Other Other +8aeea436-3022-4e85-a04f-45d19f02cd60 1 Other Other +8aef1d16-05e7-48ad-886a-1b7a10e57255 1 Other Other +8aefc93a-ae0b-4cac-bbbb-41b02aa4e59d 1 Other Other +8af002ff-38a7-4bdf-aa6c-3d1cd168d6bc 1 Other Other +8af00a6f-cc73-4fe9-84de-ce41ab0098f3 1 Other Other +8af1273b-6054-4c1b-9d5b-baf4c6152cbf 1 Other Other +8af16b9f-e0cf-47b6-be90-64dc0842d2da 1 Other Other +8af26201-5b0a-4dd6-92bc-aae3da03f613 1 Other Other +8af2684f-96f4-4cdb-b36c-693c362367f6 1 Other Other +8af27562-016e-479e-8624-5b10852d8aaa 1 Other Other +8af293ec-5bbe-4c66-a7cc-635939fc77cf 1 Other Other +8af29529-a3ff-4ac6-a4de-a672ba1926f9 1 Other Other +8af2ac3e-13af-45cc-b1f8-d55ce366d56f 1 Other Other +8af2b467-0769-42cb-aba5-1491ff2701ce 1 Other Other +8af2ba47-20e5-4381-ad3a-9ae3f01251a4 1 Other Other +8af2bfe8-b44b-4e21-95ac-aba549bbed4d 1 Other Other +8af30a95-6e28-4b71-ba6b-cb8677c34453 1 Other Other +8af36651-fea2-48a7-9377-bafce85694f6 1 Other Other +8af3b9b1-0ff7-49d0-abb4-764ac5501443 1 Other Other +8af3e712-9f5b-4bf2-ac73-a04256ad2a78 1 Other Other +8af4a76c-956a-4278-93a3-bf03feab965a 1 Other Other +8af4b6ee-3da6-4aff-b28f-c00377bb089f 1 Other Other +8af4bc32-d8ed-4980-b248-a134b097a71c 1 Other Other +8af4c6f3-832c-4406-8a16-be5785986f0e 1 Other Other +8af4cce8-d4e8-4166-8d0e-2fc1af396263 1 Other Other +8af4d1ba-5598-4388-9702-2d8f01d27ac5 1 Other Other +8af4e01e-98e4-4cd4-8fb0-fee8e66246f0 1 Other Other +8af4f787-6b6d-4195-b5aa-edfab31e1895 1 Other Other +8af55461-7a5e-4218-95fd-f224e0c85eb0 1 Other Other +8af59390-47b7-4824-bc63-ac741d0a4855 1 Other Other +8af6617a-b57e-4d0d-8f07-c500dffcd83e 1 Other Other +8af6c16b-9627-4ea6-9fa7-9f35d19141c1 1 Other Other +8af6e70d-6f70-4c6d-96ea-ca3cbaaeeb28 1 \N Other +8af71bbb-d789-483f-bbba-8f229994a931 1 Other Other +8af73891-d1c5-4e94-be32-55e98780ebd6 1 Other Other +8af74552-f7cb-45e0-be29-d596d9cd20d5 1 Other Other +8af74d4c-eec2-44df-9522-370f94ef24c4 1 Other Other +8af7d1db-f8b1-4a58-8e65-5a35b72ff505 1 Other Other +8af7d607-8ea9-43a1-ba59-3f3651c94c24 1 Other Other +8af80eea-12fe-48a4-b7dc-96e734299819 1 Other Other +8af81c33-a347-4fd7-ab18-3a1b81c5035f 1 Other Other +8af8513d-f500-45be-a946-0dd1c1f0b6ad 1 \N Other +8af8860b-8f34-404b-abc4-efe351eb5c99 1 Other Other +8af889ef-5aa5-4a55-98cd-767d10933d4a 1 Other Other +8af88c1c-1e73-456b-9861-37fae64da349 1 Other Other +8af8a528-0410-4a7d-83bd-67f9b1819f24 1 Other Other +8af8d3b6-e372-4475-8466-b920d0f7481e 1 Other Other +8af8dc3c-16a5-4433-8032-2e10fb5589d2 1 Other Other +8af8de8b-e470-4985-9d6e-6728958efef1 1 Other Other +8af8ed64-21f3-4c93-abc5-944e3108b243 1 Other Other +8af92e09-ebff-4c55-b834-c34bcc07f6c0 1 Other Other +8af97067-5d05-4302-ae60-0708c3e047ae 1 Other Other +8af99060-c84d-4edc-9cbb-256479bf4dc2 1 Other Other +8af9916d-095b-405a-bb36-d875ab07afb8 1 Other Other +8af998de-5b7b-4bc3-a6ea-87b90f97c97f 1 Other Other +8af9da02-0400-47f4-857d-c50e14c958f4 1 Other Other +8af9ddfc-bbb1-4dbd-bc4b-a705d94bd85f 1 Other Other +8af9e058-ede7-4406-9b11-a1e5eeb112bb 1 Other Other +8af9f408-872d-4eda-816f-5002619eca70 1 Other Other +8afa1226-6812-43b4-8d62-2bc6eaa212e4 1 Other Other +8afa3494-149b-4ee8-abdf-d5d076b9efe9 1 Other Other +8afa3c61-c6e5-4581-8f17-4da72092af55 1 Other Other +8afa6a47-55ab-4a3f-b625-89cf96d00eb8 1 Other Other +8afa82c9-5573-4921-970f-336ad0703f1d 1 Other Other +8afaad70-461b-41d3-b97d-6b04ae714250 1 Other Other +8afacf8b-32ea-45ed-8543-af854b749bcf 1 Other Other +8afb4b63-3e0c-4c61-b0bb-b8c2c1196030 1 Other Other +8afb4ce9-4957-44b3-82a6-3869724ac836 1 Other Other +8afb6543-604d-452a-86ca-154f7c43217d 1 Other Other +8afb75de-c08e-4b55-969d-6c425dc26506 1 Other Other +8afbab7e-3a42-4e42-9a7f-1bd9f87f4267 1 Other Other +8afbb4ff-0905-49e5-9aac-1be1d66526e9 1 Other Other +8afbe863-b0cb-4652-bae8-d966603e3560 1 Other Other +8afbed20-aee5-428d-b8fd-54cd7c54412d 1 Other Other +8afc310b-4bc4-46e0-a3ab-a950468c8336 1 Other Other +8afc7319-9d84-4067-a3e1-b0884c6bcbf7 1 Other Other +8afc857b-2586-4dcb-a005-7c59f3691c1e 1 Other Other +8afd54ff-b1c6-4eaa-a9c4-1a07338ff3a9 1 Other Other +8afdc8e9-90ec-4148-8a83-7fbb511317a6 1 Other Other +8afdd50a-2f28-4f0a-852c-a6112ee1a298 1 \N Other +8afe1336-375d-4749-9e00-2dd5f0f59ee8 1 Other Other +8afe212f-3a69-4fa9-8205-f1a17799d012 1 Other Other +8afe9602-d475-4f5a-bca0-3ef156867adf 1 Other Other +8afe9d64-60a8-4fed-933d-edb8769acff3 1 Other Other +8afed848-3033-4267-abcc-a03121547e82 1 Other Other +8afedf1d-6840-487b-ad8c-a2bd1f175222 1 Other Other +8aff26f7-ac65-42ed-8a2b-e5581c4a8bf3 1 Other Other +8aff630b-f81b-4f17-9e3a-9fc84ed53f50 1 Other Other +8aff7446-07d0-4b1d-add9-7856730ac5d0 1 Other Other +8affa9ac-0ceb-4d44-b07f-da63f7c5e882 1 Other Other +8affb31e-610c-4d48-94b6-1861bd36a5d5 1 Other Other +8b0037ef-b5a8-4a3e-be5c-78f7a9f02ddf 1 Other Other +8b00c525-9699-4f17-b527-d7f2b1e7d04e 1 \N Other +8b00ce28-3881-4bcf-af7b-1927cfce062f 1 Other Other +8b00d93e-23d8-483f-a48f-51a658ff47ee 1 Other Other +8b00fd7b-a932-4395-815b-bc2d40ed5ff7 1 Other Other +8b011265-48a1-456c-b54a-4f8b472bff19 1 Other Other +8b0152b0-e158-408f-9a55-535d09b3bbb6 1 Other Other +8b016336-a352-4492-b23a-0556c8ddcda8 1 Other Other +8b01af7b-af8c-4162-9335-8447c5d92f9e 1 Other Other +8b02aede-71fc-45a8-8faa-5c0c0ac91f40 1 Other Other +8b02b680-e080-4ba2-9ce4-da5c43a88105 1 Other Other +8b02ed75-e2ee-4b25-a749-7b10bc55b5cf 1 Other Other +8b0306a2-5618-4081-877c-bd9fe4dac953 1 Other Other +8b031c7d-6be7-4e62-8dab-a66710fdfb88 1 Other Other +8b032bef-b880-403b-80ee-f90ae70f8c66 1 Other Other +8b035750-83df-48f3-b1a1-054f76557e13 1 Other Other +8b03593a-3ac8-449b-b1d6-57a4306b5539 1 James Other +8b035f72-6bc4-4848-89bd-dd1f71ad3251 1 Other Other +8b036146-9659-452e-b0af-d5781ce358e2 1 Other Other +8b036398-2fed-46d5-9f12-a42e942ec486 1 Other Other +8b036537-da3e-449c-a6ea-3ac9d182050d 1 Other Other +8b0397b4-ba62-4c17-b0df-dd8815d8d4bf 1 Other Other +8b03bc8a-ffbe-410e-a7b4-46f4f7586667 1 Other Other +8b03ebdd-4d99-4124-a4d4-de7a40f2a648 1 Other Other +8b041d7d-2793-4bfa-8688-27eeaddc00c7 1 Other Other +8b0480f2-de4a-4544-a578-1a03efa0daa7 1 Other Other +8b0487e1-0bc2-47ae-916d-ef5b68c5a380 1 Other Other +8b04a21b-0a58-4ec9-b74d-53f3bbf402f6 1 Other Other +8b04aaf2-d6d8-43d7-aa0c-f7f612a65654 1 Other Other +8b05060c-e3a6-4b99-8dc0-c1d652b786c9 1 Other Other +8b050eef-0ec2-4d4b-809b-f9f858b9a19c 1 Other Other +8b05225b-20f3-408c-b372-cf4bfd952246 1 Other Other +8b054617-21fb-4f2a-b7c3-021bffa03558 1 Other Other +8b054737-41af-4706-a291-04ac7d893d10 1 Other Other +8b05486c-df0e-4e24-b884-3c6e4c82ef7c 1 Other Other +8b055f16-e333-4331-af86-03cfec60b90b 1 Other Other +8b056dad-a65e-4392-88a9-86b98d60f829 1 Other Other +8b059cd9-d6f8-4c07-9919-1c76b28017e4 1 Other Other +8b05c249-baeb-4041-b7fc-b78f02fb0715 1 Other Other +8b05c81f-acd7-4b0e-8df3-558dfb259c1e 1 \N Other +8b05cee2-128c-4c2b-b437-25e6dad2a804 1 Other Other +8b05d6ef-8882-402c-9d2f-1b81d15c2043 1 Other Other +8b05f346-1512-40c5-8de7-bf1d98911614 1 Other Other +8b061c79-20a5-49e8-8465-836e19c4f314 1 Other Other +8b0652d8-e871-4d02-bad8-30989cc740d5 1 Other Other +8b065828-a99d-4aad-85c0-3a5cb8b95128 1 Other Other +8b06652e-efd0-4e9a-ae66-a4daae3ccc13 1 Other Other +8b066d45-0472-40f4-8fb2-1be59f962a53 1 Other Other +8b06a6d7-f44f-43be-be3f-d23da0875ac1 1 Other Other +8b06b5a2-f95e-4467-9602-06a45a9b5f9b 1 Other Other +8b06d0a0-c971-45da-9267-461c1f7e39a5 1 Other Other +8b06ea73-639d-401d-99a6-7eb0095459b9 1 Other Other +8b0750d6-c91a-442a-a30b-9ee81e604fca 1 Other Other +8b075321-1058-4f74-9ca1-2f7427299532 1 Other Other +8b0839b9-13c3-4f50-8ef1-f329959d54bf 1 Other Other +8b083f25-018c-4e37-8dab-7b110f221f23 1 Other Other +8b0841aa-29b9-4429-ad97-d6044d118aa3 1 Other Other +8b0886d2-b28b-40e7-bbed-15519b79b95b 1 Other Other +8b08c054-84e9-4fff-acd3-b1795460e701 1 Other Other +8b08dba0-0491-4059-9328-59fd87daac3f 1 Other Other +8b08e698-e082-4628-b161-a10e64eac61f 1 Other Other +8b08f02f-1dc6-416d-9c53-c2a7d19eadd3 1 Other Other +8b090285-fc8c-44d8-bc70-af0640ef1ae8 1 Other Other +8b0914ef-aa5e-433b-b629-69620fdb4550 1 Other Other +8b09283a-3e67-4a73-9805-dd25fe34539a 1 Other Other +8b096809-741e-4303-ab05-691e9cd03b31 1 Other Other +8b099eef-05d4-4d1e-b217-179d390be24c 1 Other Other +8b09a64c-c645-472d-94b0-fcecaf9f449c 1 Other Other +8b09bcbf-e711-4223-8ad9-40ff134f1e58 1 Other Other +8b09c733-7f37-4716-b525-e565764637d2 1 Other Other +8b09dada-b493-4d15-9631-445203210066 1 Other Other +8b09e883-f420-4a82-8676-d003ce74e62e 1 Other Other +8b0a0f59-5b31-4e58-804b-05f5669c0024 1 James Other +8b0a1d2d-1e1c-4d6b-9748-d3863c102168 1 Other Other +8b0a2642-3c78-45fa-8650-c2133ce45d06 1 Other Other +8b0a556d-b805-4c77-bcd7-93c6b45b754f 1 Other Other +8b0a56ed-482e-4b11-b566-07a7d5fd8383 1 Other Other +8b0a74bc-d92d-4a8b-a7ae-5c3bc8a9ccfd 1 Other Other +8b0a7719-d2b4-43b5-b5cb-58ab73a6a07e 1 Other Other +8b0a82df-42eb-4266-a430-ab9eec658b29 1 Other Other +8b0aafa7-98ef-43c6-babc-85bf9ae0da65 1 Other Other +8b0ae8df-9b92-45e8-af68-19a8021c502c 1 Other Other +8b0aef0d-0795-453a-8066-7a681dcc8476 1 Other Other +8b0b1294-511f-48a9-a4dc-86816bb1c184 1 Other Other +8b0b1b2b-d1ad-401b-8f3e-76e385b0c130 1 Other Other +8b0b8160-40e3-4c35-bd2e-dec2540d566d 1 Other Other +8b0b962f-2fc5-4221-b82d-26cb86fc18cc 1 Other Other +8b0be8ff-c8b5-4548-a49d-479a164ff2c8 1 Other Other +8b0c35c6-0379-4046-999a-16f30c956590 1 Other Other +8b0ce23e-a78f-426e-a522-1c8e8e3b4043 1 Other Other +8b0cf64b-9705-4b8d-ad70-34a2f6031010 1 Other Other +8b0d0aa8-ca48-4c66-b74b-837463c1157d 1 Other Other +8b0d1461-91b7-47d2-a58d-422381986282 1 Other Other +8b0d1494-17d4-4791-af59-9559689c93bb 1 Other Other +8b0d337e-fe1d-45ce-b0d2-f0cab705b71f 1 Other Other +8b0d4f9f-5072-4e2a-9385-b702e8df1428 1 Other Other +8b0d6602-a51d-4c8e-b9c8-907ae32c3d13 1 Other Other +8b0d77f9-91e5-41a8-ac37-cc5d7a189700 1 Other Other +8b0d8ff6-74ed-4eb8-bde0-094c72f769fd 1 Other Other +8b0db5ba-16e9-48f7-b807-4027a4428530 1 Other Other +8b0dd965-816a-467f-9300-22dab071ee4d 1 Other Other +8b0e0ecb-fca5-4c2f-9f4a-47023e90700a 1 Other Other +8b0e29ae-1f13-417c-bfbb-dcc98d548b39 1 Other Other +8b0e2bb4-194a-4a6f-ad25-04109e485839 1 Other Other +8b0e39c2-e5f5-4c2d-be5d-5dce715a54bd 1 Other Other +8b0e3b6d-0061-45bf-a3ca-0629fd79429d 1 Other Other +8b0e9469-3ec8-477d-a807-34e7d34de613 1 Other Other +8b0ea359-7f4a-402b-91a1-75d18035ae42 1 Other Other +8b0f5e27-7558-4735-8cb4-a34dfb9d1b19 1 Other Other +8b0fc432-f057-4e3b-a4f7-8a913fcae8a8 1 Other Other +8b1007c5-b11e-4bfd-9582-d2470b3f70f9 1 Other Other +8b1035c5-6c4c-466a-8832-6a1a4a34dfbc 1 Other Other +8b106c54-7608-47f8-b385-d3cf38937991 1 Other Other +8b106d89-65e0-4cb0-90a0-1324f70a4176 1 Other Other +8b107ed9-5ae0-48b8-8f80-6271b22cfbda 1 Other Other +8b108a41-6574-4032-aaa9-3b600d812913 1 Other Other +8b10a2ff-c7b3-4e7c-807c-690deeee21a1 1 Other Other +8b10be0b-251e-4b7b-837e-6f7d1989be30 1 Other Other +8b10c84e-1f1a-44e9-976e-6763520e95e7 1 Other Other +8b10ee01-428a-45b8-8c13-b41fb2187614 1 Other Other +8b111834-afd2-4898-b597-86811b1451c8 1 Other Other +8b112c9e-a9e0-4eb0-a67e-b442e2d7d444 1 James Other +8b113d39-462e-4a3f-8d85-245c4ef50619 1 Other Other +8b11a862-007f-447f-9da5-1871bb987f55 1 Other Other +8b11bc5f-58eb-4a6c-8066-0c7002a2caed 1 Other Other +8b11d9f3-f12f-47b9-89be-7982cdf79a18 1 Other Other +8b120dc0-75c7-4c94-8b4c-6339cbbe67ec 1 Other Other +8b129e76-8234-4796-9bf4-34905ad94cf5 1 Other Other +8b12b0a2-c876-4200-9d0e-d078364df4c5 1 Other Other +8b12d6ea-1b09-4501-b1b0-df392a05442d 1 Other Other +8b1336a9-795d-4037-b6f7-19206f1d8f81 1 Other Other +8b13421c-7302-4563-a6aa-0314ad6d253d 1 Other Other +8b136f94-9c0b-4378-90e5-bf61cc65875a 1 Other Other +8b1374be-80e1-46b3-b29f-c4a4e01164f8 1 \N Other +8b13774d-9e66-47ae-800a-2b39cb86395a 1 Other Other +8b13a6fb-d188-4ed4-b4cb-58ae6d2940cd 1 Other Other +8b13b148-1b12-4e59-896a-ad305a7b7345 1 Other Other +8b13bef9-34be-463f-933a-8354526a4468 1 Other Other +8b13e20d-6525-45a7-ae67-487bc5cfe2b0 1 Other Other +8b13f610-8af4-4137-bfa7-c7b956f60aff 1 Other Other +8b142f50-c08f-4e54-b769-2aaf6305aa84 1 Other Other +8b148d63-e1d1-4431-8ae1-9b5e0d9f07cb 1 Other Other +8b14a26b-b549-47b6-8ded-a17b63f4b3f8 1 Other Other +8b14c34e-8de3-41ec-9f9d-aac16ccbb3e4 1 Other Other +8b14d3d5-c1bd-4d83-aa94-c17d47d1f52f 1 Other Other +8b15239b-9a7a-4de4-a9d7-5cb2ba1f5ded 1 Other Other +8b1548c0-2890-4f3f-a510-6b4177972ec9 1 Other Other +8b154bd1-c79d-40b5-a454-908235211f11 1 \N Other +8b15aaed-4cf1-4a35-abb6-b7946d16cb27 1 Other Other +8b15cd02-94cc-417b-b263-6c72aed04168 1 Other Other +8b161587-d11b-4ef3-9464-f7cb88295c5e 1 Other Other +8b163096-94fd-4837-8757-e31970fe36be 1 Other Other +8b164c7f-3963-4d41-87b2-df701472352b 1 James Other +8b166029-c699-4032-a759-e5cc955a4f0a 1 Other Other +8b1664bd-a0fb-44c6-9cbf-f70f26ad889e 1 Other Other +8b166bee-ed3a-41d4-8ff3-6433cecf6219 1 Other Other +8b16837d-b3b7-44f7-90aa-0eb6ab29f383 1 Other Other +8b1685ab-6bf6-413a-9671-903be1437f5d 1 Other Other +8b16a209-db14-410c-9fd5-15ef8f80645d 1 Other Other +8b16b8e8-3267-4e72-ae82-ba47e0545a06 1 Other Other +8b16c60d-9a4c-4c15-b2f2-3b70fac9acc8 1 Other Other +8b16d574-d3a2-44f5-adc2-e8596337be7a 1 Other Other +8b177d9b-c3c4-4a80-b834-5b56acdf6039 1 Other Other +8b17f1ab-697c-47f5-ab97-88b866edcee6 1 Other Other +8b17ff11-136a-474b-83f9-17f78166bcd9 1 Other Other +8b183b40-ff99-491d-b8be-eab8e9d50018 1 Other Other +8b183f67-e517-45aa-84f5-015e6b320b88 1 Other Other +8b18e4b4-e8be-4e80-a0bc-268718a995d2 1 Other Other +8b19689f-4bd1-4218-aa6d-de19a94109ec 1 Other Other +8b19ccb6-f2f5-42a8-8451-690a2a200b14 1 Other Other +8b1a6ec8-44c1-4188-8b31-b0d53684f986 1 Other Other +8b1a701f-5781-484e-b6e4-5c57e8ac3237 1 Other Other +8b1a9267-adc1-45b6-b9fc-69d07f963912 1 Other Other +8b1a966b-8622-44da-93f6-25b476c80e12 1 Other Other +8b1aa506-698d-43c4-a80d-f666b29aa6ce 1 Other Other +8b1ab83d-f8d1-43f1-8d4e-619698761150 1 Other Other +8b1ad2bb-d947-436e-a630-522ef4cea863 1 Other Other +8b1af487-61b8-4620-b9e9-e2ca1f4230cc 1 Other Other +8b1b0f33-d056-46ea-b50a-f1a09efcf4dd 1 Other Other +8b1b1855-8ca2-4d98-958e-fb145edf9b97 1 James Other +8b1b6226-62fa-45ff-a822-004024c68cd4 1 James Other +8b1bcc15-b087-45bd-8478-8eaee1bedc03 1 Other Other +8b1bd917-3ba8-47ba-b13c-059d98133312 1 Other Other +8b1bfd77-e427-4a5e-8ade-172c1ffff909 1 Other Other +8b1c1fe0-8752-49eb-b6f5-1235ce44fccb 1 Other Other +8b1c345f-cbf4-4aaf-a473-2f45bf4e98af 1 Other Other +8b1c688c-fe0c-4d49-87bc-462d76dba4f2 1 \N Other +8b1cf25c-a428-4964-9f8b-f36e1be4dc32 1 Other Other +8b1d279f-e857-4dea-a66b-66c20d342597 1 \N Other +8b1d7405-b5eb-42be-bcb3-af2f6bb7b6e5 1 Other Other +8b1d797a-fbee-4649-87df-079bb0f5d9f5 1 Other Other +8b1d8b9a-8e96-4b8c-a250-d1cacddfd6b0 1 Other Other +8b1eec36-b575-469e-9207-bf3d85ee7528 1 Other Other +8b1f06ef-cdc5-48f6-90c3-f570d2e20583 1 Other Other +8b1f2585-511b-41d8-be83-9f27c912e3ba 1 Other Other +8b1f33fd-5746-4c39-bccc-8a32e9d10784 1 Other Other +8b1fa90b-fd3b-4fce-8820-a6663e56bb2e 1 Other Other +8b1fb682-7648-440d-9972-b227da25d062 1 Other Other +8b2005ab-9e96-4ff7-a3e9-0b04d4317073 1 Other Other +8b200bbf-e933-40cc-ba83-94c5deaccbf0 1 Other Other +8b203ea0-72ba-478b-892d-5455e20f15e3 1 Other Other +8b204b72-d7ba-46b6-a7de-d9f5a04e9ed5 1 Other Other +8b20d35a-9e6f-4b0e-809b-7626ca7262cd 1 Other Other +8b20daaa-1c5b-44dc-ac55-d72acd413240 1 Other Other +8b212191-67f1-48a2-be11-c2e4c84759df 1 Other Other +8b21488b-6cd9-4589-952f-126629d57200 1 Other Other +8b214dc6-f4fe-406e-b962-af252708e8ba 1 Other Other +8b21b3e8-57a7-4a91-8822-e17996293b92 1 Other Other +8b21c975-d71a-4701-82e0-ced09a81a8c8 1 Other Other +8b221c5c-6189-4f47-8e5a-9f5c13069fff 1 Other Other +8b2225b5-c318-40e0-8e69-bfa11a60fd7c 1 Other Other +8b228013-bd15-404f-b950-d7cddc3edda6 1 Other Other +8b22e227-e625-4f58-9f0b-b7566ac13052 1 Other Other +8b22f622-8636-41d0-833c-2cfc98691eae 1 Other Other +8b237911-15de-4277-be85-0412b49c1864 1 Other Other +8b237f77-bc83-4bca-b0e8-9ac52eed9eb7 1 \N Other +8b239352-fc8c-4094-87c0-6b38d61b862e 1 Other Other +8b23a907-2c21-4092-b72b-f731617cc5d8 1 Other Other +8b23f59f-f02e-423b-8df2-89682408aec6 1 Other Other +8b241c6f-702d-4603-b32c-6a186fd71cbc 1 Other Other +8b243fb8-92ba-4982-9b48-ee883f6254d5 1 Other Other +8b2441b7-f7c3-4249-9a3d-767bd69c96a4 1 Other Other +8b24d22e-1ca9-41ec-a4df-67bdf081c6af 1 Other Other +8b2525a8-b377-4901-b8e9-046fd3dcf510 1 Other Other +8b255445-049d-4018-9650-44c9a0fb74d9 1 \N Other +8b25b802-d9e3-44c5-a00a-26b5969653af 1 Other Other +8b25c24e-4ee4-480e-92e6-de5251f64f1b 1 Other Other +8b25dd5c-82a8-401e-a44b-8d65e7ac31e2 1 Other Other +8b25f0aa-9dfe-4029-a0d1-ba6c858c8ad7 1 Other Other +8b25f20a-c875-4ebf-8541-d1d83e50967d 1 Other Other +8b25f58a-9a8c-4508-83a5-e038cab031a8 1 Other Other +8b265f67-8430-4a39-809e-4f8c3b095aee 1 Other Other +8b266912-2155-4c74-8cea-ca145396ab58 1 Other Other +8b26ce74-631f-491e-a16b-2a08a45cb8b1 1 Other Other +8b26d7df-71c6-46e9-988c-5e615ede5659 1 \N Other +8b271871-7575-4daa-8d66-68090957ffee 1 Other Other +8b275593-a45b-4fbd-b722-8998e1f048db 1 Other Other +8b278248-ee26-4973-82a8-d1d100bd67e8 1 Other Other +8b27c7ca-7828-45c1-bd9e-153208419eeb 1 Other Other +8b27cb29-d2fb-48e2-9e9d-f40a5a211831 1 Other Other +8b287042-c51e-4585-a4f6-e5dd03d300c0 1 James Other +8b287dcf-00ea-4b48-b8d4-2fda64e34264 1 Other Other +8b28e1ad-7c1e-4ce5-9c60-9750e18f08f8 1 Other Other +8b28f31b-219b-4745-8339-19316045d048 1 Other Other +8b294289-4d35-4e46-b754-511224e7aa2b 1 Other Other +8b295a15-c21a-4868-bdc4-f449eec92b68 1 Other Other +8b299f36-1681-469d-b3cd-cc2030dcdf3c 1 Other Other +8b29cd2b-1e5f-4e9c-bb54-44e1b0333269 1 James Other +8b2a015a-8591-4ef2-afad-8c2dda234861 1 Other Other +8b2a0770-0b18-43c9-bb66-66509061f6fe 1 Other Other +8b2a383e-9c62-11e7-92e6-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +8b2ae651-ae44-4f1d-a8f9-43d6a1236b6d 1 Other Other +8b2ae6e0-3b66-466d-a53a-2eb6d2620bc0 1 Other Other +8b2b41de-0be8-11e8-8b08-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +8b2b881f-7ccd-4fce-bbea-fcc71894232e 1 Other Other +8b2c0949-ffa7-4c6c-beba-64734ea17354 1 Other Other +8b2c1594-a7be-472a-8a3e-e05f63b48639 1 Other Other +8b2c4343-2c53-430d-bd64-24f4d5b26cfe 1 Other Other +8b2c811a-0355-4b8a-a272-d4a899de1844 1 Other Other +8b2c9fe6-c615-4070-9674-202aebd9dcfb 1 Other Other +8b2ca0c5-4d00-4c67-8d99-f707e48b5c89 1 Other Other +8b2cde6d-0225-4805-ab51-f9dbd29e9a69 1 Other Other +8b2ceb49-e913-4b2c-9547-5dc9a1469726 1 Other Other +8b2d1c0e-190b-45fa-9ccf-573291031c43 1 Other Other +8b2d9ef2-6c4d-4efb-85ac-893acb351b18 1 Other Other +8b2df65b-7596-48c8-8724-862c1551ef6f 1 James Other +8b2e2e42-7327-4ca6-b53e-32647415a5e1 1 Other Other +8b2ebde0-99be-4799-9d8f-d7b3b6b69d06 1 \N Other +8b2edfaa-6fe9-4321-969f-c7f5d7dad9ce 1 Other Other +8b2f9c12-acb3-47fc-8067-9ec46c0ccd5b 1 \N Other +8b2fa270-0d72-42cb-93ac-5ff0b1196737 1 Other Other +8b2fb91e-df89-4146-b106-c2231f6bc8d6 1 Other Other +8b2fe216-4fa7-45bf-b51d-a52a86ddb61d 1 Other Other +8b305879-fb26-4183-881b-9a6dd4f1ffef 1 Other Other +8b30edfa-197e-43fe-8cc0-2b21432e542f 1 Other Other +8b30ffd2-111d-4c09-b097-88f26dc109d1 1 Other Other +8b313763-ddf6-4d3f-9516-bb10c69fdeb4 1 Other Other +8b313d7e-5bd2-4172-9684-0f754a426370 1 Other Other +8b319fe4-4983-4c6c-9e70-4ec0c54ef52c 1 Other Other +8b31adfa-6aa9-43e3-86b6-d766c8a8b201 1 Other Other +8b31d51e-303e-4d82-8676-02297c7f5230 1 Other Other +8b31fa33-9455-41cf-94f0-68e1bf4df9dc 1 Other Other +8b3208f3-9a50-4379-b2c3-8eb499b30672 1 Other Other +8b3234ab-795e-49e2-869e-994f96bed166 1 Other Other +8b324eb2-b29c-42f5-bf78-cf4c41833df4 1 Other Other +8b3255f0-47f8-4414-9440-10927956792c 1 Other Other +8b3259ec-e541-4ed9-9ef6-37ff16259a8e 1 Other Other +8b326398-3f7a-48b3-a84f-587a59ad8cae 1 Other Other +8b3283d9-a2a7-4b75-87fa-54a517e1c624 1 Other Other +8b32f950-48f1-4b48-999d-62f8e9273b5d 1 Other Other +8b32fff7-101a-4cbb-8c42-8bb260d22732 1 Other Other +8b3313d1-8451-479f-aec5-c8488d56c318 1 Other Other +8b33bd72-dad8-4dc5-ab66-c54a1892e96c 1 Other Other +8b33d27d-edc3-4d9b-b1e6-b811fd11420b 1 Other Other +8b341095-004b-4a06-92bc-508d4c70f86b 1 Other Other +8b342793-92af-4c90-9552-dd29f694632f 1 Other Other +8b344a7a-7922-435e-ad9c-0fa57c3da2f3 1 Other Other +8b3494c7-92ea-4b6c-b263-9712c13f8f4c 1 Other Other +8b34bd1a-784e-430b-bfb6-dd9fd690b458 1 Other Other +8b34cfaa-06f9-4641-ba94-a6a0c3de0356 1 Other Other +8b34f74d-61df-4cf0-83cf-6e81ad8d1274 1 Other Other +8b350f7a-4981-475f-b6af-0e8fea1d9a56 1 Other Other +8b351fa6-0a21-404a-a363-c8813b3e6944 1 Other Other +8b353d05-6e12-43fc-ab37-0074fea37220 1 Other Other +8b3542a3-a858-4f5d-9ecd-2adada5771e9 1 Other Other +8b354442-1db6-4ffc-a7cd-825193174595 1 Other Other +8b357276-0623-444a-bc3f-29b7625e48d2 1 Other Other +8b35bd2c-c353-43ca-9cf4-990831067b78 1 Other Other +8b35d20a-b2a6-4f43-b4c3-1578b8446cd4 1 Other Other +8b35d4ae-86ba-4d4c-aa8d-a55f4e70fa9a 1 Other Other +8b35d772-f74b-422b-8eb5-72a493305517 1 Other Other +8b35fb4f-6cc9-464f-8d30-e14fa96ccc57 1 Other Other +8b362ac6-2ddc-410d-83d6-491552781b89 1 Other Other +8b366129-0f69-4348-8996-ad4265d5c489 1 Other Other +8b36a318-d0ec-4986-b3c0-35361d719fdb 1 Other Other +8b36b651-1d01-4e57-81d3-53cd56322e75 1 Other Other +8b36d758-a5b3-4cd9-993b-d9e662396fdb 1 Other Other +8b36e0bd-b12e-464e-9a7c-a05b0cbd095c 1 Other Other +8b36e32f-140e-45ff-aa21-ee877ae14689 1 Other Other +8b37468a-20ca-4087-ada9-b103048ac7ba 1 Other Other +8b379777-c95f-4b2d-ba9c-f2f4e507fbc8 1 Other Other +8b37b4cb-76b4-4921-881e-43e0cf5075de 1 Other Other +8b381ef7-b10d-4421-9398-a755170728a3 1 Other Other +8b38212a-14bb-4e87-9abe-58820bc64b79 1 Other Other +8b383b71-4bcd-4e4a-9509-bc745d534d88 1 Other Other +8b3857e4-6828-4775-a396-627a791e2283 1 Other Other +8b3865c0-7744-4c60-ad54-22e95ef12258 1 Other Other +8b389a49-50c2-4ada-826a-6e23db044d9d 1 Other Other +8b38b4c4-7499-43cc-b00e-696f033883fb 1 Other Other +8b38b50a-8d3c-40c7-bb53-6225bc0df1ee 1 Other Other +8b38c526-98f9-4299-b1b6-7701e6e6891c 1 Other Other +8b38ce25-2a86-4c7d-b1de-1670a0efef50 1 Other Other +8b38fae9-ed1b-411e-b259-7f77d15eb7fc 1 Other Other +8b39658d-3a50-4ee1-924e-7b3036fbc31e 1 James Other +8b3976ef-2ff8-49b2-97a4-59c26add96cf 1 Other Other +8b39cebe-945c-40eb-981f-dbef5ee46023 1 Other Other +8b3a41c9-090d-4558-94c8-f02101c14d10 1 Other Other +8b3a5a8a-7c78-4742-a306-4e928571f7a0 1 Other Other +8b3a6353-0686-42cf-bc5e-77bf8512e149 1 Other Other +8b3a89c8-15cb-4111-9ba5-3e92c17033be 1 Other Other +8b3b502b-63f9-40c4-abbb-741d82d19549 1 Other Other +8b3b6abf-484d-4791-b20c-dce215f97185 1 Other Other +8b3bbc3d-f1fe-4873-baad-6c22127ff6df 1 Other Other +8b3c1376-6595-4027-98a6-df3eb241c182 1 Other Other +8b3c34c1-eebb-41c5-a1e1-a957cbfd581d 1 Other Other +8b3c458f-86ea-43cd-960e-9b78948b1f95 1 Other Other +8b3cc074-4253-401a-ba88-d2b97fda0026 1 Other Other +8b3cc394-7d05-4007-b43e-4ae669189976 1 Other Other +8b3d1bda-f2a4-4338-881a-582ec28e45fc 1 Other Other +8b3d1da6-4919-4d9f-a142-93cfc20e1c9a 1 Other Other +8b3d1dd2-c6d5-4346-a5af-272da409e6d3 1 \N Other +8b3d3a52-9584-48fb-bd69-dd4d9d8ea9a8 1 Other Other +8b3d3ea4-2630-44f1-9132-9f7f80e258ba 1 Other Other +8b3d3f4c-4ce9-40f6-9ad3-51fa10f7867d 1 Other Other +8b3d8993-77a9-4db9-bcf6-4fcee6513842 1 Other Other +8b3dc925-1ab8-4354-90f2-c9c08f03bd21 1 Other Other +8b3e1b02-f8eb-4edb-b301-7830e532b49e 1 Other Other +8b3e615e-0579-4675-9eb0-1e16b42e9bb4 1 Other Other +8b3ea51a-ad31-41b5-ab2e-d415d72c5ad9 1 Other Other +8b3eb324-0ed4-4d07-8eea-bc7b55227a11 1 Other Other +8b3ecbba-8bd1-4672-982e-77ee51cedf05 1 Other Other +8b3ee40a-7a03-44e7-932f-9b9430ef8eb3 1 Other Other +8b3f836f-faca-4b81-93db-b06d0631b610 1 Other Other +8b3f929d-bf35-4e93-b56e-1f45df1dbb9c 1 Other Other +8b400d7c-175b-4d0b-907f-320db812a103 1 Other Other +8b407f76-875e-48ab-ad95-1c556311b8bf 1 Other Other +8b409b15-d2b0-4408-8cf6-27759bcb3c07 1 Other Other +8b40aca3-b9ac-4511-9d8b-ffc276f1b57c 1 James Other +8b40cce6-48fd-4217-9b71-081a54d7e05d 1 Other Other +8b41007d-8215-407f-85bb-1032d07bb7ec 1 Other Other +8b4106bf-8b84-4f37-a76c-52d4483178f9 1 \N Other +8b411850-9dfe-48bb-bd45-2322313f896a 1 Other Other +8b414c8b-070d-4b93-98f7-f68a53dfeb0e 1 Other Other +8b4150c1-2191-45f4-b260-ffcc2cde8f75 1 Other Other +8b4179e9-5a35-4ceb-91b5-2209baef6a35 1 Other Other +8b41ca04-6950-496a-8593-bb39bc94daee 1 Other Other +8b41cd7e-0054-4d09-8424-f3d33be7d462 1 Other Other +8b4219c4-4ce1-4d1e-83ef-11c1c6998959 1 Other Other +8b422207-f49b-47cb-937c-5664be88907e 1 Other Other +8b422e2f-4872-49a6-85a2-dc1368fc7299 1 Other Other +8b425356-7eee-47d5-96a0-c7579445e2ce 1 Other Other +8b42670c-1e91-450e-81d7-0a42649b0049 1 Other Other +8b429168-374a-414f-baa2-1bc682be8ff5 1 Other Other +8b42ce48-7bd4-4dd5-8d85-b8cd9d8b4940 1 Other Other +8b432db7-dc00-46e5-87b2-7b2007a9f86f 1 Other Other +8b4377b2-5dcc-4eae-bbcb-b39e4d752d2f 1 Other Other +8b437db7-c2fa-45f2-9d4b-b99f14132e9e 1 \N Other +8b438fe6-ccbe-4111-a9de-2343ee78909f 1 Other Other +8b439309-0abe-4adb-91d0-4a38ed52af15 1 Other Other +8b43bdd5-a970-48d5-a186-178345ca61f5 1 Other Other +8b43ff18-9d3c-411f-a70b-a6e39d5cf604 1 Other Other +8b440923-79cc-449e-a753-26762971f137 1 Other Other +8b440e69-e958-49a4-b4b3-5c04edb8bedc 1 Other Other +8b446ec1-5d97-4cdb-b324-af9164024286 1 Other Other +8b44a2ef-6fff-416a-9f34-2310a8020586 1 Other Other +8b44da5e-431b-494b-aa28-ba59ba924194 1 \N Other +8b4508a7-337f-4639-9f66-855e95cb69c2 1 Other Other +8b450d81-68c8-4994-a38f-5e8f95ca14f1 1 Other Other +8b451bd6-b22a-47e4-985a-e073836f1e88 1 Other Other +8b455885-53d4-4385-abd4-557c4870ac6c 1 Other Other +8b456629-f90b-4b6c-b444-6d6e0ce017ef 1 Other Other +8b462323-d0d0-42fb-9bf6-d63cea92ac42 1 Other Other +8b462da8-2989-42dc-926d-9628594f1b37 1 Other Other +8b466bf9-efbd-4335-b23b-74fd8dee2412 1 \N Other +8b47670b-87b2-4b7c-864f-1f491d7a56e7 1 Other Other +8b47824a-85f8-4167-86ee-caccae2972f2 1 Other Other +8b47b357-c357-4d17-9798-694705131866 1 Other Other +8b47cb6f-c435-4464-bda8-751f59563099 1 Other Other +8b47ce5c-e448-489d-bf3e-fb5a6ebe6784 1 Other Other +8b47f088-be3c-49ce-9e32-7e9674b2bb92 1 Other Other +8b480701-faba-44a7-bdd9-c3db66db1c51 1 Other Other +8b482864-9165-4081-a224-0a28c33476da 1 \N Other +8b484104-c86b-4135-8e6b-c4ac4ebc86a1 1 Other Other +8b484a0e-85a2-420d-969d-c9cbb1232a67 1 Other Other +8b4967ad-5332-4af9-8519-bc00955d869b 1 Other Other +8b49c754-a369-461e-8e19-28c17164b759 1 Other Other +8b49f03f-5fe9-4807-94e5-191dbe30d1de 1 Other Other +8b4a0dc4-21de-4b79-ba73-baa8c6ab08bb 1 Other Other +8b4a4510-4207-46a4-8578-2fbfc391d85c 1 \N Other +8b4a50c9-26ea-4f4a-894f-4091f64c9a9b 1 Other Other +8b4a91f6-b64a-462c-a0ca-a086e561a0e7 1 Other Other +8b4acf6d-ce30-4e71-b9e4-de8983fcd3b3 1 Other Other +8b4ad60d-4c23-4c65-99ca-3e7ca62acd41 1 Other Other +8b4b12c9-abc1-4d00-a0c1-8d2554d6063e 1 Other Other +8b4b1766-bfc1-4a5d-bc21-8b5f89704011 1 Other Other +8b4b2e91-fd74-4c22-88b3-1b5de89261df 1 Other Other +8b4b3e50-ea2e-4de9-b612-c0b945dada0f 1 Other Other +8b4b6198-5b4d-4648-a11f-afa459b5f5fc 1 Other Other +8b4b648f-2f80-4f4c-a8ab-283c0242ca83 1 Other Other +8b4b758c-ad91-447c-b76a-8a4d1b664b01 1 Other Other +8b4b809d-aef2-479e-88c3-16a4ff5b0ba7 1 Other Other +8b4c2e34-2ece-46ae-9b9f-4d459e9f2045 1 Other Other +8b4c3121-3219-4623-810a-5d11d7c07d0a 1 Other Other +8b4c80dc-7251-4a54-b1aa-3388207b4e6e 1 Other Other +8b4c9432-9a18-426a-bd1c-cb0dad6bbcc7 1 Other Other +8b4d3961-0866-4d29-b482-b039f2d4ddbb 1 Other Other +8b4d6f5e-d93f-4471-857b-a669e6cab408 1 Other Other +8b4dc0d8-c1eb-45f3-9e5c-040b27c4dc66 1 Other Other +8b4e4b59-afd6-460e-9c5a-d2b2b9830c90 1 Other Other +8b4e5271-87e5-404d-bbbc-081d62596778 1 Other Other +8b4e60f2-5a6e-425c-933c-014cfcd18c4a 1 Other Other +8b4ea3d3-0f5a-486a-bece-11381fca7df2 1 Other Other +8b4eb9fa-8e2f-4648-a5cd-6aa0af87cd59 1 Other Other +8b4f0535-10c1-4ad7-b7c7-9761a527a6d7 1 Other Other +8b4f5b54-50c3-442a-a3d1-0b1f07885ead 1 Other Other +8b4f78f5-3dac-4811-b9b2-01b169cfd993 1 Other Other +8b4fb507-1f14-466b-a708-52cf2a554e8e 1 Other Other +8b5007c3-ce8e-4df4-a467-3c3ab05563fb 1 \N Other +8b50e655-b6f2-4fb8-a725-f5b01cfcf75d 1 Other Other +8b5111a7-161a-46c8-ab28-f35289bda322 1 Other Other +8b51bffa-05ef-42be-9b81-f97c2f25f662 1 Other Other +8b51c6ab-bb13-4544-a40d-07d08bd9f976 1 Other Other +8b51f767-f217-43cd-8f57-36466bb507a8 1 Other Other +8b52862b-6c94-481a-9cbf-b25a3397e577 1 \N Other +8b5305a9-e096-4473-9ef2-0325b8d56c4b 1 Other Other +8b5305c8-e3dd-4f62-80e8-e15b8a291ead 1 Other Other +8b5327b2-6daf-4dee-a825-e3e3af693084 1 Other Other +8b533cd3-c45f-4989-9589-0935d11ba186 1 Other Other +8b536530-d271-4365-90fc-085571558bb9 1 Other Other +8b540c83-350b-4ad9-bed0-6d8785e6f67a 1 Other Other +8b541849-40de-4be1-b2a1-15faec444354 1 Other Other +8b542b0e-970b-49fa-a913-d0ff9457a628 1 Other Other +8b5481c0-1f25-4d86-9570-a7649da84545 1 Other Other +8b5483b1-2e1b-4ffa-8e3d-e898583b233f 1 Other Other +8b54aa3a-5066-4c11-9fb1-23978b690adc 1 Other Other +8b54b278-ecb5-409d-97db-3733a9c686dd 1 Other Other +8b54fee0-89ee-4afd-8b1e-ced37dec852d 1 Other Other +8b553ca4-f68e-4d58-bcc0-b81d465865b4 1 Other Other +8b5547ae-efa7-44c5-9c31-f09d978b1446 1 Other Other +8b56280f-0a1d-4c2d-bb72-39fbafae1d50 1 Other Other +8b562e15-1119-4d05-8775-93613d199fc4 1 Other Other +8b56477b-6011-4d8d-9dc6-ad3dba6e7d95 1 Other Other +8b569410-0fb6-456d-83fb-0cb32f96cf2c 1 Other Other +8b56e3c0-7ec7-4225-859a-eb57ccafbf1a 1 Other Other +8b56e3f8-7ff6-4e51-89df-783f8db09709 1 Other Other +8b575048-9c90-43f2-848f-00c51d5babce 1 Other Other +8b579fa0-2fa6-4f25-9968-146fc17bfc59 1 Other Other +8b57b1c4-4e3d-4e80-a67e-f7aafacc6ad9 1 Other Other +8b57c585-bcc2-4244-815f-108c685465bc 1 Other Other +8b581d07-87ee-40e6-adc2-1276282109ba 1 Other Other +8b583ed3-9893-4e69-86a1-e361e8e583e0 1 Other Other +8b584176-d412-4750-b542-af2f832872a7 1 Other Other +8b58619e-d2a3-4fe8-bc87-571a94e109a7 1 Other Other +8b5872d9-c3bc-4f0b-8b95-210a15e88e60 1 Other Other +8b58a9d7-54e0-4182-bb5a-2e478474ec45 1 Other Other +8b58c0a7-c74d-4129-900b-988b16ddeef8 1 Other Other +8b58d38d-6dbd-4077-9879-950c32a8a533 1 Other Other +8b58d70d-43a0-4568-9e00-c2a87ffdacd5 1 Other Other +8b58feb2-cacd-46eb-9349-51777391fd6c 1 Other Other +8b59059f-9653-4c87-a773-327c24f2797f 1 Other Other +8b5925e9-1003-4135-93b8-04fe9348eb99 1 Other Other +8b598c80-ccef-49f3-a1ed-616640604054 1 Other Other +8b59faa0-361e-46ed-85c5-79d09d613d13 1 Other Other +8b5a27dc-ae7c-49eb-b7f8-40cb7f6c72b3 1 Other Other +8b5b2437-c12c-49b2-94b7-6601b984b35d 1 Other Other +8b5b81de-9e63-47a2-9ecb-9a5db4496f97 1 \N Other +8b5ba10a-2a6d-485b-aa66-24f0a408f255 1 Other Other +8b5bb3e4-2589-4bba-ae56-e7787f8ef89d 1 Other Other +8b5bb65c-05db-4b01-bfce-c935621b1c6e 1 Other Other +8b5bfce4-6b03-4b0c-bfe2-4a8f5930db57 1 Other Other +8b5c264f-a2a2-459c-88f3-e8a5540e0d7f 1 Other Other +8b5c88d0-a1f4-4397-987d-8645f7cadc46 1 James Other +8b5ca971-3f70-41b0-ae30-d62f8b082c4b 1 Other Other +8b5ccbf9-f96f-4635-9d3d-e7a12d7e216d 1 Other Other +8b5e0970-4f42-48f3-8bac-cd1b10436f55 1 Other Other +8b5e147e-f2a6-4493-a23c-1b425fb73510 1 Other Other +8b5e2583-8443-4e6c-8f35-d1c98c2d3845 1 Other Other +8b5e2899-1e53-4f97-b423-7700ab046f79 1 Other Other +8b5e381b-58d9-4f4e-b9c1-21d08637198d 1 Other Other +8b5e57d9-67d7-44f2-93bb-de40e0604907 1 Other Other +8b5e6ac0-83e8-4e3d-b788-0b1c4601ca1f 1 Other Other +8b5e92b9-c622-4707-acc4-f2c617304f29 1 Other Other +8b5ed9cd-b682-42cc-abb4-fa4554c67eb8 1 Other Other +8b5ef42e-c6c9-4162-b48f-17ab8ba82e47 1 Other Other +8b5f37a5-6787-4a4c-b762-981fbb76310f 1 Other Other +8b5f61fc-c867-464e-b7bd-9a43534aa17d 1 Other Other +8b5f8f41-d3b3-483d-b3e9-fd213e6054a8 1 Other Other +8b5fa1d8-4a96-4450-a7d1-f7ec9fbfb19e 1 Other Other +8b5fc410-1866-4766-bfd4-4567dc60ac20 1 Other Other +8b602fe3-84fb-4035-9250-f0417fa00208 1 Other Other +8b604507-5f26-4b4c-a21f-d6ba9b6bddfd 1 Other Other +8b60b073-2ddc-4a84-89df-75e45038db43 1 \N Other +8b60f211-c869-4f9b-9223-f78ba4623823 1 Other Other +8b60feda-7776-4f94-a7d7-f66b62e2341e 1 Other Other +8b610802-6b60-40cd-a3ed-d4c561e838eb 1 Other Other +8b614d21-37c6-49b4-bed2-c880a5b2d81d 1 Other Other +8b615cb9-ae52-4e08-be26-4bf7af26645d 1 Other Other +8b61d970-da04-49bc-8a57-05ab42570241 1 Other Other +8b61eb2a-851c-417f-80e0-ecea3003de18 1 Other Other +8b62377b-bb9a-4d41-af35-97c00b0a5d02 1 Other Other +8b623e48-4ec8-465c-9825-36054e94bf00 1 Other Other +8b62634e-ebff-43ed-bfaf-79597ce56bbe 1 Other Other +8b62c4d2-1f03-4960-b26c-cce8a653f5fa 1 Other Other +8b62e909-34d3-4a37-b984-b99133c0110e 1 Other Other +8b62fce1-0f00-461b-8268-2e2f2e9df798 1 Other Other +8b632cb5-abc0-43cc-aabb-a95daaa7c49f 1 Other Other +8b6341ac-ccfb-4b4f-bd96-eef0040a119a 1 Other Other +8b637cfb-b69f-40c0-9335-8c9eaa69e6a2 1 Other Other +8b638010-fe52-4346-a675-f50e0916d19b 1 Other Other +8b63e4aa-b6c8-41cb-b647-e6ffda72d2b1 1 Other Other +8b640ae6-92df-4d36-974f-759be377b166 1 Other Other +8b641125-ed32-4661-a1e7-8de00f1f28fe 1 Other Other +8b641d3f-a8d4-45f0-bfd9-200cd9a3a38d 1 Other Other +8b643667-e9cc-4701-85c7-91f30ffbb74d 1 Other Other +8b643f64-7d46-478d-abfe-0681c416c253 1 Other Other +8b6469be-d613-4640-a776-a26d97c11b9f 1 Other Other +8b6480aa-4999-4d71-9a65-0d2c97bc29aa 1 Other Other +8b64b152-16aa-4ef7-9c8a-c937fba1559e 1 Other Other +8b64c6e3-0df7-49c8-9397-33c3a459ff0b 1 Other Other +8b64fef1-4dc2-49d7-ab83-8916837b41cd 1 Other Other +8b6530ff-7096-4214-8087-9d994968957b 1 Other Other +8b65af27-b68e-494f-9824-4c8948fc7d37 1 Other Other +8b65ffb9-5f4e-4205-a036-a89160fba97f 1 James Other +8b6600f7-a30c-4017-abc7-a25e846e6e2c 1 Other Other +8b665c7d-8c73-421b-9eb6-60d0073a8c10 1 Other Other +8b665faa-3610-4a6e-b0dc-a1f3512ecd37 1 Other Other +8b66ae6d-8717-4711-9875-ea5307765efb 1 \N Other +8b66c37d-b282-4745-83ac-91e4b4c9de13 1 Other Other +8b66dfb4-3f0a-4b7b-898d-483a4a7dc5e3 1 Other Other +8b670995-d985-4194-ad61-ef94bb1841c9 1 Other Other +8b674bb9-3bd4-4ad4-a833-06fa6493ac1a 1 Other Other +8b67514d-19bf-4c33-a5b8-18720c90d71e 1 Other Other +8b677dcd-3578-454b-b2c7-932c8a398b4f 1 Other Other +8b67c9dd-464f-47f3-b520-5ba720041ede 1 Other Other +8b67e433-3f72-4dba-8950-96a29455e8bc 1 Other Other +8b67ed92-45b2-4117-9b14-1a361099ebdb 1 Other Other +8b67f3fc-ffac-4722-b551-ab86555d1131 1 Other Other +8b680f78-bc6e-4986-a689-be3409415fdc 1 Other Other +8b683611-45bd-453f-9c8e-475c2398c40c 1 Other Other +8b685f30-d5e1-47c1-a563-29ca62fddb37 1 Other Other +8b687e91-ca7b-49d9-a669-a47c343022ee 1 Other Other +8b68a138-d765-47a0-bd70-827360c94321 1 Other Other +8b68bdbc-b470-4dc5-845c-2abde6f76fee 1 Other Other +8b68d2bb-eff7-4051-9718-f55b00a7ec99 1 Other Other +8b69166e-0633-44c8-b448-26669d374d6d 1 Other Other +8b69248e-d8d2-4737-a9a5-3a0fbc77f31f 1 Other Other +8b697b9b-a84b-4651-b9df-69a4f802e2ba 1 Other Other +8b697be1-e88b-4e99-8a91-ccb54121ff94 1 Other Other +8b69e9d5-49ae-4fdf-8873-49927a5cc98e 1 Other Other +8b6a0114-26c6-4740-8150-9c99c1a84775 1 Other Other +8b6a6108-306e-40f1-8fbe-ddd5deb5f2ab 1 Other Other +8b6a6236-648a-4653-811a-2f0116423c04 1 Other Other +8b6ad571-bd30-4c3f-8a4a-6d3eadbe9e43 1 Other Other +8b6bd171-8165-4165-8e8a-86a278ec7b30 1 Other Other +8b6c318e-4dc2-44b2-9ddd-ac9e320ac8e3 1 Other Other +8b6c4ed9-fc60-430b-b919-62d073fb9efb 1 Other Other +8b6c6221-9cd4-476f-9c14-eec64935e959 1 Other Other +8b6c92da-74d7-406c-a64f-cd2567e29933 1 Other Other +8b6c9b06-4385-4e7a-86f8-78dc0965dd6d 1 Other Other +8b6cb383-48f8-45b8-9391-da9e53a21123 1 \N Other +8b6cc00b-2755-458a-8a21-209db01f5ccc 1 James Other +8b6cd713-2761-4044-9f01-13a3338da84b 1 Other Other +8b6ce90c-e640-4609-af5a-c6052fdc62ee 1 Other Other +8b6d346b-acb1-4f3c-9744-91ca4fc177b4 1 Other Other +8b6d9192-dd38-491a-b44d-54875fd5c326 1 Other Other +8b6da3ef-619a-4c43-bf7d-f994ec9fc38b 1 Other Other +8b6dbdf9-fc79-446a-b7e9-5684049e2cb5 1 Other Other +8b6de30a-f67d-4538-bc03-96089cb64e0e 1 Other Other +8b6e086c-d0ba-4326-8c2c-5f50b59dcd31 1 Other Other +8b6e2e81-ab13-4b81-b9e2-a00215ea3bac 1 Other Other +8b6e7601-934d-48b7-a203-d6d7ae81cf1e 1 Other Other +8b6e80a9-c32c-4349-bd1c-403db23215fb 1 Other Other +8b6eb35a-26e6-4313-b60e-c77f8e452fb5 1 Other Other +8b6f5290-946b-427a-b4f4-34be2baec3c9 1 Other Other +8b6f8411-c3c0-4409-8f6d-3e3fdf55e9c4 1 Other Other +8b6f9df7-a489-48fc-8005-03bac8c3e3e4 1 Other Other +8b6fa4ce-d73a-4234-a686-04d90db355d7 1 Other Other +8b6fddb8-3a3e-496c-90ee-233441ab4ba3 1 Other Other +8b70a7eb-50e3-4a56-9d54-857deb4ea156 1 Other Other +8b70a87f-f671-404d-bf25-2079fa7b6c0e 1 Other Other +8b70c4bd-6ec9-4425-a4f5-4baca7970c42 1 Other Other +8b70e510-e3a4-4545-ba58-91a38851b0f7 1 Other Other +8b713b38-a127-49f6-bea8-6a5d5748d8e4 1 Other Other +8b71c312-b78a-4ca9-8c4c-143a303ea475 1 Other Other +8b71e8b5-60ab-498c-b828-695553d2fddd 1 Other Other +8b726170-0980-49c2-bc5a-c3d08df1cfc7 1 Other Other +8b7287c8-06cc-4089-92cc-06a9c09525ba 1 Other Other +8b7296de-8da6-4bbf-82a3-efb8f776aa69 1 Other Other +8b729a91-0c21-4088-a2bb-bd2b6945604b 1 Other Other +8b729a95-b315-46e4-9322-24f2378bc202 1 Other Other +8b72b0ad-c234-40aa-9bde-0082e3e876dd 1 Other Other +8b72cdb9-7599-4509-a614-96bf86429958 1 Other Other +8b72d211-36f6-44ae-a04f-c1cdf4cf6533 1 Other Other +8b732f0b-2e76-4216-9277-cb5021d844d5 1 Other Other +8b738947-486a-4a7e-b4e4-6c08ec17942b 1 Other Other +8b73a7f2-b040-4aa3-99fa-96e5573d3d0e 1 Other Other +8b7454c7-419a-4547-a06d-ac548a7f399f 1 Other Other +8b745d18-c195-4898-8e72-2aba325c9805 1 Other Other +8b746804-f491-49cd-9d3b-2671412973fe 1 Other Other +8b75016f-6e62-4a30-9381-a7e7128902fe 1 James Other +8b755600-ff16-406d-a9aa-98de11d2ac1a 1 Other Other +8b75597d-20d2-47ef-b558-d60875ec6d23 1 Other Other +8b758287-6597-4b4e-a0b4-cde9d6bc821b 1 Other Other +8b760187-9524-4369-9c31-86997d6aa9aa 1 Other Other +8b764f5a-150f-4fe0-87bd-3975175fda09 1 Other Other +8b768efc-9793-426b-9c05-e6d9bad81784 1 Other Other +8b7698e6-530d-4f85-8e64-5934a7344b2e 1 Other Other +8b76aba6-d526-4507-ae53-971983a8a996 1 Other Other +8b76b893-dd19-4a4a-a815-ca3fbe88d484 1 Other Other +8b76c8ca-9491-4e69-b55f-297192211859 1 Other Other +8b770287-33a5-4516-a16f-73eb2c4cce03 1 Other Other +8b770d6b-a8f9-4b3a-bcea-8d5911b02597 1 Other Other +8b7794b5-0ccf-4608-baeb-bdff46463b43 1 Other Other +8b77c860-183b-11e8-904c-fa163e8624cc 1 \N Other +8b77f6e5-0f40-4923-a8ce-09caee9a798e 1 Other Other +8b77fd84-8dbc-4f25-a350-bd8bd051d93d 1 Other Other +8b77fe86-4e71-4bef-85d4-8a986ca624f3 1 Other Other +8b7805dd-fdde-47f4-821c-35ab9f55c73e 1 Other Other +8b78187f-245b-466c-aedb-969ca8ca015c 1 Other Other +8b781e37-f247-4276-bc3a-981030522e1d 1 Other Other +8b78843e-49e9-4e9f-92b2-442570dec4b8 1 Other Other +8b78a355-15fc-486c-821a-f9dbab572c55 1 Other Other +8b78f55f-12a2-49f4-aaed-af76ea5edccb 1 \N Other +8b790a80-3bb6-4a14-8d63-bf6a5ca5fd44 1 Other Other +8b795435-b0e7-4792-81d0-ac4d2372cb18 1 Other Other +8b795de2-3dd1-403a-96e5-58a300914eec 1 Other Other +8b796149-167b-41f0-ae1f-1c707f07bdce 1 Other Other +8b7986cb-e119-4415-a1ce-77d31c123672 1 Other Other +8b79aa2a-fba1-4db3-a3be-7c0071c3de0d 1 Other Other +8b7a248b-4501-4190-9a7b-a3ac0774558b 1 Other Other +8b7ab2f5-6561-473a-ac62-4f8bed53ede3 1 Other Other +8b7ac12b-cc84-44e5-84a6-259ff938b4e9 1 Other Other +8b7b3458-6431-41c0-8e89-1c6b0e786e07 1 Other Other +8b7b4c84-6ae9-4e7e-9495-d98f3dbf79e2 1 \N Other +8b7b704c-b8d9-4380-895a-28fc28cf2d26 1 Other Other +8b7ba582-2448-4645-ad37-c317e020036d 1 Other Other +8b7bf475-7e8b-485f-981f-7982de53fe3d 1 Other Other +8b7bf5f9-4f61-4414-b1de-138a3432bb56 1 Other Other +8b7c155a-84ba-4cbc-84e9-efbd5690817e 1 Other Other +8b7c539b-54a7-46b8-9dd4-152484c900a0 1 Other Other +8b7cf96c-82f0-4b52-aa22-e79d4d0f79c8 1 Other Other +8b7cfd02-0e70-4cb8-9f3f-a96dd853775c 1 Other Other +8b7d01a2-009b-4435-a76f-b48d040fdb2d 1 Other Other +8b7d0232-a9dd-4934-a81e-fb244640214a 1 Other Other +8b7d15f8-6b84-4d75-b35f-007cbeccdda2 1 Other Other +8b7d2aef-67dd-477d-9f29-f6b632e90dca 1 Other Other +8b7d544e-a27e-4869-ad6c-7ba37f4068b4 1 Other Other +8b7d7650-7fcd-45b4-bab1-7c5ea277f13e 1 Other Other +8b7dc20f-d192-49e7-a774-b6bb5e32462c 1 Other Other +8b7dc976-b2a6-4110-827b-ae4422cc32fc 1 Other Other +8b7e147b-f2a0-43a0-a5d6-67302a92eedc 1 Other Other +8b7e377e-f2a7-4858-83b0-486cd40a0af7 1 Other Other +8b7e4e0a-bfec-4349-9d83-ec9569325eb7 1 Other Other +8b7ea298-49e8-4566-b918-d22e52b7fbba 1 Other Other +8b7eab7a-899c-46bb-8742-ff2b29f01143 1 Other Other +8b7eb516-7f23-4d3b-a513-4ac070af497d 1 Other Other +8b7ebc58-649e-4b61-912f-ed73d6674e63 1 Other Other +8b7f3e29-d2a5-488a-bff0-c0515fec9ebc 1 Other Other +8b7f45df-28fd-4841-bc38-ebe452901292 1 Other Other +8b7f5b48-c087-4fb2-b2bd-d3e79f039243 1 Other Other +8b7f62f9-fd2f-4518-9f2d-2ec1f98fafb4 1 James Other +8b7f65d6-7add-49e0-8d5d-df2ec8b6efe1 1 Other Other +8b7f795a-7c25-45a7-963a-b0a3ede3e0c5 1 Other Other +8b7f7ddd-aa31-430b-9d26-3d6b4339bfb8 1 \N Other +8b7fe8c4-0352-4f7f-bbea-fad3bda28252 1 Other Other +8b7ff9dd-cd3d-4220-94b5-b4fd9370d59c 1 Other Other +8b80766f-b766-4281-b8a0-bad57725c62e 1 Other Other +8b80d0e8-181c-43f4-b4de-d11f0eb9845d 1 Other Other +8b80d650-3de1-4c18-952e-e58cc3f09cff 1 Other Other +8b80daed-af51-4060-8d8f-2736bdd822f3 1 Other Other +8b813e44-4d06-46cb-991b-da4f8a1ca5c5 1 Other Other +8b814cb4-9450-4b05-bc73-b712feb8b49b 1 Other Other +8b816187-c5e6-4dd7-9638-1575810b4d33 1 Other Other +8b8185c7-8235-498f-896e-f32931d523b4 1 Other Other +8b81a1e9-db57-4e9b-bf93-55c60b5cd2c2 1 \N Other +8b81e7cd-951c-4352-a3f2-712833f8f680 1 Other Other +8b8213fb-40ec-4733-ac27-f33da5eb9921 1 Other Other +8b823722-3e4c-4d55-af38-e06e28bbf705 1 Other Other +8b8244e3-68ff-4b3c-a537-dd7debdd6134 1 Other Other +8b82a967-ab85-4294-a786-26b19dd80556 1 Other Other +8b82ab89-a000-466d-8c2f-816917521482 1 Other Other +8b82c1ef-52d7-4570-8fc4-a52496902079 1 Other Other +8b82c48b-b3a3-4fd6-bc4b-38559aae5835 1 Other Other +8b831081-3c4f-46ab-accb-b7ddd1ee9f58 1 Other Other +8b8374bc-0dd0-4f88-b0ee-a7762289c9eb 1 Other Other +8b83a2c3-8202-440d-865f-44ccf582cc39 1 Other Other +8b83dc99-b4a1-4c4b-9a11-15bc6c8f0b70 1 Other Other +8b8418d5-a9d6-4358-a7cf-866f3263c600 1 Other Other +8b843f33-9645-47f9-8705-510a74d4117a 1 Other Other +8b8467d6-1790-4517-a80f-a20ab8c355ed 1 Other Other +8b84cbd4-877f-4ee0-b118-14774c6049da 1 Other Other +8b84cc48-86fe-4a13-bd8f-e2bb103faac8 1 Other Other +8b8507a6-c7b3-44d1-b177-7b07e35058ba 1 Other Other +8b850da7-1656-4b0c-b4d0-9bf6d6e82950 1 Other Other +8b85419f-808c-4443-8870-85f65a80b26b 1 Other Other +8b85e9d5-7171-480f-8e24-922d79f34a3f 1 Other Other +8b8602d3-f440-4841-8054-3e5860995e68 1 Other Other +8b866ef5-51a5-4c06-9d2b-3dd6ace81f7e 1 Other Other +8b86816b-bd36-44ac-97b9-c40d3790c4f4 1 Other Other +8b86c273-df95-4b9d-85bd-5b01dfe094f4 1 Other Other +8b8704cc-782e-4a1a-bf43-828173e8fb3b 1 Other Other +8b881867-aca2-43f2-bf52-7f5590708f91 1 Other Other +8b8851e3-7984-4e9b-a9e4-f5653f956f6e 1 Other Other +8b89191f-2672-4b0c-aa80-9bd593d001f8 1 Other Other +8b891ed2-3f60-4b08-9fe2-c315c58b797a 1 Other Other +8b8935e2-016a-4438-bd38-efcbce1e479f 1 Other Other +8b894d21-d0c6-41e9-9d42-84a2328e5cfc 1 Other Other +8b89afa9-9d26-4667-bb49-6158edd171fa 1 Other Other +8b8a04a4-9bdc-4047-9c0b-2603333faf09 1 Other Other +8b8a5025-94eb-4ea0-a53a-dc5004ed989b 1 Other Other +8b8a6648-f82e-4625-9635-e356b8af22f1 1 Other Other +8b8ab34b-badd-471c-9ef8-7a4976e671d4 1 Other Other +8b8aff0e-f160-4544-b51c-f17234bfce5c 1 Other Other +8b8b1d2f-8fa5-4599-9e04-26cfc3f03eef 1 Other Other +8b8b376d-9a07-4604-bb4f-b41c1a6d9675 1 Other Other +8b8bc05e-b6b3-43eb-9d66-eff7802a933c 1 Other Other +8b8bc0d7-fac9-4356-9bfc-668d22873a0d 1 Other Other +8b8c33c0-cee8-459f-add0-452c03bdab33 1 Other Other +8b8c4334-3e0e-47d4-93c6-d00571eebf70 1 Other Other +8b8c441a-8867-4557-83b4-d4de22083453 1 Other Other +8b8c6650-3958-4c5b-89c8-e9b216d94489 1 Other Other +8b8c75be-7b42-497a-b50b-56cf3bbe8ac1 1 Other Other +8b8c75fb-da71-46a4-bb0c-2ea477d9f934 1 Other Other +8b8ca167-4e79-4521-9f30-b797b444cef7 1 Other Other +8b8cc7f1-fcf5-4063-bd5e-3f9db769bac2 1 Other Other +8b8ce5c0-90d2-4085-a944-ce85b8e92e37 1 Other Other +8b8d5e9b-3350-43e6-be60-dcec23370680 1 Other Other +8b8d722f-9b56-4566-af2d-2b91ff30deec 1 \N Other +8b8d8280-4f39-43e8-9106-016ce7c521e5 1 Other Other +8b8dd01d-1078-42f0-9f22-ba4bfb5776b3 1 Other Other +8b8df78e-c200-450e-aff3-0089eac06cc6 1 Other Other +8b8e0b0a-1d61-4f16-a407-4bf64d32b480 1 James Other +8b8e3619-0f4f-4b79-a75b-97ea863b5f84 1 Other Other +8b8eadc7-05f1-48b0-91e6-56310e189f4b 1 Other Other +8b8ed756-bee1-4def-b731-c17f5b521a59 1 Other Other +8b8eea3c-c9fc-4529-8374-5c9fcfb035f3 1 Other Other +8b8f0820-894b-4268-b053-b2309d4cfdea 1 Other Other +8b8f171d-2a17-4945-8f03-a7b70859b6d8 1 \N Other +8b8f49ae-e3df-4b32-a78b-9cbd76b261cc 1 Other Other +8b8f5ebf-1c8f-4755-90e1-f3452da8d15f 1 Other Other +8b8f898e-79b9-4c45-8e51-cb30e4c570f9 1 Other Other +8b900e9b-cdba-4633-ae27-007e0a5b6fde 1 Other Other +8b902fdb-edd3-4a12-8d97-699a76a79bf8 1 Other Other +8b903b31-0a29-4cf1-90b2-26034a3acbd3 1 Other Other +8b905ec9-b2ee-4fb7-86f8-7086ebee1594 1 Other Other +8b9071a8-3244-444d-8c79-1f43c6eb2081 1 Other Other +8b90b22b-b18e-4381-a965-865f2dcd0b60 1 Other Other +8b90fc99-ff1e-4d37-aa97-27d0500e9d93 1 Other Other +8b916307-8503-4573-b9ab-ac5a4f1e6724 1 Other Other +8b919499-7d86-4116-8215-0daddba58bbd 1 Other Other +8b91ea39-8e8e-4e86-bca0-65f02b76b63b 1 Other Other +8b92315b-be9a-405a-baf0-253e82850f5b 1 Other Other +8b9287a2-1f09-4f55-a388-8dcc9c7fa03b 1 Other Other +8b92e141-773a-47eb-af73-1242081cd495 1 \N Other +8b9310a2-9a75-46e2-99ab-17c9768631c1 1 Other Other +8b9360c5-45ee-4cb7-bd55-747124c61a5f 1 Other Other +8b93a6f6-fd81-49b6-8108-2d113063ddc2 1 Other Other +8b93b041-2de4-45ad-ac07-22f624e480ad 1 Other Other +8b942ce3-9d96-4c6d-ba63-a9076e219c5e 1 Other Other +8b9440fe-84f1-4028-8698-5d48e4d6a258 1 Other Other +8b9458f2-6904-4ebc-a3b1-42b47f142ab9 1 Other Other +8b947d88-430e-4fe4-a817-d72c5637489a 1 Other Other +8b94b009-57f1-443b-b75f-d716ba7edc48 1 Other Other +8b94effe-96d5-4ffa-87a5-b391d45b3071 1 Other Other +8b95200d-d006-4cda-b22f-2a5559657186 1 Other Other +8b9586f5-04be-41b7-a082-307eef796a81 1 Other Other +8b962f8a-f822-4b5b-9398-e615e0d6ded1 1 Other Other +8b964894-d161-4aaa-8c9b-daec31573948 1 Other Other +8b96baaa-4c15-45a3-96d4-d9e8c04d549a 1 Other Other +8b96bd32-4a5f-417f-a6f6-456b63a37ded 1 Other Other +8b9714a3-6dba-4166-b2b6-304f1880f15b 1 Other Other +8b971c63-5dd6-42df-ac5c-b2adccbb600e 1 Other Other +8b9725aa-b36e-4e0a-bf4d-e4524d02aa1a 1 Other Other +8b974863-abc0-4d69-bfba-db09afcbbdf1 1 Other Other +8b974efc-8e45-41b2-86e6-24203eda3510 1 Other Other +8b976471-a03d-4018-979d-386b46d0235f 1 Other Other +8b976ef8-1d5f-45a8-b99a-48b8dc45eff5 1 Other Other +8b978f87-0b5f-4826-b324-6bd52c364675 1 Other Other +8b97c8b7-dd47-40dc-9de5-7c425da83a48 1 Other Other +8b97d31e-0041-4f3e-97ca-e8802edcf69c 1 Other Other +8b97e18d-8ca9-4aab-aa7d-29f95be2b36d 1 \N Other +8b97f7c6-39a1-46ae-bfb5-f065a42ced68 1 Other Other +8b98325b-d3f4-48ec-b9e3-64cb29598aa0 1 Other Other +8b98bf88-50da-4d77-ab46-d78d3c69daa1 1 Other Other +8b990446-dbf1-4734-a5b5-7afc77a1a8ef 1 \N Other +8b9972c1-5584-4c09-ad31-b22509398b56 1 Other Other +8b999df8-5d0a-4a21-b78f-7d3e7be8836d 1 Other Other +8b999f13-39e3-4a66-8b1e-4dd112ef0256 1 Other Other +8b99b48f-e98b-462b-be1b-ce725c6c5f43 1 Other Other +8b9a6dfc-89ca-4c46-9aa6-f94947213178 1 Other Other +8b9aa63f-158a-41b7-be41-4e71865a899b 1 Other Other +8b9aead9-80da-4634-ab0a-197d15dc875b 1 Other Other +8b9b7361-a188-43d3-a181-9772507a431d 1 Other Other +8b9ba2ce-e479-48e7-b38e-2bbee245bb1d 1 Other Other +8b9bb22e-b4f4-4aa3-bf4c-c34e4b121eda 1 Other Other +8b9bc8ef-9fcc-49ec-85e6-102f09d520d2 1 Other Other +8b9bca70-f80f-4994-afa5-14c381375236 1 Other Other +8b9be27f-23ea-4d23-a286-17021a950e0e 1 Other Other +8b9bf9f4-de98-482a-8efb-893cf67cae65 1 Other Other +8b9c4b37-4255-42fc-a63e-2900cb0661e9 1 Other Other +8b9c57c5-6b17-4395-a0aa-c509ac5c5c69 1 Other Other +8b9c5d21-907f-4658-a013-a076ddffd77d 1 Other Other +8b9ca8a9-f744-4abb-9cfd-c69c768a591a 1 Other Other +8b9cf926-60a5-4f77-8c39-962ea2260c80 1 Other Other +8b9cfe8a-9874-4596-b894-aad36adf04b0 1 Other Other +8b9d24db-661a-4a18-aa03-fc47752962b3 1 Other Other +8b9d2eb9-5a58-4adc-be56-a2a6ccefc0b6 1 Other Other +8b9d5f0f-1f9b-4704-a44b-e3ad226d1fcf 1 Other Other +8b9d6061-2da5-4c82-9072-be69ed803ea8 1 Other Other +8b9d858a-5150-49a1-9766-84d66c9c3d9e 1 Other Other +8b9d8f66-4c99-47d8-9388-15b6bf2c020e 1 Other Other +8b9da09c-85de-4093-accd-52c04e68f8ce 1 Other Other +8b9db651-e5a7-4dcb-95ff-09bd9df69688 1 Other Other +8b9dcb8c-1dc7-4ffe-a110-0f879d9661c5 1 Other Other +8b9de91a-fb16-4cb9-b28a-20bb47ca2352 1 Other Other +8b9df65e-0896-44f8-b312-13dc42aa9e15 1 Other Other +8b9e2ad6-5742-4479-be63-0b12306f0ca7 1 Other Other +8b9e61bc-eb39-4030-b064-ab3dc51b6737 1 Other Other +8b9e923e-27dc-4c65-9f97-f6a19ac14bf6 1 Other Other +8b9f3388-6588-46f5-814f-b12e5865a9d1 1 \N Other +8b9f49b9-3359-4144-b29d-fc7fc82044e5 1 Other Other +8b9f86c4-8fa4-490f-9e35-e817f6c1c39a 1 Other Other +8b9faba3-3121-4fdf-8c32-d0ec8e99c216 1 Other Other +8b9fd021-9e38-42ab-ac69-877ed575bcc2 1 \N Other +8b9fd92c-3e12-471b-a966-5353a1f263fc 1 Other Other +8b9fee6d-f364-4d83-a6ac-c7b21735187f 1 Other Other +8ba025aa-466b-4e2d-89cf-42d542affcf9 1 Other Other +8ba077c0-4331-4590-8218-aad398b3caf9 1 Other Other +8ba08382-68f8-4c00-a9f6-df87da788860 1 Other Other +8ba16392-834a-417c-b5fb-8ddd80f02a4b 1 Other Other +8ba2286e-76f5-4669-8021-cccdc69036cc 1 Other Other +8ba2b692-d09b-4834-9873-6d63e57dc9e7 1 Other Other +8ba2da34-6edb-47d8-8a76-8c37b17140f3 1 Other Other +8ba316cc-b4a0-4097-9f50-043c06b4a242 1 Other Other +8ba368b5-efc1-4f7c-94a3-ae7016e87e1e 1 Other Other +8ba3ad19-0788-47e5-aa36-a723aae4d943 1 Other Other +8ba3afab-9d6e-4dcf-8489-73138443fcc4 1 Other Other +8ba3d206-caf9-457e-b578-0f3d35edeb02 1 Other Other +8ba3d76a-6105-4af2-b003-865bc37f984e 1 Other Other +8ba3ef07-6e12-42d0-b47d-ab16780ffc49 1 Other Other +8ba409e3-e96e-4bba-9c95-0b760810e15b 1 Other Other +8ba4331d-8519-4738-93f1-ec453e856a0f 1 Other Other +8ba44957-f1d2-4ac0-845d-bf8d758722a6 1 Other Other +8ba47acb-1f36-4b2a-abda-35233be72599 1 Other Other +8ba49b37-7afa-4fb5-bf26-67af9c45a80c 1 Other Other +8ba4add8-0adf-4ccb-8166-c1f93efd8ef9 1 Other Other +8ba4b0c1-4ef7-4bfa-874c-d0244e5f6b4d 1 Other Other +8ba56a04-7a50-4d02-96dd-6bf1378d735d 1 Other Other +8ba58b85-1fdb-4f69-8818-82e351e858cc 1 Other Other +8ba5a5f5-c533-499c-acb0-d342376d35ce 1 Other Other +8ba5c27a-a7e0-415d-a002-61e37d6fefb6 1 Other Other +8ba60806-3db1-4e9c-91ad-d1f4cb3fcff2 1 \N Other +8ba62b00-3144-41fa-89db-4a2991b0c2f5 1 Other Other +8ba64050-a8a1-4d32-8d60-8efc0c2665ce 1 Other Other +8ba65452-f56a-4378-934b-c69ebde51479 1 Other Other +8ba68fc8-9022-4017-ac81-4134fb0524c2 1 Other Other +8ba69907-e390-4a6d-a5d1-7f2838870fae 1 Other Other +8ba6bf40-7687-412f-968b-063ff96314e5 1 Other Other +8ba6d8f8-837b-45d7-91ba-a53afc45e8ff 1 Other Other +8ba6fd9e-8897-4fbf-81c4-b4c6e93f009f 1 Other Other +8ba70cc3-ab87-495a-b87b-98008ba7e0fa 1 Other Other +8ba749b5-15b6-4cb3-80ef-577706a1b4b2 1 Other Other +8ba79d80-3649-4384-8c0e-739128cb86b5 1 Other Other +8ba7b12d-b757-4fca-bd3c-87295cfa5132 1 Other Other +8ba7be6f-5f1d-48a3-ad73-d821c13096d2 1 Other Other +8ba81bc9-3a0a-4980-9229-d961cbd7bbb6 1 Other Other +8ba8295d-d7e6-4ac4-9385-33dd539c867e 1 Other Other +8ba88709-ad64-450d-b4f5-044b05276e7b 1 Other Other +8ba88c70-1e6d-46b6-a80f-35d8369c3376 1 Other Other +8ba902a7-9197-4640-ac7d-c859dbeacdbc 1 Other Other +8ba9152b-b30c-4be5-b2ac-da27f49e250e 1 James Other +8ba93f44-38a5-44d7-97fe-631e29b6daa6 1 Other Other +8ba95d85-b4d7-4c9f-910e-67ebe4259f2e 1 Other Other +8ba97903-d39a-4c9b-a34c-ee1575325f37 1 Other Other +8ba9c121-2054-4f11-8a61-58e36e7bf3ca 1 Other Other +8baa3975-51be-4f8c-a262-0bc673d862d5 1 Other Other +8baa81f3-29e4-4e0a-84b6-4347de2f3295 1 Other Other +8baaee89-bddd-4c54-8f22-01a0a0f0f801 1 Other Other +8baafada-29e7-4c8f-a588-00319939bd95 1 Other Other +8bab0307-a1a1-4eb5-beb1-ac8ceab3fd94 1 Other Other +8bab2366-a275-43f4-9c07-b35302d1eb74 1 Other Other +8bab3d9b-e0cc-4c2e-834f-76a19e447d85 1 Other Other +8bab6498-336c-402d-a977-cb8986989011 1 Other Other +8bab862c-da84-4e6e-9b6a-d1be39d30ce7 1 Other Other +8bac7dd0-e7ef-4bd9-9cc1-f18b11c8b865 1 Other Other +8bac8800-dc82-409d-9ec0-fb25e905a1ea 1 Other Other +8bad3d7f-0393-4ed0-af16-95480df4f980 1 Other Other +8bad6318-e7d1-46b6-8946-4a00f3432be5 1 Other Other +8bad9d93-b9d9-479c-b608-47f968dc14b4 1 Other Other +8bae41d9-0578-4efa-b460-8fd324a0f70b 1 Other Other +8bae630c-cbe9-431f-b773-886717f41368 1 Other Other +8bae92e1-ad9c-48dd-acd8-1bcd99f3b783 1 Other Other +8baebba0-a1f0-4a28-89e9-5a9485ae861a 1 Other Other +8baed6a9-832d-435d-9e82-d5b39e577532 1 Other Other +8baeedb7-0e59-4811-a3fa-2358b7a43a2f 1 Other Other +8baf2ae2-47c6-4b83-b2ca-6b433e08ec5f 1 \N Other +8bb023ea-e6c9-4a7d-bf0a-96e87bfe690e 1 Other Other +8bb04042-0b38-4669-b092-ec6f0e9abb3f 1 Other Other +8bb0557c-d75d-4630-9066-129e576e32e9 1 Other Other +8bb09328-9c48-43b7-a6f0-ec76a80bdeee 1 Other Other +8bb0b943-e28f-40df-89f0-5728b39bcc92 1 Other Other +8bb0f489-3aa8-41ec-8d6f-e7365857f0b0 1 Other Other +8bb140c8-d6b3-4e37-98d3-0c245fbcff80 1 Other Other +8bb19139-7d3d-4736-ac44-6013de56a535 1 Other Other +8bb1c385-dc4c-418f-9b82-22c6166abeb1 1 Other Other +8bb2402a-00d5-47ba-a690-fcfe06b57f90 1 Other Other +8bb299c0-e0c1-4ff8-a037-4e8ed464d6c3 1 Other Other +8bb2ca9c-9d13-4813-8af3-91deb2a947b1 1 Other Other +8bb2f1ca-2908-45e0-9ae6-be2241e10660 1 Other Other +8bb2f77a-b231-4e47-8d71-987839d12c35 1 Other Other +8bb32140-833e-4878-87d3-d6bf60f38e3a 1 Other Other +8bb340c1-eaba-4cca-96f1-f1fac657e86c 1 Other Other +8bb37676-7538-4af9-9922-d9aaf81d5a93 1 Other Other +8bb37d31-9521-4604-b844-c0fe67b6db1a 1 Other Other +8bb385f1-f9bb-4823-840d-c177417030c9 1 Other Other +8bb3f306-a0ed-442d-9bf3-d0483dbdd689 1 Other Other +8bb3fa80-4518-4fbb-97f4-5ba38e66b298 1 Other Other +8bb44bed-21d8-493c-a37a-042666063074 1 Other Other +8bb473b8-cf70-4f25-a987-d86918763a2d 1 Other Other +8bb48387-7730-4cec-9600-ed316cc92531 1 Other Other +8bb49da1-5435-4f8d-a86e-178ffce90bd2 1 Other Other +8bb55222-5155-4b0b-bf11-f8980ef3fa15 1 Other Other +8bb55a92-57c7-4eef-9506-99a5cd27a77b 1 Other Other +8bb58b77-171c-46e0-b552-f12b6f93e3cc 1 Other Other +8bb5c317-1064-4c08-8d5e-c6ac8b237c60 1 Other Other +8bb5c676-b50d-426a-ac40-aef36c87eb4f 1 Other Other +8bb61b8b-8d57-440b-bd12-39f15ce0dc97 1 Other Other +8bb653ad-dbbe-4a3d-a336-f8b6872a9feb 1 Other Other +8bb665be-f07c-4d19-a670-05cad722bec9 1 Other Other +8bb67ec5-a59a-4519-bf54-93dc84b5c867 1 Other Other +8bb72001-eeca-4889-b75e-79eef901b792 1 Other Other +8bb75f1b-c2ee-4622-86b2-df93aceb806c 1 Other Other +8bb764ea-fd6a-44c3-a100-10f61af43de2 1 Other Other +8bb7758f-412d-499a-9563-4fd4f1ed5b32 1 Other Other +8bb805e6-7123-4532-9683-03c5b97e4408 1 Other Other +8bb80c0c-8756-4d39-89d4-7ee30d5e7478 1 Other Other +8bb8409d-59cc-4643-8811-b03501c8771f 1 Other Other +8bb8485c-e140-48c8-bea8-c7ef3ded2514 1 Other Other +8bb84e06-42ab-4f0c-ad1d-b79caf654587 1 Other Other +8bb89ed1-0ad2-425a-84ff-c3a76ce0a3b1 1 Other Other +8bb8e191-65e2-4c68-9ea5-004ebd91ff29 1 Other Other +8bb90677-5cba-4547-a8aa-5a3ab23b052f 1 Other Other +8bb95dca-9364-46c9-bcb9-d7455f49c4ac 1 Other Other +8bb9b245-5d0f-498d-8a6c-93b123d0036b 1 Other Other +8bb9cbd2-feda-490c-84a6-0e28f558cdbc 1 Other Other +8bb9d073-d356-47ba-b2e4-d520bb9cb6f9 1 Other Other +8bba0cd0-daad-40ed-8b14-b8479c996aac 1 Other Other +8bba1721-d56e-4f6c-a2ba-d1cf847fa468 1 Other Other +8bba47f2-89d8-44d3-b9d6-e6a25131d8dc 1 Other Other +8bba4fe8-afb0-45ca-865a-ca139361c007 1 Other Other +8bbb089b-e88d-41a9-b7fd-35d4319c5921 1 Other Other +8bbc0e2b-a812-4f1c-93d9-0e65e64182a6 1 Other Other +8bbc33fb-6d41-47a7-834a-99cab0ac6ff3 1 Other Other +8bbc4445-592e-4ac8-aac0-2c323b6ec550 1 Other Other +8bbc91b9-3323-40da-99d0-19de1cd21c90 1 Other Other +8bbca856-557b-428f-9945-b04ec9f8a106 1 Other Other +8bbd0ec1-4e64-4a7c-9111-697e32dfe35c 1 Other Other +8bbd10f6-3318-4d96-bcaf-91bba346629f 1 Other Other +8bbd23be-6b8b-4465-94e7-2e46b7a113e9 1 James Other +8bbd70d8-3dde-4989-8fda-0df936c96f5d 1 Other Other +8bbd7370-f00a-4fa1-946c-a9ceb2d5c270 1 Other Other +8bbd9e16-9bdc-4fa0-b736-ff8663e212c4 1 Other Other +8bbdb181-b509-44de-99a4-37a4b3269d21 1 Other Other +8bbdb4e8-5931-4c0b-b981-d60ce9475835 1 Other Other +8bbde46d-8851-4e1a-a29b-5316e4f8b7c7 1 Other Other +8bbde750-2ac8-40a3-a517-51729e0466a4 1 Other Other +8bbe1f56-89b6-4b5a-9874-7b29e9934d36 1 Other Other +8bbe8320-0a22-4910-ac3d-72aaf76f03fe 1 Other Other +8bbedf49-41e4-4303-9722-c4dcde82ce00 1 \N Other +8bbee2cc-ad0c-4e8e-804e-ba5877361fe9 1 Other Other +8bbfe880-f76d-464d-bde9-69f624813067 1 Other Other +8bc02a13-1418-4ee1-a2c4-c2d27385edb6 1 Other Other +8bc07c9f-da6d-4dc4-8c68-d4d52db1d9a5 1 Other Other +8bc08519-c6da-41f5-987a-907eb5941edb 1 Other Other +8bc09346-c70a-4e15-81f4-88f953c0e480 1 Other Other +8bc09601-8095-4935-82a0-03b0a4fcbf4f 1 Other Other +8bc09d3d-7a51-4ffd-9277-3bdde3aa6d9e 1 Other Other +8bc0a617-01f9-4fc5-acb3-4944017fdde7 1 Other Other +8bc0ba5b-79d5-4dfc-95fb-b873144a3e75 1 Other Other +8bc14e52-f196-423a-a076-f8c980929871 1 Other Other +8bc1687e-a6cb-41e5-82df-9aff7fc21e3b 1 Other Other +8bc16f58-59e0-42d6-8af0-c747439b101c 1 James Other +8bc1c413-d4f2-40d9-97de-c2c4966c2075 1 Other Other +8bc1f1e3-a5e3-411f-9939-8f45616cddd1 1 Other Other +8bc276b3-418b-4f9b-9904-b470210a2a27 1 Other Other +8bc283e6-75cf-4213-98e8-0a50a5902223 1 Other Other +8bc2a793-ab3d-4fc4-93da-558294d7603a 1 Other Other +8bc2bde7-a52f-406f-8fad-365df58de053 1 Other Other +8bc2c68d-4bc2-4bf7-b11e-49b541e8a829 1 Other Other +8bc2f9a6-2604-4ba7-8446-0e13d4b3d482 1 Other Other +8bc359ea-1aeb-4a50-b54a-8d8bf81238b9 1 Other Other +8bc3d660-67cf-4061-87c6-7c87d4286d45 1 Other Other +8bc3eb03-b946-43b9-9165-41267d7c7fa5 1 Other Other +8bc3ecac-6c43-494f-9649-5239f507cc27 1 Other Other +8bc427dd-8d15-448e-9d01-8cd4a0b4b01e 1 Other Other +8bc46376-f2f6-4cc7-b219-ee94029e061e 1 James Other +8bc4bfd7-a7d1-4b6e-8efc-afb2c0e06cbb 1 Other Other +8bc4c248-0d53-4a1b-991a-56837ed0d981 1 Other Other +8bc4cba2-c9d1-488a-9061-05447ab53105 1 Other Other +8bc4f988-5e12-4841-b345-8e736c8e78e9 1 Other Other +8bc4fd9f-fc4f-40a7-98e6-3f9f1b5293ae 1 Other Other +8bc522b2-a4b7-4cd8-8b77-4c4d218c83cf 1 James Other +8bc52373-3425-4590-b1f4-0aa086b54ae2 1 Other Other +8bc53462-7b71-425b-bfcc-2b54102a9ad0 1 Other Other +8bc53b95-136f-4bc5-9db4-c64d0f2685d4 1 Other Other +8bc5b324-7337-4b3f-9a61-3b588593f3ae 1 Other Other +8bc5eec5-ad29-4e7e-9fe7-b9be87d82e2e 1 Other Other +8bc5f77b-0eb8-4235-ac4f-60afe7b46ca1 1 Other Other +8bc61d2d-aea7-4635-b3eb-3c2ccb0fad6c 1 Other Other +8bc63319-ffb5-4dd2-bb9e-c84a2d795b82 1 Other Other +8bc67fd7-87e7-404b-955a-e9b106859c47 1 Other Other +8bc6c1dc-51df-48fc-b7a7-68e8cd0bef53 1 Other Other +8bc6d91e-9e12-4512-8ca1-d9453d19fd2c 1 Other Other +8bc72baf-10fc-4819-bd56-5cf923bd8292 1 Other Other +8bc79117-d552-45cc-9229-cde7bb62f405 1 Other Other +8bc795c1-272e-4125-8ca7-1779fdd79f9b 1 James Other +8bc7c1cc-02f7-4261-970a-142edb7e1a50 1 \N Other +8bc7c667-d302-4047-963f-76657f11954b 1 Other Other +8bc7d4bd-3b3d-4f59-96b5-6b875e322e46 1 Other Other +8bc83020-09a0-42e8-abfd-94e8e951d686 1 Other Other +8bc83d3b-bede-4e5a-8878-f91bc83adab2 1 Other Other +8bc863a5-e9e4-402e-8f88-b6eeaa25ffb4 1 \N Other +8bc8c8d9-7a95-418c-ac62-c955e0f7b964 1 Other Other +8bc90205-3cef-437f-93f4-e962a5d7c1dc 1 Other Other +8bc94514-2212-4b31-94ac-56a14ad9fc6a 1 Other Other +8bc9566e-7513-453c-89a4-f1fb06ec141b 1 Other Other +8bc957d8-36bc-43e0-9c23-99dad7365143 1 Other Other +8bc9635a-3473-4c70-a17a-9f5517dc99f3 1 Other Other +8bc9998d-061d-4ad9-9f2f-040f7f7babe7 1 Other Other +8bc9badd-febc-492f-a61b-3475113182db 1 \N Other +8bc9eb17-4987-4f19-8fb2-c75c84113dd8 1 Other Other +8bca4428-8bd3-4e41-a8b4-485816e3c16d 1 Other Other +8bca55e6-bcbb-4429-9292-96902b0e6103 1 Other Other +8bca601e-f077-4eeb-8cca-3d92e2428898 1 Other Other +8bca8b53-ce12-496c-92b9-e734da6c2bda 1 Other Other +8bca9e88-d0d6-4342-98e6-25f6a0e33327 1 Other Other +8bcaa89d-5a5e-4d92-bb4e-5083c169c7b5 1 Other Other +8bcad285-6963-4a4c-8243-e88300e8c09c 1 Other Other +8bcb0426-3982-4809-ba88-89f1d9968546 1 Other Other +8bcba05f-432e-4a07-bfc7-ac87fad9acf5 1 Other Other +8bcc0c2a-7dd0-49de-86f9-c202bbaf1fa6 1 Other Other +8bcc4678-2b21-492b-8e3f-95c08072ed67 1 Other Other +8bcc6533-3d59-4562-a477-46ec4c9dbf8a 1 Other Other +8bcc733a-2458-4a33-bd22-65ceb974938f 1 Other Other +8bccdfc6-0872-4b18-8a88-2b1a5d64c4ba 1 Other Other +8bcce1a3-bad1-45a2-84b8-7bcec0a6f9fd 1 Other Other +8bcd0f7f-0693-4e77-80ec-716ee634395b 1 Other Other +8bcd113d-2db7-4b1e-b2b6-799c6ab9b9f3 1 Other Other +8bcd2bfb-aec6-4617-8921-d7fb744e75b0 1 Other Other +8bcd8b16-c8c1-4014-8627-519ef014bc4d 1 Other Other +8bcdc6f8-0463-4002-bd59-1b7fddc919c2 1 Other Other +8bcdfa3b-8fe9-4d10-9612-f22202ba14fd 1 Other Other +8bce2133-decf-450a-a132-8b4b72d602cd 1 Other Other +8bce51bd-3068-43d8-a248-98ad3e4c0949 1 Other Other +8bce725d-411a-4bb8-a1a2-4f87bd0dfc8f 1 Other Other +8bceb34a-517b-417c-b841-4ea20186082c 1 Other Other +8bcecc94-10c3-4333-8024-73523a83d565 1 Other Other +8bced3f5-d02c-4da2-be8e-f1e8b1bf4cd1 1 Other Other +8bcee310-7a6d-43b1-88bd-01b6e5c89b4f 1 Other Other +8bcf4d05-3f67-4c30-8c8e-d00999fcaa22 1 Other Other +8bcfc320-74d1-429b-bdac-1e44fa0266a5 1 Other Other +8bcfd11d-3dad-40d6-a7f6-4eac9012eccb 1 Other Other +8bcfee2e-8a10-4153-a16d-1c8aba11f3b9 1 Other Other +8bcff3ed-d36e-4396-8be4-366c10a63575 1 Other Other +8bd00f66-e4e8-4372-9d41-6fe31a9b6386 1 \N Other +8bd03e91-4077-49f7-8bfd-8c7e5f4e66dd 1 Other Other +8bd077c1-54f7-46fa-9d58-efde691012da 1 Other Other +8bd09f5b-e829-4415-86cb-7d23b6945d12 1 Other Other +8bd0ac2f-08d2-48ab-9d79-1cb5569f7fc9 1 Other Other +8bd0ff72-cdfc-4de6-9ac9-0d1fc02e06c3 1 Other Other +8bd1619a-c939-46ba-9fe2-b4ab78a1b184 1 Other Other +8bd16983-27f8-4cda-9512-77256b007e95 1 Other Other +8bd23897-b6b2-4c88-8c73-2f559e794ff7 1 Other Other +8bd245f9-b47d-4937-97b5-3faf447e08d1 1 Other Other +8bd248ff-6a1f-4e61-b39f-b6f79bdf1f1c 1 Other Other +8bd2493f-432c-4720-a5cd-b4b786b4b66d 1 Other Other +8bd2536c-e19f-4184-9b42-25ebb0c42b6c 1 Other Other +8bd2f698-5728-46aa-ae08-c548491c8522 1 Other Other +8bd2fb4e-de5d-4cdc-b43a-ca15811c892c 1 Other Other +8bd2fbad-ad2f-4576-9616-58476e3945a6 1 Other Other +8bd3455f-d48b-40a4-8d2d-22d103fd8dd4 1 Other Other +8bd36f82-aa1a-4ece-ad20-010f222700d9 1 Other Other +8bd3b91e-eccb-4913-bfde-ae3232e77906 1 Other Other +8bd3eb69-7b4b-4261-b8d2-730df3f11008 1 Other Other +8bd3f7c9-e64a-46c2-89cf-b57273faf904 1 Other Other +8bd40344-a23c-4a48-96c1-52bf99858b7f 1 Other Other +8bd41516-02e3-4488-9a12-db0e24c87ab0 1 Other Other +8bd4475f-a6ea-4843-ae84-b71b77b9d5bf 1 Other Other +8bd452b5-8033-41a4-bde7-6cc8a93959c1 1 Other Other +8bd48aa9-0df7-451b-9570-4380a5f6d3ce 1 Other Other +8bd494ad-cf35-4c1e-af0e-1bf4adb133ae 1 James Other +8bd4aba5-4010-426b-825b-6924377c4e9b 1 Other Other +8bd4c891-75df-46f3-ab33-01947616e7ed 1 Other Other +8bd4e20e-edf9-415e-99f8-ef37dca575b7 1 Other Other +8bd4fe8b-7946-436c-a104-d22d26d73fd3 1 Other Other +8bd5153e-dd88-425d-8d40-433cbd1e169b 1 Other Other +8bd55882-181d-40d8-b1e0-212e2f227bc5 1 Other Other +8bd5eed6-7475-479c-8ca1-78d80cf1c581 1 Other Other +8bd60cb1-a7c5-458c-815d-a7cafc96a9d3 1 Other Other +8bd6167c-9988-4c42-bcad-17b749c88d5c 1 Other Other +8bd62267-dd8c-4bc8-adfc-0775e9caa1f7 1 \N Other +8bd6319e-3dbd-46e6-a9ed-ebb9a90a65cd 1 Other Other +8bd6440f-d7b4-4492-ad78-a8462a32e9b8 1 Other Other +8bd66313-fc8c-4201-a38f-b0e767f2c57c 1 Other Other +8bd6b1d0-1c9a-4f35-be8e-985558b11b8b 1 Other Other +8bd6e211-9224-4dde-ba97-5f919cf1826f 1 Other Other +8bd75694-d301-4c69-bf49-2f451150e37d 1 Other Other +8bd75796-6c3d-4e54-84dd-356b6f091b4b 1 Other Other +8bd75ccb-c689-4bd7-b32e-4c80d2cc4c95 1 Other Other +8bd76f19-932e-4856-8354-26bf49921e61 1 Other Other +8bd7718b-ddcb-4a91-a1b0-12cbb617b05c 1 Other Other +8bd78dcc-317b-4c52-b09f-d21f8fa2d421 1 Other Other +8bd79d90-1ca4-456d-9c0f-135e62cb6530 1 Other Other +8bd7a0e8-1b54-46ab-97ae-400be5f14cc1 1 Other Other +8bd7ae02-aa8a-4298-a2d3-3df9e5c3484f 1 Other Other +8bd804ab-95b2-46aa-ad18-7e4ccf803eb0 1 Other Other +8bd813f3-8acf-4d25-a832-0c1f3d656519 1 Other Other +8bd84b28-33fb-4276-93ee-21ad2d784001 1 Other Other +8bd866ec-286b-478b-a8a9-90db19eb9b10 1 Other Other +8bd87e49-10f3-4f84-81b6-d4114f06b27f 1 Other Other +8bd8ba8d-5fb5-42a8-99e1-d7580c2ddc96 1 Other Other +8bd8f9b8-082c-4ac2-bb7d-8312abcc83cd 1 Other Other +8bd9406e-543b-48b3-be62-be536457ba43 1 Other Other +8bd991d1-6dae-4d65-ba04-b4c76f98f8a4 1 Other Other +8bd99634-6a1e-4c7f-b725-2d1ff18d76a7 1 Other Other +8bd9aad4-d622-4401-859f-883749fb4b7e 1 Other Other +8bd9b42c-48c7-4c4d-815b-3429465973d4 1 Other Other +8bd9c23e-19b8-4677-9d38-fdecbc56fd05 1 Other Other +8bd9da27-d070-4cec-a729-3104bf819136 1 Other Other +8bda49bf-d1c9-43f6-a2d5-326e9a17f26e 1 Other Other +8bdac349-30dd-4d3d-8e6b-54cd3506af74 1 Other Other +8bdadaed-2d98-41d6-ad47-ec557e4fa242 1 Other Other +8bdb09e5-ecbf-4b34-bf94-00549ecf9dec 1 Other Other +8bdb43f3-5aba-489d-9419-0497607e2e75 1 Other Other +8bdb45c0-eac9-4674-914a-66305abf7d9d 1 Other Other +8bdb82ed-948c-4de4-b6f0-2d332104fb27 1 Other Other +8bdbbff0-c889-47c8-8593-5b794e06fbef 1 \N Other +8bdbdf0d-dbd3-4a0c-9f31-9239077d4d80 1 \N Other +8bdc5108-1692-41c5-8cc7-08adc165da0e 1 Other Other +8bdc733e-9433-4dca-81d9-9f9354483dfd 1 Other Other +8bdc95ed-aa9e-40ec-af20-74f4c528da88 1 Other Other +8bdc9cf7-d86c-454b-97fd-23556cfdb324 1 Other Other +8bdca0ca-a4a5-4a14-a124-d5de6f0e4546 1 Other Other +8bdccc35-9ed8-4ee3-9970-10c703e604c7 1 Other Other +8bdd03d5-0190-4a3c-bc1c-87d1bca1321d 1 Other Other +8bdd114a-93dd-47f9-bac1-68543f10db00 1 Other Other +8bdd73df-13c2-420f-a062-59bcde4f3f24 1 Other Other +8bdd7a53-bed0-44a5-a0dc-c36deb6f8693 1 Other Other +8bddaa42-dcc1-45f5-bf5c-0731ee4a5351 1 Other Other +8bdde676-5983-4a8b-a9ce-5b0d921d5ecf 1 \N Other +8bde5f78-7f67-4772-a76e-862088007b07 1 Other Other +8bde7517-b8f5-45f1-854c-0c23337f8a28 1 \N Other +8bde7b67-4c9d-4e6c-abb1-673b80ee21f8 1 Other Other +8bde89ba-529c-4e5c-89ed-9c09e89fdaa0 1 Other Other +8bdeb96b-3b0e-4dc3-ac3e-c846f8e01ff7 1 Other Other +8bdec8b5-a10d-4d14-b7f1-0be6fcc22083 1 Other Other +8bdeea95-a6bf-48cd-8243-92888230f990 1 Other Other +8bdf47b8-6d0d-4643-a5df-ba26bf47b932 1 Other Other +8bdf7895-5168-4692-8819-18d4b287d614 1 Other Other +8bdfbf21-3007-45c5-ab88-7ecc6f880a69 1 Other Other +8bdfddfe-f0ab-4c2d-b052-c9dd67bf1476 1 Other Other +8bdff4bb-205f-4a01-926b-f2a388e21b56 1 Other Other +8bdffe5f-cb77-41f1-b760-02e94b1d30d5 1 Other Other +8be01fb0-189a-4d5f-8e74-cc986c3b0a17 1 Other Other +8be08eb3-4faf-4958-81d6-1beadbb75b6b 1 Other Other +8be09109-49fc-4eea-945c-3c1ca3ca29d9 1 Other Other +8be0a4be-17ae-4cce-8daa-9c00d0c565a8 1 Other Other +8be0c71b-8531-4f51-b8db-8b0f0f7a6c1b 1 Other Other +8be0cd8b-9a8a-4cd2-a968-84e53141e0ad 1 Other Other +8be0f500-fc63-415f-83e1-9bac8ad65cb4 1 Other Other +8be13f62-a57f-475e-96e1-da9a45518bba 1 Other Other +8be17989-7525-452b-8e7c-1d49f6d63517 1 Other Other +8be1abd6-9888-428a-ba15-b34dc078281a 1 Other Other +8be23d39-75c1-490d-9689-c703a3121e5d 1 James Other +8be25cea-f720-47dc-a6df-0c395d461431 1 Other Other +8be26d5b-3ea7-461c-acb7-ff1106a2893c 1 Other Other +8be2b3c8-183b-11e8-877a-fa163e8624cc 1 \N Other +8be2c1da-3742-4ed1-a875-86eaa24b6aa8 1 Other Other +8be2daac-c6b0-4a90-aa8b-7b16e05c9145 1 Other Other +8be2e4d6-f978-4d1f-9f48-e67c2ab1c801 1 Other Other +8be2e750-1b15-4c26-a782-8f6aef52f1d0 1 Other Other +8be32070-2b10-4bfc-9c0c-6dfb1bc70b97 1 Other Other +8be354ca-70b3-4eba-99de-880a765bb5d2 1 Other Other +8be3696d-85e9-4d3a-82b6-a953b5266c7a 1 Other Other +8be37494-5c56-4d96-a7f0-b0959f282765 1 Other Other +8be3b319-8fe8-42bf-8348-68c92091551c 1 Other Other +8be42e22-640e-4fc7-bd08-e12cf2bdfbc6 1 Other Other +8be4500a-6dd7-4659-81ef-549d808b6e16 1 Other Other +8be49f18-e5de-404d-abc9-14da1fe848e3 1 Other Other +8be4b978-b226-4726-861a-2779841461e9 1 Other Other +8be4be91-fda2-4731-a91c-023e20e39466 1 Other Other +8be558bd-e864-4ef3-b042-65e01db25cf1 1 Other Other +8be5f32f-5b5c-4bfd-9218-fa081570d38f 1 Other Other +8be5fe11-9326-412a-bf75-3b211bdaa009 1 Other Other +8be64c7f-926d-40b4-89c3-5ee9c4dd9f20 1 Other Other +8be66326-0577-4d33-8cac-8e516562ed58 1 \N Other +8be6f4dc-78a8-45b6-aea1-a8e392844084 1 Other Other +8be75634-44c2-4783-a195-12b688e98384 1 Other Other +8be75731-80a1-4794-b3aa-e37b1eeb8f17 1 Other Other +8be76142-234b-4b7f-9e83-7450a507a202 1 Other Other +8be784fb-88cb-44c5-bf33-7c84266036dd 1 Other Other +8be7af19-912a-4da2-9317-c0f1d0f7a8ef 1 Other Other +8be7b763-1114-4dfd-ab41-f3a1cb160a55 1 Other Other +8be7ce5a-2c1c-4989-8467-27835554233d 1 Other Other +8be7edba-1f4f-475a-b562-0faef8b19b14 1 Other Other +8be7ef82-7340-4a3a-ab4c-24a0d6e8a4c0 1 Other Other +8be83d5d-423a-4600-944f-d605eeadadca 1 Other Other +8be85090-4fd7-43a9-bcd4-637a15bd10db 1 Other Other +8be89bcc-6355-4aee-ae66-8f93974b4ae8 1 Other Other +8be9270f-3907-44b9-9caf-b1b58c464155 1 Other Other +8be94113-6288-4145-8f6a-a676be6f706e 1 Other Other +8be9e59e-3894-4a62-a0f0-1d41cb99c65b 1 Other Other +8bea2f59-0c32-4340-9d09-8d19f6968c6c 1 Other Other +8bea4233-0a40-407c-8361-4bc896599b83 1 Other Other +8bea461d-e0b6-4617-8dfe-af0cd83d68a2 1 Other Other +8bea60a2-734a-4b5d-830e-fc44c019f593 1 Other Other +8bea7d21-6784-49c8-97ba-149f7de7c667 1 Other Other +8beaf512-40cc-415e-a676-396a91f3d2b9 1 Other Other +8beb1702-79e2-4e9d-b567-ee199c8eeb72 1 Other Other +8beb18b9-9561-4972-9f78-9742f152a3ab 1 Other Other +8beb1ede-6565-44a7-82d1-1e840071ac64 1 Other Other +8beb77c6-8636-4627-96b3-5616727132dc 1 Other Other +8beb7c3f-d32a-4581-9866-ba946a02afa8 1 Other Other +8beb8452-842a-4fb8-946b-903b2e0e7d39 1 Other Other +8beba356-4bd8-4be1-91d8-fe2c10b32d67 1 Other Other +8bebe986-90b9-44b2-8d89-81f4f883dd94 1 Other Other +8bec43e1-9ff6-4688-87ca-958cd7bd8123 1 Other Other +8bec74f0-98bc-4b49-9a5b-12cce9a99c18 1 Other Other +8beca205-58d3-4622-bb4b-ef1599bf6b6d 1 Other Other +8bed1571-e64b-41c1-92bf-018fccfd3074 1 Other Other +8bed9377-3c5a-4685-b901-d959dae8bcd2 1 Other Other +8bedc1b4-da76-4491-8d04-dbce1be4a6a1 1 Other Other +8bee224a-1b39-4938-b23e-f028a0a6437e 1 Other Other +8bee5d0f-2194-4e46-8b01-e83c9108b373 1 \N Other +8beeaa52-ed21-473f-8a67-c6cc5027d615 1 Other Other +8beeb7fd-5a52-4a7d-9299-6c332d1123bb 1 Other Other +8beeceb0-f01e-43ba-b10d-8ec2c6d7b63d 1 \N Other +8bef200e-f2c9-462d-89f3-e6b0932a5c36 1 Other Other +8bef6e8e-2f10-484e-b0d7-3199b36aaf45 1 \N Other +8bef7e3b-17e6-4ec6-8a73-731c709c16e6 1 Other Other +8befa0b3-87a5-4bc5-a576-09cd59adbba5 1 Other Other +8befaae0-fdc7-4c92-8481-1d8f291c2741 1 Other Other +8befb441-7541-4d3f-98e3-fd10246433af 1 Other Other +8befdcf5-b2ef-46ba-a641-3d54e4c81bac 1 Other Other +8bf0307a-7217-4744-b702-e6caaf5a73cd 1 Other Other +8bf06d4f-9909-4dc7-9da9-cd048016cf71 1 Other Other +8bf0af93-4ac2-4ffa-9e7f-ccb7dc31e18e 1 Other Other +8bf0e122-cc54-4d28-b130-9540832adb34 1 Other Other +8bf116a2-d53b-4dab-8ef4-facb591a7ca5 1 Other Other +8bf12297-67ad-4e0f-8a8f-5d7231a2cd69 1 Other Other +8bf129af-71d8-4ab1-bb51-c2d4a1068abc 1 Other Other +8bf12ba9-e20a-4963-902c-1022568fffb9 1 Other Other +8bf14b5b-ba93-4e73-80af-f8185cacd455 1 Other Other +8bf1641f-0c70-487b-8f34-7dc61c717fd2 1 Other Other +8bf17695-1606-49d7-9972-c7554fc210f1 1 James Other +8bf2387c-5bd6-49f8-bc03-7e2c58fd60c4 1 \N Other +8bf24794-8bf5-4bd6-b095-e6b8f79bb47c 1 Other Other +8bf27662-def8-4a2f-b25b-07fd69276faf 1 Other Other +8bf2ba3b-cc9b-42ed-9dc9-2b8f61753c57 1 Other Other +8bf3707f-f995-40af-8c35-71c53ed69a7e 1 James Other +8bf377fa-9d02-47fb-8e61-ac390800c184 1 Other Other +8bf3fbc5-eaf4-41a5-997d-0d762d2dbb12 1 Other Other +8bf40c11-6596-4623-8dcd-769baddc511e 1 Other Other +8bf4137e-0bdb-4f5b-b216-017871cd0794 1 Other Other +8bf42a8a-bff9-46c8-86d7-4d1d139c4c10 1 Other Other +8bf43bab-35f3-438b-8360-192ef2a6d3e7 1 Other Other +8bf442a9-2535-4645-9aee-0d36fc6e4ce2 1 Other Other +8bf44472-4649-4c4c-b011-fc140e6697d9 1 Other Other +8bf44cc8-d58e-47aa-ac40-c106db2c5174 1 Other Other +8bf456a6-1414-4abf-8b55-0d9761b7a6fa 1 Other Other +8bf457e7-2881-4f6c-b384-78ab1909e40e 1 Other Other +8bf4c143-7787-494c-a468-246cab477dac 1 Other Other +8bf4ee23-2c10-432c-8f39-18aac95bd632 1 Other Other +8bf52c50-94bc-4969-8a1a-773cfa1c0d6f 1 Other Other +8bf551b6-0a52-4816-b516-2d5fbded06db 1 Other Other +8bf5a574-0c79-4251-9395-2391ae73976f 1 Other Other +8bf5ade6-6447-463f-b635-305ee7466863 1 Other Other +8bf5d43b-6bd6-4182-9b96-f7fdfac239c3 1 Other Other +8bf63611-c73b-41b7-8160-3a2670f60f60 1 Other Other +8bf6883f-f667-4e80-9cf1-01f2d695e7e8 1 Other Other +8bf69387-74e4-49f3-bad3-7277810c9017 1 Other Other +8bf6a7da-e67b-4fdb-88ca-844713a758db 1 Other Other +8bf6a82d-3232-4231-b0a2-eeeafbbdc1e1 1 \N Other +8bf6add9-7709-43f4-aec1-c81cec0dbd9b 1 Other Other +8bf6e204-6baa-4d80-852e-d482a832117f 1 Other Other +8bf70a03-5269-4089-898f-20787761f0f1 1 Other Other +8bf739b5-5d6b-4f6a-95f0-15d67a50d31c 1 Other Other +8bf78f11-7f49-4204-b00c-5e412136ef55 1 Other Other +8bf7b98b-d137-4054-8ac7-0453079480f0 1 Other Other +8bf8029a-49df-4ca1-9492-5fa2fe05e20c 1 Other Other +8bf8a7c5-429c-4f73-b0d6-5e303bb03984 1 Other Other +8bf8e417-a503-4db4-ae55-824ddfac1a9d 1 Other Other +8bf8f56c-f95b-449a-8c27-9133198fa0e3 1 Other Other +8bf98c63-df39-4545-b603-9d923a5acee8 1 Other Other +8bf99dd8-7847-4a35-a687-49b5e5ce837c 1 Other Other +8bf9a714-8456-4a66-b37c-b13b2c7adf77 1 Other Other +8bf9f592-281d-4d4c-b892-25f85105d773 1 Other Other +8bfa005d-d23a-4cfc-9346-ccd3f8bbadd2 1 Other Other +8bfa1755-e573-4713-adc2-0ab043c66eb4 1 Other Other +8bfa64a5-61ac-4f2d-9051-b779780b86ea 1 Other Other +8bfae2ce-dc43-4937-857a-a18f81891790 1 Other Other +8bfb166c-60d0-4b7a-85f0-509c2183cf98 1 Other Other +8bfb5701-6965-4de8-9b68-6700b0af171e 1 James Other +8bfba95d-caac-4630-baec-a45a47fb878b 1 Other Other +8bfbcfc6-d250-44b6-8eed-12e186e0945a 1 Other Other +8bfc161a-adc0-4914-bbbb-90e72e25e71c 1 Other Other +8bfc45bc-a501-437a-8423-750de9a7b5f6 1 Other Other +8bfc5f27-90e7-42a0-9d82-33031b341e37 1 \N Other +8bfc9dfd-c577-4cd4-b65d-a054be4c1a99 1 Other Other +8bfcaab9-7692-4591-9fc9-6638ac4b00df 1 Other Other +8bfcc12d-db42-4b25-b348-200b6040944b 1 Other Other +8bfcc2ad-bcef-4e75-a9e3-107e0dc1cc56 1 Other Other +8bfcebc5-826b-420c-bf4c-37e6b5c5bcc6 1 Other Other +8bfd5c7c-adef-45f9-ad37-ab61a7baa117 1 Other Other +8bfd8be7-5ce9-4cd3-a0b0-0b0ef2c907f2 1 Other Other +8bfd90f4-a92a-4568-9c31-fe643e98a9af 1 Other Other +8bfe634c-5d29-472a-a9a6-1f70ebe78089 1 Other Other +8bfe8fb6-f966-4703-89d6-dd41278b02fb 1 James Other +8bfea77f-9e53-4a15-850b-04a78fc07081 1 Other Other +8bfebc6c-2733-41c8-a2b5-9a24acdf0f59 1 Other Other +8bfed247-155a-480a-a244-be53ea0b1ca2 1 Other Other +8bff262b-768f-4de0-8cb2-eb954dafe1d8 1 Other Other +8bff2bf7-15b3-4837-ae59-8d482a8f7ee4 1 Other Other +8bff338a-7a02-45ea-aa95-5af8702b7ad4 1 Other Other +8bff3a8e-8558-4751-b069-14dd8d0a3f63 1 Other Other +8bff7250-c793-49d3-9026-c1ae81c6610d 1 Other Other +8bff8e15-3ded-4746-a567-db5af579c867 1 Other Other +8bff9133-f695-4a6e-87d5-1c12e56d552a 1 Other Other +8bffad8e-b5d8-49e5-9fea-2b9d2b75e24d 1 Other Other +8bffb8ce-9784-450b-a632-86d1dc5724c5 1 Other Other +8c003b1b-613a-43b3-a6e5-19347a349d0d 1 Other Other +8c0057c4-8265-4877-95e1-daed8353146a 1 Other Other +8c00889c-cff6-4622-ba29-8348ca751fea 1 Other Other +8c00d9c1-8ff4-4d5e-ba64-ea9dffe6d5db 1 Other Other +8c00f8ba-ecfc-4c93-8df0-79931b37e7d3 1 Other Other +8c0147d8-4cdf-4d3a-93b8-76b56393fc44 1 Other Other +8c0150dd-3d77-4f2a-ab00-5ea9315b3a35 1 Other Other +8c019291-4748-41b1-a32a-5e30a7288889 1 Other Other +8c01ccda-6e9c-4731-9b7c-d2d7f88daa1b 1 Other Other +8c01e4e2-f960-4d54-a315-0d0258828183 1 Other Other +8c0207a2-86d6-437c-bd73-abfb06246e44 1 Other Other +8c0225a4-2010-41fd-8f10-d47f1403d52b 1 Other Other +8c023147-5d5f-4438-bcc9-889c97e0f056 1 Other Other +8c025849-0f42-4827-b7cb-cf4bcf6a9bb5 1 Other Other +8c026909-9cea-4bab-a360-a8fdf39ea44c 1 Other Other +8c027b05-8ee5-4ca6-a434-23bec6b7ba62 1 Other Other +8c02d67b-874c-4163-8000-dcc15bd06c7e 1 Other Other +8c02f6c0-8c6b-4b9e-85c8-9e28978e9022 1 Other Other +8c032bfc-daa6-4a38-a7a9-5a28e3b6d008 1 Other Other +8c0362ac-78bf-469d-a6d8-defd0c895682 1 Other Other +8c0371b9-5914-4500-b8b1-58170e36e2a8 1 \N Other +8c037ff9-36e6-4f8e-ae94-944aae71e7e1 1 Other Other +8c038528-2caa-4cf1-aa97-75e221ec0bae 1 Other Other +8c03e66f-76a0-46b4-b465-22986bca5c6e 1 Other Other +8c040aa0-9a76-4ad7-bdf0-71da329b1e40 1 Other Other +8c0436cd-8a1e-458c-9fcb-0bb42d24e3b8 1 Other Other +8c048c21-6895-4a4a-ae40-0848f02c14e1 1 Other Other +8c049a40-5c26-462a-9b43-9f61dd16e4cd 1 Other Other +8c04c3ee-5368-445d-9363-d002609740b8 1 Other Other +8c04d2d3-9459-4f00-9dd3-4b59ac028207 1 Other Other +8c04eaff-ef42-4a40-8f87-87c8459774c4 1 Other Other +8c04f68f-8ff3-4d8c-b07d-7f4a16da2930 1 Other Other +8c051aa2-9583-486b-8567-866685ad1dcc 1 Other Other +8c0538c5-0899-4438-ade5-7ec3e09c09cf 1 Other Other +8c053aa0-07a1-47aa-9bbd-3dea898f053b 1 Other Other +8c055507-c243-4743-bf6f-3b85597f253b 1 Other Other +8c0586b2-9e23-4786-aba0-a74d93e7582e 1 Other Other +8c05afcb-7266-4789-9733-944a17016d8e 1 Other Other +8c06131a-f7f1-4000-8f5e-6966440088fb 1 Other Other +8c06244d-3cf2-4a1a-8b21-d7e81e8b89d7 1 Other Other +8c062cf0-8182-4f9e-9dcb-56f0f63cfd05 1 Other Other +8c06b6b2-4591-4b88-b941-ed3a7da245f7 1 Other Other +8c06cddb-0650-49b5-8b55-809e58614bf8 1 Other Other +8c0753d1-b957-48b0-8be9-1c5cd643e43a 1 Other Other +8c07616b-4546-472a-b917-ac98992dd448 1 Other Other +8c079e90-68eb-4ba6-9430-317ccbf2dc53 1 Other Other +8c07aafb-9fd6-4495-98dd-492da6ccaf46 1 Other Other +8c07b018-8eb2-4b72-9e00-c2a8b2820699 1 Other Other +8c07bc85-55fc-46b4-a0ed-7f969d6c8fbd 1 Other Other +8c07d5bf-41be-4d77-96f7-a718d77089b0 1 Other Other +8c080e01-aa8c-4109-a25a-f5698bfc760b 1 Other Other +8c085966-b15f-42c9-8b89-ee2b747ed0f0 1 Other Other +8c0875ef-dacd-4b90-8091-4d7c85bf4a52 1 Other Other +8c08c76d-8c49-45d3-9d86-c70e9d30c948 1 Other Other +8c093333-9c37-4f3a-aedc-d07c0dd97efe 1 \N Other +8c093727-9d2c-42c4-a27b-4e663e050b28 1 Other Other +8c09626b-3954-4400-9d5f-e6423c22925c 1 Other Other +8c099911-ede3-4f2c-a666-8201c9aac081 1 Other Other +8c09c3b2-cd78-47ee-8614-cec12dbd9061 1 Other Other +8c09db79-d94e-43db-94dd-1a2d15648ea1 1 Other Other +8c09f16f-993a-4f06-8050-e4665d28e339 1 Other Other +8c0a2767-8432-4bb3-803e-50afde93396c 1 Other Other +8c0a3a4d-04b3-41c7-8c88-3d1f28bec4e2 1 Other Other +8c0a76a5-64bf-4500-8bf9-c77bc15daa9f 1 Other Other +8c0a85d7-31a8-4332-bfd2-8b32331895e7 1 Other Other +8c0a87a6-4723-43f0-a097-323e53e169c2 1 Other Other +8c0b1f03-0a98-4254-b455-eb310098aaa7 1 Other Other +8c0b48e5-f52f-4a94-8a8f-a72edbcb0d90 1 Other Other +8c0b5c1a-f192-4b77-a41a-5108c5ffda9a 1 Other Other +8c0c110e-1694-4a37-bcd7-e138a70a928e 1 Other Other +8c0c43cc-b098-480d-bad4-8bf9eb0b926c 1 Other Other +8c0c52d5-9e03-495c-946c-f0a4d2e9dd84 1 Other Other +8c0ca230-96a4-4da6-bccf-8ff317caaf0e 1 Other Other +8c0cba08-35b0-4083-8e85-b4e1adc0e396 1 Other Other +8c0cc434-a9d3-41a0-ad69-c9ae3cf9d665 1 Other Other +8c0ce9ea-aa45-430b-b338-ae6fc38fc522 1 Other Other +8c0d2f05-1fa3-4e2f-aae1-8b53b04203b0 1 Other Other +8c0d41e6-49ea-4c7d-aace-c4d071d7ea68 1 Other Other +8c0d6f15-0a82-49b8-ab41-b8c6ec2d067b 1 \N Other +8c0d7430-39e3-43de-9fa2-232088cf10f4 1 Other Other +8c0d90c5-4f18-494a-b490-6946aa5a3d9e 1 \N Other +8c0db893-327f-487e-a52d-79c5e82b5270 1 Other Other +8c0e13fe-3e9d-497e-93b3-31fdb8d949be 1 Other Other +8c0e26ca-f6bd-42bf-843b-44aeb4bcf9e0 1 Other Other +8c0e4c54-8c86-42cf-a1fe-ed17144e615b 1 \N Other +8c0e526d-391c-4cf8-a953-b9b5c6591c8d 1 Other Other +8c0ea7de-2175-4d69-8d3b-22b2c43cb5de 1 \N Other +8c0ecd18-c1b4-4208-815b-982fa89dbdd9 1 \N Other +8c0ef807-3749-4879-9a65-d83c31b29d25 1 Other Other +8c0f20b5-f9ab-4867-aaab-c388cd5fb5a2 1 Other Other +8c0f3427-910d-4ad6-a387-9c5c69a49075 1 Other Other +8c0f93ed-1ef5-432c-827a-7f1cc5ecc581 1 Other Other +8c0fccb2-0e65-4b1a-9745-7316fd8efc89 1 Other Other +8c0fff68-5b00-4353-b9ca-4fdf3d523fa6 1 Other Other +8c103d46-1943-4d55-b2d9-01beae00673d 1 Other Other +8c109116-3375-44a5-be2f-dd99db377c08 1 Other Other +8c10b9eb-0050-4e92-896f-35d3dae30237 1 Other Other +8c10f809-a441-47a7-82f3-9d5ae2eceaa1 1 \N Other +8c10f8ab-1d06-463b-b167-aa9d7b1960dc 1 Other Other +8c11041f-57f0-458a-80ca-c0420a7a93ad 1 Other Other +8c115ef3-e8f6-4ae9-a3c9-731d68f162ce 1 Other Other +8c116c0b-199b-4c3a-a8a3-759b17cedb80 1 Other Other +8c118fb0-ad5f-4145-a38b-a3db0c6b3afa 1 Other Other +8c11d3c7-26a9-4dba-b4f1-0f04e6c06056 1 Other Other +8c11d4a3-6a1e-41a5-a06d-a4a10936e7a6 1 James Other +8c11de4a-e2ac-48b1-a6d2-84dc9176e0d2 1 Other Other +8c126595-a4c0-4fb3-b5f0-38e5c4376254 1 \N Other +8c126ac8-8f60-469a-9fd5-c00e0107c83d 1 Other Other +8c128010-8bad-47e4-879a-9c0511b0aa9f 1 Other Other +8c128ac3-0493-4926-80ab-a7a489b982a3 1 Other Other +8c12db9f-8ddb-4f2f-93e3-2fc1258c04bb 1 Other Other +8c12fe94-06a6-4d99-a922-ef97cc673af8 1 Other Other +8c131c36-04ad-456a-bacf-58767bec5040 1 Other Other +8c13460e-b042-4a45-9f62-49972b20155a 1 Other Other +8c136111-8b8c-4781-9c2d-1d09a50c41da 1 Other Other +8c136125-296d-4018-9afc-7c86ba848400 1 Other Other +8c13981b-c875-460d-9253-ab02bb388346 1 Other Other +8c141b4a-8034-4c0a-8bee-12a82d7395ae 1 Other Other +8c1443a1-514e-4e79-a046-b99aee2168e3 1 Other Other +8c144674-9d73-484d-88fd-5835b1245a77 1 Other Other +8c145b27-0129-4190-bc2d-ec450ec7bfa3 1 Other Other +8c1484c5-2fec-4079-9d72-0a20cae00251 1 Other Other +8c14bc9b-7c05-43fa-96c1-c10e30f54556 1 Other Other +8c14dab1-7eb3-423c-b14d-66f59e1e79de 1 Other Other +8c159262-2574-4d99-9916-9d8ceadd4709 1 Other Other +8c15bdbc-5b49-42a8-b727-60b849e82a32 1 Other Other +8c15c2f7-a592-48bf-9efb-82fe7d4703ad 1 Other Other +8c160c2c-37a2-42d3-8517-8fc218b11c33 1 Other Other +8c1656ef-96ec-4b39-93de-436d1fb4f0c7 1 Other Other +8c16adf8-c4e4-4be4-9c9f-b159b7af9830 1 Other Other +8c16f15f-fca1-4390-ad73-02a6b57d24a7 1 Other Other +8c1755ef-f7d0-4376-b7fe-b973f7fbbf21 1 Other Other +8c17576c-5da4-4ed5-af7c-4d54392bc40d 1 James Other +8c175917-b0a8-4c4e-b9e6-1d207ddeec14 1 Other Other +8c176685-063a-4afd-a5ff-30ce73501a3f 1 Other Other +8c1773e2-5610-4202-a35b-15b18c0cd402 1 Other Other +8c17a863-8e12-4cbb-9ca1-12f3209e7c66 1 Other Other +8c17d2c3-8c01-4eba-83c9-f60095ccfaa9 1 Other Other +8c17e4d8-7063-48ae-b5e8-c348b830c060 1 Other Other +8c17e7c1-0c37-4b9f-9332-d067f0ca4360 1 Other Other +8c188862-e941-4289-ac40-2460f3c23012 1 Other Other +8c18e27b-1ca0-42cd-a982-732889e5a833 1 Other Other +8c194382-fe0a-4580-88f4-7b463d1c8109 1 Other Other +8c194414-0681-4d90-9053-71e46cfa504b 1 Other Other +8c1976d2-8655-4251-b5b7-b95e1acad1fb 1 Other Other +8c19a1d4-d503-46fa-9aae-a432a2d67a13 1 Other Other +8c19b83b-48a4-4266-8cf7-a26b20c7983a 1 Other Other +8c19bbb8-bad0-4c94-b871-fb2fc5049dd4 1 Other Other +8c1a2822-4d91-4cb0-b2c6-94fc6c0fbc44 1 Other Other +8c1a5ddd-9a3d-4928-a397-b0775a109461 1 \N Other +8c1a6873-12b9-4b73-b7b8-62da6e0a482e 1 Other Other +8c1aca6a-a621-4186-9fd3-cb604ea277a6 1 Other Other +8c1b0cf2-c8f1-4163-b5a1-ffe54f0ffaf7 1 Other Other +8c1b45dc-ade0-46b1-83ec-779ed71e3916 1 \N Other +8c1b5077-6f85-4f75-8766-869cdeb6cdd5 1 Other Other +8c1b5554-9c93-4098-88f9-5d983339d32e 1 Other Other +8c1b6317-90b5-49b9-a7aa-1bae05282168 1 \N Other +8c1bb86e-745b-401f-8779-1d3fcc622794 1 Other Other +8c1bc8e9-017f-45be-8995-a5a54236ba6d 1 Other Other +8c1bd75a-6f4e-4980-8b06-5a2e721f3591 1 Other Other +8c1c20d2-4620-4fd3-928c-3af20d480625 1 Other Other +8c1c2f9a-4c82-4950-872a-0035da1ae69b 1 Other Other +8c1c627e-9218-4182-9bce-9a5cefb43768 1 Other Other +8c1c703b-5037-4b29-8e59-d153c190887a 1 Other Other +8c1d142b-ee16-4cb5-8e97-8e4fbf3d4dca 1 Other Other +8c1d443f-fe7f-4103-b60e-305b73254406 1 Other Other +8c1da23e-4c26-43a0-9c97-33989818f475 1 Other Other +8c1dbe9d-6954-4113-9e94-e6aa65a5c9df 1 Other Other +8c1df78a-b1ca-4af8-96f5-5748f0762757 1 Other Other +8c1e1f3c-6829-4f40-b84b-d7d1e8f6accd 1 Other Other +8c1e2743-cf84-486e-b7b3-3687ff6f0fed 1 Other Other +8c1e40f1-1d8c-4e42-923f-b9e792b3076a 1 Other Other +8c1e5195-69f4-4559-a96f-cb2ad188c426 1 Other Other +8c1e5a24-9df7-4919-b238-5d7fb1243a60 1 Other Other +8c1e758a-e5b9-4ed4-a945-3fe0947e47bf 1 Other Other +8c1f18e4-e0a4-43cd-824b-10583691054f 1 Other Other +8c1f2322-04ed-4d12-9f9f-10393f4a20be 1 Other Other +8c1f35e8-5fce-4e6e-9eca-59fa43239562 1 Other Other +8c1f4959-6191-4cbc-8ab6-d80505df3c2e 1 Other Other +8c1f5650-7dfa-4f14-81c7-6d592cc59362 1 Other Other +8c1f6cb5-ec20-4d13-a484-534a76c73c51 1 Other Other +8c1f9189-72c0-4f3a-b331-62a8c8d020bd 1 Other Other +8c1fa8a7-9d91-470a-bfb9-5f040e7820f6 1 Other Other +8c1fa8e6-8e13-4252-87c7-3cc5a8e4bb54 1 Other Other +8c1fa93c-9b7c-4da2-bcdd-835b9a1f9c51 1 \N Other +8c1fb486-6321-433c-9f9c-dc64c0fd68cd 1 Other Other +8c2022fc-4f03-4bfd-aa1d-2fea66359582 1 Other Other +8c2072b7-715c-4c41-bfce-d41ce6cb8a1a 1 Other Other +8c207aea-2924-495a-845e-4e64fb7683ec 1 Other Other +8c208b90-a141-47c9-8618-a82bdaf7adbc 1 Other Other +8c2095a6-f561-4795-91c7-827a4e0002bb 1 Other Other +8c20a84e-2dcd-4132-a035-30615ab8f135 1 Other Other +8c20d38e-cb17-4d6a-a983-13004853aac1 1 Other Other +8c2142bc-a328-4423-90f8-4c29e2cf1bf3 1 Other Other +8c21c2c0-cf5a-4a56-a3eb-c218fafd4556 1 Other Other +8c21dc52-198f-49ca-921c-053fef3c2f77 1 Other Other +8c224df3-5edb-459f-9a81-4dd290ebc47d 1 Other Other +8c227a5e-cb56-4699-a396-88d655ea22c5 1 Other Other +8c22abf5-f0b5-40c7-a648-b968a2ae3cfc 1 Other Other +8c22e80d-e576-40e8-8a4e-06a6bd4940a0 1 Other Other +8c22e822-98e5-444a-a477-0bb63fe6d120 1 Other Other +8c22efab-a69c-45b2-8d9f-3e2ca7c843a6 1 Other Other +8c231d8f-e446-4830-bf35-9b3e0efe3687 1 Other Other +8c232f8a-176a-44dc-b02c-a076a4a9cd00 1 Other Other +8c234cc3-0479-4341-afd2-ad74811dae05 1 Other Other +8c23b13e-ff16-4d9a-8d15-9f8605b0e690 1 \N Other +8c23d57a-57a5-453e-ac9a-b240716e6f51 1 Other Other +8c23dd51-a415-4d82-8179-af73bdb0e038 1 Other Other +8c23efba-3e67-4f7f-a720-cab2c52ef348 1 Other Other +8c23fb7e-70dc-4ee2-b118-aa212c6fc26d 1 Other Other +8c246337-2d4a-468e-99c0-42ec7fc40e70 1 Other Other +8c24eaf7-e33a-4508-8de3-d978fa2453bc 1 Other Other +8c24ffad-fd58-4845-a67e-9408424ef258 1 Other Other +8c252fd0-cc9f-4dc8-bdb8-fa59219955f4 1 Other Other +8c25850b-5c90-416e-9fbd-c4b8fbd7a3cc 1 Other Other +8c25ed71-aaf0-4dbc-bc12-d800da32dde0 1 Other Other +8c25f9f8-d141-4d1c-909e-a880f021459c 1 Other Other +8c25fc52-5c42-464c-8cc8-27aca877e660 1 Other Other +8c2617a3-3c54-402c-898d-926f4eb543f9 1 Other Other +8c261ac3-77ae-4af5-bdcf-c9b5e5276019 1 Other Other +8c262639-e130-40bc-a44e-e5f64e2c1de8 1 Other Other +8c264b5c-f8ea-42e9-9e5b-0e3e2f9955b2 1 Other Other +8c265ec2-b799-4c66-9b4c-1d6a0d9884ab 1 Other Other +8c2668e2-2919-4926-a707-762053754915 1 Other Other +8c26810f-d837-40e1-99ac-4c2ff0defcee 1 Other Other +8c26bba8-2993-4b68-a464-37291ccc1091 1 Other Other +8c270763-e049-46fa-ba06-6fb72a31ef6b 1 Other Other +8c270ef5-1933-4a39-aed1-fd5ace6414cf 1 Other Other +8c271547-be3b-4636-b61e-6adadf0efe05 1 Other Other +8c273de7-da1a-47c8-9ee2-ff729d77a88f 1 Other Other +8c277e88-5392-4226-af75-a9606368999a 1 Other Other +8c279748-33d8-4b07-bcae-51dcba8c8d00 1 Other Other +8c27b8cb-1d57-4a67-ab56-7202ff74af51 1 Other Other +8c282914-ebff-41e2-b4b5-196eb595d3be 1 Other Other +8c285f51-cad5-4de5-b078-acc0f7964fbd 1 Other Other +8c288807-76ed-4e02-af19-516124f50401 1 Other Other +8c288f06-41d2-44a4-ba50-1c06ddd86a7e 1 Other Other +8c28a2fd-7605-4310-9793-646b1441fc0f 1 Other Other +8c28e8a6-940e-4ec3-ae70-a93e8fa2382f 1 Other Other +8c28eee7-2c89-442c-8056-5b9c951ef685 1 Other Other +8c290a2d-bf69-4e45-ae30-89d5fe89a36e 1 Other Other +8c293308-98d8-42f5-bffc-9128c4ba78f4 1 Other Other +8c2961be-940f-412b-9f3e-1130ae945bae 1 Other Other +8c29ae5e-9d46-4ef1-9173-475d6f495411 1 Other Other +8c29f2c1-1c12-4521-90bb-24658ea48c43 1 Other Other +8c2a2ba1-bd59-4e16-b4e0-f0cf88cd671b 1 Other Other +8c2a7835-5386-4317-9ce9-f45b16f2fc31 1 Other Other +8c2ac3a6-8888-4017-bf71-4df1f28a8891 1 Other Other +8c2ae226-c55b-4108-b18d-31670c4b2d96 1 Other Other +8c2aebc8-257c-4d1d-bfc9-9ac0a72484dc 1 Other Other +8c2aef4a-704c-48ca-89d2-14e4fc5bb06f 1 Other Other +8c2b136d-f35d-400f-80c3-2e9c731eb4db 1 Other Other +8c2b5d06-e379-404f-b69c-f546f2d43e70 1 Other Other +8c2b613f-c9dd-4160-b81a-b6f554c6cbab 1 Other Other +8c2c1cc3-8336-4626-a4d7-b6ea440bb657 1 Other Other +8c2c2f89-adef-4efa-a7e0-52cffeac6ee4 1 Other Other +8c2c9d10-a63c-4650-b7fc-d4510b9b2564 1 Other Other +8c2ca00f-8315-407d-b2aa-3ce6878d54aa 1 \N Other +8c2cb331-5a72-40a1-a039-297f8a38692a 1 Other Other +8c2cfca4-41e5-406b-8310-2b18f382ef46 1 Other Other +8c2d08e2-aa31-4197-86e1-6d182f06749b 1 Other Other +8c2d2276-998b-475a-a29e-44273393b6bf 1 Other Other +8c2d2d75-543d-4306-8e5a-7524be74d74c 1 Other Other +8c2d370b-2fc7-401c-970b-01dcd82edc61 1 Other Other +8c2d9ad1-a4ee-4dde-9dc9-8be25078ae07 1 Other Other +8c2df527-2925-41fa-8a72-29c68e8066e2 1 Other Other +8c2ec1c8-7a55-4e98-871f-f3c83303ba02 1 Other Other +8c2ec7f2-ee86-4d75-ab4d-1aaa7ed5a601 1 Other Other +8c2ef2d9-8d05-4165-aee4-2d936e875aaa 1 Other Other +8c2fab25-d9c6-4562-acd5-08376a56dd6f 1 Other Other +8c2fb2ac-d43b-49c3-a94e-2a99f3dba6e7 1 Other Other +8c2fb5d5-803c-4bf2-8ee1-6560694442db 1 Other Other +8c301b4b-f3af-4893-af6d-aa2dd8cef1d8 1 Other Other +8c30285a-afa7-4d54-a472-da63c40eab26 1 Other Other +8c304f59-8e28-42ad-b666-302992c25f33 1 Other Other +8c30b153-2b8e-4d8c-9631-04a23291b816 1 Other Other +8c30f876-64e2-44be-9e40-5df6b848b619 1 Other Other +8c3131c1-f59d-4cb2-836e-a15413ff6956 1 Other Other +8c3142be-107c-45e2-8fd4-3ca5f1083d43 1 Other Other +8c31560d-da49-47a1-82b6-51929d1a4ab0 1 Other Other +8c31b7d3-4b4f-44b1-a5d9-20959245f577 1 Other Other +8c31d913-0c41-4bb7-986c-1861a82ad201 1 Other Other +8c320b88-a082-473a-b77a-1d18e2d337d1 1 Other Other +8c32270f-9399-4ae3-b719-0dadd425f3c2 1 Other Other +8c32af2a-bb78-437a-b49a-b31adeacc256 1 \N Other +8c32d045-43d3-4443-ab5d-69af14ab794b 1 Other Other +8c32d3c0-5479-4e8e-add6-37918b3d9f22 1 Other Other +8c33cb05-f5b6-417f-80c8-6a142c864d0b 1 Other Other +8c342835-5a31-41bc-9d87-1f74f8973b73 1 Other Other +8c343c0a-2c4c-409c-98a9-05613c3dc731 1 Other Other +8c349d06-f0f9-4047-86e0-b6a78cdca9a1 1 Other Other +8c34c987-7ede-40c5-a0ae-cccb8c644066 1 Other Other +8c34cfb9-d636-42a2-bf53-45add052d26f 1 Other Other +8c34d819-e82a-46da-bb88-17711a84bb4d 1 Other Other +8c34daa5-a56c-4902-b987-a4812f636dfb 1 Other Other +8c35394f-9513-46d0-8705-2c0b530ab9e1 1 Other Other +8c3559d8-4336-403d-b6c6-3149cdea4f95 1 Other Other +8c359661-a2ff-4289-b484-64ea4118f211 1 Other Other +8c359e9f-3f24-41f5-b917-946cd859afa7 1 Other Other +8c35a2c8-663b-4941-81b1-31fd7796c659 1 Other Other +8c3600ed-3785-407b-86a0-c3ccd0ded19c 1 \N Other +8c36695f-cbb5-4a92-af90-ecc8dc5d3001 1 Other Other +8c369688-7e7e-4778-acce-9681f4497688 1 Other Other +8c36c047-72b4-419f-ae22-a3dce08e9c22 1 Other Other +8c36dced-680c-4695-8f8b-b2b53dba8044 1 Other Other +8c36e201-e9e1-41b7-9cb7-132b1cb41189 1 Other Other +8c3705af-1416-4820-a5cb-9478f972cdff 1 Other Other +8c370e8d-4423-443a-b64e-071815fb2675 1 \N Other +8c371fd4-d5c7-4f7c-babd-87c5ef38851c 1 Other Other +8c3721c1-7fd7-4de8-853e-604ba86d5a0b 1 Other Other +8c372faf-2bfe-4bec-97be-38d9fc96af1c 1 Other Other +8c3783d7-a6c1-48e4-b0c0-1aeb40e7905c 1 Other Other +8c37cc6d-9115-46a0-86df-05bfd4a69d82 1 Other Other +8c37ddf8-ba0a-466e-9908-164b9adab0e6 1 Other Other +8c3804d8-f676-4b1a-a16e-54431ad2a955 1 Other Other +8c38146c-3a89-42ef-9d39-9b87d24bbd5f 1 \N Other +8c3824ef-a86f-49e3-a9e8-0ebad728a63d 1 Other Other +8c382741-a965-49e7-9166-19788610df11 1 Other Other +8c3843a6-2b13-4738-87b0-11bdfb2a23a8 1 Other Other +8c3848ed-bb20-4819-bdd0-96b296aea2ff 1 Other Other +8c384d37-23bb-41e4-92d1-4626ad88e4ea 1 James Other +8c388b4c-a783-4788-ad71-5243cd7f099c 1 Other Other +8c38afd3-9e98-48c3-9adf-cdaa7063ae95 1 Other Other +8c38bb76-ee8e-4262-b12e-f7730bd43bed 1 Other Other +8c392996-2f6a-4391-ac68-1897bd26c720 1 Other Other +8c39d0f3-c250-4878-b42a-af4866ea4380 1 Other Other +8c39f6db-2ac9-4f3d-aeac-9d9bdda10f52 1 Other Other +8c3a1017-b06e-4f5e-b38f-7e1f0e62dca1 1 Other Other +8c3a2c3d-eac1-426d-802d-fe3ba79e7ee4 1 Other Other +8c3a3429-a978-4d48-b42a-f30164c67bb3 1 Other Other +8c3a6e62-cb64-4f01-8d10-273c59af7e14 1 Other Other +8c3ac272-7449-4288-a2fb-79caa6867d5e 1 Other Other +8c3ae8a2-e2b0-4dbc-9ad9-4865acb6a742 1 Other Other +8c3b1681-a4f8-447b-8d68-27ea43815827 1 Other Other +8c3b42b2-bafd-41ff-bf57-42c6e40687ca 1 Other Other +8c3bbeee-4dba-4f84-967d-c40e6348a0c1 1 Other Other +8c3bca2c-a212-4cf8-a986-9a47907d2a8d 1 Other Other +8c3c364e-68aa-44c7-af5e-cecdf6cd06f3 1 Other Other +8c3c8f31-4506-442b-9536-5ea502eff240 1 Other Other +8c3cb691-d336-484f-91d1-a67c700e2a66 1 Other Other +8c3ce119-b0ad-4c2d-a803-a5b6910a939e 1 Other Other +8c3cf945-2192-4d75-a1ed-65c0c9a09a10 1 Other Other +8c3d2ca1-1388-4c1e-9236-bc0b7dc9afc6 1 James Other +8c3d3300-890a-4473-9720-a4cfd4945e7c 1 Other Other +8c3d8dde-d61a-4ef1-9c50-58b6a5575efc 1 Other Other +8c3da1a3-0bab-47b0-83ab-4907101ebf7a 1 Other Other +8c3dc0ee-7e98-48c4-aea8-49735a8344dd 1 Other Other +8c3dd1cc-b42f-4a8a-880c-4333870f2d7b 1 Other Other +8c3ddd1f-ab16-4576-88ab-ffd6e87c51ee 1 Other Other +8c3e5224-2194-4186-9b0e-6c1abd7b531f 1 Other Other +8c3e7a22-1cef-4078-888a-b824fdb820d0 1 Other Other +8c3e7ecf-26ba-4945-bf86-bc5797f76f31 1 Other Other +8c3e943b-7ec5-4791-a3e1-3005e6f83dcf 1 Other Other +8c3f33a8-9d0b-48a8-98c5-00f56f6007ea 1 Other Other +8c3f4655-7a26-42cd-8bcd-16410d5eafd0 1 Other Other +8c3f4f54-3316-40c9-becb-6e393064e1fa 1 Other Other +8c3f6a41-63d3-4aa7-be22-2a448f7fc577 1 Other Other +8c3f814c-e4ab-4a5b-8fb4-b1cd8ee4592f 1 Other Other +8c3fb590-31cd-4b97-91bb-6e32e514c1c9 1 Other Other +8c3fc635-c239-487e-9069-7798a020e062 1 Other Other +8c3fcdfb-9946-4df2-8114-29b5741f9bac 1 Other Other +8c3fef34-f1ea-41b7-b115-4842f09bb027 1 Other Other +8c3ff492-b206-4075-abac-f82193729b74 1 Other Other +8c40115f-8c2d-471b-8f21-8927926e0eb1 1 Other Other +8c4048b6-557b-40fd-ad97-d1dc8b2727f9 1 Other Other +8c407973-7c62-4d74-a63a-543c02183787 1 Other Other +8c409984-177b-484f-9191-49cd5e748be7 1 Other Other +8c40b207-9222-4b76-a653-e3c4ae7d26e2 1 Other Other +8c40ba74-9cd5-4bde-a80e-8d659149d1f2 1 Other Other +8c40c3ea-0c1f-40ae-86a0-a603210d34d7 1 \N Other +8c40d094-8769-4004-96ab-02a2c7d3da14 1 Other Other +8c412dae-f63e-40c7-a7cb-c130bf7be836 1 James Other +8c41d8dc-c77b-4ed4-9773-054d7170e581 1 Other Other +8c41f1d4-1662-4ce6-bdba-91d4c1212c78 1 Other Other +8c4280c0-7e12-46ad-8b95-1dece3bf3c0c 1 Other Other +8c428b09-3c24-419f-880c-f7e197ea4f25 1 Other Other +8c430741-823a-4b70-8e10-7310d9d972f3 1 Other Other +8c430b60-9635-434c-ab35-050db5b19057 1 Other Other +8c431f7a-28cd-4545-9322-81ae114b341c 1 Other Other +8c43595c-e89e-4903-a1d9-c00d7bf17745 1 Other Other +8c438c58-f8ec-43dd-bd39-55555be7d5f5 1 Other Other +8c43d014-9561-4b5f-9570-0c60bc16d261 1 Other Other +8c43d8b6-22ff-440e-9aab-5ef569ceae6c 1 Other Other +8c446906-08ff-4a02-9ea8-a3bdb1747daa 1 Other Other +8c4480ef-8829-4750-8d76-791b9aaf8574 1 Other Other +8c45016f-ac5d-4b51-9da3-909b3298d1b2 1 Other Other +8c45152b-4ce0-4c7c-927f-900f9270797a 1 Other Other +8c459dca-d8d0-4b88-8f4d-8912283f2b71 1 Other Other +8c45b8a8-33ca-4204-9753-12c0cf98f7cf 1 Other Other +8c462ee7-c287-44d4-bb28-570cbda51603 1 Other Other +8c464389-4645-4b8b-b24f-6bd2d16a13a8 1 Other Other +8c4652aa-0c49-435e-84b1-12356a230571 1 Other Other +8c465f07-6420-4fd2-8343-0f3c715c885a 1 \N Other +8c46849b-7481-4c9c-b744-6c44da42f0c0 1 Other Other +8c46dd9e-47c2-4552-a984-7bacff391385 1 Other Other +8c46fa5b-897c-45d2-a019-ff733d44e0b5 1 James Other +8c47025c-4544-11e8-9787-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +8c476178-7e8c-4099-865d-d43a6cae60c9 1 Other Other +8c4769c9-b8cb-4277-84fc-b7be097e4787 1 Other Other +8c47a430-5694-45f6-b135-373315dc45fa 1 Other Other +8c47bff7-237d-4a1e-9d53-05f076ffe2d5 1 Other Other +8c47e3da-b28e-47c4-bd82-813d3c9fb39b 1 Other Other +8c47e523-ff81-4a43-a9aa-28c0b7bcd8b0 1 Other Other +8c47ef0e-7082-427c-a061-5077d919dfcf 1 Other Other +8c480c6b-a86f-4217-b2a5-f6eccc21e901 1 \N Other +8c486fe7-fabd-4dbd-9e05-3825136f7875 1 Other Other +8c4893b0-a6d2-4ba3-bb69-ef1173162758 1 Other Other +8c48ba2a-78d8-4745-99e8-d55a1b3a220b 1 Other Other +8c48eb64-1700-40b0-a0c2-ab1c3589edee 1 Other Other +8c48f720-8e3d-457e-ad04-a12d8e93ac05 1 Other Other +8c48f8ae-8c05-4628-88a4-95f7a5c3591d 1 Other Other +8c4917f6-0f21-4034-8f23-cd7f73f4d6a5 1 \N Other +8c49296a-2b60-4a03-8a51-d8e8c5aa3022 1 Other Other +8c496ef0-f5bf-4ba9-88b6-89ccf290f76b 1 Other Other +8c4976a6-0a91-43da-b6b7-a70046e27896 1 Other Other +8c498c74-541e-45dc-91bb-50df5a398858 1 Other Other +8c498e5d-604e-4921-92d4-efa59e0860d3 1 Other Other +8c49a758-5963-4126-889c-9de87240ca5e 1 Other Other +8c49b997-97ba-44a3-8805-4ed235ccf120 1 Other Other +8c49bac0-4a9a-4c96-ab3a-d702193c5641 1 Other Other +8c4a15d2-a2e0-4e6d-a584-c56f62dcc5c6 1 Other Other +8c4a67f7-034e-47c5-a3a6-a93805d25b3e 1 Other Other +8c4a7a25-c38e-42b4-b126-fef6fd072791 1 Other Other +8c4ad7ea-57ba-4850-b4cf-ae052ee7e17e 1 Other Other +8c4af195-61f8-4818-8c01-76ed15e5253e 1 Other Other +8c4b2040-51dd-4c19-84a9-c8f06d4f7bba 1 Other Other +8c4b3b40-7791-4a96-a3b2-994f7bde0a78 1 Other Other +8c4b5de0-420d-4078-9bd5-c4cef8f0db88 1 Other Other +8c4bbaac-930a-4b73-88c3-282b37e2f8de 1 Other Other +8c4bd7df-94e8-41f6-b8b2-852ef30037cf 1 Other Other +8c4bdd0f-4219-43f3-bea7-05a09a6d989d 1 Other Other +8c4be2c8-8b92-4eed-9b50-eba9501a49e8 1 Other Other +8c4c2da3-ee64-4a6e-8969-9f429da83cc5 1 Other Other +8c4c3cee-33cc-4e71-bfba-b36e135b69cd 1 Other Other +8c4c9590-b041-46dc-afbe-91876b3cac9d 1 James Other +8c4d0c94-9cb1-48c5-a4ae-f527bcb9bf5a 1 Other Other +8c4d1760-46b7-40bc-9e8e-ca07cb07c5d8 1 Other Other +8c4d2339-ae74-4a6c-94e7-3b6b607638b2 1 Other Other +8c4d83ad-2c1e-4a2d-a5a5-4465b82a80e2 1 Other Other +8c4da8a6-9927-4554-af08-032a09f99f88 1 Other Other +8c4db843-d3e5-47ef-86b1-9a8b0f25c8f8 1 Other Other +8c4dd4ef-591d-4028-87a0-c3ac1b7d81d4 1 James Other +8c4df7c8-546f-4691-bd29-33309643781e 1 Other Other +8c4e02e0-78b3-4598-8caf-1805f91e7dc9 1 Other Other +8c4e0893-e074-4662-b80b-c1d889fcb096 1 Other Other +8c4e50ff-87bf-4c55-a1d4-d5b624f11c81 1 Other Other +8c4eb65a-2ae5-47c4-9669-e554ecf423b7 1 Other Other +8c4f00a3-d9c9-4084-b19b-6ae364f5c8e3 1 James Other +8c4f6d8b-fa10-42f7-847f-2636aa545500 1 Other Other +8c4f7aaa-3e04-4247-9e01-c041d7384d61 1 Other Other +8c4f8e70-3563-4f5e-9fce-02eddf36264a 1 Other Other +8c5017ca-63a8-49d4-8d83-b2976f07f57e 1 Other Other +8c50556e-43ce-4dde-8d41-e673f688fd9b 1 Other Other +8c505dac-68fa-440d-8b30-373f185f87c5 1 Other Other +8c50a147-5910-41fd-b80b-40db9552769e 1 Other Other +8c50beb0-287b-44a1-90dc-4cf4c7f49291 1 Other Other +8c511b81-7ee5-4a7b-acec-c9d42a7c5fbc 1 Other Other +8c51397b-6534-4ec7-b847-c66dac7b70d9 1 Other Other +8c51664b-6efa-4c27-9a37-61c5d052b8ec 1 Other Other +8c5166fc-2675-45f3-baa0-2bdba82ba649 1 Other Other +8c51870a-56d1-41e7-9d91-d6e7cf2866a9 1 \N Other +8c518f56-fd0c-4eee-a270-c04b44dc2a7b 1 Other Other +8c51bf18-cb1a-4cd3-bdf8-3675ace86478 1 Other Other +8c5215e9-90fa-496e-921c-4f9fdd52d372 1 Other Other +8c52278f-ca83-413f-9409-5d8e5bc62297 1 Other Other +8c5227db-5255-4e1f-a6c5-d2d3f8d1c530 1 Other Other +8c522900-d267-47d9-952a-ca591779bd29 1 Other Other +8c524739-6ac8-4277-be4d-ec1afdec5187 1 Other Other +8c5276ac-5c4f-4a94-b881-b7169fad94fe 1 Other Other +8c52845b-53ca-4d51-a239-9633eddc2de5 1 Other Other +8c528fcb-1d1f-41dd-a83a-dc58370d8c1d 1 Other Other +8c52f7b3-a304-41a8-b486-a2ee050f1f92 1 Other Other +8c53556a-a82c-4262-8a56-3b2e01aa50b0 1 Other Other +8c5368ec-ceff-4d0f-8ddf-54524af48ea8 1 Other Other +8c536e4a-5bbc-4571-8b5d-11bb5ebec6aa 1 Other Other +8c53864c-d4bc-4912-8289-4ae4b2d779fb 1 Other Other +8c538d74-1ee6-4e17-9d40-9e75c901ac00 1 Other Other +8c5390e1-04c6-4012-a639-ab4a14fa1a7d 1 Other Other +8c53cc4e-d223-4c0e-8fe7-b2ac466ce60d 1 Other Other +8c53ef1a-5868-4f47-8e0c-2e1e2d5d5e84 1 Other Other +8c54430b-bbd5-4a11-99fb-092ec0a4ccd2 1 Other Other +8c545a4e-2941-4fea-9465-4f8c2b633df8 1 Other Other +8c548cb0-7a38-4470-82ec-441a2528951e 1 Other Other +8c54a5eb-345b-4adc-96fb-f0c8f695ef30 1 Other Other +8c54c6af-59be-4601-803a-d801b8cf0d8e 1 Other Other +8c551b38-b450-4049-9171-af74782deb04 1 Other Other +8c556cb5-d8ec-4970-92e7-dc1fc511ce00 1 Other Other +8c561bb3-5e35-4698-af8e-ff297d97fd4f 1 Other Other +8c5681d3-4cce-426e-ae7e-be18a84277ec 1 Other Other +8c568ef9-9a65-421f-85dd-e441117ae5cc 1 Other Other +8c56e508-4b51-43ed-a73b-2489591bda01 1 Other Other +8c5719ad-3c00-43ee-ad1a-477828f1aba1 1 Other Other +8c5753ce-8aed-4464-a344-5300fa4e92e7 1 Other Other +8c5768fb-5769-48e2-a80a-7e0520e138ca 1 Other Other +8c5796ca-b7d0-4d60-bc28-08843bc6608c 1 \N Other +8c57b2ae-f5f1-4be6-a5e1-f9f60ffea6fa 1 Other Other +8c57d8fa-5393-4499-83b9-87297755dca0 1 Other Other +8c57eb08-3cad-48a6-ae6e-532856ab9faa 1 Other Other +8c57ee7c-e9bd-42d1-a79b-dbee322c2b2b 1 Other Other +8c57f8d5-b625-45cc-8394-1107c857650d 1 Other Other +8c580fe6-37e9-488d-aa7b-5added560cd1 1 Other Other +8c587758-d46e-455a-8944-2a433da85e7c 1 Other Other +8c58911d-ed7c-4572-b144-74e8098ef211 1 Other Other +8c58d7e1-f81e-42c5-aef8-a15795a55c24 1 Other Other +8c595e85-1329-48ca-9b75-c521c66aa882 1 Other Other +8c598489-aa91-4ad3-a901-f215058b4709 1 Other Other +8c599134-a5c1-45b5-b7fa-1218275b6276 1 Other Other +8c59c70f-99ac-45e0-b8c0-82616691efd8 1 Other Other +8c5a3622-0f8a-4a06-99bd-30c4ad87e24f 1 Other Other +8c5a97c3-89e9-402b-b5e7-9e9769713171 1 Other Other +8c5aa158-a6cb-4e0c-ade8-68b333609b3a 1 Other Other +8c5b0696-b27d-4a35-9a88-2ed04e751580 1 James Other +8c5b119e-9e9a-4bee-8a57-dacaf1b2961a 1 Other Other +8c5b36be-9f49-4325-a8fc-a91851008b33 1 Other Other +8c5b3b4e-f652-4971-a01f-2b5174fd7812 1 \N Other +8c5bdfb6-01cc-4835-b756-aa1ce6fc196a 1 Other Other +8c5be642-b7a6-4994-9d2f-38e316872271 1 Other Other +8c5c088d-4024-4247-b594-b95dbb5ce513 1 Other Other +8c5c6bbd-1d20-4aa8-9dca-4d4b3e059eaa 1 Other Other +8c5c7c32-f144-4678-90cd-57f2cba8c1ad 1 Other Other +8c5c8bda-35f1-4cb5-9d41-97b5d4d05783 1 Other Other +8c5c9555-3452-4a04-b75b-3c654767ddc3 1 Other Other +8c5cbf7d-7891-4f97-b75e-5809d77b5fbd 1 Other Other +8c5cd8a3-812e-4de3-a4c5-caed81458aa7 1 Other Other +8c5d5ff7-0e03-4d53-8251-2797b451cb11 1 Other Other +8c5df55f-9807-4636-b301-6a2f8f8a27fa 1 Other Other +8c5dfdcc-3839-45d7-9313-127f38795076 1 Other Other +8c5e8a47-d8dc-439e-b71a-c06aefdc4cb4 1 Other Other +8c5e951a-72dd-4ae8-8d0d-c69545b0c12f 1 Other Other +8c5e9e88-cb46-4ab8-b74a-a87e7e86b957 1 Other Other +8c5eb886-74d5-48c8-9b6e-1e01e7039a39 1 Other Other +8c5ebeb0-6618-48d5-9763-949a65316947 1 Other Other +8c5ec626-cde3-41f4-9313-a1804292aa16 1 Other Other +8c5ec6b9-2caf-4398-9f12-a2d3f39fdb52 1 Other Other +8c5ecfeb-502c-4175-b9d7-da5c0ecaa313 1 Other Other +8c5edb75-d2f3-4fc9-b466-10ef85951ee4 1 Other Other +8c5f07e7-90a8-44c3-9513-ed2993dbde2e 1 Other Other +8c5f1a94-fc37-4102-bade-adadf252e1ad 1 Other Other +8c5f20b3-948f-4efc-88f3-2f842696406f 1 Other Other +8c5f3a3b-5685-4dcc-868e-331b230a2801 1 Other Other +8c5f8091-a161-418b-83a2-819f5127930a 1 Other Other +8c5f837a-8473-4ce8-94e1-eeac6b0bfef3 1 Other Other +8c5fd2f4-fcfc-4835-9ffc-179dfe026527 1 Other Other +8c5fd479-8dbb-42ff-b227-12df1f0d33a6 1 Other Other +8c5ff98d-78e3-440b-8f0a-6cffbe84b3de 1 Other Other +8c60309d-9a66-4e87-916d-1429c047519d 1 Other Other +8c605b8e-fe8e-4231-aace-da3a35bfb5c4 1 Other Other +8c606890-174a-43f4-b8ce-751c09354cba 1 \N Other +8c6077d2-ce1d-4e52-b758-6c681f264795 1 Other Other +8c60899e-0a20-4b11-b3a3-cd97fd47265b 1 Other Other +8c60f9b1-ffc3-4b92-b62a-a68df53637e3 1 Other Other +8c6149b6-7c03-4cf9-baae-76a0637e6b81 1 Other Other +8c616b2c-7e7f-4261-a9fb-2dfe330fb46f 1 Other Other +8c6190fc-5a2b-4103-a1c4-10db12017887 1 Other Other +8c61a00f-fe44-4e6c-8c72-0502a4593970 1 Other Other +8c61c01b-1ecd-43d2-a7f7-3889337d7a1e 1 Other Other +8c61c828-d953-4e78-80d3-c15ebb58cc47 1 Other Other +8c61e8c1-5c3c-4d6f-add9-cb68605c62be 1 Other Other +8c61f864-1bc2-47f9-bc24-091a39f1f8f8 1 Other Other +8c63187f-23b8-488d-ae3b-7f837f378306 1 Other Other +8c634c0f-a738-4b67-9fac-52d50a438b23 1 Other Other +8c63d243-06a9-4234-8dfc-d48177960cd3 1 Other Other +8c63e26f-8fdc-4969-98b1-a9a7641e632b 1 Other Other +8c63faaa-01df-4819-b48d-3da25c7baf97 1 Other Other +8c643c95-5bc6-432f-8e5f-ba454159d6f3 1 Other Other +8c643d14-4428-4374-aef4-fce4c2db5180 1 \N Other +8c6472e1-75ca-424f-b93d-84339012f0c6 1 Other Other +8c64cc77-9b11-4ae6-a1f6-a698573900c7 1 Other Other +8c64e61d-c03f-4aec-aa1f-7c6826e96413 1 Other Other +8c652565-9c8e-4d1c-b0c2-d6dd094cc69f 1 Other Other +8c65336c-9018-4ddc-96cb-325678b57773 1 Other Other +8c65405f-c85f-4143-b02b-66b6d37dbfb6 1 Other Other +8c6541b6-570f-4f03-b98f-abcd4732ae01 1 \N Other +8c6561c0-6a99-4cf0-935b-45fcfc9ede5b 1 Other Other +8c657729-6f4e-40f0-a551-e826664c5a18 1 Other Other +8c65a5d8-c57c-4037-931e-c33c4679ca3d 1 Other Other +8c66007d-a1b7-414f-bc4b-eb3bf1a488c1 1 Other Other +8c66048d-5148-429b-997c-e7f8bafc1708 1 James Other +8c662f77-48d1-43f2-bd88-3ff2e346cc75 1 Other Other +8c665aae-1956-4def-87e9-95b8464a5e69 1 Other Other +8c666f2d-5bd2-41cd-99b0-fb77386fc7d3 1 Other Other +8c6687ff-f6a6-4f80-bb22-dc848f15bb3d 1 Other Other +8c671920-8fe7-494e-8b16-f6e14f84e421 1 Other Other +8c675e29-de6c-47a6-b496-ec35197c5717 1 Other Other +8c67906c-94c5-42cd-850f-b74f3a52bac8 1 Other Other +8c67a005-7cfe-4638-b664-d088a899d02b 1 Other Other +8c67a138-614c-4027-a0f1-ca9765455446 1 Other Other +8c67cc1a-d969-4791-96ea-e982f1d73d3a 1 Other Other +8c67d482-7be3-4002-afaa-68011649ffba 1 Other Other +8c67e00f-ff9a-4a52-90bc-370031f7154d 1 Other Other +8c68396e-6db3-4232-9f20-5304bb05a75b 1 Other Other +8c68436b-ab22-43cf-b1ff-288778858b01 1 Other Other +8c6896a9-d792-4890-9262-a24d6db30041 1 Other Other +8c68b04f-3257-4917-8afe-2aecfa64b079 1 Other Other +8c699305-3ec1-4590-9afd-13a95dc4dd64 1 Other Other +8c69d7c5-9186-485a-9720-0ee1f3c65abd 1 Other Other +8c6a25d5-d9f1-4874-b756-91c5c7c7efd7 1 Other Other +8c6a2d4e-171f-4667-b955-427516ef77d4 1 Other Other +8c6ad284-fa83-45f1-9bc1-45e747801725 1 Other Other +8c6b02c8-de5c-445f-9c8e-56d9da63e99a 1 Other Other +8c6b08b8-2c87-444a-9683-a2b737951475 1 Other Other +8c6b1294-78bc-4023-a280-a6f1e6980526 1 Other Other +8c6b33fc-395b-4639-b80e-64ebf78f557e 1 Other Other +8c6b681d-2c4c-41d9-aacb-e03ec5372e33 1 Other Other +8c6b998f-00ea-409e-a7e5-c9ec8d48060a 1 Other Other +8c6b9e33-3908-48c8-8a2e-6af704fb3cb2 1 Other Other +8c6ba014-4a1e-43a9-b3e0-b76b9c3a9dd8 1 Other Other +8c6bf89d-c5bf-4522-bf58-6d63fce1c010 1 Other Other +8c6bfd31-7e7b-4302-9ab0-2a9b1a32685c 1 Other Other +8c6c77e0-23ad-4cac-be8e-735e4f307dae 1 Other Other +8c6c7ed1-3157-42c5-a4b0-d7dfc3616a9c 1 Other Other +8c6ca831-cff7-4e50-b127-a39a9600b20f 1 Other Other +8c6cb544-9cb3-4990-92e9-2fd069f9e7bb 1 Other Other +8c6cd85e-e452-4cce-9cab-50ce8f6f0102 1 Other Other +8c6cd91e-960c-461c-a11d-55ab0170116d 1 Other Other +8c6d22b3-47a0-4b58-94b3-73979b12fb70 1 Other Other +8c6d24f1-5291-4853-9d0c-c6061bb4510c 1 Other Other +8c6d5d8f-c683-4f6e-88b6-c5f06feff36e 1 Other Other +8c6db7fc-82b4-4965-85b0-03c1e4c11406 1 Other Other +8c6db9c5-9a10-483d-b872-db590a849546 1 Other Other +8c6deaec-2441-46b6-afbc-6957318fe889 1 Other Other +8c6e2455-da7d-4f42-9f40-a3eaef97b278 1 Other Other +8c6e598f-af8a-46d1-b85c-e6cdd56c8ee1 1 Other Other +8c6eff64-70d8-4c7d-a10a-5f16c0fcbfe1 1 Other Other +8c6f61bf-8617-4ed4-a663-646fe8410355 1 Other Other +8c6fbdc4-c7d5-4786-b773-7f5d9227d1b2 1 Other Other +8c6fc9b2-77cd-4ea1-884d-708088e6fc7c 1 Other Other +8c6fd1b9-c39f-4519-9ef0-9b1a1ddc66d7 1 Other Other +8c6fdd80-5313-4186-acbf-2238c85b2a20 1 Other Other +8c7032f5-35de-4444-9e3d-a85755ef12ad 1 Other Other +8c703442-4158-4d85-bdfa-b0f7b2264af4 1 Other Other +8c70c00e-5d48-4fe8-b17c-12c23cd0435a 1 Other Other +8c70ee9e-7826-491c-8760-1d37057a480f 1 Other Other +8c71661d-aa88-4929-80c4-7f18b7f5fdbf 1 Other Other +8c7176eb-abd3-44cf-b6d4-60dc5311372c 1 Other Other +8c71e139-c5c7-441a-8068-ddc69429ac14 1 Other Other +8c721126-6dd1-45d0-8152-c40bd5273b20 1 Other Other +8c72b37a-3a68-4f17-9970-4a427395e2d9 1 Other Other +8c731b39-ee9f-4e86-9c10-06e4acd5cceb 1 Other Other +8c732b74-2d5e-43da-880b-bcc05821fa92 1 Other Other +8c734e30-c663-4419-b1d1-f4802c5bb251 1 Other Other +8c738927-4ec0-41d6-9ef2-d64b7880cfbc 1 Other Other +8c73c22c-e35b-4d3d-84eb-f87cc2962468 1 Other Other +8c7415c4-d0a6-46c8-a4f7-d9526cd78e05 1 Other Other +8c7418ae-9d73-4db9-b431-a4bb7e436cda 1 Other Other +8c742235-fe34-401c-8efb-dce69ef2dea1 1 Other Other +8c749841-69c9-44a2-a0df-9d36487b93c1 1 Other Other +8c753c0f-08f4-48a9-99d0-08c1935b305f 1 Other Other +8c757110-01aa-4196-91a3-fbec6abe5e3d 1 Other Other +8c75795f-e706-4e13-883a-71f900d0424e 1 Other Other +8c7592c9-d448-4b88-9b88-5c7cff94084a 1 Other Other +8c759507-54d2-4486-b4d0-00f10ca685fe 1 Other Other +8c75d635-08bb-4bf6-9908-744a6b530c4a 1 Other Other +8c75f5a8-0a8a-4197-9d00-cedec52b6082 1 \N Other +8c760d0c-f63e-48d5-b68a-8bbdf63f048e 1 Other Other +8c760e2b-1693-4c4b-8ae0-b6b8dbdbbcb9 1 Other Other +8c77bdf8-14e6-43f7-b668-46a11d544ad1 1 Other Other +8c77e246-c19b-4d76-a791-eee1ba4d2afe 1 Other Other +8c7830b6-90c9-41b2-aab1-2eb0188376ca 1 Other Other +8c785b85-647d-4bc8-adf8-9264307ff832 1 Other Other +8c785d9b-98a4-45e0-9bc0-98df10f0fd2a 1 Other Other +8c7864bb-72ac-4c16-bfe5-5a7291e8eedd 1 Other Other +8c78b0a6-45f3-4ccc-a941-159565f57732 1 Other Other +8c78fff6-a308-44a6-a89a-c9d8526d764a 1 Other Other +8c790c8e-7028-4fce-a8ca-2b4f0b0f3b54 1 Other Other +8c7988f4-fc6b-42df-859e-0b44dfa8f838 1 James Other +8c79bb62-2c8e-4d3b-9209-3a0a3f6aa994 1 Other Other +8c79cc2a-ada0-4a01-ab1b-04988fb4972a 1 Other Other +8c79e8a6-7b3b-4759-bbdd-f281f0a5c0c3 1 James Other +8c7a3a77-f87a-4849-9541-6c341f9bb51f 1 Other Other +8c7a8551-1ef9-4fe3-89b9-0ad32a59c4b7 1 Other Other +8c7b0680-c2ae-4804-bd83-783bf661e8cc 1 Other Other +8c7b3d99-d29e-45a4-a8ea-05c1a7c3fdad 1 Other Other +8c7b5687-cbf5-4c9e-b436-2a6b98c6b6aa 1 Other Other +8c7b5799-923d-49ce-86d9-4719e02ad7f2 1 Other Other +8c7b5c5d-99fb-4ef6-8861-a02a7a20d300 1 Other Other +8c7b9b6a-a867-4451-baeb-5c56efd06121 1 James Other +8c7bca43-b4a6-4dd4-9778-62097975af8e 1 Other Other +8c7c190f-756d-4dd5-bef7-58b327a5ff4e 1 Other Other +8c7c20c3-3d85-464a-8fa8-22f8b93579dd 1 Other Other +8c7c3fb7-e235-4a00-9da6-e6a97d00fbbb 1 \N Other +8c7c99c3-e526-42de-ab8b-327747828ff6 1 Other Other +8c7c9dbb-4119-45a3-b4b5-2bcb439312df 1 Other Other +8c7cd273-6f54-4f6d-95fc-1c25efaeb3a5 1 Other Other +8c7d45f5-b8d5-4d0f-b091-9481dc2a71f9 1 Other Other +8c7d81b8-d900-4dfe-88e8-f3eef9145c1b 1 Other Other +8c7db588-8d05-4cc1-b645-250638c1c90a 1 Other Other +8c7e2cdf-a2cd-43ad-83be-d4df6f49cd53 1 Other Other +8c7e869c-5a9f-4fc2-83d1-7dd6fc2ebc69 1 Other Other +8c7ed153-f01d-48b3-8853-9fed90871b0c 1 Other Other +8c7f012f-c359-49ab-8aa0-1fafd40e234b 1 Other Other +8c7f5dd0-3057-4010-b4dc-c1fd8f19abb2 1 Other Other +8c7f80c1-7777-4ce9-96be-e710f6806676 1 Other Other +8c7fb2b1-c31e-4b9e-b9b3-dc032a4049e7 1 Other Other +8c802375-a29a-4a33-ad3c-959ed8af9fd3 1 Other Other +8c8043bf-f2b6-495a-8bdf-ec8b2d9db2b1 1 Other Other +8c804be1-2a1e-4528-bca6-8958db7fc931 1 Other Other +8c8093a5-336f-4891-8904-1caf7849f7b8 1 Other Other +8c80fe22-8718-4c79-a6f9-60faf3d8878f 1 Other Other +8c8113ab-42f1-4b2b-bcfa-e38a8055dd2e 1 Other Other +8c816f8b-80d1-4bff-a12f-839641183808 1 \N Other +8c819a69-4a4c-4523-accb-1dda2df52663 1 Other Other +8c8225f1-94b7-43b8-a1e7-4350670a600f 1 Other Other +8c8242a2-9982-4eeb-a5f3-8fbc5bbffc47 1 Other Other +8c82a317-dabf-4028-83ee-fa4f03eac5e8 1 Other Other +8c82aec8-d005-4117-a3e3-c30132132eb7 1 Other Other +8c83895c-86c6-419f-b239-3a446fd97988 1 Other Other +8c838d88-7a99-4bbd-b8e7-bbca267174bc 1 Other Other +8c83e508-c5ad-4cf7-af65-ca853705308f 1 Other Other +8c83fdf6-b875-446c-bce7-c6b24b1a05e4 1 Other Other +8c843322-8efd-41f7-b1fe-ef2a5f069a85 1 Other Other +8c84349f-2d81-475f-99fa-218cd57c0017 1 Other Other +8c844ac4-a7cb-4581-9ac6-f419b4aa5617 1 \N Other +8c845e7d-fbd3-4b5c-9d97-4417504cab40 1 Other Other +8c848b48-ddab-488a-8d1b-dbf43b81314c 1 Other Other +8c84bafd-420e-4ad5-9e47-175245ce859d 1 Other Other +8c851c9f-a457-4913-88f7-0f845155ce19 1 Other Other +8c859899-5599-4d6f-8c7f-493c9c92ceaf 1 Other Other +8c85b3ae-e208-434a-9a91-44cd1d29d290 1 Other Other +8c85cecc-eee8-4c27-840d-b731bd6a5091 1 Other Other +8c85d947-e327-4790-b05d-87873bf69d7d 1 Other Other +8c85de5a-cd22-48c7-9ed8-d23df03091a9 1 Other Other +8c85e4d8-6139-4de9-b5e3-f5e9424669c8 1 Other Other +8c865771-e5ba-436f-ae2f-c0c62b1e4440 1 Other Other +8c87158c-683a-4704-9c74-e3dfe11c4669 1 Other Other +8c874cd4-51c9-4bbf-b70a-b008a5fbca5c 1 Other Other +8c8755e1-49bb-498a-a8bd-71efe4e99e9a 1 Other Other +8c87dfc1-5844-4183-b4bf-8f74e5ada8da 1 Other Other +8c87e52e-6093-4d1b-a914-fe1ac04c9d1a 1 Other Other +8c8845e0-5bd5-43eb-826f-5faadf7819f2 1 Other Other +8c88465f-c525-4bde-9932-050836b6d594 1 Other Other +8c889b32-73f7-4d93-ba3c-8bfa69c01169 1 Other Other +8c88f37b-998c-4ba3-9a5c-89fe21828d6d 1 Other Other +8c88f989-5412-408f-81ee-e8bfc49d2e2d 1 Other Other +8c8958eb-fc04-4870-a87e-745b508847bf 1 Other Other +8c896a37-77de-4a63-99d1-0dc98b104c67 1 Other Other +8c89c3ae-72e3-4781-bb10-f1d57634d325 1 Other Other +8c8a314d-d2f3-4177-b893-14c8d7e667ad 1 Other Other +8c8a67b6-11e9-47d2-99a5-3705bfbd89e2 1 Other Other +8c8aa73a-50cf-4b83-8483-96d617f9f2f2 1 Other Other +8c8abd3c-2f41-48fe-aad8-f2335c80fa34 1 Other Other +8c8b180e-7dea-47e6-b84a-ae8eb63e1cfe 1 Other Other +8c8b759f-cd6c-4f08-b269-4f4e7e3dc871 1 Other Other +8c8c11d5-788e-4ddd-b170-663a5a9e2a76 1 Other Other +8c8c7ad5-8b00-4c7f-b03c-aa24d8196174 1 Other Other +8c8c88a8-a6f1-46c6-a2d6-6fa2ded6e350 1 \N Other +8c8cb1cf-313f-47d3-9af4-4313829e248c 1 Other Other +8c8ce208-833c-4123-8256-28b0ed5e849c 1 Other Other +8c8d4c61-4107-4854-be38-9e0157c187dc 1 Other Other +8c8d5a24-78f3-447e-8a44-a005c072204a 1 Other Other +8c8dc778-f35d-4f76-b9e0-0350de0e2c95 1 Other Other +8c8df49e-eeeb-48fe-a2e3-d704a7e5c824 1 Other Other +8c8e247b-450d-44d4-89bd-0a798a29449b 1 Other Other +8c8e5498-6c43-4348-b98f-a3b6744fb445 1 Other Other +8c8e9e26-91f5-4b71-aa97-da6f3d401671 1 Other Other +8c8f1282-157b-4a5f-bbec-1027911a1517 1 Other Other +8c8f28b5-5d76-40f6-92e1-bb231e3f2d11 1 Other Other +8c8f48f3-301f-4568-b425-db7ceaf9c37d 1 Other Other +8c8fa365-4139-4e68-9dd4-a84c5bd4d34a 1 Other Other +8c8fa4ec-e0d4-4a74-a7c6-ed593ebcf962 1 Other Other +8c9000d7-8b46-47ca-8e74-e4bc232b0677 1 Other Other +8c901617-00ab-4056-a832-584bd870baf8 1 Other Other +8c90bfbf-3c70-4010-9ca3-e2cca8cc8874 1 Other Other +8c911d9f-8635-460e-8cee-6098358b4c22 1 James Other +8c914d87-2ec9-4c8e-961c-e9de1168aee7 1 Other Other +8c916bf9-b53a-443f-854b-197a2ab37c70 1 Other Other +8c9186fc-f9f7-4352-a4df-7cf363436795 1 Other Other +8c91a04a-a018-4856-8401-67aee617a47d 1 Other Other +8c91a255-fcef-4e9a-8fcc-1a468b25849a 1 Other Other +8c91cf85-f423-49b3-8535-17bb99eb7964 1 Other Other +8c91d78f-cf00-4db2-be9c-2bc7f465ca2b 1 \N Other +8c926412-26bd-49ff-8a90-06e4a1bd8c6f 1 \N Other +8c9268ca-971b-4452-b439-2dce0e32f77b 1 Other Other +8c92787d-f3ab-4805-b38f-01dd370e01e6 1 Other Other +8c92fb85-af1b-4727-ba99-20e4dc99d809 1 Other Other +8c936299-fb22-4d0c-b5a9-90a5715ac170 1 Other Other +8c93dc45-1c67-48a1-b819-c4d9944446de 1 Other Other +8c94057c-13ce-4375-a835-3e0ac1d509e5 1 Other Other +8c9447c6-36b8-4306-8583-d3e166e261cf 1 Other Other +8c946d1a-aa0c-4f20-b718-a5737a5144d3 1 Other Other +8c94e075-c6f7-45e1-baf5-8969830e3a30 1 Other Other +8c9515e6-07b8-443c-84f7-d8bbedacda70 1 \N Other +8c9552af-0639-41bf-af8f-5d7e6968e93b 1 Other Other +8c95631e-c85d-4141-a526-7300483e95a7 1 Other Other +8c958fa9-6267-4f0c-b3fe-34e5a6df4146 1 Other Other +8c9590f4-8211-483d-8f30-0e7578df304a 1 Other Other +8c95a166-7229-4cc5-970f-925663487c6c 1 Other Other +8c95e162-7fa1-46ee-a5ca-eabf90b2ef94 1 Other Other +8c95e4f6-1207-49a8-8dc2-440191e6a4ad 1 \N Other +8c961ec4-aca3-49c4-a28f-cc917fefd628 1 Other Other +8c962959-aad6-4668-a2be-3cadff4c368e 1 Other Other +8c966097-f8a2-4ede-90ee-637eb557879f 1 Other Other +8c96aac7-1422-40c3-bce6-75b746b62b2d 1 Other Other +8c96acbe-ee95-45b8-af53-965982063223 1 Other Other +8c96bba9-f733-458c-97da-7bba842f6aa9 1 James Other +8c96cea9-3ac6-43ea-99fc-5ad48a5d3324 1 Other Other +8c96d42a-9dfe-4bef-8bd8-bcfec1753388 1 Other Other +8c96dc1f-689c-4f13-a5f4-50517b4714f6 1 Other Other +8c96dfd1-0470-47a3-b161-10ce622352ed 1 Other Other +8c96e4c3-9c01-45b1-b316-65f207fc1cb8 1 Other Other +8c96e4ef-1318-457b-9013-622b92129930 1 Other Other +8c9703a5-6795-4d99-88bd-9228101b4398 1 Other Other +8c973c3e-9803-4d34-b571-0fcb062869e6 1 Other Other +8c978f1c-7d33-42ce-a329-192d0678d01c 1 Other Other +8c97906e-e49d-4e2e-80a4-a75315d20d16 1 Other Other +8c979e84-1f0d-4053-b0a4-2b0398cd5840 1 Other Other +8c97d68b-3a7b-4dff-9a6a-793d2bdf7884 1 Other Other +8c984731-da50-4b7a-9be6-1849f60cad8c 1 Other Other +8c989c55-1d88-40c4-a2e7-5682ada3a9b4 1 Other Other +8c98ca1e-b3eb-4b6c-afa6-6db207c55cc6 1 Other Other +8c98d3de-13aa-445a-b092-31e45963abcc 1 Other Other +8c98ee3d-35ef-4720-ad0b-d25e56d9fa16 1 Other Other +8c9900c1-14ed-43fc-8c4e-d56a0e69ea47 1 Other Other +8c995467-f46b-4fa9-aae1-1bfc4b8962a8 1 Other Other +8c995abf-f042-43cc-8a28-88db01b4ac2f 1 Other Other +8c9971bb-72b3-4353-a605-4286bfcbd550 1 Other Other +8c9a3813-392f-4099-a2ec-aca949a64960 1 Other Other +8c9a7994-6da5-4925-ab29-0276aa7ea7c6 1 Other Other +8c9ae67e-ee2b-453b-91b1-df8454f64c0e 1 Other Other +8c9b43a4-3466-4bdd-8d99-7cf35534f62d 1 Other Other +8c9b4b00-166b-4cbf-bc4a-609ec35602a4 1 Other Other +8c9b4e89-9c6a-46a1-9104-30832383ce96 1 Other Other +8c9bdf07-375d-4e2a-8ebd-a34dfda211a8 1 Other Other +8c9be756-c55a-418b-abfd-13b2704b42e9 1 Other Other +8c9bf524-3d8d-48ab-b8b6-4868338a2972 1 Other Other +8c9d1ccf-0069-4d5f-a24c-cc6538d928c2 1 Other Other +8c9d53f3-c6e8-4883-aacb-79e6909d4e73 1 Other Other +8c9d59ec-d32f-4302-8ccf-70fec6693628 1 Other Other +8c9d68a7-6d73-4cf0-9372-9a9affb71657 1 Other Other +8c9d84a4-6648-4cf1-99db-5f5e6070a1ea 1 Other Other +8c9d88d4-a13e-4982-ba39-5b1a08e51cc4 1 Other Other +8c9d961d-a4d8-4890-be37-738b74e83f6b 1 James Other +8c9d9953-a57d-46cf-853e-fc83e3ba70d3 1 Other Other +8c9dc10e-6d7b-453c-800c-cd261b900eed 1 Other Other +8c9e0b8e-3454-4b35-ad49-7fa58c876909 1 Other Other +8c9e1fa4-8ec3-4cab-93b4-e8f86659b8c4 1 Other Other +8c9e5e3f-013e-4854-abfe-fce6ccff4a53 1 Other Other +8c9e739d-5c53-4756-9221-2ae1fc68b8c4 1 Other Other +8c9ea9e3-ab10-4bfd-8a05-8fcd2a7d233b 1 Other Other +8c9edefd-fae5-4b1e-9352-23c4630957df 1 Other Other +8c9eec33-46a7-44d2-9442-b4dc17ac5ad9 1 Other Other +8c9fd6b7-f494-4845-8c70-7ee148f6c400 1 \N Other +8c9fee47-a990-4433-98c0-373826b319eb 1 Other Other +8c9ff81f-3a40-4cc3-b921-05a03e4c4815 1 Other Other +8ca04dcb-8bea-48cc-804b-161e53965ee4 1 Other Other +8ca05a03-b769-491c-b95f-2da285f5f99f 1 Other Other +8ca08214-b45a-4b32-b4a3-17dbfe22720e 1 Other Other +8ca12e51-5a16-49b0-b14d-b86a54f41197 1 Other Other +8ca145ed-6212-4f83-a71f-21f0eae07661 1 Other Other +8ca16aff-6946-479b-8b3e-3678fa825e27 1 Other Other +8ca1a540-aea8-4acb-a00b-cf51b8d27557 1 Other Other +8ca1a858-8a92-481b-a969-288703dcae77 1 Other Other +8ca1e076-7c8e-45aa-8493-a2613e73fff6 1 Other Other +8ca1fada-036c-44fc-9619-0d838b87c874 1 Other Other +8ca232a0-3c30-4358-8cfb-27e695587324 1 Other Other +8ca246cc-59eb-4b12-a78d-e257d8570e70 1 Other Other +8ca2561a-01d4-4a5d-a8cc-9241745ef09f 1 Other Other +8ca27a75-4fac-43ea-a8e5-854860596b12 1 Other Other +8ca2bcb5-4164-419c-82a1-d1426671044b 1 Other Other +8ca30579-19be-4053-9c4a-c74cd658c6b7 1 Other Other +8ca3190f-dbb9-4539-8437-ccfba830b8aa 1 Other Other +8ca383ef-ec8e-4ad4-b4dc-c83c1b7768aa 1 Other Other +8ca3d691-e65d-499f-ac69-295890d6781c 1 Other Other +8ca44805-c614-4d66-bf4f-2606e9b09efa 1 Other Other +8ca4aef4-ca62-4eff-9447-f9adc8c0aa23 1 Other Other +8ca4d6c8-5326-47fb-a571-253a14198d6a 1 Other Other +8ca57dcf-d9c5-4335-855c-7f31664261d7 1 \N Other +8ca5bbca-b88f-4a57-85bd-4e1679b9c7ae 1 Other Other +8ca5d04f-3240-4240-b1c2-d1a7e3aae80c 1 Other Other +8ca61105-f8b6-4fed-b288-58a394381028 1 Other Other +8ca61726-a1dd-4fe7-b6c3-36525fbc9cb1 1 Other Other +8ca62100-3afb-4fe5-93d2-216abf9c82be 1 Other Other +8ca65634-2201-43e7-93c6-8bf854982921 1 Other Other +8ca6672b-8b7b-4c50-b364-ff8fd4c34580 1 Other Other +8ca69b0c-5c7c-4482-a34f-08e2f93a1faf 1 Other Other +8ca69f28-4162-4d0c-8ccd-b51b2ce37cce 1 Other Other +8ca69f4e-08bc-46b0-af6b-b54e9ecbe46a 1 Other Other +8ca6ca4b-ad0e-4447-9000-d60bf419f031 1 \N Other +8ca6e1ce-1f88-4ef6-b496-edb570c00b32 1 Other Other +8ca6ff58-38e6-4810-8ced-ea0f9de29072 1 Other Other +8ca734fa-5f45-47f9-afe7-f0402845c9fe 1 Other Other +8ca73af7-2eb3-44ec-878a-417aa3b1857d 1 Other Other +8ca73f64-fac9-4678-b453-00ed396f4615 1 Other Other +8ca778e3-941d-408d-bd7d-0643bc6ede6a 1 Other Other +8ca783df-8242-436a-a967-496e0a3256aa 1 Other Other +8ca7d199-70c0-4581-aa57-b4713c0efb4d 1 Other Other +8ca7d5dc-a082-4b60-9737-c77e75e1c4c1 1 Other Other +8ca81b2f-a758-4186-9007-c0cf11d4497b 1 Other Other +8ca87370-a8c4-4658-a7cc-64c36cd3c4c6 1 Other Other +8ca87943-20a8-47aa-b704-ef45df31a71f 1 Other Other +8ca87e2c-007b-4257-bde1-965904705049 1 Other Other +8ca8888f-355d-4b08-be0b-558e9cb2992d 1 Other Other +8ca88df7-e4a6-4c6b-a48a-8726f4f4e946 1 Other Other +8ca8bf56-178c-42c4-a6d9-1dbc5871c110 1 \N Other +8ca8d1d0-aee1-4385-8bf8-3c84b685f5ae 1 Other Other +8ca8d367-cf28-4268-a8aa-4e1f7ec93635 1 Other Other +8ca8ffab-c3c0-491c-b0f1-4ec47c6a287a 1 Other Other +8ca902ad-6e7f-4302-8d79-78c3c46f9801 1 Other Other +8ca94464-38fa-4b5c-b86b-617d7d389dc0 1 Other Other +8ca9bb68-1e32-46ec-9f62-33b59f19950b 1 Other Other +8ca9bd17-9790-412f-b2e7-51a56e17c05a 1 Other Other +8caa06d7-c323-479a-afaa-c3cf166238d0 1 Other Other +8caa1a1a-14af-4369-86c7-90cbb592c16c 1 Other Other +8caa9c93-2df9-4802-86e0-bef7b14e4e1e 1 Other Other +8caab6d5-9fb3-4e8f-945f-a127b98fc620 1 Other Other +8caae261-a3c8-4005-9716-fe58b028127b 1 Other Other +8cab309e-c7a8-433d-a081-6f0024d17f60 1 Other Other +8cab5109-a76c-4b0c-9253-4212720aa9a6 1 Other Other +8cab9437-6c7a-4c2f-955c-1ba8323a3276 1 Other Other +8cab9a4e-956d-4dd3-9766-6e0d5a7c0c8a 1 Other Other +8caba910-88fe-4791-b2ba-97c10ba7c6a3 1 Other Other +8cabb232-bc2d-4ed6-8892-16694717f98c 1 Other Other +8cabb729-43b0-4422-ae30-27b51b62a2a9 1 \N Other +8cabe280-b036-4f00-aef8-645963dc6c52 1 Other Other +8cac01fe-b2b8-4c27-8e47-70369b06e8c6 1 Other Other +8cac4b73-2106-4c0d-82b1-e4d14019d6b2 1 \N Other +8cac935e-6fd9-43b8-bbde-a6574b0e6df8 1 Other Other +8cacf1e8-6fcf-4bb0-a4c6-1ed918835505 1 Other Other +8cad0916-330c-4605-8d94-0b23a1a4c165 1 Other Other +8cad4d26-1677-4f7a-a40e-2519e94823a8 1 Other Other +8cad9b81-6c59-49da-8725-b6e1156fcadd 1 Other Other +8cae18d3-41ee-4db2-a0b5-1fde7577730f 1 Other Other +8cae32e6-2a62-4cf6-a136-07e8b57478cb 1 Other Other +8cae4b64-1ac1-488b-aa3b-8a2c79625e32 1 Other Other +8cae5a1e-56ae-4c9d-9908-c2e624d77e3a 1 Other Other +8caed602-105e-4401-88ca-e2c6ee046b04 1 Other Other +8caed774-fef1-41b0-86ce-a05467b6a6ef 1 Other Other +8caef5d3-474a-4ce1-8717-eb640d42f729 1 Other Other +8caf0e48-ec14-47c9-8113-bc09d11134b1 1 Other Other +8caf3bde-abc4-4f4e-9b84-c9de2463b6ca 1 Other Other +8cb026eb-206d-4477-bb81-3f85b88601b4 1 Other Other +8cb03279-2c59-426e-9419-3c95891b73b5 1 Other Other +8cb0660b-3d17-4202-9d87-321548869074 1 Other Other +8cb0d80f-6e4d-4ba9-8b0e-aaf7a2adbe73 1 Other Other +8cb115cf-d03d-4584-83ec-142116b580fa 1 Other Other +8cb12bb3-ff37-4b99-8066-9494f00bdb33 1 Other Other +8cb1b40d-5e2c-48de-9df1-c9ef118b8ad3 1 Other Other +8cb1d256-4166-42bd-a6f0-be843c2a2a98 1 Other Other +8cb201cc-1d80-4cc8-a3ac-a3aa502326cc 1 Other Other +8cb219e1-dadb-4c4e-a9b1-2d7d96cb7df4 1 Other Other +8cb231dd-201a-40bd-ba95-20677ee35fa0 1 Other Other +8cb234dc-a930-42a3-95e1-6f2f0b9c36d9 1 Other Other +8cb23bf8-cdb2-4437-bd39-bd37be08131c 1 Other Other +8cb2462b-139c-47e2-bd43-70953422acf9 1 Other Other +8cb29b5b-eb00-4d7d-aa19-f45c466f94b3 1 \N Other +8cb2a89a-8338-416a-9e6f-6d82604d0ba6 1 Other Other +8cb2bf47-0c8b-4637-83be-11c73747d5f5 1 \N Other +8cb2d485-3b81-43fb-930a-132d48314d3a 1 Other Other +8cb2e538-6c8a-4f72-82b1-1588e013df43 1 Other Other +8cb2ef1f-5e97-42b2-9bac-9923ebbb506f 1 Other Other +8cb30672-037f-4286-be52-6ff309173561 1 Other Other +8cb31371-b1c2-440d-ac79-cb6018eeba29 1 Other Other +8cb322c8-d3c3-424d-85dc-0f3b60b886a5 1 Other Other +8cb35a6d-cbf7-4c99-b8c3-c0acb996b1e2 1 Other Other +8cb35ba2-4dd1-4e9f-a4db-168060ce87c8 1 Other Other +8cb3ad0c-a661-4d0a-9f55-463634505d88 1 Other Other +8cb3e4df-15c5-46ca-a37d-19503ef83578 1 \N Other +8cb3fed1-0cc9-4ee8-b543-e55d029498a1 1 \N Other +8cb40e69-ce40-40c6-a1b9-034a888d3767 1 Other Other +8cb42dd2-3fe8-48fc-9a9d-f3b77145d74a 1 Other Other +8cb45b43-da67-45e1-abde-689ba32534bb 1 Other Other +8cb4c571-26ef-4daf-bba4-dd49c2b77394 1 Other Other +8cb4cb12-a1ce-4af9-a967-e7c5b0e74b1a 1 Other Other +8cb52935-6eac-4a5a-9cdf-10cef996c017 1 Other Other +8cb53a2c-aa63-49a7-8ef9-cc39f46fd4cf 1 Other Other +8cb53c83-0bca-4978-904a-023dab6c85f4 1 Other Other +8cb5453b-0a4d-4181-b606-f503bbcd1d2a 1 \N Other +8cb54f9c-8962-4579-9743-8d7aece00f55 1 Other Other +8cb58481-049b-4386-9ee9-34cbb2e409b5 1 Other Other +8cb59493-04be-472a-bdc3-1785737ac8da 1 Other Other +8cb5c9c2-4d97-4f1b-b67d-a8d4601b2de5 1 Other Other +8cb62643-558a-4a0c-92d6-3515ee4ecc17 1 Other Other +8cb696cc-5ae1-45c6-9321-09ccda3bbcbd 1 Other Other +8cb6b24b-2301-477d-a309-78fefc1d714e 1 Other Other +8cb6d08b-5955-49b8-938b-f4926a967d5e 1 Other Other +8cb6f723-48d3-415d-bc91-f441508f23d3 1 Other Other +8cb765b3-c5ea-45d8-a159-8be10a59475a 1 Other Other +8cb79c83-9f70-4741-ae8c-b1eed03d6dad 1 \N Other +8cb7cf5f-6fcd-4ba4-8ba2-e4e13884b437 1 Other Other +8cb80a1d-cfab-44be-aa8e-040ac28f24ef 1 Other Other +8cb81215-fa89-40cb-8f84-e4dedf5c8dda 1 Other Other +8cb82e41-cfca-4267-a57b-47340cf60e7d 1 James Other +8cb869c0-0869-4cd2-86f9-90c348dc01e0 1 Other Other +8cb8a1f0-0790-4de3-b770-4c76f1950de0 1 Other Other +8cb8f623-699f-4e68-944a-871a332a7636 1 Other Other +8cb91603-3e56-4a02-bbb0-22ed9c984deb 1 Other Other +8cb943e6-cfa9-4e78-b478-2072ca936737 1 Other Other +8cb95a57-ee5a-4d5b-ac4d-3ab248cba7ec 1 Other Other +8cb9663d-d765-4dbd-acbc-69f5ae22ab8d 1 \N Other +8cb9cfa4-dc35-44c7-8187-878c41c789e3 1 Other Other +8cba3428-dbec-478c-8232-8401fdac2b6d 1 Other Other +8cbae862-47f8-46ee-bbff-cda6ec6db545 1 Other Other +8cbaf041-55ec-43f7-8e12-31c4f952d6fc 1 Other Other +8cbb0853-7ab2-4713-ba72-8335627cbf44 1 Other Other +8cbb571b-d0bc-40c3-9f96-9a84ac2ba8b6 1 Other Other +8cbb6c13-5b52-4c15-b939-452f52547b71 1 Other Other +8cbc3754-d2f1-4cbf-8de5-f66d87bb7c37 1 Other Other +8cbc8343-bb42-4f9b-848f-d494b60e448f 1 Other Other +8cbc87d0-54b1-460c-8e2d-aa35dc2a108b 1 Other Other +8cbc8a63-bb53-4cbc-8474-64be17fb46ce 1 Other Other +8cbcdf99-2d96-45f4-80be-703593a8d3ae 1 Other Other +8cbd0cc1-a6e7-4c10-8d5c-8f3c5e6ff93c 1 Other Other +8cbd0f37-f716-4a8d-92d2-9b8d10367840 1 Other Other +8cbd11c7-a00a-45c7-8c59-99fc8db8f033 1 Other Other +8cbd3903-0969-4a39-a19a-e017b424ab34 1 Other Other +8cbdc30e-0d51-407c-8d68-e225589318fe 1 Other Other +8cbe0fe1-d5ea-4dee-90c6-d5bebfa397c3 1 Other Other +8cbe2617-75d8-49ba-b947-934f478ce6bb 1 Other Other +8cbe2dff-694e-4eb2-9fd5-9e63a9dc83f9 1 Other Other +8cbe3929-7257-41a1-81f6-0c7346012115 1 \N Other +8cbea375-03d9-4671-b729-1005ed7937d1 1 Other Other +8cbea3ad-b1d3-4410-9978-67da5c9687fe 1 Other Other +8cbeffd6-da27-4723-bd86-0411b5a4bc59 1 Other Other +8cbf329e-5b06-4ef5-bfc1-899a40cb5e54 1 Other Other +8cbfa906-43ce-4014-8f37-3f9b365a190b 1 Other Other +8cbfec3e-dcab-424d-a8d4-372339e22e47 1 Other Other +8cc0a7fd-3ad7-4c4b-aac5-ba4c0f27831e 1 Other Other +8cc0f292-802e-4d0c-b1a9-dab9ac3a64df 1 Other Other +8cc107c7-58ab-4ec2-b7ae-bd8f3569e2eb 1 Other Other +8cc13c2f-a361-471a-aa34-180d2c018a4b 1 Other Other +8cc2395b-eab5-4931-a7b7-821b6a4dd1ba 1 Other Other +8cc297a8-12bf-48a6-99d6-3812e7aab62c 1 Other Other +8cc2ad74-ade4-404b-a554-73ca96e2384b 1 \N Other +8cc319c0-084a-4fd7-b802-0b41a9752d3f 1 Other Other +8cc3456f-75d2-4ec5-9d5d-0a6f7dcf166f 1 Other Other +8cc35698-2a38-493d-bddf-810dc5a8760a 1 Other Other +8cc3a3d5-2120-4ff3-a4a9-6842ff00b939 1 Other Other +8cc3c5ea-8a46-431b-8585-e2e263abc395 1 Other Other +8cc3d704-ac84-49d8-a8d5-ef00bceb8b1a 1 Other Other +8cc3d728-ce35-4467-b2be-fe09b7aee194 1 Other Other +8cc3dcbc-63bd-4228-84b5-17a99754d062 1 Other Other +8cc45093-02f7-403d-b3cb-5392b4193f3b 1 Other Other +8cc4792e-496c-4293-bd43-73f3e3aee927 1 \N Other +8cc4e132-dbdf-4f2c-b2e2-7e46e5d860ec 1 \N Other +8cc50257-b9a7-4396-8316-b0a815d85d45 1 \N Other +8cc5093c-e857-463e-9b9f-8a8930c2fa34 1 Other Other +8cc536a7-b490-4aaf-b904-ee619c11e282 1 Other Other +8cc5a873-5e77-4fc9-b36e-fd150651fca0 1 Other Other +8cc5c15b-e6d6-4901-b116-868975abb1d9 1 Other Other +8cc5e404-0285-407f-a6ed-2be550f59597 1 Other Other +8cc5f17f-ab36-49fd-b587-d25129702856 1 Other Other +8cc617bb-24e1-4bdf-8340-b16b09d3dfcd 1 Other Other +8cc64187-2633-4ebc-adf7-94314e5413ab 1 Other Other +8cc652e7-cb65-4d71-bf5b-65780a02413b 1 Other Other +8cc65e60-4c3c-42bc-935d-60e877a7ec90 1 Other Other +8cc6ab17-bc5f-430b-9bba-ab76b0dcf2cb 1 Other Other +8cc6d077-a8f0-448d-a9d3-0de11f4cb4c0 1 Other Other +8cc6ecc7-6dbb-4d65-ad62-502d71a55871 1 Other Other +8cc72e6e-d448-4294-8061-00602ba9fe0f 1 \N Other +8cc77218-ebcf-43f7-aac6-9db84620abf4 1 Other Other +8cc776ca-2db8-4f4b-b280-711d06af95ee 1 Other Other +8cc7ade1-e002-40b1-9b1f-7be6912f7ebf 1 Other Other +8cc7b314-8195-4ebe-b5b2-b74f7ea21f09 1 Other Other +8cc7c42d-c819-44e0-a042-6a374bfecc28 1 Other Other +8cc7d865-7912-43e1-bffe-6635e9ecf335 1 Other Other +8cc7fe8c-87da-489c-a655-abaf7c739fad 1 Other Other +8cc80c26-0ccd-4cb5-b753-3978844561aa 1 \N Other +8cc88046-aa8a-4980-b16e-fa72aa88053f 1 Other Other +8cc8aa6a-b54b-47b6-af81-bfd84b666bfc 1 Other Other +8cc8b601-6c9b-448a-bcac-23adededcbde 1 Other Other +8cc8bbec-7b13-4d90-8d98-877d2c7a569c 1 Other Other +8cc8bd7a-acca-4f0c-932a-5c9fd3a5611e 1 Other Other +8cc8d524-99e4-464a-b678-ee54ab8199bb 1 Other Other +8cc9020d-aae5-4e1c-8659-ce3cd1aa14a1 1 Other Other +8cc92ba6-876b-4810-a151-759e15eb33c9 1 Other Other +8cc94a60-708c-49e7-9bb1-a1d311a4f784 1 Other Other +8cc9b162-c3fa-4962-9848-5eac57b57862 1 Other Other +8cc9bc13-5557-4836-ab89-b553fa4d2370 1 Other Other +8cc9c597-b40d-4656-a6d7-0a80e6098eec 1 Other Other +8cc9d79d-fd39-4a8c-a916-578da108bfbd 1 Other Other +8cca57e8-bd8a-44c0-8f24-f5845ced30f3 1 Other Other +8cca84f1-874b-4395-a02b-3b2f357c1bb7 1 Other Other +8cca9c5a-9343-40f9-81cd-6f3b8ad56048 1 Other Other +8ccb0c34-6c4f-4cf7-a104-2b1185f1566e 1 Other Other +8ccb25a2-a3c0-4b75-b01b-070fcae2509c 1 Other Other +8ccb5226-4800-4e19-ab07-769d385a742d 1 Other Other +8ccb533e-07f0-4e4c-886a-0a037ac1b635 1 Other Other +8ccb57b5-3595-459e-b1df-aaf0b5bb1ce7 1 Other Other +8ccba5aa-0031-4bae-a9c1-cffe204ce075 1 Other Other +8ccbb77e-1900-4f10-9599-fd07efddd8b0 1 Other Other +8ccc0744-cc2e-450e-abc7-6fbba114c1b7 1 Other Other +8ccc4c4c-44d3-46a8-9313-a1e4b1c5bbba 1 Other Other +8ccc5531-914c-46c2-9044-6e62bd2f84bd 1 Other Other +8ccc9f2b-c2ca-43cd-a78f-4912a88446ae 1 Other Other +8cccc46c-66b1-40fd-ab92-fca9cc5c6713 1 Other Other +8cccc9d4-44b7-41ee-b38f-b34da012f952 1 Other Other +8ccdb30c-0e62-43d2-9c6f-23a02a9416b8 1 Other Other +8ccdf312-63e2-4de7-bbee-089f63724579 1 Other Other +8cce2c2d-b70d-4571-a48d-c4e935c6b930 1 Other Other +8cce34c5-de97-44a3-965c-84e95b35e7a8 1 \N Other +8ccec3d4-d541-4784-ac9e-198b6a700f51 1 Other Other +8cced767-2701-4948-a06f-9dafcaf4690d 1 Other Other +8ccf22de-8ce1-475e-b84d-50ab3252f006 1 Other Other +8ccf246c-2a9c-4faf-818e-4d4d7d57c198 1 Other Other +8ccf5199-2d70-4f91-879d-dc21c3322172 1 Other Other +8ccf5fba-1e5f-4656-871c-fbcf6a8fc602 1 Other Other +8ccf7f62-559d-49a7-8338-28a048de2ddc 1 Other Other +8ccf9863-334e-440d-b833-7ada704d2c69 1 Other Other +8cd042c9-3ecc-414b-9eb7-b23b4352303e 1 Other Other +8cd0bffe-171b-467e-a7ec-59efab250913 1 Other Other +8cd0c3de-23bc-4d58-8ff9-058f70235494 1 Other Other +8cd0f621-b80d-440b-8bbf-8aee486117a2 1 Other Other +8cd124dd-e544-4c2b-aa83-a2ab2f0a8de2 1 Other Other +8cd15dbf-e25c-46e2-abae-53e70bb52ead 1 Other Other +8cd16077-f0b7-41d8-adb3-307df997f178 1 \N Other +8cd1792a-8030-477d-b5a8-de3e86c8318e 1 Other Other +8cd179e5-eb51-4978-9bc7-d3771b3015b8 1 Other Other +8cd19345-4b8a-4f76-be58-fa4d32d7104a 1 Other Other +8cd19f76-f1d3-4994-b350-fef1b5438d5e 1 Other Other +8cd1b8ab-e377-4d79-acfe-a961babf7b31 1 Other Other +8cd207ce-9fb5-4218-b60a-575010ba657f 1 Other Other +8cd23d3d-1289-4302-9cac-eb6e7519d623 1 Other Other +8cd26633-b163-42da-8162-eda69618380a 1 Other Other +8cd2b70f-7ecc-4a58-80c6-5bfa8c79a12d 1 Other Other +8cd2cabf-87bc-4ce0-9092-3df3ed2e4233 1 Other Other +8cd2defa-6041-4ecd-845d-9ddd2df24cb9 1 Other Other +8cd2f89f-f499-46e1-8c49-a5672ff50db8 1 Other Other +8cd33fc7-e4f0-4f5b-955e-205d0df25700 1 Other Other +8cd34684-4f56-4699-a5cf-ff0565bbc559 1 Other Other +8cd36c1d-b3d1-4927-b441-ed55b6c8081d 1 Other Other +8cd37fb8-cbcd-4b18-a46c-27aa771cdc05 1 Other Other +8cd3c727-f912-4e14-9ec4-8d1540dcb237 1 Other Other +8cd3c96d-0ae0-4779-ae53-5d1a6003c1fb 1 Other Other +8cd3ec13-faa1-4f12-b2e5-74ab57f3605c 1 Other Other +8cd45165-03c4-43ea-a408-0956300230d8 1 Other Other +8cd4527a-e2fa-418a-b5be-bf8ef062f609 1 Other Other +8cd483f0-fc4d-49ab-8f6c-cef068daef7a 1 Other Other +8cd49348-1877-45ce-8f57-6a813b35c35a 1 Other Other +8cd49d14-9346-4728-b1db-92cd7e5dfb39 1 Other Other +8cd4ae19-26a9-45bb-91e8-fcdb862ae8c5 1 Other Other +8cd4b738-2787-4898-ad87-e1a04d2df4d4 1 Other Other +8cd50494-8e19-406d-a0b6-eb2ec538ff97 1 Other Other +8cd53313-3d9c-4024-a812-465728b71fae 1 Other Other +8cd53b22-dc41-4025-8726-c00f80d78713 1 Other Other +8cd679c6-1bfe-4c9d-af32-5112514e28c9 1 Other Other +8cd6c4c6-7727-4abf-918b-a1539293b5f5 1 Other Other +8cd75d2c-f640-4a73-afb9-218057143f3d 1 \N Other +8cd7644f-1c4a-4230-b374-0722e73c3f69 1 Other Other +8cd76ee1-38ff-40e5-a74b-8b37103c4566 1 Other Other +8cd77a00-1d51-4bd0-862c-d450b570cf82 1 Other Other +8cd7e66d-d37b-48f3-a638-55c7acb23f65 1 Other Other +8cd7f51e-659a-4030-a9a0-0b8c1bcba286 1 Other Other +8cd7f954-86e0-4d7a-a1e3-fcafc8c41b54 1 Other Other +8cd84ec9-8473-4a42-843f-7137f564f02a 1 Other Other +8cd867b8-b7c3-46f5-af9b-30d53f6e3f47 1 Other Other +8cd87314-92ba-471d-9dea-9c960cc91132 1 Other Other +8cd8871f-d28d-4c66-b9b0-90f71a2675c7 1 Other Other +8cd8bd6d-f0a0-4298-b419-053488f195f9 1 Other Other +8cd93587-c09a-4d00-ab93-47a085abf27a 1 Other Other +8cd93ca0-550a-43c5-bf0d-13ee916972fc 1 Other Other +8cd95091-703d-4c27-8639-c5ac82e4ba79 1 Other Other +8cd982df-8a06-4c91-a058-7705f4c65805 1 Other Other +8cda085a-6645-45a9-93db-41e2d10d639d 1 James Other +8cda260a-1778-496f-ad43-c37609dd48dd 1 Other Other +8cda46a2-49e4-435d-81bb-a42b7fb5da4c 1 Other Other +8cda5158-3793-4a28-9639-204e0554cef9 1 Other Other +8cda8d35-f423-455d-a4f1-75d02e53117d 1 Other Other +8cdb09cf-3075-42c7-b90d-009a57723f3c 1 Other Other +8cdb7b3f-1e4a-4d31-93aa-20fe010fe19a 1 Other Other +8cdbdb5b-c7ad-4043-aa95-87bff1782dcb 1 Other Other +8cdc01f7-e495-4400-adf2-92a9a08721a9 1 Other Other +8cdc0634-fe5b-41f1-b38e-f5a16d49b58d 1 Other Other +8cdc1761-e8b6-436c-86fa-5bad4cfce2c5 1 Other Other +8cdc4c86-e436-49aa-ab43-906ddfc6cc5a 1 Other Other +8cdc7aa5-f21b-4f43-b208-447bf8562b35 1 Other Other +8cdca9c4-9192-4f90-b7bc-7ae38901f143 1 Other Other +8cdcf903-813a-4dcf-86eb-9d43e60e86ff 1 Other Other +8cdcfc38-7953-4a81-8cad-cdc764ede931 1 Other Other +8cdd0327-a074-4185-8f62-e8250a045e38 1 Other Other +8cdd4c6d-9fe2-4984-b400-94570ca59181 1 Other Other +8cddacea-5635-4f02-b078-d9d368cfe78c 1 Other Other +8cdde47f-1de9-4d78-ba09-3e26a49cb196 1 Other Other +8cde1124-6bd3-4a5c-a023-4193a16f5dd3 1 Other Other +8cde176f-1e18-4945-bd4d-150ff054cb6d 1 Other Other +8cde3374-e3ff-43e7-a8c0-56919db39584 1 Other Other +8cde39a7-786b-45bb-be24-6e61ae15a299 1 Other Other +8cde447a-b787-4729-a99e-3df168857e2c 1 Other Other +8cde448c-32c6-4623-8173-51e72087eef0 1 \N Other +8cde567a-3e3f-49a5-b5b1-5a936eaa1287 1 Other Other +8cdecdfc-93b1-4020-bb52-ac3f9b8d167f 1 Other Other +8cded8cb-3cea-4737-88bc-0c582ed76fe9 1 \N Other +8cdedfbe-66b0-45da-b6b7-3d385815578c 1 Other Other +8cdeead1-ea60-4c11-af52-0c69d41385d2 1 Other Other +8cdefafb-a870-4a62-9aca-04b97c28f6c5 1 Other Other +8cdf7c8a-188d-425f-97af-79c32142c102 1 Other Other +8cdf8285-20ba-4166-80e9-e85a9641eae3 1 Other Other +8cdfc475-bedc-41d3-b5a4-b7ef3b2d0a65 1 Other Other +8cdfe407-c7be-4ce9-86ad-84e1d18785a6 1 Other Other +8ce014ab-157f-4675-a533-0f01a2ed08bc 1 Other Other +8ce02129-0a44-4f5d-96f0-bf4127a7183a 1 Other Other +8ce08396-99de-41e7-b6b0-8426ce56a778 1 Other Other +8ce0c61e-ed5e-4967-a5b9-4e3c1a376564 1 Other Other +8ce0d42e-9d8c-4430-a2d3-77640eba343f 1 Other Other +8ce0dc7f-9854-4ac0-8b15-9961c2589cbf 1 Other Other +8ce14845-cef1-40e5-8557-f9e77efeb350 1 Other Other +8ce1498d-3d7f-4f7a-a8dc-07328e8778a6 1 James Other +8ce1a150-bd40-4823-ae75-b166521a4bd3 1 Other Other +8ce1d0f8-b647-4b7f-8f42-80843ae71463 1 Other Other +8ce1e742-68fe-4427-bea7-105462230e62 1 Other Other +8ce1f5d5-5753-42ca-bcb5-3718754dd9ee 1 Other Other +8ce23652-b49a-473a-ae1f-6077d70e3477 1 Other Other +8ce24d4f-f39c-49ee-811d-0768ccce27db 1 Other Other +8ce2a9f6-c475-4865-8245-93af05aa5849 1 Other Other +8ce2c176-6e1a-4bab-b4d7-80b0f8163410 1 Other Other +8ce2dff9-33c3-4634-9f48-bc5ee8bdb51c 1 Other Other +8ce2e998-f19e-432b-9327-271037a73acd 1 Other Other +8ce2ff2f-cc4b-4eb9-90d0-6214016bbec4 1 \N Other +8ce337b0-0a17-4538-b070-ac927a276a08 1 Other Other +8ce37527-051c-4a85-bf87-91746baae5cf 1 Other Other +8ce38f5c-9029-4780-bda6-22f8e3a3bfd6 1 \N Other +8ce3df0c-5ca7-4332-9864-3a55069aec54 1 \N Other +8ce3efdb-ed87-4ae3-8af5-676534252e09 1 Other Other +8ce40e98-7ba8-4205-8d26-6582317ddba9 1 Other Other +8ce423af-ccdf-4395-82d2-72dbe40573b1 1 Other Other +8ce4630e-e2d7-4208-9991-673eee8b0a5c 1 Other Other +8ce46a7e-0b7c-4ea1-aa8a-9680f7a046f6 1 Other Other +8ce47213-b46a-498c-ba53-3af406e73573 1 Other Other +8ce4807d-3dc4-4440-836e-6f51385829a3 1 Other Other +8ce4834c-ac0d-45b7-8ec3-2b5879be052d 1 Other Other +8ce4a957-25e5-4182-ba33-ab9bb32f2222 1 Other Other +8ce4d661-603b-41b1-8366-d6790234707c 1 Other Other +8ce4fbdc-e9b5-480a-971d-4bd8ba443ae7 1 Other Other +8ce5004c-e53f-4676-9497-8ef11e3bcc63 1 Other Other +8ce50af1-b5f6-4d1c-be00-c8f0d726c4d7 1 Other Other +8ce54804-9ea0-42e5-8907-76221b7fd529 1 Other Other +8ce56d9a-a33e-4718-be96-a68b39b054f3 1 Other Other +8ce5b391-b7d3-4121-8279-20f54e950c64 1 Other Other +8ce62130-831e-482a-8a58-f7437e510ab8 1 Other Other +8ce64da0-c618-4818-bf38-ecd37b8a2052 1 Other Other +8ce65508-c708-48ea-a3b4-4e6ad128514d 1 Other Other +8ce65dd1-d2a5-41d4-bcc1-f0eebbfde32f 1 Other Other +8ce6986c-a586-46e3-82bf-ef2ead19865e 1 Other Other +8ce70af6-d866-44e1-9ac6-8ddb31a4970e 1 Other Other +8ce718d5-58a5-45bf-ab12-a68342f461ce 1 Other Other +8ce74075-597f-4eb9-a4dd-5bba3ce0d86e 1 Other Other +8ce77147-e291-4334-be97-fe5c0350ddb7 1 Other Other +8ce7e7d0-64bf-4e6b-861f-a04770693920 1 Other Other +8ce7eb00-49ed-4c6f-97c9-aa7e901ddc9d 1 Other Other +8ce7eddf-6e0a-4c13-9c7d-836991662bac 1 Other Other +8ce7ef69-c5ee-46a1-ba01-d6919d563667 1 Other Other +8ce7fe49-92b4-4abe-a2a3-fcc1ad75917c 1 Other Other +8ce80271-44dc-40ad-9d1b-efd79ddcf87c 1 Other Other +8ce8128f-4695-4165-a420-5fe4bb20a02b 1 Other Other +8ce89b4f-d9b4-4f17-a1bf-4eb30c9e1887 1 Other Other +8ce904ab-ba17-4ea1-a50a-97853d8c673c 1 \N Other +8ce923bc-f5b8-4005-bd87-6d357864253d 1 Other Other +8ce92b76-9228-4c47-aee5-8695bbccb0f6 1 Other Other +8ce96fd7-e7a3-4efe-8f40-35b6bee4db69 1 Other Other +8ce98a9e-5ca4-4c74-ba38-877920579283 1 Other Other +8ce997a5-8e4e-4d2a-b6ef-07f6ff80e2c9 1 Other Other +8cea396f-a383-40ba-9b42-4c4cacdcbf61 1 Other Other +8cea7916-825d-4ba9-b2b0-9f7a4f85d868 1 Other Other +8cea7956-4e05-4bd6-90f4-c56376ea093a 1 Other Other +8cea9df3-0886-4ae3-b93d-8fc5b92a9e52 1 Other Other +8ceae98f-b273-40e6-9b28-bcf0383a618d 1 Other Other +8ceb09f9-ae92-4944-96a4-0b801207a6d4 1 Other Other +8ceb0db9-4ae0-4cee-af74-31fd6266523f 1 Other Other +8ceb1327-4a9b-4292-9a09-da348ff6dd30 1 Other Other +8ceb3901-09a3-4e2f-81be-336114c097e1 1 Other Other +8ceb9f95-1c39-42eb-a0a0-890bb0fae727 1 Other Other +8ced5ec7-1f23-4bc5-b524-0035ca485884 1 Other Other +8ced82a2-f469-4701-87f5-42924153cf11 1 Other Other +8cedf05c-dc98-440d-8cab-4b58b73eca24 1 Other Other +8cee4657-5b19-4915-8422-f34f02a1eb97 1 Other Other +8cee4ff3-9c97-4f70-bace-03189b316c49 1 Other Other +8cee7f77-48cc-444d-ac35-6f89e9acb656 1 Other Other +8cee7fca-8173-4d70-94e2-cf03c79bf5ac 1 Other Other +8cef4d08-4fc9-4c3b-ba7f-53c0748bc9b5 1 Other Other +8cefa33d-fc55-4ce0-a0f9-c1bfb8a24398 1 Other Other +8cefac22-4b69-4f3a-8c9e-4adb917cd47e 1 Other Other +8cefcca9-39fc-4d80-a359-b1d35d0b1003 1 Other Other +8cefd1e6-18a8-4896-8675-1b3e73f9d31a 1 Other Other +8ceff9c3-f9c5-4e49-aa69-0db980cbfda9 1 Other Other +8cf01092-4af3-4b6f-8c85-61e5e15a2775 1 James Other +8cf03f5e-ff15-4315-be3f-c64a5a306dcc 1 Other Other +8cf06cea-849f-4acd-8a41-5f63cd736a2f 1 Other Other +8cf0aa4e-61fc-4d17-b45b-fcc40df6a5f1 1 Other Other +8cf10865-bc28-47bf-8ea2-e7573ca5fac3 1 Other Other +8cf115ca-47bd-4921-ac51-95937e054840 1 Other Other +8cf144b0-2f67-40a4-a4dc-89f10e11c2c5 1 Other Other +8cf1536c-579e-4c28-8e4a-832ab9f09857 1 Other Other +8cf1571c-e931-4c27-b86e-83c70cdc7a2b 1 Other Other +8cf1b3e9-e882-43f3-bd38-ee149a568775 1 Other Other +8cf28874-fd2c-4fdd-8937-45d552a26bb1 1 Other Other +8cf2da21-3893-4b3b-b798-2dbd28ed464e 1 Other Other +8cf2f5fe-a834-4656-ac9c-4eb202b0cf82 1 Other Other +8cf2f9ea-9fa4-47ff-8531-f4e75e1d6e61 1 Other Other +8cf315fc-a6cf-4a66-92b3-1aa2602bf58a 1 Other Other +8cf34b57-d919-4099-b711-5328ad8924ec 1 Other Other +8cf35ba9-d97d-41a6-b877-21b15227ba9a 1 Other Other +8cf373ce-2202-4e74-8550-1823e58b0369 1 Other Other +8cf387c6-a3d5-4cb3-a473-b0e4c1033710 1 Other Other +8cf39c4a-ec55-47fc-8e75-6231e9601138 1 Other Other +8cf3aa8f-df36-4263-be9f-97e3be3fdf6d 1 Other Other +8cf3fdd7-46e8-4435-a7c9-17c15959871b 1 Other Other +8cf44360-ebdc-4a8c-b0d6-b28d8115f6b6 1 Other Other +8cf4622b-8449-4b0c-be46-6373809690cb 1 Other Other +8cf4a588-f0e9-4826-aba3-a130ff7dc126 1 James Other +8cf4cd60-e831-48bf-9e2b-a0ab7efa58b6 1 Other Other +8cf4dcac-5579-46ab-a7b0-a69f23b51c0d 1 Other Other +8cf52185-f50f-40a3-aab4-c7d7495dc19d 1 James Other +8cf536d2-8e69-4357-a109-f37b838618a2 1 Other Other +8cf55121-4f5a-40e7-a301-a411cae4d555 1 Other Other +8cf5689e-618c-4172-8f0f-5b7eb566b0b1 1 Other Other +8cf59d40-0726-47c9-8378-ee70d6cf4ea3 1 Other Other +8cf5a885-4845-47c5-8cc5-b430a6f4ad35 1 Other Other +8cf5c659-bd20-458d-8a34-5973856c00db 1 Other Other +8cf5ddf7-08a4-4f2b-adc4-5ed7e89160e1 1 Other Other +8cf63e54-0cf0-496b-9273-7356c30d4ee6 1 Other Other +8cf64c29-ee48-479b-b7aa-ead00433dc10 1 Other Other +8cf651b8-90b4-46bd-82a7-20ad6bae66b3 1 Other Other +8cf6bef6-b111-4a65-ada8-1b348b8dddae 1 Other Other +8cf6c0c1-d536-4b20-98b6-35b284e95a40 1 Other Other +8cf6d7dc-eb08-4960-b883-59312f87e1aa 1 Other Other +8cf7110c-9d5d-48d8-ae76-174bf28d82d0 1 Other Other +8cf71281-cf7e-4ae3-9d5b-e69135607bdd 1 Other Other +8cf7273f-98a6-480d-802a-c3ebb66a3441 1 Other Other +8cf75cef-b7eb-45fd-baab-97ca8edee1be 1 Other Other +8cf7ac4c-555c-49b2-a209-9733113a3245 1 Other Other +8cf7beab-98aa-4265-a07d-673f700f58a9 1 Other Other +8cf7dcd8-d1e2-477d-b36f-ea6151aad813 1 Other Other +8cf83b5e-c574-4dc4-aa85-ca5180a30209 1 Other Other +8cf8463a-e404-40ba-b518-efb1648f3d62 1 Other Other +8cf8b3b2-bfeb-4c4b-ac42-b867d7c9efc2 1 Other Other +8cf8bf1e-6446-4caf-ad94-a1e5c9a5e8e9 1 Other Other +8cf8cea2-6cc1-40fe-b55e-76b21931e535 1 Other Other +8cf8e018-339a-4cf6-9f4b-ea92ed7d08e9 1 Other Other +8cf90f8e-f87b-4daa-b5b9-3a18854d9643 1 Other Other +8cf94cca-a8b6-4322-82a9-ab9821a5a768 1 Other Other +8cf963de-686d-4318-b6d7-0f25a89df739 1 Other Other +8cf9704f-64f4-4e69-8f6f-57a2bf31c4a5 1 Other Other +8cf98ae3-3b19-45b6-9b0a-d5ec8f6d03b2 1 Other Other +8cf9bb62-217a-4bc3-bc62-c38a970c6480 1 Other Other +8cf9c7d7-9512-4297-a721-a88a831daf85 1 Other Other +8cf9c906-e3dc-4575-a922-d76a48f0b22a 1 Other Other +8cf9d0be-7683-4dc4-be8b-64d62f7e7205 1 Other Other +8cfa1653-3e72-4ef8-954c-c33dee7aa6a4 1 Other Other +8cfa4a49-164c-46f6-a950-89a599866825 1 Other Other +8cfa5cfa-9897-4b10-967c-293316784a83 1 Other Other +8cfa851e-69ec-4525-bb71-9bc931086a2b 1 \N Other +8cfac385-b245-4ee2-afc5-d8cfcb4ef71a 1 Other Other +8cfadf9c-1c94-49e4-a8bc-93468ca7276a 1 Other Other +8cfb0536-e274-4378-a55d-d4e0f71db6a9 1 \N Other +8cfb29ed-aefa-4066-81ec-d1a919a01642 1 Other Other +8cfc0f2b-d93a-4143-aeb3-479560448c38 1 Other Other +8cfca3c0-47c0-49d0-856d-d6075ccfccd9 1 Other Other +8cfd020e-698f-4b58-868a-5622144f11ba 1 Other Other +8cfd3967-8a93-48fe-b1de-d507c68756cc 1 Other Other +8cfda10b-7745-4674-8cf9-56070e9c15ff 1 Other Other +8cfda7c1-6855-4cbb-ab21-5865f5691d9e 1 Other Other +8cfe236a-24c8-433f-8af5-daca8c90f60f 1 Other Other +8cfe4dbe-3dc0-4949-9a55-4684f4dd7ea7 1 Other Other +8cfe5c00-45fa-4254-8f03-a08cff87b424 1 Other Other +8cfe5dfc-c126-41df-b637-8ef1e15dfda1 1 Other Other +8cfe79f9-fbe2-47ae-a85f-3b8d309ac3fa 1 Other Other +8cfebc5f-3593-4014-90ee-660e20a3f838 1 Other Other +8cfed300-d644-4841-a4ac-b8fcba38844b 1 Other Other +8cfed737-74ce-4d8a-8d9c-76c0cd586a50 1 Other Other +8cfedc29-6832-4a6f-b700-8d85a4f3ef07 1 Other Other +8cfef699-70be-45ff-ae14-d848a783898f 1 \N Other +8cfef6a3-281f-4e4b-8fef-1d425ca0f236 1 Other Other +8cfef6c2-9714-437d-8b20-1b7c36c80df6 1 James Other +8cff1dc7-68a1-443c-8e55-a1e51c2139b7 1 Other Other +8cff525c-c628-4f28-bbaf-5cc82f67b1b8 1 Other Other +8cff68be-e126-4547-94d0-822f40450493 1 Other Other +8cff6a9d-898b-47d2-aab4-735e47598958 1 Other Other +8cff8a47-7829-4137-8bd9-93d14edd13a4 1 Other Other +8cfff745-dce7-41f9-9ab4-781eaa9c4264 1 Other Other +8d003bc7-f6bd-4c0c-b18c-6550824db0e0 1 Other Other +8d009b6a-e6a6-4808-b50a-54d5ecc29478 1 Other Other +8d00a16d-b74b-4d4e-8a2f-c5f8d6f45ae9 1 Other Other +8d00e1ad-d894-47b8-82a8-b28803a01094 1 Other Other +8d012e2d-f4d9-4eeb-9d36-bdca06dc3949 1 Other Other +8d01a783-26dd-4c3b-9361-78a3611602b0 1 Other Other +8d0201f4-b6a7-4782-8948-7f2fe1270c0d 1 Other Other +8d026ce1-60ab-401b-83f8-7fb4cbb8bf29 1 Other Other +8d02b340-d1cf-42b2-adf0-bd7c4b8e8013 1 Other Other +8d03340e-a748-4dbd-aa3d-0e393c8463d4 1 Other Other +8d034dc8-d104-4fec-82d1-c1e11fcaa484 1 Other Other +8d038ceb-9e5b-404e-9c54-97615f17b9ba 1 Other Other +8d03b18a-a307-4d15-a570-9c39fc8c2668 1 Other Other +8d0429f8-10d8-4971-bc7a-65c66d035e8f 1 Other Other +8d045bc2-1eb9-4846-a8dd-4fd25cd5159b 1 Other Other +8d0472cd-117a-41d8-8ebd-b88bf5e9d5e5 1 Other Other +8d04c7c2-5b83-426d-854e-02f290baeb5d 1 Other Other +8d04da8d-24d1-4ff5-a84b-43042650d8c4 1 Other Other +8d04ea57-4ed4-4495-a12f-110532b220ce 1 Other Other +8d054780-3d7a-43ee-baa3-3b16fb76d055 1 Other Other +8d055b7e-d2da-4706-a983-eeed40e1c649 1 Other Other +8d05872d-75b0-451d-882f-63c312fa7cb8 1 Other Other +8d059136-6d42-463b-8937-87fe4286f04a 1 Other Other +8d0602a9-8353-422a-b398-4dc622b6db5e 1 Other Other +8d060491-dbd0-451c-90b4-cb55590ab756 1 Other Other +8d061d10-2617-4a47-b8ea-bd64591da703 1 Other Other +8d063f70-69fa-412b-9889-191561cd7085 1 Other Other +8d0686c2-1218-48c0-af51-eb107b8922d3 1 Other Other +8d076982-fc61-474d-ba4f-3be00dac989f 1 \N Other +8d07b3f1-ee34-4bb4-9719-b61099079efc 1 Other Other +8d07ce8f-9aff-4f23-901f-84caf1bdaeec 1 James Other +8d07ff6b-be02-4909-8b09-573c0b4bed70 1 Other Other +8d081fd8-845e-4060-b19a-feb2587abffe 1 Other Other +8d08294f-d3cf-4c55-87d5-3c312bccc9cc 1 Other Other +8d082fba-0df7-447a-a5ca-00288da5ebd6 1 Other Other +8d083350-db5c-4cc2-9715-9f107b29be1a 1 Other Other +8d087b93-15c2-42cf-84ab-0bc85eaa80ab 1 Other Other +8d08caf4-1fc1-4856-bbac-8b41177b610a 1 Other Other +8d08fa49-18cb-4d2b-a8eb-cc70f0ec5d10 1 Other Other +8d090735-c575-4ca2-a463-c8e68a8bc7dc 1 Other Other +8d092d67-ed8e-4ae3-9b3a-efaa91f57c65 1 Other Other +8d098573-6746-4602-9f6b-a4e84322c917 1 Other Other +8d09e59d-3224-4349-8cb2-603116201d87 1 Other Other +8d0a4e15-a7e4-4072-9b98-765e3d5bf86b 1 Other Other +8d0a57b8-972d-46c5-a5bf-fdfe7367122f 1 Other Other +8d0b17db-23e3-45b8-aff5-1ade13ea7824 1 Other Other +8d0b1d8b-153a-433a-a349-9c653f35b755 1 Other Other +8d0b2a54-a303-41aa-b14e-75323d187eba 1 Other Other +8d0b6b45-28b8-40d9-99a6-09684cd07d15 1 Other Other +8d0b8f86-2fb4-4933-991c-b23a7ed05436 1 Other Other +8d0c3ffc-7dc7-4fe7-8639-8f267d63c18d 1 Other Other +8d0c4120-dbe1-4ee5-93d0-e236af9a83fc 1 Other Other +8d0d57f8-243b-42f7-be4f-2dd8997f0008 1 Other Other +8d0d5bdd-6bbc-423a-aed5-68f308e55dfd 1 Other Other +8d0d9f64-2cb4-4bb3-8c14-e42567c9d522 1 \N Other +8d0dacbd-34da-4dad-a56a-847013a1d0bd 1 Other Other +8d0dbf92-af23-4884-be36-27c800e2ea05 1 Other Other +8d0dc172-f759-4c48-b730-cb9832607d75 1 Other Other +8d0e68f5-e42c-4d5a-bd14-e193c521a1c6 1 Other Other +8d0f1597-dc1a-4d26-84a7-97f1657130d5 1 Other Other +8d0f5827-9212-4ddd-bded-c284cd1dcd45 1 Other Other +8d0f9f8f-690a-42f2-9676-0ced240737f5 1 Other Other +8d101a9e-d486-4d41-b6bb-270644405376 1 Other Other +8d102b78-19e6-48a5-bd8e-f6aa643a193b 1 Other Other +8d1051f1-f0ec-4d5f-a70f-125024a74b15 1 Other Other +8d105e04-61ab-434f-b758-a1495d2cda3c 1 Other Other +8d10a659-c411-4b93-809a-5e08e033241b 1 Other Other +8d10aac6-6b70-40fb-b622-76fc85dd6e95 1 Other Other +8d10b505-d99d-448c-9813-63c5a20f881a 1 \N Other +8d10c12a-2d49-4d1c-8459-e0a863923ee2 1 Other Other +8d10ce47-a0c7-4b9c-bd2a-2a58268ce298 1 Other Other +8d10dc02-03fe-436d-a166-3dc18d57a632 1 Other Other +8d10f629-d9fd-4e45-8989-027afa23b105 1 Other Other +8d10f925-a79d-43ee-8b99-ac3c904d4e73 1 Other Other +8d111a84-c3f4-4037-8166-e0c26a72d3d9 1 Other Other +8d114d89-c3c9-48e3-8076-5e242b1f9088 1 Other Other +8d115eb7-43c9-4945-872f-508fab2f20bb 1 Other Other +8d117103-6893-41de-8681-f307b3f29bf6 1 Other Other +8d121c91-28eb-4593-babe-78bc7f65572b 1 Other Other +8d123082-e107-44dd-b989-4d67bb10fc48 1 Other Other +8d12566f-e3fc-4104-9f1a-5c2fecfd2069 1 Other Other +8d128504-6193-442b-a603-076d98f94861 1 Other Other +8d12aa64-36bc-4804-bba4-19417c297d3f 1 Other Other +8d12b228-ed14-49a0-9355-9f24b1d9a972 1 Other Other +8d12d6e8-c589-4d66-8eea-b25ae5fef3c5 1 Other Other +8d12ff6e-4590-4c34-927a-1a16c7b123b9 1 Other Other +8d133a52-2c63-4d00-aa2c-3ae4cb9e61d6 1 Other Other +8d137133-abc2-4ebd-b5e9-ad591d3e9966 1 Other Other +8d137919-1b7d-45cd-9bbb-18b076a581a4 1 Other Other +8d13a0a2-2611-4e82-8f5b-e54433ff3887 1 Other Other +8d13c3b4-7019-4a5e-accf-aa35fc3bf100 1 Other Other +8d13de8a-b0c8-4d73-a860-17ce698bf6db 1 Other Other +8d13e0c0-1c4f-423a-8b58-10838abf4edc 1 Other Other +8d145d1f-c06a-4d02-ab33-cb8545cca40f 1 Other Other +8d1477bf-6ab3-47b6-ae4c-a463fae70abe 1 Other Other +8d149909-6d05-4519-8b5d-22f4a45c4bab 1 Other Other +8d14a7fb-dabe-4c4d-9639-0bdc08ba5ae8 1 Other Other +8d151ba4-9eb4-4327-8703-6eaefa502060 1 Other Other +8d15242a-1d26-4154-9b15-fdde57fe260e 1 Other Other +8d152c31-6143-4510-9f98-222dd6812f7d 1 Other Other +8d156a70-f804-42a0-82af-ba8f9fbb6e20 1 Other Other +8d15b6f2-9f42-4704-9b3d-30e060e8e133 1 Other Other +8d167050-1c61-454e-95d0-fcbc53eb9ecb 1 Other Other +8d169bb1-8815-402b-8c1b-25df1ec232d0 1 Other Other +8d16a0ee-2c9e-4995-9e84-a8b565ed75d2 1 Other Other +8d16b932-4aa0-4cde-b4be-3b120145ed05 1 Other Other +8d16c7c0-4943-4383-9abe-f7ff63a2e7e3 1 Other Other +8d16d341-9a3b-4f08-bef4-1b7c1546a3aa 1 Other Other +8d172619-7d5f-443a-97a8-ccb69839616f 1 Other Other +8d173556-e845-4275-bbe9-8fb2a841620e 1 Other Other +8d174034-771f-48b7-8fb5-2edcddf2af3d 1 Other Other +8d174255-1fef-4882-bcf0-b1a5e41026c4 1 Other Other +8d174d3b-93b3-4729-9c8f-43adf8a91139 1 James Other +8d17a029-0cb2-428d-aa53-8c8bd52439d8 1 Other Other +8d17e8c4-abc7-43f4-b487-a3946e20abc4 1 Other Other +8d18b30c-c41a-4734-bd44-a323ecabc294 1 Other Other +8d18c217-77c7-4a9e-8738-cd3e8d94f3f2 1 Other Other +8d196cc5-68b0-46bb-a1d7-948b4908cb8b 1 Other Other +8d19b5b4-b3db-4e80-92af-70886cf45182 1 Other Other +8d19cfcd-0d55-449f-b53b-ea15b409efc8 1 Other Other +8d19d8ce-e0e5-4911-a0d5-899468d81295 1 Other Other +8d19ef8c-8dbc-4f62-9317-386063a357eb 1 Other Other +8d1a2961-34b4-480c-8593-a496ab9fa5fe 1 Other Other +8d1a7953-ed5f-4612-a541-022b4540dd50 1 Other Other +8d1a85fe-64fd-460c-862d-fafc77220781 1 Other Other +8d1a95ab-51e0-4c9b-9469-ba81db0425a1 1 Other Other +8d1abec9-4856-497c-9e87-0e304e8eb3ab 1 Other Other +8d1af4a6-2e81-4ae6-9831-60cf104e3a92 1 Other Other +8d1b151d-5827-4d00-9afb-fa16b580ac84 1 Other Other +8d1b7e12-a323-4fb8-a866-8910fae89bac 1 Other Other +8d1ba58b-06c9-4052-a331-da48a367588b 1 Other Other +8d1bbd86-8df1-42c7-8fa0-5a633a893e4d 1 Other Other +8d1bc941-4791-4f19-9107-e8398b5586e3 1 Other Other +8d1bf126-cdfd-437f-872e-4021eb59aaea 1 Other Other +8d1c08cd-5fd8-4715-b783-c2006604d8a2 1 Other Other +8d1c19cd-7cd0-49a7-9855-57d265da9d63 1 Other Other +8d1c5872-8f28-4d5e-8482-09c08f05d6b8 1 Other Other +8d1c5bd0-e2af-4f02-bd72-61fdc6827146 1 Other Other +8d1c77b5-bbe1-48f5-8bdf-a4f3b8ebb081 1 Other Other +8d1cebd1-28d8-4c1e-9521-75193d39d4bd 1 Other Other +8d1d3e78-9f7d-4939-81b3-3d214a3d7251 1 Other Other +8d1dd861-2d88-4ec9-b372-c2321db7bf55 1 Other Other +8d1df274-c771-4429-afe0-1f9b0631ce73 1 Other Other +8d1e6a6e-da4d-4388-bbcd-805ecbe107d1 1 Other Other +8d1e7dca-179e-4345-b4f4-46f97ab78fcf 1 Other Other +8d1eda9c-4f47-4ff3-ab06-d11d94c062bb 1 Other Other +8d1ee859-61de-4531-843b-e644426c60a3 1 Other Other +8d1efa45-706d-4d50-bb83-019a9cc7b987 1 Other Other +8d1f0bdd-cb5e-4c38-a577-d2d17de24d46 1 Other Other +8d1f2687-29c9-461a-a69a-2f3bbf01e461 1 Other Other +8d1f667c-0c2e-4648-b053-5d2e54602ae0 1 Other Other +8d1fba42-26fd-4570-a5ad-8bf26de3e2df 1 Other Other +8d1ff3af-4665-4071-89ff-41a04809c622 1 \N Other +8d201e0f-df08-4100-9fac-4fe3b6995547 1 Other Other +8d2067a7-0cb9-41e3-8ed3-e766b3e9382b 1 Other Other +8d20a980-52ed-43ce-a676-0f3c2c1b850b 1 Other Other +8d20e58c-ee28-4983-b495-4578a9849ea4 1 Other Other +8d20ebe5-5e0c-457b-9060-501c66eff855 1 Other Other +8d21044b-fd06-40db-9141-8807ec205075 1 Other Other +8d212182-9f39-4ce4-b1c4-2d9c276b3196 1 Other Other +8d213fc8-85cd-4eff-a9d1-c9ec69019f01 1 Other Other +8d217210-63ae-4a8b-b208-d69ad83753af 1 Other Other +8d219705-3d0d-41a8-a52c-1ba12e101117 1 Other Other +8d21a1aa-8893-4c97-adb5-4085a5049010 1 Other Other +8d220c37-f6c8-4e4a-b98b-dc85cc0564f5 1 Other Other +8d223f12-fc5f-4713-8c97-0b0b808f9c4b 1 \N Other +8d223fbb-8f85-45b6-ab86-9f6eea2d82df 1 Other Other +8d22d926-41f1-469e-a254-635f6d5a1944 1 Other Other +8d22e90a-266f-4e7c-8179-2281b9a5dc89 1 Other Other +8d22f54b-6a64-4610-a98d-935f5e51ed86 1 Other Other +8d2344b1-59cf-41d0-a3dc-d98d6d387666 1 Other Other +8d235fe2-88b7-431a-9103-a015fbccc878 1 Other Other +8d2368a9-3a76-4731-9757-4551e14e8519 1 Other Other +8d2387d6-331b-41c6-a250-5dd8bd77936f 1 Other Other +8d23a6b4-23b2-456c-ba1c-b1358e0e4d51 1 Other Other +8d242686-8c4a-4583-b8db-f4402dafa3cd 1 Other Other +8d249314-b22a-4907-bc28-975ef4853125 1 Other Other +8d24c837-549c-44e5-b352-b9f05a08d274 1 Other Other +8d25045e-aa22-4bc4-b8f2-72616cdf50d0 1 James Other +8d2523d6-294b-4ec5-a226-af68d303735f 1 Other Other +8d256738-2464-4fd1-af2b-faf0049a8e53 1 Other Other +8d257136-9204-4cfa-8251-c12ed6cc47db 1 Other Other +8d25b042-5e94-4e1b-89d0-ae86527743db 1 Other Other +8d25b0c1-c5fa-4b7b-af84-dc161edd5c2a 1 Other Other +8d25eede-5530-4a19-83eb-dbcbef1efd31 1 Other Other +8d25f2ba-d235-44a0-8320-c7a08d9f9161 1 Other Other +8d261961-3ef8-4cb3-bb08-f0454583d93b 1 Other Other +8d2622e4-1d17-4b66-be19-c9a496e33263 1 Other Other +8d26389a-15b4-46d7-b961-b328c1ed0ffd 1 Other Other +8d264c24-3ef7-4606-81a3-078a8357a046 1 Other Other +8d26571f-0afe-42f5-bb82-584a5bf623c4 1 \N Other +8d265ef7-4c4e-47e7-a508-16f4b973ed70 1 Other Other +8d2669f8-3386-4593-b02a-f80f255fc29e 1 Other Other +8d267d86-500d-4faf-939c-11da7c18be5e 1 Other Other +8d269e1b-a44d-4a6b-aff7-1a4c5e4beea5 1 Other Other +8d26dd2a-1cc2-4ef9-83aa-c1b4fd5a5252 1 Other Other +8d270ca4-8060-4fdc-9c87-5c234ee3f432 1 Other Other +8d2722bd-8bb6-4824-9822-998e15e149a7 1 Other Other +8d274214-ccea-46a9-9012-39e937932244 1 Other Other +8d274af1-7246-45a3-b4a0-93c1e9f5ac25 1 Other Other +8d2751a2-f4aa-487f-bd96-bdcbeb16eb58 1 Other Other +8d275c5f-f12e-4bfe-9dda-009283d01aac 1 Other Other +8d276633-466f-4649-81b9-0c912d7a76ad 1 Other Other +8d27f040-86d3-4c35-bef1-03c0d6e00c53 1 Other Other +8d27ff00-ccfa-4d48-a606-0d1e758cf5e7 1 Other Other +8d287f86-c9c5-4a1f-b0f1-f586f6a51838 1 Other Other +8d2881ca-bcc3-4b3b-b47c-57bada48453a 1 Other Other +8d2888f7-c903-44c3-a1d2-c67476d5952f 1 Other Other +8d28ad7f-e088-4270-92ee-cabc1b6ded7c 1 Other Other +8d28af57-5c17-4c94-9415-139fdeb3b1c6 1 Other Other +8d28d201-e46c-42f5-b82e-9d9d84f94462 1 Other Other +8d28f524-0cb8-43ed-8110-94862cb0c571 1 Other Other +8d2910fd-a1c8-46b2-a4e7-d12dddcb5922 1 Other Other +8d2920a3-c6b8-4988-ac74-d7c8a153f948 1 Other Other +8d29246a-c735-40c3-aa22-002ef8f1c0e2 1 Other Other +8d2924a0-4163-42b8-a90f-16a874987642 1 Other Other +8d293f67-0a8f-42b5-b178-fddc0c1fe705 1 Other Other +8d295b9e-86cb-42b3-ad9f-6401f4b4b6fc 1 Other Other +8d295de2-661f-4933-b292-da1c53cf79f0 1 Other Other +8d296447-46bf-4c66-b09d-b3c31903ff32 1 Other Other +8d297df0-3ada-4320-b244-ade17b0e0faa 1 Other Other +8d297e97-9e25-4ea9-a2ca-91c2ecc528cf 1 Other Other +8d29c1ad-5728-4265-849e-1ef7bb11e4cf 1 Other Other +8d29de88-1ea8-48d2-9bd5-40805d6d8061 1 Other Other +8d2a25c3-5233-483a-9cc1-921344d79462 1 Other Other +8d2aab21-7db8-46ef-89a6-801d13d54a7f 1 Other Other +8d2b7de2-83b1-40a6-97dd-eb968fc8bc55 1 Other Other +8d2ba180-24a2-42c0-ac50-e752d5eecfd5 1 Other Other +8d2bc813-4c6a-440d-a527-ee7ea9573d4d 1 Other Other +8d2bea94-b418-458c-90c0-2e2ee7b394cf 1 Other Other +8d2c048d-a07d-4171-9137-5f882ae53c75 1 Other Other +8d2c07e0-aab1-47f5-bd95-a91e23fad872 1 Other Other +8d2c0e4a-237f-4561-a13f-3c01ab493aba 1 Other Other +8d2c3d06-c189-4f41-8fc0-519fb00a261c 1 Other Other +8d2c900d-211f-4b78-9908-d4ea5a02bc9e 1 Other Other +8d2c9d3b-70ee-447d-b4ce-3a10d0223779 1 Other Other +8d2ce9cb-bf11-4c7b-82d1-a10000a21b9c 1 Other Other +8d2cee36-7ca6-48cd-8bb2-2a32bbecd1f0 1 Other Other +8d2cf8f3-7a79-4793-81ee-d4dd522fdda7 1 Other Other +8d2d0b01-6216-40c5-abef-efec3452c44b 1 \N Other +8d2d1def-1db0-4494-89a2-cedfc4d095b9 1 Other Other +8d2d53b1-cd10-4c2b-8d0b-0b4d37a270a7 1 Other Other +8d2dbdf8-2312-4ded-9d12-d59d720b1bd9 1 Other Other +8d2e3546-0276-4256-afff-fecd0dc7c762 1 Other Other +8d2e9278-302d-419d-bde5-d12a09929cef 1 Other Other +8d2e9cb0-126e-4b8c-9a47-d0761d5be74b 1 Other Other +8d2ea91e-9cfa-491d-853b-10176b4d9a17 1 Other Other +8d2f3bab-c2dc-4988-970d-2047464dc747 1 Other Other +8d2f5a87-7e9b-482c-b2e9-e323938d2cce 1 Other Other +8d2f6f05-9b8c-480e-8edc-290cae09d71c 1 Other Other +8d2f8375-d4d7-4247-a97b-d33efdda7e02 1 Other Other +8d2f87a5-9ff7-4ac4-b3f4-145bc2f331b6 1 Other Other +8d2f8b77-8e21-4196-a975-169b9975ef99 1 Other Other +8d2f9d15-2e13-44e0-baaf-62d746fcd91a 1 Other Other +8d2fb969-f5a4-4578-a08c-60f850713d90 1 Other Other +8d2fd569-6c6b-4b53-93db-c021e9663f3f 1 Other Other +8d303bb0-a660-42ac-8d5a-a80cffa0e917 1 Other Other +8d3097ad-f080-44a2-86af-8c7183067900 1 Other Other +8d3098f8-f64f-4390-9784-b870c1fc2629 1 Other Other +8d309e07-4692-4ccd-a70d-a88589639fd7 1 Other Other +8d3107a4-23bd-45cb-a2c8-47a2ecdc005d 1 James Other +8d31352b-8eeb-4655-91fe-03db818b847b 1 Other Other +8d315bce-2263-4da3-8d24-f74d8ba59583 1 Other Other +8d316464-a7a0-41e6-b30f-9353805eaae7 1 Other Other +8d31f1bc-1baf-4c6c-bbcd-cd6c71a13ead 1 Other Other +8d32112e-e8b0-413e-be3d-dd4bc15f599f 1 Other Other +8d323c3d-e85e-47bc-b265-f20cf69efd6b 1 Other Other +8d326225-0464-4f2b-8bde-165a4b99eb37 1 Other Other +8d327407-10d9-4acf-8a2b-9197cd0cd1ae 1 Other Other +8d3315d3-9464-4279-b62a-d334549e4fb2 1 Other Other +8d333b45-c1aa-4961-8a2e-fd8f8c7f763a 1 Other Other +8d335a3d-b344-4199-9aed-ade4da75ebfb 1 Other Other +8d33bbcc-6bfe-43e2-bc2f-e4e36d99f6b9 1 Other Other +8d33d42f-e839-43d4-ad76-dea40c643169 1 Other Other +8d342d2f-0aef-4e33-8379-352045fc86e1 1 Other Other +8d3433fa-210f-48ee-b716-233998e6b469 1 Other Other +8d3462c3-02a4-488b-bbd0-b0d328884f25 1 Other Other +8d3468fa-da8e-4395-9ffa-86004e5f9fcf 1 Other Other +8d3496a7-f392-4512-ac88-093686047194 1 Other Other +8d349cf3-0154-41ab-a95b-91aa8b3f4dea 1 Other Other +8d34ade6-8181-4247-9fad-dede4ff00306 1 Other Other +8d35ba11-d4f8-44fc-b72e-8848eac59de0 1 \N Other +8d35d27f-672d-46bd-b383-a179363bcced 1 Other Other +8d35fd9f-5a69-403f-a4aa-16977932952e 1 Other Other +8d36094e-b174-47f2-9d36-59ed1d1b98c2 1 Other Other +8d36b5ea-b072-428c-a210-0a8257e9e429 1 James Other +8d36be8c-523f-4013-858f-42c9880e8438 1 Other Other +8d374621-4035-43a2-9a62-c6cd3e97e530 1 Other Other +8d374fa0-aa6f-4080-8f86-f85a14d3d8aa 1 Other Other +8d37edd6-2e18-4b31-b2d8-5557d890661f 1 Other Other +8d3853c5-b19a-40e0-b8bf-64faa2e0d3c7 1 Other Other +8d387cfc-2b82-45ff-8813-3b3f507192aa 1 Other Other +8d389ccd-7449-4cd4-974a-be051479fc12 1 Other Other +8d38c40a-b87f-4011-90c3-fab2704ca730 1 Other Other +8d38f72e-7296-45f2-96ac-4f66ac8c1521 1 Other Other +8d3935bd-2074-462a-9229-74da78e6347f 1 Other Other +8d394ccf-a01f-40f4-b571-d05185048bd5 1 Other Other +8d395c43-7b35-43ab-b1a5-3ad4d1169e9f 1 Other Other +8d3962d3-8d48-487b-9c1b-5122617a30ec 1 Other Other +8d39d1ee-7320-4100-866f-880f788dc6d9 1 Other Other +8d39fc0c-b454-45a2-8928-f0391318f2bc 1 Other Other +8d3a01c6-edb1-42bd-8480-da79a3b91521 1 Other Other +8d3a5a7c-0ea4-4a3a-adda-22a164a2a6af 1 Other Other +8d3a7310-a72f-432d-8dd9-4678837db535 1 Other Other +8d3ad10a-09c4-49e7-9e53-1e4d046cf128 1 Other Other +8d3b2225-4969-46b3-8128-f6ecaa48e7ac 1 Other Other +8d3b4382-588f-48d8-a6b6-279ff85cbed4 1 Other Other +8d3b4ea9-54f0-4536-874b-e6dc0c939f22 1 Other Other +8d3b610c-701b-4f4a-94cc-c6d82e63f77f 1 Other Other +8d3b7198-6aad-46e1-9164-16ee0063fb2d 1 Other Other +8d3ba8f8-6f51-4ac0-95de-0ed0383c9618 1 Other Other +8d3bc90e-7635-4016-813b-56a48a277d7f 1 \N Other +8d3c0880-770b-4fc1-956e-06bc51c1ce03 1 Other Other +8d3c5b23-94ff-428c-b56d-fe5e5f67c256 1 Other Other +8d3c5b84-321c-4cc9-b59e-2da9dc528fcb 1 Other Other +8d3cfe3f-4e02-4e5e-b35c-940d0a8045fb 1 Other Other +8d3d265d-aa05-4e04-a2be-67dcda886c09 1 Other Other +8d3d9e7b-5791-459b-8d0c-dd5594d87529 1 Other Other +8d3da500-ffd1-469c-b4d9-5e797c78aaad 1 Other Other +8d3dbded-0350-4826-9cd6-d228dbad1a4d 1 Other Other +8d3dd957-3ff9-44b3-b968-1f6ff05796ef 1 Other Other +8d3de4d8-3cd0-44aa-96fc-b273d1837f4d 1 Other Other +8d3df3c7-c25f-4666-b813-efe293e9588e 1 Other Other +8d3e3b66-2592-4d34-b919-32ed1eb315c6 1 Other Other +8d3ea710-8167-4bb3-b47a-86ada82a8dd1 1 Other Other +8d3ec30d-e089-448c-9bf2-44493eb995ff 1 Other Other +8d3ed7e7-75a1-46c2-b78e-58746680f147 1 Other Other +8d3eda78-cc87-4d09-b2ad-0b1ea4f3ef0b 1 Other Other +8d3f1de5-d282-493a-964d-2633221eaf5c 1 Other Other +8d3fb84b-b06a-4e65-b7b9-cd8a6f195c10 1 Other Other +8d4006fe-0b2b-48d1-a23d-9f48c7dff86b 1 Other Other +8d401b69-2689-448d-9af3-ff0d206ed8a9 1 Other Other +8d40dc33-1340-435d-8b50-5f3a2d95a5a8 1 Other Other +8d4104fc-a4b0-4459-b380-8f620aa6cf23 1 Other Other +8d4111eb-1ea6-4f2f-b963-61b494584b55 1 Other Other +8d415ad4-413e-418c-8451-cdf3f940dc2a 1 James Other +8d4165e7-8048-45ed-b4d3-29b99dfc13dd 1 Other Other +8d41662b-aadf-42a4-b72a-34fabdeb950c 1 Other Other +8d41888d-92da-4fa8-9231-7c32eed615ae 1 Other Other +8d418bde-57f9-465d-8909-2c5baaf0c290 1 Other Other +8d41a6bc-9dd3-4b39-b10f-d84c63bcc02c 1 Other Other +8d41af05-eb98-4c40-995a-d6fa32a47493 1 Other Other +8d41cd15-f7a9-4aad-a986-6159ec45f50c 1 Other Other +8d41e6b4-2cf0-4d6a-882b-b8de65f57d46 1 Other Other +8d41f69f-19fe-44d5-a9c2-9ef977a3992e 1 Other Other +8d425529-2f57-4b1b-b4e6-fc095ee8e010 1 Other Other +8d42670d-3d68-4845-849a-376a92e1c5e7 1 Other Other +8d429e6c-aff7-44f4-8bab-5ce97b8f52b0 1 Other Other +8d42d790-b1b1-4ef2-a7bf-7f4557cb5297 1 Other Other +8d432bd9-6008-4a27-8267-54b5060be2bf 1 Other Other +8d43462d-231b-4e97-9428-ba4f9333fcc3 1 Other Other +8d434a96-8ef0-4466-9402-7b54e223f2b7 1 Other Other +8d437b7f-6f94-441e-a54a-fcb81b67080e 1 Other Other +8d43b737-4271-45a3-a87c-8c2be53a8c67 1 Other Other +8d43d6c6-0f83-45be-a6df-77ddb19f6e1e 1 Other Other +8d43f36b-e6ac-430b-953f-79f5e1e35cca 1 Other Other +8d43f947-1307-4626-8176-fa900b7d01a3 1 Other Other +8d4481b9-58d6-4f3b-baab-ade1b6f8c4fb 1 Other Other +8d448871-6e96-444f-9aa8-9f3beaa3b920 1 Other Other +8d4495f2-53bd-45a0-a6f5-262fffee6a9a 1 Other Other +8d4544d8-144c-4b9d-9be9-6ba5fc7d3e4c 1 \N Other +8d4606f6-379e-4551-9710-b0bdf114fcf0 1 Other Other +8d460ccc-3b90-4303-b605-9b34c7fa9346 1 Other Other +8d462465-bc0b-48f2-bc22-a92e060be047 1 Other Other +8d4648a2-74f8-497a-9bad-26b0417487b2 1 Other Other +8d46590d-b5c2-4c6b-b78b-42b88095e447 1 Other Other +8d46ba5d-32b3-4288-a840-f3b6c41ddcf7 1 Other Other +8d46cb80-6ba2-4481-992f-e7e3de2c20af 1 Other Other +8d46e3e9-445c-485e-87ab-8a56c7e1aaec 1 \N Other +8d472102-9e93-4fef-a617-006dbcb95a5d 1 Other Other +8d4734cc-a818-4013-ae3c-a35628d5443e 1 Other Other +8d47396d-2de5-4dca-bb88-41f8e6e704e1 1 Other Other +8d4749ac-273e-4900-9af0-abbbe537a8e1 1 Other Other +8d474d00-8cd7-4704-b25b-cb3b0032422e 1 Other Other +8d478687-a843-4823-a54a-b3cd549e3483 1 Other Other +8d47a878-0a86-45c5-818d-01b5f6ac8130 1 Other Other +8d47a891-495b-4d93-b09a-2a85208d2b54 1 Other Other +8d481ade-da97-4cf4-a333-babc63e953f7 1 Other Other +8d4842c3-88ca-4d65-b666-bd1ff3827156 1 Other Other +8d489367-68d1-41b3-9b63-62ef3f97a18f 1 Other Other +8d48e64f-68c0-4c19-932e-06274b928de9 1 Other Other +8d494104-7998-4358-a25e-91c0e3f7c6b1 1 Other Other +8d495d9f-e35d-457e-ad31-0951ee1ab282 1 Other Other +8d49860a-166b-4cc1-8b0a-551285983d00 1 Other Other +8d49866b-062c-4475-9a33-6219d078e1d1 1 Other Other +8d499f83-12a2-4abc-8941-30698d71317c 1 \N Other +8d49a278-a657-4c65-9db5-8e51df301232 1 Other Other +8d49a640-7d4f-4082-9155-b833fc436a24 1 Other Other +8d49b7b9-b5b4-4d33-b055-9820c2aecfa2 1 Other Other +8d49d245-1b5b-4009-96aa-eb08d1df7232 1 Other Other +8d49f85e-53f8-4452-8e47-61451c65ee5d 1 Other Other +8d4a37e3-7475-4043-8485-12ebd78a1068 1 Other Other +8d4a42ce-ec6d-4310-97c7-8e31b5d19777 1 Other Other +8d4a4b37-9c73-419e-8587-116b7b701472 1 Other Other +8d4a5e26-dcde-4123-9d89-39eb8d8350d1 1 Other Other +8d4a67bc-48ba-4f07-a1c7-bdbfd37e2109 1 Other Other +8d4a9c7f-3c0a-41d5-a004-9e604a2257fd 1 Other Other +8d4ad2ad-9572-4997-9914-dc15d3f8da88 1 Other Other +8d4af7ae-bac9-4aea-ac21-edf7e00c088a 1 Other Other +8d4b03ee-68fe-468d-8532-3c75cc3bd04d 1 Other Other +8d4b0dda-36a9-4b2b-bb6d-436f9dbf6eda 1 Other Other +8d4b1caf-c3d9-42e5-89de-8fbfb3e012c3 1 Other Other +8d4b70be-331d-4e7d-9d93-8baf1616a649 1 Other Other +8d4b88cf-1cd8-4a00-a625-36631ba809b3 1 Other Other +8d4baec1-8d03-4656-b5d3-0acf0db51139 1 Other Other +8d4bb951-1ad0-4813-9a1f-1c9e90a08e2f 1 Other Other +8d4c5822-03d0-4704-945a-c5964f72b1d8 1 Other Other +8d4c5899-95fb-4509-9e55-63d61c3f4306 1 Other Other +8d4c895e-bda8-48c1-a6ca-13b49b57ead1 1 Other Other +8d4cf2b7-3c0a-492d-8575-d3598ea24cb2 1 Other Other +8d4d3915-0ea1-4784-be42-fe2f75d0fe6d 1 Other Other +8d4d9057-3124-4de1-960d-44a1e895ae17 1 Other Other +8d4dbfbf-9916-4586-82ba-6b93d639d55e 1 Other Other +8d4df311-b3d4-436a-a8b7-39ae776eb1f1 1 Other Other +8d4df66c-4038-4d18-9c7c-5aa67404c06c 1 Other Other +8d4e9d1e-f026-4510-a484-75480c69417a 1 James Other +8d4e9d6a-5a9f-4d89-adc6-30af5c951602 1 Other Other +8d4ede76-d502-4daf-9169-fde6f087ce04 1 Other Other +8d4ee89f-ddc0-4b6f-93a0-cf750e9b2686 1 Other Other +8d4f5826-e2c7-49c0-9181-0c356d82af0e 1 Other Other +8d4f93a7-bf05-4787-9f9f-4cbb7a7035a5 1 Other Other +8d4fa518-bab6-4402-a78e-8cc10b1a9006 1 Other Other +8d500a05-d4f8-4908-8cae-4380fb18e319 1 Other Other +8d502375-26ad-4ab6-8d5c-9154fa1a0bc6 1 Other Other +8d5051ff-b61f-481d-b578-aceeacb7526e 1 Other Other +8d507bcf-a71e-47a6-aec0-7e411997073d 1 Other Other +8d508af6-0bfb-11e8-a966-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +8d50a172-54fa-41c1-9e81-0aff5cc1b47a 1 Other Other +8d50cae6-1f07-489f-a537-694ea3ab99d4 1 Other Other +8d50f5d6-c5a1-40d2-b876-4ac9c9fe1b59 1 Other Other +8d5148df-9355-4e2a-86c5-e8c414aab065 1 Other Other +8d51616e-5eba-496a-bb48-f5ab610498f6 1 Other Other +8d517859-e20a-4619-86e5-08ee26ab6dca 1 Other Other +8d519190-9469-4bee-96b5-1d4ca504590b 1 Other Other +8d51b9bd-3239-4f43-952e-26ea1d197e22 1 Other Other +8d51ef47-62e2-4e5e-8348-8433c5598afc 1 Other Other +8d52183d-b208-4b81-ba1e-c847831f8404 1 Other Other +8d52a14c-af1f-4a20-8457-5236ecadc1ad 1 Other Other +8d52d0a3-d2b0-4a5e-af34-64b937939364 1 Other Other +8d52f54c-ce26-4a3b-8551-4cac2da95dcc 1 Other Other +8d530a42-cfb5-4c3e-be5c-87a3d25eb83d 1 Other Other +8d530c1d-e2c7-4cdb-a73e-4bbcf59c8dae 1 Other Other +8d535132-d589-4c22-bb49-9b017ad977fd 1 Other Other +8d538503-6527-48a7-b477-93378a22f27e 1 Other Other +8d53a3ac-c104-40df-953d-00652720c92d 1 Other Other +8d53b5e1-5acc-496c-af4f-adf38ca63e0c 1 Other Other +8d54256a-7300-49b3-8e2e-81d5474daa23 1 Other Other +8d543dfa-20e5-4ca9-b1c0-aae58313cccf 1 Other Other +8d5450fb-5471-4624-8669-b5b34f2901c8 1 Other Other +8d548222-7764-4b19-8769-0669a6f6ab0e 1 Other Other +8d548a1b-5a0e-4568-824d-d7172498a06d 1 Other Other +8d549f6b-ead8-433a-9554-4cf7cd4411e8 1 Other Other +8d556f4b-73ae-4328-9dfc-665e12ad8d5e 1 Other Other +8d557a6e-05a3-4159-bb0c-29db06cffd62 1 Other Other +8d5650b1-66f3-426f-8839-8351a515b3a2 1 Other Other +8d565d00-dc4a-4c81-92ad-4be6d0d586c2 1 Other Other +8d566342-0c20-449d-9325-526d04301b47 1 Other Other +8d56d690-0247-4f47-83ca-c833530f4b78 1 Other Other +8d5701de-5c71-4ace-b779-02070fbe8122 1 Other Other +8d571401-35aa-449d-8905-f5da2ce6b54a 1 Other Other +8d572766-21ab-48bf-bb8c-2af037ee9986 1 Other Other +8d5730ca-2b6b-4929-9de3-409bfa6f5d71 1 Other Other +8d573958-ebb8-49ec-bee7-aee83354cfba 1 \N Other +8d576977-c88b-4960-90b3-6d4f293cd2a0 1 James Other +8d577593-8eda-4bb8-abc1-b91c1000cc8f 1 Other Other +8d5783b3-8d91-4e02-a432-a1233baec8b9 1 Other Other +8d57ab38-5b4e-4764-9a15-11f7f1e6ec2d 1 Other Other +8d57e9bd-c046-4f11-9c29-8b74dd554fec 1 Other Other +8d5807c7-32e1-4b5a-8380-263f60e62397 1 Other Other +8d580997-1558-411a-973a-e760ad2d2ea9 1 Other Other +8d581a63-f78f-4d4a-8219-593c0a452d0c 1 \N Other +8d5855d4-0f71-4746-8a0d-20ee271e1cdd 1 Other Other +8d586756-c63c-44d3-ba51-5e95c171e4ce 1 Other Other +8d589ef2-c549-4dad-afeb-1d57212e601b 1 \N Other +8d58c2f8-b255-44ce-aeec-02fe16dfaf53 1 Other Other +8d58ff17-83d7-418a-bd98-8be5c51f1b78 1 Other Other +8d592a16-5830-4e9e-bcf5-f553c710b2cb 1 Other Other +8d59c346-188b-477b-88bd-a1bfadef75c2 1 Other Other +8d59d511-9cf8-4f18-9953-b6e510a69a33 1 Other Other +8d59d94f-29b6-4b25-b7f7-c13f5b2e8e26 1 Other Other +8d5a0857-15ec-416d-bbef-fa956a97a02d 1 Other Other +8d5a2012-6107-4ed8-bd51-1c317eb5c08f 1 Other Other +8d5a2136-6ed4-474d-a72c-e899a5c9b1ec 1 Other Other +8d5a2a10-b144-47d4-bb69-dd162bdae53f 1 Other Other +8d5a2f8f-0760-4594-a60b-bab16518b58f 1 Other Other +8d5a4615-61d1-45d5-96e8-d339305e41a4 1 Other Other +8d5a7b54-986e-4ce4-b7bc-ede53d0f5e8a 1 Other Other +8d5aa67e-08a6-42bc-9ef2-53214502663e 1 Other Other +8d5ac10f-42a3-4cba-bb16-45f8b73d5c0d 1 Other Other +8d5ac7c2-8b0f-4e5a-b766-e0feaca7c911 1 Other Other +8d5ac829-abc7-45f9-a135-cb7362dd487b 1 James Other +8d5bc270-f261-41a1-bccb-94a6e3553bf2 1 Other Other +8d5bdbcb-3b35-4675-8a47-f913391f922f 1 Other Other +8d5c59d2-03b0-4a52-8eff-b2b5922978c7 1 Other Other +8d5c95fa-22bb-4725-b861-fd89fb08ac38 1 Other Other +8d5d0d0d-27ad-42e9-a4fb-ef764eab398f 1 Other Other +8d5e1ee2-3eae-411f-8922-1049c58dafb4 1 Other Other +8d5e261a-31e5-49c2-8b10-2b9d53ddf7f7 1 Other Other +8d5e725e-91ef-4f5a-a347-f39f5dd17cef 1 Other Other +8d5e7c52-f3e7-4e2c-9bbb-a3621b9ac3a7 1 Other Other +8d5e9d41-b0ed-4a0b-ab8c-ea0c79247363 1 Other Other +8d5f57cd-8d84-4d65-a1d8-67f39d0dbf72 1 Other Other +8d5f74d5-d20c-4a01-8a32-b51f56b47d72 1 Other Other +8d6023d3-cb9e-45e5-a165-a8f41bf7f5ba 1 Other Other +8d60276a-8b90-4a1a-af93-0b45e5bdcbd9 1 Other Other +8d6031ea-ce53-4eb3-aa3f-c5df2589c809 1 Other Other +8d60500f-bdfc-437f-9d7b-6fdafba67268 1 Other Other +8d605f99-3396-4ba6-b0d5-a41aad32c5aa 1 Other Other +8d606598-32b5-4ed4-a82c-0e42a594255b 1 Other Other +8d60769b-1726-40f8-8a55-1bd77c3bc226 1 Other Other +8d60db15-c106-4526-bd80-01a608ca0380 1 Other Other +8d60f8a3-4ef5-4a8a-8bab-dc01628d45d2 1 Other Other +8d61183f-a913-4354-ba2e-598f39bcce8d 1 Other Other +8d616764-77ac-4495-afa9-2065255f69a0 1 Other Other +8d6190aa-9676-4b12-86f4-cb1d3ee52cad 1 Other Other +8d61d91b-2413-400c-9ce0-f2c8cacd9bbb 1 Other Other +8d61e2f0-4bf6-4906-ac02-3cfa0155a72d 1 Other Other +8d61e94a-3d6f-4e54-b3c4-63f23d610853 1 Other Other +8d621aaa-eda9-48c6-a41f-c3f82d49f205 1 Other Other +8d627586-3010-49f5-ab47-e0bd22076689 1 Other Other +8d62b3e4-505e-4fce-8807-08f4b1aaae77 1 Other Other +8d62bf1f-53ad-48a6-bce8-f65c50d3a42d 1 Other Other +8d62fc47-a6ce-4ef0-9bc2-080e6dd290d4 1 Other Other +8d630728-7555-4028-83f5-33705fbfaf40 1 Other Other +8d642619-7b13-45c4-b05f-56015886211f 1 Other Other +8d6441b2-12df-46c8-b6ae-d38c6c8c22af 1 Other Other +8d648dbe-8593-4555-9c4e-6af71b38de45 1 \N Other +8d6495c7-741d-4422-8479-9aee129541f0 1 Other Other +8d654c20-5e56-4292-a3f6-70a7617c19e7 1 Other Other +8d656376-387b-4f24-b846-1e02daa70113 1 Other Other +8d658774-7d99-4f7d-abdf-5a264304053b 1 Other Other +8d660703-f22a-49dc-a3e0-83f8f8980eef 1 Other Other +8d66389c-27a8-4263-8601-e90f0b1b47ff 1 Other Other +8d66af77-b4ea-41a4-b713-c1406eb5c1c4 1 Other Other +8d66b356-05f6-4dca-8237-cd10359abd61 1 Other Other +8d66fb2d-ef39-4fb6-82c4-572eab673da9 1 Other Other +8d670732-b662-4e7a-8184-3b29fadcdffe 1 Other Other +8d6712bb-e35b-45e2-987d-5f8c38688f71 1 Other Other +8d67a5a2-3171-4f0e-b55f-23247964bc29 1 Other Other +8d67a605-4d49-400f-bda1-1b75e6716fd1 1 Other Other +8d67cbc9-03d5-49a7-9a8d-47317af34ca7 1 Other Other +8d67ec24-c3f9-4403-95f6-3f240a7fd898 1 Other Other +8d67effd-4056-4da6-ae19-c6332e8872c3 1 Other Other +8d6801df-b9d9-4329-91d6-9ebdc6561f96 1 James Other +8d683896-2077-47c3-9336-85b87d732f19 1 Other Other +8d6843bf-3888-4515-93ba-fc31dc37f52b 1 \N Other +8d68a8e4-1e48-494c-817b-25f98b35e241 1 Other Other +8d68b706-740b-46a7-b8cf-bdee18459802 1 Other Other +8d68ef9c-65ba-44a9-b604-bbfd18d0132d 1 Other Other +8d691f21-3262-4cdb-9edd-e5f7c2ecdaa0 1 Other Other +8d695e97-702c-4f32-ab6e-5f60a74acc9b 1 Other Other +8d696238-f660-4fc4-a871-2cfc9eef3f14 1 Other Other +8d699666-7e09-49d4-a4dc-59101720aa50 1 Other Other +8d69e847-b182-449e-850e-36357211535c 1 Other Other +8d6a0146-526c-4e1f-b037-1ba7fae2ea69 1 Other Other +8d6a2087-ffbf-4429-9d6b-a58c49b8a9bb 1 Other Other +8d6a5f93-eb89-422f-8868-bc5db99a0851 1 Other Other +8d6a6de6-8df9-4bc5-8ecf-0751cb6a337e 1 Other Other +8d6b48e6-0d87-4398-8f04-2b358e5a7a9c 1 Other Other +8d6b9fa5-515f-4364-8d17-dae1fe55458c 1 Other Other +8d6bcbad-9e92-43cc-8522-4256cc1767e3 1 Other Other +8d6c1986-647d-448f-a366-2b8019ccf93d 1 Other Other +8d6c3cce-d77d-4fd4-bfe7-79fd2a3a715f 1 Other Other +8d6c510e-ee30-4074-9595-c15fa4c58407 1 Other Other +8d6c53e3-5f79-46dd-8855-c74c81fdb26f 1 Other Other +8d6c6ac5-2aa4-4a62-95a2-4d845f3c9df9 1 Other Other +8d6c6d3f-5dba-4f06-b0dd-1d22a9c86d0a 1 Other Other +8d6c8bd1-42bc-4f00-853c-fd59ceae2161 1 Other Other +8d6cc3b1-3987-407d-bcb5-97406e8d6617 1 Other Other +8d6cd70a-95c9-42ba-9a1a-15af40178b21 1 Other Other +8d6d3718-32f1-4e8b-9c22-22328baa27d7 1 Other Other +8d6d6c09-0c63-41de-ab74-741d8fa48593 1 Other Other +8d6da662-5a07-4228-ae51-cacc4043b660 1 Other Other +8d6dbc98-aaec-4e2b-8451-cc0856552c4f 1 Other Other +8d6dc41b-641b-4db0-b6c6-2e43dd99aa02 1 Other Other +8d6dc5db-fea0-4e3c-a549-4174cf573d6e 1 Other Other +8d6deded-29f1-44e9-860c-424ea8f94e0b 1 Other Other +8d6f0110-ce3d-4685-9bf0-f2af26796293 1 Other Other +8d6f29ed-00d0-4bb5-a22a-49e279c421e9 1 Other Other +8d6f428e-3e37-4f3a-9fd1-1e3f30c395fb 1 Other Other +8d6f844c-6d9a-4088-a69e-7e21472471c5 1 Other Other +8d6fd68a-e291-45b4-9964-ba27f3c47dc2 1 Other Other +8d6ff6a0-a0bb-4a7f-b953-fdb32a2ed4e2 1 Other Other +8d6ffde2-9a39-457e-b384-acc46fe7af6f 1 Other Other +8d703df3-bf5f-4ffa-9b10-03f02c27d771 1 Other Other +8d70432d-a05a-4050-9fb1-07cbf7c85a63 1 Other Other +8d705c02-f5ca-4675-bf1e-0fbdc7835147 1 Other Other +8d70dff7-c7f9-4981-8e65-8144b2048bfc 1 Other Other +8d7157fc-b983-4445-b8d8-9cfc477aa1fd 1 Other Other +8d71a64c-b5d5-4e76-9440-22cd4fe2fa2a 1 Other Other +8d71b175-ed15-44e9-ab91-b69e12b0c707 1 Other Other +8d71b788-071a-4d99-b781-d8629e26dac7 1 Other Other +8d71e210-4726-4589-a68d-c2e18c277725 1 Other Other +8d71ecf3-c484-4530-91e2-6fc3821eb3e8 1 Other Other +8d71f0e5-d947-4a71-9895-f6fd762d41a9 1 Other Other +8d72190e-58f3-4d41-b9ec-f24aac938e62 1 Other Other +8d723a06-ac53-4cde-a904-010cb8b030d3 1 Other Other +8d731f83-e919-40bb-9051-869216b38693 1 Other Other +8d740744-4132-4aad-903a-10558f44033a 1 Other Other +8d741164-4a65-4d34-8ed5-27ecc4c5bd74 1 Other Other +8d744a64-2460-4106-b2a4-6d9e5441213e 1 Other Other +8d74cd5e-9b75-4913-8937-9575c1c431d4 1 Other Other +8d74f743-9aef-4daa-a244-11ae644c4574 1 Other Other +8d75412b-f8dd-4edb-b6af-32a48b427d13 1 Other Other +8d75478a-d64a-462e-bd73-16973ca6c734 1 Other Other +8d756fe9-b0c1-4586-b92a-a6d5270e31e9 1 Other Other +8d757dff-30b4-4d91-8bd8-5b1328023c99 1 Other Other +8d758d8d-d7aa-40f4-a60a-e6963475299b 1 Other Other +8d759842-0377-44f5-849d-5228ceaac5f7 1 Other Other +8d75a74b-0444-48c4-99a3-a884e70ad88a 1 \N Other +8d75c3bb-1cdd-479c-8062-7a50a6de7642 1 Other Other +8d75e0e3-4851-4138-b2f9-f6dec65f4768 1 \N Other +8d75e41b-c6ac-4030-88e5-97627dd53cee 1 Other Other +8d764d51-6628-4b4c-992d-893a75d90312 1 Other Other +8d7662a2-ca76-465f-8426-53f541388d85 1 Other Other +8d768079-4615-42f6-acf6-a50361548ab8 1 Other Other +8d76896c-8278-4a97-a26c-b805a64880dd 1 Other Other +8d769e33-32ab-473e-848e-54894ac7ef20 1 Other Other +8d76f399-37e8-4343-917f-279fbf937a2b 1 Other Other +8d770fdb-02c5-41fa-8606-efc3a965fc61 1 Other Other +8d772022-c20c-4f7b-b04f-303400cf2241 1 Other Other +8d77b714-6d7d-48e1-adc3-513c240083de 1 Other Other +8d77d855-faa7-4130-b327-da9db72f46a7 1 Other Other +8d782bd5-2c2b-4bc7-8124-a6cf9940f229 1 Other Other +8d784c43-63b7-4429-bd57-bfb59ee6e99a 1 Other Other +8d786936-5884-4532-9432-329d642ef83b 1 Other Other +8d79a595-5478-43af-abd6-4f8ebd4da3e4 1 Other Other +8d79da60-f474-4358-840b-4632877d0cc3 1 Other Other +8d79ee43-222a-4287-8109-8dfed7f70e11 1 Other Other +8d7a0a71-1ce7-490b-b27c-11df880bf4ae 1 Other Other +8d7a610a-05ad-48bb-bb3e-4a9ec8318659 1 Other Other +8d7a88ef-54a2-4d25-8f39-f691fc3ed8a8 1 Other Other +8d7a8d05-2952-49e6-9112-76ae16634c16 1 Other Other +8d7a9d4a-dad9-4973-ac07-70d6cde64b24 1 Other Other +8d7b0e76-59ac-4a5e-aac1-1fd44fa83627 1 Other Other +8d7b74aa-ddf8-4c39-8f6d-eb2ab1ed85ca 1 Other Other +8d7b8a54-f321-41b5-8e8d-82e2ee99038e 1 Other Other +8d7bcb70-7412-4786-89d6-74362ae980d7 1 Other Other +8d7c04b8-d622-4d60-a4fa-2c6828a1ffd2 1 Other Other +8d7c4dd9-5dd1-4d56-9e55-3b9789296cc2 1 Other Other +8d7c8fa7-f222-4f2f-9fc1-3e7f80faf068 1 Other Other +8d7cb9c0-41a8-4041-bf39-d1711919c792 1 Other Other +8d7ce6a0-6892-4ebc-8dce-feebee47078b 1 Other Other +8d7e133f-f610-4009-86f2-f561e71a6499 1 Other Other +8d7e306a-080d-11e8-8eed-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +8d7e36ba-975e-4ec5-b35c-10c9e113330f 1 Other Other +8d7e589a-0fcf-4c7e-9b6a-718783758b3a 1 Other Other +8d7e8a68-a4af-4c97-974a-3471dd2ea72c 1 Other Other +8d7f1620-e95a-4a37-a45b-d465bd16f6c9 1 \N Other +8d7f6dfc-6384-4e5f-a08c-bb0b583d5318 1 James Other +8d7f7e4c-b206-46a2-a7e3-aa73d7f00f8f 1 Other Other +8d7f9f57-8797-4f2a-8a1c-b51081dd82ff 1 Other Other +8d7fd1a7-301a-4d68-9341-244169d76a8d 1 Other Other +8d802354-a441-4dca-84e5-36b33fe0ef70 1 Other Other +8d8028e2-854b-46db-a68d-ffa507f14183 1 Other Other +8d809b68-8634-4fcf-8aaf-e5206099b682 1 Other Other +8d80acad-7262-4a4b-b50a-25e2752cb3ae 1 Other Other +8d80e4dd-958a-4b18-9f4e-3885e9a34f3c 1 Other Other +8d80ec71-2feb-4a5b-80f1-93f76a0a04c0 1 Other Other +8d810cb1-c739-4ec1-83d6-7f05fba45a64 1 Other Other +8d81249f-d8e4-4ae0-b2ae-a9a0f368c6e7 1 Other Other +8d8147b7-0b7d-4b78-b445-f8d28ca838d2 1 Other Other +8d815b98-d37d-44f2-b230-12726182435e 1 Other Other +8d8165a9-dac2-4cc3-9446-9a96240f7fc6 1 \N Other +8d8172ce-01d9-4d36-8e61-2809c496abbe 1 Other Other +8d81aaac-2752-4f11-bae0-0e6532ce0623 1 Other Other +8d822b10-c495-4288-bf3d-c40ed25caed3 1 Other Other +8d822e32-e06c-41a3-963a-ebaa9252e640 1 Other Other +8d826613-1255-4f5b-976e-a5abc93232c4 1 Other Other +8d827912-e413-4f8c-8bcb-ed786cd962c7 1 James Other +8d82f4de-89b1-47f3-9a66-fb22e295632c 1 Other Other +8d82fd69-7d28-4614-a2e0-7a05cd9f6832 1 Other Other +8d83093d-2d67-4dda-ba47-14cfd38b7bcf 1 Other Other +8d831ef3-eade-4b82-ac7b-39848c4570eb 1 Other Other +8d835881-a3ed-4e5d-a399-666a09d1c140 1 Other Other +8d83da9f-0e6a-411b-ab1e-6cc865b35391 1 Other Other +8d8421ec-53b4-42f5-9693-b09f92bea4ff 1 \N Other +8d843de6-b46c-4941-a27d-7f4ec695148f 1 Other Other +8d846c05-2635-4d46-88b7-58e7bc79ce79 1 Other Other +8d84b12a-62a5-4be5-b3c9-ccced24a897f 1 Other Other +8d85c2ab-1945-41f5-9226-1813b61b51b7 1 Other Other +8d85c9c0-cc48-44f6-9456-33acd5ed0b36 1 Other Other +8d85edcf-2a86-4610-bc0c-dd9ad1a82280 1 Other Other +8d862c22-8a7e-4733-880b-876cee87a0ce 1 Other Other +8d86685c-4ab0-4bd8-8c15-98f69482e537 1 Other Other +8d867649-36d1-444b-9e2d-d5e258e9cc08 1 Other Other +8d86aa9a-c0ca-40e2-8ee9-2619ceaa5160 1 Other Other +8d872f31-a2fb-4309-a43f-5c683b8bba38 1 Other Other +8d875585-0856-4a88-b990-634c222d0fe8 1 Other Other +8d877f7a-e957-4cdb-b848-321a72f942f2 1 Other Other +8d87b702-d7e8-4c3d-abd7-2bd6c15a803f 1 Other Other +8d87ccd4-b66c-4f5f-a346-558160609b41 1 Other Other +8d87ebe2-b633-4248-b6e9-adffee1946e3 1 Other Other +8d885420-0618-445e-ad0a-31a1946baf06 1 Other Other +8d888d67-1d61-4922-9a0a-d812cfef1959 1 Other Other +8d888e90-15dd-42de-b70c-8f714aeb4a82 1 Other Other +8d888efc-a459-4f17-9168-ffa56d842b36 1 Other Other +8d8898e0-b759-43c9-9e6c-7a4b90a8e239 1 Other Other +8d88ceec-3912-4c09-af01-2bcf8974a966 1 Other Other +8d88d41a-450b-40b1-b102-3d7a2972ff07 1 Other Other +8d88e553-68ae-4dae-9ff6-0e5f79b80068 1 Other Other +8d88e5d6-37c9-4dc0-be06-2b7ac5cbf322 1 Other Other +8d88f037-1245-42a9-b643-42d43da26844 1 Other Other +8d899ac2-2624-47dc-94bc-3533efd41db1 1 Other Other +8d89a506-ec55-4250-8374-5ddf75f50882 1 Other Other +8d89b4c1-f533-4505-b79d-08a64c53af92 1 Other Other +8d89d792-5513-4f68-98b6-48833cf29649 1 Other Other +8d8a00bc-2db6-4566-841f-897c7ae7839b 1 Other Other +8d8a0d6d-9582-480d-83e6-9cf495b1ea98 1 Other Other +8d8aca74-e037-41d8-8b18-067e4e36a056 1 Other Other +8d8ae1fb-4bfd-45e1-b3f1-0cd4a58a5b91 1 Other Other +8d8b1aff-d3d3-4c2c-91b7-9070f044aedc 1 Other Other +8d8b3084-28fc-4471-a548-a7efcd202330 1 Other Other +8d8b57a3-3ee1-4883-a92e-6b9b3eaf811f 1 Other Other +8d8b9ac9-c0da-4088-938d-e90121cf17f4 1 Other Other +8d8c21c7-e5e3-44c5-b214-ce22e3551e4f 1 Other Other +8d8c2a48-05d8-44c2-b198-ae9d47d18143 1 Other Other +8d8c4f31-05f6-41dc-9b7c-4c5c9b633431 1 Other Other +8d8c6ae7-0904-4d72-a946-92227492294d 1 Other Other +8d8cc100-b329-47c8-860b-0e5b41835b87 1 Other Other +8d8ccf1a-da49-4ae3-85e5-28542770b1f9 1 Other Other +8d8d515d-9b17-48b8-b5be-7352805f4e44 1 Other Other +8d8d5f16-9ad1-4d7f-ba44-66bfb2a2ee0d 1 Other Other +8d8d7e9c-d6fe-4d2d-ac1e-231ced79cd30 1 Other Other +8d8d882e-a01f-4fd3-a694-9140330d70ca 1 Other Other +8d8dafa8-3880-4e92-a88d-b33f774ec6a7 1 Other Other +8d8dc4a4-b5b2-46f8-8d71-bacb05fba465 1 Other Other +8d8dd795-d8cb-470e-ad94-0d40e80ab84e 1 \N Other +8d8df239-9cca-4c25-9fed-ad41f58ec522 1 Other Other +8d8e6c0f-9a35-4297-87d2-fe05d42eb2c6 1 Other Other +8d8ec5c8-f5d3-49f9-b5a0-fc2a81cf22d3 1 Other Other +8d8eec59-2f8d-4589-a266-2f5f5fad255d 1 James Other +8d8efd1a-4b9b-4165-8efc-3c0111dabdb8 1 Other Other +8d8f15ba-2448-461b-8494-094b77878dcb 1 Other Other +8d8f3c3f-1be9-483a-8560-89de5c215554 1 Other Other +8d8faf5c-556a-4033-b87f-f7f6fcfc4395 1 Other Other +8d8fc52b-1c98-44e2-9ed4-9d66decd27ef 1 Other Other +8d8fc7cb-45ec-4f66-b352-07464c494095 1 Other Other +8d8fe679-50a9-4629-ac0e-073117eb9c56 1 Other Other +8d8ffac0-5857-4952-9be1-c0158e6fdaea 1 Other Other +8d8fffa9-99d4-42ee-a032-12591b4bb1cc 1 Other Other +8d90adc9-2f56-43b7-857b-a389d7deabd1 1 Other Other +8d90b8a1-fe85-40e2-8aea-ee401c7412ed 1 Other Other +8d90cc3d-d7f9-4c3d-8b4a-c7e9f456d959 1 \N Other +8d9153cc-cdac-4ae5-979b-fcbbc0756ef3 1 Other Other +8d9153de-6fb1-468e-b0de-2c9d36fa1fe5 1 Other Other +8d9156b4-c4c0-4b4b-bf6f-28746e7b5c87 1 Other Other +8d91c0e7-d48d-48f2-a45e-05717982bcfa 1 Other Other +8d921add-40af-49a2-8364-7055260aac19 1 Other Other +8d9228d4-79e0-49f0-86da-a3cd82a06d17 1 Other Other +8d92453e-0205-4373-9659-95778339fdc3 1 Other Other +8d924890-022b-4a52-a44a-aa50f7bea2f7 1 Other Other +8d925121-95b8-44d4-b21b-d73107a8d494 1 \N Other +8d926c08-9cb5-4e3b-b4fc-efa7cbc8507d 1 Other Other +8d92782e-cafa-48ec-9825-530fc7af9a14 1 James Other +8d928e36-38ee-493a-a1ed-318009f4dd76 1 Other Other +8d92a2f8-df82-49ff-86c7-74415e6df822 1 Other Other +8d92b733-2559-45b2-967e-e04b82ed14f2 1 Other Other +8d93c6e2-76ce-4cb0-bd38-26149bc764e1 1 Other Other +8d93f044-9a7f-4121-901f-6b0a8fdf1d2e 1 Other Other +8d9485cc-fec4-4482-a0a6-4dc90ba7c880 1 Other Other +8d94b2c7-ec9c-48b5-a861-804fcdcde85f 1 Other Other +8d951134-39f1-43cb-b503-e6049a7f2500 1 Other Other +8d956176-085c-45bc-8a7f-c7a3ea4b7d13 1 Other Other +8d95d217-9c61-446c-98f3-ed94fd75a072 1 Other Other +8d9650ee-a3d8-4d64-8bc6-6b2bfcd2c0cd 1 Other Other +8d96c746-817e-47d6-bf9b-83c5ba3b7d29 1 Other Other +8d96d5f2-9ea2-4ea1-8c60-f7bfae0ffa23 1 Other Other +8d974e4d-7097-4120-a94a-778fd63ac7d1 1 James Other +8d976e95-4950-454c-94ce-d4b1ad0a4570 1 Other Other +8d977fcf-6251-4bc3-ac5e-53339c42fe45 1 Other Other +8d97cc0b-7b19-42e1-b73e-d92fa0aa23fb 1 Other Other +8d97f8e6-f587-455e-829f-e04de7966d8c 1 Other Other +8d983c52-75ec-4374-86a3-4d6aadb787f3 1 Other Other +8d9886e7-09db-4a42-a6f8-497894f4ca51 1 Other Other +8d98a601-d9c6-4d30-88d6-1068180ca42e 1 Other Other +8d98f4bb-8fe1-4727-b24e-37075b4b4311 1 Other Other +8d993a66-62f7-4540-bb4a-baddee1cfd0d 1 Other Other +8d9941ae-4067-4ff6-85b5-273e6980a60d 1 Other Other +8d994aef-d7ac-41dc-a599-68bc126ed580 1 Other Other +8d9960c9-2fe3-4652-8b9c-697e3a3501bf 1 Other Other +8d99d743-e6ed-4af2-9ced-154b1e4591f3 1 Other Other +8d99d932-114a-40e2-a82d-fec25ee2dabc 1 Other Other +8d99e0ad-ce9e-408c-9da4-bea48dcdc757 1 \N Other +8d99f9f7-f993-45e4-a15d-50a99897e549 1 Other Other +8d9a1497-b5ff-4d0c-8986-70c3e6a18923 1 Other Other +8d9a3502-dcf6-4e81-8965-b3973017b8d7 1 Other Other +8d9b39f3-d4fc-49d6-b769-05d51e9a0923 1 Other Other +8d9b6e8d-c6c4-468c-a099-a011088beae2 1 Other Other +8d9b88a5-d949-4364-953b-62d41dffd7cb 1 Other Other +8d9c0356-d58d-4cc9-9f7c-ac82bcf007e3 1 Other Other +8d9c0757-6bf3-4941-8cf3-8eb36a39dc62 1 Other Other +8d9c5d1a-418b-4a1f-b216-75016c1e81cd 1 Other Other +8d9c7e6a-36ce-4a8d-af37-1b96d5396088 1 Other Other +8d9cdfd2-2073-11e8-a7d0-fa163e8624cc 63dfcd94-143a-11e7-bec8-fa163e4dd901 Other Other +8d9ceadb-2157-43ba-ba8c-88d9e288efce 1 Other Other +8d9cf2e8-c162-426c-b4bc-55112da12097 1 Other Other +8d9cf867-a070-42be-8f2d-751e9714b542 1 Other Other +8d9d5015-ba9f-4ce7-bee3-a9aac727fe8a 1 Other Other +8d9d5633-ce64-495c-b351-2f7fc6383cbe 1 Other Other +8d9d83ce-4118-4d5b-97cb-f689e3e79cd0 1 Other Other +8d9da8f5-0413-49f0-b0f1-aabe2fb719c4 1 Other Other +8d9db373-f05f-4782-87f7-c46a39484015 1 Other Other +8d9de0f3-7669-4f93-b3a6-738ba9dca820 1 Other Other +8d9e2144-3aa7-4a8a-94ef-222adb964f0f 1 Other Other +8d9e2d7b-07f4-4103-9c5f-cff9b384a0a3 1 Other Other +8d9e7d57-f5a9-43e2-8709-80561f4cb3fc 1 Other Other +8d9e95f7-1871-47c2-a6cc-7faa30a258a5 1 Other Other +8d9ef258-744b-4533-a18b-7ce4cf183717 1 Other Other +8d9f1ce8-4840-4701-ab9c-26f309f8a8c9 1 Other Other +8d9f496d-7253-412c-a215-f80c115fdd87 1 Other Other +8d9f7b8a-9bd9-4f22-93a5-03f3bffcbc89 1 Other Other +8d9fa21d-2b6a-46ca-a29b-60f159bb0aab 1 Other Other +8d9faa21-ee21-4e08-b29b-4e816e178100 1 Other Other +8d9fbdad-8f5c-47bc-8fbc-507d1fb231bc 1 Other Other +8da00879-f05e-4faf-b123-43848b85314c 1 Other Other +8da01866-96c9-11e7-afc1-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +8da01dd5-04f7-4c2f-92fb-e3159673a6d7 1 Other Other +8da06707-aa3a-4d20-a9c5-8bde91effb60 1 Other Other +8da0c8b2-49b7-4a9e-ae76-d7d5c91cd8ab 1 Other Other +8da10a01-4f7c-452e-b3ac-910240ade8df 1 Other Other +8da13d5f-9c8a-4135-b710-a6c1d5f65339 1 Other Other +8da18bbe-eb07-45c0-bd56-231dbde72b9e 1 Other Other +8da1e6c6-3ce2-4c2c-9441-fa1dbedbe701 1 Other Other +8da1ef3a-a39b-4ca9-904c-6f35d72410ac 1 Other Other +8da2145a-9770-40a8-b45d-d578b4135144 1 Other Other +8da217cc-27d4-463b-9a6d-ee414807d44d 1 James Other +8da26cef-6d4a-454a-9a28-6dceadf44cc6 1 Other Other +8da308f5-f744-48f0-9d7c-fc82f56c4aa1 1 Other Other +8da32fbc-b30c-4c51-9e05-1c4820b6fea7 1 Other Other +8da335f7-1f50-451d-933b-52f44e17571c 1 Other Other +8da33efe-987c-4cfa-afe0-d99e4f6f2c61 1 Other Other +8da35d63-8eba-45e5-b96f-1ce0970f32f8 1 Other Other +8da38df2-11e0-4830-a02b-0273efbbc096 1 Other Other +8da39bbe-78b6-4ce7-b57a-a3f7a9dac707 1 Other Other +8da3a6f4-ae1a-4f21-b1d4-d52b2e236f72 1 \N Other +8da3a907-0087-4ccc-9043-e49125911330 1 Other Other +8da3afae-e011-4864-b171-9930d979d29b 1 Other Other +8da3fed1-b89a-4bad-a541-88f5782344d3 1 Other Other +8da428c8-9412-47b1-aaba-7dd7c5431603 1 Other Other +8da45239-1276-4239-8bc7-e20c6666203f 1 \N Other +8da473e4-dac4-46e0-adbb-910909561dcb 1 Other Other +8da47b6e-5516-467e-94b9-179607a60df7 1 Other Other +8da4d51c-dc9d-4c98-adf0-3d7ab048703b 1 Other Other +8da52473-6ec5-4d05-8df2-17eaede0e928 1 Other Other +8da58491-0ab0-46f2-8ccc-fa004abfe8a3 1 Other Other +8da58d0f-f113-4174-bd2c-b781a32af401 1 Other Other +8da5b945-7387-42e9-9d66-996881500576 1 Other Other +8da60bf9-6237-4b7a-ae03-82082199341d 1 Other Other +8da618ca-c29e-4f3a-8fe8-eb2fdda21616 1 \N Other +8da636eb-121e-4de4-996c-cb03888cf061 1 Other Other +8da67468-dc53-4369-9dcb-b9557f14bf95 1 Other Other +8da6a0e4-986b-45be-974c-06e6793ba5c4 1 Other Other +8da6af2d-c1cb-4296-a9a8-ceabaedcfdc2 1 James Other +8da6af60-a73b-4380-95f9-e5434bfa1098 1 Other Other +8da72466-03dd-4fea-8f4d-d18e91c1605d 1 Other Other +8da72d52-2a13-4597-846f-d4e43fa7a5c3 1 Other Other +8da73015-dc39-4f8e-8f49-bfe8eb8e6e51 1 Other Other +8da73c8d-1065-4b6d-a91e-a22711202728 1 Other Other +8da74e40-f9bb-43f5-9fb7-95f9b1831c02 1 \N Other +8da7966e-04ff-4616-9fa9-79e5d6fdf037 1 James Other +8da7c7f6-b5c0-4e54-8cf8-420ca313f9b0 1 Other Other +8da7f00c-b351-4318-b57b-c63ca2234314 1 Other Other +8da7fc66-36d3-4da2-9ec5-5469829551e4 1 Other Other +8da85ea0-93f7-40ad-a1c7-8a2f999e42c6 1 Other Other +8da8e061-7481-4c71-8400-9da0fe4fe6be 1 Other Other +8da938d8-fd45-4ca4-80af-0b0fed2acc3b 1 Other Other +8da954aa-d76a-47c2-b649-ba25a43ea2f9 1 Other Other +8da956ca-e000-4941-a9fb-4bdd8c71efa6 1 James Other +8da960ee-b87c-4337-ac27-321da6f5367d 1 Other Other +8da9cd65-3887-4ca3-ac81-658003a2cf0b 1 Other Other +8da9e000-b2da-44df-a57a-ebdeb092f770 1 \N Other +8daac2b0-63ff-45d7-934d-0b24406513e6 1 Other Other +8daace72-bdd4-4133-ab2f-00c3f5a2e2a9 1 Other Other +8daae077-e9e8-4e23-8208-290e26a00e97 1 Other Other +8daae1ac-a12b-4427-9fb4-3ca97ccf0c46 1 Other Other +8daae26d-ee26-438c-9abf-19df8f0ba916 1 Other Other +8dab1051-3948-4534-aeaf-ae0d4bdb4f1a 1 Other Other +8dab47ff-ac85-4a5a-99b1-9552d3239e10 1 Other Other +8dab56eb-6b46-44e9-9930-20fffe1e0fd2 1 Other Other +8dab956c-fbd5-4e1e-8a89-e660ea005ab2 1 Other Other +8daba065-c4a3-4bf9-9c7e-eb2b2fe81e0b 1 Other Other +8dac1949-efdb-4b87-b81f-4966adbf09a5 1 Other Other +8dac1eb5-a903-4875-b3dc-7fd9d297f112 1 Other Other +8dac4dfd-c13f-4f26-852d-cde21e7f802f 1 Other Other +8dac7293-5dfe-4a2c-8c8d-8538c2a019b0 1 Other Other +8dacc4f4-b44f-482e-a075-0076f338f637 1 Other Other +8dacc89e-c5ed-4bb2-b18e-fc2ea4f806ae 1 Other Other +8dace6e9-dddb-4819-8673-4400ad8a82b1 1 Other Other +8dacedc4-fdc6-45c3-997e-571aa3f1a66b 1 Other Other +8dad0b6b-e769-4349-a7f9-c626d5f4522f 1 Other Other +8dad5eea-045c-4f9b-80be-b46f3d961742 1 Other Other +8dad7d03-aa9e-48b4-9f81-f7e3e14e66c1 1 Other Other +8dadfc1c-e5e8-49fb-b590-850e7a9e2f79 1 Other Other +8daedf24-2daf-45c1-a9d6-fa7d7a1bfcf9 1 Other Other +8daeeed0-a089-46c9-abda-c64f444832d1 1 Other Other +8daf11ab-bba3-4800-9d60-4f580d6235c0 1 Other Other +8daf4b98-7779-4db5-810d-aa71da0b000b 1 Other Other +8daf507c-a4bc-4ba0-ac6e-4e49e2d2b4ae 1 Other Other +8dafa760-410f-4fdc-8f9f-eeba5691b7da 1 Other Other +8dafc8dc-4b16-4db1-b049-8782dee780b7 1 Other Other +8db01b06-0ffc-47e0-b5d3-0f234b629354 1 Other Other +8db036b9-a11b-4ca9-abe1-2b4fc4cedc3e 1 Other Other +8db0585c-9474-4bf9-86cc-c7ee1c23cc1f 1 Other Other +8db06d38-644d-4e1b-a121-69a052842a1e 1 Other Other +8db0a4a7-a9e0-4889-9ef6-e7210f83e9da 1 Other Other +8db0d3d0-27fd-4b94-9858-e44a0bacab80 1 Other Other +8db1030b-0a3c-4fdc-81c5-f33fc8032569 1 Other Other +8db1030d-13bc-44bd-90d4-fd87f6342645 1 Other Other +8db15d8f-b4ac-4f08-8a8e-9e0a7803ad63 1 Other Other +8db1667e-f6bd-4c6a-a38d-66d1a4973822 1 Other Other +8db16789-5c25-4f54-8f65-c142cda63b0d 1 Other Other +8db1cefa-5889-4f49-a44c-11c4d3b1cb99 1 Other Other +8db1d397-a2f4-4c21-9cfa-00013f8d9be6 1 Other Other +8db241e8-6bd3-48d7-92f9-6f66a4cffd7c 1 Other Other +8db24e24-7a4c-46ae-abe8-9c2100bc579f 1 \N Other +8db2bb9a-a6e9-4f96-91dc-8f681bca0bb3 1 Other Other +8db2e41f-f8ba-446f-a6d9-c012381349f7 1 Other Other +8db3009f-e602-4f06-b332-0f33729f9c8b 1 Other Other +8db303bc-d4d3-436a-866a-1996e1f76122 1 Other Other +8db329c1-4bf4-4e5f-9ca6-5f4a61d1abee 1 Other Other +8db32c93-b1bf-46ae-9426-d1174f89073b 1 Other Other +8db3a2db-a932-47e6-86a4-fe9255561f40 1 Other Other +8db3b0e7-28a8-45ef-aab8-dedabe009a7d 1 Other Other +8db409e0-5e8c-4eea-8833-43c74c943c90 1 Other Other +8db43b00-620d-4455-be4e-e35060306919 1 Other Other +8db43e70-fbc4-4f5c-907f-1585d3fa62c9 1 Other Other +8db44f50-9690-4ed7-ae28-70d896b8d189 1 Other Other +8db4ca5d-b4fd-4a21-8b3d-208ac0c40a69 1 Other Other +8db52907-c2b9-418c-b8e9-9fed9977425f 1 Other Other +8db52ac4-2017-4f16-bc1c-e0029a2f7436 1 Other Other +8db53469-c9ac-4bea-b699-d464adc42961 1 Other Other +8db64309-c97b-4f15-b2ef-a7459c5da734 1 Other Other +8db6501c-97b8-43d9-973d-d44ce2ce0336 1 Other Other +8db6770d-3c07-4624-b22c-83e7cd2e9524 1 Other Other +8db68cfd-d88b-46d3-a89c-e4acb001f3e6 1 Other Other +8db69010-9f57-4197-bf80-7ee10753c04b 1 Other Other +8db6c464-b95e-42da-99bb-aa184344fac9 1 Other Other +8db76fab-081c-4568-9426-26af3a7d44e9 1 Other Other +8db8752f-b951-4dfc-b318-e1747e6292f8 1 Other Other +8db8a17d-1d22-49db-89a2-96942da86503 1 Other Other +8db8b439-04cf-416e-bb19-0c850b95fc29 1 Other Other +8db8c955-775d-4620-90ef-ba6bf14c1de5 1 Other Other +8db915be-fede-4f7f-be70-0c37fdc4634c 1 Other Other +8db92205-6065-478e-8cf4-6490aaa3c084 1 Other Other +8db9cda5-9db6-4414-92eb-b1908a1a549e 1 Other Other +8dba0eaf-c280-42b3-900b-cee162b4c384 1 Other Other +8dba4914-d726-4103-8cce-c750bb5b9703 1 Other Other +8dba5c57-ef10-4923-ac82-20670af08c07 1 Other Other +8dba64c4-4561-4534-9e8a-8b9ec3b8b232 1 Other Other +8dbae20c-9d21-4833-b3e5-6d577f287ad3 1 Other Other +8dbb1b0c-b6e5-418e-acdc-f73e0e157703 1 James Other +8dbb89de-efb6-44f6-9c32-6241bd6a3a16 1 Other Other +8dbc22ba-d533-4318-a6cf-3bef3a34e283 1 Other Other +8dbc39f7-0a67-4aff-893f-a93caac90e00 1 Other Other +8dbc5f80-8add-4fa1-a9cc-ac45027f41e4 1 Other Other +8dbc9535-840b-49fe-82a6-a5de871a4cad 1 Other Other +8dbcb105-5f3b-4a47-b4ef-687e75059e9b 1 Other Other +8dbd04be-4b35-46bd-a1b1-9b45590f39dc 1 Other Other +8dbd0747-8b62-46fa-912b-a93e565ba3bf 1 Other Other +8dbd1633-4893-4e42-bc6e-446331e4b84d 1 Other Other +8dbd916c-9144-435d-a144-774fa797eb92 1 Other Other +8dbe296e-0b08-478c-9eb4-3419dcd02b68 1 \N Other +8dbe2fb0-381c-465f-b143-47317d6a4ffe 1 Other Other +8dbeeaae-3ccf-43a2-99a8-a731ba916297 1 Other Other +8dbef245-7adc-4877-97df-6b69d80b6855 1 Other Other +8dbf04ea-1b72-485d-96d6-17fa01fa7bfa 1 Other Other +8dbf2a80-8c4d-4539-946a-6996ffc25720 1 Other Other +8dbf37fc-7c7d-4cf3-9dab-e2631e3ac474 1 Other Other +8dbf3b39-d622-4db8-9cde-97ccfb297972 1 Other Other +8dbf53ee-27d2-4958-9519-552fadf216d2 1 Other Other +8dbf66f0-d820-4517-ae1a-dbce1a10204e 1 Other Other +8dbf765e-917c-40b7-b043-4d2ef2230d77 1 Other Other +8dbf95a3-4114-455a-b5e9-1e40688a6b8b 1 Other Other +8dbf9960-98ad-40a8-a5ef-30da5f13c48f 1 Other Other +8dbfac93-6956-414f-955f-9edc2878c5b2 1 Other Other +8dbfb6ba-77d6-49b1-95be-9b4d086a4be0 1 Other Other +8dbfe286-21c6-49b6-854b-c4901d71635b 1 Other Other +8dc02a1a-61f7-439d-a2f3-ca59804441f7 1 Other Other +8dc04c3a-8e4a-46f2-9e23-3e74ffdbe02d 1 Other Other +8dc0b35b-5eed-43eb-ac3d-a22ad8c8bfbd 1 Other Other +8dc0e514-628d-4956-be11-5b869d44f3df 1 Other Other +8dc157b9-ff99-4c3d-8dc8-a861149f3079 1 Other Other +8dc170b1-18de-4948-9cff-8dbfe8d69b80 1 Other Other +8dc18846-16b3-42ab-a495-203d5f66ab94 1 Other Other +8dc1e576-ef6c-4bbc-9627-0210ced098d5 1 Other Other +8dc206f9-5258-481c-a33b-6bc3c5b8f255 1 James Other +8dc244c4-c1c4-4c28-9a54-9fd88a58963e 1 Other Other +8dc25289-6f52-4516-9027-96dfb210f3b0 1 Other Other +8dc2af77-1d35-4ec9-a586-6c4f23adf03c 1 Other Other +8dc3038d-d2a2-4c44-bd80-63d8a55218f9 1 Other Other +8dc32ef0-4f18-4868-80b1-790275900650 1 Other Other +8dc33cdc-aaa0-41b6-ad1c-1950d4166bcf 1 Other Other +8dc3a5c7-c711-42da-9a94-49d04267171a 1 Other Other +8dc3be8e-41f7-404d-8b51-4e85f2087e36 1 Other Other +8dc3f2e5-7e42-489d-a6e6-b2331c558f93 1 Other Other +8dc4a3ed-65f2-4bae-87f2-a9433115a7dc 1 Other Other +8dc4a63f-179b-4225-b6f5-1be414b9ca2a 1 Other Other +8dc4d59c-be5a-4927-a0b7-da25cc02b296 1 Other Other +8dc4d6d3-f55e-4cad-a2d5-508dc42d2fc1 1 Other Other +8dc4d98a-fe8d-4fc8-962c-8fce04f1fb0d 1 Other Other +8dc4ebc9-8f48-46d1-9bde-2c9dae980b57 1 Other Other +8dc4f994-1994-4ae1-8c1a-80f68c195215 1 Other Other +8dc51bf1-d0d1-4cb8-a477-c154b209eb33 1 Other Other +8dc55f89-00a6-4513-8fbf-232349f8a355 1 Other Other +8dc56aaf-2340-4d6c-ac29-6000018d8e58 1 Other Other +8dc57775-b0ec-4806-b8cb-e4ed1616e92c 1 Other Other +8dc58715-4e81-45c7-8354-ca132bff200a 1 Other Other +8dc59af4-9c7b-4e54-8961-b3bea6fa6aa6 1 Other Other +8dc5ce72-fb92-4e55-90bb-8dc7bacd34d5 1 Other Other +8dc5d65c-6a69-4516-b4fa-b0f5aa9d1a68 1 Other Other +8dc6b124-d572-4ccb-9bba-49a0073d8eb7 1 Other Other +8dc6c8be-b5c8-4e28-a2cb-d4251d494c80 1 Other Other +8dc6c9f4-4253-4182-aeb9-8e29ec926bef 1 Other Other +8dc72086-d283-44e2-90ac-07408532921e 1 Other Other +8dc7247c-c442-4225-bdeb-1b4c16771144 1 Other Other +8dc72810-cdbb-4d1d-9567-d8279ba685be 1 Other Other +8dc7548c-9c40-4107-9269-e2148b1577f1 1 Other Other +8dc75787-ca5c-4e48-96b7-f6f8c1c7eb4b 1 Other Other +8dc7a6fc-3084-40c7-99df-9e5679afed09 1 Other Other +8dc7c813-8da6-4f10-be6b-6c393302683e 1 Other Other +8dc7d5af-249d-4655-80c3-df138893b5b2 1 Other Other +8dc7d812-f467-4214-a791-82147a9c3a10 1 \N Other +8dc804e9-d59f-4e0e-b00e-5c23ac726b83 1 Other Other +8dc81dfa-ceb6-4c07-897f-5ef6e92e6b3e 1 Other Other +8dc82c35-3df3-4032-b362-2b18129b0bfd 1 Other Other +8dc83dd7-671b-4334-a57f-a90736d9f0ba 1 Other Other +8dc8449d-ed9f-4608-91ff-3145b2bc64f0 1 Other Other +8dc86e33-c404-40ea-bd42-07b11f134892 1 \N Other +8dc89f21-ef8b-4edc-b1f7-78b481ff53be 1 \N Other +8dc8f99a-98f4-4158-9f5c-07386c383b7b 1 Other Other +8dc915a1-b4bf-48a0-b3da-91fa5b086f9e 1 Other Other +8dc9279a-316b-4a67-8930-2c48f43fb6e8 1 Other Other +8dc9942a-587b-41f7-9e74-45e8149470b5 1 Other Other +8dc9995c-389a-4957-a295-ae6ea11f4dd2 1 Other Other +8dc9b094-b0be-449d-b197-c6ccebc6045d 1 Other Other +8dc9b829-7507-4b48-a807-33296707520c 1 Other Other +8dc9e6e4-d43c-4acd-965c-e67e049b8221 1 Other Other +8dca061a-08f4-4c4d-ad08-a7bef0e54cf2 1 Other Other +8dca55bd-1abf-45e4-9e43-8a8905bcd93f 1 Other Other +8dcaa78c-f903-4c0c-bd95-d3eb62174e6b 1 Other Other +8dcac7db-949a-4fe7-880d-79a9a869c243 1 Other Other +8dcb50b5-b507-472c-9754-1e879c0f5791 1 Other Other +8dcb573f-ca35-4f5f-9613-f97687aafb90 1 Other Other +8dcb75b2-7670-42e6-886c-be9cb85f48af 1 Other Other +8dcb907b-2be7-451f-8ae6-0d01b60d602a 1 Other Other +8dcb99b5-889e-4d83-84aa-73f70ee0bdc4 1 Other Other +8dcbd565-db5d-41f2-84bf-ed6709e352f1 1 Other Other +8dcbf68e-afdf-43a0-85a9-16e6899166a4 1 Other Other +8dcc0a6b-0dc1-48fb-bedf-0d4032f191f4 1 Other Other +8dcc3074-6b9e-4100-9f82-a08ff19415f3 1 Other Other +8dcc759e-9a32-4172-b683-3fe70606f426 1 Other Other +8dccc522-0cce-488c-90af-1ac6b6e94bc7 1 \N Other +8dccf764-680b-4691-9cb1-f9ecbe90adc0 1 Other Other +8dcd080d-3bc5-4a87-b3a4-c30c432f6401 1 Other Other +8dcd7bfc-39fe-4479-80e7-f3b50fc2d93b 1 Other Other +8dcd9f2c-27c6-4fb6-9c15-d734db40157d 1 Other Other +8dcdbd55-40d0-409c-8216-9159e5bdabb9 1 Other Other +8dcdf0a6-505a-494e-97ba-b1117a9ac8b1 1 \N Other +8dcdf8c7-21c1-4f65-a8f2-56f7e8a0e69a 1 Other Other +8dced238-b57d-4aca-ac0e-10d012031249 1 Other Other +8dcf489b-f678-4736-ac2f-3b286c44dad6 1 \N Other +8dcf5ae5-9674-49e8-a4a6-a5f243c771b4 1 Other Other +8dd0295a-aebd-4e33-aa54-137b992edf6d 1 Other Other +8dd02a9f-ad25-45a4-b7ac-4c6deedab72d 1 Other Other +8dd04784-cff4-4003-9cba-af1dd89a82c7 1 Other Other +8dd0500e-d285-4dc8-8cd1-381103216c5c 1 Other Other +8dd0544b-0f3c-42b1-8a5c-1f0af5a5f5b2 1 Other Other +8dd08fd5-1c8b-42ed-a7c2-a94b31702089 1 Other Other +8dd0b05b-6dfc-47bd-a968-ec34bc215e84 1 Other Other +8dd0b57f-ff3c-40b2-abf9-2d7160d050fc 1 Other Other +8dd0cb0c-708d-44ef-9f14-16394f6d6759 1 Other Other +8dd0ce14-891b-4001-a685-1a6f40feeaa3 1 Other Other +8dd0ddc5-4443-46af-9fe6-d9d4151ee02b 1 Other Other +8dd101d8-49d0-430a-82e8-447508c9d66c 1 Other Other +8dd11591-0073-4bd7-ae23-1a0fa2b2c290 1 Other Other +8dd1482a-dd90-42a2-bb12-7f3942676b4a 1 Other Other +8dd1742a-495c-47df-b3ed-f6a1d06565d9 1 Other Other +8dd17858-0bf2-4d1f-8dea-879c0c386df1 1 \N Other +8dd1c2ce-f30b-468e-aa5d-0b2e705fcc20 1 Other Other +8dd1c4f4-7e01-487e-831c-ab11fbc231e6 1 Other Other +8dd2bb22-37e4-4315-8440-216d0c236907 1 Other Other +8dd2d2ea-81f9-4c7f-878b-430bef73c020 1 Other Other +8dd2e1f0-369b-4427-b4c5-c26ce7bf9f0e 1 Other Other +8dd2ff18-5fd3-40c4-8e7a-bb83e95b1790 1 Other Other +8dd322b1-c5f0-45c4-8b9f-b5a8cc729ba9 1 Other Other +8dd36392-ab59-4370-b149-5db1bf81f703 1 Other Other +8dd3c988-76d7-474c-a6c7-056ad388788d 1 Other Other +8dd3ca3b-6508-40ae-9d3f-47cc1008c2d0 1 Other Other +8dd3dbab-5fcb-4850-a92f-654794b3f88d 1 Other Other +8dd413f4-1acb-4d0b-9a74-7a79e6beaff4 1 Other Other +8dd430e7-c3c9-4463-9c2b-eee94d0b3222 1 Other Other +8dd4603b-b741-45b3-93b3-e1679f2381c8 1 Other Other +8dd47c81-d706-45e7-90f8-0e49f7dede97 1 \N Other +8dd4e7a5-46b8-498f-b8e2-4a2295ff33b2 1 Other Other +8dd5572e-84f6-4ef0-b08b-abb492def5f8 1 Other Other +8dd58aeb-3042-48b2-a72e-320b47cad8b8 1 Other Other +8dd59d14-ea70-42ca-ab9b-88f8a68f7d83 1 Other Other +8dd5f696-4472-11e8-a758-fa163e8624cc 1 Other Other +8dd607c2-2ff9-412e-a599-90d819cc9631 1 Other Other +8dd6121e-34ca-431b-a436-e4cabb97a154 1 Other Other +8dd627e8-0114-4adf-8d14-7d3d9b718f46 1 Other Other +8dd62d90-5e90-400d-a2c4-b9da4f31a7dc 1 Other Other +8dd6431c-97b0-455a-acb7-ebdde3ada19d 1 Other Other +8dd67c25-4f9a-41d2-b785-2f85a5884e34 1 \N Other +8dd6b1b1-bc1b-4ddd-9cdf-2651d06ec387 1 Other Other +8dd6cc30-be7d-40a9-ac2b-0a6b3867c07f 1 Other Other +8dd73288-e24e-4a71-bdcd-6ced3623df8f 1 Other Other +8dd767a4-ae4a-4eed-97c1-1840b4de5fc5 1 Other Other +8dd7f8bb-cdf6-4bd6-848b-aac6b7d08f26 1 Other Other +8dd80b35-f8c8-40d3-9703-1497a19def26 1 Other Other +8dd88c20-0fd9-464c-8c81-ad4ae4712d29 1 Other Other +8dd938de-b566-4755-b873-4bb42108813d 1 Other Other +8dd984de-e07e-4245-bc7e-684ae37115c9 1 Other Other +8dd9d261-9771-4796-a853-b184410399ed 1 Other Other +8dd9db42-86fc-4dea-bea1-7b3a5652e32e 1 Other Other +8dda3141-2d7d-4009-a707-aa2c8b857dd7 1 Other Other +8dda3473-4bb4-47a1-9381-8fbf25806009 1 Other Other +8dda7f84-acab-4a20-b02f-52e7400f038f 1 Other Other +8dda9c5e-4b83-4198-9537-23ed1a678127 1 Other Other +8ddaa688-05cc-4e25-ab12-3195ff3040cd 1 Other Other +8ddafd08-e221-4455-ba83-fcb30b939210 1 Other Other +8ddb2d1d-18d4-4d42-a0b4-8ed2ab7706f7 1 Other Other +8ddb4a33-6994-4568-8c65-9a47f161809f 1 Other Other +8ddb5448-39fc-4031-b11b-6f87d2a7fe00 1 Other Other +8ddb59c3-6c6c-42fb-9c7c-7ab32d82abf0 1 Other Other +8ddbb45f-b32a-4d50-8770-23f63ca90ce8 1 Other Other +8ddbb60e-a27e-4c96-b3ef-2210640a7d22 1 Other Other +8ddc165b-ccd3-42e2-99e8-8025ca696ce6 1 Other Other +8ddc6c43-f4bd-4543-af5e-5056438bb75e 1 Other Other +8ddc7b17-557e-4fb5-941e-45c3340f2882 1 Other Other +8ddce2a8-273c-433f-ba52-c35c79131ff0 1 Other Other +8ddd071d-a33c-4ad3-b7f0-87e5b79a7558 1 Other Other +8ddd0c81-1fb6-485f-9f81-ca75290a5baa 1 Other Other +8ddd10db-8969-4161-8fff-96c9be358c6e 1 Other Other +8ddd9f81-3dd6-435f-af6d-a8bd744cfa8e 1 Other Other +8ddda68a-1aff-4ca2-b8a9-ed5789ff98c4 1 Other Other +8dddabe4-7929-40ef-be45-a958be2819e9 1 Other Other +8dddc733-9f2c-418c-b13e-c2796d53ffc9 1 Other Other +8dddd455-626f-4ef6-a4ba-e03b8df18d92 1 Other Other +8ddddf53-7d7f-4f57-a9bb-d8ae054ad60e 1 Other Other +8dddede5-78a5-49ff-a17a-5ddee3b7369b 1 Other Other +8dde1697-c129-40ed-84d3-004dcc5e88ee 1 Other Other +8dde97fb-e868-49ee-a3e1-f5fb9254e1b6 1 Other Other +8ddef32f-7349-49bd-9136-bde18b82fe5b 1 Other Other +8ddf0064-489d-4473-bf9e-4d12754149bd 1 Other Other +8ddf3a99-b2df-48ba-a774-5ef4277245ac 1 Other Other +8ddf4c81-3748-4810-a950-e7b9d7362191 1 Other Other +8ddf77c7-2d90-494b-b630-fd88bbc35c6d 1 Other Other +8ddf8415-cc94-453e-86c8-d78c96c55472 1 Other Other +8ddf9149-2504-4800-bd55-a811b3dd0754 1 Other Other +8ddf919d-89f6-46f6-8cbe-9e7873478293 1 Other Other +8ddfc6ae-8b30-41ef-98a0-0d394efc9726 1 Other Other +8ddfde34-3802-4be7-8850-f7511c5d4e26 1 Other Other +8de00689-91f4-48e2-8622-8f5723a4bd66 1 Other Other +8de05e84-7139-4179-bd56-8f083c9a1639 1 Other Other +8de0700a-ee6a-4fb2-a19a-c38cc743e970 1 Other Other +8de08b56-91dc-4db2-8f28-d1b8fa7d13c1 1 Other Other +8de08f5f-8e9d-42e8-8d71-f3c3cf1f6eee 1 Other Other +8de13633-8ec9-4508-9da6-273cc7281776 1 \N Other +8de13f37-3d72-4a51-b742-112dbc6262ac 1 Other Other +8de19f3e-72e3-446f-925b-bf01b337a6a7 1 Other Other +8de1a7f7-6610-4dcb-a2bc-b2d108956322 1 Other Other +8de1cafc-8a8f-4de1-8026-4203445d4512 1 Other Other +8de1daf9-d5a0-4b7b-b78a-45b14bc02b89 1 Other Other +8de1e3d2-d50a-4180-9ff1-dc61ddc933c5 1 Other Other +8de1e6a2-3a05-42eb-9e10-44f4b3398506 1 Other Other +8de2095e-647b-4f2d-ab43-a6a19bf159cb 1 Other Other +8de20b2c-119b-4aec-ba68-aff59f2da8ec 1 Other Other +8de2a848-0ee5-4e3d-b6f9-2dcc25a29778 1 Other Other +8de2c15e-7d40-41eb-89de-e801da732b3c 1 Other Other +8de2dbb2-cd7d-4171-a08f-da3107cefb1c 1 Other Other +8de2e29f-7880-48ab-a506-29843f1ca82d 1 Other Other +8de2ec45-262e-46b0-b939-416c150609bd 1 Other Other +8de35b3b-0bd0-4f69-a360-1a23889336d9 1 James Other +8de370f8-e3c4-4d5f-b5ba-31d9caa02980 1 Other Other +8de37403-5663-4c6b-b6fa-cd5b4e31956f 1 Other Other +8de375e9-3631-486a-9337-14db7b4b8a11 1 Other Other +8de37f87-186d-4f7d-b3c4-4259b6d2c88c 1 Other Other +8de3bca1-51cb-4313-8f1a-0856db6270f2 1 Other Other +8de4157f-9a13-452d-bf9e-69ca22805566 1 Other Other +8de42ffe-9571-4831-990d-16a283e4b8fa 1 Other Other +8de45b90-10de-47f8-981b-250c7063f71f 1 Other Other +8de46936-b87d-4c79-a5aa-23a231118ff6 1 Other Other +8de48c29-ad77-4b8b-b6a6-c1b60ee72e6c 1 Other Other +8de4ccdb-6ab7-46db-9d55-cf78f3c5d814 1 Other Other +8de4e3af-398d-4ea8-8b7f-03c812c4ca52 1 Other Other +8de51921-d651-4afe-be0c-b7697afa4b98 1 Other Other +8de54e20-07ca-4918-84d8-067e99fb7b2a 1 Other Other +8de55f2d-11d7-48a5-83c5-6b3042d70c3b 1 Other Other +8de59ff0-4ea8-42d3-a24a-b047ff299654 1 Other Other +8de5f8be-8bbf-45f2-b601-2528e057c90f 1 Other Other +8de61696-1f29-438c-a6c4-532e95e5b046 1 Other Other +8de62f87-1961-4435-affc-6dd527314cbe 1 \N Other +8de71996-9f84-4882-9f7d-c40ae3ac473e 1 Other Other +8de73c98-1eda-4457-a3c4-e9f8c9d665d9 1 Other Other +8de740a4-1e84-4464-9b87-43c2599b3fbb 1 Other Other +8de770ca-2b4b-46f9-b010-02f1c8421bc0 1 Other Other +8de7db74-b65c-480c-bbb9-9f5600ba7429 1 Other Other +8de824f6-27c6-4ac3-9981-aa07488f0191 1 Other Other +8de837c3-5031-4528-ab04-0a8bc708e494 1 Other Other +8de842b0-2c30-412e-aa57-23c46f2d5efa 1 Other Other +8de9272b-d552-4008-89d4-bbf364f13e91 1 Other Other +8de95ca3-d131-411d-a296-deff699e532b 1 \N Other +8de95ca5-92e2-4c42-9d08-98ddffd85c55 1 Other Other +8de988ad-304c-4a0f-a2fe-8beda8a22f23 1 Other Other +8de99dea-bcc2-4bfa-990b-e5484a741576 1 Other Other +8de9b13c-c2cd-4ac4-b542-19e341a1c621 1 Other Other +8de9bbec-36c2-4acf-820c-963b5cbdf0d1 1 Other Other +8de9e28e-ed32-488d-92d4-1182e2546225 1 Other Other +8dea1bb8-19f2-4357-a5e8-c7ed02748904 1 Other Other +8dea6975-0d71-447b-8e58-2abb688a0eb3 1 Other Other +8deaf145-c872-46b3-b6ea-decdd6d31710 1 Other Other +8deb2530-b862-41ed-8432-b41d4986bdc1 1 Other Other +8deb53e8-b4a6-4710-b31f-fc8ae35a6fd6 1 Other Other +8debaa2a-5f02-40e4-9e8d-1d51bdd9eeaa 1 Other Other +8debe5fd-7794-48e3-ae75-752435b03a9b 1 Other Other +8dec0fc2-9175-4e22-8d1d-3b80c2ad4f79 1 Other Other +8dec235f-4370-45af-94b9-5d76647a5569 1 Other Other +8dec264c-28a6-473f-89da-fce8659ccc7b 1 Other Other +8dec26e2-6b38-4eec-b40d-1b9c79ec4a6b 1 Other Other +8decb755-2f56-4942-9558-af6383d22a10 1 Other Other +8decc667-f68a-477d-97a0-dbe564576dfb 1 Other Other +8ded28eb-6a35-4961-a217-13630ed509a0 1 Other Other +8ded29bd-9a4a-44be-a72b-b6f146b727a0 1 Other Other +8ded5c1a-4286-45cd-a3f0-0d2fccb96181 1 Other Other +8ded5d6b-c997-414e-824d-defb20f96166 1 Other Other +8dedf958-341c-4756-8ab0-d177d34489bb 1 Other Other +8dee50fb-c56d-4483-a0ba-eed6a8ed12f5 1 Other Other +8dee660f-d1ee-4b9c-ac20-2cdd5bfb043a 1 Other Other +8dee7738-7ab5-47f8-b692-8a071fe66b78 1 Other Other +8dee96d1-e952-40df-af29-b5dd4aa56bc9 1 Other Other +8deea351-69d0-46d8-a034-395d55e3d4c5 1 James Other +8deea6e3-7c36-4c30-9962-ab704139c237 1 Other Other +8deeb324-548d-4c66-86f5-a1410d7c305c 1 Other Other +8deefdf9-b968-43d7-ad33-b0c0c6b07420 1 Other Other +8def1173-a649-4156-9c74-cdc317684bc0 1 Other Other +8def2f8d-02fc-4a71-a38a-1711ec64f129 1 Other Other +8def8f6e-bed1-4817-b190-9f8d0a6b46d5 1 Other Other +8def9f31-3d5f-48be-b557-53a4b3431ffe 1 Other Other +8def9ffc-b905-4460-8e15-2e1da542950d 1 \N Other +8defb5f2-4ed9-4a0a-90d5-6efc36b2373b 1 Other Other +8defc631-ad49-4777-be37-653fde13f659 1 Other Other +8df048bb-344c-4062-9501-9e2367fb8b44 1 Other Other +8df0679d-ec0e-456b-8266-39fc0d1db92b 1 Other Other +8df092f9-9416-4a6c-add0-f01e084a7b23 1 Other Other +8df0cabd-08d5-4c06-b625-ec43b731ea39 1 Other Other +8df0f0ea-e264-4980-9b3b-d6de0ac1c3d4 1 Other Other +8df129b0-45b6-4e32-9ac5-f3da5e75891e 1 Other Other +8df12d92-1b15-4c8d-89b1-c4bd309c11ac 1 Other Other +8df13067-55dd-47a2-8f7c-e7978fd0aa8c 1 Other Other +8df17569-fd32-4c09-afff-8cddaa8910e5 1 Other Other +8df1aafd-6631-4e87-9209-e2ddbfd312f1 1 Other Other +8df1b78a-da43-4b8b-9b30-068d893dc9ac 1 Other Other +8df1c37c-7af4-43f5-b1d8-9b1ce0f53741 1 Other Other +8df2356c-f69e-4931-b28b-2be221d47eff 1 Other Other +8df29296-609f-4f8a-8ee9-9a62fd99a570 1 \N Other +8df29c02-ffd0-4ef2-91b1-0ec2211b8b66 1 Other Other +8df2e69c-4654-4a65-af9b-171b6d90e45b 1 Other Other +8df2ffcb-4edd-4417-b056-1c50ed0f10bb 1 \N Other +8df31d9b-a9e3-4f4b-9ad5-6a24760c51dd 1 Other Other +8df324ea-b088-45a7-917e-4faaf57f11ba 1 Other Other +8df372ca-0e36-4bf1-8872-8e985a6a2f43 1 Other Other +8df3759c-97d4-4d7d-a8fc-1d66d29d9488 1 Other Other +8df39b28-3505-4129-8abf-9b197cf6e655 1 Other Other +8df3d6f3-20a5-4d6f-ae1c-5af7a821fcab 1 Other Other +8df430a6-fe59-4d06-92b0-3739aba032bd 1 Other Other +8df44028-d98e-41ed-81f5-d0ce8054cd10 1 Other Other +8df49694-1afd-414f-92f6-bbd635af6364 1 Other Other +8df4de5d-a9e4-4d41-910a-ca2c8d5f34cf 1 Other Other +8df4e082-423e-4091-ad60-18048b25be20 1 \N Other +8df4f062-18d5-4e5d-a128-66ac4e62b618 1 Other Other +8df57226-f9cf-4cb0-9db8-253537949ef6 1 Other Other +8df581b9-0dad-4e02-be03-248b00327423 1 Other Other +8df63d74-905f-4c48-8708-ef5ca343d737 1 Other Other +8df65c8f-2382-430b-945d-daabceb9c474 1 Other Other +8df66f32-b5da-4513-bc0d-e133e9c5abbd 1 Other Other +8df67686-c78e-431f-908e-867a80ba0c47 1 Other Other +8df68e86-1afd-45c3-a9e3-7487fc786e0f 1 Other Other +8df6aded-6950-4293-8e88-0e2ba0ed943c 1 Other Other +8df7dbc1-973a-438c-8d99-c3a5a7398ecf 1 Other Other +8df813a4-b20e-47e9-9098-1809f7ba69e2 1 Other Other +8df84a4f-c186-4c71-8073-152efba1d7e3 1 Other Other +8df86341-eddd-4d07-acce-cf240cec2def 1 Other Other +8df8bbc0-4eec-4f77-84bc-58ae8ee302d7 1 Other Other +8df8cb1c-1f50-4da6-8a3d-66bb0b227194 1 Other Other +8df8d79a-6929-4598-ae91-60c5ce4ffd2d 1 Other Other +8df95def-96c8-468a-9a3b-5b9744f6e154 1 Other Other +8df9a26b-8dbc-455c-88e2-118aef249640 1 Other Other +8df9c958-4883-4da1-bac1-c6f216d0b761 1 Other Other +8dfa03a9-9ad6-4876-90ec-b67035cfbf6c 1 Other Other +8dfa277b-d3a1-4393-a1b5-6cffae005919 1 Other Other +8dfa2bb3-24eb-442b-bbef-ac3be78ff506 1 Other Other +8dfa650b-a12d-493d-8111-d9145650a7e2 1 Other Other +8dfa74c6-d14a-4303-980b-5bbe458ea467 1 Other Other +8dfad764-e33d-4fd8-9d1e-be2ee2ea4321 1 Other Other +8dfaf4d2-12ea-4c47-b485-a99c2774c639 1 Other Other +8dfb10b2-d7dc-4e8a-9e21-f52ebfea585e 1 Other Other +8dfb6fe7-0df3-4b81-b858-bc6c19b4a263 1 Other Other +8dfb7900-bbca-48f2-950f-7b4829860602 1 Other Other +8dfb9a04-afbf-4aa6-bdc9-7877f1a6b624 1 Other Other +8dfbdfcb-fc8e-4c98-8f0e-ffaf0c68f8e2 1 \N Other +8dfbe784-1926-462f-bf62-07bf3ae8493b 1 Other Other +8dfc26de-0b4c-4ed1-a89e-a3c87b27609b 1 Other Other +8dfc3b03-cc4b-4f8b-8867-83e9ec47e2e4 1 Other Other +8dfc53c2-0d1c-4a87-a6a8-841600289a7d 1 James Other +8dfc6695-4233-4e99-ab50-0e6164cc9a36 1 Other Other +8dfc7788-8b1a-448f-aa56-656ad7596a1f 1 Other Other +8dfc86f2-4626-47be-97e5-b309c3c82ed7 1 Other Other +8dfc8c1d-3d53-40ad-8b5f-2549e902a3fe 1 Other Other +8dfce3cf-4dfe-44c9-8b0a-57685ff33a18 1 Other Other +8dfd23d9-c76e-4d06-b552-5be75bd62737 1 \N Other +8dfd39a0-4888-4808-aa03-6c1463ef6a69 1 Other Other +8dfda72d-38a4-4573-bb94-1e82541f67c8 1 Other Other +8dfdb3d6-9c74-4787-b02f-8f3638440dd9 1 Other Other +8dfdd7d3-61fd-44e3-9b8f-6844e46d00f1 1 Other Other +8dfddbc2-0637-4019-a744-623e55f6ce15 1 Other Other +8dfe1384-0e3a-4d24-b5b5-34c21f81ce8d 1 Other Other +8dfe1537-ba3a-4672-aefc-14b1abd7e046 1 Other Other +8dfe2681-1116-46a0-9003-fc9762cf11fa 1 Other Other +8dfe94bd-7f3d-414c-8a63-9cddde7166c9 1 Other Other +8dfe9909-e1c7-4d8b-baa8-1f8fecb10b73 1 Other Other +8dfec2ae-b857-417c-8ed2-0533bb07b299 1 Other Other +8dfef129-9e86-4614-af0f-3917ac5640b6 1 Other Other +8dff0275-aacc-47d1-b666-c02ddbdf414c 1 Other Other +8dff10bf-8757-4ad9-b94f-2aeac4c9eea7 1 Other Other +8dff1e8f-5280-4d1e-9a08-3f78f75b842b 1 Other Other +8dff8149-7c33-48f8-bb07-e1a2dd98245c 1 Other Other +8dffa0c8-e7bd-4324-89c2-b77f20a0012f 1 Other Other +8dffa304-d810-4c3a-946f-0000e7655c16 1 Other Other +8dffc639-035d-4451-a190-13b04d337b03 1 Other Other +8dffeb1c-0319-4546-b916-699cb34ea9d6 1 Other Other +8e0079d3-11ed-43cc-9761-1b6ed61c912c 1 Other Other +8e009dc5-cc91-43e7-96bf-6ac3f9fb9066 1 Other Other +8e00ecfb-188f-4f9d-8af8-6b412d11a40a 1 Other Other +8e01225b-b714-474b-bd3c-bc8866d24587 1 Other Other +8e014041-c98c-460b-abea-8ecc7c15a35a 1 Other Other +8e01c440-7f0c-485a-984c-7f809e865ae8 1 Other Other +8e02674b-d65a-4ba9-970a-33e488c54b40 1 Other Other +8e02c38e-c628-4373-85eb-e2d893c215cf 1 Other Other +8e031969-7bae-41e8-a7b8-3b2861aa5a4b 1 Other Other +8e036978-74fa-44fe-89cb-01316d035b1c 1 Other Other +8e039562-aa6c-4334-93a6-b7daee94a439 1 Other Other +8e039ccb-7f8c-4ec0-9c93-b207d8820074 1 Other Other +8e040d09-3a3c-4c3b-951e-de7dcb81907f 1 \N Other +8e0485a7-15b1-4e99-840d-547263c8608b 1 Other Other +8e04880c-b369-47de-a30b-a05219311f9b 1 Other Other +8e04eef9-dae2-4b51-bd00-ceab352f91de 1 Other Other +8e052922-a475-4816-8c18-1d5e75a55c43 1 Other Other +8e05a6c9-93ff-4b81-8aff-d788129d64ee 1 Other Other +8e064cd1-bf59-46ac-b271-ff73e89a26d1 1 Other Other +8e064e26-6dcd-4998-a5e2-b122830ddf56 1 Other Other +8e065df7-8559-44a2-920b-601c31660e24 1 Other Other +8e070948-0375-4678-ad98-9753fa57e3ee 1 Other Other +8e07280b-3c1b-4ebc-b4e8-70dc7305ff56 1 \N Other +8e07319d-5873-4d64-8a86-a6751dc873e3 1 Other Other +8e073ac2-95ef-44e9-85f9-c8d3d1ac6c6a 1 Other Other +8e0746f0-ba39-40fb-909b-30d10e0b5a4e 1 Other Other +8e07bf11-091f-4d55-a78c-298e5d9adeaf 1 Other Other +8e07d31e-6979-4354-819d-343d03ac7fa4 1 Other Other +8e081a8a-11bf-43ed-b789-33d73814abf0 1 James Other +8e084d8f-6509-4839-a742-df6ddb617a9a 1 Other Other +8e086933-8c59-4707-a632-9c9329341b5b 1 Other Other +8e087ee0-465f-4407-b8d9-fa0002e89331 1 Other Other +8e088fe0-6ea6-46c8-b35f-ba60585f6e2a 1 Other Other +8e089ac0-f5dc-47c7-8846-0ba9c945310b 1 Other Other +8e08a3b4-ca41-4a7c-af08-74ef7b26a23b 1 Other Other +8e09373d-0e10-43ad-849c-a5d769185af3 1 Other Other +8e093a56-8b60-44bc-85a8-3f43b3decc18 1 Other Other +8e0966f5-acf7-4dff-934b-11f1c543b1ca 1 \N Other +8e099dd6-a473-4b9f-aa8a-fd0c827533c7 1 Other Other +8e09a599-71f9-40c9-ab84-3d6822d8fc5b 1 Other Other +8e09d45f-d16b-4836-b260-c2ec2b3c497c 1 Other Other +8e0a0a0f-c455-4306-a98c-23f5d05be67e 1 Other Other +8e0a0d9d-258b-4b39-a497-196475007cce 1 Other Other +8e0a0f41-e323-4990-a953-096407a60192 1 Other Other +8e0a33f6-9050-4995-901f-ca6751708000 1 \N Other +8e0a482b-c44d-4cc6-b4b9-e06232332ffa 1 Other Other +8e0a674e-4238-4958-981b-8e4a15d8bfeb 1 Other Other +8e0a9be8-c323-4976-8c21-ae2a6b91ab47 1 Other Other +8e0ae6f6-1c08-4383-81cc-ec05f4bfcc4e 1 Other Other +8e0b2d8f-f9e2-47d5-9ee1-5f641c5067f6 1 Other Other +8e0b822b-9b74-43e8-8adb-544419a8161f 1 Other Other +8e0bb03f-0b2a-4105-b45c-b44f9aa8cca4 1 Other Other +8e0be6cf-f274-41b9-b00c-bf979960745c 1 Other Other +8e0c0564-211e-43d8-ac8b-4465ec5bc931 1 Other Other +8e0c6caa-1cfa-4bf1-ba0c-18cccadd8742 1 Other Other +8e0cb14a-48db-42ec-af2c-0a48f2f4c001 1 Other Other +8e0cf37a-7821-46cd-9670-ded1bb09ac2b 1 Other Other +8e0d29ff-f5c7-41bd-8c90-94480a00fbc5 1 Other Other +8e0db16e-3bba-4a77-8229-b2fe81eb1b62 1 Other Other +8e0dbb17-f237-499a-93be-97280d975dde 1 James Other +8e0e9bf7-9093-437a-b52a-330c86b396c7 1 \N Other +8e0ea863-3657-4009-bd54-63c730e1b378 1 Other Other +8e0ed0ca-fc46-40c9-b112-9de1601170c6 1 Other Other +8e0edb9a-6af4-4867-9ba3-aff78ce1e642 1 Other Other +8e0eeec4-8f0f-4ccf-bc5c-b6cf90736741 1 Other Other +8e0f05d9-74a5-454c-b8f1-ea372a0cdc89 1 Other Other +8e0f5392-8292-44ad-bebe-6cbf5809b4b2 1 Other Other +8e0f5ff9-495d-4328-91a4-e2d4ae748a9d 1 Other Other +8e0f872d-463f-4b20-aaf2-b28ba524631a 1 Other Other +8e0f97b3-8dba-4983-8567-d4632f8a652e 1 Other Other +8e0faa26-406f-491a-b3eb-7ff99a30598b 1 Other Other +8e100066-de04-45fc-abf4-b3039e5ed1ec 1 Other Other +8e101e38-68c5-459d-893b-8ebbbcf4249a 1 Other Other +8e102556-bb68-4ea2-9d1e-690e5ce295c3 1 Other Other +8e10475f-8c1e-4b2c-b199-e4ed5b4d3d52 1 Other Other +8e10a280-12c3-49f0-ac66-6c2fb08cad33 1 Other Other +8e10b1bf-d0af-43ea-8c2e-8e850f357ca0 1 Other Other +8e1125f2-e05f-443c-bfae-611a0ca60d2a 1 Other Other +8e11261c-b35f-4032-8f42-5394afc4a34a 1 Other Other +8e112be4-c8ef-4739-ad8b-d2e5935b5828 1 Other Other +8e118a82-360e-4504-a119-f58976ede170 1 Other Other +8e11cdea-05d0-46a3-9637-3c95713929ca 1 Other Other +8e11ce1f-f693-4e5f-8f0a-d4bad57beb9c 1 Other Other +8e11ceef-4f44-4908-b135-d52c04e2277e 1 Other Other +8e11d1f4-3a43-4f77-adec-2f1cda889621 1 Other Other +8e11f1ba-60c8-400e-b6c8-cbe3ec4f970b 1 Other Other +8e121505-f9e3-4717-857f-c450379c6aed 1 Other Other +8e121b23-831b-43ed-95fd-3d2a6360dd1c 1 Other Other +8e12a29c-4c19-4155-81be-1d43a9a41284 1 Other Other +8e12c57c-fe39-4d6e-810d-55b20d1f1305 1 Other Other +8e12e03c-e737-4cc8-a7fa-979e0c5d1db2 1 Other Other +8e13207e-89d9-4b38-8201-bebc9f33b0cd 1 Other Other +8e136241-6fbe-4237-9f65-a05e8c6f8154 1 Other Other +8e136668-2e51-4725-a6ec-5f5d1d1b71b6 1 Other Other +8e13ed67-ba0f-48b1-9d0b-35bd97706f2f 1 Other Other +8e145f84-25c3-49cd-841a-d8bd7b80acd7 1 Other Other +8e146b30-6dfe-4c32-abef-85beedc5ad27 1 Other Other +8e14f1d2-73dc-4579-84aa-3269ed1be3f4 1 Other Other +8e151b42-1a3e-47c6-a66b-bae5d11dac83 1 Other Other +8e1521ce-f6d9-44f3-aa0a-986140d92878 1 Other Other +8e152aa4-66e1-42bb-81e4-abc91976e05e 1 Other Other +8e153033-4056-4b26-bfa3-29d0c25941de 1 Other Other +8e15405b-934d-419d-9ee4-584beccc3b96 1 Other Other +8e15913e-4498-4f0a-b519-4707860c8dab 1 Other Other +8e15b85f-bea6-42ec-a2c2-b71f4a3fd38a 1 Other Other +8e15cba3-fd7c-4dac-b4c9-3a6d68b34f66 1 Other Other +8e15cf48-ed5d-4db9-8056-b384c7944714 1 Other Other +8e15f21b-591c-47ac-a207-3ed59f26a2db 1 Other Other +8e160de0-59d6-4d60-ae94-e5e3709bf305 1 Other Other +8e160f95-e197-4c72-9cd6-fc2e4e48bf15 1 Other Other +8e161600-2cc5-43f2-b449-deac4274656a 1 Other Other +8e168190-1de1-43e6-bb8e-54213bbc3157 1 Other Other +8e168190-34d1-4d4f-b6d2-48572f1368fb 1 Other Other +8e16caee-e737-4117-9572-a865f7df47b8 1 Other Other +8e16d4a9-a71c-4d0d-b354-59d419722ee2 1 Other Other +8e16fc86-7303-420b-b360-d775749fef12 1 Other Other +8e170207-54f3-4ecd-a34c-25fefefac376 1 Other Other +8e170a56-b998-4b99-bdc4-4a7e1b128b8c 1 Other Other +8e171211-1ebc-4e0c-b46e-df181f131ed0 1 Other Other +8e171832-bed0-48ac-b456-2d2b73819499 1 Other Other +8e1785d4-d1e1-498c-ba0b-534ec319837e 1 Other Other +8e17abeb-be97-493f-9534-d734ded5ddfa 1 Other Other +8e17df47-db47-4f85-9797-9212ac8225c7 1 Other Other +8e17e580-91c8-4651-8b92-1d05147eccda 1 Other Other +8e18181a-4d39-42ff-9c74-42722016b2ed 1 Other Other +8e18a2b5-2dd3-44d7-a86f-9b3d71b97fad 1 Other Other +8e18d80f-6b1a-4413-85db-c9bf815d53c9 1 Other Other +8e18f8f5-ac2a-495e-8e9f-eba49d1dcae4 1 Other Other +8e195965-09fe-41fb-af05-d32486188412 1 Other Other +8e198c66-3ec2-456d-9710-8d8cc7f503ff 1 Other Other +8e19db3d-0a95-41c7-aa42-da42e2c18e41 1 Other Other +8e1a683c-eb19-4d77-a6e9-54664f7f26f1 1 Other Other +8e1a85d7-7b7e-446e-afc3-0bc8432c123e 1 Other Other +8e1b28b9-599b-4f7b-a933-61ae30e0eebe 1 Other Other +8e1b366d-4b1f-466d-92c4-2de8638c4aa0 1 Other Other +8e1b5256-3ac5-4f7e-bea2-4edab3975e39 1 Other Other +8e1bb0da-6d76-4ae2-8a2a-35efb445522f 1 Other Other +8e1bbcde-6860-4da1-a5f7-91aa0bd96036 1 Other Other +8e1bbd66-5775-41e9-9956-3d6f77c5c7f4 1 Other Other +8e1bc387-41c3-4e24-a8d2-6119afd57c2e 1 Other Other +8e1cc2d0-63b6-4935-84b7-d69904d36b2d 1 Other Other +8e1cc8b9-755f-4517-983b-41dae17b1b27 1 Other Other +8e1cf623-4ea6-4b3d-94db-44b91aa19ca6 1 Other Other +8e1d0dcb-6674-4a0a-9fc8-ba95639945a4 1 Other Other +8e1d405b-f6cf-4fef-96b6-cd122cd57e57 1 Other Other +8e1d4c54-6350-46c6-b9d2-1975b49f956d 1 Other Other +8e1d4ead-6485-4d24-a7d9-b63e479d1843 1 Other Other +8e1d74a8-b11c-45d4-bdd1-3c29fd2e8352 1 Other Other +8e1d8fb0-d061-42f0-9ec1-5674a5759f18 1 Other Other +8e1da1a1-8aa8-41d9-9d8e-0c94174556d9 1 Other Other +8e1dbfcb-3e4c-436e-9505-35c52c6cb9a9 1 Other Other +8e1dffbf-3b4d-4dc0-917a-6d702d414650 1 Other Other +8e1e196a-ed4b-4a51-aa90-62471318b593 1 Other Other +8e1e245a-7d55-45a5-9e3a-0b6eb870aa78 1 Other Other +8e1e7116-1673-4ac4-b03c-e98bd7d3bbee 1 Other Other +8e1e7ac7-bd89-4914-afc0-7449f5238402 1 Other Other +8e1ee126-28b9-4a44-9148-92857e7baa97 1 Other Other +8e1ee7a8-241d-4296-a63c-5ad1efd6c922 1 Other Other +8e1f0351-0f69-4e8a-b1cb-1ac8d24efb58 1 Other Other +8e1f793a-1629-4c14-81ec-2be03e23a931 1 Other Other +8e1f8249-30cb-4313-968a-51069da16c4c 1 Other Other +8e1fa0da-8ef2-464c-9066-3f53824f4b6f 1 Other Other +8e2017ca-7ead-4c72-aa55-59c041d1bb94 1 Other Other +8e208c0a-410e-465b-8b34-238b1c548c4a 1 Other Other +8e209532-5e8c-41cf-9e60-b301af09ba4e 1 Other Other +8e20f177-d561-4d42-b032-2a686c037c2c 1 Other Other +8e2100cf-6975-4372-9827-da70bd40c666 1 Other Other +8e2114ad-ef92-429d-a010-ba1f958cfcb8 1 Other Other +8e2123d2-619e-4a70-8318-5e4c7ecf2967 1 Other Other +8e214fb7-3db5-4bf2-b3a0-8a32f3337541 1 Other Other +8e219b56-8b27-4843-b87a-097bd213d347 1 Other Other +8e219e58-d6bf-41a5-827a-e19d8cd48481 1 Other Other +8e21c0ac-fbff-4dce-af01-5524b581c838 1 Other Other +8e21e7a0-9787-4b39-92e4-72dac7585d15 1 Other Other +8e22d814-a7d4-4321-9ec2-5643bd959d6c 1 Other Other +8e22e4ef-fcfa-41e0-88f7-202138ef8c82 1 Other Other +8e2361af-764e-4c24-917c-a5758de611a3 1 Other Other +8e23818f-78ba-40a3-acfc-87022436099e 1 Other Other +8e238463-f64f-4625-9b19-c44f8f71c541 1 Other Other +8e239e62-206c-47c9-846e-dafbbdaccc8f 1 Other Other +8e242931-c841-4b47-8d4c-fa236fe5ca10 1 James Other +8e2453e6-1368-4258-8cfc-12f2da4e0257 1 Other Other +8e2465d7-7549-49b6-b432-af8a25e46c03 1 Other Other +8e2466c6-f36a-4707-8e00-1bd9ce647277 1 Other Other +8e2507a9-fdf5-4768-9df0-3eb4dc56a6b7 1 Other Other +8e254eab-24f4-44fe-a618-d5e44f32a54e 1 \N Other +8e255703-26b1-42f3-be63-4c16922c98ad 1 Other Other +8e2580de-a85c-4e69-9fc2-f878d2f26389 1 Other Other +8e258e75-4ef3-4a62-abca-4ec7fc2d2af9 1 Other Other +8e25a671-6772-4b87-8372-7b567b88505f 1 Other Other +8e25ac8e-6755-47ac-b0f2-a3e19a557936 1 Other Other +8e25d39f-9e8a-4fee-8250-5496130d0d3d 1 Other Other +8e25ef0e-e966-4cb6-baa0-671e08b55008 1 Other Other +8e261a04-1faa-4dab-a84c-62dcb579728b 1 Other Other +8e265390-0523-45ac-9394-9ae83c6e0e5a 1 Other Other +8e2653ad-b043-487d-9c56-03d9630dd002 1 Other Other +8e265b36-2b7c-4e67-a0e0-4db750ba8b08 1 Other Other +8e265b50-ed61-4c40-8a59-e850902592b8 1 Other Other +8e267d97-6d1b-481b-b2d3-bda2477f4226 1 Other Other +8e26d892-e698-4c43-a5a2-bfb72909e46b 1 Other Other +8e26e22a-9551-4aef-981d-787393f8c944 1 Other Other +8e2758ff-7278-4370-b0c3-606a8b6136c9 1 Other Other +8e2765fd-29a6-4ea3-8bf2-4f401af66026 1 Other Other +8e28afd5-18fe-4644-b9fc-481d1951988f 1 Other Other +8e28d213-8d88-4f09-91f7-2074bc78138c 1 Other Other +8e28e8f2-08f8-4cd6-89a8-82308493657e 1 Other Other +8e29544d-8272-4786-baa7-5efaf3974085 1 Other Other +8e2964e3-3913-416a-b00c-f01622e605e0 1 Other Other +8e298c84-6c97-4db9-ac85-e57ab635f36c 1 Other Other +8e2a1771-0d3a-4fc5-bb7c-35dad65d0ef8 1 Other Other +8e2a43c3-9732-44e2-ac4a-f04d35ad9433 1 Other Other +8e2a4b1f-e3c4-4b7c-8498-f7b392d8cfba 1 Other Other +8e2aac4b-dd66-4ce2-900c-46dadc5a5c21 1 Other Other +8e2ad420-9404-433f-930f-a0483b9a1962 1 Other Other +8e2adbe2-0988-4dd7-aecf-399cdc41400f 1 Other Other +8e2ae84c-1027-4d90-867e-93ecdde443a5 1 Other Other +8e2b0fa8-9ea4-42a9-b994-90963f8a7191 1 Other Other +8e2b263f-8b06-4898-83b6-b2b7fb092aba 1 Other Other +8e2b2bfe-4f62-42af-b93f-50af906ad9e0 1 Other Other +8e2b2e7a-212a-4b2b-a2a6-1c57950d2dff 1 Other Other +8e2b3ed3-74ab-4753-8b68-e56b999dc797 1 Other Other +8e2b5cc2-62b0-45d3-9a78-b1f9417df780 1 Other Other +8e2b6579-5f22-44b8-8b2e-72d16341b425 1 Other Other +8e2b94f6-bec7-4fc7-80bd-9ae2b7330a89 1 Other Other +8e2ba071-0c55-4d6b-b5fc-7b595f7f1469 1 Other Other +8e2c43a9-69aa-4368-9982-7b1162d9fbc9 1 Other Other +8e2c4662-6824-409c-add6-7aa98663abe0 1 Other Other +8e2c972d-c301-4e3c-abde-419fc19b9d36 1 Other Other +8e2c9b9d-af7a-40b3-a30f-e0c79fbdbb18 1 Other Other +8e2ccc86-32b3-4643-9cfe-989ef6df137f 1 Other Other +8e2ced4d-53c5-45e0-975a-e0dc48fdab4a 1 Other Other +8e2d2c67-3cc8-4671-a28c-bc8f3df48c36 1 Other Other +8e2d3e7d-08a4-4644-8f0f-6bad140044cd 1 Other Other +8e2d8cfb-2b20-4c7e-a0e6-d4b35241ac97 1 Other Other +8e2dabed-d127-4dc8-87bc-125a2d43fd56 1 Other Other +8e2dd016-4397-42e6-a392-597df67b29a2 1 Other Other +8e2de445-dab6-4d72-8f71-aafe0dec91b7 1 Other Other +8e2df64f-7ef6-4d68-bd2d-d65f21a64670 1 Other Other +8e2e0015-b534-4ce4-bd9f-77495cc4c6c6 1 Other Other +8e2e111e-d762-41f7-8930-02e55425f1e5 1 Other Other +8e2e1976-26a9-470c-b4e0-ab6580998590 1 Other Other +8e2e36d5-d232-41fc-97e3-170e1782eefd 1 Other Other +8e2e5979-ea12-4552-8bc7-42ceb7fea5b2 1 Other Other +8e2ece64-8512-4e13-a98e-6439468c6151 1 Other Other +8e2edd88-7d62-480c-a280-70025513c49e 1 Other Other +8e2eeba2-ec23-48a2-adfd-448c954232a2 1 \N Other +8e2f1521-388c-495e-9934-cb51a9fdf1ad 1 Other Other +8e2f17b2-8066-4284-8202-589051ba3ec9 1 Other Other +8e2f2016-eb31-410d-8fa2-d988da8221c0 1 Other Other +8e2f432b-dcc3-422c-864e-335462d9e021 1 Other Other +8e2f7b7f-4bfc-48e4-b1df-f75e22824318 1 Other Other +8e2f98d3-c35f-4124-bd8c-6b9c88ac8bb7 1 Other Other +8e2fa57f-1804-4bd6-b35a-d623d5c616ce 1 Other Other +8e2fadea-fd46-43ac-b67c-07dcca42fcfe 1 Other Other +8e2fe4ec-1ae8-4687-9f9a-0f696e6ad440 1 Other Other +8e2fecc5-765b-403b-aceb-4ad504cc0976 1 Other Other +8e300ef9-3c91-4abb-be46-73a5f6e1af53 1 Other Other +8e305647-d52a-453b-a224-2072024cc617 1 Other Other +8e3061b8-d07e-477e-bd3e-554aa76427d4 1 Other Other +8e30c41b-4bcc-4fed-b84a-2b156ff43e6a 1 Other Other +8e30d17d-4608-4021-91b3-c70cb0368059 1 Other Other +8e3106a3-4e0c-4f61-8f30-bd3a8879f664 1 Other Other +8e31441f-b684-4d57-8219-22c14ac9c1d3 1 Other Other +8e3176e9-ed17-4c27-8d83-304b66923267 1 Other Other +8e317e10-94de-4e1f-be03-871d94f38ad2 1 Other Other +8e319437-cdba-49d8-bcc0-76a7ff7fa40b 1 Other Other +8e31a479-fb6d-4c8d-87bb-f5d3623fb357 1 Other Other +8e31ca3a-325c-4130-95e7-de6bc281e03a 1 Other Other +8e31cfa7-aab5-4899-808a-0cd344af12e0 1 Other Other +8e31ee24-1777-49a4-89ca-56743f5102f9 1 Other Other +8e320afc-eb27-4fff-8c1d-461bfeb7cb46 1 Other Other +8e3218b1-4fca-49e1-8903-3826b2f722ac 1 Other Other +8e322fcd-7805-4673-b819-2c363761d579 1 Other Other +8e326dba-f0e9-4d4d-896f-1159aa663fa8 1 Other Other +8e3293bf-16ef-452f-8a1b-6978b3fd0009 1 Other Other +8e3294a7-a438-45b1-a0f4-a5deec9965da 1 Other Other +8e330479-2c43-4be8-9767-eeee90952490 1 Other Other +8e3314ec-c5d5-4f0d-be7e-e29ab37bed73 1 Other Other +8e334b98-873b-477b-a37d-bcadd1d40959 1 Other Other +8e338ee3-0472-454a-b7e4-e48b271fa7e0 1 Other Other +8e33918c-7466-434e-a901-7ecbbb4a84ba 1 Other Other +8e339407-a228-4557-b336-e25aff7448f2 1 Other Other +8e33a1fa-d397-4e99-a0ab-ca4059ea96d3 1 Other Other +8e33aee1-bfbc-441c-8180-450af3825ec6 1 Other Other +8e33ede7-ee6b-4abb-b8c5-70745641fde4 1 Other Other +8e340781-55c3-4063-96ff-8a058f23d114 1 Other Other +8e34e040-d632-40fd-a7fe-5e336744cd74 1 Other Other +8e34e243-d5ca-49d0-9bec-ed58b842532e 1 Other Other +8e34fb89-b384-4589-b654-489f96a4e52e 1 Other Other +8e3521a2-3af0-483b-bed3-7f9602cd2bf3 1 Other Other +8e352d4b-1fef-4373-97e5-2991e4b9aa92 1 Other Other +8e3532f3-29d6-4f7d-84c1-d6ba8125ae91 1 Other Other +8e353862-7e64-4238-8a3a-61c9e6df5890 1 Other Other +8e364383-af45-4294-bd4b-a51c0863bca7 1 Other Other +8e368ff1-0a2d-4f79-8759-d5b4bfec7ded 1 Other Other +8e36b078-a4e1-4f41-8b18-b1acdd36b076 1 Other Other +8e36c297-630c-40df-ba6f-479f39dac6b4 1 Other Other +8e36f343-f5b8-42fe-8ab4-fdee1c397c01 1 Other Other +8e379902-0de8-428f-a5e2-ebaf990a9c6f 1 Other Other +8e379ae6-8aee-4bdc-b6c5-aa27f3e7d11a 1 Other Other +8e380a43-163a-4b53-989a-86d7b0b07976 1 Other Other +8e38392d-0440-4e02-a00e-788d63e04e63 1 Other Other +8e385a6c-bbc6-4927-a7c2-77bc241543de 1 Other Other +8e386593-7ca5-44be-8431-df9e9d2008d8 1 Other Other +8e386b20-0a73-41e4-a09f-79db312e2ed5 1 Other Other +8e38805b-e354-4bcd-ae7a-9e4c568df16c 1 Other Other +8e3893fe-aa3f-4e6d-a74d-6437648880c3 1 Other Other +8e38ff5e-57ba-4a7a-9422-96b7c2d6f301 1 Other Other +8e393fa6-10fd-4e17-86eb-fac78f323e2d 1 Other Other +8e3960af-b689-4e46-909c-be9093ae2684 1 Other Other +8e3973f1-10ee-435e-9b56-51b133a1d40e 1 Other Other +8e39920c-c397-414e-9f6e-ea3011a551c0 1 Other Other +8e39bc7f-085c-4ec9-9e23-8bcbaebc8cda 1 Other Other +8e39e304-8828-4f23-9808-4bf7d1be567d 1 Other Other +8e39e7d8-22e0-4bc4-ab4b-51bb70a04dbb 1 Other Other +8e3a42e1-336a-4e10-beee-be79d1a5c97c 1 Other Other +8e3a43e5-fe7d-4e96-b210-dc2692e6e40c 1 Other Other +8e3a646e-cbd5-4d3b-a28f-09987a171968 1 Other Other +8e3a674b-12c3-436f-a777-99eedeb00ffd 1 Other Other +8e3a8527-14e0-46e1-8bab-f0be52588f8e 1 Other Other +8e3af007-65f3-45d4-8d5a-cc1fa7ca6b9a 1 Other Other +8e3b6771-5559-49e3-9197-fce45c4a9b47 1 Other Other +8e3bb80d-a17b-451a-af20-85b18646c6d3 1 Other Other +8e3bd36f-4e20-4b06-8245-37c4459deba0 1 Other Other +8e3be49b-c99c-4b50-98f5-01afb8690438 1 Other Other +8e3c4c85-5a23-49d2-b7cb-06380a74854d 1 Other Other +8e3c6a6f-463f-413c-aaea-f15844022984 1 Other Other +8e3c7edb-9c93-4e5b-b529-fd30f023da21 1 Other Other +8e3c8c09-7860-4e1c-8593-634d5282746e 1 Other Other +8e3cac52-a6e2-4f3d-8d1a-a3866190e9d9 1 \N Other +8e3cc036-17e7-43d6-85ab-6b5aee938c5b 1 Other Other +8e3cecc4-48d3-42c3-956c-9e67037ffe47 1 Other Other +8e3d0a54-4c97-4982-8830-403a1b5da738 1 Other Other +8e3d6efe-4a8f-435e-8fe7-3f658e5c4b14 1 Other Other +8e3d74bc-9529-4210-b41e-d9db8a6abcf7 1 Other Other +8e3d802b-bb8b-4188-ac62-423d2c5cf116 1 Other Other +8e3d86f7-c092-45df-8a9c-8c18a647a745 1 Other Other +8e3d88cd-3665-4e3b-9826-f1dd6401473d 1 Other Other +8e3d9ef5-b128-4042-a8a5-050d9fa6f781 1 Other Other +8e3dcf5e-eaea-40f5-899f-ee2d206a4b2a 1 Other Other +8e3de01e-b48b-467e-ad43-c03092a84958 1 Other Other +8e3e1a83-5993-4ef1-a8cb-10e5c03a9a95 1 Other Other +8e3e2432-ca37-4129-819e-bb79f0059cfb 1 Other Other +8e3e3fc9-257f-4ccb-b1c5-523ebade90fd 1 Other Other +8e3e6b7d-5e5e-4d40-a15b-d3274a102a21 1 Other Other +8e3e97aa-f50e-4393-8842-dc9a88ef678a 1 Other Other +8e3eb6bf-7ffa-4297-85ee-90e47391cecf 1 Other Other +8e3ecdce-780f-4e2f-9080-1946ac89dffa 1 Other Other +8e3ed041-9b05-4fd2-9216-ca1425405fd8 1 Other Other +8e3f2d9e-4b93-4dd9-b9e2-32edca68943d 1 Other Other +8e3f3ee6-aaec-47cd-a275-f3cba6bc1ecb 1 Other Other +8e3f4631-607e-401f-80d4-791f3e2ba818 1 Other Other +8e3f85f0-3da7-4256-a290-c3a1aa5276df 1 Other Other +8e3fa4a9-1ea6-4e4b-9f64-f8aee8d89b0e 1 Other Other +8e3fad4e-6adc-4c5c-9c0e-f42a0cadeae2 1 Other Other +8e3fb029-6d47-45e4-8f76-e7f0e11d42a1 1 Other Other +8e3ffd71-9a06-41cd-94f7-799af226dbe5 1 Other Other +8e401d2f-80d0-417c-a91d-4a1b48f5604e 1 Other Other +8e401ea1-d3b2-4dc3-9159-190865adf3ca 1 Other Other +8e40d73b-e925-4765-8105-9f5f6783a55f 1 Other Other +8e40df80-0951-468d-9191-76131f30e04d 1 Other Other +8e411fac-fba9-4d20-b060-9cad1c884ff1 1 Other Other +8e41362a-330e-4100-aec4-3bed9dc218c3 1 Other Other +8e414474-828a-460a-ba9d-4c54054c0cb6 1 Other Other +8e41489b-1970-4cd8-aae7-ac0171b39708 1 Other Other +8e4173fa-ddd2-4371-83bb-9014fdae279f 1 Other Other +8e429c3e-e468-4bf0-99df-f8d110bf10f8 1 Other Other +8e42a1bb-26fd-474e-ac47-3919660b0a69 1 Other Other +8e42dbee-c8cb-476e-811f-7f2e500e4a8e 1 Other Other +8e42e0a8-c8cc-4dbc-ad7f-8f9b3d3ac600 1 Other Other +8e42f7b5-b369-4d35-8d54-782721a49468 1 Other Other +8e43657b-aa3e-403b-8369-e9bb71aafd06 1 Other Other +8e4367de-2d48-40cb-9a7b-bbd342cf17cc 1 Other Other +8e43edda-55cd-4bd2-af38-87ab570f347e 1 Other Other +8e43f6a8-4e3c-4dd5-a3b9-bba225b846cd 1 \N Other +8e44201a-760a-4103-bff8-966d189a0853 1 Other Other +8e4452dd-dfeb-4b0c-8b4a-1914481c4cca 1 Other Other +8e449ce3-34fd-4801-82a3-37eb8565f926 1 Other Other +8e44c921-2b5a-48ce-af93-8248616f2941 1 Other Other +8e453701-c10a-4969-abe2-593e5a24b095 1 Other Other +8e45c6a8-8222-4894-8638-12a7e7a44128 1 Other Other +8e45c924-d232-45d4-8c10-9b370f070547 1 Other Other +8e460cdd-11ad-457d-a707-453354001f70 1 Other Other +8e461420-b86c-4f8d-b476-e8ccd2fb4029 1 Other Other +8e4693bd-63fe-4332-aa10-df16f42ce786 1 Other Other +8e470d41-a32b-47e2-8075-405c5e737ee3 1 Other Other +8e470e0b-a12b-4263-94e6-4debc2fabaad 1 \N Other +8e476836-1052-4dc5-84f0-4ed3882bdd3c 1 Other Other +8e476e44-248d-45ee-a2c9-03ff8f350010 1 Other Other +8e476e8a-99ae-47ad-a556-d5fa03560ebe 1 Other Other +8e479df4-0ec6-4993-a1eb-11da3735b8f3 1 Other Other +8e47b3cc-654c-4f71-a75c-57c67979f5b7 1 Other Other +8e48559f-174d-48e3-81ed-10f6463e4e1f 1 Other Other +8e48c6ab-c42e-4095-ac1a-471a44fcd30a 1 Other Other +8e48dca5-6f1b-4af7-bd9b-c5e2979df750 1 Other Other +8e48e158-636d-4f18-a22a-10988c8f701d 1 Other Other +8e48fb75-04ab-4b50-a447-bdd05e1352ff 1 Other Other +8e490b76-756a-4806-ad57-f60be84a7b4d 1 Other Other +8e491896-422d-43e8-8926-a88f08cd5671 1 Other Other +8e499d90-a0f6-4010-a549-e045af8c4e3c 1 Other Other +8e49c1ca-64cb-4cec-b8f9-a61667a34c17 1 Other Other +8e49c25c-14c6-4b1c-a3fb-ac1a9a52c880 1 Other Other +8e49cfac-4fb0-47c1-94be-e702cceda8c3 1 Other Other +8e49f7e3-fdfa-4b2f-934c-34b59125622b 1 Other Other +8e49fe8d-c85e-4989-a8f6-bb8d65179654 1 Other Other +8e49ffda-e608-4139-b511-7b8c0a5336d8 1 Other Other +8e4a097d-36e0-4782-971a-74821de32c92 1 Other Other +8e4a4b0b-52e1-4725-8c72-f19ebaba92b7 1 Other Other +8e4a533d-daa7-497c-a323-a42423956edb 1 Other Other +8e4a65db-4715-4cfd-90f9-7102e5242406 1 James Other +8e4a68f8-78ce-4696-9ccb-7815ffe50539 1 Other Other +8e4a8bfc-8f95-43b7-bddc-1e0ed39ae75b 1 Other Other +8e4a90e4-3495-481c-993d-bf1f2b7e14d5 1 Other Other +8e4ac54b-e4c3-4e8f-9ac9-9a5b515b16e6 1 Other Other +8e4ae2f4-ac26-4e27-929b-227f284c19f8 1 Other Other +8e4b7182-35b6-4f07-ae83-699f60c0a05c 1 Other Other +8e4b74c1-8812-4d57-a2ef-734b23b65889 1 Other Other +8e4b7aaf-ada9-47f2-96ac-22f189d41f26 1 Other Other +8e4b9e50-0464-4ea5-a8e4-57160dcaa725 1 Other Other +8e4bb749-0c74-4ff9-b5ad-d443e9d0b7ba 1 Other Other +8e4c49db-eee0-4997-9a4b-d5da0637d37a 1 Other Other +8e4c85b3-20e8-42e0-bf9b-b7ef977adfe1 1 James Other +8e4cb72c-0308-4354-bd7d-3e2e5bc266be 1 Other Other +8e4cc4a5-8d29-4abd-a6fd-17df3dbab5fb 1 Other Other +8e4cda37-7f42-4fb4-97fb-62545ec6faab 1 Other Other +8e4cec5b-1131-412e-8c91-b7781c5ad549 1 Other Other +8e4cf43e-b642-4fc0-822a-3c502124e6e7 1 Other Other +8e4d5a03-4456-46a5-aeb2-2736cfdf3d85 1 Other Other +8e4e3924-6d9a-4cbf-bc41-b07c23ce6952 1 Other Other +8e4e490f-03c0-431e-bd45-b1e24013d449 1 Other Other +8e4eac69-8967-41f9-a341-668900d58fec 1 Other Other +8e4eb10c-1bb0-43a8-ade6-86552984517c 1 Other Other +8e4ef83f-e03b-4232-8c26-44034b2056a3 1 Other Other +8e4ef9b7-2813-43ee-b597-07c5a32e1802 1 Other Other +8e4f012e-a553-40f2-8aa4-9e72f486e43e 1 Other Other +8e4f44e6-3102-4e04-8115-8d7ce5102aaf 1 Other Other +8e4fe2ef-8ab8-4c5d-9bf7-34f9b22750ee 1 Other Other +8e502bf0-931c-4bdc-996c-a0f8cf206cac 1 Other Other +8e506098-f279-429d-9f67-0125c76a6951 1 Other Other +8e5061c1-278a-468a-91f3-0e468b34f2b1 1 \N Other +8e509665-8d93-462c-9667-51b9c5d70166 1 Other Other +8e50cb7f-2b85-4d3f-867f-f395aeaf05c8 1 Other Other +8e50ff9a-9f43-48f9-9f76-230ac4a575f9 1 Other Other +8e5165d8-6e01-4763-a527-efec1d720086 1 Other Other +8e51a036-41b7-4315-9adb-5fa44c974623 1 Other Other +8e51daf8-777d-4625-af69-eee6580e0a67 1 Other Other +8e522d2c-1f52-4a69-9b1f-c46d7de74576 1 Other Other +8e52470c-7a42-43f3-b8be-5a23aa259fab 1 Other Other +8e526847-7d58-466f-82db-5404dc5e6b14 1 Other Other +8e52a6c7-5b1f-4a9f-8a91-28394195c55d 1 Other Other +8e52cc8b-54d6-4df6-8592-837dc5d22612 1 Other Other +8e52ced5-e56a-4fcb-9f0c-8bfc0cc5050e 1 Other Other +8e5319e0-fff6-49d3-8b6b-111b5e2f12d6 1 Other Other +8e535fc8-9bd2-43dc-9f26-7bc8f56534cd 1 Other Other +8e537041-ada6-4878-864e-03796aaeafdf 1 Other Other +8e537b3f-b034-4084-bd7d-0733ae94ef01 1 Other Other +8e53d151-fbf7-43e4-94bf-74dc3668eb6f 1 \N Other +8e53d458-4788-4c5c-8e89-e9d49696148f 1 Other Other +8e5499c4-abe0-4d10-8c91-b7033f0cad4c 1 Other Other +8e54a0dc-cdf1-445b-b2e5-8f8056ae1173 1 Other Other +8e54c5ae-8f71-4ca8-80e1-5e35dac085ab 1 Other Other +8e55732c-c2d5-433e-bd9a-1047843fe0e9 1 Other Other +8e55a206-8afc-4749-9ea5-f84b75f74313 1 Other Other +8e55f080-0bfa-4ed0-bc2e-29a2df43b1f3 1 \N Other +8e561930-3c98-4b91-acfc-9fd4476dbda3 1 Other Other +8e561b40-e06a-42f3-83bb-90e6578b7055 1 Other Other +8e561e06-3c50-438c-864d-d95f7af0f87f 1 Other Other +8e561fa7-6d1d-4e1b-9053-2db9e0dbb90e 1 Other Other +8e56571c-01df-4975-bd3f-d2b21b422cc9 1 Other Other +8e566a7e-628b-4da8-b6d4-83feeec7fdad 1 Other Other +8e566fbd-9e67-485b-9aaf-9aed99f5d74f 1 Other Other +8e56960a-cb47-4a18-bcc6-1aa9c02d6a6c 1 \N Other +8e56c600-f601-4699-b02e-4faa931ec0c8 1 Other Other +8e56df5e-f5f7-4b27-8fb0-9f3c1165111f 1 Other Other +8e5702e8-546a-4f50-9735-b627d847cffd 1 Other Other +8e57613e-62a4-4b69-a48d-bd719bb7d414 1 Other Other +8e57ad15-626c-4f6f-b362-87fe59d2e5f3 1 Other Other +8e57b758-6b49-4392-bb46-321ada5bb2ab 1 Other Other +8e57db68-ca17-4f21-b007-e74ebec24bc7 1 \N Other +8e5810e9-af8d-40a9-bcfd-082348b9cf18 1 Other Other +8e58123e-627a-444d-81e0-45c974811e59 1 Other Other +8e58703b-9dc0-448b-a135-b5eefb95208d 1 Other Other +8e5883db-47b6-4816-9eec-a97bb885cb52 1 Other Other +8e58a6d2-db5f-4d2e-99eb-443a4e0def35 1 Other Other +8e590b86-5098-467b-9702-9be3899ce70d 1 Other Other +8e591602-1c82-4a0d-a271-f5cb2457e007 1 Other Other +8e5983ed-374e-436d-82d0-323cac95e5ee 1 Other Other +8e598502-60da-4394-8781-e83b979aece7 1 Other Other +8e59f3e8-3b3e-49e4-aa95-5e94c65760e9 1 Other Other +8e5a0d2c-52d6-4a9d-a222-a1252c8f706d 1 Other Other +8e5a0e13-6026-4d23-b31c-7934405761b7 1 Other Other +8e5aaa54-3c53-4da4-ac34-e1d2141f3def 1 Other Other +8e5aee98-7411-493c-9c69-21a1e0435167 1 Other Other +8e5b0842-abe1-46a4-9ca5-43f4581856a9 1 Other Other +8e5b2322-727e-4837-8aba-c06d9fc9e257 1 Other Other +8e5b3625-ff20-40cc-a401-983684bbf607 1 Other Other +8e5b6e7b-c5ee-4d96-aa66-02e8a2a2b45a 1 Other Other +8e5b7000-2aff-4d45-90c8-2bb02fb563ad 1 Other Other +8e5b719f-0b27-4224-8dd7-70e45a5301d5 1 Other Other +8e5bb65e-f1f4-4590-9d7e-03b5955f6651 1 Other Other +8e5bbff4-d231-4d9c-aee3-d829351def83 1 Other Other +8e5be83d-b6a4-4a22-b84c-1ea0ac3cb86c 1 Other Other +8e5bf68d-9bb0-4271-bc84-0c810dbded15 1 Other Other +8e5c6fcb-a576-49b6-a965-e23d3aeb4309 1 Other Other +8e5c70c3-f22c-41e7-ae7b-916abb17c66d 1 Other Other +8e5c7c54-6103-4cd9-9c83-7494cd08fcfd 1 Other Other +8e5c954a-8f37-4a47-93fc-f805e2f558b5 1 Other Other +8e5ca6dc-0142-4153-91e7-71d770fae5bb 1 Other Other +8e5cb499-0ea9-44c3-8324-80bfcd178a25 1 Other Other +8e5cb4b2-688b-4802-8dda-7f30431c637d 1 Other Other +8e5cb4f0-a841-4fc1-a57d-31bf91179601 1 Other Other +8e5d1a3c-8609-40d5-af8e-c6193f56d13a 1 Other Other +8e5d38c8-4a71-4b97-b4cd-91a0d4153a49 1 Other Other +8e5d608a-5cf9-4b59-84cc-c3aea13eee01 1 Other Other +8e5d67de-3be4-4b8a-822a-618f7d3758be 1 Other Other +8e5d6f71-1998-4e85-a200-66cf3985291f 1 Other Other +8e5dbf0f-6989-468a-a24f-e7c161de747a 1 Other Other +8e5dc3c5-257e-4e83-92c5-58344d8bc1b2 1 Other Other +8e5dcb55-be88-44c8-9c6e-903a3907c09c 1 Other Other +8e5ddd6a-d5a2-48a7-8e51-60abefb77b62 1 Other Other +8e5e48b7-35ac-46f3-af09-d50aa4e07ee9 1 Other Other +8e5e4d38-d2f9-4020-a429-45f1bde4e9cc 1 Other Other +8e5e7d31-e850-40d7-bce1-7e1bbd7d8757 1 \N Other +8e5e86f5-dc7b-4b96-8ab1-7f89b93435e7 1 Other Other +8e5e8f0a-e1cc-4391-9290-a27117ccbcae 1 Other Other +8e5e97a6-5722-44cb-b5e1-85476a4e4181 1 Other Other +8e5ec0db-6ef4-42b0-bcd4-c73ab1c39801 1 Other Other +8e5ed58d-630d-4d59-a72b-da80ec4b0c75 1 Other Other +8e5ee2f9-05c8-4e39-a298-9c2faed9f692 1 Other Other +8e5f3293-6211-4e27-a29e-68503e1fbd37 1 Other Other +8e5f8904-2a4c-41dc-a39d-5e5289daf0f2 1 Other Other +8e5f9092-72e5-4f46-a170-d2712b6ce026 1 Other Other +8e60025c-c6e9-4b4a-862e-5991612849ef 1 Other Other +8e601f97-0f12-4728-8a73-859e97891d39 1 Other Other +8e60447a-ae22-4312-abd5-6e9a17d5acd8 1 Other Other +8e60d9dd-159b-4c7a-8d7a-91cf8e53023e 1 Other Other +8e6107d6-25d7-4994-9e9b-e87c23ad9bcb 1 Other Other +8e611d3e-c04d-4c53-bec9-7f2bda6ad056 1 Other Other +8e611e4d-5fe8-4e74-9e9d-817ff91f1c5e 1 Other Other +8e612ccc-50ac-4c03-a570-e8b281b8c2d5 1 Other Other +8e616613-8c54-41e3-b160-5dc0411a3709 1 Other Other +8e61d3f1-9259-4149-a3e8-a270e40bed9a 1 Other Other +8e61fece-f02b-4912-842a-96e7798fc366 1 Other Other +8e621040-4c10-40e1-ab3e-cd7e5b36c0b8 1 Other Other +8e621952-c56b-41b9-9482-c4dba7627a80 1 Other Other +8e62a8a4-e03a-4ade-8a1b-d033e9ebbb88 1 Other Other +8e62ae02-4029-483c-a03e-32a392a37930 1 Other Other +8e62b756-dca3-4be0-be30-5fb46748ed73 1 Other Other +8e62d5fc-9577-4182-aaa7-c317529cb569 1 Other Other +8e62e75c-d0fb-4391-839d-0a5b082b9302 1 Other Other +8e6352d8-b4de-4cff-9a4d-b9118278cc0f 1 Other Other +8e637ae6-3433-49de-9eb0-657b0d26ffde 1 Other Other +8e63a160-b183-4231-8ede-f12f8a23924a 1 Other Other +8e63f2ae-7455-461f-a538-7111753a24a7 1 Other Other +8e64606a-8e31-436c-bbc6-5c099cd5fc82 1 Other Other +8e64c106-98a7-4bed-8445-a86bdfe8d7de 1 \N Other +8e64cb8f-ef92-4cdb-88de-b8e9a103b40b 1 Other Other +8e658d87-fa2a-4f4e-ad86-1e818db8dd78 1 Other Other +8e66392b-b449-480c-9879-6ba5ba113441 1 Other Other +8e663cf4-66e2-4625-a9b1-8a710790d102 1 Other Other +8e6671e7-ea19-46e7-a42a-cbc2079dc340 1 Other Other +8e66afd6-0757-450d-a96e-9e1187237250 1 Other Other +8e66b829-d70b-4c0d-a855-fce6349b476d 1 Other Other +8e66b86a-7127-4ec2-88f5-90dfd7c89ec0 1 Other Other +8e66df7a-e693-4129-aa91-6245cfb27db6 1 Other Other +8e673c31-ee1e-47f2-aa7c-0a91537b69b6 1 Other Other +8e6763c5-1cb4-463a-bb9c-0d5928ae8a5e 1 \N Other +8e67fd57-209f-46af-8019-e443db167d21 1 Other Other +8e6807d4-1b17-422a-9b58-a4e40655b0a6 1 Other Other +8e682ac4-44e8-40e4-8ce0-6cfa2153afaf 1 Other Other +8e689031-9df9-4f5d-8a30-59b097e6bc29 1 Other Other +8e68ac74-d79e-45b1-a3c1-3bd21c44451f 1 Other Other +8e68ad04-0c9b-4b0d-93c8-011c113e40fd 1 Other Other +8e691bd7-1220-4252-a2ec-1695ce87f1d3 1 Other Other +8e6990ea-39ef-4bcd-8f70-50612bb55f6a 1 Other Other +8e69c250-0d81-4ada-879a-57d5825784be 1 Other Other +8e69f183-0b67-4445-8782-7606cd347b6e 1 Other Other +8e6a0fc4-28a2-4450-8bfb-378901990406 1 Other Other +8e6a1655-21f0-435b-8b89-8c0672fe0ac6 1 Other Other +8e6a2792-fb96-4c9d-b267-29acf4854933 1 Other Other +8e6a424e-e696-40aa-bbdf-a2b1aa80e4ca 1 Other Other +8e6a4bb7-3942-4729-bf86-f5c28a9be053 1 Other Other +8e6a85c3-c556-4f84-ab0f-7165e744a78d 1 Other Other +8e6acceb-5cff-436a-84ae-4ae032264d5d 1 Other Other +8e6ad435-e4b4-4ac2-9d81-2f2a83892caa 1 Other Other +8e6aec4e-6ba4-481d-adbf-229fc91e1026 1 Other Other +8e6b24f5-e123-4e3a-aa5e-ebc1eaaae144 1 Other Other +8e6b2950-2a3e-4756-a215-cd91e123ec37 1 Other Other +8e6b3d7d-bb6d-4211-86c3-bd3c418e0f1d 1 Other Other +8e6b889a-355a-4491-a1dc-d1c5a37ba818 1 Other Other +8e6b9650-e69d-4e12-b230-86ac402e6dfc 1 Other Other +8e6b9f32-eb8a-4d44-a12b-1bdb594f441a 1 \N Other +8e6bc2df-1524-4ade-a8c1-bc1c7b12cdef 1 Other Other +8e6bd9c8-1980-41e7-992f-99c88892bad6 1 Other Other +8e6c404c-45db-49be-ac41-f966d6c79b0d 1 Other Other +8e6c7d2c-9318-45da-b6c6-dd0e6fb62052 1 Other Other +8e6c9685-b170-47e5-9372-9d2437e24b3f 1 Other Other +8e6c9ac2-d87d-46eb-8583-7464a961f63b 1 Other Other +8e6cac95-8ef0-4ead-85b9-d651d9fdafaf 1 Other Other +8e6cdd5d-7b16-4c69-ab52-a82f1cb781e8 1 James Other +8e6ce910-caa9-4555-b0f7-1923e57c5b8d 1 Other Other +8e6d152d-5351-405d-b945-1572f459e9a7 1 Other Other +8e6d35dd-83ae-4ac3-8d3b-18398fe87315 1 Other Other +8e6da7c4-6296-4e26-85eb-9189c77ee217 1 Other Other +8e6dcf1f-cbe3-4f5e-bab6-0ffc5d4cac26 1 Other Other +8e6df236-4968-4473-9351-74331ade72a8 1 Other Other +8e6e2b65-c197-4d2a-b63f-acb1efd273b4 1 Other Other +8e6e3e8d-da08-439c-8227-ea3e3b9c4699 1 Other Other +8e6e63f4-cdf5-4076-a8de-6b1b0edd2d5f 1 Other Other +8e6f0082-bff1-4b9c-a39f-6770859aadd6 1 \N Other +8e6f0165-f40c-4b49-ad87-a3a9e4c500e3 1 Other Other +8e6f1811-95b5-4ea7-8c62-08850d0d609a 1 Other Other +8e6f53ab-c9c9-4424-9267-cc4d20996125 1 Other Other +8e6fc2aa-0512-4696-b79a-9b5e7c4059d1 1 Other Other +8e6fcad0-0f26-403f-b854-46bc4d69a71b 1 Other Other +8e6fe399-b8ae-44ed-8481-2b49e6474cd8 1 Other Other +8e7037fd-13f2-407d-8627-6018c72b010a 1 Other Other +8e7057f3-d454-40bd-baa1-6601e361ae85 1 Other Other +8e70594b-85a4-4fb5-876e-97c8f731d5c4 1 Other Other +8e70a322-fdd3-4275-b924-5962131b4113 1 Other Other +8e70b032-f406-42f4-91fa-a4e71bb4ff02 1 Other Other +8e70be20-35b7-4b75-a187-6e70173c3c56 1 Other Other +8e70e0a4-42fe-11e8-b9b1-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +8e711103-d7af-4e39-b399-30190090368f 1 Other Other +8e714912-70fb-4b21-a5ef-83aa733c80f4 1 Other Other +8e717595-c36d-4080-8c40-a9fa93161b62 1 Other Other +8e717b0d-17e4-4dc1-84b9-de597f7fe4aa 1 Other Other +8e718335-74f8-4136-aa45-639125e2bffc 1 Other Other +8e71921b-db85-4b91-9f25-08fd4a2dfe1f 1 Other Other +8e71aa01-49b4-41c8-99fa-3da645055c02 1 Other Other +8e727960-99e9-4f01-82f2-902b1c919bb5 1 Other Other +8e72ac9f-f649-4a7c-beb1-e57a2f3dc4c9 1 Other Other +8e72d7bb-8e34-487f-b59b-dfda4bb9f533 1 Other Other +8e72eca3-af00-4d61-941f-1d6fe9217ea7 1 Other Other +8e730a4a-c557-4d67-af16-90fbe9bff4f5 1 Other Other +8e732865-c87a-4b38-9eb2-164b27ef7fbc 1 Other Other +8e73397d-3b00-4cd5-a952-9fc97f4256f3 1 \N Other +8e734f57-c3f5-4881-85a3-3dc32c0350c9 1 Other Other +8e738e9d-3f6a-4ebe-8d3b-d4721de791c7 1 Other Other +8e73b9d8-9c1c-4a09-bf84-3a9072177a75 1 Other Other +8e743678-ba48-4825-8dcd-c0264014b05b 1 Other Other +8e74a822-04b9-4da6-b0ff-edfcfc214955 1 Other Other +8e76033a-7af3-42ca-b9bc-2ef0b16738a0 1 Other Other +8e76356a-8903-4a90-adee-13a13a3fe8be 1 Other Other +8e764f74-45d3-49b3-8e8d-f1748212c241 1 Other Other +8e769124-6c65-4ec2-919b-4f08b49fd759 1 Other Other +8e76923e-59cd-4638-889b-a1d113b6f0fd 1 Other Other +8e7699ea-9fc9-442b-834a-c8ae492a9f55 1 Other Other +8e76a18e-17e8-4858-8329-7bddc8f807e1 1 James Other +8e76cea5-c276-435e-9123-6012dd6e0973 1 Other Other +8e76f03b-7b8a-423a-84a5-38110fa8d4d4 1 Other Other +8e7772b7-dce9-49d1-b6aa-d358c43e911a 1 Other Other +8e777ee7-3b45-4022-b67b-bede9e71ef32 1 Other Other +8e7783b5-ebce-4792-8abc-3c2feea5debe 1 Other Other +8e778ba5-6c44-405d-a936-4c02d34f10dc 1 Other Other +8e77b47a-7b48-46c6-97b3-a7bc47d1f7de 1 Other Other +8e77bfdd-f1d9-43a1-ae2a-7b97aa196a48 1 Other Other +8e77dc80-09d6-45c7-a055-0699fc8492f9 1 Other Other +8e787858-11ef-4826-9f67-e2c43572f37e 1 Other Other +8e7881d5-835f-4271-b8f9-9ed6a4c879ae 1 Other Other +8e78dbcb-3065-468c-998a-8a38f7460c03 1 Other Other +8e78fba3-62e6-45b2-9184-9411ed1c2a89 1 Other Other +8e79619d-ea96-432d-9e26-348411d6cdab 1 Other Other +8e796f45-0158-41ab-a656-a11f31117eb6 1 \N Other +8e79b7ac-d687-457a-8ee8-9453c3e2d1e3 1 Other Other +8e79c209-4f3f-491f-84bf-6144699b0221 1 Other Other +8e79cfcd-cae6-4cd3-a2c3-ba7d5b10f513 1 Other Other +8e79e899-effc-4ac1-847d-857546aa9854 1 Other Other +8e7a0f51-813d-420e-89f5-1f1feb965807 1 Other Other +8e7a29f6-2d26-4048-b07e-d1b7a9885b33 1 Other Other +8e7a2d0b-8c37-4bbf-afaf-bac5058f62b9 1 Other Other +8e7a3926-dfd7-4e59-bc72-913e0cb69a5c 1 Other Other +8e7a9bbb-5a78-4c65-ab18-adb1557bd285 1 Other Other +8e7aeaca-6ae6-4887-9d01-4b97a882fa66 1 \N Other +8e7b6086-662f-40d2-bc04-a07f80f43501 1 Other Other +8e7bd778-1f00-46ef-92e8-0f8e39afa7c1 1 Other Other +8e7bf9e8-e68c-45ff-ad0f-355e18bef32b 1 Other Other +8e7c348e-86eb-4832-aafd-14823591eef7 1 Other Other +8e7c3ba4-d154-4e61-8999-1b21cfc9539c 1 Other Other +8e7c5c2d-d709-47de-ab3d-ca283034fa6b 1 Other Other +8e7cdd01-8bff-4a21-a315-48567fa5bb3e 1 Other Other +8e7d04af-009c-47f2-8c39-d9bc0669ea47 1 Other Other +8e7d07cb-8ddc-4f3b-8b86-3d48c154b8b3 1 Other Other +8e7d91aa-efb3-4479-ab00-90ce9291c037 1 Other Other +8e7dad35-3f10-4f5d-8a56-6dda24bf9e4a 1 Other Other +8e7dc3ce-a7c2-4398-a920-43348eb6ebf1 1 Other Other +8e7e19ec-9456-46ed-8b28-b98abcfe2d47 1 Other Other +8e7e99c8-7f4e-4dbe-b8bf-76cdc7f84188 1 Other Other +8e7ea42d-63c2-462b-95e5-d5c75fe1d9d9 1 Other Other +8e7efde2-8c43-43e2-9725-fbc0bbc79f02 1 Other Other +8e7f1aeb-48c4-4fc1-8118-39fee32b6b78 1 Other Other +8e7f2cad-211d-4779-a57f-f342083e404b 1 Other Other +8e7f60c1-a4e6-4fab-a980-37e43d9753b3 1 Other Other +8e7f6740-acb7-4b62-94f9-b2bd17d6a545 1 Other Other +8e7fb3e6-055a-415e-b3d3-dd2757c5fe2b 1 Other Other +8e7fc3da-e0fc-4635-a182-abd0177de598 1 Other Other +8e7fe06e-2328-429a-9959-c8b8db66632e 1 Other Other +8e7ff28c-3cf6-4820-bdd5-6a1184b20c9b 1 Other Other +8e80100f-bbb8-4f60-9064-a521377dd5bf 1 Other Other +8e8028a8-f1c7-4823-9ed2-e5a5e84d652e 1 Other Other +8e8034cd-60a3-4fcf-a102-980b079f7a95 1 Other Other +8e805762-9cbb-4ef0-ac52-e0cf49977c49 1 Other Other +8e80633f-8f94-4a21-ac90-f28b97cb21c6 1 Other Other +8e806c45-c9ec-4a5e-a0d3-ea24f240288d 1 Other Other +8e80701f-c23d-446d-b3e5-0c0fdaac8d45 1 Other Other +8e80b198-0016-45df-92fe-05245e08609e 1 Other Other +8e80bb52-0c1e-47ad-aef4-ac2ad3b72781 1 \N Other +8e80fa6c-a51d-4eb7-ae5c-a3ed39ed8af7 1 Other Other +8e811770-6326-42c7-8269-45a8043eb640 1 Other Other +8e811785-2c66-4a0c-9a74-ed67556239d8 1 Other Other +8e8119e6-56f0-42b9-bad8-58ce1d0d5c44 1 Other Other +8e813c0d-7bc0-439e-8056-2ccb3c0848b8 1 \N Other +8e817fb6-9a95-4f42-8243-6af55d87dfd6 1 Other Other +8e81e6c3-2783-424a-a831-2ad1c6143a6c 1 Other Other +8e81f735-6fb4-42c7-8972-115404dd1e7b 1 Other Other +8e81f763-6857-45a5-96bb-6d470116d3d3 1 Other Other +8e821859-d5d4-4fe9-b864-1565fe64913b 1 Other Other +8e824039-e6de-4c95-9e15-ecf0ea004a31 1 Other Other +8e8243fe-d3c8-4ff8-a332-38d79757720f 1 Other Other +8e829f36-26ab-4091-8e8e-e1fed53d38ac 1 Other Other +8e82b96b-c1f7-4228-b2e1-c4c9167e330b 1 Other Other +8e82fd29-6a55-4069-81d9-09f41c5f8223 1 Other Other +8e830f04-aa02-4931-b7fd-c6568d5574f9 1 Other Other +8e833430-8de4-40f4-bf42-597b40b7d5ce 1 \N Other +8e83a98c-7f82-42ae-bdcf-71b32dc8ab2d 1 Other Other +8e83dfe9-2daa-4423-af9d-32dbbc3eca95 1 Other Other +8e84494c-a889-40ce-aba6-15a79c85e487 1 Other Other +8e84637a-065c-4533-9bb2-f56437871041 1 Other Other +8e8499aa-80f5-4b2a-ac60-368ff19e58dd 1 Other Other +8e84ad2e-ae2f-4f32-99b1-d50b7a50ff69 1 Other Other +8e84b017-1afa-4bdc-8424-577fc5b2fd56 1 Other Other +8e84c433-1c10-4875-8e06-18b78ebd6e40 1 Other Other +8e84ce3d-fa09-4aee-8c82-aeb405089910 1 Other Other +8e852005-cfee-48b8-8d9e-0d26cb98dae7 1 Other Other +8e857fc1-8695-48ff-9c97-c1221fa57205 1 Other Other +8e85a061-23bc-419d-b98f-8658bb23d19a 1 Other Other +8e85c175-217a-449c-aba7-473ca7756b6e 1 Other Other +8e85c4e1-a0e6-4f43-8473-9a4136e9de5a 1 Other Other +8e87695f-b73c-4dbf-9e52-bed2a581945c 1 James Other +8e878038-85ed-43b9-a294-e528a1641e9d 1 Other Other +8e879d2e-0e48-4553-8481-815bb7930ae1 1 Other Other +8e87cc19-47db-47de-b218-f9ed63afad39 1 Other Other +8e87daa2-93e8-490c-a8fb-617f731439ca 1 Other Other +8e8825cb-bbe3-4c5e-906c-e122c9dfe010 1 Other Other +8e8852df-a38b-43b2-8d9f-6779bacec10a 1 \N Other +8e8875d0-924e-4f71-9384-e24b0b5f8ca2 1 Other Other +8e887da0-d49b-4a60-a679-9ef309daf3f6 1 Other Other +8e887e51-21d7-456a-8c23-7ef1f5e4c362 1 Other Other +8e88ae39-cb64-4257-b5a4-62ed9c6b1683 1 Other Other +8e88f1b7-3b4f-4ca3-be9f-d00e10a7d981 1 Other Other +8e891f15-fe91-470f-ba7e-72d7188166a3 1 Other Other +8e895147-9d9f-4454-9966-829a72000f72 1 Other Other +8e896ae3-794f-4a18-bf97-bdb4fa610da4 1 Other Other +8e899fc5-cee5-4627-8fc8-789685a5a929 1 Other Other +8e89e8ac-51ee-45d8-bef8-b728d34d396f 1 Other Other +8e8a1a8e-a68a-471f-be02-a431ba9d03cb 1 Other Other +8e8a4bc8-0f85-4d55-bf6e-e72985e498b6 1 Other Other +8e8a7090-fd42-469b-add4-9300f2052c99 1 Other Other +8e8a8d01-c00d-4589-9bc7-789456c585f4 1 Other Other +8e8a9f64-f196-4829-b363-49391089006f 1 Other Other +8e8aa198-7e67-4e50-a135-47d088cc5afa 1 James Other +8e8ad11e-6d2f-4874-a0e4-1b411e11b767 1 Other Other +8e8ad630-ac4f-40cf-af88-57bbe65d4879 1 Other Other +8e8b56f4-73bb-4311-8128-eb1f7758f578 1 Other Other +8e8b57fd-c470-4786-bcdd-ce3b4faf4054 1 Other Other +8e8b667b-8d28-4fa0-bc81-8d2571811bba 1 Other Other +8e8c02e7-5093-450b-b643-a1cce7c17b84 1 Other Other +8e8c97ec-6a5a-4113-af4a-a0918c3b5431 1 Other Other +8e8ccd31-0e73-439b-a21f-08d7de6d24b0 1 Other Other +8e8d553a-96f9-4979-988a-a5fc3811562a 1 Other Other +8e8dd719-2828-4450-9923-881cf3d5406c 1 Other Other +8e8de488-2aef-459f-a720-061056ff6b69 1 Other Other +8e8e1134-2f52-4d8c-9a41-387063670fa1 1 Other Other +8e8e1fa5-a6e7-465a-abe7-e5dbc903336d 1 Other Other +8e8e6677-5cb0-4195-b282-e92b8408b0e8 1 \N Other +8e8ea19f-88fb-4ad0-8631-61ff63aa2b55 1 Other Other +8e8eb16a-3456-405a-884c-418e7bb23c0d 1 Other Other +8e8ec98e-061e-4e4f-8251-6cf73ffac324 1 Other Other +8e8ed05c-f0d1-4941-a4f0-2ceea7e0c1ee 1 Other Other +8e8ee9fa-4f3a-4c1a-a59b-cacad67b30f7 1 Other Other +8e8f406e-934d-4d0a-a54e-239d66f64e22 1 Other Other +8e8f76e7-956c-4de7-a66a-dc3969b862f8 1 Other Other +8e8f8702-bde3-4265-9b4f-2eebbbfc48e8 1 Other Other +8e8fbc35-f418-4427-b604-6befb2e464f8 1 Other Other +8e8ff1d6-87a3-4f97-87d6-2aea2885f65c 1 Other Other +8e9025dd-b7c7-4fd2-9aa7-a74c12506bc8 1 Other Other +8e9038f0-28db-475c-a20f-0aa1f6db77d0 1 Other Other +8e903e06-fb6c-446b-8ae6-708838b77ada 1 Other Other +8e905571-7573-4138-8c74-6ec3d8f891e8 1 Other Other +8e908824-f652-4a39-ac6d-9dac588fed5d 1 Other Other +8e908b27-3e3f-4231-8c2c-1f73ba50f67f 1 Other Other +8e909cf9-8676-4942-a82d-9f86838acd5f 1 \N Other +8e90a375-e923-4edb-b8ce-9f276e174031 1 Other Other +8e90c218-dc71-4434-bd0b-fdb8c379562f 1 \N Other +8e90dd06-e113-47ca-a6fe-34e2f02ed0c8 1 Other Other +8e911b9d-a894-4e61-b898-36b49a25e41d 1 James Other +8e9148c8-8b61-483b-8471-752577a8d61a 1 Other Other +8e916f37-e167-4ac7-8131-66166a4c21fb 1 Other Other +8e9177c2-5233-4398-acda-48713f97e108 1 Other Other +8e91843f-fd52-4aa1-92a9-4e3139651238 1 Other Other +8e919ac7-863b-4c74-8651-c76d91f542f6 1 Other Other +8e91e69a-f440-425b-b532-0820c1b66de2 1 Other Other +8e920b5d-06a1-4375-8c6f-13716b2c95d6 1 Other Other +8e923966-39b4-4232-bb79-2164252e0238 1 Other Other +8e924fdc-a1b2-46e5-bdce-a35a51defe64 1 Other Other +8e931a72-2689-4b8b-bea7-358a2e5a5590 1 Other Other +8e932e4c-aff4-4b21-b118-ec9d8d9e362d 1 Other Other +8e936dc1-9679-4e04-a133-17b6e74896ed 1 Other Other +8e93ce2d-8626-4893-b478-4cf0f78c4b39 1 Other Other +8e93d02c-2378-44c4-9236-0b871341bc86 1 Other Other +8e93f0cc-56c9-42dc-869e-03616968fce8 1 Other Other +8e944485-48c9-4c5e-8de5-6ee2fe63a9d3 1 Other Other +8e94b306-10fc-4f1b-846d-84dfb4e968bb 1 Other Other +8e953dac-5649-4fcb-b507-bcd1e4118826 1 Other Other +8e954436-81ad-4dd0-b0be-b09684ce3025 1 Other Other +8e95457c-a1be-4d4a-b5ac-05a089db2442 1 Other Other +8e959ca2-f431-46ca-a3bc-e35e11868af1 1 Other Other +8e95a545-e625-41eb-a9d4-3cbcb6816e16 1 Other Other +8e95d3a5-0fd9-489c-8f75-3bbc3529a760 1 Other Other +8e963cb1-860f-4267-b314-3cb36c00668a 1 Other Other +8e964405-9bd2-4727-a90b-516c201ef9fb 1 Other Other +8e96483d-edf4-4368-abb8-2161dac6999b 1 Other Other +8e965b73-3ba8-4472-bc2b-d2e2dfa4f855 1 Other Other +8e966638-2b80-44a7-9c50-5c8b567c71bb 1 Other Other +8e96799e-68a8-4036-8ef7-14560693ffc9 1 Other Other +8e967a48-03fc-440d-8a41-f8fba4c36751 1 Other Other +8e9688da-daf2-4fec-8c2e-97a198c0fa77 1 Other Other +8e96a296-75e2-41d7-9d63-a90f8eb68a90 1 \N Other +8e973354-2d10-48ca-a18d-9eebb78251c9 1 Other Other +8e97883b-b681-434b-997a-591d6b535a4c 1 Other Other +8e9795f6-3591-47e3-8aad-91faa7b3c51c 1 Other Other +8e97b370-8442-486c-9650-60a81c6f8590 1 \N Other +8e97e880-4804-4a1f-85d3-f32d3303ed5c 1 Other Other +8e983530-c63c-4237-b8f9-1e61ac732096 1 Other Other +8e98383e-e5ef-49d9-ab22-7f123d8fc0b9 1 Other Other +8e984098-b23f-42b7-82c3-f05c8658da29 1 Other Other +8e9865bb-6bcc-4394-b1a1-76ed87d576e2 1 Other Other +8e986fb6-23b6-4aa2-8d6f-3b9094ba7b7e 1 Other Other +8e9873e6-773b-468f-a027-2c4a9f72d181 1 Other Other +8e988704-6049-41db-ba16-f2e0181bb143 1 Other Other +8e98dc00-d537-4022-8497-aee6522922e5 1 Other Other +8e98f468-407b-409d-99a8-539b85ee2f54 1 Other Other +8e98f9b1-57ff-4dd7-b7f3-c8df5d8a6e07 1 Other Other +8e9919d5-db07-4d17-be03-3eeaa98a2720 1 Other Other +8e994029-960d-4c34-a792-943f437c2f9c 1 Other Other +8e996573-64f7-4a6b-8a22-77987ac88497 1 Other Other +8e99aba6-977d-431a-9414-a20624a1704d 1 Other Other +8e9a0c36-d34d-4453-b743-c87ce5a0555c 1 Other Other +8e9a4d01-cf8c-4f53-b045-8373a445350e 1 Other Other +8e9a79c5-c807-40c0-bdca-0650d3a621f3 1 Other Other +8e9b764a-8441-46dc-9375-6d8644dc1f5d 1 Other Other +8e9b962b-c57f-4633-8772-9ecd5e16a0aa 1 Other Other +8e9bd0d0-27f0-48bb-9e77-0c8d463c437c 1 Other Other +8e9bf4c7-2d40-40e5-8422-2ca393b37dde 1 Other Other +8e9c47ec-77e4-4f3b-8f61-1823558f3097 1 Other Other +8e9c9811-e383-4f10-af6a-6d723a664eee 1 Other Other +8e9cb055-37c1-49af-9d9f-4fe892bc37cd 1 James Other +8e9cf865-1d0b-49be-ba91-8979c3a4a22a 1 Other Other +8e9d07e0-e002-4ef4-8ec4-676852824635 1 Other Other +8e9dd1ae-4890-45d5-8026-f527ee3a01e2 1 Other Other +8e9df0af-31e1-4adb-ab8a-5d11d1563ec6 1 \N Other +8e9e18f5-916b-4b25-8889-e4d8870b07c5 1 Other Other +8e9e9e52-99da-4db1-8934-75ac9a54ef36 1 Other Other +8e9ea600-2507-4805-86e5-77fff76e9dcb 1 Other Other +8e9f0434-f7da-4170-9233-3fa09fcf92c5 1 Other Other +8e9f1c53-f5e2-4598-aba3-f45475752dcf 1 Other Other +8e9f4dd7-8723-4132-996f-1bf06e7e438c 1 \N Other +8e9fa765-7a9e-4b5f-a1d3-00ace91e63ba 1 Other Other +8e9fb4a0-8ace-48aa-88db-5cdaea7dd628 1 Other Other +8e9fb8d1-dee4-42af-a14b-42ea06d5f0ed 1 Other Other +8e9fea78-5708-42a1-b4e4-0d6f4e446ee5 1 Other Other +8ea02f6a-01ea-4125-93c1-538f7e1c972c 1 Other Other +8ea05707-51ba-4f1d-b637-78fa2b3878d1 1 Other Other +8ea06606-e607-4d55-89af-a039347e8217 1 Other Other +8ea0695b-de9c-45e1-9634-612068f8ffe4 1 Other Other +8ea08681-9543-4481-9662-a1f61d540d5c 1 Other Other +8ea08aa8-5391-41a9-a871-63f53364c21e 1 Other Other +8ea08d23-d147-4f1b-9fea-3f8a76e0b8b8 1 Other Other +8ea0cf17-bdf8-4aa1-b5da-37a12a8266fc 1 Other Other +8ea10272-3e8f-4365-8205-83741412cd1a 1 Other Other +8ea13209-600e-4871-9d6f-0b604162d40f 1 Other Other +8ea1b03f-959c-4849-949f-269e3dc400f5 1 Other Other +8ea1d5ec-de4d-40c6-8e78-22b9f3f92071 1 Other Other +8ea1faff-7c0a-4c88-9f8d-7659b6d48cbd 1 Other Other +8ea24669-b858-4341-bddb-0fe10061970c 1 Other Other +8ea2c857-e55c-4995-976b-1b2ffcb1cbb3 1 \N Other +8ea30d69-c440-4760-8ab2-f2dbeff37ce2 1 Other Other +8ea31f77-0164-4752-97db-af8af3e24e48 1 Other Other +8ea34337-72dd-4b7a-acc0-b60b50aa37d8 1 Other Other +8ea350db-eb45-45ae-b8b0-56eae56d0c4e 1 Other Other +8ea3aade-8844-4485-89b2-0a1f00c70280 1 Other Other +8ea3ec85-658d-4c20-adcf-d2957ae6a2ab 1 Other Other +8ea4175c-6174-44eb-a2ca-5e6f336c06e3 1 Other Other +8ea4dad9-7c95-4bff-abe7-50f8771a0c89 1 Other Other +8ea54ca7-4822-459b-8ef3-b3b8d6d86cf2 1 Other Other +8ea580e9-70e1-48c9-aeb2-a0d88d9b82d2 1 Other Other +8ea61cd7-ec57-4aca-95f0-2ab75175ca16 1 Other Other +8ea61e68-c159-45cc-8265-989a2ad5aba5 1 Other Other +8ea62fae-9b8a-458f-a06d-c26befac9213 1 Other Other +8ea6492a-acfb-4ccd-a91d-a856d76e0229 1 Other Other +8ea65991-9e18-41d8-9ee3-0f63a294069f 1 Other Other +8ea65d29-6751-4d91-81d4-d35ecd37ba83 1 Other Other +8ea6803c-1489-4591-a9cf-f14c1f87c4ae 1 Other Other +8ea6a7a1-2b2d-4d51-a67c-41019b3b8e1c 1 Other Other +8ea6cded-1a0c-447a-8e55-b566b58396df 1 Other Other +8ea72e73-a331-4b68-9101-f392d3f0a3c2 1 Other Other +8ea72fee-9932-40cb-8321-f75ea7ca85bb 1 Other Other +8ea73089-e4a9-409e-a422-d4f8e2ec1725 1 Other Other +8ea7402b-31d1-459c-a937-b8b996709f1f 1 Other Other +8ea7682f-588a-4a4f-9d4e-9904665420d3 1 Other Other +8ea79c50-4852-4b22-b20a-29fb8851a4c5 1 Other Other +8ea7dfe9-77ab-4dda-93be-b2ff3b40d784 1 Other Other +8ea7ebcb-4814-4815-90d3-6e52f526b4e5 1 Other Other +8ea7ec4a-598d-4c41-a64d-055e6a6ea91f 1 Other Other +8ea850fa-1cd3-4925-a122-651575e8a6c1 1 \N Other +8ea86231-11d9-49a0-bd67-72d33138b705 1 Other Other +8ea865b0-ec2b-4334-98d8-a4d0e8904e9a 1 Other Other +8ea8a5d1-a477-4da1-8a29-26b182f2cc22 1 Other Other +8ea8f51f-0361-42a7-9109-7c9866ed3069 1 Other Other +8ea8f9cb-6172-47ba-a663-526efe4abae1 1 Other Other +8ea916aa-f576-4f40-8b23-6981a723770b 1 Other Other +8ea9c31b-907d-4dae-9319-3cb4db3de732 1 Other Other +8ea9d6b2-96de-4f69-a3aa-04751b855408 1 Other Other +8eaa7aae-9ec1-4903-8e47-5a70dc1dfc3e 1 Other Other +8eaa8904-5bc3-463b-82d0-683821bd8e4e 1 Other Other +8eaacdcb-fa2d-41c9-b94b-354a5dc6f5f8 1 Other Other +8eaadc6f-8a95-4f4d-bf84-0ae3b00b5d48 1 Other Other +8eaaf6e5-8cd7-4c91-bbcc-9d587e093a3c 1 Other Other +8eab12c5-ab69-49ef-970f-216dff8856c7 1 Other Other +8eab211f-f771-4740-be42-92d8e7fd5aa3 1 James Other +8eab2c86-8500-47ae-9bab-c3c5cfe59d79 1 Other Other +8eab66c0-f392-46ca-9959-49a4064882d8 1 Other Other +8eab67a4-90c6-4413-b50a-88d4dac0593d 1 Other Other +8eabc38a-b40c-44dc-9c9c-5e2d897d92f3 1 Other Other +8eac0716-1302-4bf0-9385-c00694bc41fe 1 Other Other +8eac0b0d-8739-4bd1-af03-75b2acd63041 1 Other Other +8eac2486-b22d-43e6-adf9-e2973f60f7b7 1 Other Other +8eac3c8d-7a06-4ae8-ab18-59215f4b48a3 1 Other Other +8eac4f3f-ff4e-47f7-92c1-7225f56d552f 1 Other Other +8eac786a-963f-42bd-87b7-79886801b140 1 Other Other +8eac947c-84d0-4bc4-ad6a-6b98d5d95361 1 Other Other +8eacec1f-2d3e-4934-8d73-357404bd3c8e 1 Other Other +8ead8780-cdf8-4fc5-a504-d753e861f2d9 1 Other Other +8eaddb95-0007-4dfb-aaa8-48747ceb81bf 1 Other Other +8eae07e1-7044-422a-a1d4-7419abf47e63 1 Other Other +8eae9458-5e08-4f3e-9459-6e936bdb4948 1 Other Other +8eaea0d7-37c2-40fe-91a7-7e2fafaa09db 1 Other Other +8eaf4590-72d2-4dcb-89e6-193bba93b0d0 1 Other Other +8eaf7b10-d26a-44dc-b310-2ee59e477c98 1 Other Other +8eafaee4-cf9d-424f-9800-24c1295dea87 1 Other Other +8eb01c9d-60a6-491e-bdf1-6f79d809f0ed 1 Other Other +8eb0867c-68f8-45cb-b9cc-e9c1401cfd33 1 Other Other +8eb08eb6-6fe7-462a-83ac-b3ca53cc4c3a 1 Other Other +8eb0bc4d-261a-45ba-b363-bc196a0d99fa 1 Other Other +8eb0c069-3d9c-4429-ab7b-54df1cd76cfc 1 Other Other +8eb1433e-a9cb-4dfc-becd-8f16fde6ea89 1 Other Other +8eb145d3-a027-4c5b-b284-647c7555e0db 1 Other Other +8eb15209-6fb6-4e19-9d27-5f4cb150876a 1 Other Other +8eb16bc7-3cf9-40a7-bc1c-b8d988e06fac 1 Other Other +8eb16fcf-7908-42d0-bff6-0522715fd79e 1 Other Other +8eb21a2a-403c-466b-9661-d9536dbcb0f9 1 Other Other +8eb28f68-b03d-4cf9-b9db-2a0379d0e56e 1 Other Other +8eb290cd-5198-409d-beeb-8cf32f97e053 1 Other Other +8eb2a781-ab69-47e1-969b-6f6d5b685529 1 Other Other +8eb2fff9-b25a-4f24-b58a-4a8ca2218694 1 Other Other +8eb33fe2-31c6-4e63-8b81-f5265bcc2602 1 Other Other +8eb35eca-e2ca-4d29-b685-56ef3598580d 1 Other Other +8eb39f80-c793-48d0-a7d8-19f1cd952fce 1 Other Other +8eb3a4db-9625-4223-96f8-64988f44861b 1 Other Other +8eb3e602-eacc-41b9-a04c-5f652daa3a96 1 Other Other +8eb3f825-2e53-4f44-91cd-a5a2714c5194 1 Other Other +8eb400f5-0654-47e5-8df6-d89c3a1fb773 1 \N Other +8eb437b2-1463-44d7-a149-640bcb747a76 1 Other Other +8eb44b57-1e66-4e76-ac9c-154d36cd284f 1 Other Other +8eb45d6f-0c99-4a7f-9d5f-555ad4d959ba 1 Other Other +8eb46d77-e39f-4bb9-89cc-623589e25aa7 1 Other Other +8eb48dc4-a823-4fa5-8538-4c6eb7967d99 1 Other Other +8eb48ebc-f400-4592-8315-842d9f802690 1 Other Other +8eb4ab1b-ca58-4f73-9ab7-1a8afe8156fd 1 Other Other +8eb4c52e-e5f1-4a92-95b7-38dbece8093c 1 Other Other +8eb4e132-59fc-438d-8eab-cfea7576d577 1 Other Other +8eb4e265-41b8-4e5f-9caa-d95677f537fb 1 Other Other +8eb4e380-6975-43e8-98ee-8bfe9b99411c 1 Other Other +8eb503d1-a35c-495b-86c0-ed74894b76f8 1 Other Other +8eb50b16-586a-49e1-ba55-cb67a49aa0ff 1 Other Other +8eb5aca5-7f6b-47d5-8a2b-a79518890fca 1 Other Other +8eb5f740-06ff-4599-9dd1-754183655d5d 1 Other Other +8eb69008-05c9-404f-9b62-9cae81519e35 1 Other Other +8eb6a873-6842-47e0-9e6e-e62e8a591c57 1 Other Other +8eb6b1ab-eb1a-4e47-9864-0d6d8cb860bb 1 Other Other +8eb6d965-5526-4334-b603-6da331c8978f 1 Other Other +8eb6e7c8-18c3-406e-ab12-df04a3235c7c 1 Other Other +8eb6f5aa-d1a2-40e7-8126-f11580ab23ab 1 Other Other +8eb700b0-f25e-468c-8548-62bfa595782c 1 Other Other +8eb7838f-e9fa-4eb8-80ee-b7cb156af86c 1 Other Other +8eb78e98-998e-4878-ba4c-8ae539dbe745 1 Other Other +8eb7b348-4ac7-4d0d-9b7a-07de851cb6a3 1 Other Other +8eb7b449-7fc9-451e-b4be-54dbf203e6d3 1 Other Other +8eb7c6f0-e2e7-4765-8da8-86784c234d64 1 Other Other +8eb7e242-7bb3-4635-899e-fc602f263e19 1 Other Other +8eb7ff3b-bc69-49b6-beb7-07bb1fa7dab4 1 Other Other +8eb837fd-a899-425c-9880-083eaa4545ad 1 Other Other +8eb89784-6fac-4467-aab5-c4ae86ab4c80 1 Other Other +8eb8b083-1cd5-4921-be04-09f3e0ef09f2 1 Other Other +8eb8e0ce-f182-4ee7-9a1a-bd4f589b804e 1 Other Other +8eb97149-c1c9-46b5-9a82-f9a2482c5f1d 1 Other Other +8eb98460-d2d7-4a77-8ba5-1dac62c4dc00 1 Other Other +8eb9e92c-4988-4d34-9009-ed9eaaf53f64 1 Other Other +8eba798b-b0f7-4eab-bad1-658cea98d90b 1 Other Other +8eba8236-3bec-4d0d-bb73-d1a8bb3543cc 1 Other Other +8ebac9ab-39d3-4cfd-941a-dd563a015351 1 Other Other +8ebb2646-8da2-472a-9c1f-a130614a5336 1 Other Other +8ebb4ded-ca84-43bb-affa-0d30f4076ac3 1 Other Other +8ebb52c4-5a2b-430b-ac6b-875f3a9693a8 1 Other Other +8ebbe6ca-7a8d-4b59-8ec5-42d58c8e55a9 1 Other Other +8ebc86ec-21ea-4503-ba28-bbbd7cddd31d 1 Other Other +8ebca5a1-eb7d-4081-91ed-58ecce8d27eb 1 Other Other +8ebd6b06-ae57-49b1-b949-f567bd63adab 1 Other Other +8ebdd0ff-6291-41d5-a4b4-f7e02e2be7ea 1 Other Other +8ebdf194-2042-4194-8b53-56fac492a090 1 Other Other +8ebe031a-d347-4894-b4b1-6ce3f1f3b22b 1 Other Other +8ebe202b-5b6f-420b-b0cb-2538e1c8aebb 1 Other Other +8ebe5d96-eb69-40af-ace6-0e2c721d6619 1 Other Other +8ebe61aa-04b9-452a-a237-3d68bcd6bfa2 1 Other Other +8ebea0ff-319f-4d18-8b5e-8a495c76b2c8 1 Other Other +8ebeee12-d53c-4b4f-8c47-26b80306f7fc 1 Other Other +8ebf4e65-c670-47a9-95c5-37c0ee8994c7 1 Other Other +8ebfcd65-c70f-4696-8fe4-5bdfa1fb74ee 1 Other Other +8ec05506-e0f0-4264-9920-a0d537c514f4 1 Other Other +8ec06017-59f0-4ae1-a608-a6f066dfc812 1 Other Other +8ec06eee-c8c5-4d0f-8417-f86dc3593855 1 Other Other +8ec087ed-0d1e-4ba0-8045-7dd5b7fccf10 1 Other Other +8ec097ed-fb72-4129-a094-dceb8602d544 1 Other Other +8ec097f0-5a05-4619-af93-1569f4703328 1 Other Other +8ec0bc3d-bf30-4bf9-90d9-0f2d89b8f364 1 Other Other +8ec15b6f-487a-4333-b1c9-7ed9f6637424 1 Other Other +8ec1d6e7-5197-44a1-98c3-920c3653e477 1 \N Other +8ec1ef78-b68c-492e-bca1-82cdb02f1d41 1 Other Other +8ec21105-667d-4306-b48a-f9f7e7b06b9b 1 James Other +8ec25f50-bf1a-4598-9805-0fb75d71c447 1 Other Other +8ec27c8c-cc53-4ba7-a74a-b92bded6b36a 1 Other Other +8ec29722-cdcf-43e9-9cfd-ab2b29909efb 1 Other Other +8ec2c3a8-ada2-4861-b423-603284937ba4 1 Other Other +8ec2e633-2bed-45b4-b6ad-ff07d94d6ada 1 Other Other +8ec2e801-aef1-4484-a194-d714695df2d3 1 Other Other +8ec320fb-be87-47b0-aed5-e6d672896565 1 Other Other +8ec327b2-8d2d-4e89-838a-7db53958f7ed 1 Other Other +8ec353ea-2b43-43b3-ab06-01ebdc65e35a 1 Other Other +8ec3868f-a948-4d19-af75-ee5b02851dbc 1 Other Other +8ec38a0d-580e-458c-a63d-026c5d1aa6ed 1 Other Other +8ec3aa43-5a38-4d3e-831a-1f0afeb61ce5 1 Other Other +8ec430b4-c704-4bb5-8305-6eb43dab79e9 1 Other Other +8ec43b1b-3998-475b-a22f-d9340e55a49d 1 Other Other +8ec4c598-cfd9-42d0-ab2c-e87fe75235fa 1 Other Other +8ec4db3b-3711-4afe-b1b4-aece285f5aa2 1 Other Other +8ec4deb9-6287-467d-b207-2dcba24a355a 1 Other Other +8ec4fa33-9ce3-4150-958f-b509fa138b39 1 Other Other +8ec5973b-4e91-42f3-8e93-cc8f555136bf 1 Other Other +8ec5c36b-1ea5-43eb-b4e1-4b3811e2babf 1 Other Other +8ec60182-34d0-4420-b1ed-f46ff487b625 1 Other Other +8ec654c8-c4e0-40d4-994d-6651d6ab7432 1 Other Other +8ec669b2-53eb-4614-bb94-450cf14ab03b 1 Other Other +8ec6a1b6-b368-41cd-85fc-225eadd97ddf 1 Other Other +8ec6f175-c76a-4928-8b92-df4997b22714 1 Other Other +8ec7161e-4031-49fb-af8c-43133895acae 1 \N Other +8ec74ff9-6558-4a6c-b3b3-44414ca5ce32 1 Other Other +8ec75da1-b516-416f-b000-f9ba16dae40d 1 Other Other +8ec7baa1-8a01-4f0f-95d2-e6c63fc6e36f 1 Other Other +8ec80624-1b41-4c8d-9d50-4adc3e21b45b 1 \N Other +8ec87647-e793-497e-8842-4cd2d5297e19 1 Other Other +8ec8cd8c-981c-4568-b021-a3dde68f6575 1 Other Other +8ec8f1a0-34f3-4e26-9f76-5477c85721f7 1 Other Other +8ec8fc2c-f214-49fd-9468-3d2f8ee56455 1 Other Other +8ec98e3f-438d-4db4-a3dd-7c0ebdd39753 1 Other Other +8ec9d5e4-def1-44cb-a3ee-521f6a9d9197 1 Other Other +8ec9e40e-4cbc-4f27-a9a8-1624c5c721ea 1 Other Other +8eca131b-0bce-4f7f-9f05-a8bccff1a720 1 Other Other +8eca7700-8818-4e14-8f53-fceea2e42e7d 1 Other Other +8eca8042-8c86-48d4-8dee-e3672898e07d 1 Other Other +8ecad5fc-0213-44c8-9a82-8e24f6aedf4e 1 Other Other +8ecadb8f-2f5d-4480-bdb4-f19d93ab9f39 1 Other Other +8ecb03b4-f40b-44f2-8f14-367128799e87 1 Other Other +8ecb106a-7d81-4d24-8c04-69c6747e68a6 1 Other Other +8ecb7111-3f9d-4959-a972-fb58e62e486a 1 Other Other +8ecba899-57ea-4615-9215-becb737596ea 1 Other Other +8ecbec42-de36-4bbd-ab17-d99f5ca6db52 1 Other Other +8ecc3369-045c-4f9d-8647-1be82de17070 1 Other Other +8ecc657c-b8b8-4bc7-b9ce-41f1f694c590 1 Other Other +8ecc6944-3b1d-4dd9-97a3-b73f5aecdad1 1 Other Other +8ecc69cd-9b6b-45f9-b675-e8c24e3108b3 1 Other Other +8ecc86c9-9730-4413-a671-cca5358a3e96 1 Other Other +8ecc9721-9864-4816-9b0d-0891f2271bc0 1 Other Other +8eccfb38-8cd9-4980-bcff-92aa37744de4 1 Other Other +8ecd98fc-31c4-4419-b938-02e833d98ac2 1 Other Other +8ecd9d81-8464-4bb3-bb4b-0d82f4713f10 1 Other Other +8ecde4b1-bc30-4851-823a-802b9ba3a98a 1 Other Other +8ece2ff5-2f61-4bf3-b155-5bba0d68e71e 1 Other Other +8ece4b28-82e4-490e-8e89-b16ef780ebff 1 Other Other +8ece703b-ff58-4129-aaff-40a69cec15dd 1 Other Other +8ece7189-691a-4950-88d1-4fca8ae110d6 1 Other Other +8ece8044-c14c-4d47-adda-d8cd5a87710f 1 \N Other +8ecea278-99fd-442c-a198-c6b6699cd944 1 Other Other +8ecf27ae-b096-425a-ad28-f30c1e3de7bc 1 Other Other +8ed05fcf-2ab3-4c0e-8133-ee14bea93d41 1 Other Other +8ed08d33-0c84-4ac7-9143-bee14eaad276 1 Other Other +8ed09f38-82c2-4f46-8382-3768ac12f272 1 Other Other +8ed0a803-8b48-4211-8fef-75271e782181 1 Other Other +8ed0c4b0-627b-4e93-915d-d6bdc1f26ad7 1 Other Other +8ed0df3b-dd01-4b27-83e7-569a4d0df813 1 Other Other +8ed114e8-e7dc-47a2-ad2a-84c2704736ad 1 Other Other +8ed13271-8e11-4a69-96ab-8f08af673397 1 \N Other +8ed18e7c-e882-4312-8c87-eacf97ceb5c5 1 Other Other +8ed1ac13-02d9-4f1a-b65e-bede0982bd8b 1 Other Other +8ed1f494-9dec-4ade-aeb4-c59d9660f765 1 Other Other +8ed22edf-2017-4057-b482-cc774e7f08b7 1 Other Other +8ed27630-f78c-4f88-81b7-61d08192814a 1 \N Other +8ed293b7-5bda-479b-a745-b4d249329d4b 1 Other Other +8ed2be37-8434-4625-8baa-6463e8098190 1 Other Other +8ed2be53-e8fa-462b-b4ed-1fb8539f9147 1 Other Other +8ed2f6f6-c95c-4547-b096-00518c137cfc 1 Other Other +8ed3045f-9502-4648-88d6-01450ae62c0f 1 Other Other +8ed3e13d-3448-4aa1-a3b8-2676313c67fd 1 Other Other +8ed3fd51-dd67-4e51-90a1-5574ec7bfd58 1 Other Other +8ed444d4-0b7e-4da8-be5b-120cec0545c6 1 Other Other +8ed459ec-31bd-4dfe-a346-1ee61a03f5a3 1 Other Other +8ed4b957-4984-466f-92d6-261a24677058 1 Other Other +8ed50fdf-c6d5-48df-bd82-f4876a4df94b 1 Other Other +8ed5255f-21fe-471f-ab3c-ad7699cb76e7 1 Other Other +8ed576b2-88ed-4c1f-905e-a6922c074f4d 1 \N Other +8ed5c010-b6ee-417d-8898-8e24352fa69e 1 Other Other +8ed5e802-94e6-4e25-a2e4-4f46281cd9e7 1 Other Other +8ed5f781-8968-4a97-b6b7-f2f9348daa00 1 Other Other +8ed634e9-ee19-4613-bf29-689d7dba3050 1 Other Other +8ed64b8e-54da-42d4-ad9e-988802779d7c 1 Other Other +8ed66c52-ce85-4624-bce8-f7b7596c2bbf 1 Other Other +8ed67d32-165a-4a73-a402-87b614bf0a94 1 Other Other +8ed6d182-6284-4bbd-afbc-1fe5d45a2e47 1 Other Other +8ed6daa2-0175-48e6-a50e-0f39b184e34f 1 Other Other +8ed6fd06-8f89-4897-8596-934744bf10bd 1 \N Other +8ed7a5f8-e0ca-4f3d-939f-e6b79c4195cf 1 Other Other +8ed7f967-9ce6-4038-b905-c814c8f3a818 1 Other Other +8ed80e37-52f3-4ce3-a8f7-cd09c2ede656 1 Other Other +8ed83bb6-ad30-437a-a577-00f0575e128e 1 Other Other +8ed8b461-9a87-4648-ab55-2322b4dfdb27 1 \N Other +8ed925b1-0e98-4f2f-ab56-e2a3a57428f2 1 Other Other +8ed92dbf-55ca-4692-9caf-18609d8bf4ec 1 Other Other +8ed940dc-dda4-4c71-a01f-b023b9891dc2 1 Other Other +8ed9540c-1a3e-4c41-abbd-7b4f378df234 1 Other Other +8ed9a057-ee4e-49e6-8d56-ad8412b557d5 1 Other Other +8ed9b5a0-d7c6-4375-9eda-6412917effbd 1 Other Other +8eda2441-c685-46cd-9ec7-50ce55b8368f 1 Other Other +8eda4385-4090-427d-9ff9-054498c347b9 1 Other Other +8eda6418-8f02-4daa-b5ec-5e05be72dee8 1 Other Other +8eda6489-6a20-470b-aefb-446491384aa6 1 Other Other +8edaa99b-a721-42f6-b72e-8760350e24c3 1 Other Other +8edad8bf-bf33-44eb-937e-a744b5bf73b3 1 Other Other +8edafd49-bc94-47ab-91a3-09101a38f9c6 1 Other Other +8edafe25-d6e9-4c8a-af46-13acd620a265 1 Other Other +8edb3461-30f9-4d54-9a3c-301e8897c7f3 1 Other Other +8edb928e-2441-46b3-a480-d3014e68bca7 1 Other Other +8edbdb3e-c03b-4167-8f2a-99c5940cdd05 1 Other Other +8edc1a5a-8882-4ef1-b7c1-bf46ef31f60b 1 Other Other +8edc5209-f2ac-4f72-8c68-b40b5cde2f3f 1 Other Other +8edc5ad3-254f-4c99-b717-6dd019b48551 1 Other Other +8edc741f-8071-4b91-b2ff-d1fe862f7ceb 1 Other Other +8edc78a3-da43-4cc8-ae08-113db633c734 1 Other Other +8edc8929-4bfe-43d7-852e-5cb8c23c1197 1 Other Other +8edccf17-ee2d-461c-8fb1-2952001cdaed 1 Other Other +8edcd142-fc61-4dc2-bb15-d8946ebeb0e5 1 Other Other +8edcfeb1-9da2-4fb6-acc1-0e4ce9e5bb17 1 \N Other +8edd1e44-27e1-4631-890a-a7475911da6b 1 Other Other +8edd9383-805a-4255-a38d-1b123a665459 1 Other Other +8eddacac-b064-402c-ae94-24bab4f4d415 1 \N Other +8eddf76e-8e01-4b5e-b2b4-27c0cd0e03ad 1 \N Other +8eddfdc3-a402-44f3-8945-f2f50df99250 1 Other Other +8eddffd3-0ac3-446e-b014-12ec800c67ee 1 \N Other +8ede1dd0-59fd-4d84-8125-80c1df0b0e41 1 Other Other +8ede3a45-0d77-4b1e-a868-62f42d521b84 1 Other Other +8ede4bc9-15fe-4b5f-83d1-0b3954def78f 1 Other Other +8ede6820-c6d2-4ae3-be84-3e8c77d3887a 1 \N Other +8edf467c-c60e-42e5-a7bc-7bd246d62fbd 1 Other Other +8edf4b83-5e29-46d8-aa8a-5818e9fdb352 1 Other Other +8edf8263-9feb-485c-9e4b-0cc00c138142 1 Other Other +8edf858e-96cb-4ebc-bba4-e5b4b05706a6 1 Other Other +8edf9d61-a927-4400-a0d0-dc06caa6ab3b 1 Other Other +8edfa9dd-36ef-4c45-9bb2-f1b36d4ba956 1 Other Other +8edfc204-9176-4a21-b441-ded05f65fa40 1 Other Other +8edfd6c7-3a5e-4bb7-a374-bf733dc05595 1 Other Other +8ee07f63-85ca-48da-9edc-186e42d92c85 1 Other Other +8ee08661-29ee-4fd6-95a3-b43ec7f4cd4a 1 Other Other +8ee098f5-78d7-45dd-8f14-73eec7607c60 1 Other Other +8ee13f7c-758b-4396-ad63-1c614556a838 1 \N Other +8ee16f5e-91a5-41f0-bdf3-1c031daf4737 1 Other Other +8ee18ad0-d2e9-495b-97f2-ceff76a3d059 1 Other Other +8ee19e98-b66b-4c83-95f5-c1a32c6deec3 1 Other Other +8ee1a629-0138-47b9-9123-a9d71cf3b9e4 1 Other Other +8ee1df3c-cb0b-4f0e-8ab3-03cbac81828b 1 Other Other +8ee1e429-e447-41a9-ad0f-f6bf63103ae8 1 Other Other +8ee219ab-4adf-4e99-9f2a-3221d918ad20 1 Other Other +8ee21a1b-9f01-4565-ac3d-3c4dd7d4c6f6 1 Other Other +8ee229d1-f458-42a8-9af0-6b11cab471e7 1 Other Other +8ee23ef4-5ecc-4fb4-a8e6-f6ac16137510 1 Other Other +8ee26a14-e8e0-4a4c-a61b-31ddd7eb85af 1 Other Other +8ee26cbb-a529-4c3f-97e0-27c5e7561a50 1 Other Other +8ee2c064-3478-411b-b5e2-e3c717e9ad27 1 Other Other +8ee2d177-2957-49f0-bf3d-69f136f55e09 1 Other Other +8ee2fc97-b4ce-47e3-be0c-d37ec446cfd8 1 Other Other +8ee3373a-59ab-4394-bfec-8b134c06d17c 1 Other Other +8ee34414-eb12-4f7d-ba72-c5a5ad851da1 1 \N Other +8ee3d5ea-7c9d-478d-bba8-a2ec8430f83a 1 Other Other +8ee3e708-4ec8-4c12-9df3-9a66787c94d0 1 Other Other +8ee41c20-20fb-4254-a1e3-03c2d2ee1379 1 Other Other +8ee431fc-3f55-4e50-b46e-a8088d65f072 1 Other Other +8ee49980-ab83-422b-a8c0-009b50e55a82 1 Other Other +8ee50e3a-8a25-41ea-9afe-d8c5a7a29310 1 Other Other +8ee52548-01fb-4ead-9246-092f727ca183 1 Other Other +8ee58034-8d1b-4d2f-85fa-b43889de48da 1 Other Other +8ee5956a-88a0-4c68-a53c-7fc802309898 1 Other Other +8ee5e6d1-a10d-4e7f-89c2-92844969540f 1 Other Other +8ee5e978-da52-4a2a-b3df-20a56f278534 1 Other Other +8ee5f40a-67fd-42a1-b574-cf2d565088fb 1 Other Other +8ee60842-d97e-40a1-b813-cf076521af2b 1 Other Other +8ee61899-3c78-4f74-89c7-e27e371ceac0 1 Other Other +8ee6314b-b7c8-4f85-a3ee-4b279bc2801d 1 Other Other +8ee67852-fbbe-4f8b-80f0-b60e3332cc1e 1 Other Other +8ee6852e-7b18-4193-949b-3caa45319f2c 1 Other Other +8ee6c8d4-778f-4465-9fc8-a62dfa7d52d4 1 Other Other +8ee6c8ec-8312-450a-a584-4401fa5334e0 1 Other Other +8ee6e2db-e269-4700-9aa9-4b8bbb3838fb 1 Other Other +8ee76eb3-54be-4946-a683-83cb2397b4ec 1 Other Other +8ee79783-319c-4411-b83e-60dc5e6acebd 1 Other Other +8ee7a589-46f1-4334-8bbe-6dce4c99be38 1 Other Other +8ee84c8e-adf3-4df9-a3a9-1afb24865e23 1 Other Other +8ee84e98-b299-4ee5-8bfc-695603df6fc4 1 Other Other +8ee86e3e-974a-46ac-9a6f-c0f99734526c 1 Other Other +8ee8adcf-e908-4095-b96f-300782c02721 1 Other Other +8ee8e97f-2387-42e9-b406-2fcd471123fb 1 Other Other +8ee8fe01-0e24-458a-8310-e153d858c4c5 1 Other Other +8ee91d62-0eac-495e-a6ce-849497cffd91 1 Other Other +8ee932b8-1270-4fc4-8feb-f48c8cf34b3d 1 Other Other +8ee94e5b-a606-4e41-b4f7-b7ee4b7ee3a1 1 Other Other +8ee95262-f69a-4889-9a0e-32298e1f59e4 1 Other Other +8ee96de6-bfdc-45aa-8b89-11f37669757e 1 Other Other +8ee97a84-2a1d-45a6-b2be-2da443fd49fd 1 Other Other +8ee9b17d-ef2f-4a7f-b806-5b61b4942ac5 1 James Other +8ee9b845-38b2-46a5-bcc5-715d708514dc 1 Other Other +8ee9d173-7a7f-4f95-923f-c187c494e840 1 Other Other +8ee9ee22-581e-4742-bb7e-bd6289f3e2fb 1 Other Other +8ee9f975-0d7a-4073-8aef-75c6adf750a8 1 Other Other +8eea9f5f-c467-4dd0-8178-881cee5c45b9 1 Other Other +8eeaf42c-7298-480a-a10c-183bb8403831 1 Other Other +8eeb2406-685a-4c6c-8c87-27d834980025 1 Other Other +8eeb2b4f-e6aa-49bf-9a81-a8a92a3c7375 1 Other Other +8eeb3049-eb0a-4936-8aa5-b3fa4e1be5fd 1 Other Other +8eeb6243-41ad-4bce-a16e-b151afc2d999 1 Other Other +8eeb8319-7241-4aa7-9f0f-c21077f6ae03 1 Other Other +8eebacde-7ee7-4f68-b233-eec55e0d4061 1 Other Other +8eebaeda-b765-4bdf-96b0-f4084bd19da2 1 Other Other +8eebb4a0-efd0-462e-85da-c1cf95b0839e 1 Other Other +8eec26b5-1eec-4792-a6bf-fce185660e02 1 Other Other +8eec33e8-25c4-498b-9c8b-aaa21dae48d2 1 \N Other +8eec4a7b-0a89-4a77-8931-d9d163a6edad 1 Other Other +8eec5ac1-ddfc-403e-8c59-3b3f4b1b9515 1 Other Other +8eec9f2c-d7fd-4811-99a0-558985f243f6 1 Other Other +8eecb21b-f3c9-4df7-9829-1512fb8dd8a2 1 Other Other +8eecb92f-e2aa-4fb5-8a95-942563d7218a 1 Other Other +8eecee84-32f1-4270-af14-c521b957ad80 1 Other Other +8eecf823-5271-46c1-8430-c68939e43607 1 Other Other +8eecfe5b-6e87-4f22-87e7-47f637d47f4b 1 Other Other +8eed1670-5046-47a5-909f-101e640e2dfa 1 Other Other +8eed18c4-f054-4b59-b732-9219b26561cb 1 Other Other +8eed3ce6-035e-4856-83d7-fc043b883b97 1 Other Other +8eed7165-8b31-4275-b3c1-310ae5efe892 1 Other Other +8eede766-09c8-4e48-9a07-24f13078b308 1 Other Other +8eee60b3-ebd2-4b8c-9e4d-69ab7d6d071b 1 Other Other +8eee6f6f-989e-411f-9b08-16d36d6a82ca 1 Other Other +8eee876e-84af-48aa-8da7-703bdb46a4ba 1 Other Other +8eee8fe3-1a1b-46b1-b79b-2974a1075ce2 1 Other Other +8eeeca93-63dc-42f0-847d-9ce86dc71197 1 Other Other +8eef1f8b-4d60-47fe-9f89-a4af8af2ff74 1 Other Other +8eef3292-e84e-4ce0-a4a4-dc3bc17b1e8b 1 Other Other +8eef4b49-8efe-49d7-b13e-c4d3452baff7 1 Other Other +8eef9d70-4c3a-48c5-9f23-6dbf9d0f9b6d 1 Other Other +8eefbbce-cd39-48e2-9ade-160ba525965e 1 Other Other +8eefce0b-25c9-4b3b-bcea-140a735519aa 1 Other Other +8eefe2af-29bf-4b29-8b16-55076f556cd2 1 Other Other +8ef02a20-d1cb-4cc0-92a8-4ee2105f970d 1 Other Other +8ef02cef-245a-4520-8eda-f7a00c065969 1 Other Other +8ef0751d-1068-4db8-b337-d298da0e0075 1 Other Other +8ef07bb8-2af5-47ea-ac0e-ae7ed8074439 1 Other Other +8ef0ee7b-427f-417c-910f-1d21b847b9bb 1 Other Other +8ef11060-d658-4cb9-b788-2bc072ee3c26 1 Other Other +8ef11b29-7f3e-4925-bea2-82143360e79b 1 Other Other +8ef19427-1495-4c4c-a245-691e599b4f38 1 Other Other +8ef1e72f-a6fd-444a-86e5-c76a74e6faf5 1 Other Other +8ef1ec1f-5d7e-4d4b-9d0d-48afe088ba44 1 Other Other +8ef2368a-f4f1-4d76-ac79-23ae41e56886 1 Other Other +8ef24e18-23d8-472e-8cd4-96f839843313 1 Other Other +8ef2555e-672d-46cf-a32c-675067ac12ca 1 Other Other +8ef27916-6d0d-4246-8b49-49dc4a41c86c 1 Other Other +8ef2926e-1cf0-4779-b00b-07235e1ba394 1 Other Other +8ef2a1a1-30d9-4e1c-b88c-3a9e6e3e2f21 1 Other Other +8ef2b55d-27d5-4952-adfb-dfb3fe5245f5 1 Other Other +8ef2d0ac-3a9a-4ca4-908a-1f74b314cd66 1 Other Other +8ef344bd-8616-4a29-8354-5e77cf820112 1 Other Other +8ef34e76-4735-4d63-96fe-7351317bcfc7 1 Other Other +8ef35479-3f76-4a08-8176-8f16d56759bc 1 Other Other +8ef35d15-d54e-469b-b3d1-f9527c963b86 1 Other Other +8ef3776b-2554-43df-a44f-025277d48f8e 1 Other Other +8ef37b5c-59c7-4167-b5f2-51474b734716 1 Other Other +8ef38dfe-577b-497a-99ce-5ce444c34a58 1 Other Other +8ef3b889-8389-41ba-ae10-059bb40b8ea3 1 Other Other +8ef3f107-434b-4d9f-86b3-a0feefd1c485 1 Other Other +8ef3f5d3-1041-48d0-861a-4d92681526db 1 Other Other +8ef417a5-9c8a-4ba7-a8fc-4c81c5bfc895 1 Other Other +8ef45307-fc37-4efa-b7e6-831351fcc911 1 Other Other +8ef4b4ea-379b-4edb-8e42-f687d0efb20b 1 Other Other +8ef4e9e0-417c-46e6-b226-abd4241f57e5 1 Other Other +8ef52967-8526-423a-9f11-e580ebf93ffb 1 Other Other +8ef55519-1391-4276-b859-bb7c4cc02c37 1 Other Other +8ef57c30-370b-47b3-8968-405b8f05f9e3 1 Other Other +8ef58085-6237-410e-81dc-8553556cc813 1 Other Other +8ef5bffb-2145-404b-9416-ec78c1d8fea3 1 Other Other +8ef60b77-ff5a-47f6-a20a-7e5d2277f7e7 1 Other Other +8ef626a1-8f0c-4ec1-9f8d-99d971a4c2dd 1 Other Other +8ef631e4-b2bd-49c1-8c8a-9ee1e00ee93f 1 Other Other +8ef65eae-800e-4139-a103-a0794a412841 1 Other Other +8ef6bf1b-0e47-44a6-a9ef-9afba62e79e0 1 Other Other +8ef6ea69-52fe-4839-8d0f-874e9661829e 1 Other Other +8ef75136-6b99-41d1-8946-075130353775 1 Other Other +8ef75986-a934-46c2-a22f-2d53c29993da 1 Other Other +8ef76f18-07c6-4c7e-bfda-ae4fa7b0c5e4 1 Other Other +8ef7719e-5a5c-44fd-9814-8594e3107c89 1 Other Other +8ef779f6-58d4-4b43-a43b-8c1437479594 1 Other Other +8ef79600-bc99-4533-bf44-0737152c90da 1 Other Other +8ef7afef-d756-4082-8ff7-efed4d8b0333 1 Other Other +8ef7c07e-399e-490b-ac89-37ced63f1cb1 1 Other Other +8ef7e4cb-d338-49c8-bae2-efeefc236e28 1 Other Other +8ef7f692-a117-4210-833e-1cf2ee4b83fc 1 Other Other +8ef87179-540f-4b43-9bb7-48f55326465d 1 Other Other +8ef87581-25d1-4b6b-b4ba-fe0d2d123298 1 Other Other +8ef8dfc1-7478-4264-8303-8af8fdb4ea61 1 Other Other +8ef928e5-d817-4e5a-9e33-398120a21105 1 Other Other +8ef93b5c-0c2a-4090-ae38-db39f0e4476b 1 Other Other +8ef94d55-d8f9-45b8-a53d-4f516f60e985 1 Other Other +8ef95722-a8a5-42a3-aacc-1f788fe288aa 1 Other Other +8ef95db2-81e4-4264-bf17-952c88bf6666 1 Other Other +8ef96c1f-18f1-4436-a96a-a48ea0124c9d 1 Other Other +8ef96e37-2903-4072-9cf6-9b68c612a184 1 Other Other +8ef99906-1bbf-4c0d-90e3-8148f97f1414 1 Other Other +8ef9c96f-7447-47e7-a331-d954d9a312b9 1 Other Other +8ef9d3d3-fc94-4616-bb16-63cecc33a786 1 Other Other +8efa1aa9-605b-4dcf-a61c-15aae32c6dc5 1 Other Other +8efa7903-0e09-48c3-9618-2a5bb7703e3a 1 Other Other +8efa9168-95bf-48c3-84f0-b5da2fe2e886 1 Other Other +8efb161f-f30b-4e0c-8f8d-bacc2189769e 1 Other Other +8efb314d-9910-42ee-a221-fd8d1d9ecc86 1 Other Other +8efb4e37-852e-47cd-aa4b-4c46c903e1f0 1 Other Other +8efb663d-aca4-4504-85dd-c1062742bc5a 1 Other Other +8efb7716-fa6e-4e5b-a5d7-e4fcb8a88ae5 1 Other Other +8efbefc6-be4b-494e-9080-e09ee4827f96 1 Other Other +8efbf490-3afc-4ca2-b647-9992640c38ea 1 Other Other +8efc0c82-56b9-4684-82de-aad28aa9b42d 1 Other Other +8efc12ca-228f-4ec9-b56c-c7b8a3dcf2fd 1 Other Other +8efc2453-c1f4-4971-aed8-380611d7b1f3 1 Other Other +8efc55a8-88e4-4e70-9033-b486fa58ffef 1 Other Other +8efc6e81-28de-4db5-91da-e869a68e4008 1 Other Other +8efcb60b-2ebd-40f7-a996-34559e13a3d6 1 Other Other +8efd1daa-d80b-4c2b-946b-7a88dd6f1dc0 1 Other Other +8efd21c7-bb8e-413d-b19c-898113b2c350 1 Other Other +8efd82a1-ac9c-4567-b0b6-96e0c936b079 1 Other Other +8efdbfd8-d2d9-4f48-86e0-c37561431cf9 1 Other Other +8efdd164-d31e-47d5-9165-d20d4806e4ed 1 Other Other +8efe2a9b-15d5-47e7-88c8-5ee5b6aac917 1 Other Other +8efeaac4-b195-408f-9959-c5df2b80d2fe 1 Other Other +8efeaf68-6d48-4688-92a5-53e907e861db 1 Other Other +8eff21ad-4641-4b35-9fbe-97b9cf7355c6 1 Other Other +8eff256b-29bc-4860-ba28-ffd6fe1280fa 1 \N Other +8eff5860-af6e-40a9-ade3-df9249148128 1 Other Other +8eff5c58-d6c7-4890-89c2-b0893a714fde 1 Other Other +8eff6f15-3830-4b84-a17f-b768f2e2d8cb 1 Other Other +8eff7a1b-1134-4307-955d-60efa03e509d 1 Other Other +8effc461-0093-4030-be7b-6d7568fe1eda 1 Other Other +8effc57b-3dcd-4d57-acde-25530e31c26e 1 Other Other +8effdab8-c3ee-42e7-9530-6ad78d89f5cb 1 Other Other +8f00278e-6161-4182-91f6-184ceee122dd 1 Other Other +8f005dc0-a89c-4513-b82c-ac2a0d0c757b 1 Other Other +8f007e4c-b281-47cb-82e7-44b1b86da5c3 1 Other Other +8f00acdb-a90a-4d8c-879a-d55408d159a6 1 Other Other +8f00d999-6293-4dda-9301-be81f96aaebd 1 Other Other +8f01103b-5dbf-4bc2-bc67-bb52a5fcb366 1 Other Other +8f011658-7057-41ff-8b60-3ab669a7db17 1 Other Other +8f0122ac-493b-4aea-9c4e-72d4e79a51a3 1 Other Other +8f013c2f-2299-49f2-a363-48010e453945 1 Other Other +8f01625c-a215-4d77-bbce-33855b0a1c89 1 Other Other +8f01c076-f892-47f0-a6c5-f9b9678b3820 1 Other Other +8f01d0c3-a61f-4ff5-ba49-b202e5d075b5 1 \N Other +8f01d6c4-db2c-4582-a99e-a64c28010c6c 1 Other Other +8f024a88-64f2-4566-af6e-306d2af71fd2 1 Other Other +8f025c10-fd15-4393-9254-83accc694b54 1 Other Other +8f028e73-7a6c-4925-912d-869d4ffbe2b2 1 Other Other +8f029475-e8de-47b6-b5cb-ee1560ba48db 1 Other Other +8f02bcd5-1c70-4006-9f81-360e558903c6 1 Other Other +8f02cfd7-3f3e-47bf-b52c-8ec7b9b8078f 1 Other Other +8f02d55c-72cd-4468-ae52-ea234af8e09d 1 Other Other +8f0320c5-9461-4308-93cd-10187f969fdd 1 Other Other +8f034596-8085-4ac8-a25b-5aa7b205c011 1 Other Other +8f03685a-04e9-46d8-a50a-6725723ec094 1 Other Other +8f03c6ae-cd56-40ea-9f55-0bd58c861812 1 Other Other +8f03fe62-f02e-4cb3-b03e-78ae363b1961 1 Other Other +8f041d83-fc6e-40a5-9269-ef725bc71a98 1 Other Other +8f046a38-5f87-4294-bfd4-e092db11b175 1 Other Other +8f0481a1-a6d7-4a1d-a080-a72304c4dfcc 1 Other Other +8f04ba86-6768-4ead-95d0-ced57fb355dc 1 Other Other +8f04bc3b-7bbe-42e2-9fb0-cd8cd8a394e9 1 Other Other +8f04c021-b03b-429f-b468-ac80893fb8ec 1 Other Other +8f04c738-04b8-4a1c-a560-e72e670a9b6c 1 Other Other +8f04eaec-0b7c-46ac-b731-aa25b9c3bd48 1 Other Other +8f04f827-4ce8-4bf6-92a3-f65ce82db78a 1 Other Other +8f0512ca-adc1-494d-9a67-e93b3fcce04d 1 Other Other +8f0519be-09fc-493f-86f4-6da12882f5de 1 Other Other +8f052673-0bae-4556-97b5-348584f90a39 1 Other Other +8f052893-8ebe-4be7-92f8-451d2fb9d2f3 1 Other Other +8f052ad8-71c7-4d2f-8d65-0e77d180e3f2 1 Other Other +8f053828-9bfe-4173-a9cd-678480cc6b56 1 Other Other +8f0564f0-63ee-4f3a-a16e-5d876f37faf1 1 Other Other +8f05866b-7176-4768-810b-cb04749fe3a1 1 Other Other +8f05a210-3815-4c61-827d-154cac4c9091 1 Other Other +8f05cda2-a6db-47d5-aca3-1a980be5a5ad 1 Other Other +8f060d8a-ed52-45a9-8edc-5c6e139ec828 1 Other Other +8f0641f0-c87c-4a22-998f-272a81ea1178 1 Other Other +8f067320-040a-4b85-bb68-f6f51ae897c4 1 Other Other +8f06887d-a18e-4246-8623-6b78c89fb8ab 1 Other Other +8f06ae82-de78-406f-a623-62fa2dbf4772 1 Other Other +8f0715db-4845-40af-bc91-1444269de660 1 Other Other +8f071c0a-0035-4996-a0fa-e460bfc8af72 1 Other Other +8f0753b5-07a9-4e3c-be34-70b3e02ee0f4 1 Other Other +8f07838b-2de5-4503-9314-f3d87f1acc2a 1 Other Other +8f0784d4-975f-4afd-84c8-beb835bec905 1 Other Other +8f078eb0-6b65-4a42-887d-d5c34b933844 1 Other Other +8f07b124-6729-4249-851d-fc1039e5a2d8 1 Other Other +8f07b22d-3fe8-4fa4-b3d4-82456aeb0da4 1 Other Other +8f07f98a-5b6b-4a87-9df7-ca69a12071b5 1 Other Other +8f081f55-713f-479c-a117-5727491f96d5 1 Other Other +8f08f43c-edec-4415-a8e6-4ffadd0651c2 1 Other Other +8f092cf2-b52b-44c4-8bb3-741bb4bfcab8 1 Other Other +8f09685f-55c6-47d0-abdf-af82c5bfc125 1 Other Other +8f0982ec-8b54-4b10-8bfa-046eb1cbc5ef 1 Other Other +8f09aac9-9d76-4a23-9f80-39c0da92e896 1 Other Other +8f0a2806-8e4d-4a59-8778-d90c0e3f6078 1 Other Other +8f0a74e3-ef10-4022-a624-2290717ff7a8 1 Other Other +8f0a9f5e-af23-40d5-8fb4-fa2c7d7db18c 1 Other Other +8f0b45bf-42db-4818-9527-b202c3c174be 1 \N Other +8f0b9653-364f-411e-b9f6-b09a2cb1afb7 1 Other Other +8f0bc579-b008-48d3-a409-2844f04c36cb 1 Other Other +8f0c13d6-9875-48f9-83e8-d0c8827b24a2 1 Other Other +8f0c1426-b402-44b9-90f9-2fac131d1091 1 Other Other +8f0c18fd-afbb-4525-a240-dfc207d7c656 1 Other Other +8f0c1d35-042d-472c-b2b6-e8c768088b19 1 Other Other +8f0c4530-3634-4ef4-bcb9-0841276fbebf 1 Other Other +8f0ceabb-c8c8-46f9-845e-466969ebd4f9 1 Other Other +8f0d0713-70e0-44c2-911a-e22b7f911286 1 Other Other +8f0d1027-54d9-459c-b9a7-79ce116cf5f5 1 Other Other +8f0d1fe1-42a0-4ce3-b6ff-cbed1ba365b2 1 Other Other +8f0d58a9-f3e9-4b54-9438-85cb9b30c9e8 1 Other Other +8f0d5c76-4b5e-44da-bfa7-915c820e22b3 1 Other Other +8f0dce2e-0c1a-4f58-b502-acf83f7ded5a 1 Other Other +8f0ddc63-6325-4852-912e-fdafa172e65b 1 Other Other +8f0e1a11-cc4d-41b4-a803-bc5f16adaff0 1 Other Other +8f0e22f7-b462-47dd-84e6-68a0adf7db52 1 Other Other +8f0e64bf-76da-4ed6-9eb0-f74d7761c969 1 Other Other +8f0e913a-0c57-4769-a1a9-88123aaeb10b 1 Other Other +8f0e9aa3-f8bf-4cb7-b9ed-3c24ed9e8245 1 Other Other +8f0eb8b1-93e8-48e2-8798-863e396bf811 1 Other Other +8f0ec1e5-c119-4f13-81d5-516f2bf270c7 1 \N Other +8f0f4102-9f96-4b89-a13f-411baf94a21f 1 Other Other +8f0f43c7-13b0-4422-a33e-8069f38320c3 1 Other Other +8f0f7b61-df0c-4606-99c6-760829cec02d 1 Other Other +8f0f8c2d-ba50-41df-84d8-134998c75262 1 Other Other +8f0f9089-b83d-410e-8be7-4a3d8e3f97d8 1 Other Other +8f0fb897-a018-4f08-a27a-c110905f8c66 1 Other Other +8f0fc720-44ab-4bec-9653-7bd84471dd27 1 Other Other +8f103e93-76e0-4be1-8083-7da40bdba2f0 1 Other Other +8f1056c7-f3c9-42d0-8024-bf124d60a308 1 Other Other +8f106cf2-9122-48b7-b631-38279bbd8e4c 1 Other Other +8f107420-b2ac-4c1b-bb8c-b24a5c5517ee 1 Other Other +8f10baf8-779d-471e-b8bd-063403ad9851 1 Other Other +8f10f8e0-448a-41c6-b8d0-e9e261f17236 1 Other Other +8f110853-ada5-428d-bb54-a4234f7e36a1 1 Other Other +8f11793d-01b7-46be-86a6-be1f64fbcc4a 1 Other Other +8f11e690-156b-44a3-85f1-9be38551a7ad 1 Other Other +8f12313a-f476-4711-ab0f-861a1003ddcf 1 Other Other +8f1266ec-33f4-41b4-b4b6-21a3cca3cc18 1 Other Other +8f1299bb-33f5-491a-9e94-a9a3426a65c7 1 James Other +8f12b33b-6298-48b7-9550-48fc03fec23c 1 Other Other +8f131c67-1e42-4469-83c1-4b642f699e08 1 Other Other +8f133702-ad4b-462f-b494-6dc7948b5da8 1 Other Other +8f133bc6-452e-459d-a8fd-f9c16fd89742 1 Other Other +8f1347d0-a240-4095-ae5c-6ce0319f46ed 1 Other Other +8f138a26-3d88-43d0-9738-283b6138631c 1 Other Other +8f13a3ae-c2f6-4b15-8f52-82abf5be2d59 1 Other Other +8f13aa56-7a6f-4179-8ee1-8858190abc8f 1 \N Other +8f13c491-4221-4081-a56a-dbc0f4d3609d 1 Other Other +8f13c85f-c508-4d27-875a-d1553870b8ae 1 Other Other +8f1439e9-32a1-4759-b368-11ef5e005da8 1 Other Other +8f149a67-5f99-411e-8abc-a204876da8e1 1 Other Other +8f14a2f9-5dbf-4e92-8a8c-6076ba59836d 1 Other Other +8f14a37d-6181-4d5b-8bb7-ee09c492e204 1 Other Other +8f14b704-c478-489f-97a4-97594ff435d3 1 Other Other +8f14cdc5-e3c2-469d-880f-2310d658f746 1 Other Other +8f14cfa2-c3cd-49fe-bb76-ac020b8e6d9f 1 Other Other +8f14f625-7615-44af-a434-2b3c86313c19 1 Other Other +8f150595-645a-48c1-9fba-1bdbe8c64e95 1 Other Other +8f157a21-4ec7-4029-a0c3-4e4416ee4c63 1 Other Other +8f1599cc-9e47-49e0-bc33-269b3540dc4b 1 Other Other +8f162d56-0319-4821-8388-d7024b8556f2 1 Other Other +8f1642ca-daab-48f9-ab57-afbc0e02df49 1 Other Other +8f16c762-939f-4ccd-8b70-91befececb80 1 Other Other +8f16f618-1a3b-4e0d-9c9b-8dc3e3eebbf8 1 Other Other +8f17221c-be41-420c-94e1-7ad449f05163 1 Other Other +8f173a6c-ff8e-4006-9712-fb568287993d 1 Other Other +8f173e6e-1649-496a-9163-04d540414a74 1 Other Other +8f174bd2-755c-4ff6-a0e2-ad9955a99c32 1 Other Other +8f17b5b2-cbb4-42f2-8e2b-33cfc1df772e 1 Other Other +8f1827d6-73c1-4ec6-b4c8-2bb240281981 1 \N Other +8f18512e-b403-4894-b284-1774b9843943 1 Other Other +8f18f858-51cf-4cd7-8bab-817660fa7258 1 Other Other +8f191efc-cc12-483f-b239-e160a6378f0e 1 Other Other +8f194ec0-d586-4cd2-9ffa-288eb9826d6d 1 Other Other +8f19686a-6c71-4d3e-a089-22534c6594da 1 Other Other +8f19783c-6daf-443e-b1e7-112adb405357 1 Other Other +8f19e784-7285-4db5-8aa8-73583e89d34c 1 Other Other +8f19f53d-c1da-416c-b17a-d6e24f4462f8 1 Other Other +8f1a1538-dea0-4e08-9d7d-1a9b2cef9c55 1 Other Other +8f1ad000-532a-4df3-9988-b35fdedb7473 1 Other Other +8f1aff68-63dd-4e56-8a4e-f58eef146441 1 Other Other +8f1b4bc7-4cf6-4f8b-8960-9940d687d3d1 1 \N Other +8f1b6b8d-e1b1-4ff4-a159-62c81d11fe70 1 Other Other +8f1ba20e-517b-4a34-b1a8-968d71226dea 1 Other Other +8f1c070b-f278-4ddd-9ac2-7ca493367eb5 1 Other Other +8f1c1589-3d69-4a01-8818-2a207eba10b1 1 Other Other +8f1c20ac-3123-4d66-a846-cb1a0608c12b 1 Other Other +8f1c2f53-97db-47d4-bfa0-d7c7dd2da66c 1 \N Other +8f1c4e66-e338-4012-b6cf-621f2cebabc1 1 Other Other +8f1c65f8-3ae5-4385-9be8-f7990d1ae95a 1 Other Other +8f1ca035-cdd4-4f10-940c-6bfe5ac1ea82 1 Other Other +8f1ca358-6a7b-4d5e-88e2-5fdc5acb789b 1 Other Other +8f1caf9b-114d-44d4-9554-58666fc3ba59 1 Other Other +8f1cee26-927e-4724-921f-42e119581704 1 Other Other +8f1d62ee-b8bb-4e32-b370-f719b7815bf5 1 Other Other +8f1d7015-b131-4044-8c7f-609b1721bd16 1 Other Other +8f1d7ef0-2289-4018-9105-39628b4f7eb0 1 Other Other +8f1de0a6-111f-4384-9ffc-ae22f40089be 1 Other Other +8f1de49c-87e6-4def-9bf0-555616922497 1 Other Other +8f1e504e-c3a0-4299-b80a-65513a2acc7e 1 Other Other +8f1e741d-992e-4a9c-beaf-951d0b028975 1 Other Other +8f1e9821-c512-4ab1-9518-45ba3ee7a8b1 1 Other Other +8f1ea204-c57a-4bf4-80e6-34bf59d5ad7c 1 Other Other +8f1ed00d-c10c-4151-93c2-2b4bfbf3d361 1 Other Other +8f1ef678-58de-4a6f-9870-d0b9667b1a96 1 Other Other +8f1f5b39-a968-4218-90c7-156a998196ef 1 Other Other +8f1f6f60-2b4e-44e2-b36e-916d3298c47c 1 Other Other +8f1f96c8-9a18-499a-b225-0b980281bcd3 1 Other Other +8f1ff603-3fe5-490f-b1d5-00560b6ae3fa 1 Other Other +8f207877-7c07-44db-b0f6-44d4c88a24e9 1 Other Other +8f209794-cfda-459b-ae87-7685cab7e188 1 Other Other +8f209b3a-83b8-4db0-ab25-2733068c7724 1 Other Other +8f20bdfd-90c7-4317-b945-8ccc4fd59f75 1 Other Other +8f20fd57-ccca-4e53-bb3f-9770dbc5b8ad 1 Other Other +8f217a0b-6f68-47be-a6f6-299629d679fc 1 Other Other +8f219079-b12d-40ad-b1bf-c5a53f797649 1 Other Other +8f21f4bb-8760-4eb8-92cb-3875221fc117 1 James Other +8f21f874-3efb-4b8a-aed0-b4bfe50a1a07 1 James Other +8f229341-af92-44e3-8d57-8d1b61f7cdfd 1 Other Other +8f230a53-7d94-4206-aa35-9dedf3dcbfd1 1 Other Other +8f232018-5d61-4a0e-b8da-0bc4f226d7e8 1 Other Other +8f23d124-c379-4f97-9e63-4d1945e013be 1 Other Other +8f247b65-6fc1-40cb-9905-2dbb1d10abdc 1 Other Other +8f248d5f-abeb-4b59-8e48-79c5fa768b87 1 \N Other +8f24bf03-3569-4332-8bef-86bd185a486b 1 Other Other +8f250496-e9c5-422d-aec2-f5b19e08d262 1 Other Other +8f25805b-1b34-4e96-ac52-6d410b728286 1 Other Other +8f2585da-cac1-424f-894f-485bb2aff2bd 1 Other Other +8f25a9f4-2bc4-48fb-81e1-4767722f9bbb 1 Other Other +8f25f1a4-80f4-4bce-b2e7-05e9f0312b05 1 Other Other +8f26127b-e1ff-4bcc-be70-bc587ede3fba 1 Other Other +8f265d0b-5282-4385-9550-3fbe3aaac71a 1 Other Other +8f265fa5-fb37-4821-91a2-52b5053a112e 1 Other Other +8f266f1c-c9f6-47c8-a514-bcf3444b210a 1 Other Other +8f26c3b5-c7cd-4d81-84bf-725b7bc576f4 1 Other Other +8f272bbb-5b97-40cd-a50e-104ce341c50b 1 Other Other +8f273615-2c95-421d-981f-bad23fa9911d 1 Other Other +8f273bcc-e07e-4638-861f-435567b0172a 1 Other Other +8f27879d-08e5-4e3e-8e8f-c73b62746971 1 Other Other +8f27c6cc-6ef4-43ee-9b01-1f729ddb87ce 1 Other Other +8f27d4a6-5570-4a87-aad4-e5f3d20322f5 1 Other Other +8f289ce4-095b-4a5c-bee0-cb7ec8ba018c 1 Other Other +8f289ee0-ed97-47ff-ba2a-b540a03a6b69 1 Other Other +8f292462-e7f8-43cc-8b04-37b11931555b 1 \N Other +8f2924e4-933b-458d-b9eb-530c7567e270 1 Other Other +8f29aa00-f850-482f-98d6-7743d7cd8b57 1 Other Other +8f2a2648-24da-40a1-8785-3eed8af9b288 1 Other Other +8f2a66b7-425c-4b09-8ec2-61a352e67182 1 Other Other +8f2abc9e-a061-4928-aee2-2faecf164aae 1 Other Other +8f2acf33-aa6e-43ba-a481-d510b6739018 1 Other Other +8f2aefa3-a549-4cfd-880f-6afe5d2e92de 1 Other Other +8f2af787-9d87-4719-a514-cda1fccaee79 1 Other Other +8f2b2661-b7dc-4878-a11c-a1fcc6454690 1 Other Other +8f2b4b4b-5cbd-4229-826a-a7e93224c517 1 Other Other +8f2b6a19-4868-4784-a794-4f86191c833e 1 Other Other +8f2ba78b-2959-45ad-9993-774315804ae4 1 Other Other +8f2c0457-ba63-4c14-80b9-cac275576075 1 Other Other +8f2c556e-0e84-4e89-a96c-e1d9b552e424 1 Other Other +8f2cd0c4-be96-4892-bd41-27ed9a4c063d 1 Other Other +8f2ce3e7-92f0-4030-9038-6ac2ba9ebcb6 1 Other Other +8f2ceb0b-b26b-4268-9847-1a2499fcf6f1 1 Other Other +8f2d2263-3cbc-4e4c-b52a-17c3b95f6b1a 1 Other Other +8f2d2676-f95c-4146-a000-3ca25477a3eb 1 Other Other +8f2d6ac1-753e-42cc-864f-dccdf902f3ba 1 Other Other +8f2d8dd3-27f9-41e8-b76f-1014504484b9 1 Other Other +8f2dcbad-1c5d-44f6-9020-bf64e3026894 1 Other Other +8f2e1ec5-2812-4d27-a621-87e8820a9afc 1 Other Other +8f2e4579-9b72-4183-866d-bbadb0d2b06e 1 Other Other +8f2e74de-2e18-44de-9f40-b0d2ea338840 1 Other Other +8f2e9849-4a5f-4468-85b6-c5cd3aa651a8 1 Other Other +8f2eac6f-288f-4b30-8f1b-8bfb3174bda1 1 Other Other +8f2eeb4c-e347-4f98-8a54-ead2bc71afb8 1 Other Other +8f2f0169-5bfd-487b-8314-33803a0629fc 1 Other Other +8f2f0fb0-cf5d-472b-b17e-f42c060fa719 1 Other Other +8f2f3e13-cdff-483d-a682-70c1860923ae 1 Other Other +8f2f5747-0903-4172-8549-ed88db7ce72e 1 Other Other +8f2fbd7b-f35c-4f30-9767-897fdde8eaa9 1 Other Other +8f306b14-ccc9-4b3c-9f9a-4a00c7d93a41 1 Other Other +8f307b24-95b1-48e9-9913-744a584d4f6a 1 Other Other +8f30daed-198a-4cf7-a7ed-1eab40d81929 1 Other Other +8f30df87-548c-4cf6-b616-7aa40edae7b7 1 Other Other +8f319d08-bb04-4a93-a61d-46d2861a64a6 1 Other Other +8f31a6da-73fe-42e1-b649-465a6cbabc5c 1 Other Other +8f31db7b-4ad6-4d15-8f1f-161622010907 1 Other Other +8f320f78-2e4c-477f-9436-16e8cd5bba74 1 Other Other +8f32198c-1f6c-403f-aba2-21db8ad73f6a 1 Other Other +8f323407-23a7-4233-afac-e25f6d2ba318 1 Other Other +8f3253b3-e358-4cb6-a1a4-f95c28402272 1 Other Other +8f329d52-e375-4974-b119-e63ebc51d1d2 1 Other Other +8f32e299-f3be-4d97-be85-3b123aa29754 1 Other Other +8f32e351-f6f0-4415-be41-b4285b6492f9 1 Other Other +8f32fab3-7c09-4fb2-b9bf-447c7aea0bde 1 Other Other +8f333432-2072-453e-86f9-cff5f340e636 1 Other Other +8f3335d5-d372-479c-bf8d-7103e9ad7576 1 Other Other +8f337198-2b21-4243-8ff2-42e15efc4a1b 1 Other Other +8f33744b-eb7b-43fb-868c-19d8eb220a55 1 Other Other +8f339188-f5aa-432d-b9dd-136743c1869e 1 Other Other +8f33a300-1c91-4c4f-b15e-67c2490ffbce 1 Other Other +8f33fdb1-de13-4f88-ba21-f5f8c8d8d91e 1 Other Other +8f3411e5-bc3c-42f0-ba8d-4253477839a4 1 Other Other +8f3421df-0e5f-44bb-910a-7e56d1be4367 1 Other Other +8f343499-1ee0-48ec-95cc-c4d77cc6afa8 1 Other Other +8f348e17-6a09-41e7-a02d-7cdf93db0438 1 Other Other +8f34e48a-7f11-4211-955f-24a6d795030d 1 Other Other +8f34f149-dddb-46ef-81c2-6d10c78d0aae 1 \N Other +8f350429-2b17-42ea-b5e1-6ab069f0b9a4 1 Other Other +8f350468-f447-430e-bc3b-2eee5cc1bf68 1 Other Other +8f350f7a-02c1-4689-beb2-31e38ba9e001 1 Other Other +8f351802-921f-4ae0-acd4-5410684c60de 1 Other Other +8f353c00-7169-414f-8251-495a9384dcd7 1 Other Other +8f357d49-c0f8-4fe9-be95-6c79d2e911f2 1 Other Other +8f35b8a3-56de-4437-9c40-f2bf2a4cbf3b 1 Other Other +8f365534-06ca-483a-b9c4-1214500cfe8c 1 Other Other +8f3690ec-1ba1-4843-a6d5-117e7d626649 1 Other Other +8f36a63f-fd01-45c3-aa0e-604099801039 1 Other Other +8f36a9ad-b835-4907-9e27-bd0eb1f53aa6 1 Other Other +8f36aeef-9292-4053-8037-fa305b236b0c 1 Other Other +8f36d16c-9f7d-4da5-a3b2-fed66d957625 1 Other Other +8f37096f-5d5e-475f-940b-5e374b66ed4a 1 Other Other +8f371d31-1128-47d6-9436-5798ea3dd0e1 1 Other Other +8f377e6a-dc1e-4264-9800-1f8ed5e1a199 1 Other Other +8f37adc8-9278-417c-9e37-748d6419ea0f 1 Other Other +8f37ae27-f35f-4f33-b034-70a4714d3e17 1 Other Other +8f37f959-8747-4d22-93f2-1c97f3fb4393 1 Other Other +8f382c98-cd1a-43cc-9543-0c3c86aed551 1 Other Other +8f387c25-7667-4742-8cd2-62bf8b4d010f 1 Other Other +8f387d5a-853e-46b4-8779-1696affec1b9 1 Other Other +8f38ad5f-8ed4-41a0-a891-4e9b2e4c8ccb 1 Other Other +8f39226f-5eb3-495b-a20d-8cef17c32ca4 1 Other Other +8f3932ff-68b1-461d-b6ed-b771ea32ea50 1 Other Other +8f39c966-b620-4819-9c04-6f233dbf9250 1 Other Other +8f3a48ad-67ec-4139-9ebb-1ed0677a40d2 1 Other Other +8f3a80f8-6ce6-4ecb-985e-29a02e0a5e91 1 Other Other +8f3a8e88-03f3-44e9-b166-cc67ba17df27 1 Other Other +8f3af93f-4fe6-47d8-ab4e-9339517666fb 1 Other Other +8f3b2ec0-6491-4113-aad3-4e2f45ca0f44 1 Other Other +8f3b9c6e-b9ce-493d-b570-6bc1dda664a3 1 Other Other +8f3bacd7-5774-46bc-851d-a5ac13e998df 1 Other Other +8f3bd0e8-9b2b-499e-86d1-f0269f9792aa 1 Other Other +8f3bf934-8209-44d1-b108-0045b7e7f7b8 1 Other Other +8f3c0bb9-0a1a-4a46-8bb0-bc1aeb49c478 1 Other Other +8f3c2752-58ec-46cf-8ed8-03fefecd95b3 1 Other Other +8f3c5a1a-d462-4aae-84e5-b82a02b75931 1 Other Other +8f3c72ca-6220-41ed-86dd-7b546e693666 1 Other Other +8f3c907d-c8fc-4db4-b1b7-1998cd6a8245 1 Other Other +8f3ca5db-1fa8-4d30-9806-ef634288b4b1 1 Other Other +8f3ca8f0-efa4-436b-9ec1-7167644581b7 1 Other Other +8f3cac1d-7f44-4e74-85d6-0d3ffb1cb16d 1 Other Other +8f3ce001-5d7f-4231-a0ac-758e0b948760 1 Other Other +8f3ce15c-9cc9-4089-9e1e-a73435f42501 1 Other Other +8f3d1c54-82be-4e23-9ad0-cda547e1779b 1 Other Other +8f3d227c-8a7c-4096-ab92-7a051a6784fa 1 Other Other +8f3d44ec-dd0d-4307-8481-ce8ab9d05935 1 Other Other +8f3d86ca-5960-4336-bfdc-35bab748fd3f 1 James Other +8f3da5c7-c769-43eb-9e7a-8fd8b38ed201 1 Other Other +8f3dac09-bfcb-4a08-8800-d890a14ae26d 1 Other Other +8f3e2536-c250-4bcf-91b6-d9667e3783c0 1 Other Other +8f3ea9ba-ae41-49d0-b232-d8e05b7176bd 1 Other Other +8f3eeaa6-f3ef-4346-9b91-f5869afab8db 1 Other Other +8f3f3fc2-9c77-4535-a69f-05e10727f7ac 1 Other Other +8f3f5fcc-8900-476e-98f8-dc29862d7837 1 Other Other +8f3f6692-8325-474b-84da-e4416e6bb9a8 1 Other Other +8f3f87fa-9dec-4d4b-abe4-389a9ed6f1da 1 \N Other +8f3fdfd6-f094-4056-acbd-c88d1164e66d 1 Other Other +8f3fe9b0-17ad-40c3-92db-be8ececdadbf 1 Other Other +8f3fed39-d7b5-4d2c-9508-7088832cb889 1 \N Other +8f401cfa-bae2-484c-adc6-0662b053ce6b 1 Other Other +8f401f85-21c8-4fed-9343-480310e5cad7 1 Other Other +8f402a74-8faa-475c-aaf5-22eb514114c2 1 Other Other +8f403237-c120-46a5-8185-4fd8ad5f8d57 1 Other Other +8f404263-e154-4e26-8371-4001cd0d4459 1 Other Other +8f409535-2e42-4c9e-88bd-01b17bf39f9b 1 Other Other +8f40972e-d845-426a-ac4f-02d638b5a46a 1 Other Other +8f40bb21-fb59-4ac6-a81f-0c2620a71663 1 Other Other +8f40dc6c-8470-4350-a6d7-ea2fd37a6afa 1 Other Other +8f40eb51-1fc5-440e-92ae-b7a423f2d2ce 1 Other Other +8f414e59-e4ec-4afd-a635-5df00cc5312e 1 Other Other +8f4153b0-ba1c-433d-98e5-a7c3e8b35559 1 Other Other +8f41ac50-fc6b-42f3-ab24-06411dd260de 1 Other Other +8f41bea4-07e1-4bcd-8ff4-4975854a7570 1 Other Other +8f41cd69-56cc-4ba5-9530-06961b7e66f4 1 Other Other +8f429c3f-9974-4bf1-9836-ab1221983371 1 Other Other +8f429f34-4526-479c-9c57-e5dc136d2237 1 Other Other +8f42b161-0e10-413e-8aef-9232cd1cf34c 1 Other Other +8f42d864-230f-45dd-9614-b39647ae3a7f 1 Other Other +8f42df4a-8850-4703-9bb0-9836bfb0dcd9 1 Other Other +8f42e718-9f64-4f1e-91e0-13ca46bb2010 1 Other Other +8f42fa99-0462-4071-941c-024d72244bf3 1 Other Other +8f42fdd8-5df5-4283-8aa9-5b8ef0fc28ff 1 Other Other +8f434e19-1e16-43a1-9d54-d81f7f6c297f 1 Other Other +8f4354da-60c8-4480-9dd5-ba3e90a34a57 1 Other Other +8f43c8eb-2d6a-4e0a-ab82-fbe229f45715 1 Other Other +8f4434f6-daee-4e8e-a5d1-61cf0b8aee63 1 Other Other +8f4451f0-7ec7-40f9-b278-fac2b91bb848 1 Other Other +8f448604-2593-494e-b988-be64c4183e81 1 Other Other +8f44a561-7f0f-4073-91b5-59375a0c2f71 1 Other Other +8f44b34b-cb9c-439c-bbd7-64e4b75d8ed6 1 Other Other +8f44cdd3-6d1a-4443-8fa7-5bd4891937cd 1 Other Other +8f450e11-a200-4ad0-9bcf-75b3713df90b 1 Other Other +8f451a75-fbea-4574-bc81-f4e7a093b172 1 Other Other +8f45498b-a173-4252-b3a9-c8ed5c3f4059 1 \N Other +8f455c13-3f5e-4592-8237-15ca322ba54b 1 Other Other +8f4592a2-00f8-45fa-8f95-f98e45b1313e 1 Other Other +8f45a11c-eeb2-49ba-875b-d5c32ff83c67 1 Other Other +8f45c7f2-75d3-45c4-a3f7-28d4e7682724 1 \N Other +8f45ca6b-90c8-4e39-85cf-d320cdf32d09 1 Other Other +8f45d566-c840-4a72-a6d6-724a6ecc06b3 1 Other Other +8f45e86e-f59a-4141-9272-21cc51818b18 1 Other Other +8f45ee61-368d-4c75-9635-0dcd72662649 1 Other Other +8f45f657-900e-472b-a3e8-adb2ea8499dd 1 Other Other +8f45f9f9-bde2-4c03-ac8b-13f16a77e206 1 Other Other +8f461021-9906-4f23-8073-5f8cf38b2358 1 Other Other +8f461b4e-e878-427d-bc35-e609450cb8a3 1 Other Other +8f4665d0-2097-4733-a5a2-74df65f576cb 1 Other Other +8f46a185-e385-459a-b264-429d949bf5f7 1 Other Other +8f46bccb-3e97-4233-a5d4-68335445a1eb 1 Other Other +8f46be5b-f87a-4515-b9a7-a8980a77d11e 1 Other Other +8f46d11c-09d8-42ee-bcba-fee4bb0d65d8 1 Other Other +8f46ffe9-a223-4d71-a341-7c496171bdaa 1 Other Other +8f470f17-b40d-460a-b375-f236bf66b0f2 1 Other Other +8f47101e-ec5b-4f3d-8fbc-d07039684d52 1 Other Other +8f475202-5441-479f-9d43-00677335ac13 1 Other Other +8f475689-3294-4c3b-add8-99724e778553 1 Other Other +8f47d1d2-c0ea-43fb-90a6-4128b9f05960 1 Other Other +8f47da98-34b3-4609-a906-3b62a3365db9 1 Other Other +8f48bc3f-152b-45ea-9b03-554d7419e1da 1 Other Other +8f48c25f-9882-479f-a09f-0ec3c9c887eb 1 Other Other +8f48e53a-69f0-429e-a3a5-555d6c048070 1 Other Other +8f48ecca-a16d-480c-a57c-18b6a7ad535d 1 Other Other +8f4926a0-8ea5-4741-a475-91ce9bf5192d 1 Other Other +8f496b2a-1640-40aa-8108-c55ec3d2c3c5 1 Other Other +8f49b0ee-5a1e-4b9e-87f3-b3a7f87f2374 1 Other Other +8f49f96b-60d0-4a4d-86f1-9ddc1ac303f1 1 Other Other +8f4a3dd0-837d-4f02-912b-6a9a0a8ca218 1 Other Other +8f4a5740-b059-4851-98cf-7fedeec8851d 1 Other Other +8f4a7b89-ab2a-4592-8efc-171a7a224193 1 Other Other +8f4a847c-fa90-4d02-9d78-b36fc9009ed4 1 Other Other +8f4ab196-1708-4eef-82e8-982665a0d315 1 Other Other +8f4acd96-c3b2-480d-81fb-35885545c3a6 1 Other Other +8f4b1fdd-6f34-4b08-b5c9-ee1e2ae2bd41 1 Other Other +8f4b3e43-2ce9-4ae9-af10-3fe5c8d7bba8 1 Other Other +8f4b4449-f166-4dd4-a15f-84c19719c39f 1 Other Other +8f4b4fad-be39-444e-87bf-256c641bd8e4 1 Other Other +8f4b889e-fbf8-475b-b261-4d9e5072f246 1 Other Other +8f4bc400-31c2-42be-a545-bec859b9df10 1 Other Other +8f4bca8d-19e9-4be5-856d-8ed3797eaf3b 1 Other Other +8f4c0d2f-d379-4fbd-b0ef-704e5476e948 1 Other Other +8f4c4ce9-c7dc-4ba9-9b1b-0ca27c7b6fb8 1 Other Other +8f4c865d-1ad4-4136-b073-74657f7652bf 1 Other Other +8f4ce8f8-6a90-4e52-bfa5-ca81368b31a4 1 Other Other +8f4d9239-51c5-44ff-a0bf-f11168b50fa2 1 Other Other +8f4da605-6889-48e1-be95-ed43d920c1c3 1 Other Other +8f4e4232-d5ef-43ed-83f4-5c9fbe0878c5 1 Other Other +8f4e5c17-9ede-416e-a0b6-c22d2831c115 1 Other Other +8f4e6656-ead0-4e7a-bfda-258f44b5a456 1 Other Other +8f4e966c-6df8-4bf8-a13b-39fb4564ac61 1 Other Other +8f4ed54b-0310-454e-8294-6296b189868f 1 Other Other +8f4f1fdd-e0e4-4849-8e71-bf879eb42054 1 Other Other +8f4f2768-e5a3-44fa-857f-c0f5471a837a 1 Other Other +8f4f36de-e0b2-4ccc-a538-0e0d3c9a7a6e 1 \N Other +8f4f8aa4-e398-4aab-a8cb-35cc1ed0c561 1 Other Other +8f4f9b04-0c4c-4262-b28a-66a5b93a0a53 1 Other Other +8f4ffa0f-5f10-4fc9-ae1d-4cd33a690d7e 1 Other Other +8f501b71-be22-48a6-97c6-1650de6e34bc 1 Other Other +8f50281d-1c04-491d-9357-b24265c1d10b 1 Other Other +8f50368b-8320-4bd9-9353-f999a88b9274 1 Other Other +8f5042b9-a3ac-4d55-a760-62b7017f69aa 1 Other Other +8f504a33-271c-4251-b804-cfb19495bb36 1 Other Other +8f506713-961d-43d5-9263-3baeabcb7e0a 1 Other Other +8f50993c-e7ef-426a-a684-577e6421b54f 1 Other Other +8f50e228-7df4-42a5-aa45-49d50eb27b81 1 Other Other +8f510431-9138-4b20-921a-396fc2b37e88 1 Other Other +8f515871-ebb9-40ad-8fd0-778d47221e60 1 Other Other +8f521633-a9aa-456b-b2d9-61bab694d545 1 Other Other +8f523fc6-dc7c-4df2-8443-258fb4194e27 1 Other Other +8f5299bf-4b7f-482e-ad89-52289e8a3ec2 1 Other Other +8f52a2a7-2631-4838-afd5-9a4e2605507e 1 Other Other +8f52daff-bc3e-4086-840d-6d1bd2059c07 1 Other Other +8f52e8de-550c-47c3-a564-9b42ebf87624 1 Other Other +8f5317a7-51a3-421a-8047-79672a06cc0c 1 Other Other +8f532edc-e08d-4717-a699-cd19109a02d9 1 Other Other +8f5390b9-e33b-4989-904a-b0e81b85a34f 1 Other Other +8f53a922-2997-409b-8917-14c366a9fe12 1 Other Other +8f53b439-aff2-452c-80e7-4368bdb8c114 1 Other Other +8f53d3cd-ad0a-4b9a-8eea-8322669fcbd2 1 Other Other +8f541eab-5627-4346-8713-ecc25c1a6ddd 1 Other Other +8f543418-3df0-4afe-b510-1233c97efde8 1 Other Other +8f543aab-4b8f-4946-b1df-47fea734bc3f 1 \N Other +8f54421b-04b0-4ecb-86b2-cfa1ab7cb7ef 1 Other Other +8f545fb3-9ad4-4851-9aa0-e350d0aa6b8a 1 Other Other +8f54caea-2019-45c8-84ab-67def4028a76 1 Other Other +8f54d97c-1206-4a3c-9852-8f85d5761576 1 Other Other +8f5503b8-3fbf-473c-ad9b-6e3f6793c8ef 1 Other Other +8f551838-7ca6-4869-ac11-30c509914c94 1 Other Other +8f55371d-56d0-46da-84fc-21b8d464c83d 1 Other Other +8f5582cb-4be2-4bd8-8117-25f0d51cac0e 1 Other Other +8f55af08-4b77-47cb-acd0-5cae67660a7f 1 Other Other +8f55d9db-12be-49b2-84c5-499bb2d943cd 1 Other Other +8f55ef19-a7d3-44a2-83ad-b6189068b217 1 Other Other +8f56a263-62f1-4b1e-8c0e-aeebc85bd653 1 Other Other +8f572f1f-1c5c-431b-9d55-2d84176b0cfa 1 Other Other +8f575aa5-195a-4cf5-b0bd-70ad11c1f88d 1 Other Other +8f577465-c11c-4d54-bc25-092a4e3dae03 1 Other Other +8f579c87-1759-4434-b508-4c323ff6ef90 1 Other Other +8f57bb03-e19b-4f55-8c2c-a313d52a5810 1 Other Other +8f57fda0-4a93-4570-b32c-7051180a9acf 1 \N Other +8f584fe5-7b0c-4b11-81f3-ecc2057d72a8 1 Other Other +8f58c22b-b916-4257-b079-c668d17bf930 1 Other Other +8f58e04f-66c2-4215-9beb-b13216816367 1 \N Other +8f58f0fd-8a35-4f72-877d-b9db5384410a 1 Other Other +8f5928f3-c9cd-4d35-a924-51027c50c95e 1 Other Other +8f594623-6f11-4471-a7fa-8545b9a7d901 1 Other Other +8f599896-2a51-4b82-a9bd-7e8b8f898a8f 1 James Other +8f59b8f3-b661-4ad2-940f-a8388cac13d1 1 Other Other +8f59ee92-5c9e-409f-9292-f60330460af3 1 Other Other +8f5a0d90-f997-48ed-aeea-50c2d9563f9f 1 Other Other +8f5a5c03-c0d1-4983-b5ea-6f512b7a76cf 1 James Other +8f5a60ad-5a9a-4adf-a103-0d50e48c5f79 1 Other Other +8f5aa5f1-caee-4b33-b25f-1f6a0f9a0ba9 1 Other Other +8f5ac5c4-614f-4515-9cc6-45172ec653cc 1 Other Other +8f5aeb20-9085-4c69-9b23-e38ff5981cc8 1 Other Other +8f5b1fd8-5dd5-4543-9c51-ea83e0932e05 1 Other Other +8f5b30db-d54a-42f9-801b-256d8513711f 1 Other Other +8f5bb37a-1d6a-49b0-bf07-28282bf9f560 1 Other Other +8f5bfa49-80cf-4dfd-a8ab-1fb1e831e2d6 1 Other Other +8f5bffe2-c0cf-4cf9-8298-48fbc74ac260 1 Other Other +8f5c13fa-449a-43a1-bcd0-672d955926e1 1 Other Other +8f5c4620-cbfd-4a65-ac5a-277ede275e13 1 Other Other +8f5c5362-c7bd-4b0a-a830-dfe98e1ffe80 1 Other Other +8f5c564c-899a-465a-8b33-c1daaae5089c 1 Other Other +8f5c5df0-8d1e-4207-9e7c-cde7d7f3c7b1 1 Other Other +8f5c9a93-3275-4210-a478-835ba0e278f7 1 Other Other +8f5cc85c-67f1-4930-b580-426d420d34eb 1 Other Other +8f5cd0dd-b5d7-4bf1-9e03-2bcf88d34498 1 Other Other +8f5cf4f3-f1c6-477b-b9b4-d2232ed410ee 1 Other Other +8f5d3462-4105-437e-a1f2-2ea548143548 1 Other Other +8f5d39a2-b768-4129-8072-03d402db4d00 1 Other Other +8f5dc518-a175-48f5-a56c-8cc1792c3071 1 Other Other +8f5e1ed0-62be-4c8e-8368-f5e58039f220 1 Other Other +8f5e24ce-ff35-4163-8030-11c32cecdf6c 1 Other Other +8f5e54ba-7597-4033-8277-a7cd54e285fa 1 Other Other +8f5e5da5-4152-4800-92d7-ec106e393638 1 Other Other +8f5e6aa9-29cd-43d8-9aca-57336fa7fc52 1 Other Other +8f5e84de-3ec6-4c47-b22b-3762daa10d40 1 James Other +8f5ea708-0a78-4648-b728-2531c0db1c40 1 Other Other +8f5ed69d-f87a-4bd3-ada2-38d6258e7127 1 Other Other +8f5f0df8-e37d-4006-9d05-ba9214976dc6 1 \N Other +8f5f162b-43be-4093-af99-e5b4e2453ba4 1 Other Other +8f5f532a-7a8f-4322-bd81-13b4412608f6 1 Other Other +8f5fc072-e2de-4912-adc5-2e5c566188d0 1 Other Other +8f603620-8cdb-47c6-b5d0-0afb9a9d5694 1 Other Other +8f60440d-2e8f-408b-b1b4-ae968241b89a 1 Other Other +8f605cf0-368f-405c-9395-4a19158e263a 1 \N Other +8f606f41-24ee-485f-82dd-73fb0690d9cb 1 Other Other +8f6083f6-8320-46d0-ae83-47531aa9366f 1 Other Other +8f60a881-af0d-4fe4-bbb0-77c4b48618d2 1 Other Other +8f60d984-7f78-4f86-9b54-85e37789ff58 1 Other Other +8f60eee3-b859-43e7-9320-7324a785c752 1 Other Other +8f61016b-6c03-4e49-b9b8-c4e66fb7b639 1 Other Other +8f6121c9-9a89-453a-981a-9e65207abfba 1 Other Other +8f6128bc-958c-4aa5-8b57-28fdf08324eb 1 Other Other +8f61a592-2623-4242-b691-7cc08f46ecef 1 Other Other +8f61a7f5-07e7-4439-983c-a65bc5b86429 1 Other Other +8f620e54-0b5e-4cab-bb8d-677132594df5 1 Other Other +8f621833-cd67-4985-8d62-8b2047d3d91c 1 Other Other +8f622f3f-2d8f-4815-9140-a94326625c1f 1 Other Other +8f626625-89eb-4a48-b776-6fc238cb4b31 1 Other Other +8f62d284-4986-46a0-9871-4d3e8551d99a 1 Other Other +8f632943-11ce-43ff-b9c4-abbb8283c824 1 Other Other +8f633d90-cb95-4158-9efb-f043cb034e17 1 Other Other +8f6341cf-7a19-44b3-9bea-dddf085becf2 1 \N Other +8f63dd75-3e2b-4b31-83e6-5d45bc7aca2f 1 Other Other +8f64112e-070b-4a06-8efd-36e45a335449 1 Other Other +8f6423dd-1a59-4bfb-adca-ea3a6d321f12 1 Other Other +8f6438e8-0b8b-4aaf-804b-a97c4124e82c 1 Other Other +8f64532c-35a1-4c58-b3aa-e6208b7f06a1 1 Other Other +8f645b42-838d-4ef9-bf77-8afd3dcf357b 1 Other Other +8f64d918-a382-4eb3-a5d5-92e80d4ab130 1 Other Other +8f64eaab-54be-4824-81c3-2c462aae2ce6 1 Other Other +8f64fa35-f405-4964-8146-6469354d9be2 1 Other Other +8f6560bf-a08f-457b-abe6-e6d6e04c6eec 1 Other Other +8f65787c-5877-4b3b-b652-fc748b0395e5 1 Other Other +8f65862d-c31a-420c-ac89-10af02cfe333 1 Other Other +8f66064e-287d-42fc-b6a8-a9f430badda8 1 Other Other +8f6651b6-d5d3-45f9-914b-26ab476b9b25 1 Other Other +8f669a85-a359-47c1-a023-b9e5368e3311 1 Other Other +8f66f029-c58e-41f1-9632-19a88e89d8f0 1 Other Other +8f671c14-f928-49ed-b055-75efbb23ec90 1 Other Other +8f671f1f-456c-4868-8eef-4ccf71036cff 1 Other Other +8f6728df-86fd-4e3a-bc04-bba6eccaf49e 1 Other Other +8f6733b1-d0e1-42bd-a1bc-7b9a9a5ceb25 1 Other Other +8f675767-fa9b-4216-98ad-c4f4fad07bee 1 Other Other +8f679878-db14-43fc-93dd-db64ce25141b 1 Other Other +8f67d9f4-6dff-4a30-b193-8001c1f19c1f 1 Other Other +8f682f9f-4d4e-450d-b80d-25e3873d946e 1 Other Other +8f68655c-f511-4bf9-9824-28cae12c44fe 1 Other Other +8f68cb53-d2eb-4d3c-bcb0-9c2f9c06d649 1 Other Other +8f693821-4955-4247-aa91-4c5e04444023 1 Other Other +8f696908-ca3f-4534-b88d-9273125c480b 1 Other Other +8f6979a5-3be5-4efd-92c2-6dd38700d087 1 Other Other +8f699175-f2a7-4859-a2b7-178714f999ce 1 Other Other +8f69c66b-c14e-4200-91f2-d0a6f837e454 1 Other Other +8f69d545-5a33-4346-bdc8-6e75c4dbabd0 1 Other Other +8f69e808-b214-496e-8ebe-6c7367d4eaf8 1 Other Other +8f69ee7b-6ecb-43f5-a32d-7bafe0bfdbc8 1 Other Other +8f6a3896-16e0-436f-9ad4-4c9301142751 1 Other Other +8f6b1151-d3ba-4b6f-a8e4-0ba4b362e809 1 Other Other +8f6b1371-4445-45da-a5e6-6d8d1cca80ab 1 Other Other +8f6b365c-826e-49d6-98fa-66f6f02ace81 1 Other Other +8f6b4b06-18d3-4d84-9318-19fe32d8cb03 1 Other Other +8f6b6d9a-4fae-465b-a844-1741966c160f 1 Other Other +8f6b833f-2dde-41cf-b635-ce6bf0a6af59 1 Other Other +8f6ba8ca-1a3b-4ec4-b06e-8a96f2fc208e 1 Other Other +8f6bb102-3d7b-4cd4-857a-8c827e6ff0e7 1 Other Other +8f6bd1f1-601a-49ee-b0fb-81713aab9ff3 1 \N Other +8f6bdd09-b5cb-45ab-9856-5606e4af5e3a 1 \N Other +8f6c0a9c-c642-4f4a-a839-a474a397a658 1 Other Other +8f6c1acb-0809-422f-82c9-2f4c0a2b7b65 1 Other Other +8f6c95a9-b2ff-4cc9-8ff7-b5ad8f17554e 1 Other Other +8f6cc49d-9116-4682-87a7-bd1f91aae6ef 1 Other Other +8f6d4b21-96bd-4f31-9bd5-7f64a9e17872 1 Other Other +8f6d5c9c-0705-4f19-8224-0d26af12a25c 1 Other Other +8f6d6a20-3075-44a7-854e-1066e3a13c1f 1 Other Other +8f6d8812-6eaf-4988-8d2a-61d116778006 1 Other Other +8f6d99f5-f2f5-43d7-80e1-1dff3fc52296 1 Other Other +8f6dbaae-e209-40e0-a15c-4849f39ce0f4 1 Other Other +8f6dc811-e069-4325-9857-e093b58fa822 1 Other Other +8f6dcbb2-eb3b-4ceb-b749-ed6a5db1d05a 1 Other Other +8f6e1c8e-56ab-42bd-98fe-d693bb453b42 1 Other Other +8f6e2e74-6941-4b37-8283-113c96c093b2 1 Other Other +8f6e4afa-c896-4c24-a047-57dc6e9262e1 1 Other Other +8f6e60e5-213a-480b-b108-82b1a59ae94a 1 Other Other +8f6e623a-4879-4faa-9d78-f42fcc3ff157 1 Other Other +8f6e6425-e5dd-4825-a29a-49de521d6ae4 1 Other Other +8f6e6c4a-6c79-4989-9f8e-3eae905880a9 1 Other Other +8f6e9994-7a99-4f63-add8-f7abf816bdf5 1 Other Other +8f6eaef6-a8b1-4156-900d-887c0993cbcc 1 Other Other +8f6eefdd-548e-40e3-8fb5-86465877f654 1 Other Other +8f6f45dd-2e26-4376-95f8-3f4be3f2b6db 1 Other Other +8f6fbc8a-4a91-4d31-8c1c-afc45b0f8a51 1 Other Other +8f6fbe50-2cc3-4b52-91a2-e53771b9a7ca 1 Other Other +8f6fbf0b-3856-46b9-a805-79b44c3b0ec1 1 Other Other +8f6fce81-b9ca-4a3b-82e0-ae5e91b868cf 1 Other Other +8f701565-40c9-4d61-a110-85515177da0c 1 Other Other +8f7066e2-79bd-4bf3-890c-5986f2e65f6b 1 Other Other +8f70751b-9589-4035-a87d-7ee743fe50dd 1 Other Other +8f70e3d8-176d-4d2b-b1e0-04be17678a13 1 Other Other +8f71a211-4fbc-409e-a6d6-3c86d1c61442 1 Other Other +8f7215fd-f6ac-43f8-a42c-20c195177a37 1 Other Other +8f72a85b-a447-4fda-b4f5-e60d40247184 1 Other Other +8f72ac03-660b-4781-bdb7-2a7cfd4d2cea 1 Other Other +8f72b6fa-00af-40a9-9ac7-a25ccc607246 1 Other Other +8f72d27a-9be7-4cdb-9ebc-892e1adee065 1 Other Other +8f72e5a1-e49a-4612-b5a6-f34948f3670a 1 Other Other +8f72ec83-7d92-4c67-9268-642c630142ac 1 Other Other +8f7323af-91ca-46d2-8cb3-a4e9f5787723 1 Other Other +8f73415d-b13a-48a0-81ec-8a300b5acbf9 1 Other Other +8f7342f2-5305-4653-901d-6efa98305a87 1 Other Other +8f7372cf-11bc-4502-868a-cddcf582f403 1 Other Other +8f73b23c-7ee5-4782-acd6-86520301ee17 1 Other Other +8f73cae9-faa3-481f-b57d-264d0a9e836e 1 Other Other +8f742f7e-d4d1-47a6-bdb9-4019670262e7 1 Other Other +8f745ac5-ae02-4f7a-a86a-5edc9af9c6df 1 Other Other +8f74682d-1aaa-4726-9be8-1d814d7c0f99 1 Other Other +8f74909f-a60b-4d12-905f-5685019e48a9 1 Other Other +8f758fa4-bad5-4f30-9004-2e27e107c299 1 Other Other +8f75bde9-309d-40b0-bba8-2e07d195f14b 1 Other Other +8f75c23e-3dc2-4951-b420-6e1f3fa4a3f6 1 Other Other +8f761872-2dab-4152-95b2-852598b301d6 1 Other Other +8f766459-20d1-4068-aacd-b32a9ad6f3e9 1 Other Other +8f76645f-9e1a-4542-8685-57c2f24f5997 1 \N Other +8f769b16-250c-4f95-80c8-d8c7ae27b893 1 Other Other +8f7704b3-faf8-4bd8-8924-2a689e1eb63e 1 Other Other +8f771ec4-1de1-430b-b894-795125692990 1 Other Other +8f773302-fd21-43d0-8958-a343e6094fd4 1 Other Other +8f7753a4-a9a6-43bd-ac9a-336a987c2093 1 Other Other +8f7755b3-f8b9-485c-9816-7f455428c18b 1 Other Other +8f77c0e6-a3bc-4b85-af4b-bdabef661ceb 1 Other Other +8f77d730-cf34-4e25-b6a7-087523e0122c 1 Other Other +8f77de9c-c352-4f82-95e7-62d3dded2ded 1 Other Other +8f781d02-e5cf-4a09-b958-0530fd1c2cc2 1 Other Other +8f782e66-53c6-4dd0-9eb2-3c3dcbb79fbe 1 Other Other +8f7836bb-1545-4655-89c9-e8524935db6f 1 Other Other +8f785c9f-83f1-423b-852c-36435a3438c8 1 Other Other +8f7865c0-f3e7-4d44-9873-cfed8db51b12 1 Other Other +8f78c973-4671-4ffe-8b3a-bc4fcb28e1dd 1 Other Other +8f78da3e-17b5-11e8-88d6-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +8f78f673-614c-4d6c-a18f-4cde6debba02 1 Other Other +8f79345d-f7f3-410d-b9d5-ad99b2eddf8b 1 Other Other +8f79c947-bbb5-4a44-886b-f60ffabd2e65 1 \N Other +8f79d1cd-a6e0-4bda-ae52-2b6a22d3ccf5 1 Other Other +8f79e36f-40a5-49c7-938f-67c560d1a914 1 Other Other +8f79eb61-e539-4755-b6d9-aafc2c73c272 1 Other Other +8f7a3b45-87ca-4e2c-a80d-bddeac62421f 1 Other Other +8f7a6cce-b716-43de-a5ba-c98947a4ccdb 1 Other Other +8f7a98d1-054b-4329-b472-ccbc92bcf59d 1 Other Other +8f7b08f4-e882-4e17-9bf7-ab4629983cf9 1 Other Other +8f7b676b-0a7f-4ad9-981a-5aae5ca93fd0 1 Other Other +8f7bd50f-eaed-4c4e-b4e6-8e6ca33e8336 1 Other Other +8f7c0b60-6e39-4a4f-aeec-39dbf66ab5a5 1 Other Other +8f7c4984-0109-4da4-938f-3b6a7b7e6171 1 Other Other +8f7c77fe-a5f8-4c8f-8f78-2ee219076a74 1 Other Other +8f7cac0d-7a91-40fb-b3a6-48287b0b8936 1 Other Other +8f7cb9eb-e8a7-4727-b666-79aa5a392f3b 1 Other Other +8f7cbcc0-1926-4738-aadb-efec4284818a 1 Other Other +8f7d1cbe-64a3-481c-b7b2-3ceabff96168 1 Other Other +8f7d97f5-e646-44ef-8db1-e6c7dc4cbeb9 1 Other Other +8f7d9e84-097e-4fc1-bd1a-0244d0162f00 1 Other Other +8f7da1d4-45bc-4e3b-8b77-e68788d03fce 1 \N Other +8f7da265-3acb-4313-9a7b-504d5a4fca38 1 Other Other +8f7e1b0d-ae3e-47c5-8408-240976a8e5f1 1 Other Other +8f7e7c45-517d-48cf-a2f4-32a36fa11ea6 1 Other Other +8f7e7e56-6599-4d17-9adb-f46721437931 1 Other Other +8f7f75fb-d478-46d2-9f7c-433ed2755b26 1 Other Other +8f7fa03b-be8d-4e85-a879-22a81927f2c3 1 Other Other +8f7fa28e-725c-4e55-9589-5aa4d94d5731 1 Other Other +8f7faec0-5b3a-4fa1-90ca-5ef132bf858c 1 \N Other +8f7fee38-9015-423f-80c2-81ca0419089a 1 Other Other +8f800aee-75e7-4e5a-90a6-6bc46d62d24b 1 Other Other +8f807dba-0d28-43a9-85d8-46a8023ed849 1 Other Other +8f809a57-9704-4f93-b8a1-862a4532391c 1 Other Other +8f80a066-92e3-4cc7-804e-f1f12707ebe6 1 Other Other +8f80dc60-d30f-45c3-92a7-6e42a80946d1 1 Other Other +8f810146-41de-4403-b2bf-92453bf08816 1 Other Other +8f815127-d373-4528-9ba8-d7de3dc4c18c 1 Other Other +8f81a2fe-c840-47c4-bf86-5953e5308349 1 Other Other +8f81a9fa-32d6-4ad6-9d05-3faeafa3ecc8 1 Other Other +8f81aad3-448d-4da6-b4fb-83d0ae263ded 1 Other Other +8f81b8c5-f61a-4b03-8883-47ebcba787b7 1 Other Other +8f81c552-b8f9-44e1-a874-f81b4033de61 1 \N Other +8f81f40f-a7c1-4f5a-b82f-a12052b4fe27 1 Other Other +8f821efb-449f-4963-a411-4242a7dad961 1 Other Other +8f828e8d-53fd-4eea-823a-470678d4b22e 1 Other Other +8f82918b-5414-461d-8e52-c6150936328b 1 \N Other +8f829364-89a4-4489-885d-962c18d29065 1 Other Other +8f829406-5030-4300-8507-20b208c24c82 1 Other Other +8f829ec9-44eb-4ae8-a273-91484257e853 1 Other Other +8f82b728-0c5f-4b66-8dc1-844e5b32d02e 1 Other Other +8f82d0d7-bd47-413a-852d-08bffdb33361 1 Other Other +8f82da5a-e4c9-4f6d-b600-a62c7e39e6ee 1 Other Other +8f82f832-0ce1-42a7-a342-baa793ca5078 1 Other Other +8f832090-07eb-4bef-a9fb-fa44e0655428 1 James Other +8f833630-6e15-4ee9-88cb-191dcbad5177 1 Other Other +8f833ab6-23b0-4927-9959-c7cadf5167ce 1 Other Other +8f835df3-24f0-46bf-9f17-c56c3a059363 1 Other Other +8f83e734-1617-11e8-9252-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +8f8408f7-d35f-4c5c-b1a5-08f22970555b 1 Other Other +8f844052-3bf5-4e9f-9602-181c7bf74b43 1 Other Other +8f845bff-8be1-4739-9641-cc02c75854df 1 Other Other +8f848812-b321-40cf-b781-5c405cdcc58e 1 Other Other +8f84d0d4-a8c3-4f87-83bc-4b863e6cf1d9 1 Other Other +8f84d5a5-ffd4-4e6c-a0ce-bc1995c2f22d 1 Other Other +8f856076-7df2-4270-817a-d0ada6a04ca9 1 Other Other +8f857f44-bb50-4d06-a16a-782530891c41 1 Other Other +8f85df55-0c04-4473-a946-a4481c244e4f 1 Other Other +8f85e1b1-d3c4-44ac-abd1-7500a7175fb0 1 Other Other +8f85f7bf-4afd-4d23-822b-05351042bca7 1 Other Other +8f863a2e-07f7-4631-8468-fd5308b5dc87 1 Other Other +8f865b98-97a1-4453-9fc0-08973fa87c00 1 Other Other +8f8664a7-055f-4a7a-8d40-7be789100e9b 1 Other Other +8f866a86-65f8-4f5c-b6d1-9731064c299e 1 Other Other +8f8684f2-8031-4080-80cc-159d93ffb756 1 Other Other +8f86ae56-031c-4a6a-b00b-2b47d2c32e97 1 Other Other +8f86af4b-44bc-40da-8b46-fd080e578b4d 1 Other Other +8f86c2bb-b2a7-43e0-88a2-b441047ae52f 1 Other Other +8f86cc15-cac6-4c26-acbd-42bcd5ef8ea7 1 Other Other +8f86f796-f462-4b2c-b621-0f600226af03 1 Other Other +8f870dfa-4bc5-40a4-8ff2-1dab509729f5 1 Other Other +8f8744bd-912f-4fdc-8d01-ad23638174fb 1 Other Other +8f877181-855f-4aff-98f7-4beb54910cc9 1 Other Other +8f878f81-fa49-44e8-a1a6-8984795350dd 1 Other Other +8f88110d-6aa5-44b2-abd2-a0568b11ebe6 1 Other Other +8f882711-a702-42db-80da-251ac30fae39 1 Other Other +8f886fc6-d794-42bc-8a94-56e50bb3d695 1 Other Other +8f88a8f3-4d8d-4dba-aa6b-d518758f5dd7 1 Other Other +8f88b550-79f1-417c-8c96-7791672eef76 1 Other Other +8f891881-3d51-4963-b89e-0f30914aeef2 1 Other Other +8f89313d-9aea-438f-b1d2-a8c59dda8d61 1 Other Other +8f894115-70ac-4eed-8e3f-7eefafbb7070 1 Other Other +8f895120-43ca-4b43-8faf-b50af0c647c4 1 Other Other +8f8999a2-484e-4898-b952-2cc5cb53f13c 1 Other Other +8f89be85-9abd-4e89-b0d4-52ab54340a72 1 Other Other +8f89f0ed-5a23-42cb-850a-5ae66999e32e 1 Other Other +8f8a8705-8390-4ca9-bf35-535b6e5ccc99 1 Other Other +8f8aa8ac-5df4-4029-9bf1-9787447adfdf 1 Other Other +8f8ab4d1-56bf-46fc-a1c8-cc6cd64bd83a 1 Other Other +8f8ab623-5e1f-4334-8025-7bf7f37fe7f4 1 Other Other +8f8ac05e-dcea-430f-b22d-ccb4f48854ee 1 Other Other +8f8ae870-ceba-4528-906b-5a29b7e99616 1 Other Other +8f8af5ef-cab5-4616-b4fa-30e001fbeaea 1 Other Other +8f8b1cf7-0108-4d34-a3df-27f5233f5774 1 Other Other +8f8b5c28-e3fc-4a90-a461-5ac8c14c39cf 1 Other Other +8f8b7b4b-4fb6-41b1-8bf8-dcab0e86c378 1 Other Other +8f8bb4ae-2308-47f8-a949-9aa0a36ba971 1 Other Other +8f8c0952-5049-468b-8a68-98981808e9fa 1 Other Other +8f8c1204-43b1-483c-99df-77203b4359af 1 Other Other +8f8c379c-0273-4fb0-b14b-48a6a3e3a22d 1 Other Other +8f8c596d-c507-467b-9548-bbb60ebc8d97 1 Other Other +8f8c6ed3-881f-4e5c-80d6-b29430ed246e 1 Other Other +8f8cac01-dea1-4246-b334-b1e9b9270734 1 Other Other +8f8cb8c7-92ff-434a-b499-dc579d10ffd3 1 Other Other +8f8cbba9-8b75-4b71-9437-952b42ce8048 1 Other Other +8f8cff35-a47e-4506-a440-ea02fd9ac39f 1 Other Other +8f8de049-eb07-44ab-9848-f68bd6ba3146 1 Other Other +8f8deedc-651c-43d7-84ae-23c3005d84fe 1 Other Other +8f8df700-851a-43ec-a1fd-81a5c908f7fe 1 Other Other +8f8e3b38-facf-4b51-8a08-68dd1eccf948 1 Other Other +8f8e7b6e-4ff7-4724-8524-e4f2da8250d3 1 Other Other +8f8e9409-884b-4c88-adcd-89cdea291e26 1 Other Other +8f8eae3c-11a8-4c88-91a0-9ba5e9437933 1 Other Other +8f8eaff2-4017-4e52-8ba8-f66bdf40f33c 1 Other Other +8f8ec192-a8e7-45c3-abb1-84d427d7db2b 1 Other Other +8f8ec23b-b8c5-4cf7-b913-ed53a70f1cd7 1 Other Other +8f8effeb-7865-4c08-8c9d-d7bb623ba6cf 1 Other Other +8f8f1028-9013-4940-90d5-8ccb91c22f25 1 Other Other +8f8f4153-86fc-4b63-ada6-c99ea50c0f9f 1 Other Other +8f8f5940-f1dd-4809-a742-0b800c2c8f84 1 Other Other +8f8f6bb5-6e3e-425e-97e8-0f68126cdc00 1 Other Other +8f8f9346-22de-48d2-a774-dd691c4b1d7b 1 Other Other +8f8fd273-8c3b-46c2-aff0-82a75da78f89 1 Other Other +8f8ff9a7-cfab-4d8b-8f78-2d22d40e0a2c 1 Other Other +8f900790-53e2-4ae9-91aa-75304aa6db2f 1 Other Other +8f90b159-eb29-4d6a-be19-0c4a2a6970a1 1 Other Other +8f9132b1-d903-472a-ae2f-75f42349ee3a 1 Other Other +8f914a88-044c-4ff5-acf4-634d0712672a 1 Other Other +8f915793-b1ef-44c9-83c8-e48329a32f2b 1 Other Other +8f915d70-d43a-4fe9-a05e-b65562c8213c 1 Other Other +8f91d6f5-8b07-4c96-acc2-56eea5ad9fd8 1 \N Other +8f91eb0c-b9aa-4cd4-a9d7-681e0dd54392 1 Other Other +8f924ff7-cf75-49d9-859d-ada41c3bd0b8 1 Other Other +8f926f92-34fe-41c6-9cfb-24dccd6025f9 1 Other Other +8f92b240-de5d-4071-8acc-76619f26c250 1 Other Other +8f9352cf-c4cb-4007-80dd-8f469d7a953d 1 Other Other +8f939ed8-23ad-48b6-9ed2-e76c7eeff090 1 Other Other +8f93dd8d-1697-4f43-9270-8f62e6faa4de 1 Other Other +8f93eaac-a6fe-40a5-9a20-c4a0e6496e40 1 Other Other +8f9427d3-6f81-4d2c-9c04-54ac78cdcc3c 1 Other Other +8f9431b3-5f77-46d9-9d85-ff3ab0b84daa 1 Other Other +8f94b385-8c55-4e86-8dff-ae6b63a14c89 1 Other Other +8f95693b-c182-4184-b7b2-1a867555ae4e 1 Other Other +8f958332-a916-4022-961c-5faff4167981 1 Other Other +8f9594bd-58c6-4bb1-b9a0-d0b660645e5a 1 Other Other +8f95ad4c-46a8-43e4-8799-d5d705e4e692 1 Other Other +8f95fe7f-e14c-4202-9883-840207d602dc 1 Other Other +8f963526-d56e-4071-8973-1ad4b8158761 1 Other Other +8f96397d-089b-4821-8649-89fa18a124df 1 Other Other +8f96717a-9b9e-4a54-be76-081fa2bc2d6f 1 Other Other +8f96c92f-a2aa-4e00-97f3-0b0c58c5ad25 1 Other Other +8f96caf2-4d01-4ffb-bb73-8f23cb8130e9 1 Other Other +8f96db07-55a7-4e76-a02c-66c305024e2f 1 Other Other +8f96e844-b760-4093-9330-e69ae2fb5819 1 Other Other +8f96fbfe-f1bb-4791-bd0d-fa74ec8ffc79 1 Other Other +8f97681b-8e70-41a1-99cc-34b4c7471056 1 Other Other +8f97b201-445b-4b1c-b7ab-ed0d2bd4eb07 1 Other Other +8f97e137-e2c4-4733-9b48-fd18da8920de 1 Other Other +8f97eb29-40b7-41b0-8eeb-8e285e6615a6 1 Other Other +8f980f5c-eaa7-4ffa-ba51-31c04889c51d 1 Other Other +8f982ecf-0e11-4b84-ae24-067353705a90 1 Other Other +8f98ab0e-be63-4cbc-8bd7-bd561c2cddb3 1 Other Other +8f98ac3d-a5ea-4957-abee-745d5e6e871c 1 Other Other +8f98ad3b-1c1a-4734-9cd6-0f1ccd69e15d 1 \N Other +8f98c665-b71b-47a5-8bf2-1d58c1888a55 1 Other Other +8f98da09-d159-429c-a64b-94e75b47a4c9 1 Other Other +8f994cdb-10aa-4891-9385-2a0dbc7a3286 1 Other Other +8f996106-5b5f-4878-91db-45b1b456a4be 1 Other Other +8f998d56-c88c-4e95-a624-8a89a437849c 1 Other Other +8f99c907-89d6-48d6-be17-3f7bce75d481 1 Other Other +8f99d0a0-985c-11e7-a70b-fa163e8624cc 1 Other Other +8f9a4b92-8347-442a-b098-c34128f92690 1 Other Other +8f9a9b49-a37f-4271-9cb7-f6112729bcd4 1 Other Other +8f9ab38b-6c42-4a08-82cb-f8e3c5aea05a 1 Other Other +8f9ade87-9b4a-4aba-8380-615101a89eb7 1 Other Other +8f9b2b7a-1e9b-4fda-8152-bf37f67dea9c 1 Other Other +8f9b4354-4617-4479-8ac0-a1327fe664e4 1 Other Other +8f9ba854-cff5-443c-a884-45dd92fd5e34 1 Other Other +8f9bc263-2573-4ae1-a206-b5ab12539937 1 Other Other +8f9c8fc9-b2f1-43ea-9e4c-602624f82532 1 Other Other +8f9cb752-8d05-4827-aeb3-caea0ec21f53 1 Other Other +8f9cc859-538e-4149-8584-e01d0d727bb6 1 Other Other +8f9d1257-6bd6-41fa-9dd2-d789aee70df9 1 Other Other +8f9d4553-77e6-4402-a4cb-3ddcda5a076e 1 \N Other +8f9d4a94-5a05-4a78-a5dc-acc7d8973d00 1 Other Other +8f9d7422-8916-4681-9feb-9acfba464b6c 1 Other Other +8f9d8624-8e98-434d-9a19-a52d7c423e91 1 Other Other +8f9dd9ae-3f58-43ab-b699-f3138579e3fe 1 Other Other +8f9e1301-1bce-4d4b-88be-8f3f1dbb80c2 1 Other Other +8f9e1d67-7485-4895-a2ea-f22e67d2ae58 1 Other Other +8f9e28b3-d0fd-416e-b9a2-7b342d088369 1 Other Other +8f9e3160-f1ae-40fb-b457-afe25b14739d 1 Other Other +8f9e40dd-9358-4159-ad12-64a3510ec26b 1 Other Other +8f9e5d77-aa8d-4bd0-b07e-bb27df6c4442 1 Other Other +8f9eb19a-6bd6-41c1-971d-94dbe7adaf78 1 Other Other +8f9efe22-9703-11e7-982f-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +8f9f2672-20b4-4410-9b90-7ff3a7dc5dd6 1 Other Other +8f9f4885-f331-4178-88b1-4e12a30d745b 1 Other Other +8f9f71a4-f6fb-495f-9467-b89d7e282757 1 Other Other +8f9f80d3-d80f-4c03-81d4-c0e21e5e08a8 1 Other Other +8f9faef9-0d81-45b9-9859-1c147395d387 1 Other Other +8fa072f7-6ebe-470f-9680-09dec458c173 1 Other Other +8fa08990-0358-4a18-8a5d-d8c28d2d2383 1 Other Other +8fa08c15-5ea2-4a56-836b-921a0b048116 1 Other Other +8fa0c511-d78c-42e2-9aae-3ac4acda28d9 1 Other Other +8fa0ceb4-3864-45d4-9ff7-9d5612fe1642 1 \N Other +8fa11605-0562-4f71-a82e-ceedfceb7772 1 Other Other +8fa13297-82b4-415a-b984-38ebeb76180a 1 Other Other +8fa1695c-03da-4b24-8476-b8c719639955 1 \N Other +8fa19ccd-a44d-4aba-ad25-be27aef9a1bb 1 Other Other +8fa1cb7b-271d-4224-bf3a-5989b927b5ee 1 Other Other +8fa1f9c7-b00a-480e-abb7-8f90f32b7d5c 1 Other Other +8fa20201-2b33-4482-82ea-db36284985ad 1 Other Other +8fa20b94-e301-4914-8852-96ea1b9466af 1 Other Other +8fa23756-c0f1-4f1d-ae21-7ef054e9c53b 1 Other Other +8fa28219-a2aa-41ef-b0b9-4c813e3c0685 1 Other Other +8fa2bd99-827f-4ebd-8c88-47817a13eade 1 Other Other +8fa2d9f8-e037-4827-bef9-fa06076f86df 1 Other Other +8fa2eec2-98d9-4091-af88-d83a2b449444 1 Other Other +8fa325fc-c526-4605-963c-3c88a0d878fb 1 Other Other +8fa34504-b2b9-42f7-85b5-f5820a22b89b 1 Other Other +8fa3673e-2efb-4989-80a8-be6874c838eb 1 Other Other +8fa39f10-ff55-4966-b3ce-69582f331375 1 Other Other +8fa3c9bf-90e1-45f4-824c-4242a249f41b 1 Other Other +8fa4d3be-8542-4452-a2a8-945491e24adb 1 Other Other +8fa4e366-bd7c-47a8-97c0-ef71167b049f 1 Other Other +8fa4f38a-7294-4918-8f3f-a0827ef80941 1 Other Other +8fa50d31-668e-4f08-a4ae-232c6d3842e5 1 Other Other +8fa514b0-ba1a-402c-bb55-f48b951d906c 1 Other Other +8fa54fe7-c111-45bb-a4be-c81520c584d1 1 Other Other +8fa550ff-809e-4900-b4ca-1e988f90afff 1 Other Other +8fa5e65b-0c90-43c3-878b-fc77ced0acb2 1 Other Other +8fa5f63a-81e1-4d32-9c57-14a18ec3c902 1 Other Other +8fa6d601-7d0f-402f-95b6-9911c460ec40 1 Other Other +8fa72348-2410-4230-bd31-b7fa00a87247 1 Other Other +8fa72b8e-05ec-4c9f-87e4-539f377e1249 1 Other Other +8fa7326e-e51a-442a-8f12-4b4fbecf89c4 1 \N Other +8fa76054-d020-425f-8283-47c7097c4c41 1 Other Other +8fa7685d-cbea-49b8-b072-aee7f6d25c91 1 Other Other +8fa76932-c01c-4622-a7f1-d554c1e76726 1 Other Other +8fa78260-e4cc-4ada-8c61-72bf3589862f 1 Other Other +8fa7cea6-4c7c-453a-a7fc-f40e9727a912 1 Other Other +8fa7f0f0-ab81-4213-846a-351af598ed9c 1 Other Other +8fa83bb4-32c6-460d-8973-11c581827bd5 1 Other Other +8fa9278d-d215-45f0-8cc9-769ad1194341 1 James Other +8fa92a1b-bad3-4f42-8a16-cb033552a41f 1 Other Other +8fa93ba9-0f4c-4304-9f4a-9094a439da69 1 Other Other +8fa9f2cd-64ea-417d-b019-c0dd84b4232f 1 Other Other +8faa16c7-e868-4ad2-b456-2420f102b1c7 1 Other Other +8faa848a-52f7-477d-a70c-6a61e6ae5b6d 1 Other Other +8faa8cf1-0e23-4da9-9ad7-2cac617fbdb1 1 Other Other +8faa93d8-e707-4208-ba11-27b07237252f 1 Other Other +8faa99bb-dd25-40ec-ac9a-9201dc0dd913 1 Other Other +8faac2ec-7a47-476f-8e16-751e07038a16 1 Other Other +8fab2aa0-a495-464c-b261-2c482d5ac089 1 Other Other +8fab3706-c9a1-4b25-8c1d-a13c44f9522c 1 Other Other +8fab5ad5-7144-4746-8423-7bc751722c4a 1 Other Other +8fab9f3a-b06c-4340-b0ba-325ebc50dbdf 1 Other Other +8fabaf53-a415-407d-ae71-1b46097e0947 1 Other Other +8fabaff2-bf43-4691-a40a-a8ce3d29bb9b 1 Other Other +8fabb925-f7d4-4f02-a519-a764bb2b60cd 1 Other Other +8fabc53e-064f-4754-849b-124c664239e9 1 \N Other +8fac4868-bb03-44bd-a8ea-da75142edf38 1 Other Other +8fac5120-10cf-4f11-a5a6-e6c6ccc66635 1 Other Other +8facdc9c-5788-4d16-847e-87c0c109e1a2 1 Other Other +8face1a9-76f9-448e-a337-f459ca3922d7 1 Other Other +8facf1bf-78fe-4cee-a44c-d727a5ab5361 1 Other Other +8fad214a-b7e8-4b1c-8d5b-6e0baf999382 1 Other Other +8fad3d8f-5d71-4dc5-b77b-2a8283fb47e7 1 Other Other +8fad58e8-93be-457e-8ef6-42c6efbd9de9 1 Other Other +8fad5f78-7a77-4f28-806a-5f18820a6bdc 1 Other Other +8fad77b8-67d3-43ab-870e-aed416e76b9f 1 Other Other +8fad918a-3171-4fa7-bc02-302fe7cdb204 1 Other Other +8fada1cd-8f8c-4878-9449-ad892e8e7e3b 1 Other Other +8fadb028-b19b-45fd-ab08-72d404c4e83c 1 Other Other +8fadc5ed-9006-42ba-a0a7-71b55b4d9f70 1 Other Other +8fadf7cf-3b7b-4d9f-8005-12e4d73fce01 1 Other Other +8fae0a46-2605-4557-81f1-30593bba76e4 1 Other Other +8fae0d26-137b-41da-96cc-eca475684249 1 Other Other +8fae30b8-2932-45ef-afa3-10a3e4cf909d 1 Other Other +8fae3301-9bfd-4af2-bf6d-5feaefb44117 1 Other Other +8fae3ba4-04a3-49ca-bb2c-1299280f8c09 1 Other Other +8fae403f-3f8e-4c69-9f65-fa66c1f08786 1 Other Other +8fae592b-79e6-4548-ad1a-b24dd3a934e0 1 Other Other +8fae6b3a-1c4d-4f80-90cd-1c28e92975be 1 Other Other +8fae9c8d-d361-440e-a28e-b1377761c631 1 Other Other +8faebf7a-4f18-4e30-a5f0-fe4bd4757a1c 1 Other Other +8faec8a6-f820-4672-8433-2d99e61714d8 1 Other Other +8faf146f-c9e5-4643-a130-a262a97ff67c 1 Other Other +8faf2751-1f3c-4cde-8571-8acfecb21f3e 1 Other Other +8faf2b9b-9357-4f13-8dfc-5a277e136656 1 Other Other +8faf50f2-9b0d-4cdd-9fc1-43657a05f301 1 Other Other +8faf9a96-a612-47ad-b1bd-21334fa8c002 1 Other Other +8faf9d61-0548-4cde-a810-a8218ffeb654 1 Other Other +8fafb5d4-328f-4a7d-aa67-80c778e6f9fe 1 Other Other +8fafe5a1-705e-4f38-9054-f75175ad91f4 1 Other Other +8fb03483-a7ff-4f92-a1ef-4aba2f4f7767 1 Other Other +8fb0ad04-ae66-4ab7-b1af-a81d1c8c3219 1 Other Other +8fb0b388-f0a8-4f65-bc9b-e941a913e429 1 Other Other +8fb122c1-973d-48b7-b70a-57b98cc7199f 1 Other Other +8fb12d5e-c0af-4818-82fc-f18500f2a322 1 \N Other +8fb13b08-3b3a-451e-b19b-44cf0cc6f5b2 1 Other Other +8fb15c23-4609-47c4-9783-4140d4f718bf 1 Other Other +8fb16568-0345-4961-9301-0dcc3dd164b3 1 Other Other +8fb18893-9601-4788-acbe-3f69592e6a1f 1 Other Other +8fb19512-f08c-4f5c-b62b-6065c6f62207 1 Other Other +8fb1a670-aca2-47dd-8bfe-b139b29e6ce5 1 Other Other +8fb1a9a4-b7cd-4189-af45-46ba76789d15 1 Other Other +8fb1ba07-79b0-41a9-88bb-f4a4596fd76b 1 James Other +8fb1d64c-733d-4a36-a473-8ccca089ffb9 1 Other Other +8fb1e58c-4845-4d9a-9d3b-5540bad548d7 1 Other Other +8fb1fa4c-9b9d-4d1b-8cc7-5c5c665befb9 1 Other Other +8fb1fdf7-4424-456f-bb46-2f25a52c901f 1 Other Other +8fb2150f-2bfc-46a8-a038-1c80ea91148d 1 Other Other +8fb21e62-994b-46a5-82ef-5e9a5b94f406 1 Other Other +8fb2bdc5-8a55-4e6f-b611-8212f645ca35 1 Other Other +8fb2fd8a-d8bf-47b8-a54a-9186e3d3e65c 1 Other Other +8fb33bca-3227-47cb-bf8e-4b06931a4e35 1 Other Other +8fb34ebd-eaec-40f6-a81e-e07ef0e67076 1 Other Other +8fb354a7-ee47-4b61-bdfd-c29f60785a56 1 Other Other +8fb40072-4e6c-48e4-9449-b762da2451fd 1 James Other +8fb47e05-6a58-45a1-a162-22cd786c4a17 1 Other Other +8fb4b43f-24b8-4471-ba7d-39f84e246e79 1 Other Other +8fb4ccc1-a3ac-496e-9103-7bc237e16bed 1 Other Other +8fb4d088-19e5-4e99-90e8-c315344e30ca 1 Other Other +8fb4d618-cbe7-4e0b-a442-9628bc8db05f 1 Other Other +8fb55308-8bf7-49e8-8f03-88dfbf20fff6 1 Other Other +8fb55df2-cf49-44b5-9a2b-5b7ee821b3c8 1 Other Other +8fb57e87-3da4-46fe-bd8b-a4c92caf1e05 1 Other Other +8fb5c17d-77f0-4583-ac0f-e7f8a42eb91e 1 James Other +8fb5c226-372b-4704-9457-8e4e52d19482 1 Other Other +8fb5c97a-abd5-4ec7-b2b6-53f37b31905d 1 Other Other +8fb65c82-99b4-456e-876c-a0e9f365a3cf 1 Other Other +8fb67a70-4085-4f48-a44e-f32532229716 1 Other Other +8fb6a13b-6fd7-4a7f-a5d0-31a4e0d836b8 1 Other Other +8fb6b93e-bfe5-41f3-99e5-cf47d58446f2 1 Other Other +8fb6d814-1d4b-4829-a3bb-c0ea5b0cf8db 1 \N Other +8fb6de20-8521-4fed-a622-2026c1251b49 1 Other Other +8fb76cb7-a650-46c5-95f8-81a705623e71 1 Other Other +8fb7a7bf-7f56-4ac9-bafa-bbbbd46a712a 1 \N Other +8fb7ae22-6189-46b2-9f45-a68aab7cd7ec 1 Other Other +8fb7ba12-8193-498a-b382-6200eabcefb8 1 Other Other +8fb7c297-123a-45dc-82bb-87dfda72780e 1 Other Other +8fb7c9be-eb5b-4bca-a3b8-48712c9ec6a7 1 Other Other +8fb7cfe5-d5a7-470b-8033-135dc2b22d76 1 Other Other +8fb844fd-b1bc-4bbc-a6b7-18f05120ef2f 1 Other Other +8fb847d2-259b-4d11-ae9e-d992fb2b3a6c 1 Other Other +8fb84ec7-6849-4380-8f2b-aae57d8e7a3f 1 Other Other +8fb84f7b-5b60-4b2e-8c84-e9306c2a3b44 1 Other Other +8fb86442-092c-4928-835e-35398eb2ed13 1 Other Other +8fb8a27d-e850-4ad5-a64c-1fd2d10eb4ba 1 Other Other +8fb8ad23-8df9-4e17-b123-efe52bf59669 1 Other Other +8fb8cb93-3590-466a-899d-cfa3e36caf4a 1 Other Other +8fb8dc12-4d94-4f01-878c-4e4a7a438ddf 1 Other Other +8fb8e984-26fd-4b0f-b4f6-74f308ff6e29 1 Other Other +8fb9577d-7246-45c4-8d93-d4ee66382722 1 Other Other +8fb9920f-8280-4718-bf06-7fd6f110de37 1 Other Other +8fb999b7-f43e-4048-b5fb-e48d40e3d990 1 Other Other +8fb9bb6a-da26-4791-b6b2-65f4e39fd8ac 1 Other Other +8fb9e044-33ab-410c-a72d-5e15f8dd97cc 1 Other Other +8fb9ea0a-2046-4d2a-9719-dfab9c32254e 1 Other Other +8fba201b-824f-436b-89ae-85963958ffa4 1 Other Other +8fba23cc-9185-4eb6-959b-5729818c8bf8 1 Other Other +8fba292d-5def-4d43-9bc3-688a8f635017 1 \N Other +8fba56f0-628d-4b00-80a4-60e09bc39d9b 1 Other Other +8fbad18b-1ae7-4f34-8af7-37511b0d3f8d 1 Other Other +8fbb210d-ee0d-452b-876b-62b4e8ceb5c2 1 Other Other +8fbb3dbf-88d8-4a98-b3ae-753fa7b028df 1 Other Other +8fbb7225-45f9-4414-b0a8-0aa2f0661b14 1 Other Other +8fbb7909-9fac-4907-b19c-8dc5c49b327d 1 Other Other +8fbbc8eb-a945-4e5c-82b0-1feb414116ba 1 Other Other +8fbc31bb-eaf1-4002-8286-151febe43b67 1 Other Other +8fbc4863-aaf9-4b39-a245-1fa92c9fee6b 1 Other Other +8fbc7484-8e3f-475c-b174-ebd31d2400d6 1 Other Other +8fbcc096-7074-4422-a515-c61d804cc482 1 Other Other +8fbcc658-da42-4ae9-89e6-085859231c73 1 Other Other +8fbd4371-f841-4b71-958d-3306ac231c52 1 Other Other +8fbd49e1-e621-4142-a309-5addab9fdd8c 1 Other Other +8fbdaa76-ffaf-4869-aa2b-3ed7743bc752 1 Other Other +8fbdbfd0-b74b-476a-8f64-2cd60bf1ec82 1 Other Other +8fbdcfd5-186a-4ceb-ba65-550c60cc44cf 1 Other Other +8fbe07a8-9a60-4737-bdd1-85c3554f9816 1 Other Other +8fbe0fbc-6a86-4089-a5b1-0782c19fa93a 1 Other Other +8fbe5d2e-7fe5-47d7-aff4-2424daf7fb63 1 Other Other +8fbf32d6-1b55-4978-90ac-49b5d4c084a2 1 Other Other +8fbf52d3-af0b-4436-928f-745d6af4a5ea 1 Other Other +8fbfa1a5-879a-417e-9e4e-ec01d3a7eb6d 1 Other Other +8fc0a73c-e897-4b04-9e3c-c541f2ef558c 1 Other Other +8fc0be5a-7084-4ba5-b397-cdaa804a329c 1 Other Other +8fc0cf0d-3910-43ba-b366-7d6021b0ae2b 1 Other Other +8fc0d0f2-6594-43b3-8f24-37e98627d22d 1 Other Other +8fc0e219-daaf-4118-a9f1-64efdb61ea64 1 Other Other +8fc0eea7-4504-467a-ab78-589e138ab292 1 \N Other +8fc0f762-30ac-4f63-9d28-f3f311c488b0 1 Other Other +8fc0ffc3-8a7d-4ac6-bbdf-da003062db22 1 Other Other +8fc10938-182a-494d-ae7f-0b94dcec9dc7 1 Other Other +8fc11682-d5b1-486c-9929-16d1f18295b0 1 Other Other +8fc13718-b651-4387-a3ad-05a85a325538 1 Other Other +8fc1a740-244e-4390-b948-b85390cfde78 1 Other Other +8fc1bffe-7f92-42db-8bc8-52322e08fe7e 1 Other Other +8fc1f72f-7e36-44b3-b386-121eddc28acf 1 James Other +8fc1fa6c-f6d8-45cd-8403-20199047eaaf 1 Other Other +8fc25d72-b53c-4c47-9c55-b92fedc96df3 1 Other Other +8fc26075-ba54-4c81-a560-cb1824e7f20a 1 Other Other +8fc2882c-dec9-4db6-a155-60e6bc864dcb 1 Other Other +8fc28dbc-729b-47ff-b6d7-c73de21a32ec 1 Other Other +8fc28ee8-33f6-4422-9107-fe9e85de5a4e 1 Other Other +8fc2be54-c48a-4061-8949-fa54bc3b10ec 1 Other Other +8fc2c223-69f0-46fc-a944-4e13486caa8e 1 Other Other +8fc2c9e1-a256-410c-b29b-c36d0ee2c1db 1 Other Other +8fc315cf-b11f-4a7f-aa73-708cf4c84d68 1 Other Other +8fc36a4e-9f71-4ea4-b1ba-c65bf3103d74 1 Other Other +8fc38706-6818-440a-a807-166a1829e836 1 Other Other +8fc3a0cd-5bbc-4142-a34a-a0d7388f7409 1 Other Other +8fc3c07e-d1c0-40f8-83e7-6d864103a548 1 \N Other +8fc3d0bb-412c-4674-a031-76bf8f192b19 1 Other Other +8fc3f745-b5a9-433c-99d7-793c8f016749 1 Other Other +8fc40b85-6f7c-45e3-b645-226ba8814314 1 Other Other +8fc42670-7906-47df-b2f3-8824d1ee6a29 1 Other Other +8fc43790-0581-4736-8c14-5b716c3f55c1 1 Other Other +8fc49284-0476-4115-b74d-255c5b02d5f7 1 Other Other +8fc4c978-b54f-443e-bc1a-fbdb826b5dd2 1 Other Other +8fc52596-7833-4e55-928d-44cd85f68f41 1 Other Other +8fc54c2c-8569-4816-9463-de79350d3342 1 Other Other +8fc57777-3e46-4906-84c7-e90930222f2c 1 Other Other +8fc57aa1-812f-437f-86ec-7f83c3514269 1 Other Other +8fc57d45-e6bb-406c-ae2f-bfa0232d9589 1 Other Other +8fc5e1af-5a01-4902-8013-36919a018a45 1 \N Other +8fc5e513-d3eb-4a74-a715-55c14ef30b9e 1 Other Other +8fc5e95b-2bfe-4924-911c-6ccb096e120d 1 James Other +8fc649a0-0cc3-4bde-aab7-193d812e6de1 1 Other Other +8fc68ae5-6ea4-4646-a0fe-0298a916713b 1 Other Other +8fc6c9f3-316b-4c02-a5ec-5c86be5c9905 1 Other Other +8fc6d269-46b0-4121-84f4-51299e973d20 1 Other Other +8fc70f0a-692c-40df-8baf-bcca1bfa6cee 1 Other Other +8fc7169c-1471-4bcc-a143-082b74538a8b 1 Other Other +8fc7b191-0043-497e-b459-9b4f82eeed91 1 Other Other +8fc7b508-5685-40f6-8002-6fd6d3097a22 1 Other Other +8fc7eccd-4815-452e-9bba-bd11945a0adb 1 Other Other +8fc7f6d7-2c24-4303-9359-c701eb7478a9 1 Other Other +8fc81092-6b08-4cb5-a5e5-e51987b6b9cd 1 Other Other +8fc818e0-945b-4db8-b3fe-ece12570da83 1 Other Other +8fc84101-bce9-4dc6-b42f-c1ef1b2c27cd 1 Other Other +8fc84725-23ba-4d83-b73d-7e88a0248358 1 Other Other +8fc85cae-545b-4536-af40-70bd7fd729ce 1 \N Other +8fc889ff-23e5-4480-8110-a838a720949c 1 Other Other +8fc92f1a-d8e7-490c-ab71-8c3cad5518d9 1 Other Other +8fc95724-010c-497a-8b6c-a02eeeadc42c 1 Other Other +8fc9727d-693b-4fba-8291-926121a0fe2f 1 Other Other +8fc9b5fb-f623-4b59-8b26-68d3b56c0243 1 Other Other +8fc9bad5-6681-4aa2-9b39-3b437865f5ac 1 Other Other +8fc9c9d1-5195-4c60-9b07-4a4379771039 1 Other Other +8fc9ff18-7e86-458b-a1c8-975deef3d500 1 Other Other +8fca0999-7b43-4520-b201-1dbb2ee39961 1 Other Other +8fca4cb7-bc17-4773-8c69-d673c52ea0cd 1 Other Other +8fca7ad6-c479-4ebe-99ab-50220fe123dc 1 Other Other +8fcaa518-b16d-45eb-9fbc-30acb54d01c8 1 Other Other +8fcae57a-7248-4dc1-8ac5-071a274eb756 1 Other Other +8fcb1e43-e77e-436f-80bc-b698e2a39ca8 1 Other Other +8fcb29f8-adbd-4bd7-8c9a-62909505cf77 1 Other Other +8fcb327f-d18c-45a0-b555-235b29237c02 1 Other Other +8fcb4eca-190f-45a3-97fa-4b8ec719a5cb 1 Other Other +8fcbc069-77f2-48f0-85b8-76cafc7eeb0b 1 Other Other +8fcc6f8f-b067-4a2b-acd9-f627cdf78701 1 \N Other +8fccfa54-b033-4f2d-baea-63aceb3f5ab2 1 Other Other +8fcd3538-9acd-4702-a76b-736291544246 1 Other Other +8fcd4ef2-937f-470f-8b14-6e9e3ed71e42 1 Other Other +8fcd7c87-35bb-4b69-8547-6536b1a3b2bd 1 Other Other +8fcd994e-6ee8-4e88-9e08-1ba0765c2c01 1 Other Other +8fcde883-0163-41bb-9096-6fd88ac3f85a 1 Other Other +8fce16e9-2d3c-4a0a-a543-9a60aa0ee5cf 1 Other Other +8fce3f72-a6e5-4c13-8703-ef4d73dbef2f 1 Other Other +8fce5873-9629-43b2-8700-ffbfa964fa06 1 Other Other +8fcebe8a-15a1-4fd8-8d7e-5c195f59fefe 1 Other Other +8fcf0738-e457-47c7-987c-40d9366c0b74 1 Other Other +8fcf1c71-4651-45b1-bee9-6e0b075a4387 1 Other Other +8fcf5c3c-c533-42c0-aec9-e52dacac36a4 1 Other Other +8fd02857-efc2-475e-bdc1-e0c4c6a767d1 1 Other Other +8fd0315f-dbc3-4a4d-a0ea-8270c53467f2 1 Other Other +8fd04053-b35a-46ad-a5f9-6cb263cc1fff 1 \N Other +8fd044bd-6da2-4e0b-8bb3-9c3a3dbc133e 1 Other Other +8fd08319-a561-4402-9e73-3fbf6ecede03 1 Other Other +8fd135f8-d84c-4850-ab19-7dd0bc2e59eb 1 Other Other +8fd186ac-4fb9-4f52-9fa5-5411666cc533 1 Other Other +8fd19e9a-ae6d-499d-9cb5-0612682d7b87 1 Other Other +8fd1aa48-192b-4f8b-8208-eb0fed21822a 1 Other Other +8fd1aaa6-7a7a-400c-ad8d-372ff572e6bf 1 Other Other +8fd1ae9f-cb56-488a-9501-8a7c81c33cd1 1 Other Other +8fd1b3da-1b47-4c02-9d21-c90d54f516c4 1 Other Other +8fd1e7d2-ada5-4b68-9e85-c6a55e7ea46f 1 Other Other +8fd1e9aa-8f51-49ce-9149-e52b6d19dec4 1 Other Other +8fd21cd1-ca23-442d-8757-549528acabec 1 Other Other +8fd25fdc-f682-4c77-b0e5-a99ac275de02 1 Other Other +8fd2bb81-7b0c-4858-a830-7958d88f3256 1 Other Other +8fd33bd2-c02d-4d57-b60a-eb239b7c19b3 1 Other Other +8fd398ec-3fcc-4d1c-b430-85bc811ce229 1 Other Other +8fd3b687-9ee7-44d4-8d7b-f13250fed1a2 1 Other Other +8fd3c9da-c363-47a4-b86a-39293b321196 1 Other Other +8fd3dcd9-d05d-4db9-839e-737b21f03138 1 Other Other +8fd3f003-d5dc-4eba-bda3-651348bb68f7 1 Other Other +8fd44151-e8dc-4eed-94fb-116c24756e5b 1 Other Other +8fd50dcd-cfda-4039-abb0-c3e09efcfc18 1 \N Other +8fd5c764-383b-4593-8975-556a21fff07f 1 Other Other +8fd5d9b8-b237-479f-a894-107d9c4ce09d 1 Other Other +8fd603b2-3cea-4c5a-865d-aab7458bbadb 1 Other Other +8fd67385-ceee-4221-8dc1-079220cc00a0 1 Other Other +8fd6f000-4147-4307-96f5-f488658e035c 1 Other Other +8fd755b6-e122-4da1-b827-597bbac9a0c8 1 Other Other +8fd77f1c-8264-4314-9176-fe19ee01b648 1 Other Other +8fd7921d-e564-4fef-b26e-de41dfede231 1 Other Other +8fd7bae6-8fce-4934-8ce3-db506a21c068 1 Other Other +8fd7de6c-3365-442f-9d9c-8b01b65df324 1 Other Other +8fd7f3f0-c2c9-4c41-8439-39c436a21f02 1 Other Other +8fd83eb4-98ef-4c15-8029-f268983964b8 1 Other Other +8fd851d4-a37f-42dc-843c-be119d6d8674 1 Other Other +8fd87cdd-713b-48c4-8b3b-ce75fc99598b 1 Other Other +8fd898fb-0656-46e0-931b-8cf52980e626 1 Other Other +8fd8c426-f96f-46a5-9de2-08f6efc0ce7c 1 Other Other +8fd8dedc-5117-4f1e-83c1-f209a11de437 1 Other Other +8fd8e293-4e5b-4dfd-bd17-557890a45f33 1 Other Other +8fd8fd72-d671-4842-a185-869f87383ad1 1 Other Other +8fd90155-3862-4227-a82c-76dbe57c5f1f 1 Other Other +8fd90b19-01e1-49b3-8071-5d7c8985a74e 1 Other Other +8fd93e98-1c8c-4c3e-a49e-a771286ee0ea 1 Other Other +8fd94ef5-2b74-49f7-b228-5faea1316829 1 Other Other +8fd9bf89-5d25-43f5-b96c-184a9159a146 1 Other Other +8fd9d788-0054-423b-bfea-727577c4640e 1 \N Other +8fda0d6d-93ec-41d1-baa6-ec16c68410fa 1 Other Other +8fda2a3e-9360-4357-97e7-cc50e0b6592b 1 Other Other +8fda6951-d078-4d1b-b1c2-e4e5f28c0e18 1 Other Other +8fda80bf-a281-41db-9493-1e60ffe7e7dd 1 Other Other +8fdaa66b-feb9-45df-a0f6-3bc9033d5bcc 1 Other Other +8fdab728-d593-453a-b09e-7f3decb11aaa 1 Other Other +8fdaf40f-8a53-4110-91cb-8c6dbcbe5f6e 1 \N Other +8fdaf935-7191-41b6-a49b-a947d7656220 1 Other Other +8fdb0df4-4c44-46f7-964d-7cecac1f32d0 1 \N Other +8fdb224f-63a7-4aef-8ac1-d234003cebe0 1 Other Other +8fdb389b-af1f-4286-826b-49b59709af44 1 Other Other +8fdb42e0-7da7-4be4-b13e-4d71e08355b3 1 Other Other +8fdb4b39-f005-40a2-bb33-5bd97f235b36 1 Other Other +8fdbc697-83c5-4d0b-aae4-a7e8c624a487 1 Other Other +8fdbcfa7-b52e-496b-87b7-bbade378c3e5 1 Other Other +8fdc2208-300c-4754-a692-f48c904d956b 1 Other Other +8fdc76cc-a32e-45a5-a07b-a90f713dc089 1 Other Other +8fdcf148-652c-4031-aeec-34a5ef35c4ce 1 Other Other +8fdd7ead-02fb-4b03-b750-ca1799b2c01f 1 Other Other +8fdd94bd-b3ef-4908-bda1-6e27dd80d747 1 Other Other +8fdddd7e-e636-4c15-945c-4b59c8075f23 1 Other Other +8fdde585-f707-497f-93df-79a780f8bfae 1 Other Other +8fddfa69-bfd9-48f4-bd1f-60ddec3c0d78 1 \N Other +8fde0bd8-4a04-45ce-a41d-ee85a567ba56 1 Other Other +8fde18a8-5c19-4b91-b86d-ce604cfb809c 1 Other Other +8fde2e4c-4a2f-4584-ad88-adda7606d538 1 Other Other +8fdee861-bafb-4b6b-b6be-931bee22342c 1 Other Other +8fdf0e53-fcdd-42e4-a6e7-9e32d28abaab 1 Other Other +8fdf5f46-b5d7-4283-b255-eb8b9375beb7 1 Other Other +8fdf969d-24ce-46e1-b1b9-6d6be42891b6 1 Other Other +8fdfc414-8e02-4c01-ac9a-a67360266b81 1 Other Other +8fdfcdbb-d31f-4a4b-a59d-8ecbea5d440b 1 Other Other +8fdfdff3-c5bc-47a2-a11f-f4d3e6a67bea 1 Other Other +8fdff7f0-5e53-4016-b40a-9cbff4180235 1 Other Other +8fe01e92-4433-4e67-9cf7-bf17bda81ec2 1 Other Other +8fe079e1-0005-485d-83b1-c8253232a0a8 1 Other Other +8fe08e41-65af-4aa6-87aa-4ddd8d364e8b 1 Other Other +8fe0bf33-98c3-46f1-91f9-464385a449af 1 Other Other +8fe0fee3-21b4-4abf-af7e-5caadace70cd 1 Other Other +8fe1264e-8b3e-4021-90d8-35691b06eca3 1 James Other +8fe143b9-d906-4ad6-930c-7aadfd8e69c2 1 Other Other +8fe14f9e-6d75-473b-b088-375aed3e2305 1 Other Other +8fe18720-0bbb-40d9-9d7d-bd579fe85782 1 Other Other +8fe1acff-1249-44af-8668-e88bf4ccbbc2 1 Other Other +8fe1c05a-d2f6-4636-974a-a81f7f214a6c 1 Other Other +8fe1ce75-3f52-4464-a468-f805673a0f8c 1 Other Other +8fe1f919-ded3-4742-959b-0267c801dbfd 1 Other Other +8fe219d7-a583-471a-852c-f72d97833ea2 1 Other Other +8fe26cae-837a-4d8d-a36f-adad1323e9c3 1 Other Other +8fe27aa7-0c56-479f-9e02-24b95057c5dd 1 Other Other +8fe2c03d-4a63-4729-92e7-5f5b7bf10b7e 1 Other Other +8fe2dfd7-702c-406e-b8fc-1d163ce6691a 1 Other Other +8fe2f0e7-cc04-4eca-9242-0f7d3f0f3cc8 1 Other Other +8fe31dda-2edc-44fb-a8cf-e3fb638bf90f 1 Other Other +8fe325e3-24a0-4675-b48b-0485783e65ec 1 Other Other +8fe327f3-abd3-48bc-8f74-7ce136178704 1 Other Other +8fe331a4-3650-444a-bf32-e651f129f199 1 Other Other +8fe39e11-4ec0-469f-b451-9ac4bb207fa7 1 Other Other +8fe40bdc-123e-499e-aab6-070cda731699 1 Other Other +8fe40cea-778f-4be0-b2ae-590c8ee7a9f4 1 Other Other +8fe4291b-334b-4032-988d-32489e1f298c 1 Other Other +8fe474ca-6b20-43b6-960d-f6324a436b61 1 Other Other +8fe4e047-ad48-4790-9929-abd0db96eab2 1 Other Other +8fe4e378-ce10-4294-b5bf-5ce97d7f457c 1 Other Other +8fe53434-1c2c-49bb-99d1-b1c4764cbff5 1 Other Other +8fe54265-6b04-4b3b-bbb5-77505cc441f4 1 Other Other +8fe5abc6-8622-479a-a1e9-a9d71066d3af 1 Other Other +8fe5b9c3-06ed-4620-993f-f26f5b7316b1 1 Other Other +8fe5e07a-8449-45b2-bcb8-06d0585d08e5 1 \N Other +8fe60d33-fa70-4baf-8e99-c39ad563c1b8 1 Other Other +8fe66d94-da36-40f3-8f33-bb89248caca5 1 James Other +8fe706b8-a341-49e0-bebe-cc2e0f19920e 1 Other Other +8fe7597d-3120-4fae-8666-72a5e6699344 1 Other Other +8fe75e9f-7bbf-43e4-a1d7-c2014242db0a 1 Other Other +8fe7908e-adbb-4f1a-98fb-e2459d1382d4 1 Other Other +8fe86573-5d72-4aad-b869-4c78ed60d1fa 1 Other Other +8fe86fbb-144f-4cbe-9c91-46973b057ee1 1 Other Other +8fe88fbf-f279-4e74-846e-877bda1a2e4d 1 Other Other +8fe8cef8-e8d2-492b-8392-ae9f242ce804 1 Other Other +8fe8ee07-af68-4d75-88a1-d4ae040111d9 1 Other Other +8fe9570b-81cd-4bbb-92f3-55022824e49a 1 Other Other +8fe95d2f-4685-4226-97d0-fbee8602fa01 1 Other Other +8fe98e9b-c75f-4cc1-9c3e-f577d255bd30 1 \N Other +8fe9b2fc-a8ce-4c9f-824e-97cb54018582 1 Other Other +8fe9f1b1-a264-4b4f-879a-7108cff3ef11 1 Other Other +8fea158a-6c4a-46ac-81ba-ab59af5a0b5e 1 Other Other +8fea2b8e-83f0-4858-802d-a1221cde63c6 1 Other Other +8fea3b93-b823-498b-aa43-396db662a90b 1 Other Other +8fea51e8-f2cc-4734-a7d6-a76ef3879302 1 \N Other +8fea81db-b804-4e59-953b-e2f5674aa1b9 1 Other Other +8fea9cdd-4a35-4536-b0a7-1350129db934 1 Other Other +8feaed3f-8fd2-44c7-937e-66a22bf06737 1 Other Other +8feb0aa0-89d2-43f0-924a-d823e3030eff 1 Other Other +8feb1789-c453-4081-828a-6926656e8597 1 Other Other +8feb67c2-6ee2-49c0-8a6b-66ba1af7a2b3 1 Other Other +8febf5a1-e973-4d93-a9d8-e4ed0307f4c4 1 Other Other +8fec02d0-6573-49e8-9c69-c231aaf4a2d2 1 Other Other +8fec1dd2-9c75-4934-beb8-604583ec4a65 1 Other Other +8fec33de-4675-431f-bd21-6af98587b55c 1 Other Other +8fec4f90-111b-493b-8864-e065daa81679 1 Other Other +8fec7da4-7b90-4e9c-8f14-c8095fa88967 1 Other Other +8feca30e-ea60-45f0-8f17-f2bc4e0d9b35 1 Other Other +8fecbb04-2ae7-4493-b4f7-6aae727a85a6 1 Other Other +8fed026b-bb7e-47a6-b2e8-c323d96e745e 1 Other Other +8fed0820-7665-4ac8-9c74-04b914d97d59 1 \N Other +8feda135-23c9-44be-b412-d1e661c9682d 1 Other Other +8feda183-74ef-410f-869f-977b8266be0e 1 Other Other +8feda43e-c6ad-41c0-9c9c-2ec3f2e2bc2b 1 Other Other +8feda440-dd5a-470b-a3a6-0f546da4ae7d 1 Other Other +8feda8f6-5876-437d-93d3-2ec5a3c37ce9 1 Other Other +8fedced9-1a71-4d0c-abe1-b3b5bd53f78b 1 Other Other +8fee0229-3f95-474c-8ce7-c4efed375ef0 1 Other Other +8fee06cb-ed7d-4c49-805a-c58059f2df8d 1 Other Other +8fee34cf-daf7-41e9-aeff-56120cc858e9 1 Other Other +8fee5724-eaab-46b8-8581-e1bd58f9992c 1 Other Other +8fee6486-573c-4a95-bdb8-42bab15d5574 1 Other Other +8fee6f6f-6c7c-4357-89b6-f0ed6dc01b9b 1 Other Other +8fee8047-509e-49d3-80db-396357d16988 1 Other Other +8fee904c-c2b2-464e-a0e2-4b0c4c912d64 1 Other Other +8fee9643-edc5-48c5-b49b-cee414091462 1 Other Other +8feed088-980a-4f43-88ee-42db2b7186e6 1 Other Other +8feed46b-87ed-4723-9d87-2b8966468b73 1 Other Other +8feef42f-6d99-4899-b36d-2b7dc0bf16b5 1 Other Other +8fef18d1-784a-4316-9e1d-7c8923910dcb 1 Other Other +8fef1e51-5dc9-4385-b826-9b99cbd15b77 1 Other Other +8fef35b6-75aa-47ae-9307-08842f6fefa6 1 Other Other +8fef57e9-2b16-4c6f-a3f2-1f58c210550d 1 Other Other +8fef9325-95ce-489c-91f1-c7acc6d82448 1 Other Other +8fef9bf7-4890-4c58-97ae-7578da00ac86 1 Other Other +8fefb52b-5751-40f0-94bf-5903974de064 1 Other Other +8fefbd5d-e226-4dc4-b7e4-d8686d9ab1c8 1 Other Other +8fefe254-f56c-4c17-bc56-a616a91940c9 1 Other Other +8feffd01-7107-455a-834d-4c823bead6b3 1 Other Other +8ff022d1-0ccf-407c-a949-9fbbbd493dc1 1 Other Other +8ff083bf-c521-442d-9cb2-b836049fdacf 1 Other Other +8ff0d108-eadb-431c-96d5-f9f60cd5ea18 1 Other Other +8ff0f4a8-0a3b-4a84-9afb-1d8dc5dc554b 1 Other Other +8ff103b8-25b1-4b7b-af35-bc0806bc47f5 1 Other Other +8ff11c27-add1-4340-9416-7e0a648dacce 1 Other Other +8ff11eca-ea41-42fb-af6c-451d287718e1 1 Other Other +8ff123cc-382d-4b99-afec-62781615ec9a 1 \N Other +8ff1329c-648c-47b9-a192-3070eb11ea42 1 Other Other +8ff158f6-a2f5-410a-8881-37c054641b0d 1 Other Other +8ff22e61-36ad-45a9-a34d-fa54264f6896 1 Other Other +8ff231ec-8c55-4716-b439-c17c7f6f4662 1 Other Other +8ff2346d-67aa-47f0-9440-564e1ea466f7 1 Other Other +8ff243ce-52ce-437a-8155-4a36ec2632a3 1 Other Other +8ff28d0b-577c-458b-9c17-44f02a6c6191 1 Other Other +8ff2941d-273f-4c93-b0ca-e91deb05176e 1 Other Other +8ff302b1-cf06-43b3-8564-e2a65918446a 1 Other Other +8ff37aec-6796-4c99-bdfd-f827cf4faa2a 1 Other Other +8ff3b3b8-a5e5-46d2-a63e-6b26a0825809 1 Other Other +8ff3b7d6-3f11-4303-a662-b233c90b9246 1 Other Other +8ff3cf69-ac0d-43e9-b6cf-553da21676d0 1 Other Other +8ff405fa-a2c8-4b16-992a-515365849a7b 1 Other Other +8ff43a59-2656-4e0c-9550-ef8d7b58ea09 1 Other Other +8ff44700-543f-4844-b0ae-739ab85a9d62 1 Other Other +8ff44ec2-0386-44b6-a13f-4285897bd94d 1 Other Other +8ff472e0-e427-430c-8977-63813559b20d 1 Other Other +8ff4a81c-c713-4a11-93cf-bee58387693e 1 Other Other +8ff4cfb4-9309-4c2e-895f-2063c8545426 1 Other Other +8ff4d7dc-7764-4cb4-bf62-c63062fe75d2 1 Other Other +8ff500df-4adc-4f8b-9f8f-dd08dde5cff5 1 Other Other +8ff526bf-4a9e-481f-a32f-d6730941835b 1 Other Other +8ff57116-bd46-4fca-b614-842d03ce813f 1 Other Other +8ff57bc5-9832-4cd4-8e53-93930153250f 1 Other Other +8ff5ad39-9e8e-4046-93c8-706615ea4a20 1 Other Other +8ff5cacb-6b79-46f5-ba1e-7e113741a28c 1 Other Other +8ff5d756-1a7f-4889-ace5-aa239d813463 1 Other Other +8ff61234-0b2d-4332-a6ea-74a307daf3d0 1 Other Other +8ff6be4c-4266-49f4-b5e1-87ea1460e7dc 1 Other Other +8ff6be5d-f3ea-40c7-8787-b193e176c1b9 1 Other Other +8ff72537-f73a-43e1-ad22-50ab37c837a1 1 Other Other +8ff77118-8197-4c6a-86a8-3ec2ec8681e4 1 Other Other +8ff79a83-b9b6-468c-b4ff-103704f37fb0 1 Other Other +8ff7be6d-4634-4bcd-ae0a-3346845bc5b0 1 Other Other +8ff7f608-3613-4540-9c99-865b7cd675d4 1 Other Other +8ff853c2-aab2-430d-b673-74cde4515c51 1 Other Other +8ff893ed-d682-40d9-920a-ecdbbd330f0d 1 Other Other +8ff8b462-1ac7-4a70-a7e8-698af811669e 1 Other Other +8ff8ed17-b1a9-458e-86a4-8a418a13508b 1 Other Other +8ff904d8-9a4e-4848-91f9-c1d2fa4a60ba 1 Other Other +8ff94f29-2ffb-4a5e-8dff-e87e17fdf952 1 Other Other +8ff97e73-98fc-47f6-bcd3-178da73753e8 1 Other Other +8ff9adc0-c770-4da6-a24b-bc8dd08513cc 1 Other Other +8ffa70a3-5328-4fe6-967d-53941c37d23d 1 Other Other +8ffaec90-bf24-4f20-acca-4d46cbf08e5a 1 Other Other +8ffb1db2-32f0-46b6-b2ad-6017199cf4ee 1 Other Other +8ffb2fe4-dd73-4b87-bc27-ee601b91a8a4 1 Other Other +8ffbf0e0-42c5-4afe-940d-e014c7c87821 1 Other Other +8ffc214c-c409-458b-8c88-ec343f36b8a5 1 Other Other +8ffc9624-9197-404b-859c-49e73f866680 1 Other Other +8ffcafb1-44e4-4544-97a2-054de299865e 1 Other Other +8ffcc4d4-9afb-4066-8751-188b3e0c617b 1 Other Other +8ffcde05-56ac-4a3f-b652-1383a802ed2a 1 Other Other +8ffcf4e5-f8c1-45fa-8c96-77fe4a8399fe 1 Other Other +8ffd04d5-c756-4f60-b0dd-b8438027e3b3 1 Other Other +8ffd09dd-8460-4e85-98b7-253dfce85ed4 1 Other Other +8ffd76a5-a28f-42b8-830a-6b4313f5fdde 1 Other Other +8ffdf892-2682-4cde-873b-8992334f42de 1 Other Other +8ffe4aca-90d9-4f00-8a53-b2e7d5b629e7 1 Other Other +8ffe6edf-1d6c-476d-938d-e06d4c8c335a 1 Other Other +8ffe85ae-f5af-4716-a7b9-4a4de37cd3d6 1 Other Other +8fff2d89-9ba9-484e-872e-92d898868e0e 1 Other Other +8fff4b10-d816-4fbd-a9d5-6aa419e94605 1 Other Other +8fffbc15-b215-4331-a575-b6bb9343b64b 1 Other Other +8fffc009-b2f8-48d2-8824-ce6f9caa5704 1 Other Other +9000493d-f155-4473-848a-bc53a0c2edd6 1 Other Other +900070ed-3880-4b4a-bb05-aa4c5f647a40 1 Other Other +9000cb86-aba7-4501-840f-0b763c7eaf12 1 Other Other +9000cff5-6cfe-406d-9128-66caa171c61e 1 Other Other +9000d854-5114-465d-8f8e-a619b01fe3c4 1 Other Other +90012295-6497-426f-9036-e37eb4c0b685 1 Other Other +900125f1-40c5-48c1-9b7e-43cb49065246 1 Other Other +9001331b-1040-4634-ad52-8914adeccc8f 1 Other Other +90014cf6-3536-4d5a-8c04-f65f0ed9e506 1 Other Other +90016352-d104-403b-9cd6-1b7aa2588ccb 1 Other Other +9001a97e-8520-4cad-b0de-6f570a9f8751 1 Other Other +9001e5c4-3a9e-4c07-a47a-0cc42732a4e0 1 Other Other +90029e57-0dbd-48e9-a122-e5f1700a6ae8 1 Other Other +9002c263-c81b-4c19-85bd-7e45b931144b 1 Other Other +9002c3d5-3a8f-438f-a588-7df180c8465c 1 Other Other +9002d307-3651-4531-9386-94e0020b1d12 1 Other Other +900308fa-74b4-4802-9ec5-8d82f7200f88 1 Other Other +90031520-089f-47a2-953c-40ed3d6f2c7b 1 Other Other +90036920-2f63-4c0a-8191-72d998c16669 1 Other Other +90039931-a1be-49b8-a058-46d2bf417454 1 Other Other +9003f7bb-f2c5-44ac-b427-e8b16f4f7e4e 1 Other Other +90046edb-25cd-40aa-9c64-886b7b4ce139 1 Other Other +90047b47-0b75-4105-9c55-073101c70952 1 Other Other +9004c01c-abb3-4177-80f0-c48ba1891820 1 Other Other +90054c51-fc19-4d86-ae1c-340ea488aa14 1 Other Other +90059207-74bf-491b-86c7-8cc10f6dbaa2 1 Other Other +9005a161-1ae0-4903-a760-5b4cfb7ab610 1 Other Other +9005aad9-074b-406f-a303-731222dde6da 1 \N Other +9005af67-c765-4706-b84c-5de4b319c8a9 1 Other Other +9005c3d7-44cf-421f-871d-c9e0b4cde230 1 Other Other +9005c7cf-c6e5-4777-af8f-21fa58dd5ded 1 Other Other +9005d5b1-7d35-4942-9e75-914572b04c2c 1 Other Other +9006080f-677c-4ed8-91eb-62df2f61d9e7 1 Other Other +900698ff-578c-446b-b77f-d133354ffa48 1 Other Other +90072dd8-0a80-4d49-8f6d-1dfafed35b82 1 Other Other +90072f6b-32eb-4b4c-8421-95a58a4021aa 1 Other Other +900739e5-f7e6-4a8e-beb1-0de8a11581b6 1 Other Other +9007552f-d80d-430f-9aa9-7098b185140f 1 Other Other +90078ed6-d660-4bc2-844a-8b9db8b6afc7 1 Other Other +9007c2dd-8935-4c98-8a7a-29909d8c31ac 1 Other Other +9007fd0b-0325-4151-b96b-f5ce05d94fea 1 Other Other +9008695f-ebd9-4fee-a89b-9de4796700bf 1 Other Other +90088227-1b61-4bed-8bc6-515b05de1c25 1 Other Other +900884a1-b1a6-4315-89bc-31b6bf3c7e9f 1 Other Other +9008deff-a190-4823-8f72-ee2e7c8942ad 1 Other Other +9008fc5a-848e-43c0-9658-961dfac3a952 1 Other Other +90090e6a-c746-4cd4-bf8b-489951fe604c 1 \N Other +900a6fa0-cb05-4452-92b4-43962150e305 1 Other Other +900a8f20-fe5d-4915-ba63-2e8f032354a2 1 Other Other +900a9366-9f55-43bf-ae58-287a71d02e72 1 Other Other +900b082e-b28c-445e-a885-c97795c79a5c 1 Other Other +900b0c0f-7891-4d9b-aa18-2258a871e21c 1 Other Other +900b573f-78ed-461c-be32-d506f4e9ebe3 1 Other Other +900b5ca4-7ff7-4e96-af3c-e76bb11a1549 1 Other Other +900b98ed-833d-41ce-b4f5-b5b45161d815 1 Other Other +900ba2fb-447b-4687-8834-f5d1627dc35f 1 Other Other +900c3bf6-5262-4b02-a62e-a6ea6f60b32b 1 Other Other +900c6701-e9a0-4f40-971a-d67587faa9fc 1 Other Other +900c7f03-88f7-4751-bdb1-adc388d63abc 1 Other Other +900c8347-e8d6-4fa8-b254-c9c8b3f6f7a9 1 Other Other +900c913e-317a-416c-b873-3631cdacd77f 1 \N Other +900cb45a-e8aa-4632-8ab9-a3d52662bc8b 1 Other Other +900cc547-1f3e-4bc0-8b1c-839a27f54d3c 1 Other Other +900ce67b-8107-47da-a2a7-c5fecebdc130 1 Other Other +900cf3db-e2dd-43b9-9219-792a5a37bc0b 1 Other Other +900d0b55-c2bd-43da-ab09-9a3e411f4cbd 1 Other Other +900d1d69-e89d-4658-9e5a-19b95d883b65 1 Other Other +900ddaef-26fb-40df-9a5a-0f47654c9cd2 1 Other Other +900e291f-d269-4357-9c63-7a4033edf60c 1 Other Other +900e9293-17de-4ac1-9e4d-2eed18995841 1 Other Other +900ef239-2902-4683-9318-ce4d6c3cb79b 1 Other Other +900efc22-42fc-455b-be66-210efb2b4d1c 1 Other Other +900efd02-1298-41c7-98a5-929a34433853 1 Other Other +900efd57-e35f-41d2-a281-67242c4c64a5 1 Other Other +900f463a-6e68-4558-9755-0a42f9991b86 1 Other Other +900f5f84-8328-4ac8-97e1-a2d1ee41caa0 1 Other Other +900fae3b-d4bf-49de-a8cf-7f91ee2eb22a 1 Other Other +900fd3a5-118b-4d75-99a5-286f394a5e5f 1 Other Other +90104292-b3be-4645-9e41-278416e140ee 1 Other Other +9010446b-8247-49b7-8e50-f457db612da1 1 Other Other +90109d3a-c4e6-4f7e-8d9b-13b021570e4f 1 Other Other +9010dc2d-3e9f-465c-8134-8dad06e056ba 1 Other Other +9011851a-7412-4936-bfa7-33ca79e157cd 1 Other Other +9011b291-18bf-420b-91c6-91bb762a4ddd 1 Other Other +9011bbb8-484f-4ceb-a1b2-8442bac63948 1 Other Other +90128742-cd90-40b9-81e7-a4e917fb092a 1 Other Other +90128c41-afc0-4cdb-b175-4cbdccde7eb4 1 Other Other +90129168-dc75-442b-a131-76bcc3e0a9e7 1 Other Other +90129a51-f2bc-4f52-89c3-13f7efa432b9 1 Other Other +9012b15c-18d9-4860-8d43-cf76d11582ba 1 Other Other +9012b9b2-ab00-47de-8463-813c90f68f72 1 Other Other +9012e754-8a3a-11e7-993a-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +90130ec4-35e6-4799-abde-ec1c6d1c30e4 1 Other Other +901344e1-e3ac-42e6-8df4-3441963608d4 1 Other Other +9013683b-b218-469d-84a0-405ef5d746f7 1 Other Other +90147627-a276-4aef-823e-84c24143a990 1 Other Other +9014a42d-f5f5-4a1c-936f-76465ecc0cb5 1 Other Other +90153084-285b-4e6d-9882-98f9bbe51f83 1 Other Other +901566a5-cc00-4458-8370-8a2a9f632b60 1 \N Other +9015a87f-5737-4b04-8df7-c31d98b0ac05 1 Other Other +9015a980-6c22-4280-b0a4-c97a244352d3 1 Other Other +9015ddeb-6a22-40ac-9a48-4dffb6485803 1 Other Other +90164aa3-ded0-44b4-a216-41edf2e0a3eb 1 Other Other +90165ed1-a0e0-4a7f-b8b0-20edcf8b1d7e 1 Other Other +9016985e-ef0b-4a08-9dee-99b41d9c9a1a 1 Other Other +9016d78d-55bb-4a87-9aa1-5413e3da96fe 1 Other Other +901714bc-debe-450f-b90a-c1d2c085995f 1 Other Other +90174749-fc49-4871-8ee2-509309898f7e 1 Other Other +901749d4-76a1-490c-8e20-699ad454127a 1 Other Other +90176bb9-cdda-47c1-93c3-16a39667dbe8 1 Other Other +90176e21-7aad-4e40-851c-350c19933879 1 Other Other +9017c3ea-37c2-4af0-bb92-271d391900a8 1 Other Other +90182e42-bbe2-4d4d-9eb8-d4664c2f4a82 1 Other Other +9018567d-0a8d-4d81-9206-3a9dea7208bf 1 Other Other +90187ecd-d9a9-4358-9118-9e9ee5564c3c 1 \N Other +90189417-2d59-484e-a68b-33f59d2a8369 1 Other Other +90189d04-a4cc-428d-8d1c-13496e1c656f 1 Other Other +9018a33c-fed5-4e93-93db-d023ab5a966e 1 Other Other +90195caf-d839-43b2-ad9d-11ed895fd4ee 1 Other Other +90195d9d-f6ed-48a3-9088-129eab56df55 1 Other Other +90198c93-b442-44ce-bb0a-13ec6831ac54 1 \N Other +9019a2b6-2b55-4a0d-8b7b-36f52afc7288 1 Other Other +9019d898-9b17-4534-9a76-c9a92dbf28e4 1 \N Other +901a0f75-4aa4-460d-84e2-9522b97d6292 1 James Other +901a1a5a-803c-4507-bc9f-37dd8e10bc87 1 Other Other +901a1b04-b111-44e6-98a5-dc57cc01a6ff 1 Other Other +901a1f45-cdfa-456c-8ebe-f1c6208b3075 1 Other Other +901a1f62-44ab-462b-89ff-ae7ae0ffb87d 1 Other Other +901a2016-a6eb-42f1-ae03-c07614a0ea2f 1 Other Other +901a3bdf-7fb0-40a4-8de5-1791d9863357 1 Other Other +901a7589-ce0e-41a4-a24f-9d06fc2e8afc 1 Other Other +901a96c3-cf78-4382-b74c-75ec6ebff089 1 Other Other +901aa60c-77fa-4a99-aff5-04259e1a762b 1 Other Other +901ab3f4-e49b-46f7-936e-413d43b58f0b 1 Other Other +901ab450-85aa-4403-9f33-09a4bb70af9f 1 Other Other +901aefbc-df46-400c-b529-1ff89c2472fb 1 Other Other +901aefc0-cce7-44c8-bf77-41767b6dab3d 1 Other Other +901b4115-e747-4cec-a703-856784332a71 1 Other Other +901b7d7d-68df-40f7-ae5d-46a9c0f0be21 1 Other Other +901bf622-f552-4d62-bc4e-0064a374b69d 1 Other Other +901ccce2-a7b6-4c08-ad7c-20c69f8385ee 1 Other Other +901d0970-30f2-4dd7-9c8f-0a013cfa8b2d 1 Other Other +901d2739-e80a-43a2-821a-4b5fd12d5f08 1 Other Other +901d4bf5-5d0a-4167-9974-6b41d2addf7d 1 Other Other +901d74b9-bb3b-4af9-9139-d8c4d3ea243f 1 Other Other +901d835f-4ae7-4761-9212-2d6c856b6c88 1 Other Other +901dc819-d827-408e-888b-3931968bb018 1 Other Other +901e518f-86a7-4729-a3de-d238ea01fec2 1 Other Other +901e8019-8279-46d1-83ec-cd6912a8b69d 1 Other Other +901e8219-0972-422a-897f-919541e7d760 1 Other Other +901e92e1-1ac6-47c2-ad68-0135bbec260e 1 Other Other +901ed406-58c3-4790-8e05-b37be1f6a186 1 Other Other +901ed5f1-a274-4ade-9419-73c0a54f1b4a 1 Other Other +901f0a6b-3627-426f-8f86-571fe373c347 1 Other Other +901f19c6-021d-4c19-b041-90e4ba83ea21 1 Other Other +901f2f0f-e534-496a-820c-671b97762d2d 1 Other Other +901f8419-8d9f-478e-b86e-718a913dca3a 1 Other Other +901fa6b6-8f24-4725-a274-41d9bfd33932 1 Other Other +901fbccf-b600-4377-8376-0e8f7d79c2cf 1 Other Other +9020663b-6a8d-484a-96fa-18dbe47b79c2 1 Other Other +90208a41-1fb2-4fe7-be70-440a642c47ea 1 Other Other +902092ac-4c4a-452e-9095-4d86dcd61984 1 Other Other +9020fd25-6d9b-438d-b2ca-0808ece5be06 1 James Other +90211992-e88c-429b-89c7-879ff2a50193 1 Other Other +902149fa-599a-4623-924e-22ea47fb7d32 1 Other Other +90217946-b77e-426f-863e-d70c0d531460 1 Other Other +902207c8-0197-4c02-8338-9bb9c635fd57 1 Other Other +90226d26-e45d-4f14-a2b0-4fc87cc92bbe 1 Other Other +9022781d-cc8a-4058-91ed-8830c15808a6 1 Other Other +90229ccb-4bdb-48a1-84b7-67039ce06252 1 Other Other +9022c39b-f671-4cb3-ab5b-00635d97b12c 1 Other Other +9022e26d-2f08-43d4-888e-737fe05a7235 1 Other Other +9022fe7e-a64e-480e-9d5b-0101630403ab 1 \N Other +90231705-46a9-41db-9e24-d6041920ac6b 1 James Other +90234fcb-525a-4bf0-bf39-729b6e17a228 1 Other Other +9023a3ec-eeb4-4036-82a4-8635d3cd55f4 1 Other Other +9023b5da-e00e-4f28-93c6-bb6500b38984 1 Other Other +9023b705-3d4a-471b-b8a8-39c9724bd749 1 \N Other +9023de12-c1af-4812-aa30-d410590b004f 1 Other Other +9023eae4-f28c-486d-bf90-6d5738ec736c 1 Other Other +9023f867-99ca-48a3-be8f-13b3b1e5a8b7 1 Other Other +9024338b-5eed-4998-a0a5-f92e879359ab 1 Other Other +90249ae2-7469-4c3d-96c8-c96007810a67 1 Other Other +9024ac30-c95a-4223-9759-c46ad29f68ff 1 \N Other +90251223-c7a2-4456-b9d1-52c1be778499 1 Other Other +9025312e-0ebf-46c8-b5cd-378e6ebf3795 1 Other Other +902542d7-7866-44b3-9b44-572b3102836f 1 Other Other +90256d7b-e4ca-4e30-a254-b9de558dfa54 1 Other Other +902577b9-aff5-4b59-87cf-d8fd9b91c0bb 1 Other Other +90258890-78d5-4dff-913f-675117eba9bd 1 Other Other +9025cabe-115f-45ba-b735-ee33857e38de 1 Other Other +9025da76-8aab-4f74-a371-6c8b14e9d42d 1 Other Other +9025e01e-1d3f-40e1-8f2b-0b90a684513f 1 Other Other +9026388b-c568-464f-92e7-077881a35a5d 1 Other Other +902638b2-6e31-45f1-a4a6-13a67e27e2ca 1 Other Other +9026ec9c-eb9d-44bf-b484-556d8a15cbbb 1 Other Other +90270834-507c-4404-a4ff-446e4fa77bda 1 Other Other +90270fa8-24a8-4bf2-b29f-3a69971a5253 1 Other Other +90272f76-d5a8-4c91-ae2a-f1134b007cb1 1 Other Other +902737bc-008d-41ff-9d7f-cf0c95044af5 1 Other Other +90274753-6ab2-4a0d-aed4-bbbc648f05f6 1 Other Other +9027572a-52b1-4f19-84d1-8942a8dcb9cf 1 Other Other +902801f2-b6ad-4997-a5f4-d500d05e4f8f 1 Other Other +90281732-1e37-4240-b52f-6e802b35bc1b 1 Other Other +90282440-9145-4b62-b38c-70f54894d3f0 1 Other Other +9028349b-95f0-4efd-9720-2fb8849f3279 1 Other Other +90287d45-5a17-4a92-ac59-3ca2abc68c95 1 Other Other +9028d46b-860a-4c9d-a2de-45a6c3fea735 1 Other Other +9028fa54-6d53-4b5a-8959-24b7283ae5d6 1 Other Other +902975cf-9579-4cc3-8a24-b62d5744b158 1 Other Other +9029d363-f6a4-4276-9439-9a3fb1525c4f 1 Other Other +9029e674-e51d-49a9-9bfe-8bb6375fa2d4 1 Other Other +902a0a43-1485-435a-8d0b-02215a963d64 1 Other Other +902a0c16-a344-4a85-a44c-652ac84994cf 1 Other Other +902a196f-835b-4dd2-bb46-4f801ceda7d6 1 Other Other +902a9f39-6a7a-4167-aef8-a35962d3770d 1 Other Other +902aa47e-1470-4f47-bfc1-b879aa307eab 1 Other Other +902aae17-e605-4bbb-86c8-a0916897232b 1 Other Other +902ada2e-1ac6-4dab-9cbe-ca4777abb41e 1 Other Other +902ae2a0-06ec-4844-813b-11e9e3bfcb5f 1 Other Other +902b0582-9003-4f98-9548-e3ec91bcfe45 1 Other Other +902b92cd-dc2b-4776-8119-2d9504da5996 1 Other Other +902c20ab-8b62-47a7-8bca-1287432acd4a 1 Other Other +902c3f51-ca95-47fa-94ab-97580ce14ec3 1 Other Other +902c5d8a-0dd9-4557-8b09-0e6ad7c7e863 1 \N Other +902cc613-cc59-4478-a221-fda789199d8b 1 Other Other +902cfbc0-046e-41f2-9699-d0d0b02fb72f 1 Other Other +902cfd28-7948-44a6-84d3-87776a8215a2 1 Other Other +902d05f8-81cd-4f30-8f8e-dc47ac6dcc24 1 Other Other +902d4c71-6f88-4d5c-adfe-fb4487185227 1 Other Other +902d79c2-5400-471f-9822-9e506dae4c1d 1 James Other +902d7a17-062b-46f8-b08e-8ec7af628077 1 Other Other +902d831c-b52d-4c42-bb8d-b51c40be7cd1 1 Other Other +902e058f-1663-4971-b011-7608d88b36c6 1 Other Other +902e12a3-ef5e-45f1-8692-d84bf2bcc83a 1 Other Other +902e6bd4-5f4f-4a57-b987-f2e1a7e670a4 1 Other Other +902ecc1e-2a1e-49a8-86da-029877b4ac33 1 Other Other +902ecd23-8782-4dd0-a5cd-3e77a0e75622 1 Other Other +902ed635-6a90-4073-8e12-143e250589d8 1 Other Other +902ef89e-3d94-405b-ab8f-c9fff2526e19 1 Other Other +902f4087-b008-4a5c-8ce2-03d2713f2904 1 Other Other +902f4a9e-09ab-48a9-ab0d-a187ab8da759 1 Other Other +902f502b-33cc-469e-9acb-351a08028bd3 1 Other Other +902f713a-9ba4-4d13-ba75-543cc15ffd63 1 Other Other +902f7d1d-c0b0-4aac-8ff1-612c868f53ee 1 Other Other +902f950c-46ed-4542-ba6f-4a852f74baa7 1 Other Other +902fa246-957e-422a-a661-9809b4e0d1c8 1 Other Other +902faa4e-51f6-4afc-9f9d-6861c86982c2 1 Other Other +902fbda1-bdb2-4de0-8744-5bd9b8c9af39 1 Other Other +90304061-2df2-4810-bca9-e623a68d6373 1 Other Other +90305ca3-d219-4831-9189-472edb8b6f68 1 Other Other +903089b1-07ec-4c4e-8587-cd7fb6921f14 1 Other Other +9030c4a9-40db-4821-a1f8-9ea1d927c4e1 1 James Other +90311e94-7775-4cfa-b245-0d909c7c8346 1 Other Other +9031868f-60b9-4c4d-a0b7-3859f01551bf 1 Other Other +9031e1c2-4164-498d-866a-42863781fd1a 1 Other Other +90320101-e2c1-4290-96b6-3d4c2d3a13db 1 Other Other +903249d6-8559-4ae1-ace2-a0ff977a5985 1 Other Other +90326e1c-28c8-42e9-acc7-fb38690b8273 1 Other Other +9032ddf8-34b5-44a5-b84b-9898b59019e8 1 Other Other +90335ad1-e2f7-4cf7-8008-77a152e64490 1 Other Other +903386c4-c6f5-49e3-87c5-3e3873ed617a 1 Other Other +9033a584-a9e1-401d-9a41-48224cab5b3e 1 \N Other +9033c94d-996e-44af-b7d6-f16f980f0bc2 1 Other Other +9033f476-73a1-420d-a13e-708a314c4267 1 Other Other +90345eb1-7376-4ecd-8b59-a15a43e2d283 1 Other Other +9034b1c6-ca52-47bd-b14a-37a9d47acec4 1 Other Other +9034f7aa-bfc0-46ab-8635-41624fc965c9 1 Other Other +903568e4-0163-4d87-b5c0-e105f3f6c330 1 Other Other +90359742-6fe8-4ddb-94b2-92fb06d34fd5 1 Other Other +9035a406-44b6-475a-8765-a3a5f6ecd756 1 \N Other +9035bd82-e518-4430-b3d8-736e2148a24c 1 James Other +90362112-42e4-4d36-b375-578ea0a1d97e 1 Other Other +903643aa-862f-49d3-a6e0-b57ad7c459c3 1 Other Other +903670d8-0940-4eba-878e-c9992734299e 1 Other Other +9036772d-c0eb-4542-b3af-8fe6fe9d0e87 1 Other Other +9036ea09-123b-4db6-beae-d63e05820ad7 1 Other Other +9036ef23-db1d-4cbb-9244-a3a38859b262 1 Other Other +903721a3-1cc4-401a-8537-7ecf1e070720 1 Other Other +903723c7-a8d0-4442-9788-46f7f4a57577 1 Other Other +9037275f-d032-4085-8d48-33c185b40958 1 Other Other +90375d5b-0da9-4276-a35e-8eb7d75f999e 1 Other Other +90375fa4-4a91-40dd-9dc4-7001881b754d 1 Other Other +90378e98-2b57-4c5a-b992-8fbed3ec87cd 1 Other Other +90379c34-1fc8-4ef9-85b5-74c2877462fa 1 Other Other +9037ac31-aa7b-4a5e-881c-a1175a8b4064 1 Other Other +9037ed85-f8bb-4739-bc16-c37e6e50e669 1 Other Other +9038453d-2a48-4a6c-ac5b-e4dd78805dd3 1 Other Other +9038584a-f1bc-4afe-b8a5-8363c6fa51d7 1 Other Other +90385d31-17ca-474e-b386-55e1ca978010 1 Other Other +90386f04-cc3b-11e7-8b59-fa163e8624cc 257f6774-64eb-11e7-954b-fa163e4dd901 Other Other +9038b681-9fc9-4976-9b70-542d0c5be928 1 Other Other +9038c774-a71c-4de7-be63-b446774dec5d 1 Other Other +9038e089-8159-4987-b8eb-419aa794b631 1 Other Other +9038e2d3-7e22-4abf-b25d-6b0f364e0442 1 Other Other +9038f190-881c-4465-85f8-30057bfd20a0 1 Other Other +9038fedd-92bc-4179-8bde-47a8a06efa66 1 Other Other +90393a76-1ad4-481a-9080-1b51f9dc99ca 1 Other Other +9039a9df-5638-45f1-add5-fb9abdf76968 1 Other Other +9039c093-508f-4e9f-8295-4055cb62c0ba 1 Other Other +9039dc45-6b65-4d94-936a-3556e9e47d47 1 Other Other +903a0a82-fa7b-421b-96a0-4a7f04049e1e 1 Other Other +903a2720-a383-41c0-95ca-c63e760090fb 1 Other Other +903a5bd4-2bfc-4d17-b0ae-709b5ca56b56 1 Other Other +903a74c4-94b3-455a-8138-80db64293518 1 Other Other +903a8eb5-2223-445d-aedc-c2135db6edec 1 Other Other +903aadb2-23d2-4d83-ac70-2d6d3e5c8c40 1 Other Other +903ab9d4-86a3-4fd4-8fe5-26b37857f4fc 1 Other Other +903b132a-e4dc-4a54-be0f-3dde1b941908 1 Other Other +903b1cb9-16f4-4276-ad2b-147ed4c19672 1 Other Other +903b61a0-a64d-439b-a29c-67b66cbe3785 1 Other Other +903b6e3b-a410-4d07-a4d2-4d87c5c9ce18 1 Other Other +903bbfd3-4691-4f61-a01a-7e9b90c4b915 1 Other Other +903bc7b3-ae5e-4067-a75e-b8b10be4c88c 1 Other Other +903be2ef-cbdf-40e7-ac41-fad58776f222 1 Other Other +903c2085-877b-4021-8c86-674edce15e8f 1 Other Other +903c6d4b-e20b-433d-8d43-14cc946991e6 1 Other Other +903c7091-ff23-41ab-9890-fff5644ab0c2 1 Other Other +903c8450-6709-4d8a-a482-1ffa508f36be 1 Other Other +903ca328-bc08-4640-86f9-a1b96b9a88b9 1 Other Other +903caed6-ab49-4324-acb8-2964e0c4995c 1 Other Other +903cb15f-3eb0-4e10-8282-26419a1274b7 1 Other Other +903d2366-7ce5-47f3-9e7b-4e2f91202167 1 Other Other +903d6cdd-8335-4940-b526-ad372be758de 1 Other Other +903d7902-a618-4b35-b396-5500fcb70da6 1 Other Other +903db7d2-3975-46d2-aa38-12b4ab06a125 1 Other Other +903db808-c5a5-475a-a6b5-b55ccd6e6242 1 Other Other +903e163e-15ca-4ab7-bb6e-1b76720ba21f 1 Other Other +903e9634-0684-44fb-a4c0-91c34aef50a0 1 Other Other +903e985d-484c-43bc-9cc4-58db7680dd78 1 Other Other +903ea368-b549-4e2c-a3bf-57ad3174c73e 1 Other Other +903ead84-d2fa-446d-9091-6fdfcf023766 1 Other Other +903ed85e-00da-45ae-b914-79e482ead467 1 Other Other +903ee6cd-791c-4401-8e9f-d0e7c2fb2dae 1 Other Other +903f9bf6-6f61-47e3-b845-02489d9b8409 1 Other Other +903f9f59-4971-44de-8bef-35fc3b20384b 1 Other Other +903fb573-faa7-4ac6-a545-b8a02215d1c2 1 Other Other +903fc68c-e17d-4b78-ab8a-4c4b04b77e37 1 Other Other +903ff6ab-06aa-48ba-8ea1-3b0f465bf9e3 1 Other Other +903ff94f-89af-4333-a10c-2ec06e171a7a 1 Other Other +90403f30-07cd-4b97-a583-e4add3107479 1 Other Other +9040603e-6eae-49db-9bd3-dfe9b4aed72c 1 \N Other +9040766c-fe37-4e99-8d9f-44339dca12dd 1 Other Other +9040823e-642e-4478-bd8a-e2d3bebd094c 1 Other Other +904103d3-5037-4d9d-a827-26efab6ed074 1 Other Other +90411078-1219-4b0b-a9a2-35491f9d55b3 1 Other Other +90411415-cb2d-404d-becb-f86315268c8b 1 Other Other +90416d2e-dad5-4139-a10f-4552586807ee 1 \N Other +90416ebd-f2ba-4d54-bccc-e01cdc1be751 1 Other Other +90418290-0b51-45c9-948c-10bc865c2754 1 Other Other +90419d82-c79b-4680-a0ff-288c305a4961 1 Other Other +9041cad5-d29b-46ce-b692-0ae4de806e13 1 Other Other +904223dd-bdba-4cd6-8761-23966fa8bf0a 1 Other Other +9042296e-40d2-48c6-840e-dd93f1529938 1 Other Other +90429a97-2526-4f8b-8238-3a32c2a9a2fd 1 \N Other +9042b8e3-3c7b-4f50-aec2-c09bd56556e0 1 \N Other +9042ce67-5a27-410d-97e3-2315ff72cb64 1 Other Other +9042ece6-6ae8-498b-98e2-7d0fda263cb2 1 Other Other +9043021b-9310-477f-aef4-d61b528a9eff 1 Other Other +90432106-6892-47aa-80bb-72cb2d2698ce 1 Other Other +90432e2a-a59a-4e58-bf7b-f3770c656266 1 Other Other +904384db-63f6-41e8-92e8-1c675d255e72 1 Other Other +9043b120-2043-42f6-80d4-c5649a5dc10a 1 \N Other +9043dcfa-cf19-41c3-a712-89c20519fd8e 1 Other Other +9043e75d-3b15-4c2d-a5ea-d4cc66344b7a 1 Other Other +9043f95d-3c8a-447f-ba8d-c47dd9dfdade 1 Other Other +9043fbe5-d80e-4140-929e-1fa8bfff3ef1 1 Other Other +904427b7-39ac-4ae6-bedd-f96637569c22 1 Other Other +90443a10-8627-424e-942c-dec6a5ce194d 1 Other Other +90444623-2860-4df2-a731-fd7502837e91 1 Other Other +904459a3-02d6-4c20-a3ba-82d864829b1c 1 Other Other +90445fc2-a8a9-45e0-8fc0-eb2b1987844f 1 Other Other +9044aa51-10b9-45f8-9af8-426797f8bbf1 1 Other Other +9044cdcc-1443-4cd0-a8d1-860291683cbc 1 Other Other +9044dd5b-64e2-47cd-8192-8c54fb53fe63 1 Other Other +90451d83-a8ff-421e-8f5c-f8c74326d900 1 Other Other +90452ab7-bbc1-4a14-bdb4-581add73f94e 1 \N Other +904546a4-09f7-4d37-a777-db5b68e5f285 1 Other Other +90454d04-f167-4ee2-88d1-5e5e7d59ace9 1 Other Other +90455998-b3e9-4d4c-a301-df6368188686 1 Other Other +90459532-4134-48c1-8e66-396bf059309c 1 Other Other +9045e087-61a5-4549-bed5-7f2d46ea203b 1 Other Other +9045e72c-c1c4-4a20-ad61-7752ce33aabb 1 Other Other +9045f496-2c53-49ab-9ae3-9e4d809642f5 1 Other Other +9045f53a-c32a-4b41-b8db-9447de7385db 1 Other Other +904600f4-ebfa-4202-8ad2-12bc93eca968 1 Other Other +90463bf3-32d9-4b85-93e9-2793515575ef 1 \N Other +904642be-bb85-42fa-a2a4-e6cbaebbe7a9 1 Other Other +90464bf5-488e-4780-b749-1ff6bce824cb 1 Other Other +90465ec8-408e-4139-90d3-1f6b0929a528 1 Other Other +9046a127-46de-4453-8d35-b90aa279b37e 1 Other Other +9046ea2d-2c48-49c3-b5a8-18294bd1190a 1 Other Other +9046ed8a-4e3a-4742-a03a-9adaffe35100 1 \N Other +9046f844-fa03-45d7-be3d-f285082aa815 1 Other Other +90471a87-127e-46ca-be8e-7a31b994634a 1 Other Other +90479e4d-67b5-452a-9683-fa4f9cbcc4fa 1 Other Other +9047ba8b-2313-4005-9e7d-a1028e4f078d 1 Other Other +9047c600-b85a-4bb9-9a78-2534b9f1ac6e 1 Other Other +9047d465-7e21-4e25-bb54-e28c147543ab 1 Other Other +904804cd-26df-4cc2-95a7-582ca2915ecb 1 Other Other +9048321b-a09e-496a-a671-b251c6e336d2 1 Other Other +9048459c-7ebe-40f4-8870-4daa154970a7 1 Other Other +9048b054-9fa3-43a3-bd28-2d2b895738ff 1 Other Other +9048d919-b73a-4343-a000-42332ecd7052 1 James Other +9048db5f-4cda-484d-ad6c-a223490cb474 1 Other Other +904915c0-fb33-4d2a-931d-f625cda533af 1 Other Other +904920f1-e88c-41af-b222-22a94f8805ef 1 Other Other +904932e3-54e5-46d7-9930-64804e451bc6 1 Other Other +90495ad0-29db-4400-b103-cfb71f127ca8 1 Other Other +90495f8d-b5a8-4505-96ef-424f11dcfae1 1 Other Other +9049c729-e1c3-4a32-8597-47e25a2e34ad 1 Other Other +9049e9e3-e838-47a4-b26f-326227ff8fbb 1 \N Other +904a348f-90df-484a-a5bd-0b11dcb97577 1 Other Other +904a4202-4d93-4f32-9073-2984a1e9bc0b 1 Other Other +904a6ae5-fa27-49b5-b17e-7ccabd08bb94 1 \N Other +904a7bf8-04ef-46d5-a754-000bf622f6d8 1 Other Other +904a985b-d76d-4b45-9c39-f180ee8e671d 1 Other Other +904ad0fd-dbe8-4ef2-a67b-74dc37c12e2d 1 Other Other +904b045b-0116-45a7-9914-3541c87dffdb 1 Other Other +904b6877-a87a-48a9-aed6-77d44efabb13 1 Other Other +904b8477-21b6-4c0e-afcf-6a9587dd9ba7 1 Other Other +904b9f63-fe5e-4450-a389-62037fb09ac3 1 Other Other +904bc368-93a9-42e9-8c56-48df5d90740b 1 Other Other +904c1e8a-e528-4ef4-add9-44baae2a3453 1 Other Other +904c24ed-35c7-4726-9b6a-e97052d28461 1 Other Other +904cac47-076f-4afa-90a2-5f0c9dcc488c 1 Other Other +904cb940-4c39-4f40-b2ac-218df555cad1 1 \N Other +904cbaea-2018-43fd-9c0b-1f4a52cc68b6 1 Other Other +904cc1b5-dabc-4aad-acd5-56372da52128 1 Other Other +904cc9f6-75f2-4fb7-8956-e3cdd020da78 1 Other Other +904ce431-1953-4af3-b73c-3805b75c77f4 1 Other Other +904d0eaa-1aa4-416c-bbb0-eece4b08168c 1 Other Other +904d6762-43c6-4c71-b3b3-ca936f735613 1 Other Other +904d81d8-1d73-4402-81c8-95f65f9f7dbe 1 Other Other +904dbe65-86f2-4f6e-a5f9-6688caedf4b8 1 \N Other +904df739-bafe-443e-8622-5955f47bdfea 1 Other Other +904e1b9a-4a9e-45bb-a404-248dd9362555 1 Other Other +904e30f1-ebf0-46e0-8bb5-4060be9be2ed 1 Other Other +904f2964-2387-4d9c-9852-77d573a1a7bb 1 Other Other +904f4563-f08c-48e2-92a8-413a17935dd9 1 Other Other +904f7ad7-cc14-49b4-ae8f-ae5148bc323d 1 Other Other +904f93d2-1879-4778-adec-0bdfebc74dc5 1 Other Other +904fde1c-3c6e-408c-8c6b-778e3ce5e6bb 1 James Other +90501bd2-ecfe-4a5d-bc4e-c730eac38fe4 1 Other Other +90509e7a-fa7d-408b-98e0-f682f4f19021 1 Other Other +9050f3d9-5902-4f39-80da-da01a87787bb 1 Other Other +90512238-86a2-4812-ace5-58060caa431b 1 \N Other +90518ed5-4d2f-495c-be87-14aac01c72a6 1 Other Other +9051cd17-82fa-4c04-9811-89cb1ca46797 1 Other Other +9051d64a-1c85-4abe-acb8-4fa76d7f0a24 1 Other Other +9052051a-ab67-4907-9c69-9ef9a496af98 1 Other Other +905255d6-ab19-4a46-bcd2-d13e0d12d551 1 Other Other +90526831-9922-4468-a6c5-d45f3ffb3602 1 Other Other +90526db8-5249-479b-a76f-a929b64cab4c 1 Other Other +9052d344-0141-4050-955b-faa23ea72f78 1 Other Other +9052d6f3-7dde-4a60-92fb-6e21a5f30fec 1 Other Other +905312f0-776e-4435-88a0-3eb634096018 1 Other Other +905331ee-ebc1-4d3c-91fa-f1eee7820d61 1 Other Other +9053c884-9976-46fd-9319-183076fe607a 1 Other Other +90540071-d0b1-430a-b98b-fcaa43e226a3 1 Other Other +90540761-df90-431c-a88b-4d415ea8fea6 1 Other Other +90545c6e-417a-44f7-b8e9-5c7139bedd81 1 Other Other +90546dfb-9fef-4587-8109-82f244a72529 1 \N Other +90547a48-1772-4655-9b9a-693a66cebec7 1 Other Other +9054ab93-359e-45f7-87f0-e7d724efe59f 1 Other Other +90550e15-0b16-4dc8-b1ab-6580a951a6fc 1 Other Other +90551904-86d6-474d-aea3-89c5f2db116b 1 Other Other +90556ea8-2751-4304-a482-1f3192bd36c8 1 Other Other +9055a322-8923-4fa9-ae25-28a89d3a4155 1 Other Other +9055ace4-378a-4249-9735-70ad63859ba7 1 Other Other +9055b647-f796-4cd5-8ec9-00e9c78772e1 1 Other Other +90561fa5-f5f5-48cf-a7ae-6247a01deb3b 1 Other Other +90566646-5496-4f39-8c4f-fee68fd3b981 1 Other Other +9056af79-8916-44ac-b4e5-6317844350e5 1 Other Other +9056b1ca-a8d6-48ec-8d75-e83e84087ea0 1 Other Other +9056cc78-87f2-4b47-bea4-abfd1bd3776a 1 Other Other +9056f932-a427-480d-b7d4-50d84e7daa1f 1 Other Other +90570178-e8bc-493c-933d-af0b85cc81c5 1 Other Other +905708fd-a048-471a-ad91-492564070d2e 1 \N Other +9057453a-0838-47ed-9bae-36cbe4173ff8 1 Other Other +90575b2b-60bd-4ace-982c-298932a60a27 1 Other Other +90577af4-158d-4e8d-86be-150608be819d 1 Other Other +9057a3ac-433f-4eef-82f8-9571c0adf6af 1 Other Other +9057f42f-135f-4c0d-8b8c-8d176db8f70c 1 \N Other +90587518-ee9a-4f57-93e8-ceec16342b23 1 \N Other +90587bce-5839-4e90-ab35-65cb6db600d9 1 Other Other +9058becf-783a-4f64-ac0d-2bbe7a8a1e03 1 Other Other +9058d4ca-9604-403b-b6bb-29413f570a5f 1 Other Other +90591d74-b5fe-4740-b0ac-a21b5580f5fb 1 Other Other +90593158-0336-4b2e-9548-71c3bdaa537d 1 Other Other +90594631-645f-4aa4-990d-28f74b053708 1 Other Other +90595cee-d287-4814-9b88-918d1126d435 1 Other Other +905963f8-6f55-403d-80fc-eb76188a9585 1 Other Other +9059966e-f272-412b-97a1-7fa683331460 1 Other Other +9059bb23-adea-4ac5-ae90-01f62bb0f244 1 Other Other +9059fdf8-35f5-4f2c-a65d-ded69b89f35e 1 Other Other +905a095d-cc72-4101-b432-3a171c641a95 1 Other Other +905a14ba-6f1f-42b9-9aad-cbb7075f2173 1 Other Other +905a7258-4196-4b60-9ddc-0744c0bb83b3 1 Other Other +905a7fdf-0a8a-46f1-9ca5-999ffc4571a3 1 Other Other +905a8a9f-6867-4f07-95dc-0bd20387c5e7 1 Other Other +905abb52-b1b7-41a8-9c30-0d8910e1a266 1 Other Other +905b4104-af64-4181-9732-4c1da6828f04 1 \N Other +905b5b0f-5ad5-45c2-a1e7-c2b03a8a5230 1 Other Other +905b82f6-2898-4d4a-8adf-4ec6af86543a 1 Other Other +905c821b-142e-4dbd-bcf7-d11a20dc0551 1 Other Other +905c910f-06e5-4716-8ced-22eca90392d9 1 Other Other +905ca0a6-50e5-4717-be3c-bfdea38f9b84 1 Other Other +905cba9b-c5a2-4a8a-add6-aca2207d8517 1 Other Other +905d1800-10e5-4196-aa89-656a26e03d57 1 Other Other +905d2070-93d2-46ca-9de5-9481351a3de0 1 Other Other +905d2bd3-4668-4f9a-8e78-41d23c2f3d43 1 Other Other +905d76a9-b0c4-46ac-a06d-6e62f9f3db89 1 Other Other +905d7805-d2ef-4b1e-9ca0-3487a215f32c 1 Other Other +905d91d9-9824-421f-915e-5e560d1a8c0f 1 Other Other +905d95dc-d924-461a-9ba4-71848a057691 1 Other Other +905dc90d-6374-4dc9-8942-71bd5948ba8a 1 Other Other +905e2246-ee22-42fd-92b0-d7754a2f432d 1 Other Other +905e2b11-7d60-4994-b1de-94342c1a031e 1 Other Other +905e46c9-f4bd-45a4-be8e-2e8d27938d3a 1 Other Other +905e69cb-d4f6-4773-82f0-b830a8d64ae5 1 Other Other +905e8a4a-0e9a-49d2-a353-39c1f1eaa97b 1 Other Other +905ebbaa-a30c-4779-b6ba-627088916d8e 1 Other Other +905f2340-31c7-4fe1-9cb2-30c0d5d86efe 1 Other Other +905f9978-e77c-45ea-a479-4c69cf59894c 1 Other Other +905fcad7-5dae-47f3-b2ee-e4db958f75ca 1 Other Other +905fdbe3-ca9c-4e54-bd92-c8868d856a53 1 Other Other +905fe834-1a23-48f2-8cbb-137cd2bb036d 1 Other Other +90600352-77d2-4b94-a364-fde01db1dc4c 1 Other Other +90600b89-82f5-46e3-8bf0-90a996825e62 1 Other Other +90601aab-007a-4101-8039-2272b116596d 1 Other Other +90605065-38f1-434e-9418-76308986bf95 1 Other Other +90606847-3e98-4372-9696-7a4cfeb758df 1 Other Other +9060b65b-292e-4e6d-9481-c0e28dd879a1 1 Other Other +9060f21a-720a-4c03-9b40-1979a1454b85 1 Other Other +9060f656-2469-4ca2-8136-7553f9ccd831 1 Other Other +9060faf0-eadd-4c3b-b6b8-98604c2b5ed2 1 Other Other +906108fd-b604-4c8a-a111-ed3e30fed732 1 Other Other +90611e4c-fb69-4492-a24b-905e1b16808b 1 Other Other +90612709-1046-422e-a10d-cac86054e676 1 Other Other +90615acc-1204-490f-aca7-4892d47c1f75 1 Other Other +90616282-1579-497e-b9e9-3a5b0c065a1c 1 Other Other +90618977-5911-4104-b445-dcb2b907a035 1 Other Other +9061a55e-9236-48ec-a2b3-0e9b9acdebc0 1 Other Other +9061ee2d-bb0a-4e52-ab01-b646e7e547c3 1 Other Other +906221a0-ba8a-4c9e-b3d9-486783ab0d01 1 Other Other +90630d31-7d7f-47f1-a594-dfbc3b43e8e2 1 Other Other +90634727-b550-4962-a7aa-e57e170349cd 1 Other Other +9063dfcd-0753-40ed-9633-1d1af71f6df4 1 Other Other +90640602-10bb-4466-8595-8537fe48768c 1 Other Other +90642758-a270-430a-80a4-2cd83f82cf32 1 Other Other +90644375-bcc7-4fb9-a036-b159b0c30045 1 Other Other +90647477-df42-4b49-9e9c-46641fd5dcea 1 Other Other +9064a1f4-5225-487f-b531-125520153958 1 Other Other +9064eadc-26f0-47c8-8920-99f550dc6712 1 Other Other +9065d1de-6c87-464c-a3da-9603d874760e 1 Other Other +9065e75f-c453-456f-9d26-7e74257e1826 1 Other Other +90664c2d-e280-4282-93c4-6cbfa040f0a3 1 Other Other +90667f12-d805-4516-93ee-559a2b612d7e 1 Other Other +9066cd4c-fb20-4e84-871d-57fffc536ef3 1 Other Other +9066d5a7-6dce-46be-82e4-385d52c575a6 1 Other Other +906732ce-7148-4809-9fec-e52c4c72d1f8 1 James Other +9067514d-25c6-47af-ba24-0d6ed0ca50f4 1 Other Other +9067754e-a820-48cf-8bf1-9c840b158e5c 1 Other Other +906828e7-6694-4451-89cb-291f54ff0a55 1 Other Other +90689093-4216-4b48-be9b-8b79c65b783c 1 Other Other +9068c8e0-49af-4ce2-8a8f-6ab0263d5b8f 1 Other Other +90693c16-f181-4e1d-a3c6-21b1a7d2ecf4 1 Other Other +90695701-597f-4458-979f-66c704912df5 1 Other Other +90696f31-0775-4fdc-8445-b4e43f4b046d 1 Other Other +9069ac63-9b52-4bbc-aa7a-8489c2c2db32 1 Other Other +9069bc3a-6de7-494b-88c8-8189a4780c11 1 Other Other +9069d9c4-4162-4e7c-be24-4d1ff4cf1855 1 Other Other +9069dd6e-6646-48c2-bdc9-787da937c782 1 Other Other +906a5574-9b0c-4650-812a-a48e0f094e65 1 Other Other +906a6a41-6d85-4628-a7a4-a47ae78c9b22 1 Other Other +906a9f31-ecac-4ca0-8fb9-610e0660f7a4 1 Other Other +906ab919-2955-4fe2-adb7-cac525eef59f 1 Other Other +906abca7-1996-45a6-a2d5-462bfe4ce102 1 Other Other +906acb43-7935-4c58-bd5a-ba44bcfaab87 1 Other Other +906acd5e-76fe-44b4-acd2-49fdfc59d17b 1 Other Other +906ad231-38af-483b-ad73-59df918484ac 1 Other Other +906b1f44-d670-43a1-818d-9ad86283dc90 1 Other Other +906b857d-a666-4520-bbb6-1cd6a3da245a 1 Other Other +906bb014-360d-4c40-a20c-989958a3d9db 1 Other Other +906bb810-cc57-4325-9259-ec88ded7a361 1 \N Other +906bed13-2f82-466d-84d8-9a5a79dbc070 1 Other Other +906c1609-4b23-4c36-982a-2c1dc9eadea3 1 Other Other +906c3668-5922-4d76-86a6-e62c3bd15ec6 1 Other Other +906c5470-b4b4-4c02-8843-a5bb53c5cee1 1 Other Other +906c6ed4-d35c-47c9-97a0-a684b6390adf 1 Other Other +906ccf95-c7b6-4b16-a697-22d80ba1aac0 1 Other Other +906ceb6b-f8f7-4bf5-ba8b-8c45e0cdd292 1 Other Other +906d6b6f-8be6-4c03-bb74-7ef32a662ec1 1 Other Other +906df9ad-422a-492a-a2ac-3ce8220a2346 1 Other Other +906e0097-db77-4161-beee-c84a8f300833 1 Other Other +906e4a07-4416-426f-833e-7cf3640bbdd6 1 Other Other +906e934f-d6b2-471a-823f-2bff83f8374f 1 Other Other +906ea91d-ee5d-4bf8-ab98-c21f28d4f0ae 1 Other Other +906f0ec2-ed9d-400e-a302-a6782d969b83 1 Other Other +906f3e13-2c3a-4b7a-ab88-f2897b804c26 1 Other Other +906f3e96-0aaa-435e-a1fc-c712bffe98ee 1 Other Other +906f5cb3-5622-4c4e-a352-c0ea11c7c970 1 Other Other +906f8ec5-350b-42d5-84c0-3a58e0f023f8 1 Other Other +907068f9-a50e-476c-87fd-0f4960fe36b3 1 Other Other +90709419-0e3d-4c16-9994-2c3776cd5a3f 1 Other Other +9070b306-b864-49d3-999d-898572966e82 1 Other Other +9070d4b5-3c3c-4ec6-80cd-4e7b966340da 1 Other Other +907139fa-875c-4eef-b77a-6fdc64402bea 1 Other Other +907189da-6ac6-47fd-8247-13cb18c6c62d 1 Other Other +9071f830-0454-447d-a209-d25f9b4f4962 1 Other Other +90729602-3a64-4ead-8c81-f01b3bcd258f 1 Other Other +9072b70e-7bab-40e0-bf2c-4e4c1396f3c1 1 Other Other +9072cfd5-0445-4009-b6c5-b946b33d248f 1 Other Other +9072d5a4-4f93-4380-a65c-9471c96d5c74 1 Other Other +9072f6c5-c8cf-4eec-9fe2-9582c2275781 1 Other Other +90734472-0f95-45a5-a5e4-9557cb5ca403 1 Other Other +90737ada-5584-4cc0-a67c-a04f16388b51 1 Other Other +907396ec-b485-4c63-a867-66a266be6cfd 1 Other Other +9073d9a0-7649-4d4f-b8e4-cd85e9f44a67 1 Other Other +9073e939-c534-413f-90dd-c61f0149a125 1 Other Other +90745bd1-b40c-4eea-a5d1-c150b3fc7ae0 1 Other Other +907470b9-9b1a-4d2d-a7c2-24efb60865d7 1 Other Other +90751bce-27a3-4707-9216-c9fc81a170df 1 Other Other +90753ba7-26ea-4336-9959-9d810ba69522 1 Other Other +90755d3b-0272-478d-b453-e96def637179 1 Other Other +90757cb6-5502-4f42-83f2-f0a7f1cdf6e9 1 Other Other +9075a0fa-7788-4f82-80dc-f29079b2ae64 1 Other Other +90761890-ed1a-4fec-81b5-a54028be5088 1 Other Other +90764454-b37c-4432-bd4e-1dad1408097e 1 Other Other +9076541a-3e84-4d1e-ac8d-b4e53d345e9a 1 Other Other +907666cb-343d-481d-ad66-e3f9e7cbe9a6 1 Other Other +9076db7c-502f-438f-a5fd-ff7b8161aee0 1 Other Other +9076e9e0-a632-42a1-9236-1eb22b9071ba 1 Other Other +90771bd4-70c2-44d2-ad49-c1a6301cd263 1 Other Other +90772a4f-7166-4ddb-b808-ac31b4453ef0 1 Other Other +9077671c-0033-4d7f-baf2-c8d77f83d8bf 1 Other Other +9077738c-f2cd-48cc-8ba7-4358d45da2c1 1 Other Other +9077a346-0663-4178-9c34-b5a1442bc40d 1 Other Other +9077ee31-0f6c-49cc-a598-47695a9f3955 1 Other Other +90781695-4545-4ae2-aee9-98acc0065921 1 James Other +90783d49-54f4-4d7f-8d65-fee12a62a07c 1 Other Other +9078d598-e2ee-4768-b245-09947bc6a87c 1 Other Other +90791a35-e59e-457c-9088-2e3c3b687133 1 Other Other +90791b82-3e62-4c94-8c89-65e75b61aba4 1 Other Other +90794788-f623-41c3-9afe-2524a169de61 1 Other Other +90794ba2-544c-4081-94cf-4762863ccbcc 1 Other Other +90798c09-6441-46ec-b879-01895feae869 1 Other Other +9079a83c-2bca-435a-9065-27fbc0623e08 1 Other Other +907a3b7d-827d-4954-92ff-bc6a9e9a424e 1 \N Other +907a43ee-92d9-4a5b-81fa-6e7e3391fefa 1 Other Other +907a4402-3967-46bf-96c7-a51d747870b0 1 Other Other +907a4c20-f8e6-4265-ba62-a8bb83cb0197 1 Other Other +907b1dd1-5b13-4960-a889-2c38adb6b192 1 Other Other +907bd1bb-3346-4aca-b874-1a3ff7f63130 1 Other Other +907be5cb-bd64-47fd-81df-f9935f679773 1 Other Other +907c0d7e-7e98-4afb-9551-9506f04464fd 1 Other Other +907c1f5f-5bd4-4407-a237-9f35534160b8 1 Other Other +907c9727-4347-4fa0-b5e2-99eee82505e2 1 Other Other +907ca0ee-f1bc-48f1-82d8-5bcb6fbafbad 1 Other Other +907d2e39-d2af-4b44-91db-f8687e561921 1 Other Other +907dacf1-f36a-489a-a082-0025f728ce37 1 Other Other +907dc2e3-9ff6-49e0-94e4-63b045ad7afd 1 Other Other +907dcfd9-6213-4ac4-84e0-e16bbda88200 1 Other Other +907dd0b9-5cd6-45f2-b1bc-67abb542bf12 1 Other Other +907e0486-f2fe-4450-8e8b-c1ffcaf242c6 1 Other Other +907e0509-68da-4b48-84ad-84232e24e26d 1 Other Other +907e0b77-83be-420f-ae59-6fbedb543d3c 1 Other Other +907ea247-ef7f-449d-bcc0-f21611695e07 1 Other Other +907eab83-6469-440e-9d91-e1d7e3b8c452 1 Other Other +907f9c5e-e7e8-458f-8300-2dd645d2ce70 1 Other Other +907fa57f-ef4f-4f66-8999-5acc89c7dbf7 1 Other Other +90801110-c231-472f-bfce-9743aca57635 1 Other Other +90803027-aca5-4e34-87f9-ab9bebda7c68 1 Other Other +90805f87-e2dd-4c31-93ff-a5ba05d9c852 1 Other Other +90806477-586e-42ba-997f-41d5736028b2 1 Other Other +9080719f-2537-41b5-ab49-7ce0868efb35 1 Other Other +9080d9e6-9061-47a5-9a20-f53dad1d0504 1 Other Other +9080fadf-9e40-43da-96f0-4d0c70bd54db 1 Other Other +908135b0-8bc0-45f3-aebb-03761c3aa7cc 1 Other Other +90819372-c175-48f1-bca4-b0cc6aa9c538 1 Other Other +9081972b-5558-413a-90ba-ab99a6b13abd 1 Other Other +9081c665-a776-4fd6-adeb-0fa2e4d9794e 1 Other Other +9081e153-16d2-4217-9e6b-434b3de22680 1 Other Other +9081e82f-05b2-4d5d-850f-84a5cdae0194 1 Other Other +9081e8ae-a28e-4a96-a725-f1b1ef081770 1 James Other +9081ff0a-4c23-4b28-a17e-d56a2345833a 1 Other Other +908209cd-6707-4e90-8199-4fcf7e454573 1 Other Other +9082191d-9d4e-4796-b2e2-ece3c2a8aaea 1 Other Other +90821ead-027c-4504-859a-b19770e44de7 1 Other Other +908238b2-16b6-4872-9e61-b47eda45a560 1 Other Other +9082d5a7-65ef-41c9-acee-1d1dec11e539 1 Other Other +9082ef1a-d278-4e11-bd5b-821ca4026dff 1 Other Other +9083146e-5ca5-4915-a7be-eb3f2b9fc4e4 1 Other Other +90831df2-7e84-4f83-9d9b-787e1e52ac4a 1 Other Other +90835420-9cdd-4a65-bf23-390f3f84d564 1 Other Other +90836dad-db1b-430b-b0c5-8df583b77eab 1 Other Other +908373e2-18a5-4c54-8ed7-2be88648c1e9 1 Other Other +9083ba0e-2c53-11e8-b791-fa163e8624cc 63dfcd94-143a-11e7-bec8-fa163e4dd901 Other Other +9083bcbe-b83e-475c-95f0-e2362dd0e426 1 Other Other +90842aaa-b1c2-46ff-a409-95892abc69d0 1 Other Other +90845141-8d47-4b0e-9bea-1d35ce46e217 1 Other Other +90846021-4351-4563-8cef-2eaaf0ba780c 1 Other Other +90846fcf-3e21-42e6-8fd2-d0f6ca654164 1 Other Other +90848fa6-18b9-48ee-8ce3-314d1a0f4359 1 Other Other +9084bce9-26c6-4ca0-994f-19ff0a3d4f17 1 Other Other +9084e9af-4925-40a3-959d-1d320c5c5281 1 Other Other +908515a0-6e97-4e63-88c6-4cb2b105c76d 1 Other Other +90852e0f-47bc-4ed8-a5f3-4c6568a218b6 1 Other Other +908551a5-f2e0-42cc-8fb4-068ffaaf4eba 1 Other Other +90856db5-0e7f-4184-8e6b-32445cbd43c7 1 Other Other +90857815-9157-46be-93dd-5db28ae8d342 1 Other Other +90857900-fe1b-4fa0-8264-1bd486e47e53 1 Other Other +9085e757-7783-48d8-bab3-5e72c21b137e 1 Other Other +90862cf8-2da5-40bc-9113-2c6a12a7c74c 1 Other Other +90865dde-4e53-45db-84a7-76ceeef62a70 1 Other Other +90867c95-2c4a-47b6-a7d6-7042bcb883ad 1 Other Other +90867ff9-f1a2-4046-b9f8-84dd9e0831cb 1 Other Other +9086ac38-3465-44a2-92f4-54927e6d1dd0 1 Other Other +9086f1a7-35eb-4115-af06-ea974969ace5 1 Other Other +90870174-6be7-443f-b949-671869f21154 1 Other Other +90872f40-f1e5-416f-90b7-a6d84a849a0e 1 Other Other +9087577b-92e5-48c5-b6ec-84e9a9c63af9 1 Other Other +9087882b-539e-41b2-a91c-649013921d5a 1 James Other +9087a14c-7e93-476f-bfbd-3c78f822148c 1 Other Other +9087f8b0-f036-490a-a2b7-6a4b71a013df 1 Other Other +908837b0-4271-4337-a670-f6a32c4661e8 1 Other Other +9088dbbe-e9a3-4bc6-9796-e3bb91c6437a 1 Other Other +908908a7-ff30-402d-b2b9-c7f86c6d6f16 1 Other Other +90891c29-1087-48ce-a2ea-57067e76d66e 1 Other Other +908949db-46a9-4da1-b88d-f161f27b8369 1 Other Other +908959e1-e888-468d-8965-96f1bc99fce5 1 Other Other +9089b8b3-6971-4ebd-9991-336828ecec50 1 Other Other +9089d2d4-ff2a-428e-96b6-1826b8470e4e 1 Other Other +908a68ec-d085-4ed1-a7a5-9020ab1fb95e 1 Other Other +908a8f6c-eb87-43c4-b4df-27a64b22b99b 1 Other Other +908aa8f7-f781-49b3-9cd8-5d9a9eb3db1f 1 Other Other +908ab7ff-6df3-41ee-9b2a-7194e6782c99 1 Other Other +908b521f-49a9-4646-9d3a-874298fb12e6 1 Other Other +908b58f0-c376-471f-ae4c-bcc0d87572df 1 Other Other +908b8dea-d20d-4e7e-9112-75e5abe788ff 1 \N Other +908b935e-f249-4a5a-a0b2-12bec26c0ffb 1 \N Other +908b9883-4e1d-421e-a309-0210be7d88f1 1 Other Other +908bb1eb-340a-43d8-96ac-7ef655674e83 1 Other Other +908c050b-672c-492f-b0ac-31a5199fa7b0 1 Other Other +908c44ed-f17f-47da-b083-e76509bd5dac 1 Other Other +908c72f7-91f7-4ba6-9e26-b4c38aef94a9 1 Other Other +908ca596-5b99-4024-87cb-cef85f86cb96 1 Other Other +908cc04a-57a3-4a20-b125-d13306df2bbf 1 Other Other +908cea98-845b-4a93-869c-2081a1264f27 1 Other Other +908d2e75-3d0c-4026-9291-86ee487154b2 1 Other Other +908d5a0e-4dc3-4527-9e7c-0ac77166b77a 1 Other Other +908e450a-b070-4396-9b86-551ae881a3aa 1 Other Other +908e597e-810b-49a0-9e42-6ef9307e574d 1 Other Other +908e87ad-fd06-4ac1-8220-750ed4e6f88e 1 Other Other +908e882d-07cf-485d-b9da-91dda5f11354 1 Other Other +908ea162-6456-474a-aa9a-152c50b4c1e3 1 Other Other +908ea1c1-3146-4eae-ab0c-6c5827afff8a 1 Other Other +908eb674-3c10-427d-88b9-58aedcf05c7e 1 Other Other +908ed463-0781-4f36-9dbd-40d494f1469c 1 Other Other +908ee308-e13c-4a8a-8a19-84cf91e034fb 1 Other Other +908ee786-c308-4241-92a1-13e4b28ad69b 1 Other Other +908f18ae-84a5-41a8-b18e-d79ad8a6e3bd 1 Other Other +908f480d-63f8-4cc9-b10b-c15e2a82800b 1 Other Other +908f6e3c-ba40-4e48-914e-b9482339d630 1 Other Other +908fa05b-35a4-4097-9619-30f97f94e539 1 Other Other +908fa9d4-2c54-4104-b553-3dd94669ffec 1 James Other +908fb7a7-90c8-434a-987f-d26d020dd7c1 1 Other Other +908fc348-6449-4837-9e1b-78c21a6baa02 1 Other Other +908fc396-14c2-49cc-a5a1-8c0fe250241a 1 Other Other +908fdad9-e1cc-4b18-87a5-1f9fdbfca4ee 1 Other Other +908ffa7d-a14f-4723-a417-0d96d5a726c4 1 Other Other +9090177d-90e8-4915-a786-953f8653ff47 1 Other Other +90903d55-96c4-4038-a214-bebeee9868ff 1 Other Other +909055f4-208f-4e13-83c8-50c0c60b5516 1 Other Other +9090cb2c-5dd9-48c5-a070-517185a1f3ef 1 Other Other +9090db25-eebf-470f-aa29-2428ffe9a9cb 1 Other Other +90912db4-2691-4557-9ef5-56724c2a0454 1 \N Other +9091d408-e91d-4036-938c-73fed7f1ae09 1 Other Other +9091ffa6-3258-4f4d-8cf9-4aa1c58fe9f3 1 Other Other +90920c6c-3016-46fe-901a-ad270f9adbb9 1 Other Other +90925243-dc1e-4fcf-9521-623925767f87 1 Other Other +90925867-21d1-4ca5-870c-91b5259637a7 1 Other Other +90928310-da82-473f-a3e0-28642ca34d31 1 Other Other +9092baa8-aed1-427d-abbf-ef8def6f6dab 1 Other Other +9092e7a3-93c7-4c36-b3d1-c3fa623a5d95 1 Other Other +9093400b-4a35-4093-a3ba-7d7692f35e8e 1 Other Other +90944c67-72dc-488b-bed2-695796c82ca4 1 \N Other +90946ce8-b69a-4ac5-88b7-24939bc5a978 1 Other Other +9094a07e-dfd4-40cf-821e-88bb5f825cb2 1 Other Other +9094d5fa-5a68-4ab4-a95d-66f489ce6599 1 Other Other +9094e082-93fb-497f-b530-9b667124c7ce 1 Other Other +9094f109-c947-4417-8e50-8731dbfa55d5 1 Other Other +9094f38e-77e8-43e8-8e23-7b9fb85d0713 1 Other Other +9094fb3b-a4b0-4c2c-b75f-94d20e66fdb4 1 Other Other +909511be-70fe-4535-a751-13068e969774 1 \N Other +90952478-c7d2-404c-bf52-17c236d37f64 1 James Other +90958674-85d1-47f4-953a-bcbb2250405c 1 Other Other +9095b540-7a5e-429a-b9ae-c386b05dc18c 1 Other Other +90961265-cda4-4306-b28b-3a8ed1104b2a 1 Other Other +9096320a-9cdc-4efb-801b-c0c0687de8eb 1 Other Other +90964cf4-4efb-4e5c-9012-82f7f9ba92eb 1 Other Other +90965e99-d4b5-4ab1-8caa-fcbc3add6961 1 Other Other +909695ef-1a2f-4059-b88a-76f02c9944d9 1 Other Other +9096fd82-1eb5-48bd-b5eb-eb1c8bf17523 1 Other Other +90971822-6bab-40d2-93f2-f1e16ce704ad 1 \N Other +9097a485-36c0-4c48-abed-3367a8bc1397 1 Other Other +9098432d-30e0-4a3e-88db-c06b9531dffd 1 Other Other +9098abe3-4999-42f0-9d92-ab84dac1dd6a 1 Other Other +9098fc05-b59f-4a13-9a01-ff3666229bcc 1 Other Other +90991aea-c06b-4752-914d-c01efc5ceee3 1 Other Other +90992b67-821e-4c7d-af1b-5b9b785e7886 1 Other Other +90995c61-5986-485e-aaab-47997abbbdb2 1 Other Other +90999a9d-c816-48e1-b573-845b4373856f 1 Other Other +90999c21-3482-4a2f-a249-282339165605 1 Other Other +9099bc38-1738-4504-b0d7-e218b513140a 1 Other Other +9099cb50-1761-477f-82a0-f3efe0b7b100 1 Other Other +9099f977-1f7a-441f-a602-997692492919 1 Other Other +909a1d7f-38b0-44fc-b3b0-f1074d707094 1 Other Other +909a6620-b07a-4918-8b04-54ba0f6b43d1 1 \N Other +909a8b4e-6656-48b3-8bbf-d5e6731cac56 1 Other Other +909a91d0-1a2b-46b0-9173-d2604c261ce8 1 Other Other +909ae0a3-aa74-4f5f-8920-ee3c8cdbc35e 1 Other Other +909b177c-cde1-49d8-b4ac-dc0e561adeff 1 \N Other +909b32a1-9f1d-4595-8c77-e46c6bac5adf 1 Other Other +909b4a0c-661a-428d-add1-4d0e520a2dd5 1 Other Other +909bbec3-3d6d-4dad-ade6-3d26f12b9696 1 Other Other +909bd66d-6e14-49e3-bbd0-3da0cf9aa0aa 1 \N Other +909c304d-0449-4e47-aaae-17493ef1aa0b 1 Other Other +909cb38c-8180-4b8d-acf0-e2e27cb6c6b4 1 Other Other +909cda02-f5b1-4142-abb6-5be13d6a66da 1 Other Other +909cf4f1-ebe6-4223-942c-5e8d538a2f54 1 Other Other +909d7307-972a-4aaa-a081-457303115ab3 1 Other Other +909dbdcb-bcd1-4462-a904-f5179ea8703b 1 Other Other +909ddd79-22a5-472e-a560-e3a4a02397fc 1 Other Other +909e0d8c-c6be-4873-937f-3b682f9e97af 1 Other Other +909e3893-dadb-400c-822b-55aa2bea4eb1 1 Other Other +909e7c4c-7f65-4558-9a62-356e7c96da28 1 Other Other +909e7dd2-8bcf-46f3-86f9-4d5f0ea75e3b 1 Other Other +909e91e7-dbb5-45ed-a8f0-e5734d0fdb19 1 Other Other +909eb550-96e2-426d-9d19-4cabbf5f926e 1 Other Other +909eb626-cff5-4ebc-9726-1b35024eed6a 1 Other Other +909ed043-b476-46b6-826a-182099b2b8c8 1 Other Other +909f7e49-89aa-44ff-853a-71cae29a5187 1 Other Other +909ff828-163a-4d3b-a34c-f7c03502b77c 1 Other Other +90a00941-59e7-46aa-829c-64674a01b91e 1 Other Other +90a04540-b52c-42ea-812b-2876b52aa6cb 1 Other Other +90a05204-7e46-4845-af6f-f398b0abf732 1 Other Other +90a0914e-eee2-4cc4-a10f-49e61c0c17cd 1 Other Other +90a0de5b-cfbb-420d-a363-4f74e3ee4416 1 Other Other +90a0dfe8-564a-484f-9231-ddc60d3ec77d 1 Other Other +90a0f212-bda9-40a2-b57d-cf38f6230ed5 1 Other Other +90a0f8aa-a0c8-4ca7-af45-b06e5bc75ba7 1 Other Other +90a13c52-b6bc-410f-afd3-87a378c623e9 1 Other Other +90a14148-1c89-4f9a-9ad3-95615bafba49 1 \N Other +90a1bdb7-158f-481b-885b-6a1ee49d0cc6 1 Other Other +90a240b2-9664-427e-87cd-abf7a8d67cab 1 Other Other +90a2694b-10ea-4460-bdec-e59538b77b23 1 Other Other +90a27192-141b-4aec-ad71-17575ea1ed7c 1 Other Other +90a27682-62af-4c3e-ad5d-5df36d12c16e 1 Other Other +90a29638-5941-4610-b3fd-fb151dca868f 1 Other Other +90a2d6b5-ca09-43e6-a9e4-7d25b8c0f739 1 Other Other +90a2dc1f-66ea-4690-b5b2-7790b343a0be 1 \N Other +90a2f0d0-98cb-4810-92c3-72b5126e85c2 1 Other Other +90a330be-ce4d-4231-bfd2-bacd7290a767 1 Other Other +90a35041-5466-41af-b7d5-c3a93f62abd4 1 Other Other +90a355a6-9ad2-410b-9b1a-57a447afc827 1 Other Other +90a36075-8196-4405-8bc7-a7c0b7662943 1 Other Other +90a368a6-210d-44e6-bd16-9f91dd0d77de 1 Other Other +90a3995f-d0d8-44f1-a504-a6671282cb33 1 Other Other +90a3a050-251f-494a-acf4-d9387049a325 1 Other Other +90a3aeb1-1eef-4192-bf95-f64764ae53f9 1 \N Other +90a40bc4-1de3-48d7-a940-96548d837397 1 Other Other +90a40e5d-6652-467f-bfe1-dea258060219 1 Other Other +90a41b01-7dd8-4738-955a-87443b667433 1 Other Other +90a43ff6-32e1-4c18-b201-5bdf0811650d 1 Other Other +90a452b2-9845-4407-afc2-22688619494e 1 Other Other +90a46db8-2e9b-475a-9b48-91a2683798c5 1 Other Other +90a474cc-a6c1-415b-80ae-d816f833cf70 1 Other Other +90a48379-3039-47dc-95ed-e31d69e7835a 1 Other Other +90a494fe-1906-4bfb-91b8-86dc75ff6cbb 1 \N Other +90a4a61a-783a-4f80-a082-9de8262250e5 1 Other Other +90a4d1fc-092f-4bd5-879b-c0b65116100e 1 \N Other +90a4d265-91b4-4acd-ad7e-51021ba3451d 1 Other Other +90a4d73e-9470-4d38-b18f-720bcb034ff7 1 Other Other +90a4ff71-35d3-4039-96b7-ea08ce7eefef 1 Other Other +90a5118b-1e24-4b5a-b387-6d17b6d265bb 1 Other Other +90a53782-96be-4f81-b0d7-bfafad5508bb 1 Other Other +90a5480f-1cec-43b4-805a-e74957b9fe63 1 Other Other +90a58db8-96f3-4dda-96e0-6b9faa94db0e 1 Other Other +90a6052d-5436-4d00-b697-7a4cc292f4fa 1 Other Other +90a6328e-6ef4-4ed3-9d11-c65096ac6cac 1 Other Other +90a64d20-4787-4cc7-a34c-3c0e7aaf3f55 1 Other Other +90a665ae-047c-496e-99b4-27c536d2db81 1 Other Other +90a68613-2a8f-4637-b904-75640260aa2a 1 Other Other +90a6b49f-12b1-491f-a583-793b724bcf44 1 \N Other +90a6cf3b-f62d-45ca-9f98-31727c85ed7b 1 Other Other +90a6d7f0-5bae-44fd-8679-76b023abdd11 1 Other Other +90a7031b-0180-415c-81f4-b66374ba7111 1 Other Other +90a71f5f-5cad-4a09-9e08-81242739680a 1 Other Other +90a7e476-5569-4865-9648-984d18256379 1 Other Other +90a816e9-d41f-494f-81ea-e058d31fed22 1 Other Other +90a84b33-000e-4c3d-a178-d344b62ff6a6 1 Other Other +90a884b1-7dc1-408f-aefd-02e0d7a8310c 1 Other Other +90a8991e-00cb-487c-b647-75a482a37f29 1 Other Other +90a8c8a4-90b0-45db-97e6-1d515e613b8a 1 Other Other +90a8e827-8ce7-4fea-9239-49be24c86d39 1 \N Other +90a9238d-29d1-4b96-b0cb-d0eca251ead8 1 James Other +90a95a32-500c-46fa-9d33-1b6f3e3da8c5 1 Other Other +90a99bf8-fb9c-467a-89c5-bf2a3489c5bd 1 Other Other +90a9d326-447a-11e8-94e8-fa163e8624cc 257f6774-64eb-11e7-954b-fa163e4dd901 Other Other +90aa3edc-4143-40e5-9538-e0a66f52c4bd 1 Other Other +90aa7123-1f36-4a94-b201-bec21064ce89 1 Other Other +90aa986b-caba-470e-9f0a-241951d586cd 1 Other Other +90aaec0a-4349-4f6c-8b76-2a1db43c3751 1 Other Other +90ab3ca5-4bde-4b86-8b9f-78ddc619ebc5 1 Other Other +90ab7789-8c9f-4c7f-907f-17cb432720ce 1 Other Other +90ab9ea0-b029-4083-840f-a89ddc882133 1 Other Other +90aba4f5-5aae-438f-85dc-120076acbf52 1 Other Other +90abc7b6-53f7-461c-b496-e53e917e6ae1 1 Other Other +90abcccc-4b11-4667-86ab-64df066f7018 1 Other Other +90abe5a1-7f1c-46c8-a9ec-a94fb43db53a 1 Other Other +90ac00e0-755d-45c9-b570-9257bbb13d50 1 Other Other +90ac231b-0fd2-4ad3-a16a-5da98ace1095 1 Other Other +90ac7090-b3a5-42bb-875a-acf3704c6822 1 Other Other +90acba43-048a-4682-b84e-45e02a912ec3 1 Other Other +90aceeec-e066-4b3d-9df9-0f40d94c7afd 1 Other Other +90acfebe-7b6c-4db6-84cc-dad3458e6c9b 1 \N Other +90ad0501-8b0e-4ddc-af16-24a75ad5336c 1 Other Other +90ad3558-3366-493e-ae10-6fb41383f494 1 Other Other +90ad8168-5017-4958-8048-7eece5d284bc 1 Other Other +90adab3c-efd4-460d-9ca2-69234d14d6d0 1 Other Other +90ae7318-b1e7-47ec-a7dc-b7801f9be0bb 1 Other Other +90af2355-d5a9-4bda-a31d-360bac579c33 1 Other Other +90af5cf8-0445-4b30-b13f-0036ba748e40 1 \N Other +90af9517-622f-435a-a5d4-85d543362817 1 Other Other +90afa5f1-8d54-4e1a-a201-8e80f726a0c1 1 Other Other +90afe575-a5a8-48ce-9540-e51c0ce07d30 1 Other Other +90b039ad-3448-4bf0-a6a6-62e12c4e3672 1 Other Other +90b05224-3ebd-41e8-b9d0-539aa86e1ea7 1 Other Other +90b0a201-249a-43ce-9e79-1e279d4dba13 1 Other Other +90b0b0cd-9d1c-4c2f-a830-91a74495eebe 1 Other Other +90b0cc12-629f-4b58-a779-372229124ff6 1 \N Other +90b119a5-dc99-4c17-8154-059061b976eb 1 Other Other +90b12b15-925d-439d-9a9b-b37922f78f71 1 Other Other +90b144df-0f54-4454-8c3b-993f88e89241 1 Other Other +90b188ea-4f73-4a31-ba11-fd9433ff31b1 1 Other Other +90b1b655-f799-43ae-a043-e3c37f288968 1 Other Other +90b1f792-e03b-48a6-a7e7-a50a75d31513 1 Other Other +90b2a9c1-72ea-4b93-b67d-df8401b51f66 1 Other Other +90b2b75a-20f3-4ad6-b691-879d48661bd2 1 Other Other +90b2cc08-7e51-4130-a657-aee095542765 1 Other Other +90b2d125-4371-426d-b4f4-94d3ccd096a2 1 Other Other +90b31a85-bf91-4f6d-a44f-1f07391ea068 1 Other Other +90b32059-a476-49a3-bcaa-79125dedcacf 1 \N Other +90b33442-a659-48ac-85f5-d37ef80c3ce3 1 Other Other +90b38b40-8678-47bf-abb1-1567df81634b 1 Other Other +90b3b4ae-901b-48a9-9ff4-52ddf2ad5622 1 Other Other +90b40bc1-f030-48f4-8ebe-b298414bc67d 1 \N Other +90b40c47-c753-4225-960e-108a0741a7a7 1 Other Other +90b41e8b-c929-45a5-b44e-9ef8e16c18d8 1 Other Other +90b42450-0568-4e56-9611-d6097d22b2af 1 Other Other +90b46f9e-0252-486b-beda-866e70066ad1 1 Other Other +90b49fa3-321a-473e-9839-a876b5d24341 1 Other Other +90b4ab1e-4e7d-4ed7-896c-84b482d0baa0 1 Other Other +90b4d4f8-3d07-419f-81e3-a18951f3986d 1 James Other +90b5a61a-4da4-495f-9e01-36be25942911 1 Other Other +90b5c0dc-6c3b-47f7-b6f9-38740c2a387f 1 Other Other +90b600df-10f9-412f-960f-20501f8f5b2e 1 Other Other +90b60e8b-0e65-40ef-956e-68f9382fb759 1 Other Other +90b68117-ff75-4e5b-8cec-e899f7eacd9f 1 Other Other +90b6c3d5-92f1-48e4-821f-50a3f74c02e8 1 Other Other +90b73fa6-92d9-4c8e-b339-7d873f871006 1 Other Other +90b74cfb-b9a6-4d33-937f-aa4772f52a8b 1 Other Other +90b79016-27ea-46f0-9261-16481f36c814 1 Other Other +90b7c410-0cb4-4964-ad2f-2fc57bf0cfcc 1 Other Other +90b7ca85-e767-4fa8-8aae-69c584867443 1 James Other +90b7e98d-beac-4371-bab4-9ecf37754ac1 1 Other Other +90b82aa2-061a-47e7-8407-a8ba7b7c1723 1 Other Other +90b85ab2-dc34-40f1-afaa-b26338959fe0 1 Other Other +90b865da-9a87-477b-bd4c-ca05ad94e689 1 Other Other +90b87048-2707-4429-8f80-a6dedc6d146a 1 Other Other +90b890a4-fcfa-11e7-b02d-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +90b89698-3355-4de7-8000-3dc96c941bba 1 Other Other +90b90337-bf92-4512-b7d0-ccbfb85f3f64 1 Other Other +90b92f51-2b91-4690-81db-5b263a3f5c9c 1 Other Other +90b99f98-ca5b-4661-a603-8411a9df6947 1 Other Other +90b9c4e0-ed27-44ec-8f43-05744a7739f4 1 Other Other +90b9d35e-a57e-4952-bfca-8fe6ff8fdd12 1 \N Other +90b9fc4c-e7a6-44b6-9bbf-400cf4f642bf 1 Other Other +90ba2208-c9a9-491c-aab8-82e99bbb1691 1 Other Other +90ba4169-2752-4620-b33e-dd457dd8ca0b 1 Other Other +90baa99b-a18c-4065-a46c-57e2d6047456 1 Other Other +90bacee6-3012-49f5-9d8c-7f1bf0a5d8f1 1 Other Other +90bad4dd-d67b-4728-b6c1-5086988d1502 1 Other Other +90bb5dd2-dec6-478a-bb02-bd97b81d2340 1 Other Other +90bb6830-fb00-43ec-ba86-8e34babd0b17 1 Other Other +90bb8537-6250-4c32-b76a-c5d3d00a54d7 1 Other Other +90bbda37-6f2a-4b24-95b1-df0bf5c431d1 1 Other Other +90bbf47e-8b5c-48e1-80f3-55282be88c91 1 Other Other +90bbfc82-9cd9-48cc-a3c4-da2b0329377c 1 Other Other +90bc253c-2eea-4eb7-a35c-bef2d14c96a3 1 Other Other +90bc3301-f0b3-42db-99c2-3278aa675ca3 1 Other Other +90bc3701-4752-43a4-b64e-233e9d32d3fc 1 Other Other +90bc7ce5-620b-48a2-b064-386511428861 1 Other Other +90bc7d6c-f34e-4335-9dda-45b71f661a9c 1 Other Other +90bc7e08-e7ed-47f1-9b57-2926aa919eae 1 \N Other +90bcf261-f857-4a76-bd06-41721b1fdff4 1 Other Other +90bcf644-390a-46ea-a295-a1626a1943d4 1 Other Other +90bd8b56-dacb-4922-b1fc-e9cd4929d124 1 Other Other +90bda71e-b99d-4d73-9c89-79bafa77d340 1 \N Other +90bdd212-d85d-43eb-b8ba-dc8872486ae1 1 Other Other +90be0598-303c-47cd-8fee-249bb1f95c06 1 Other Other +90be0892-9d85-49de-aa34-2a0d00167c70 1 Other Other +90be1f0a-fd79-4c4c-8dcb-f1bc153bb019 1 Other Other +90be2e7c-91ae-4557-9ae8-b856bf74f97e 1 Other Other +90be32fd-29b7-4a00-8f39-cb1d4d89853f 1 James Other +90be556f-57ba-4286-b2a8-06bbade4ee9c 1 Other Other +90be6654-ebe7-4b88-a96c-16df7bfa7efa 1 Other Other +90bebea7-9b1f-4aa4-9350-694004b73ec8 1 Other Other +90befb6d-0db6-4ac8-b990-ae729d7b3003 1 Other Other +90bf152d-36db-4a0d-a353-054e86786f56 1 Other Other +90bf3de6-c4fe-4559-99db-c881a68a2d07 1 Other Other +90bf4c26-ba1b-4452-8c8e-8edf9b7d1cf9 1 \N Other +90bfda84-14ed-41b5-9d41-a172b90d9e75 1 Other Other +90c005bc-3269-4908-a630-3060582fe083 1 Other Other +90c026b2-e4b9-4eef-94e5-1dcc91dbcebb 1 Other Other +90c046be-34e9-4e35-8df4-7b23872d3c72 1 Other Other +90c06b88-4c0c-4c27-8cf2-47f472da64a8 1 Other Other +90c0a834-50a0-4e3a-9491-952b6044eafc 1 Other Other +90c0b364-513d-418c-b9e8-4bec8e8cdcfe 1 James Other +90c0b5e2-aecc-45d5-99d0-0321a9d3c92d 1 Other Other +90c0c21e-0d02-4542-bd76-7e84dfb1b1a1 1 Other Other +90c0e6b0-1178-42ad-beed-6e1f22fa7175 1 Other Other +90c1b544-e009-4f4e-805e-3a5f0b7d7564 1 Other Other +90c1bd54-0e2b-42c5-90d6-aae9fa2a433a 1 \N Other +90c1d467-59a6-44cc-aa42-8c7ca19e52ad 1 Other Other +90c20923-5766-4f7c-ba7a-039856e9c0d8 1 Other Other +90c27564-3992-4eae-84dd-8a4ad792aa7b 1 Other Other +90c281bd-e4da-4edb-9e7d-fa15b3a9699b 1 Other Other +90c28cc8-3228-4eb6-b547-490b6e3f5fdc 1 Other Other +90c2b9e6-4dd9-4024-8474-e1f68ed64e04 1 Other Other +90c2fa86-5cf0-4928-b523-3ee85a572da1 1 Other Other +90c32f36-8c0c-4164-b28e-ac50e2263c87 1 \N Other +90c35153-0a1d-4934-bbf2-1f889b9e98e6 1 Other Other +90c3556b-9b08-44b6-93a6-d48ac6c98e47 1 Other Other +90c390c4-ed07-4cd3-8d52-53423f5cc6fb 1 Other Other +90c40160-8221-444b-b917-7830b9d9219f 1 Other Other +90c454d7-d1cd-4873-a64a-ddd30cb592eb 1 Other Other +90c456ec-61eb-40db-aeb5-43fc567f1c65 1 Other Other +90c494a6-178d-4627-b3d8-23ffbdc7d234 1 Other Other +90c4a482-b669-4ebc-b982-4cff2042eb45 1 Other Other +90c4d6d4-96a8-43f6-bdec-3a1059290f2c 1 Other Other +90c4e319-e00d-4267-98e6-31599fa08bc0 1 Other Other +90c52595-f5e3-43a4-b45a-b56d7d231de2 1 Other Other +90c536a8-fed8-4a37-8cb4-8445d4155d96 1 Other Other +90c54aac-2118-4970-a17d-02928a7b1729 1 Other Other +90c5b327-89b0-43d4-b2a7-6999267a2a12 1 Other Other +90c5c7a1-7160-4ccf-8c79-e7acabca70ce 1 Other Other +90c5d7ef-3d7c-46ee-b602-7579c1eb6ab7 1 Other Other +90c66b13-c0e6-4586-843a-e36a0a2c9eb8 1 Other Other +90c6a9c6-a8e9-484e-93b4-c663898a1d41 1 Other Other +90c6c297-ccd8-4f36-9212-1d4f13f1ae96 1 Other Other +90c6f520-17c4-4dd1-b96c-81d9e86f5a74 1 \N Other +90c713e3-1c9b-4b94-8312-cff5e36a2e17 1 Other Other +90c71b0d-8761-4a1b-a6ea-2a41ac3e0a64 1 Other Other +90c774d4-6b39-49f3-8e93-f6d16422a7e8 1 Other Other +90c77958-d4c5-4d97-8c19-27a8d526dd16 1 Other Other +90c7ac74-aa57-435e-9309-3d3714620d2f 1 Other Other +90c84bab-bd83-4d44-b39d-8e54fd266581 1 Other Other +90c85af9-47f8-4bdf-aabe-9f4572620cf1 1 Other Other +90c87102-026f-485b-a924-b5dac9b57ca9 1 \N Other +90c87260-977c-4e90-b27b-b88cb8e65f60 1 Other Other +90c88c5c-54db-43b8-a92e-ce6b30624d70 1 Other Other +90c8c7d4-5020-4368-9c7e-5efd16a3db06 1 Other Other +90c934cc-0ef3-4af2-85fb-59a5dc0d43c8 1 Other Other +90c94a55-c29d-4d81-84c5-db353ed8cbef 1 Other Other +90c9687c-8494-415d-be85-e441a557ba6e 1 Other Other +90c9c434-58c9-44bb-be8c-a61e963592b3 1 Other Other +90c9c647-3674-484c-ba3a-360c80909842 1 Other Other +90ca2ea5-eb67-475d-aacd-18f393743e90 1 Other Other +90ca62b2-2a35-4c82-922f-701dd53c0d3d 1 Other Other +90ca962c-16e2-4468-82e0-d8c44a106ee0 1 Other Other +90cac547-e3ba-4a6f-9fec-df3f2a896f3e 1 Other Other +90cb4d37-8baf-45ff-ba09-31359e9d9b78 1 Other Other +90cb5c73-a0a4-4cc2-b14e-f35c70620266 1 Other Other +90cc24de-f916-4590-bdd4-3a6469738815 1 Other Other +90ccb913-d6d2-4e03-8de0-b8127c04fa89 1 Other Other +90cce103-433a-49e6-b313-d7d1864b034f 1 Other Other +90cd5435-a318-4e87-9beb-de1d2657aa5f 1 Other Other +90cdb3a5-419b-4277-a7fa-12019ea88de2 1 Other Other +90ce0256-2b5b-4d07-8d28-cb537a5fd66b 1 Other Other +90ce241a-8ac0-439f-b2eb-d1b61d8640ab 1 Other Other +90ce5ec4-af93-4b5d-a52b-122a6a41befb 1 Other Other +90ce615b-c70f-4453-a204-bd0d597e26e1 1 Other Other +90ce6b4b-617b-4763-81f4-c9285a6725f5 1 Other Other +90ce86b2-ba9c-4ab8-bb09-0886710568a2 1 Other Other +90ce8757-1221-4ca3-b1d3-16ab9232fcc3 1 Other Other +90cec3d7-1cee-46d0-859d-fc40cc9ffa69 1 Other Other +90cf4a05-0dfb-4e7b-8f9a-4db95ab57138 1 Other Other +90cf4cea-5615-4e39-870c-4f2b65c6b84d 1 Other Other +90cf54c2-9b45-4da9-9404-7445d64f0f1d 1 Other Other +90cf6f7b-4fae-4648-a281-55ca5f71c4c9 1 Other Other +90cf7da5-3959-4cd2-89e0-861faa10ac3d 1 Other Other +90cf928b-a718-42dd-b824-035cc789ca0b 1 Other Other +90d14682-adfb-4c51-8ac7-42ae1eea0e9a 1 Other Other +90d17b62-8cfe-4355-b24f-6710c3d6dd53 1 Other Other +90d1a0c9-a57a-4bb7-8148-15384f9fa764 1 Other Other +90d2732e-87cc-4e9d-be8b-2e156b703cf1 1 Other Other +90d28315-b806-4e23-9acb-80bb451f4037 1 Other Other +90d29da9-39f2-490e-9a82-188415b32de0 1 Other Other +90d2cc21-4eef-468b-9299-223dd9d01738 1 Other Other +90d38431-00f8-40dc-91d0-541a4c443010 1 Other Other +90d41149-94bc-4e30-8689-da3fec9d7452 1 Other Other +90d4a59d-f440-4066-8d11-b5c9f4c7bf0e 1 Other Other +90d4df06-6a27-48bb-bbd8-be51721ba631 1 Other Other +90d517df-c58d-441c-9deb-0c8885059836 1 Other Other +90d5539e-b99d-45e6-91ad-70694140c0d2 1 Other Other +90d57807-c724-4db4-94d7-a040a9e01466 1 Other Other +90d58368-07a8-443f-809a-a5d687d08c5a 1 Other Other +90d5a9bf-472c-4cf9-819b-bc6773e33c9a 1 Other Other +90d5d3b9-0dcd-447a-a3c1-ec0c3584c7fd 1 Other Other +90d640e5-6297-4d3f-bf43-f7350097e53a 1 Other Other +90d64481-887a-4716-87af-c09be440d8c4 1 Other Other +90d64627-dde0-46d6-b551-87f21f45c350 1 Other Other +90d64ce5-4f74-4678-97c5-5bf0d77fbb75 1 \N Other +90d66c70-0b69-449b-b27a-c0216a4b4d7d 1 Other Other +90d69df7-498b-4ca2-9abb-955da8557ba5 1 Other Other +90d6b293-1ee2-4d4b-b978-39ea54fb1c89 1 Other Other +90d72180-d1ca-474b-9734-6f566e489eb5 1 Other Other +90d769c1-a354-4070-9a69-8ffaf04741c3 1 Other Other +90d7c843-7c84-45bf-b7f3-2f00decb6973 1 Other Other +90d86261-a0db-4824-9211-2f0c4b43a36c 1 Other Other +90d8679a-c353-4eba-a98d-cb9c9a0adad6 1 Other Other +90d86ee7-8e40-4c55-9a32-e2b140811bbe 1 Other Other +90d87056-83d4-451d-8c19-72dd9bec9084 1 Other Other +90d891eb-c301-4526-8f2b-f57c6eba1c8b 1 Other Other +90d8991d-0815-43f5-a7a4-3041adbb82ff 1 Other Other +90d8b1b8-8649-4014-ba52-d8cf04072963 1 Other Other +90d8c925-ab72-484d-b046-c68c42c15696 1 Other Other +90d8cdd1-50c4-4a23-bb73-b1d0c86db44c 1 Other Other +90d8d441-5a32-4140-ac25-ec1aeb01ded4 1 Other Other +90d8e957-919f-4e49-acde-e62a82f546d1 1 Other Other +90d91f2c-5880-4915-bf7c-6ec58c12a5e1 1 Other Other +90d97e95-ec2e-4b02-9079-7a183014d3e4 1 Other Other +90d989f5-92f2-47af-9f18-014b1b9dd4b9 1 Other Other +90d98b41-3ad8-48f5-883e-83d3fa10fe75 1 Other Other +90d9a201-715a-4346-a1e8-2e1f012e9968 1 Other Other +90d9a6ac-a4b9-41f8-9964-a1180f6f6d22 1 Other Other +90da051e-c41d-4531-8bec-6c990a0e77d3 1 Other Other +90da2758-2bae-4e21-802b-f5b950d9b161 1 Other Other +90da3480-e4f6-469b-a54e-f83c38284943 1 Other Other +90da572c-9228-4e21-a0bb-ed8cce927054 1 Other Other +90dac76c-58a5-44db-9d71-0514840dce96 1 Other Other +90dad176-eaad-4d96-89b3-9972094232b7 1 Other Other +90dad2dc-f359-498d-a7a3-5973bb4d57cd 1 Other Other +90db19ab-2b1e-4143-9831-3c17fee287e5 1 Other Other +90dbb75e-6720-418e-99a2-b88ae9e08df1 1 Other Other +90dbc12c-64a2-4486-b05a-f213c7621df7 1 Other Other +90dbdbae-ac53-4a67-8a76-8f7ef8916270 1 Other Other +90dc0ff2-7784-446a-97ad-ff7b5fbdbcde 1 Other Other +90dc219b-80d6-4cdc-b893-8781c968cd9c 1 Other Other +90dc5916-cd49-4805-9974-d78b7b77a637 1 Other Other +90dc89b3-17a6-4715-8c2b-a203b27886da 1 Other Other +90dcbe50-3c03-4fc4-a427-d0666cc320d1 1 Other Other +90dcda54-7ea7-4d20-8d97-683828595c6a 1 Other Other +90dcddd9-da6b-4b22-9452-78dc8f0e355d 1 Other Other +90dce7a4-baa9-4e5d-b3cf-1f7a90bcf35d 1 Other Other +90dcf7ea-bd43-4c3b-9f48-9eaac956cdf6 1 Other Other +90dd1d5a-c057-4416-bf4f-3672f108fe40 1 Other Other +90dd484b-d58f-4ba5-8a9f-535b5690d003 1 Other Other +90dd51a2-2a28-4ca3-bb89-131e0475c55f 1 Other Other +90dd636d-10d3-452e-a5c2-f930f7ffa8b1 1 Other Other +90dd668a-a918-487e-ae4a-04719aa57399 1 Other Other +90dd79d6-156f-11e8-a2a1-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +90ddaf1d-a19d-4cd7-8d42-06d21c81b465 1 Other Other +90dde095-7945-4896-b144-ac597029da0c 1 Other Other +90ddef6d-bf12-468e-b879-0d0c4121f0a8 1 Other Other +90de08a0-6677-4fed-b5a0-4d9f6b4d8824 1 Other Other +90de5c10-634d-4cbd-af39-20b4afc71fea 1 Other Other +90dea68a-840a-4f25-aba0-15b6b494106b 1 Other Other +90df288f-48cd-43d3-866c-77a708a5549b 1 \N Other +90df5b87-6835-4b8d-b8ea-5d147154e5aa 1 Other Other +90df68f7-eaf4-4391-b291-38eaa02b3030 1 Other Other +90df9393-8c08-4a34-8754-9ef02eb4bf71 1 Other Other +90dfa9a9-bc01-4662-b8ed-ab4d765c63e2 1 Other Other +90e022ef-103b-4c29-8197-479c8f3b5c95 1 Other Other +90e033d3-581e-49e7-91ef-310a1ffc09b0 1 Other Other +90e039cd-8e7e-4dbb-8a54-d24abb87752b 1 Other Other +90e04e06-014e-472e-ab14-c89ade7dfc5e 1 Other Other +90e08e49-8614-481a-aaf8-b5c1e2cd13d2 1 Other Other +90e10378-fcf8-4535-ab3d-993c3402c1ef 1 Other Other +90e13c70-10a7-4b3d-8c5b-9a32b0fe6581 1 Other Other +90e17a5c-bd96-4ffb-b6f8-eed2605ea6bf 1 Other Other +90e1c0a1-6bcd-43cf-a571-b6bc54bfd2a2 1 Other Other +90e218f3-4f9e-48c8-98d0-fa810ddd4cd6 1 Other Other +90e24b23-6ecf-44bc-9bf2-746329dff17f 1 Other Other +90e25b64-5072-4445-a4dc-9e692324f330 1 Other Other +90e2855c-05bb-442a-89e8-bbf02d8e473e 1 Other Other +90e295e0-8bc4-4bd5-9ffa-dc33784924b8 1 Other Other +90e2a1b3-7dfb-4f6c-956d-35b048960a08 1 Other Other +90e2df17-3710-4310-8448-ac20d0dfb8ad 1 Other Other +90e30202-9572-4aad-bac1-d78ec27a4dfe 1 Other Other +90e31171-4afb-4f36-8150-84d65bb7dd35 1 Other Other +90e318b0-f03f-4a7b-bec6-ead48890a062 1 Other Other +90e33549-5c35-49cd-bee9-6ead124c081a 1 Other Other +90e384d9-010f-4728-abff-bf88a5cedfb5 1 Other Other +90e38a8c-55b7-4209-8bba-86766f242f1c 1 Other Other +90e3cda7-7d69-4067-8bb5-e38761c41f5a 1 Other Other +90e41c1a-a375-4ae9-8654-69399446e565 1 Other Other +90e46b52-caf2-4386-8b04-f78d9ab30ea9 1 Other Other +90e4c610-29eb-423d-9e6a-3dabbbdb9b69 1 Other Other +90e4f2ab-3e90-46aa-9d99-e67f523f51fc 1 Other Other +90e50977-3009-472d-8a57-72124cea21e4 1 Other Other +90e51b5a-9fb4-4e9a-bc00-6e0eba8c9f23 1 Other Other +90e54714-ba79-44ea-aafe-69176d1f72a1 1 Other Other +90e5645d-df03-40c6-88f0-22d7e58ed260 1 Other Other +90e56d82-5e01-4ff2-b111-b1ce14f3674d 1 Other Other +90e5a7ab-930c-49ef-b393-568d6d9c9452 1 Other Other +90e5e31a-ca79-4128-80eb-8c0914420641 1 Other Other +90e5f021-3e96-4467-8e37-0275f07811ce 1 Other Other +90e634cb-ed9d-4bc4-b3e9-eb07030b55da 1 Other Other +90e6487f-02f4-4113-b81e-1039f7511dd9 1 Other Other +90e698c0-c90a-4991-b57a-817d43034559 1 Other Other +90e6abcc-6138-402d-81b9-8ddd9b25b73a 1 Other Other +90e6e117-c3bd-45a8-9614-448fba3b3088 1 Other Other +90e6ed09-126d-406e-84e9-d8a27a47d096 1 Other Other +90e70f99-ed9c-4461-8111-189cdeb9f831 1 Other Other +90e77252-6a86-45d2-9c48-12eea4a00775 1 Other Other +90e78146-8166-42c8-bbcb-064ff799abc0 1 Other Other +90e786f9-e4bb-425e-94a0-7eec1ca937fe 1 \N Other +90e7d12d-c51c-41e5-8ca3-d77d55aeed2e 1 \N Other +90e7f0bb-b08b-4918-aa74-a7ecacf004eb 1 Other Other +90e7f3ae-fe14-4b0d-b0d0-ed0946b1ffe1 1 Other Other +90e7f937-93fe-47ab-a5a8-3e0f08519bd1 1 Other Other +90e82ba9-9017-460f-b8be-b865e756f660 1 Other Other +90e82dfe-34ca-4fbd-a893-92af7852693f 1 Other Other +90e8b372-8bde-4880-be1c-281f8c092d1a 1 Other Other +90e8e213-4163-42dc-9a8b-92808c8bae05 1 Other Other +90e8e9b7-9045-47a8-b613-6af6bd093bf5 1 Other Other +90e8ecc1-bbe2-461a-970d-a544b2db81eb 1 Other Other +90e96611-8446-4d5b-9f77-a20b4080d748 1 Other Other +90e9ce43-808c-4d46-8161-eed2603c8efd 1 Other Other +90e9dc7b-ef55-4467-b51b-1e246bb5663e 1 Other Other +90e9e5f2-3c15-4ebc-b0dd-f7c75bd7b985 1 Other Other +90ea1a67-60b8-4803-970d-c0d2a3d3680f 1 Other Other +90ea23df-1db3-490a-b3c5-55038c935045 1 Other Other +90ea5c03-9539-4f2c-8b82-9fc3876fb4d2 1 Other Other +90ea6133-4f79-4a7b-ba21-cb885efbd938 1 Other Other +90ea631b-35cb-4b9c-b8c2-077d26dadfb0 1 Other Other +90ea7e5b-b102-4ecf-bcd8-c210be12237e 1 \N Other +90ea9151-f327-488a-a6bd-ad9b179a7b8a 1 Other Other +90eaa7f1-06e6-4065-93a6-4ca9dc2a3a3e 1 Other Other +90eaaced-2bfe-496b-84af-c81d8a8cf57e 1 Other Other +90eaae47-e62b-4dc7-9dda-2416beca91ff 1 Other Other +90eab599-da73-4397-a817-b95903f18f2a 1 Other Other +90eababf-0002-403e-a0e9-cb8b15f173a5 1 Other Other +90eade57-995b-41e3-a9f0-4ab7138c3064 1 James Other +90eb02e6-e296-4515-a707-9f26236fdb5e 1 Other Other +90eb2630-8f89-4f44-8ead-711cb1cbed89 1 Other Other +90eb466c-bc22-48a9-9172-a7208e681e3a 1 Other Other +90eb71e6-104d-4113-b828-4cd62687bdf0 1 Other Other +90eba129-aa7f-445b-8646-49ebcae115ef 1 Other Other +90ebe675-e64f-4066-86e0-633930f54cef 1 Other Other +90ec1c2f-7f32-4267-bb51-6a3d7e40beea 1 Other Other +90ec4054-47ee-4d26-991a-37b6fbbc558b 1 Other Other +90ec59d2-5eea-442d-8bd5-f509f7876197 1 Other Other +90ecc9bc-463c-49ca-90aa-47b045b37a5d 1 Other Other +90eccbce-aacd-4822-adb4-b1ebeea84599 1 Other Other +90ecdda0-e1f3-44cf-bb69-2310b4a0f915 1 Other Other +90ece356-fa13-4570-9ded-ede5d4260581 1 Other Other +90eced15-899e-44e0-9706-136e5a4ddccb 1 Other Other +90ed115b-872d-4f39-a9ed-088f81cd3e38 1 Other Other +90ed4c8f-ec9d-42e0-bb04-33e96397f6d2 1 Other Other +90ed5700-934d-4786-9e8a-1ac69abf2ec5 1 Other Other +90ed76e9-6453-4aa0-89e6-4e5adb8b3661 1 Other Other +90ed77e5-c3d7-43fe-99c9-ce781c250a1a 1 Other Other +90ee2988-ee41-4905-8e41-e9bb3ff35213 1 Other Other +90ee854b-a444-44f4-8430-617a757a71c6 1 Other Other +90eebe8d-a431-4017-af95-ef1f3afd11cb 1 Other Other +90eeed3b-e660-4bdc-9bf7-3b9f2b6394a5 1 Other Other +90ef643b-fd0c-4186-a534-0228718b61c3 1 Other Other +90ef6cd8-d8ee-40f8-b5ff-0da8be807a93 1 James Other +90efab53-28ac-4efa-8691-cc06d1d458f1 1 Other Other +90efdd57-e949-4a81-95bf-654ff9861c58 1 \N Other +90f02bfc-119a-47a2-98e0-4598027834e0 1 Other Other +90f033a9-e8d4-4cf9-9e2c-beac3df8eaaa 1 Other Other +90f05896-bf92-4911-856c-bab34525059c 1 Other Other +90f07293-1a01-4077-b38f-627b45c9c1c1 1 Other Other +90f07eb9-ee4b-4097-9a03-756a6c643cf3 1 Other Other +90f084dd-0688-4069-8725-0b311cf520fc 1 Other Other +90f0a89f-2bda-454d-ad35-661a0d22ea02 1 Other Other +90f0c37b-d28b-41bd-b93c-d79e098ec11e 1 Other Other +90f15914-0cd8-4254-9a9e-b6094dd6193b 1 Other Other +90f192a7-37cd-4e94-b154-990302a850f2 1 Other Other +90f1e525-a026-4a1c-ae94-c8e971758b19 1 Other Other +90f1f612-6de7-4080-aae2-251317ce7943 1 Other Other +90f20f99-1c45-42be-bbd9-4b92e42e7980 1 Other Other +90f27d16-43bb-4eb8-b0f5-87d2351b4e13 1 Other Other +90f30bfe-0b66-4673-85b8-a88f83e05672 1 Other Other +90f327cc-a059-447f-a872-24ed801084a7 1 Other Other +90f35a7e-1ada-11e8-b391-fa163e8624cc 1 Other Other +90f36ce8-4fba-4830-8719-fa10771290c7 1 Other Other +90f3c4b3-936e-4850-80fa-fae7fbb0e2d2 1 Other Other +90f40645-9ce7-4d73-9301-ba8c2d7561b2 1 Other Other +90f415a9-5fa0-45af-be31-04627fd75d90 1 Other Other +90f42607-0ebb-407b-87e7-301cc61a9238 1 Other Other +90f42840-b6e9-440d-8922-8edeea6b9444 1 Other Other +90f48034-5ed7-43cd-9e20-76f81a234aab 1 Other Other +90f4ec9c-c0c7-4272-8e23-bed7bcce367c 1 Other Other +90f4f592-ea22-4341-9224-506d78e0755d 1 Other Other +90f51b19-8d08-47a4-9d39-e6cc5b727057 1 Other Other +90f5eba7-190a-4b97-8dc7-d830e8bd3519 1 Other Other +90f60b60-c06b-4c45-a7a1-087ad405bfc7 1 Other Other +90f61d4c-0c4c-43e1-8a89-9fc06337126e 1 Other Other +90f6a06b-1bba-4d51-8181-3af0882e63a6 1 Other Other +90f7458b-c604-4d6b-9772-9e7e63d6818d 1 Other Other +90f76a3e-8865-4cf1-898e-baa9df30b4b1 1 Other Other +90f79271-f8ed-4910-b3ce-b7b59888e4db 1 Other Other +90f7e868-ab8a-4c7f-af0f-38cef794fc59 1 Other Other +90f7f629-f339-49b3-9587-627e644c097d 1 \N Other +90f7fd80-6fd0-4e49-8035-b9fc35b4b419 1 Other Other +90f81a3d-acf0-4159-9c41-fea1bebbc8ef 1 Other Other +90f82b1a-5f1b-402f-9aec-745e9b879059 1 Other Other +90f8302d-513d-4f54-8d65-3124adb8643f 1 James Other +90f8470e-eed1-428e-a24d-073a03a7f1bb 1 \N Other +90f87784-b691-4870-a132-228c0dc16e62 1 Other Other +90f8b4b6-abfc-4279-97ae-1aa0b63c0d77 1 Other Other +90f8f5c9-ba06-41a2-8212-c0cba9cb5b25 1 Other Other +90f8fb40-3ef3-44ac-9270-0ac782a16801 1 Other Other +90f9248a-0768-49a8-975e-aaafc13af9db 1 Other Other +90f93499-8d32-4917-a137-49602bd7ccfa 1 Other Other +90f96ea5-4f5f-4d1f-a22e-0ccc10be16ef 1 Other Other +90f9c47a-13e5-4dca-9009-4b7c189e9325 1 Other Other +90f9ebbb-dc7e-4bd4-bf3e-8344ca9b9df4 1 Other Other +90f9f94a-74ac-43b6-806a-6d8c4f9882bc 1 Other Other +90fa16d8-8014-4df5-8479-fe865d44e199 1 Other Other +90fa1844-0a84-47e2-9c26-e90509caa949 1 Other Other +90fa248c-f27b-449d-b654-02b86a7dba49 1 Other Other +90fa2c62-4773-4ec5-92f3-43af274ccee1 1 Other Other +90fa7231-d98f-4ac3-966e-075bb1ae1289 1 Other Other +90fb06e9-1ad8-41e3-a698-bb23d00c4005 1 Other Other +90fb311c-5b57-4052-901c-d60795f6ddbf 1 \N Other +90fb5dbf-e39a-4197-b3ff-717a24fab1c3 1 Other Other +90fb5f45-f38d-44a5-98fa-0593cc7c4df4 1 Other Other +90fb7843-ad54-40f7-8490-8dfd0468d245 1 Other Other +90fbfa3a-e10b-4694-aaf3-6475b6195ccd 1 Other Other +90fbfd8f-0f2c-49d4-ba77-e8e6170a8f98 1 Other Other +90fc9c67-2400-4490-af2d-1fdad147d4ae 1 Other Other +90fcadb6-2e6d-4a57-9507-5f6c80598c4d 1 Other Other +90fcb0f8-5e06-4e7f-9710-89e7b49af662 1 Other Other +90fce30c-8cfb-4f82-a6e5-06e2f3a54588 1 Other Other +90fcfa0b-5e9e-4a4e-8e5a-40c5fceff181 1 Other Other +90fcff46-43a8-42f0-af15-896d9583b046 1 Other Other +90fd1a86-70cd-45dd-8fdf-43f0d3b2e085 1 Other Other +90fd21c0-5bf1-44c2-ac6c-3e0a4cf3596b 1 Other Other +90fd5db4-7389-45d5-996a-7aa016457280 1 James Other +90fdb5c8-794d-4624-abf5-ad8b90a015a9 1 Other Other +90fdf32a-39cb-4ea5-a9ef-f96da9d72efc 1 Other Other +90fe2d66-8184-4b03-b028-af27ece44eea 1 Other Other +90fe5e1e-5ec6-452d-b27f-421a811bbfb2 1 Other Other +90ff1466-ed60-4c39-8c68-a030bff78c5a 1 Other Other +90ff9a03-4d27-4ccc-a092-f5204010a047 1 Other Other +90ffcc37-2eb7-4326-bc4d-d44800525f8e 1 Other Other +90ffd695-b008-4e6f-b15f-3f31e0b32f3b 1 Other Other +9100011d-08e6-44af-8d77-b5d9bb607525 1 Other Other +91000940-60dc-4ea2-a397-9ee58ea9c7a7 1 Other Other +91000ae6-5aa8-4cce-b49a-8e5061c750e3 1 \N Other +9100848d-60f6-48e0-a109-c174997a39ae 1 Other Other +9100d038-b866-41b2-a528-448a4fc5ce43 1 Other Other +9100ff5b-a525-4769-8af5-b44470968bc5 1 Other Other +91014340-e466-4f15-8466-16da52d574c7 1 Other Other +9102340b-4db0-4df2-a4c4-98b4d58503c8 1 Other Other +91024541-0a69-4e36-a3c2-9ac15018a4d5 1 Other Other +91025d84-2f7a-485d-a6db-3420fa1d69ce 1 Other Other +910266b9-029f-442d-aa03-cec88c492899 1 Other Other +91027cff-7e63-4350-82f2-587f05a789f2 1 James Other +910281a6-7b16-469e-aac5-3c92986b1ea9 1 Other Other +9102c02a-396a-4910-a72f-dcea63536964 1 Other Other +9102e955-445d-4102-a53b-b82d67571ba9 1 Other Other +910325e0-ae7a-4302-a38c-626ebf557b0d 1 Other Other +91036b2f-8e2e-4b3b-8561-5bab40b84510 1 \N Other +910394ef-c240-488c-a9f3-8cc93913bae3 1 Other Other +9103989b-5504-4ffe-ab01-7681128af818 1 Other Other +91042111-fcfc-41c9-b5d1-c700e9e30877 1 Other Other +91044b23-ffa2-414f-9409-45bc40a4f1c2 1 Other Other +910476ff-68b2-4a30-b2e9-634383defa8a 1 Other Other +9104c0c0-1a89-459a-a6ac-8e11b17408df 1 Other Other +9104ddb1-6214-41aa-8407-556f4993a37a 1 Other Other +9105058c-d419-4f8a-80fa-dbd9c532502a 1 Other Other +91050cf0-1f1a-4ebe-91ff-fc115897d3ec 1 Other Other +91052fe4-9c8c-441d-9c54-5c10c7624d58 1 Other Other +91054cf6-0392-446d-8bae-2f02d9f0b0de 1 James Other +9105577e-bce8-44f9-8e24-744253f0a7b5 1 Other Other +91058e3f-131f-438e-ae6b-e6ee2768404e 1 Other Other +9105c514-259a-4b6f-b154-55d32f9b6848 1 Other Other +9106832a-37a8-4b38-9d4b-d3529100ecf2 1 Other Other +9106cfe3-d520-4dfe-b203-828a78d81a1e 1 Other Other +910736c0-95ec-4c32-97c1-239e640fd3ac 1 Other Other +91075d56-4c69-4b70-a953-05d1a62d460a 1 Other Other +9107754d-6bca-4b87-a4f5-ab101adf5e42 1 Other Other +9107896b-05f2-442e-bcdb-9b5fd7e218a1 1 Other Other +9107a905-67d3-4579-9f09-2a43be6ed9c9 1 Other Other +9107bd41-d02a-4ca6-9865-e467c4206713 1 Other Other +91081589-7a13-4073-9f1a-73e42550ca4b 1 Other Other +91089409-5f67-45c4-92bb-d164bf24d2c0 1 Other Other +9108c867-37bf-49f2-915c-4983e08c9596 1 Other Other +9108eacb-3e9d-48aa-a803-dfae02972192 1 Other Other +9108f7dc-3e8c-404f-b543-ea846b3e5ffe 1 Other Other +9109191b-df5a-4549-b885-708d894f835b 1 Other Other +91097bea-0713-4c0d-8770-a876f7189aa8 1 Other Other +910a455f-a150-4d39-ba1d-928d63dd9d38 1 Other Other +910a7585-6742-4f3e-84c0-bd4c6d3cf1ff 1 Other Other +910ac110-2e4c-4e03-8a36-6ee017bc0a60 1 Other Other +910acedb-4eb5-4f26-bcb9-298018f3c4de 1 Other Other +910afa26-4083-4901-a1d2-2caa463718b4 1 Other Other +910afbb8-4cc9-4c23-b020-1447b6525c3e 1 Other Other +910b1d0b-ba1c-4ab3-9379-941056a674f7 1 Other Other +910b61ca-e1d1-44fe-b0ab-5c6d78276ad1 1 Other Other +910ba1ab-fc80-4896-9a88-007f36c15beb 1 Other Other +910be7fc-6940-4dcd-9bf1-8831517bda54 1 Other Other +910c0d8d-6423-4262-b565-7e1e89cfa93c 1 Other Other +910c55ea-c82c-4714-833f-5d25b2368865 1 Other Other +910c5e4d-601a-4f74-b811-6fe40b53e985 1 Other Other +910c6c37-737e-4443-b63e-9a0d2b9d19f6 1 Other Other +910c91af-9bbc-45cb-9204-e30a806cc0b9 1 Other Other +910cb0fa-4348-42c5-83fa-8633ed36c901 1 Other Other +910cbee6-1b1c-4194-8e5a-ca141f1370c7 1 Other Other +910ce6e3-b5d7-4447-a964-27ad2b927378 1 Other Other +910cfac4-931d-43df-b442-761f181d9ba6 1 James Other +910d1989-2550-4276-9b2e-1994e51e77c3 1 James Other +910d2ddd-60e5-4bb6-9e52-b59422c7d2af 1 Other Other +910d393f-e4f2-4fc8-99da-5ef0cd1e6c53 1 Other Other +910d4e8d-a98b-4557-be94-3c76e5e588b6 1 Other Other +910d5538-dde7-440a-a915-a642ed6159ab 1 Other Other +910d5d83-c8ea-40cc-939d-76c8d2c89fde 1 Other Other +910d9567-6432-4612-8354-420c24cc2cdf 1 Other Other +910dc72f-1d48-4b47-9be3-52ab3b6659a5 1 Other Other +910dcb97-b8d0-49c1-9154-800c63cbe1e9 1 Other Other +910dcbd8-bc10-4c20-8a94-c8dd0dd330a6 1 James Other +910ddfa1-b8dc-4c7c-b5ea-5bf2ec5d8026 1 Other Other +910df376-f479-4328-99d5-ad55817a2928 1 \N Other +910e73c8-212b-45e8-bf69-4624716c0f1c 1 Other Other +910e8f32-7798-491f-9413-a773d26387bf 1 Other Other +910ecbbb-3fb4-485e-9ac9-94506c6e6ba6 1 Other Other +910eec5c-94bb-4de4-9f26-9a13b05b2775 1 Other Other +910ef5eb-a3de-4f74-b69c-bc5e9e0f2441 1 Other Other +910efadd-1ad3-40be-bad5-fc2968eaeecc 1 Other Other +910f2dde-eaf5-49eb-9804-c7767d1684d4 1 Other Other +910fa9c3-4ae2-465d-bcae-5ea5beb763ca 1 Other Other +910fac3b-5a2a-40ca-b12b-5624595b67c5 1 Other Other +910fb543-aad5-4d31-bc0f-84be19117403 1 Other Other +910fe5a7-2201-4635-865d-4a595a18336b 1 Other Other +91101098-1c5e-4a61-81cc-c25ea7a2137e 1 Other Other +911054b2-ccd1-4ad7-b1d2-ce8393956fec 1 Other Other +91109134-58d4-4c7c-922e-a6b81df046ce 1 Other Other +911097cb-01ea-437a-b6cb-bd82932e192e 1 Other Other +9111dc10-4fbe-491f-aa38-bfec1c910325 1 Other Other +9111dfda-99ce-46c5-92c4-938373f04fe3 1 Other Other +91122c23-d548-48a1-83d8-18427506ae91 1 \N Other +91124cdd-4564-4a31-ab51-7ee20cf2ae09 1 Other Other +91125aba-2804-42aa-916f-6836e20fd32c 1 Other Other +911280a4-c81b-4581-9684-8823526b0874 1 Other Other +91128f40-967e-4ee8-b519-29b6692a740f 1 Other Other +91129416-03f0-4574-941e-19650e1848f2 1 Other Other +9112d962-b5a5-43cc-88a3-a9e65252eb35 1 Other Other +911350e7-5b5f-4459-8d6f-2c84ed8fc79b 1 Other Other +91135886-a3f6-4371-b1c5-b3a8053fccee 1 Other Other +91139128-0dd6-43af-a4b6-8a07a9ce1c43 1 Other Other +9113940f-9e73-419b-949d-5dc4977c2218 1 Other Other +9113f5a9-3f2c-487b-bcb9-ab90375bea8a 1 Other Other +911416c7-4117-4f52-a97c-559040aca86e 1 Other Other +9114488a-f45e-4601-93ae-2298f1393526 1 Other Other +91144917-47ea-48ca-a1c9-0e0d38fb2dd7 1 Other Other +91147b59-185a-48bc-8ba3-44b560fcdee0 1 Other Other +91147cae-5ea8-48a0-869e-14cb70beb6de 1 \N Other +91149493-5c79-4730-97a1-e7580982accb 1 Other Other +9114998a-5fda-402e-a6e8-41614c51b711 1 Other Other +9114b930-d41a-47d6-8173-81a3a8c2e8d8 1 Other Other +91156c9b-cee0-4a5c-92bd-bbf45c7a319c 1 Other Other +91157cca-05b4-422e-a761-8d082fa725ef 1 Other Other +91158077-5e07-4d92-87c7-8d68b7c3ff20 1 Other Other +91159b95-d9dd-46b8-82a0-ab4a68dead8c 1 \N Other +9115c3b0-e42d-4aa3-b2b1-c95163710e7b 1 Other Other +9115c7ae-931a-46b7-809e-435f38d15053 1 Other Other +911607b5-52c1-49f0-9edc-699aad5b2e86 1 Other Other +91160ec1-c25f-4cf6-8f8d-d68e555c96f9 1 Other Other +91161d2c-b2c3-49d0-8726-2c4a2edf0e67 1 Other Other +91166ccd-d78c-4dd4-bcb5-5670344a1799 1 Other Other +91169582-fe1c-4a8c-99e6-20c42a1ae446 1 Other Other +9116f11b-3c85-45c4-aae6-8fd45c645b22 1 Other Other +9116f330-6d5d-4c5a-b241-d0fc735f44f8 1 Other Other +9117556c-1dc0-4e0d-ba8c-4873556ea3be 1 Other Other +9117556d-c83c-40a7-aea5-cb0e02b94fb8 1 Other Other +91177865-9ac5-4572-88b1-25de1e2f49fa 1 Other Other +9117c419-3786-4200-948e-accb67f0cc5c 1 Other Other +9117cd6b-7ba0-4eb3-b65b-0a7b87ec11c2 1 Other Other +9117f868-2c1b-4a8e-bd68-20678c2d61cd 1 Other Other +91184238-7bd9-48ab-a934-a0cbde0242bc 1 Other Other +91184313-17a6-4c7f-9312-8c57fae02a2f 1 Other Other +91186554-790a-4b56-ab44-ef1ca90f5da1 1 Other Other +91188f97-dee3-4397-b8e5-fc3b02a5f268 1 Other Other +9118c2b0-d0da-4386-94db-d383fae829f2 1 Other Other +9118ecd5-cb22-47d6-a03f-7be3b710d36e 1 \N Other +91191a2c-cf91-4fa3-9ed8-035b0aca0b1e 1 Other Other +911936a8-349c-4a5a-a8a4-1c919558abac 1 Other Other +91198034-b648-420d-a86c-b268071992d2 1 Other Other +91199b00-6dcb-4460-9e1d-ef5437c3c249 1 Other Other +911a1a2b-18a7-4833-8cc6-1bae89b37dce 1 Other Other +911a40a5-a936-47e1-8a5f-27d73b92f54a 1 \N Other +911a55ab-edac-48f6-88db-acad6bf9052b 1 Other Other +911a5b0e-bb3c-491b-be87-138c7279c25e 1 Other Other +911a6b7f-222e-48d7-9a37-99704879bdac 1 Other Other +911abfb4-f772-41c7-aca1-d760e71a081d 1 Other Other +911ac0d2-54bc-4ec6-bbe1-cf200013c458 1 Other Other +911ad6f2-f253-4b12-b213-e761fd8bab52 1 Other Other +911b0202-a0a9-4b70-b30d-b5f1e13db371 1 Other Other +911b0bc2-cf90-4529-86ab-2d1ac127df52 1 Other Other +911b0f42-88e6-4cf5-94ae-79fb8f61837a 1 Other Other +911b5b81-3bae-4696-90f2-24aa4e3801bd 1 Other Other +911b660a-ddf1-482c-b7e4-f4ed489474a9 1 Other Other +911b8b91-f6ce-405b-a630-3108b5170622 1 Other Other +911be212-7e89-4bfc-9273-eb980637aab6 1 Other Other +911c9246-3440-454b-b73d-58c106c73069 1 \N Other +911ce99b-bbdc-4786-b7e2-c170a0a99616 1 Other Other +911d40d1-90b9-427c-a9b5-16217ca5c85d 1 Other Other +911dd781-e3cf-484d-ac7f-d98c69092a25 1 Other Other +911ddbf9-6b95-49cb-9553-d61c0456cf04 1 Other Other +911e1cf8-54da-4033-942d-dfff04343986 1 Other Other +911e1dc6-eed9-4e29-b6cf-f581be24e969 1 Other Other +911e3f89-6817-46b0-a332-f0e167daafcf 1 Other Other +911e59bf-c158-47ad-bc3c-5d634c478e81 1 Other Other +911e82ca-d90d-4e37-b20a-dc34127d7f6e 1 Other Other +911ea99e-bd2e-43ff-9cb7-10804fe5baf9 1 Other Other +911ebd33-e7ac-40a7-a1f0-4cade4b04ed2 1 Other Other +911ed061-f17e-461c-a2c4-500a5bec01c1 1 Other Other +911f04e6-c0dc-4fe5-91ae-0bddc2c8f008 1 Other Other +911f1e0d-4595-433e-8c7d-587b537da62f 1 Other Other +911f28d9-c1e7-4743-9011-46c90bd5469d 1 Other Other +911f3222-4d2b-4f62-a3e3-2734400007b2 1 Other Other +911fae96-d4c5-4dba-814a-56062bf9d9d9 1 \N Other +91203057-2513-4b2e-b9ac-75acd67d48a2 1 Other Other +912062b0-2cab-47e6-9685-445d2d5e55e7 1 Other Other +91207b3f-ac9c-4c8d-9427-ff31b787debf 1 Other Other +9120a1cd-debc-4cc4-ad0f-5f799c5095e3 1 Other Other +9120c56b-ad7b-46a9-8682-362683736785 1 Other Other +91214c95-00e3-4dd9-bfaa-142db140c3e1 1 Other Other +91219d5b-857c-4073-9dcb-30922ad58d16 1 Other Other +9121a828-c0bd-46b9-a6d4-ca546e7f423f 1 \N Other +9121f36f-bbf6-4ccf-b81b-a7d119d6d85a 1 Other Other +91227cce-f94c-44b0-b113-edffa71636eb 1 Other Other +91229789-1c90-4ec2-b1ab-9da97986e0a5 1 Other Other +912297ef-3e44-4749-b5ac-e8691bed3228 1 Other Other +9122a5c4-3d2e-470a-b900-073a14be4887 1 Other Other +9122c44c-8566-42ec-9052-e9720b8c7b07 1 Other Other +9122d94f-c081-4cda-bddc-fea35a175149 1 Other Other +9122fafb-8dbc-46f8-8324-a5d916407f14 1 \N Other +9123053c-ddfd-4663-8a1b-3b5ba58b7d4d 1 Other Other +912334ea-f6ca-40b6-a2bd-a93707a47cba 1 Other Other +9123a70f-a058-4a53-93c0-4423208de001 1 Other Other +9123ab95-dc4e-42bc-90e0-4069517841f6 1 Other Other +91242009-6b6a-4669-91be-006b3b211d65 1 Other Other +91242593-17fa-4851-8927-6a77d8c75a67 1 Other Other +91244217-3179-461f-b518-b97e5c5983ba 1 Other Other +9124d291-2a0f-47cd-9c34-c9602cc97600 1 Other Other +91253b3f-9c4b-4df8-a653-ab69f7bab0d8 1 Other Other +912552e0-a9f0-44e6-8c76-a58afb061bb3 1 Other Other +91255b12-03f2-4f43-9144-f23cdbb40202 1 Other Other +912571b8-50cb-4683-ba94-455270ec0833 1 Other Other +91259c12-77a9-4d24-93fa-2187d4d17e5a 1 Other Other +9125b09b-fd8d-4f87-856c-76528be06e9c 1 Other Other +9125b8e2-43f8-49d8-aa6f-4d1c55d7b921 1 \N Other +9125c5f3-a3c2-4448-bf7d-790032aed45f 1 Other Other +9125c967-cf21-4e25-9a79-da26b0fb753d 1 Other Other +9125f4b8-c7e0-40c3-a248-5f6f33dc1ad2 1 Other Other +91265f4e-04bd-4984-b0ab-bc00e81c6053 1 Other Other +912677c9-9dc9-434c-818b-17a613fbe7b4 1 Other Other +91268164-4e6b-4612-a9e6-15599431a537 1 Other Other +9126d0bb-a2fb-4742-b5b1-f7defd10589a 1 Other Other +9126d310-2a2e-446a-856d-a6535ddc03fe 1 Other Other +91270199-028a-477e-b18d-7171a3f3185e 1 Other Other +91272a4b-adbe-40d5-a1fd-1687cd3a6eba 1 Other Other +91274b65-c1bc-435c-8dd0-a06a781eac1c 1 Other Other +91279fa4-0e2c-457d-86eb-746f0495738d 1 Other Other +9127f27e-b2a1-4860-b6f5-823c4262477a 1 Other Other +912801f6-982b-4196-9a24-eb376d81173e 1 Other Other +91288508-f7be-4791-bb49-cb45a3a41acf 1 Other Other +9128ae7a-cde8-452d-9930-a14beb81008f 1 Other Other +91292370-9b2f-4d20-b22a-5db14a619a77 1 Other Other +91293657-4f01-47b0-bf93-a2d970dcbf48 1 Other Other +91294c14-0ac5-47ed-93bf-c7b2458839b4 1 Other Other +912986d6-98d0-4930-be2c-be7d97231067 1 Other Other +912990da-c3df-4026-b823-81912fe9c6a0 1 Other Other +9129da4c-3606-4add-ab03-2f43c47f3d5c 1 Other Other +912a4de1-4034-404c-b590-f867f9b6f79f 1 Other Other +912aa0fe-1d74-4628-91a0-fc663be7271c 1 Other Other +912af480-7edb-4d92-9b2c-0832ffe3dc79 1 Other Other +912b1776-e119-43a3-9f09-9b38c81a6689 1 Other Other +912b457f-59f4-40c3-a0f3-21903ea8db4a 1 Other Other +912bdbb9-2722-4b33-8b44-fbbc8de9fa83 1 Other Other +912c06c4-7bd3-4051-a1f5-f1b9b8d994bf 1 Other Other +912c546d-777d-4810-bd4a-4ceed47234b3 1 Other Other +912ca97f-684e-4d33-b7bb-40ac703966b0 1 Other Other +912cd366-f58b-4fec-807c-e79028b9bc77 1 Other Other +912cdf80-d7a4-4958-b698-d772add0f956 1 Other Other +912d212b-7409-4d8f-87e3-6f732aaf96f8 1 Other Other +912d97e2-5693-4b98-991e-fd10e6faee64 1 Other Other +912da105-8de0-4d81-a1c7-1dfd4a414370 1 James Other +912ddde2-35c8-4533-9445-637b9d0b31d9 1 Other Other +912defc4-144a-48b8-b603-bbbecfb3a812 1 Other Other +912df237-efcf-409b-95c8-93e715f26f9b 1 \N Other +912e2a92-c8a4-4e65-a672-c4c9c886862f 1 Other Other +912e30da-27e4-490b-8403-a2ea1ba6e0bd 1 Other Other +912e4919-bce4-4e9c-8714-0b9c6bf41f49 1 Other Other +912e60fa-d662-4186-8feb-9abc19b4714d 1 Other Other +912eb9d4-ce76-4c1c-9c40-0db793072571 1 Other Other +912ec6df-a8cf-4728-b0e7-5d1f5a95c4c2 1 Other Other +912f111c-8953-48c7-9279-5b989faa68c1 1 \N Other +912f2305-0a27-4219-ad1e-ae522b1f03e1 1 Other Other +912f8fae-6c45-4761-8624-ec1f3c02962b 1 Other Other +912fd258-11fa-416e-af9e-27e6ea161eea 1 Other Other +912fdac2-b5b1-450c-8056-f3e898381bda 1 Other Other +9130282b-e48b-4bb1-942d-7f563d2d59df 1 Other Other +9130656f-1362-4b7a-ad06-0e86d92226e7 1 Other Other +91311836-0875-4cf2-a44b-a43f5d287331 1 Other Other +913118ce-9df5-48d7-a342-b41a2a7af404 1 Other Other +91311985-2a33-4626-bda2-2b1a620bbfd6 1 Other Other +9131962b-57b7-4a26-a46b-36e0392333a2 1 Other Other +91319fac-ae5e-49fc-8722-11571d708646 1 Other Other +9131a533-0d39-4fc3-bb8e-3de4d2a38209 1 Other Other +9131a73b-86fd-45c7-b75c-eb3d69a10fe6 1 Other Other +9131b171-cc99-4ed7-925c-88e943fe83a2 1 Other Other +91320835-54a9-4dba-928e-9b45c8b88845 1 Other Other +913228df-ee51-4a37-8e73-5dd296f007f9 1 Other Other +91326f0a-0511-4b7c-accd-1708b7d63a8b 1 Other Other +9132734b-a3da-45e0-ae7d-78e5c45921d7 1 Other Other +9132a64f-9507-4c8f-961d-e856d10443c1 1 Other Other +9132ca09-e721-4d5f-855f-97d0c61d9044 1 Other Other +9132e1b7-62ce-44b9-abb2-79e1da5819b0 1 Other Other +9132f7a2-9ff2-444f-aa43-5ab575b56952 1 Other Other +91335d14-98e1-44e7-91ef-465dd0dc4a7b 1 Other Other +9133b30b-ab63-4a4f-9e9d-bde06dc2fdb7 1 Other Other +9133e88c-7fa0-4fdd-ba1f-5fa2b74d44dc 1 Other Other +9133ec74-adb4-46bb-87ba-6620d70c2c03 1 \N Other +913406be-376d-47bd-a136-2680cdc1895d 1 Other Other +91349e91-8a1d-4ca4-ba4b-92909461e296 1 Other Other +9134b400-fe81-4e0b-8bd8-51f2c22b79e7 1 Other Other +9134f4ec-d8d6-47c1-8810-0a02de80d90d 1 Other Other +9135097f-da79-4977-932f-15dc6bbfd85d 1 Other Other +913528cb-fd12-473e-9e68-73386b6c1c4e 1 Other Other +91355f02-b5c2-487a-8cd5-dc97b979360b 1 \N Other +913575f9-2615-4fef-a349-55a6fbf7f33e 1 Other Other +91357f30-3bfb-45da-9948-be288b20f356 1 Other Other +9135ea1a-5837-44c4-8fd5-c12181b441cd 1 Other Other +9135f632-2002-4944-97e3-c2c592984a86 1 Other Other +91362a13-62af-4bb7-ade1-282e37f05807 1 Other Other +91363761-21ae-4a66-b739-d69aad44dfca 1 Other Other +91369c3d-8bfa-4104-9f06-4f45223fb444 1 Other Other +9136b79f-ed46-4266-9190-63a0fa777106 1 Other Other +9136c072-8b44-40b0-a14f-8c7c7a7b8337 1 Other Other +9136d3b2-d62b-4de6-90d1-c99ab0490d87 1 Other Other +913704b1-891e-4429-977e-05b7b7ed8afd 1 Other Other +9137283a-da59-4e8f-93c5-712fe62eeda5 1 Other Other +913737d1-6b16-4646-9d74-e28c1701bec0 1 Other Other +91373b49-bc6c-4049-9a41-8ecac74e6dca 1 Other Other +913756c3-0ade-49d3-94a6-d556bfbefb0e 1 Other Other +91377774-3aad-4246-a17c-710c211a425b 1 \N Other +91378656-652e-4d2b-a6a9-3e215cd60df6 1 Other Other +9137e7b3-c9ae-4a10-84a6-83e20a700ac1 1 Other Other +91380c39-be6c-4b58-9bf9-bec90a712f2f 1 Other Other +9138145b-0c2e-42d2-a155-49448a838f7b 1 James Other +91383e2f-f4a4-4505-bad7-5eaf21729f7c 1 Other Other +9138940b-42e4-479d-ac45-801b728bd892 1 Other Other +9138a538-fc4b-4bb6-86ae-bca400cc7b3e 1 Other Other +9138c54d-3a6d-40ac-81b5-2e083e572942 1 Other Other +9138c561-6d03-45d3-8eac-a6b831b173cc 1 Other Other +9138c8e0-5581-4fb2-a4a4-cb37b87e3417 1 Other Other +9138f4e8-d276-49ac-9433-ed76ac0f558c 1 Other Other +91391b0f-c1bb-46a5-849f-344a548e4c8a 1 Other Other +9139878b-d124-4a31-a957-30a3236021bb 1 Other Other +9139ab7f-7792-43cd-a60e-38d10d3988e8 1 Other Other +9139bb66-4801-4f22-b777-15850f2777f0 1 Other Other +9139c36a-abdd-48e4-95d2-f8ea8c2802bf 1 Other Other +913a4b6b-8a95-437d-86dd-0eb7d8cc5fe1 1 Other Other +913aed2c-e30a-4b9e-84c0-582ef23270b7 1 \N Other +913b09c8-af91-4edb-be31-0a9d04bbd608 1 Other Other +913b2f2e-e197-4ed5-951e-67baa5b2764d 1 Other Other +913b37c6-9f5e-475c-8056-cd5e78d85fe3 1 Other Other +913b4460-07aa-4068-8494-fba7faac877a 1 Other Other +913b4738-61d4-46e6-bc51-cac965391595 1 Other Other +913b6e26-0ea8-4d3f-833a-41bd774cbae8 1 Other Other +913bc73b-a111-4dbb-bf9f-d5f9d2bead26 1 Other Other +913be295-99fa-4568-992b-1928c19630a8 1 Other Other +913be4d8-455a-428d-bec3-7fad00cc2913 1 Other Other +913bebe1-f0e3-4a20-9104-c8ed5b951bd2 1 Other Other +913c10e0-8c99-49e1-a757-6ebd2401de8c 1 Other Other +913c248b-56c2-442c-811e-f77fc0375d0c 1 Other Other +913c3767-4652-4ddc-b7fb-7851eeec4de9 1 Other Other +913c40b6-dc65-493a-8983-2d172509c206 1 Other Other +913c6517-c245-496d-9a71-ebaab42b9369 1 Other Other +913c7a42-c8d9-4c30-8178-e68c0f70295f 1 Other Other +913ca539-5095-4618-a413-4e4338c66e98 1 Other Other +913cfb6c-8f4f-434f-b4ed-bdcd9eee530b 1 Other Other +913d651f-56a5-40b5-b0f4-087287aaf53d 1 Other Other +913dfded-3035-48bb-b225-682acb4f4603 1 Other Other +913e0192-53b1-4f5b-ae2c-d29e5878b1c4 1 Other Other +913e9dc8-198d-421d-a4b6-9d17bf7f48e9 1 Other Other +913efa50-fd0e-46e2-974d-1574e0d20f4a 1 Other Other +913f1a3c-2a69-4658-8a32-d87561f083cc 1 Other Other +914063b5-c356-424b-a7b2-d67b1e3aceae 1 \N Other +91407846-658d-4fda-be12-62bdfa685601 1 Other Other +914086b7-415a-445c-a39c-5d4e3a0bf159 1 Other Other +914098a2-a9fa-40c5-900a-10c7c841e604 1 Other Other +914104d2-701e-4014-be5f-3f0ff3b1880b 1 \N Other +91411c61-a355-42c7-933b-8bc194ba86f1 1 Other Other +91412016-7cab-42bd-ad42-b920791e671a 1 Other Other +9141620d-23f1-473a-af2f-288b4530f8ec 1 Other Other +914162bd-07f2-4fa4-b4d4-e313c6b726d1 1 Other Other +9141aa5c-a25e-4bb4-a7c6-08ccbd267444 1 Other Other +9141ec0a-69bb-44b7-8d17-08ebe4ca9320 1 Other Other +9142059c-1aa1-4e2d-8329-859225e4beb5 1 Other Other +91420ca2-592b-46c9-9e2e-1d9334960c08 1 Other Other +91420f96-e2ec-466b-991b-1396a475eadd 1 \N Other +914217e3-2337-43ea-b872-143ee5ca6cdf 1 Other Other +91422620-a8ed-46fc-92e2-98b16aa6a437 1 Other Other +914231fd-bfcd-4aae-8765-0340aa34ee26 1 Other Other +91424a8d-cfca-460a-9618-d7088d4dfcdf 1 Other Other +914253d7-142a-4d55-9e62-6995dc52982e 1 Other Other +9142aa5f-0fbd-4f93-b5fb-0da020028d06 1 Other Other +91430ae2-2ebb-4238-b082-5599ecca4c8f 1 Other Other +9143249e-4189-4e37-8122-6aec54bf7b70 1 Other Other +91433b3b-2e37-4de8-a38c-de513070961a 1 Other Other +9143426c-3862-482e-a488-978b3f389354 1 Other Other +914389a4-9cb4-4927-92bc-4bcff8f00ac6 1 Other Other +91438e15-2ac4-480b-b769-6e597b444eff 1 Other Other +9143d46b-0b1e-43a1-81f7-cac29fdc86c1 1 Other Other +914417c1-8ab0-4f98-9b32-9ea7b3b1224a 1 Other Other +91441e61-7d01-4baa-a5da-683c740c737e 1 Other Other +91443c61-8eec-49ee-bfc8-d2926d2d9395 1 Other Other +914483c5-0a81-4a3b-991a-8a5744a51588 1 Other Other +914492e7-c654-4af4-9dd0-b693c60cfcb3 1 Other Other +9144f0c0-913e-4bda-aa03-065fa65bfc43 1 Other Other +9144f407-15a9-44f2-9575-0453331ebc78 1 Other Other +914509e4-fa98-4155-9f53-c02eee9f3c2c 1 Other Other +91454f3d-cef2-4365-a0ce-0d454f5b6a77 1 Other Other +9145a76c-474f-4c7c-9608-24548141b2c4 1 Other Other +914600bc-a0bb-4482-96ab-5ffffc872f06 1 Other Other +91467420-310c-4779-b693-4f8b85ce6bd4 1 Other Other +9146a1f2-ee5e-4802-a4cf-8f41c488c30c 1 \N Other +9146d7c7-1f7b-49e3-9af3-9bb20f8d6e48 1 Other Other +9146e41a-4979-46f3-9bd0-33b07e0b6116 1 Other Other +91478307-0004-4e63-a1d0-d9e0696fcc00 1 Other Other +9147b179-9c46-4c52-882c-e6284fbfd6aa 1 Other Other +9147f264-dd17-4147-ab67-fbc04c7607de 1 Other Other +9147f6c5-d533-47ad-9725-052bdce8fc10 1 Other Other +91481aaa-7bac-40ff-9ee1-b110510ec9e7 1 Other Other +91484b02-e32a-47d7-b830-00070b119a60 1 Other Other +914859c5-c0d9-4777-856d-866fa0dbcb9a 1 Other Other +9148a275-748d-4f2f-aee6-dafaa9d363ec 1 Other Other +9148ba06-e465-4d87-8cae-4abe0dd3afeb 1 Other Other +9148fc52-554e-4261-bad2-a312c9fdb020 1 Other Other +914922c6-d0d6-4085-acdd-1ecd62e53e61 1 Other Other +914957d4-3b01-48e1-9bd7-bfcc0c530659 1 Other Other +914a1fff-62f0-45bb-946b-a9be6fe261dc 1 Other Other +914a2514-16a5-4d60-89ed-97d0ae20e066 1 Other Other +914a2bd5-4f3e-4e0c-b49d-944c7df26d3d 1 Other Other +914a3a96-e762-4b22-b80f-e3ee003de810 1 Other Other +914a5879-67e0-4eb6-a2cc-b9c36b3ac67e 1 Other Other +914adf0a-6e94-4080-a4a7-a41710f597ca 1 Other Other +914b1794-7da6-46a4-bc52-9828c63fe6fd 1 Other Other +914bb7eb-1107-4838-bc52-59960fbb1de4 1 Other Other +914beb7f-a65b-4c6a-bf7b-023f166b60ea 1 Other Other +914bf82f-993e-4ca9-80f6-48d1683c07c4 1 Other Other +914c000f-ef7c-41f7-8d84-b18a86bcb5c9 1 Other Other +914c83b5-2fa3-492d-9ccc-4d040f30cba8 1 Other Other +914d7bac-86b2-4f76-b13a-d94ea3ff94d2 1 Other Other +914dc48b-9c2c-4775-aa68-cd301008eef2 1 Other Other +914de653-0e32-4323-9139-6a1362de3f71 1 Other Other +914df9dc-7734-4cee-94bf-04e05115069e 1 Other Other +914e340c-9cb0-4280-a2e4-3822a2ea17bb 1 Other Other +914e4a4e-02db-4246-b7a0-1039373af6ec 1 Other Other +914e93cc-f3f1-44c8-bd1e-6c74dbf8e1c5 1 Other Other +914e94f4-53af-4f42-9f29-bebc66addd76 1 Other Other +914eb54f-4729-4d31-865a-87a6a4f030ef 1 Other Other +914ece0d-821d-4c5e-8064-7c4bda482d11 1 Other Other +914ed1ff-bc67-4a7e-a0ac-5aaf1d58433f 1 Other Other +914f0b09-c8e8-48c8-b463-6193d5c39638 1 \N Other +914f1a00-583b-485a-8764-bb8881ebc501 1 Other Other +914f35cc-a82f-4d17-826c-c2fb52683c3c 1 Other Other +914fd4a1-3372-4f05-8266-04c1ce70fa72 1 Other Other +914feb37-1bf4-4e47-b229-21860c7501f9 1 Other Other +91506397-cbd5-4477-a0a4-66eff18e62ff 1 Other Other +915064c1-04ce-4623-b1e5-54782f3ff098 1 Other Other +91508378-b139-4ab0-98cc-9a9b54c4f0f4 1 Other Other +9150c42c-26b7-452f-891d-fec469cacdd1 1 Other Other +9150cb4a-ec20-44ab-aada-0d4085a1c3cf 1 Other Other +9150ceba-f034-459e-a51b-fc4ba509290e 1 Other Other +9151005d-b292-43d4-b141-f59b4734f906 1 Other Other +915124a3-37cd-4b13-bafc-cdc66b522a8b 1 Other Other +9151728e-bcdf-4548-886f-93c6c67a1e79 1 Other Other +9151cdc0-5573-484d-80ca-4b6841f3b580 1 Other Other +9151f6fd-b433-49df-a705-9c18fc193258 1 Other Other +91523823-c444-4878-9f85-d9d7838ee22c 1 Other Other +91523e16-82ee-4276-81c2-1c23a2a2b06c 1 Other Other +91524036-a7fe-4ddd-9002-0ce0a1caade4 1 Other Other +9152be4a-8bed-48af-b44d-14f19adbb7cc 1 \N Other +9152f3e8-7d18-4f29-a332-5f168caa5f48 1 Other Other +91530ca3-324f-46a3-a79f-fd4607f38444 1 \N Other +91539b7b-af31-4be2-a26a-fa2a3f6c92e7 1 \N Other +9153d279-b473-4a5f-bd81-47c74bdf9224 1 Other Other +91542e7e-b8f3-4d4a-ade6-316e3bd2fd17 1 Other Other +91549bd2-d6a9-4031-bc7a-2de5248c88af 1 Other Other +91549d63-539a-4c3c-85e1-4826d4928a94 1 Other Other +915523af-8369-4ea5-8fd0-3ffece86d030 1 Other Other +91554dbb-2ec7-4746-9e66-856128dc3bda 1 Other Other +91558d82-17b5-4ca7-97ae-115ce6859d46 1 Other Other +91559c23-3e1d-439d-b6ab-a23b6acf281f 1 Other Other +9155cdde-9678-4edb-ae36-2f790d7ceaae 1 Other Other +9155e76b-a794-4045-a28d-681751dac659 1 Other Other +9155fa8a-09f7-4082-99f9-8ac1f6cc5d12 1 Other Other +91562a4c-3ca2-4539-a911-9de3e9419442 1 Other Other +91564d53-bb96-45da-a058-573e406f24e6 1 Other Other +91566914-7612-4124-b9ef-2d4a40895ea3 1 Other Other +9156795c-8ebb-456d-ba54-d9fe843a7d16 1 Other Other +9156852b-f568-4f45-bd07-bc8c705ae006 1 Other Other +9156941c-4a5b-49bc-9c4d-11eec4811c5b 1 Other Other +9156fd2b-d749-4176-af71-6422eff03907 1 Other Other +915731e2-725a-4341-8355-8932ea8e791d 1 Other Other +91579b6b-b751-40c2-b0f6-853ea7205c3a 1 Other Other +91579dea-e93d-4b16-a75c-f4f0022a1a23 1 Other Other +9157ac51-6ec3-4141-9486-f05abebbadc2 1 Other Other +9157de91-1956-4b26-b09c-369af6fe41d0 1 \N Other +9157eb34-896f-4653-b636-0fe64f01c264 1 \N Other +915840e7-45fc-4b0f-b31e-1e0fe1d9f2c5 1 Other Other +91585f81-b9ab-4b9f-8d3b-4790e2676387 1 Other Other +91587a8a-f0ba-4f39-b03e-00ebf801a6e0 1 Other Other +9158adc7-662f-4cd9-9472-316d19de0dd2 1 Other Other +91597446-6e17-4432-b89d-8b21b9e9b920 1 Other Other +9159b523-7aa3-46a1-8ac3-cc81cfa1e204 1 Other Other +915a07d3-0933-4d75-a439-74b4d7776c03 1 Other Other +915a36f7-096d-42ee-a744-cd6b9c87e5fa 1 Other Other +915ad721-f560-4496-9dfc-5829392c4205 1 Other Other +915b140d-9895-4ca8-ad0e-702bfa4d7922 1 Other Other +915b405c-3a35-45c9-8630-b9686ce7e496 1 Other Other +915b5418-9d54-49a6-b597-6dbc71f9fa9c 1 Other Other +915b80d4-1ec4-4447-a81d-a2fba193d7ba 1 Other Other +915b886d-babf-4d57-a1c1-a4db60b2d5c3 1 Other Other +915b9441-367c-40a3-b70f-a8cd70d61552 1 Other Other +915bd547-aa34-4608-a571-7d97b75ab7ef 1 Other Other +915be6c4-c414-40ae-9fd4-43b091f51c23 1 Other Other +915bea35-1955-461d-8c3c-84b73daeedec 1 Other Other +915bf4e2-72d8-44c5-8761-ace46fd5a35a 1 Other Other +915bfc0a-bf57-4f75-a5ef-6bdbb082b059 1 Other Other +915c4c52-3620-4ec0-90e6-49c93d76c45b 1 Other Other +915c5a3d-312a-4a46-9ee4-41bc84a724f2 1 Other Other +915c7445-cebc-477b-940d-450f4c3aa389 1 Other Other +915ca7e9-b4cc-4893-8676-7824b9fc8957 1 Other Other +915ca8c0-c4f9-44ac-a77f-6cf862b0ee85 1 Other Other +915cf3ba-8f7a-4065-93fd-80cc2caad2a5 1 Other Other +915cf4e0-92c5-4b36-a65c-db6163a002d1 1 Other Other +915d060a-c422-4481-8201-237e734c8979 1 Other Other +915d3d08-1c81-457c-a7cf-f556d5c9e1b7 1 Other Other +915d4ada-98aa-4e0f-af5a-539767efd45b 1 Other Other +915dfdfb-1744-47cb-9d98-54b62aae7e39 1 Other Other +915e15fa-e121-4f75-8c55-29d22049d3c6 1 Other Other +915e2f93-efb6-4a25-8e2f-c1b5c4d42e27 1 Other Other +915e9f49-7091-4f2f-9fc1-b282334c63cb 1 Other Other +915f77e3-b0eb-4147-9d3d-2fc934936728 1 Other Other +915f8159-60b6-40ff-bc51-8543c76cdef8 1 Other Other +915f87ab-4333-4293-bde7-4ba17a35ba4e 1 Other Other +915ff280-9373-46a0-a88c-600ce41f061e 1 Other Other +91602062-18aa-4d3b-9ab0-89f335d2af9a 1 Other Other +91602a36-4217-4e41-bbf7-0b16c7b4511e 1 Other Other +91602e9a-59f4-42da-aecc-b00290685160 1 Other Other +9160568f-393e-4285-ac1d-0d3f08cee854 1 Other Other +91605943-5bfd-4262-a04c-326372614749 1 Other Other +916065dc-89de-439f-a13a-3c32daa4f4ec 1 Other Other +91606ee3-a0e1-45af-bcfe-621a2eed0237 1 Other Other +91609d7e-c224-497f-b9cd-de511f2fc0c8 1 Other Other +9160a00c-2c16-449e-bef9-62b627498b8f 1 Other Other +9160ab6c-e0ce-48b5-b504-4a45b5610ab1 1 Other Other +9160aede-3062-4c10-ac02-c18c60f81d57 1 James Other +9160b02b-0243-4298-975f-c4d815db536b 1 Other Other +9160c158-4477-4a17-83e7-dbbc2294aa7b 1 James Other +9160fefc-2841-4ca5-ad35-c112ccf6e774 1 Other Other +91610265-9678-4061-86be-76694f3d835b 1 Other Other +916120fc-ac75-49af-8372-c0c1a7021f00 1 Other Other +916124a9-cb85-4957-b825-1d307af21e1b 1 Other Other +91612d91-102f-49f2-a175-b6bbd2f798e9 1 Other Other +91619403-e351-455d-b07f-68daeaa7f150 1 Other Other +916199d1-4c36-49ae-a778-b56d626f501c 1 Other Other +9161c79d-c955-4539-aab2-af70f392f952 1 Other Other +916201e1-83fe-4486-93ba-d41daeeb6e4b 1 Other Other +9162030b-cf45-4f84-b3e4-5e586db0bf45 1 Other Other +91620c17-c950-4389-89e0-a35681052240 1 Other Other +9162431a-bcd1-4607-954a-e4266a276998 1 Other Other +916246da-dfa9-42ce-a500-fbb6564aa198 1 Other Other +91627ff9-76f8-4b7d-8ed2-5bcc3b8a3026 1 Other Other +9162be06-b917-4a61-845d-a1612ba35291 1 Other Other +916302f4-0d8f-47d9-9a45-23284bbd691c 1 Other Other +9163aec0-4acd-453f-9d91-b97bfdd9d7b6 1 Other Other +9163ce63-c59a-43be-8815-886dcc061d2d 1 Other Other +91640e8a-873a-4a52-a966-73a9134251dc 1 Other Other +91641a58-82f1-489c-895b-afb917c663d7 1 Other Other +91645acc-37bb-48d8-85ee-790137fb5539 1 Other Other +9164a799-5323-49e2-bbab-614e2e1f5cb9 1 Other Other +916500c4-f66c-4cd9-96f5-f931c856f2af 1 Other Other +9165033a-fbd6-46ea-ad9b-4a0d00640ff2 1 Other Other +91653966-374b-4163-8e95-dce33000873c 1 Other Other +9165426c-d9aa-4e5e-af2b-443b6dda8c77 1 Other Other +9165c163-edc1-4f0c-99e8-5099386bc6c7 1 Other Other +91665987-b6f4-4cf2-9043-6ba76bfd8c73 1 Other Other +916662bc-c053-4814-975b-8bb5720a29d3 1 Other Other +91669461-f678-4822-8897-f17bb3b0a919 1 Other Other +91669ad3-77d5-4804-aef8-6882f7a722da 1 Other Other +9166ca21-152a-446d-b820-74f2023515af 1 Other Other +9167247a-7cb0-4ee8-8542-b5b1e23ae93b 1 Other Other +91672c36-c1f0-40aa-9a91-a7d2d5cb22c8 1 Other Other +91673304-8b52-4a66-9025-43d5f25430be 1 Other Other +91681e25-5162-4f47-934d-1eb4583e178d 1 Other Other +91682e93-e8af-4f16-9c3f-aca0d8f7f04d 1 Other Other +91683346-8ea9-42c3-9d47-8a050a31a06f 1 Other Other +91687575-f7f7-45fa-aa79-1753b5905795 1 Other Other +9168c60f-7af8-4d34-a0ac-3c7b977d3e6d 1 Other Other +916909f5-577d-4f55-b4c7-bb1d24edd7c2 1 Other Other +916965ad-2622-46a7-90d2-ec04aac79eed 1 Other Other +9169678f-19af-445b-ab0e-b8b21e07d042 1 Other Other +91698840-17f3-46ad-9dfb-caa95be0042c 1 Other Other +91698cca-acda-4355-afa0-93ec2e06c7f1 1 \N Other +91699cc5-7ae4-4d44-99fd-d43643754688 1 Other Other +9169a610-533d-4972-87b0-bc7004941bb3 1 Other Other +9169b3d1-d3f2-4364-afc1-a64c9e3677b3 1 Other Other +9169cb94-2b61-4dec-8927-d5ad11757a8b 1 Other Other +9169ce57-1f81-4d3e-ac43-6d5373214e23 1 Other Other +916a0a4f-570e-485d-a01e-d35188f641b6 1 Other Other +916a4859-8651-4679-a3f1-be7c9691bba4 1 Other Other +916a5fcf-75c3-4d69-8ac8-a37ee755cba4 1 Other Other +916aac59-cb10-44e2-a536-ae61319c7f0b 1 Other Other +916aacf0-7b6c-4d41-8ebf-3e1ef2cb081d 1 Other Other +916af774-920a-4118-a392-d4e3b07c1915 1 Other Other +916b7f88-f23c-414b-92fd-77a6a6697773 1 Other Other +916bfa58-5c30-48ae-81d1-35b1a7b7755a 1 Other Other +916cec24-fa72-4827-a4be-7a8bae309987 1 Other Other +916cfad9-5d9d-49c6-a266-9538f540e4fc 1 Other Other +916cfc89-8723-4944-acc4-bb37a0235a4a 1 Other Other +916d08b9-cdfa-45cb-a665-04c2e6f36303 1 Other Other +916d6478-94b7-4965-93ec-0f9894bce0bf 1 Other Other +916dafec-3e7b-40a1-9d3e-a37a7143c4b3 1 Other Other +916dd5ec-5375-4a79-b4b2-f75fa15d4035 1 Other Other +916e086b-c059-41b3-94f8-054750cba17f 1 Other Other +916e1504-fcaf-4244-9b34-087ed0b8e0aa 1 Other Other +916e3243-df65-4d09-85bf-345c4dddfe42 1 Other Other +916e365f-6640-455b-b1cb-fad8d0395998 1 Other Other +916e463e-70f6-412b-b0ad-bbad76c4ad96 1 Other Other +916e53aa-8f47-4b8c-9398-3ed6ec7252f4 1 Other Other +916e5570-ec6e-484d-99e7-8809496f34fd 1 Other Other +916e70fe-8059-4efe-92ca-1a3be485f7d7 1 Other Other +916e723d-3834-4549-a193-0877055ba444 1 Other Other +916e7d48-bab8-4656-84f7-22b981a974c6 1 Other Other +916eb113-4893-448d-95e4-0c6e27bd6d5e 1 Other Other +916ed108-bb4d-45ed-a88e-0b53095ef2bc 1 Other Other +916ed4ee-ff2e-4a1f-a908-feb0e402ef49 1 Other Other +916f0fe5-9352-4d02-9605-287f667a34c2 1 Other Other +916f22ad-7572-462e-b010-57348142e05f 1 Other Other +916f5cbd-16a5-4b16-bd2b-0d9c8bbf997b 1 Other Other +916f9786-98c5-46cc-b180-20a056ed13cf 1 Other Other +916fe1a4-7b4f-492f-a4bb-b023b96f305c 1 Other Other +9170282d-7e8e-42fb-b4a3-849f4757a263 1 Other Other +91703180-7f66-4d97-ab60-3c0f2f7bdb0f 1 Other Other +917033dc-efc6-4984-8df2-e41bed84d6e1 1 Other Other +9170b334-7917-42f7-9be2-006aca421fa1 1 Other Other +9170b574-589f-4452-b1a0-c0ba2ba14891 1 Other Other +9170bd36-46b1-41a5-b58f-efe81a13899d 1 Other Other +9170f652-8a0c-49ee-82c8-5aac32ffc2bb 1 Other Other +91710e86-7d5f-43d5-8d11-3c3ed2d44e0c 1 Other Other +91712538-b530-4ebf-9c68-bf57342496b6 1 Other Other +917195a2-85e4-4c8e-9d3d-350ef62f9f36 1 Other Other +9171a4d8-ae51-4705-8f10-37311c83fad0 1 Other Other +9171c7f7-56e5-4648-90db-f16965c7cfaa 1 Other Other +9171f154-2256-495a-9a22-bcfc3b279eb1 1 Other Other +917231e6-63c0-4328-97c6-5925451000cd 1 Other Other +917232e2-4239-4cc6-860c-f48f1b1cda28 1 Other Other +9172563d-656f-4e8d-9678-3d60bee59c92 1 Other Other +91726744-3ca9-4e45-8e15-0560e2bb6560 1 Other Other +91726c7a-0e47-4039-ae1c-b9e2be547329 1 Other Other +917291af-0933-45b4-9296-cfeb9a177950 1 Other Other +9172cbd5-1d60-488f-99a5-9d0853df82bf 1 Other Other +9172cc63-86ed-4914-8e4d-82093f730676 1 Other Other +91738ee5-8d3d-429d-8b38-01a51f58d1c3 1 Other Other +9173a6c2-abf2-41fa-849b-f7084a074c0d 1 Other Other +91742303-cc41-4242-9b5c-80e479ad2ea2 1 Other Other +91745856-6c3a-4a6a-9b42-71274b1baf63 1 Other Other +9174a2d8-bb13-44c4-80cf-744e8dfeaab2 1 Other Other +9174b498-99e2-4d70-8cbd-ac365421c51e 1 Other Other +9174ef98-a9e2-433b-9ce5-a0d8aaa031d3 1 Other Other +9175449f-e9af-4571-88a3-e90bf3866fcb 1 Other Other +91757af9-4842-48d5-8ccf-b8eee7ad9b6f 1 Other Other +917595c6-dc61-4244-a203-d4a19021f984 1 Other Other +9175bf5e-5525-401f-80f1-c68cf914e5a3 1 Other Other +9175cd01-fbe7-4798-ac9c-d86a97504ca2 1 Other Other +9175dd0d-f998-4655-a851-b377f4f225c8 1 Other Other +91762f0f-11f8-4663-82c2-c38b9115278d 1 Other Other +91763f32-7322-46e4-a093-f35a76b27d0a 1 Other Other +91764199-af81-418d-b5ab-474ca796c293 1 Other Other +91764ff9-3203-4b4f-ada3-4ab46a1ec201 1 Other Other +91767de8-832b-4e74-ae8f-4660c0a0f384 1 Other Other +91768834-f9d1-4181-b82c-97957e3b0938 1 \N Other +91768afd-a6cc-4eac-9daa-69f226701efe 1 Other Other +9176a876-ae2c-46d2-9bc4-13c74e2467dd 1 Other Other +9176ab41-32d6-4512-9c53-49f73b429a05 1 Other Other +9176cd34-7b38-4cd7-80cc-62af9754456c 1 Other Other +9176d748-681c-4624-b311-8865ffd74967 1 Other Other +9176e07c-0f30-4dd9-aba7-86509b40f24c 1 Other Other +91770f68-393a-47ac-8c4f-05de882bf581 1 Other Other +917771dc-9c87-11e7-8a51-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +9177749f-3ceb-4f57-a27b-01734811b8e9 1 Other Other +91777f0f-e3fc-4063-8c67-7f851a580cfc 1 Other Other +9177a66f-e824-4d71-af2d-42bce4304fb4 1 Other Other +9178004e-bf10-493a-993d-33a76dd60235 1 Other Other +917811c6-1d98-4a61-9e66-12fc900e8af5 1 Other Other +9178c3f8-5692-404b-9fba-4e869226ad2f 1 Other Other +9178c491-fe33-4288-88c9-1c524637899b 1 Other Other +9178d2e0-23b6-4dbd-9c5d-6f7907780a04 1 \N Other +9178f770-fd03-4dd2-af56-fc7f6f6b3cb7 1 Other Other +9179289a-9cce-4973-a236-d1403b3cdae9 1 Other Other +91796804-3337-4a2e-8475-afb020c602f4 1 Other Other +91799a2d-967d-4e86-8822-5da5cf34de1c 1 Other Other +9179a912-96ff-4a93-8026-0e3a70ae1894 1 Other Other +9179ca52-e949-4de6-aab7-6f14bc46bd46 1 Other Other +9179e494-acd4-4d01-a20d-826a9836e316 1 Other Other +917a3ccf-cc37-4167-8f9f-80ec02d6da57 1 Other Other +917a56a5-dd97-4447-ab7d-a9c8e2875234 1 Other Other +917aa148-20b9-49b4-a7e4-58c9e9647c13 1 Other Other +917ad0a0-e2e5-41ea-ba6c-1f87f1caf484 1 Other Other +917b39bf-e9fb-4fea-8074-a4e0d48c1468 1 Other Other +917b493c-25f5-4406-8734-97e2fd03123f 1 Other Other +917bbb53-d68a-434e-aa6b-93f6df98bdf5 1 Other Other +917bd22c-6a27-4c8d-a2fb-b1ed32cd7e1c 1 Other Other +917c12c3-b2e1-48eb-85dd-ca524612aeef 1 Other Other +917c2044-0933-4964-bfcc-120d61922cf9 1 Other Other +917cb849-5bdf-4a4f-aec9-596413075060 1 Other Other +917cd9e0-fb55-4836-8107-bb4b958c7faa 1 Other Other +917cde30-ab9a-4f66-94e9-d87d51fba347 1 Other Other +917cf48c-b6ce-4b1d-93b1-bac6aaf97059 1 Other Other +917cf827-6cfc-42a0-90f6-e39bb57461f3 1 Other Other +917d00fc-2964-43ab-9b79-ef3ac54d2ddc 1 Other Other +917d165b-0035-4a4f-97d4-d38b16014094 1 Other Other +917d35f9-a111-4e5a-86ee-a88fc9d19530 1 Other Other +917d5bca-48a5-46c2-8621-980ddae1beab 1 Other Other +917dbc3c-eaae-417c-bc9e-2abec5e1fdef 1 Other Other +917dc624-3805-485b-82ee-47f8d4e665f3 1 James Other +917dcfbe-f09b-456f-b76e-4bcd98e95cf8 1 Other Other +917dfa3a-026b-4220-a22a-9a1917ebcf6c 1 Other Other +917e004a-8860-4738-828d-a7bc1b4cde6b 1 Other Other +917e370e-a00d-48bf-92cb-ea5d7243d3d2 1 Other Other +917eb10d-d9ee-46a5-ac71-dae820e6ea2a 1 Other Other +917eca14-64a3-4c21-9f95-2f3cf43cc1d3 1 Other Other +917ee66b-b58f-43c5-9710-ca6194831ea0 1 Other Other +917f4861-e2d6-49b9-93e9-c67fdede7e4e 1 Other Other +917f4cc2-1f7a-41f8-8362-adac35ad810b 1 James Other +917f64c7-8f88-4ac6-907a-c29e3346e13a 1 Other Other +917f65a1-93cd-4d1b-861a-25851a220f78 1 Other Other +917f902f-bc91-4c83-82a5-01869da8a982 1 Other Other +917f90f9-172d-4df4-a514-44d65306a912 1 James Other +9180033a-d471-4c4b-a682-e7ebfe961203 1 Other Other +91804b8a-7d92-4c27-b709-1f6afb094aaa 1 Other Other +918087c6-6e14-4993-9f31-24b31bb45410 1 Other Other +918112b4-90ab-4265-b1f9-694439839130 1 Other Other +918120bd-b458-4232-928b-59b6866464d6 1 Other Other +9181283f-0e29-4a4e-afc7-9328843de999 1 Other Other +9181917f-6458-4d88-af02-d123757a0e77 1 Other Other +91820894-b540-416c-80b5-ba2d82ed34dc 1 \N Other +918217fa-c260-4f9b-9f92-f718ee8f9686 1 Other Other +9182283b-31d1-4c1b-84a3-677a89c90515 1 Other Other +9182546c-63ef-47ce-bee6-1f04fbb207e1 1 \N Other +9182c7f2-55ae-4d76-8c23-8a1f92edfe66 1 \N Other +91832480-d4ca-4654-b08e-f7b635b32839 1 Other Other +91832703-cf83-4892-833e-be9b4b52b975 1 Other Other +91832c19-32de-4968-aa37-72e504deae0f 1 Other Other +918334a3-ab55-4b3f-818e-7ee09540b6e6 1 Other Other +91833f6b-086b-4830-8d7b-6162be99321c 1 Other Other +91834ce7-e05b-4a0e-b6e9-7286d89bd310 1 Other Other +9183c5ce-d11f-4145-8877-06941f3f2bec 1 Other Other +9183e8a4-5276-4167-9fde-3edc16f321e7 1 Other Other +9183f849-0c38-4ba7-b2c9-b6a0fd1b6ff0 1 Other Other +91841898-c340-449a-b7d3-d1410571974b 1 Other Other +91843cb0-0915-4d3b-9630-e6952aab2293 1 Other Other +91843fd9-e0b4-4932-8ef9-4f1365dee396 1 Other Other +91844b45-7743-42af-90a5-ce6b9c5907b8 1 Other Other +91846124-f480-4e91-b945-7749d7c30b1f 1 Other Other +91848a12-441f-456b-afb1-027a75dc5027 1 \N Other +9184a696-570d-4a39-bc2e-247cdedf33e9 1 Other Other +9184b0e1-c3e2-4a75-9fab-e5b136d445aa 1 Other Other +918539f4-a981-4405-83c6-1ab11fc46eac 1 Other Other +918582dd-93a9-4451-975b-1fb016292604 1 Other Other +91859d29-1776-47fc-9221-dcb296cac0aa 1 Other Other +91866055-ea06-4825-8f19-bbec71bb3b2b 1 Other Other +91875e04-b4e2-4a58-b819-5bc6fed00a11 1 James Other +9187c93c-b488-4436-88ec-76de25d8b69e 1 Other Other +9187cc5e-bdf0-4cba-985f-29e5a177c7ec 1 Other Other +9187f023-675b-4f2b-a94a-c3b05c2ad8cc 1 Other Other +9188427b-6375-4892-9f43-e4422606b243 1 Other Other +91887851-214c-4e0d-9fe0-04ace5f71f7b 1 Other Other +9188f993-8660-4683-9610-e3d14288ea0f 1 Other Other +91895f63-6939-465c-9f22-3307bc750ca6 1 Other Other +9189cec1-070a-40b3-babb-58559d23c8df 1 Other Other +9189ea96-daaa-4362-ba67-1e6a52b50fa3 1 Other Other +918a084e-2c6d-4f24-a0fd-01b8d07d7ff1 1 Other Other +918a0d83-3275-426a-b6df-c4c9806d0e6a 1 Other Other +918a4229-725f-4b2c-81aa-484d0f3b70e9 1 Other Other +918a4bbc-b6b7-4e0c-980f-dc87c2eedafe 1 Other Other +918a67f8-6dd0-4ca9-82bf-51e08e8be0aa 1 Other Other +918a7aaf-ae80-46c6-ad51-620afde462ec 1 Other Other +918a9a19-ad6f-4efb-b58a-63ee6a782eab 1 Other Other +918ac3bc-1b15-4cd3-abdc-cd842346bd2d 1 Other Other +918acfb7-1c7c-4b4d-bc1e-24fff54a7dda 1 Other Other +918af6a4-0947-4dea-8e16-8d3e1e9a58aa 1 Other Other +918b3df2-ec7b-4454-82b5-18444f4b8772 1 Other Other +918c156b-bec0-42d3-bfe1-3968979df0a6 1 Other Other +918c2556-c3d9-454f-8a06-34c82937f1ef 1 Other Other +918c313e-ced7-4490-bd31-7c786aeb0d94 1 Other Other +918c32f9-d2d4-4a14-a9d7-1961b1e82f6f 1 Other Other +918c3681-1f98-4846-80d2-bb9dbfb1a03a 1 Other Other +918c4452-8564-4d46-9a8b-9bd5e1318814 1 Other Other +918c6f8c-556f-4a4b-842a-abe761d01048 1 Other Other +918c71c4-1231-4955-8a2a-39f29277db93 1 Other Other +918c7bf8-bc30-43e2-8a27-85b755d24027 1 James Other +918d1636-9b24-4355-b5cb-8f6c0b85c0b8 1 Other Other +918deb8b-8c33-4e88-8218-9fce1501ff7d 1 Other Other +918df5df-c8b7-4385-a277-2e7cfae38999 1 Other Other +918e089d-defd-4c45-ac85-246df65496a2 1 Other Other +918e3211-7e86-4145-a9a8-2252d6c4d77e 1 Other Other +918e3916-9300-494f-be99-e48675a983ff 1 Other Other +918e43ef-c0f4-4ffd-8325-d3b0c3d60787 1 Other Other +918e4c81-e5b0-4a6d-853d-f5bad5284d9f 1 Other Other +918e6a8c-eca8-4e18-aeaf-4756b3f17911 1 Other Other +918ec10f-0b7a-4a3e-a032-364ac9950bcb 1 Other Other +918ec925-0597-4ed1-85ce-4d4970eb61a4 1 Other Other +918f7fae-0837-4c88-846a-eaafd3c6ca27 1 Other Other +918f9f72-b64b-4dac-9dc8-d37d29946c5c 1 Other Other +918fc72d-84b2-4118-bb6f-69f1f56926ad 1 Other Other +918fe995-5be9-41ae-92cc-f9e09f7df916 1 Other Other +918ff062-bb86-422c-b5b2-6f5b5df7ded1 1 Other Other +918ff0b0-d07c-4d4f-b52e-b111ea8211d8 1 Other Other +91900157-c96a-4451-9202-00a85713c377 1 Other Other +919008ec-7736-4d6c-8336-cf8282c5daf4 1 Other Other +9190095b-1f18-4085-9112-411385a584b1 1 Other Other +91901249-2134-4134-8b56-73d2fb90fee6 1 Other Other +919072b4-715a-41b6-b3b6-063fbcab7879 1 Other Other +9190b428-503b-4eea-bd18-e4656032bc1b 1 Other Other +91910fed-9f86-4854-a654-78c732f88d74 1 Other Other +919192d6-5fa5-48c5-9608-6d7d9601092c 1 Other Other +9191d02f-ba20-44f9-abcc-633dbc01bab6 1 Other Other +9191dfd3-e80e-4317-8bed-39f567f70e16 1 Other Other +9192055d-278c-4d19-91b7-da538f0deccc 1 Other Other +9192727e-47d9-4d76-a4d2-f2a8985af87b 1 \N Other +91927a87-1a0a-4c63-a539-022e8267a688 1 Other Other +91931843-c192-42df-9719-5ec7a3420d57 1 Other Other +9193aa88-a4ee-4fae-8438-c02e09e0125e 1 Other Other +9193bfdf-58ba-410d-9b31-35162bcc4290 1 Other Other +9193fcec-b723-4334-9a59-51a542fd47d5 1 Other Other +91948bd2-340c-41f3-b19e-f5cc15a43210 1 Other Other +91948f94-8f17-436e-8fcb-1d24f69ef21c 1 Other Other +9194afaa-33e3-4c30-9558-67dfaecb3852 1 Other Other +9194b862-4346-4dc4-ac1a-9260b82ca918 1 Other Other +91955aa0-2ba1-4c15-9816-5fa97cf7ac8f 1 Other Other +91956e95-a91e-4a84-9de0-af372089a902 1 Other Other +91958e8d-4abe-4e0a-a214-48645fcfe12e 1 Other Other +91958ee6-e755-4506-b040-18edbcd05e19 1 Other Other +9195a33b-a0db-49b7-b2e4-1f8159199d0a 1 Other Other +9195d9a5-4dd9-4dee-9d12-28197d8e71e2 1 Other Other +9195e9db-6f84-4c66-ab5e-a4d3c73659fb 1 Other Other +91964c61-8264-455a-884b-0b70ca01e713 1 Other Other +9196665a-97be-4a87-b5ef-0fc5c73d8312 1 \N Other +919698b8-0a51-4dc9-9557-45a22278692f 1 \N Other +9196b7a9-6d34-4bc9-90b2-f21957f25e1f 1 Other Other +91971840-92af-48fd-85f8-228cd109f89b 1 James Other +91972326-3861-4de9-afa2-5a64aa36b46b 1 Other Other +9197505a-89b2-4bfb-9d46-78a745d2e1ac 1 \N Other +91976b8a-def2-4322-a4e1-d9b172ac9c00 1 Other Other +91979845-f868-495a-9b93-e2af8c66497a 1 \N Other +919798ca-add0-46f0-af54-148b31b7b0db 1 Other Other +9197b8fd-a0c8-4c0e-8e46-9c720445952a 1 Other Other +9197fa51-0e9e-4364-a283-cd34c7ff2283 1 Other Other +919833a0-d87c-4c7a-8306-07aeec5bebc3 1 Other Other +91984f2d-689c-4763-b7be-6dcbc8c20ffe 1 Other Other +9198ed0c-8782-4655-94df-f477c8f4109c 1 Other Other +91994999-d776-4ac9-8233-2f3ce4076e7a 1 Other Other +919964a3-f3fe-446d-8ec7-70b0d7a10138 1 Other Other +919976dc-90dd-4979-b810-74be1984c2e1 1 Other Other +9199ebcc-5d0e-4cf8-987e-58e0f7cbea71 1 Other Other +9199f26e-b807-4d62-897f-ec67ec6f858e 1 Other Other +919a3d84-9546-4ce6-8779-a81068d44d8d 1 Other Other +919a7458-213b-4c50-9d88-ae84f77c6418 1 Other Other +919a76ed-a245-4f9f-869f-8369003bf190 1 Other Other +919afe85-29d4-44e8-8f5e-af1eaadfa038 1 Other Other +919b3370-e3fd-49b6-9e09-a1a8edeae4d8 1 Other Other +919b4b8d-f103-4896-9faf-d42cafc0fb3b 1 Other Other +919b8c37-f6d6-4092-a6bb-f4d3fd33a188 1 \N Other +919bb2b1-1ad5-4e6d-987b-ec71c4e2189e 1 Other Other +919beeb5-abc2-44f7-a6f4-b74882cac779 1 Other Other +919c31de-e0c9-4df5-9b80-35a4cb91b4f3 1 Other Other +919c5bf5-4c14-4705-9416-cec5fe7b8b4b 1 \N Other +919c5eb2-b683-4736-bfa0-1ae39486de33 1 Other Other +919c64be-ddf3-4b51-8b33-1baad9956b59 1 Other Other +919c6600-8e82-41ba-be01-82a07e520bd1 1 Other Other +919c9fba-415b-4878-8448-992c2272f4c9 1 Other Other +919d944f-5dfb-4b66-822f-560ba4beaa67 1 Other Other +919da406-ba19-4e46-a3a4-7c24a1c7cc28 1 Other Other +919de17c-768c-4749-9336-e7fd6f2253a1 1 Other Other +919e8b44-e905-46d6-8e83-ba9505b2f6db 1 Other Other +919e979d-6aaa-4fb8-80e4-0174dad77e56 1 \N Other +919ef71d-00bf-4ace-8606-1239d8570d3a 1 Other Other +919f040f-baaa-4865-9c43-ca72eead9c83 1 Other Other +919f13be-63ee-4d8e-a446-da01d3f60147 1 Other Other +919f823a-b7d4-471b-80a6-91c94ad1addc 1 Other Other +919fd938-9241-4bf8-af33-5e7d545079aa 1 Other Other +919fe3cf-77fe-4a4a-a7f6-125555ddee6d 1 Other Other +91a053ac-6941-49c3-9274-939a041e2947 1 Other Other +91a05a77-762b-4e5f-8c99-20aeb704b9e4 1 Other Other +91a0b355-76fb-44ac-9c4f-1deca5a218b2 1 Other Other +91a0c6c9-2612-486e-af0f-86232625abca 1 Other Other +91a0ce9c-bea0-4fa4-992b-648475ea3c5e 1 Other Other +91a1163e-da84-44a5-bf61-9ba8439b713a 1 Other Other +91a13423-4646-4240-8784-13e32e7cd119 1 Other Other +91a18084-8159-4a71-acd0-161956390172 1 James Other +91a1da0a-b773-44f5-8363-7df29e70c3e6 1 Other Other +91a201d7-136f-4af3-aecb-e918ab89ee00 1 James Other +91a21c5a-4d25-4880-b792-70d7b397865f 1 Other Other +91a25503-40b5-43b9-8e73-f35a459e9b7e 1 Other Other +91a255b6-6c51-47a5-ab96-f0ca6d9bac6c 1 Other Other +91a26910-c732-4fb0-a0a8-d67a14bf9a8e 1 Other Other +91a2e3b9-0177-410b-95af-b1a17faba0c0 1 Other Other +91a350a7-2bd0-4f9f-a055-1aa8a1cb9099 1 Other Other +91a359c0-6dde-4b88-9815-8d20c780ddb4 1 Other Other +91a35e8f-f63b-4a0d-833b-45f08b46b0d7 1 Other Other +91a3bea7-adec-4ca1-b31b-a49ec28b9805 1 Other Other +91a433b8-333f-4efe-86fa-d43f396fcf02 1 Other Other +91a433dc-681a-438c-9279-5988323f3556 1 \N Other +91a44fab-d83c-44a6-9a25-6460d1ec8f4a 1 Other Other +91a454d2-a389-44c0-803c-8ff9b99d7257 1 Other Other +91a46938-aecc-4a87-b241-b8ee5393bf9e 1 Other Other +91a497e0-6427-4c8f-8eb7-cadb544c4636 1 Other Other +91a4bde4-7968-49e1-81ff-234ad98bdf8d 1 Other Other +91a4cf1e-2b75-43ff-a9f7-148281588953 1 Other Other +91a4f988-5009-4f27-a31e-f91aac305eb6 1 Other Other +91a5124e-80f0-45f5-b4d7-a8c23faff7bb 1 Other Other +91a54f18-a133-474b-a6ad-edc7001a1a6e 1 Other Other +91a5e2d9-5be2-47a3-9003-c47ea449fa63 1 Other Other +91a5fe4b-49bc-4afc-8f4d-503e2f101361 1 Other Other +91a601a3-30a1-4c53-ad46-f4313a51058d 1 Other Other +91a65392-a69f-4b12-a72b-bc586f6527ad 1 Other Other +91a6996a-961f-4ee2-961d-68f946b281a8 1 \N Other +91a7135a-ad53-4a52-b7be-467dbbba5f05 1 Other Other +91a716c8-6e19-415a-90dd-316edb77e7b6 1 Other Other +91a73301-f649-46be-b17c-4288b39ff396 1 Other Other +91a73d36-4cc0-440f-9fae-a12667facc26 1 Other Other +91a78fa9-d7e5-49d3-b943-3d385c8ae333 1 Other Other +91a7b1ee-486f-4234-93fa-e7e1066cf3cf 1 Other Other +91a82231-8c96-402d-84f1-a22b2309d80f 1 Other Other +91a88502-a1c0-40fb-94f8-f6ba42af5576 1 Other Other +91a88d78-59b8-4292-978b-e4682975477b 1 Other Other +91a8b5a6-fff8-4281-aed2-cb91578a467d 1 Other Other +91a8cd81-999c-462d-bbdf-839c254ae942 1 Other Other +91a8e161-f802-49e7-b848-6fdb57e78523 1 Other Other +91a91b78-798a-40bf-ac2c-0ee45a84a3f6 1 \N Other +91a94eeb-c234-402f-b07c-80c3e27d19c8 1 Other Other +91a985f1-f964-4c87-97c2-7cc12750b862 1 Other Other +91a9a5af-f819-451f-9cbb-1bb204a939c4 1 Other Other +91a9b917-981a-46f3-8bec-bcd8e2eef2a3 1 Other Other +91a9c166-f082-4ada-9f35-b2535f0f5089 1 Other Other +91a9c6a4-e158-4303-befe-db271775b469 1 Other Other +91a9caa2-fecc-4964-b6d5-1ab539f0d9d6 1 \N Other +91a9d85a-a52d-4e1b-8b9c-d4015aaf7024 1 Other Other +91a9dfe5-7823-4f65-b528-56698a8e1377 1 Other Other +91a9f739-4b49-4be8-8161-51483bfb28db 1 Other Other +91aa3a4d-bc4c-4988-9c5f-5039b5051d63 1 Other Other +91aa50f0-d923-4f8a-88fd-6eba18253d69 1 Other Other +91aa5d86-6262-4d73-a1d9-6cc3eb3c23c6 1 Other Other +91aa7aa3-3a68-478f-b25d-be69cf2956bf 1 Other Other +91aa86c4-4978-4229-8282-4a4ee8fef6b1 1 Other Other +91aa8e65-6a93-4958-bd0b-149311dab115 1 Other Other +91aaed97-6648-45ed-8aec-28e23e59bab1 1 Other Other +91aaee46-d194-4c1f-b8b3-4c67e108f365 1 Other Other +91ab06a3-bc46-40ed-9525-cc8c5da9ee90 1 Other Other +91ab0e3b-476b-41e4-bfe2-15dbac8dbbe9 1 Other Other +91ab4872-0a9c-4c6d-8b85-c8015770e172 1 Other Other +91ab590d-3303-4eb6-99a1-b1aae20124c8 1 Other Other +91ab5ee5-cda0-41fe-bdab-339176db38ca 1 Other Other +91ab9992-9dbf-4d87-91e2-513666f8ef00 1 Other Other +91abaf63-3493-4e41-b95b-139686eb16cc 1 Other Other +91abe250-692e-45a8-aad1-10e30d1d0378 1 Other Other +91abfccd-c40c-4f77-92ee-3a02e44fd26f 1 Other Other +91ac76b2-d743-4dc1-b81b-20eb65f695af 1 Other Other +91ac7714-3f0e-4d6a-a35a-c3cfd25881a4 1 Other Other +91ac9b3b-a653-461a-a7fe-2eeb6a8d58c2 1 Other Other +91acaba8-9300-4c90-b30a-7972d21a7114 1 Other Other +91acd832-21b1-4ab7-9dc8-06bab96a21b3 1 Other Other +91ad32d2-3cac-4e95-a3f6-56c3dcfca01a 1 Other Other +91ad855d-e00f-45f1-bf4c-6f217e5caa7e 1 Other Other +91ae17f8-0b58-4a03-a204-1ee5afce8e98 1 Other Other +91ae493a-cc99-4135-b0db-08c212d0e6bc 1 Other Other +91ae5b1c-430c-4922-a0f4-0a64534b469d 1 Other Other +91ae645a-8b6b-4892-90b2-8b7432b2ba27 1 Other Other +91aea2ed-ee7c-4f88-80a5-b68fc84fa277 1 Other Other +91aea87f-ae2c-49d2-b4e3-99278c97beca 1 Other Other +91aeb957-c44e-4ebb-a345-f4f7cf21b326 1 Other Other +91aeea72-91fd-4a18-ac2d-329b40897db9 1 Other Other +91af1c7c-3227-427b-a46e-13090b6f3499 1 Other Other +91af3989-188b-4c95-8eb3-f29260f3cc94 1 Other Other +91af431e-33ab-432a-a82c-b99bd726b81b 1 Other Other +91aff2ac-5079-4376-a543-0452a193143b 1 Other Other +91b0217d-5daa-4e3d-8a0f-86651e25b17a 1 Other Other +91b06edc-961e-4c7e-872d-565a171544ae 1 Other Other +91b07fd6-6688-4feb-be86-3753137ff044 1 Other Other +91b08a90-1ac7-44c9-9ea5-5146922891e4 1 Other Other +91b19d41-7259-4d2d-8aa8-2c21306a2243 1 Other Other +91b1c828-74c6-4319-bbc2-210116b480f2 1 Other Other +91b1da2f-ab9c-469d-b701-3344a33db806 1 Other Other +91b25867-83ce-48f6-8c1b-2f85f0eacb7f 1 Other Other +91b25e9f-144e-43bc-af1a-8482d478b932 1 Other Other +91b264f2-d86e-48c0-b9f9-8b8170fabfff 1 Other Other +91b29bc1-4345-4737-b685-532db2d19cc7 1 Other Other +91b2a3d4-1b16-4581-9d03-7fc9a4d88d70 1 Other Other +91b3194d-cd79-43bf-aba7-b26449ed31ba 1 Other Other +91b3502d-4ed8-4981-8b7a-103b0eaadc25 1 Other Other +91b3abe0-9023-4eb1-9feb-91ec2f6e7b29 1 Other Other +91b40589-9e0a-40e1-8cac-8e599443bdcd 1 Other Other +91b41af8-d9b1-426d-91fe-4cd0937f251b 1 Other Other +91b4682a-512c-4b44-bcd0-e056e948c4f8 1 Other Other +91b4955c-c9d9-45d4-9eb2-381112a9c343 1 Other Other +91b4ab7b-211f-4285-9c32-c303eec54384 1 Other Other +91b4afbe-9f3e-41c2-84d1-feb77fe3c97a 1 Other Other +91b4d969-16fb-4ead-9b0f-f56997e59681 1 Other Other +91b51794-86d8-4fde-ad4d-6c289c18dbce 1 \N Other +91b51b6f-93fc-4a85-b586-de7cae075db0 1 Other Other +91b529f9-8dc2-4e56-9bb1-c63dcc9fec42 1 Other Other +91b60d73-570a-40ca-833f-cf4d1b37ba84 1 Other Other +91b633d8-ff2b-4c8a-8ee3-9f994aa3c915 1 Other Other +91b63e6f-4f9e-4b01-b7f9-6342df135e33 1 Other Other +91b65ed2-d591-4bc8-a645-9f63acd54721 1 Other Other +91b681d6-1a2b-45dd-bc43-17636b1c956b 1 Other Other +91b6b007-f340-4716-afac-7830de842469 1 Other Other +91b6ecfc-3c91-4449-bc2b-f56dcf2347bb 1 Other Other +91b75f23-7286-4d4a-bcdf-19f723f499fc 1 Other Other +91b770cc-8a5a-4359-9990-d82c50f8a5ac 1 Other Other +91b7f018-6337-469f-86f3-7e7b504cf886 1 \N Other +91b7f28c-8f13-4990-9e64-b5834d34007a 1 Other Other +91b80014-c247-4a7f-a930-47e4e658eac2 1 Other Other +91b84101-3a6b-4fb5-b295-657ddf8a7b36 1 Other Other +91b871ad-86e0-4a03-905f-43271447677e 1 Other Other +91b87fb2-b127-4e4e-b505-c80313974afe 1 Other Other +91b88234-dff2-40ab-ba36-a98607d176bd 1 Other Other +91b91ab1-8c17-4b66-b14c-d36942d2f473 1 Other Other +91b97373-6b9d-475c-b41e-b04ff7058608 1 Other Other +91b9f433-1da7-4741-8795-7307a3164107 1 Other Other +91ba1009-18de-4d2b-acc0-3c5c22f90325 1 Other Other +91ba1ba5-7d86-4291-a4c7-6b5be1e956ff 1 Other Other +91ba1d53-0f56-4d40-a1c1-85306366a2f8 1 Other Other +91ba9073-04d9-4102-acd5-d54fa6118541 1 Other Other +91bafdf1-6df8-4618-977f-d7f7b7c91979 1 Other Other +91bb29a3-505c-43ff-873e-d1acfdf7ad56 1 Other Other +91bb2c19-1258-4d1b-b259-2cd629c7c40f 1 Other Other +91bb46a3-5e87-432f-9c59-b42af12babe5 1 Other Other +91bb6dc7-7540-47e3-a4a9-c83f65085312 1 Other Other +91bb8199-5e6f-47a1-9c93-f4fc4b20ed93 1 Other Other +91bb82d5-1505-41a5-b210-747b303395f1 1 Other Other +91bb9ff5-6abd-4e77-947e-a620ce8f2ffe 1 Other Other +91bbeeda-e2dd-422f-b4b8-bb56136bea1f 1 Other Other +91bc4168-37c9-4616-bf40-e780f247e95c 1 Other Other +91bc5495-5680-442a-aab1-1d0529077b57 1 Other Other +91bc6ca9-11db-4e2d-9532-2b4105fff0fd 1 Other Other +91bcb34f-aedb-410e-98b6-70dcdd9d9789 1 Other Other +91bccfed-c26d-4606-87af-d3c5f7f4df98 1 Other Other +91bcf4be-5292-43cb-a9f5-61e21b034410 1 Other Other +91bd05f6-5b1e-4cb7-84c7-9e6035daa097 1 Other Other +91bd6603-8a05-4b2f-9ee5-a3a445c5a376 1 Other Other +91bd6968-c827-42c3-8cc6-7a58e82efbcc 1 Other Other +91bd7527-de1e-49f8-8e8c-2aac796d36f4 1 Other Other +91bdd27c-7039-401e-bd77-664518bd6998 1 Other Other +91bdd83c-fec0-4563-9aff-dc00db17b1fd 1 \N Other +91bdeae2-48f8-4f16-9298-5bc1b1d4e089 1 Other Other +91bdf535-e220-4a16-9ebe-8134cdc48c7d 1 Other Other +91bdf77c-daa6-4885-877d-9015eb5294a4 1 Other Other +91be0ded-e469-4576-b9b6-3642866a080d 1 Other Other +91be2022-5891-432b-8117-d01dbdc21b4c 1 Other Other +91be6e14-8eb1-4021-975a-a871a609d975 1 Other Other +91be8a05-c898-4c1f-9aa0-61bef756d273 1 Other Other +91be8e46-d894-4821-9cab-9a0434109d9d 1 Other Other +91bec220-3c5b-4497-a19c-a050e6885b56 1 Other Other +91bec503-6b89-4258-a653-30a8a84f66fd 1 Other Other +91bee434-6942-49f0-8549-bf28b7948c6b 1 Other Other +91bfc696-77be-45fc-a4a4-843dc21e2d34 1 Other Other +91bff047-7ce4-4b44-885e-f06e80e83777 1 Other Other +91c07d61-6807-46b0-a55b-26a9aef63bec 1 Other Other +91c08905-9f76-4da4-ad1c-78dc2ea8430a 1 Other Other +91c090ed-5d5b-423a-b107-8529fc195d32 1 Other Other +91c0adfd-3709-4396-b7db-098b865de53c 1 Other Other +91c0d6eb-054b-49ac-af81-716ee4687860 1 Other Other +91c11596-2d74-442c-ae59-0a52c43d61b2 1 Other Other +91c126dc-a631-4962-988f-975c62db4cc0 1 Other Other +91c1500c-e77b-40b5-9041-c8f67dafbe6d 1 Other Other +91c1598e-500a-48a8-9087-6769ff5eb2be 1 Other Other +91c17706-900f-4d4d-b9ba-a435c74a247b 1 Other Other +91c1ad1a-4927-4783-ba4a-a34104229313 1 Other Other +91c1d378-c829-4cc9-b5dc-365e3316c2be 1 James Other +91c1f0ed-86e9-4338-8076-452c4e32ea60 1 Other Other +91c23796-2152-48ed-83d7-0dbb4a56c0d4 1 Other Other +91c24783-03e4-4f58-b817-db029420973f 1 Other Other +91c29b4d-f975-414f-b679-a917c46f0b41 1 Other Other +91c2b71f-a432-4b4f-9764-47daed652383 1 Other Other +91c30bed-4e9f-4e8b-ac71-124f61642d19 1 Other Other +91c33e1d-b2f7-4748-a4cc-00c382ff3cdb 1 \N Other +91c3581f-4c32-4603-9bb4-19b2d2e515cf 1 Other Other +91c36dec-f7e5-4938-8036-9a4b22663b1c 1 Other Other +91c3874a-cdbf-4763-beae-b8351aad418f 1 Other Other +91c43b8e-88a0-47e1-b606-ff0c91f810bf 1 Other Other +91c446c0-a5c3-4c9c-96c3-1d78acb73acd 1 Other Other +91c4cce1-6e42-4e41-874f-9bfe4b47abc5 1 Other Other +91c4dd30-8868-4fff-af9c-2820f1e96c18 1 Other Other +91c54853-753e-4ac5-820c-337de05a900d 1 Other Other +91c5559c-defa-4cf9-8d9b-76e705d19e39 1 Other Other +91c573f5-caa0-44e3-9661-e3fd095e7e88 1 Other Other +91c5910b-d519-47e3-bc80-f3aa7d1156a8 1 Other Other +91c59e5f-b5ff-413b-b6b4-0b65fe586b22 1 Other Other +91c5a8de-d238-4f7f-943a-fcf74cd7ad5f 1 \N Other +91c5d4f8-8a22-4db9-b5b6-5be9a5f1658b 1 Other Other +91c5d5f8-0983-4fd4-9fda-16f6c363119c 1 Other Other +91c5dd09-1d1f-4d75-b1b8-b51b4a9ccd2a 1 Other Other +91c5fba8-df5e-4f2f-809b-ffd5f3e95d16 1 Other Other +91c615f0-40fd-432c-b784-72af57237f6e 1 Other Other +91c62c81-bcb1-4723-bb8f-4b0de4be31d2 1 Other Other +91c63489-8842-418b-b6ac-f73fc0174aa8 1 \N Other +91c645ea-7d74-4334-919f-ce48785d2f3a 1 Other Other +91c69c1d-58a1-4a2b-8233-0185d771ccf9 1 Other Other +91c6cfd2-ea07-4724-9a99-7349cb09e364 1 Other Other +91c72a7d-7a4b-4d73-93e3-2332608780ee 1 Other Other +91c741cd-64e5-4460-829d-6f486d1d1089 1 Other Other +91c7622e-6de5-459c-b997-e004992b0055 1 Other Other +91c78912-26f2-46cf-91cd-1e490e91a464 1 Other Other +91c78eab-3574-46b1-9692-9ffb56e4401f 1 Other Other +91c7cf71-1f9c-47f4-adb3-be8570858659 1 Other Other +91c7ea88-cf12-43de-9446-20ea98fb02a7 1 Other Other +91c81667-eabe-4f2c-bff5-015465c04d97 1 Other Other +91c82d59-bfd8-4d8b-9b78-90165e569cc2 1 James Other +91c8540b-b97f-4212-b42c-0b32f727b223 1 Other Other +91c85f73-f3a2-411f-a511-8ef2b3910ef7 1 Other Other +91c8678e-bb15-49dc-89fe-172b6b98d79f 1 Other Other +91c89a6b-7266-4e07-8f61-1174d7003527 1 Other Other +91c8a522-a414-4160-ad90-3b61fadca235 1 Other Other +91c8cde4-b2fc-460b-ac28-ed6826ecfa23 1 Other Other +91c8fef5-411f-42ae-a52f-15e0b1b3784b 1 Other Other +91c9305a-385b-4c9c-a0a1-6e071d8cfbe5 1 Other Other +91c97582-7384-409d-b083-d61c023f4e18 1 Other Other +91c9c013-3f51-44e5-811e-f3c8b53425f2 1 Other Other +91c9c977-0c35-476c-a699-016c35d505db 1 Other Other +91c9f082-0eff-41aa-8018-6a630305f4d7 1 Other Other +91ca1576-f040-4222-a1e6-acca269666e1 1 Other Other +91ca1e2b-9241-4060-abd0-53b16137d596 1 Other Other +91cad9d5-9ec1-4f59-91a6-18264d66a4ed 1 Other Other +91cb2917-6c9d-4fa3-bbd4-55daaf82a51c 1 Other Other +91cb37f9-06fc-4e42-aabc-67a51174f210 1 Other Other +91cba031-14b8-42eb-84ee-7eb887662584 1 Other Other +91cbc1b6-36e7-465a-a06f-c74cc20720ad 1 Other Other +91cc13f3-0acb-4734-b4df-1204fdd2b96b 1 Other Other +91cc3196-668f-4228-9e0e-01c790a11eee 1 Other Other +91cc4226-8986-4ab7-8b87-1f90490dbe12 1 Other Other +91ccbe09-dc43-4df6-a315-dd28d46c4c8c 1 Other Other +91ccbe41-3133-4033-9f41-791354dff6c5 1 Other Other +91ccea0e-52b0-4b3d-be9f-ff187b05705d 1 Other Other +91cdb6ac-7eb6-4f22-9583-9df92bd64ace 1 Other Other +91ce7c9a-e01d-450c-8207-4dd3059c86bf 1 Other Other +91ce95e6-528b-41f6-9d2c-e8a7187d0863 1 Other Other +91ceb94e-d20b-41f7-ba7d-a2c46584203a 1 Other Other +91cf1104-e888-449f-81d4-ffa20486020b 1 Other Other +91cf483e-ed25-4fd2-84c9-180ecc35211f 1 Other Other +91cf6aca-b783-49c4-9412-08b7cee6ee6d 1 Other Other +91cf908a-c39a-4177-98cf-d84dea43f2d9 1 Other Other +91cfcde4-e705-40e6-b5b2-b54953461c23 1 Other Other +91cff2fb-0875-4128-bf48-f990b358d5c1 1 Other Other +91d0210a-4bd0-4dcd-9eb3-23abfcc518df 1 Other Other +91d02923-4b9c-408b-8da3-5339cd57a0ef 1 Other Other +91d07d62-6c44-4338-81c4-dc20f9d7c897 1 Other Other +91d08f03-feac-4af0-91c0-73e47a0a5c8b 1 Other Other +91d0a58e-53ef-4062-9e44-94fa71f35a83 1 Other Other +91d0a9d8-070f-47b6-8b2a-d53f5bd2d5d0 1 Other Other +91d0d396-aa2f-4736-b01c-ab6a09d30579 1 Other Other +91d13096-601c-4124-bcc5-d68b0ee27aa8 1 \N Other +91d15165-3c77-4834-89bd-8d487447ef1d 1 Other Other +91d15407-6396-4ed7-85b6-641ec8a1cd93 1 Other Other +91d17cbf-cb53-4c10-8dea-dd7fc721a0a2 1 Other Other +91d19312-5122-4f50-b492-2bf572b89063 1 Other Other +91d1cb12-7076-45c9-93d6-e6d65d29acf3 1 Other Other +91d1dea1-ace5-4486-86fb-863cff8276a8 1 Other Other +91d1fd38-8600-4fb7-ad68-d43888c9ae3a 1 Other Other +91d2494f-5667-4f1e-8627-3f2a3f3f095e 1 Other Other +91d25d43-7216-4d1d-9ef5-3e0f1932652c 1 Other Other +91d2907a-60aa-4f5f-aa12-ad731e1b9ed7 1 Other Other +91d29180-2f5a-4889-8943-19432008d047 1 Other Other +91d297a5-f35d-4730-9980-79db11afe1cd 1 Other Other +91d2c993-248f-4085-b9fb-fcabc6d3dd6c 1 Other Other +91d2cecc-f2ef-4211-a93f-cf99f23fd84e 1 Other Other +91d2da8f-f058-43ea-8e23-38245684249f 1 Other Other +91d2f829-869b-4a4a-a76c-11ceb1baaaa8 1 Other Other +91d312d5-2848-4517-ba8d-55cf2fc1fd20 1 Other Other +91d33d5f-4de8-4ca5-b3af-f96d93815b76 1 Other Other +91d37040-0250-4304-b505-74750125c8d3 1 Other Other +91d39527-face-4732-9132-d33b7f042a58 1 Other Other +91d39760-bfd3-4298-95eb-e7c85e2db34f 1 Other Other +91d3a70a-5abb-4a06-bd6f-bb038070f2bf 1 Other Other +91d40850-3961-4a02-a0a4-12ca5e193ceb 1 Other Other +91d42b6a-0cfc-4380-99c3-9702d5754ff7 1 Other Other +91d46953-1d83-4a16-a7b4-0781a20432ab 1 Other Other +91d470f6-8d05-4c28-9ff0-657449c20386 1 Other Other +91d4ae3e-4031-4c1d-841e-a2547c08db6c 1 Other Other +91d4b9ee-f75d-4ccb-ae14-5b59a6a858da 1 Other Other +91d4e04c-db21-4f2c-9692-42497db903d5 1 Other Other +91d4e185-940e-4f1a-9716-5f4fa1f03b0c 1 Other Other +91d4ebfa-653b-411e-983a-af6e5cd3c37b 1 Other Other +91d4f672-e857-41dc-8d05-fe0b3eef3de2 1 Other Other +91d50d48-b700-4bf1-99a7-bb36ef05971e 1 Other Other +91d58562-83d0-4b57-992a-15d66a03d92b 1 James Other +91d5b6c9-bfc3-479f-8bbb-80c4e3cbd384 1 Other Other +91d6022d-36fa-4db4-a438-15bda22cfcf6 1 Other Other +91d62330-a06e-4b69-af17-1735c2108c95 1 Other Other +91d62bd5-1516-499c-908d-ae15d4200724 1 Other Other +91d635d6-7cbe-4d54-866b-17bc275b0f49 1 Other Other +91d66a43-692d-49f1-bd08-da9742854be2 1 Other Other +91d6c7dc-dff1-45c7-9ef0-7d76c3da2ff5 1 Other Other +91d70ff5-87b4-4f66-8fc3-d5f5a53d589f 1 Other Other +91d76f80-a5d6-4859-aaa9-5ec86b09fc3a 1 Other Other +91d83f9e-c1c5-4a08-a87a-aa3440a51ef6 1 Other Other +91d88bef-a27d-4cf1-824d-e4650d386036 1 James Other +91d88e64-5a89-4bab-bf48-5461cc3a3a0d 1 Other Other +91d8c601-5bd4-42f7-8ff4-3bba62d0a134 1 Other Other +91d8d77f-ec4d-4012-88d8-fc056035c7ea 1 Other Other +91d8dd9f-e34e-441d-9fd2-7cfd7f63f08f 1 Other Other +91d919b5-a69f-4d00-bae0-8269a0e286a5 1 Other Other +91d936fa-4064-4d80-aaf0-d29c349c6b05 1 Other Other +91d98850-a6ff-4372-97f2-cf017bd6d107 1 James Other +91d9ae67-392f-4af2-84c0-31b65ce519a1 1 Other Other +91da66bd-b9d8-4f5b-99c7-cb90d0ea8fc8 1 Other Other +91da8e27-055c-4300-9286-d88e9ec4f9a3 1 Other Other +91da9ddb-dbfb-4aa2-a840-cd5e99f7ae17 1 Other Other +91db042a-8f4e-4b93-a54c-2868ab2cdd14 1 Other Other +91db1d84-a827-4634-9cc7-9fda4bd807c1 1 Other Other +91dc0f5e-2f5b-44e5-939c-23857e383e74 1 Other Other +91dc2222-49f2-4bf8-a9a1-729578ae2f7f 1 James Other +91dc2523-b85d-430f-97a1-9272d1949a78 1 Other Other +91dc4cc1-cdc3-4ce9-87d9-c5927cdbf7f5 1 Other Other +91dc8d9b-8761-43e2-bda1-96ca3c4a1017 1 Other Other +91dc93f2-a460-42f4-a12c-d5dcdf65a5b0 1 Other Other +91dcc3a4-4c3d-4cbc-8007-6eac19cf07ba 1 Other Other +91dcfdf7-cb91-4e64-808d-97550a29fad8 1 Other Other +91dd1138-49d2-466e-838c-1f0c9fc74584 1 Other Other +91dd15af-1908-4cd4-8bab-2ec9298f6413 1 Other Other +91dd3db8-cf84-4546-8877-9e482e39be02 1 Other Other +91dd55fc-d934-412b-b7a8-9ac8d8b6f2d9 1 Other Other +91dd8c20-0e10-4dab-8aa6-c4a8693dffea 1 Other Other +91de2d94-5d9e-4f13-839f-11139164d803 1 Other Other +91de5fd9-66a5-4149-b1e6-895bd4e63c6c 1 Other Other +91de96a1-b407-46c0-859d-93fc46c493de 1 \N Other +91def42d-a5cb-45a1-9f0b-e097ecbbc1ed 1 Other Other +91df0afc-57f0-4b55-8057-1566e83c4085 1 Other Other +91df26c5-53d5-44bc-9e75-f406850bcc29 1 Other Other +91df463f-351a-4eef-97ae-97573dc3bf93 1 Other Other +91df8def-d86d-458b-b7d3-4b57563eee9d 1 Other Other +91df9b8e-aed9-4f44-a3ed-11ee728f8166 1 Other Other +91dfb64c-b359-422b-8d7d-b34a25f6a043 1 Other Other +91e04e08-d276-4b19-a76a-68d0ba717179 1 Other Other +91e0578d-1b35-4372-bfb7-55c475fd0d06 1 Other Other +91e05b7d-e3f0-4155-a853-b418cabf790a 1 Other Other +91e0cf0f-8634-438f-9f67-bad716cbaf30 1 Other Other +91e0dcb1-2606-4f02-b6f2-271823aa337f 1 Other Other +91e1160f-541e-4715-9709-2a9e5fc5be9a 1 Other Other +91e17649-a627-402f-8a24-85549873cd68 1 Other Other +91e1bd20-682e-4c42-aa6b-4ee1e77bec95 1 Other Other +91e1d640-7ac4-459f-bcc7-a7ac94652152 1 Other Other +91e21ed0-e6ce-42cb-b394-10fb1c9a105c 1 Other Other +91e223fb-21d0-420e-b58b-2882c6b15152 1 Other Other +91e29224-aad8-46dc-b5cd-9b74fc7f808a 1 Other Other +91e2d014-0b91-4e0b-a5b5-b4cfd96bd573 1 Other Other +91e2e369-f6cc-4721-9488-e2213e45dfd8 1 Other Other +91e3121f-a126-47b3-bf5f-4e64ac5cea7f 1 Other Other +91e3537a-b8e5-47a5-9f4d-c0cf05fffe28 1 Other Other +91e3aa6c-72fc-4de6-85fb-031fcbb1f445 1 Other Other +91e3b7cb-90a7-43c3-a1af-085f16e3acf2 1 Other Other +91e3bd83-f024-4976-8f83-136e48324b58 1 Other Other +91e43517-d472-460c-b51a-eed6f2414860 1 Other Other +91e44354-01b6-4e37-96c4-bb32f8cc11a9 1 Other Other +91e474b2-447a-4fbe-9223-2884ac444489 1 Other Other +91e47bea-1f4e-437d-957c-00786a5bbbba 1 James Other +91e4c1f4-7a38-44f0-92ff-a6da4a4b894f 1 Other Other +91e4ebfc-1359-4e05-a5a4-6b4f6dea0662 1 James Other +91e55bff-0c6f-4c7c-925c-0c600e1f3fc4 1 Other Other +91e56462-3bc8-42f8-9ad1-fde4ce3836e3 1 Other Other +91e5715b-db6a-4931-836f-3967c9f13bf3 1 Other Other +91e5c29d-d35b-4c6e-888e-49d38ec8a682 1 Other Other +91e5cfc9-b92d-4607-9939-995114ac0e89 1 Other Other +91e61bc9-bed9-4285-b941-fb6be9ac2b7b 1 Other Other +91e66c48-6a96-4ee9-9205-8cbf9088ac16 1 Other Other +91e6750d-c1db-4615-b4cb-4fa8b1a587a8 1 Other Other +91e67958-9206-47b5-9af9-61b3c0384126 1 Other Other +91e67b09-f9ba-4cd2-b961-96024116791b 1 Other Other +91e76335-d498-44ec-ae39-0800bc3eb657 1 Other Other +91e76642-c679-4b0b-b078-901d6aaaad61 1 Other Other +91e771fe-9a1c-4773-bb8e-8615d3825252 1 Other Other +91e7a1c8-4e68-4ba7-bf22-8c47aee6e5de 1 Other Other +91e7cf99-10b2-402f-90dc-907b212ce523 1 Other Other +91e7d520-d01e-4094-aeee-5a3225870359 1 Other Other +91e7f5eb-ade5-487d-9902-522e4a4f9a9b 1 Other Other +91e898d7-57f0-42d2-8665-d19a4e537259 1 Other Other +91e89f1e-aab1-46d8-8569-305bf534addb 1 Other Other +91e8bbf9-7e8a-4738-bf50-48fd0e5a4b20 1 Other Other +91e8d666-efb7-4f5b-9e12-df2541b93162 1 Other Other +91e8e00a-2c79-4437-b05d-55ac59db9c18 1 Other Other +91e8ebcc-fa62-4d08-ae7f-16ec94af1d57 1 Other Other +91e8fbc7-9abe-4489-8c2d-bf8a73956098 1 Other Other +91e905b1-f4d0-4387-a16c-12771b4348a6 1 Other Other +91e923ee-2f96-408d-acbc-2133df96a774 1 Other Other +91e92461-24f8-49ff-b8d7-d1a55e4778cd 1 Other Other +91e92ac2-cd5e-42a4-aca9-2a371a0ee70e 1 Other Other +91e9444f-1661-40f6-b897-07de37924a18 1 Other Other +91e99e9b-b84c-41b7-b82d-d669dab6b93d 1 Other Other +91e9cd0d-11b2-44fd-bb54-5082cb59d22a 1 Other Other +91e9d165-d0c2-4d02-9491-380b253508db 1 Other Other +91e9d6ff-3030-4fb1-9bc0-34a66e8e3b91 1 Other Other +91ea2e6b-9b72-48e6-9328-0a8ef5d4d53f 1 Other Other +91ea3e6e-2fc6-4a2e-9aa2-eda938b0aa94 1 Other Other +91ea6bb2-8fd9-40b7-9e23-8d78ec7a297d 1 Other Other +91ea6bf6-2bb4-4e41-a715-d5eaadf2798c 1 Other Other +91ea6f14-2319-4f07-bff9-2a75587315f7 1 \N Other +91ea973f-6490-4d64-be03-2003b9d1c5b7 1 James Other +91eab0cf-5db8-47d4-b4d0-57c9d9d99a87 1 Other Other +91eabc3c-ec2f-4801-9888-f36d37918484 1 Other Other +91eadfe3-d9b0-46bd-abed-2700d2e63993 1 Other Other +91eaefda-3883-4744-9b96-334ce1c99258 1 Other Other +91eb3d69-78e9-427d-9882-47d9d793d142 1 Other Other +91eb40d2-8cb0-4316-a5c0-45a9c5e62657 1 Other Other +91eb6916-5006-4401-9219-ce44a3e3d51a 1 Other Other +91eb8498-ce22-4600-a997-c30207f0a66c 1 Other Other +91ebc3d5-7be4-4ac3-b7aa-1f1e90265bf1 1 Other Other +91ec2c05-3a54-4d0b-b694-6f57615bd4b4 1 Other Other +91ec603f-3847-4b09-9f7b-992a977d99eb 1 Other Other +91ec90c6-9678-4865-801d-bdf57346e963 1 Other Other +91ec9a21-cfe7-4555-bdce-74ef1d2fefc0 1 Other Other +91ece1a1-72a8-497a-a051-16f01b28591b 1 Other Other +91ecfc46-a3b5-43ad-bcd3-8950bc87bd9c 1 Other Other +91ed0441-9fa0-44a3-a80b-03e20af4bc9f 1 Other Other +91ed247f-5595-4962-b99a-8da323d6db33 1 Other Other +91ed28da-6571-4a3b-9cdb-ac1b7642a8c7 1 Other Other +91ed3b0c-3ac4-45f2-8dd3-0a2b48d6b905 1 Other Other +91ed4c33-2ffa-45cd-8a11-28d255b13ede 1 Other Other +91ed5727-d827-44d9-9a83-6e5c805dd41c 1 Other Other +91ed5760-0ca9-493b-bfc9-08e41a29feee 1 Other Other +91edca6f-9335-4fbd-9753-c285cc3073cc 1 Other Other +91edd83b-6fcd-4f71-b8a4-2f74d738d074 1 Other Other +91eddd21-fe70-4cc3-8671-437a2ec8243a 1 Other Other +91edf3d8-3e6e-493e-afba-f37882f8fbc1 1 Other Other +91ee1af8-ad97-4c3f-8bc4-3218cba1db65 1 Other Other +91ee476d-e7d9-46ce-9b28-a988bb4798ba 1 Other Other +91ee8094-7ffa-43f4-8686-3443039a07bd 1 Other Other +91eece5c-d53a-4567-b137-b43f41cc05b8 1 Other Other +91eeef26-af27-4375-bd9c-c34eb5b4d3e0 1 \N Other +91ef0ddf-8d16-44ba-9fe4-3f137c58cac8 1 Other Other +91ef2615-c93f-4f96-9e5f-bb9eda0e4b53 1 Other Other +91ef35a3-748d-45c3-a276-ce1819ba69c2 1 Other Other +91ef41b1-a9fc-4b14-8ee8-cb4c14a4e3db 1 Other Other +91ef9c9e-d2f9-4af0-b54c-c0aa5faeb64d 1 Other Other +91efb572-7afa-4ec5-9a5a-ecb4f09c01a9 1 Other Other +91efbd6d-7f58-4e21-96cf-8c0edf8ff76c 1 Other Other +91f00b40-f68c-47f8-b47f-48aff5d01588 1 Other Other +91f02da4-344a-420e-baba-edd829e8e63c 1 Other Other +91f038af-62f1-43e4-aacf-9322ee058678 1 Other Other +91f08357-24f9-4c5e-9e94-b56bbb69bb49 1 Other Other +91f0846d-a8a2-45c0-82b1-ba23658cd631 1 Other Other +91f092e4-55b3-40f3-9770-a6017ebf6b80 1 Other Other +91f099a3-b6c0-454b-a167-5a3b3faf731d 1 Other Other +91f0c871-68cf-4b04-82c5-3ef9c80d1c3b 1 Other Other +91f123a4-5d91-41e5-8ea2-6ad103ab627b 1 Other Other +91f14de1-45f4-433b-b4c8-0059c01080a4 1 Other Other +91f22290-ae94-41d5-9eb2-8b4b02c35705 1 Other Other +91f24514-196e-4801-8a08-27004db126b3 1 Other Other +91f2537d-ef01-4350-8c0a-52c5b1e15608 1 Other Other +91f2cb4b-53e5-44d5-a200-f50b9dafa895 1 Other Other +91f2da32-3426-448d-aa04-0177bc5751e5 1 Other Other +91f2e8b2-52b6-4271-a796-ad8e7911cc23 1 Other Other +91f323e8-a5ab-4c72-8515-4c75dbea899a 1 Other Other +91f3c6a9-cc31-4389-a655-1312423b5ffa 1 Other Other +91f3d4cb-0763-40ec-9716-4a8a8d093602 1 Other Other +91f3d5cb-ff3e-4f32-9a3c-6f4c98aedc2e 1 Other Other +91f3f5de-2e3e-4507-8afe-946056b969ea 1 Other Other +91f400ca-bad7-43b3-bf2d-7a8411ec6449 1 Other Other +91f4128f-831b-486c-bc96-87f13170d76a 1 Other Other +91f441ba-3222-4c2a-8c18-86f1e0032d69 1 Other Other +91f4e647-3fd3-4d35-81d5-1bccad92edf3 1 Other Other +91f4f06d-8a9a-4493-b838-d09f037cc33f 1 Other Other +91f4f38b-358b-4d0e-9a44-0ec1ef682f80 1 Other Other +91f5104a-b702-4d89-9a90-480806a2b72d 1 Other Other +91f52b99-5035-4711-9233-843eb49b7bc7 1 James Other +91f54de4-57be-4e40-9ea2-b0900dfc1e65 1 Other Other +91f59740-ab5b-4a5f-a847-8b6bc294e743 1 Other Other +91f5b136-8905-4514-a4be-b8c611972639 1 Other Other +91f5b482-4382-4a50-933a-73c686acd243 1 Other Other +91f5b740-395b-4c26-8f82-cf20cd6bab62 1 Other Other +91f5eb14-95e4-4603-8876-b4cb7a1f1753 1 Other Other +91f5f957-bcc7-4e39-89d4-efa8594c96f1 1 Other Other +91f5f9d2-6034-4a8d-bbec-9ae518c3cee4 1 Other Other +91f6458f-d1c8-475c-8db6-ef5ad2d58c88 1 Other Other +91f653a8-cafd-4865-a44f-95223d12a173 1 Other Other +91f68850-a16f-469d-adea-d81d1883becb 1 Other Other +91f69b4e-3ecf-4bce-b5d5-f82fd83e06c9 1 Other Other +91f6b6a5-35f1-44ae-ae6d-dbc5f9c42564 1 Other Other +91f6cdb8-a217-4ede-bdbd-23b8ab546651 1 Other Other +91f75858-e937-430f-8ba7-887f1085a4b2 1 Other Other +91f7a327-186f-4f15-b978-8ed71885eead 1 Other Other +91f80a47-c6c6-4480-b402-f024971e02a0 1 Other Other +91f870ce-7fc4-48d3-bd47-d6e56e050c3c 1 Other Other +91f8819d-9757-481c-a94c-e30579d85058 1 Other Other +91f930a9-8f10-4b4c-bfe9-14b342c5821a 1 Other Other +91f9646f-a5ba-4099-807a-24c2238cef25 1 Other Other +91f96ed8-2bfc-41e9-80db-84067cbb292d 1 Other Other +91f98e21-8109-49ae-901c-95b3ba861527 1 Other Other +91f9b1fa-a1b5-4b63-b50d-9d49dc4162c8 1 Other Other +91f9b42b-8ed7-41b7-80bb-9612fba187d2 1 Other Other +91f9dd82-120e-44a5-8fb2-a19d2210d897 1 Other Other +91fa0cb0-04bc-40cc-8290-d5cb4afdea59 1 Other Other +91fa1fc2-ba64-4ae5-9281-6f8a814ababf 1 Other Other +91fa5973-bce0-4d58-b15a-405f48899ac8 1 Other Other +91fa80b0-bab1-4b64-8b1f-5ae411e96ad0 1 Other Other +91facf1e-e141-4b5a-bc8f-6029e2267039 1 Other Other +91faf4ee-ea0d-4ef2-9ffa-6aaa900bd2ab 1 Other Other +91fb0c7f-cdb9-4076-9951-f3c78f0c8c7c 1 Other Other +91fb0d9b-46d6-416e-a93e-6030ef0142bc 1 \N Other +91fb17c6-88ed-475a-b0ce-efd5684bfbed 1 Other Other +91fb1b5f-d0b4-4f2f-9387-bc4f6826085f 1 Other Other +91fb3d0f-6d7e-4087-8a17-735bf3c6b0c5 1 Other Other +91fb4ba0-13f9-4db0-9a78-b1a68750aaeb 1 Other Other +91fbbfc6-a031-48fc-8570-fa1eaed6922e 1 Other Other +91fc110d-f0f4-4621-bec6-6eac439fd61d 1 \N Other +91fcb012-6cd9-41c7-97a1-ef929ef9ee67 1 Other Other +91fd0879-e30f-4962-820b-547b01540c80 1 Other Other +91fdac90-dd63-4245-80fc-567a4bb788fb 1 Other Other +91fdeba2-c927-4a91-853d-d88c48de5476 1 Other Other +91fe3574-d5b9-47aa-afc3-92a86e7a8249 1 Other Other +91fe4f95-d63c-4b78-a7fe-b16149632b2c 1 Other Other +91fe7c57-c1be-4178-bdf7-225191b3765c 1 Other Other +91ff08c7-b377-466b-9403-82edbc1bbc6a 1 Other Other +91ff3516-2473-4e6d-aa74-d93c69aeafa7 1 Other Other +91ff83d2-8186-4d0c-ad79-bd2a13ef3fa7 1 Other Other +91ffde35-0070-4729-b59c-270f336c6bab 1 Other Other +91ffe3ea-5231-45e9-bc20-07011743520d 1 \N Other +920020a7-77ea-4140-8e43-6b0ad9ae3b19 1 Other Other +9200717c-44dd-4779-95b7-b3b5a67b5dfc 1 Other Other +920073a9-7577-42e0-bb67-aafe1facfce1 1 Other Other +920074c9-c8a6-4008-9068-082823936d3b 1 Other Other +9200a58b-0522-47ad-b4aa-eeae40bba7f3 1 Other Other +9201431d-ee23-4446-b3b1-9c0e1004d9f8 1 Other Other +9201bfba-7a9e-4f75-84bf-f30641107335 1 Other Other +9201e034-5997-46ab-a82e-f034e4244c3e 1 Other Other +9201f727-ce01-49ce-bc45-0f0b52524534 1 Other Other +9201f9d5-6e01-49b1-9455-247beb3f4a79 1 Other Other +9201ff62-24d4-49e7-9676-811803bcd86c 1 Other Other +92021e73-092f-492f-b3c9-b6498783c75a 1 Other Other +920253bc-f922-4460-a866-58ed4d1598a9 1 Other Other +92025d8c-24dc-466b-91b3-19defaf5644b 1 Other Other +92028454-2594-4364-ae56-6b873e07e99c 1 Other Other +9202b593-69f7-46a8-9993-c070dca31ca3 1 Other Other +9202e2d0-0973-4786-822e-14b226bd2548 1 Other Other +92030248-85ce-426a-b663-b215edd9b308 1 Other Other +920324be-90dd-4d2f-816c-62a383cc8228 1 Other Other +9203963a-a13c-43ae-a15d-e78f8aeeb931 1 Other Other +92039ac0-cae4-4cd8-81d6-e554f3479baa 1 Other Other +92039f8b-aa96-4195-85b4-5159cc7ecc21 1 Other Other +9203ed1c-a0b2-4518-923b-d2bf9d35cb32 1 \N Other +920426bf-d2f9-4131-a0c6-ff733e6e4fab 1 Other Other +92043460-e35b-43cd-982c-59d4aab2ab3c 1 Other Other +92043bc8-2b75-4db2-aa4e-bc016a323623 1 Other Other +9204620b-ce71-4f24-90f2-0cc781525455 1 Other Other +9204682e-7b08-41c7-96fe-f4cae529b9b8 1 Other Other +920474fc-6639-4eba-b12f-f4e258695659 1 Other Other +92047ee7-9828-4c5c-a503-82fb6d366ed8 1 James Other +920488d0-7783-4275-840b-42390c439ac6 1 Other Other +92048b55-8821-4255-90c2-50a78923f77a 1 Other Other +920547ac-b85c-487f-9611-c1b718d02665 1 Other Other +9205a709-b466-4e5b-bde8-9534b0a8a5dc 1 Other Other +9205ca12-eedb-4546-ab98-177321040015 1 Other Other +9205d90a-7a43-4c03-ae08-6d827ed2d27d 1 Other Other +9205daa0-6685-4f2e-9dc8-8b333a5102e3 1 Other Other +9205e7ef-c87e-4a15-b0c3-5e92236e7b97 1 Other Other +9206360b-c647-486a-a330-5c7d0a43fc56 1 Other Other +92067800-16e2-41b8-812f-5c924e7a0dbd 1 Other Other +92067b21-2501-4611-8442-89665f2d79fd 1 Other Other +92068fd7-f065-489e-919a-ec860d09a314 1 Other Other +9206ba80-88b0-443e-9779-75eeeb9c3881 1 Other Other +9206e215-c578-45e7-bc57-73eb7da9f612 1 Other Other +9206f30c-faa8-46b6-b55e-fbe5c256603e 1 Other Other +92071b35-4fe4-4ccb-b161-67a00fad7f8b 1 Other Other +9207667e-7431-45a7-a10f-2b96170b3e22 1 Other Other +9207bdf9-35d1-49fa-9df1-5448bd4e9077 1 Other Other +920861b9-50b4-4890-b31c-4a156196dd77 1 Other Other +92088f3c-70aa-4c5b-a878-09c96c88b82e 1 Other Other +9208a165-2765-49bb-891c-2a3a1bd13735 1 Other Other +9208a6c9-c20b-43af-a990-34ad27cf870e 1 Other Other +920911ec-1158-4bb2-9d48-10048e1bec9e 1 Other Other +9209af05-2631-440d-90a2-88534d9b4e1e 1 Other Other +920a1984-72dc-4fb7-b168-5d7c6934e8d3 1 Other Other +920a30a3-5ad2-454d-9607-731542c82b31 1 Other Other +920a32d3-4fe2-433f-a0b7-36dd8c1ae249 1 Other Other +920a5e83-f754-4d2c-bde7-bffad7a78975 1 Other Other +920a60e2-89f6-43bf-8453-09a982aff929 1 Other Other +920ada5e-4e02-4adf-b296-5a192a9dc043 1 Other Other +920ae686-cd7a-44bf-b9b5-e6d2eca0fc2f 1 Other Other +920aeb78-bba5-49ab-8858-d33805460804 1 Other Other +920b2ab4-02b0-4fc3-93ba-16822a2cf954 1 Other Other +920b6ab2-7f4c-4bd4-8ba4-776b5ef41431 1 Other Other +920b7484-af6b-4984-847c-5b96df0e3e0c 1 Other Other +920b7b3c-085e-47db-ac3c-4a7ae6718758 1 Other Other +920baaff-988b-4d76-af08-f9847dcaafe1 1 Other Other +920bbfbf-8c6c-46a9-aacb-00a708406b63 1 Other Other +920c0c29-66bf-4720-8d4e-b1127c4fe42f 1 Other Other +920c43fd-0bc9-405d-814f-6b81dafc7625 1 Other Other +920c6271-f7c7-40fb-9a71-63a19a9146b0 1 Other Other +920c77d7-d1ac-4b3d-90c5-14f2a76113b5 1 Other Other +920cd419-7ef8-4b66-8c94-06e632f8ae59 1 Other Other +920d115a-6cc0-48ab-807d-3efad637d197 1 Other Other +920d3153-732c-484e-bf02-4ba7e7fe060d 1 Other Other +920d96db-c37d-40e8-b744-ea7b54577c90 1 Other Other +920dbf95-c8cc-4797-a76d-01ea63572ba4 1 Other Other +920e2853-7260-412c-9703-4a261659654e 1 Other Other +920ef3b7-9ddb-473c-9017-8a3c8011a9ac 1 Other Other +920ef417-be2e-478b-a44f-64ab6aa10f2e 1 Other Other +920f4201-0b6f-4801-9868-6b7be09f5452 1 Other Other +920fb78f-bb78-4110-a87f-aea6468c1bc7 1 James Other +920fe6a0-1cd7-407b-abcb-fe02b5d3e878 1 Other Other +92101b29-880f-4eab-87ce-6c8e7f9f7263 1 Other Other +9210a07a-d8e3-4f0c-91b8-06977a8ca194 1 Other Other +9210c3b9-5c66-4b8b-96e5-206a33446858 1 Other Other +92110cb1-9661-45ed-a60d-649ed4db68f4 1 Other Other +92111cf8-bfb1-43eb-a217-23b76ca3a02d 1 Other Other +921144f8-d3bb-44cb-bb93-3f4952d32340 1 Other Other +9211556e-b226-446c-9a13-0b37fe1a9b2e 1 James Other +9211837c-cc21-4b10-925f-1b06d921f8b4 1 Other Other +92118606-da05-4564-a827-c088420055c1 1 Other Other +9211d61a-89cf-427c-89d0-79d9316d5a79 1 Other Other +92120c63-246a-46c4-8214-3ee4c658921e 1 Other Other +92126782-b44b-4e7f-adee-33129712efdd 1 Other Other +9212c853-afce-46c9-b997-24b2324088e9 1 Other Other +92131779-4b11-42d3-9b26-ab17e9447d43 1 Other Other +9213378c-62ca-4f84-9717-0fed5ed49425 1 Other Other +921367fb-d828-4c2c-b589-39aa357f9442 1 Other Other +9213889f-030e-4e31-aeeb-8f5ba13bc315 1 Other Other +9213c697-d9d8-44c0-b275-6c49f0fcc751 1 Other Other +9214131c-d3b5-4371-a98b-6cf5cf0b5b2a 1 James Other +921420eb-57ef-4335-8c32-ac14191ab3f0 1 Other Other +9214594d-e9d3-45fe-a1eb-061ade718906 1 Other Other +92147966-f4a3-4670-b81f-ec23dec8fd4f 1 Other Other +92148659-75b7-4a48-a498-604a40e36dd8 1 Other Other +9214b6ba-ad3e-4e37-a92c-e9bd3adcafce 1 Other Other +9214bf23-e52e-476a-a776-bc0d83a0778d 1 Other Other +9214d161-1212-4261-9496-3f2e6a222493 1 Other Other +9214ede8-0309-4a7a-b3f5-9f2f950cb688 1 Other Other +92150367-9a90-4e46-971f-e99c2711e2bf 1 Other Other +92156582-5ae8-45b7-a619-92d99a19bef6 1 Other Other +92157bd8-4d6d-4c6b-ad6a-1cb68005ded2 1 Other Other +9215bf47-7cfc-4e4e-8fb8-147e0b7a05ac 1 Other Other +9215bfe4-2334-4eb1-a3ca-4f7e919b5171 1 Other Other +92162a41-6634-4aa8-a3b6-1b4b0001665e 1 Other Other +92162f06-103e-470d-9891-92d69e3489cf 1 Other Other +92163bfa-802a-4c8c-81d5-ea280a6dc270 1 Other Other +921641c2-8641-4e3a-9ade-2ddcf3037393 1 Other Other +92165033-41d2-4ba1-b8c9-2d21c42c38f7 1 Other Other +9216815e-9511-481e-a8cd-743de05b3221 1 Other Other +9216ab52-d623-4fda-b1f1-7ceb0a0afc51 1 Other Other +9216bd14-cfbc-4370-9b77-f82e881a836e 1 Other Other +9216c5a5-9365-4f53-95f2-e69b589938f1 1 Other Other +9216f4d8-9d0c-484e-a73b-46ab30597999 1 Other Other +92170b45-0b52-4829-b161-1d354f2b43b4 1 Other Other +92170f28-00e9-46ff-8be9-1ccb62d7f5ec 1 Other Other +92172f82-216e-4586-81b8-0785c45fc9de 1 Other Other +9217319b-a3f5-4756-a0e4-7f5b409a91f7 1 Other Other +92175927-451e-48ad-8135-04f917429dbf 1 Other Other +92178ed6-28a4-4cea-8821-ac87b7f98edd 1 Other Other +9217b26a-520e-4c32-bebb-516612b91a3d 1 Other Other +9217b83f-3081-469e-9dee-e16255bcd3ee 1 \N Other +9217ce3e-a022-449a-9e4b-e8850dd78e87 1 \N Other +9217d6ad-938c-4f89-b4ba-1bc94695005b 1 Other Other +9217e518-8dac-46d9-b977-ef82db6d4fc2 1 Other Other +92183f66-257c-4179-a8d3-76df56973377 1 Other Other +92184b80-eed8-43cd-8053-1c3fe5ffc7da 1 Other Other +92186695-17bb-40a1-ab09-411b8707c05e 1 Other Other +921896e7-6275-4dee-b81c-92f28eb1d350 1 Other Other +9218a31d-2d91-4322-b517-37a9c1c132b2 1 Other Other +9218c7a3-8c81-4693-b59b-eb584292ac5e 1 Other Other +9218dcda-6472-4b8d-8f23-8c7f0a23475c 1 James Other +92190994-eeda-41a9-adbb-b9df8b7f3eaa 1 Other Other +92194f55-9614-4193-b0f8-37972853ed75 1 Other Other +9219d6fa-fedb-4f87-bd4d-31dfbd7bfa97 1 Other Other +921a2f07-2f17-4c11-857c-f7416bb65967 1 Other Other +921a5144-79f2-4e32-a7fd-a62c25b672bc 1 Other Other +921a88ec-fff4-4bf4-a187-f5a8a8991082 1 Other Other +921a9533-8a9c-454c-84b0-c75dffbc7a20 1 Other Other +921aa8be-3e94-457d-994a-f5053fd005e8 1 James Other +921b06a3-d50c-495d-89d8-dd1d37922473 1 Other Other +921b0e6a-9a92-4bfa-932a-9679dc5472b7 1 Other Other +921b4bc4-c267-42e6-8147-83c91c453408 1 \N Other +921b84aa-88fb-4f11-b3c5-ae9f40299732 1 Other Other +921b9ba4-425e-4ec5-bc72-a6764a18b123 1 Other Other +921b9ff2-2952-4672-beb0-b686c312b2ab 1 Other Other +921c3957-b71b-4c8e-9175-3157a9e8138f 1 Other Other +921c4375-025c-4392-91ae-2579151e6ace 1 Other Other +921c4efd-43c8-4b12-804e-1c2a2594e524 1 Other Other +921c6cb2-49fb-4b9b-875c-2af85a14d5aa 1 Other Other +921c705d-1a68-4bf9-994b-584d101d1f18 1 Other Other +921c8f1d-0f70-4f92-97e3-79c74b1b0dd9 1 Other Other +921ca55a-7d86-49ec-9baa-e51c845169f1 1 Other Other +921cf1b9-4524-416b-b8fd-f7fde4212eaa 1 Other Other +921d2f43-2bc7-4e9e-8e64-6c470052796b 1 Other Other +921d57ce-a9d5-454b-9876-092f8a6950cb 1 Other Other +921d683a-a830-402b-b315-97d7c5e5d00f 1 \N Other +921d6f7b-8036-4002-a648-8b5d3f9836c0 1 Other Other +921d7473-24fb-45ed-b9af-fd07e81aae88 1 Other Other +921d92c6-6672-4fd7-bf2c-c83a704c05a6 1 Other Other +921df893-8859-4edc-ad9c-8b3b3833b7bb 1 Other Other +921e0d24-1fc3-4f81-9b15-9556da4fa0c2 1 James Other +921e1538-4b23-422f-8e27-f045c5f64332 1 Other Other +921e27ce-1f8f-4193-bee2-c11c13b9043a 1 Other Other +921e712c-bfc3-4c5d-a2a6-dc1df1851856 1 \N Other +921e8459-4738-4854-acc0-97121772f1e6 1 Other Other +921e9228-4c5c-4813-880a-eafbb975ca27 1 Other Other +921f66e6-8520-4e8f-bba0-f6b75caada68 1 Other Other +9220212b-f1d6-40f7-a477-b6505722ad5c 1 Other Other +92205f3b-2b5c-4968-99fd-8b9cfaa255d9 1 Other Other +922063bf-5e82-46ad-b513-54ceb7f87466 1 Other Other +9220994f-23d3-4344-9324-9a3d0e31f50f 1 Other Other +9220b787-c424-44be-8c74-f08b7a04b2e7 1 Other Other +9220c1a0-1479-46ce-9ee4-0bdfea6ff8cf 1 Other Other +9220d5f7-7c2c-4a96-8c97-0291cf4a0fab 1 Other Other +9220f37b-9404-4e4f-9c34-cc0ba9843e97 1 Other Other +92211bd0-e0a9-44de-83a6-5c9c98792e54 1 Other Other +92212320-81a2-412e-b48d-f8cf38abcb4e 1 Other Other +922136be-b07b-4d39-8454-a8498c0d249d 1 Other Other +92217b85-4da7-44ee-be28-877dd4044636 1 Other Other +9221d4c3-b6de-452f-90e6-ab20e353055d 1 Other Other +922240ff-d53d-4c70-b3ec-5fe8174f968f 1 Other Other +9222a6dd-cbf9-4100-9e15-db420c390b24 1 Other Other +922322dd-0325-49b7-b58c-091b7903c199 1 Other Other +92232399-73f4-4593-94be-f44ce2224403 1 Other Other +922348bd-9ce1-4364-97ca-136867ed43b1 1 Other Other +92234bee-ba83-4aee-874b-d24b7961e2cd 1 Other Other +922364dd-e46f-428b-acbd-f19133e1759c 1 Other Other +9223b217-e44f-4b67-bd1e-f8df4663654c 1 Other Other +9223bf35-9153-4a90-b53a-01db11837683 1 Other Other +9223c9e9-ed81-48c2-9cc2-d3b26d6eeca1 1 Other Other +9224169f-61a8-4912-88d3-5986524d425a 1 Other Other +92243429-f530-407c-9ddc-ff2018443079 1 Other Other +92246127-5d88-41e0-b89e-4f2584e50553 1 Other Other +9224c696-d0cc-4b11-9096-3843616691eb 1 Other Other +9224ce82-c233-41bb-99f2-f7ad59d5e5eb 1 Other Other +92251793-4551-49c9-8dec-3841721ca6ba 1 Other Other +92256c5e-086a-4609-a5f5-69ab58d82591 1 Other Other +9225922e-13bb-4d87-8858-7f58b4ada01a 1 Other Other +9225ff91-ae78-4cc4-b387-7670f37ad665 1 Other Other +92261e4a-714d-4e99-a255-42012b82fc9f 1 Other Other +92261e75-c396-46c4-9744-4965559a9aff 1 Other Other +922657ad-9f56-41e5-bf31-144e726e7086 1 Other Other +9226c048-88f8-46c2-94a5-2fe1e2fea377 1 Other Other +9226e7c5-7f96-4ec6-95e4-c0220f4d4e1b 1 Other Other +9226f1f3-d150-4e64-8858-c5be03018e40 1 Other Other +92271bd3-bfe3-4c1b-8dba-4efa8773bda9 1 Other Other +92276265-c54b-4692-ad59-9a39987d2843 1 James Other +922788d0-87fa-4286-b1be-5a7f8511bfae 1 Other Other +922818ae-7138-40c1-a8c7-33b4c8f71636 1 Other Other +92281c37-90d6-4303-bd86-57b9e4da3c2b 1 Other Other +92286e58-54cb-4b26-a52b-497cc8ec003c 1 Other Other +922871c2-6178-40e1-9812-f673517294a4 1 Other Other +92288bab-41aa-412a-92de-fb585a8ee78c 1 Other Other +9228d344-a864-49b8-8b07-d7d93fbc3bb7 1 Other Other +9228e5ac-d204-46f2-9c5c-295a6ca796c0 1 Other Other +92290501-f788-45bc-b4b7-7b52b7be3151 1 Other Other +92290b5a-a66e-4103-b800-544fe821be13 1 Other Other +9229187b-654e-48b8-bb3e-a46321e2a06d 1 Other Other +92295b09-2e88-4867-a3f8-44cb6325e6f1 1 Other Other +922974c2-84f5-49c8-9a95-f710c25d319d 1 Other Other +922985cf-1dca-4b4e-bd6f-b831c0050c85 1 Other Other +9229e189-83e2-4421-a96f-1ce5048bada0 1 Other Other +9229eb7b-2785-483f-b6f6-3bf028afdbfd 1 \N Other +9229f5ff-3afe-4ac0-ad28-16578521b145 1 Other Other +922a069b-5589-4008-bdb9-4222d1eec3c1 1 Other Other +922a09e2-1039-4bd0-b721-70523cb59735 1 Other Other +922a2721-588b-485d-89dc-efbc81c6d053 1 Other Other +922a2d5a-42a0-42de-bf21-0334dc0ea1a6 1 Other Other +922a90f2-77b0-475b-a915-e7007a65862a 1 Other Other +922af2f6-2e07-4e41-aa10-e8192149b399 1 Other Other +922b1f16-28ab-4b27-88a6-a622ae6ae22c 1 Other Other +922b23a3-d3f6-41df-be2b-7e2d1df73bbf 1 Other Other +922b35d9-eb8e-46f1-a3d6-e582fb5e29cf 1 Other Other +922b6226-2e26-4a85-b9bb-02fc49ead579 1 Other Other +922b695a-559b-4aba-803e-3df5283e8827 1 \N Other +922b75a5-72ee-4db0-bb96-02e5b652bc29 1 Other Other +922b9227-22f8-4001-9c50-42ab3f76e7f3 1 Other Other +922bc387-fb52-4a36-b5d7-c687884dd8ba 1 Other Other +922bf0e6-e3f3-49aa-be14-426f4ad7ba1f 1 Other Other +922bf15b-af7d-4df8-b280-32a8da1c8fdc 1 \N Other +922bf604-0b9d-4e04-8c2b-237925c9f159 1 Other Other +922c820e-e2e9-4586-a8d2-121775bae77c 1 Other Other +922cda78-8109-49c2-ba56-bdd9882d1228 1 Other Other +922cdf1c-e0b8-4550-8bc4-ac15b3f6e1c2 1 Other Other +922cf03a-68d1-436d-9d02-60fbc7841536 1 Other Other +922d0a51-341e-4bcf-8b0c-d4e0ef91ce12 1 Other Other +922d3637-ead5-4a8e-91d2-d44ade854304 1 \N Other +922d67f6-7fcf-48ac-84a6-a29edcb3ac85 1 Other Other +922dad44-f323-438e-bf69-cd6d8c5d9890 1 Other Other +922dc344-51d0-47ae-9e02-b77ba3384f73 1 Other Other +922e1536-6da1-4038-8724-0c65910b1d89 1 Other Other +922e1d1e-8567-43cf-b60d-4427b6c3c87c 1 Other Other +922e4850-3862-4933-8e8e-0a3ad633aab6 1 Other Other +922e6edd-5a09-4256-9d6b-02f93358ffcb 1 Other Other +922e74b0-2b4b-47dd-bf30-7253779d7a5e 1 Other Other +922e85f3-8b1f-430f-93ec-266558dd08eb 1 Other Other +922ea6b6-acdc-4d39-aeaf-dbdd3eeaceab 1 Other Other +922eb39c-8e77-4da2-b5a3-bc4756094711 1 Other Other +922ed62e-f6dc-4bae-8745-3121dd9bbfe5 1 Other Other +922f4b95-6ff2-4d09-a2c1-76d1e3b8a178 1 Other Other +922f6428-1414-4c80-a16e-a0220a397ef2 1 Other Other +922fb100-449b-4e2a-b48f-eaba8da3e885 1 Other Other +922fbfe3-1bee-4373-ad6b-cfb5fac58bf1 1 Other Other +922fe616-52c4-4759-8b88-7d70266d2f79 1 Other Other +922ffc34-78e9-4cd2-bbc3-626ea3359984 1 Other Other +923059d2-5ee4-4f22-8b96-7c1b699ee062 1 Other Other +92306b63-1d04-4c16-bf0c-47733c5cecb7 1 Other Other +92306de7-b770-4624-b61f-5eab6d9a1dc8 1 Other Other +9230a6b0-97b3-454e-8725-ca94065faafc 1 Other Other +9230bce4-4bf1-4fa3-aa14-1ba8c49c55aa 1 Other Other +9230bdc8-c97e-4961-874c-9d93fd446f33 1 Other Other +9231752c-3977-4dbf-a9cf-9669988c812c 1 Other Other +923192aa-d8bc-4d7c-af2a-1fc335c829e4 1 Other Other +92320ccc-8cac-4846-882c-c4c137f59bad 1 Other Other +9232366b-9d3e-499e-becb-37110669ebe2 1 Other Other +9232986d-b218-496b-bac0-9cc09bf6661a 1 Other Other +92330061-8149-443d-9933-8ad9a2505bb5 1 Other Other +9233274c-7b42-4512-8bda-116a87cde746 1 Other Other +923337de-5e6b-4685-9f9c-1eddbe3d6865 1 Other Other +92335a5a-1770-48cd-b274-6a94d614b9e1 1 Other Other +923387e5-ebea-48c2-a9ea-c7ecc6de0a65 1 Other Other +9233e69a-ec6d-4884-b960-2f736fab2a08 1 Other Other +9233e90a-d49c-4088-b803-41ee04459c69 1 Other Other +9233ed53-4b76-4834-bde6-808a2b58d834 1 Other Other +9233ee6e-35fd-4e16-8dac-103fcd9a7740 1 Other Other +92345215-329a-42a1-9dc3-d5f0fcf13c83 1 Other Other +92345f93-dcc2-4d36-9b04-54d682539abc 1 Other Other +9234bcf9-1ecc-4c20-88cf-6d118580abff 1 Other Other +9234ce09-b9b5-4082-8db9-a5814ec68df8 1 \N Other +9234f111-089a-4fa1-91ca-aa8e409fd886 1 Other Other +9235609e-b53b-4b08-be4d-6e9a6303df67 1 Other Other +92358ffc-b50a-4792-ba41-02f98f16d67c 1 Other Other +92359e50-6293-49f2-93a5-eca469b5770b 1 Other Other +92361b6a-6e0a-4dbb-8ea2-0c448e35e977 1 Other Other +923634b0-fe65-4a7f-ae69-461eee4999f3 1 Other Other +923675b0-575f-4f00-9075-d747d222b95f 1 Other Other +9236c0fa-66ef-4f00-aaab-df79dc504048 1 Other Other +9236d723-083f-453b-9794-be55a2a4ad93 1 Other Other +9236fa03-6941-48fe-8bcb-0d5edb3828aa 1 Other Other +923715a5-202e-4ff1-9328-256d0ded6314 1 \N Other +92371a7e-53c0-497d-a9a6-1ff181d510e4 1 Other Other +923748e5-3c7b-464b-80cd-b88a402ef1ca 1 Other Other +9237ca3e-1123-4c6c-8b23-98f379a47d1c 1 Other Other +9237cbf8-600f-4d22-b8ad-fd14a3451df8 1 Other Other +9237d9a3-882c-4ff2-a64d-f325004eeebf 1 Other Other +9237ff6a-d4db-4b29-86f9-c62d94428eeb 1 Other Other +92381040-9195-4dd8-b901-b1aec9c39c0a 1 Other Other +923833b8-c002-4b67-9995-0a3f9e17ce6c 1 Other Other +9238822b-f703-4998-8f47-89b5091b0fd5 1 Other Other +92388a9a-89fd-40ca-a38f-b92224ae33f9 1 Other Other +9238932c-e815-4d4f-b858-14fcadf2a7a5 1 Other Other +9238b1d0-9d07-4fb4-8952-e808d6d68d03 1 Other Other +9238c2be-1302-4f1c-8f85-769c4b6509eb 1 Other Other +9238e96a-dbe6-487f-9b26-4353fa7a4aa8 1 Other Other +9239438a-81be-41ed-bad6-497851650933 1 Other Other +9239581e-6558-404a-a42f-142afd71e583 1 Other Other +92396d82-2a0a-4889-bc54-cd80faac8200 1 Other Other +9239a6b3-535f-4dc8-9dbc-a74afd44eb4a 1 Other Other +9239b213-a509-41fa-985e-0a3ff283f439 1 Other Other +9239d29f-af13-4b5a-9e5d-b2351b06a46c 1 Other Other +9239e94c-e4de-493f-8dea-a328125adcf8 1 Other Other +923a2e5b-947e-49ce-91d7-ef700dfa5b02 1 Other Other +923a39fa-e2a3-4e38-931e-21132ba6d532 1 Other Other +923a79b5-2c3e-4c8b-ba41-c967ba244275 1 Other Other +923a921a-8715-4581-976b-a644160a20f4 1 Other Other +923a9d91-f487-4467-b5ec-feae95d9c710 1 Other Other +923ac6ef-1b10-41c0-91d2-a48efd65158c 1 Other Other +923ae729-8a96-482d-a21f-b4c01a24bb5f 1 Other Other +923b039e-d897-4318-8adf-e5f50b93a362 1 Other Other +923b37ef-4c00-451f-8b36-079eb02e4be3 1 Other Other +923b39f2-b812-4342-8686-c4ecdfef57d1 1 Other Other +923b80c9-029a-4801-aa73-c0e5e42225ed 1 Other Other +923b8abd-c574-404b-98dd-0d7b3249d5ee 1 Other Other +923bf8a4-3479-496e-9d59-d0683489616d 1 Other Other +923c17f5-522f-4c7d-ba52-4df58009c570 1 Other Other +923c60e7-41c0-4713-9ca6-91f894692bd7 1 Other Other +923c64d3-8832-48d0-ac89-f560f9695e94 1 Other Other +923c88b3-4ca0-475e-b0c9-27af6dc3186d 1 \N Other +923cb369-642b-4a6c-b3ec-914faaa32977 1 Other Other +923cdaa1-ea0f-49ae-89d8-91d8d64acd83 1 Other Other +923d5806-0289-4b46-a8b9-3d9fafcc2db0 1 Other Other +923d6972-c850-4f24-9745-b810e4a7fe66 1 Other Other +923d8fc8-646d-4042-ab9b-6a8f830a0b70 1 Other Other +923da5bd-153b-4dc3-9ad3-8cf8c6a42e26 1 Other Other +923db0e7-d4ca-4fce-a8a1-2c254162f78b 1 Other Other +923ddc7d-d6a3-4d50-8e24-78c5a54da8cc 1 Other Other +923e0f70-d37e-45e3-ae59-eed97619ce53 1 Other Other +923e1284-e43e-4d5c-87ae-2338e3d326b2 1 Other Other +923e87a7-81c0-43ec-8757-1621067934f6 1 \N Other +923e947e-476f-4c3d-b12c-cc93adc90e32 1 Other Other +923ed9cc-fdf4-4783-afc8-0d81be37e193 1 Other Other +923ede8a-00b0-49d3-a93b-41f461158284 1 Other Other +923ef73e-549d-4851-afe7-f95bada32011 1 Other Other +923ef8e9-797b-4891-a858-d6e6ba402af3 1 Other Other +923f201e-0bd4-4e98-a5df-423e00c0b8df 1 Other Other +923f3d07-cc2e-4194-8d1e-a2119fe9eb2b 1 Other Other +923f4ee4-f161-461d-91e0-b9bbda85ed74 1 \N Other +923fa189-75eb-4673-818e-b24859a52b22 1 Other Other +92402967-6578-43b2-bfaa-cfd6d891a8f5 1 Other Other +9240a8fc-8281-4206-aa2c-e09094153edc 1 Other Other +9240c4a3-8abd-422a-9aa0-93c63af9d61f 1 Other Other +9240d2ac-acff-4924-bb5b-f6d6564dd730 1 Other Other +9240ea2a-6872-4020-8010-6d1e308f183f 1 Other Other +92411d4d-3d3a-4d05-be7d-f04c4a79c023 1 Other Other +924121ab-0a71-44fb-90da-77fa89509f92 1 Other Other +92412903-1ae4-45bf-afda-7e4fc363a50c 1 \N Other +92413f12-f0ac-4d6e-8a3c-d76bed0b039b 1 Other Other +92414ab7-5112-4165-a820-7194f3559f18 1 Other Other +9241be2a-2c74-4759-bb71-9e7d1d95cf9d 1 Other Other +9241f767-7ec9-438e-b4d4-299635c9c100 1 Other Other +924215a5-c643-49bb-b6c9-cf7a3c725ca8 1 Other Other +924248b2-0274-4c22-92c0-e90d9ae46de0 1 Other Other +92427eb3-be66-43e6-a953-83910e83d452 1 Other Other +92427fd8-3853-4a64-8e39-e46e28c9e78c 1 Other Other +92429411-b91c-4e25-af08-e453c47e0a61 1 Other Other +9242b3c6-a7a2-4825-b442-6578ce48e014 1 Other Other +9242d5c2-b687-4148-a378-5797fda72786 1 Other Other +92430d0c-2cff-4a82-8dce-852fd6a4519c 1 Other Other +924341cd-ec9a-4927-a8e8-917a9fd218fe 1 Other Other +92435078-63d0-4052-bb58-a2c85c5d96a3 1 James Other +92439860-a84e-4a3e-86f4-7b2235c5a53b 1 Other Other +92439b15-2b90-4e0f-b698-9585540f9701 1 Other Other +9243bb14-1e1f-42aa-b8ed-5bb42b42f8df 1 Other Other +9243f376-ed02-4334-9971-039e88586fe3 1 Other Other +92440771-566f-459d-ad13-f71ab6037f48 1 Other Other +92442eff-7a03-4b28-ac3b-8d036e64dde7 1 Other Other +924448fb-ef1f-42c1-ac73-a32a42944116 1 Other Other +92446743-4d2e-4d0d-8f75-4d77e776b498 1 Other Other +9244767e-ef1f-47a8-9439-27809db127fc 1 Other Other +9244f5e2-7f95-498c-9d74-621e6ab8e31e 1 Other Other +92451c1e-dd1a-4cf4-a670-b6ab432d34e9 1 Other Other +9245450e-00d4-4abf-bd3d-44f1cbadedb8 1 Other Other +9245543d-58e0-4232-9020-dff3b5e26678 1 Other Other +92456ac5-7567-42a4-87d9-c11e0bb85117 1 Other Other +9245f3bd-e4ce-41f9-9306-57641f830284 1 Other Other +924646a5-c1ab-4c43-a3cc-c2350397a427 1 Other Other +92467eea-4c75-4565-b47a-72aa1a983ad0 1 \N Other +92468d9f-8ab0-4eb0-bbab-4490874a325e 1 Other Other +9246a9a2-458b-44e4-a8e5-8286da23d4a6 1 Other Other +9246cc77-feee-4e2e-9481-a134f7c2abd8 1 Other Other +9246de96-00ca-47c2-b8f8-061a4949b66a 1 Other Other +924728a9-114a-4e5b-860a-fc413c82f6e9 1 Other Other +924763ab-4efe-46bc-adeb-95ffcd40f42c 1 Other Other +92476fc1-a801-43f9-9886-2ca4f5625d7e 1 Other Other +924795e9-ea3f-4b6d-b10b-d5aa28f3db9d 1 Other Other +9247a7a7-ae5c-41fc-b8ad-592115a4f9f4 1 Other Other +9247b5bb-3e57-41d4-8bc3-38762568c974 1 Other Other +9247d706-29fb-465d-af1f-edd13e9fc440 1 Other Other +924894c3-ec91-4213-969c-7d6f06d3490e 1 Other Other +9248bd3f-7718-4714-87e4-a42a6f14d3e8 1 Other Other +9248edf0-38a4-4ae9-a8ae-7b0d2c46384c 1 Other Other +92490176-fa1f-4394-aa0d-5c03a2f04582 1 \N Other +92490a60-43b5-404d-97c4-9a1a60662216 1 Other Other +9249331f-29f9-4baf-9bdb-74864c804dd1 1 Other Other +9249343c-b260-47ee-875d-f4c10cbfa4de 1 Other Other +92493726-153b-450d-80a8-24c439fe940b 1 Other Other +9249569e-e8b8-4d77-a62c-1758ae3a210f 1 Other Other +92496a29-b896-4a1e-9121-5c6d315e4306 1 Other Other +924987bc-bd49-40fa-936e-1f6cac121175 1 Other Other +92499f14-9d0f-42cf-8fa1-1d6337afb44c 1 Other Other +9249a37c-4b46-460c-a053-bca163ae0b2a 1 Other Other +9249a88a-db9b-44fd-a3ca-f7f061c175a6 1 Other Other +9249d4d8-da2f-4a60-8e70-ab02b3380159 1 Other Other +9249eddd-de44-4b40-b169-ff82e4d5c067 1 Other Other +9249f0d5-9ecb-40d9-b9aa-2e805ddf4923 1 Other Other +924a10cc-20e6-48d5-b043-e9104dccd34c 1 Other Other +924a482c-df97-400e-a5e7-4dc301dd857a 1 Other Other +924a634a-9a5a-4185-879f-3c0f84d21be4 1 Other Other +924abe5e-ba96-489b-9918-033b6acc59ef 1 Other Other +924ae083-c857-47b4-ab01-c4be9e914d05 1 Other Other +924b2233-ccbd-49de-a21a-e40f5d55032a 1 Other Other +924b44f4-1c8b-4a01-a815-ae820f79f59d 1 Other Other +924bad23-67fc-4ca0-918b-d7ebf3ba2137 1 Other Other +924c34fd-1fd4-4033-b6c9-8f72559fa7c3 1 Other Other +924c426f-c511-4eb0-b1ba-085b3c80c0e3 1 Other Other +924c6dde-c611-4316-ac39-fd092430ff9c 1 Other Other +924c9425-c0e8-4730-8705-451287e1e247 1 Other Other +924cbe58-adfa-4364-acce-e07992a79184 1 Other Other +924cc807-a4e3-460d-8cf7-1abc56477989 1 Other Other +924d19e3-22df-4ca2-b1a5-42e68fa279e3 1 Other Other +924d5274-76ca-4b19-9077-a622083bc917 1 Other Other +924db89b-7c54-41db-8834-591c9ef87c20 1 Other Other +924dc359-6df9-4a91-8e38-f4e65f5563ee 1 Other Other +924e21b3-a35e-4e49-9da0-82f5abfa0d2f 1 Other Other +924e3c70-2a0d-4f86-979b-e1373e384722 1 Other Other +924e4e1b-532d-474e-a322-58d591e48b5b 1 Other Other +924ea1b2-1787-4cdb-b3cf-540518347688 1 Other Other +924ebf21-4106-4c4d-8e35-a3b2f08e2292 1 Other Other +924ef0ca-45cb-4cc0-88f1-01a5e748d5e5 1 Other Other +924ef70c-84a3-44be-8dde-27964b308780 1 Other Other +924f491e-ba03-432d-8437-965826c2631c 1 Other Other +924f728a-78f8-4491-9876-77592a3b0c5a 1 Other Other +924f8ab8-5711-4da9-87a5-26a7ea3a74aa 1 Other Other +924fd08b-12bd-459e-bfad-82ecb6590603 1 Other Other +924fdedb-e3da-43fa-a1ef-5bc08fcd41f6 1 Other Other +925044c1-8e58-4946-896d-905664ec2ee3 1 Other Other +9250702a-6f6b-4c72-95d9-ac5ff6f0c61e 1 Other Other +92509b9f-b0fd-4263-8de5-a24ab6e64d62 1 Other Other +9250a4e5-6312-4ec2-8b2f-592cc8d9692e 1 Other Other +9250d43a-4e98-4c80-81ef-b9e1a4cb7cc3 1 Other Other +9250df72-0ca6-4234-983f-7a64e86f6614 1 Other Other +9250dff7-03f3-4987-86c5-6310d08297ef 1 Other Other +9251267a-fdaa-4e16-91c0-e4169ba853c6 1 Other Other +92512f75-95ad-4f50-a627-a7b6d3d78a92 1 \N Other +92514bb5-9c16-40bd-ba60-ec9abebf7bf8 1 Other Other +9251788e-60df-421a-851e-9d19096fee2a 1 Other Other +925178b7-e05a-4042-ba4e-ffe6276c374b 1 Other Other +9251893d-add9-47f1-a871-6af3b676372b 1 Other Other +92519705-2b6a-427f-83c7-30031ce8a39c 1 Other Other +92519930-5979-4db5-aba7-dfdbee65403c 1 Other Other +92519fbc-5c74-4093-bf44-0a20a813c7fa 1 Other Other +9251c316-3d6b-4348-a156-d3ac09daa2e6 1 Other Other +9251e684-6b88-4713-a038-f41c422bb5a2 1 Other Other +92521aa8-b295-4e2a-a4f3-b5b0e1dd80bd 1 Other Other +92521ad0-fdb9-4029-bf24-a7b7597ebd6e 1 Other Other +9252261f-f984-4749-b7a2-d11719a58b5b 1 Other Other +92522f99-251b-404e-b7b2-94e052d4ab35 1 Other Other +92523059-ac90-4df3-b326-756cb543c7bf 1 Other Other +92525a5b-6bc3-4184-96fb-995f16700b78 1 Other Other +925262cf-f816-4a27-bc64-d43052bcd71e 1 Other Other +925273de-cb39-4d51-9101-76e0fedfd53b 1 Other Other +92528b52-ad09-4b64-8cd3-0a636ad203d5 1 Other Other +9252c599-a413-4a4b-984c-aa90e0bef629 1 Other Other +9252e302-5655-405b-9707-9288b7913566 1 Other Other +9252ed15-17e3-4920-b319-2e359a72e481 1 Other Other +9252fad1-a385-4518-bf7c-612b132ca45b 1 Other Other +9252fb86-6c72-473b-ab9a-c6465e68cf96 1 Other Other +92531330-b863-4aa9-b6a1-c1755a0c8ae2 1 Other Other +92531a7d-77a3-4ac5-9b3f-367824f2ed03 1 Other Other +925343c1-d633-45f6-ad2d-23963acc2134 1 James Other +92534a5b-b0a1-438e-8002-2c526b3ed9d1 1 Other Other +92539167-f896-45e0-bca0-ae6f435e7bda 1 Other Other +9253a23e-b85a-4017-9093-15b021293eb1 1 Other Other +9253f6ae-43ba-4217-be3e-72c48cecaf2c 1 Other Other +92541f53-bdd6-49eb-84b1-bf3b6be5c6d9 1 Other Other +925472f8-5687-44db-9ef9-ce9858b8afd3 1 Other Other +9254de74-78b3-4474-80f7-01411978b129 1 Other Other +9254e55a-45b3-47ad-ba1b-25439b26cddd 1 Other Other +925500f0-b806-46a5-8505-7f9aae04aab9 1 Other Other +925529a2-8e73-46eb-b374-8c7597d8f149 1 Other Other +92555f13-67c9-42c5-ac10-c7ee9a32ef86 1 \N Other +92558a29-b237-49cb-8532-88c89bfbd2f0 1 Other Other +9255bc80-217f-4a0b-9baf-9653efeb53fc 1 Other Other +9255ff1c-e2d0-4ee0-87cf-6a9496cecefd 1 Other Other +925630eb-756e-4d5a-8cda-fdc68c667ad6 1 Other Other +92565f48-4e00-42bb-9703-dad862d675f8 1 Other Other +925663df-5afc-4293-aa00-5695d07bc792 1 Other Other +9256b55a-8c2c-4e92-830e-1ef4722f6453 1 Other Other +9256c2d0-d29d-4405-bbc9-8d2789080575 1 Other Other +92571287-d7e3-40d2-b8ca-c190e7556fef 1 Other Other +92571308-fbf2-4398-a6ce-cbfbab9760f4 1 Other Other +92571df4-70d6-4215-b521-c33ddcacf0c4 1 Other Other +92582737-39a2-4681-a1fd-91662e76d518 1 Other Other +9258bb74-6bb7-490d-9731-6fa1ac0753f8 1 Other Other +9258dc8d-3c5f-40e6-93cf-0804bd731288 1 Other Other +9258e5cc-3244-4865-aeef-8e30608d288f 1 Other Other +92594bec-b893-47ea-971a-0e950a70a45c 1 Other Other +9259ca40-836f-49e1-b588-6b6ef9cd566a 1 Other Other +9259d98d-169b-447c-af34-e7ddec871a1a 1 Other Other +9259fb25-73c2-4743-8042-fa2305e09fdd 1 Other Other +925a1dd4-6af3-44e5-a010-646d5f93b0d4 1 Other Other +925a61d4-0ff9-4aec-9358-98788a6078e6 1 Other Other +925a6efb-e5ef-44ff-ae2c-1400c57212de 1 Other Other +925a7138-ec2a-4ac3-8c1a-67dbb60bfe00 1 Other Other +925a85ae-c9b9-4ac3-a4b4-78aa67e73356 1 Other Other +925ac9f9-0920-4fe0-b7f6-227eae352d42 1 Other Other +925b03cb-15ca-43c1-932c-e61cdd3da48f 1 Other Other +925b4015-7f1e-4a0d-a28d-96834a919bf7 1 Other Other +925b96c7-c78a-4638-9a95-1c50b98daa77 1 Other Other +925bab1a-d9de-4adc-a1b1-b37691fec756 1 Other Other +925be4ec-33a0-4847-a48b-5e6535237c73 1 Other Other +925be59d-7b28-4bd5-be48-bc991a9c3451 1 Other Other +925bf9ff-a950-490c-b580-c73c098bda3b 1 Other Other +925c1b92-1164-425b-9349-4fa35830beff 1 Other Other +925c21cd-a2fc-4aab-95c4-19c1c5d47830 1 Other Other +925c49a2-535c-41a9-97be-67d96b4b2690 1 Other Other +925c49da-9a3e-4eb2-ae5c-b92068d9a12a 1 Other Other +925c543d-1977-4811-af5f-ec8ac2b61950 1 Other Other +925c6d79-7348-48ee-9f84-e7e95cf99163 1 Other Other +925ca481-57be-4b1f-ab20-53747877ef36 1 Other Other +925cb792-3840-4e76-b883-30b0dc5b4358 1 Other Other +925cd29f-3395-4a5b-9609-22db90dd03c2 1 Other Other +925cd3e9-5e00-4186-bb9c-477a3fb68625 1 Other Other +925cde76-afb8-4222-b338-76c790aa577a 1 Other Other +925cf66e-a3ce-4dcf-9229-72d3d8bb664e 1 Other Other +925d1b0b-f4e4-4804-9bd9-30b8ff9bdd12 1 Other Other +925d4e24-f57d-4cba-b30c-9897bbc3f5c6 1 Other Other +925d52bb-8ac3-45c3-a945-e4f46ae0657e 1 Other Other +925d67ad-44d2-4a60-ac01-76e40ab524cf 1 Other Other +925d8ebc-3cac-4b3e-8620-ac699f729f4f 1 Other Other +925d9054-488e-487a-8c24-f9ce148347f7 1 Other Other +925d95e1-aea2-41ee-8630-3575e826ea58 1 Other Other +925da35c-0598-4055-a1e1-edf3a6b8ce57 1 Other Other +925daade-08bc-466f-b6b6-0b31562fc040 1 Other Other +925dc338-af21-4817-aa20-490b04ac5ff6 1 Other Other +925dd929-e68f-44bc-b2d4-c0274ac6bccf 1 Other Other +925dffa0-98f6-4657-8d46-97b8d56d9ad8 1 Other Other +925e1000-d951-4ade-9f43-ec3d5194470f 1 Other Other +925e172a-0db2-4df8-a57f-3532e1d0afa2 1 \N Other +925e21c6-5021-44a9-af1e-9cc985274209 1 Other Other +925e4e15-4cf9-472d-b13f-2fcd7c730dc6 1 Other Other +925e907f-39a1-4790-bab7-d5a9c11145e3 1 Other Other +925ec3cb-a25f-4e65-bb76-a83eb7512c6c 1 Other Other +925f521d-5519-45d3-8757-907f44fbb1f9 1 Other Other +925f867b-e2b0-4bf8-bb52-23190d9a4824 1 Other Other +925f8708-fc28-4f87-9cca-995de9465b5e 1 Other Other +925fce67-5660-46d8-9187-a5ac86d63a9f 1 Other Other +925fda25-602c-4dda-9e78-b39c499cecfd 1 Other Other +925ff794-110a-4ff6-b6e5-3d4f23f8f409 1 Other Other +925ffe29-3a7c-4a0d-8de2-531ab633dbb3 1 Other Other +92611d10-59ab-4112-b1f9-3f04b0714f7d 1 Other Other +92612ea8-d63b-4b1a-91c7-606a075cf855 1 Other Other +92616967-b332-4e9c-b6fe-4469e5a0dffa 1 \N Other +9261712c-4ff1-498c-ba7e-229a50afddc1 1 Other Other +92617f11-c8f6-42e8-bc94-62c3072ce154 1 Other Other +92619e7e-6936-4811-a1b3-7d972099fc94 1 Other Other +9261ca5b-b712-4b4c-ab12-b96ddbb22d23 1 Other Other +9261de50-0c94-4445-b0c4-e9430fa8559a 1 Other Other +926223b8-647b-4909-9a58-6dca54f2a391 1 Other Other +9262a822-d86b-4b43-81f4-d4b7e3e0e70e 1 Other Other +9262d505-cff9-464b-ab06-919542dfe97b 1 James Other +926346e5-7b8e-4d9a-b07f-740d5c7146da 1 Other Other +92637296-978b-4622-8e7a-15344df559c6 1 Other Other +9263ab97-2880-4ac7-a995-3f93bad8ffe3 1 Other Other +9263ad5c-231d-4420-aa96-e8e002c778c7 1 Other Other +9263d945-84a6-4532-b8f1-af4eb2ff60d7 1 Other Other +92647904-f22d-490c-9f65-c4c95b8774b4 1 Other Other +92652eb2-842e-4615-988e-983108691ca1 1 Other Other +9265429c-9f7a-4e28-9662-a397abcdde1c 1 Other Other +92654e00-782a-40fa-ab5c-b6804fb63a1f 1 Other Other +9265a2f1-83d5-45bd-ab9a-fd1b2457059e 1 Other Other +9265b08f-9ece-4860-a38d-0b6aa7023a08 1 Other Other +9265b354-9212-4d5e-8c6b-3132281a008d 1 Other Other +9265de42-8695-4572-a58a-aaf2359f9859 1 Other Other +9265f20b-2f94-4641-bc9c-22d7988ac036 1 Other Other +92662465-703e-4ed2-8b5c-35431f5ed25c 1 Other Other +92664250-a353-46d5-a009-c99537479f02 1 Other Other +92666beb-ed95-4524-964d-ca0e1d815d01 1 Other Other +926693ba-a90a-48e6-8f9a-94bb74e8e92f 1 \N Other +9266f094-4463-4b36-b2a2-6113f31a5ad2 1 Other Other +926730f8-941b-413e-bc18-d4e4a8496f2e 1 Other Other +9267d4a5-f12a-41aa-b9c7-a0b1d31df4ae 1 Other Other +9268501d-57d5-42dc-83ed-e0214b6e7de0 1 Other Other +9268537e-209d-4caa-b176-f25522ca0ff1 1 Other Other +926854d8-51e2-463e-8a8e-4dcca23892bc 1 Other Other +92686d0b-d615-4322-9177-56561a014850 1 Other Other +92688e75-2e4f-4ae6-aab8-c0999df847a4 1 Other Other +926897bb-c6b2-435c-a551-ddab25136b48 1 Other Other +92689aa0-7065-4c75-8f55-1ba16de46471 1 Other Other +9268f08e-21f1-440e-9e6d-7aeb0810704c 1 Other Other +92691084-03e2-4f12-90a1-30bca80488ef 1 Other Other +92694686-3f91-40e0-8cfc-faf09088bd93 1 Other Other +92695549-e7bc-401e-8aad-7b3ad8914a3a 1 Other Other +92697929-61b2-41a0-9c5c-7fb02559b77d 1 Other Other +9269be22-8300-48fd-ba30-331672b4b853 1 \N Other +9269dd1e-9559-43e8-84a5-c0da5f150139 1 Other Other +926a4d97-ce72-40ed-a994-38b5df7827ca 1 Other Other +926a6e34-5aec-4ecf-9b27-9a6872a39666 1 Other Other +926a7a1a-712e-45ae-a89c-284bd3c3119e 1 Other Other +926a9364-8cf3-4170-9ee9-17ad755566f5 1 Other Other +926afe45-4506-4cd6-8dc0-fffef44b8000 1 Other Other +926b1e44-685a-48c3-b3bb-16eee6aedb35 1 \N Other +926b2948-3200-4067-80c3-3ed9b14e2874 1 Other Other +926b3aa1-bd4a-4ec4-9719-dac701ebbb67 1 Other Other +926bc602-54c4-40b2-9261-0e9d8582fb5a 1 Other Other +926be2a9-b9be-453e-8fbc-bda2091db1d0 1 Other Other +926be925-c733-43ef-8939-f433695f623a 1 Other Other +926bef46-b9ae-4c4a-b4f2-391d0db8b1f1 1 Other Other +926c2454-361d-41c5-a06d-943f84481a61 1 Other Other +926c4093-e5a7-4f3d-b793-f4e012c8ce6c 1 Other Other +926c7f22-7fe1-4e4c-95cb-389f4af9be53 1 Other Other +926cc90f-38d3-4430-a112-f17efc9d20da 1 Other Other +926cce29-bd21-4e2a-9987-ba63d4ca093a 1 Other Other +926d71d2-969f-4175-b474-ce76bd240096 1 Other Other +926e6334-d6d6-4bac-a658-e735d3a09601 1 Other Other +926e6b7f-d1dc-45de-8d4d-22191cbb810f 1 Other Other +926e8082-65c7-424d-8f4f-65df3f0ce962 1 Other Other +926e8384-e13e-40bd-89b5-bf598e1746c9 1 Other Other +926eb415-2dec-4c02-b80a-2986c553bb06 1 Other Other +926eb621-c3b8-4b08-9168-8cd5b8aa29a0 1 Other Other +926ed1b7-3f5f-4df8-8d5e-7ca4ede81869 1 Other Other +926ee1d8-7f45-4d0a-bbfb-7b6ff2680219 1 Other Other +926f3f39-99ca-4cdb-a66c-2764ef81b3a3 1 Other Other +926f653e-3fc1-43e7-808a-fc9e884bf1e1 1 Other Other +926f9c0f-bf42-418c-8a6f-f93b1b5bf165 1 Other Other +926fb444-8fc0-4175-8373-84257d7de8b3 1 Other Other +926fbef1-35e2-45d4-b62b-bb80c9d3c7d3 1 Other Other +926fded2-907b-47ea-b127-9af0e505764b 1 Other Other +92701883-580c-40fc-a9b5-171f4e65a641 1 Other Other +92702b61-6d73-48e6-bf58-fdbef3dbca00 1 Other Other +927048aa-f2d5-4afd-bad6-5b5925701995 1 Other Other +92706c19-87db-4c86-b0e7-45ea852dcfb3 1 Other Other +92708301-ac2d-489a-84b9-59ba94ff199a 1 Other Other +9270bda0-8409-4977-9135-e81bf9f88470 1 Other Other +927124c4-914d-4dd9-ac2b-0cbe6b157dec 1 Other Other +927196c3-158c-4308-bbb7-5ce648cc1b36 1 Other Other +927199bd-1b9a-4152-83af-e1d9bbc6e4a1 1 Other Other +9271ac08-69c5-4333-be87-23113b7a4948 1 Other Other +9271b044-cb6a-4258-8f19-501232f49603 1 Other Other +9271c9d3-e93d-4c59-9705-13907fb1daf4 1 Other Other +927225fd-bd67-45bf-8abf-bb6a19ead958 1 Other Other +92723d41-b50e-439c-8cd9-e2a3a5d55642 1 Other Other +9272a324-0251-461e-9774-0fd549ad4245 1 Other Other +9272bc1b-1d6d-485d-997c-8460c1108c5b 1 Other Other +92730dae-b46d-4a42-9e3f-851228e34abd 1 Other Other +9273223a-8e34-428a-bc0b-33f75437b921 1 Other Other +927333e0-f570-4a4d-b9d1-7a24471d0aa4 1 Other Other +927404ee-e09b-4f04-94b4-86a757d92ce8 1 Other Other +92743198-2719-4320-a8ce-833d559ab096 1 Other Other +9274839c-e240-4313-a95e-61d7a3cffeae 1 Other Other +9274870b-e752-46b8-8a06-d943c02f528b 1 Other Other +92749164-929f-48f7-a9d8-49dcc477391d 1 Other Other +92749945-c42f-445b-a6a8-a05f8036958a 1 Other Other +9274bf47-b209-4ef5-94a7-4f35a361562e 1 Other Other +92751e8d-46e6-4762-ba5a-520d36c4aca4 1 Other Other +9275e25c-f47f-48ff-8231-6cacc405894c 1 Other Other +9275f6e1-f40f-4007-81e5-3cbad0a2aea8 1 Other Other +92761f5b-af93-4c44-9cde-8f83243386af 1 James Other +927643cc-7f3d-409b-9d3b-5561995f71b3 1 James Other +927658cc-7fbd-48ff-9324-a96fc401693c 1 Other Other +92766285-c88c-4b70-90f9-a90a3f7922cf 1 Other Other +9276ad74-ac4a-455e-a9f8-678461908efd 1 Other Other +9276d651-a209-4be1-b28a-b33e79242ab7 1 Other Other +9277755e-ce89-474c-b3ab-4e78f1baff7d 1 Other Other +9277c123-b2b4-4791-ad2b-aa203fa87b97 1 Other Other +9278055e-1bfb-492d-9fb2-ffdab85291b0 1 Other Other +927821f8-91eb-499c-a4e7-0b291ba16624 1 Other Other +927831b6-0d9c-4e33-bea1-64263bfb2e71 1 Other Other +92785a81-19d0-40d1-8727-d3b93dcee0e1 1 Other Other +927883ea-94a6-48a7-a079-5a986de5d71d 1 \N Other +9278a87d-a286-48e0-a533-adad343696e9 1 Other Other +9278ac25-1af8-421a-a41a-6a7564fa04ed 1 Other Other +9278db91-b5c8-4614-bc8e-f15748f12a6e 1 Other Other +9278f970-c91b-4738-bc72-5dcf8771f01c 1 Other Other +927908cc-3b14-4294-a974-d0577879e41d 1 Other Other +92792477-de2d-4886-bf07-58ba3f51768f 1 Other Other +92792bcd-47a5-473e-b4d3-8e28b6781073 1 Other Other +92793765-271f-4f10-9b86-f1f7af966993 1 Other Other +92799f94-93e0-43e2-9eae-6f6e93612018 1 Other Other +9279b270-2e53-444e-8bc6-1f60d43bb85e 1 Other Other +927a068f-0d9c-4b0a-b654-773d26b3d9e3 1 Other Other +927a4a0a-925d-4f57-8012-0342fcfaf4fc 1 Other Other +927ab7eb-fd16-4df9-a773-b4ea7e0b5a49 1 Other Other +927ad031-bc7f-4cf3-bf63-9ff108394778 1 Other Other +927af618-d886-4118-91a2-2f6fe32486d5 1 Other Other +927b34a9-1ff8-40c2-91fa-864a4ece2257 1 Other Other +927be3c4-284e-483e-8879-cb06d6babcca 1 \N Other +927c43f3-0103-4fe0-b29f-3b04627669c2 1 Other Other +927cb8c6-0b22-465f-94c2-2c3dc72aa134 1 Other Other +927ccb5f-e32c-41f5-847e-9577139a49c7 1 Other Other +927cf9f9-9b0c-4ce1-931a-6e0c6e2a3da3 1 Other Other +927d05db-4d73-4745-8d9f-067deee94999 1 Other Other +927d1925-8f39-4d2c-aa3a-41a0bbd0d493 1 Other Other +927d3b7d-8641-424b-a19f-121b164be00c 1 Other Other +927d7219-3f03-43bc-a8e2-685446088c4a 1 Other Other +927da8f0-9190-497e-b388-c771c64f3d94 1 Other Other +927db866-e6b5-4fa2-9190-f442da26b781 1 Other Other +927dba86-beae-45d9-abed-aacabf53ac92 1 Other Other +927dd3be-c69b-49f5-ac5f-f2e7a0f6eb1f 1 Other Other +927df5ce-c5fc-4d9e-84f2-07e3ce1f99d9 1 Other Other +927e0ab1-58f3-49ba-be29-6bd90e522565 1 Other Other +927e5c0d-5575-470e-86f8-d52c459bdad6 1 Other Other +927e9f6a-a7a8-4a25-b262-a146bca7ec26 1 Other Other +927eab5c-1f4e-435a-bf50-0c3fb00e9c3c 1 Other Other +927ec762-4c0a-405c-b440-349462436c8a 1 Other Other +927ed46e-efe2-4214-b597-988523d51a4a 1 Other Other +927ef5fd-6581-4e97-a6d6-b5063069f8ec 1 Other Other +92804031-3838-4c06-9094-6bd234edc8ee 1 Other Other +9280d460-00f0-4de4-9687-7d11106bafa0 1 Other Other +92812ec6-b914-4110-825b-b39d3a831f4d 1 Other Other +92814b78-b7f5-4c9c-a05a-40dd63cde821 1 Other Other +92816283-0be4-4003-8690-d30080b7699b 1 Other Other +9281fe68-05a7-446c-94c5-0a19f86b9c8b 1 Other Other +92824c91-0992-4540-aab8-732ef15cbf2e 1 Other Other +928250a6-f0e0-446e-b2cc-7094dcdd419f 1 Other Other +9282738e-053d-4e07-83d4-a2ce98487247 1 Other Other +9282b6f4-4fea-414a-844e-a000f8d522ba 1 Other Other +9282ea46-f5c3-4f06-9d3d-c0572b4ea517 1 Other Other +9282f459-6f0a-44ab-8d2c-2d342c9c8c91 1 Other Other +92832bae-6f81-4208-b224-7e849d901c9b 1 Other Other +92834428-c3c1-4ec5-96f1-d18fd06b31aa 1 Other Other +92836d31-c03e-4760-899d-e63075663fdb 1 Other Other +92838a23-bed8-4f2d-bcd5-011d29cdb002 1 James Other +9283b95e-0051-4677-be03-eaea278cfd87 1 \N Other +9283b9f5-1ec1-42ae-bbcb-b45637efb657 1 Other Other +9283b9fd-f196-4356-a164-58479f3722a5 1 Other Other +9283ec78-81a7-44d2-bb34-37af01e1a6e0 1 Other Other +92841a0a-bd6d-4031-83f6-555f17d25eb9 1 Other Other +92841e40-cf9c-4e37-bde5-f555b90da646 1 Other Other +92846a4d-b4b9-4224-8f7f-4488c59b2548 1 Other Other +92846b51-0bbe-4368-b1cd-338a79a1c96d 1 Other Other +92846ec9-575d-411b-95a7-248b849e17b1 1 Other Other +92847797-0058-4e56-9a0a-c0763a43d8f5 1 Other Other +92847b72-7adf-4ac4-80a9-0c43ca77c198 1 Other Other +92848fa3-4934-4ca5-bff0-59f1e62c2290 1 Other Other +92849bc3-cd29-4237-834a-0b8b41f566d8 1 Other Other +9284a42f-9739-40bc-a1e2-443fcc89fb76 1 Other Other +9284a83d-7832-4421-85a4-4666c38bc29a 1 Other Other +9284acf2-55a4-48ce-aca0-2b9b92ef2ff9 1 Other Other +9284be63-a32d-45e1-99b7-6946cf94e1c4 1 Other Other +928502b4-5454-44de-b382-07de25d2d4f1 1 Other Other +92853b74-c550-4e9d-8273-ced114e0913a 1 Other Other +92854af0-c8de-44bc-8eaa-079082b710b5 1 Other Other +92856a0b-39a4-4938-9dee-3328f746a78d 1 Other Other +9285af91-34fa-4a1c-a252-bcc0777978ee 1 Other Other +9285f2fb-d51b-4537-a8e5-63b9dfc39c6b 1 Other Other +9285f5bf-f020-44d8-bfa5-cdcdd01c3112 1 Other Other +928618ff-0dc8-4977-a219-27eb009d2925 1 \N Other +92862041-68f5-4157-b791-e33cc7fbaf20 1 Other Other +92862c0f-5e42-43da-a4d4-d7c45111f1cd 1 Other Other +92867f0d-7e7c-4cd3-b315-8ec98c477aba 1 Other Other +92869f4d-fb9a-40e9-8a4d-1baff31344ac 1 Other Other +9286d005-e81b-4cb9-84bd-09689ba69949 1 Other Other +9286ee29-a031-45c9-8a8a-6cf3c832ecf1 1 Other Other +9286f6ce-a9fd-4e6c-96c0-5934c6e84adb 1 Other Other +928747ed-1dbc-43ca-8654-c7efff8226e1 1 Other Other +92874b35-c6ca-435f-b7da-e08ff94055ba 1 Other Other +92875e8a-6554-4f56-9195-5a6aabbb5223 1 Other Other +92876ae2-37a1-4506-a27b-e7b80bd3f42e 1 James Other +92877f99-61b0-4b8d-b166-96c533dfe2a1 1 Other Other +92879cb6-4a5a-4f6e-ac75-04db41b73871 1 Other Other +9287cd52-ec05-481a-b48f-adddb0344f33 1 Other Other +9287f656-c91b-4bac-93be-4f32b8080639 1 Other Other +92884872-ea1b-45ac-b624-4e8f603457cd 1 Other Other +92886222-f4d5-40d0-b583-c259ac967be1 1 Other Other +92887151-c571-4812-b416-3323b06ca690 1 Other Other +92887c4b-5586-48c1-8a8d-674f18c4da60 1 Other Other +92887f3c-b088-4f46-bc2e-3a84d21438b3 1 Other Other +928896fd-7bd4-44cd-816a-ede986fd6800 1 Other Other +9288b307-4e96-458b-82bb-fc84903ce55b 1 Other Other +92894922-a1a9-4c01-befc-79a06089b8f1 1 Other Other +92896c58-8ddd-47e3-b26e-4f14421f2511 1 Other Other +9289a66b-0e8e-4155-813e-67434028ac6a 1 Other Other +9289f914-8028-4011-93e4-f0c5ecb7d075 1 Other Other +9289fd7d-f2b0-4861-b362-55fb5d9f175e 1 Other Other +928a0165-204b-45fc-affb-90cd5b9618f9 1 Other Other +928a6d6c-09af-4f4a-ab10-0834c9736531 1 Other Other +928a9c0e-d362-4015-bc89-b4a528f22dca 1 \N Other +928ad36d-8b31-46ed-8eba-c22068607956 1 Other Other +928af549-607d-427b-a717-d1705a758e98 1 Other Other +928b1618-85c2-4aa8-b5c6-dcabc196f727 1 Other Other +928b217c-6952-4095-aff0-1f970dfa2a23 1 Other Other +928b540c-7817-46c6-9209-1f3323cb7a0f 1 Other Other +928bcd69-a9d5-49d0-96f2-89f3642e4867 1 Other Other +928c2a36-9e92-4b5f-a0f3-f223616a1e96 1 Other Other +928c3b30-1d04-44d9-af2b-4b87b7aa3be5 1 Other Other +928caf6a-c940-4171-b947-ad2563925f0a 1 Other Other +928cd853-44b8-4032-867c-c022bf7e384c 1 Other Other +928d45e9-8fb3-45f9-8631-30b802680f68 1 Other Other +928d46ad-8e6a-4f82-b0d2-657aa6009bb9 1 Other Other +928d5ec7-b940-4238-a5aa-cf31b68f4d44 1 Other Other +928d8f33-13d1-4a36-81de-1075aa85a443 1 Other Other +928d97c3-9844-4bf6-940a-f53ce36fbb7e 1 Other Other +928d983a-55ac-4c08-9811-36f292d44363 1 Other Other +928db2ee-3f70-4d54-9d57-aeadcdb86024 1 Other Other +928dd4a2-1e2e-4a53-a7a5-d98798cdf15e 1 \N Other +928e2dd2-4fca-4746-8227-9cec541c4dca 1 Other Other +928e5460-b4b8-474c-bc19-3d22c418ae84 1 James Other +928e56ba-ccc7-4b6a-8c79-5c4c6674e9bb 1 Other Other +928e578b-4af3-4c2d-8a86-8542b1fa70bd 1 Other Other +928e7cf6-8057-43fb-bc5f-f1ffd2765ed0 1 Other Other +928e8652-3463-42aa-8f9e-270f28eb0865 1 Other Other +928ea29f-69db-4d97-b1e3-522fd71b726f 1 Other Other +928fac9b-aabe-44a5-9924-0ed85f2eeed8 1 Other Other +928fccd7-9ab7-4eee-ba23-ac95920f3dc4 1 Other Other +928ff4a9-a0a5-4e95-87ab-ad7586057b90 1 Other Other +929015df-64b6-44c9-8abb-08d912a8913f 1 Other Other +9290dd09-75ff-439c-b9f7-9f1abb4623d0 1 Other Other +929105c9-90e0-4323-a04a-1eca4fb98d4a 1 Other Other +92910eec-296e-4090-9306-6b1ddccffde1 1 Other Other +92919c92-3b33-4b1f-93dc-750067c7ea71 1 Other Other +9291e78b-53e3-48b6-99b3-890e9b404d23 1 Other Other +92920a0e-9bf5-4c9f-aa6d-3173ac073237 1 Other Other +92920bc8-9e18-4d61-b86b-f23ea7428981 1 Other Other +9292a4bd-50fb-45ee-9017-393fe3878654 1 Other Other +9292eb4c-a451-4e97-8273-12dcf1c62144 1 Other Other +929363a2-917e-40ac-9954-af9e8e1b995a 1 Other Other +92937807-2f60-4f11-8756-1556a6d8d599 1 Other Other +9293bd4a-edb7-4bea-a630-95a15d209273 1 Other Other +9293ed26-82e7-48f8-906b-d53b00227357 1 Other Other +92940052-f57a-4753-b689-42aeec078d3e 1 Other Other +92941eb6-3cd3-11e8-a31b-fa163e8624cc 4577d246-1441-11e7-8897-fa163e4dd901 Other Other +92943f5c-1a13-4cab-b1fd-4ed89abe8f05 1 Other Other +92944859-9fb0-4993-a910-a14d0829eeef 1 Other Other +92947952-0622-4f79-a79e-94ff85599a80 1 Other Other +92948056-ddc5-4afb-b793-9b009a017857 1 Other Other +92949ec7-9e9a-405d-bb34-f3f578509db9 1 Other Other +929500d3-5607-4815-8168-956136b8bc88 1 Other Other +9295295b-8006-485f-b6b5-6691ba2e9a4e 1 Other Other +9295616e-64e9-4462-ad4e-c415a14dd3f2 1 Other Other +92959fe5-0d14-495f-8d3d-375c20cd9580 1 Other Other +9295e279-0372-475f-8231-a13c584ffc13 1 Other Other +9295ece9-31ef-4c79-a15d-758d5197e2ba 1 Other Other +92967ece-03c7-4435-b783-e797a644ac7b 1 Other Other +9296b831-7b31-47f7-b52a-6efa3559e150 1 Other Other +9296c107-5e77-4384-b9ed-a4ffb303582d 1 Other Other +9296dfa8-2ae8-4c6e-9262-c8e58a8ebf88 1 Other Other +92975603-bd40-4366-85c8-cd4de716e192 1 Other Other +92975e83-f073-45fd-99ec-8b60cef9721c 1 Other Other +9297884e-a68d-457c-8ab3-08fc3f9ba211 1 Other Other +9297a62b-6a48-43a2-9ff6-679f6e7725e2 1 Other Other +9297bd1f-d130-4a16-a583-c39c547cfa74 1 Other Other +9297d7d0-5f23-494a-b324-123b4ee1965d 1 Other Other +9298177a-4b52-46c2-81a1-970699aa9418 1 Other Other +929874ff-dc4a-411d-af50-073ab4d011c7 1 \N Other +92987caa-2897-4ee6-9c55-7b6e15576049 1 Other Other +92988ecd-c2f6-4113-8c64-ae8b1d43cf7c 1 Other Other +9298d9e2-6eba-404e-852f-df590013bb1f 1 Other Other +92992255-c04e-44e1-82d6-75c240f86bbd 1 Other Other +92995ea9-3519-40ac-867c-2b5a5bd07726 1 Other Other +92998495-9e8b-418e-aa2f-3b1d15850ba4 1 Other Other +92998a8b-81c8-4f5c-bbde-f6ae41e76974 1 Other Other +9299d0fe-c120-4532-b5cc-77f107f72b2a 1 Other Other +9299d154-f85c-433e-bab7-b62fc7144c9e 1 Other Other +9299f41b-ff83-48cb-ad92-5bd4758cf273 1 Other Other +929a03b9-7787-413c-b352-562f86eb102f 1 Other Other +929a7cb2-2fc3-4e6d-b2af-9d5a6cae4b2a 1 Other Other +929aadc2-c332-4967-ae8e-6cd89e12864f 1 Other Other +929b095e-1029-4492-b14c-9682f0d3fcd5 1 Other Other +929b6c55-12cb-4756-93d8-6b50b1f30069 1 \N Other +929b9323-d27d-4ec0-97a3-a2fbb87849dc 1 Other Other +929bf9ca-5b8d-432a-95a8-c6ef1647a522 1 \N Other +929c2dad-edee-45ca-a7bf-a612d8b8429a 1 Other Other +929c2feb-f240-49df-88fc-3be32ac805b1 1 Other Other +929c3d4a-19a1-4765-b91b-f585c4caf1cd 1 Other Other +929c45bc-a320-45db-b02b-14934b637b0f 1 Other Other +929ce956-f8fb-4837-b758-f9397f598cbc 1 Other Other +929d1aed-95c4-4431-a3ee-d13392bb96d9 1 \N Other +929d280e-4699-4784-8536-4f6fd6da65fb 1 Other Other +929d28f2-b745-4f4d-bd00-60d5ba9f7dd1 1 Other Other +929d5691-86f1-4113-9e38-fa0b18b87961 1 Other Other +929d56a4-b671-48d9-82f1-1ceddc2f7854 1 Other Other +929d5ae7-fee2-4117-b837-285f8e510628 1 Other Other +929d7fb1-0b5c-44b7-ae96-f537d1b77c61 1 Other Other +929e1c6b-f251-4d9f-a0dd-6ece82877f01 1 Other Other +929e21ac-e3ca-4fd2-8b03-1346fee26577 1 Other Other +929e3aff-38d4-4a03-b1df-5cf35b641a77 1 Other Other +929e5db4-b391-4be5-9257-ee7e02e2ffa8 1 Other Other +929ed8e2-809e-427c-ab58-b7cae62c2409 1 \N Other +929ee889-e3f5-4616-a2cb-61a96fc4568d 1 Other Other +929ef417-37da-44e6-a6e5-b98fc40f2627 1 Other Other +929f2c44-247c-48f4-85a9-29c63c9bcd72 1 Other Other +929f441a-763f-4031-9189-ecc19f8dfaa4 1 \N Other +929fb05c-5071-4937-a005-a6c5238c7962 1 Other Other +929fedc5-a8e4-49c4-9ea4-b256fc80faa2 1 Other Other +92a01e8a-8f4a-437e-a40c-3bdd6013df04 1 Other Other +92a02d3d-ced7-4437-9851-c2718de30bd5 1 Other Other +92a0305a-654a-4b64-b684-7496a216f0f9 1 Other Other +92a05516-07bc-4bd2-a866-b724dd2a7448 1 Other Other +92a0a2bf-ebe6-4c15-b2ea-dbec9c750dff 1 Other Other +92a0a670-52a9-4f87-89ca-db992194563c 1 Other Other +92a0d6df-d3e2-4069-a32a-06da0e820070 1 Other Other +92a16b1a-924b-4354-8c55-d640d7ea4d67 1 Other Other +92a19081-fff8-458c-be15-8053dfe8dd03 1 Other Other +92a1959e-5f4c-456e-b269-56f61f1b8771 1 Other Other +92a1ae1e-2023-4887-be6e-f80e88f1ae91 1 Other Other +92a1b673-b22f-40a1-847e-10dc33e9c8ee 1 Other Other +92a1d370-04d1-4b0a-8e4f-8b6528dbbef8 1 Other Other +92a1f0c7-056e-4777-b01c-2285b9a68c36 1 Other Other +92a1f700-f2af-4b2c-80c2-6d513365cdb3 1 Other Other +92a2913a-e650-43d4-bb48-8a4bc79edb71 1 Other Other +92a2ad4a-a4f9-4aa5-b9d9-e083cf443fa2 1 Other Other +92a2cf95-457d-4191-9bc2-e28235054bd3 1 Other Other +92a32fcb-9dd7-43da-9b2b-754b666cd305 1 Other Other +92a34145-c1dd-4be3-ae83-414544f2a17d 1 Other Other +92a39168-14dd-4546-9102-a8fed99f73ad 1 Other Other +92a3d2df-f469-4106-bfee-982be294f546 1 Other Other +92a3d90f-3f76-4916-8b9f-c1a8efc3cfb3 1 Other Other +92a425b5-c6af-435b-8152-526e99e7bcb9 1 Other Other +92a42b3b-be14-401d-b09e-637c51f6a522 1 Other Other +92a43b8b-fc53-4c46-8279-1428da335b93 1 Other Other +92a4435e-60ee-4c9d-b496-094eb38d6084 1 Other Other +92a448e9-29e0-4963-82e0-4dc1e09c7206 1 Other Other +92a45d18-9f8e-4a25-83b1-2ec6221adf59 1 Other Other +92a47baf-9de1-42aa-ba5a-4d27e2b681b7 1 Other Other +92a4aa49-c46f-4521-b383-bc1fc125df3f 1 Other Other +92a54910-892f-41a6-aa5a-70ba9a6d477c 1 Other Other +92a5bb5c-9584-4a69-9825-f0048be084d3 1 Other Other +92a6c471-2dce-458b-8cf8-1aacd6ef0b1a 1 Other Other +92a6c51e-4cae-4f8d-9717-6905747e4558 1 \N Other +92a73dd2-66ce-48b4-bfbd-11d88a93f554 1 \N Other +92a73ea3-f27b-40e4-8ce8-49fcc9b48013 1 Other Other +92a74b92-5280-4aa5-84ee-7f9afc500721 1 Other Other +92a76200-dd4a-4bb8-84de-705602540784 1 Other Other +92a762d7-7dab-4552-9b7b-897f38a66a17 1 Other Other +92a81217-72ff-422b-a37f-f6d1c6022521 1 Other Other +92a82ac6-07b7-48a8-a960-47809a030ac9 1 Other Other +92a83ee7-de17-49df-a196-060fe7190d92 1 James Other +92a845e1-2e3f-4318-9925-9c4ff3411cd3 1 Other Other +92a867a5-bb67-4f42-b05d-abe13563199c 1 Other Other +92a89b2a-2bf0-412c-926f-61774b820216 1 Other Other +92a8aef0-8110-48b6-9e12-48beb4364df6 1 Other Other +92a8c580-9602-4ba1-923d-5d7e584bbc48 1 James Other +92a8d036-5057-4d4e-8de3-20a2a8d2a1bb 1 Other Other +92a8d458-c9a2-4394-b427-54347e40db24 1 Other Other +92a8d4af-3089-49e8-a7cd-f4ce9c5936d6 1 Other Other +92a8f561-eee7-4e15-a599-50309274eb52 1 Other Other +92a90d5b-0fd0-4f04-b70b-e4d50878a146 1 Other Other +92a99865-531e-42fd-9214-cb84c04b520b 1 Other Other +92aa2e46-9308-4715-b25a-b7f13612f0a3 1 Other Other +92aa5e48-d0ab-4a16-a96a-8f6b159be888 1 Other Other +92aa5e80-03db-44bb-ad44-9d20ab6f86be 1 \N Other +92aa9e8d-d363-4d8d-ba43-684b701dd0b0 1 Other Other +92aa9fea-b2b5-4fff-81df-98bb26995cf9 1 Other Other +92aae0b8-24fd-4e1c-8678-a0aa1f830456 1 Other Other +92aae59e-3c94-4193-af21-098c6b9c0994 1 Other Other +92aafe1c-9ad0-4c0f-9f36-117e82b1a37e 1 James Other +92ab037d-6230-4b39-97c9-f7a26750c7bc 1 Other Other +92ab39ac-df13-4eda-851a-8613efb43caa 1 Other Other +92ab3df9-a3a9-48d6-a8c8-cecdc5108179 1 Other Other +92ab45f2-8bf9-4905-84a4-6aee303d2a9f 1 Other Other +92ab47e4-76c4-4126-93e9-3889672477c3 1 Other Other +92ac0a0b-fc53-4d8d-8bf7-8648e088ffc4 1 Other Other +92ac92c1-a214-4e4f-834e-95a31102af35 1 Other Other +92aca895-c104-48c3-95e1-ac66fc501257 1 Other Other +92acba19-4139-4b87-8e68-721f00f16325 1 Other Other +92ace0c1-aae9-4759-9356-8c66e1aed25a 1 Other Other +92acf73b-a888-4b71-b7a5-6b3d70a9df1b 1 Other Other +92ad4b60-0de1-430f-8514-2d63dcabe09c 1 Other Other +92ad5fb7-64bb-4ad1-a872-2a3dfb26fd52 1 Other Other +92ad8c9e-c17d-4f8b-88ca-31bd66dbddba 1 Other Other +92ad9071-c540-455c-8657-475241b6f319 1 James Other +92adf66d-e51f-4856-b300-34fd4ee9644d 1 Other Other +92ae2501-d563-4e48-af8a-a56a8a1a7ca3 1 Other Other +92ae402e-f3a8-4671-9c75-60ac6c4eb08e 1 Other Other +92ae506a-d037-4f8d-8bd1-14e4d44ef33f 1 Other Other +92af017b-ffd6-4288-941d-7bd606d7f1c7 1 Other Other +92af1179-797a-48e6-84c1-578b3c42ab61 1 Other Other +92af1b34-e17e-4903-9f0e-85c9cf340f33 1 Other Other +92af5b6f-d432-464e-abc1-f2d8580285b7 1 Other Other +92af69c5-963b-40b6-ae7b-dafe82c56d53 1 Other Other +92af8d9d-e6f8-449e-899b-9f02fb1b134a 1 Other Other +92afd05c-a1aa-41b4-94f8-49bf96a50a91 1 Other Other +92afef5c-9884-40be-8bc3-68ac661e3d8a 1 \N Other +92b01712-71e9-4811-b93f-ec6caa76f8e1 1 Other Other +92b06160-549b-458c-8f7d-ba6bc0cbab53 1 Other Other +92b06a9e-f672-4f22-8cfe-df1777c439c1 1 Other Other +92b076b7-f970-4f86-9dc5-914f11f92ecf 1 Other Other +92b07949-4bc1-469c-b785-165ee17a588c 1 Other Other +92b17560-0c34-4dcc-9d46-87286610882d 1 Other Other +92b178c6-8759-452a-8759-e6421742d71e 1 Other Other +92b17b9e-5c7a-4483-b25e-53e5368a2dc3 1 Other Other +92b197ee-5fc5-4b96-847a-9b942c44c32e 1 Other Other +92b19d45-d5b2-41a2-9a35-416358a166cc 1 Other Other +92b1b594-0a70-4798-89b6-533de8c113d9 1 Other Other +92b1e0f5-93f0-4cb2-bbf3-6be7a40b2e9e 1 Other Other +92b1e4d4-ff6f-47ee-972c-d382fe957434 1 Other Other +92b1f29f-7058-40e1-a035-cd9e2da03eb7 1 Other Other +92b2db9f-df0e-46cf-8ec0-89871449ee39 1 Other Other +92b2f162-753b-4c55-bdaa-1b29a3fa0ea5 1 Other Other +92b2fb49-e47e-4936-b446-7f7e1f13b5bf 1 Other Other +92b2fc46-9758-4620-98ff-dd6410a38acb 1 Other Other +92b334e9-669c-49eb-8bd1-0b5990f726c6 1 Other Other +92b34df6-b144-49e5-b0e8-12a4d572b02e 1 Other Other +92b376b6-5c24-4f6b-b506-2dd0912d0fae 1 Other Other +92b3ff83-5b69-4f10-bce4-b423885eadd6 1 Other Other +92b43887-d9ee-461d-afff-eb348605e2ec 1 Other Other +92b47555-1bfd-4aa6-99b2-a4eb7335e3c8 1 Other Other +92b475fe-b761-4d9f-ac5c-ee826ba506e9 1 Other Other +92b48ec4-365e-40a4-9c8b-e6829968ec72 1 Other Other +92b4e3a8-7a5f-4afc-bded-35a3e9af73d5 1 Other Other +92b59416-77d1-4713-bdf0-deee4ab17c53 1 Other Other +92b5c32f-8f31-48b7-9e79-1908e8c3a021 1 Other Other +92b5f2bb-79cb-4778-b856-f0598b60a584 1 Other Other +92b61440-5684-4928-b769-f7d48500481a 1 Other Other +92b67337-a47d-4269-bca8-393af42c95a2 1 Other Other +92b67c70-c61d-4be1-a5c4-d1a0a308e0dc 1 Other Other +92b68250-075a-4c46-a447-42d0e03e6919 1 Other Other +92b6d168-5114-4e74-b50d-0ec05d88540d 1 Other Other +92b6f61c-c504-40b6-8b25-0181d352db34 1 \N Other +92b708a4-a0dd-4602-9b52-5cda16677074 1 Other Other +92b7b9d9-2191-42a8-9017-3e018439f098 1 Other Other +92b7bfe5-c58f-4b92-be05-2182f2365e19 1 \N Other +92b829d3-1115-451f-8442-a0435b8eb8ea 1 Other Other +92b8457e-0f4f-432a-af8c-52aa54161f16 1 Other Other +92b880a7-d5fb-49e0-a27a-fc0d8706920d 1 Other Other +92b89d04-5877-4c62-b9d6-9220af698fc2 1 Other Other +92b8c5a9-3e25-4efe-8175-f2bccb28b5a4 1 Other Other +92b8d5f2-97c6-40f6-ba1f-b5d244a9ff52 1 Other Other +92b8f81a-8a61-46c7-bdd4-31729bed440c 1 Other Other +92b92c05-ee23-4ad6-bb74-9c61dab78755 1 Other Other +92b9c1c5-cf53-4211-b19d-6156648a104a 1 Other Other +92ba51f0-906b-4682-b3a4-c4cc8d02b223 1 Other Other +92ba9958-7325-4a8f-93bb-5fdcdf4bf50b 1 Other Other +92baa3d3-9e22-477a-8f33-170180907eec 1 Other Other +92bb2f3e-5319-40ac-9420-3cf0764851e6 1 Other Other +92bb448d-b0fd-4d02-87b4-58820d02ccda 1 Other Other +92bb690d-938c-40da-b0f3-8d71e0a01927 1 Other Other +92bbaf77-7cff-4055-9c55-412bd251869d 1 Other Other +92bbccfd-3ed2-4b37-a543-fcc3843e13e5 1 Other Other +92bbf19e-d16b-4f07-a250-dbd4ef8c385b 1 Other Other +92bc12ed-ae82-4525-b4a4-14c1607ba086 1 Other Other +92bc416e-1780-4db0-8048-2aa5c45e32fb 1 Other Other +92bc8744-6909-48ae-b308-038e4f15b511 1 Other Other +92bd261d-7245-41e1-b15c-ea3feeb6f319 1 Other Other +92bd7792-ecfd-4843-90d1-87ec616eb861 1 \N Other +92bd9d76-bc93-4b9e-9118-f9de4d1499d2 1 Other Other +92bdd6bd-dbc9-4bf1-82fa-a56c38aaad2a 1 Other Other +92be37ed-5d24-449f-9377-479b9fbbd26f 1 Other Other +92be5efc-5b8a-4103-9e6c-d01c1525d8df 1 Other Other +92be6706-2225-4aa4-82d5-6f97b785b9f6 1 Other Other +92be8f8d-7057-45b2-b400-847f0016b477 1 Other Other +92beaf02-3ca5-4177-b171-5da311f5e70c 1 Other Other +92befb35-26c7-455d-97ed-dee6559a184b 1 Other Other +92bf1fcc-517d-4ec2-a5a4-544fec7688b4 1 Other Other +92bf9361-a81f-4454-bded-e305142d9bc0 1 Other Other +92bfb0df-715b-4831-b1e3-f242690da591 1 James Other +92bfb985-f802-49b4-a9ad-60925cda7631 1 Other Other +92bff421-3943-42cb-b662-e41c7af307bc 1 Other Other +92bffbc4-cace-4800-a97c-db6cfeccd2b8 1 Other Other +92c01efe-0ea1-4c44-8c65-3edad59955b2 1 Other Other +92c0b66c-a00d-47aa-8cbe-fc33b475887a 1 Other Other +92c1204f-71d1-4c89-8224-de1e1b1a385c 1 Other Other +92c13da6-2a14-4f1f-afb6-8e99b11d6d76 1 Other Other +92c15c28-f9ad-420b-bc91-2f9f21099079 1 \N Other +92c1d2b6-c1c3-45ea-92f3-2c12ad5306b9 1 Other Other +92c239fc-6066-498a-9a17-87390b16ffd9 1 Other Other +92c25b38-d7fb-4745-826f-857d7f273677 1 Other Other +92c26076-cb3c-44c1-b434-8afde9eddb47 1 Other Other +92c2670f-d7ce-4cce-9415-077b2fa473fa 1 Other Other +92c267f4-e5a0-4b4e-9c58-f5e12702be7d 1 Other Other +92c2a7c9-5406-4686-b3d2-2cd2379818f9 1 Other Other +92c2ecb5-03a9-43e1-8e3e-b51a271fecc6 1 Other Other +92c30ba3-6d98-4cd5-9a34-b4a6c20e30a9 1 Other Other +92c33d03-49b3-49b8-b132-80a6f90bb1a5 1 Other Other +92c37958-700e-4c8d-8bcd-1a5e24da2409 1 Other Other +92c392d9-bf52-4682-9eb6-de895d9ee6e3 1 Other Other +92c39345-3949-4d96-baca-15caf4fffafc 1 Other Other +92c3a98d-9112-4a69-9c2a-e1a5e65e2199 1 Other Other +92c42d65-c9ed-4fb3-87d8-8d3ec5eabda7 1 Other Other +92c43cc0-f527-11e7-a2c5-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +92c53a49-4c07-4fc6-b534-eaa62cdee7c3 1 Other Other +92c53ed0-4d09-4b5e-9be7-3f58a28363fe 1 Other Other +92c550fd-4c24-43db-9d91-879b1efdefb4 1 Other Other +92c5d02c-d53e-41f4-a800-48fe154d18fc 1 Other Other +92c5e1ad-6bc1-4944-adb9-82680f10d5db 1 Other Other +92c6290a-8414-4db7-9008-7ec53afbff53 1 Other Other +92c6cac1-20d8-4267-8717-77d94c4f3a45 1 Other Other +92c6e729-7e7e-4498-a566-314ede608a39 1 Other Other +92c6ee7e-ee2f-4456-bc12-786d1ed83372 1 Other Other +92c71ab6-a369-4d44-9998-bd0fe706d8bb 1 Other Other +92c750ac-3886-4fbf-984f-4d132fc85022 1 \N Other +92c75ad6-b54a-4826-983b-bf0836a3b26b 1 Other Other +92c75c08-2fde-4f51-bb36-e35caada2e71 1 Other Other +92c78f0a-b95c-49a2-990a-7efca9b0568f 1 Other Other +92c7cc2e-57f8-426a-aaf5-ebf17848609d 1 Other Other +92c7d5d2-2b50-4e7b-b214-132c41295a0c 1 Other Other +92c7da16-6d85-40d2-955b-f55590c37ede 1 Other Other +92c7e6eb-b93f-48d1-b85b-5bb8fe3ad4b9 1 James Other +92c81bbc-547f-4dd8-89ea-c97ce30b2b64 1 Other Other +92c84f35-7f4d-41d1-8039-d31ba11970dc 1 \N Other +92c8b9e8-4724-432f-a481-b4751613f3f8 1 Other Other +92c8d9e3-3754-47ca-bbdc-ed6c83e0877b 1 Other Other +92c93347-766c-4e82-880b-6bf789d99088 1 Other Other +92c94efa-9203-457d-baf8-b61ba5263e6b 1 Other Other +92ca0fa6-5e38-4865-af0a-3319bf98d175 1 Other Other +92ca37de-0a71-4a4a-a1af-1e2df483af71 1 Other Other +92caf854-843b-4add-9585-35d54e06baa6 1 Other Other +92cb3c4f-1933-4235-a58e-d6fb0d15ab6d 1 Other Other +92cb9710-6a9d-4b43-84d0-e0298d2dfcc2 1 Other Other +92cbe53c-5679-419f-94b8-ebd4169f8a62 1 Other Other +92cbedd2-caa0-450f-b1fd-09a6a895a80b 1 Other Other +92cc4197-d296-4d87-8455-76ce53f7adcd 1 \N Other +92cc4298-da00-4298-9fb6-7b16ab76d7f7 1 Other Other +92cc862a-e475-470a-9823-428ed5996965 1 Other Other +92ccd128-f49e-49fe-9a19-925949888d44 1 Other Other +92cd01c5-7e38-4f5a-83b5-bb4ed58d9e29 1 Other Other +92cd336e-8e25-467b-9e6b-7ae55802fbeb 1 Other Other +92cd63f9-6221-41c2-af7f-393bc512597b 1 Other Other +92cd659b-895e-4c75-917b-7b53d2642eab 1 Other Other +92cd65a0-e5c2-49fb-bab4-b2141abcacfe 1 Other Other +92cd85bd-8677-4bf8-a90f-68a881365a9a 1 Other Other +92cd8d62-22e4-443c-a1c8-d85bcbc15575 1 Other Other +92cdf7d6-5065-4279-a3fb-21af698d8f26 1 Other Other +92ce6a39-c5cb-4c76-83d9-81819045c198 1 Other Other +92ce8f55-ab54-4521-b3c5-8244e2c47bc7 1 Other Other +92cec221-8ea9-4dfe-9039-5727c134c818 1 Other Other +92ced03a-547a-4e5e-ad61-6bb9be50cc8a 1 Other Other +92cf4a85-eee5-4100-b415-7ba181d5ad82 1 \N Other +92cf597e-cb2d-4311-9932-f1d9ef0576f3 1 Other Other +92cf5bff-4cf5-4049-87a2-a9b3bb54c4cf 1 Other Other +92cfddfb-e5b8-4b12-a100-e47c4b78db4d 1 Other Other +92d01875-0ddf-4fbb-b1e1-50b4e2df4cb2 1 Other Other +92d0804b-b6bf-4162-a89c-cc542489e162 1 Other Other +92d0bde1-4011-4012-8424-2f2fc567b7ea 1 Other Other +92d10fd6-8ef8-4554-833a-e2330407db32 1 Other Other +92d1dfb9-c416-40b2-8bf0-e7fb94fae1b6 1 Other Other +92d20f2b-3a62-4c7d-8c5a-663d34f21653 1 Other Other +92d285a9-d696-4abb-8339-c504dc478f20 1 Other Other +92d31dcf-4add-413f-9749-e568a8c96b75 1 Other Other +92d3286d-61c7-47ef-83fc-f5de3288394e 1 Other Other +92d382aa-6386-450b-a4d4-a2472126dfde 1 Other Other +92d3fbd4-80ee-4dbf-910a-1ea5fb4c3b17 1 Other Other +92d4621f-5c85-4e72-9a7c-33a1426368e3 1 Other Other +92d505f8-d599-4dc2-a61d-646a10b14b1f 1 Other Other +92d50887-8cfb-488e-804b-d99f2aa02e3b 1 James Other +92d53bb8-c3c2-4e39-8f7c-77da4e1ddae1 1 Other Other +92d546db-e9da-4c11-93cb-107a24665c79 1 Other Other +92d54bda-dfb9-4fd4-ae72-023286ab6af6 1 Other Other +92d5596e-d507-48f4-b6fc-2f980aaf36e9 1 Other Other +92d57992-df9d-440b-b330-aafc203dde6a 1 Other Other +92d59479-6f2d-4995-a2e1-deee1ba84604 1 Other Other +92d5b7f0-e54e-47c2-9928-959f538d7a09 1 Other Other +92d5c444-4dbe-4b00-978d-7529955d6f39 1 Other Other +92d5d447-631a-422c-884d-876532898816 1 Other Other +92d5ef20-b222-4da7-b219-6eb562344613 1 Other Other +92d5f91d-300f-4f09-8660-34527eb49273 1 Other Other +92d61455-34fc-413b-af28-d21eaddeec7f 1 Other Other +92d691f0-977c-4787-ba1e-00221b2275ee 1 Other Other +92d6a3cb-8669-43b8-bd70-1854a1ca9f04 1 James Other +92d70dce-83f4-4708-8e11-c5e128660a86 1 Other Other +92d795b5-c4d1-495c-baa2-920d42649078 1 Other Other +92d79843-8830-4f91-8e0d-639256510aab 1 Other Other +92d79a85-35a0-4d35-bb8e-9f8ee242db0c 1 Other Other +92d7a2e0-58d8-4738-b56c-bf85a59135bd 1 Other Other +92d7c4da-3822-489b-8d80-df8b7551949e 1 Other Other +92d7d4b4-53cc-47a0-a159-b492e5e4239d 1 Other Other +92d7ea5d-7724-4aa3-ba31-23ff5de9f8df 1 \N Other +92d866e9-2c6d-4f47-ae95-179c9f57b1ad 1 Other Other +92d8a728-e935-4782-a502-cac4bf9d4d8b 1 Other Other +92d8dc81-34ea-45eb-ada4-78458359eb50 1 Other Other +92d8fb2d-4d88-4a3b-b22e-004c1ac7ec46 1 Other Other +92d95d2f-bf0e-438c-b2d3-ef04daa2ad26 1 Other Other +92d9ac80-ddcf-4ff2-ae7e-bdcff1a410dc 1 Other Other +92da1854-bf11-4bcb-b921-c5cac4febed1 1 Other Other +92da58d2-c7bd-47bb-adcb-06b7bfbc5e88 1 Other Other +92da5d9f-0ead-4376-8ef2-dfab3251f66c 1 Other Other +92da772c-b7c5-4ae7-8b7b-c240d63fffd0 1 Other Other +92da9038-97d7-4fa2-ab66-1b0d1b7a7078 1 Other Other +92dab752-d207-4ecc-afad-cd372484bd83 1 Other Other +92daca1a-bc7e-4fee-8ddb-29c4d2c3715e 1 Other Other +92db3cfd-82ca-4de8-9458-9313ad9914be 1 Other Other +92db4b88-c452-4a83-9cb9-5ea046d25aba 1 Other Other +92db69f4-2615-4713-bf04-e6d7caf82b46 1 Other Other +92dba3f1-6a6b-4acb-8687-3b691e1ba1a4 1 Other Other +92dbaf4c-acce-45c0-9d83-f4b4a0fdbe1d 1 Other Other +92dbecb7-0332-49d5-bb01-7969688086e9 1 Other Other +92dbf0b8-56b3-4d25-b8fe-580c660172ce 1 Other Other +92dc08d5-924a-468f-906d-3a267a21e72d 1 Other Other +92dc3540-c9a7-4842-8c9a-90739e5f71ab 1 Other Other +92dc440d-779b-405b-a9d4-0f43559aa681 1 Other Other +92dc648a-a6ec-4f59-8455-ae24cb10598c 1 Other Other +92dca614-647e-4a7f-a1f6-cc69e22a1d51 1 Other Other +92dcbbb5-48a3-4fd8-b83f-b484417aaf17 1 Other Other +92dcc6e4-b02d-48bb-8405-22cfba05965f 1 Other Other +92dd7b03-297c-4379-bcbc-14e18d554a69 1 Other Other +92dd7f94-f31c-4bfd-9c70-9a45b11410c6 1 Other Other +92dd9a06-86a9-4b7f-987a-ad1f1d51c7e4 1 Other Other +92dde364-2df4-445b-9bbc-d088bc14efde 1 Other Other +92de2639-59ac-40df-a33c-aba39da92755 1 Other Other +92de44cc-3633-4bcb-9da6-4399af17e0cc 1 Other Other +92de96a5-2eb6-4897-8db5-101b7bbaab8e 1 Other Other +92dec195-77e4-482b-895d-416d5422ba82 1 Other Other +92dee036-4cfe-4b86-81e1-6669eba0f0dc 1 Other Other +92df195b-9685-4602-b864-de3138fcf0a0 1 Other Other +92df92e4-528d-43cf-ac3f-1ee4c914741e 1 Other Other +92dfdb98-ba16-4654-bae5-320bf30e8ea7 1 Other Other +92dff4ed-464a-46c1-98fd-33ede586f7f9 1 Other Other +92dff854-d942-472d-8602-ce688121b0c7 1 Other Other +92dffbae-28c3-4c08-a739-0646881edc56 1 Other Other +92e01696-9fa0-4fbf-91df-56d71cf49cd3 1 Other Other +92e092a3-ec7d-4d06-98f3-16d97c65d16a 1 Other Other +92e0be28-44d8-4e7e-b751-5f162d6cb906 1 Other Other +92e0c2b3-4658-44de-b126-898af9e74d37 1 Other Other +92e0cf58-11e5-4d63-b51d-6dbee05376f1 1 Other Other +92e0d656-afff-46e6-9c1a-36ad21cab694 1 Other Other +92e0d6ee-3011-48e3-bae2-b6456f4b1321 1 Other Other +92e1160b-29f9-40fb-a853-671f3ef4d02d 1 James Other +92e179fd-faf4-4ecd-9c43-2cff434dd6fb 1 Other Other +92e1cb80-5e11-4994-9a36-1e9fa0d0e5a3 1 Other Other +92e2424c-f2ce-4b5c-a025-1b3e1616e4f7 1 Other Other +92e253cf-8895-4d04-90e4-0811b24f26ec 1 Other Other +92e290e6-f673-40ef-9e62-168e0150bd68 1 Other Other +92e31ef4-aa73-490c-9317-9a5d4c50e31a 1 Other Other +92e35972-cab3-45b3-b790-7c711259cf19 1 Other Other +92e3796f-19c7-4920-9a16-dc818934f3ce 1 Other Other +92e39135-487a-4055-bff5-d1cb0ce56890 1 Other Other +92e3e0a9-09da-47bf-90f4-c7d1cf859894 1 Other Other +92e42520-cf27-482d-81b5-a915ad3f1197 1 Other Other +92e42f90-0426-4fc0-a9d8-164e9e9cf9e0 1 Other Other +92e457a2-af05-4ae2-8ff1-72025d8650f4 1 Other Other +92e4710b-890a-492f-9b67-91439046048d 1 Other Other +92e4bb76-6dd9-4edf-aeaa-6fc7fbbb0fe2 1 Other Other +92e4ed2d-d722-4940-908a-70785b8c4593 1 Other Other +92e54e1e-1079-4991-8567-321a9e2bb0c8 1 Other Other +92e59865-5b2e-4009-a7ba-37da89cae44a 1 Other Other +92e5ac34-b0c4-4429-9b46-fc6539a33bc3 1 Other Other +92e5dea2-21a8-4e7e-8af8-4249557feedf 1 Other Other +92e5f017-d633-4706-a5c8-9da6157b9b5e 1 Other Other +92e605d9-45b4-498b-ba27-d445aa0e6889 1 Other Other +92e67fa8-40d6-4e04-a80d-4ec0a9997461 1 Other Other +92e697d5-1301-45ac-b35a-1a69a7ce0eef 1 Other Other +92e6adfe-4a8c-4486-b7a7-eac235043375 1 Other Other +92e6b306-3193-401b-b68f-da27ef224c8d 1 Other Other +92e7196f-23a5-4fce-84b7-ff16900e3f57 1 Other Other +92e7319a-e4f7-4159-943f-5e14af075f2d 1 Other Other +92e79538-4cdd-4bdb-99a2-b279f07c4e6c 1 Other Other +92e7ee2f-d3eb-4162-82f9-e0e2258f6645 1 Other Other +92e85d78-0dcd-436f-b98e-4f4b840e8dd6 1 Other Other +92e86798-7576-43aa-aec3-2fc7e84a0f8d 1 Other Other +92e86c4f-ecb5-40f7-a7d2-79d4cc924eb8 1 Other Other +92e887d9-88c7-4eb3-b5ec-47f522004960 1 Other Other +92e8ade3-37b7-4827-8eb0-f62575e4474a 1 Other Other +92e91fdf-797d-4dfa-8093-c834d45e324a 1 Other Other +92e95b31-40ab-414f-ab51-d22a0c93bf4e 1 Other Other +92e99654-2523-4336-ad18-6355fd0e510b 1 Other Other +92e9b90a-ef9b-11e7-b166-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +92e9cdc4-2717-4ec2-bfb7-4508946aef06 1 Other Other +92ea07b2-6720-413d-b995-f77f171e0fa0 1 Other Other +92ea4a04-a4f3-4769-aaf8-90346cf8761f 1 Other Other +92ea89ec-d553-4a7a-8461-9c8c8f2ff5f6 1 Other Other +92ea9970-6af5-410d-b956-6d1f1b1f80e4 1 Other Other +92eab12e-84c0-4bb1-8045-028c59375338 1 Other Other +92eabf55-ac02-4270-8c1e-d1c268265ee5 1 Other Other +92eaf344-1dda-4d70-89c9-75d612dad040 1 Other Other +92eb223e-00f2-4631-9b3c-cd17ff4f87f0 1 Other Other +92eb24f6-5dd9-433a-b1c0-fe84ca722aee 1 Other Other +92eb4003-02be-4f00-91d5-9eb41c303723 1 Other Other +92eb5be1-6735-4259-a560-6c6c967a86c0 1 Other Other +92eb8a9e-bb72-4143-83e1-d94d5907abae 1 Other Other +92eb8df2-0d82-4d05-8e08-cd570917eae3 1 Other Other +92ebad95-215f-443d-9291-02204f6c7204 1 Other Other +92ebd228-9698-4ffe-82a3-9c1b72b79b68 1 Other Other +92ebdd29-9fd9-4587-be00-83cf24c2cfbd 1 Other Other +92ecab0f-6da4-4770-a4f2-03ce14fba795 1 Other Other +92ece671-83d6-40fb-96a5-6dec01ea549a 1 Other Other +92ed339f-2c26-47fc-9337-29ebbf08b654 1 Other Other +92ed81ed-6b85-4e0a-8c3e-02a59a883c7b 1 Other Other +92ed9ca4-02eb-4f34-bf41-6d43f1ac213f 1 Other Other +92eda7ea-468b-43b0-aa68-1c75a320727c 1 Other Other +92edd9bb-1242-4491-8576-9e545fcfc717 1 Other Other +92ee2944-0936-4284-aae5-6ff0a6526b1a 1 Other Other +92ee658f-c40f-4295-a49d-f20b9af2d435 1 Other Other +92ee6f83-19b7-4054-82f5-51fa4b867762 1 Other Other +92ee9d64-87d4-41e2-8523-cb80f646f4d0 1 Other Other +92eea07d-c8a0-4c4b-842e-d72e41a26314 1 Other Other +92eebed9-0f5f-4ca3-9388-0f2d0fbfdf57 1 Other Other +92eef7f5-871a-48a8-9d39-76b122d9ea97 1 Other Other +92ef65ee-9376-45e4-95cd-132fcc9e25ab 1 Other Other +92ef771b-a82a-4908-8049-58177dcc0dbe 1 Other Other +92ef7efe-ac1a-4cac-8ba8-d83ac785b16a 1 Other Other +92efb702-f3f0-458f-91ad-58f572b76600 1 Other Other +92efca88-3881-4355-9e39-e8381c3d961b 1 Other Other +92f01153-6c53-469d-8404-b2681d8a6f18 1 Other Other +92f0d9fa-6e9c-40c8-aff9-5916366d570b 1 Other Other +92f0e5ec-a47c-4c8b-82ef-4429d772d0b1 1 \N Other +92f10034-c66e-4e5c-952f-c9690eb53558 1 Other Other +92f163fe-6773-4716-931f-d590703bf158 1 Other Other +92f184a5-c6f7-4186-bc71-e5e09b4214eb 1 Other Other +92f1912f-bf1f-4703-8471-50efc714c9c1 1 Other Other +92f19a5d-dced-443f-a786-89b15ebf9dca 1 Other Other +92f21c0c-f296-4bc1-9d93-c81fd24548e5 1 Other Other +92f29629-11f0-49c2-b8c2-823d3973a832 1 Other Other +92f2bde9-0909-4634-bbf5-5f966cb96205 1 Other Other +92f2eab5-d0b1-46f0-a8f3-dda66d7bd06d 1 James Other +92f2ff5e-1b26-462a-9a9d-60716f02662f 1 Other Other +92f2ff9c-e5a3-46d2-abaa-7f4e69a9a959 1 Other Other +92f30ed4-f66a-4f6c-ba38-9f1078d6993b 1 Other Other +92f31ab4-ab13-413a-bac8-4ead82654c64 1 Other Other +92f36bec-be64-4e40-870f-e9a7b92e488c 1 Other Other +92f383cd-e151-406f-983e-afff9eca5801 1 Other Other +92f391b1-fa31-476d-96da-ad94364bb90a 1 Other Other +92f3998a-3163-464f-bdfd-5be776412790 1 Other Other +92f3f225-61c6-45aa-acb4-361a20a5d961 1 Other Other +92f3f49b-50f1-414a-9c99-0b7552063f93 1 Other Other +92f4187a-3137-4610-ac9b-715f418cec3f 1 Other Other +92f42a59-ef50-456d-9839-6364b9547c6c 1 Other Other +92f463b3-123d-4034-92f5-baca65f73424 1 Other Other +92f50f93-c446-4ecb-9549-7f488f2ea573 1 Other Other +92f57e2c-3749-4887-884f-989fd39bc835 1 Other Other +92f59f9f-29e3-4c07-b6f1-8a66167ce3ed 1 Other Other +92f5b4bc-d9d8-4824-a5c4-00e4f59a7cfe 1 Other Other +92f6aa6b-0895-4c8c-9f87-1c62e4ae771d 1 Other Other +92f7206b-0b05-4f55-b603-12106828b0a3 1 Other Other +92f76c36-cd5d-44e5-8d02-06dc28474011 1 Other Other +92f7abeb-0eb7-4e39-8570-3949a2b8786d 1 Other Other +92f7eb4c-1a13-4c7a-a661-c876238dd3e6 1 Other Other +92f80bec-532c-496d-b189-2a665b2b64b9 1 Other Other +92f8a812-6be9-411f-bb92-72e85f4d0524 1 Other Other +92f8b8d3-45ba-45e7-8e62-d55069f59b2f 1 Other Other +92f95418-489c-4851-ab89-0ebf028b810e 1 Other Other +92f966d9-c32b-4fab-84cf-987e2acad4bb 1 Other Other +92f96e39-4d10-40e7-b62b-3a3edf5ce800 1 Other Other +92f9705b-5033-4b8e-9556-150d6d2d0a8e 1 \N Other +92f974e9-8308-4ade-950b-2b991bf57af7 1 \N Other +92f9806c-3fb2-4c78-bb92-956197d9327e 1 Other Other +92f99674-1255-43ad-8f0f-14d8db4ecad8 1 \N Other +92f9a9e6-ecfe-4b3e-876a-32c9b31fc778 1 Other Other +92f9ca6a-ca38-4643-80a9-532b9be38569 1 Other Other +92fa72ab-ebe6-4d5d-b3da-c3e156640979 1 Other Other +92facd9d-a53d-4718-92c5-107ff804ae62 1 Other Other +92fad623-ddfb-46dd-b690-931408c63afe 1 Other Other +92fad9bb-6db1-4f6d-988a-619349fa6996 1 Other Other +92fadd49-28d5-449e-93a2-63fa933341d1 1 Other Other +92fb5069-7ef3-45df-86ac-67a16a3ef96b 1 \N Other +92fc4697-89fa-422b-83d4-556838b3c9db 1 Other Other +92fc5080-c35c-4147-bade-d27a6cf79a90 1 \N Other +92fc6dd5-dc61-4342-a966-2b4b41117f59 1 Other Other +92fc87f7-b8f2-45e6-8c15-429362d44a65 1 \N Other +92fc9124-c23d-4a17-9587-76616f79e513 1 Other Other +92fd05be-a508-4a1a-9160-8ac38b6acea4 1 Other Other +92fd1966-97f8-4f38-a66e-77ce815070aa 1 Other Other +92fd886c-c3eb-4b0a-abc9-eee627a2c60d 1 Other Other +92fd9112-0e4a-4a07-9b4a-d464c613a4e7 1 Other Other +92fd9832-b4af-484c-bbdb-8382f169020b 1 Other Other +92fd98de-ce26-43aa-bdab-54ca67e2437a 1 Other Other +92fd9cab-72d0-449d-a27a-4dd6ea6f28dd 1 Other Other +92fe02fd-1b74-418d-aeb6-8426bde8a0c2 1 Other Other +92fe460a-05a7-4c0a-9b36-75be2f4aa1d1 1 Other Other +92fed3ba-1f3b-4dc2-9db3-93d1daa69753 1 Other Other +92feea7c-28cd-40b8-b7b2-8bf14ba237ae 1 Other Other +92ff1298-c81c-4cab-90ed-8490a73620aa 1 \N Other +92ff3ccd-1620-4b64-bbd0-9c74cf40847c 1 Other Other +92ff6124-e9b7-4d87-b815-b82f065f9afd 1 Other Other +92ffcf09-abf9-4d7a-b14e-93439dfe3e66 1 Other Other +92ffee69-5c5b-4277-b88a-93cb2767ea4b 1 Other Other +93004056-b7d7-4622-bf47-4cb6719600d4 1 Other Other +93004eaf-6748-4c3e-830c-40d7be9a6dad 1 Other Other +93006016-ca47-475f-a74b-ea57229455e2 1 Other Other +9300c1a6-2e7a-4aa6-b75d-9ddfc52cdfea 1 Other Other +93013bbe-6db4-4347-8b37-1f738d16f6b8 1 Other Other +93017a8f-4ab4-4bb3-8bce-cde5e2154c67 1 Other Other +93017ef9-2440-4568-8663-e2493c64f7b5 1 Other Other +9301831b-f596-44fd-ae6c-0b6b1f068276 1 Other Other +930184bc-be46-4ff9-9f72-fb05badd2064 1 James Other +9301d575-a83f-4086-92c6-9f19313bbd66 1 Other Other +9301db32-aeb5-472c-a40c-6aaacbb660c1 1 Other Other +9301f4bb-1538-417f-b9cc-70452c56eadf 1 Other Other +9301ffbf-6f71-4699-9134-fad313635509 1 Other Other +930200dd-82e1-4257-bd09-39ffac271ba8 1 Other Other +93026a10-f015-43ee-acc7-30a784399f3c 1 \N Other +930284b0-c2a0-4fe1-b5c7-679d7b19175a 1 Other Other +9302b085-d6ba-490e-843b-16c30a68e6f9 1 Other Other +9302cea4-9ae4-4bc4-90d9-5554fe07b1a7 1 Other Other +9302ced6-ebd6-4afb-b0d2-d434c0b83c3a 1 Other Other +9302edb1-6f27-4353-a74e-41d49cdbd03b 1 Other Other +9302f768-a5f4-4b19-98ad-7580815c35ba 1 Other Other +93030d30-1599-4984-b8ec-63ad66521867 1 Other Other +930365a0-ce96-469b-9a7c-5f76fdaf5580 1 Other Other +9303a3c0-20f4-4908-a841-f6fec544969b 1 Other Other +930406ae-9ccd-4007-a754-0a29ec768122 1 Other Other +930460ec-b851-470c-b992-048667a44a63 1 Other Other +93048b54-49e2-4be4-8cbd-09edc59d1727 1 Other Other +930492db-dcf2-4d8e-8e24-d33779071326 1 Other Other +9304b0fd-b980-4d99-8eec-79c4986c79fa 1 Other Other +9304cff4-0dcc-4463-9122-6446e999e195 1 Other Other +9304d0a8-ed83-41ec-b681-84f2dcba85a7 1 Other Other +9304f8d8-e004-4f04-a9eb-ef40c15f47e9 1 Other Other +93050948-371d-476d-b704-01eff872d865 1 Other Other +93053d37-e29c-4e0a-941f-e1a63017e82a 1 Other Other +930556fb-b173-4e01-b2b5-4eff21b895dd 1 Other Other +93056e92-e286-4a94-b43f-a41596b16312 1 Other Other +93057859-3f8f-46ea-a17e-888807747575 1 Other Other +93058094-e223-4277-a4b1-700dc5105838 1 Other Other +93058258-2d31-4514-b230-98a6e0104520 1 Other Other +93059608-146e-4778-a71b-4f5be8396613 1 Other Other +9305e3d2-81a2-4540-8bb1-f687e841d533 1 Other Other +930664a1-8ac2-4f96-b665-cc0d3f3abf96 1 Other Other +9306b5c7-dce5-46f4-bc6c-f3ec5074f2e3 1 Other Other +9306be0c-6f73-47ac-8f03-b462dfd58eff 1 Other Other +9306cbc6-85a7-4695-bcee-b7b2016f896d 1 Other Other +93073c3f-6f45-4e36-86c9-047363bf9a8e 1 Other Other +930741e9-8d9d-4f97-8d24-9e342155a1f4 1 Other Other +93075e35-e4b3-4b9d-9a43-3503ec3cd125 1 Other Other +9307b510-d846-4f48-bfd5-d3941dba78cc 1 Other Other +9307c051-2ce5-45a8-a792-5589cf598ed2 1 Other Other +93080a9e-2d18-4738-9883-da6ea88e8b42 1 Other Other +93082a06-a88b-4353-8dcc-eaf2c159ddf3 1 Other Other +9308da43-eb5d-45dd-949d-0a55ccb5f1dd 1 Other Other +9308e137-63f0-4466-b4cc-ba2c553e9339 1 Other Other +93090d54-c00f-4496-a097-0b581b02e327 1 Other Other +93091314-2f0f-4f95-a459-3c0486b93523 1 Other Other +93091b08-a10d-47c6-bed2-798c208649ed 1 Other Other +93092b4a-7eb7-4b36-8be3-941989d7ada3 1 Other Other +93093804-cac6-4c9e-84be-01afeffde736 1 Other Other +930974ce-bfe7-4d7f-b078-e0d0925bb6c3 1 Other Other +9309816f-28a0-4171-acae-33f426cd81d2 1 James Other +9309909f-96ab-466c-be7d-ae40975eaa29 1 Other Other +93099263-a1d4-485b-9910-d2592b25ed0d 1 Other Other +9309a390-09f6-4581-9ea6-7fd652694eb9 1 Other Other +9309bdcd-9f7b-4d7f-aa70-c64ef0c2cc14 1 Other Other +9309d042-0f8d-4f06-8fe7-8d78f6dbe3f5 1 Other Other +9309e004-abfd-4fdf-a26b-cf9f56931071 1 Other Other +9309f5ab-f627-437e-b88b-1571db2af293 1 Other Other +930a1ca9-cb3c-42f7-aabe-0a0c7d1b0d38 1 Other Other +930aa723-cbbe-4734-ac58-8e687fce1358 1 Other Other +930b85e9-b93c-4f59-b376-41e3a0b36aa9 1 Other Other +930ba24a-c063-4935-929d-ee0840f4b71d 1 Other Other +930ce46e-b584-4977-9dbc-a7f08df84439 1 Other Other +930ce4ed-27dc-4245-ad63-5aa32c6337f5 1 Other Other +930d11be-cecb-4e91-9090-800d7e61687c 1 Other Other +930d3223-c8c8-4a37-90dc-d6159be4c945 1 Other Other +930d88d2-ff95-4d67-926a-40f1f4e02e57 1 Other Other +930d90f6-ae8c-4ea3-b3f8-f87c91d701ca 1 Other Other +930db2d8-c2ec-493f-8cc7-2f19c4b7386e 1 Other Other +930dd2bf-ee69-482c-a3b4-2d5e6a4636f8 1 Other Other +930dd4ea-cf30-4aaf-988d-252c0cb71f49 1 Other Other +930df6cc-7b16-4ccc-9ebd-b06e040daa92 1 Other Other +930e19f4-6527-4420-8bf2-57d4bc3507f7 1 Other Other +930e2e46-c126-447e-8fe3-e3b7395fb035 1 Other Other +930e5b2d-0830-4a6b-a46c-ecfaf0e734db 1 Other Other +930e9f70-c325-4f80-845a-46ce95f14b4b 1 Other Other +930f0f4a-7354-4ea9-b2e1-b78ec1c16052 1 Other Other +930f16b8-2a30-4e3d-9f00-0734b6af72d4 1 Other Other +930f2a8d-ddeb-4a36-aa27-5e22bec0d799 1 Other Other +930f47b5-d809-4f88-ab77-fed5d9ef7c79 1 Other Other +930f6899-94be-4a63-9f04-3c0820060526 1 Other Other +930f9fb7-8c9b-433b-9e15-ec0ebb6e0deb 1 Other Other +9310baf9-35b3-4619-99cc-d86e56d997f1 1 Other Other +9310d024-d2a4-4385-ad7f-58e94a5b4daa 1 Other Other +93112044-3770-47f3-8765-242ab74f7bc3 1 Other Other +93115346-c428-4f47-afef-9c3a651ba68d 1 Other Other +931172b1-5bfc-48a1-a83e-27e27f1e149b 1 Other Other +9311a165-96cd-422a-830f-424922a92ff1 1 Other Other +9311eb78-fe17-4d5d-a871-fa0ee52201a5 1 Other Other +93121c4f-3af3-46a6-8d01-e2c7f61123cc 1 Other Other +93124a01-5835-4612-a816-c3b2875b3bc9 1 Other Other +931274d5-e910-4afd-8f6c-2c56f551a36b 1 Other Other +931283b5-c661-4fbe-9d70-3f2a0ae19538 1 Other Other +931284e8-87fd-4de2-bff6-e6efd6165af3 1 Other Other +93128780-4559-48d8-9939-ab40d00c94f4 1 Other Other +93129a50-f194-41b4-a2a6-a286c17c2bdb 1 Other Other +93129c51-ede1-45af-83f0-dd119ca6d1ad 1 Other Other +93130177-e793-4b03-b642-adda7f5b20e4 1 Other Other +9313b434-c868-4c0a-b522-f3f5cfcaa787 1 Other Other +93143d12-1a5b-4c9e-b5c4-bc266c635561 1 Other Other +93145b7d-8c7a-4f31-82ac-c8ae06d9e4c9 1 Other Other +93146d9b-17ce-410e-ab2f-c62bb0b76a57 1 Other Other +9314e96a-4a0a-44b7-9010-635d251a5266 1 \N Other +931528ec-2f7e-4449-bebf-61433c59efea 1 Other Other +931551d7-e675-4bfd-aaab-25d4284137da 1 Other Other +9315e7a9-569c-47be-86a2-9a675b624962 1 Other Other +931636d2-1c88-453a-b88c-8317bb9967bc 1 Other Other +93164010-98b7-4999-9322-0c3e3dd0a044 1 Other Other +93166a19-6ba3-4414-b442-5ebea57cfd36 1 James Other +93166bc8-4302-428c-8853-f55a736e4da0 1 Other Other +9316d45a-dc3b-43f2-aacd-f826974c72b4 1 Other Other +93177843-dcf1-4786-9c19-999fe67decb8 1 Other Other +9317791f-3bb0-49cc-9385-eaa6211e0c27 1 Other Other +931797ee-99c4-4f31-aa18-e23aaa26811a 1 Other Other +9317a03d-fc69-440a-a40b-26f901d92fa7 1 Other Other +9318e002-58f2-413b-bd80-9e1fff5ed6bd 1 Other Other +9318f073-b3b1-434e-8609-9b29b9c306cc 1 Other Other +9319018b-2357-48ef-9031-85fd1fda991b 1 Other Other +931923e9-c2dd-4a4b-882b-8b167215947d 1 Other Other +931954f6-c51a-483d-89f1-305e5018e8f6 1 Other Other +9319684c-29bf-4581-b2c4-e901a8b34235 1 Other Other +9319a6f1-5323-4ef6-b60b-40a734143aa4 1 Other Other +9319c58a-6e0a-4fa2-9908-7243d7d85ee5 1 Other Other +931a2cb0-7b1c-4664-bb6c-acc96e5b19b9 1 Other Other +931a4a04-9ec0-4498-952c-03e597717040 1 Other Other +931a60c0-925e-4cfc-b8ec-37312e512c51 1 Other Other +931a755e-1d71-4f6a-818b-0d10e8cb59f1 1 Other Other +931a7a1f-42da-44d2-bf76-773fce352b2f 1 Other Other +931a8d4e-7a5f-46e1-9d43-960ac3413e1b 1 James Other +931a9e08-3fcf-4ac1-9209-249b5dc5b834 1 Other Other +931a9e2e-cd38-47d2-9e18-ff4fae65ff7d 1 Other Other +931ac260-2c14-43be-be32-5831d98e8db6 1 \N Other +931ac9e6-50c7-431a-823a-7db3a7cfc51f 1 Other Other +931af0c6-e014-4aff-85dd-42b1d8346374 1 James Other +931af254-64c4-4365-8dfa-81437878064a 1 Other Other +931aff6c-9ebe-48fb-8256-c9c86a6ae6d9 1 Other Other +931b3617-1c17-4a5e-8fae-3d67a3e290c4 1 Other Other +931b57c4-990c-4483-aca9-bc61083685cc 1 Other Other +931b75e9-c83f-4f2e-8fa1-88caf205e075 1 Other Other +931ba186-b6e5-486c-b180-1e8a5656b206 1 \N Other +931bddf1-6ff7-453e-a585-706e2ea17d77 1 Other Other +931bf4e6-9e6e-466a-9f73-051084447d9c 1 Other Other +931c4b92-ec44-4c35-9d59-2320a521e510 1 Other Other +931c6054-af13-4b10-8e20-f04bc5ad35aa 1 Other Other +931c6270-2743-4398-8278-29e7f43d4d2e 1 Other Other +931c6efa-a12b-48ab-9446-a863bd1087e7 1 Other Other +931c82d2-facc-4c2d-abd7-c120a0b09f96 1 Other Other +931cae1a-c292-4311-9605-98dab891a873 1 Other Other +931cfdc1-6255-4a2a-9d9c-6563ddc6af0e 1 Other Other +931d0574-1dde-4ad2-9521-fc5c61e24aa8 1 Other Other +931d325c-09fc-4cd9-9dbc-717708597eb0 1 Other Other +931d4192-c970-4e4c-8dc0-5a996740c7c8 1 Other Other +931d6c1b-4415-428c-890d-f3f87a651a0f 1 Other Other +931db2b5-d2bd-42e1-9c71-a89662a676ae 1 Other Other +931dbae8-8512-482f-a2de-affce2ed26c0 1 Other Other +931df2fa-4527-41c9-a3c8-2813e4ce7da3 1 Other Other +931e020a-8227-4231-8863-d56a68aeb13e 1 Other Other +931e3c7f-95b4-4c44-a852-e5f950d2f9f0 1 Other Other +931e5769-6f25-4979-b028-b1d7f551d6f6 1 Other Other +931f1a6d-094f-4b5b-8f2c-e032bc876425 1 Other Other +931f5233-64cc-4359-9d8c-b7b7ff022e0a 1 \N Other +931fa76a-296d-4b0c-bee7-efb58e627220 1 Other Other +931fab3c-89fc-4ea2-bcd0-5d231cfdf560 1 Other Other +931fbf3e-117c-457d-a31e-54dda5146245 1 Other Other +931ffa09-99d3-4c58-9461-57012699fccf 1 Other Other +932002ba-2344-4063-a5fa-ef78b1bc2369 1 Other Other +93209747-4d5a-48b7-9c5e-ebd99554f8aa 1 Other Other +93211a5e-e89f-4628-b829-e22cb18230a7 1 Other Other +93212538-eab2-4e05-b554-ec69d3063e55 1 Other Other +93214018-94e4-49bb-b27b-83f6b1e610c1 1 James Other +93214b2b-5fe7-4dc2-87d9-e12cd62112f7 1 Other Other +9321929e-32a8-4a49-a1cf-3c46e3f599d8 1 Other Other +932199b6-d53e-4595-b9de-7911b74c94b2 1 Other Other +9321ae50-4a31-42df-966c-8a9fd1c9abd3 1 Other Other +9321d98d-b70c-412e-968a-769a66aef338 1 Other Other +93220a7d-9436-4d62-bf8d-a67b9fcf5d8c 1 Other Other +9322770c-277d-43d3-8934-0b35c6568fb5 1 Other Other +93227fb7-5bcf-4e0d-8c19-1e2785fef8ac 1 Other Other +93229c9e-34f1-4f01-9aad-6a02f21eb02f 1 Other Other +93232d8d-a642-4052-b789-e2dd2f6c7f43 1 Other Other +93235423-443e-4a00-af18-d3e373179d6d 1 Other Other +932378f3-3de3-46dd-89b1-eb47acdc44b6 1 Other Other +93237a4c-4232-4ddb-bc27-4f3cd9bf1cc6 1 Other Other +93237f5a-21c3-4997-b434-aec4cd3cb695 1 Other Other +93239d2a-88c3-4556-a5f7-5c9c33f311d8 1 Other Other +9323bba7-101b-4329-9c80-16d015c63372 1 Other Other +9323c10d-042f-4735-bbc2-39e4954303f4 1 Other Other +9323f171-7179-4720-932a-5e29c28fc24e 1 Other Other +932410be-4355-4817-a47d-e5736dbb0596 1 Other Other +93242ba0-03b9-466e-a436-e820b1c079a8 1 Other Other +9324455b-930b-449c-8368-6e2406baa0f5 1 Other Other +93246b56-83ad-4c87-8c75-f00fc85baaac 1 Other Other +9324ae79-f018-4a36-82ef-fea5e4e77650 1 Other Other +9324ff1e-2aa1-42ee-b01f-a3f55f0f7594 1 Other Other +9325094f-aa69-4da7-be27-f1bd794ea2ff 1 Other Other +9325bdfa-0d42-43be-83ec-7c1edbec5aa2 1 James Other +9325c222-9477-4b7b-a0a8-26c5a8035ec8 1 Other Other +9325e2d4-dafc-4e4f-8f4b-95d90c6b03e9 1 Other Other +9325fe62-d967-4a01-a3b7-4a13d7809c1e 1 Other Other +93261767-b6e9-429d-90a3-f2ccc6176465 1 Other Other +932625b4-eb1b-4ed1-a7a3-a58f53dedd36 1 Other Other +93263029-14f4-463d-a202-ddb5c733b152 1 Other Other +93264c5c-ee85-48e3-92ea-e631646ebc0d 1 Other Other +932651d4-ad48-42e7-b9c5-c5031ed35245 1 Other Other +93265e91-0444-43f7-94ad-4a954d8d628d 1 Other Other +932672a7-d475-4015-a760-3a9b7534278c 1 Other Other +932675a6-896c-4970-805c-e3de4a58d873 1 Other Other +9326c61a-78ff-4f0d-a81f-b75939ba4150 1 Other Other +9326d2fb-7ec6-49c8-9fca-1de167912ca8 1 Other Other +9327122f-2a55-4f07-9d44-a233475004fb 1 Other Other +93272b11-5848-48ab-b25a-a10cd8e1e707 1 Other Other +93275f2e-da3d-440e-9b3b-f06c0b4fdf81 1 Other Other +9327860f-afb6-4230-9c5e-8f07aa6d3fea 1 Other Other +93282bd4-6032-4a0b-a282-f7e02529a383 1 Other Other +93283097-d749-4b19-9491-4f14f2f1d5c8 1 Other Other +93285f0f-4b82-4123-bb14-75e388109dd2 1 Other Other +9328fe65-3c91-47e6-948d-733ed58d9702 1 Other Other +9329159b-9cd1-4214-8953-0df5591773d4 1 Other Other +9329d5d1-64ec-43d6-8111-2415a716138b 1 Other Other +932a521b-2b02-4129-80a6-be3f3ecc003b 1 Other Other +932a5ae1-85c5-4e4b-a3ca-b4e50504e53a 1 Other Other +932a6cfc-c06a-428d-8852-de6a4ac9972e 1 Other Other +932a864a-a3bb-472d-abe6-763440b9f7bc 1 Other Other +932b033e-89d7-4ef9-89e9-37dc12f12160 1 Other Other +932b06ae-1b23-427b-bf35-c3339707ff23 1 Other Other +932b22a2-3707-4f6b-abbd-942e01a81552 1 Other Other +932b2856-868d-4a2b-9ca9-e2a5e217a962 1 Other Other +932b408a-61fb-44db-b8f3-bd0ccf8b5775 1 Other Other +932b4f6d-51a7-4ea7-b4f1-430fb19d16d2 1 \N Other +932b6944-dae1-4539-8090-a036c71b3e23 1 Other Other +932bae88-0996-4a7c-9144-3def6f4d64c2 1 Other Other +932bd596-0850-49b0-9b61-b88332749d27 1 Other Other +932be69d-021b-4200-ab6d-c5ab7b5f8101 1 Other Other +932bfe45-68f5-4120-b0f3-d0d64b80588c 1 Other Other +932bffa0-1f0c-4297-817f-3b1da0d979fb 1 Other Other +932c81f0-9c8d-4c14-935f-cd2a17bf8641 1 Other Other +932ca8c6-41f3-4a64-bfa5-6ef378949d64 1 Other Other +932d22f0-6e1a-4daf-a7d1-3cbb5b8b16db 1 Other Other +932d3443-9b2f-433f-9b16-7999a6845ebf 1 Other Other +932d6a0f-fcab-44b5-b4e5-86536f4c3ab2 1 Other Other +932d6ac4-47d2-46f4-9912-52e12e66e321 1 Other Other +932daf68-b551-4c44-afa9-3606d20f6d0a 1 Other Other +932dbf2f-437a-4934-9c7c-b1ad7bc79a07 1 Other Other +932de420-e440-4173-8572-a4c7902ba446 1 Other Other +932e29a5-ff67-445a-9296-7a7bc86b1a3d 1 Other Other +932e6ec8-7ea2-4458-a705-9e5dcf87fade 1 Other Other +932e9ba3-9f25-4fc4-a53d-be0ff73cefc9 1 Other Other +932eb482-478a-4095-9469-138e8b0cd1e2 1 Other Other +932ebdf8-db77-4e3b-b9cf-513b817837dd 1 Other Other +932ee8ed-8c53-4c64-882b-7899fb9dd605 1 Other Other +932f1705-9df6-47ac-aa48-3d8a2c200b97 1 Other Other +932fb9bc-4ae4-4da9-b731-e47fcdcec088 1 Other Other +933028a3-0af9-4f33-a4fd-a48808f4e789 1 Other Other +93307b36-993d-4b76-941f-904535074761 1 Other Other +93309657-d043-4a6d-8921-9f49289bc1f2 1 Other Other +9330d5b7-0cc6-490d-9c91-5d6e2813200c 1 Other Other +93312dd6-73f9-437a-9be1-a9a7cff915e7 1 Other Other +93317b7c-1e9d-4937-abfa-708d7e2d6b78 1 Other Other +9331f2ae-8ce4-4028-a71d-fabf2472a8c2 1 Other Other +9331f549-62fe-4678-82d8-0ed7f53cd732 1 Other Other +93320cda-f460-48ee-9427-199ff4c196eb 1 Other Other +93321317-9452-48fb-93a9-7db90c389af9 1 Other Other +9332180a-f25e-42ed-8eb6-48403c6df3e0 1 Other Other +93322443-ac33-4af6-9555-e968bffa76a8 1 James Other +933225ef-a3f0-48a7-bdcc-2b087975ad6b 1 Other Other +93326498-c070-46ec-a3c2-333d702a8bbc 1 Other Other +93326a1b-558c-4431-b931-ced64beef2ac 1 Other Other +93327d4a-e1af-479f-ace7-caed89198640 1 Other Other +93328caa-7dff-48bb-8848-ea7a42b55f1a 1 Other Other +9332d619-bef8-4d77-afdd-f9af26dd2be1 1 Other Other +933353a2-5619-4c7b-868c-70c398a8aad0 1 Other Other +9333c1e2-eccc-4db4-9204-5176082c2fdc 1 Other Other +9333c3c0-bb5e-403d-b669-24e9e306fa33 1 Other Other +9333d46a-e266-49ea-b058-b77830b285e5 1 Other Other +9333ebae-f196-4dd1-ba7c-a86ab40e4a1d 1 Other Other +933413a5-e3f5-4116-bf92-6e1fb55352af 1 \N Other +93343766-2193-42f8-aafe-f16732ddee17 1 Other Other +933448e8-ca7f-4b0d-936e-3628e70737e4 1 Other Other +93345644-9bf7-4620-90e8-5e02e95a0e8b 1 Other Other +9335170a-2275-49c1-894b-fbd4c150cfe7 1 \N Other +933537ad-6e6b-4e53-8a79-d843b619d09a 1 Other Other +93356874-1f12-421d-96b3-c28edcb5fe46 1 Other Other +9335767c-c5d1-41b0-872b-5e4d3953cd29 1 Other Other +933578f3-8925-4e56-ab17-79935831e9ee 1 \N Other +9335ad4c-1190-4bfa-9c8b-969b174133d8 1 Other Other +9335cf40-5528-4777-b893-04967e3120a0 1 Other Other +9335dc20-9f73-41f8-ab63-201f496f6841 1 Other Other +9335f51f-35b1-4cf9-bac4-9afa32900207 1 Other Other +933675d1-3c89-40fc-8b90-23d6926746b7 1 Other Other +9336ea4a-ca70-45b5-94eb-7a24c6847fd2 1 Other Other +9336f4a8-1e43-4703-af63-eb065110cb16 1 Other Other +933720d1-b292-4df5-b89c-d4adc6ed858d 1 Other Other +9337fec1-f622-46ff-add6-9775053533da 1 Other Other +93382573-1418-4147-a817-b2263804e51e 1 Other Other +9338e705-c16d-489c-869f-b2a25884a39c 1 Other Other +9338fabe-8f7a-446a-85c7-fa0de3cccf68 1 Other Other +933901a0-79c7-4761-b4d1-13bbcc383042 1 Other Other +93392534-27f8-4c5b-8264-ed2d9e5893a1 1 Other Other +93393138-9cd0-42ae-8c7e-5b9e3a2a9587 1 Other Other +933932ea-a52a-4292-a9ca-586c32ce4268 1 Other Other +9339a40f-a711-444a-bf80-e6fa721689a1 1 Other Other +9339add1-b14c-4626-b9ab-2c28cc2c6fbb 1 Other Other +9339aeeb-b428-43aa-8631-1e2ae7d4fb83 1 Other Other +9339cae3-f1b1-467b-b4b9-6795f3ea6626 1 \N Other +9339d642-35b2-4ad9-9e6f-de602214d38b 1 Other Other +9339e381-5fb3-4fcf-b26c-584280c0608c 1 Other Other +9339e71e-fcd5-4093-8f5b-1f1a76f489c5 1 Other Other +9339eb72-19de-4535-a13b-9ad114127daa 1 Other Other +933a0434-8e29-4fd9-a38f-d95bd8973966 1 James Other +933a6110-98c1-4b97-94cb-b4efcac3f972 1 Other Other +933a8405-e695-47eb-bee8-604f558a0351 1 Other Other +933a9790-9a1e-4640-8192-22c9bf55275b 1 Other Other +933abef6-7224-428b-8ad6-176150beca77 1 Other Other +933af72b-743b-4bd9-aa59-72a44ed89ec8 1 \N Other +933afd98-92d3-43f7-93fe-d12d16e567e5 1 Other Other +933b3917-3519-4d62-848e-aeb771790272 1 Other Other +933bc63e-7178-4576-ac12-04d2c17f1cce 1 Other Other +933bd218-4102-4eed-99aa-f91c360fbd08 1 Other Other +933be53c-0e0e-4756-94da-fa3c9ac640fa 1 Other Other +933c3900-57e3-48c0-b793-51e1badf4342 1 Other Other +933cbed5-e743-4b6d-bebc-98539b0ac7bd 1 Other Other +933cccc0-752c-40ad-8e14-bb5f9a0ad70f 1 Other Other +933cceb6-ddf5-4adb-9212-60d27aaaa57e 1 Other Other +933cda32-486e-11e8-bcfe-fa163e8624cc 1 Other Other +933d35a6-6b06-451c-9576-83615e5a21d9 1 Other Other +933d3c89-1f11-4079-9933-8674309ecb48 1 Other Other +933d6057-d70e-4876-bc43-61b35127334e 1 Other Other +933d793f-7106-4dd9-bdcc-c4434cc503a2 1 Other Other +933e726d-e5ef-4876-b928-8a77a5960eb4 1 Other Other +933e9e05-2cd8-4cd9-a2dd-1479caf13d71 1 Other Other +933eb616-f5ae-4d05-ac22-af045caaf3b2 1 Other Other +933ee3e5-fc84-4dfc-98dc-86e17a3778ab 1 Other Other +933f2f8a-31a4-46ec-b371-5a7ae4572d81 1 Other Other +933f4bd9-335a-436f-a71f-19d95b0bdc47 1 \N Other +933f535f-5437-476c-b049-51b1ba230212 1 Other Other +933fb348-1e19-4f1b-be64-487363645764 1 Other Other +933fef54-c608-45a2-aa3d-43972471425f 1 Other Other +933ff66c-57c1-4b67-91ac-b1ae4633331c 1 Other Other +93402e88-1f5b-4127-a729-00fafeb56565 1 Other Other +93404774-7211-43ca-80a6-8cba6f6ea188 1 Other Other +93406ebf-ec66-4436-977a-26b855270f41 1 Other Other +9340ae25-4d67-4a43-9cfe-e34e6d4a5fdb 1 Other Other +9340cc89-9fb7-4f64-ac5f-1e60ea69cdeb 1 Other Other +9340cf6e-d671-4c32-b9ba-fe6ee562140d 1 Other Other +9340e585-26d4-4e72-9af4-97be3bebd5c2 1 Other Other +9340f89c-bb7a-4b25-a409-6d521ce54869 1 Other Other +93411991-e996-4830-8e45-8463d2d070bb 1 Other Other +93411b66-e06c-4df4-bdda-16c58b3a87c1 1 Other Other +93413b70-68f5-4dbb-b0ac-6cb1d23ff6bc 1 Other Other +93413f91-96ef-427d-b758-fb1fc32e8790 1 Other Other +934164bc-837f-4dd0-a084-3a8d7d5bd9fb 1 Other Other +9341ee5e-0710-4579-bb37-fc10a5349cf3 1 Other Other +9342a3b4-2df1-4865-9686-a87dd8c54509 1 Other Other +9342c1d9-96f9-4324-adc3-ae3ccb31d35d 1 Other Other +93430195-d6b6-4d59-a240-e9a4ed1b6553 1 Other Other +934335b5-ac38-436d-ab8a-3a8830d3a8ad 1 Other Other +93443429-938d-463d-998d-97b98411197b 1 Other Other +93444c94-02a0-4c95-8234-1938d2436db9 1 Other Other +93444daa-1272-4b2c-aa2b-86e76b187439 1 Other Other +93445595-8ee2-4824-89bd-3f159cad5345 1 Other Other +93449393-a4ec-49fe-8765-b4654dac2378 1 Other Other +93449ad6-7298-46da-8543-566277487b76 1 Other Other +9344ada9-d6d6-4f6e-bdec-f3720e8db3c2 1 Other Other +9344b58a-f64f-4bbb-8e06-4d5f5b5fc793 1 Other Other +9344d4cc-45e7-4db6-a4dc-2d26dea2ed3d 1 Other Other +9344f613-eb5b-4998-8989-1caca984958e 1 Other Other +93456786-c68c-4c8d-9850-65323ce186f7 1 Other Other +9345785d-6a7e-4bc4-8064-e5b06ecd8398 1 Other Other +934582dd-67d6-4609-89f4-eeeecaa9b0da 1 Other Other +93458339-4ff5-41c1-9bb6-1e22f07dc457 1 Other Other +9345c4c5-b3ee-46b9-83d7-2df7b837fe12 1 Other Other +9345cb48-9462-49e2-8fba-0fa6d986f267 1 Other Other +9345ef15-e238-4858-b2b8-0b8a1d69ae63 1 Other Other +93460560-a25b-4813-981f-530a8787be5c 1 \N Other +93465bb8-3bc2-4d0c-a125-252438b3a3dd 1 Other Other +934665d3-a131-4809-bc27-83b393c2f278 1 Other Other +9346c020-5c79-49a1-9ad0-fd7d23a51306 1 Other Other +9346cc2d-4c08-42d9-bd63-e6c2318b2224 1 Other Other +9346eb36-71ee-4e4e-ba02-9b5b3ecd8157 1 Other Other +93472033-cf55-4ea0-a31f-6be694fb17fe 1 Other Other +93477e3d-d9af-47d9-ab55-cf7a3f9c4830 1 Other Other +9347ea73-3acd-48a0-b552-35687ac45711 1 Other Other +9348513d-7ac7-4e3f-94f4-7d5d2b6a4b9c 1 Other Other +93487f4b-3590-4e89-a583-bbece03c9935 1 \N Other +93489057-586f-40f4-a243-f1ae802fddd3 1 Other Other +93489d03-ce66-4082-94ee-f7613f1444c0 1 Other Other +9348c0f4-e4a6-49f2-9fd5-98f4c3781149 1 Other Other +934929d8-4a1f-4f2f-88ba-5bde4bbef018 1 Other Other +9349728d-c0e4-4b01-aa25-79d2d410cea8 1 Other Other +9349c1a1-7cdc-4460-bb30-36464708ab66 1 \N Other +9349de92-6a4d-4598-ba63-6b2ff64db44f 1 Other Other +9349fc55-69b5-4877-8c7a-b6b90f6c27d9 1 James Other +934a4052-6ffe-4330-89ff-f9127bef2bc0 1 Other Other +934ab7c2-fcbb-41db-a7c9-7f7fe1339008 1 Other Other +934acd6f-77fd-449e-a7e1-1706fc9e576d 1 Other Other +934b35fb-0a8b-4b43-bd4e-085fd07020b0 1 Other Other +934b845d-e1b1-4298-b323-1d9ec59bc2dd 1 Other Other +934baa39-067a-4d78-87ad-cb64f7f448e4 1 Other Other +934bcfe1-ba85-48c2-9970-748cd431407b 1 Other Other +934c11df-4b13-45f4-9496-8290c0cae0ae 1 Other Other +934ce93e-ecdd-4e60-8401-632c48903789 1 Other Other +934cf4c4-4fc8-4afe-923a-ee9fbd6256e9 1 Other Other +934d104f-0122-4586-9c47-dd01d024553a 1 Other Other +934d11c5-5e1a-41bf-90f7-bf2c892efd38 1 Other Other +934d44af-b09a-4c79-821a-ba9e15f1940a 1 Other Other +934dab3e-2b37-4920-a286-194a4a001c2d 1 Other Other +934db597-5049-4f87-985c-54c68cecb2e8 1 Other Other +934dc30c-9297-4994-b322-2fa67c07be65 1 Other Other +934dd831-d5ad-4530-8f39-742265cae7a3 1 Other Other +934de9f7-b069-4bca-bb86-a9e8b373752f 1 Other Other +934e334f-6953-47b5-911c-ffb18ee495a9 1 Other Other +934e5fc9-c72d-43eb-a672-47b07ab9a591 1 Other Other +934eca27-c9d9-44ec-8826-9a7363270bcc 1 Other Other +934ecece-0b53-4d54-99dd-e6248526b4b9 1 Other Other +934ed06f-1c31-4b0e-a17c-fe05681223bd 1 Other Other +934f055a-10e5-4f65-bf13-82196233e53f 1 Other Other +934f0a82-ffec-411c-9ac5-9691627200b8 1 Other Other +934f2330-d848-40d0-85bf-f4e4857de8c2 1 Other Other +934f428b-c39f-4f96-8e21-e590c46b9fb9 1 Other Other +934f6a8f-0a5d-4be2-8b4a-ad4abdb9f7df 1 Other Other +934f7136-1f47-4769-abe0-07c187682ca9 1 Other Other +934f7e46-9349-4711-9c04-813c728c6c3b 1 Other Other +934f807e-14a4-4a42-921f-33f97e5e5e47 1 Other Other +934fb5ea-3e95-4b89-a75e-671b9ab7d239 1 Other Other +934fe61a-ec93-4b65-93d6-570bc45b0557 1 Other Other +934ff952-4f0c-4bb2-af14-cb30607f93db 1 Other Other +93502f65-c355-4290-b2ae-e7729e22def0 1 Other Other +93505110-80af-42a2-9db5-f6a326eb396b 1 Other Other +9350afd3-a71e-43ea-92c9-31e883fb10d9 1 Other Other +9350cf2e-5567-4a8f-a569-7c93dd4ad427 1 Other Other +93511aea-0ca9-4b32-a9b3-17ffcc214347 1 Other Other +93512f54-4aaa-48b1-b698-083bbda17471 1 Other Other +93518bfb-f082-4373-a58c-7e2438446ee8 1 Other Other +9351ba6a-67dd-4f37-8d18-cd0124787656 1 Other Other +935266a4-132b-4808-a8d5-ce8a26f6b696 1 Other Other +935287e9-7ff3-476f-a34f-25d23b9f4c3a 1 Other Other +9352bbf3-3f9b-4984-b570-b86c33d5758a 1 Other Other +9352f33a-15c6-4e4d-b607-2f05727839b5 1 Other Other +9352f6cf-3093-419a-acfa-dbd1bf65b971 1 Other Other +935319ba-602d-4926-b994-13c19350bbf6 1 Other Other +93532231-1b1c-40c0-b799-12f171b11756 1 Other Other +9353729c-1992-45c8-9182-8df93500ed1e 1 Other Other +93537550-811f-462b-b66f-3a826cbf86ea 1 Other Other +93539829-9518-41e4-ba6f-d6a1e740f834 1 Other Other +935398a3-caed-47f9-a30a-291ef568da86 1 Other Other +9353e156-d845-48ab-a3d2-dbd7b789ccb4 1 Other Other +935405cc-a4f0-40e7-abd8-a7af92350001 1 Other Other +9354152b-5c75-41f0-8c5d-cb4f5fcda6a0 1 Other Other +93542861-9bfa-4b3b-bfc6-e529632bda6e 1 James Other +93546be9-70d5-4aed-9edf-9dc91c3821d9 1 Other Other +93548f14-dfbd-4b04-b51e-56512b41d157 1 Other Other +9354a1e4-2bca-440f-b2d0-2d97e3809c97 1 Other Other +9354bf48-d236-4dee-acb4-db8b0c3809e7 1 Other Other +9354c54d-97c3-4048-9b92-062f6837f900 1 Other Other +9354d788-2e99-4457-8dc4-528c8307be37 1 Other Other +9354ee6b-9b51-43a9-aa02-f652c592776c 1 Other Other +93555b7e-bb2c-4ca2-babe-cde45ccf0eb8 1 Other Other +93558595-0263-4c26-b604-d6ae00877ee1 1 Other Other +9355b160-ba00-4f3c-afdb-662d39fd6c8e 1 Other Other +9355ee93-7fdc-4575-8556-001ce2adaac2 1 Other Other +93564744-05ea-4ae4-b1d3-d71e8a033147 1 Other Other +935659cd-c94d-41d0-8180-1f9953ff0119 1 Other Other +93566faf-25b2-4e44-a851-1be6f1362ce3 1 Other Other +935678f5-544a-4666-8004-ec21d9a5f773 1 Other Other +93567ae2-d068-4830-8372-98b30d96f3c9 1 Other Other +9356897e-3518-4dca-a5b5-c745e1f3bdcb 1 Other Other +9356a973-877f-40f4-82cd-3826afeffedf 1 Other Other +9356fc2c-8322-47bc-bf11-d5ee3958c41e 1 Other Other +935700aa-899b-4e1c-a522-8f151a665049 1 Other Other +9357cb25-d19e-4ecb-9bdd-8f90dbf932e6 1 Other Other +9357fe27-92d7-42c4-b8f9-7d483f8e5e09 1 Other Other +93585a7c-14f6-42f6-b76c-5311eb32bfa9 1 \N Other +935864fd-3b5e-4c71-9791-72be5ae80fd9 1 Other Other +935910e0-66b0-4bee-82aa-36efc1f8d7cb 1 Other Other +93592adc-33ef-4929-91ee-5a58b1650694 1 Other Other +93593643-d59b-494c-94f9-e01960a89ab3 1 Other Other +93596f02-751b-4b0b-8b36-549027ff4375 1 Other Other +935989ae-5f83-4248-801b-722433a39a25 1 Other Other +935a4fce-ac03-4832-a7b9-7d7224a02e89 1 Other Other +935a554c-0cbd-4ea4-83f8-7bee5896a5c8 1 Other Other +935a5b1e-4a31-4e83-ab3a-8a96f996b836 1 Other Other +935a636e-9181-46ac-921e-abea627bb35a 1 Other Other +935acac2-ee10-40ee-9d61-bf9ed34a138c 1 Other Other +935aeb05-088f-423e-a9c1-da0fd72e03e7 1 Other Other +935b49e1-a171-4b76-ba2a-2e765fee0654 1 Other Other +935b511c-da9e-481f-ad4d-e888954601bf 1 Other Other +935b6742-13d9-4c9b-bd7b-0b570381a4ea 1 Other Other +935bb4f7-c0bb-4957-a95a-32ac209661d7 1 Other Other +935bff77-7322-4b30-9e29-c855b66a3426 1 Other Other +935c67fe-35f4-4f7a-9d1a-21ddea42c764 1 Other Other +935c7c9f-c0e9-496e-86ca-de8aea033947 1 \N Other +935c820f-8c6e-4fa1-88db-9ed53d524704 1 Other Other +935c8a0a-4e1a-4e5e-8f40-a4b0b47b11f6 1 Other Other +935c9024-c90f-43d8-8165-f874b9d4f7b5 1 Other Other +935cf9ca-ae4f-4f86-872c-cda56851f2c2 1 Other Other +935d10c5-6682-4643-b4e5-a3aad9b34822 1 Other Other +935d1efd-4dce-4773-b8d0-adc7e6494963 1 Other Other +935d3b85-c93f-4c51-b852-2369db4456c0 1 Other Other +935d45b4-5682-448a-8fa2-958eed50c5d2 1 Other Other +935e33a5-5b9c-4b53-a022-b521bc8f3662 1 Other Other +935e4aa3-f4ac-4cc7-89ff-7c414f21f26e 1 Other Other +935e71f5-a1c9-4127-be83-ddbe0bcee486 1 Other Other +935ed2a0-997c-4576-b824-68ed8a207013 1 Other Other +935eef1e-5b13-4820-8034-8e4a945a8e55 1 Other Other +935ef3ca-d0d3-4080-a510-44ea99f3dc06 1 Other Other +935f157d-6429-48af-8d15-9b7eb4285772 1 Other Other +935f2759-0eff-4e32-963f-e70331dee2a4 1 Other Other +935ffc01-2a72-47db-b401-d9d188f9ce7b 1 Other Other +93603f22-92b8-4328-84ab-7d9c890445f5 1 Other Other +93605535-cc72-4ca1-bfaf-8445c00ee26a 1 Other Other +93606b53-2809-42ca-9bf4-0713bcbaa0b3 1 Other Other +93607a98-eefc-4dda-b85b-574ed2709eab 1 Other Other +9360904e-ef75-477f-9ce0-e58b077751f7 1 Other Other +9360958f-fc00-481a-a374-8ac1a634c27c 1 Other Other +9360aa9d-014c-4879-a10d-d3166e8c541a 1 Other Other +9360c95f-64f2-46da-9bfc-2ce78ee2119b 1 Other Other +9360db7f-90d9-47e5-b399-7e26d4b343cf 1 Other Other +9360f841-60fe-4b39-a5fd-91908057cd86 1 Other Other +936104d1-9e31-4cca-98a1-05b57dafd39b 1 Other Other +93610e1d-252a-4e24-b8ba-2e7a74e2814f 1 Other Other +93612086-a4d1-456c-a3b5-b789231a7c00 1 Other Other +9361a0ab-ab58-4c75-89d4-2aab0e360a36 1 Other Other +9361f335-99cc-4d04-9f83-c7c14fb84f15 1 Other Other +9361f3c2-b64d-44f7-8394-7401a39c0d88 1 Other Other +936205d8-26f7-48ea-b8b6-3cddc038abac 1 Other Other +93621f9b-27d2-4afd-9f2b-b1692776528a 1 Other Other +9362410e-4abb-45d6-abb1-6aa6c9982868 1 Other Other +93626ce2-ef9c-4191-ac9e-e7f7c8c39093 1 Other Other +93627917-45b9-4ca9-b2a7-b008d36ffdaa 1 Other Other +936294ca-84e4-4ad8-8240-a5c505efb6e3 1 Other Other +9362ac29-2c76-4400-9a42-59a7d6ab32f6 1 Other Other +9362b22a-6265-40ed-980e-16a0edb6f3fb 1 Other Other +93632cfd-82a9-4b40-ab7b-a140c5cbb765 1 \N Other +93632d77-e5a4-447d-8b3f-62ed20693e73 1 Other Other +93633804-bbea-4059-befd-640c3fdfb878 1 Other Other +93634304-af4a-4fe7-9e43-ae19e34987fe 1 Other Other +93634925-af51-4597-be40-0b215688c6b6 1 Other Other +9363580b-c4a4-4fbe-87fe-7dee7cf1be3d 1 Other Other +9363a0f2-029a-4725-b0a1-a45a295a3803 1 Other Other +9363f6a2-365a-44c9-b0b1-7a8315753038 1 Other Other +9363ffd2-c57e-4fda-aa21-12b55f08e051 1 Other Other +93643c85-5d39-412c-be96-8c1a820063d3 1 Other Other +936484c3-e4c4-480c-a6a6-921db23b3704 1 Other Other +93649b25-de41-4c3e-bb14-4c037b118a7c 1 Other Other +93652fa0-8bfc-4a7c-b7e1-47b38939abf5 1 Other Other +936538ae-d284-4577-bbc5-628bd5168c9c 1 Other Other +936564a6-c12f-4c6c-b8a7-bc5f855706db 1 Other Other +93656613-d23c-4574-a102-cbcaade5e300 1 Other Other +9365e340-89cb-4a01-ad8c-35c22f82864f 1 Other Other +93660e54-b770-4e41-ac65-939e31f87a3d 1 Other Other +936614b0-09a7-493e-b3f3-6e77e986c738 1 Other Other +936618ec-b1bc-4866-93c1-49b0fe53a54e 1 Other Other +9366593c-5151-421a-951a-b57134ba567f 1 Other Other +93665f62-f179-4a91-8b2f-945a972057d8 1 \N Other +936667f9-82d5-4d30-92d1-25b7fd9a53a2 1 Other Other +9366e466-3155-4511-8988-67235f90b2d3 1 Other Other +93671cd9-4d90-4a91-98c6-621661782dfb 1 Other Other +93674eef-62b3-440c-b1e7-8e4285286b9f 1 Other Other +93679484-9a13-40af-a176-ed4afded74b7 1 Other Other +9367bb7d-201b-4d89-a58a-b5386e9c6e5c 1 Other Other +9368113d-2d11-4f1b-b33a-12bf55dcbdfb 1 Other Other +936835cf-da74-4130-b892-83d1b509032b 1 Other Other +9368c545-61df-42ac-8bf4-bcacca09320d 1 Other Other +9368d143-208a-49a9-aa14-39d167fad685 1 Other Other +93692c82-d5c1-4d48-a819-15dc3058cddf 1 Other Other +93692e31-f5b6-410f-bc96-d7b2795e482e 1 Other Other +93694e8c-d9ed-41b0-9978-912def231786 1 Other Other +9369da97-5bc3-4fc6-8cc1-e3e9b814a43b 1 Other Other +936aa1b8-9bfc-4bec-b602-f332c84d4603 1 \N Other +936aef77-b585-436f-9303-a17ca1f6bb64 1 Other Other +936af259-df32-47e8-bde3-aee915937b7c 1 \N Other +936b0332-b5d6-4c78-a901-66fb4541ed74 1 Other Other +936b2f61-f0ae-4156-b4c3-0ee294a2d70b 1 Other Other +936b4ecb-bf5c-410c-8804-f813d38f34e5 1 Other Other +936b6a76-03c8-4641-9433-d76008805e07 1 Other Other +936ba048-fbbe-4de6-91af-6e6ecd622c4f 1 Other Other +936be7bb-8165-4a4e-b854-babf74b8f8d0 1 Other Other +936c1bff-80b2-46ce-a3c7-b5aa41422dda 1 Other Other +936c8263-d602-44c7-a41b-f03aef666b24 1 Other Other +936c830c-7b8d-400a-9f1c-8efaa9ff3508 1 Other Other +936c9608-2cce-4b41-a1f9-8f7ed6745a1a 1 Other Other +936cc04c-d41d-47a9-bfcb-68bcd3b420be 1 Other Other +936cd472-1772-47d9-a4c6-1b36ca4bb066 1 Other Other +936d7128-8a82-4280-b518-4d4c7cac33d7 1 Other Other +936d7880-6db8-43bc-a73a-f03b461e884d 1 \N Other +936d7fe0-a858-4aed-b677-a969175ac341 1 Other Other +936dc6e0-2234-4ce1-a55d-120cd847335f 1 Other Other +936de31e-868b-4125-82c9-ca1b7adb1e32 1 Other Other +936e4ea2-b207-4c11-bd38-ef1e25d74c30 1 Other Other +936e5616-e185-4bd8-9d9e-a44d72853feb 1 Other Other +936e8817-9fde-4e87-bf59-77e3639683f6 1 Other Other +936e8a59-66e5-4a3d-8687-a4d503545735 1 Other Other +936e93d0-5ed5-4be4-a3e2-2f4c98a7039a 1 Other Other +936e9484-541a-4a42-aaef-36ac79f1f027 1 Other Other +936ed576-0506-4fe5-90fe-985a5f999835 1 Other Other +936f096b-a13f-460d-afe3-4fc7be390d28 1 Other Other +936f1205-f519-4e4d-9076-92107911d23e 1 Other Other +936f2eee-694d-4500-ae0b-b8ef64caaa46 1 Other Other +93700392-e39f-4875-b35f-4dae23c06646 1 Other Other +937053b7-f0ad-428a-877e-9f68a9b6944f 1 Other Other +9370ea12-0adc-4116-b70f-f732aae90fb8 1 Other Other +93715e7e-9a32-4373-a173-fc8316daae3f 1 Other Other +9372171a-9301-405a-bb79-e6f8a8a73195 1 Other Other +93724c36-31a4-4bd8-99e7-2c1a3978dc66 1 Other Other +93726ddc-163a-4a09-bec9-952d75348c97 1 Other Other +937288ba-fd4a-4bcb-aafd-18099829c157 1 Other Other +9372d8d6-31a0-42ad-8e6f-9cf33d4c74e3 1 Other Other +9372e1fc-378c-42e0-8bfa-9153d174d639 1 Other Other +93734fe7-0a37-4ee9-a112-966b0db1e01f 1 Other Other +9373741f-42c0-4dc0-80d6-448f63eb5677 1 Other Other +9373b56d-6096-4162-80a8-bb27d4606880 1 Other Other +9373c4c8-f918-4064-a9b5-67ddeeb7e73c 1 Other Other +937435f6-6727-4a42-bf11-f1488779d364 1 Other Other +937445f8-df5f-4cf4-8279-6c0c8d353dce 1 Other Other +937493d4-5b9d-4b2c-ab5f-84140774a654 1 Other Other +9374a435-2d74-47d4-b303-fc0dc4d25f42 1 Other Other +9374f76a-a292-46c8-af01-b111f4691814 1 Other Other +9374fc4c-c40b-4331-920f-e14ad4265298 1 Other Other +93752959-c35c-41eb-90cc-97b12e3a7f19 1 Other Other +93758000-5e05-402a-8e7a-55a849820a1d 1 Other Other +9375b1c3-8caf-4a33-b6d0-3c8c4586c012 1 Other Other +9375ea61-f677-4cdb-85f5-af9073215b6e 1 Other Other +93766e2c-19d3-49de-b583-59bf407c93f5 1 Other Other +937693ee-46cd-4c50-a69b-dd5d68ea09ba 1 Other Other +9376dd47-fbfc-4070-ae35-28d779f31a8a 1 Other Other +93772682-ec70-4a92-a0f2-6bd7c38b558d 1 Other Other +937736e4-e364-48d0-80de-08415e5d1257 1 Other Other +9377ad9d-ac52-4656-836c-9cc9f20405f0 1 Other Other +93780887-619d-4415-acd5-0fbb663a4946 1 Other Other +93783717-bc3e-400e-b35d-408871f6421f 1 Other Other +937849e1-9431-490f-94a6-50865f534c5d 1 Other Other +9378bd1f-7238-4eb8-9f75-61c33796db04 1 Other Other +93792016-4b8c-4fd7-9b4b-fabb08a96b38 1 \N Other +93795655-a1c3-4ab1-80c7-4608d00d26ae 1 Other Other +93796cc4-2d1b-4305-bf33-6d53a0b8ff4d 1 Other Other +937a05e0-46d0-4ad1-a08d-f019e2d07c02 1 Other Other +937a1ca9-52da-4fd4-9df1-1b2a02cdccc6 1 Other Other +937a34cf-1582-4ec1-be02-665644f517bb 1 Other Other +937a674e-ed43-4d49-abbe-264a77fd51e3 1 Other Other +937a74c6-e8f9-4461-86b0-907f4d3d0465 1 Other Other +937ad7a3-71c5-4cc9-a09c-fe7a969eb821 1 Other Other +937ad94b-a81b-485a-a40e-a38231846cf3 1 Other Other +937b2c7f-0f04-4d5c-a974-7633ee7f68c1 1 Other Other +937b5d94-b5fd-4dde-9f27-37c125a40aa5 1 Other Other +937b6d77-1bed-48a1-b46d-0b0086a9f4fe 1 Other Other +937b8473-83e1-45b7-a995-402b8e1e25a9 1 Other Other +937bbfce-d06c-42ac-8fbd-4da00f1792ba 1 Other Other +937bc5f0-5f58-42ff-a265-587426306ff6 1 Other Other +937c741f-b2dd-483f-8ad7-e72469df5d51 1 Other Other +937c790c-474f-4d4e-bb9c-930547c65041 1 Other Other +937c90e0-4785-40d4-aca2-e0b4fd62651d 1 Other Other +937cb49b-2353-4ff2-ad68-f890c9389563 1 Other Other +937d275a-3bdb-482c-916b-76b70e2ce20d 1 Other Other +937d56bf-1aaa-400e-93d9-e8d9792657e9 1 Other Other +937d89cc-43db-42d8-9d66-a794f1f23b92 1 Other Other +937d8d73-67d1-4a6c-a473-117d152e4e00 1 Other Other +937da1bc-3a92-4fce-b961-9b6aaa36f7b7 1 Other Other +937ddad3-2b35-4556-8680-3f972abd1363 1 Other Other +937e1160-98e2-49b0-bb46-59d1cc78b8f2 1 Other Other +937e6da2-ccc3-485a-b2a1-41f118b9d9b6 1 Other Other +937e708a-7625-4741-a6d7-3ae5b562d169 1 Other Other +937ea87b-7c0a-494f-8388-f485de335567 1 Other Other +937ee27c-6e99-4144-a6af-bd299c06348d 1 Other Other +937f37bd-add2-4960-9ef4-3e61c6f16504 1 Other Other +937f42a1-e890-4c5d-8d26-dd73cdfe2077 1 Other Other +937f8685-e973-4a8e-b264-ce4830ff905d 1 Other Other +937f99ba-3b6d-4c7b-9693-9f85e7dc792c 1 Other Other +937fcc90-60d3-4132-809c-3717d0f76bf0 1 Other Other +937fe7fe-5ee3-4d10-9403-b8ee0026ffc0 1 Other Other +938028d5-8aaa-4596-8ec4-337f67452214 1 Other Other +9380481d-a721-4a64-a95b-e1811ca79b24 1 \N Other +938066ee-bf00-466e-b78d-af5ce761a9d0 1 Other Other +9380bf11-95b1-441d-acf7-c243a8d41334 1 Other Other +9380cd69-eff9-492e-98b2-3f786dbafdc7 1 Other Other +9380eb17-00e4-47ba-9794-114619b4a7f4 1 Other Other +9380f5f4-dbe5-4a2c-a20b-f75062a2b34c 1 Other Other +9380fc5f-b224-4ddc-966b-bd1dc0200eb7 1 Other Other +93816e68-9df2-4895-9a21-020177d9d6ba 1 Other Other +9381998e-7589-41a6-bfee-d1979b489dbf 1 Other Other +9381c14b-f323-4513-bc2a-8ba5bf0d4575 1 Other Other +9381dbf2-2288-4268-90e0-984ff53638af 1 Other Other +9381e29a-d5b7-44d1-bd18-4a72d925c39a 1 Other Other +93820049-3790-4be8-b0a6-b3b70cb94c35 1 Other Other +9382262c-6a29-4a64-b2fe-b613f724790d 1 \N Other +938255e1-8422-4936-8145-c99d84d8b918 1 Other Other +9382d1a0-f976-4ba8-b249-4254fcf9a9f1 1 Other Other +9382d85f-8e95-47b6-b1d2-19b84620b976 1 Other Other +9382f433-3a3e-4c56-b582-2d4dc55caa29 1 Other Other +9383420a-0a6a-4a52-a4b0-97987f6d2dab 1 Other Other +93835a23-5db9-4e4d-a22a-079243dc09a3 1 Other Other +9383e45d-215a-4cc2-819e-d16880c23f8c 1 Other Other +9384897d-c574-4c04-991e-6c54dddfa8cd 1 \N Other +93849c2f-0bce-47ea-aef1-c94d3d2a8137 1 Other Other +9384aefe-ad8a-4e92-bcd1-2dc2780f6160 1 Other Other +9384b5da-1d37-4949-8a11-8510f5384185 1 Other Other +9384b66f-63e7-4e61-a1f9-3e1b48f4535e 1 Other Other +9384e644-d7e8-4f19-8244-3ddd32679402 1 Other Other +93850ad9-4d42-4c43-be48-dfe6dd9309ea 1 Other Other +9385313b-27a9-4084-8c33-da1e308ba1dc 1 Other Other +938554f3-77c6-4ad2-b065-0c56e95a7a57 1 Other Other +93856cf0-7ee7-456f-8fa8-70890d4a95c1 1 \N Other +9385a1b5-814b-43c9-b6a8-03185aced68d 1 Other Other +9385d5f0-f46c-4b65-85b0-29848780be2b 1 Other Other +9385e8a8-7a6a-4e78-87cd-ca4fd455596f 1 Other Other +9385f223-2d82-498d-bdee-e4880a97bef4 1 Other Other +9386025f-89ae-43ca-895a-0c8fc4de821a 1 Other Other +93862311-43d3-4efe-80b0-c6bd9812e948 1 Other Other +9386699b-258b-4586-b69b-195fdf4715f2 1 Other Other +9386a0ad-9622-4673-9035-57cc22c97416 1 Other Other +9386a1bd-9d5f-43bb-834a-dc40cbdf410b 1 Other Other +9386b384-3841-4759-bee6-bc8343508f27 1 Other Other +938729c3-3130-4aa1-9e4b-9d42933296ff 1 Other Other +938762d1-f30f-45d2-bfbe-594b03cd1078 1 Other Other +93877bd1-d7e5-471f-bc2d-f277d29b9fbd 1 Other Other +93878d19-94f7-48d1-b01e-eda3fe06bea1 1 James Other +93880e85-2e4d-41ad-b543-9126fc31fd7f 1 Other Other +938863c2-abe6-4036-a1ee-34995e38cfaa 1 Other Other +93886fa4-31b4-41ff-80b7-beac7d8e8c6d 1 Other Other +9388b5f4-f8e6-4053-9e06-79545a4502d8 1 Other Other +9388e2ef-e085-419f-886b-edf69f650e72 1 Other Other +9388eb30-14fe-4dce-9d39-e68fa953e33d 1 Other Other +9389071a-7bff-43db-abd2-61a080573a6a 1 Other Other +93893a41-6800-4c00-abd0-556d9111b28d 1 Other Other +9389509e-2997-4381-bfc8-c81b43f46814 1 Other Other +93897525-b54e-4081-acb1-0d857314754e 1 Other Other +938987a4-9201-41ab-8af8-2cf17a6c7650 1 Other Other +93898b3b-9f4c-4829-9398-aa7cac53a822 1 Other Other +938998dd-7a8d-4992-bc38-097cf50cf18e 1 Other Other +9389b806-9e01-4ab8-8c7c-355c22482e18 1 Other Other +9389da06-308b-479c-b2bc-28230bb268e8 1 Other Other +9389f1e1-1730-4a1f-9835-dfc7667c588d 1 Other Other +9389fd11-8942-4cd9-8cd4-dd4f50fc18b2 1 Other Other +938a0fb3-ff28-4f66-8c55-c3bc11286954 1 Other Other +938a2c92-b666-4582-bf1d-77aee38494b1 1 Other Other +938a3994-8f28-4f5d-a1c1-d602150faa52 1 Other Other +938aa6fb-e899-47c0-9f79-0d72068db421 1 Other Other +938b1a8b-9f87-45b7-9c25-324e69bb46ef 1 Other Other +938b20c2-a008-4444-99a2-24eae654b9a8 1 Other Other +938b5855-4866-488e-8097-194a752460fd 1 Other Other +938b83ad-2f24-4870-aded-d689a83a8e9d 1 Other Other +938baa19-0636-4626-9d0e-efe2674f8421 1 Other Other +938bda6d-6048-4ef7-801f-ef8cb61dd50a 1 Other Other +938c0b75-d871-4ddd-9165-13d32ee944e4 1 Other Other +938c48e7-66cc-4417-ac73-51be8d04f7b6 1 Other Other +938cdf07-db96-4464-8d11-51bd0b3bab36 1 Other Other +938ce2a6-7fc0-4df9-8edc-4f9d7d6a2906 1 Other Other +938d1220-ffee-4d6b-b596-33078a820a0a 1 Other Other +938d4cf3-4253-4a59-ad35-66acec0b0bd8 1 Other Other +938db403-3ecd-4cc4-864f-cc3698cb20e8 1 Other Other +938df600-7da1-41df-b1b9-dcf3349672c0 1 Other Other +938e1a84-e3b2-422d-8d3a-f28512cbdab6 1 Other Other +938e2226-41f1-4644-a4d0-e3b1240d6ab8 1 Other Other +938e2c4e-c138-4bf2-931e-9fc2e234df1e 1 Other Other +938e6c42-bae3-46ff-a007-074021e69bbd 1 Other Other +938ea33e-9455-4228-8a14-47945a8e581e 1 Other Other +938eeb5b-1a8a-4733-94ca-52749e74aa23 1 Other Other +938f0b90-6b1d-4d6b-95f6-4f1ce5ea038a 1 Other Other +938f3713-43aa-4780-b179-20c4a5f26f25 1 Other Other +938f6597-9670-4086-8b57-89e24f2b6873 1 Other Other +938fa1d2-67f6-49ff-920e-265bb83916b0 1 \N Other +938fa8b5-55cb-4c99-8b41-872c965b61c4 1 Other Other +938fcd90-2971-4e23-8920-0812a246e4c1 1 Other Other +938fd500-c78d-4548-8a71-ca6aeb598f00 1 Other Other +938ffb64-5bd6-4c3c-aa9e-840dbda237d9 1 Other Other +938ffe88-7d9c-436e-8151-e6c5df315ed3 1 James Other +939037d8-86f9-454f-8d36-7e4ecbc71152 1 Other Other +939071f6-b41b-4e58-927f-ffe5e2128fb1 1 Other Other +9390d98f-7b2b-4dec-8e31-74a2a293daf5 1 Other Other +9390fd4c-e81e-4800-b121-5d67dea9631d 1 Other Other +939145b0-60a7-46f4-8445-1caf532bd482 1 Other Other +93915514-3439-4af7-877b-c2a5d9823d7e 1 Other Other +93916ed9-e2fb-4a88-8c5d-e24442e282ff 1 Other Other +93917fd1-0014-4098-9cdb-6dad520064ac 1 \N Other +9391d920-2172-4264-a4a1-f6390d69be7f 1 Other Other +93923bb5-7482-4ce6-b755-791775dcf187 1 Other Other +93924695-006e-451e-9a3e-5467a408fa3a 1 Other Other +9392610e-0763-471d-bd83-fad72afe66de 1 Other Other +939276b2-0086-44a5-9883-555de9458689 1 Other Other +93927ad7-7995-442f-b1e4-7d6429c6bb94 1 Other Other +93927e5d-bec1-4990-9100-5675c2f4b8ba 1 Other Other +93928307-7900-4866-8148-945b173396ad 1 Other Other +9392a30a-7ec5-4984-85ff-ec975b8fc1c6 1 Other Other +9392b2c8-83df-4998-abab-668c69f7793d 1 Other Other +9392cbe9-4f26-45a1-8933-99ae4748a7a6 1 Other Other +939319d0-3f15-41c2-be96-8cc351378bd9 1 Other Other +939337f7-1b2e-4c7b-ae8b-6501a879e03b 1 Other Other +93938386-312e-4203-b8a6-2d58b33cf258 1 Other Other +9393d2d8-2a3c-4ba3-86b4-64df13417ab7 1 Other Other +9393e2fa-8077-492a-8cbb-ccbe900a62b2 1 Other Other +9393ecbe-a735-43ad-af33-4ada3ad93494 1 Other Other +93940408-1d91-4134-85cb-9464b17d0610 1 Other Other +93948704-a4cc-46f9-9509-90407bc1872a 1 Other Other +9394ad4b-49f3-4b39-9e4f-0d4ffdbbd338 1 Other Other +9394e7c3-82d7-49df-9c03-cabcb5416402 1 Other Other +9394eaec-9896-41f2-aade-1d8e472e4943 1 \N Other +93953bc5-e0a9-4dab-99f7-b009b52d1eca 1 \N Other +9395a3bd-ee34-4cc5-82ba-5179a9867689 1 Other Other +9395b7e4-209e-482a-ae5e-936a15f97f1f 1 Other Other +9395bc2e-812a-411e-870c-9d2cecbe61c1 1 Other Other +9395c6b1-9e76-48a9-81ae-239145906954 1 James Other +9395e17a-289d-406c-bed1-cc263334735b 1 Other Other +9395fdda-80fb-4a78-b285-325b210b2a8b 1 Other Other +939602d4-f05f-458e-9e0e-fb56b00ea414 1 Other Other +9396247e-758c-4b14-8ed5-39e203263ed9 1 Other Other +93963cf3-7a0a-4fa5-85e7-9a7fb1ed6625 1 Other Other +93963e97-6d28-43e9-b808-5f2d4fac2df5 1 Other Other +9396780e-f63d-441f-9a7f-39313f8653d5 1 Other Other +93969e83-5948-4594-bf96-aef20c8c59b6 1 Other Other +93969fd8-e562-4afa-88bd-4b935dee2e9c 1 James Other +9396ab69-5a0b-4958-8864-235b11514979 1 Other Other +939713f3-ced2-491f-a00f-234c13389563 1 Other Other +93978dd4-9b84-41bc-8d3c-97a87bf0f01b 1 Other Other +939799d0-fa3c-43b5-9a61-54bb227691d0 1 Other Other +9397d46d-b1a0-406c-bb32-0dcd3d303ec9 1 Other Other +93983583-64be-4de6-972a-3737d9071da1 1 Other Other +93989767-c856-4f9c-9148-7d11677a9b04 1 Other Other +9398e4fb-d105-41a3-972d-f0d66da0cb11 1 Other Other +9398faa8-ee07-4470-974a-5c8cde876d48 1 Other Other +939906a6-00c6-4c6b-8321-c55a0214838c 1 Other Other +93991058-a9f9-4660-b42e-4a15c52613a7 1 Other Other +939942b4-2a4a-4db1-a867-4b47158febea 1 Other Other +93994b1e-0d66-4c0e-ab5f-e81789094f2f 1 Other Other +939a14fd-4ab8-482f-a008-0c6af52c9b5a 1 Other Other +939a2e5b-9378-413b-8455-30a2a508b957 1 Other Other +939a5a2f-4112-4586-99bc-a8ce2c08f8dc 1 Other Other +939a5e67-70cd-41d6-9b53-5542ccc312ab 1 Other Other +939a8ae1-a3bc-4308-8ddd-6fa887d70f62 1 Other Other +939a9416-36e8-499e-b638-35293470b679 1 Other Other +939ac028-09bd-4721-99d4-4f62b9ad1187 1 Other Other +939ad1e9-82ee-43a3-9569-cf042481d8ef 1 Other Other +939b625c-2f42-470b-a433-576446b41b86 1 Other Other +939ba729-7eb4-477d-9442-a4aecbfc52e0 1 Other Other +939bb89e-1eec-4e71-bb1e-3962d32a801c 1 Other Other +939bf8ff-9d4e-49f4-be6b-8c4c66f6d8b2 1 Other Other +939c5f04-cb97-4f43-ad63-34a0ffd285ea 1 Other Other +939ca6cc-c231-4371-bee8-451bfb233459 1 Other Other +939ccd70-0fde-4b64-bf4c-05f2fb506bcf 1 Other Other +939ce9f8-3878-49b3-8c69-8f97d6d888ae 1 Other Other +939d05db-cd7e-4604-8dfc-f414856a35a8 1 Other Other +939d07e0-1b81-4ab5-979d-0c871613f493 1 Other Other +939d97da-f806-4404-b261-41f725a4c4d8 1 Other Other +939da15b-3af2-437f-938c-d9ec55efc562 1 Other Other +939dba40-3268-493f-939a-8ac29b6e88e3 1 Other Other +939dd389-d1b4-41ab-bda5-791efba701fb 1 Other Other +939df5f1-8584-4f20-b3a0-79486b6c5d7c 1 Other Other +939e12f6-c7e2-4531-a00d-767e462db02b 1 Other Other +939e31a3-7ff2-43ad-8040-454c2a9a90ce 1 Other Other +939e6621-0153-433b-b96b-164e325901e2 1 Other Other +939e7807-3f7c-4ef4-9368-4fd0100ed25f 1 Other Other +939e85ac-8cc6-4df9-85b9-cdc2c569d967 1 Other Other +939f7fbc-f2fb-477c-b6dd-4bf08e3cbee8 1 Other Other +939f96f0-89e3-4673-89ac-e88e7de26117 1 Other Other +939fefa3-a04d-4231-8193-a30f73db2cbe 1 Other Other +93a08372-a571-45bb-b3bd-18e5be0e7bb6 1 Other Other +93a10b38-57cc-4fda-9b47-0f137b5a3913 1 Other Other +93a1811f-f2a4-4c79-9a7f-5defc1fde2f0 1 Other Other +93a1a63c-ec3d-43a5-88c8-4af219a32990 1 Other Other +93a1c28c-24cc-4ea4-946a-568a121f308c 1 Other Other +93a24612-afd5-4fae-9332-d1edffbcea1b 1 Other Other +93a272ac-4376-462a-91ba-bd8b09e8df1f 1 Other Other +93a27b64-5389-4d83-9703-da80df50d455 1 Other Other +93a27c80-5702-4fdd-ad00-372976eb2804 1 Other Other +93a28a0e-9e73-4699-8663-4655167af691 1 Other Other +93a2e012-76e4-4ccb-bcd9-bed0699c9c6f 1 Other Other +93a310e7-227e-4503-976e-ce5b1c7e87a6 1 Other Other +93a32b1a-e44d-4d32-ab83-f94527d67b69 1 Other Other +93a35260-5f61-47b1-8436-f7f4621c94ba 1 Other Other +93a398c8-3d26-450a-816c-c36bef6f4664 1 Other Other +93a39cfa-0f65-45de-8d23-6101bb9b7717 1 Other Other +93a3d08a-a615-418f-8355-32c7a4abf896 1 \N Other +93a3e1a8-d711-409d-aecb-07f01eccd0a1 1 Other Other +93a3e5c6-fbfd-487a-9f19-bb6938eb21aa 1 Other Other +93a3f28c-3420-40e1-9004-5287c85df58e 1 Other Other +93a41d26-5950-4352-a217-1f54f38114a9 1 Other Other +93a45988-a040-4e0d-8d20-3a5ea87526f2 1 Other Other +93a463f1-0b64-40e3-b20c-1f723b2c5fe0 1 Other Other +93a485a7-6737-401f-b51a-16197b8c3748 1 Other Other +93a4d677-355b-4894-8675-795036bc67f5 1 Other Other +93a4f7a9-fb9c-45f3-a92f-cdb9b07175b8 1 Other Other +93a56439-fdf2-49fe-b33e-797896219b2b 1 Other Other +93a568a0-46a6-4575-9756-17f5e7703dbe 1 Other Other +93a5870c-2a6c-494c-b634-557064daffdd 1 Other Other +93a598f4-3d1b-402e-a648-7c9da78c1af4 1 Other Other +93a5eea6-e0cc-456f-8b56-a6940a30d827 1 \N Other +93a64e21-b908-4440-9f5a-f4fa18f36b85 1 Other Other +93a6a7e7-6eb2-406c-8839-f562f60fe703 1 Other Other +93a6f4f2-f85b-4c1b-849a-52d6cebc67ea 1 Other Other +93a740dd-eb28-4266-ae25-4d778574fd61 1 Other Other +93a78107-1985-4831-8ca0-75a92d7edacf 1 Other Other +93a79a8b-ef92-44f0-ba93-2179e56befaa 1 James Other +93a7b4b9-f3f9-4c62-a703-273fb2f46232 1 Other Other +93a7c0ad-2a53-4cc3-8ff2-fbab21e91fb6 1 Other Other +93a7d71c-af3d-4f34-a350-5ca962493e8e 1 Other Other +93a7f272-e63e-4604-8ec9-07718b24992d 1 \N Other +93a8008a-5017-4367-8c5c-8d144728c5da 1 Other Other +93a82e28-8e90-4178-8927-a3024bbc0c06 1 Other Other +93a86c8d-c688-4148-911d-c3c4c949e2c3 1 Other Other +93a8710d-dd2e-48ba-8fc4-3b0cc80f5536 1 Other Other +93a87fb3-d774-4e78-84aa-5d361b422748 1 Other Other +93a886ba-eabd-447b-85b7-d906dc31075c 1 Other Other +93a8d66c-0d73-4a07-88bf-7652d59ca6f7 1 Other Other +93a8e13f-a264-4829-ab77-9176983ff594 1 Other Other +93a8e6de-c6c7-4838-97e1-a8de059608cf 1 Other Other +93a90873-1eaf-4512-8ed9-b58ab2301368 1 Other Other +93a942e5-7341-4bf0-9f87-c38f8402cd14 1 Other Other +93a95154-4ce6-4733-bfdf-dc0c1855f043 1 Other Other +93a999da-d2be-486b-a4e0-adb0a9b47fce 1 Other Other +93a9f96a-3dad-4497-9db0-31471a76e10c 1 Other Other +93aa67f8-d43b-4f75-b7f9-8a46167b284b 1 Other Other +93aa7209-65e0-4f1f-af37-dee9cda7464f 1 Other Other +93aabeec-c848-47ef-89f2-a6c2d004d0d9 1 Other Other +93ab1b88-0eca-4a41-812c-34bf126114b6 1 \N Other +93ab1bce-cd6f-4aa9-afd9-eaf13ced6985 1 Other Other +93ab4de3-baf0-4692-8fc4-8ece351d9e4d 1 Other Other +93ab7059-92f9-42cf-b0d3-ff0b5936b795 1 Other Other +93ab7b95-5c5e-429c-92c1-aab300e6f7ee 1 Other Other +93abdbd4-9041-4d92-8beb-440bb6080223 1 Other Other +93ac4570-3e06-4ee1-b2e8-2dc2d7e35dbf 1 Other Other +93ac866f-d12d-4442-bb6e-e5a65bdf141f 1 Other Other +93aca496-c577-41aa-b05a-536d219dd26c 1 Other Other +93acbcc6-b7da-444b-9b35-b00cc995016b 1 Other Other +93ad1a01-a67c-4d90-a41e-4d2d76c2269e 1 Other Other +93ad227d-b117-4345-8f38-56f1db481d3b 1 Other Other +93ad5450-ca75-4834-a610-dc3756ea0742 1 Other Other +93ad894b-ac1b-4b17-aa90-6048f9571574 1 Other Other +93ad9618-c4a2-477b-ad94-f33e711301d3 1 Other Other +93adac06-1e60-4d47-8a3d-70a6a5ed1f03 1 Other Other +93adb3bb-34ba-47ca-8abc-6988bee0c15f 1 Other Other +93adc923-47e9-4644-b792-77a01e7521db 1 Other Other +93ade4aa-7d19-4189-9b9e-ba728ffef274 1 Other Other +93ade73e-5fcb-4181-a049-08849842af50 1 Other Other +93adebcd-1ef7-4b8e-963d-86eb62db02e7 1 Other Other +93ae023f-abf9-4410-86d3-b3f84edd6f46 1 Other Other +93ae0ad9-d174-4f9e-8a3f-5de49f2f0586 1 Other Other +93ae125c-215e-4fba-a381-6c2c363d7bf4 1 Other Other +93ae3332-98db-4f3a-9ce2-5e61af6416de 1 Other Other +93ae753c-836d-4fbd-b911-5ed36d1629e4 1 Other Other +93aebbb6-c8d8-41cb-830b-0db95baf91a6 1 Other Other +93aeebe0-9509-4589-a420-398b3e09dd16 1 Other Other +93af3fed-c120-469d-a00d-ca7ad8d90705 1 Other Other +93af49a8-4515-4c70-bb36-e23b5140b6bb 1 Other Other +93af5cf5-4696-4cd0-b81c-b5cbdddcb0a1 1 Other Other +93af74dd-219f-43cf-baa6-552de602c0b3 1 Other Other +93af9a42-818e-4c5b-834d-6e8c8c360801 1 Other Other +93af9f53-2c48-4069-ab2f-64ec09c16e65 1 Other Other +93afd417-e55a-464d-b97c-c0df59417536 1 Other Other +93afd750-3889-407a-9ac6-7a28d6776f78 1 Other Other +93afd8a8-ae74-4d0a-b38e-80a52df567af 1 Other Other +93afde2e-0837-4f38-a2cc-21179780f17d 1 Other Other +93affe86-a919-4f5e-b028-a62469651c59 1 Other Other +93b02273-ac48-4323-ab58-d2850b8ccb3e 1 Other Other +93b043fb-cab3-48f6-a7f8-04999960e95b 1 \N Other +93b07e2d-6712-489d-85f7-044a128d1984 1 Other Other +93b0bdaa-b3a6-406f-aa95-fbb966be31e1 1 Other Other +93b0f953-836e-404f-ad34-1bb3d1e18dfd 1 Other Other +93b1165c-2ea6-4551-8d0f-7508e3cc44b4 1 Other Other +93b159dd-4f1a-41c6-b4cf-e183a53aa0c9 1 Other Other +93b1a96b-ad5f-4dd3-90a8-6d1704f266b4 1 Other Other +93b1dfbc-84ed-4764-88f1-67e75274149f 1 Other Other +93b1fabe-f936-4335-afa2-35e9a75fcd67 1 Other Other +93b24f4f-efdf-423e-9b2f-fa99da481e3f 1 Other Other +93b27313-ce2e-45f9-b6cb-1a71d375e419 1 Other Other +93b29fb0-7846-4f0a-ba4a-a20963f47574 1 Other Other +93b2d50b-de84-4303-857f-f5b47f6f916f 1 Other Other +93b2f644-b29f-4319-883b-30b75ebfa1dd 1 Other Other +93b2fbbc-6ae9-4faf-b81b-de9579264f60 1 Other Other +93b338b7-4f36-4726-9734-65b3256004df 1 Other Other +93b37b1f-efb6-48fb-a558-723fb2f8afc8 1 Other Other +93b394ed-cc0e-4de5-9924-327dd28ae16d 1 Other Other +93b3d34f-8758-4a58-ac83-f861d03fe722 1 Other Other +93b3e942-7df8-4ad3-a35c-fb3da3ee2125 1 Other Other +93b3f158-1361-47fa-a178-df5913c38b30 1 Other Other +93b3fdaa-18df-4b67-b0c9-eb6da6fc7038 1 Other Other +93b41a83-d321-4b66-bdf8-6d8b56449e92 1 Other Other +93b443ba-6617-4d70-9f7f-e71aa87565b4 1 Other Other +93b44d1c-ed4f-4d82-a091-919a13c328f8 1 Other Other +93b45cc5-ac06-4f3b-b06f-09c065ef136e 1 Other Other +93b45d97-cb61-4fe3-8bca-5f1680949351 1 Other Other +93b472c9-c160-4193-911d-60226bd037a9 1 Other Other +93b47380-5850-4aa9-909c-fa9548105cd9 1 Other Other +93b47714-83a7-4c37-9dcd-1cfa3dc8c8cc 1 Other Other +93b48235-f81e-47f9-a7b4-2560bcea8169 1 \N Other +93b52d2d-2a81-4c3b-83cb-14476486c59d 1 Other Other +93b56d23-2c61-4e89-8c2e-7409580c3561 1 Other Other +93b598d1-d3d7-43af-90bc-e0ad4268976b 1 Other Other +93b5a17b-7a7b-47e0-b493-9dc5a08f4c20 1 \N Other +93b5ac04-57bc-467b-b7f4-e6256701609a 1 Other Other +93b5c326-4f36-451d-927c-5442e48c3dee 1 \N Other +93b5c399-3d25-4ccb-8efa-0cc885e9f28b 1 Other Other +93b601f7-2e62-4a37-94ca-2ad3b68c166e 1 Other Other +93b60997-6104-4fb7-856a-73d29dd30a9a 1 \N Other +93b69386-8e93-4265-b2fe-05f96f985103 1 Other Other +93b6d772-077e-471d-b229-8db479c40575 1 Other Other +93b704d9-0149-4af7-94cd-25d9769491d4 1 Other Other +93b7114e-e00c-41e0-a2a3-9746f9b010f8 1 Other Other +93b74be9-edb5-4d40-ba44-d9dc452fa7fa 1 Other Other +93b78814-c82f-4002-8897-d876517b5888 1 \N Other +93b7bfe4-7d4a-4fd4-a734-c7b02ef59690 1 Other Other +93b7cad5-c9c8-4f7e-b60b-08fc94a6a35d 1 James Other +93b80e79-56bb-43ef-b06c-8d13585b6041 1 Other Other +93b85ae9-e3ad-457a-9ba5-1650be1c0ea5 1 Other Other +93b85ca1-72d5-4ebd-a4e4-261196bb9bc4 1 Other Other +93b862fb-f2dc-48c0-8b4b-a24705e62892 1 Other Other +93b96fd9-54a7-4262-bd1c-627ae26a1248 1 Other Other +93b9ef72-99fd-47f3-b6ef-86450eba03f3 1 Other Other +93ba0ca3-8ba7-45a8-9cd6-7fcc70bad87e 1 Other Other +93ba2383-6412-4880-b08e-bd30750b3c0d 1 Other Other +93baf6ba-385c-427d-b5ec-7908243caa3c 1 Other Other +93bb285f-9d34-4cab-aa87-f2654ee31dc4 1 Other Other +93bb2c5c-04a5-485c-88e1-798cb4ca8f66 1 Other Other +93bb5fd4-9ae9-4136-9982-eebbd90acc82 1 Other Other +93bb7158-a043-4927-a5af-6799505cfbf1 1 Other Other +93bbd305-6e6f-4a74-ac2f-1c12514b31a5 1 Other Other +93bbe3d4-f7fe-49c4-b20a-9fa682078c0f 1 Other Other +93bc3443-924c-4d01-9d16-faa617330937 1 Other Other +93bc8ab7-b793-48b1-9932-057cc33afedc 1 Other Other +93bcdbfc-de64-4279-b0a3-66ebe1b45de8 1 Other Other +93bd2c34-b9e3-4268-9b2b-97f6469c8622 1 Other Other +93bd62c2-4dce-4d72-bf37-657193e4cba4 1 Other Other +93bd92fd-1b92-470e-95da-5e742669b4e1 1 Other Other +93bddfb9-ddea-4b72-86a1-dc39e93378b6 1 Other Other +93bde1af-8ad3-4115-941a-dcd50895e3f1 1 Other Other +93bdfd6b-70a8-4622-beae-50f46454fb98 1 Other Other +93be3b6e-251a-4eb8-842d-a6cad0c20b68 1 Other Other +93be74df-6ea8-41ca-bc7f-5f061d7bad1f 1 Other Other +93be97a6-8754-443a-96f0-f121dbea21c2 1 Other Other +93bea292-d8f4-41df-a243-0ecb1e065490 1 Other Other +93beb2b8-77b5-4f16-9576-e5e242b19199 1 Other Other +93befbc6-6599-407c-ad21-e38fcf5b016e 1 \N Other +93bf72a7-7cf7-4509-ad0b-7811ed5ab737 1 Other Other +93bfbd6e-f464-4959-ab9c-b4a6c0d66cb1 1 Other Other +93bfc3dd-e866-4cf0-966f-fa63267068bf 1 Other Other +93bfddb8-f788-4e80-ba43-2a1a3f5c13a5 1 Other Other +93c011c9-68e4-4906-8b60-ecaba979fa66 1 Other Other +93c02a94-bc90-4070-8760-90ff91df9bbc 1 Other Other +93c039c8-5ba9-4066-a654-5c28c6a07101 1 Other Other +93c0d781-55cd-49e6-b429-8629c8c354f6 1 Other Other +93c104fe-3e9b-464b-a847-0347927fcea8 1 Other Other +93c16fd3-3967-4b54-bf3a-71bc129fc42d 1 Other Other +93c18236-29fb-4e9a-a83f-a7da07bab650 1 Other Other +93c18f9c-46b2-4111-b9bc-86078b76c1c0 1 Other Other +93c19e9d-cc28-4391-9adb-6b079525dd7c 1 Other Other +93c1af90-14ff-4383-8601-a19b2b65aeff 1 Other Other +93c1c830-bedc-4a9d-ad1e-b1d9a85b7aab 1 Other Other +93c20862-2679-41e0-bea7-9b204605cc4d 1 Other Other +93c210d7-490f-40b5-84a1-5ddd6d3f4eae 1 Other Other +93c21845-456b-44a5-aea6-393c50f12a00 1 Other Other +93c237da-ac46-4508-9608-54114c17bdc3 1 Other Other +93c266f4-13e6-43b1-bf79-61d6870eaf09 1 Other Other +93c27b27-9e8f-4b98-ba85-860657ff1887 1 Other Other +93c2e05e-1139-498c-b054-0fcb5baf7be0 1 Other Other +93c3bdb2-8f7f-41b2-9aa0-e3337109a17c 1 Other Other +93c3bed2-7215-4fa1-bcb6-54c2c4d93947 1 Other Other +93c3c8c7-5bde-4937-9a08-f6d19be3a27f 1 Other Other +93c426d1-f205-48db-9d13-853711d261df 1 \N Other +93c483ce-6098-4141-b9f1-09bebfa0ab0f 1 Other Other +93c4901e-8515-411c-a6a9-96ba02840a02 1 Other Other +93c4a98d-9d1d-46b4-af3f-876358ec6d32 1 Other Other +93c510bb-4322-453f-a085-c553364fc18a 1 Other Other +93c5142d-0db7-46dc-9fa4-b33087c795fe 1 Other Other +93c5227c-d58b-4592-8e85-801b3952c462 1 Other Other +93c557fe-654b-4cb0-aaf3-c86efc57609f 1 Other Other +93c57a65-b4bc-49b5-8759-8bbe389aa227 1 Other Other +93c589dd-3088-4288-903b-fc1cfa0f63fc 1 Other Other +93c5afb0-c948-4c2c-8273-9f9932096164 1 Other Other +93c5c0ee-57bc-4edf-843b-5b818cbd5193 1 \N Other +93c5d18b-47d0-4ce5-99dc-e177890502e8 1 Other Other +93c5d908-7acc-42d5-8746-ee597c04565b 1 Other Other +93c63431-3a54-4c0e-b126-77821f882b39 1 Other Other +93c68086-a4ef-4c69-b88e-2c1c073af39d 1 Other Other +93c68e8e-1ce9-44b5-9648-f2906109dfb3 1 Other Other +93c6a256-78fe-4581-a6d5-9e78616f7faa 1 Other Other +93c6bc95-65a7-4487-94d6-737e5fed0654 1 Other Other +93c6cfa3-7570-49ca-a2cc-f5fbdf55b605 1 Other Other +93c6e3b9-3e3e-4877-a6ed-a1c2ecc3cfde 1 Other Other +93c71f22-135b-439c-a73b-e23b188c329b 1 Other Other +93c72be2-fa5f-419a-a034-4f2501dcb3b1 1 James Other +93c73c02-aa32-4729-b847-8980e162893f 1 Other Other +93c7460b-38f4-4093-889f-5d272ae24f40 1 Other Other +93c7aada-5b64-4b2b-93f5-93229572353c 1 Other Other +93c7b9f3-bfdd-479d-8270-a90189b2994b 1 Other Other +93c8111d-db19-42a9-8e5a-509efe60ccc8 1 Other Other +93c8ff0e-aaca-4f75-b577-530ac856fd20 1 Other Other +93c93020-1727-435c-8ae9-d921a3556386 1 Other Other +93c945d0-5395-4a12-9c66-d82e922d1490 1 Other Other +93c94e49-7c24-4f5b-87ea-f9302412c4fe 1 Other Other +93c95edd-e285-4e91-af6e-75ce728351b8 1 Other Other +93c96d97-ecd4-4200-b22f-6fda8f10d850 1 Other Other +93c9a312-d5cc-48df-97a3-b011bae2ba5a 1 Other Other +93c9af4d-4965-49e3-9460-5a902dcacd83 1 Other Other +93c9d2b6-f181-46f7-9dc9-9f8dd214835f 1 Other Other +93ca79ca-2aac-431a-ac55-ae7d9cedb897 1 Other Other +93cb1be1-c153-4387-8a8a-7ab1eff11517 1 Other Other +93cb2de4-cbf8-494d-a036-83c54a453b20 1 Other Other +93cc25db-e424-459c-a7e3-20dfee5dc932 1 Other Other +93cc2e79-8c9e-4dfd-868d-5489f6581ac4 1 Other Other +93cc36db-d34f-4e1b-a704-858863f9b863 1 Other Other +93cc4c89-cf89-4485-aec0-218c256430d3 1 Other Other +93cc502c-e509-4a32-8c3d-de4b1ebd9b91 1 Other Other +93cc68d3-2a89-40ef-a9b3-1a3452a9fbe1 1 Other Other +93cc8f46-8282-4978-a522-3c74e75d018b 1 Other Other +93ccafa1-b749-4aa4-8c59-dca7fe0f6ec9 1 Other Other +93ccd39c-6a2c-4534-b01e-02a7d0b8d972 1 James Other +93cd7d84-28cc-42d1-8435-a99f099a68af 1 Other Other +93cd7fe8-4bd2-4936-95d0-fdb15f141313 1 Other Other +93cda9c6-56d5-48ae-afe5-33f2893baffd 1 Other Other +93cdba95-6bbd-430b-b292-7a520216aba1 1 Other Other +93cdd27a-7be6-4706-9e74-7a7c4f07d99b 1 Other Other +93ce567c-8963-41dd-94b4-8ad982daf52a 1 \N Other +93ce5d75-9d33-47f0-9298-8214768a67f1 1 Other Other +93ce63f1-2eb8-4201-85a6-671e30f7f7bc 1 Other Other +93ce8d04-9a8c-4a3b-801b-a7476ac57a9c 1 Other Other +93cefdf5-1a65-4373-9a5b-76b7e9859bd8 1 Other Other +93cf1bba-f3b7-47ca-9917-43fc6b63bdea 1 Other Other +93cf5fc2-360d-40a5-b450-1a71ef39904d 1 Other Other +93cf9dd2-6340-4806-9b25-e0ca550cb808 1 Other Other +93cfa061-79ed-4c4a-90c7-9a9312ce4be4 1 Other Other +93cfbe99-ba04-4e2d-890d-e0f19a40ee4a 1 Other Other +93cfd509-6741-4b2a-afd4-ccc175e9f122 1 Other Other +93d00f61-5ed5-4ce2-b913-5f960301a563 1 Other Other +93d05366-c0f9-41fb-8d0d-b148a4e13d3c 1 Other Other +93d05da0-522e-42e7-a713-c9c87194fdb6 1 Other Other +93d0f7e1-1179-42e5-95a6-87f14316a8e5 1 Other Other +93d10eae-a258-4f8e-b301-6f3b7e103aec 1 James Other +93d17389-38f3-47a4-9241-33031bfa9bb0 1 Other Other +93d1a991-2157-49ea-884f-3c04f40c7725 1 Other Other +93d1d174-aa19-47db-9e65-6c2c6db3209e 1 Other Other +93d1ea14-08ba-4efe-9d2a-73dd158280c7 1 Other Other +93d23527-229f-40da-9288-44d6ab2f8d3c 1 Other Other +93d2af11-e75a-411a-906c-aa6947b05312 1 Other Other +93d2f0f9-c08d-4d49-b8dc-22d3044afcdb 1 Other Other +93d2f6e3-b97a-413b-b383-b48aa00bfb5d 1 Other Other +93d2fca1-fee3-4870-89b8-79b5444f6be5 1 Other Other +93d314dd-c2b1-4a19-a2bb-4145543959c1 1 Other Other +93d3d559-5235-4233-940c-4f6af43abab9 1 Other Other +93d3f352-007a-419e-9fb4-79379c3c1bf0 1 Other Other +93d40ef8-9124-4018-81b5-82cb3dbe7f97 1 Other Other +93d41eba-4815-4470-b050-ed52053aa9e5 1 Other Other +93d44049-461a-440e-9b57-a419fd1ff53e 1 Other Other +93d4921a-1782-4b48-abc8-e5adcac8b446 1 Other Other +93d4a4ef-6990-42b2-9bf8-30ff81a60df3 1 Other Other +93d4c9bd-fcee-47fb-9be9-30abe43acb97 1 Other Other +93d4e2e9-ae00-4552-9aa3-aa87d58d6472 1 Other Other +93d52413-9964-401f-bc3f-8e49778ae471 1 Other Other +93d588a7-2b88-4e8d-87c0-f85020a84252 1 Other Other +93d5bca8-ae82-4e4f-82f4-adef73531480 1 \N Other +93d6daa4-1060-4137-a303-3a7ca0c15978 1 Other Other +93d6dc48-e6af-4655-be99-71222e072488 1 Other Other +93d6e63f-88f7-4f8a-8183-6c90a8574f7a 1 Other Other +93d71b15-81f3-4344-af31-a0360abafadd 1 Other Other +93d727ab-889d-46d5-b3a0-4484b76325dc 1 Other Other +93d76560-4fea-4b49-8693-fbdddb9a0bf3 1 Other Other +93d78bb8-8fa3-4559-9e5c-1b344caad37c 1 Other Other +93d79dde-ac6b-461f-bcd6-1d8662a76313 1 Other Other +93d7aa52-b03d-4c02-8ad4-0fc36cbd8068 1 Other Other +93d7ebeb-638d-40c3-b6c9-198fabc33e76 1 Other Other +93d81439-0df5-4fcd-a228-4ea9dec4825a 1 Other Other +93d81977-64f3-40c3-b45c-8adfd58cd675 1 Other Other +93d819c2-cea1-45d9-ad8f-dd8876c3d93b 1 Other Other +93d838b6-9306-41e6-9972-aadb9f51360f 1 Other Other +93d87fec-f02a-4ea2-9514-2bee13efede0 1 Other Other +93d88103-11e3-4235-b89b-33670f9b4785 1 Other Other +93d8a85e-b229-4d61-9b8c-a2b8f1c04a97 1 Other Other +93d92702-0543-4b4a-8d5f-3616ada9ef92 1 Other Other +93d92cf2-326f-4e2d-b61d-bdaedcebd1f5 1 Other Other +93d937f9-bf06-4c7b-ac22-35a7a90ff20b 1 Other Other +93d9ba32-fb83-41e0-9a26-540102747ec3 1 Other Other +93d9bb94-4249-455a-b683-7962d3933cd6 1 \N Other +93d9c3b2-1dfb-4296-bce2-a2976836a91f 1 Other Other +93d9eb90-ef39-47fb-8d6b-43b7aa7b0a57 1 Other Other +93d9ec42-1a82-4a9b-a55b-2106ac8d301a 1 Other Other +93da3621-6363-478e-b2f9-b968cf34a131 1 Other Other +93da5dcb-72b8-4daf-aeeb-96e8204fab11 1 Other Other +93daaa56-c60a-4181-9957-71044a56d465 1 Other Other +93db21f1-8752-4803-b65d-b9ae05bbdf92 1 Other Other +93db387a-034c-46b8-b4d3-bad6ab2e8468 1 Other Other +93db42bc-6e3d-48ce-8426-332612d49a9a 1 Other Other +93db4fb5-9e78-41c7-b4d4-5d85ad54c6ec 1 \N Other +93db6ae1-8256-4712-ad8a-28099a67cc1b 1 Other Other +93db7f3f-0f45-4c69-a5ac-36c00836f9d8 1 Other Other +93dba1d4-dcaf-4317-a312-9ae6e4067a70 1 Other Other +93dbc6d9-8022-4970-9f69-0ce2cf790454 1 Other Other +93dbe8dd-80ec-4596-9fef-1fe958ca12c0 1 Other Other +93dc2d85-c8a5-4d56-a4b4-60d4dfa1f0d1 1 Other Other +93dc47c5-6cad-42f0-b5a0-f66660f75cf7 1 \N Other +93dc6721-5341-4c7f-9adc-c2fb3d0b5cd5 1 Other Other +93dd6a8f-37a1-4ab1-9d73-bac280117faf 1 \N Other +93ddb44f-2119-47b0-86be-3c40205a9d24 1 Other Other +93de3adb-3ef2-4d19-913c-0fd92218adba 1 Other Other +93de3ea3-2a53-40c9-b6c6-4fdc54dbf5e5 1 Other Other +93de79da-fa45-441a-a126-029903721a6f 1 Other Other +93debec0-d5d3-4af7-9ba8-f9e7036ac630 1 Other Other +93dec6a7-c1d2-43f4-828d-9c06b3da302c 1 Other Other +93ded161-57c8-470f-858c-0277d6995544 1 Other Other +93def07d-1f3e-4cab-9229-c3ca62b98770 1 Other Other +93df31c2-095d-4ba8-9b2e-5b136d1586a4 1 Other Other +93df9edb-36d0-4c21-afd7-48afa9c5b3d6 1 Other Other +93dfb1e2-6aee-4e5d-ba9e-704f3e2ff640 1 James Other +93dfeba5-7f14-41d9-b855-253045f4cdd4 1 Other Other +93e00647-b924-46d7-be0a-8272ba3420e5 1 Other Other +93e03e63-f25e-4ee1-bf3b-04605c56d8b2 1 Other Other +93e050b7-90c1-4f3d-ba9b-ed0c08e6912f 1 Other Other +93e05fc0-cf73-4e96-95a9-c6c692c1053a 1 Other Other +93e09ec1-a607-43ea-91aa-788a4e7b646f 1 Other Other +93e0d055-c75f-4cc7-af70-d07d3ec4a218 1 Other Other +93e0fd6c-5f58-4e51-a35d-d9cc794f697b 1 Other Other +93e19013-0300-4654-a0f2-7e0c82b8b1f6 1 Other Other +93e1ae08-4049-4041-abd4-aa7d526a9cce 1 \N Other +93e1be89-fab6-4704-bfa2-cfd998c6431a 1 Other Other +93e227d8-110e-4e88-86de-a400561f71ec 1 Other Other +93e237c0-3612-43d4-9dae-614773eaea73 1 Other Other +93e23e24-7138-4d21-98fb-c039d17754e1 1 Other Other +93e26fc1-5e39-45f5-9da6-b50672e1aa8a 1 Other Other +93e27993-341c-467e-984a-9d4957fcd668 1 \N Other +93e2d0b9-22c4-4cab-893d-0489b3a8b238 1 Other Other +93e2d690-b18a-4d9c-9360-ea5d3197004b 1 Other Other +93e2f77f-f596-4e5e-a5b1-069eca3a49a4 1 Other Other +93e2f7eb-36de-49ad-963c-019f6fc60863 1 Other Other +93e3467a-ab65-4bcc-82b3-7428ddc44e9e 1 Other Other +93e346db-4f77-42a5-98a6-b366ce8a2829 1 Other Other +93e35df9-0c00-4087-8113-d2c8192f359d 1 Other Other +93e37e35-a7f6-41da-8f15-e90b77fe76a9 1 Other Other +93e39631-c3a9-47d6-96a7-f1e46957aed7 1 Other Other +93e3ecde-324c-476b-bf8a-6618ce51f5ca 1 Other Other +93e411cb-ca6b-4558-a591-d7c73f19ce65 1 Other Other +93e42ff5-5a16-4ed6-a4c6-35b0f73aaf40 1 Other Other +93e44228-eb83-468b-a3c8-7808add5fb16 1 \N Other +93e447ef-15a5-4fba-95e4-c78179e7d55c 1 Other Other +93e45a6e-4810-4f57-bbf4-e7ab59106a49 1 Other Other +93e46243-cc77-4957-9510-f368a950b819 1 Other Other +93e4749f-2324-440b-b46a-7e2b0aa9f402 1 Other Other +93e47878-4db9-4ba8-808c-341776c92ecb 1 Other Other +93e488b8-9d3b-472c-9f7b-b1815b3b305c 1 Other Other +93e4d496-aa86-42ec-9534-ee10bda610a4 1 Other Other +93e4f774-1da7-46d6-9559-f2c5e65326a9 1 Other Other +93e50979-d58a-4470-8b6e-a5a08f8522e7 1 James Other +93e53fd8-4ae9-4ca6-bc71-2f6c6e4912e9 1 Other Other +93e5e42b-c6f6-4cb5-9965-fa8519455e07 1 Other Other +93e60cf3-5a18-4cd7-821b-ad75f2dafc7f 1 Other Other +93e6175a-4d4d-4ac5-9102-009d452f5e92 1 Other Other +93e6319b-00f9-4059-aa13-e8dcad37c45c 1 Other Other +93e65bee-b8ed-4ab6-a314-2cefe861a6b8 1 Other Other +93e67327-1559-4cf3-a8cf-a07ff818961d 1 Other Other +93e690ed-2d9c-4dec-97cf-bd15a3c82941 1 Other Other +93e719f5-37fe-4621-b9c7-a95c8c8b4e2a 1 Other Other +93e72d05-4960-443e-8e95-1656925daba9 1 Other Other +93e798c4-f12c-4f5d-a830-436d78d64971 1 \N Other +93e7a2ee-2f8d-45b0-88bd-0adbc98040f8 1 Other Other +93e7cf90-76c5-4859-b6d3-1559c183aed3 1 Other Other +93e81f0e-e36b-4538-9acc-ed11c38f4a67 1 Other Other +93e8858a-fe62-46c7-b7d5-c45a7c099930 1 Other Other +93e90c54-8e9c-46c9-93b7-b17287d2fb24 1 Other Other +93e90e60-7efb-4adc-ad8f-e89a60512a8f 1 Other Other +93e97153-c1ee-4ec1-8871-58654126f2d5 1 Other Other +93e9c4aa-1338-458b-ae84-4fbab9a4ad4d 1 Other Other +93e9dabb-739e-4ef0-82f0-19c6dcb1b6a8 1 Other Other +93e9e402-e0f7-4015-a103-5c69d42dc1b1 1 Other Other +93ea0642-4c83-434c-a44c-f2bf77b0f541 1 Other Other +93ea98a5-5266-48e5-b3ac-436b521b229d 1 Other Other +93eac12f-9aec-4300-9535-4756a9a59035 1 Other Other +93eb0ded-3411-4df8-8e15-71610c7d41f9 1 Other Other +93eb3a6d-5329-408a-8b5e-8f4837a73b96 1 Other Other +93eb7307-57a2-4199-9e28-0ddda6d250c4 1 Other Other +93eba14f-4525-4a2f-8602-77254b5dffba 1 Other Other +93eba37e-d7b1-4111-8a04-94ed35b42dff 1 Other Other +93ebdff6-2f18-4dce-947d-f4ccdb53d1f3 1 Other Other +93ec0205-9b89-49fc-8c4c-24a2fbc74cf5 1 Other Other +93ec60f3-cfae-43f0-925b-6945ef9c2f1e 1 Other Other +93ec71dd-9f0a-4b99-9372-c02d049cb2f8 1 Other Other +93ecbd36-e744-4826-ad50-d832045ea861 1 Other Other +93ecc0cc-5180-4b30-83da-ce72211be55f 1 Other Other +93ece77e-ea6e-4bbf-aa2b-aa336ce19beb 1 Other Other +93ed3b13-fc86-4d38-974f-1359725b810d 1 Other Other +93ed6ad2-4088-4560-8b22-6545147f7799 1 Other Other +93ee1238-7d7a-40ff-b02a-3ce5a5307284 1 Other Other +93eecd31-97a4-4ffb-89ae-78685f71c2df 1 Other Other +93eef521-4633-4b86-871f-e521d77da614 1 Other Other +93ef3c4d-c779-45f6-977d-06f99f7d8b23 1 Other Other +93ef6466-681f-44e6-8346-1225988017e6 1 Other Other +93ef66e0-8df9-4150-894c-090dbad5b42c 1 Other Other +93ef706a-db98-4fcd-a019-44ddc8d475dd 1 Other Other +93ef7105-2737-4531-8376-de9e7beb5920 1 Other Other +93efb810-c7ed-4d72-8e26-1f79678ff1e1 1 Other Other +93efc722-197d-48bb-81f5-172be2df9b6e 1 Other Other +93f0378d-5573-4e93-adc0-8312631795c0 1 Other Other +93f056f3-0485-411a-b35e-82be97676c31 1 Other Other +93f064e2-d7ae-4119-807d-1f4b53fe3e1d 1 Other Other +93f0d4b7-5dfc-4f2a-9ba9-8ef51f09e8cb 1 Other Other +93f0f1d1-248b-4fdf-96e1-862478c06264 1 Other Other +93f11d25-2d47-4aec-baf4-649aad5df617 1 Other Other +93f13b5e-bc66-4103-a89a-db09008a84e8 1 Other Other +93f1ac18-2617-4181-8d06-421bb35c9847 1 Other Other +93f1b7d7-bf96-49a1-897c-e004f8dda2c0 1 Other Other +93f1dd5a-2af2-471e-bdf6-3b324a07705e 1 Other Other +93f24fc3-67a9-4ed3-bd72-b4868c618a50 1 Other Other +93f2c1fe-1717-11e8-b673-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +93f2c8d4-6a8f-4d26-a8f3-34970df1b4d5 1 Other Other +93f37e43-0740-4560-bfaf-05b9da16f6a0 1 Other Other +93f38591-02ac-4ac6-8fc4-8e2b16a96fbc 1 Other Other +93f3d244-5a2e-441f-87a7-b3828e4afee1 1 Other Other +93f3d685-5ad7-4a06-ad5c-0cd8b1be74dc 1 Other Other +93f4008c-599d-4ec9-a341-3b120bd2e254 1 Other Other +93f425e7-7ff0-416c-92ca-fcd470ee0e1b 1 Other Other +93f4a847-2767-46a8-9412-450a254bbd83 1 Other Other +93f4a927-656d-4b0d-9cd7-51ce4cf891f9 1 \N Other +93f54178-3de2-475d-88f2-0d48dd531d66 1 Other Other +93f5422a-6be2-4142-a85f-9bbbf87c349c 1 Other Other +93f57c90-63dc-455f-a641-1d25d5f51588 1 Other Other +93f5c5bd-960e-4ca2-9783-e06da0944ec2 1 Other Other +93f5cf7f-16c1-4bf6-b36c-dee700d1e787 1 Other Other +93f5fe3c-6d5e-400c-9131-de0eb109119f 1 Other Other +93f64537-2e76-4902-8be7-00d9673bcc27 1 Other Other +93f65743-ca54-4d02-8da7-0f3467200a49 1 \N Other +93f65bec-f528-4148-932d-11d502deec32 1 Other Other +93f6686f-5e23-4b16-9abf-5f4b2f2c8289 1 Other Other +93f6840d-c88f-4081-aec8-6ec86b804116 1 Other Other +93f684a0-946e-4f2b-8d7a-0f8cbf38fa8e 1 Other Other +93f691d0-edc7-45fd-af6d-551a3ba5770f 1 Other Other +93f69b53-9cad-4c8e-9205-b2d94874ae58 1 Other Other +93f6e074-d760-4f87-9689-bbb4996582ad 1 \N Other +93f704ea-5b7d-45ef-8c58-48611890058b 1 Other Other +93f716b1-7fc9-4f4d-8b12-189f5d3b201f 1 Other Other +93f7226a-b0f2-429f-8925-f22d614dd991 1 Other Other +93f76711-c36c-4d5b-a2c1-a20c2cfcf0df 1 Other Other +93f76c25-9a2e-4e57-ab25-20145ce18893 1 Other Other +93f7d543-debb-4192-b9df-a4dbadba4779 1 Other Other +93f819ab-3a9f-4403-92ad-be1472aeaf7e 1 Other Other +93f8b456-745f-4e66-aea0-83f8876af909 1 Other Other +93f8f101-e9ef-4096-9d2f-394a73f7def7 1 Other Other +93f9129a-4993-471a-ad50-4132c5c74535 1 Other Other +93f91aec-cab4-4753-a139-86e721c9954c 1 Other Other +93f934f1-c0ca-4667-a6af-9c553020bd2f 1 Other Other +93f95f4d-1f57-4396-ab65-b387fdc3a779 1 Other Other +93fa2754-58b0-4fda-b8e3-444b3137eba1 1 Other Other +93fa6faf-3107-43df-9687-d2c12f36ab03 1 Other Other +93fb04cc-5ab6-4c1c-b933-f41679d1a1c2 1 Other Other +93fb1964-483e-4f4c-a932-abd2f99a9373 1 Other Other +93fb4e98-6294-4c98-9725-3ae417b55720 1 Other Other +93fba7fd-8147-416e-bdf0-b75f3ecf3123 1 Other Other +93fbd679-5f0a-4bf3-8ebb-6cfebbaccfc5 1 Other Other +93fc2999-9bb2-4e85-b19c-70e9d266040b 1 \N Other +93fc66ff-1e87-4e46-aa73-eaa1b1beec05 1 Other Other +93fc780c-6514-4e7b-828a-3dc32f8ed05e 1 Other Other +93fc8aab-8f09-4390-bf24-44b2edb6df1c 1 Other Other +93fcce85-9be0-4e73-b530-693f12fa45ac 1 Other Other +93fcfad2-ed5e-43de-b750-455d4bf9e602 1 Other Other +93fd640b-6d4a-4339-a329-00a667031bd4 1 Other Other +93fd7d94-50b0-4f5b-937d-1bfaf00245fc 1 Other Other +93fd8e44-97f6-4bd8-80bc-80faad4af507 1 Other Other +93fda777-1aae-4a3c-90ec-6f72e9bd3df1 1 Other Other +93fdb1d9-d5e0-4d76-8376-799287e4efef 1 Other Other +93fed80a-461b-49e0-8b42-f8add00df35d 1 Other Other +93feffdb-c5a8-4545-b862-0b4209c66e4e 1 Other Other +93ff2427-dbe4-4dce-94fc-96349ed67ec8 1 Other Other +93ff7874-d551-4776-b5ce-0b3fcee89346 1 Other Other +93ff7c39-9684-4f3e-bacd-7b0745fc514b 1 Other Other +93fffc46-5c04-47fc-84ed-7e1009f4eacc 1 Other Other +94001e01-2647-4b40-b298-6f15300b3809 1 Other Other +94004be7-f7f0-4a34-a07a-b0d31e874c18 1 Other Other +94009af1-d2d9-493f-93b7-b83be487f31e 1 Other Other +940114ff-41fd-4b2a-a738-96eab548e3ef 1 Other Other +94016dff-0eaf-42de-acab-e349b536f712 1 Other Other +9401a0c7-28d7-4526-b1d7-48f40b696832 1 Other Other +9401b614-ce86-484e-a046-d1dd59a1ef1a 1 Other Other +9401db03-738f-402a-ac68-2a67870a69d7 1 Other Other +94020d5e-d8f5-4907-a812-c021c4f2d587 1 Other Other +94023f88-5089-4684-b886-aad952555021 1 Other Other +94024e10-e003-40f0-ab3d-27b482bb39fd 1 Other Other +94024f40-169c-4d6f-9300-1461b6ab9b30 1 Other Other +94026ed8-4f02-48d0-ae04-7e35ab4b035c 1 Other Other +9402b83f-3f4c-4259-a2e3-3a59b8776a86 1 Other Other +9402f73b-7be5-4902-b544-01f9bdfd82c5 1 Other Other +94032108-10ef-45ee-b6e6-3c91b18592d0 1 Other Other +94035217-d4ea-4b75-9c2c-e954bd561fe3 1 Other Other +94037e11-cb4d-42ef-b434-b528f2a00827 1 Other Other +9403cc1d-5dd9-4b93-8c52-6a3f94ab979c 1 Other Other +94042952-b561-426f-bd0e-b6b0c7ef79d5 1 Other Other +94044372-2004-4005-b532-bd12e02e4592 1 Other Other +940474d7-91b1-4ae3-a6a7-b55fb8354cdb 1 Other Other +94048816-8ecf-4537-9800-a1032db6a988 1 Other Other +94049195-d1dc-4298-b5bd-6e48cf97da9b 1 Other Other +9404dd1c-1ef8-4bea-9747-b266c3050de7 1 Other Other +9404ee7a-f5ad-496b-ae75-185d925fd88e 1 Other Other +94053577-786c-4874-b907-e4a0fb4a34a6 1 Other Other +94057197-2428-4d9c-a3e7-2d41b77b27f3 1 Other Other +94058dba-304b-4708-8b47-6837de7035dc 1 Other Other +9405a902-84c2-40da-abeb-8eefa5479216 1 Other Other +9405d43c-3d9c-4c19-b8f3-50bd75931976 1 Other Other +94063a6c-7b90-42c9-8d8e-297050a9ede1 1 Other Other +940645c1-e782-44fb-9c29-a11fc2d0db5e 1 Other Other +9406ab57-e4d1-4bfe-b403-0adbeef1286d 1 Other Other +9406f087-66df-4114-a564-5190e5d3ca39 1 Other Other +9406f1a1-5e87-478e-9221-d7f989ace9fd 1 Other Other +9407463a-f171-4876-a278-2e92b2c35742 1 Other Other +94075684-5c86-4739-86c9-aa8c031be279 1 Other Other +94075b67-3a9d-4cbd-aa95-c24ccc0f9c2b 1 James Other +9407844e-63fd-447c-88c0-1bff651943ee 1 Other Other +94079a9f-d27c-4c1b-9450-16b32d2888d7 1 Other Other +940810af-a420-4e7b-a581-5c8f6dfce23d 1 Other Other +940846b0-a0a9-4d0b-bc2c-b7b60a57bf44 1 Other Other +94085493-4c00-4787-ad9e-c39770efd36a 1 Other Other +94089902-b4df-4977-ab2e-caf0b5ea7e90 1 Other Other +9408a5d8-ee78-4b19-9bfd-aef3eaad0c34 1 Other Other +9408d972-4b40-4aa9-ae29-f8c6d7b0d670 1 Other Other +9408f40e-03cb-4d67-9f66-24d567221b89 1 Other Other +9409129e-3ad9-428c-a3dd-93ce6bed1a09 1 Other Other +94092a85-41a9-4315-931d-90160691ab5b 1 Other Other +94097669-4597-4d3c-9a9b-1d65015107a1 1 Other Other +94097d0f-5909-42d1-a1f5-95acef0e6666 1 Other Other +940991f4-7b61-4036-82ae-e13499f36e52 1 Other Other +940a08d5-c81c-4655-b95c-21ae0f28d33d 1 Other Other +940a3a4f-5b77-4ba8-8823-4e7a26e4ae3c 1 \N Other +940a4dfe-9c83-4870-92a6-e1f82c8ebb4f 1 Other Other +940a6f02-b91b-4d65-ad57-8fe89aed9e27 1 Other Other +940ada83-be53-4786-b512-94f22285f880 1 Other Other +940afe44-a2d0-4d58-bfb3-3f639fb1cafb 1 Other Other +940b1d79-bfd4-4e40-b492-874cf7616ddb 1 Other Other +940b29b2-c49f-43d3-87a5-a3229d50a2bb 1 Other Other +940b3bd0-34ef-4c26-a942-9fcc7f76a9ff 1 Other Other +940c1179-d645-4bd2-8aba-228324de9e2a 1 Other Other +940c1523-6e46-4e21-993f-306bffd0860c 1 Other Other +940c1a7d-8e90-4bd2-bd79-6780e448bd1a 1 Other Other +940c4c5f-f270-4578-822b-e83501106a9f 1 Other Other +940c6c45-e8da-4486-a02b-625ef2a836dc 1 Other Other +940c8f4b-6411-445f-aab4-15fd6a03283b 1 Other Other +940c9959-088b-4949-aa86-bef9b02dde0e 1 Other Other +940d63f2-f338-4657-b585-58f854f2f415 1 Other Other +940daf36-51c9-4d01-9813-f0014187fa41 1 Other Other +940e024e-e29f-4e0f-b4be-73308e201da2 1 Other Other +940e1e44-9e7c-4af6-ac3f-9de54e8eeac7 1 \N Other +940e4430-82f4-44a1-a927-156ed851a0c1 1 Other Other +940e7dd0-c6e1-489e-96ac-e406d95c6ff8 1 Other Other +940e8df3-b053-4065-9111-8d3dc9bb52a5 1 \N Other +940ece7f-d061-4324-a0cd-121f607e2aed 1 Other Other +940ee854-1e61-4711-a196-2452681d6b7f 1 Other Other +940f1f4b-7f80-457e-ad45-4a0c0fd40303 1 Other Other +940f21a4-a75b-4ed0-89e0-97eacb469855 1 Other Other +940f47a7-6ad0-4311-ac50-991cc58a2191 1 Other Other +940f7f77-c268-4590-9976-cb26a46152ce 1 \N Other +940fa464-55cf-4394-861c-d818b12daee6 1 \N Other +94100d30-a919-46ef-acef-4396afd25d5d 1 Other Other +94101b56-327e-4636-ba7e-931b5d01ac2b 1 Other Other +94101c30-ea9b-45b9-a269-eeac53ec92e2 1 Other Other +9410217b-d58b-4904-9bb7-e938ed03ef0a 1 Other Other +94105d69-ffc8-4a71-9324-f479e11a9d36 1 Other Other +9410b71e-8662-4ef8-ad30-4d10863b70b9 1 Other Other +941160bb-5fe4-4e24-9713-ddb7befdc809 1 Other Other +941175b9-1512-4c05-9542-2dfefc09a9a1 1 Other Other +9411a334-7f26-469d-b2b5-b8b44153d3ee 1 Other Other +9411f4c3-e355-4e39-b3e5-ef961e4e7330 1 Other Other +9412272e-6b3f-40b7-886d-dd0838b299ed 1 Other Other +9412b023-ddc1-4abb-8cf2-eaaab63be236 1 Other Other +9412cd45-8f78-4d51-8faf-350ec86d9d86 1 Other Other +941388f9-2069-4c1a-8725-74dee5b3b8ba 1 Other Other +94139ade-eaf9-46ed-8494-80451849c5c9 1 Other Other +9413be81-9959-4565-880b-94ef75bdbd4f 1 Other Other +9413ccac-4bec-48be-8c1f-405e49fb2bb3 1 Other Other +94147221-f86f-431b-bd31-451b19964fdb 1 Other Other +941493d0-33c7-4dec-95cd-feb5c2968435 1 Other Other +94149a07-de82-49d8-ae36-fc33ab3a8768 1 Other Other +9414b24e-9d38-445c-9784-fa1bdd2c74f1 1 Other Other +9414c2da-6bcc-4834-b4c8-5b25ed4e7558 1 Other Other +9414cbac-2623-4dd8-9674-b6b461566086 1 Other Other +9414d9fe-a03a-4f01-aeee-637fcd5f4c11 1 Other Other +9414f9ec-8457-4b88-a063-8f916972f579 1 Other Other +94152b32-7353-4852-947b-15148271bdd6 1 Other Other +94154b5c-cecf-467d-935f-96c647895932 1 Other Other +9415b778-9c50-473d-a343-bd7977ca7019 1 Other Other +9415c502-9317-4c7e-b2ad-5b43c0d7c619 1 Other Other +9415dbd5-78bc-40a1-a144-f9c3c82bb49e 1 \N Other +941601ef-3ba9-446e-b193-09b39dfced1d 1 Other Other +9416e962-87dd-415a-be32-9d397260725b 1 Other Other +94170a49-25d6-43a1-ad2f-e3c728dd3432 1 Other Other +941712d9-e0f1-48e9-a357-fa425f4021d5 1 James Other +9417272f-1387-4cfc-aa6e-110f5605da78 1 Other Other +94173363-5e3e-47f3-9a20-67f787d81a3f 1 Other Other +94175202-2498-4d50-9b51-d95be1565798 1 Other Other +94178994-920c-4f41-9b6e-1510b26c20e3 1 Other Other +9417b9bd-d3cf-49c0-908f-74f669ece71f 1 Other Other +9417f687-7d73-4825-bda7-8be283db80a6 1 Other Other +94183279-0a45-4e46-9f00-aa2ff600e5a8 1 Other Other +941853a6-0678-4443-ab94-e88986a634d5 1 Other Other +94187ad8-a7ee-4325-912a-f0bded04461d 1 Other Other +941880f8-ada4-4e8e-9caa-7e085874bee8 1 Other Other +9418cf89-09b0-41da-ba45-63d1ed8710c0 1 Other Other +94191d9d-8d02-42fa-b293-c5c48b0b48c9 1 Other Other +94192f26-8a2b-47c9-8f2a-d45ee8312e07 1 Other Other +9419567c-d31f-4073-b970-9bc46404dc96 1 Other Other +94196d07-f79b-4a41-a6d8-b4dd8f57139c 1 Other Other +94197485-0d84-41dc-b8a9-5f833f606497 1 Other Other +94198627-6138-4358-a992-058bf5447535 1 Other Other +94198fda-ec6d-4957-acfd-9e85439fcc02 1 Other Other +9419da78-8236-43ca-9771-319726b30cf4 1 Other Other +9419e8c8-088b-4351-b4c4-1920d57602a5 1 Other Other +9419ea2a-d48c-4dea-9139-7db9009e8a01 1 Other Other +9419efe0-9678-4c8c-bf24-14287570bd38 1 Other Other +941a0256-eca0-443f-bd66-b4830990236d 1 Other Other +941a0da6-d4b7-4466-b19f-655c4cbfaaaf 1 Other Other +941a13d9-aeae-449a-90b6-8276b10f9c5f 1 Other Other +941a25b0-b04d-4443-b39b-bc251daa4da8 1 Other Other +941a3276-f0b4-4c92-8a6e-d85c797ca29b 1 Other Other +941a60cf-1a72-4d9e-9438-8ea782880e78 1 Other Other +941a9683-5cf8-4606-a13a-9d0a2c380db2 1 Other Other +941adef0-b336-4fc5-a33a-2958c6f4402a 1 Other Other +941afe98-343c-4740-a59c-889222c7f48c 1 Other Other +941b14c5-d06c-4a81-9c2d-c9e1770c49eb 1 Other Other +941b335e-7936-48c7-9fc0-cc1ca976c251 1 Other Other +941b3429-6a07-49f9-bef2-9b34ecc068ac 1 Other Other +941b3ce3-666e-4ecc-b02d-33828d46cca3 1 James Other +941b63d4-ab6c-422c-a452-c344fc01667c 1 Other Other +941b6b66-4069-41d0-8b29-d627093c3779 1 Other Other +941b6d5d-dda7-473b-8683-3b165633a830 1 Other Other +941c34d7-f530-4527-817e-b0bb4d79d2d3 1 Other Other +941c7c8b-5b46-4aae-a7d1-60848546e895 1 Other Other +941c8b3d-537c-4a59-8065-db1a17460290 1 Other Other +941c99d4-cff9-4b3b-bba3-b84352c72450 1 Other Other +941cc6b0-fb6b-43d8-a64e-2509ca72e4d1 1 Other Other +941cff7e-137f-4511-bc05-63aa6f8b3c2e 1 Other Other +941d0b44-747f-4e88-aca5-0ce574b570b3 1 Other Other +941d184e-626b-469c-88d8-ce527854cff6 1 Other Other +941d41ba-9111-46f0-b050-6471077856d0 1 Other Other +941d78a9-3445-4e00-9895-1dff198fd27a 1 Other Other +941dc8c2-8a9c-4ada-b693-7cf8e207d42d 1 Other Other +941ec4da-e4b1-4e9a-a5fd-f2c86f5b7571 1 Other Other +941f3922-12d0-4204-ab21-c8016416618a 1 Other Other +941f642b-dcb9-413d-bb2d-6853a4e8750a 1 Other Other +941fc9e3-25d4-4ae1-9620-031bf6156125 1 Other Other +941fd176-c09c-4608-8414-27d84e8dc9a0 1 Other Other +94201c0d-150d-4a25-9c19-290d0685a321 1 Other Other +94207bba-6d5e-4d17-9f16-d8a18213c85c 1 Other Other +94212816-14cb-45b9-a76a-245dd3ad8dd5 1 Other Other +94215b49-7b03-476e-8a67-e4089da70647 1 Other Other +942196a2-445a-46f9-a89b-6a8bc7e36ff5 1 Other Other +9421d446-0905-4769-9203-108230a54da9 1 Other Other +9421e3d1-a94b-4aff-b098-08c68da31f87 1 Other Other +9421e667-eda6-429f-8818-548720781fb4 1 \N Other +942235ad-59e8-427f-96e1-bc0ca3643b40 1 Other Other +94228f96-ec03-4e13-a39f-264e3fbb0102 1 Other Other +9422d047-2da4-4d47-9f57-b087b09b8997 1 Other Other +94231688-5467-4731-9e29-43e6ecd136c9 1 Other Other +942330a2-b908-47fb-8e67-a1399e71f916 1 Other Other +942335b5-af3e-4071-aaa0-4329f996375d 1 Other Other +94234219-5896-4ed6-b7b1-87c311af5b81 1 Other Other +94234ce4-7bb5-4963-97a8-a13bcd05d5e4 1 Other Other +94235660-0fd7-4f41-8b16-cd42486d2fc6 1 Other Other +94238842-8297-4793-9837-0c529f065f80 1 Other Other +9423b7a0-f30e-490d-a6aa-c86b48c7dc2d 1 Other Other +942406d6-9ac1-4f9d-b28c-36c2ac96d1dc 1 Other Other +9424148f-a9c7-4101-a0eb-9a0f0faace18 1 Other Other +9424437f-a185-4c35-8e8f-93b1acca7ae9 1 Other Other +94244860-51f6-49e7-b29a-f1612b977722 1 Other Other +94252be2-ae7c-405d-9604-789b7ba24358 1 Other Other +94253a42-3e66-4434-a04a-cf68a86efc4a 1 Other Other +942590ee-5dc2-4e04-99ae-21a523c0d0bf 1 Other Other +9425dd09-0d2b-458c-839a-40f6586e475c 1 Other Other +9426103d-aaa0-4cd8-8bed-b7707b931670 1 Other Other +94262942-7b0b-4afc-87c8-089443505e61 1 Other Other +9426395a-607b-4b54-83af-6276da3129af 1 Other Other +942661b4-5164-4d5e-ac9c-025231171001 1 Other Other +9426b4f6-bcb6-4502-b2e5-4b601ec1863e 1 Other Other +9426ea3c-b460-41e4-b372-210d8bc649ed 1 Other Other +9426f398-1e0f-4807-8f08-dc44295528ba 1 Other Other +9427159c-0248-4bd8-8871-70bc670c3cae 1 Other Other +94272d82-e611-4f88-b617-634d281c0c68 1 Other Other +94273004-eeab-47e9-b318-8d5acc03020c 1 Other Other +942750d4-64be-4509-91c9-6e82eeebec79 1 Other Other +942777c0-510e-48b3-bf17-e4f2b928e720 1 Other Other +94278b24-7a16-42d8-96cd-b14911ea6672 1 Other Other +94278f2a-c462-4423-b7bf-94fbf728ab3b 1 Other Other +94279970-81da-4a6f-8732-6113f67d0b4f 1 Other Other +9427d17f-e981-4dbf-ae54-a04cfbc7f248 1 Other Other +94282bb1-1fc0-42c8-be3d-4f14daa8770b 1 Other Other +94291777-682a-4b45-9ea4-eb512fcb63ca 1 Other Other +94292fb0-3b18-4138-99bd-486e9e0abdd3 1 Other Other +94297e7f-b92f-4424-b0f8-a30125fa76d0 1 Other Other +94298d4e-8274-4575-85c5-100ddccccdbe 1 \N Other +9429bcff-d122-4fe4-8677-6901eaf22b73 1 Other Other +942a128e-b5af-4598-a4d8-890f33aa2d63 1 Other Other +942a467d-58cb-4f99-88f2-5e58b5ebbfe7 1 Other Other +942a48a4-7335-416b-977e-22e9967acab4 1 Other Other +942a531e-c430-4b2c-b39e-4d7ee07b8ca6 1 Other Other +942a8332-648b-489e-94d9-b5a292a6ef2b 1 Other Other +942a945f-810b-45b5-a881-8355ef1573dc 1 \N Other +942b0c4f-9dac-483c-a596-44e2ff860389 1 Other Other +942b30a3-ac7b-45a6-b28c-11caec395d2c 1 \N Other +942b36f7-f9fb-4d07-9a84-447d08e01cb1 1 Other Other +942b52a0-9f41-4e14-9861-418b2458cb92 1 Other Other +942b7565-0d17-40a5-9451-949d1f7a1e2a 1 Other Other +942b78a6-5d14-4b73-bbf8-e0b4be96a65a 1 Other Other +942b95b4-3fa1-40b9-9282-6a0f9be2e9fd 1 Other Other +942bac83-7acf-4487-9472-4627cd5d1dd3 1 Other Other +942bc290-8fab-4884-86f1-98fb8cf9e61b 1 Other Other +942bf567-8575-4d7f-860a-2fa5f94081cc 1 Other Other +942c092f-b5cf-4b5e-bc97-573f764c3ca7 1 Other Other +942c1e23-bbd0-4203-9f60-99ec3dbbb237 1 Other Other +942c3b39-f039-4e74-8ca2-495b12369ebb 1 Other Other +942c46e9-571a-4117-bd17-6941cc3c4cf6 1 Other Other +942c5230-2123-440e-8840-e1d342145ebe 1 Other Other +942c9785-168e-4b5e-a556-a26212a87d5b 1 Other Other +942ccc7a-e1e7-4f9d-99b6-19c940b86721 1 Other Other +942cf6c4-b463-4217-b758-49e415f3a9ef 1 Other Other +942d0118-9695-43a9-8a1a-3f3f233f70af 1 Other Other +942d63b6-62e6-4e51-a837-15a720164c50 1 Other Other +942d848b-8525-42a6-9ef5-3feed5b11a58 1 Other Other +942dde2d-f85f-4a88-b532-416cc9272f17 1 Other Other +942ddfed-bd7b-4b12-ad1a-e360bc0e056d 1 Other Other +942dee17-4397-4ce7-b588-c3df121790ae 1 Other Other +942e0a88-4cfb-4632-9af8-0f1af636b8ba 1 Other Other +942e1516-5b8d-4205-92ea-24caf30515d7 1 Other Other +942e2895-c0e0-4c56-9db9-1bb30ea3dfa9 1 Other Other +942e313c-c9c0-40f0-bb6d-8657c8946b72 1 Other Other +942e32b2-7cfc-4ce3-941d-2d33f8895f37 1 Other Other +942e40e9-ed89-4fea-8c03-410b4de998d8 1 Other Other +942e43ef-7c19-4a72-95a0-998b62e6746c 1 Other Other +942e77c1-3033-4bec-9841-05cd3700598d 1 Other Other +942e942e-9c3c-4e4a-9854-d59de7111757 1 Other Other +942ec0ef-fe6a-4b96-910b-0ce801768226 1 Other Other +942ecffe-5e09-4aed-b8fc-6132f87b3459 1 Other Other +942ed573-0637-4609-b40d-40eda6d4247a 1 Other Other +942f40a3-5973-4f3f-8b84-fd74e99e45a8 1 Other Other +942f5273-8a9f-49d1-aa03-5bd86669182d 1 Other Other +942fa248-0628-4a2b-9e15-aeb2a56b1701 1 Other Other +942ffec9-144c-4d55-858f-102fd9950db3 1 Other Other +943007dd-acc1-4f39-9936-06a61a60de7c 1 Other Other +94300f51-7419-4fbc-aa85-57c3f3efe534 1 Other Other +94301407-044d-4be9-8094-93d37c4809ce 1 Other Other +943040ec-3abb-4657-b29a-55450bacb47a 1 James Other +943061d9-4338-4cdb-b668-749ca550c8d5 1 Other Other +94306d51-1e95-4bbd-9adb-899452b0bbb8 1 Other Other +94307c3c-2212-4e71-9c84-d8da53cd71ed 1 Other Other +9430825a-c289-4e12-8e0e-7aa6a2cf616e 1 Other Other +94308844-2728-4165-b004-fa2b3e1889ff 1 Other Other +9430887e-805a-4fc7-95c5-915ab77d1869 1 Other Other +9430a88c-2c29-4e8e-8717-2ea9bbfc90a5 1 Other Other +9430ba8d-d8c3-44c7-9ff3-2850f4732dc5 1 Other Other +9430c700-23d5-44a4-9edc-0db647d95b74 1 Other Other +9430f5f4-1656-4811-811b-74dde1b16455 1 Other Other +9430fc85-8bca-4dea-a6e9-48cce901f6f5 1 Other Other +94315d8b-a0c6-4c30-853b-904c681bedf8 1 Other Other +943163b0-7008-46ad-afb0-b1760b3c79de 1 Other Other +9431937e-25b7-48a4-8ccc-c9773a42c952 1 Other Other +9431b0fc-a33c-4bc2-b85b-a01c351740ec 1 Other Other +9431f7e5-5cd8-407f-ad7d-f8d3a65c737a 1 Other Other +9431f99e-cba7-4e8b-9843-723be88a4f3a 1 Other Other +94325333-cc25-4a91-904b-6a670193d4d7 1 Other Other +94325eac-157a-4026-a9ac-0c0cf233da63 1 Other Other +9432704b-275f-4302-9b48-d1741a84a271 1 Other Other +94328817-cca3-48b1-ae93-4c7a583ac202 1 Other Other +9432de6f-55c9-4934-b444-2a58ad75c6bc 1 Other Other +9433204b-57ed-4aa2-804b-beb9165ce567 1 Other Other +94338eff-d4da-4686-ad05-c7a7e92e85d1 1 Other Other +9433d30c-8d5c-456f-a1a0-0ed5f0d94e05 1 Other Other +94340d0e-92f0-47f4-8d5a-6d01b7326155 1 Other Other +94341cc4-53d5-40c4-a307-12e0fbda148a 1 \N Other +943426c5-7882-4252-9081-a722bf322643 1 Other Other +94342de5-8324-4dc7-ac26-e496fd42a111 1 Other Other +9434403f-ebb1-4eeb-9e78-1ca4715086ec 1 Other Other +9434f37c-860a-4f1a-890d-ca2f827fe38b 1 Other Other +9434ff9b-8f1f-4f49-9ccc-1ba0f4cc10a3 1 Other Other +9435260b-27de-4e97-b6a4-e15206f5d40a 1 Other Other +9435582a-5d28-497f-9f31-b7b354febaa1 1 Other Other +9435bdcb-4b10-4729-949e-327c1875ff17 1 Other Other +94360565-8843-4bf6-82fc-681e8ee588d3 1 Other Other +94360869-f627-4d8c-833e-51dd793ab483 1 Other Other +94369b7b-468c-4313-b4ca-3237433a1c2c 1 Other Other +9436bb8f-eba6-4b0e-bd77-f9f61882ae70 1 Other Other +9436c046-d89d-480d-8aaf-0e8f3a3ff68a 1 Other Other +9436e395-bc15-4c94-b0c5-9064b34b5b4d 1 Other Other +9437118b-ea70-4a0b-89c5-af5e8acab0bc 1 Other Other +94372b32-4039-4372-9b6c-d12a08ff7c36 1 Other Other +94373300-dfe3-416d-9c3d-79fe2bca4455 1 Other Other +9437748d-9a41-40ff-8ef8-7caf37f5c3e7 1 Other Other +9437944c-65de-4fb2-b428-fb3a6b9a4fe6 1 Other Other +94381ef7-644a-43a0-b76f-530238fc3c12 1 Other Other +94386d57-06d0-4d5f-af5e-e49316e2be72 1 \N Other +943891ab-6e3c-4eb8-91bc-17a804b1412d 1 Other Other +9438d808-9a51-4b19-ac01-704a8546ef83 1 Other Other +94391087-9a2a-41a7-a8a3-a942e442eb33 1 Other Other +943911df-82f8-4591-bdcc-7c97a7ef3657 1 Other Other +9439130f-8ef5-46ac-841c-7e59f6a87a02 1 Other Other +94391c87-c11a-4c2e-bf4d-b15807c9c517 1 Other Other +9439cc88-7370-45fa-ad08-503538771838 1 \N Other +9439d37b-2996-4da5-bceb-590eef128202 1 Other Other +9439f3dc-a8f6-4025-b2dc-54970e7b1bf3 1 Other Other +943a518a-2d50-481a-8b8f-ae8bccd2615e 1 Other Other +943a9136-1660-46c3-b23a-d96d26be1d9c 1 Other Other +943aa1eb-2c46-4ca8-b5ac-bcb9e8a65274 1 Other Other +943aadb2-d98f-478c-a201-63ed5e19e0b7 1 Other Other +943abf72-9e45-4ebb-b79a-821c7da1074c 1 Other Other +943b038b-4e1d-45b8-b0da-647be1feb59e 1 Other Other +943b12e5-3899-4cc7-86e8-830cdfaca227 1 \N Other +943b2408-c4a3-4f89-9982-f8a85775ab1d 1 Other Other +943b2423-6bda-4406-9d7d-3f2819d3a810 1 Other Other +943bbfcd-20e4-46e9-b59a-c7b622937990 1 Other Other +943bc9e2-9062-4da5-b589-bd5cf1987d11 1 Other Other +943bf450-c683-418c-a1ee-b34d290fcac2 1 Other Other +943c2576-c9bf-4dc9-aabb-4b59643bb7bc 1 Other Other +943c2e00-c7e0-4fc6-be5b-f86be5d75f8a 1 Other Other +943c2fee-be4e-4168-a3a1-8a44574b70cd 1 Other Other +943c3c23-1693-4453-981f-fec112790515 1 Other Other +943c4b34-6f38-46d5-8250-eb68bbabbf46 1 Other Other +943c5218-7372-476c-b519-09f7e35369a2 1 Other Other +943c9a68-f5b6-4a03-9882-95aee64a8134 1 Other Other +943cc52b-b1d1-472b-a02f-c938432280c2 1 Other Other +943d5a27-e490-4631-8f4c-67b4b481eab2 1 Other Other +943d81fe-d994-42f4-a2f6-f98b7231ce99 1 Other Other +943d9c9e-a622-4ede-a1f2-93d63f6e5100 1 Other Other +943da281-6fee-4837-85ec-fcef11008fec 1 Other Other +943dbbc9-3e69-4656-9f90-4f2ebc3cadca 1 Other Other +943dc0aa-8aac-4feb-939f-1a72ed845455 1 Other Other +943df837-a71a-4c99-82a0-f45b0aa8d8c5 1 Other Other +943e0034-6627-4d95-8e45-d13d36a8b0aa 1 Other Other +943e55d8-7e32-4ce0-aba4-915fea9e2945 1 Other Other +943edf2b-56a5-4ce3-a21a-9c61ce91dbb5 1 \N Other +943edf90-04a9-4759-b336-42fb78206ce0 1 Other Other +943f08bf-7c1e-4d42-8fdd-5f734ed3ecd9 1 Other Other +943f4a6d-f9fa-4b3b-8fa2-f7bc7388ab53 1 Other Other +943fb46f-7ae7-4086-836d-2b0d42dcbe65 1 Other Other +943fc195-8f6f-4b7e-8423-81c52e2f6dfa 1 Other Other +943fe96f-0fcd-4b26-82bf-9e53346065b5 1 Other Other +944018de-b991-4511-b040-d8372a659d69 1 Other Other +9440331a-2285-4822-accf-95ab290858b2 1 Other Other +944078bd-414a-4508-8141-c309da11cdab 1 Other Other +9440a7c0-e9ab-49ce-9c1c-3165bd91077d 1 Other Other +94411850-fbad-4a1b-9dbd-ae3c1da7cac6 1 Other Other +94413ba9-bacc-43b2-9701-9581488a0f7d 1 Other Other +94414dd2-f300-42e1-8f18-9ced9794eb1f 1 Other Other +94417ebb-77fc-476c-914f-b26ec748758e 1 Other Other +94418808-ce01-4a49-b474-da7dd6ed0055 1 Other Other +9441b996-e9ae-4853-95b0-4925015ee9b8 1 Other Other +9441c353-124a-4326-a0a7-7598b1b2d241 1 Other Other +9441fed9-fb87-42dd-bce2-0a2870554b6e 1 Other Other +94421663-18bc-4d87-81b3-aafda23bb2cf 1 Other Other +94424df7-c4ae-472f-9874-a58f579762e0 1 Other Other +94425e5a-8683-49b9-8814-3ff8c8440812 1 Other Other +94428bed-c3ad-489e-91f9-78c5af249124 1 Other Other +9442b725-1419-4cac-a670-6bdc1d6c6642 1 Other Other +9442ed01-f94e-4863-8cd5-4d66468f0059 1 Other Other +94430f7c-b02d-4307-adc6-001e86eded9f 1 Other Other +944374a5-7b67-4408-ac1b-4f9d05a1e8c7 1 Other Other +94444413-4e90-4bc8-8be9-4e12df5421d5 1 Other Other +944446b0-7b9c-42e2-b292-95e7aa455d99 1 Other Other +94447b1e-6946-4ed3-994a-70102635fbf2 1 Other Other +944496c7-a2a3-4184-9d8c-4ae4d2d1810e 1 Other Other +9444b05a-1366-4b32-9c22-4c5a19cc2690 1 Other Other +9444cfed-65e6-4978-9860-72b95fe14d40 1 Other Other +9444e1c2-88e0-47b4-9a18-e298b8b0a792 1 Other Other +9444f2d3-b74b-4bdb-bcfc-803aa92259c8 1 Other Other +9444f3f7-bf1b-4d37-bc04-c2a2614ffa75 1 Other Other +944538a8-d69b-4047-b2c8-e94122600681 1 Other Other +9445a462-6bc2-4fa9-8779-7cbc45ace72c 1 Other Other +9445b75f-d36a-41c6-a571-b765e1842d8e 1 Other Other +9445b962-b914-44d3-9e61-d89fd691fe02 1 Other Other +9445c57c-102e-45bf-a625-71d4f3214139 1 Other Other +9445e4c8-2de1-4c2f-aed3-0eebe7d170c2 1 Other Other +944603d8-75e5-477a-b82f-f86172a5867d 1 Other Other +944671d3-70c5-415b-8666-2bd726210a13 1 Other Other +9446aacd-10ae-41e2-8b2e-b6c753dd05c3 1 Other Other +9446d200-27a7-4828-99be-23741d0105eb 1 Other Other +94477596-ff76-4cbf-bdd2-3b1245587220 1 Other Other +9447cd2c-dc8e-44d5-8350-94692ced7a00 1 Other Other +9447ee55-6a2d-461f-9aa1-a3e97bcdea8f 1 Other Other +9447f050-1821-458b-9680-739e00171556 1 Other Other +9447f990-7d43-46d4-9094-8e923eeb3d3c 1 Other Other +94483dc7-cc2c-4678-a0d6-bd01673fd9be 1 Other Other +9448437c-4057-4ca6-9dbb-68597f475c76 1 Other Other +94484550-25ee-4d81-81d5-b76b0bfe9d36 1 Other Other +9448e5ca-299f-43f6-ad12-61d1ae35e326 1 Other Other +9449277d-8ad5-4f5a-ac4f-e1b6b60a49d7 1 Other Other +94496ded-39b7-45b9-8331-b25295e0c5a2 1 Other Other +9449803b-5f1a-4fac-853d-60094b4a5877 1 Other Other +944992f7-3fba-4d4e-b380-018bb59e23a1 1 Other Other +9449a9f1-b86c-4941-898d-961ab7d6a5f2 1 Other Other +9449c3ec-f111-4c89-abe9-12b3e238e0bc 1 Other Other +9449e83f-6078-4121-bc77-71979123078e 1 Other Other +944a2cf7-9aa1-470b-a8d2-64ee45f4851f 1 Other Other +944a3edd-841c-413c-bddf-b87172fc1254 1 Other Other +944a994e-2a72-4a48-b8df-f4f043066b48 1 Other Other +944ac14e-d3c4-4ccb-9dcf-d9f3e7ae5292 1 Other Other +944acb5c-48ed-4a0e-a04d-fa0db70347ee 1 Other Other +944ad74d-5f49-46b0-91ef-450165195304 1 Other Other +944ae482-b8ea-4e67-9fc4-b780fff4e1d9 1 Other Other +944afc8e-5283-4db5-8cbe-013725a8b121 1 Other Other +944b1ea3-0a25-428b-8d76-2b1531a711aa 1 Other Other +944b6e09-c75f-4618-89d6-b95c1f71c605 1 Other Other +944b873b-be86-4ae1-99df-62dc8a629e92 1 Other Other +944b8da9-ff39-4429-bb13-1d0321a49f4c 1 Other Other +944b994a-cffc-49e8-90f2-43fa74827314 1 Other Other +944bfc43-2b66-4bf4-bf7c-e5777a28ccb8 1 Other Other +944c08a6-ce7a-4bba-b963-9c9b698a8204 1 Other Other +944c0c3a-127a-480e-87d0-995da9147e4f 1 Other Other +944c6aca-367d-42c4-8396-c4b4d6e531c9 1 Other Other +944cb66d-192a-440c-a94a-f808c5527c13 1 Other Other +944cc5c3-ea2e-4772-86ca-b04efa58c8ab 1 Other Other +944cd6cb-0cdc-4ffd-abf1-d9eb83872268 1 Other Other +944d13cd-2237-49cd-91b3-315ae87b6f69 1 Other Other +944d3064-bf52-4287-91fa-afe1a3b3f9aa 1 Other Other +944d800e-bebb-4e8d-b61b-0faab6ebedf2 1 Other Other +944daff9-1918-41cd-bc7e-90d43e561d0c 1 Other Other +944e1117-b65b-4d55-9a3e-6826494875b6 1 Other Other +944e6115-d489-44a0-a703-cd8c2b431bf4 1 Other Other +944e829f-0d0e-4193-960a-5fc8d0867db3 1 Other Other +944ed2e9-7896-46fe-b9a2-bfafb8ec9b18 1 Other Other +944f185e-d296-4081-8983-3c624de5a545 1 Other Other +944f3208-d58a-4bdb-bf7a-cf9330ea5e45 1 Other Other +944fbc28-35aa-4114-896f-15de89ef27f4 1 Other Other +944fd1f7-90e3-4cd8-bf57-aff5c9b26030 1 \N Other +945003b8-7aeb-4de1-afb2-fcb2d00c120b 1 Other Other +94507c86-edab-4274-88ae-b729bd2d632a 1 \N Other +9450bb3c-8da9-4641-8ce0-7d65eb9f6be2 1 Other Other +9450c70b-dd6f-45ac-adc0-af080f35e783 1 Other Other +94512c8f-fc58-443a-8498-9d3df2a4a5bf 1 Other Other +94515d60-0664-4a62-9bad-6ac903f9f258 1 Other Other +945168fd-8dc2-43f9-a97b-7933dc515e84 1 Other Other +94517546-0129-4f6f-8ab1-b48755dbab6b 1 Other Other +9451e788-2b6d-448b-a062-63a883c2e2d3 1 Other Other +94522d46-99ff-491d-a915-b4a13559273f 1 Other Other +94524317-1808-4f85-8ece-2318bb4dc3fe 1 Other Other +9452659a-6149-422b-a881-8242f14f4bf5 1 Other Other +9452699e-5ba0-4f86-a98c-258eb88c1f06 1 Other Other +94528bce-fe05-4017-b8da-145da416b36d 1 James Other +9452960a-049a-4612-9a1b-0cc10d578daa 1 Other Other +9452cc45-5840-4fb7-92e9-f363428b35a3 1 Other Other +9452e444-66b1-41d0-a765-4856896117fa 1 Other Other +94534fb0-ada1-4b54-a23c-7851793e636a 1 Other Other +94537e96-0570-493c-ba67-70b36af6b024 1 Other Other +945390a4-6b27-4364-a575-c9821fc8f24e 1 Other Other +9453ccf8-1070-4b3e-a333-d1608aae3510 1 Other Other +94547277-b1a7-4698-84f9-41f263a95264 1 Other Other +9454b60e-78fb-462f-b916-d7bf081d979d 1 Other Other +9454d853-86a0-4817-bc8a-7f906e501667 1 Other Other +945533b0-60a0-4e46-91dd-25cc563db0fb 1 Other Other +94553efd-eb62-4ec8-b487-a22c83341711 1 Other Other +9455755f-f43f-4d01-ad48-c4c38790ba42 1 Other Other +94558606-4479-11e8-8e50-fa163e8624cc 1 Other Other +94559766-79a5-4c6f-b384-674a1de62a9c 1 Other Other +9455f793-0d85-4682-8cb8-e88073f53bdc 1 Other Other +9455ff20-f83b-412b-8233-b69cfff6dea8 1 Other Other +94560236-d55c-448f-99b4-7627d5003911 1 Other Other +94561157-f1cf-4848-8e38-5f18acf4e202 1 Other Other +945628ab-ddd9-4fc1-8d26-3b6afa381112 1 \N Other +945636c0-6eec-415d-b70d-1f20a5b7ff4d 1 Other Other +945637fa-bef3-4174-844c-37d4338ad546 1 Other Other +94564d30-1e4e-4caf-8298-ea8e5fedf78f 1 Other Other +945728f1-ba57-424d-a837-b6f0dd82b6ce 1 Other Other +94572c1d-bc9f-47c2-aa1e-6bef0ec3cf2e 1 Other Other +94573abf-7be9-4762-bb94-f7de17864ec2 1 Other Other +9457bcd1-33fc-4a4f-b228-6d23b32d7647 1 \N Other +9457ec98-8ff7-4840-b9d2-33f8c5c4af7b 1 Other Other +9457ed02-a8d5-4bad-a8af-a4e1950831ee 1 Other Other +94580cb8-53a1-410a-b576-d0a849898c2f 1 Other Other +94583846-d965-4b59-88d2-6b84226779be 1 Other Other +945846ea-267b-43d5-8a64-e17895fe5cd8 1 Other Other +9458483e-ad25-41e4-8018-e7804ea3a3c7 1 Other Other +9458835f-7519-4484-af20-6d5f71607eb7 1 Other Other +94589058-6480-4990-9447-501121e58e25 1 Other Other +9458eefc-06e6-44bd-8cb6-882001aa53c9 1 Other Other +9458fee8-86b0-4887-b18b-c7d2ee99f881 1 Other Other +94590bf2-dd70-45b0-8f20-4af4809eb6e2 1 Other Other +94598c2d-b5f9-4190-b114-a363339330c9 1 Other Other +9459d67b-2fa6-4830-8e2b-b2260d2f7ad8 1 Other Other +9459f0da-da8b-4e6e-8eda-57983a6eb3b3 1 Other Other +945a3c98-a3b7-48a5-9472-537515007dec 1 Other Other +945a4afc-fc23-479d-8337-7c7624369908 1 Other Other +945ad69e-9946-4000-b119-0dbef6394736 1 Other Other +945ae93f-1970-4c57-884a-9d6b38f76ab1 1 Other Other +945af13e-0c2e-462d-8723-ac03133c31ac 1 Other Other +945b16e0-104a-4795-8191-0ea175bcf5d4 1 Other Other +945b1e26-b257-465c-9c96-1c2054f2c21f 1 Other Other +945b26c6-21ea-4543-9417-02887f24238e 1 Other Other +945b443e-9fe3-4c75-8882-b521f57f7de4 1 Other Other +945b4ef9-56dc-47ac-840f-bad635862623 1 Other Other +945b6b11-0f5a-4e54-9214-e4d6d3b41ac6 1 Other Other +945b768c-4120-428b-b1fa-70bbe5384070 1 Other Other +945bb757-e268-4ba9-82b6-890148e7ee39 1 Other Other +945bb8c3-9fc7-4513-90d1-e3ebf3537d68 1 Other Other +945c01ba-27ea-46cf-8cea-1f87183d5ec0 1 Other Other +945c2929-9237-4276-a524-ff64f6c230e9 1 Other Other +945c4870-7537-40e6-855a-5eb06b47eb7b 1 Other Other +945d886d-0300-4476-a63b-cebc463b1827 1 Other Other +945d913a-c215-4ba2-b5e2-b07a79b7960d 1 Other Other +945d9874-098a-4fc1-8a79-3a8fec631f8d 1 Other Other +945dab97-ffc2-4350-9f22-1ed9fa4b0726 1 Other Other +945db357-c984-4beb-881b-eedbb6ddc65e 1 Other Other +945e3c09-09c2-4614-bb18-38c8715e9412 1 Other Other +945e4b60-09e2-452a-8987-2f9c14824f32 1 Other Other +945e6e48-102a-4012-8657-142542b2d710 1 Other Other +945f3bc8-117c-436b-b278-a071f2673d24 1 Other Other +945f4a83-472d-4cbb-85e3-2d65a1b2da9f 1 Other Other +945f53be-29ed-4563-bdad-2b1ad03a04f8 1 Other Other +945f8ee7-1ee9-412c-912b-6ee6567074b8 1 Other Other +9460360d-9101-468f-a9c6-5ea5583ee929 1 Other Other +94608696-45aa-49c1-b7b1-20a0b9584247 1 Other Other +9460add3-b6bb-4f87-9721-795a19e63a9a 1 Other Other +9460ccb8-f1ad-466f-a874-f3ce30a888ee 1 Other Other +94612620-d5ed-4f1b-bbd4-350644b42732 1 Other Other +9461538f-fd89-41df-ab8e-5f4f8f8c2715 1 Other Other +9461808b-b261-4d7f-9708-8659fc302295 1 Other Other +9461b795-5227-4369-b982-c52b6c3925a7 1 Other Other +94623b90-bb64-402b-932e-4f6849fa5acb 1 Other Other +94629c3f-b1b3-46ca-850c-ffe20a1b0d2d 1 Other Other +9462a653-cfe6-41e9-901f-f99fb0d79306 1 Other Other +9462b87b-6076-40ca-947b-a1bf7a31ced3 1 Other Other +9462eb01-fc3e-469d-bc92-2559737a5bcc 1 Other Other +9462f620-4000-4b9a-b9d4-38f3910f5535 1 Other Other +94631286-fb11-45e9-995b-4ab6ad946f23 1 Other Other +94634ab3-9bf0-45a0-ad19-591a0fee4dad 1 Other Other +94634fd3-940e-49e7-91fd-62389151033a 1 Other Other +94636926-67d0-40fa-acc9-107d7d8fe7bf 1 Other Other +9463bbd2-b54a-4d5e-bb6b-0180d7156fad 1 Other Other +9463bced-6dfe-4555-bb26-b8e228f47df3 1 Other Other +9463c82f-e292-4ab6-bb87-5c8f410140b1 1 Other Other +9463d8e3-12db-4dc5-9735-f07d1494cbca 1 Other Other +94641cc2-b610-4b91-a85e-69ed9743cf4d 1 James Other +94645bc5-defc-4995-86f4-e5935ed2c809 1 Other Other +9464840e-c232-450d-86f5-10848c1a2c2d 1 Other Other +9464ab56-c824-473a-9c15-1e2ce15dc9a5 1 Other Other +9464e2c0-f85a-4acd-9023-dc3c693c28a2 1 Other Other +94652e96-576b-424b-bf2d-6ed541b00eec 1 Other Other +94654c00-cc4e-4a18-bbec-b07b7c31ddcb 1 Other Other +94659448-902b-4e8a-8095-53a19cb98e2d 1 Other Other +9465bcfe-2ddb-4a8e-9d25-9706cbf175b9 1 Other Other +946606c9-a5ae-47ed-bea2-aa60bec1cec4 1 Other Other +94660771-5f78-4259-b778-86fa7a5e472c 1 Other Other +94661c98-bc5c-4fa7-96ae-9cddab9b121a 1 Other Other +946657d2-003c-497c-b38e-3eb7424902e5 1 Other Other +94666d03-ed9b-4d5b-84b5-5b50cb4d394f 1 Other Other +9466981b-6c4c-4d9d-a11d-baa8b8b25779 1 Other Other +9466982f-37ba-480a-8996-ac1204483d73 1 Other Other +9466a162-020f-4860-bab5-a6ce2759eb1d 1 Other Other +9466ae16-4ce4-4f74-8774-3584edc80124 1 Other Other +9466d7ef-0688-48d4-a2e3-f3cbe8d31956 1 Other Other +9466e8d9-1685-46d3-9e2b-92993c325694 1 Other Other +9466ff53-7ddd-4f53-b371-a84cc7651e74 1 Other Other +94671057-f243-45fa-9e4e-47195a0d3156 1 Other Other +94676fd6-d471-4118-8f0c-99baeefacdd2 1 Other Other +94677f4e-adf8-4ba3-92d6-39a0810c637e 1 Other Other +9467a110-8138-4be1-a73f-70f151c3e7ff 1 Other Other +9467d8c7-4719-4e49-9160-512ffee52210 1 Other Other +9467f1e0-5d14-4a89-8a63-4b781af82944 1 Other Other +9467f335-b209-44b9-9b23-65a1c2f3b3f9 1 Other Other +94681d83-58f8-4bb7-9907-92a7c9a16342 1 Other Other +94682fa6-4a45-4c6c-b1dd-cc5dce6fb30d 1 Other Other +94685487-c3d0-4508-97e9-a79a009aa07c 1 Other Other +94687f72-016e-427f-bebd-f61c73d52241 1 Other Other +9468d4cb-89d3-4e55-bb74-a2797dc10c67 1 \N Other +94694d10-7cda-4214-8ee7-9d97aa21ab04 1 Other Other +94695230-b962-48e3-8787-9b959fdf3fcf 1 Other Other +9469903c-84b6-4d56-9fc4-461285f6d88b 1 Other Other +946a086a-e159-4dcd-92b7-3bbcc5a59356 1 Other Other +946a615c-fedb-4609-92d8-82c9b2fac827 1 Other Other +946a8204-5c17-4bd1-95a9-fa72ab44bbee 1 Other Other +946b7b9f-e55e-420b-9abd-1896acca2a36 1 \N Other +946b8001-910d-494c-a292-91fd39d8b2d3 1 Other Other +946ba0f3-16f4-4900-ab4f-ec49eb738844 1 Other Other +946bbb23-214c-41ca-9fa5-5aaa0e44eea4 1 Other Other +946c07d7-528a-445c-a0a6-173bf67f0103 1 Other Other +946c3b79-56c3-4c91-8291-934973f76fd7 1 Other Other +946c4301-3643-4268-98d4-5019ae95cb5c 1 \N Other +946c4cc8-63a7-4fb3-aae0-83c3a1b44661 1 Other Other +946c86fd-cc73-4aa9-8a5e-dab0a572136d 1 \N Other +946c8929-3e2c-47a9-ae33-3583d499a058 1 Other Other +946d12e3-4938-4ece-9b99-188e14ca8da4 1 Other Other +946d18d3-49a1-4eec-ba7d-75b83166a445 1 Other Other +946d3a36-4e51-4302-a965-51a622234bad 1 Other Other +946d4078-527e-4642-b1fa-aca0550185bb 1 Other Other +946dd829-b5be-4e69-ae3b-b0406a25abca 1 Other Other +946df5d5-cdb1-4f19-810c-bd9d55017b1b 1 Other Other +946e1b5a-8a30-40ab-8712-47a908be48f3 1 Other Other +946e62cd-8cda-47d6-8383-23783cf327dc 1 Other Other +946e7c69-1029-4775-ad9f-cb2846f86baf 1 Other Other +946eb622-7f7c-423c-a987-0351a8376f70 1 Other Other +946ebe0b-4abf-496f-bb75-6d0ebded6aab 1 Other Other +946ec6af-2134-4f63-9604-18f3d05b40f5 1 Other Other +946ed93e-e60c-456c-8ea1-f8c2712c7bf9 1 Other Other +946f0d96-827a-4366-a57d-1954b698f49a 1 Other Other +946f75e5-f11c-47f8-bf28-142861f2e405 1 Other Other +946f880b-ef6a-4418-82a3-fe325c7d2a98 1 Other Other +946f99ac-b532-4e44-a203-075baa328829 1 Other Other +946fa34a-fba6-47ec-a094-f589d77146e5 1 Other Other +946fba73-2e84-42ab-8780-42d0e4559fb5 1 Other Other +946fc6a8-3e43-4030-b043-972f6030ab8f 1 Other Other +946feb9a-aef5-4cd6-839e-3937468e0ba2 1 Other Other +9470144c-c6ef-44c0-9bb5-7d7f063ab8a2 1 Other Other +94701c8c-6587-41f6-94a7-856be4dc247d 1 Other Other +947030b0-0260-43c9-bcca-a88b7cd1e5fa 1 Other Other +9470bcee-234d-4d15-aa54-19f2eefa48f6 1 Other Other +94713a1c-bc28-414c-ae6e-c2145cd30817 1 Other Other +94715010-3200-4132-b242-6eb875b8c2b1 1 Other Other +9471504f-ff99-4fef-84d3-c4fc4562cdf5 1 \N Other +94716953-1299-4f5c-9176-6149adbcedce 1 Other Other +94717360-f046-4bd8-b346-b705ca6708d4 1 Other Other +947185c9-c92f-4a24-9d73-422fde479875 1 \N Other +9471dbaf-eda2-4271-b853-ca8c4fa6eed5 1 Other Other +947210cd-5f18-4426-b471-f2aec4ac83d2 1 Other Other +947211a4-2c1a-4a48-866f-5bc000d150f8 1 Other Other +94721ea5-e2bd-4152-a7cc-630afcd82f70 1 James Other +947265fe-86ff-4983-b309-a07db8a4a922 1 Other Other +9472ab85-debb-49f3-9367-d397c0343904 1 Other Other +9472b25f-1c24-4583-9b52-943380ff98c1 1 Other Other +9472e26b-265f-476f-b416-01a5f759a823 1 Other Other +9472fa1f-a1ab-46ce-a9f3-858fd63338b1 1 \N Other +9473080a-c6cc-4353-bdfc-ea32ac04ebf5 1 Other Other +947310e8-0639-4bb8-a0d6-aaea265bfcfa 1 Other Other +9473129d-f61f-4e56-8508-cb85b372f1c3 1 Other Other +94733885-79ab-4160-9ab0-afc9e1c2fec1 1 Other Other +94733cfd-3ff0-4afc-9972-4a6877bc2650 1 Other Other +9473fe8e-c9ca-4182-a670-a72651ca97a4 1 Other Other +94741c77-8762-4e74-9eb1-8da873765df3 1 Other Other +94745424-7c12-4142-953c-e574baf59370 1 \N Other +9475340b-fa1b-4a46-b226-d53ec106eb1b 1 Other Other +94759c20-382d-4305-90a8-705a9d0198ba 1 Other Other +947673c8-d863-4e27-8ba3-d4fd3938738b 1 Other Other +94770852-87ee-40bf-8e28-05560c4911ce 1 Other Other +94770ed6-808e-4412-8686-3be82f0c2671 1 Other Other +94771cb9-713b-43f8-be34-8f8f8407f917 1 Other Other +9477441e-5163-4a09-9ed3-ecdfaa3dcc30 1 Other Other +947771c7-b700-4e90-a298-783c97d4072f 1 Other Other +947773f1-56ca-4e79-89d4-10767e0b85b8 1 Other Other +94777c3b-528b-4c1b-97a0-d97205198df4 1 Other Other +94779c65-9a39-4781-b540-967fcdac3908 1 Other Other +9477d0c6-2a53-48ed-a7c3-10e122fec1b6 1 Other Other +9477f844-2993-485b-80a6-d0cbe9023bf5 1 Other Other +94785bc9-1433-451a-b39e-b1862b11560a 1 \N Other +94786e24-58c4-4ba8-94b7-c6aacea634b3 1 Other Other +94787464-b3f3-4d22-a2d7-0b0ca67f3ad7 1 Other Other +947882e7-6308-4f79-9759-a41e7eb9a899 1 Other Other +9478d2cb-23ae-4691-a487-721e5c498844 1 Other Other +9478dca1-34ad-48bd-b0ff-da5910fb5da7 1 Other Other +9478e7a7-5822-41cd-ba77-0cc6673b5e63 1 Other Other +94792bab-214d-4ddb-a475-f771f17ede24 1 Other Other +947937df-7d4c-4517-b46e-3cc9baf103ba 1 Other Other +9479b940-e1c9-4262-8901-7805a74b97e2 1 Other Other +9479bd4e-b380-4747-a2fb-9e5e4e188a0b 1 Other Other +9479c6f7-72ed-47ce-b1ec-b99b7d994aa6 1 Other Other +947a5f2c-a189-46d8-b624-8ed9288e3389 1 Other Other +947a7869-ce43-40f2-b5b9-d136e9626281 1 Other Other +947a79b1-a018-432a-9dbc-4c541513ec43 1 \N Other +947aa5b3-ce63-4c9f-8d5c-ff691535a592 1 Other Other +947ad48f-7c62-45c9-9fcd-e9f3b7dc951d 1 Other Other +947adaac-df99-4da5-b866-0cec9889f259 1 \N Other +947adf64-eaea-4805-bc6e-7827bdbf044e 1 Other Other +947ae8e2-d6b8-4552-926e-b46b76efe82b 1 Other Other +947b22ca-660b-4f52-8303-235c6bed3f19 1 Other Other +947b3b07-89c8-4980-9e7d-664a1b766f19 1 \N Other +947b71e9-72d5-40be-bacf-390e208f46b4 1 Other Other +947bb4a6-3ee2-4457-a91d-d9689444266f 1 Other Other +947c1c3f-5903-4452-8590-71feb4e21a8e 1 Other Other +947c387d-4982-4b24-901c-98c5ec039007 1 Other Other +947c44a7-9166-44dc-af17-48b617bc8291 1 Other Other +947c5a82-7b8d-4777-96f4-84a2990ab7ab 1 Other Other +947c6f54-035b-4572-8bca-87acf20a1f0b 1 Other Other +947c9a0c-fff6-483c-ba08-6dd9aac14d0b 1 Other Other +947ca9fd-3ef9-482b-852b-8586a1fc85d6 1 Other Other +947cb0ce-fb25-4e59-9bc8-dfc5799ffa8f 1 Other Other +947cd957-69ca-4ffb-b68a-70bb78d33578 1 Other Other +947d0818-5edc-45e9-a890-25db93388b4f 1 Other Other +947d396b-832a-4c71-a627-d36042649138 1 Other Other +947d86a0-0d4d-45ab-8c06-b729c019f26c 1 James Other +947dcafc-db69-4f3c-b281-34c82aa5b61b 1 Other Other +947e8478-0fa1-4714-aae6-c00599376a1f 1 Other Other +947ebfe3-a2c7-4270-89a6-01e4f4d517a7 1 Other Other +947ec66c-38c9-4ef7-939d-b1595e799547 1 Other Other +947ee5fe-4d52-4e56-8421-dee6138034cb 1 Other Other +947f1302-a8e0-41ea-9d97-764dd9cfd975 1 \N Other +94801c82-7b61-45fd-8538-95354e918427 1 Other Other +94803797-4f10-42d9-963a-a6d33bcaa785 1 James Other +94806d9a-1b27-4c7c-b8ec-77daaa96b8b7 1 Other Other +948077aa-5831-4950-a08f-6ddfe776c8e7 1 James Other +9480c0b2-4069-4b2f-84e5-130a55639e83 1 Other Other +94810801-6f36-40a2-b882-c3590d3fdfaa 1 Other Other +9481270a-3b9b-4da0-b24c-ea23e586d259 1 Other Other +9481827f-2f78-4253-8b3c-6846cbb398b1 1 Other Other +9481b1e4-8f3c-417e-a3da-449b0df46395 1 Other Other +9481fcda-6001-4a90-9c4e-5653d56dafab 1 Other Other +94827ded-8057-4a95-8746-29dae305df8e 1 Other Other +9482c3f5-9d84-4bd2-9c48-52d19c999a85 1 Other Other +9482d288-f962-4773-9260-49eb3949edfa 1 Other Other +9482d4ad-5315-4c1a-ada5-30cf93d55fc3 1 Other Other +9482dc1b-e7c1-4be6-b348-d20330c774f6 1 Other Other +94838907-1f45-4b1e-871a-8decd2e4c118 1 Other Other +9483cfd7-0bf0-4f68-88f0-75d5152a9dc9 1 Other Other +94845d27-76be-4236-8984-5306a8d75cf9 1 Other Other +9484d57e-27cb-4a8b-9003-a7130954dee5 1 Other Other +9484db3a-5514-4c84-ad89-563b42267cb2 1 Other Other +94855dc2-dfdf-43d6-8e7b-a42ea41f72c6 1 Other Other +94856b5d-6321-4249-89d6-807090b13645 1 Other Other +9485851f-fc72-47e2-a02f-dcbd77215a55 1 Other Other +9485a244-bd6a-4271-a133-75a7a39727ba 1 Other Other +9485c05c-00f1-4cd9-b9d4-84ec23289ad8 1 Other Other +94861b0b-25e4-45e2-ae3e-e5b8ea492b29 1 Other Other +94862609-7abf-483b-b820-34a33d0c8a3d 1 Other Other +948686bc-9e4f-42a7-a820-de98d8fe20b3 1 Other Other +9486b8de-3e7e-4df2-ac89-8e286008b1fe 1 Other Other +9486b986-d943-44e1-b179-297b0f6245c1 1 Other Other +9486deba-7bd1-4e07-a07c-b9b8d8b24969 1 Other Other +9486e970-bb3d-4575-a670-01a574a14415 1 Other Other +9486f17e-937b-4c56-beaa-ee0c34d0c2d9 1 Other Other +9487041f-571f-486c-a2f5-5e1209654d36 1 Other Other +94870f6d-33cb-4b40-9ff2-6d427c1c10f7 1 Other Other +94877fe4-7745-4c80-a980-dbf58a9d9333 1 Other Other +9487955d-8ccb-4eea-8989-1f0fa66d6a98 1 Other Other +9487b9a0-8d62-4a70-8be7-832afdf1ec60 1 Other Other +9487e5cf-7d87-4e2b-b49b-46b0b8fe0589 1 Other Other +9487fb45-e656-4867-a003-96ddd319ba72 1 Other Other +948803c6-e409-401b-8e90-1a7132279d9f 1 Other Other +94880834-f389-4130-8492-1d782f9e3b1c 1 Other Other +94881113-628e-4a80-8db8-516403158b9f 1 Other Other +94884a01-83d7-4187-9a3c-d621844dc3cd 1 Other Other +94884e50-aca1-4784-8a2e-452d7f5f35b0 1 Other Other +9488765d-120e-4dc8-9c6e-2ada2de5b243 1 Other Other +9488876b-468a-4cb6-b1e3-72767f156fed 1 Other Other +94889179-b93a-4033-b116-8dc021fd717c 1 Other Other +94889dc3-f880-4747-95dd-e54119e22241 1 Other Other +9488aa47-5949-4a71-a683-23c7c56ec1a9 1 Other Other +9488ead2-9e28-44d6-ab0f-4946446a937c 1 Other Other +9488f04e-a62f-4649-9b4b-ca83c10f4f18 1 Other Other +948905c3-5509-4af8-8e8c-7eaf908ab5e2 1 Other Other +94891caa-5a11-4b3c-8f78-5a96038429df 1 Other Other +948946f0-3ce9-41d6-935f-a5cb2235850d 1 Other Other +94896ac9-3f23-41b4-9a79-ee54c6c454d2 1 Other Other +948980f9-217f-438f-b93a-b85ab92acd37 1 Other Other +94898256-fdad-4fbb-bd70-f1963451c826 1 Other Other +9489bc7f-e7f4-4597-bbd2-f3fba79755e2 1 Other Other +9489fd7a-ef86-47aa-a7af-cfacf533c187 1 Other Other +948a28b0-dbc0-4a43-857d-05239368edba 1 Other Other +948a466b-0f7b-4f59-ad8e-9b73a6295ca1 1 Other Other +948a580d-063f-4bde-8f59-7234578c433c 1 Other Other +948a83d4-c4c9-43e8-a6ff-8a64032828c6 1 Other Other +948a9bed-5293-4fc8-a633-55f37187e706 1 Other Other +948affe9-a016-4713-a2bb-c14b591288f8 1 Other Other +948b0dbd-353f-4b6d-8dcf-6ab3971fd68a 1 \N Other +948b3436-0775-4bdd-ad49-fbf3bbb0a3a3 1 Other Other +948b79ce-859f-4e82-aa22-b2713594d018 1 \N Other +948c13c5-ff6e-4b78-857f-5420215e585e 1 Other Other +948c17f8-7367-4b87-b306-67b606255f73 1 Other Other +948c6379-567d-4a6d-bc17-3af8b4922f5f 1 Other Other +948c86fb-8da4-4484-b643-381ae38dc5c7 1 Other Other +948cabb1-237a-42e3-9868-17131f7de68e 1 \N Other +948cc287-284f-440a-8c2a-0bf45ef8c836 1 Other Other +948cfa0a-2f58-4f9c-9a65-afb7f9f31aa4 1 Other Other +948d2629-e8ed-4ec4-b650-4c78e94853ec 1 Other Other +948d4e02-fe44-44d1-9049-8584be40612f 1 Other Other +948db970-ee94-4944-8198-8717f97e699c 1 Other Other +948fbbb0-d7c0-4131-82d3-4cd6f15adf45 1 Other Other +9490133a-1886-4e26-96bd-4c28716f6f69 1 Other Other +94902dfc-5581-47a4-9fd2-467d31bbf429 1 Other Other +94903699-36de-4f27-84d9-1dfa58265fe9 1 Other Other +9490ddd3-f897-4361-a959-bdf193e70332 1 Other Other +94913985-0add-4fc3-b2f9-af5997cdaeec 1 Other Other +949157b2-071e-4e31-9f09-e2841ece44e7 1 Other Other +94915b48-147e-43aa-a7d5-3dce57a62a2d 1 Other Other +949178ab-6349-4bdb-939e-25c39d10b30f 1 Other Other +9491e8f8-2fbd-4158-ba13-2dccf656e153 1 Other Other +9492068b-5668-4a65-9fd2-cdc270f36934 1 Other Other +94922f0f-2a8b-462a-be69-faa480ab5900 1 Other Other +949234c4-b437-490b-a6e1-e5d6e10195ac 1 Other Other +9492bd3b-7e05-4fd1-9d93-b74d141eea93 1 Other Other +9492bf43-e5b0-4d5a-9ab3-76b6b4d1af98 1 Other Other +9492ceb9-f26d-4ef1-95f0-d5fa78dfdd08 1 Other Other +94931869-d1f5-4c1d-a312-b0417921f9de 1 \N Other +94934dfd-a403-4b79-b26e-9760a3530856 1 Other Other +949358e0-f167-485b-8be9-f71cc4f16aa8 1 Other Other +94935f13-420f-474b-a9c4-0e8d73ce0179 1 Other Other +94936e0a-8c24-4426-98ed-980654db812e 1 Other Other +9493a0e1-f86f-4381-89df-860aa4d12ab2 1 Other Other +9493bdef-ef63-4866-9b7c-844f62fd848d 1 Other Other +949404d7-9dff-4493-8b30-3e2606718f40 1 Other Other +94940f08-d91f-424b-a4fa-bc172ee12378 1 Other Other +9494a2fa-5523-4603-b9df-088d98639198 1 James Other +9494ad3b-b3c3-41d0-814c-868c2bf1428e 1 Other Other +94960dc0-3843-4c2f-a00a-a1bb1b7be213 1 Other Other +9496131c-430a-4693-861f-81c346b9de7b 1 Other Other +949632bb-c201-49e1-8f4a-e733584e1d9e 1 Other Other +9496548f-3aac-4f64-8891-da0de5623976 1 Other Other +94967d25-c3de-4d91-8a9d-5c173922c6e0 1 \N Other +9496821b-8d24-44fd-aa25-1eac56c2ca71 1 Other Other +9496b228-cdfe-400d-be1c-2e3d83914bfa 1 Other Other +9496d803-0aa0-4524-8476-6350f7db3066 1 Other Other +9496e336-7206-419f-9de1-65999afb87c6 1 Other Other +949724db-6cb2-4f04-a172-2bc7edbea36b 1 Other Other +94972cf5-5d10-4a10-8175-1ed9bd1859f3 1 Other Other +94975ca8-8bd9-4929-b982-6fe1ec4d1a64 1 \N Other +949774dc-0f84-47d6-bf01-99663ededd36 1 Other Other +9497793f-ff6d-464a-93ea-5cd274e6e240 1 Other Other +94979a08-af31-4fb7-9b3d-2d83b3b7ca24 1 Other Other +9497a52b-39ce-40c1-826d-09b4b06d11e6 1 Other Other +9497ad82-7842-4ef6-9df0-5b6d71f2de15 1 James Other +94981650-2620-4ee9-a99f-009f168f70b5 1 Other Other +94981885-3cca-4788-85e1-f7a3479ae5fc 1 Other Other +94984872-d249-4fd5-87e8-74dd3b4237bb 1 Other Other +94988931-85f8-4f8d-80b4-d4e1ce608d54 1 Other Other +9498ccb6-75ad-4c70-ba3d-cae92da51cf3 1 Other Other +9498f68a-d650-4c56-974c-7785c1797f8d 1 Other Other +949921e1-b2c6-4f23-9397-080cb5b01606 1 Other Other +9499623d-d808-49a7-897e-a3c13226e006 1 Other Other +9499a2fa-a30b-467e-a30d-96cb4cb29579 1 Other Other +9499b93f-ad0f-4f66-bcd9-f52b9db3df08 1 Other Other +9499e2f9-df36-4e0f-997f-5543ddb75c28 1 Other Other +949a1a24-1c32-4310-b907-010e48b55b93 1 Other Other +949a76e4-7efb-44bc-bc9f-31524bbc8675 1 Other Other +949b218d-a110-4bc4-94a9-adf9dd23ece6 1 Other Other +949b3222-42c3-422c-b0fe-9ae6bc6b2e8b 1 Other Other +949b7035-3250-42ab-afa5-7463ce0ccdc9 1 Other Other +949bd5cf-bb6b-4b40-a781-a60dd39380c2 1 Other Other +949be8f3-43c8-457c-8c0d-8ff10681dfe5 1 Other Other +949c1c57-c7af-420b-96d7-019f82195233 1 Other Other +949c309a-5f3c-485d-91c6-b41496361ac1 1 Other Other +949c9371-5e31-476d-ad53-0881fe310cd7 1 Other Other +949ca234-c24e-4ec7-a717-05d2b30280c1 1 Other Other +949cac2b-f046-42eb-a29a-25d32704d3ff 1 Other Other +949caebf-65ef-40ad-8c6a-42887d8528d3 1 Other Other +949cb922-42f3-47b7-9352-1cf23948b299 1 Other Other +949cbe08-3b68-41f6-8fd4-09318c6065e7 1 Other Other +949cd561-bd79-43a6-b4e2-b2bc05d69d63 1 Other Other +949cdc4b-978d-4a39-b906-481848f7ed33 1 Other Other +949d0568-a117-4053-85a6-81f50ede541c 1 Other Other +949d252b-e97f-4826-9033-5890fb91fe51 1 Other Other +949d44a3-e69a-44c2-b9dc-026ea8ec3711 1 Other Other +949d462d-7d30-4095-acd9-cad4b4e5fc11 1 Other Other +949da0ac-b4c5-4001-b73e-57cd623473ad 1 Other Other +949dc86d-8e8b-4e2a-a9d0-b3f738757957 1 Other Other +949dca52-84e1-408d-9893-49d5d79742b0 1 Other Other +949dd682-a5d0-472f-9155-d1de6ace222a 1 Other Other +949e6fc9-cb2d-431d-bcbd-4cfecd8b1e9a 1 Other Other +949ea3cd-d9c6-43d9-8359-e035589a8208 1 Other Other +949ebde7-6b00-473a-b774-47d821baa177 1 Other Other +949ee655-5e23-44a6-90a2-112d9668f820 1 Other Other +949f093d-399c-408d-95e3-1d3d3c0415bc 1 Other Other +949f0b73-4867-4f2a-8259-787cf46e3f7c 1 Other Other +949f2a5e-1de1-477d-b901-e80f18d0ca5d 1 \N Other +949f7571-24f9-46b3-b959-035701c1dbee 1 Other Other +949f7f0b-9d94-4f62-8cf1-4db4caac5c49 1 Other Other +949f8884-a167-44c8-80f1-419ca8adac01 1 Other Other +949f9b68-4453-4b18-96d0-e7d013e15a5b 1 Other Other +949f9f5a-ccf2-44d8-93d6-a7bfbb131d06 1 \N Other +949fcd36-790c-4c08-af20-4d8493af3f83 1 Other Other +949fd325-407f-4d1e-8e4c-d7aa59efe0dc 1 Other Other +94a02952-9adb-4652-ba48-7e46134bdb14 1 Other Other +94a08aff-2129-43d8-bde5-cd81f2fd82bb 1 Other Other +94a0b9a4-3f0b-40a1-ba1b-fc8c8c521c1f 1 Other Other +94a0cf08-d5dc-4cc2-b73b-26a51dd7458d 1 Other Other +94a12960-f225-426f-961c-6fa11043b841 1 Other Other +94a1656c-bb53-41dc-8b5e-ecfb49a6dec2 1 James Other +94a18942-da37-472f-b4e7-a971dd09dd25 1 Other Other +94a21dec-39a9-42ad-a808-086bd7eaa73a 1 Other Other +94a23971-5826-48a1-8d7d-77e608590e62 1 Other Other +94a24e33-b485-41e1-ab6b-b40ee40ba6a3 1 Other Other +94a263c5-c1c3-4397-9663-860a2ca3864c 1 Other Other +94a281e8-7193-4be7-9575-525c4374b8ba 1 Other Other +94a3331f-1e09-4395-9cab-3c18f17f3341 1 Other Other +94a395a8-30c5-45c9-b151-745004cdd66d 1 Other Other +94a425be-d6ad-426b-b18f-041869adab3e 1 Other Other +94a42a51-4c09-4726-8a70-69d6c1fa3f95 1 Other Other +94a48d4c-df36-456d-b8f5-0c166ee5f443 1 Other Other +94a49bd5-4135-4c58-8cde-2d10852bb6af 1 Other Other +94a4a043-4f68-4ac2-a7a7-35f159e5b118 1 Other Other +94a4b0ff-aef7-4cfe-8013-10638a981e93 1 Other Other +94a4bec4-b4f4-41a5-9799-78204e189456 1 Other Other +94a4c352-1123-4f99-98ee-77376fa26441 1 Other Other +94a4ce06-60c5-4f08-9283-4692b53a794c 1 Other Other +94a51193-d2e4-4464-8e4a-4e1c669cce4c 1 Other Other +94a5180b-cff4-4361-91ce-0c2075410759 1 Other Other +94a52179-74d9-43a7-b94e-0d055d67e0cd 1 Other Other +94a54bb4-ec4f-4960-aa53-ec19550e3b61 1 \N Other +94a5ab45-418b-4887-9a84-344487ed11dc 1 Other Other +94a5ef59-1b70-4498-b7a3-f3b0280d7663 1 Other Other +94a61899-65a8-4a45-bb51-6f2093a49b6b 1 Other Other +94a66ec8-132b-4c96-abd2-e119cac663a6 1 Other Other +94a67e9d-7962-4186-bbe1-6004eb0b3926 1 Other Other +94a6cc5c-2bd7-499a-809e-0540e0731fe0 1 Other Other +94a71988-3212-49d0-94d1-6a93b5649d2a 1 Other Other +94a729b4-7980-41e4-8536-f566f5348474 1 Other Other +94a7b410-f763-496e-9b32-43f794ee1fa1 1 Other Other +94a7fd89-06c1-4c3b-b1c2-c723578c44ad 1 Other Other +94a7feac-4454-4fa5-be55-17710d40f3e2 1 Other Other +94a818d5-395d-467f-b10e-87fed60640a8 1 Other Other +94a83265-76c2-4972-ac11-6290808beb7f 1 Other Other +94a8914e-7956-4ca9-99c1-41bde539eb2c 1 Other Other +94a89150-3844-45ff-948e-3c8387565520 1 Other Other +94a892f0-706f-491b-a9f4-1b5d12a57421 1 Other Other +94a89ad9-4151-4ee6-9174-094763abd25d 1 Other Other +94a8d0e8-99fd-403c-bd89-cca096719a6b 1 Other Other +94a8e08e-343b-4595-9dd4-a274341a9855 1 Other Other +94a8fb17-b350-4257-8ff4-b5f533072f64 1 Other Other +94a91d16-9f15-4961-aae2-2aeab3c50a8b 1 James Other +94a92a55-b347-4186-8ce0-abab03dfeca3 1 Other Other +94a94625-acbe-4747-b688-d1fdbf297a84 1 Other Other +94a9bfda-268a-4a9c-af98-be88f2b56518 1 Other Other +94a9fec1-d123-419e-b4fc-c1a88a20e4eb 1 Other Other +94aa155b-404d-49ed-be5f-8b6d29de9803 1 Other Other +94aa9d21-de8c-47d4-baf3-94f6732f1e2a 1 Other Other +94aaaefa-4c81-46a9-928e-9614f7a04900 1 Other Other +94aaaf65-2eee-4711-949c-70983bfc5d3d 1 Other Other +94aae48d-665a-4762-ab0e-795290ca4552 1 Other Other +94aae982-6fcd-49d2-ba45-ae7e4dde43d1 1 Other Other +94ab3b0a-e94b-4196-8915-118a10c3c858 1 Other Other +94ab5d44-4aa3-4938-94b2-bd9203b2108b 1 Other Other +94abd668-7b8d-480c-9d9c-e26eaf13e54d 1 Other Other +94ad04bf-8060-40b5-a9c1-3154be8c16fd 1 Other Other +94ad219d-5e8e-48cd-8476-83c872bb4609 1 Other Other +94ad3733-005c-4366-b2a6-574a6a8b7860 1 Other Other +94ad629c-aee7-4099-bca6-d3eafa2ba03b 1 Other Other +94ad76a5-554a-490f-89b3-80671bc0d1c2 1 Other Other +94adbb80-7b3a-48e9-baad-0a52975b144b 1 \N Other +94ae1c5e-987d-43c6-8427-fe86307bfbaf 1 Other Other +94ae36d4-3d3c-4a46-976f-42e465f9c7f0 1 Other Other +94ae9656-5910-45bd-aebf-c902d745f57d 1 Other Other +94ae9874-adc5-4e55-b553-56b61bbde720 1 Other Other +94aebe80-9f1d-4eb6-844e-ed153e38adda 1 Other Other +94af08ae-c781-44e8-9466-a9bb1cb86fa6 1 Other Other +94af13a4-de13-420b-b4ff-1281a2b4c996 1 Other Other +94af5830-3efb-455d-a9aa-dad52a2f6589 1 Other Other +94afbcdb-5768-4898-b43c-7eb3586c831a 1 Other Other +94afd99e-f629-4c56-bf54-7c13cffe637d 1 James Other +94afe113-d025-4fb6-9d9e-370fe86a43b8 1 Other Other +94aff0a9-2d1d-40ff-85ad-2e8e5d4fdf0e 1 Other Other +94b07208-0cea-44ef-a938-b0fef5b0fa04 1 Other Other +94b07656-6372-4b64-a2e4-1b3a511c7cb0 1 Other Other +94b0d967-5182-4ff4-a92c-d5795bafefb0 1 Other Other +94b10cb1-944e-4fa5-a36a-894a1e5b9892 1 Other Other +94b12356-5a71-4f08-aec0-fb95f3a469bc 1 Other Other +94b1dd8b-869f-4da9-aac4-97831984469a 1 Other Other +94b21b7b-801d-4f3e-bc62-2aa65f21b159 1 Other Other +94b24eb1-63c1-49eb-bb86-ae1b5b13c167 1 Other Other +94b28d29-8a01-4561-b2a2-f212ab569087 1 Other Other +94b29e60-ed2e-4c03-b45b-ee1656c7c3ba 1 Other Other +94b2a5d3-e8a2-4a1b-a7ec-51695a2dc68f 1 Other Other +94b2c23e-82f3-4906-9075-2e1d6f2ec71b 1 James Other +94b2ebd1-f9cd-4e1a-9b32-dba5dcba6e78 1 Other Other +94b32149-8934-4a30-ab58-c6af75cfb661 1 Other Other +94b32a16-2bf1-408b-91a1-5520684a0cba 1 \N Other +94b33e08-4040-48b0-92db-1a66c6feffb1 1 Other Other +94b34672-bd8b-45c6-bca1-3a3465b70fe0 1 Other Other +94b348f2-8797-4682-87ae-9e5280c06612 1 Other Other +94b3a1d7-5839-44b7-8ffc-4ae527c25f75 1 Other Other +94b3be2f-a0a4-4bec-a803-bcd2a9c3d7fd 1 Other Other +94b3ca14-ca45-40db-861b-46c2fd89eb57 1 Other Other +94b3d753-ff8f-4160-b00d-2763ef4fba20 1 Other Other +94b3db99-56bf-45ba-8f59-12b907a65a6d 1 Other Other +94b42173-d433-49b5-b185-29746ec7c4b0 1 Other Other +94b43568-9444-4886-99b7-09c4cafff389 1 Other Other +94b4457f-0577-4de6-973c-6021d9b6aad1 1 Other Other +94b452df-527d-479f-bc22-ca090c8a99b4 1 Other Other +94b47513-764f-4778-945e-8a6995cd9e9f 1 Other Other +94b47d7d-3a59-471c-aaeb-260c87b5113c 1 Other Other +94b487ee-ba2b-4fe8-add3-8e37df8ca29d 1 Other Other +94b48cee-483a-491a-9b0f-ac41f4767e78 1 Other Other +94b4dba6-635c-4ce3-b7c0-b14b98899f6f 1 Other Other +94b50438-a808-4fc5-81e3-6dcb9fc4ec5c 1 Other Other +94b51c8c-69f6-4134-ab7e-791a375cb97f 1 Other Other +94b560bb-a0e0-4832-9e30-bb1d61e529aa 1 Other Other +94b5cb53-5762-4a38-b3b6-51bf77031c86 1 Other Other +94b5faa0-46d5-11e8-890c-fa163e8624cc 1 Other Other +94b64515-bd90-4184-a5d1-4d0c74b2a559 1 Other Other +94b6e56a-f9c0-488c-a5d2-ba9a08483712 1 Other Other +94b71160-7cb5-4c9a-8bac-4352e1616d4b 1 Other Other +94b7685d-2362-41a0-a146-85226e096670 1 Other Other +94b784c9-564b-4ece-b215-2550eb61e8d1 1 Other Other +94b7fdd9-84d2-4ae3-b563-50aede6d701d 1 Other Other +94b808c8-aa73-4a53-92fb-48ca51ec59b6 1 Other Other +94b87fcf-9147-4b08-b110-fc5e20f88bac 1 James Other +94b893f9-24b3-4f97-ac51-fba91f15d88a 1 Other Other +94b90fb2-d045-423a-95ba-f5d75f6d8396 1 Other Other +94b93190-4b93-4d5e-92fe-2edcb2c4dc14 1 \N Other +94b93d3f-abdb-439a-add3-18b3b7200218 1 Other Other +94b94946-865e-46eb-a2d6-b84ba83bc4a8 1 Other Other +94b97158-a619-4889-ad5f-89b63aa4afbc 1 Other Other +94b97e31-3404-4cd7-96cd-0bddc89336f9 1 Other Other +94ba2a19-ff93-4170-99a3-77e76e99cc5e 1 James Other +94ba4bf8-844a-4829-8f4d-b99a1c7d9846 1 Other Other +94ba6678-22ec-4df7-adc2-3e36e370c6a5 1 Other Other +94ba9c42-ea0d-4d48-98a3-e5537e8caf87 1 Other Other +94bac0c0-54ec-48e8-8edb-f789235f81e4 1 Other Other +94bad6c8-7ecb-4b46-964f-cd62126d53bd 1 Other Other +94bb4ad9-7193-4a26-95eb-9cd8474c6292 1 Other Other +94bb7062-a7b3-459a-b6b2-f9de05e14381 1 Other Other +94bbb1d7-08a1-479b-b72b-922540c8d23a 1 Other Other +94bbc87f-e755-4bab-967a-7ffe6ae13eaa 1 Other Other +94bc0fe8-4f44-4e2e-8e99-05f54f1e7b03 1 Other Other +94bc310d-767b-4034-9f15-67da8df8feae 1 Other Other +94bc4a91-4869-420e-afb5-6654a18326e7 1 \N Other +94bc79e9-881c-45a2-830f-1f47b5650a44 1 Other Other +94bc8d8c-6516-49a2-9bf3-9ab5d9ceba93 1 Other Other +94bc9b81-8045-4370-a612-c1aa0e3a64be 1 Other Other +94bcbf57-632c-401f-bcc5-7d02dae355dd 1 Other Other +94bd0de5-ae50-471a-a372-6933271501e3 1 \N Other +94bd0e00-ca94-4ce1-887e-48179b83fa5c 1 Other Other +94bd1366-6cdc-48f1-ba07-f8b1f9f18499 1 Other Other +94bd1f86-d7f0-4e61-9f22-f8eb86f681be 1 \N Other +94bd41e3-a261-4aa1-a266-437425e9e6f8 1 Other Other +94bd450e-49a0-4abd-94f8-6c3bb8bc1059 1 Other Other +94bd6d93-baa4-430c-b32a-2040c44ac69b 1 Other Other +94bd7de1-4581-4073-b125-bcc653b6035d 1 Other Other +94bd9913-75d9-4f6c-b987-f700ed9c75e4 1 Other Other +94bdb1bf-65c4-437a-8a2b-b896ec059980 1 Other Other +94bdec15-9b18-4138-8b07-994b95fd95a8 1 Other Other +94bdfef7-74b9-40fe-b39d-616a9da6d152 1 Other Other +94be4781-d865-4119-a454-77db8e5e61c2 1 Other Other +94be7f90-117a-43f6-8f8b-229aec6d8f77 1 Other Other +94bef445-53e9-4137-bdf1-9f1da0fe6577 1 Other Other +94bf2721-5fb1-48a9-9417-b6afe3f1460d 1 Other Other +94bf6255-022b-4033-9e28-36c9df26944f 1 Other Other +94bf837f-4eb2-47df-8590-bc41362d2e1d 1 Other Other +94bf9538-0842-4a84-9e98-f38eae81d27b 1 Other Other +94bfa7e5-b5a0-4522-a5d9-b34befd88dc5 1 Other Other +94bfa80c-0b96-46d9-9e82-56a9d6294f7c 1 Other Other +94bfd54e-8b64-476a-99b5-1d2546e7caba 1 Other Other +94bfd786-2682-46a7-85a7-62da9214bb69 1 Other Other +94bfecf1-0644-40d5-883c-1adcad93813a 1 Other Other +94c00d9f-a1bf-4582-9c3e-697e22dc423c 1 Other Other +94c0d546-632c-440a-b3a9-14a1a9e155fe 1 Other Other +94c0ddce-5233-45a9-a36a-fa498e6bc2fb 1 Other Other +94c0ea1c-727c-46c2-9b7a-c2ba9374dca6 1 Other Other +94c0f64f-d1f4-4576-a505-0b4e8308a62f 1 Other Other +94c14e24-ec83-44d4-8af4-41aed78b7840 1 Other Other +94c15c9a-7fd1-414f-a883-6fd75c70c832 1 Other Other +94c16433-3bf9-42b6-961a-101a1c255bf0 1 \N Other +94c1f9ee-d0fb-45de-a336-eaab6ee98a69 1 Other Other +94c26a74-a96d-4aea-b233-91ded22c4f03 1 Other Other +94c295de-0ab3-41c0-ac09-1b4328f9c650 1 Other Other +94c2c832-34ca-45a3-b08d-84c110bf4618 1 Other Other +94c3416d-a796-41ba-a4c1-2531b7a56a0e 1 Other Other +94c369f7-581e-4abf-9def-726b1c22f199 1 Other Other +94c3b865-f9d1-4729-a0dd-46ef4bcd7c8c 1 Other Other +94c3e430-be53-48a6-b0eb-224282cf309f 1 Other Other +94c4704e-68d8-4ba7-8164-bc93aa8e57b6 1 Other Other +94c4bbd5-c731-4b27-9430-f816e1d9a8ce 1 Other Other +94c4bec6-de45-4264-82e3-ac1639fe4a29 1 Other Other +94c4ff53-46a4-433a-be87-8a9d477bb98a 1 Other Other +94c51bc3-ea9c-4316-9248-67f935c1d381 1 Other Other +94c52287-8a60-4df7-b5f3-4ee2ff452706 1 Other Other +94c56591-29f3-4370-883a-25434c96e7cf 1 Other Other +94c579db-39b4-4388-b78d-a1d928fc1c62 1 Other Other +94c581eb-0346-4180-8c7a-953921f16003 1 Other Other +94c5b577-2c35-4c28-8266-52f4a060cdd3 1 Other Other +94c5c67c-f658-4cff-80fa-767dd4896ff1 1 Other Other +94c5ce0a-9bf4-4f7e-8b1a-4559bf53566e 1 Other Other +94c5ed2d-ec4c-416f-b35d-e927b702f449 1 Other Other +94c61bce-db6b-44c7-8eef-c31920608409 1 Other Other +94c68e95-ee91-405f-9aea-c1d12338c101 1 Other Other +94c6fe75-77cb-4a93-9415-522539563053 1 Other Other +94c71eec-1458-42dc-ad40-0ebc63236b27 1 Other Other +94c72a04-ad4d-40b6-9a28-a07031877218 1 Other Other +94c73ec3-9982-4373-8b86-012b87857ea4 1 Other Other +94c753e4-84a6-4607-8274-a909d1968196 1 Other Other +94c7913e-7056-450c-9b2e-7f9e663ba523 1 Other Other +94c79404-9a8e-460f-b49d-a7d0a1599474 1 Other Other +94c79eb2-ef93-49fd-a02c-cbd26adce8e8 1 Other Other +94c8029c-774d-46f3-9bba-302615de114f 1 Other Other +94c80c5d-659f-43dd-9dae-cd2c247ac257 1 Other Other +94c854bc-943d-4134-958d-ece86dcc7bd2 1 Other Other +94c85d23-0e03-435e-87e3-ed1b77e7ff94 1 Other Other +94c8a085-b284-46b5-bfbf-05a69d60f6ab 1 \N Other +94c8ac33-b663-426c-bd1a-7bcc635d04ff 1 Other Other +94c94161-4e14-467f-b15d-b43bb689b704 1 Other Other +94c95f79-ef39-4ac8-80f1-63e43ce3c734 1 Other Other +94c9638a-dd71-4c62-8c02-85e5b601eca5 1 Other Other +94c9c699-a482-466c-b8bc-c573f443b9bd 1 Other Other +94c9cb52-9474-4a0d-9cd2-9b28f5106396 1 Other Other +94c9f00b-628a-442e-bc2f-74bd9d62d57d 1 Other Other +94ca6266-e8cc-4ac2-9784-d0f7b09b3895 1 Other Other +94ca8ad1-99b4-417a-be87-e7fbf34d2f97 1 Other Other +94ca9373-e903-4049-b21b-eb747a0fc995 1 Other Other +94cad603-c3f9-449e-aa89-13cc36f7ca7f 1 Other Other +94cae574-602c-4e81-88e9-8912cfb3e65c 1 Other Other +94cbbe24-a467-4b44-9068-c0225fedd682 1 Other Other +94cc2bee-d76a-4b14-b62d-2db8b1f52b89 1 Other Other +94cc48a7-f815-4b41-bff2-c2550468419f 1 Other Other +94cc7fb7-0706-4999-8122-caa36af05172 1 Other Other +94cc8c20-c82b-4be0-9153-0dd548d23603 1 Other Other +94cd14a9-c1a9-4d92-9d2a-cf3a5e23bcd6 1 Other Other +94cd16cc-d3fd-45f0-8952-1aff5751a79e 1 Other Other +94cd3acd-0574-4315-8feb-2b6e331fb828 1 \N Other +94cd47d3-61f2-4d09-85bd-7b4f65320aa4 1 Other Other +94cd491d-fd4c-4e57-98db-ac137a8f00f5 1 Other Other +94cd70f9-15f9-4801-8273-64987f32f1c2 1 Other Other +94cd78e7-fcac-4044-a6bd-85c853b58f5a 1 Other Other +94cd88b5-46cc-40fa-843e-123acb672280 1 Other Other +94cd8cfa-5ee9-4e46-b586-a147f82ef997 1 Other Other +94cdc2dc-92c0-4544-b4e7-b8e0512e3b2f 1 Other Other +94ce216b-b5ba-497a-a33b-e80743adf194 1 Other Other +94ce2593-80d8-4006-a98d-fd8fd4769637 1 Other Other +94ce46af-8eb7-475b-9676-ff3a1cdc7995 1 Other Other +94ce5409-8033-4276-b88b-86462f36c9a4 1 Other Other +94cf1243-5f49-4e26-a39b-b522ba9c50ed 1 Other Other +94cf2af4-e08f-4dcb-a6e6-7a635a86739a 1 Other Other +94cf5c79-5ba3-4792-8266-c56c22bf60e2 1 Other Other +94cf87d1-ffa2-49ab-9fd8-fc222fe375d4 1 Other Other +94cfd9e4-379d-45a0-bd4e-0d920ff197f9 1 Other Other +94cfe318-b516-4c9d-8c9b-4603b66e6788 1 Other Other +94d01303-5298-4234-8821-b031d40a2025 1 Other Other +94d02274-8618-4739-9a34-857ccf5e999d 1 Other Other +94d04325-2c60-4c7f-a2c4-e534f75e78bc 1 Other Other +94d05287-a106-40dd-981b-1d7453aedf10 1 Other Other +94d06807-e2b4-4b08-9c1b-a63925294467 1 Other Other +94d0c22b-de0e-43ea-878a-52ce95d2f0d5 1 Other Other +94d0d08c-33a2-4bdd-91d2-ea853bde8271 1 Other Other +94d1094f-8a98-4016-b287-d1bf5622af03 1 Other Other +94d15a8a-cf9f-41e2-87b7-39bcc95f0704 1 Other Other +94d17da1-3684-47ea-ba80-bc6688a1a9b8 1 Other Other +94d1c799-9714-43f7-9a9d-95b28595e819 1 Other Other +94d20f86-bff8-4844-b974-1d8ca821feb0 1 Other Other +94d20fde-711e-42d4-9f95-98b052ce69fc 1 Other Other +94d2172c-7aa5-490f-b148-2eef78dd9b89 1 Other Other +94d21f16-1299-48b5-91f3-cdeefc4f2f2a 1 Other Other +94d27e03-4ca8-40b8-b463-087e132dc33d 1 Other Other +94d297a7-3d1f-4d86-a614-f9298439110f 1 Other Other +94d2f14f-774f-4cf3-ac6d-6500351f1f04 1 Other Other +94d3006d-62b2-4465-bced-76750c7827a1 1 Other Other +94d3229c-d4ba-4152-8119-65c61b22af3b 1 Other Other +94d35d25-c20e-4996-b778-f953df2959b0 1 Other Other +94d36521-2fb2-46e6-8715-28028d987f2b 1 Other Other +94d377da-bb02-4019-a944-5213f1d2346e 1 Other Other +94d39ff8-92a7-4bc5-ae4d-97e710a98a76 1 Other Other +94d3c920-91cd-488d-b5d3-c55079b1c2d5 1 Other Other +94d3f3de-0b88-4e20-b87f-e0f7afc186cc 1 Other Other +94d3fc18-710a-48e7-bdb8-eb30c9684b5d 1 Other Other +94d40613-162b-423e-b4dc-d0f929be50c5 1 Other Other +94d41dd7-0b75-4e52-ba5f-483fadf4e958 1 Other Other +94d47e8c-bab0-4dfb-b523-4f35367617f4 1 Other Other +94d4ba78-9f5e-4707-8f3f-59e3f87302d8 1 Other Other +94d51519-bc8e-4409-8c4b-a023b7c2d8c1 1 Other Other +94d547e5-7c5c-4d00-9c7e-ff1ca7905706 1 Other Other +94d579f0-be32-48d8-9d54-304b83ab9009 1 Other Other +94d5b511-e9bd-4b56-abc1-52463165e09c 1 \N Other +94d5c791-4e59-4a31-9b0c-f8dcffbf54a3 1 Other Other +94d60996-fc22-43fd-b114-b0f8d6b79a72 1 Other Other +94d6242a-b6f1-4918-bafb-696ba526799a 1 Other Other +94d6334c-a170-46fc-8e7e-5034d0cf0e26 1 Other Other +94d64aed-a34c-4613-a99b-4003c48334a3 1 Other Other +94d68b45-f9f8-4972-aaa3-760ec5fb005d 1 Other Other +94d6a365-6a54-40be-a78d-cc29abd06cb7 1 Other Other +94d6a753-b065-42be-8ec5-36d5577963d1 1 Other Other +94d6fe1e-35e9-423f-a298-55c2d4e6e862 1 Other Other +94d6ff3e-49b8-42f8-8c10-b4aa07f85c6b 1 Other Other +94d7081d-45e1-4bb3-b59a-367c9a1539c1 1 Other Other +94d7735c-70a9-4d08-9246-7abd0444ad93 1 Other Other +94d7c1b5-1c31-4a80-b777-3f80b6ab618b 1 Other Other +94d8117d-a040-40b8-a472-f272f0ea2fe0 1 Other Other +94d860af-5458-4e94-b428-ddae19130794 1 Other Other +94d8679f-1bc2-40ce-8f5b-c23be55344e8 1 Other Other +94d86f12-976c-4b78-ac47-546a6af734ad 1 Other Other +94d8dd1a-3149-400b-9550-55f37f6b8638 1 Other Other +94d8e29b-2030-4162-b017-f5d10ce73c13 1 Other Other +94d92505-6fe9-4090-9bed-559abb9870ff 1 Other Other +94d932ea-413d-434a-87d0-d5ffa220288f 1 Other Other +94d9558b-b6d8-4366-bb12-41b7be813311 1 Other Other +94d978aa-bb5e-4a6e-aa16-596bd8f99021 1 Other Other +94d980a3-d457-42ac-993a-d9c31cd09f8d 1 Other Other +94d9c61d-54d3-4358-9e91-1ab228aab2d2 1 Other Other +94d9ce70-5bea-4e4d-a589-6270e76af03d 1 Other Other +94d9f5ca-9e62-411e-b10b-596aeaef8187 1 Other Other +94da37e5-6f6e-4986-a34c-8a606f64884a 1 Other Other +94da77be-0f2f-4aa3-b0ae-9f59951b8442 1 Other Other +94da7f50-4271-4632-af24-a4bf36accfc4 1 Other Other +94da9abe-a93f-415c-ba54-0932fb64eeef 1 Other Other +94daac8d-0eae-426d-bdcd-b3980bb05381 1 Other Other +94dafc7e-b825-4b7b-a65a-5dea60b9d191 1 Other Other +94db0d57-018a-411e-8bb6-3635e9926fb5 1 Other Other +94db1f44-ee02-44cb-96ff-abb1d063c0a8 1 Other Other +94db4c48-065a-4d81-bb10-789987d962dc 1 Other Other +94db599e-6ace-4a87-9bea-660341f82720 1 Other Other +94db59f8-9a9d-479c-a7fd-98d18f46db09 1 \N Other +94dbab33-b437-428f-bca6-7aea0aaa27fb 1 Other Other +94dbb686-136e-4ec1-952c-ba2260a9c09b 1 Other Other +94dbf60b-1d6e-438f-a994-5c12e66b84f1 1 Other Other +94dc5eb8-6777-4227-86c2-1356e1a1baf3 1 Other Other +94dca756-5881-49d9-8004-63f3c7b29d5d 1 Other Other +94dca96c-4885-40b6-adfd-f1da0111f68a 1 Other Other +94dcc6ad-29e1-403c-975a-cde4bc617372 1 Other Other +94dd0ac6-ee67-440d-a2b5-1c07966603a0 1 \N Other +94dd2eba-fada-4df0-b260-5f27f43a537c 1 Other Other +94dd38d2-1dd6-4177-bb19-85e6a7fb520c 1 Other Other +94dd4f61-87e0-4165-91cd-b82a732475e0 1 Other Other +94dd6764-44b5-4fc0-a4cc-6b56c80ca6d7 1 Other Other +94ddcc32-2fd2-4d25-b5bf-3023e290e43c 1 \N Other +94ddcfb3-5651-431e-ba0b-49c7eae5f6eb 1 Other Other +94ddeb40-cd00-4a90-ba6c-338673fb9ad1 1 Other Other +94de1a70-0e8a-4e1a-8ef9-fe29939c2172 1 Other Other +94de4a06-5999-433c-8085-385012251844 1 Other Other +94de554c-fe5a-4e59-b5d7-bd76d7a27806 1 Other Other +94de5be6-e6b0-4c59-9171-5f711d556b7f 1 Other Other +94de7d6c-10a8-11e8-8c0f-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +94de876e-3a01-40d1-a744-2b63b41c1fcb 1 Other Other +94de9b60-2d8f-405c-8e7b-566dc1fc8897 1 Other Other +94deaaf7-db7d-4c8e-84ec-72023f26de6d 1 \N Other +94dec643-39f0-45b6-8aaa-a94591ced43f 1 Other Other +94deebde-41da-4625-af42-de5e3fa50646 1 Other Other +94df3bd6-a604-4053-a7a3-b50d08a24a7d 1 Other Other +94dfa4c4-bc01-49e9-8aab-7ed52d1fd6f3 1 Other Other +94e000a0-c70d-4d6e-a3fd-c9656f0c8625 1 Other Other +94e02dbd-e146-4b0d-8e95-42c92e32ee0f 1 Other Other +94e04f96-0284-4e42-9046-48c8ec6864e3 1 Other Other +94e05ee8-09d9-4a1a-ac55-837169db31fe 1 Other Other +94e0917a-8c06-4ca2-b8fc-faf7d65d7763 1 Other Other +94e0b6f7-9be0-451a-8349-9c3d6c5ebaaa 1 Other Other +94e0b7fa-2642-4916-8121-4b50597420e1 1 Other Other +94e0bae8-4963-493e-b072-d66ce96183a8 1 Other Other +94e14cbc-8267-474e-bd6d-456b6feeb259 1 James Other +94e1649a-e1b0-425c-9fc7-0bdd8a4a0d9c 1 Other Other +94e16e9d-cf3b-4f00-bce8-01ba72e2f50c 1 Other Other +94e16f13-d4a1-4672-b147-8c08dfee776c 1 Other Other +94e19896-9ddd-4ac2-8ba2-73679b81ccd5 1 Other Other +94e1c8e1-75ae-4f67-8da9-e44640b6237b 1 Other Other +94e1ea2a-5fb4-4cb8-9585-eebd3d4805a3 1 Other Other +94e1f279-7d02-4be0-96bc-4f3494a81822 1 Other Other +94e1fe63-8609-485c-ae60-ae5e5f0fe3a6 1 Other Other +94e24074-9d5c-49af-926d-9a4711bf6d47 1 James Other +94e250cb-5e3f-484f-a98a-2cd63f521370 1 Other Other +94e25e1a-6689-4e3e-8c4b-0ffffdc87b50 1 Other Other +94e27588-e0b8-4a2b-9c53-b51660a5dc51 1 Other Other +94e28f67-c094-4549-8cfb-bdf99fc0f05f 1 Other Other +94e2d375-331d-47b6-976d-c33ce2822e6f 1 Other Other +94e3059d-4e7c-4ce6-abcd-90fdf1a5d51a 1 Other Other +94e3606f-bdde-48bc-97b7-cd7561e2244e 1 Other Other +94e3a817-e877-486e-8c95-9148d8714278 1 Other Other +94e3b17a-8ac4-4f51-b01c-da044a1f3355 1 Other Other +94e3ec59-5bba-4888-8815-a2b2726d6d3e 1 Other Other +94e3f7ea-5e85-4ef2-9861-80614260f346 1 Other Other +94e417e1-8c25-4cec-9cf9-b0da8a41fef8 1 Other Other +94e426b5-9f4c-4b43-906a-6b26bbc4eb05 1 Other Other +94e43065-fde0-49f4-b253-0254defc5225 1 Other Other +94e44ca5-9449-4ba1-9eec-efb8a33f4cbe 1 Other Other +94e4f73d-2239-4264-8ad6-4e6422e2761f 1 Other Other +94e534ea-affc-4756-8828-a9893d8db9b5 1 \N Other +94e53e64-b8f7-462f-82e7-f9d7da16514f 1 James Other +94e56fa7-c190-434b-b606-a7add55d248b 1 Other Other +94e5afc9-4bd0-4843-bcd7-2d549629b1f1 1 Other Other +94e60397-da6e-4300-bca5-be79816ab1cf 1 Other Other +94e6666e-636d-4288-b302-7acd182b4a8b 1 Other Other +94e6681e-795b-4409-a0c8-4a2e7feb0daf 1 Other Other +94e6dad3-66f6-440f-844e-f09176fcdeee 1 Other Other +94e6eb75-1f6a-4711-b0fa-952b93323d10 1 Other Other +94e749ea-ab45-497f-9819-b70df7330d3e 1 Other Other +94e89a68-c378-464c-afb5-a5b1eb489d85 1 Other Other +94e8c85a-4ae5-4c3b-9508-06e2af1b4876 1 Other Other +94e8e007-afbd-420d-83be-b9bbf95b9518 1 Other Other +94e8e476-4472-4514-8f87-354854a62eee 1 Other Other +94e92655-2649-4561-82a5-395285760c09 1 Other Other +94e947bb-bf5c-41c7-814a-5200dcf075e7 1 Other Other +94e96904-2948-4c66-93bd-e850d8979f95 1 Other Other +94e99271-ad05-49b3-8f50-35c36acd65f9 1 Other Other +94e99b37-3577-4b10-9e17-c7630be18f64 1 Other Other +94e9bea0-3e88-4962-a94a-6b88b7ee7308 1 Other Other +94e9d39d-d2e7-4849-b07f-3ddeaf4e2b78 1 Other Other +94e9ec68-6b84-4fd7-8d1c-9d96b3a9b819 1 Other Other +94e9fefa-8b88-4076-b0ec-6ad6c04d8b6c 1 Other Other +94ea7077-67a1-47eb-9d00-445c621a2fe0 1 \N Other +94ea8a77-6bcd-4281-8c90-c4954310f5a4 1 Other Other +94eaff6b-93c8-4feb-b09b-0e3b31ff4505 1 Other Other +94eb18d0-ab35-4f96-b2d0-300491945390 1 Other Other +94eb3eef-e853-466d-a722-be258e30f5ee 1 Other Other +94eb6ac2-7e26-4603-a7bf-2543b85b523b 1 Other Other +94eb7ef3-5ca4-4be1-9027-0d0f0e5c2d09 1 Other Other +94ebad96-95d3-4023-bf84-828db8556efe 1 Other Other +94ebae23-e85b-4a4e-8daf-3a9182e793dc 1 Other Other +94ebe0c7-6133-4cb4-a3a9-265b121847dc 1 Other Other +94ec2452-e113-4dee-9312-e610a4083653 1 Other Other +94ec3ceb-3078-47ba-97f4-0d1ba9ca904b 1 Other Other +94ec41d5-51f4-4fe8-a977-6ccc51d294f4 1 Other Other +94ec666c-fe39-4939-b205-a616733965eb 1 Other Other +94ed0360-2b3d-48b1-8151-6ce55f4b4f51 1 Other Other +94ed451d-2e51-4484-94fc-0772870ce968 1 Other Other +94ed484d-9417-4489-8636-d37842ed057e 1 Other Other +94ed6970-29ad-4e8d-995d-cd87ce9a5774 1 Other Other +94ed7cf1-e400-4490-aa93-7bbc66efc756 1 Other Other +94ed98cd-47e0-4953-b3fe-13e08607a758 1 Other Other +94edba44-1f29-4315-b813-efb2d2391d81 1 Other Other +94edc419-3a7c-454a-bef6-1488e101877c 1 Other Other +94edea18-207c-4b8c-b2cf-754d8a777ff3 1 Other Other +94ee0fec-987f-4981-b626-7cc813cf6e42 1 Other Other +94ee3357-396f-49e1-9546-b068e0fc7bc5 1 Other Other +94ee6faf-3345-429c-8856-505dd2ec8929 1 Other Other +94ee740d-a942-4405-9a39-1697307d6884 1 Other Other +94eec5fb-0d87-4dcf-b058-c7afe449a0b9 1 James Other +94eec840-aa59-41e8-ab25-0de1754e96e2 1 Other Other +94eecc29-88d3-4cc3-a2b8-7e939d8f8c94 1 Other Other +94eed1eb-bdce-4a72-a621-244e4bd638cb 1 \N Other +94eed297-d2c0-433b-be0d-b16e925893e1 1 Other Other +94eede9d-e72d-4da9-a024-7ef7e68f9eae 1 Other Other +94eee33b-8b01-4f37-9ae3-4824bbd2daa8 1 Other Other +94eef0cc-bfff-471b-b1c7-2582ce01dbe8 1 Other Other +94ef1073-9042-4a66-9566-b7229b53d484 1 Other Other +94ef26f9-f1b5-40f7-a260-47713b90a606 1 Other Other +94ef470b-fe21-4802-96a9-ba508e0e09d3 1 Other Other +94efbd31-1214-4222-ba0a-f175b360b274 1 \N Other +94efe2cf-8a8a-498c-87e3-98fe338fd576 1 Other Other +94f04662-c689-44d2-920c-df2bf62b28a5 1 Other Other +94f06bc7-ed13-48da-aaf7-fe77f600e853 1 Other Other +94f0a896-2365-4fc9-9dd2-ccdc32404a50 1 Other Other +94f10873-325b-429a-9b47-752c45f1a198 1 Other Other +94f12e1a-fca7-409a-8a2f-3fe4c29e4d77 1 Other Other +94f1410e-6aed-4dd0-b383-420c0573e8c4 1 Other Other +94f1c549-ed3d-4cf9-af51-d49c2a43343a 1 Other Other +94f1dbbd-6bd7-4253-8576-ccda466a7c82 1 Other Other +94f1ea61-df9e-4411-a584-245825912706 1 Other Other +94f1efe5-a5f3-46c4-b901-c356c68cb0ea 1 Other Other +94f22d78-94b0-44df-b111-2b2b4fb27d0a 1 Other Other +94f2a084-ff4e-4df0-bfe9-5fcd39a37ccf 1 \N Other +94f2b3e9-57f3-4339-a499-23f42ae140ff 1 Other Other +94f30837-6b8b-4b9d-8b90-4aa5821945df 1 \N Other +94f31418-6293-4220-b08b-64637507f067 1 Other Other +94f318d1-1d56-465a-b556-01a9ef5834d5 1 Other Other +94f31b1f-daef-4281-b0b9-d3a4f2fbe18b 1 Other Other +94f33c6d-75cf-4425-a973-b5f416ab2925 1 James Other +94f34dd8-efdb-4935-a8b4-02941339dd84 1 Other Other +94f3ff11-c8f0-49c6-8aeb-e3eee31653bc 1 Other Other +94f4427c-6dd6-48d3-a2d6-9d275b9c5ff8 1 Other Other +94f47065-06b7-4295-9ca6-ddaf9382efa2 1 Other Other +94f4aa3c-32d9-4b4d-94fe-ff156175aac3 1 Other Other +94f4ad6d-8e18-457b-a5c1-9869e40edbc9 1 Other Other +94f4f1bb-b4a2-4032-a94f-c160cf25b288 1 Other Other +94f4ffdb-ccd7-44e8-9632-5f0f262b334c 1 \N Other +94f569d2-2196-4c6e-a6db-370dacd889d8 1 Other Other +94f57063-398b-4e57-9fec-4d9aeb5efd26 1 Other Other +94f57495-07a7-45bd-84a8-bee46b55cb18 1 Other Other +94f578d7-e1ae-4067-86c0-57eba72a1830 1 Other Other +94f63514-7dcb-42bc-ad11-c8907fe69676 1 Other Other +94f6642c-e146-4646-8d56-cad20572454e 1 Other Other +94f6d78d-828a-4ebb-adda-28143c242a06 1 Other Other +94f72971-d2d2-402a-9077-eeb69b3018bb 1 Other Other +94f75e9e-1c17-4064-ba65-0a5df5658b93 1 Other Other +94f779a6-1f19-40d1-95ea-fedeb83f998a 1 Other Other +94f77b40-734b-48fc-a700-95c266166daa 1 Other Other +94f77c0c-d11b-401a-afd0-b5632ba3abc7 1 Other Other +94f782e1-d7e3-44d0-9dcc-7763acd43466 1 Other Other +94f78c05-0f9d-45a3-8cb6-7cd766ac22b0 1 \N Other +94f8278a-b832-4e60-87cb-1e3172cc0f3e 1 Other Other +94f82e38-a41d-4984-ad3a-e85b19fd5c19 1 Other Other +94f83f19-4664-4a6e-86a3-2306fab5a70b 1 Other Other +94f8a12a-ee26-4237-a8f4-7b01e75c6d14 1 Other Other +94f91f6c-2c3a-4352-8040-771527002277 1 Other Other +94f9573c-b6b6-49a9-bf91-82e3f3f6dc68 1 Other Other +94f9d1a9-028a-487b-a5f0-28e775055abb 1 Other Other +94f9ee80-8253-4fc9-b967-97c10f7e1d65 1 Other Other +94fa2213-9b73-4a55-a426-13f94d9ee000 1 Other Other +94fa24ab-f03e-41a8-8b2b-66a676261836 1 Other Other +94fa35a5-b83f-4262-a67a-8ab92b7a366f 1 Other Other +94fa41bf-a21f-48a2-b523-71730814c55a 1 Other Other +94fa6f2d-bfa6-4ed6-b89f-5fcfb618e60b 1 Other Other +94fad313-2d6a-489f-9375-883756ae55d1 1 Other Other +94fae96b-2883-4e64-9822-02d347cb87ec 1 Other Other +94fb345d-265f-4bb0-8a5a-d6c109cd74ce 1 Other Other +94fb697e-9246-40a8-9cad-6d980e178058 1 Other Other +94fbbfa7-94a3-431c-85a7-6275010b5843 1 Other Other +94fc0a10-e069-4f86-a77e-6e51d62158ee 1 Other Other +94fc17f9-a404-4efd-9a07-02f0f1665b24 1 Other Other +94fc3f37-83f6-42cb-b2f4-58bbeb8816e6 1 Other Other +94fca4b8-d9f9-47ed-ab80-e6118a9a2f55 1 \N Other +94fcb6dd-e36b-4628-9e03-a7c048e4989c 1 Other Other +94fce22a-2a79-4e2c-b130-66f64ab4c69a 1 Other Other +94fdb9ee-922a-4fcf-832f-813d20e5f305 1 Other Other +94fdc76e-6671-4307-8daf-dc24ec5917f0 1 Other Other +94fe5f34-0f83-4288-88ba-fa0c0c55648c 1 Other Other +94fe83ba-a298-40f2-85a5-17f168a51a1d 1 Other Other +94fe8dd1-31c2-4672-b971-04d8dc9d3ce8 1 Other Other +94fecc75-b92a-46e3-9642-3cbfdd81a9a7 1 Other Other +94fef257-0b37-499b-9bb9-50901dd1668b 1 Other Other +94fef5d9-8348-48f0-a66a-09201edf1cfe 1 Other Other +94ff4595-4910-41b4-9932-aceda0f5ce92 1 Other Other +94ff7546-53dc-4335-a524-adec67dc5855 1 Other Other +94ff838a-0ac2-4e80-be5b-e35ceec8db40 1 Other Other +94ff8c59-7e87-448d-ab04-a24e7bb392e2 1 Other Other +94ffce8d-e490-4ab9-b4dd-6601d28850c8 1 Other Other +94ffd0e0-3bd2-4256-ba8b-f32faeac375c 1 Other Other +94ffd93c-4b17-442b-a93a-746a851b298e 1 Other Other +94ffdc9b-7b4f-4c40-aa25-f719df145d61 1 Other Other +9500341e-da15-4558-8e54-cf137d839269 1 Other Other +95006bae-5a27-4619-934f-60f38b7b3794 1 Other Other +9500dde6-d140-472a-bb34-900b838d24fe 1 Other Other +9501397e-f4d8-438a-931b-f832385bea40 1 Other Other +95014080-d6f4-4772-a492-82f874faadd4 1 Other Other +95024b35-090e-4f25-b0ac-97a22dfe4f76 1 Other Other +9502b6bc-e328-42de-a481-b026bc8d84b2 1 Other Other +9502dd57-4121-4111-a2e7-a634f7706b59 1 Other Other +9502f889-7932-4886-abd9-93f2f1a5fb6e 1 Other Other +9502fd92-6eb2-438d-9e14-53a574e51cd8 1 Other Other +950306f2-ba1a-44a4-af35-f5698aeb3b52 1 Other Other +95033db4-e110-4c23-8ad0-295e34f9cbee 1 Other Other +95039440-3e81-4275-8341-7848719ff844 1 Other Other +950396eb-87cd-48ea-a9a8-6ffc28c2aa44 1 Other Other +95041183-5aee-4c31-9eb3-9795660c0c48 1 Other Other +9504928a-9206-45ab-99d6-5217e6b29b3b 1 \N Other +95049b4c-c20a-43da-b04d-da220572540c 1 Other Other +950549bd-6030-4f1a-9f8c-fda6eed56637 1 Other Other +9505545c-0815-490d-a650-274c3c8ce1b7 1 Other Other +950570eb-55f7-4516-a8cd-bab3d6346a11 1 Other Other +950583dd-be2b-434e-b78b-3d91d19fd0c2 1 Other Other +95059730-d698-4c3b-9022-7b390b067fc3 1 Other Other +9505d843-8261-4b71-9656-4d0d78a0712f 1 Other Other +950605ee-c6ee-47de-8543-5616b784fae3 1 Other Other +95060943-5f0d-4b27-9f92-d7d9c4855d04 1 Other Other +95066282-d50e-4cb5-a39c-36a5c5ac39e1 1 Other Other +9506ab06-bc06-4db9-ad07-ce8cd184a3d5 1 Other Other +95075ccb-8df0-4af9-a9d5-bf9e3c554b2d 1 Other Other +9507c64b-f880-4709-9e83-722a7496e282 1 Other Other +9508968c-0865-46c3-809e-8db843939c04 1 Other Other +95093493-1d65-4d52-af35-74ab272546d9 1 Other Other +95093948-3d49-4419-b29b-591742cf5c91 1 Other Other +950957d2-85a7-401a-97db-e3ba37f51ff5 1 Other Other +95095a63-6407-4ac9-bf27-f87569e09471 1 Other Other +9509cc36-cfb8-40bb-a57f-c6e4444a57ce 1 \N Other +9509f9bf-444b-4536-801d-bbd4e126e552 1 Other Other +950a111b-fb36-4b78-a9bc-7b2409d05e54 1 \N Other +950acac8-a311-4e78-b19e-9de9af7ae3a1 1 Other Other +950ae2be-bb68-42a2-9b46-86dda1651388 1 Other Other +950b037f-6807-4a71-8382-91ee73b788dc 1 Other Other +950b170a-0c38-46b1-80a2-b6b5b3ee274c 1 Other Other +950b62cf-345d-4f19-a353-f94fcf8673b8 1 Other Other +950c14b4-42b5-49c9-a135-50eb2d64eb79 1 Other Other +950c2337-4a86-45c3-824a-37427ebd8a64 1 Other Other +950c4b35-4908-4db9-8a3f-a46f11ce904b 1 Other Other +950c529b-c8d3-4d61-9181-64f35c4c679f 1 Other Other +950c7c2e-fe6a-46f9-800e-2092a3e33822 1 Other Other +950ce56a-1910-4aca-893d-c5a301090be6 1 Other Other +950d3064-89c6-48d7-9ecf-6e86e5b5d8db 1 Other Other +950d5826-3197-49e9-885f-df4e6c17a224 1 Other Other +950d724a-827a-458c-95cc-18298f2ffc6e 1 Other Other +950d97fe-861b-4c59-97c0-047d60f7b744 1 Other Other +950d9acd-7225-4d1c-bb10-3680fb979c97 1 Other Other +950d9d6b-ece1-4fbe-8941-1d00972a33ec 1 Other Other +950dc1a9-90ed-493a-869e-d833584c9232 1 Other Other +950ea119-8bb7-4f8b-a54c-96f8161dc4bd 1 Other Other +950eb143-da6e-4bba-a193-4d4e1d788d9e 1 Other Other +950f352b-b23c-48ee-97f5-746c1cdc1d45 1 Other Other +950f658f-cc39-4eb7-927e-fc33e30e60eb 1 Other Other +950f65dd-03c2-4b56-9af6-4a4fac968de2 1 Other Other +950f6910-f01d-4071-b662-362186101ab6 1 Other Other +950f88a8-7a7a-4c0b-b6f6-101d180995cf 1 Other Other +950fccdf-ba44-4364-990a-88a7e4704b36 1 Other Other +950fcd79-71a3-4eae-b07d-d5fc579151a9 1 Other Other +950fdc1e-96c8-4c21-b070-42ea41b64ab2 1 Other Other +950fe08b-421c-46cb-84bd-cf351d05f7f1 1 Other Other +950fec8d-b9ab-483d-bf6b-eea7e0af4425 1 James Other +95100564-9507-4ebd-83c3-3101c6b1ced4 1 Other Other +9510a15a-9cb8-41a9-aee3-c5bd2cecf62d 1 Other Other +9510a9ae-4b2e-4ae4-a8e8-7ef18b48cddd 1 Other Other +9510b1da-dc8d-4abf-830c-8dd1bc08e5a8 1 Other Other +9510db57-abc8-45a1-a8c3-3a95d4c113eb 1 Other Other +951119c1-048e-4ebf-9cfe-4d115c1151fd 1 Other Other +9511391b-ec74-4740-bb64-a168ce80bbd5 1 Other Other +9511448a-b9ab-4422-bb96-8e56487bc283 1 Other Other +9511d840-bb03-40db-a254-429356aea6b7 1 Other Other +9511fa22-6565-4338-b9a1-f1679366cecc 1 Other Other +9511fa2e-3638-4184-a7d8-ea61fa9e1454 1 Other Other +951262e6-3eaf-45e9-85ce-b5225f393fc3 1 Other Other +9512d936-abca-4160-aca8-5afcba83ebdf 1 Other Other +9512db96-5a68-46f5-b812-9785bc5c907e 1 Other Other +9512f97d-5f87-4b14-b808-216450b0fb17 1 Other Other +9513065e-a6e2-4c23-8eca-c657ab17715a 1 Other Other +95130da6-1c94-4a33-bf62-11033c8af6ed 1 Other Other +9513494a-a9e8-498d-87ef-139faeb8253b 1 Other Other +95138add-5164-453e-8e80-386f10c62c56 1 Other Other +9513c25c-5c0b-42b9-b5b1-d580b7721886 1 Other Other +9513cb7e-a113-4ea6-816b-a17dbd0be9f7 1 James Other +9513e6c8-f768-4441-a143-2d15b8c07f62 1 Other Other +95145068-b229-4758-b2d4-610f0480500b 1 \N Other +9514524a-53b4-4958-a30b-09b9042a4022 1 Other Other +951464ed-4eac-4426-b946-5fa5c97f4fe5 1 Other Other +9514745f-ba9c-44d7-ab2e-62eaf1f8c928 1 Other Other +9514c1b4-03d5-4055-81fc-40014b1da9aa 1 Other Other +951506cc-2ce5-4ffd-81f6-7429645fbc73 1 Other Other +9515204e-3e89-4d0e-9230-fad06e5cd2be 1 Other Other +95153678-0bee-4d66-b900-65ed2fe66037 1 Other Other +951548ab-4833-4fe5-a451-cbe2aca6dae8 1 Other Other +951560f3-537b-4849-84b6-4102d119662c 1 Other Other +951584cf-3d7e-4faf-a840-a25ebac46667 1 Other Other +95159ac7-5b47-4aac-8c26-10a32abc4659 1 Other Other +9515b982-2900-4f7c-b66d-2253fc304619 1 \N Other +951603e7-2e06-4787-bd9c-745560643e59 1 Other Other +9516878a-e8c5-40b8-b8e3-445b936d4176 1 Other Other +95168d5e-c425-4f40-9047-07b417c04e7d 1 Other Other +9516af61-11f9-4f7a-9f81-ac7b0e77cf84 1 Other Other +9516cf8a-6708-4608-9323-220106ebe0f5 1 Other Other +95171fe0-a759-4a92-a90f-36b4e66c20b7 1 Other Other +951809bf-8ba2-4af4-9e29-c0f1fba2802f 1 Other Other +95186ad1-ccbe-43a5-afa0-636940f2543b 1 Other Other +9518945e-2371-4c73-8401-ca6365536dd6 1 Other Other +9518a361-b66e-4502-b6af-6a51a8021949 1 Other Other +9518bf96-24dd-407b-985e-23193b10b291 1 Other Other +9518f06c-4448-4c4b-98a8-cf70328a8ef8 1 Other Other +951931e2-3775-44ae-8c3c-8464209d4092 1 Other Other +951942a3-e315-4bcf-8bef-9d0a3e55f515 1 Other Other +951953f1-680d-44b7-a29c-2125dc14bab9 1 Other Other +95199bd2-b501-4f14-ae72-51a0392b31e3 1 Other Other +9519eee0-70bf-43f1-8553-751355837f76 1 Other Other +951a11f4-ef40-430d-ba56-9d7ed617be87 1 Other Other +951a1d9d-b731-4509-85e4-44d0d6885642 1 Other Other +951a32ba-5f9f-40bd-8708-91811fdcfd0a 1 Other Other +951a6dc1-6ecd-459c-abf7-1aa94c3beab8 1 Other Other +951a9aff-0637-43b6-bba5-589242e6fb32 1 Other Other +951aa38c-b4f5-41cd-9ddf-2a820062704c 1 Other Other +951aa648-3981-4501-a099-a18d1755894e 1 Other Other +951ac2c5-bd35-4aab-80f4-40b30281c42d 1 Other Other +951af0e7-8067-4f73-96d0-87a2ac7a479c 1 Other Other +951b88fd-bd87-43e4-83ad-dc71bd7e22d2 1 \N Other +951bbdff-05a4-4b0c-97f2-8aca82101081 1 Other Other +951bd614-2099-4579-9a7d-6b3975173a13 1 Other Other +951bf749-6019-48aa-9ff1-435f2e8331c6 1 Other Other +951c0cef-fc9a-47e8-8a60-37336383c409 1 Other Other +951c171a-221c-4c35-bd1b-2e7e88deb7eb 1 Other Other +951c7a56-ab32-44e6-9d04-b49d2b3cc99e 1 \N Other +951cb6ad-9409-471d-a639-57f85f7f7444 1 Other Other +951cc526-4f22-4c7f-a825-dea214a8acd0 1 Other Other +951d2c54-852a-45a3-9c94-ff8a17ecc14d 1 Other Other +951d42c4-3ffd-49df-8127-999555b0f070 1 Other Other +951d4771-855e-4b8b-8b69-382210440cf3 1 Other Other +951d7c75-a922-400d-9167-3dd891eb7e11 1 Other Other +951d8cc6-e9da-4cfe-bf6e-2b1d39ea8879 1 Other Other +951dcf11-02d4-4529-872f-1c9469091daf 1 Other Other +951e082f-5310-4e3c-b783-dcde41efbd99 1 Other Other +951e3085-6148-4fd4-b99a-852b92bcb5c1 1 Other Other +951e37b9-c994-4f02-ba4e-315ea155be7e 1 Other Other +951e38c6-10e8-4ffd-85f9-76e472340451 1 Other Other +951e5d1c-295b-4692-b018-24bc582123b0 1 Other Other +951ed2c7-d511-427c-89db-84a0fae22b4d 1 \N Other +951f9eb3-93d5-4bc6-8c8a-b9c506f9586e 1 \N Other +951fe4dd-6b42-4609-aed0-55133c52f5b0 1 Other Other +9520375f-05f7-4f57-b818-3a7f375b90e0 1 Other Other +95204bde-a449-48d5-be9b-ca3f2e37c0bb 1 Other Other +952081af-b513-4486-9bb6-83fc83b7bd39 1 Other Other +9520e54d-26fd-448f-a319-c5f9553231d5 1 Other Other +95211e48-a160-4068-80b3-6fc6379c0177 1 Other Other +95215ace-cc73-42dc-a20b-1bd59c910dff 1 Other Other +95215ce5-581d-4300-9004-81c7a404c4ba 1 Other Other +9521aa1d-de77-4815-a0cc-8dcfaf1b8e2a 1 \N Other +9521dffd-585e-4270-86de-a893b2811a53 1 Other Other +9521f7e6-6907-40eb-a8c6-a7a6015a90df 1 Other Other +95226e82-5938-42ed-a39b-56c944d56620 1 Other Other +95229c0e-4e4d-46a2-b8cd-e5e1fdd95524 1 Other Other +9522d812-479b-458f-bb4e-ae94da94b449 1 Other Other +9522ebbe-93b5-478d-b868-b4a9699777a5 1 \N Other +952312b7-15eb-4a58-be4b-417ba97607f7 1 Other Other +952323fc-397e-4831-8239-82439c93adb9 1 Other Other +952343c7-a96b-48a0-a22a-2092e4d6cb12 1 Other Other +95235c18-a277-4d57-8dc4-492ca86e8aaf 1 Other Other +95236cb9-e8ff-4679-9138-f449e61a176c 1 Other Other +95237ee4-bc46-49bc-be08-9d59a5e46edf 1 Other Other +9523d87e-85aa-44df-a830-9d775abe6311 1 Other Other +952414cb-a6d2-435f-99b9-edcf58069f17 1 Other Other +952422f7-bc81-47f2-83ad-3920a69b48c3 1 Other Other +9524414c-c3ba-4909-8f17-66530bb5f508 1 Other Other +9524a853-601b-4134-ae4b-2591a9a63234 1 Other Other +9524e48b-afb5-486c-bc76-604229246c01 1 Other Other +952539fc-36ad-4ab2-b752-00adf6b13015 1 Other Other +95254185-e87c-41cd-b1a4-8d22d5352f4c 1 Other Other +95258a6d-e53b-4759-9a1a-01851b84db05 1 Other Other +95259dd9-28b4-4456-a1c2-b7cb235368f4 1 Other Other +9525ae60-ba90-4c3b-a34d-65efdfcd6d77 1 Other Other +9526150a-de62-4788-bb42-8aa01cae526d 1 Other Other +9526526e-e725-46ae-85d9-4518cc71f0a5 1 Other Other +95265a58-37cb-4a54-ac09-f74d7563cf83 1 Other Other +952691d3-46c0-4c80-8312-3f226300b119 1 Other Other +95269cef-ba5d-4510-954a-724a7dce24d5 1 Other Other +9526b1f4-2992-4d70-9a72-46335c7d92a9 1 Other Other +95270ae6-c61f-4e3d-a9b5-07797371a943 1 Other Other +9527650b-2499-4690-8f64-a0beda0f5168 1 Other Other +95279ffb-1e74-46a4-9204-f55c39a9ae51 1 Other Other +9527c15d-b0e1-4b93-84b9-bbeff8d67ee6 1 \N Other +9527d06d-a3c7-4583-b88c-78b0cfd75c23 1 Other Other +9527e83b-e072-402c-a083-63f4cef8235b 1 James Other +95284d4c-0e1d-4dee-8ec3-a148712f4079 1 Other Other +95287930-8786-4a94-8815-b87a9a097f70 1 Other Other +95288136-8073-43a4-91a6-6a1f303b5d0e 1 Other Other +95288d45-cbad-4615-83cd-48b230667460 1 Other Other +9528fdee-eda3-4556-9960-078c41689dc7 1 Other Other +95290905-f880-4ed4-8a06-de1e720128c5 1 Other Other +95294fac-b942-4d8c-9a21-3b69ac8ca81f 1 Other Other +9529ea06-c698-4dbf-9287-c1a0cf476e55 1 Other Other +952a09e2-ac47-4793-86ad-c8a79862e208 1 Other Other +952a3473-448d-493b-9ef0-4f410c34fad4 1 Other Other +952af5eb-6287-41da-9dea-2690e860d454 1 Other Other +952b0ea8-2687-45af-bb95-be92023a4f0d 1 Other Other +952b1b4a-933a-4aeb-958e-c32bc453c2b3 1 Other Other +952b5744-0659-4e74-aaed-fa2e0432b221 1 Other Other +952b9e39-c3d5-4e85-ae66-c6cd9771aeff 1 Other Other +952bac9d-782e-461f-a273-490e58ab4391 1 Other Other +952baed2-b4c2-416c-9b7c-cfbc7791be40 1 Other Other +952bccb2-16e7-11e8-8086-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +952be87b-f36d-4fde-8713-036e69ede67f 1 \N Other +952c1e77-9353-4cf4-baa2-b1659cac399c 1 Other Other +952c34be-f3c1-4498-b6aa-6d63e2f0c75a 1 Other Other +952c4496-ef08-43b1-9873-641b691b14a3 1 Other Other +952c54b2-3992-4252-a979-06e09814e182 1 Other Other +952cae48-dfdf-4597-b1da-49a6af4cf5ad 1 Other Other +952cf09c-9554-44d6-bc44-717ec384f002 1 Other Other +952d1488-99fb-4bbc-ab71-2b94519a02a9 1 Other Other +952d14cd-6188-4003-9dfe-1ac5bbe2fb93 1 Other Other +952d1f2d-1f46-4941-a88b-ae66a4715422 1 Other Other +952d953d-82de-4e52-84f2-aed9808ebde5 1 Other Other +952dc112-00a6-4cd1-a1ef-6d20e408e1c8 1 Other Other +952e1317-52c2-4a53-8361-cf72fbc4b936 1 Other Other +952e7429-319a-4882-a00d-f9368b49808b 1 Other Other +952ebbbb-0f68-4677-b796-a666d490ded9 1 Other Other +952ed12c-57c6-4e12-98d8-b0a0a7ef4e3d 1 Other Other +952ed82a-c3c9-4268-992e-e379cd72fd46 1 Other Other +952f0378-ba66-4766-8c4e-79ddde41ef16 1 Other Other +952f04d2-f151-441e-8c21-736061dc1578 1 Other Other +952faa3f-2eea-4b53-9892-a944c15a4c6d 1 \N Other +952feb67-3b45-4a8d-abb7-e9114e03e574 1 Other Other +95304258-0454-4bac-b198-a87b60789746 1 Other Other +95307671-5d3c-4c08-9f6b-8aa4743f817e 1 Other Other +9530815b-7153-495c-9087-14fc6f690c22 1 Other Other +95309021-883d-468f-972b-83c086f40816 1 Other Other +9530be4f-a350-4ce4-aa7a-ef0d3e694e7e 1 Other Other +95312bdf-e005-4cda-8774-4d0c6d5cf07b 1 Other Other +9531306c-9070-4b8f-89d1-551adb3abaa2 1 Other Other +9531a004-75b9-4bed-8fcd-999149bccead 1 Other Other +9531d5ca-c96b-4aa9-afd5-f6218a61523c 1 Other Other +9531f83c-37e9-48bc-a7d4-ac2bdf86e70d 1 Other Other +953207a2-6ced-4328-9c76-212a5bd5c543 1 Other Other +953239e1-d22c-42ba-8af3-357e28c44e07 1 Other Other +9532740e-6b5f-492a-9395-cac23bea2014 1 Other Other +9532aa46-076c-4551-9a7b-bc197cd8613f 1 Other Other +9532ecfb-38e6-462f-84a9-a7ea6cf0906f 1 Other Other +9533be7d-1c38-43fd-a7dc-be0ef5599ed2 1 Other Other +953474fc-2c56-4a51-858d-834936adb21c 1 Other Other +95349135-4265-4a75-819b-7457266628ab 1 Other Other +9534cabb-f5bf-4739-a381-15ab0262e582 1 Other Other +953531fd-ee30-4f01-97b0-073270cad89c 1 Other Other +953535ac-24b3-4486-a06b-ebb2d2550b3b 1 Other Other +95354cec-8bd4-40c5-b879-b5a724e3745e 1 Other Other +95356c45-6583-4cff-b39a-749be10164d9 1 Other Other +9535934f-8aed-44af-a667-091628b08be4 1 \N Other +9535b159-a2e0-4f7b-a298-e509226053c9 1 Other Other +9535bd5f-932e-4c06-890d-017ee19b492f 1 Other Other +9535eb95-ef35-4841-b803-b6f24bc118cb 1 Other Other +953607d7-4b85-4d20-82aa-6482df76344d 1 Other Other +95364218-bf1c-4e5f-97b5-23086a297853 1 Other Other +95364464-fb9d-4658-b20c-8a76ef4b106a 1 Other Other +953663fb-2b3c-438e-bf55-2e79324b4838 1 Other Other +95366524-609e-470f-bede-e0d2de62b136 1 Other Other +953667ec-a6a2-4102-883d-c613d6539420 1 Other Other +953675aa-0974-49ed-b517-50314a112d96 1 Other Other +9537583a-63c7-44fb-af59-b9cf22b6d155 1 Other Other +95377d5f-8ca9-4237-bc2a-80db7840cbb0 1 Other Other +95379509-bb65-4e8f-b1d5-696df75b3b2d 1 Other Other +95386be2-d4d7-4c52-b7aa-fa85c91efa31 1 Other Other +9538b841-1587-46cd-be19-f369d436553b 1 Other Other +9538d8dd-8eb4-471f-b93f-71fd8dec113f 1 Other Other +953968c3-2227-4914-a6e6-72f5a1a80977 1 Other Other +9539a482-f9a0-4416-ad45-342f6c7f00ee 1 Other Other +9539a8f7-4b11-48bf-bfb0-1bce89bd4700 1 Other Other +9539d491-35fa-4e16-9a1a-d3f651f0adcd 1 Other Other +9539d9fb-d9e6-4ded-90f5-38124740fe35 1 Other Other +9539e4dd-ebd7-40cd-9caa-1e438d812592 1 Other Other +953a8802-0d37-42a6-8134-124f6bde3b13 1 Other Other +953aa3a1-b671-47fb-a7c8-3472b86128df 1 Other Other +953ac0ae-d46c-4989-b838-30d4231ab34d 1 Other Other +953afb64-438a-4b7f-88e2-521348a6885b 1 Other Other +953b0eb4-6540-4c16-aa16-cc7d8b3ab1ac 1 Other Other +953b80d5-5201-40b3-ba9f-0219946ed87d 1 Other Other +953bc4eb-e94f-48a5-8f2e-48f5eb9d4829 1 Other Other +953c1289-1ba0-4b58-a02c-699d4a001231 1 Other Other +953c1886-69e8-4460-b234-f7ff7c7f40af 1 Other Other +953c1995-c4ab-4ea5-99a7-73ccb72f82f4 1 Other Other +953c306d-0dde-481c-a0b8-008159e8f412 1 Other Other +953cba10-42ca-4287-9f52-3ac13e0b4d74 1 Other Other +953d1431-8ee0-4d69-a866-710bdd95e19c 1 Other Other +953d1aac-e23f-4baa-89e1-843b7f3322b3 1 Other Other +953d52df-6bdb-49d7-a401-ac1440e37246 1 Other Other +953d8562-82ca-4245-abf4-a6491e36546b 1 Other Other +953da747-afb7-44dc-a115-7b68e13395c9 1 Other Other +953db436-1cd8-4de7-ab9c-08bd0a55df09 1 Other Other +953dbb68-055c-4d72-b31e-cebc7c502ee4 1 Other Other +953dc89d-5381-4860-90ac-3047803bfe67 1 Other Other +953e0908-a357-4761-ba4a-b9f54c40d66f 1 \N Other +953e1317-1909-4478-8934-621bffa6bb27 1 Other Other +953e521b-b20f-460d-86bd-20c2c55b364f 1 Other Other +953e8736-d151-4bda-9ac5-c4181870fde9 1 Other Other +953ed8b1-d000-49e1-914b-4b9815a93856 1 Other Other +953f20d2-d211-4c59-ae7b-d19dbe90fa5d 1 Other Other +953f2f73-f1ab-469b-abba-b494c542b6da 1 \N Other +953f6de6-a8d3-4617-b332-f19e4e4a70a2 1 Other Other +953fc1ee-d371-4eac-85be-dd2662a1b5eb 1 \N Other +953fea66-5a2e-4dd4-8a8c-28d5927c6537 1 Other Other +95402b05-caf2-483a-acd7-23fbc2599cac 1 Other Other +9540bea1-b7dd-40be-86a5-6fa7b9a43430 1 Other Other +9540c3df-38e6-4117-abfd-8afbf449b0e7 1 Other Other +9540c720-7ea1-409e-b432-343a04d7000d 1 Other Other +95414420-8dec-4b6e-bab6-30bfbe65cbe9 1 \N Other +95416845-3867-44fc-9595-d7dc18083348 1 Other Other +954186a5-3496-4dc3-8be6-bb8f68c321ae 1 Other Other +9541a146-0afd-41f7-8ebc-db553fe6c42a 1 Other Other +9541b3e1-d245-49a5-9acb-f6f5eb0f40c7 1 Other Other +9541e3b9-928c-4c92-868b-aa22b6f0eee0 1 Other Other +95421801-9cf5-482d-99f1-c98a352006c6 1 Other Other +9542a985-d0bb-4818-bff6-287c14324c30 1 Other Other +95433897-0b29-478f-b214-347852b78dc6 1 Other Other +95433d33-3150-4311-b4fd-ebcadee5cff5 1 Other Other +9543d3b8-d342-4884-a5b3-72173b536fe3 1 Other Other +9543f7ba-3523-4801-b7c0-a267d28b1e00 1 Other Other +95448f5f-391f-4a33-924b-f0c4213ed015 1 Other Other +9544c573-c4d5-4eff-8a05-54feebec4b6a 1 Other Other +9544fee8-2eb5-4a7b-b0fc-676114430153 1 Other Other +954544f9-aca2-4974-9924-282cf4991d40 1 Other Other +95455e02-b54b-46db-bc44-95a2fe8a213f 1 Other Other +9545b779-11ad-4a68-a21d-8801d3d1d52c 1 Other Other +954619e1-2a78-4ea5-a6dc-5668ed3bca7d 1 Other Other +95462754-9b5b-4a9b-9246-f81bd4ac8342 1 Other Other +95462c47-d62d-4f68-a95d-069ae27a3215 1 Other Other +9546352e-a6bd-4b97-913c-d230c5d399b0 1 Other Other +95463967-4077-4b48-bff0-4c75a481b3a6 1 Other Other +95464086-b520-463d-b19d-23acb942da5a 1 Other Other +95464a7f-77a6-4899-a417-83761c2953da 1 Other Other +95466b83-4f57-485f-83c2-d851f367fb53 1 Other Other +9546754b-126c-4048-a4ce-823b78a68948 1 Other Other +95469fe8-3e4b-4ae4-a67d-e7a65d59e0d5 1 Other Other +9546fdc0-9b01-4099-a848-0b0f5d76d0b6 1 Other Other +95471065-1c8e-4982-9deb-37504cd97f46 1 Other Other +95475685-a7b1-4819-a393-623f498e3c27 1 Other Other +95478219-d105-4c7b-b32d-970880b4b9ce 1 Other Other +95479be8-7b2e-45c9-be16-2f051e656d4a 1 Other Other +9548362d-6ef5-495a-bfe7-d83416ff4983 1 Other Other +95484b09-8f4c-44ec-ae8e-cae770987060 1 Other Other +95487df7-dc42-4665-b9e9-d6d1a83cf0bf 1 Other Other +9548b592-44af-4b35-b91e-64281949da3a 1 Other Other +9548cc73-592d-48bb-892c-71148f7a281e 1 Other Other +95490f3a-7da4-4b84-acd8-3f90993915d0 1 Other Other +95496c04-dffd-48f7-a0ad-1ba00da16829 1 Other Other +95498261-25f8-44f2-9f61-6312eac69a5f 1 Other Other +95498506-a0d1-4863-a56d-ddbdbb45da4f 1 Other Other +954985ce-716d-430b-8014-1b4ee93f0def 1 Other Other +9549891a-aa60-4613-b98b-c45a6d57165f 1 Other Other +95499ee3-7559-40db-8a0b-520e5b7cc08c 1 Other Other +9549c2e3-a45c-4082-be79-786d2ff8d550 1 Other Other +954a356a-9486-4725-8f02-16e8ab6c6d2b 1 Other Other +954a414e-3253-42be-a88d-dc57a6d656fe 1 Other Other +954a60db-4957-41ba-aa7f-e77b6fc25a41 1 Other Other +954a75b5-fd36-47e7-95a2-3f003d88e9e3 1 Other Other +954a9359-2e36-4f06-a2a6-e919dc75a4d3 1 Other Other +954ab43d-3b14-4f0d-bec1-67c8c926f52f 1 Other Other +954acb5a-aa0d-42c0-9f57-9f8fe6adc1d9 1 Other Other +954ae1af-9f4f-4c85-83b0-6996c0e7589d 1 Other Other +954afc30-bdd8-42a7-841c-c96f5f67eabd 1 \N Other +954b6bce-e021-4877-a3f2-77b77065f9ee 1 James Other +954b891d-8be3-4a1d-806e-2fe24efb49e9 1 \N Other +954bb1c0-4bdc-4e67-bd75-8bf48f40b4f6 1 Other Other +954be74d-546c-46e8-900b-db419d2aaeea 1 Other Other +954c126a-3e41-4241-be26-e190f382d964 1 Other Other +954c45cb-b0fe-4e40-a533-e6c91995dd0e 1 Other Other +954c92fb-622d-43bd-b43a-d57bf7ac4f72 1 Other Other +954cda3d-2dc9-4ded-941b-ba8e9a2c50e2 1 Other Other +954ce62b-7b1c-44f0-9fd4-510fc9b65110 1 Other Other +954d18c5-f59d-493e-8a0b-309bd68062a6 1 Other Other +954d29d0-d964-4b3a-ae29-e01b5003f6a1 1 Other Other +954d2fb9-92ad-425e-87be-0d5c35b06816 1 Other Other +954d30e3-9d9f-413d-a874-abb8eab6ac4a 1 Other Other +954d63fc-25e0-4c76-93f7-3304313b3533 1 Other Other +954d68d7-c221-43b1-88cf-9faee39e619a 1 Other Other +954dc8a8-bdfa-4f03-b370-1afc7e5cb52b 1 Other Other +954de5c5-3134-4ca3-830a-4b4414943ff8 1 Other Other +954e11a6-c96f-42da-9a8a-be51a69f56de 1 Other Other +954e4fbc-401c-464c-99cd-e1c374b096c4 1 Other Other +954e5b78-ff84-473e-92e2-2dc89715fd99 1 Other Other +954e8c1f-9863-4335-8588-6faab805367c 1 Other Other +954eb063-5163-427d-8708-1f481fc94135 1 Other Other +954edd69-be48-40de-b286-4f67b2db6d0e 1 Other Other +954ee309-0c70-4da0-9049-315416d48976 1 Other Other +954f5269-33cd-49ba-b8ac-bdd5f9444f39 1 Other Other +954f54d4-3004-4742-9a4b-0cada48e0638 1 Other Other +954fb24a-8d91-4fdd-bf8d-7f99d4a2c58c 1 Other Other +954fb3cb-9bb8-48d6-a4ca-6e9a07c821b9 1 Other Other +954fd801-ef68-49ff-87fe-efda49d3a86b 1 Other Other +954ff531-d8cc-4e5d-8b9e-b35256723e78 1 Other Other +95507149-1896-4efd-b28b-0b665a328e86 1 Other Other +95510fa7-7a10-4d6f-9fe5-adcd53108fad 1 Other Other +95513528-4445-415b-8fc3-35a6531e84e1 1 Other Other +9551a295-1858-422f-867f-c4840b3fd81f 1 Other Other +9551c779-56bb-46ec-a7d8-7b998e3ccb59 1 Other Other +9551ca32-8d36-4b38-b80b-1b746e681b8b 1 Other Other +9551dc1a-b1e1-42b5-97a4-e3597f889940 1 Other Other +9551ddde-bb4d-44b9-9b91-ffd56f9a4691 1 Other Other +9551f34c-3c24-4b89-8bfe-f21c6a8623a0 1 Other Other +955202b7-187f-4d8f-9e5e-81960694f62a 1 Other Other +95523579-2351-48dd-9add-20a8912d7522 1 Other Other +95529066-249a-41a3-90c6-157e2d922233 1 \N Other +955292ef-3701-4ebc-99b7-36673ac584df 1 Other Other +95529f60-6f34-4cf0-ba8b-c0504c2794e0 1 Other Other +9552a493-8201-450a-8abe-a5f4af08570c 1 Other Other +9552b2ca-4379-4578-a663-7fc9b9c7d178 1 Other Other +95530ff5-eee4-4b44-900d-0f0e86b95b94 1 Other Other +9553473d-a5cd-4679-ac55-8abf7cadc43e 1 Other Other +955386f9-2147-4344-b55f-0afe5ae5a90e 1 Other Other +95538d8a-7514-461f-8aa3-5c3f821a909c 1 Other Other +9553b412-9efb-4ca3-8f12-da360952d9dc 1 Other Other +9553bbcc-a595-4696-8869-ed64179bb739 1 Other Other +9553e227-c806-45d2-bfad-a8b8af8cd88c 1 Other Other +9554862b-298d-481a-a6db-11a6a8bffa46 1 Other Other +9554b699-2f78-46ac-921d-4e08017404f1 1 Other Other +9554c2dd-0de1-4934-9d3b-572b1e430c9d 1 Other Other +9554ce5a-a046-4375-a3e8-fc22d0f7fbe5 1 Other Other +955554f6-6330-4e5b-999c-3d85b8df0fa3 1 Other Other +955579f5-d997-45e2-9b6f-b430d7d54d2f 1 Other Other +95558da6-62ac-4ae9-8102-b8a64f6e7baf 1 Other Other +9555af43-a817-4fd2-8d89-4cd4723d2cad 1 Other Other +9555cba8-f0fe-4b2b-a961-d59e59db2f25 1 Other Other +9555cbd2-4ccc-4f23-bf1d-73243b1bdb3d 1 Other Other +955639aa-3ebd-4a20-b7f3-f79f09ceaff8 1 Other Other +95563c64-1a3d-4728-827e-3b3bc5738439 1 Other Other +955663b6-4e9a-4d41-89ff-6acfc91ec155 1 Other Other +95568c85-35fa-4c98-898c-81b1835dd0e1 1 Other Other +9556d6fc-fbbf-472e-a300-53c22949668f 1 Other Other +9556ed71-2101-4597-9677-a2797c1dcbab 1 Other Other +9556fd26-4134-4ed7-b135-eb1425e5a3b9 1 Other Other +9557965d-fab8-4723-a213-bc9b37993c23 1 Other Other +9557b8e1-87ab-481a-84a4-b2c8bc87a9cb 1 Other Other +9557c0ef-9447-4003-9842-e19e960d8f4d 1 Other Other +9557e3a5-e574-48bb-aaea-d9d757d22ea4 1 Other Other +95582ab6-f910-449a-8b45-bac64ec83a98 1 Other Other +9558773b-81ef-4400-9500-d39fcdee1e59 1 \N Other +95588e4f-4368-4999-863e-6952c9ce22b2 1 Other Other +9558b069-7277-4b4a-a824-fcb439b140ba 1 James Other +9558c451-be48-4a7e-9e69-b542a79f290b 1 Other Other +95591e21-6879-4214-b265-56218cf316c1 1 Other Other +955934c2-8d23-4029-937c-21c7d7313de7 1 Other Other +95593746-9cea-4172-aaad-b506f98fda2b 1 Other Other +95593c80-e61c-40e2-b0bc-98832d8b9902 1 Other Other +955951a2-8342-4261-8dd5-5b9f76219c5f 1 Other Other +95597659-b55c-43d4-8269-e8b911ee1c83 1 Other Other +95597932-058b-4baa-bda0-65ec01a60587 1 Other Other +95599f28-c5b7-43ad-9194-dc83bfceec78 1 Other Other +9559d72b-bd78-4fd8-9e2c-16239c3c2626 1 Other Other +955a417c-f920-4edb-a903-be3714dc1e26 1 Other Other +955a64d8-609b-4ff2-bb53-edad3af1ac8f 1 Other Other +955aad06-c865-4b98-b8f4-78aa696ce6e3 1 Other Other +955ace47-a3b5-4cba-9a84-8f242e178738 1 Other Other +955b6004-5b92-4a5d-b221-b11c8bd8a8b1 1 Other Other +955b7241-f841-49f7-bff0-8a8fe9347366 1 Other Other +955bbf72-75fa-45d7-938a-3bc0ee6370fc 1 Other Other +955bc7e6-ca19-4a2c-9c74-14587650155a 1 Other Other +955c1e73-8848-49f0-964b-3b846d1ede86 1 Other Other +955c6e36-9604-46ec-a836-4e32ad6ab245 1 Other Other +955cf411-7fae-43f4-9456-826a7c945fc8 1 Other Other +955cfa59-70e0-494d-a829-99c55153820c 1 Other Other +955d3ae1-0e0d-4517-9e42-a340ceb05d39 1 Other Other +955d40e9-f0a5-4794-a8bc-8d08763cd554 1 Other Other +955d76fb-9200-49a4-b7a1-526bd32ab34d 1 Other Other +955dcd59-1aa6-45aa-8a6c-d67c84eb4c78 1 Other Other +955de7f6-6817-4b4b-8ea5-9ca73aebdfb0 1 Other Other +955dec16-dd5e-4299-9eb8-ab7c542cdf8d 1 Other Other +955e2c28-1337-4bc1-80c3-7af34dcff8ef 1 Other Other +955e312b-ee72-4b4c-8d77-54a70795cda3 1 Other Other +955e88c6-9ce3-47fb-9abb-fc5ae85bcbb0 1 Other Other +955ece57-4149-4ab1-ac15-bdbb2b62dfd4 1 Other Other +955ef510-fc28-47a2-ab7e-85e5685bc595 1 Other Other +955f0fee-8876-432c-a637-eadf81fbc0b1 1 Other Other +955f71de-330d-45ab-80db-81d2389bc197 1 Other Other +955fa0f9-7cc4-48d4-8ec3-57447dd20c97 1 Other Other +955fc039-cbdf-4497-8c2e-b42ca513d709 1 Other Other +955fc3be-75bf-40fd-a37a-1c7494de3edd 1 Other Other +955fc75f-167d-4b93-b53c-ffe3e725840c 1 Other Other +955fd25d-b574-40c7-a1d9-fd88ff766382 1 Other Other +955ff3b0-26de-4413-aab2-2aa81921a8b1 1 James Other +9560170a-c07d-4238-849f-68aeb2001177 1 Other Other +95601c45-430c-4263-b208-36226cfa56f8 1 Other Other +95601c9d-ef99-46bc-a856-8f8ffc9244c9 1 Other Other +95604dcd-18f1-4c11-b00e-6768e98d527c 1 Other Other +95606561-5b68-405b-a61c-3643bc59805c 1 Other Other +9560697b-01f1-4268-8423-12b1dda99521 1 Other Other +9560895e-e8b8-4e60-9c81-fe056a9c67eb 1 \N Other +956104d1-47ad-49ce-a8de-d3cea6e3464d 1 Other Other +956143b4-86f6-4232-af94-2aa2e8d04b60 1 Other Other +95614b2f-0370-445e-a918-dfc6f6b26720 1 \N Other +95614f95-125d-4320-ab67-c08c1916e4db 1 Other Other +95618cd4-7ab5-45b2-9acf-752bc10a57c1 1 Other Other +9561bdd8-374e-4ef4-ba17-1b2e87244544 1 Other Other +9561de4c-7dc3-4456-a953-ae8cc77b4672 1 Other Other +956206e4-7d47-4456-9adf-a726afb828f7 1 Other Other +95623583-19c5-4b5a-99f6-8f11d17ead3f 1 Other Other +95623acd-d578-4bb6-8598-18e7e96ce8f1 1 Other Other +95623e10-6df8-46af-8beb-abce758a8bf2 1 Other Other +95624cb2-0837-41e4-a5c9-3c2496d8d895 1 Other Other +9562f4a4-f3cf-48c6-9617-fa69226a8702 1 Other Other +956370e2-b779-420b-bdf9-d47b974dd318 1 Other Other +95638bec-d8a6-4773-8b61-4b28129eca5e 1 Other Other +9563ccb1-e1aa-484f-b921-dabc51eeb34b 1 \N Other +9563d99e-10e3-4d92-aa5c-f9f5be343bfe 1 Other Other +95643b39-10bb-43bc-9b2a-17877283d2f5 1 Other Other +95648dd9-19eb-49ae-96d8-25433cfa00f9 1 Other Other +9564c343-8973-47f4-a1ce-4f31f4085c5f 1 Other Other +9564d0e4-2057-4fde-9aa2-80443466cc71 1 Other Other +95651edb-af95-4734-aa6a-03b555ca2b9f 1 Other Other +95655670-7ca1-4b1e-acaf-bf0235cc0978 1 Other Other +956570a1-2a2b-48df-b50c-5a2b70500ac4 1 Other Other +956587af-562f-4fc5-884c-1a01c867929c 1 Other Other +9565ac60-7082-4c01-94a6-33cd5ae280fb 1 Other Other +9565c563-5756-4537-8a9e-7bbff3282090 1 Other Other +9565dc99-0875-4d71-a633-619b50a46861 1 James Other +9565ef63-d553-4425-b696-f22409d9c858 1 \N Other +95663180-b06f-4911-82c1-e57c25263f35 1 Other Other +95664be8-1328-4433-843c-a2c4078b771b 1 Other Other +95667460-639b-476a-9e07-9860de96b8df 1 Other Other +9566bfb8-66cd-4a62-b941-6aabce49b980 1 Other Other +95678a66-a085-45a2-8f03-7f1e9d9428de 1 Other Other +95679de6-ee09-42aa-b326-0c914b6004a8 1 Other Other +9567d4c8-7529-44bf-831e-23921cefecf2 1 Other Other +9567ec42-a7a7-4195-9ea5-4b102e1cae19 1 Other Other +956870dd-3e71-4130-a304-abdf0d5cb126 1 Other Other +95687d47-d0c3-4169-a66c-c00dded42158 1 Other Other +95689685-c683-4785-8da0-0ed599ebbba7 1 Other Other +95693ca3-306e-4718-871f-eb14fafdf823 1 Other Other +95695748-885d-488e-9f2b-c8fd281389ea 1 Other Other +95695b8e-30dc-48ea-82bb-eda5d986c41a 1 Other Other +95697924-a28e-4a86-a219-ac991aa3b401 1 Other Other +95697ff5-df96-44cc-9876-aa0124e017f8 1 Other Other +95698494-bdb6-4ecd-94dd-d28f22b8c754 1 Other Other +956984d4-6a3d-4b35-a76e-c31c3e3afcf1 1 Other Other +9569c052-9928-4a37-a377-b58d91e99619 1 Other Other +956a07ef-6849-4b8f-8442-8908deb1c08c 1 Other Other +956a2f15-f7c3-4b24-ba22-4395574a1c64 1 Other Other +956a377e-1556-4193-b383-d3c92c09fcc3 1 Other Other +956a59cc-924d-49cb-8235-c9863c80c925 1 Other Other +956ac62a-2a51-47ce-ba6b-d55e1ad49427 1 Other Other +956b9491-94b7-47aa-af83-520a4def215b 1 Other Other +956ba691-a870-4be7-ba1e-c73c91e192a9 1 Other Other +956bd58c-9c2a-4e34-9754-f488664fa5f9 1 James Other +956c9ace-253a-4ef4-8922-bfcd1fa7a2b1 1 \N Other +956c9e13-f50e-48bf-9c92-b3dfa1282ff4 1 Other Other +956d1a03-79c7-422f-96b0-9fbc127e7682 1 Other Other +956d206e-bd04-41a0-8b7f-b2bf603cd49b 1 \N Other +956d336b-965a-40d5-bed7-fc659c6315ee 1 Other Other +956d9e36-1fdf-496f-b858-7f8759fa72da 1 Other Other +956da0f7-4f13-490d-b1f3-39fa54ba8cf0 1 Other Other +956e2913-64e7-4d82-b258-623a00d767e6 1 Other Other +956e463f-9428-4353-aac1-19275316632e 1 Other Other +956e6a1c-4c54-44e2-8843-572378cf3e81 1 Other Other +956ea468-f3d8-4771-8b59-2eb89d075bb0 1 Other Other +956f1e56-5220-4d3e-b1be-aa9452592f9b 1 James Other +956f1f19-243d-4387-bc89-06baac4d166d 1 Other Other +956f215a-e410-4bd2-b6c3-eecbef2687fe 1 Other Other +956f4184-f6c1-4d75-80f6-d4409661a9f9 1 Other Other +956f8ab2-68b4-4b2c-a939-c94f50986eeb 1 Other Other +956fa131-c236-4cf3-8c01-1016ed0ee19a 1 Other Other +956febac-d82a-4beb-9317-141e84100447 1 Other Other +957028b5-f0b8-4419-bdf4-ea0b7f07153e 1 Other Other +9571d96b-077b-413f-aff5-fd25fc7ec5d4 1 Other Other +9571dc75-23c8-4100-9a73-ece676859e13 1 Other Other +95721a6b-de1e-4fe8-a5f3-980d6ad72e1d 1 Other Other +9572631a-4fa8-497b-a07f-5f48b935e9f3 1 Other Other +9572749d-423f-46ff-bc99-aee331f02871 1 Other Other +9572ac37-76b5-41f8-a4ec-9a02c45b0e7a 1 Other Other +9572dba7-697f-40a0-80a7-9f02dfb496cf 1 Other Other +95733588-e148-49ae-a2f7-c65c0c00594d 1 Other Other +95736d5c-105a-4f0d-80f3-9fbb0735c52a 1 Other Other +9573775b-804f-4758-8987-a212ccd5ea81 1 Other Other +95739b36-a1b1-47a5-aa18-efc1740e5377 1 Other Other +9573ba2d-0b3e-4427-9c50-93d4eb7d42c9 1 Other Other +9573d157-676a-427e-8c60-16ea74d41e17 1 James Other +9573e1d3-c114-4fb4-b7d0-658f4c45010b 1 Other Other +9573f221-dac1-4923-8f56-e638ea1e7c64 1 Other Other +9573f762-1e35-4cad-8289-fa4a3ef7ba80 1 Other Other +95745ee3-91dd-4038-aa1a-80a6a6af2ea4 1 Other Other +95746473-4948-4dbf-a595-aae2f31b452f 1 Other Other +9574bb82-5c09-40ea-af81-b60059e390ed 1 Other Other +95752423-9226-4838-972f-5698c36ded9a 1 Other Other +957578ce-4a44-49e0-84c1-69f7244bcab0 1 Other Other +95758a9a-81a3-46cf-a5c9-924550861774 1 Other Other +9575cfc4-2b23-4469-994e-b2ebb476f6d4 1 Other Other +9575d329-1103-4641-a9e4-da1807cd079c 1 Other Other +9576004e-439c-4aed-86a8-7475a4b24300 1 Other Other +95762fa2-90eb-4918-89ef-d18393177e30 1 Other Other +95765295-0212-440c-82f6-c6fe99558e10 1 Other Other +95767e5c-7e99-4e95-85fd-d4e76249a3cd 1 Other Other +9576d305-9daf-4a51-bdd7-c8ae0c66b1b4 1 Other Other +9576d444-ed5c-4fd0-beb3-cbb459fb4ad6 1 Other Other +9576dc43-8ca1-4cec-aab7-708494b9b818 1 Other Other +9576ee5d-cef5-485b-b84e-30b0db0c2024 1 Other Other +957726f1-67c2-47dc-b8cf-b0f75bc1420a 1 Other Other +95775b06-a4b5-4580-9e60-b88fabd6ff3c 1 Other Other +957775a3-abf1-4944-8890-02a9f72328bc 1 Other Other +9577d290-a42e-4212-ae7d-1974b5892160 1 Other Other +957803a1-c642-411e-889e-65476615774e 1 Other Other +95780824-3f46-4a72-83e8-27adfcf7e8f9 1 Other Other +9578212f-4104-4040-ba50-61a71963a3b7 1 Other Other +95783f7a-d558-4f9c-b83a-0b5e75e718b0 1 Other Other +95785208-8d70-417e-800c-8f6a876828b0 1 Other Other +9578ff37-36d9-47a9-a6fb-209e47c08ac9 1 Other Other +95791ab7-4f7b-4034-89b5-16b2f07ecdfd 1 Other Other +95796359-32bf-4c8e-8f3a-e0e5df59b71b 1 Other Other +95796801-4f60-4065-a958-8e059888c9b7 1 Other Other +9579a3b1-4359-4966-94ef-b74241b57980 1 \N Other +9579a6b3-8734-4cc9-a52d-39a7a6194e1b 1 Other Other +957a3a08-2f67-441b-8356-018bc7f13f91 1 \N Other +957a3b68-b80d-49c2-80b8-d5e8b57f6d14 1 Other Other +957a42ad-f613-431c-99e3-1839ee9b849f 1 Other Other +957a858d-9525-4b14-be4d-4fb1ceeac9b4 1 Other Other +957aa3e7-eb02-4404-a5cb-463db3c48ea9 1 Other Other +957aa4f5-8b5e-46c6-97d6-d297ef97b200 1 Other Other +957afaf4-ee39-4a29-bc0a-296e724c4636 1 Other Other +957b026e-eb7e-4a67-800d-b6439dde451c 1 Other Other +957b2f87-f58d-4c40-845c-4b9c76b28e46 1 Other Other +957b7e22-df7b-4e64-8d9a-192e9c210a6f 1 \N Other +957b9e4c-7cb7-4b99-b745-7eedd20c1a37 1 Other Other +957bc26e-4984-4052-9e08-115d683e1e46 1 Other Other +957bdce0-f4d0-423f-a4a4-fb67e9c5a8c7 1 Other Other +957bf1d7-a07a-4707-8b9a-d1117a3c3386 1 Other Other +957c03f7-3c2f-4b37-b306-f936e97852de 1 Other Other +957c1c2c-2ba1-44d2-97a7-1827b32fa828 1 Other Other +957c495d-b27d-45fe-b474-bebd3f08945a 1 Other Other +957c581f-3db0-4eec-83f9-6907fa0d85b0 1 Other Other +957d0f51-2ced-46e4-8fe3-1b093a876eda 1 Other Other +957d6af3-d146-421c-b1d3-5d4076f8c94f 1 Other Other +957d930a-5d69-4eca-9e02-33985e05dc52 1 Other Other +957dd58d-7ef2-49e5-b6ff-44b07cb06635 1 Other Other +957dda5a-82f2-42be-a6df-8f9002ce783e 1 Other Other +957e30f8-1926-49cc-80b3-ce340fbc857a 1 James Other +957e4abd-b916-4ae1-9153-1c978f7735ee 1 Other Other +957ea33d-3cec-4c4d-8fa5-3f5eb634c2dd 1 Other Other +957eb3a0-0422-4ac0-b5fe-8ff99b4e0c9a 1 Other Other +957ed4e4-8cc9-422f-93d3-df097bc72f85 1 Other Other +957eeb62-c5d1-4839-9dcc-aae1194556af 1 Other Other +957f0221-2c8c-4033-934c-a7e7d0a383ce 1 \N Other +957f4500-994f-49c2-978a-0a2e861b4df1 1 Other Other +957f87ce-7343-428c-8841-cf04eade3acc 1 Other Other +957f8f00-ce88-4994-a03d-78e54e83da5f 1 Other Other +957fc3ce-df12-4cc4-8657-12732709e0e8 1 Other Other +957fd074-d7a7-4dc8-8f25-5030f708ab91 1 Other Other +957fd431-ffc1-4dfe-85ce-91ca46ed2c0a 1 Other Other +957febe4-2084-4f53-99c3-d1081fafcdcb 1 \N Other +9580215b-f0fa-4a97-933b-466e755389a0 1 Other Other +95802c44-2998-41c1-896c-8aa6f54029fb 1 Other Other +958054fe-1cff-4ba1-93f7-668309637867 1 Other Other +958080f9-b664-4571-a875-ce5afddd0b54 1 Other Other +95816a6f-ba6c-412f-bde9-dd1b61e58c68 1 Other Other +95816abd-a930-4cf8-a204-223326ed4e8c 1 Other Other +958199ae-68fc-4401-b205-c3e2d1ab3967 1 Other Other +9581d9b6-9470-4074-89b5-536d1164de0f 1 Other Other +9581db57-c7ad-42e5-a723-9f464447b9dc 1 Other Other +95821263-506e-4070-ac5c-694b35b00eec 1 Other Other +95822090-82f8-4069-b583-ac4d0d38133b 1 Other Other +9582241f-1bd7-4192-8c22-cd7c1d3afa7a 1 Other Other +95831419-017e-4e70-9219-56f2e1ebb69f 1 Other Other +95833119-ef42-445b-b607-2df5e5466d71 1 Other Other +95835db7-6e2f-4282-850b-b2b055c85116 1 Other Other +9583a7da-5deb-40d1-9ce1-0b4d4d3c6d11 1 Other Other +9583e2f5-9bb3-4ed8-b422-0e1649de8ef8 1 Other Other +9583fc72-7078-4483-a203-580102d41c06 1 Other Other +95840e74-dde5-42b0-8c10-5f547bac1765 1 Other Other +95840fe3-df57-4971-9ffd-37a82532ddfd 1 Other Other +958483dc-0295-4932-a4d9-d83b42d635aa 1 \N Other +9584d04b-3c5a-48ae-8f2b-a1dce05db187 1 Other Other +95853f63-2587-438f-923d-c04177c902ec 1 Other Other +9585acf2-90b7-4c55-985b-002dd5b8e5aa 1 Other Other +9585c961-0f75-471e-bdea-c73946bf8555 1 Other Other +9585f936-f202-4f86-b72d-ae284508f1d6 1 Other Other +958653cd-9cdc-45f1-9858-a51df8fc8925 1 Other Other +95865c5a-b725-46af-bcfa-f4c098255648 1 Other Other +95869c77-2a18-4f39-b799-8fbcc12b4981 1 Other Other +9586c5ed-e12f-4632-85a3-f7f6fa749a68 1 Other Other +9586d3ad-1944-4a63-a3f2-228ddaf3e205 1 Other Other +95871be4-faa0-4142-8dc0-9e753bce1162 1 Other Other +9587255e-41c4-4558-b985-cfd4828f10a5 1 Other Other +95872755-74e4-464d-9e53-b747ded02d57 1 Other Other +9587cc42-58ab-4ba2-941f-02650a44bf5e 1 Other Other +9587e678-2c93-4bda-a6ad-5e9c95d0ea4d 1 Other Other +9587f757-e9a3-4d6f-8b65-50fd8d688e24 1 Other Other +9588033a-c2fe-415b-948f-87d7d0d63124 1 Other Other +95883643-40c4-4646-8f91-d583296f90dd 1 Other Other +95883980-d96c-4932-a662-322c8471fe6e 1 Other Other +9588e258-332f-437d-a089-7258682004dc 1 Other Other +9588e7cd-7fb4-4a74-9027-111d61142ab9 1 Other Other +9588e897-d5f5-40d6-9422-7f820bbd886f 1 Other Other +95891a4f-0ecb-4d75-bbca-31a54a255c88 1 Other Other +95892223-70c3-4c77-8324-f85176d46104 1 Other Other +95892580-f4af-4421-9fcf-907eab47cd6e 1 Other Other +95895234-bf65-420c-b319-4c907f8a6bb2 1 Other Other +95895e80-8ec1-43b1-883c-b86161bcd5a0 1 Other Other +9589c46d-a07d-48e3-aa85-b47f24c57a10 1 Other Other +9589e394-3a7f-4d05-b19e-fcc0dbc53b0a 1 Other Other +958acebb-ac03-4f96-9920-f8eba5627270 1 Other Other +958adff6-22e3-45ba-869a-83872b15c4b6 1 Other Other +958ae06a-8c58-4f28-85af-9e6e190be73a 1 Other Other +958b117b-6b2c-4507-ac4d-56a54af19d8a 1 Other Other +958b53c1-1e52-43ba-9f46-cabe9757f782 1 Other Other +958bd721-bd6a-4893-a8de-846da48e0382 1 Other Other +958bfe11-56f7-4907-960f-e7efebe9ba85 1 \N Other +958c1227-7d3f-4d78-9949-17f5a3cd704a 1 Other Other +958c35f1-718a-426c-8028-2d7521730d1d 1 Other Other +958c471c-e714-4786-9348-1e3188431491 1 Other Other +958c484e-102e-419d-8d91-184cd3b6c07f 1 Other Other +958cf15a-685d-4a7a-8acf-2f1b90914951 1 Other Other +958d6dce-d912-4af8-8a6b-3eff4ea757cc 1 Other Other +958de6a0-8ae2-4ba2-9fbf-021f7718ecc7 1 Other Other +958e1fd2-8178-4914-a347-ac4f762d4c31 1 Other Other +958e42af-3a45-4757-8f85-8105071b2cc7 1 Other Other +958e461d-e98f-4dd4-a083-253b82588daf 1 Other Other +958e6856-dcbd-4167-a288-87cd2350f2ed 1 Other Other +958e7301-6687-4469-bd2b-91be4e2cc02d 1 Other Other +958e83ed-efbc-4033-85f2-269a87c0de75 1 Other Other +958e9552-bdb3-46df-88db-24928129bba4 1 Other Other +958e9e18-c52a-4708-9834-673722391491 1 Other Other +958eeeb6-c48b-4fff-8f07-b1f20068bbf0 1 Other Other +958f04a8-c956-46b3-aff7-47f87bf11569 1 Other Other +958f0749-a386-46ec-b49d-61e7e722d848 1 Other Other +958f6a52-0953-4e6b-8f33-eb23a78c75e4 1 Other Other +958fa966-092d-4449-8600-6b6d9989e0a0 1 Other Other +958fb257-0477-4921-8ef5-e95f6b081371 1 Other Other +958fc447-dddd-48f7-bdfd-c8f464518d58 1 Other Other +958fe481-63b4-4767-b501-4704692dba69 1 Other Other +95901f3f-f823-4500-a5e0-d0f0c3035878 1 Other Other +959048ab-4e15-47a1-a6c7-6c536070f0da 1 Other Other +95904d58-ffa3-450b-ad24-f5ba8172f077 1 Other Other +95909387-6536-4416-bec7-3cea4c7657c4 1 Other Other +9590a3d5-a9ed-4572-8832-7301f462c024 1 Other Other +9590ba7b-c0d5-4a52-95bd-f58457ff1659 1 Other Other +9590bd1f-9bf2-48b3-933c-8f6e56dfe3a3 1 Other Other +9590c20e-4000-4d72-923a-ba967f51ec4c 1 Other Other +9590d095-9ae7-4258-b9c2-4a0df1d81bdb 1 Other Other +9590e5c3-8919-4b76-b65b-0e4fab3572e9 1 \N Other +9590eef2-6ba0-4ecc-841c-d8bcad317986 1 James Other +9591003f-3226-4746-8886-06ca09e3702f 1 Other Other +95912ded-b16a-4dc1-9c2f-74059834a16c 1 Other Other +959134e6-a7cf-4d7c-8802-9a7eb530d1d0 1 Other Other +95914551-69a5-45d8-bdba-695e27d75f6f 1 Other Other +959160e7-8ceb-4ac2-9114-15a53383f899 1 Other Other +95916ef2-38c6-4a73-b656-b87cc94348a3 1 Other Other +95917bf6-47ca-4cc2-9d23-dfaf407dc2e4 1 Other Other +9591a4de-0059-48f6-8da6-73fe596347d1 1 Other Other +9591bb7e-2ae8-4daa-ad79-a9d98d299787 1 Other Other +95921022-09e2-48db-953c-b647d46f73f7 1 Other Other +959225b4-5a15-456a-8c6a-b0cb1ffa469e 1 Other Other +95922a65-8a80-41f7-860a-9a8740ac387a 1 Other Other +959245a2-0513-4f07-8237-0cca8bdbf63b 1 Other Other +9592775b-85e4-4f60-80bb-a92ea5f69770 1 Other Other +9592a83e-38da-4f2b-8d23-3fb99fa76939 1 Other Other +9592b08d-7b96-464e-9b60-1ae5fcb25641 1 Other Other +959314e1-3b92-47fb-bfd8-c4f7569ae28a 1 Other Other +95935599-7476-4fd3-acce-55d7217cdf35 1 Other Other +9593d608-844a-443e-8866-b14b673f9569 1 Other Other +959418ee-e351-49c0-97e2-67a5a4551465 1 Other Other +95945bc7-b775-4cec-b209-d21687d5f41a 1 Other Other +9594f189-cfea-48a5-921e-ddc855670de5 1 Other Other +9594f22e-2c46-4bea-98a5-9733c7f05892 1 James Other +959507d9-7cef-480a-95d3-a765b41b8160 1 Other Other +959513ef-a18e-4c97-bdb2-423d5468aab1 1 Other Other +9595cfe2-07a0-46fb-8068-8910b40d0b12 1 Other Other +95960367-b6b5-4361-98b3-dc1959886a25 1 Other Other +95962299-be19-44c4-ac48-61abc895533a 1 Other Other +95969a96-96e8-4dc7-8db6-b6252b07c0a2 1 Other Other +9596a825-359f-4fbe-a287-63d1cc65c1b9 1 Other Other +9596e4d9-338a-4c00-8289-5d9101d4664d 1 Other Other +95970cb3-08e2-44c4-8b9c-19e37b79e176 1 Other Other +959736a6-0388-47df-8b00-bde92335d899 1 Other Other +9597387e-9c9f-40a5-9d70-cbdba102a694 1 Other Other +95973c13-92e9-4d5b-90b8-c203809432f1 1 Other Other +95975d0c-dc77-4178-bd19-9a222aff1b32 1 Other Other +95976dbc-13b0-4bfd-b271-cecb26c3dfba 1 Other Other +9597a561-3954-4d66-bce3-a7d9e4eb5d02 1 \N Other +9597b1c7-aac3-450d-be8b-fd761d871b2f 1 Other Other +9597c15f-0227-4025-83eb-dce5f2235a8e 1 Other Other +9597e677-c325-4ba4-aae2-549c7e5bf5c1 1 Other Other +9597e82f-b5ed-4c2d-be70-1005fe7dd4d8 1 Other Other +959857ba-ece0-4e1c-b531-e12d762e3cb2 1 Other Other +95986036-d326-4926-bcce-8688768201e4 1 Other Other +959865a1-27c2-4461-b50c-a16918856443 1 Other Other +95986a8a-e920-48f3-9c3e-e49ed34e25d5 1 Other Other +95989b72-0d63-4708-8db8-0eec489aacf1 1 Other Other +9598aa27-7955-44e5-b5f7-0ed08d99741e 1 Other Other +959935c5-43b1-4111-9195-5f25ad1da7b0 1 Other Other +95993b9c-6af9-4fbb-b0fb-7101b37a8a65 1 Other Other +9599a127-e67d-4eb1-8785-0f06027614b7 1 Other Other +9599a989-384a-40b1-bc03-2ff536c4a565 1 Other Other +9599e881-e0b8-4da8-a804-9ca9e5a8ff7f 1 Other Other +9599fc7d-7d07-4f95-892e-cb28b22362ed 1 Other Other +959a00de-81f8-4a48-882c-f3b6d31f5b97 1 Other Other +959a26d8-aa33-488d-b40f-60fe022d68a5 1 \N Other +959aafde-4b51-4bcb-b6ee-153c1252520b 1 Other Other +959ae486-8256-4607-87d3-27ec1b4ad8e7 1 Other Other +959b239d-ef17-4af8-8bfb-2a2c605c62cc 1 Other Other +959b2ef6-046c-41f2-b0ad-d876a9d3ecb1 1 Other Other +959b4530-8182-4043-b81d-33b23626d120 1 Other Other +959b8d8b-2abd-4bfb-9a69-f0d27f112e2a 1 Other Other +959bbb5c-965d-4e01-8567-ba010b17d1e1 1 Other Other +959c0523-9377-460a-8c54-c1f9087a3a63 1 Other Other +959c6296-b9fd-4539-9959-4ed8bbb5a268 1 Other Other +959ccc68-d7c7-46a4-aba3-328172e2360a 1 Other Other +959cd04a-2818-4f48-920a-98384169d935 1 \N Other +959cea9b-1d89-4f18-8f02-a50190869b0b 1 Other Other +959cf1ce-77ee-4ce9-81f4-5b8f27a0c91a 1 Other Other +959d33d7-594f-4ee4-a53a-a7c3dbdff001 1 Other Other +959d6a4b-9d2a-4cd9-aeb7-4feef90f95ae 1 Other Other +959d8e48-99a7-4986-b43f-8f616fa4cb9f 1 Other Other +959db9be-f0e6-4a30-bb1a-b1b2b2a61e59 1 Other Other +959dffbc-a558-4a80-b10d-86e66b9f8a9e 1 Other Other +959e383e-deea-43ba-8936-3cf96ceed059 1 Other Other +959e50eb-232d-4dec-b7ea-d3a209edcf98 1 Other Other +959ea74d-e21e-4482-a768-f6eaa3096e18 1 Other Other +959efffb-6cc5-4ed4-97ea-5a43a4cafc92 1 Other Other +959f2d4a-2235-4240-918a-07f5bde127c0 1 Other Other +959f347e-2935-4431-83bd-5d5703de2f5a 1 Other Other +959f3673-68df-49e2-9077-a52afe495c18 1 Other Other +959f9e12-ea39-4c39-b4c6-9f7fa45a0b55 1 Other Other +959fb245-416d-4ad9-9e69-45ab7f71e57a 1 Other Other +959fe484-9b6c-42b1-a151-9098c0623603 1 Other Other +959ffae5-a00f-4dad-94c8-1b8359bc0a88 1 \N Other +95a03061-f969-44bb-9ab6-e1c28f6a2b85 1 Other Other +95a05462-795a-4bb3-872b-4bc1701fb326 1 Other Other +95a0998a-475e-4dee-8db0-0523e9f7ba35 1 Other Other +95a0ac58-8ffc-442c-8424-1196f04443c1 1 Other Other +95a0b481-6607-404e-8722-953d16c49725 1 Other Other +95a0c6c9-5685-44e5-bf9c-b50e5e8f9fa7 1 Other Other +95a17980-d40e-4bfa-82c3-a12458cf2f87 1 Other Other +95a18f5c-1008-453a-b5d3-5972bc9cae48 1 Other Other +95a2260f-71e1-4849-b3fe-a2e24e78788b 1 Other Other +95a2c9a3-34fc-43ed-ab1a-0a86db15464c 1 Other Other +95a2dafb-a217-4925-9895-0c858e75ff5b 1 Other Other +95a337f5-1009-4a9a-bb4e-5050a8ace77e 1 Other Other +95a34ab4-de2c-47ce-8d51-010b6ac22475 1 Other Other +95a35064-30db-4249-a505-3d96569a4f97 1 Other Other +95a373c8-0601-4bd0-9d2a-52a93de71cbe 1 Other Other +95a378bc-7a4d-4084-a2ef-f607f51a5f9f 1 Other Other +95a39113-f637-4c3e-96ff-2b5f2fdf3e4f 1 \N Other +95a3d3a4-d58e-4f63-992f-af5a1a86c396 1 Other Other +95a43d19-0006-44b9-bdfd-13e4e90b7970 1 James Other +95a4748a-cbc0-4e26-8522-cc52f6cff1db 1 Other Other +95a4d6c0-451c-486a-97eb-bc01954d5614 1 Other Other +95a4db3b-39c1-44d0-b210-a04bced93647 1 Other Other +95a4ed1d-fe51-4590-a554-007bc94f8958 1 Other Other +95a4f2a3-f42b-4ff1-931b-3bef796e39f3 1 Other Other +95a4f39b-2751-4f54-9370-c7322a221894 1 Other Other +95a5115c-8ca4-4eaf-b5fb-b69d3925627c 1 Other Other +95a51346-00f4-4e02-91ff-4cabd491e401 1 Other Other +95a55a7e-ef56-4c9e-841b-ffd7dad4a9c1 1 Other Other +95a59747-5f85-444f-bf01-5ae3d7a60d9e 1 Other Other +95a5a739-4f04-4938-82e6-0add3e211903 1 Other Other +95a5a7a5-5a12-4f3b-bd7f-6bb8bf556c35 1 Other Other +95a5f93a-879d-4204-b2a8-8dec6baafcbe 1 Other Other +95a5fde0-bf18-4157-b994-a32f0ff5b4d9 1 \N Other +95a6515e-4050-4f48-ab42-3692e59eac95 1 Other Other +95a66045-cae3-4056-9e96-dbe2a638c30f 1 Other Other +95a67ec5-23b0-41b4-b21b-0315ce6e4f40 1 Other Other +95a680eb-d06f-4982-b591-21e9244d4eba 1 \N Other +95a6b646-1e52-42a0-bee8-b24bad71ad2e 1 Other Other +95a6deb3-be81-4b54-a926-519f4a8af3cb 1 Other Other +95a6eb61-7dd7-42b4-9cb2-ea8a0f8b2c2a 1 Other Other +95a70caf-029f-4b45-9899-55abdc017d4f 1 Other Other +95a71829-7e42-485e-93ce-595d4f69e0c2 1 Other Other +95a71d7b-d42e-428a-873b-29c1fbfdfc32 1 Other Other +95a77df5-b852-47c7-8820-01c2d9e05dac 1 Other Other +95a7970f-dc75-4000-8212-5bec22e1efbb 1 Other Other +95a7a146-e760-4781-bdad-54593eaef2ac 1 Other Other +95a7e7f4-d6a7-4f71-b510-feab3995dd4b 1 Other Other +95a7ead6-ed78-4ffd-bb56-8d5a691510f5 1 Other Other +95a7f415-b7a0-4271-89c5-3bf5b25cc152 1 Other Other +95a7f7ff-ec73-4f94-bf59-94412e917f00 1 Other Other +95a83c09-55c7-492e-acab-141e78c10674 1 Other Other +95a85705-e549-4649-a761-0f9b04442607 1 Other Other +95a87c47-9043-4311-bdb5-d28ca5803950 1 Other Other +95a8eaf0-f860-4157-96a6-cb823bf7f642 1 Other Other +95a8f3e0-f543-44b4-a087-d16264cc84db 1 Other Other +95a8f543-827e-49b0-a597-9867dbf25b26 1 Other Other +95a904f6-a209-4e0f-8a59-e0ad4239dd78 1 Other Other +95a92d36-2309-42c6-93c2-cd6f9bac47ab 1 Other Other +95a97606-1ff0-4c9f-ae98-ca5be1c44c4d 1 Other Other +95a9a7ad-9e58-45af-86c2-0fb9a2137ac6 1 \N Other +95a9d002-b697-4180-aea4-d4d97887f2b5 1 Other Other +95a9d952-edb0-4b5d-a967-db3ad3d7166e 1 Other Other +95aa8d7d-77c4-49ed-a632-f6ef9896a28b 1 \N Other +95aaaad2-6a1e-4a10-ab86-84a5d948e893 1 Other Other +95ab2651-b0cd-493a-bc7f-0f3d3b9b4560 1 Other Other +95ab50c0-7f96-4a7b-9196-0d448dd5bb3d 1 Other Other +95ab59ad-aca5-456b-91d5-0621ce497012 1 Other Other +95aba913-953b-4b97-81d7-938979a61463 1 Other Other +95abe1d6-ca9f-4497-948c-35f91fa6618c 1 Other Other +95ac1c72-3fe7-4f37-9b59-5b29e430d714 1 Other Other +95ac3303-7e2d-45b5-94d7-79b86fafeb6a 1 Other Other +95ac3fc8-7b71-41de-867a-8002974e5c8c 1 Other Other +95ac51a6-ad86-4561-b25f-13a55d5f73cb 1 Other Other +95ac9a41-a656-4d52-a5e3-0f27172cf45c 1 Other Other +95ad0515-acf7-4d86-bb6d-0e21329bddc6 1 Other Other +95ad33cf-1ade-4ccf-8c8d-f6a9895a7f7f 1 James Other +95ad47ef-c130-4b21-a14e-8a81fcbaa1bb 1 Other Other +95ad6105-17a7-4aab-b468-264366777274 1 Other Other +95ad6625-ef40-4189-be5e-44ea5e43f2a7 1 Other Other +95ad6e58-8fce-4bb4-beee-1d2715fb83e6 1 Other Other +95ad7955-7f9c-4163-9f94-3b844275b7aa 1 Other Other +95adaf61-a2e2-48fe-a69c-04524355ee37 1 Other Other +95adcab5-d047-434c-940a-cfde426cb59f 1 \N Other +95adcbe5-b099-40f9-8ea2-c2b7369b8e84 1 Other Other +95add519-df74-431c-9c9e-61f258a152c5 1 Other Other +95ae4bb6-4d9f-4692-9963-8ffa635a3859 1 Other Other +95ae5fbd-c50f-49ca-a90d-3ec49739a9b7 1 Other Other +95ae8398-4edf-474f-9767-92048c678e9b 1 \N Other +95aeb22d-6a6a-4c95-bed9-c2a63e4a383e 1 \N Other +95aecb41-16d4-447b-bfa4-d224f4eb89cf 1 Other Other +95aee124-e942-4167-8f8a-063edbc6096e 1 Other Other +95af0f2f-1a00-4d39-af65-8d1a766e3b3b 1 Other Other +95af234a-576d-4de5-b2b7-a2b83e15add1 1 Other Other +95af29cf-5bdd-4822-9828-56f6421bef68 1 Other Other +95af8836-8cf1-4525-a143-717b57c8a100 1 Other Other +95af9f48-6ce7-4942-b95d-27ba091317dc 1 Other Other +95afbcbe-75f6-42ff-addf-39cd31669c9f 1 \N Other +95afbf51-c38c-45b7-b49f-00c9a9ae9730 1 Other Other +95afc3d8-dd6f-4cb1-ae98-0eba97b81caf 1 Other Other +95b002ab-02e3-4b8c-b9f0-6150df10604f 1 Other Other +95b01e79-83d1-47c9-b10f-b31506eef150 1 \N Other +95b02699-ed7b-4f4b-ba73-799f9c4a88b5 1 Other Other +95b04f47-de99-413f-b030-0c985cb92156 1 Other Other +95b05777-f2a5-462c-acfa-95e47c07bfd8 1 Other Other +95b09dee-b9b9-46c8-8d9e-4c8069c47713 1 Other Other +95b0e5ed-322d-473e-a74f-eb7c5f3a5dac 1 Other Other +95b1014e-fdff-4556-8f1d-e25897cf4e2c 1 Other Other +95b116a7-a7e6-4ec0-a6dd-9e722f50101f 1 Other Other +95b118c0-2e83-4b22-953f-020c4c90344b 1 Other Other +95b16095-5ef6-447b-b401-b0afb91c3aeb 1 Other Other +95b1ba06-4adb-42a3-b2d3-2b479976cb0e 1 Other Other +95b1defe-27e8-4b47-8e06-b20ceb2c0291 1 Other Other +95b25804-ee96-47b7-8ff7-57909e5b1a1f 1 Other Other +95b28edc-026b-49d1-a7f5-ce8222f62b87 1 Other Other +95b33f0c-d5de-440a-81b4-1e38c5ae9936 1 Other Other +95b379ee-3749-4baa-95d0-0223c651d371 1 Other Other +95b381ed-05b4-4c65-b1f4-82378fc820c6 1 Other Other +95b3ef97-44ea-4f5d-824b-e9797dfef109 1 Other Other +95b43053-a439-4122-8e4d-f29cfa49a6af 1 Other Other +95b44dc0-feff-4242-bfa0-3ae245055981 1 Other Other +95b45dbc-be96-47da-881c-4a1414997015 1 Other Other +95b518da-438a-49c7-acfa-d90987666636 1 Other Other +95b5328f-6b20-4e7f-9104-ba7fa74961a2 1 Other Other +95b54bfc-dc8b-4892-9b65-f200083c91d7 1 Other Other +95b55818-5908-40ca-922c-92e0155cb392 1 Other Other +95b5a5ce-1a57-483e-8d7e-f1c8e4032042 1 Other Other +95b5c50e-7133-4f86-ac3b-0b74777dbdc2 1 Other Other +95b5f1ab-557d-4ec8-89f9-2a925bbe5d88 1 Other Other +95b6021a-357d-4ce9-876a-668579e4ee65 1 Other Other +95b60424-c6f7-4fa4-8f37-a87fb29b757e 1 Other Other +95b6356f-920a-4fcb-b8fa-e2a1997747c6 1 Other Other +95b641c9-3258-4a00-aef3-b40755eee8d6 1 Other Other +95b64b4b-16dc-4d51-be7a-7867fb0f6fe2 1 Other Other +95b64cd4-2053-4eec-8b85-0aa3613f0fa8 1 Other Other +95b6636b-5429-43e5-b25a-b33d02cdced6 1 Other Other +95b6f2a8-a69f-4d1d-8499-92a8ef83d7c1 1 Other Other +95b74941-b93a-444e-ab94-12ba031c505e 1 Other Other +95b751be-b27e-4382-a62d-ce3c7d357bbf 1 Other Other +95b7a78f-bbea-443a-8833-cc09413a1650 1 Other Other +95b7c01a-a6ef-4439-b687-8a308e961808 1 Other Other +95b82f65-2e90-4e0d-a60b-bc7fa5ff64a1 1 Other Other +95b82fe4-e2c6-42cd-88a9-827cbb533424 1 Other Other +95b832bb-cd65-4165-9425-11c08e4b5763 1 Other Other +95b83978-f441-44f1-93bb-8d486575937e 1 Other Other +95b867b3-3519-4af7-b641-7654a00377db 1 James Other +95b893b8-88b5-47e7-8933-440fe71082b6 1 Other Other +95b8a246-dc89-403e-a47e-0e2fcecd0df8 1 \N Other +95b8a2be-5642-4732-b3e8-42585ce8a6ab 1 Other Other +95b8c11b-85b3-4a6b-a673-b846e7ce63ee 1 \N Other +95b8f645-8062-4a0b-ba86-568961ea94a5 1 Other Other +95b922c7-0755-4f2e-885c-264580b4d04f 1 Other Other +95b940a7-da0e-46fc-838e-87ab0ff12438 1 Other Other +95b94a63-8780-4dfe-acee-99f7255eac9b 1 Other Other +95b94faf-5789-4a31-976d-eadfe092706c 1 Other Other +95b96a47-611e-4857-ab48-e02231e8131b 1 Other Other +95b9d385-9c81-4078-ae3d-50c75ea9e332 1 Other Other +95b9dd13-d40a-4e2d-9bd2-48a76c03cb51 1 Other Other +95ba1226-cfe6-4a9e-88cc-d2c9f00cac15 1 Other Other +95ba2bdc-a5e6-4fdf-a3d3-5162d81f9ba1 1 Other Other +95ba3c62-8e89-4646-ba60-d021b9a978e6 1 Other Other +95ba83f0-65c8-4743-b183-fd26212dabd7 1 Other Other +95bad959-d226-43b8-bc59-cad53a406963 1 Other Other +95baf2f0-f078-4cef-af0a-66c6e93b5697 1 Other Other +95bb13e8-7244-4f08-a1d0-9eed95efde9a 1 Other Other +95bb7e76-4432-42dd-a0e4-5f9fa830d862 1 Other Other +95bbbe84-0aed-492b-820e-2df57ae3b1c0 1 Other Other +95bc7590-44e3-4e9a-b0c4-ec2ed0fe0244 1 Other Other +95bc9dc3-a7b9-40e7-aeb7-fd32f4d58f1c 1 Other Other +95bdb7b6-4f3e-49bc-94a3-3ffe15d18157 1 Other Other +95bde997-a8ec-46d4-8ea3-c3e95d925efe 1 Other Other +95bdf555-18f8-46d6-a0a1-543cab98f79f 1 Other Other +95be1692-fe99-4a6b-89bf-a190ac9f9676 1 Other Other +95be6ba1-bca0-4984-b2da-ac0ae1a5655a 1 Other Other +95be86e2-28fb-49a5-afd2-08063e5c7599 1 Other Other +95beae3a-1481-4740-b6ee-fa5850f80ab1 1 Other Other +95bebfe3-217c-4f3f-a15f-8225cb24af5f 1 Other Other +95bec723-04f9-4aa5-ba60-2ba875d254cf 1 Other Other +95bef82d-88e2-4851-ab11-13d1a19dd046 1 Other Other +95bef84d-f9c5-4907-a13d-3ecea7b674b2 1 Other Other +95bf0c39-4874-49e8-b4e7-87cd3e48a056 1 Other Other +95bf0dd3-0fa0-4669-87a1-14b6674ce37a 1 Other Other +95bf48f8-74db-4b23-8ce1-5ad073866a6b 1 Other Other +95bf738c-19a6-4272-9629-83c0aec80fec 1 \N Other +95bf8dbd-e724-4a1f-bcc1-93237e9c7a4c 1 Other Other +95bfaea0-1962-4c40-88a9-3319b3115c28 1 Other Other +95bfb22a-7637-4e09-9eea-b2a3a5c76a78 1 Other Other +95bfc881-22e9-4f1f-9051-d8c68cfc0b30 1 Other Other +95bfce6e-d9d4-496e-a6a8-03d5b69fbcff 1 Other Other +95bfce7c-9ba2-47b4-8201-85a94917b537 1 Other Other +95c05d97-ecd3-49d9-9974-1a9b8e4e02c7 1 Other Other +95c07dee-4cbf-42a0-b241-3f86355c0762 1 Other Other +95c0ebfa-2378-4dfe-9ffe-25f857b81d0b 1 Other Other +95c12940-3d56-4086-bf8a-d7032cbd9e9e 1 Other Other +95c14628-4a67-4177-b800-b789d114f148 1 Other Other +95c15d78-d0f3-4dad-b2d2-d04f0a807e3d 1 Other Other +95c16538-7819-42be-96ab-66b5563c265f 1 Other Other +95c16749-d2a2-463b-9187-b6408356e02d 1 Other Other +95c1c988-e7fc-45bc-87be-62fcc683f495 1 Other Other +95c205dc-267d-40b8-b95b-c9456c394d3b 1 Other Other +95c225b5-0cb3-4474-b493-765378dd8125 1 Other Other +95c26fca-4808-46a7-b7ed-ab06fcd776a2 1 Other Other +95c29f46-50f4-418c-a7b4-a41f6a7080c6 1 Other Other +95c2a5ca-67d3-4b0b-a2b7-7c7bbd9f506e 1 Other Other +95c2b199-b197-42d5-9961-e868449ac9a0 1 Other Other +95c30e39-af1c-4470-bef7-c01cd58224a6 1 James Other +95c32db6-e8d9-422a-a3c6-0214141f9ee9 1 Other Other +95c33bd4-d31d-49c0-a4c9-e7c4936ae659 1 Other Other +95c38c68-8245-4f87-80f2-4518dfeef74d 1 Other Other +95c3e198-e3ef-4fd2-990b-556f3aa9c9ed 1 Other Other +95c3ed89-bbe9-41a1-95bf-48d812f1ea1b 1 Other Other +95c413ca-f5de-48db-b4a8-f29f098d88dc 1 Other Other +95c47848-91fe-4847-a75e-3035d0f6f91a 1 Other Other +95c47ee2-4f0b-4cba-a31f-28e293d5dd73 1 Other Other +95c47f96-ebc2-4c52-baa8-a5b1a86f3d12 1 \N Other +95c4f2cf-aacc-4b0f-b8b3-b1a7858a2f7f 1 Other Other +95c52830-7427-4a4e-8862-1a3935bcad78 1 Other Other +95c5a617-ca20-486e-b9ee-aa342e21b6ce 1 Other Other +95c5ca8c-a9c5-4d6b-bd9f-144f0068387b 1 Other Other +95c5cf81-bd2c-4dad-bda8-012011977da9 1 Other Other +95c62fe8-23aa-4a9f-bdec-f04e13eabcf4 1 Other Other +95c6404a-b610-4546-aee4-924ce92b767a 1 Other Other +95c6ae0d-b006-4f7e-bb4e-f8205b9faff0 1 Other Other +95c6fd93-d444-4b19-baab-796917492ed2 1 Other Other +95c70e51-e1db-4b0d-b418-5270917be4ef 1 Other Other +95c78e61-5af6-4a77-bccb-c367c2cb5ba0 1 Other Other +95c79a77-372c-4f4e-9271-1884edebf764 1 Other Other +95c8294b-58a1-4460-bb7d-181e9f120b0c 1 Other Other +95c84110-3fbf-4b73-91f6-1a3a5561269a 1 Other Other +95c864c3-36ec-4e4b-b45f-506135035bb4 1 Other Other +95c8bd57-1aba-4e58-b08d-0acbaea8debe 1 James Other +95c8d05f-086b-494b-89f9-de8668eefb0a 1 Other Other +95c8dd24-9d79-45cc-bcdb-c9c064190424 1 Other Other +95c8f5ce-8803-416f-9e94-4aae65e1b479 1 Other Other +95c8fa88-217a-4ce3-ad96-3a6ea2523d1e 1 Other Other +95c91c5a-8e8e-46bf-ad8b-de74e411fadd 1 Other Other +95c960c6-deb1-4fc2-9ce5-d3c9df027930 1 Other Other +95c96608-93c7-4874-94c2-c55268592701 1 Other Other +95c968b1-5b35-4a48-ba28-581f418fa474 1 Other Other +95ca14f3-21c0-4b70-8ae3-7376e67bb516 1 Other Other +95ca22b5-decc-4594-a602-98947d9a3f70 1 Other Other +95ca3610-26d6-4fae-92ce-fcae27aebcc7 1 Other Other +95ca369c-bdd3-4dad-b1d5-ce0b47c65af9 1 Other Other +95ca70a7-8bf1-41b7-b2e4-cc8fa1fa87b7 1 Other Other +95ca7632-8f06-43ca-8607-0a97165c39a4 1 Other Other +95caa910-b730-4c45-b764-e4c9f6b9f6c5 1 Other Other +95cade47-90c9-41c6-91ca-81a17901a931 1 Other Other +95cb08df-abf8-4807-a5ef-6d7dacc67858 1 Other Other +95cb4423-0386-4a29-aa57-bf900e7e0748 1 Other Other +95cb8550-88c5-4641-b212-83d63c90cd88 1 Other Other +95cbc3d3-e116-453d-8396-e21d3f4d81ce 1 \N Other +95cbcadd-6402-4ae7-be50-cadfc079ad3f 1 Other Other +95cbe25d-3fd2-4596-a665-61353978e8b2 1 Other Other +95cbfea4-5587-4821-8975-81f4bea3cb8e 1 Other Other +95cc0f8d-d32d-4694-bfcd-fb08db186072 1 \N Other +95cc5465-51fe-4f73-b3ec-3172cddf648f 1 Other Other +95cc6dae-c8b3-40ae-8b6a-c485eea825ce 1 Other Other +95cc7ce5-1d7e-4abe-a108-2c965ed62597 1 Other Other +95cca499-39c9-40be-a651-bf65fd148cab 1 Other Other +95ccb20c-f4bb-4d9a-ac24-65cf9783c11c 1 Other Other +95ccb94a-a691-4a36-8d36-73b526b39a9f 1 \N Other +95ccd55d-1c47-48ca-a08d-4f48c99db189 1 Other Other +95ccd597-7856-425d-8f82-cfdf573e7f0a 1 Other Other +95ccdc87-5d00-46ad-bdb6-713e9a216119 1 Other Other +95ccde99-0af7-44dd-b9e9-b66aedb35d27 1 Other Other +95cd2e65-9605-4392-bc87-6f30d44b9ebb 1 Other Other +95cdf48b-aa5c-4ac2-9a5b-4e0e863d20b6 1 Other Other +95ce08ec-102a-4968-aefa-12d101e0d56c 1 Other Other +95ce262f-9fbc-4f58-a1cc-550beddf4751 1 Other Other +95ce381a-98b4-4ee5-92c1-a242e3a7c0aa 1 Other Other +95ce4324-a3f1-4ab2-b997-c8daa324ac89 1 Other Other +95ce7a92-5350-4bf1-bbdc-19f23e7426bf 1 Other Other +95ce8a10-bb80-4eda-aa27-0e6b11930b0c 1 Other Other +95ce98a8-899d-4b90-8b2b-c139e656dffe 1 Other Other +95ce9e52-b4a1-4180-9175-6a132b71b497 1 Other Other +95cea44c-26c4-41a6-a396-061dc294afa3 1 Other Other +95ceb939-395f-45e3-9eed-cdfb360f65a3 1 Other Other +95ceff8a-f9e5-4176-ade6-7d69c6aaa7a0 1 Other Other +95cf61fe-0ec9-4503-9392-7b49b779c456 1 Other Other +95cfef34-c269-4764-8262-3c90ce23e8f8 1 Other Other +95cff7c4-99c4-4f5c-b78d-1c9defa3b7bc 1 Other Other +95d014bd-2ddf-486a-b423-2352a787d236 1 Other Other +95d067dc-8b51-42c7-96ff-9bd6d891d719 1 Other Other +95d06ea1-974b-4b6b-b30c-375b5236abc7 1 Other Other +95d07428-d2d8-4c63-b889-f31b4b9b5155 1 Other Other +95d08048-0af7-4a1e-b6d1-1d408d7a3937 1 Other Other +95d08339-9b12-4c7b-b610-70ead4050db2 1 Other Other +95d08af0-5368-467d-85d3-e4d65633233f 1 Other Other +95d0a75c-abd9-427f-8912-998f4d16c8fd 1 Other Other +95d0c10c-7f0f-419c-a063-5274028c508e 1 Other Other +95d0c6a2-aecb-4dd7-b8af-30da62844ffa 1 Other Other +95d10e54-9590-4241-99de-9680aba8b403 1 Other Other +95d14781-dee6-408e-ab4b-396ee2522c80 1 Other Other +95d1872e-b3cf-4ba3-a02b-5f7db76160dc 1 Other Other +95d1b58c-563c-4f40-8355-2c6703eeff6c 1 Other Other +95d1c314-9f47-4749-b6e7-c5c89c7fa083 1 Other Other +95d1fb0e-1d43-44c4-a2c7-126ff4890f89 1 Other Other +95d217d4-15f6-478c-b965-32954cb7e27a 1 Other Other +95d228df-6c70-4dc9-983c-8fcab9eded47 1 Other Other +95d2c72a-46cd-4606-98f6-698ac3195795 1 Other Other +95d2c77e-7753-4f3b-8700-c048b9f0c43a 1 Other Other +95d37dbb-02b0-4002-a30e-5c0a14559a0f 1 Other Other +95d46ad9-f041-4e5a-ad8a-422ce0fee295 1 Other Other +95d46e7a-9783-4fa2-a5cc-c372855bf2ad 1 Other Other +95d4ae80-fdbe-41d0-ab80-a54dddf91a2e 1 Other Other +95d4b356-578b-4fe5-8703-5fc34872bfa6 1 Other Other +95d4d70d-6105-4ced-b6dc-0b7c1284e08f 1 Other Other +95d4ee5a-a143-4c14-bfc0-579be908ed82 1 Other Other +95d4eff0-741c-4bc0-af03-4c6cdfb29380 1 Other Other +95d4fffc-21ac-4197-b44e-4019051408ce 1 Other Other +95d53240-8739-4239-a2c7-8304a03c3742 1 James Other +95d53453-7bc1-429c-85e9-3392fe9b0125 1 Other Other +95d57d4f-2f65-461b-a5bb-a947e3ae7d0c 1 Other Other +95d5b5ae-dd97-4e7b-a3ae-9d169085e07c 1 Other Other +95d5cd87-b1f0-4dda-a73a-382e625347b7 1 Other Other +95d625d5-b09d-47c7-9f7a-f0220ff8fdc0 1 \N Other +95d64e8f-5f81-4f62-bb50-16c1ef0f7fce 1 Other Other +95d654de-b91b-4fd1-a491-aa48ac1ba30f 1 Other Other +95d65920-2e75-45ec-a5b7-133fd854b755 1 Other Other +95d672e5-7c5c-487f-9d53-db767fd20ae9 1 Other Other +95d6a5a4-3fc1-46bd-be09-80157fe376df 1 Other Other +95d70bec-0eb3-4588-a087-3be0d3bf826a 1 Other Other +95d70cac-6102-4a9f-b2c1-c19e24c15d20 1 Other Other +95d7f258-0bfb-476b-846c-a05370abee32 1 Other Other +95d80b26-4ee7-4025-8b78-a04abd88d1ee 1 Other Other +95d820bc-350e-4c19-97dd-72346961e6a3 1 Other Other +95d854d4-b326-4455-9098-5249efdaddd7 1 Other Other +95d8a569-c011-4a90-821e-6f982eebaa75 1 Other Other +95d8a83d-5a10-4c3a-b4ad-c442b2c129dc 1 Other Other +95d92a54-fc47-4d83-9215-35ad2acda9fd 1 Other Other +95d92f40-800b-49db-8b58-2f1f55e40232 1 Other Other +95d949a1-297a-49cd-ba5e-edb1500bf55a 1 Other Other +95d95455-2124-4e8d-ab25-fa6cc763eae1 1 Other Other +95d996f1-306b-4d06-8dd5-63a1a8fa0929 1 Other Other +95da0357-eab6-4956-a3cc-3a500f3b12a9 1 \N Other +95da310d-e86b-40a1-9095-4a23d5306e35 1 Other Other +95da56b9-bf70-4e99-83cd-df71b951833c 1 Other Other +95daca2c-91f6-45e0-88de-68af0999afb1 1 \N Other +95dae9ce-6e9c-47c1-8aba-229e2bc5532c 1 Other Other +95db0b10-32c1-4e7d-89c9-ae254c7f524d 1 Other Other +95db1b50-2492-40ba-af35-05305c192378 1 Other Other +95db470a-7dde-4a2b-83fe-86e267e9806d 1 Other Other +95db7201-51c3-4a7a-a340-3990b53d0b95 1 Other Other +95db9c1f-9186-4f10-b217-ae8c4b8d3ff8 1 Other Other +95db9ce9-27d1-4655-873e-37af7d031239 1 Other Other +95dc3d41-8f0f-4225-844f-bea4e596dc73 1 Other Other +95dc4141-d632-4aea-9bf4-c83e550b1613 1 \N Other +95dc43e1-6911-4ce1-bc5b-8097424f0ee7 1 Other Other +95dc68e9-1e13-4b05-8391-615b152a0b00 1 Other Other +95dd1be1-f8b2-4058-8b72-45d98dd564e6 1 Other Other +95dd9b4b-e9c6-499c-8e50-78a48d7cfb78 1 Other Other +95ddb1b2-0647-11e8-80cb-fa163e8624cc 1 \N Other +95dddcf7-e3c3-44ef-a3a0-8a0529f31f9e 1 Other Other +95de04b3-7788-425d-bb65-c96f427499ea 1 Other Other +95de2e9e-d1b0-419f-9166-5dde37f8c878 1 Other Other +95de41f5-620d-40a7-b570-d9ba960925bb 1 Other Other +95de750b-c2a4-4183-aaff-a50f6439d207 1 Other Other +95de939b-bfc5-489e-b1fc-3d34e7cd8716 1 Other Other +95dedd8d-78c6-4d1d-a86f-6bf1203038ef 1 Other Other +95df0b3d-a584-49b7-9e81-74590b54ffa4 1 Other Other +95df3527-70d6-43ca-a54b-28fb8e72b987 1 Other Other +95dfc9a0-93b3-4e7c-8502-e61b3316c0a8 1 Other Other +95dfe888-8336-4db8-80c5-64a58591995d 1 Other Other +95e012af-7476-4638-98d7-1c98343648f7 1 Other Other +95e061eb-a19d-4f0c-b658-2a971e13d057 1 Other Other +95e06b11-9a0a-4e39-82cd-95c359c9bec2 1 Other Other +95e08aa1-89ed-4636-92c9-fce9ac7a698a 1 Other Other +95e0aad9-8b02-4d5c-a0f4-86ac30c0e604 1 Other Other +95e0ac0d-a986-4d21-9155-15defa969e56 1 Other Other +95e0b869-63c6-46bc-96d2-bf54ce3b97b4 1 Other Other +95e0c877-653c-47c9-9b00-fe32758c6b43 1 Other Other +95e0f0a3-4a35-4407-a3ba-93e5de7f65e0 1 Other Other +95e179dd-25a3-424e-9f9b-87c405d28aaf 1 Other Other +95e18af8-fa2b-4413-999f-359402a4dcdf 1 Other Other +95e1ba4c-bd65-4192-a0f6-7ee063dcf751 1 Other Other +95e1d4ec-5d75-41b8-b1a4-abdd4f5fa03b 1 Other Other +95e1e022-ed5c-4e37-947c-0e7b5d09b9ed 1 Other Other +95e20036-d265-4e57-810f-1effae034791 1 Other Other +95e2027d-97bf-4578-90fd-4cdcc31a9ce6 1 Other Other +95e207b5-25ce-4c18-942a-6cac57390246 1 Other Other +95e2164d-ddc5-40d5-9b3d-21c3996ee033 1 Other Other +95e2265a-4f58-4e52-b624-a0ebffa1f4cd 1 Other Other +95e284e5-708d-4e36-8745-ce0cac39183b 1 Other Other +95e2d6b8-1541-41a5-b887-bc00f2971703 1 Other Other +95e36791-85e5-422a-a498-21d0e4ae7352 1 Other Other +95e36a98-5ae9-4bcf-b469-799b4e05f8b8 1 \N Other +95e37524-bb79-4a19-be84-c3b55d36380c 1 Other Other +95e3a9a6-2e3f-406e-b2da-20a4beb65ac0 1 Other Other +95e3b23e-9002-4206-a906-453eb8680714 1 Other Other +95e3c4a0-0193-4ee8-9902-9ec1a1ec888a 1 \N Other +95e414d3-8cec-4c16-99ec-b82073c1c4c5 1 Other Other +95e48309-218e-4c28-9442-fc4fe109199e 1 Other Other +95e4cc4d-f330-4584-8cc1-392fc33eef5a 1 Other Other +95e4f779-2058-46c6-b3ff-ec7ef5a61187 1 Other Other +95e5438f-95d0-4b02-8bdf-4f544354553d 1 Other Other +95e5b40c-b36d-4f9f-a4de-904fb154461b 1 Other Other +95e5e8e5-2045-4fab-aaf6-7e9a3511c7c4 1 Other Other +95e62145-e9cd-4fc1-8edc-ea9dfbff6784 1 \N Other +95e62eb4-1893-4229-aa09-0f1a61eed440 1 \N Other +95e660c9-9f49-4dc0-b3c8-120083274998 1 Other Other +95e66b29-5758-4751-b41b-1308142fd6f3 1 Other Other +95e6913b-ec70-4d6e-a6db-16f2db4b30f8 1 Other Other +95e6e013-2d90-4014-9197-fe1e933d4a81 1 Other Other +95e6fa84-414d-4729-abca-3652ad72ef98 1 Other Other +95e753be-36c1-49ba-a08d-bbcc91365f87 1 Other Other +95e767ae-fa0d-4983-935a-bf041aad4e20 1 Other Other +95e7b4d8-3989-419d-9653-24c65d6e074a 1 Other Other +95e81902-e0b2-4f67-8f38-53526a5c29d1 1 Other Other +95e82db8-e220-4880-8eab-59303f534217 1 Other Other +95e83c28-a76d-4d3c-bc50-da44a2943484 1 Other Other +95e83f9e-30a6-4a8e-b2cd-53941943e918 1 Other Other +95e84cd7-30cd-45d2-b106-cab71fe1c7ad 1 Other Other +95e856bf-657b-4218-972b-2fe9a827c0fb 1 Other Other +95e895c5-8260-4e7b-a4bf-ccfee5e45dce 1 Other Other +95e8e29b-1dbc-4439-9eaf-74fd3b85f592 1 Other Other +95e917b6-0a11-4982-9b1a-fd5c28889033 1 \N Other +95e94149-767c-42bb-8361-8f98c2a805fb 1 Other Other +95e992c1-9549-43ec-b2c1-6fb2d288a73c 1 Other Other +95e9b5e4-d645-49df-bda8-052b4724c766 1 Other Other +95e9c103-e7c8-4fae-8096-c56ba76dc497 1 Other Other +95ea55f1-7ce3-46c6-b191-4ce3dc9a6b77 1 Other Other +95ea6c90-1391-4a56-83b5-08b8c1379cb2 1 Other Other +95ea87f4-095b-11e8-9ed7-fa163e8624cc 1 \N Other +95eac568-bd1a-4ec6-b88b-028024f2a9c7 1 Other Other +95ead54a-f7ba-4e18-b741-59c0b8798828 1 Other Other +95ead61f-17e4-443e-8c45-4c179e08e79c 1 Other Other +95eaec93-2d13-4be2-8ff3-ecb0d90c49c9 1 \N Other +95eb12b7-2710-4ab3-9d19-1d4b412561e8 1 Other Other +95eb1aed-0002-47dc-9ff6-e1f115456804 1 Other Other +95eb38ca-f20a-4238-a13b-d7374d513a87 1 Other Other +95eb48db-3721-4d2d-b746-34b9b5fac1d0 1 Other Other +95eb6403-8307-47ab-963c-9cb555f95897 1 Other Other +95eb6ecd-653b-4f79-a5d4-d98f2f8550cb 1 Other Other +95eb9000-c1ec-405d-87e6-a88bbc2796cc 1 Other Other +95ebc5f4-9fcb-4f5d-b176-6e3fc1bfdac4 1 Other Other +95ec058e-89a3-4d85-8664-d94a34a2dfce 1 Other Other +95ec0fed-5255-4e6f-973a-fe749f443639 1 Other Other +95ec1035-960e-4ba1-94bc-28b9c328f49b 1 Other Other +95ec3719-1922-49c2-82fc-fc0eca027c7f 1 Other Other +95ec4997-28e9-4600-a512-221be93f430f 1 Other Other +95ecc8c5-e02a-4804-b628-75740c8ad035 1 Other Other +95ecd4ae-a8bf-4a14-9042-f1b1f914a260 1 Other Other +95ed5ec6-356f-472e-b3c4-1318d954b867 1 James Other +95edb71c-1566-42d6-bb88-05749da8d1d7 1 Other Other +95ee752e-8289-4837-8a60-68e7ad9cce33 1 Other Other +95ef16ce-2cfd-4de9-8342-19ae4005276e 1 Other Other +95ef6351-c8ed-48e8-971e-63fe8d0e6dc1 1 Other Other +95f06855-96c7-4e60-a741-f9d09d407133 1 Other Other +95f06be6-5801-4541-9cc7-29a1898f738f 1 Other Other +95f088e5-8365-44d2-998f-40497aba4a06 1 Other Other +95f092f5-3353-49cb-bb7a-67bfa4139bf2 1 Other Other +95f0bbb4-a017-47f1-8551-c81378e5eee2 1 Other Other +95f0ce5a-d842-48d4-9c3c-cbe7f4732be0 1 \N Other +95f177f1-b7bd-4223-89ea-4aa0d8564a8b 1 Other Other +95f1814f-0a7b-4a8a-bedf-dc4139c4b0c2 1 Other Other +95f18f20-a140-47c7-914f-b6e0aa4d8ec3 1 Other Other +95f1ab4b-d29c-4627-9069-edc4d53ad69a 1 Other Other +95f1c226-2997-48c4-b029-fb2caff195a5 1 Other Other +95f21b1b-ba47-47d8-a314-235cd164c722 1 Other Other +95f21eb9-b388-49dd-a08a-d853e8252815 1 Other Other +95f255c8-77cf-420f-8ee0-aac173754443 1 Other Other +95f28c1f-29dc-4290-a4ff-93b1e5921478 1 Other Other +95f2ce65-c92a-4ea5-929e-bfda25f94a8a 1 Other Other +95f2da53-b935-4d1d-b7ba-bd6e39c32a7a 1 Other Other +95f2dba7-5f23-44a5-a5e7-1ad598ee7c85 1 Other Other +95f2f301-0ca0-40d1-a29d-e58aac718778 1 Other Other +95f31115-13fd-4e33-a1f8-8b33ba681977 1 James Other +95f32d99-ab69-4564-b290-32bce2296bb8 1 Other Other +95f38ae9-5b87-450e-999d-ad347187721d 1 Other Other +95f38f52-095b-11e8-bf34-fa163e8624cc 1 \N Other +95f40e92-3100-4cb3-b03a-ec5766d91493 1 Other Other +95f42ab5-99e3-43dd-b4f5-d53e8b04e15d 1 Other Other +95f43bed-ea1b-4f49-8ed7-738f6f6ef8a9 1 Other Other +95f484db-27d3-45c1-ba7e-42ea6beb57a7 1 Other Other +95f48c11-e585-4db1-a56c-98d185dfdb3f 1 \N Other +95f490c3-ce8b-4e67-b564-11c0a5da0878 1 Other Other +95f51726-5311-44bb-8f9a-fda2ea8b7b1a 1 Other Other +95f53302-8ab0-4eab-aa34-b41866d2ba69 1 Other Other +95f5399c-9b40-4a76-8840-f7fa4a69c7c9 1 Other Other +95f57a85-aadc-435a-96b8-68ef79e901ab 1 Other Other +95f58603-3c04-43df-9f56-12e0ea57afb3 1 Other Other +95f5e06b-1656-461b-8ab0-6b1ec9166844 1 Other Other +95f65063-2e32-4d94-9314-9bf2bd970ba9 1 Other Other +95f65727-9e50-4798-8eb9-ed50a158fdcf 1 Other Other +95f67360-d508-42ab-b8b6-60ad5885eafe 1 Other Other +95f6d494-acbd-4383-99d1-ace3de17e114 1 Other Other +95f6ee7b-f173-40e9-b30d-95c9fc8a5d06 1 Other Other +95f6ee83-c3bd-45c3-ba46-793d78b8cc1e 1 Other Other +95f6fc90-4ee6-4651-bf1d-54f8068f0763 1 Other Other +95f73de2-f695-418e-9c03-91230ec0a825 1 \N Other +95f7b014-21ba-4c5c-b464-118b15d9e701 1 Other Other +95f7be94-2c27-4439-a1a6-e82c74a00d36 1 \N Other +95f7c541-a034-4d44-8185-809f1761f1cc 1 Other Other +95f7db51-8179-4378-bdf6-d2d096236b8f 1 Other Other +95f7f9e6-704e-4daf-aed7-ec5448f73fe5 1 Other Other +95f81b3b-50f2-43e1-905b-5e4415988354 1 Other Other +95f8b391-0a7a-43b0-8f3f-41ca754eadfe 1 Other Other +95f8bd0b-2eeb-401c-9f6f-a01a2b986292 1 Other Other +95f8dead-9b8e-4a77-87a3-28413e86cd26 1 Other Other +95f8eaa9-6434-4e90-b653-3fdeff42e94a 1 Other Other +95f8ebcd-d2a5-490b-ba4e-ed175447b816 1 Other Other +95f8f164-b1f5-4ecc-bc76-9ad9db1f10d4 1 James Other +95f909d6-39a2-421e-b3d1-48e25357f001 1 Other Other +95f91d50-a1af-45c1-a0d9-96e2d514055a 1 Other Other +95f948fc-3e48-4313-9fc4-dc897399e54b 1 Other Other +95f9d6b8-0a85-43a5-868b-2e7550a1c01b 1 Other Other +95f9e284-985b-4e96-9eca-25bedbacb6e2 1 \N Other +95fa8155-2c50-4975-8e97-e6a275893376 1 \N Other +95facd2e-ac37-46db-84a3-01c98bbf7edb 1 Other Other +95faf3cf-10c8-41b5-b5f5-2b33fb54409d 1 Other Other +95fafa2d-ccdc-4e2a-8872-7035546d2279 1 Other Other +95fb5200-92ad-4132-bcce-74937f94dcaf 1 Other Other +95fb5a4c-4baa-4f43-a7cb-3fad74f1697d 1 Other Other +95fb73bf-808f-44ae-a12b-4e813f796e56 1 Other Other +95fb8114-e249-45bb-bbb3-af5cd227b6c8 1 Other Other +95fb908e-0448-44cb-b539-2f29ab77704b 1 Other Other +95fba93c-623c-4b5e-92b3-202ab811bb61 1 Other Other +95fbb2c6-f613-4fef-843f-3d7dc1cfd077 1 Other Other +95fbc2ac-c7ee-418d-9848-81fe40691d6b 1 Other Other +95fbc782-5dc7-474c-873a-be05bf3b77d8 1 Other Other +95fbef97-9a52-4a78-8db9-469e3a70ea04 1 Other Other +95fc1cba-b4a0-4503-8ea7-b2a32eccdb1e 1 Other Other +95fc5091-0649-40d5-8448-50f25e2b7452 1 Other Other +95fccff8-3a59-49d9-b83e-d3168daa0cb6 1 Other Other +95fd42a0-0277-4f16-a798-92675ff8b054 1 Other Other +95fd441a-f6c6-4cb2-9c61-7346cf770fbb 1 Other Other +95fdd320-dccf-4a91-a497-62e1ec6a67b3 1 Other Other +95fddf13-6e65-4b86-a216-c51149669349 1 \N Other +95fe21bf-d863-4d77-9cd3-765b7ccd9cea 1 Other Other +95fe4bc9-d91a-4d1c-9eab-ac7f799e2d16 1 Other Other +95fe7126-16cc-4643-bb7a-875933dcb75d 1 Other Other +95fe7d17-707a-42b0-88ba-9465aa491859 1 Other Other +95fea443-c88f-49f3-80dd-1224336113cf 1 Other Other +95ff17dd-b28b-44eb-b8c5-3526e3b121ad 1 Other Other +95ff1eda-f3ed-4ca5-8059-d08e1dce4cfd 1 Other Other +95ff22d1-51a2-4fc4-9db4-c19338f30bb2 1 Other Other +95ff25ea-7375-4d8a-9d20-de1f2cbfefac 1 Other Other +95ff2922-26e1-43db-8a3a-eae678d14077 1 Other Other +95ff3057-efd0-41c4-8e8a-0ef1d6f933ca 1 Other Other +95ffbf7b-af9d-40a9-86db-dad5aeffc449 1 Other Other +95ffc13d-a0c1-44f7-9587-5abe3b9802a8 1 Other Other +95fffd14-1108-4972-b426-52121888c285 1 Other Other +960001ad-d355-4653-b21e-240d2247ae1e 1 Other Other +96000e43-ecf3-4fdb-9b5b-5a11ad82bdee 1 Other Other +96003f31-bb26-4835-b8b9-f9982e265d4d 1 Other Other +96005dac-0bc7-4cb7-9d58-1f9d99aaba78 1 Other Other +96006724-7c7a-4a00-a583-c31f5c6cb847 1 Other Other +96006b80-c3c4-4fd5-8412-f29434af14fb 1 Other Other +9600b1a2-3caf-476d-852c-89c30761f140 1 Other Other +9600d05e-f57a-4b64-bf35-acae9a3196bf 1 Other Other +9600dc82-764a-4ad3-9ba6-fddb2b10bfd2 1 Other Other +9600e421-7b93-4e41-9580-751b19d15bd8 1 Other Other +9601214a-541d-4c61-880e-4f7c76eb5c78 1 Other Other +96014b2b-a9ad-4e79-b59d-434a4b44d46b 1 Other Other +960160a9-2e88-4c41-8ede-afc036dea78b 1 Other Other +96016caf-e859-4441-afa3-c44a91b4662b 1 Other Other +9601a2bd-5988-4da4-9111-e606d3c2cf42 1 Other Other +9601a5ff-bc7c-415c-aac9-5ee497b5fee6 1 Other Other +9601b43d-b4c5-4cdd-a7ec-29eb9416d792 1 Other Other +9601f97d-3993-4912-bf36-5773e4c65907 1 Other Other +9602041c-65d4-4360-b7c2-be58c0923e39 1 Other Other +96022f57-4593-44c0-b430-fd293b31e3fe 1 Other Other +96023614-7bdd-4016-8602-827164b77e89 1 James Other +96033a8b-9367-492c-96e5-11bc50cf9352 1 Other Other +96034a15-e0e5-4fbd-b002-154301429431 1 Other Other +9603615f-2a76-4c14-8a02-d1a3d66c33b8 1 Other Other +9603d2c9-d25e-4c73-a16b-682813e51931 1 Other Other +9603dba1-04dc-4f0c-84db-6b44e86459aa 1 Other Other +9603e853-4dc5-4e8f-ba73-4b901abc0181 1 Other Other +96042607-85e6-4e16-a375-3dc40b87c614 1 Other Other +960453d7-6e77-4ce7-a704-8127b5982958 1 Other Other +960464e6-b8fa-4a54-bc2e-18e7894c7e06 1 Other Other +9604a570-41b4-4dc7-be8b-b49492917bfb 1 Other Other +9604d395-3c75-40e6-b04e-716aee6a685b 1 Other Other +9604e84e-13d9-4cb6-a824-658779c56642 1 Other Other +960571d9-8008-4331-b8a7-3085e16ba79f 1 James Other +96057e15-cca1-4114-b800-9982e4bc2f03 1 Other Other +9605d139-7f54-4e14-897b-636f810b6671 1 Other Other +9605f59b-5381-4006-a3fc-0c656be33bdb 1 Other Other +96064dbc-a595-419d-a7d6-da9d2493e8c3 1 Other Other +9606bd5a-c2aa-4282-ba07-d75e507c82d2 1 Other Other +9606c4db-f393-4619-aa1a-344eff2d8b47 1 Other Other +9606d46e-27fd-4c76-91cd-ccae69b8c8c5 1 Other Other +9606dfac-6d04-453d-b2d8-d354e75e301f 1 Other Other +9607150d-e727-4d30-9f1c-abad576d4d46 1 \N Other +96077f6c-af8f-4752-89a2-9aa40569606e 1 Other Other +96079366-4734-4f8d-b5ba-2cdca5238e46 1 \N Other +96086e9b-b1f0-4f70-8cb3-635abe9bf275 1 Other Other +960879e3-b925-4e45-b2fc-619a61bdbc54 1 Other Other +9608ae94-0647-11e8-b578-fa163e8624cc 1 \N Other +9608d85c-b15f-4739-b123-53f1eb4ef67f 1 Other Other +9608e35a-d975-44c0-96f6-fdc0e2edcd7d 1 Other Other +960949cb-37b4-4b24-9f32-3e5d42ab741d 1 Other Other +9609697f-81b4-4802-9ae4-4f4d2495dd13 1 Other Other +960a123c-b9a4-47fc-abb2-cc64c45d2236 1 Other Other +960ad71a-ec06-48b8-b283-19f11a7ea03c 1 Other Other +960af82c-9ef8-42c8-b7c0-7f76b8810f56 1 Other Other +960b033f-b048-4e07-a3ab-b97a776252dc 1 Other Other +960b6418-0ac2-4678-acb8-b402364aa6be 1 Other Other +960b797e-499a-4b90-8101-a3610c25bd3d 1 \N Other +960bb1dc-65f1-4ed2-b02c-d48dbbdc4519 1 Other Other +960bd2a1-46d6-4687-9f24-93a2352353a1 1 Other Other +960c6700-2055-4ce5-abee-2f0dafc7465b 1 Other Other +960cd2c9-7167-4f5c-bd07-c479f4acad75 1 Other Other +960cfcd8-0647-11e8-afed-fa163e8624cc 1 \N Other +960d0b7d-0622-4db3-b098-53ef597a944f 1 Other Other +960d1ce2-4d82-40de-b01e-983d88e6e217 1 Other Other +960d2d93-1b8d-470a-afc0-817e77d16900 1 Other Other +960d512e-0985-4129-bdb1-a6831d9bf1c7 1 Other Other +960d6236-dc0f-417f-938b-7e5296c8db63 1 Other Other +960d876e-9e5c-4cd6-94d8-f380747f6c83 1 Other Other +960dab44-6299-472b-9135-392192b9575f 1 Other Other +960e0616-27e9-456e-af64-df5a41d102e6 1 Other Other +960e9fc3-f780-49e7-882a-1e1f679df978 1 Other Other +960ea77a-2886-466c-8375-a4c73478c718 1 Other Other +960ecd4b-7cac-44a1-895d-3e1d4b4acb78 1 Other Other +960ee9b4-ced7-4311-b091-85b62bdc813b 1 Other Other +960f1b91-82ed-4ab4-afd6-8585afb7d3b9 1 Other Other +960f448e-82bf-486d-ab33-264cc8c9a815 1 Other Other +960fb86e-0f78-4524-ad25-4f63abf2b21c 1 Other Other +96102e25-449d-4afe-af6b-3bb48d52f945 1 \N Other +961039ea-b183-43dc-b45c-8cd927451a14 1 Other Other +9610b8e5-06a2-4220-88e2-767d897ed987 1 Other Other +9610ce47-4d17-4679-b79b-73a96509107c 1 Other Other +9610dc10-1efc-4f65-8803-f8938fc9dea6 1 Other Other +96111e28-f751-4bad-a914-66bfc6f75b7c 1 Other Other +96114060-dc9d-472a-8473-f6ef87e75549 1 Other Other +96120499-7a73-4443-8775-99448f4d8385 1 Other Other +96120a9a-2841-444c-ab3f-f177dffa1488 1 Other Other +96124369-0ea5-40c7-a32c-6657fbd7b7a5 1 Other Other +96127c11-e0e1-4b83-a360-2f4b1eacebd0 1 Other Other +96129db7-d905-4cba-9c16-9355c0606252 1 Other Other +9612c4cd-d42b-4765-8c9c-83b35830cafb 1 Other Other +96134ba8-ee73-40f2-b56c-9ab0a4ddc2cf 1 Other Other +96135c12-cd1f-451b-993b-a4c4492a62a9 1 Other Other +96141f31-9422-40e1-a159-0a4647c421f9 1 Other Other +96142149-dd30-443b-9961-d36734bc6fcd 1 Other Other +96143a65-e4eb-41bc-9128-48ae75b5a2af 1 Other Other +96143c37-ce8c-41c6-a5d8-a1da30863e1a 1 Other Other +961458da-54bc-4808-b931-b81b16a75e15 1 Other Other +96145af6-0467-4235-beb5-5aa1298f7300 1 Other Other +96147fdf-b43e-4c2f-bc44-db64e22539cc 1 Other Other +961487fd-9427-4d66-ae1c-46875799811d 1 James Other +96149ed4-6890-4b53-aa12-7f24063a3ac5 1 Other Other +9614b81a-23ee-4a6d-b382-37154f9654cd 1 Other Other +9614ef2b-bb96-4d3d-8305-dd0a4af67202 1 Other Other +96153743-3df4-43a0-b984-5523ca2c5a75 1 Other Other +9615456d-8562-46a5-b6a0-a16f521a0e80 1 Other Other +96159aff-2cff-4ee2-8b44-683ad4e5f2e2 1 Other Other +9615da53-da60-428e-8b7e-fb6ab1e13fc4 1 Other Other +9615e001-7733-48ac-9b3b-36ec79deaa0f 1 Other Other +9615f6cc-4b73-4545-9b6d-f528b771c926 1 Other Other +96161d18-dc05-4909-95cc-f615200009d3 1 Other Other +96171d2a-c4fd-446f-b503-bd9b3692e938 1 Other Other +961750a7-a0be-4c04-8ce0-25dfa1c83f58 1 Other Other +96177547-fe13-401a-941c-fbbda5a4c719 1 Other Other +9617b192-9b15-4066-ac9c-a86752bd5a94 1 Other Other +9617d30e-7250-4522-b41c-961d1df9643c 1 Other Other +9617e4f5-82a7-4a78-b1b9-60455ba0513d 1 Other Other +9618674a-be1b-4fa0-9a7e-c7f768409035 1 James Other +96186c97-6170-497c-b4c7-346a23d72e2b 1 Other Other +9618b941-2493-4bba-be96-21c7022ab84a 1 Other Other +9618bca8-867d-4a99-9f25-14bb35b72874 1 Other Other +9618f0fe-c538-47f3-a122-fcf952fbc290 1 Other Other +9619149c-2c6e-48d2-8781-b17e56eea575 1 Other Other +96192061-82a2-4650-96c6-5f1b59d8d867 1 Other Other +96193279-3986-496f-9f68-d09c6f255675 1 Other Other +96197ed0-91fe-4763-966a-f9cfb387526d 1 Other Other +9619a92f-3a17-4071-8375-b512db9822c8 1 Other Other +9619ea9a-b625-469c-a3ef-a583fa83d2b9 1 Other Other +961a50c0-696f-4706-91af-09ac28834568 1 Other Other +961a7846-2834-4b52-aa96-797a589495cc 1 Other Other +961a7849-5c00-4183-8971-e24d6d1a970f 1 Other Other +961a8886-6a51-4485-9276-d0518a2af8ba 1 Other Other +961aadaf-4d72-4c3c-9449-1397d8d103a4 1 Other Other +961ade6f-6003-4a29-846a-82b340dca5db 1 Other Other +961b175e-e2c6-444d-b7ff-2dc96d784f06 1 Other Other +961b50e3-4ac1-4670-99dc-03c92d483d8d 1 Other Other +961b8503-ccca-4aa5-a0ee-57200c148b04 1 Other Other +961be927-00a5-4016-9707-9ee1f2b1aebf 1 Other Other +961c0c66-095b-11e8-b43f-fa163e8624cc 1 \N Other +961c212f-d495-4155-a4a8-2d4a1fa6b9c5 1 Other Other +961c3bd8-3420-4103-a501-5b597ca86fa4 1 Other Other +961c875b-09be-4a5d-87e6-c226d1113680 1 Other Other +961c9e4b-7949-4291-9295-3d2747c538d0 1 Other Other +961cc415-aaaa-4e96-856c-3fcd58ce6481 1 Other Other +961d0f0a-7b63-4155-91f8-355938e4867c 1 Other Other +961d352e-fb6d-462a-81ea-404792b7d9cb 1 Other Other +961d6cdb-0761-4752-8ce0-e44236b1047c 1 \N Other +961d7c33-b530-4177-8f5f-6f980b40b115 1 Other Other +961d7c72-190c-4f1b-85bf-528e8e57ffb1 1 Other Other +961dcee7-81bb-40fc-a3f7-6d2836e67fc0 1 Other Other +961dfa7f-9011-4173-ba7d-0e604d410382 1 Other Other +961e0732-401b-4101-b0f6-e45e1931220b 1 Other Other +961e2034-41a1-4a41-953d-90863ab96f35 1 Other Other +961e594c-bb4d-44cb-a990-41a8a376e915 1 James Other +961e9356-69f9-4571-9f48-482dea214e54 1 Other Other +961ec1bb-46d2-4c34-9787-c98077c085cc 1 Other Other +961f731c-7738-42c2-b952-0192f0ce9553 1 Other Other +961f8c8f-fd6d-4928-a635-95f1efce168a 1 Other Other +961fa3cd-23d6-4b3d-82ae-1dfe49928e57 1 Other Other +961fe1c5-3078-4a4a-8213-45c9c2ef535f 1 Other Other +96200d78-7f54-4a12-b14e-030494b04bd6 1 \N Other +9620198c-095b-11e8-87b9-fa163e8624cc 1 \N Other +96201fc2-024d-4709-b6dd-5f39622d502d 1 Other Other +9620d44d-ec9e-4a46-be3b-71bf5a191ef9 1 Other Other +96210e31-866b-4462-a4cc-2275e0552714 1 Other Other +96211aa5-d2f9-48a6-a465-b6bd5b1fcf44 1 Other Other +96213bdf-43fb-463c-a4e2-f278b14c96e5 1 Other Other +96219d1c-a292-4218-9f1b-91eb0bf7a220 1 James Other +9621aa14-6d76-412b-bc18-d2a2115ec53a 1 Other Other +9621b738-1ade-4cc6-b0af-0a148bcb8a56 1 Other Other +9621c570-a2de-4a0c-a469-396afde496a8 1 Other Other +9621da1b-cd68-4736-be75-ed5f81b57a3f 1 Other Other +962224af-2e75-46b4-b2e7-71255b7dcd5b 1 James Other +9622605a-42e2-4e0c-8aa0-b42bd2d9e640 1 Other Other +96228ecd-56e0-4890-9bef-2e1755eae6c5 1 Other Other +9622b667-fc69-4dcf-bfa6-0bcf76bc7b08 1 Other Other +96232743-2446-4ac9-86f0-66e89362bfc7 1 Other Other +9623318a-4912-4250-843c-79d38ac564c1 1 Other Other +96233463-4c35-47ab-8cda-b202fc72be14 1 Other Other +96238c54-7c49-4add-a585-5d03a68dd83c 1 Other Other +96247db8-432b-44a6-91dd-7fa713bc9a92 1 Other Other +96250b2a-6cb8-4d09-a07b-00cf8008a583 1 Other Other +962514b1-e724-4ba4-80b2-8c8af3cb580b 1 Other Other +96251a3a-e995-4820-a27c-0335c2e41ddc 1 Other Other +96253450-ddc3-43d9-a975-d6d83bd0faae 1 Other Other +96253e07-eb5e-4e8c-9066-0eaf64ac35e3 1 Other Other +96256357-1ec5-4759-81b9-e154e327c038 1 Other Other +9625654d-8368-4827-911e-c814470663a8 1 Other Other +962583a5-efb8-48de-91cc-1af4989b97b5 1 Other Other +9625cc21-0e0e-41c7-bccd-c6e3b456e2e5 1 Other Other +96262417-10b5-45db-b943-56bc52f034a5 1 Other Other +962624df-8627-424b-8a1f-e0e41b5772a2 1 Other Other +962631d0-9d3b-4e7c-85e7-ca4ae80d3d6f 1 Other Other +962649ab-2e95-4b2c-a71f-9ca23161d5a5 1 Other Other +96265757-1587-47a0-8c7b-59c254aad35d 1 Other Other +96265ed0-9be3-42fb-b664-c3b4420afa45 1 Other Other +96266234-f3ae-4eb0-a387-710c80d24bd4 1 Other Other +9626b8a8-0647-11e8-a03c-fa163e8624cc 1 \N Other +9626cd9d-635a-4831-abc8-bcf608562b37 1 Other Other +9626dc82-4f63-476c-a4b9-195d2d3caf4a 1 Other Other +9626e54b-1e13-4075-aa9d-3fe321da70fc 1 Other Other +9626ecd9-34eb-49a9-ada1-dd037709a572 1 Other Other +9627017d-9405-4f87-8651-29339e788dee 1 Other Other +96270812-1244-45b9-9f17-9378ba56b22e 1 Other Other +96277342-0720-4326-a5ca-904fce075a45 1 Other Other +9627c9cc-8307-48c4-900f-0a539b54b480 1 Other Other +96280639-3a2f-4239-bacd-e1a3109b8a6f 1 \N Other +962809bb-0811-46ec-8f4a-fed39ca7d7d7 1 Other Other +96287597-8e4d-4f2c-a169-4ac2ceafb54a 1 Other Other +9628f2fa-5c95-4a45-a748-a2fd1c2ed308 1 Other Other +96290758-a521-4343-94eb-ae3ecc4e3530 1 Other Other +96291869-9516-4ab0-882c-659a54a3da1a 1 Other Other +96293f6a-b955-4260-a93c-ea7f226a9ee3 1 Other Other +962990d6-1177-462f-9096-343a66c2768e 1 Other Other +9629d21d-d9cd-47cc-a70b-e67cdcae5342 1 Other Other +962a3599-453e-4e6a-b7ab-461e5864c67e 1 Other Other +962a48e0-6448-4fab-98be-b4b948f83d97 1 Other Other +962a6058-c2fd-4f8c-b2f0-c66ed916ee31 1 Other Other +962a7254-1be9-4afb-8334-e437136559fe 1 Other Other +962a8b5c-492f-4d26-9e06-c13844c18d6e 1 Other Other +962ab97f-54a7-4233-9425-5d5b560aa655 1 Other Other +962abc2f-326f-4b04-b1b7-2979060ea471 1 Other Other +962b0538-2b53-44bb-b635-00cf62a86b9b 1 Other Other +962b1cfd-a01f-4e76-9810-9968492e91d9 1 Other Other +962b2024-0f7a-474b-849d-11aad7a456b3 1 Other Other +962b3841-ec53-4a08-b052-48116289e4b4 1 Other Other +962b3d66-f2af-4479-991c-acc723b5c0e7 1 Other Other +962b693a-befd-4b6a-af5e-e2951e1ba94c 1 Other Other +962b8bd2-4104-4ef0-8496-0524acec4f1e 1 Other Other +962b9d69-d591-4ce5-9b59-12b55eb66031 1 Other Other +962be52f-e490-41c2-b27c-3cee00066c67 1 Other Other +962c18cc-0692-42c0-bd45-bf4528142a48 1 Other Other +962c3f83-7a0d-4e88-8c7d-a5377d394452 1 Other Other +962cdcd1-8f66-4870-8caa-bd01a5945b7b 1 James Other +962ce49f-75fc-45a5-86ad-906de0b4c837 1 Other Other +962ce7c8-9ca3-4c6f-b206-b26bf54d04b0 1 Other Other +962cf3e5-cad2-40be-afc4-645375c9facf 1 Other Other +962d6a2d-a0bd-409a-86ff-109d4672ea14 1 Other Other +962e1062-0647-11e8-b796-fa163e8624cc 1 \N Other +962e134e-b9c7-46db-bb29-6fb3eeda063b 1 Other Other +962e261a-1c94-473b-8bde-ee5fd84b0a1b 1 Other Other +962e28b5-dfa5-47e1-a9be-169702a98972 1 Other Other +962e4978-fcfd-4e7a-be0e-2e9561b992a3 1 Other Other +962e7cd5-12d0-49f0-8ef5-a58dbe711d7c 1 Other Other +962e83a5-716e-42ce-8daf-0ba13473d646 1 Other Other +962e9a7d-5c21-42a9-b127-c342dc58ab3d 1 Other Other +962eade7-2d60-4209-ae0b-3ed06ce8e703 1 Other Other +962eb14c-1a81-482f-85c1-234b9d0de7ff 1 Other Other +962ed546-f19c-4f4e-b109-2efd3c881aa3 1 Other Other +962ef3a5-c0da-4839-ade9-b513fb8e9c3d 1 Other Other +962f1bb6-cd04-48cb-84f5-ebddbb7c451c 1 Other Other +962f1cfb-3a5e-4330-a4e5-17c63ed8eefd 1 Other Other +962f3699-1edc-4eb4-835c-22840d811ba8 1 Other Other +962f72a3-6432-419c-9f0f-c22b5a152d6c 1 Other Other +962f73c0-01e7-4ef7-a435-198b66201476 1 Other Other +962f8b2b-2581-4745-b955-e13ab13ce50f 1 Other Other +962fa0e3-7008-4954-b980-f33f6276ea12 1 Other Other +962fd287-0df3-42ea-955e-0cef0c88eb5a 1 Other Other +962fd5c1-7370-4edb-9698-e88ed430fe3e 1 Other Other +96300a81-b842-4a9b-872c-919939ba0488 1 Other Other +96301a87-b43a-4f4b-b96a-ad15bce511ef 1 Other Other +9630562c-2872-40aa-bd30-ce9a9ee725eb 1 Other Other +9630688a-48f1-4165-83b5-4181206f1301 1 James Other +96307011-6d75-40a2-b998-31f0aaf6294c 1 Other Other +9630c03a-bdcb-41b3-a5cb-7416649ed8ca 1 Other Other +96314e3e-9c06-4c97-8b69-28262ed87a88 1 Other Other +96315049-1276-423a-8fc0-264b4363c240 1 Other Other +963157bb-1b3e-42a7-a0fb-344c00a37057 1 Other Other +9631d426-2c7f-49e2-a263-3af2f6943583 1 Other Other +96322de0-a09c-459e-a109-43176cc8a889 1 Other Other +96324c3e-d869-496c-8ea9-d5324d362606 1 Other Other +9632a7f6-d031-486a-b6da-51f7da1bf0d8 1 Other Other +9632ade5-4667-4fb7-ad85-43aad9d9122e 1 \N Other +963314d5-1bdb-48b9-aa84-faa4fc3e805e 1 Other Other +96335bb5-533b-4d3d-a674-60353940fae7 1 Other Other +96337a0d-b160-414f-8ed3-0ee4ee8ea6e3 1 Other Other +9633855f-98ff-4162-aae5-f201f98d45c5 1 Other Other +9633957f-f17c-4533-b2e0-3ef02f466429 1 Other Other +9633cc77-5e61-466e-9a1b-4d16eed085c5 1 Other Other +9633f573-b8b0-4688-9f38-b91f60d33236 1 Other Other +96341671-c5c6-401f-b084-a9ba634944f1 1 Other Other +9634218e-738a-4357-afbc-d543fb092c68 1 Other Other +96343088-a979-4e26-bc34-b6f2d701b880 1 Other Other +96344457-2e85-4031-b0bc-f6bedf718b93 1 Other Other +96344d1f-74ae-4289-ad96-269bc0e57fb4 1 Other Other +96345427-64d2-4e5c-a3cb-701185f9d2c7 1 Other Other +96347e45-c0e9-477f-984a-4092a52c7c05 1 Other Other +96348d2e-e6da-42d2-b561-d2383e435cc7 1 Other Other +96355432-319a-4163-becd-7722c6753e70 1 Other Other +9635598a-bc9b-4733-be9f-c5001e718cd5 1 Other Other +963595b2-02d4-4a07-831c-1385b7467d5b 1 Other Other +96359f89-664d-4331-9232-6b7cbc15ac01 1 Other Other +9635fd7f-3c83-4755-91a8-a58137014c3c 1 Other Other +96360f35-1277-4408-9c6a-1717b955b601 1 Other Other +96364f7f-6118-40d9-b363-acc5a1ea2aca 1 Other Other +96366303-615f-4880-bb99-3f003c22df89 1 \N Other +9636785c-24ce-42e6-89d1-9dcdc1f7fb36 1 Other Other +963681b8-a3fc-47f4-b992-d40d662bcf9f 1 Other Other +96374450-ca40-4e24-b367-ebd53f8f9aa2 1 Other Other +963745ee-314a-4630-9857-43bcb90d54b4 1 Other Other +963780a7-d4b7-4447-88a3-6e8b516ae283 1 Other Other +9637a164-e84c-4432-ba22-504bb52eecdc 1 Other Other +963823aa-48b3-4047-af29-9f5e6b451b81 1 Other Other +9638595c-9d0d-42b7-9e1c-dc0f8c325927 1 Other Other +96386025-14fa-4cc7-aecb-3bb52cd5d24a 1 Other Other +9638bd76-3f24-422a-9d03-91fdd1c4ada2 1 Other Other +9638d124-6f8a-468f-97cc-55632c7af8c7 1 Other Other +963901b1-f8d9-4919-9374-38c723d0e933 1 Other Other +96391b63-aebd-4639-8528-62e13a713747 1 James Other +963936f1-b885-4afb-adeb-7d20e02f1da8 1 Other Other +963952e2-e821-41b0-b018-58af154628ea 1 Other Other +963971b8-a77f-4d94-b4db-0e7fa6c5cf1a 1 Other Other +963a3742-f86e-4565-a339-8da1882a3a14 1 Other Other +963a398f-82a7-4194-9ea6-4987c2be7fa2 1 Other Other +963a4637-b327-49c9-a819-73f7d0a5d796 1 Other Other +963a806b-0d58-45a9-80d7-bef0a3a23da2 1 Other Other +963ac8b4-6192-4673-b434-a38eea139128 1 Other Other +963b6ad7-efc8-44ce-9677-14fc557b218c 1 Other Other +963b8d11-d8e4-473f-a108-8e3735f2d96d 1 Other Other +963b98c3-0d84-432d-9c0b-679b417c9db5 1 Other Other +963c56bd-e55a-4c62-8b2d-b93d54b93d10 1 Other Other +963c74e8-b432-4007-9595-597f52a0fa2e 1 Other Other +963c99fb-9be5-4b93-9492-5386356bddd4 1 Other Other +963cba2f-6f4a-4ae0-8134-8966c762a97b 1 Other Other +963d0ceb-3bd7-4420-aa30-87e99a1a1eba 1 Other Other +963d0f78-befe-4664-a154-6eef7b833598 1 Other Other +963d1f87-cf0c-4994-a27b-81c973503a01 1 Other Other +963d7211-16d9-4f98-a365-4ad776f3d55e 1 Other Other +963db45f-21e2-47f2-bdd1-ea3ace360929 1 Other Other +963dc2f2-095b-11e8-b3b0-fa163e8624cc 1 \N Other +963dda61-5f93-4dc2-9bc1-54835dc04891 1 \N Other +963e4bf5-c9ac-4f3e-8e57-220613c949fd 1 Other Other +963e8af5-776e-420d-bf71-204f9f6d6660 1 Other Other +963ee60d-e301-44ff-9099-a180f7eb15c5 1 Other Other +963f0415-7350-416d-b2ec-a85fd7348d46 1 Other Other +963f26ab-9654-4501-ab3e-5ccee444b910 1 Other Other +963f9974-e10c-42c1-96c3-557f63cf0f9b 1 Other Other +963fad9e-51a0-48d1-9ecd-752b2166dba1 1 Other Other +96402b4c-fcb1-4c7c-88c0-a78b15e626c7 1 Other Other +96403171-8800-4fdb-b8a0-cd0e210fe9c2 1 \N Other +964075f6-8365-4f4f-9d84-861e6f5a8e5e 1 Other Other +96407f91-9b23-4975-a445-aa0c8aefc68b 1 Other Other +96408e3f-255a-4556-a636-d40a1bd31386 1 Other Other +9640b714-ca80-4a77-809e-100e2527f768 1 Other Other +9640db3f-1977-4dc1-af56-385502f0913c 1 Other Other +964167af-5948-454f-a6b3-456062cb31ba 1 Other Other +9641b4d0-07f0-4b4d-824e-b54aed0cd1d9 1 Other Other +9641b7a0-8aa4-4bb2-92bc-0b18797e92f8 1 Other Other +9641bf7a-04bf-4a47-b28f-04800cd517ba 1 Other Other +9641ca5e-7731-4332-bdbb-8106da593f24 1 Other Other +9641fcf3-d755-4b18-902d-2dd3186ec941 1 Other Other +96421140-4a70-4136-89e1-00ff63e8210a 1 \N Other +964219d0-893e-4505-892b-d4b348b656a6 1 Other Other +96423681-2135-498d-b65a-cbe793417e57 1 Other Other +96427dee-977c-46e2-aa50-de1adf14d6b0 1 Other Other +9642a93f-1307-4c2a-844b-c1b44745c5e2 1 Other Other +9642b621-0006-4e8f-be67-118261e6a7c8 1 Other Other +9642e106-c5f3-4ad6-89a0-fe5a62f926cf 1 \N Other +9642ec3b-679e-4d48-bf33-cc2269ffc5cf 1 Other Other +96437117-f9a5-4728-a847-e6bcb7e24ef6 1 Other Other +9643a448-9f04-42b8-947d-fd8afa638b3a 1 Other Other +9643b57f-382d-4e98-9304-300d57f60806 1 Other Other +9643c892-db84-4076-8f79-e8a618fa1279 1 Other Other +9643fc38-d94d-4de8-97fd-3416e5e48ad4 1 Other Other +964414c0-e49a-4156-9ae8-a28b5b21429a 1 Other Other +96442e87-127f-4511-a3b4-8651069babeb 1 Other Other +964469b5-2af1-415e-a377-c9d6d17dd4c9 1 Other Other +96446f0a-34e8-45bf-b3d8-ab670e64cf72 1 Other Other +9644cbd5-ab17-4631-83cf-45b59b95bc3c 1 Other Other +9644cfc3-4ddc-4b27-8da1-f34e6eb6caa0 1 Other Other +9644d61f-5a59-4a10-9149-e9f7c7d3567e 1 Other Other +9644e777-a54b-4358-b0eb-40137b0f0d83 1 Other Other +9644f9b8-2720-4e8e-b29f-e79ea4f44241 1 Other Other +96453d6f-d49b-4a87-ab8c-896401821c7f 1 Other Other +96454e34-1098-40a7-b05e-a62019914d5c 1 Other Other +96454ed1-3abd-4bc0-8ad0-4e2d94de7d26 1 Other Other +9645e5ba-e80b-43a1-8d7d-50df4cbef611 1 Other Other +964616d1-e5b8-46c8-97a4-a363f6f657aa 1 Other Other +964685f2-6e44-4036-8430-69fd49741567 1 Other Other +96468ab6-f367-4823-b254-c98528bac1d9 1 James Other +9646decd-9d3f-43cb-8c56-43439b9b6691 1 Other Other +964737d4-a86f-4c03-bec6-8551a10c70d5 1 Other Other +96479902-c820-4249-b4f7-10c791b094de 1 Other Other +9647ad74-2b83-4b99-80dc-ab59b5ccca91 1 Other Other +9647db7c-226b-4699-8687-45c5ebcdb9f3 1 Other Other +9647e2ef-32e5-4196-bee0-e338839c5e44 1 Other Other +9647ef70-cc77-4672-be93-d8c0c9e50fff 1 Other Other +9648af7f-6303-4429-904f-c50570d0eee1 1 Other Other +9648c106-5b7e-4de4-a258-994ace11bad7 1 Other Other +9648f0da-0647-11e8-be70-fa163e8624cc 1 \N Other +9648fd6e-a433-48ec-92dc-2fb6271207c3 1 Other Other +9648fe7c-5ef5-4c55-9b17-7ead523ce80d 1 Other Other +96491cec-eb7f-4334-8c7a-bad70a269a6e 1 Other Other +96494858-dccd-4de2-b24a-0a7e5672053d 1 Other Other +96498dbd-cb50-460c-9ba5-2970e03405b1 1 Other Other +96499b11-612b-474b-bf24-ce8330e8f2fe 1 Other Other +9649b4ab-1cc9-4442-9ea4-0c3e2ac364ee 1 Other Other +9649cd1f-5133-44b0-9e35-19ae1b7f8a83 1 Other Other +964aaf04-5133-4692-a387-053c51aaff16 1 Other Other +964ab7b9-faa6-4440-8542-62cedee5c921 1 \N Other +964ac5d0-8140-4910-8d8f-37f5a3497f29 1 Other Other +964af126-7a94-48ae-bea8-b7b09f336cd8 1 Other Other +964c0fa9-4fc0-4cb6-9e60-df81c30f44b3 1 Other Other +964c189f-9a83-429b-a399-89a282e8833a 1 Other Other +964c452f-40a8-43b8-bb80-a60c3faa34e0 1 Other Other +964ca065-59eb-4d3a-ac58-26afe0a28b8c 1 Other Other +964ca4aa-75a4-4b4c-acc1-f7175308f29f 1 Other Other +964ca5d1-a844-42a3-a8d4-9d1fc76df4c4 1 Other Other +964cdb0c-945f-4c6b-a610-ef693fc012ab 1 \N Other +964d3e76-8fc6-11e7-af15-fa163e8624cc 1 Other Other +964d63a9-651a-4d41-a655-e0ba1a973af1 1 Other Other +964ddf3f-2674-45f2-8521-b34867d197e2 1 Other Other +964df3cc-7d32-4b72-8732-241b8860d67f 1 Other Other +964e0ec9-04f8-4e6f-bab7-86010e6e2d4e 1 Other Other +964e6afa-1ba7-4782-aa67-2e3513eb5fcc 1 Other Other +964e8fa9-4f78-457e-b101-1368addbc44d 1 Other Other +964ea62a-c370-4e20-be67-c9767f8fd159 1 Other Other +964ef76f-c65d-4c88-90a1-1799c03dbf87 1 Other Other +964f0ef7-c3eb-420c-bfa7-9727d740b1b7 1 Other Other +964f1cbc-8c66-48e9-a63d-0de6da316116 1 Other Other +964f4931-79cd-4ccf-9447-a3f60b995f4a 1 Other Other +964f7896-6f31-4172-8468-0c72a45e0218 1 Other Other +964fe74d-372a-4967-b769-b0ccc0242397 1 Other Other +96502722-7e19-4c04-92fa-758ee7a13b26 1 Other Other +96503ce5-9ee8-498b-ae94-47869d5a37df 1 Other Other +96506b40-d1eb-4a3c-971f-701663fbca33 1 Other Other +9650dcfc-6e0d-411a-bdb6-4e8bc5e2113b 1 Other Other +9650fdd6-9518-4582-9fb4-25a40f410964 1 Other Other +9650ffed-945e-4727-8b58-71ef22bfa1e1 1 Other Other +965137fd-29f5-450a-86fe-c146f5dac0c6 1 Other Other +965174e7-8fdd-4e07-a9df-9a16a752007b 1 Other Other +96518341-fc02-46c3-b9c2-3f75fd51552d 1 Other Other +9651c250-4079-4b15-aa82-6580d21538b6 1 Other Other +9651f2cb-2c56-4683-8c6e-e32971448f18 1 Other Other +96524539-7c50-41eb-a65e-695bb79891d4 1 Other Other +96525d08-fd2c-4944-9f0e-f60effefbca7 1 Other Other +96526a70-3f13-48df-816e-57c9014cd2b3 1 Other Other +96529ee8-ad28-4522-857a-30124bd01cfe 1 Other Other +9652a03c-e68e-4da1-b388-7e4a6eacab60 1 Other Other +9652af58-e4b1-4209-a229-6db7b77ad318 1 Other Other +9652bc66-e0ca-4ca0-991e-b009aa15d943 1 Other Other +9652f25d-b1cc-4d21-9afd-19e43b266832 1 Other Other +96531a85-122e-4181-bc88-dbd84381a024 1 Other Other +965367a5-02ba-4336-be5c-86f0d3b6260c 1 Other Other +96536bfa-816b-4590-ba8c-a489315fe4b9 1 \N Other +9653756b-db1d-4789-a3ec-638e8b3caa95 1 Other Other +96538084-db36-4a21-bd39-5ad82aafb5b3 1 Other Other +96539646-b4f2-4822-9fb7-2741c4a178ec 1 Other Other +9653c0f9-fa7f-4db2-950d-7d47fc5d78e9 1 Other Other +9654641e-4baf-42c7-bb98-6a9387ec4286 1 Other Other +96547918-145d-43df-b806-28cac8b744c9 1 Other Other +96547da7-8129-4d4f-b62d-eb013d02b11d 1 Other Other +96549ae8-64d8-4f21-ab4e-8cf7503addfc 1 Other Other +96549b2d-bca6-4f68-9489-62171c146d18 1 Other Other +9654a454-095b-11e8-9f5a-fa163e8624cc 1 \N Other +9654e270-74d7-464d-8a17-6459a0666ea0 1 Other Other +96550c89-e8fa-461c-ad93-0dd31dda442c 1 Other Other +965516a6-e11a-4d14-bce5-6c0ecd29f8ee 1 Other Other +965586f0-3bf2-47e7-b70f-621b1801ad3f 1 Other Other +96558836-6243-4a56-b3bf-f554496f8d44 1 Other Other +9655ab1b-6fd3-459d-9efd-08cb1dcfb4fe 1 Other Other +9655b28c-b6b7-4bbd-9433-d97ea150baca 1 Other Other +96562c64-c94a-4a78-99d1-d1c5233ca8c7 1 Other Other +965636d4-d5dd-4e75-9912-3dcf0faf1ee5 1 \N Other +9656a2c5-cbdb-40bf-af94-b10a31c3d768 1 Other Other +9656ccb4-9f6c-4ec8-90a3-fcda0fc70970 1 \N Other +9656d562-4dba-473f-8fef-95b90f31a5f1 1 Other Other +96571dec-92e0-4570-a5db-cd247cda42a9 1 Other Other +96572353-ba2f-4b38-bd97-1828418842d6 1 Other Other +96572abb-b28a-4824-a09e-2560780394a1 1 Other Other +9657410c-4503-41f4-80f8-4758d2916219 1 Other Other +965744b8-7424-430d-89d3-ddc58e3d0f07 1 Other Other +9657e5fb-2114-441c-8886-4591eeaa2dc5 1 \N Other +9658490d-5c6e-41a9-98ca-a354b3ae70cb 1 Other Other +96589b5f-08d0-482f-bc97-d5abf6642327 1 Other Other +9658d865-455c-45a6-a419-cc811eb554be 1 Other Other +9658e912-4503-4963-ab81-64f9e92e1d34 1 Other Other +965958ec-796d-4c76-9aa6-cf4324cd011d 1 Other Other +9659742b-13e2-4599-bbd1-cd507d5a8271 1 Other Other +9659a02d-7644-4662-b60b-57b6aeaac9d8 1 Other Other +965a4c3e-1879-49e8-a2e5-d3ee6797752e 1 Other Other +965a8d94-59ab-49f2-b807-61ec4a54d0e5 1 Other Other +965a9a07-f392-44b2-92a2-ba7df5fb10fa 1 Other Other +965acef5-3eb9-477e-80bb-5beb74c61659 1 Other Other +965aee09-954d-408e-99af-54aa0e5a00a9 1 Other Other +965b16d7-d4da-4f49-b8a5-fa24e994e68a 1 \N Other +965b34c1-e616-4d84-b0bf-8b2289e5f3c5 1 Other Other +965b595d-6e12-48f7-9e14-40317a1535bd 1 \N Other +965b7eb0-eb1b-4845-a36b-4bf4c39e3902 1 Other Other +965ba58f-e23b-4a70-913c-b521fdaa1124 1 Other Other +965bb5fe-20da-49f0-a945-f685cc7e2305 1 Other Other +965bc8ac-75bd-4a2b-845e-5453cbe7bee4 1 Other Other +965c0568-bdb9-4bd0-b534-1705cdea0865 1 Other Other +965c303e-824a-4534-b286-17b6adb36c1b 1 Other Other +965c9966-5588-4b39-a8d4-cc878ebc0a67 1 Other Other +965c9d57-b34b-44da-ba52-1797d33cc187 1 Other Other +965ca035-fa63-4197-9a4e-fbe3803d3efd 1 Other Other +965cb743-c52d-4144-9137-868325800afb 1 Other Other +965d0d07-39df-4614-906d-d9d12e57eee2 1 Other Other +965d1675-86ce-4a9f-b356-03efbf5010d9 1 Other Other +965d50ab-f230-45c3-b5e2-1c45b84df141 1 Other Other +965d950f-53c2-4f10-a2de-37b6f892b745 1 Other Other +965df166-6884-42f9-9b0d-685925d1be4d 1 Other Other +965e9a0b-3870-4693-9cc3-876324908152 1 Other Other +965eef70-ee7d-4634-b8d1-7a1bbdc69293 1 Other Other +965f7157-4c46-42c3-aee5-5124562fb5c9 1 Other Other +965f86ba-353f-4644-94ee-e469922d5663 1 Other Other +965f95f2-1e76-479c-89d8-e17628eb7cea 1 Other Other +965fea02-0ce9-43d5-870a-b2ebeb81e493 1 Other Other +965ff0a8-5cee-4aae-933f-9e80de561972 1 Other Other +96600468-2ca0-40c6-a2c2-8636069ea627 1 Other Other +9660910c-94d9-4e30-a740-cdf65121bc51 1 Other Other +9660a9d7-eb65-4ac7-a8ed-5543d2dd8a37 1 Other Other +9661347a-b2d0-4e91-9b16-30eb0ec6e17f 1 Other Other +96617d93-bc2e-4c60-a381-77f79f89452f 1 Other Other +9661f442-c908-46d7-8fb7-a940aa412bdb 1 Other Other +966202d0-2e0f-4c00-90bc-f66e38b42d84 1 Other Other +966235b4-2ab9-47ba-b0ae-c334a461b2c4 1 Other Other +96623986-e72e-4678-a388-3dff62a017c1 1 Other Other +966262ee-aa57-45af-a16a-246cfbc7a336 1 Other Other +9662b146-226b-4a79-a67d-748d7d07a275 1 Other Other +9662f967-36f4-4422-889f-c0bc2d2a2dbb 1 Other Other +96631a73-b9b1-4140-915b-9d80fb487e2d 1 Other Other +96633402-079e-48c3-8ec1-dcf3df4cb6a4 1 \N Other +966358e1-d9e2-4d07-a9b8-3aa0d417a22a 1 Other Other +96635922-6762-49a0-b2e9-66f606ef98c6 1 Other Other +96637277-a102-432b-84f7-e4340e901763 1 Other Other +9663c15e-510e-40bf-b081-c8830c1f7c1e 1 Other Other +9663f650-f8ca-42f4-a1f4-5df150d8953f 1 Other Other +966439c4-bb7f-43f4-8974-67158b4195c7 1 Other Other +96648b35-8546-4769-adb1-97fdfaf620a9 1 Other Other +9664c8e5-bad9-4875-a7fd-0095eb73118b 1 Other Other +9665d0ad-083f-47ef-9618-f75e6caf1ab7 1 Other Other +9665d9e5-8452-409b-891e-80f1939c29ac 1 Other Other +96664a29-184f-4a9b-8089-aaf0ef8fb5ce 1 Other Other +96665d45-9ad9-4b13-b9ac-f9a2edc8ee28 1 Other Other +96666873-e7bc-47c6-a2a1-8c5b5ccd26be 1 Other Other +96668f61-968b-4dce-84f6-c08c216550e2 1 James Other +96670a1a-de00-44ae-8681-e0eda6abd64c 1 Other Other +96676751-5438-4706-82fa-190b894980ba 1 Other Other +9667a40e-fc51-4f55-bc0c-7f3302e52314 1 \N Other +9667daaa-62d2-438a-a7aa-262cf804c0c5 1 Other Other +9668358a-6e06-4469-a997-c4a539d0061f 1 Other Other +96693351-a480-475e-956c-0a36250994f8 1 Other Other +96693cd2-52a1-4892-9a22-f6bfb417835e 1 Other Other +96693f2b-2f4d-414e-8b10-43bbe78af03f 1 Other Other +9669544e-a469-44a3-8dab-af692cc06632 1 Other Other +9669648a-606f-454c-9d67-47ce4bd2445e 1 Other Other +9669a18b-7738-4ad7-b243-e8e5c0f59a2f 1 Other Other +9669aa79-cab6-45de-83d2-8fd3fbc55a01 1 Other Other +966a4d80-512d-42e9-8eae-a82aae84a71a 1 Other Other +966aa6c8-6685-4bc4-b71b-7678e151ab72 1 Other Other +966b296b-fac7-416f-b4e4-197df9a49f31 1 Other Other +966b3a1b-8edf-4ea2-bd5e-35cb63cce4b8 1 Other Other +966b3a49-0658-4c1e-b68f-065c8083511b 1 Other Other +966b9006-095b-11e8-969b-fa163e8624cc 1 \N Other +966bf122-5f1f-4e15-a135-8f816bccb8df 1 Other Other +966c15f4-52b3-4603-9adb-dce237fd5755 1 Other Other +966c3d45-fcca-4aa3-a8aa-573e0c752be6 1 Other Other +966c6cac-95fb-4a96-bb2a-1c16457ea2bc 1 Other Other +966cc343-b120-4936-8d5f-60e0e34ca855 1 Other Other +966cd618-6f0d-433a-a9a2-ee48ea4f2250 1 Other Other +966ce1c0-d086-44cf-b733-f4f5f08b08f2 1 Other Other +966cf2af-7321-4029-a682-c8eb231ff8be 1 Other Other +966d72c5-bc16-46bb-953e-c4278cbec62e 1 Other Other +966d8c2f-6f0f-4914-a196-5eed21fb14b1 1 Other Other +966dd219-4963-4af7-bcfa-0938d4efe0ba 1 Other Other +966e4e66-7623-4970-be0a-b503884eaa0d 1 Other Other +966eafc7-7da1-480b-86bd-09b2c502500c 1 Other Other +966eb74d-9de8-45f9-970b-a55352b71c94 1 Other Other +966ed5a5-6b94-42f1-a8f9-d6fc640b7dff 1 Other Other +966f10ac-54f5-4d02-b92b-e3f5a9527b85 1 Other Other +966f307b-d65c-4b83-8e75-6da11b049267 1 Other Other +966f3959-3a45-4655-8591-d547ed0b7a74 1 Other Other +966f588f-530a-4a69-b7bc-ddbd59b581d4 1 Other Other +966fb182-3316-45db-a13f-9822bf5a4860 1 Other Other +966fbf84-0dac-420d-a89c-14e3077c967e 1 Other Other +966fe296-0533-4d2e-b21e-d8a97793a41e 1 \N Other +966fe3cd-c2a2-474f-8ac3-4fdfe46c06eb 1 Other Other +96703757-6a65-450a-85af-6ace3ced49f1 1 Other Other +96705476-c182-4c2e-94a7-89420392c651 1 Other Other +9670851d-acc8-4212-acf3-fe4ceaa1e7ba 1 Other Other +967089af-fbbe-476b-bb79-18d6369737db 1 Other Other +9670a148-6ecf-481b-8f83-23d651192f67 1 Other Other +9670db7f-32e4-4f2a-add6-e2264e58484e 1 Other Other +96712838-7fe9-40b6-b1d1-55f3d99a62d2 1 Other Other +96715a71-ec5c-4066-98cb-f2bed60c326b 1 Other Other +96716b08-92c1-4be3-b815-01551d87cbaf 1 Other Other +96716d29-a0ea-4407-a7f5-0be2c458a6e0 1 Other Other +967172fc-2410-4203-bc34-2991c174b1e1 1 Other Other +9671c916-1611-4629-83e6-61b245017c84 1 Other Other +9671e298-3d40-467e-92bd-adbebffc2779 1 Other Other +9671e88e-c178-4800-887c-b41857ba36e6 1 Other Other +9671fb63-7797-44e7-9103-2704e5f96ea7 1 Other Other +96720d5f-58aa-4e37-bc66-5caefa1929af 1 Other Other +96729974-e488-41e3-82ed-32e0806d1cd2 1 Other Other +96729f97-cd22-47b4-a622-14101f55d235 1 Other Other +9673a636-d9a5-482c-b1dc-654fb3d0235b 1 Other Other +9673acd5-f5da-48b0-98d3-6dda7215b7c9 1 Other Other +9673b1b2-56a4-4622-a216-5f6cbfc4f0a0 1 Other Other +96741a2d-77f5-4895-ae15-64cc969c7302 1 Other Other +9674488f-6f47-455a-ac59-dd58156b194f 1 Other Other +9674cdaa-ef8a-411a-9622-7fc5e25ad5f5 1 Other Other +96752191-13b2-4eea-85c8-9b51349a324c 1 Other Other +96752cba-be5a-474c-89ba-15be8d7e6655 1 Other Other +967541fd-2529-4240-91ef-03f76891a44f 1 Other Other +96754ab2-2e21-4eab-8745-bf9ef1f364b9 1 Other Other +9675a27c-8218-47fe-a2e9-e8f15f483dcc 1 Other Other +9675f1cc-5128-4bec-aac2-b1ebfdd363a4 1 Other Other +9675f7bb-b374-49b4-8fac-8b61798ab76c 1 Other Other +9676035d-08b1-4d6b-8cb2-2794a1dc3951 1 Other Other +967638ee-0a1b-4d73-8d3f-e1181a57ff38 1 Other Other +967678af-f79e-4169-904e-2441ded5cf34 1 Other Other +9676b95a-7ac1-4fc9-b73a-9f82cd9128b0 1 Other Other +9676c8e5-5f7f-447b-b7b3-931ad53fb4b7 1 Other Other +9676cc8a-1100-4c0c-8be6-860597f16b19 1 Other Other +9676e44b-9666-466d-9d16-5374da26fc5f 1 Other Other +9677121e-14b9-49a3-b7e7-ebdb1f919098 1 Other Other +96771bdb-6602-4f6e-8da7-588d16b781fb 1 Other Other +96773a4b-2b6f-41bc-a6b2-58bd70b151a5 1 Other Other +967773e9-9ad6-4d63-848c-740966c1302d 1 Other Other +9677e129-3c33-48a4-82b2-30741ed01ba6 1 Other Other +9677f030-3981-41c1-9a70-39d078f5237c 1 Other Other +9677f6c3-e942-44c7-bdad-9b8a1e3e784c 1 Other Other +967816cd-b2b4-4610-b9bd-fba9e407d7c8 1 Other Other +967861b3-ccc4-43f8-93bc-522e7a2e44e9 1 \N Other +96788c9e-ac74-4ef8-a2b4-d225187925f4 1 Other Other +96789006-1c7b-4504-b0ed-20997429c929 1 Other Other +9678e087-5d03-4b23-b50c-e34157d956a7 1 Other Other +9678f134-1f8d-468b-ba3b-a90762e97784 1 Other Other +9679079e-0897-41a0-b098-a1f964c0c33f 1 Other Other +96790c1c-1dd8-4cfd-af06-5f21d9f14c65 1 Other Other +96791b06-1792-4358-9095-044417f03978 1 Other Other +967927ea-85a4-4df0-b25e-39d2a66334ac 1 Other Other +967972f6-9e0f-4ee0-81ce-a16542f61ef7 1 Other Other +96798005-e8aa-4f2d-a356-774aa68a57f0 1 Other Other +96798a26-dc33-4ec3-b7b7-29999a6be1ce 1 Other Other +96799dbc-2fb2-4c4f-bf52-cc9454bd35f5 1 Other Other +9679bf07-5310-4d7d-8b98-ed6575192b32 1 Other Other +9679c01d-e92b-491a-bc00-48aac6bf3379 1 Other Other +9679d232-ec3b-4478-a71f-28e05b6899dc 1 Other Other +9679dd49-1425-4171-affd-4b703f165d34 1 Other Other +967a1a2f-071c-4b2f-9c71-7ea92b66d921 1 Other Other +967a34e7-fe1e-4e9f-a824-cbc8b0991a02 1 Other Other +967a49e5-4e4f-417f-bd6b-987d1b964a25 1 Other Other +967a8d1e-f839-48b3-9ca3-17f1147b4751 1 Other Other +967ac0ed-ac05-433b-a177-4cf12e83d36f 1 Other Other +967ac558-8935-47ac-a419-56d9278b725e 1 Other Other +967b2f1a-e401-45e1-a11c-0094a3907f4c 1 Other Other +967b5095-d7d0-4a2e-9eca-a2d6416f416c 1 Other Other +967b7e03-6842-4b00-8a78-830b3e2a9189 1 Other Other +967b837f-03d4-415f-95b1-bb621198369f 1 Other Other +967c60f4-97bf-4434-a19c-85c70312073b 1 Other Other +967c6340-07ec-49d0-9dac-4a1c9b53b063 1 Other Other +967cb700-45ed-47f8-a470-fbb0ede9d4e8 1 Other Other +967cc314-5e1d-42bb-b4f0-05d2c463d589 1 Other Other +967d5117-6797-44e6-bc13-0467432e787a 1 Other Other +967d703d-7884-4cce-8ab6-359100637531 1 Other Other +967d9a6e-419b-4fed-bbda-ce2be1f4aac1 1 Other Other +967dd6c8-0477-4795-883b-ed98caebd539 1 Other Other +967df6c7-251d-494b-8f26-00313200f428 1 Other Other +967e3b81-6feb-4b48-863b-8572efacf79f 1 Other Other +967e47fb-99e0-42f2-bfdd-bf6c1bce5031 1 \N Other +967e79e3-a7a2-46a2-b344-00df185af8e7 1 Other Other +967eaf15-0653-450c-a4d2-5717c1068493 1 Other Other +967f65a3-94f6-48dc-9570-0e66b30546f3 1 Other Other +967f9ccf-4d20-4bcc-881c-158f263149a4 1 Other Other +9680152e-8ae0-485c-b01d-8bc53f57f2c3 1 Other Other +96802cc7-87ba-4f79-960c-ce43b579f6c4 1 Other Other +96802d89-c062-4ecd-8de9-7b86ce0db9a6 1 Other Other +9680ad28-15b6-4667-ad6b-009dad88ae21 1 Other Other +96813c2c-8343-423f-9f2f-8edba2e85519 1 Other Other +96815040-b804-4cc2-ba82-541958482f91 1 Other Other +9681a778-c902-443b-acc0-cb8f945f0bb8 1 Other Other +9681c510-16b6-4fdb-aff9-45531bfed944 1 Other Other +9681ec79-cfa6-4831-9a8b-edce6242ab35 1 Other Other +9682172e-6771-4eb2-ad92-becbc2fb89b4 1 Other Other +968225d2-bac3-438e-88a8-81526ec10469 1 Other Other +9682326c-ced5-451b-9f60-ad70acb49c55 1 Other Other +968247c6-d4bc-40dc-bfc5-976e0da48d87 1 Other Other +968290e9-a7d5-4e85-a82d-7956b4469146 1 Other Other +9682ac1b-107b-4fd4-954d-123ffc2f733f 1 Other Other +9682bc9e-bfcd-4c3a-9285-ddb623409a8c 1 \N Other +96832e44-03a1-4758-8b77-5f6307cc4637 1 Other Other +968352c6-8be8-4eca-bb0c-b97c4a70b45c 1 Other Other +96835dbf-0548-4b24-9d43-6e5e58cea419 1 Other Other +96839c24-fc31-4bdc-a3b7-f432309ca742 1 Other Other +9683e3e6-842b-4420-9bff-9dd5ca32fe8b 1 Other Other +9684166c-72a2-4012-a929-81f06be7e76c 1 Other Other +96845c74-f2b2-43b0-bccf-06d9361a7f9c 1 Other Other +9684735c-005a-4f38-943f-3c01c37576f8 1 Other Other +9684d635-6616-4bea-bf25-13da0f83ee18 1 Other Other +96851411-bf85-4995-870b-ec680dd6ed33 1 Other Other +96851626-646d-485d-b972-893b851f5454 1 Other Other +96851ed6-0f49-4160-ac5e-9bcc5a547895 1 Other Other +96854f34-222e-40d2-935f-88c95ce14fe9 1 Other Other +96858b59-eaf7-457c-98b6-4f8be13f0cc7 1 Other Other +96859650-b58d-4c94-a643-967316c0385e 1 Other Other +9685a18f-6c2f-40c0-bdf2-ccdc0a795447 1 Other Other +9685a930-d104-43ac-b236-c07d55c2d817 1 Other Other +9685e944-0122-444d-9676-df662cccb7f6 1 James Other +9685fc7b-06b6-4676-b519-6fa7f4c522a9 1 Other Other +9685ffb5-b7a4-4d50-972f-29250158c015 1 Other Other +96862d45-f74c-4f52-b2e1-872b0b997f4b 1 Other Other +968633f5-39ba-413c-a4d3-d44cb60e1580 1 Other Other +968635ca-5590-4be9-b767-e454a9eda07d 1 Other Other +96863e14-e647-4196-a874-13f968e804f7 1 Other Other +9686af91-b5e4-4e65-b9ce-fe6aca2d365a 1 Other Other +9686bf28-445c-497d-badd-09e26303284d 1 Other Other +9686fdc7-a33f-49d5-a0ae-3282d56d9e93 1 Other Other +968728c2-ed25-4433-a9e8-89f79770de0b 1 Other Other +96873684-c88a-426e-90e8-741abcacaa98 1 Other Other +9687502e-5f67-47fe-a2ab-be40b0a76d09 1 Other Other +96876192-d027-4547-9eba-4eccb14579a2 1 Other Other +9687ce5b-42a8-4e45-b389-7d0538d75358 1 Other Other +96881064-149f-434e-98ad-ff2afa34d5d4 1 Other Other +96881364-b049-4432-8d7a-bde1ba7400bf 1 Other Other +968816ce-dbad-4921-8fe7-4f4db2fa10d3 1 Other Other +96882d68-6539-4c4d-97f6-2cf4905f63ea 1 Other Other +96884a98-d43a-4ae5-9024-3b35d2a10aa7 1 Other Other +9688b586-5fe0-430d-ab9e-a1da533ecdc7 1 Other Other +9688b615-fe8c-4c29-b914-bcbfdbde2ffe 1 Other Other +96890b76-73c9-400b-9b67-122471d6541b 1 Other Other +9689d987-9c0f-4814-b97d-e7e21ace93f7 1 Other Other +9689f74e-095b-11e8-9e36-fa163e8624cc 1 \N Other +968a13e4-5ca4-404d-9cb4-c3f691546f50 1 Other Other +968a1a61-37d0-4c3d-893d-76e66e416548 1 Other Other +968a2160-4efc-41a0-aa06-077590204a97 1 Other Other +968a2169-30e6-46bf-a54e-ba32227cd7c8 1 Other Other +968a4606-3ab0-44e9-a296-b7f1c9171009 1 Other Other +968a47fa-2698-40f7-951b-2d45c2e88861 1 Other Other +968a4c2d-c18a-443b-8271-57450b10d9f1 1 Other Other +968aa2b3-4729-4ecb-84b9-ed53bc0161e6 1 Other Other +968ab00b-7e1d-4752-a535-4e914304c538 1 Other Other +968ab7eb-6d94-4764-960f-c6fa2de08c8b 1 Other Other +968ac17b-12d9-4daa-b7d0-7f661da2d867 1 Other Other +968aea8f-ed05-415c-903e-3f2fb3a68048 1 Other Other +968b0530-786b-4d50-9987-e9048202d487 1 Other Other +968b26ee-c279-4b08-8f40-c300352d5495 1 Other Other +968b398e-6430-431e-88af-2a6d98796100 1 Other Other +968b681f-9e52-4b54-8a81-dce721938bac 1 Other Other +968bb3e9-7c24-440e-9beb-57f4e4767f77 1 Other Other +968bd112-7d01-4ce5-84c6-35cbf6f8bbb1 1 Other Other +968be909-3e9f-4219-a37f-0e32bb57d578 1 Other Other +968bf71c-a627-4b1d-b437-3196fbf9723a 1 Other Other +968c27f0-9e59-4af7-a21c-9161b2094639 1 Other Other +968c4e79-17ef-44b6-9fdb-b68873fa734e 1 Other Other +968c6dae-03bf-45d2-8e64-2cc9f5bf7c1c 1 Other Other +968c794d-322c-43a1-8d6f-9d1c2ade0c16 1 Other Other +968caadb-993b-45d9-9dc4-f6fdb68d8a94 1 Other Other +968cd10e-3bdc-4938-b21c-50e0352444a5 1 Other Other +968d123d-0916-435f-ba28-9298026b023d 1 Other Other +968d126f-349c-444f-9784-eb2846eb7c9c 1 Other Other +968d25cb-15cc-44e3-818a-9efb16d9b79f 1 Other Other +968d48be-8b2a-4493-98cd-c3c3f4c384cd 1 Other Other +968db9a0-8de6-49ef-bc4a-eb3961665bba 1 James Other +968e1858-0748-4223-a4ce-4b3f68a5bb0e 1 Other Other +968e3e1d-a140-42f1-aef2-4109509416f8 1 Other Other +968e53ed-9ef3-419a-8986-d20e69a786bf 1 Other Other +968e5b3f-43d8-4f82-a02d-abb742670de2 1 Other Other +968e6f9c-5197-4ccf-8075-1391967c9dc1 1 Other Other +968e7c98-886b-49ef-94ca-5e08a5c88963 1 \N Other +968ed80a-477a-43d4-8afe-760962f20684 1 Other Other +968ed90a-abbd-4e36-a5aa-8ae37a47caab 1 Other Other +968edcc2-2816-41e7-a1e2-5d381a9b1715 1 Other Other +968f6d74-4636-4a07-b6f5-4f630904de7a 1 Other Other +968fcc04-55a6-4821-a8d8-1b62bf12794b 1 Other Other +9690393d-e9e2-420f-aaff-91f61661e134 1 Other Other +96904ced-2c20-45f4-b85e-622b0ade9682 1 Other Other +969053d1-ada8-41ee-97ba-3daafe2aef21 1 Other Other +96905c7a-0660-4d70-893f-6d9d0e7ced32 1 Other Other +969073f2-6970-4554-9049-21ff43b15495 1 James Other +96909dcd-c949-455f-b86e-9961ddd91f94 1 Other Other +9690a5c2-fb27-4bbd-a768-2803c283676f 1 Other Other +9690d53d-6403-4f61-94ef-eb32cae630d0 1 Other Other +9690de91-cbef-46e6-9fee-d9341d0b49f0 1 Other Other +969136a6-e77f-490c-b9de-fb58026aa925 1 Other Other +96916371-7ac3-4804-8846-29d731aad800 1 Other Other +9691765f-69b6-4234-99c3-3e4292062173 1 Other Other +969203d3-4e8a-4521-806d-e526df74d2cf 1 Other Other +96925a70-f381-4ad8-924e-75e708289f79 1 Other Other +9692b73d-4da0-4bf9-ad91-2a79cfbc6118 1 Other Other +9692c304-7aa3-4a68-9cc4-646e18fd10a2 1 Other Other +969307bd-26d2-4513-838b-ccf17a1c35a7 1 Other Other +9693129f-b0f4-47bf-acc1-4673573a48bf 1 Other Other +96934432-f993-4e38-9742-1500724dcf76 1 James Other +9693b5c0-2ab7-441f-a2ae-c5717388dda2 1 Other Other +9693cbb0-3e16-4ad1-9013-3381229e20a3 1 Other Other +9693faff-bb8d-406d-a2ef-37a85de82b57 1 Other Other +9693fb19-9615-4224-b247-fce74972c09a 1 Other Other +9694731a-27b0-41b6-8e5b-a5c7205033c4 1 Other Other +969495bc-fe55-4c4a-895d-b5137f9cf929 1 Other Other +9694990b-a16b-4349-a307-6c54a5fb35d9 1 Other Other +9694eb82-cc83-42da-8ae9-4293caad9f87 1 Other Other +969509e8-4756-48a2-83da-07dc1e860fa4 1 Other Other +969525a9-4700-4df0-9dae-9cffa052da29 1 Other Other +9695405c-758f-466e-a2b4-dd9e7f4b37a4 1 Other Other +9695e021-808b-4f66-8965-8a115082faf7 1 Other Other +9695ecb8-055a-4b16-98d4-7e34783f3717 1 Other Other +9696659b-c690-49ea-8b7a-a8f283041b10 1 Other Other +96968c67-e9c5-4e82-919b-f76089861353 1 Other Other +96969ffc-3572-4d7f-8a09-f0447fa2aeba 1 \N Other +9696d859-65bd-46fd-a7f9-5724b023a2f6 1 Other Other +9696e1b2-19bf-4fb4-8ae8-7e9552226088 1 Other Other +96979037-47a3-4fe3-91cd-84121405c17d 1 Other Other +9697c616-8702-44b1-bd76-1680490a7bb7 1 Other Other +96980f8e-4c4b-4147-aabf-037fa874cd27 1 Other Other +96982bfe-53d9-4961-8a99-28a5818a3873 1 Other Other +96989994-bb6c-4283-a14f-f8b05321301f 1 Other Other +9698f468-0b48-4f43-afd8-f0ba7faff773 1 Other Other +96991bdf-e099-43a7-9964-d62496d4a144 1 \N Other +969961a7-e323-4e1b-ac1c-567d57dc4278 1 \N Other +96996680-ebc7-4fb1-bf29-8f327bb83a5b 1 Other Other +969978eb-db1e-4630-99ce-be2b1ea90caa 1 \N Other +9699c8cc-9043-415b-a23f-ddf9c42831dd 1 Other Other +9699ddf2-3300-44f5-a599-07aaf3ec4b9f 1 Other Other +969a01bd-8a90-4bf9-ac85-1939fc27417c 1 Other Other +969b0784-ec34-4287-9c00-5653b48fefc8 1 Other Other +969b265a-e04d-4337-886a-275a68165234 1 Other Other +969b2ef7-a7be-4d00-9635-851e48cc59d2 1 Other Other +969b598c-b14d-440e-90ef-c88f9bc722e8 1 Other Other +969b6e7c-7720-4deb-93d9-fb671d1c5760 1 Other Other +969b948d-9236-4390-a1f9-a22486c91b3e 1 Other Other +969b9851-ee66-4f3f-81f1-09525a76d602 1 Other Other +969bb48f-021e-4deb-b067-18b02e4268de 1 Other Other +969c1146-f214-4686-895d-4a3cec49c4a3 1 Other Other +969c581b-0430-4d1a-b6f6-0c9bec288da6 1 Other Other +969c9c1d-8747-45da-b797-373c128bd5a2 1 Other Other +969cd085-84ee-4cd5-87fe-d9223454f30e 1 Other Other +969cdec6-9037-4bbe-bd41-48a46592ddfd 1 Other Other +969d0098-5cce-44e2-9277-a349db79be7d 1 Other Other +969d2b38-5c1f-407e-8970-04686548c143 1 Other Other +969d65f7-5e2f-4487-b76c-6d11dec1de91 1 Other Other +969d6c80-cb7f-4b7f-80e6-157dafc8428c 1 Other Other +969d8602-e663-4d14-bd8e-3d0afb9fadff 1 Other Other +969da3de-45a0-41e9-9441-a38c3745af0b 1 Other Other +969dc9de-5b26-4189-b12f-799a1dc8d630 1 Other Other +969df2f9-3e25-43e0-a6c4-33ad8d9c2f7c 1 Other Other +969e9c53-4601-4e97-8f31-244543a642f2 1 Other Other +969ece6e-1827-4b77-a4ff-8c6e56dd1220 1 Other Other +969ee60a-695b-4ec3-8809-d7010db11845 1 Other Other +969f5567-8bf8-4410-a654-3db64e4c5d55 1 Other Other +969fb964-c49d-42a7-a211-0d0f72676c15 1 Other Other +969ff06b-3ecb-44f9-b5d9-5614c9825b3d 1 Other Other +96a02ce5-b53b-4466-a392-3275535731c4 1 Other Other +96a0adde-2951-439a-aa5c-060e2bd250d1 1 Other Other +96a0b6be-ace8-4810-ad62-cfda9c4b2d7a 1 Other Other +96a0c3ff-f212-4543-9c0c-e99823f52c57 1 Other Other +96a0df2a-a9fa-406b-892e-abdde70fab3b 1 Other Other +96a1071a-b6f9-4418-a9ff-61778487e434 1 Other Other +96a17148-10bb-4653-879b-39d609e74bf5 1 \N Other +96a1826e-9455-4880-9cc7-fea2f2bd0d94 1 James Other +96a18293-9f94-4bfe-8513-592008c96f54 1 Other Other +96a1b5fe-246c-4926-a70a-4b8c560f97f7 1 \N Other +96a1c53c-7fa3-4016-bc0b-b1f8d6d8376c 1 Other Other +96a28167-920d-4fb2-881b-3d41d3758c58 1 Other Other +96a2f41a-791f-4810-875c-c1d9b7a8d737 1 \N Other +96a36a80-20e2-4e53-9d73-cf16593cc089 1 Other Other +96a373ab-0dcb-4cf0-aaf1-0fdaa76a427f 1 Other Other +96a385b1-9aa6-4141-b8c7-98b83d4d50f1 1 Other Other +96a3d256-5a81-4803-ab2a-7576d8affe6b 1 Other Other +96a405aa-327d-4d46-8225-419f47cc22e7 1 Other Other +96a408fd-bd51-4fd2-852a-1605782897eb 1 \N Other +96a4107f-ce10-4558-bdad-b841d72f8811 1 Other Other +96a42543-01f3-453c-bce9-b00e71fe14fb 1 Other Other +96a48795-36b6-4084-b020-03606b77b4ce 1 Other Other +96a48ceb-25bd-4581-8617-a6099a0bf6e6 1 Other Other +96a4a34f-5fe2-4e6f-add7-f2097e7681df 1 Other Other +96a4ce5e-e0e0-4d9d-96d4-0942c002e8fd 1 Other Other +96a4d634-12ab-4554-bd36-a4c6360cf0bd 1 Other Other +96a4eb89-0ae2-4bc3-affb-58e39a82bbe3 1 Other Other +96a59878-ecc6-480d-ba11-8544fc9b05fe 1 Other Other +96a5a938-59f4-4311-aeb7-11985b05a530 1 Other Other +96a5b28a-6b2c-485b-86a3-ccf343130d8d 1 \N Other +96a5b33c-3b63-480d-b5be-c0cb6d633ac7 1 Other Other +96a5c3d6-7a8b-463a-8bee-33bcbede78f4 1 Other Other +96a66dd2-9ae8-43ca-b3c0-cdf597ec527e 1 Other Other +96a685e9-92e1-4d66-92fc-620d63df57e1 1 Other Other +96a6b465-0f40-479c-a4a6-eedc164495f4 1 Other Other +96a6bae4-0412-447d-9752-1cf3463e5fd0 1 Other Other +96a6e8a4-18cc-4a18-864a-d320dcd1de6b 1 Other Other +96a71821-2063-4ee2-8d60-25cc0f2b6d57 1 Other Other +96a77e7d-fc7a-430f-a55f-ebe90d0ca17d 1 Other Other +96a79026-5ff0-4812-b8e4-78c7802929a9 1 Other Other +96a79ddc-3219-4410-9ed3-3208f1c06260 1 Other Other +96a7cfd5-c418-4426-bb74-39d4411ce8bf 1 Other Other +96a7debf-9782-4bd8-aeb1-9c2bc913e36b 1 Other Other +96a80a1e-669d-4419-88cc-6ff07a3bd7ce 1 Other Other +96a8ac9d-3508-4507-b839-595d2d5752ec 1 Other Other +96a8e8c2-f67d-404e-bc1f-c153282ce416 1 Other Other +96aa2cec-e249-4de1-8e03-4c0945ff8ecf 1 Other Other +96aad6ac-7f59-4250-8dd7-05f0cd45fa98 1 Other Other +96aadef4-3209-4464-b64b-6f1fd6e084a9 1 Other Other +96aba995-fd51-4658-920a-8b7d4428a41e 1 Other Other +96abbe81-6f0f-4558-aa9e-f852b47a5c85 1 Other Other +96abf08c-ed7a-47b8-adf7-f9a5a83ad828 1 Other Other +96ac547d-1f13-4572-b939-becd59985d7f 1 Other Other +96ac5b8e-bfd1-40c2-82aa-171158361e13 1 Other Other +96ac6762-f543-41fd-80e0-e9a94d2384bf 1 Other Other +96ac6826-c977-4b0b-8c89-8a92a8a209ac 1 Other Other +96ac7212-7758-467b-97b5-f1a3c7c63f1b 1 Other Other +96aca1a5-0938-46db-818a-e25aaab815f1 1 Other Other +96acab69-66c4-4527-ac26-5bc404a82f07 1 Other Other +96acc3db-a44a-46e0-92f1-094641d11e8d 1 Other Other +96ad04ae-8ebd-4bfc-a57d-b2ee0957853a 1 Other Other +96ad0824-0457-4aa3-a257-f42b873c4a9c 1 Other Other +96ad35b5-ba30-4102-80c0-fe0461d80e5d 1 Other Other +96ad7f15-a2df-4420-af23-31bfeab075c8 1 Other Other +96ad837c-2114-424c-94fc-2f73b372b3dc 1 Other Other +96ad8e4d-9473-4ee3-8d5a-4b45327caa06 1 Other Other +96adafe1-0b2f-4a94-b7a5-36e41fe157ce 1 Other Other +96adce74-9582-4667-ba9b-2e0cd46bc8e7 1 Other Other +96ae17e9-396d-4543-9686-12cf59a85c9b 1 Other Other +96ae4121-6cbf-4c50-a1fb-ae3ce2f106f7 1 Other Other +96af43d1-498c-4dec-860a-7a580fb64ada 1 Other Other +96afb096-d7f4-4472-9a90-5c674351924a 1 Other Other +96afb10e-1e0c-49c1-8eb6-d27a687fa5a0 1 Other Other +96afd3da-e507-4cdb-ba1b-82637b76684f 1 Other Other +96afd863-2992-4928-8841-653d24ad4acc 1 Other Other +96b0063b-4038-4476-8a37-b38be37799e7 1 Other Other +96b077cb-1ab4-4ceb-95b4-a0178216b07f 1 James Other +96b092dd-e61d-41f9-85ef-a29b3afa828f 1 Other Other +96b09ea3-8c37-4c4f-a9d9-94bd422509ef 1 Other Other +96b0f944-d146-4d07-9dfd-52ef386586c6 1 Other Other +96b1f367-bb62-4f34-8c34-5ac0b9dc2231 1 Other Other +96b21c0b-c74c-4fba-8665-1c56f84f0d42 1 Other Other +96b2d9f7-569f-4d5e-a283-bce1c0533772 1 Other Other +96b30309-e7e7-431c-9715-d0041feb83d6 1 Other Other +96b36b29-ee63-40c0-8186-ca0acd0ebcc9 1 Other Other +96b39530-43e7-4c1d-9ccc-a8a94ed53960 1 Other Other +96b3a06f-228f-4fb4-93b1-1bbd0d3e9294 1 Other Other +96b3ce5b-9a87-4805-ba63-f5a45b952a44 1 Other Other +96b3e6df-e2d9-4396-971e-e766f669f69b 1 Other Other +96b464f6-6f74-4cfe-93b8-b2e14ab50ec4 1 Other Other +96b46fbb-7d03-4a3f-aeeb-e3e3cfadc097 1 Other Other +96b47f9f-3291-4719-b1a2-b66a74684c28 1 Other Other +96b48753-c304-4a0a-bfa7-7c64a013d8c3 1 Other Other +96b4a7f6-3f39-40ab-9ea1-6bc58808c14f 1 Other Other +96b4a9ca-1493-4a22-8d95-2e56c164cf08 1 Other Other +96b50449-0df9-4529-8b49-549799c85fd8 1 Other Other +96b53bad-f123-40f5-a362-134c74754767 1 Other Other +96b5d7c6-1f27-4346-977d-ce2458bf7c34 1 Other Other +96b619f6-5568-42ff-a199-b36d673c90f3 1 Other Other +96b643ea-dec9-4555-b7bf-acc0d29d677b 1 Other Other +96b64651-c591-44d3-b3b5-6b06e577f0c9 1 Other Other +96b6edc6-0c61-4726-9194-8768d490585f 1 Other Other +96b74ae9-a480-4773-8467-b1fc6312739d 1 Other Other +96b75189-111a-4de5-a9ce-aedb2a4dbc24 1 Other Other +96b76a05-3e24-4a6a-a128-ddba01e419fb 1 Other Other +96b7843c-9cb8-4421-a2b3-fdb99e58ea1b 1 Other Other +96b7e4f7-a6c5-4f99-b146-9fb3eec2d835 1 Other Other +96b800f3-80fb-4dd0-a741-d1dcbdc67abc 1 Other Other +96b86b5c-dce6-4550-bf1c-92a206756e8f 1 Other Other +96b88a6d-19e7-45cb-ba70-3576b808b29e 1 Other Other +96b8ea58-6b94-4b91-a2b5-8da955ea93fa 1 Other Other +96b8fec0-bced-40b7-af0c-7bf68bac6095 1 Other Other +96b92542-3e01-4ee6-a806-8df25220f75e 1 Other Other +96b97a3e-de1e-4b1e-9cfc-35e19ff0dbcf 1 Other Other +96b9846e-1b8c-47b9-b905-4cfa2749e560 1 Other Other +96b998ca-122e-4816-9f7c-73305f762761 1 Other Other +96b9a71f-9993-4c03-9cf2-4ddabee9a86f 1 Other Other +96b9ac19-404a-4611-bcd8-a09be6db3a8c 1 Other Other +96b9c4ab-81ff-42c3-b8a8-b55c1b3b0013 1 Other Other +96b9d04f-eaaf-4a83-bb4b-f0bf3ae4c72d 1 Other Other +96ba048d-e784-4f9c-a7f1-1e4f3084fe38 1 Other Other +96ba08c1-ab96-4c66-80fe-6cd1e8378620 1 Other Other +96ba095b-7ca5-49aa-aa63-e195951e4fae 1 Other Other +96ba2210-0dfe-4a71-90c6-996575c9da85 1 Other Other +96ba370c-4f89-4bc5-b427-528d60fa6b9b 1 Other Other +96ba6263-a7c6-4b63-9d88-e9f7fc330011 1 Other Other +96bac848-f4df-43cd-908c-57f610419bcd 1 Other Other +96badbdb-e6da-4a16-ac2b-b0daac0afa1c 1 Other Other +96bb13d1-aaa6-4b08-af74-51d66243361e 1 Other Other +96bb1656-506b-4376-a4b4-c0fd4515a1fb 1 Other Other +96bb3488-be5b-49d8-9682-36d90a07ec9b 1 Other Other +96bb5b79-eea3-403f-b0a8-87b6c274e4bb 1 Other Other +96bbb8a4-5ec0-4246-9f68-839ee65848ae 1 Other Other +96bc2aee-5aeb-4c22-bae0-6e31baf0ab98 1 Other Other +96bc49de-797e-4ab0-8d78-959b78e17153 1 Other Other +96bca792-6f7c-4505-9dd4-3b5ce544e5ef 1 Other Other +96bcb74e-3ad7-464e-89f3-e9ce4d36e361 1 Other Other +96bcbcbe-2f03-415b-b07d-5960fa75aeb1 1 Other Other +96bd1cdb-2b81-474c-858b-29f7a38dd065 1 Other Other +96bd3533-a56e-44e1-9d59-47f63aa5efd4 1 Other Other +96bd51c6-3b2a-431a-a5da-c844d6588804 1 Other Other +96bd60b1-87c8-438c-a00e-5901598f39d4 1 Other Other +96bd9a48-f36f-49ae-b2cb-20563e340105 1 Other Other +96bddd2f-31d7-4c5a-8aa9-7f58a71af7f9 1 Other Other +96bdeb7c-2924-4bf2-8dbd-8b1bf191b99e 1 Other Other +96bded03-b1ca-4586-9708-ecd4aa4bbe10 1 Other Other +96bdf1f1-0570-4aaf-b7b4-aeaf0fa09501 1 Other Other +96be985e-7e9f-452d-87ba-0c3e872e263e 1 Other Other +96bf21f7-291b-4af5-9167-88d3acf4a9e7 1 Other Other +96bf2481-7f00-4c1e-bbae-cf60a56064a5 1 Other Other +96bf64d0-76a3-495f-bb48-fe5c0fedb85e 1 Other Other +96bfc97b-f799-41c5-b7b2-097065fa1a2b 1 Other Other +96bfcb76-2685-43bd-b194-0fd71cceef58 1 Other Other +96bfcb8d-e847-4985-b779-4cd050aa0848 1 Other Other +96bfdbb8-356c-49f8-9953-525108036c68 1 James Other +96bff429-96b1-48f3-9c93-79a72c6d1344 1 Other Other +96c062f5-46b2-4409-a2c2-e89ad3a60864 1 Other Other +96c095fb-ae58-413f-b921-e2bc6f5b3589 1 Other Other +96c0d481-9ac5-4767-ba56-6c59c64b1d29 1 Other Other +96c10ac0-31ba-49ce-b867-72ff110ef387 1 Other Other +96c11916-d9f0-42ba-8aca-6dcef07b4481 1 Other Other +96c128d5-c735-414f-8344-e74ef06e44e9 1 Other Other +96c13260-f7ec-46db-a85b-19ae3d8170d3 1 Other Other +96c133bb-7196-4120-940c-6d5cbc03ba2b 1 Other Other +96c13ef4-c30c-4c85-a401-a17f1e5ee652 1 Other Other +96c15d72-4667-4213-90a8-7886b151ebc7 1 Other Other +96c179f6-f0ee-48e2-a463-e492b8c6d18b 1 Other Other +96c19357-5593-47ce-b61b-10c30da1210e 1 Other Other +96c1e161-73bf-42b8-b96f-45b9ba5b99ef 1 Other Other +96c1e1fc-800a-4acb-9a8d-241c414bd41d 1 Other Other +96c1ed7b-cb8f-46e2-8107-32042df91bac 1 Other Other +96c26b60-522a-4d18-8ca7-54b24cb70b21 1 Other Other +96c289f2-45d5-4bfc-b63a-9fdc5bcf0947 1 Other Other +96c2b1d2-5974-4623-a236-4f94cba73529 1 Other Other +96c2d9cb-6092-4401-a91b-45a3ddbb4f61 1 \N Other +96c2e746-22b6-4c4d-a197-095100cd9452 1 Other Other +96c3030c-9ea2-49be-ae28-f4f339f48921 1 \N Other +96c303f1-5c04-42dd-a5f2-85f39e5c90b8 1 Other Other +96c32416-fd6d-40b5-8e72-3bf6b262f987 1 Other Other +96c325e4-789b-4687-9661-720e2a34c826 1 Other Other +96c33572-40fe-4449-8b49-a2b118ac64c0 1 Other Other +96c3a589-5d15-4a47-816f-f2792f4ddedf 1 Other Other +96c3b3e0-1f53-480c-942c-5a83cb34e058 1 Other Other +96c4582d-73e2-4c72-b3fc-bead92cb1698 1 Other Other +96c46336-7f47-41b9-82da-07e9769dfb59 1 Other Other +96c46a8a-70af-4140-81cd-849a7d35b445 1 Other Other +96c51573-56e8-4879-876d-787966b59f78 1 Other Other +96c525ab-baa4-46b9-b8e7-dfe0f8410190 1 Other Other +96c54d3c-fdb2-4704-ac0c-81f22793ed57 1 Other Other +96c569a7-1c20-4712-af50-f823e0fecf90 1 Other Other +96c59c6e-2de9-4567-bcb9-7a86e1c7dd83 1 Other Other +96c5b9e5-446f-4a8a-ab38-1a523801e8f1 1 Other Other +96c5c6d0-1de1-44ac-a5cd-7c0b19d30abc 1 Other Other +96c5d4c9-b07a-40dc-8abe-b9aa4d97200b 1 Other Other +96c5dde1-ae7b-48ae-bb99-e0334db0b73f 1 Other Other +96c5f42e-dd60-4c50-a37a-685f7baf8639 1 Other Other +96c60927-fc1b-422f-89f4-6f01eda9c9cf 1 Other Other +96c627cf-233b-423b-8315-f8dd5fb93533 1 Other Other +96c63ed5-6ef8-4176-820c-2846dc820462 1 Other Other +96c65580-b155-41e0-b03e-24d736b7a6d5 1 Other Other +96c6b71d-cfe6-4159-9e22-15e78928ef14 1 Other Other +96c70ca5-206d-48dd-b8f4-703a88a23797 1 Other Other +96c72766-1e49-4ce2-a967-28400858f21c 1 Other Other +96c75d79-9d51-4793-9bc5-ba885de0a218 1 Other Other +96c76d30-0277-11e8-a62f-fa163e8624cc 1 Other Other +96c78cbb-8b55-4ae1-ab61-93c03acf6fc1 1 Other Other +96c873db-c5b0-4acc-8814-2de20fd509e8 1 Other Other +96c87d72-f125-439e-8c21-89491a6e3a7b 1 Other Other +96c88639-e7ac-4418-b627-d35b53910433 1 Other Other +96c8e56b-8392-49b6-9361-567fd2227e30 1 Other Other +96c913bd-6cfd-4277-8d14-d0155d9a06a9 1 Other Other +96c97123-a0ca-4044-82d7-617fde66d08e 1 Other Other +96c97501-1ec4-4dcf-9c7a-58bb3c0e1cf1 1 Other Other +96c9f17e-9fe1-4e15-b98f-8db6fb8768f0 1 Other Other +96ca4765-0401-456d-9623-4b0321de196a 1 Other Other +96ca4bae-21a3-43c6-949d-d44aea15300b 1 Other Other +96cb5c3f-c9bc-4388-910a-d411e8241000 1 \N Other +96cb92d8-0be8-4c9c-b176-0e82f6e11d90 1 Other Other +96cbb794-900e-4083-a0bd-35744c71d0ac 1 Other Other +96cc12ca-31d8-4ca2-bb30-18248d66d9f7 1 Other Other +96cc188d-0023-4c45-9a80-40fbab829b9d 1 Other Other +96cc2487-5e21-42ed-987b-026e88079aab 1 Other Other +96cc249c-82d2-4e14-ab42-3adddedae102 1 Other Other +96cc6a90-1bbe-45d3-8a84-a0696813ff85 1 Other Other +96cca4be-b7bf-47e8-8422-573a27d83d99 1 Other Other +96ccdce2-f14f-42a1-ab1b-d05ebf1d5af6 1 Other Other +96cd15b6-a6ae-44e6-bc55-6d3d6d71ac12 1 Other Other +96cd2977-7540-4f08-af0a-dc97962a74ed 1 Other Other +96cd31d5-8b57-4e11-a83a-3aa70c57d8dd 1 Other Other +96cd80aa-c09b-48f4-a2b4-fbf1f47ec4f4 1 Other Other +96cda612-ab41-4198-b50c-773770d4415c 1 Other Other +96ce2aaf-49ed-4879-8970-9c5cd90e7dfb 1 Other Other +96ce346e-73a9-418d-b84a-dfb30273eb75 1 Other Other +96ced87a-0efa-4e6a-a76f-5fbc28a2a316 1 Other Other +96cee95f-447b-4b64-be6d-b6fb4acd41dd 1 Other Other +96cef6b9-901b-4f18-b41e-c31af5166026 1 Other Other +96cf092f-0742-4010-a228-5fab5fc1a841 1 Other Other +96cf2756-326d-45ea-be9a-525920381cc6 1 Other Other +96cf4183-b23e-4188-9f53-631a0d3bcd5c 1 Other Other +96cf6e94-bc29-4c8b-9d7d-0138ce705d43 1 Other Other +96cfb30b-9346-4de2-ba1f-fb18cb745b29 1 Other Other +96cfcf9b-d57e-4285-9362-abe9af880f78 1 Other Other +96cfda6a-9f2e-402e-9e7b-aec00e9e7cd7 1 Other Other +96d04182-ee6c-4626-a155-40a0d7064604 1 Other Other +96d0475c-8709-43be-a1bb-265196111cf3 1 \N Other +96d04f69-58db-453e-bbe7-c6bef21672ec 1 Other Other +96d07326-a53f-4ac0-94e6-eb53cd436dec 1 Other Other +96d087ba-809c-4ff4-9158-d1dd10f5e5a3 1 Other Other +96d0a1b2-e1c3-4673-8093-80918a334a61 1 Other Other +96d0c987-f0f1-4995-abf7-e63945e04b42 1 Other Other +96d108ce-b9a0-41a2-a22f-8c314e70a40d 1 \N Other +96d14e81-dcf1-4eae-8dea-55baa4a3a3de 1 Other Other +96d16615-ba0e-43c2-89af-4803a8ee7cb9 1 \N Other +96d1bb18-0582-4b9f-93c9-79286fe11d32 1 Other Other +96d1e97d-17e8-4a3e-97fb-0a168b6dc12c 1 Other Other +96d20913-6fa8-4e0f-8f84-f56705ace45c 1 Other Other +96d20f02-2035-471b-a0b2-c4419a65dc42 1 Other Other +96d2143f-25f6-4124-892c-cefae0400256 1 Other Other +96d22446-0493-4fa3-8518-06fdc8d385a4 1 Other Other +96d2daf0-d88e-493b-bb54-70e0339cb358 1 \N Other +96d38d9d-f3a5-4dc4-b5b0-b3cca2c5fe7f 1 Other Other +96d3d60a-8bd3-4924-a7ef-a0abdbc3190b 1 Other Other +96d3f85d-fd18-4add-a44e-20511222202d 1 Other Other +96d40db3-a2ef-412a-9dbb-2c05bf18ab2e 1 Other Other +96d419e3-e96e-46a8-9780-0382aedcb41e 1 \N Other +96d4201e-f366-4292-b15c-ca07b9dcb59b 1 Other Other +96d44957-a7c6-42a9-bb10-3b5163a8a435 1 Other Other +96d45a1f-f9c7-4e4f-b8c7-0b738a189297 1 Other Other +96d4b5f8-4ec6-4068-8bfc-42a44608cbe9 1 Other Other +96d54105-b261-4062-84a5-bf82930e1e52 1 Other Other +96d559b1-caac-46bc-8769-4477e99d87df 1 Other Other +96d55ca9-71c6-4f7b-b191-a45adee0f253 1 Other Other +96d5a669-b880-416b-91e6-ad10d83d0c2f 1 Other Other +96d5b0f1-5007-40b2-9f0b-ed1f4d66587f 1 Other Other +96d606fe-ba26-49a4-9997-4f7c3ca6f91b 1 Other Other +96d6a03f-d99f-4863-b59e-bd4d068761f2 1 \N Other +96d6acdf-3f47-44f1-ab24-5e871108bfda 1 Other Other +96d6c2ad-47a7-4b51-8839-904fea284bb2 1 Other Other +96d6cb3a-d7c6-4e6e-8472-67c2d8d9f8a6 1 Other Other +96d6d97f-e62d-449d-9850-434d189d4dd0 1 Other Other +96d6f269-f7ee-4991-a647-6d2550501152 1 Other Other +96d732fe-d24a-4e76-bfa1-644d317c9afc 1 Other Other +96d764b5-cb5e-4b70-8c3b-ee24eceb1ba1 1 Other Other +96d76e92-b6cb-45a5-a3e8-42feeb904ec8 1 Other Other +96d7905d-d331-4b24-9048-e29aae7f649c 1 Other Other +96d79779-43c2-409b-84bc-9634db4bc3a6 1 Other Other +96d79d08-2521-4825-9457-5cffb0318c6c 1 Other Other +96d828ab-59ce-4d49-a229-664f0e9990a6 1 Other Other +96d88722-22d5-4deb-bec4-ab4f14fc6b5b 1 Other Other +96d8a932-e3dd-4b88-97a5-5405a20e90a1 1 Other Other +96d8ad5d-3ae7-411f-81fe-5d7b16f1eae9 1 Other Other +96d8d979-8632-4800-8e06-95ede139efbc 1 Other Other +96d92074-8d4f-49a2-9a8c-26c8063128d8 1 Other Other +96d966df-2767-48ac-9584-7a032af3a1c2 1 James Other +96da0300-d414-465a-9b8c-47a1cb4d4724 1 Other Other +96da0359-1211-4cdd-9e56-648eccc93033 1 Other Other +96da06c4-0ea1-4938-a1a2-8b1c18581327 1 Other Other +96da4274-c9db-447d-b10c-dd8ce1b05d1b 1 Other Other +96da4414-09eb-4637-8c7b-3baa0969849b 1 Other Other +96dab64c-4da3-46c6-bb18-641416641e8b 1 Other Other +96dac370-5848-4b7f-bbc4-4bc9b6a823ab 1 Other Other +96dad950-b953-4664-9379-19f007479a8f 1 Other Other +96dae8cf-4378-48f7-b2b5-cb314227dfb2 1 Other Other +96daf921-1c20-4d28-8954-d5cf2babc8d8 1 Other Other +96db9e6f-d842-456b-94f0-91ae384059fc 1 Other Other +96dba37a-e370-41cd-9aac-2a638ae579da 1 \N Other +96dbab2c-9432-4a0f-9b7e-97044bdee68c 1 Other Other +96dbec20-cf8e-42e0-bca6-1ee91589d621 1 Other Other +96dc3f3e-4943-40bc-b02f-e780f69cff63 1 Other Other +96dcdf28-64ca-4b82-85a5-346567bde7d3 1 Other Other +96dcf4bb-a3a7-489e-81bd-3923796dc325 1 Other Other +96dd0c18-1152-4e3f-a288-318a172ce491 1 Other Other +96dd1cbc-4471-45b9-a2af-731eb0bae107 1 Other Other +96dd37ee-05ce-45c1-aef3-4b0821a2e11e 1 Other Other +96dd7ee2-08bc-4210-a6c9-22d5f2a63d42 1 Other Other +96ddacc5-6d58-4f96-9563-d71564c11e79 1 Other Other +96ddc4d9-ecff-4194-86e2-474d9b99b395 1 Other Other +96ddf69e-51a5-474b-a27d-d14dae131d85 1 Other Other +96de4ac5-2006-40c8-834c-a5e64366ea7b 1 Other Other +96deba3d-978d-426c-8801-16340c0fad96 1 Other Other +96dee560-adc0-425f-a667-ec15e4e58d3d 1 Other Other +96deed38-4f92-444c-beae-e8e66714aac5 1 \N Other +96def998-c660-486b-8845-07193b54d1cd 1 Other Other +96df3796-58e2-4063-a428-188e3e1e58e6 1 Other Other +96df6d34-1b92-4f59-ad08-342adce5a4c8 1 Other Other +96df8d0a-98c5-4350-891d-7fc2ee4879e1 1 Other Other +96dfe91e-565a-44f8-9087-cbb00cc2bd68 1 Other Other +96e04869-788d-46e4-aeb0-158994a63c99 1 Other Other +96e05044-696e-4a53-9ae4-f38e4f212f53 1 Other Other +96e09dc2-f4d6-402c-9cbb-9476ff05ac22 1 Other Other +96e0a1fe-cd7e-4875-b0aa-7a5d86185975 1 Other Other +96e0c734-18b6-4338-b9a8-d421b3f7de54 1 Other Other +96e1421b-4ea2-4b60-a7c0-75814fe37145 1 Other Other +96e16103-26db-44df-9575-7da4038a4d20 1 Other Other +96e16573-58bc-4677-b176-4bb7e66d31c8 1 Other Other +96e18bb0-818e-4b52-a54b-40c0ff32b3ef 1 Other Other +96e191d2-7bc6-425e-812f-12db6ad2f3f5 1 Other Other +96e19aad-2622-49ff-aeb8-d1695bb58aa6 1 Other Other +96e1c354-3bb3-447c-b73e-1bffe7c94023 1 Other Other +96e1fa65-9e28-41fe-bfc1-2db95f0e423e 1 Other Other +96e20335-157a-4a08-a225-b24ec4065924 1 Other Other +96e2059a-2637-4fe5-8304-8ee337fd58aa 1 Other Other +96e23298-e3aa-4e50-84a1-47085a8d90e7 1 Other Other +96e23993-a7bf-44e2-9e03-18e553413904 1 Other Other +96e2436b-e88e-45b1-9e31-1c61e6756236 1 Other Other +96e2510b-e6f6-4c08-a652-806358ab6f43 1 Other Other +96e2aa88-22e5-468e-8eba-8398ba635810 1 Other Other +96e2bbf6-1af2-4d36-a67c-c0253b590295 1 Other Other +96e2c760-0adb-44ce-9031-7d47a826e11e 1 Other Other +96e2ca85-e0c0-4db8-955d-51759c1f30aa 1 \N Other +96e2e357-87a1-465e-82cc-b20f3169c084 1 Other Other +96e32193-e6fd-4156-951a-22e45ce3f7e6 1 Other Other +96e321f6-d6b7-45a9-8429-90b71c90576d 1 Other Other +96e39792-3a7b-4b8f-98d6-0dcb4cbcb1ed 1 Other Other +96e3c18e-ccef-40c4-b449-90c156862404 1 Other Other +96e43b9d-c698-4623-ae6b-4e5d903d9b53 1 Other Other +96e44f24-b94a-4308-a5b1-4da130319ec8 1 Other Other +96e4b613-9a16-4d45-8446-e3e657a130f2 1 Other Other +96e4d531-4696-4fee-8e1a-9bd226edc91b 1 Other Other +96e5249f-b0b5-487d-96ae-66398757cdb5 1 Other Other +96e533a5-f1d2-4b0e-9d57-534c659029ce 1 Other Other +96e5afcf-f7f8-46db-a321-b6ce9096f513 1 Other Other +96e5bf55-57bc-491f-9d2e-1b2756758a38 1 Other Other +96e5d777-81a5-4665-871a-cb1b1ac939fa 1 Other Other +96e6a961-7c19-4e12-abcb-534ca082c29d 1 Other Other +96e6bf75-f518-4387-a6d8-a328be6090f6 1 Other Other +96e6ec8b-1497-4ab7-8da0-f416f988a80c 1 Other Other +96e71534-7be0-4008-a425-f065d40f5836 1 Other Other +96e72554-cfd4-424b-a16b-5e81841231f4 1 Other Other +96e75031-5870-4aa5-9ea1-570d4b2ba1de 1 Other Other +96e7642e-c705-4ac5-9e2f-99a9a327e99e 1 Other Other +96e76ea0-f20f-48bd-a044-ac972743a17f 1 Other Other +96e7737e-ae97-4b3e-9a87-2cbf427603c9 1 Other Other +96e7d5ca-495f-404c-8f74-bb8516df6bff 1 Other Other +96e7e1cf-8634-4b69-876f-2860996827bd 1 Other Other +96e866a9-1831-4178-9e5d-2024cf2f34df 1 Other Other +96e8b5a3-3aac-41e8-b6b9-136e7080a17c 1 Other Other +96e8cd85-13c3-452e-8c9b-840a8dc3f2dd 1 Other Other +96e8d9c7-2487-45ef-9ed5-460a4f353620 1 Other Other +96e8f066-1aeb-4a83-bd19-3597a15e1c85 1 Other Other +96e8f513-ee21-4891-a5c5-ec97c6f2b57d 1 Other Other +96e90579-f1f0-4a20-ab2e-3a9d3782f8f1 1 Other Other +96e93f82-0366-41f5-a290-9db6644c68f4 1 Other Other +96e962c4-baf1-4241-aae7-93aabf8cb82f 1 Other Other +96ea1098-9005-4283-8450-210a5d862dd5 1 Other Other +96ea9a06-a903-48c0-87d2-01921672baab 1 Other Other +96eb0035-5a80-4b6a-8380-fe8679a2d664 1 Other Other +96eb2705-0b9b-42ba-b754-6fcacebe974e 1 Other Other +96eb61c0-6b78-4597-9d06-4ccd38d990bd 1 \N Other +96eb81a1-12c2-4721-b5f8-5fc1c22d25bd 1 Other Other +96eb983f-c232-4a9a-a4db-f916b380927c 1 Other Other +96ec4c83-1194-469d-a625-4b0b5801a611 1 Other Other +96ec523a-7bca-4ed5-942a-4bfcd8cd47d6 1 Other Other +96ec79a0-3d07-42b9-9840-a0cb8d1b7430 1 \N Other +96ec7e50-e6c6-4fd4-81eb-68cbf95101fb 1 Other Other +96ec98af-a095-4c9e-908d-cb838fca0d68 1 Other Other +96ed1ce6-139d-41ee-b1ef-45ad1c73ef9c 1 Other Other +96ed2c06-72a2-4ab7-827e-2e1f22ec359b 1 Other Other +96ed399a-fc8c-409c-88c8-e48421fb8cd4 1 Other Other +96ed9e62-9968-4508-b761-2e2b750c7da7 1 Other Other +96edc32b-1020-4a4f-aff9-ec1c3161f8c6 1 Other Other +96ee3e4d-1efb-4819-affd-4ccedf198a6a 1 Other Other +96ee6d77-dff9-44d1-92e0-e21f6355c5f9 1 Other Other +96ef219f-db42-4a57-9cec-0555b4eaef32 1 Other Other +96ef3b89-5d54-450c-99b4-31c5085ef17d 1 Other Other +96ef6a9b-ef8f-49c0-a9d9-b34b28662ebe 1 Other Other +96efb652-b33e-4d43-baea-159436fb8c40 1 Other Other +96efbbf0-f06a-4f67-896a-c7b0d01a7864 1 Other Other +96efc715-6c33-4e31-a56c-55949e84d2b2 1 Other Other +96efe30e-55de-4e1a-8eb9-f64ba7ce81a5 1 Other Other +96f07381-9e99-437e-869c-52464dd23138 1 Other Other +96f0a1a9-725c-419b-99e1-232b3c597076 1 Other Other +96f10e69-9c94-4923-8c8c-9e99137b902e 1 Other Other +96f11ee0-6996-4d93-836f-37e7130ad621 1 Other Other +96f14c3c-bd07-43b5-a87e-cbebbe5a7f8e 1 Other Other +96f162ff-ebcc-4d01-8d22-1cbb38e9f08b 1 Other Other +96f18e74-dde8-4d70-9e59-d0978fa322f8 1 Other Other +96f1a165-30c3-4736-9701-36d391de6f59 1 Other Other +96f1a36b-3c24-479c-b119-ca325a7a6de1 1 Other Other +96f1bb6e-b6b8-43e4-a944-137aa0570712 1 Other Other +96f2779f-e6fd-4f0e-8615-dbeff7a67d16 1 Other Other +96f30937-cf34-4fbb-ba04-f8f658175505 1 Other Other +96f311a3-5833-4dbf-b6d4-1dee50c9cacb 1 Other Other +96f3276a-5ae3-4ae9-b824-06b25bd490eb 1 Other Other +96f33d93-9a44-4885-890e-c6d0a63228d9 1 Other Other +96f34167-cdaf-4e81-9c56-1bfa20c8670f 1 Other Other +96f347d9-34e3-4d4a-810f-761af1bc768c 1 Other Other +96f3730a-b947-40a7-a437-a790064bf078 1 Other Other +96f3a2b3-ae28-4a96-a2ea-2eba51c07718 1 Other Other +96f3b84f-aacf-436a-a413-a366f10c6ded 1 Other Other +96f3cebe-08fb-491f-b798-5a6945e5600c 1 Other Other +96f3de38-c243-4158-a8aa-736df383fe6b 1 Other Other +96f45e0a-cbef-4e0c-9540-a83be22e4151 1 Other Other +96f4ae85-f052-44fe-aee1-ab4b7c92d676 1 Other Other +96f4daa3-ba8c-44a8-a740-1c07f616865b 1 Other Other +96f4ef3b-fdcb-4d60-8caa-08178be819e8 1 Other Other +96f4f24d-80ab-4968-afcf-84ff731724e8 1 Other Other +96f4f508-1b66-47a5-b6be-1186cc72ee3b 1 Other Other +96f580a5-b302-4d31-a8cc-fcef855cb676 1 Other Other +96f582f9-6d79-4c57-bcb7-eb87e4dbd0aa 1 Other Other +96f59aaa-c48e-4656-9b77-85bfbdefb902 1 Other Other +96f5a3e1-853f-4853-974a-09106b24ee2e 1 Other Other +96f5c722-41dd-4068-8336-42364c847c45 1 Other Other +96f63530-749e-4a6d-b6f4-7fff0bb8d1b0 1 Other Other +96f63f52-4100-4de3-a211-6f6a7621c300 1 Other Other +96f66a9e-af1c-4e71-90a7-1bb80a92a9ec 1 Other Other +96f66cb5-d16a-4fca-b038-362d36b8ce0a 1 Other Other +96f6a593-7561-4350-8031-4df22be77b26 1 Other Other +96f6bd55-ec01-4609-9d55-731597448206 1 Other Other +96f6c33b-1d9c-4318-b8b4-c2b6970f1a60 1 Other Other +96f6d0d7-8207-424a-af41-993c9cda8615 1 Other Other +96f7097b-e48c-4ee4-a69a-c7c274f96872 1 Other Other +96f70e0c-ebe7-480a-8247-dd2389d17e56 1 Other Other +96f725e5-61a4-4c61-8ef4-d3ca1cd9bc7d 1 Other Other +96f76aa7-da80-4397-a33a-8e87e7ceea4a 1 Other Other +96f76d7c-14a3-4abf-ae84-8479127a954b 1 Other Other +96f777a5-ba24-4747-b46a-22360eb67dfd 1 Other Other +96f78f80-b76a-4a0b-a167-828af57d8ce7 1 Other Other +96f79f45-5a75-441c-91d0-c976ccd721b0 1 Other Other +96f7b39a-1f74-4b24-8fcf-3d5d0a1cce33 1 Other Other +96f7d8f9-f11a-48a5-8bab-c8569770385d 1 Other Other +96f7eca4-7414-42da-9ae1-527fe2ec02d1 1 Other Other +96f817f1-2412-4823-b99a-3bb3f793925b 1 Other Other +96f81d0b-6a56-468b-b005-2ca561186f2c 1 Other Other +96f9090e-f260-48e3-80f1-d544e6757ac2 1 Other Other +96f90a81-e922-4fc4-bb46-a360d693af7f 1 \N Other +96f92617-4274-4508-9e9a-268f75ce316a 1 Other Other +96f93bf1-9f4b-4e27-bbf8-3248469a7e49 1 Other Other +96f94f36-f442-4829-8cf5-4f63ca23db51 1 Other Other +96f9aa67-5c9a-4ada-87c4-15908f7fd161 1 Other Other +96f9abb9-0d98-408e-a95b-f8ec987fe636 1 Other Other +96f9bfb0-97ad-4101-9164-511bdc80c533 1 Other Other +96f9f431-5b5d-49ff-afa3-c47a546136f2 1 Other Other +96faf950-a889-4862-b907-3745ba7b299a 1 Other Other +96fb3718-b6ff-40f2-9f41-399fd4e773c6 1 Other Other +96fb3883-1a1d-40a7-bdad-710502fa234f 1 Other Other +96fb4095-8646-4dec-ae11-5623ef917f98 1 Other Other +96fb46f6-6f08-4061-906e-6ddeebe00b49 1 Other Other +96fb64d4-5d0a-4788-bcb3-853fd0025606 1 Other Other +96fb9eb1-af90-474a-9f00-32f3b4237a08 1 Other Other +96fbbdce-d4e4-4798-a505-1964db60a510 1 Other Other +96fc0803-b40e-4fd2-a68b-0e77f16f5e30 1 Other Other +96fc3b1f-6e1a-448a-aca9-d5b087ecd92c 1 Other Other +96fc4de5-2bdd-4eca-938f-cdf17aad76ed 1 Other Other +96fcc1c6-96c4-4627-96d5-4b1e71f99152 1 Other Other +96fd0ddb-92dc-4253-bd96-9db453e695da 1 Other Other +96fd363b-76c3-4f13-b096-3ef1732eefd9 1 Other Other +96fda66f-c355-457a-b450-0c68a5764e8f 1 Other Other +96fdaa55-5aa9-41f8-98ad-748e1d3a3c6e 1 Other Other +96fdd2c0-88c8-4cd0-ab7c-1ebe53319008 1 Other Other +96fe37c0-f8a4-4187-9d5e-0c725815ef11 1 \N Other +96fe4f07-27da-4402-8c33-c00e686d5204 1 Other Other +96fe7acd-3208-47c3-beea-2e53490451d2 1 Other Other +96fe86e1-c498-450e-a164-a3ab65b48304 1 Other Other +96fe86f1-9798-4181-9fcc-d78ab841b588 1 Other Other +96fe8c87-19d2-4c43-ad06-b5cbbb6f16fa 1 Other Other +96fe9fa4-5ea2-4313-aca8-41fdd9de2f6c 1 Other Other +96fec19a-415d-46e4-8a46-5b9f6eaec08f 1 Other Other +96fed9f5-b6b4-443b-b4f1-cb1430a1b6a4 1 Other Other +96fef509-c250-49a2-a224-35751dd6e3da 1 Other Other +96ff4d17-b55c-4e52-bf0a-a03b95c326d1 1 Other Other +96ff6e92-520d-43cd-a93d-c063942bc22a 1 Other Other +96ff81e3-768a-4a56-b214-5267985f0e20 1 Other Other +96ffa80c-53f5-4b2c-9223-92c4bb0dccca 1 Other Other +97000c9b-ff87-4a2b-968b-75013168c926 1 Other Other +97000e5f-843f-47c8-a543-c8a466665a70 1 Other Other +97004075-702b-471e-948a-4e4d348a7c09 1 Other Other +97005972-d832-4431-83dd-ad9accd6c590 1 Other Other +97008d3c-3646-4583-8e0f-1bee41844df6 1 Other Other +970091d8-1140-44cb-a2ec-6fd1f79524b8 1 Other Other +9701080b-bb38-47cb-ab45-83784c8a50fc 1 Other Other +97010d2f-bd25-4d0e-9b09-1ec68e6c62e7 1 Other Other +97011c1a-308b-4e06-b24a-9c0fcc6cdbb1 1 Other Other +97018678-5cd6-454f-b14f-73e9020952a2 1 Other Other +97019692-e197-480f-8376-44c2082e5386 1 Other Other +970214b5-b9d8-47bc-9e7c-f9e520e0fbd2 1 Other Other +97025813-2224-45d3-b661-8d9cf631bacf 1 Other Other +97025f16-1d0f-4300-a5fd-b3f9bc4d24c1 1 Other Other +9702793f-a0a5-4ff8-a6cb-ef14c9833884 1 Other Other +97028965-6414-41f6-8cae-9ba0f66a6352 1 Other Other +9702b46f-15a5-49ab-a27b-16f38dcf4715 1 Other Other +9702bf4d-bb81-4de4-acb7-d43ef230ec6d 1 Other Other +970305b7-467f-4ef1-ba14-5ddba508bc18 1 Other Other +9703316f-636c-43bf-b578-87480a4fb3b7 1 Other Other +97034641-a494-4068-a34d-e3f2ee5bedc6 1 Other Other +97036c2b-eff1-4dd8-a12d-bdfb81179845 1 Other Other +97038c28-466c-44bc-8fda-4f0090c9b559 1 Other Other +97041c4c-b874-4edf-ac11-ce71d737c04a 1 Other Other +97041dcc-565c-4893-8cd1-79b194558ec5 1 Other Other +970421a0-ed9b-4762-a7fb-7e869ca27c80 1 Other Other +97043482-fbb0-47a1-84b8-da64f200e190 1 Other Other +970480df-5697-4fc4-a14d-f7b465479c95 1 \N Other +970497f0-b58f-4f30-8527-55414a357952 1 Other Other +9704cc0d-370a-41d6-a125-59cc781b5d17 1 Other Other +9704e958-3d99-48ba-94e5-482fa26fdd16 1 Other Other +97050a8d-d3f3-4c3e-a4f3-12b8a22580d9 1 Other Other +970544d3-d355-481c-be12-c11365403abe 1 Other Other +97054969-d55d-4dad-8a88-c6a1d1cdffb5 1 Other Other +9705c607-1736-4b5d-91dc-1fa5bc6763fe 1 Other Other +9705cfef-eb44-4aea-a809-7a75902ec49e 1 James Other +9705e3b5-69d7-43b6-86c3-bba148d6e7be 1 Other Other +9705f811-f43e-4edb-9760-0b6a45a5bcb8 1 Other Other +970602bb-a87c-418f-b838-06fb2db06b73 1 Other Other +97062569-f86c-469d-ab98-281a6932e24a 1 \N Other +97062b23-6ed7-4aef-afe9-0f80a1da0e43 1 Other Other +9706bac4-c7b3-4721-ace2-b7f6aecc2aea 1 Other Other +9706e45f-a545-4e9f-9c4f-0ea4e2259688 1 James Other +97070553-cb71-4900-bdef-42ca716012e5 1 Other Other +970743ee-25c7-4fc1-af60-313e8b0050ae 1 Other Other +97075e2b-1c42-4467-bd5a-270dfa36e480 1 Other Other +9707809b-575c-4524-8a2f-d62b49ac00af 1 Other Other +9707a888-bccf-411f-8c58-de09a0ac32d1 1 Other Other +9707bdd0-9fd8-43c7-9cd2-61ac9aa1eb73 1 Other Other +9707beef-2c60-4906-ab2a-30603b433cba 1 Other Other +9707fa99-0fd8-4191-9505-ebb07520256f 1 Other Other +97081489-f8e0-4baa-b294-c82a84865423 1 Other Other +97084250-9185-43c4-ba14-353555c857f1 1 Other Other +9708628d-905b-4d92-aa7c-d35e2d0e032a 1 Other Other +97089711-3caf-47e7-bb16-6d480d47810a 1 \N Other +9708d741-7cb2-4322-8999-d8faf9bbac25 1 Other Other +9708f75c-6296-4ef1-8b06-6dd3f9942c4c 1 Other Other +97097f1f-fe94-490d-9633-e299fc9528b8 1 Other Other +9709cba6-2c54-4784-9bdc-7df9dcbf7d02 1 Other Other +9709dee0-2437-43bd-ab46-432e41ed5b7e 1 Other Other +970a0624-ece2-4394-ad8b-7d01e31f6cca 1 Other Other +970a3e22-d138-4851-aa8b-035b361cd048 1 Other Other +970a639d-c9d1-40fa-9f20-7ad23f5d1a24 1 Other Other +970a8d82-5a4e-4574-b530-b042a2ed24f9 1 Other Other +970a9b26-797b-489f-a48d-6710896bbdbf 1 Other Other +970b1e42-e596-476b-86b4-3566e7e0f6c3 1 Other Other +970b2246-4245-4865-87dd-3ca586580289 1 Other Other +970b5e5b-f09a-4a8f-955f-c71d6331edf1 1 Other Other +970b6d86-b2a0-4eb4-9678-64ae9bdd9c42 1 Other Other +970bb02c-1b64-4c3d-969a-58121ff25147 1 Other Other +970bcc16-d129-465c-8019-c030163fb4ab 1 Other Other +970bd6e8-f632-4064-8db6-88f360f41671 1 Other Other +970bd70d-24b8-4526-acbf-e963f655eea7 1 Other Other +970c0498-3fc2-4f60-b931-d88260cbb9cc 1 Other Other +970c4e05-1e65-48e0-b581-a96b40782e5c 1 Other Other +970c86dc-d468-4aa5-95f9-be11e4aa47fc 1 \N Other +970c9368-f83a-40eb-91b7-3677005d00e2 1 Other Other +970ca25c-8965-4a3b-a73e-873fc9471ec6 1 Other Other +970cb3ac-e726-494f-9dac-db7b80873b3b 1 Other Other +970cd5a8-4392-4236-a185-ba0e5c3e7b1a 1 Other Other +970d075a-a8c1-4d52-9664-37c98a8d67a8 1 Other Other +970d3e92-628f-41db-b507-d27a23316c7b 1 Other Other +970d7432-6552-4f0c-bbc7-88f630652707 1 Other Other +970dcb1a-a5e7-43bb-b7ba-d456bf815de9 1 Other Other +970dd6f6-f6d7-40b0-bc7b-0f1dffe3a347 1 Other Other +970e1a0a-4d32-468f-9eee-c59af7cc3f87 1 JAMES Other +970e31fa-ab75-4810-acd2-d4c7a1ad6073 1 Other Other +970e3e84-2532-48f0-802d-88299c0da5cb 1 Other Other +970e6d43-403e-4f92-a9d1-c140be70d6ec 1 Other Other +970e8159-5cb7-4be1-879a-f363bc7088ed 1 Other Other +970e84cf-71f1-4eaf-a046-e6eb396e719e 1 Other Other +970e89ce-9699-41c8-a6c1-8b0e80411c5a 1 Other Other +970e936a-aa30-490c-888d-342436429e32 1 Other Other +970eaf28-becc-459e-b7fd-3f80297c78e7 1 Other Other +970f01e1-6645-41b2-aeb2-1a2e87786fa9 1 Other Other +970f149f-2c78-4091-bd81-86e6c37531c9 1 Other Other +970f27df-ee05-4dab-88cf-a428817bf39d 1 Other Other +970f2900-82b9-4775-95c4-d8052453052a 1 Other Other +970f88aa-92d4-4690-b443-4fa68b6f71d0 1 Other Other +970fb98f-29b5-4c00-a7ac-a01efdf30ae4 1 Other Other +970fdaa5-883d-4c55-b66f-542ac829c999 1 Other Other +970fe688-482b-4df1-a64e-60a518e8db3a 1 Other Other +970ffd11-3cfd-4069-af36-f20920a6e28a 1 Other Other +97101a7b-9e94-493c-86bf-b9b7ee826919 1 Other Other +971034f3-3173-4740-9bb9-00182224683d 1 Other Other +971085d4-04e5-4325-a32c-2dc8aabdd3d3 1 Other Other +97109300-e1fd-4d21-aa50-0bef36d5a703 1 Other Other +971096e2-9bb8-4953-b29c-4d6fc44ec308 1 Other Other +971124b7-e735-49c1-9b83-64a859bebcfb 1 James Other +9711335b-128d-4a0b-bfa9-28d942d5c431 1 Other Other +9711432d-522b-4a2a-adbf-2074d89523da 1 Other Other +97114363-7248-4c17-af7d-6df970c1f9ba 1 Other Other +97116158-e606-4fad-a713-22cc690b5dba 1 Other Other +97118305-fe48-4342-abb0-97e1b4d61e10 1 Other Other +97120241-251a-4326-9449-c2a15d359a8b 1 Other Other +97121551-5138-45aa-9d4d-03c290645ee6 1 Other Other +9712b66a-a318-4566-832d-4b5787c3b9de 1 Other Other +9712c04e-b5a9-43a4-b13f-68465dfd80f0 1 Other Other +9712ef73-a258-48c2-b1d4-3f41481a97ce 1 Other Other +97130f89-3dbd-4a5b-8ce5-0af399d5dcd7 1 Other Other +97138fe0-e73e-4d69-a103-e11287527739 1 Other Other +9713d0d4-768e-4b02-ac4b-2d6e9c3e88b0 1 Other Other +9713ef63-fb55-4282-9331-84f7b947d018 1 Other Other +9713f710-f678-481f-8d0f-f877f3dfcf75 1 Other Other +97140b59-4a16-40f5-b604-d12f68e2db83 1 Other Other +9714155c-5aff-4197-ab3c-ccec0aa5f952 1 Other Other +9714552e-6762-48e3-a4d2-e57bd34698d7 1 Other Other +97146503-cbcf-48a7-84ba-c7ccb92e1f42 1 Other Other +97147161-c4fb-44ad-a412-433e71a6ed7f 1 Other Other +9714cf26-63f0-47c7-8363-fb16b85636be 1 Other Other +9714ec6f-e9d0-4070-88a3-ca5b3b10b941 1 Other Other +9715a646-67c4-4dcc-91ba-659be11cfb27 1 Other Other +9715cdf1-03b8-48e5-9321-c2b16917774b 1 \N Other +9715d089-b04e-4b43-89f9-33db03f55560 1 Other Other +9715df70-751e-4e1c-bbd9-77c67525b3e2 1 Other Other +9716087f-10ea-413e-bd0c-c3af8928eca2 1 Other Other +97160e73-4295-4724-a18a-4e1478cff803 1 Other Other +9716440e-b141-4801-ba8a-92bfadc36a53 1 Other Other +97164788-f70f-485f-b587-dec1a138b9af 1 \N Other +9716661b-16aa-47ec-9be1-87c7e86d6130 1 James Other +97167701-fa1d-451f-b6bb-896ccf94098d 1 Other Other +9716f633-e441-404b-bdfe-6bcdd3d98103 1 Other Other +97171f4e-547a-49cc-9850-9f23f9902f7e 1 Other Other +97172ed8-917c-4100-8ad8-9f9278e65df9 1 Other Other +97173fe9-f2dd-4822-be74-8bd532bb3061 1 Other Other +97175064-790a-44f2-b124-651f9dcab987 1 Other Other +97179b33-4df0-4555-94a0-2bd767e0cdad 1 James Other +9717d409-0fb5-4f40-889b-fceafcb5267d 1 Other Other +9717e54e-60d3-4c13-9261-780c871b2427 1 Other Other +97180b5d-47e2-4ba5-b80b-91b6ce29f3eb 1 Other Other +97181d76-d9ab-4273-880f-641d22ed3a96 1 Other Other +97186c71-759b-4a30-837d-2c85a15a3bdd 1 Other Other +971887c8-8cd3-44b0-9d51-f88af6c25a5f 1 Other Other +9718a9e6-c845-4e41-bc52-7098c00661a6 1 Other Other +9718d2b3-43ab-4cf4-8011-55e913150c2a 1 Other Other +9718db20-f4b5-4440-82f9-0b39ef23c45d 1 Other Other +9718ddfb-c46d-49c4-8d6f-176617b5088a 1 Other Other +9719918c-9d89-4c0f-b49a-8da1c4387d3d 1 Other Other +9719e6f9-0ef2-499c-98b0-f172841812a3 1 \N Other +971a14c4-1403-4897-a971-17ba480fc311 1 Other Other +971a2954-71cc-4fe9-b3e8-3be4d3dbf933 1 Other Other +971a9655-d954-48e6-839c-b2eda600d45c 1 Other Other +971aa149-6357-4a96-a447-c451b15a149f 1 Other Other +971acfe9-c980-4408-9834-1401bac133d3 1 Other Other +971b8a5c-dcd8-4302-ada8-ee8abb81ee98 1 Other Other +971bd07a-cfb7-44a7-8757-81c9b336b9bf 1 Other Other +971bdea2-af7c-40c5-b975-922b066ca261 1 Other Other +971beced-0bc6-4b93-be1c-89904f5387bd 1 Other Other +971c147c-3e8f-477b-b600-3961d54a4587 1 Other Other +971c325d-7a03-4ebc-a559-7add2e119395 1 Other Other +971ca76b-141c-42ba-a664-ce8ce0026401 1 Other Other +971cb659-35ae-4596-aa5f-55eeecd44c4b 1 Other Other +971cfc4e-72f1-49b3-ad2b-5c3b607570b8 1 Other Other +971d157e-719a-4d0f-bd04-e3e406681214 1 Other Other +971d49ff-e568-470a-bcc8-b9bd7d6ca345 1 Other Other +971d4cc2-d6a6-4bb7-8159-47ea0eb1d4ac 1 Other Other +971e0726-48a8-4b7a-93e3-7c58c15a9dac 1 Other Other +971e3750-c67f-465a-b086-ab31ec861590 1 Other Other +971e54e7-4ebd-43c9-aaef-66ca7aba1f55 1 James Other +971e7958-e719-4e7b-a66f-31b206b1b500 1 Other Other +971e8db5-3c30-47c9-a8bf-4947696eb0dc 1 Other Other +971e94d7-b17c-489c-a64e-a5ca127b55dc 1 Other Other +971eca8f-b1d5-430c-8779-bf2759996dea 1 Other Other +971ed82d-3e01-40f3-b4a4-2ae3936d45c9 1 Other Other +971ee14b-01e9-4f32-ad70-7748dbc3a01f 1 Other Other +971f6fa8-52e3-4fef-8c18-86a3d5a378a1 1 Other Other +971fe6bd-cf20-4c76-8ad3-a6985f05be97 1 \N Other +971fe7d5-0a8d-4537-b2b5-c1cfb315a570 1 Other Other +97200417-ce3a-4926-8bd9-49a6a36756ea 1 Other Other +97206c7d-af36-40d2-b0c0-a270d464c61e 1 Other Other +9720802a-953a-451c-80eb-668ab8f7d3f3 1 Other Other +9721cab9-e077-4c5f-8f70-fab7f83a27e6 1 Other Other +97220365-4d8a-482e-9e75-0c797655f96a 1 Other Other +97221bdd-beab-48b0-b349-bd52959d284d 1 Other Other +9722b5cb-29af-4061-b5f4-08d3ce77f246 1 Other Other +9722e656-6053-40c2-a1c3-aac3ec70be55 1 Other Other +97233d16-be28-4a45-9bc0-a0c03f19dedc 1 Other Other +9723798c-a769-4843-9786-7f43e9e5ea03 1 Other Other +97239247-46c9-4e8b-a1dd-3ecad151514c 1 \N Other +9723afdd-3ca4-41fc-9a0a-cc1c2d2168ae 1 Other Other +9723e269-bfe8-4337-8b8d-1f0543bc6660 1 Other Other +9723ec79-5507-40f8-a783-17f0da6e71a0 1 Other Other +97242afb-0d02-404b-8f2a-8f591c206bf5 1 Other Other +972474d4-8c98-4d9b-afcc-f8c28f3641cb 1 Other Other +972496cf-37c1-4ad6-96ea-a7bf1572b96c 1 Other Other +97251e17-fb40-492d-97a4-3c653c884161 1 \N Other +972530e5-72f6-4afd-9e8b-21f3689f557e 1 Other Other +97256eb9-35e2-4ecc-adcb-1660c128636d 1 Other Other +9725b1ae-1bc2-4939-b02e-2ecb6050de46 1 Other Other +9725ca43-a50d-42f5-b1a1-b55b18f6a2c8 1 Other Other +972635a8-7521-4f0c-b590-ebcffaae74d5 1 Other Other +97263cce-3727-466d-9a01-f4264208cd41 1 Other Other +97267cd4-8285-46f4-893b-7082c9f303b4 1 Other Other +9726acc5-0334-41a6-bd60-538da72531b9 1 Other Other +9726ce03-e2e9-4c11-8c3e-191a781cedc4 1 Other Other +9726fdfa-8b78-4b89-ab09-aedc84bdeda1 1 Other Other +97279f87-baee-4eba-b5b6-d6b3211b32d7 1 Other Other +9727cffe-24d3-410f-95a9-91638b7df0c5 1 Other Other +97281381-fd97-43e6-a06c-9021bcbe06d9 1 Other Other +97283644-6b79-4bf5-aff9-7048e33eddb3 1 Other Other +97283ec7-2b36-4460-91db-41888d4dfae9 1 Other Other +9728464f-58ce-41b6-866d-b1ba20022a30 1 Other Other +9728cd56-3c02-49a4-86b1-54191dbdd16b 1 Other Other +9728d31a-914c-472a-ae27-03a17e59a0e3 1 Other Other +9728d72d-5889-42d8-a0e3-a7db25ea6e8f 1 Other Other +97290438-d29e-47e5-9562-8ea5c984984c 1 Other Other +97297907-043e-43ff-8e80-49bd2e97bb40 1 Other Other +97298813-b4a3-4910-887c-23ebe7f68357 1 Other Other +9729a187-dcab-4536-b9e5-94ef8adceca5 1 Other Other +972a51e1-2b83-4a45-a7d6-007e9cef5090 1 Other Other +972aa0ee-3633-42ca-8b48-13d078b06be4 1 Other Other +972b1770-9e53-49af-b707-769d556623d7 1 Other Other +972b1b7d-7474-4c69-8de2-05e0cca98f78 1 \N Other +972b5a86-469a-4fe8-9c30-99d813085c7c 1 Other Other +972bb875-1fcb-4db7-abd2-2d03d0eda3e2 1 Other Other +972bdd3f-e10c-44a7-b574-6d48dcc71782 1 \N Other +972c38e4-aec5-4404-8151-58687864d6ca 1 Other Other +972c44a4-bbad-4108-ae24-9ffdc9860219 1 Other Other +972c6f72-76a6-489f-9250-407404e825ea 1 Other Other +972c9cf3-4ee7-4e1a-9bd3-2a4cbbb1eb3d 1 Other Other +972d75b5-b2ef-484c-b01f-b9f725d15f6d 1 Other Other +972d920a-0e38-479f-88ba-0177d0325f39 1 Other Other +972db08b-1e15-4481-a6ea-f6e25474552c 1 Other Other +972dc551-4ac8-467e-a814-84904b7222a8 1 Other Other +972dfd0b-c59c-4223-8b1e-3094122b4062 1 Other Other +972e0c0a-90b7-4133-8f40-6a5befcf123e 1 \N Other +972e1c95-5e5a-420f-b548-a616e3b0181f 1 Other Other +972e4e7e-a9dc-4ba4-ac5a-41a982f25324 1 Other Other +972e9eb2-5465-46a7-b791-922f2691a753 1 Other Other +972eaf3f-67ea-4bc8-aaec-3249079c036e 1 Other Other +972ec181-7a42-4e96-90dd-7bb93caed0a0 1 Other Other +972ed4b1-a972-40b5-b339-46aceb4f952d 1 Other Other +972edf27-e836-4bcf-9a23-add9422fa967 1 Other Other +972f044c-6488-4b63-a458-6a0fe6c2b20a 1 Other Other +972f4bed-bcc8-4873-928e-e1200c7ef67b 1 Other Other +972f6f34-5ead-4ac6-a3ea-9d0020b4f30d 1 Other Other +972f702a-5de5-4d11-9915-22490b21f3d4 1 Other Other +972f75b2-b5fa-4e37-9eda-15fa0842b175 1 Other Other +972f9d70-ec52-46ac-b95f-f8840a4dc15f 1 Other Other +973042b5-0323-4fd3-9a5e-d2f947e6e522 1 Other Other +97305809-673a-4275-9391-969dc7ae0451 1 \N Other +973068c8-02ae-4654-a50c-ce569d5c0d3b 1 Other Other +97306b47-87db-4fc6-bde4-4b462098bfc7 1 Other Other +97312f1b-2ac8-4271-a5b8-49957a7fd493 1 Other Other +973155da-d34a-46a6-9e25-550a950d1044 1 Other Other +97317e39-28d3-4c56-939c-69153ee6a6a9 1 Other Other +97319d8d-3ca2-4556-b164-cdf73531695b 1 Other Other +9731ceb9-ec99-43e5-9739-b8cfb85f36e8 1 Other Other +97320069-327e-4ed1-8c24-c3219e49a527 1 Other Other +97320644-dbbc-4738-8d8b-a40c2b9ebb10 1 Other Other +9732884b-b16f-44cb-ae34-a126c9146f7d 1 Other Other +97328f1d-b2d1-4ae2-ae86-21f9cd4a0f39 1 Other Other +97329d68-f384-458a-a3da-d112dd181a74 1 Other Other +9732a13c-f5a3-4473-a513-6c14c0ba8405 1 Other Other +9732a5b8-6c8e-45fe-b3e9-f7c658313107 1 Other Other +9732cbed-cbfd-4b35-816d-6e8f58d69a21 1 Other Other +97330fe9-f272-47e9-9e3e-f1ca9c4df607 1 Other Other +9733c28e-ff4d-4ecc-8fd7-fd4d968badc2 1 Other Other +97343b9c-0361-4734-be11-d35523d68699 1 Other Other +9734e07d-9cb4-4f6b-bafd-33b049468b85 1 Other Other +9735374f-dd25-47e7-9a27-b2c999323f0b 1 Other Other +9735adbd-d730-471d-a636-43a6224cc32d 1 Other Other +9735c385-7624-4fca-816f-caa738e1f6fa 1 Other Other +97363363-e0fb-42fc-bffa-35f5a711fe68 1 Other Other +97363d91-9b46-47ac-8af2-df59947f487c 1 Other Other +973679e2-e0b2-439a-9bb4-8785cf8b8865 1 Other Other +97371713-f892-4456-a696-b474ad55d693 1 Other Other +9737352e-9c59-4768-b126-2b91d2470fd2 1 Other Other +973770a0-77a8-47db-a8c6-c52af5bad266 1 Other Other +9737a0e5-716b-409e-bac4-bb0c789f6008 1 Other Other +9737e66d-92c3-416d-bba6-7f68a2227fa1 1 \N Other +9737f825-a43e-4e88-97e3-61d42dbfeb60 1 Other Other +97381557-8cd0-438c-b920-7a5c257f7d29 1 Other Other +97384d45-110b-4527-a924-d4d0179c6c47 1 Other Other +97388a18-9c75-4f46-bf3c-226c996c4610 1 Other Other +9738ddcc-bc9a-4580-8e06-4f9658733149 1 Other Other +9739004e-6d2c-4f82-972a-a6bcbeb1579c 1 Other Other +97391a09-9a2d-4b99-bcf1-b1b665b41a26 1 Other Other +97394128-38cd-462a-a8c5-4fb5d1b33c12 1 Other Other +97396fe3-c5c7-4c62-a904-3ac7b33139dc 1 Other Other +9739706f-90ff-4bc8-9f26-cdfe97c7f083 1 Other Other +97399571-0668-44b1-8731-b65bfff075f4 1 Other Other +9739aa89-8d90-47bc-91ff-5200e531ab8f 1 Other Other +9739f8f7-8dff-4cbe-bd82-2e32c8ffe8b2 1 Other Other +973a183f-caee-4e7b-a473-b164f50c49ab 1 \N Other +973a316e-1a34-41bf-8463-bbeb20ba0df9 1 Other Other +973a4a3d-53e4-4734-a5e5-6185d7a8c95f 1 Other Other +973a8a17-425c-4a67-ad80-80a921a6ab81 1 Other Other +973adebc-8712-450b-b0d0-5ef52dc11bdb 1 \N Other +973ae499-29e4-402a-821f-253d7754d6d3 1 Other Other +973aee39-71e6-43a1-8a80-fc28d0a16240 1 Other Other +973b465f-943a-4cd5-ae96-356977e3914c 1 Other Other +973ba170-c484-4a54-803e-1ab07f68306f 1 Other Other +973c560b-c721-46ca-926a-a891a79398d3 1 Other Other +973c6bbd-9769-4e2a-90c0-da3bbdb1346c 1 Other Other +973cd9c4-4695-456e-902a-cc4a27cd57dd 1 Other Other +973d117e-d125-4a1e-91c7-64aa31210195 1 Other Other +973d1fa6-cb94-414d-be4d-acfabefe9102 1 Other Other +973d41a2-22d2-413d-b553-fcd57210063d 1 Other Other +973d4cb1-5ef9-41aa-849e-bf3d01041ea2 1 Other Other +973d7c5a-9855-44c5-af0b-54b2732b45a9 1 Other Other +973d8e01-34a5-47f8-aaf7-7964f1f78ad5 1 Other Other +973e0a88-aae5-43c0-8c49-1396c232eb76 1 Other Other +973e1e78-a284-4306-9a1f-8574b047ea7a 1 Other Other +973e3a6f-386b-41b5-889f-a86b30f7ef2c 1 Other Other +973e68f6-9b59-4f1b-b6ca-b7767490b13c 1 \N Other +973e7ea0-2c45-4c93-b735-63c4f6f95e7c 1 Other Other +973ea5fc-a09d-45e8-b721-efda915673d4 1 Other Other +973ed98e-a38f-11e7-a2c3-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +973ee654-9da7-4df6-a9d6-5701b434414d 1 Other Other +973f1e85-75a6-4bbb-8195-797c04cc0f44 1 Other Other +973f4cf8-7573-403a-8657-9aaa185432ee 1 Other Other +973f524e-5667-4be6-b51a-68478a48ffc6 1 Other Other +973f561c-05e0-47c2-bd5c-c73b4173c792 1 Other Other +973fc335-eec9-4a95-8a78-513a9da313e4 1 Other Other +973fd40b-5a36-4fce-9022-1dd1d4714a25 1 Other Other +973fecb0-3348-4801-b7e9-99820fea41eb 1 \N Other +9740579d-226f-4f4a-b46e-1b3c1b68d9f6 1 Other Other +97409e1d-d684-4abf-a3c2-9d0ff0127deb 1 Other Other +9740dc30-d54d-4ff6-ace9-3c877550dc86 1 Other Other +97416cc9-0438-490b-87f8-92e9380c7fd0 1 Other Other +97417b29-483f-4636-911a-27c0491a9ca3 1 Other Other +9741a037-fb2b-4847-a3aa-74b1fb6365b1 1 Other Other +9741a2ed-b50f-4af5-be91-e8fd58f02c53 1 Other Other +9741ad55-ccdb-4a35-a18b-1ed4af9ba8e4 1 Other Other +9741e064-7ca2-48d8-8894-f1a4d44de3f2 1 Other Other +97424635-de90-4c79-a00a-6eee6473c620 1 Other Other +974270f2-ff1e-4c16-8e1d-55cece1ddbb1 1 Other Other +9742815e-0e97-4ea6-a1ed-7394c2d8db4b 1 Other Other +9742a7c4-7d34-472d-abba-919b19533ca8 1 Other Other +9742d57f-bcb8-47b3-a5b7-21bcb0ee30d0 1 Other Other +97430a9f-0eed-4b81-a348-70fc852487d7 1 Other Other +974371b8-7fe9-43dd-a66e-e0aa0b8c7088 1 Other Other +9743a8d4-c6c7-432a-8f55-b609fad688c7 1 Other Other +9743e21f-3395-477a-9386-3fc96f6894e4 1 Other Other +9743fd4c-4ccf-4b2d-8542-09fd171da40a 1 Other Other +97441fec-8647-48c5-bca2-5e01bb9354bd 1 Other Other +974425b5-43a1-4f48-abc8-cb3b07408121 1 \N Other +97443221-09f6-4f83-add5-1222959dc862 1 Other Other +97449001-10cf-41f8-b2c4-878ce14f1076 1 Other Other +9744fee9-eaf8-4a0b-b26b-e316f901a6e6 1 Other Other +97451837-4d48-42cd-baec-65ad16ac7a6b 1 Other Other +97457e92-4c5f-4618-9379-6833e7d120c3 1 Other Other +9745a576-6bee-4211-9fe0-50a6a51e7633 1 Other Other +9745a605-202f-41d2-b18e-2a89066384e0 1 Other Other +9745d9ca-c443-4279-a529-844af6155231 1 Other Other +9745e312-8104-42fd-accf-dd3eaa183094 1 Other Other +9745f847-02cc-42f3-bf85-deb46c981330 1 Other Other +97463b58-4b47-430f-bae0-7022c3b40d81 1 Other Other +97468086-e1ed-4f90-a7bb-aece9ba864da 1 Other Other +9746a5f6-a056-48ea-9de4-08dbcef174b7 1 Other Other +9746aa93-a0ea-4c41-8ad2-97bf9d88b250 1 Other Other +9746e257-558c-4eb4-98af-ad507d265415 1 Other Other +974700e5-4f28-4cd5-b206-dc101f0b1ad4 1 Other Other +97470f3c-2dea-465d-8a8d-b65bd4fab275 1 Other Other +9747792a-9ac2-11e7-b93c-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +97487d75-b5d0-40d2-b89b-12b113ba9488 1 Other Other +9748bd31-9fa8-46ae-b6ac-9ee80ddb5cc7 1 Other Other +9748c9b2-68e7-487b-9b72-c5090938999c 1 Other Other +9748dad6-f097-4bd0-805e-2961646fde93 1 Other Other +97490090-73d4-4a5d-8c2e-33c525fa9735 1 Other Other +97492929-4c55-4b6b-ba74-d659a13529ae 1 Other Other +974933ac-b2f4-44e3-8ed4-db0ee8227093 1 Other Other +974979c8-febf-4be1-8dad-7a334c3d47cc 1 Other Other +9749c64e-ddc4-4f06-9e39-0c289d0631d6 1 Other Other +974a8248-1f88-4c53-ae8b-ed4d7913b699 1 Other Other +974ac880-67b5-4237-bc7a-a89c315aa149 1 Other Other +974afb42-d68a-4db7-8e3f-f5e0758baf35 1 Other Other +974b1def-6e7b-4b95-b5fe-4944bc022166 1 Other Other +974b2ba6-5fd2-4083-a6e5-bfa2fc7bc877 1 Other Other +974b4e83-8b21-4a19-aa00-7ad1f89e9dcf 1 Other Other +974bb41b-97a1-4433-ab2d-01220dbfeae6 1 Other Other +974c429b-c959-4c4b-a1ff-b5722f792db0 1 Other Other +974c63ca-1b61-4621-ae50-a10afdc76318 1 Other Other +974c6ce6-7018-49e1-9425-cb24e0abbdd6 1 Other Other +974c6e35-152a-4749-9e33-82bf2a9dbd8a 1 Other Other +974c8597-1042-42df-b0d7-7dccba0c952d 1 Other Other +974c90ab-b670-48ac-a3af-b31f651f2d55 1 Other Other +974d4ae4-0b81-4cfd-844c-945c03ac6510 1 Other Other +974d7af3-da1e-4181-ab2c-7559925ea6d7 1 Other Other +974d7f96-52c6-48c4-8430-7a195b28f88e 1 Other Other +974d989a-87c2-4449-913b-63d1e2890df4 1 Other Other +974dbd9e-fa48-4767-b43b-29dbef0d0473 1 Other Other +974dc4e6-6e85-42fc-a71e-b867dd6841df 1 Other Other +974de87e-205e-4284-9635-43b296da9a7e 1 Other Other +974dfc06-6afc-4d63-82da-2b5c398de209 1 Other Other +974e3efb-271c-4836-a7d8-5de80977d674 1 Other Other +974ed8bb-30b2-4eff-a28e-01dfeee93dce 1 Other Other +974ee889-a6e7-4435-b2c8-4eb00737db88 1 Other Other +974f3039-333a-4750-bba6-0e92cde812a4 1 Other Other +974f4ea5-14ad-421f-8e8a-c8b6a631d1d9 1 Other Other +974f65b2-79fb-44b5-a423-8310dde062ce 1 Other Other +974f6e1d-28a4-4f32-8391-d94ca4df8a07 1 Other Other +974f7ab9-35da-432c-953c-20c69dcd1efb 1 Other Other +974f8e3b-da2e-4d53-9a18-b2198ee8261b 1 Other Other +974fcfdc-9da0-4f54-9f1d-3583948a719f 1 Other Other +974fffcf-fa0e-4ecb-b91d-ea9fedc9926e 1 Other Other +97502f29-abc3-43f6-b1fc-eb1dc9e2f127 1 Other Other +97503f47-d61d-46b5-bb86-bd6dd920eea3 1 Other Other +9750791f-fb4f-4d34-ac83-5b2e3fafff2b 1 Other Other +9750d279-6c0c-4b12-a056-19684645fb8a 1 Other Other +97519792-411e-4220-a10d-a313e8cef806 1 Other Other +975199d5-a5da-44e9-a809-59f8b03f7ea9 1 Other Other +9751a5c1-f5ab-430a-b1bd-5d56c41cb851 1 Other Other +9751db76-235d-4d2a-b2e0-c2b681eb669a 1 Other Other +9751ec89-34e4-4051-a07b-048dfcb9ae59 1 Other Other +9751f675-81c2-4674-b5ac-9fc58ac603c8 1 Other Other +97520ad8-3cbc-11e8-ae1c-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +97522db7-4725-43b3-9dd7-3abcc1a5167a 1 Other Other +975241f9-cf91-474e-9a73-9f8d97651a26 1 Other Other +975296d2-9235-49e5-a25a-2a74a8b7ef7a 1 Other Other +9752a5b0-d84e-4e8a-9872-3764caaf8497 1 Other Other +9752ea53-dab5-4b34-b99d-5552c85eaa47 1 Other Other +97530ff6-2f4d-4b36-8c75-c7523b55dbda 1 Other Other +97535efa-9fec-4da1-bc57-8e68c70a5d49 1 Other Other +97536e3d-3d76-4923-a23f-ca5575eddc32 1 Other Other +9753767b-a58c-479b-8558-53bc9101b228 1 Other Other +9753a885-2a07-4f9c-8c52-e50c5ed32a51 1 Other Other +9753f8b5-ece8-4989-b9fe-81da5d942dec 1 Other Other +975432f9-aa80-4dfe-bbca-5b7def480e41 1 Other Other +97544142-bff7-4961-8b45-72381363a6d8 1 Other Other +975484e0-b531-450a-800a-e6d38f2db5e6 1 Other Other +97548878-e6f7-4f7e-976f-3af70a020e72 1 Other Other +97549ecb-82c1-4780-838a-d6379f3e8080 1 Other Other +97555c42-4c2f-4dd9-a0f6-d646c2c4f89b 1 Other Other +97557400-32bc-441c-8299-c82c0a179d76 1 Other Other +9755b319-ff7e-4767-abb7-a72371e5396e 1 Other Other +9755bba8-5f82-467e-bfe0-9e5033de0449 1 Other Other +9755be75-6b95-4e28-87ec-aeb62fbec624 1 Other Other +9755cd2b-311a-4d25-bc44-1ddf1a5feafb 1 Other Other +97564f3b-d9eb-4ba7-9c4c-9cb2734bc849 1 Other Other +9756b318-9e16-4af3-b28e-da366b2ffe4f 1 Other Other +9757aaf1-ba05-401d-8add-2d3598ea79a9 1 Other Other +9757c16e-d1d9-4bc3-b63d-71378a0e314d 1 Other Other +9757f055-2fc3-4e91-af2a-8115e1f00c93 1 Other Other +97583d6f-6051-462b-aa0a-63f52d81f485 1 Other Other +9758714a-d800-4aae-825c-107d02359834 1 Other Other +97588259-f7c1-4472-abee-f59bd67e4b12 1 Other Other +9758bd04-5e0c-4da8-9d96-43492a66e865 1 Other Other +9758c976-96c7-4ddc-a5bd-8f02d43fc7fa 1 Other Other +97594607-6482-4dd7-ab9a-10932d0a64c2 1 Other Other +97595122-989c-499a-b27e-4cdf0f1e6ffe 1 Other Other +9759973a-2a6d-4079-9d35-5e21eae4d609 1 \N Other +9759a656-3899-4f7f-94a0-3f2d89d9be35 1 Other Other +975a4ee7-85c9-4320-b166-a3dae605e9ed 1 Other Other +975a5793-78be-4564-b7b4-67094ef9b36f 1 Other Other +975aacc9-03cd-4ba0-876e-eec813db3ace 1 Other Other +975afcf8-79f3-4890-82a0-2f3663c7aa31 1 Other Other +975b3731-d46d-4508-a680-2783543a6914 1 \N Other +975b6e86-0976-488e-b49d-bb54b34c21bc 1 Other Other +975b73dc-3213-4aea-88db-4b6243e4d092 1 Other Other +975b9909-4594-4990-9a89-a342a313d1de 1 Other Other +975b9e1c-aaee-47b0-b096-9823c1bd2b4a 1 Other Other +975ba865-62d8-4c99-bd3e-ddf98ed808a7 1 Other Other +975bb5c9-3170-430b-890b-9548da96ec8d 1 Other Other +975bfe64-5bb0-4674-8400-d2d0280ec21d 1 Other Other +975c285b-4a30-4420-889e-4c662ff6f02f 1 Other Other +975c38a3-3389-467a-8b49-751f18a5bd61 1 Other Other +975c7a3a-bdd1-44c8-ab4e-ea00a3d055d7 1 Other Other +975cafb1-3735-4f7e-80a3-48dcb3b0ff07 1 Other Other +975ccd2d-a0e6-434d-911b-72c9411979e5 1 Other Other +975cf3c4-0d22-40ff-9c71-07e178787d1b 1 Other Other +975d9d1d-b244-4126-90b9-77d5276e411c 1 Other Other +975da3b8-7cb2-42a5-a865-9ca9cbf1d013 1 Other Other +975da615-a496-4991-a045-466804714a08 1 Other Other +975dae98-92d9-4a7d-87d8-784098cb7d25 1 Other Other +975de740-5cd4-45b1-8082-3122a20748f7 1 Other Other +975df9ea-ba00-4da7-bc1f-3bf561526491 1 Other Other +975dfced-1e42-44d7-9250-7976e6ae0469 1 Other Other +975e112e-edb6-4512-9684-1e83f7890b20 1 Other Other +975e1172-d163-403d-b46b-33e65b707853 1 Other Other +975e76c5-750a-418a-b1fc-38d74e0aae54 1 Other Other +975e7975-974d-44e6-b701-13cf1237e822 1 Other Other +975e8ab0-0da5-461a-a9c7-4dec5e2311cd 1 Other Other +975ecd03-acca-4782-a1fb-e441ba6702fc 1 Other Other +975f1e54-042c-4d1f-bfea-1b2bdc14b73a 1 Other Other +975f27b3-8c10-4e3a-a319-0bf63f2bb3d7 1 Other Other +975f2b22-0eb2-46a7-9092-71b4e6465b1b 1 Other Other +975f316a-66ae-4884-ba2f-54e9ff953ca5 1 Other Other +975f5c5d-f44c-42fc-a16c-05dac1219623 1 Other Other +975fd94b-ad9f-4f8d-a40d-730c27d0bcec 1 Other Other +975ff3a3-a4b9-426f-9db4-f9ba707157b3 1 Other Other +975ff595-bd35-41b9-9fe5-99eafa2c84b0 1 Other Other +97600433-8473-480c-9353-65f8a691cede 1 Other Other +97601b01-d60e-4ceb-b8b5-c04a6cbb64ca 1 Other Other +9760303e-b2aa-4914-abe8-1462f2f3b0e0 1 \N Other +97603d5d-5dab-447b-864b-32b992e80360 1 Other Other +976055a7-2b14-46e1-ba88-fa8a071cf8db 1 Other Other +97605b00-1416-4ea8-b50a-303bb7a32ea0 1 Other Other +97606247-62e2-4242-92b5-e7e410e540f1 1 Other Other +9760872d-53a4-4135-b002-dbc4b8bc73e9 1 Other Other +9760b403-2480-45fe-a280-b24a594501e1 1 Other Other +9760bc37-1e59-4f73-b2be-54ec19fca3b4 1 James Other +9760eb41-8264-4201-836f-3452b1cfe9e7 1 Other Other +9760ffe6-c72f-4fe4-ae8e-b15eb163f97a 1 Other Other +976152e7-2fb3-42fc-85ff-72cdfd519e96 1 Other Other +976160bc-10f0-4a4d-9c02-b5b5b24a25d0 1 Other Other +9761dfda-5892-4b5c-a2df-62b4d4867acd 1 Other Other +976201c1-8ddf-4543-bc59-cde63c69995b 1 Other Other +97621f01-bd68-4f59-8c03-bcea9c312204 1 Other Other +976258f0-b393-4958-9461-5424eb73cf6e 1 Other Other +97629e02-7f85-4fad-b5eb-45f20968801a 1 \N Other +9762c23e-829c-42f8-a337-6fbfaba3991d 1 Other Other +9762c730-4032-4c93-a82a-532826ef0601 1 Other Other +9762cb23-4a83-45c4-bf34-e8636b91ff50 1 Other Other +9763363b-7c63-472b-93ad-68c26e1ead1c 1 Other Other +97633b43-8086-40ec-b103-d083ecae2d7a 1 Other Other +97638e02-3872-4747-8793-d303d11ed2be 1 Other Other +9763df20-0260-4203-9734-2cc5c1194743 1 \N Other +976421b0-a323-4a83-8ea4-19727d8f660a 1 Other Other +97650c87-acf3-42f4-9d05-d77faab9d6b6 1 Other Other +97652ea4-5175-4542-aee4-63f79194427b 1 Other Other +97653101-e463-4cc5-a195-6166d573ad83 1 \N Other +97654210-0b84-4ca3-8606-f70136f47670 1 Other Other +976553a7-a63e-40e4-a0d6-f6f4fbc8c2fd 1 Other Other +97658594-947c-4178-809e-1c69f732b3f8 1 Other Other +9765a11d-2148-4bdb-a6bb-e7ed8b37a435 1 Other Other +9765b553-e41b-4a76-b748-2877d896f3bf 1 Other Other +9765f88e-7092-42e8-b747-fccae467740b 1 Other Other +97663c08-b77e-4155-997c-5e731704b3b9 1 Other Other +976646b1-6e72-4a2f-b230-dbc0e21e3170 1 Other Other +9766c3ac-53d7-4ef7-bc6b-6d78f58fe7e3 1 Other Other +9766d14e-0387-48ad-aff6-f440853b6066 1 Other Other +9766e199-62ca-4aea-91a6-cc2f8da23e12 1 Other Other +9767179a-cd68-4616-8ba6-dacfe087361e 1 Other Other +97671f01-d59c-4fe1-acb4-b841bd971546 1 Other Other +97673e82-1589-44d6-97f2-3f4023ab96dd 1 Other Other +97676f17-0c05-4185-bda6-29d115263298 1 Other Other +9767b1db-eb9c-45ee-b959-988c66ba22a9 1 Other Other +9767b6d8-72cb-430e-8e81-b464b752041e 1 Other Other +9767d47b-0b64-42f2-9a73-330532f8f818 1 Other Other +9767f23e-3c78-4454-806c-ad7b97d3e6cc 1 Other Other +97683e0f-1428-4a97-b67c-430d59c340cc 1 Other Other +97686379-3989-48d1-b153-b8493566149e 1 Other Other +97689b30-8568-415d-981d-bd90ec70edd3 1 Other Other +9768bc46-569d-4e80-a0f4-1dfb03caaeca 1 Other Other +9768c767-6d40-4bee-b2a4-b1b2ce895b85 1 Other Other +9768e0df-a8c1-4786-8029-f8c6d4cb7a54 1 Other Other +9768e5c1-09f0-43d6-9231-35ca777a9b36 1 Other Other +97693914-2986-47d3-ba02-2a87b209f21e 1 Other Other +97695ef4-bedf-4435-82cc-de332ce16dcc 1 Other Other +97696bbf-ec32-499b-b0c7-eac4142e7fb4 1 Other Other +97698de7-fbb5-4d0c-9a38-94b21ee02912 1 Other Other +9769abb0-b564-466f-ac94-260ac7cb930b 1 Other Other +9769d1aa-26d3-4c8f-878e-3d29c1ba87fa 1 Other Other +9769d1cf-9772-4586-9f06-3e6a5ad6bce6 1 Other Other +9769e86c-90d2-4a70-b4b0-6fa99b2466a2 1 Other Other +9769f9d0-85ec-486e-875d-5523421c42b3 1 Other Other +9769ff3e-b9d1-4650-b9ef-3de2cfa81175 1 Other Other +976a0600-1a8a-4c8a-881c-ce959eead993 1 Other Other +976a289e-b553-4ae7-9578-1104645cd351 1 Other Other +976a29a8-97b4-4c6a-8bf1-3bb26db62d66 1 Other Other +976a4790-5eee-41e7-ad0f-a20fb03b1def 1 Other Other +976a4dbb-507d-4f8b-a517-3170cdf3ac5b 1 Other Other +976a69a7-63a2-4795-9489-6f10a067c077 1 Other Other +976ae6f6-012d-45fa-99bf-cf34d8d66797 1 James Other +976b12a7-e2bc-49ff-b5be-5d9c587708ec 1 Other Other +976bc78e-8b1a-4008-a307-b3bf1b9375a7 1 Other Other +976c2e20-99fd-4c55-b214-a353237beee6 1 Other Other +976c4ee0-f4d2-483a-8339-153ab2c7c4c4 1 Other Other +976c5d8a-ba77-4f08-bc96-4d8cea04d108 1 Other Other +976d2063-698f-4589-9521-a6fe1fe34d26 1 Other Other +976d489c-0564-430c-b6d5-53cbcfb0fe8a 1 Other Other +976d552a-fb73-48f5-b6f9-f4e22b91e066 1 Other Other +976d78d4-baaf-4fe7-a6e8-5de095b6e452 1 Other Other +976d9554-64d5-4453-9180-a7307a4020dc 1 Other Other +976daf46-5641-4177-834c-bec65cdada26 1 Other Other +976dbf60-9632-48ba-9f8c-e54fa8f6f4dd 1 Other Other +976de177-bb5c-4df8-ad28-8ca925b18991 1 Other Other +976df9ef-e933-43f4-b6d5-84868a7aea61 1 Other Other +976e3836-25b8-11e8-ac0f-fa163e8624cc 1 \N Other +976e740f-0455-41e8-b27f-5f205d07d7a9 1 Other Other +976e83f5-48b4-43cd-9fe2-f6ea8471d2ef 1 Other Other +976ea904-bdf5-41cc-91d9-f992b2cf63af 1 Other Other +976f243e-2b8b-46e6-a436-35149d363312 1 Other Other +976f2d76-39f2-4f48-ae19-0d349de6c18f 1 Other Other +976f6ca7-8dc3-4561-b392-0481d0c38ad9 1 Other Other +976f7dce-069c-4ff6-945b-f1a2d19b7d02 1 Other Other +976f99b2-9811-42d3-b9ee-555fa22f3550 1 Other Other +976f9e4c-25b8-11e8-9dd1-fa163e8624cc 1 \N Other +976fd760-1cab-4da4-9c89-c450b9e1e54f 1 Other Other +97702431-a6e8-41e4-944d-e70351182192 1 Other Other +97704fd7-ec02-4b3b-8827-0aab1b25bff8 1 Other Other +977085e0-cd4a-4e33-afff-2e985d1bd8d0 1 Other Other +97709183-8c3b-43e5-8c1f-c1958c667ee5 1 \N Other +977095a0-1c10-40ff-98d8-ad4a171160c8 1 Other Other +9770a0da-aca0-4c98-bc77-e1c47b646742 1 Other Other +9770ad41-55b0-4255-8159-9bbe4081b3d1 1 Other Other +9770f0cd-d8d5-4b9a-9488-6f9522586ee4 1 Other Other +9770f9da-9b2c-43be-93ae-ff849840be12 1 Other Other +9771183b-6e46-469b-99e8-43c67674b95c 1 Other Other +9771529b-a667-49a4-9b72-0986ad83959f 1 Other Other +97715999-129b-45b7-9cac-5a4546413d1b 1 Other Other +977193a9-3790-40f2-a59c-4891864c73c5 1 Other Other +9771b418-cb4c-4563-b5ef-76f937f20a04 1 Other Other +9771ddce-a822-4249-a292-b66c57c47460 1 \N Other +9771de38-b0ae-4137-8c58-0a9e1a49e9d3 1 Other Other +9771fdb3-8bf1-4939-8c2f-29cbf7b3a79e 1 Other Other +97720b3c-870e-420c-b592-34b151d64a19 1 Other Other +977213f6-bc47-4933-a1c5-5ef442ac08c7 1 Other Other +9772b7f4-68b6-405c-9d15-9845ac133e2f 1 Other Other +9772fd7d-426f-46ca-9548-a9132ea03be1 1 Other Other +9773498b-70a3-43d3-8d6e-58e0daac2165 1 Other Other +9773595d-bde2-46dd-bf78-5c6842d59377 1 Other Other +97736415-a4fe-4340-ad84-5144bbfded92 1 Other Other +97736d0e-28c2-4dfd-b8b4-2375b0cc857e 1 Other Other +9773afeb-71a2-4521-9146-6ad5431000ec 1 Other Other +9773cf7a-555f-443d-b254-2fe136aacad4 1 Other Other +9773e8de-9c5f-4630-b3dc-9037640e11f6 1 Other Other +9773f87a-bb39-48ff-87a2-dde8450b3a0e 1 Other Other +9774066e-9d53-4dcc-b169-9e624d804073 1 \N Other +97743858-5a7e-4308-8327-b742b403fe2a 1 James Other +97744a28-a32f-4389-8beb-44f637ca0b29 1 Other Other +97744be9-5180-4ba2-8be6-15f9ffd0fc71 1 Other Other +97747459-188d-4a4e-8b22-1d91bcf2f85c 1 \N Other +97750822-5da3-41a1-98d6-5c3896bb2f35 1 Other Other +97751192-770d-494d-b1e3-0a65eb0270d4 1 Other Other +97751cfc-200d-409f-b5ab-1fa84dba599c 1 Other Other +97752b7b-7c46-4520-9d12-74c8012282c1 1 Other Other +9775760b-a771-434a-b045-ec4d32d810d2 1 Other Other +97758152-7476-4c3f-80a6-e0b65d13ff85 1 Other Other +9775972c-ce43-4c0d-aa1d-45d89749aaf4 1 James Other +9775a0b4-3dbc-4c45-8c55-2a1ec1522a47 1 Other Other +9775a8b6-156f-4f13-87df-689edc5b121b 1 Other Other +97763e25-2cea-473d-af5d-52925d51d7d3 1 Other Other +97764d33-ba6f-47b6-ab19-59de7282e9d5 1 Other Other +97768706-11dc-424a-a72e-a5321fccd828 1 Other Other +97769343-be84-4064-b4a5-2a3170d0ffd3 1 Other Other +977695f9-c14e-4694-874f-6c11cfd1f0d8 1 Other Other +9777a322-9f9a-4969-ab80-baeec7b3e6b0 1 Other Other +9777a7c7-1fbc-4eeb-8bb8-ea482fd74920 1 Other Other +9777e1f2-5b62-45d7-9297-720527ff036d 1 Other Other +97786459-2bcf-42f3-8b44-d2c526d71f14 1 Other Other +9778da79-d590-43d4-8806-bb5cad98841e 1 Other Other +9779037c-6826-44de-ae42-1777f4a88765 1 Other Other +977910b4-7037-43c6-ac20-0f20a807e479 1 Other Other +97793306-952f-4708-80d7-fd75e93e88fe 1 Other Other +9779525b-d0b8-423f-90b3-136531aa9759 1 Other Other +9779a028-94eb-488f-a5e5-1cc830a2ac24 1 Other Other +977a2c8e-3376-44a0-9047-d8a770166126 1 Other Other +977a46a9-c64b-4947-9e7a-abfea710a727 1 Other Other +977a81d7-8914-4414-9f31-ac11b4d9a636 1 Other Other +977a8393-955e-4854-a381-13f7bf51884f 1 Other Other +977affcc-cf1f-474f-8f8d-a2b88dff4163 1 Other Other +977b0cb0-8079-49cf-80cc-a25045909bca 1 Other Other +977b227f-3658-4d39-94b6-592ab734564b 1 Other Other +977b6020-b474-4394-978a-7771af4f00aa 1 Other Other +977b6f4f-02b1-4a45-8afe-20c2461578bc 1 Other Other +977b9424-4ac1-41ce-83ec-932b19c01bc7 1 Other Other +977b94a8-8a8f-424e-91fa-9aea9ee8360b 1 Other Other +977c3ebc-d530-4985-89e6-7bdf90c98713 1 Other Other +977c5ad4-6db5-4d84-b28d-63c87e495c3c 1 Other Other +977ccf61-7352-4ffa-8c48-378a02ec976b 1 Other Other +977d073d-9240-407e-abe0-ba258d7cfd36 1 Other Other +977d6930-f919-42f5-83cc-17a6c985496a 1 Other Other +977d72d4-fcc0-4a38-b3d6-3e9b6b6bfe1e 1 Other Other +977d780c-0ee1-461e-b191-00414c27c81f 1 Other Other +977dc509-7e76-471a-b32d-99e388a60160 1 Other Other +977dd4d8-f14e-4d62-8d86-e87e3c36329b 1 Other Other +977e17a6-094a-4eb9-8893-caa85108d114 1 \N Other +977f0b69-4c97-4769-9cce-5df617d4b381 1 Other Other +977f5f7b-1022-431f-8961-3b8bc057df2f 1 Other Other +977f8816-f6d8-40bb-86d9-713288393f9a 1 Other Other +977f8e98-9121-4d80-a618-7bd6a83184aa 1 Other Other +977fee32-911c-4aaf-926f-d6eb0af7386e 1 Other Other +978015d6-9646-42b9-b8df-64c2e27f3dbd 1 Other Other +9780441a-aeb2-4ad1-90c3-5022d4655ba7 1 Other Other +97809cfe-c9d8-4860-a961-c4ad8aa8cfbb 1 Other Other +9780c90e-cbce-46a8-a98e-c3011b86d6a2 1 \N Other +97817a88-db28-46c1-969f-620656cf9522 1 Other Other +9781ad77-28a3-4f98-9c7e-1fd1eb981dd8 1 Other Other +9781b267-23b7-41f7-8ce5-0b8ab0538fa0 1 Other Other +9781cd3c-b3f9-4a10-a08b-8da93e7acb7c 1 Other Other +9781d839-b8fe-4ae0-93df-2ee6660c8bfc 1 Other Other +9781e19b-b359-444a-9d3c-70e184c116f6 1 Other Other +9781fe7a-7e97-45ff-bf92-273323992346 1 Other Other +9781ffa2-b91c-4d8a-80a0-bf9288546421 1 Other Other +978209c6-9156-4847-8ba5-62ca3941a6d6 1 Other Other +9782124c-7e22-4303-b678-0b95ffe24130 1 Other Other +97821c20-cc1f-4f3b-8894-2e34cc428a4c 1 Other Other +97822db5-2d1e-4034-be70-cebafefbc259 1 Other Other +9782ab2c-4223-4924-96c9-b5ff186f598f 1 Other Other +9782dd52-96d3-41ad-846e-e6b3b100766b 1 Other Other +9782f20f-afc4-4d6d-a5ee-aba21db4c16f 1 Other Other +978322aa-63fc-4991-8001-edb3cb459c40 1 Other Other +97836cc6-a925-4887-bd63-7bfab7135dfd 1 Other Other +9783ca69-022f-4e9d-8bc2-4a8f6d24896c 1 Other Other +9783e9db-d985-4450-90f5-e1da0394152f 1 \N Other +978444f5-85d8-4496-bdb6-1e01557f2b3c 1 Other Other +97846e0a-f666-46e4-8307-3a63dd631fcd 1 Other Other +9784a91d-837f-4690-b305-7cb4b9853579 1 Other Other +9784ac3f-9200-4cf5-b2fc-d3368b4cd202 1 Other Other +97853374-3e13-43e7-8946-1a7c3e32c7c5 1 Other Other +97853652-5eaf-4dbf-97f5-c4f8ea19b685 1 Other Other +97854c11-46cd-431a-b654-52d410d532d9 1 Other Other +97857fbc-d69e-4b44-933b-a07431c8647c 1 Other Other +97858399-b630-4fdc-9cd2-b9c0ba42feae 1 Other Other +9785a1fc-bbaa-4b0b-a031-200e100b5307 1 Other Other +9785a211-9f91-40b9-8848-a9672f7a95d7 1 Other Other +9785b28f-de2e-4b65-86cc-b6df89f8f7bc 1 Other Other +9785b89d-6438-47a2-a8b5-70aaf57bde68 1 Other Other +9785c35e-1b96-4357-b4f0-14e8d1e57371 1 Other Other +9785c9ed-bbcc-49e1-862b-bb1a785c9b4d 1 Other Other +9785dd50-fd43-427b-8631-b1f57effb5cb 1 Other Other +9786120d-b280-4885-bfac-77e48e28d808 1 Other Other +97861b58-63b3-4bbb-93d1-fc0f6f37d48c 1 Other Other +97863f1d-c85b-4b90-bf62-affd689de9f6 1 Other Other +97866ad9-753f-4016-bb52-0b9252bd2c5e 1 Other Other +9786a2ac-078c-4162-b2f5-34037e78a4cf 1 Other Other +9786e8ca-0c5d-40ab-935a-dfacd283305f 1 Other Other +9787279a-4210-4283-a4dd-053e2bfb0a5a 1 Other Other +97872802-a2f5-4a83-badd-2e4cb4b5ca66 1 Other Other +978767f5-9ff6-4c18-b3db-6151697c5d87 1 Other Other +9787db6a-8507-424e-8a53-ffa842d165b9 1 Other Other +97888753-7809-470e-9da8-ac33151ddf5c 1 Other Other +97888891-dfad-4273-ac09-4ff74d7f560d 1 Other Other +9788d38e-66d8-49b9-8f69-21b91853b41d 1 Other Other +9788d74f-50d3-421a-9bed-a0479fdfa1a0 1 \N Other +9788f3b2-aa89-4142-9a6a-5ae23c96bc19 1 Other Other +97890d2b-8f23-4f5a-ad6a-2e6fcd1fa9b1 1 Other Other +97890ebf-12de-45a1-8d1e-2a55cc27f0f4 1 Other Other +97899e57-1517-4e32-ab18-bfb260ee2909 1 Other Other +9789cf4b-1abb-4710-9787-97c26542a000 1 Other Other +9789d16f-f2b7-4324-bbe8-cab89ef6ffb2 1 Other Other +9789d381-d85d-46bd-a5b0-6de6c5b52167 1 Other Other +978a1d4e-4aab-40de-989f-07790523acc1 1 Other Other +978a67fd-67d4-4bce-8f85-27299773c9fe 1 Other Other +978a6d4e-d226-4aaa-93da-53f5fc4f4e22 1 Other Other +978a91bc-8e13-433f-a4a4-944cd53d9317 1 Other Other +978aaaa3-b070-4909-87fd-63b707313008 1 Other Other +978ab40d-c2b6-46ba-93e6-f119795803e9 1 Other Other +978ab89c-6edc-4a59-ab19-cfd12e623309 1 Other Other +978b06b8-f0f7-46d5-9b9c-0bad668b8337 1 Other Other +978b0fb5-0a8c-45c8-aca3-1deea4022f29 1 Other Other +978b1f3c-4016-489c-8b40-21eebfca5d76 1 Other Other +978b228a-449f-4d5f-abe3-b7d3e533fdb3 1 Other Other +978b5b34-9087-431a-9e32-bf853ce51b76 1 Other Other +978b7127-ad0b-4c35-87e8-f374ad2738c4 1 Other Other +978b8cb4-4049-408e-84d7-2e21e7843115 1 Other Other +978b9529-0dd3-4148-8ceb-988796621e58 1 Other Other +978bae54-098d-4822-bcb0-7217482bbadb 1 Other Other +978c289a-428e-4cb5-a463-5eb1a13f168a 1 Other Other +978c4bfc-451c-4fa4-ad18-f154bf0d500a 1 Other Other +978c6d9c-4a90-4e54-9bb1-4563f4af0350 1 Other Other +978c7812-c743-4828-ab2e-4ffee9e531b3 1 Other Other +978cf5db-639a-40d0-a418-89c2c18cc319 1 Other Other +978d46b2-3c54-4c57-ba40-440f752b1c1c 1 Other Other +978e2257-4965-4016-b6c8-913dd65b7add 1 Other Other +978e3e51-5bbc-4c61-859f-b3d977d1b74f 1 Other Other +978ef295-152e-4332-85dd-44e7612b6e36 1 Other Other +978f2f29-fa5c-47ce-8247-1a0fccaf8416 1 Other Other +978f3a03-6a71-429d-99c9-d3078c13bb18 1 Other Other +978f54b2-1ccd-418a-8d16-136afc1b95d7 1 Other Other +978f83f0-f94a-4c22-8348-4b5532da1530 1 Other Other +978f9455-ccaa-4902-ae9d-1cd652b8102f 1 Other Other +978f9550-768a-483f-abc4-b6a07579eaba 1 Other Other +978fbc9a-3cbc-4e0a-a010-a6fa6f2e5a31 1 Other Other +97903ec0-fc07-4fb0-8ab5-5f43e28aa36f 1 Other Other +97903f09-c477-4160-94b6-b88e7733ba8e 1 Other Other +979041a2-5c38-4c70-a36b-8077d6be25fb 1 Other Other +97904d39-ae0b-4a98-bfc9-f64ca956d2aa 1 Other Other +97906b90-d8f2-4c49-872d-b0b30ed5379f 1 \N Other +97908a28-84b2-43ba-92d1-72d87aed947e 1 Other Other +97908b4f-7915-4d51-bf43-a0a85b096164 1 Other Other +97908f1a-58d2-4fb5-bf21-5be68a5518e9 1 James Other +9790a1ea-21c9-4c57-a770-0472b2688e62 1 \N Other +9790b5af-be35-4934-b8a8-c7a388696198 1 Other Other +9790fc7a-92ca-47fa-9596-3e44cfafe765 1 Other Other +979120e0-e46d-4ff8-a346-c330bc9f9553 1 Other Other +97912caa-04e7-448a-b533-818ad60c16f6 1 Other Other +9791b75e-a317-4607-998e-d875fcb66597 1 Other Other +9791d32a-23d0-4e43-9741-ef546e3d805f 1 Other Other +97924b87-b4ae-4205-91c5-c4cd3eadb369 1 Other Other +979299c5-fa07-4f4d-b0a4-eed8d16dd5da 1 Other Other +97929ada-5c05-446a-a2b8-db38e33def4d 1 Other Other +9792b5b2-69b9-4e4b-ba96-3f7729d5b7d7 1 Other Other +9792c24b-8aac-40a3-8fb5-8ce4e56de053 1 Other Other +9792d075-8590-45a9-b171-862f6b915397 1 Other Other +9792f4d9-9b05-4aa7-a206-7766560243a4 1 Other Other +979328f8-4c7b-43ff-8e16-916b94f84fb6 1 Other Other +97932af8-ebab-4642-8b83-5aae5349f23d 1 Other Other +97936a41-e8f6-455f-9b08-6530869fcd40 1 Other Other +97936ad5-3e0a-42f6-a54e-91f4c3d93e11 1 Other Other +97937ee9-5985-4a5a-9060-f65f72f90941 1 Other Other +9793871e-99b0-4209-b66f-6649013ce115 1 \N Other +97938fec-917a-4596-bb95-c28b251594ca 1 Other Other +9794044d-aaee-4757-8e4f-c1b33c58fa30 1 Other Other +97942430-3147-4e52-8042-ff2a71448a0b 1 Other Other +979450a1-b055-40d1-bdb0-df87b6780a5f 1 Other Other +97945e23-0c28-4c92-ab66-349840e65348 1 Other Other +97947af9-d14b-43f5-8f43-7ea18cf7138d 1 Other Other +9794dec3-e874-40ba-864e-a37811f25d4b 1 Other Other +9794f368-6182-4656-8019-335e3f1554d5 1 Other Other +9794ff9a-28a0-4271-886a-bf37e34b00af 1 James Other +97954a13-aace-462e-96b9-60a34fc0484c 1 Other Other +979586da-3db9-43ac-ad7f-64d20dfda1ac 1 Other Other +97959168-7bb6-41e6-ae3f-b93c17c53f13 1 \N Other +979657ad-21bb-4888-99e7-78c74f45a27e 1 Other Other +979665ff-0ce5-4d90-ba7c-669d654f31b9 1 Other Other +9796f89f-ad5b-41dc-ab84-8c03454c0482 1 \N Other +9796ff4b-2c20-4e17-a25f-7583b32b2753 1 Other Other +9797266d-82f9-46b8-8f53-958c4b02ce8d 1 Other Other +97973acc-7c6f-47b7-9a1e-543894449103 1 Other Other +97975bbd-8dd1-4fc4-a8df-a93892a1956c 1 Other Other +9797aa11-e0b8-4492-8bc7-c92c1b2a9d47 1 \N Other +97981fa1-9eb0-4517-babb-24ba268e7ee3 1 Other Other +97989812-c9fe-4778-907e-1b806537be3a 1 Other Other +9798ac95-0447-4e76-a357-f8b12a41d19b 1 Other Other +9798ca1d-3796-4dce-8585-d277d1a43a8c 1 Other Other +9798cc55-bf14-4010-a55f-4209321492fc 1 Other Other +97991441-00db-4287-82bd-65cae258fb9d 1 Other Other +97992a93-f847-4000-b236-bfbc182930dd 1 Other Other +979982ed-5940-4625-8de2-7fddf69f4529 1 Other Other +97998da0-2b6a-4cf2-9acd-c42ee9eef67e 1 Other Other +9799a30b-de98-46f5-8631-35cec8c7a05f 1 Other Other +979a2e3a-dd24-4935-931b-3d08a3a473b9 1 Other Other +979ac3ea-4018-4263-9d6c-8604d4871a1e 1 Other Other +979b3beb-c157-4055-9e2a-b950ee08a2bc 1 Other Other +979b3f79-afb0-4a90-b847-7cb8e17fb94e 1 Other Other +979bb265-ed76-42b5-b285-53add93e145e 1 Other Other +979bd62d-383b-4854-bd4d-49fbf0d8265f 1 Other Other +979bdc73-14a1-4910-92a0-cc6bfa911e2d 1 Other Other +979bfdc4-fe31-4bd6-9ce2-378c805abfec 1 \N Other +979c2dce-8a9a-49b3-9c79-870bf593d351 1 Other Other +979c3210-dff1-4d82-8ffb-baaae9a938c5 1 Other Other +979c3d92-38bb-44c7-a15e-06650684a707 1 Other Other +979c51e8-fd17-47cd-848d-8b0a0d4ed175 1 Other Other +979c831d-1074-43ad-8faf-b6d94ddba02c 1 Other Other +979d0619-58f5-4f67-9195-5cebbb9be3e5 1 Other Other +979d641f-96b8-4580-b5a2-ba01879d9f03 1 \N Other +979dfc56-c437-488a-b619-3ddad81135d8 1 Other Other +979e2c1d-e9d4-4fe3-bad2-2df32beea221 1 Other Other +979e682c-c66e-46b3-8e05-edbf4672ca75 1 \N Other +979e9f33-a194-4c93-a293-ae11543483f4 1 Other Other +979eaeab-fba4-43ca-937f-84145033ba87 1 Other Other +979ef7af-6717-40cb-9cb7-4ad66575fea5 1 Other Other +979efce9-36c9-4bbe-987c-10c29d3ad292 1 Other Other +979f1657-fa30-4207-bb06-d58370eb6341 1 Other Other +979f2489-375a-44e6-b6ef-14c2b2a2d4e9 1 Other Other +979fa533-1447-4834-9095-2b21a8fd8f39 1 Other Other +979fbd2e-959a-44e6-9ef3-0f89ff55ad76 1 Other Other +97a0836b-9a79-4d1a-86f1-d90389bd8c16 1 Other Other +97a0bdee-1802-4c85-98bc-071b6767ae1a 1 Other Other +97a0c5de-b773-4533-89bc-d51f0f6d39c1 1 Other Other +97a11a8c-1e5b-46c2-b143-f1bdc5bf27a6 1 Other Other +97a125ac-c82e-454c-a5fd-c0bdb0ea5f08 1 Other Other +97a1294d-bcef-4489-b3bc-1295a6f73a19 1 Other Other +97a17957-8f1a-4739-b973-87fe55015250 1 Other Other +97a18433-0383-43db-ae5d-15f0594712c3 1 Other Other +97a18d27-b3a3-4b83-9d7d-1ae19b24f2f4 1 Other Other +97a19f7a-590d-4ff0-afd6-b0442b4cd086 1 Other Other +97a1d4fd-614a-403a-b516-17b975d0f5d4 1 Other Other +97a1e3c0-9100-4230-9960-354d4b41bf91 1 Other Other +97a1f272-b4ca-463a-bc02-b8099c54db82 1 Other Other +97a20b6d-76f4-49ea-ad89-eab991acd21d 1 Other Other +97a22522-2a00-4d68-8224-6a74902a2e6b 1 Other Other +97a23cd3-3ead-43ef-bb98-1f85355c9282 1 Other Other +97a247fc-6c2a-4519-aebb-7cce6bee011c 1 Other Other +97a26034-3dc3-4c81-a501-1da60201fda7 1 Other Other +97a27584-a2f7-4d17-ae3f-1091ce0241c0 1 Other Other +97a293b4-e23e-44eb-8f4c-e60097bf6e24 1 Other Other +97a30df1-a934-4964-a516-3cf7b590b37a 1 \N Other +97a33974-f813-4227-ba79-2883ad78ca1e 1 Other Other +97a34e66-2c23-4c8d-8bfd-a2ea00e1705c 1 Other Other +97a3b6be-25b8-11e8-ac7b-fa163e8624cc 1 \N Other +97a3c0a1-f7b2-401a-85d8-4a5aeedb895f 1 James Other +97a3db15-4fe1-4954-84aa-965d0d0b3766 1 Other Other +97a42148-4d3f-41d9-be4b-914957ddd43c 1 Other Other +97a4cbe4-2737-424b-8c95-99d6f80565c1 1 Other Other +97a5021a-96c4-4414-9ce2-ce6dd4539697 1 Other Other +97a504d8-25b8-11e8-a7be-fa163e8624cc 1 \N Other +97a578dd-3aa1-40e9-9d86-5f843a79a015 1 Other Other +97a5e8b8-72b2-44b0-ab00-fda8a6f36887 1 Other Other +97a5fb35-3e6e-412f-9ef0-1357e714ba17 1 Other Other +97a6016f-110a-46a8-aa60-f6cc559d8f2b 1 \N Other +97a60476-29c5-4a7b-833b-ca6ed7a36ae0 1 Other Other +97a6177e-9e71-4eb8-8482-6e51f81d2a11 1 Other Other +97a65ce9-9b40-4562-a502-d94ac13a3f1e 1 Other Other +97a6ebf4-8d9d-43a0-8efb-2b858c51d492 1 Other Other +97a6f14a-a664-4805-8085-07ee884db5e4 1 Other Other +97a70ecc-6494-4bbd-9f00-c7e0581d1d9d 1 Other Other +97a71c63-8fd4-41f9-bb85-09ec5af1fc9e 1 Other Other +97a74047-32a4-4615-b532-8adec19cc50e 1 Other Other +97a78550-c625-4c81-a5b2-53d3aaf68f36 1 Other Other +97a7875b-724d-44e8-b5d1-3bd949197786 1 Other Other +97a7dfc4-6854-4346-9154-5897b9ff7b06 1 Other Other +97a7e499-9d48-4741-972a-c7a6058b82e2 1 Other Other +97a7f468-6e49-45e1-9d3c-bbac67a332ae 1 Other Other +97a7fdbf-ab74-4c23-8e9b-3009225fa502 1 Other Other +97a81f38-812f-4edd-9fa1-8ceb9f96bd6b 1 Other Other +97a849cd-a23a-4922-abd6-b850d4f20443 1 Other Other +97a8740d-74e8-4729-8708-27e4100a9582 1 Other Other +97a8941b-18e6-40c5-906a-d13413c8ad94 1 Other Other +97a8d3e9-6b27-4846-8945-8083d8321480 1 Other Other +97a8d76d-a57a-4c60-bc74-1ade7679e1fa 1 Other Other +97a94c56-fb31-4ce0-a51b-6c4f960ebc38 1 Other Other +97a96a70-1d8e-4140-8118-9282a478d3d1 1 Other Other +97a98c13-2f61-4fd5-a3b4-1b4e6637a168 1 Other Other +97a9b8c4-1c80-4dfe-a241-d1f6c3f0b7b4 1 Other Other +97a9c1d0-39f3-4531-85c5-3838b4eaca0a 1 Other Other +97a9ce0a-d762-4492-9ae4-ad882da7e5e9 1 Other Other +97a9e761-7462-457b-9b4a-b5651266cc50 1 Other Other +97a9ebb6-1d58-42dc-9367-3b3d9fb5eeca 1 Other Other +97aa0488-4abb-4d8e-b2a6-5cb0c121dab5 1 Other Other +97aa0956-a001-4fca-8f37-bb20b2ee30e6 1 Other Other +97aa1bc0-592a-4ef0-a728-d6fa92cc0fdf 1 Other Other +97aa4109-0ee0-4221-b44f-a1344ffb99c1 1 James Other +97aa54e9-90d1-4879-af8e-27aca91ab933 1 Other Other +97aa58ff-9a61-4bda-90af-1415d0e3f9f4 1 Other Other +97aaff77-25fe-446c-b9fa-3b2deab159ba 1 Other Other +97ab3c3a-1b7e-4a7f-9d30-9b00a22a658b 1 Other Other +97ab5520-2b50-45ff-8f86-cc59dd718c7d 1 Other Other +97ab56da-6a48-47ed-a8f4-821c9d24fb0b 1 Other Other +97ab6968-a4f5-4389-816f-4582474ed813 1 Other Other +97ab8ffd-918f-4c7a-b481-db1789085282 1 Other Other +97ab91fa-3323-4b5d-8028-b4fd9ded0d89 1 Other Other +97abb43d-2402-4303-a16b-387a7675168e 1 Other Other +97ac0151-9d47-46fe-92c4-100392d2dece 1 Other Other +97ac1d85-df8f-45b6-8b3d-21d729c0d4f7 1 Other Other +97ac3ee1-1c73-4616-b96d-17732503832e 1 Other Other +97ac69b0-e7e1-4037-ae7c-245e6f97239c 1 Other Other +97ac723f-87df-4e76-a6a4-7fad24894464 1 Other Other +97ac8a83-37b9-4ae9-91af-46b6ca660a77 1 Other Other +97ac94c0-278d-4e29-bcc5-508047f8dc96 1 Other Other +97aca0f5-157e-46cd-a3dc-ad5a79a00369 1 Other Other +97acab4d-d463-458e-9d16-31b25ba100fb 1 Other Other +97acb1d3-2b97-49c3-a3be-c80b2da0b391 1 Other Other +97acb769-c6f9-4bca-9509-e0e5419997b9 1 Other Other +97ad1c4f-1f08-4c07-90b6-c430a5efff07 1 Other Other +97ad5ba4-70d3-415d-b705-1c529d5fbbaf 1 Other Other +97ad7e49-c5a7-4771-80b7-f2f42f6717e4 1 Other Other +97ae1514-a57a-4ebe-a452-239700b8c27f 1 Other Other +97ae44c0-8cff-4acf-85c5-1ee57613242d 1 Other Other +97ae6670-17b5-4bb7-84bf-6584e866bd97 1 Other Other +97aeadcb-a39f-4d46-8ac4-063c2244758f 1 Other Other +97aecd9f-bf33-4223-a2de-956301d20fa6 1 Other Other +97aef64a-5581-4a20-b6d8-bdecaac8d60a 1 Other Other +97af0c89-33b6-4296-9280-6b49ea657de9 1 Other Other +97af4eae-d220-46f3-8cd7-ae60675879f4 1 Other Other +97af7b5d-ab63-4d04-b3ea-9cf9eff5158d 1 Other Other +97af82ad-5940-4caa-a229-37d11e524dd8 1 Other Other +97af95fd-3fbe-4145-ac94-633d31ed7c74 1 Other Other +97afd7d4-73ff-48c8-b357-9cef3026da6a 1 Other Other +97afd933-9d0c-4c8f-ad41-b4528802ef3e 1 Other Other +97afe64e-5470-47bf-855b-c3e3a80271d0 1 Other Other +97b01813-2adc-44b4-b0cc-07e873ae48dd 1 Other Other +97b02b8c-4c20-4e4e-a1bd-3ab11c61efaa 1 Other Other +97b0cd19-4199-4b44-902e-f0cf72dbf4b3 1 Other Other +97b10770-23df-4bc3-a010-36c6b680c03a 1 Other Other +97b12fea-b87e-429e-9dad-d24ec9d29d80 1 Other Other +97b17253-a26d-4968-833a-263baa6d4cab 1 Other Other +97b1a57f-e95a-41ac-a4d3-2fb5024034c1 1 Other Other +97b23880-704c-4507-ab82-2ce9500ef4dc 1 Other Other +97b2a361-c935-4a2d-bf65-63022882b0b9 1 Other Other +97b2de7d-aafe-4e02-9487-fa534b95c7ef 1 Other Other +97b2e76e-3d38-4394-a5bb-988b70341b11 1 Other Other +97b2fa4d-5c00-4771-a18e-942045bfe82d 1 Other Other +97b31b89-3f24-474c-af95-6eb53ba883bf 1 \N Other +97b3391b-bbd1-4187-ac3d-a377f6385963 1 Other Other +97b33a9d-e3d2-46b2-bb96-0bbb8cb796ad 1 Other Other +97b353fd-6243-40f3-a334-fcae5891dd1f 1 Other Other +97b377e4-68e5-4c41-ae66-851071a8b725 1 Other Other +97b3cfbb-d28b-4263-bf62-4381d347d440 1 Other Other +97b3fbb6-2ed6-4dc1-828a-0dbcbb421f1c 1 \N Other +97b41e96-a7bf-4caf-8326-c133eb82fa1d 1 Other Other +97b4437e-dfc8-485e-b0d1-1035fb8be03f 1 Other Other +97b4c52c-12b8-4ae5-bc27-dd7633c8cb97 1 Other Other +97b4dce4-aaa0-4e39-b294-46590aed7dc4 1 Other Other +97b5208d-36aa-4bef-b7fa-fc618e2166f6 1 Other Other +97b57393-751a-4c23-9d75-796826eb31ff 1 Other Other +97b58e0c-63ae-4a40-b9fe-059583a2438b 1 \N Other +97b5971e-57d5-4609-84a2-a3130ff98db5 1 Other Other +97b599ac-f541-44e7-9e9d-846fd8ac4013 1 Other Other +97b5bb8d-be27-4425-9648-5a2bac7f8fad 1 Other Other +97b5bd20-0213-409a-bfdd-884d114864c6 1 Other Other +97b6245c-514d-435b-8a27-4ce762bdd7d5 1 Other Other +97b6715a-928e-4da6-9f64-a79cf6588e85 1 Other Other +97b6874f-7363-42d8-8c07-4523f767710b 1 Other Other +97b6de85-6b06-4386-b874-3c2adde12a97 1 Other Other +97b6fc73-0b7c-4aba-907e-07dc769c501d 1 Other Other +97b71ea3-596b-401b-9f50-f12d910a7106 1 \N Other +97b72fb6-8e19-469c-8731-8efedd00406e 1 Other Other +97b73106-1c2e-46aa-8209-2b37f5597255 1 Other Other +97b79d28-9445-47fe-aa1c-e2350e09dda2 1 Other Other +97b7d016-87f3-46dd-9abd-e277d651c77b 1 Other Other +97b7d094-547f-4c9f-b6f2-28ebba8a11ef 1 Other Other +97b7dc06-0aae-4d3f-84ce-bbe0010d4dc4 1 \N Other +97b7f20e-80d7-438c-b320-5333fd7d92ec 1 Other Other +97b7fd9d-24b8-43bd-a040-b50ff8ddd753 1 Other Other +97b8348b-53f8-46a0-ab98-953470a74a05 1 James Other +97b83b84-e11d-44d8-87dd-5f84fa5f89e7 1 Other Other +97b88e32-95ec-42d1-8ff6-8f1092d37f96 1 Other Other +97b899ce-0e44-433e-bbe1-b7e2d912ee34 1 Other Other +97b8d370-9f1a-4d6d-9b63-52ed6a1e4718 1 Other Other +97b8e939-0e01-4f5e-89c9-56858e399ed9 1 Other Other +97b93dd1-0086-4156-b0ee-3ac022d13d4b 1 Other Other +97b98f01-1398-4403-b78a-687301a80c8d 1 Other Other +97ba0e43-ce6d-4ce8-b2bf-1967233c633d 1 Other Other +97bad741-cd8d-4097-9020-920829102e4a 1 Other Other +97bb14c8-7335-4c94-b624-8ffce7557ba6 1 Other Other +97bb2729-fdb5-43ae-b509-1ca7ff36085d 1 Other Other +97bba02d-67e2-4d10-bd6a-ecc2871d0fcf 1 Other Other +97bbaef1-76cc-4ca2-85a7-6d3cf74be960 1 \N Other +97bbcc21-34a4-4c12-a507-fac581e4486d 1 Other Other +97bbeeba-480e-4752-8ddc-e0b4670806af 1 Other Other +97bc1f67-4158-416e-bbde-06de1933afe9 1 Other Other +97bc23a4-c81d-4ce5-b1df-f52bfc6211bc 1 Other Other +97bc44eb-9a97-4376-a10d-8a17eb8a599f 1 Other Other +97bc74e4-d5aa-4af4-b2c2-cf8c3c4b991e 1 Other Other +97bce9af-ec49-4245-9676-344196675f10 1 Other Other +97bd083d-7e63-4494-8237-37fa09dabd81 1 \N Other +97bd4a1e-333b-450c-bd93-58c819d97ffe 1 Other Other +97bd65a0-eb6a-4eff-97c4-a75902bb45dd 1 Other Other +97bd6604-678d-410f-8840-0ebae5a3ad97 1 Other Other +97bd6d78-728e-420c-86d4-f58ed034f4f5 1 Other Other +97bdbe60-d6f9-46eb-961e-aac25e879ba0 1 Other Other +97bdc5bd-1f61-4ce5-98e3-f58b8f69ffaa 1 Other Other +97bddb82-baac-42af-bcca-844e0c0c01c2 1 Other Other +97bdf38d-9c1b-4422-8198-6390acf60a27 1 Other Other +97be0caf-fa8d-4fa8-afc8-8affaf52352e 1 Other Other +97be13ba-e204-4fd2-bb7a-a960a31832e4 1 Other Other +97beaf82-c652-4ba9-a1f7-a0b7e250e860 1 Other Other +97beedce-b78c-444c-a26d-0298f252f184 1 \N Other +97bef0f9-7434-4bda-9535-8d5f7822f1a9 1 Other Other +97bf106b-b5f9-41c1-8005-32bd0cc7bbb8 1 Other Other +97bf4779-3b24-4bd0-9a84-a56b3aa6718b 1 Other Other +97bfcc83-e916-4f94-951f-95c1a460b87c 1 Other Other +97bfd5ff-f1cd-4a52-9b9e-80d166660228 1 Other Other +97bff947-6cb2-40b2-a561-71402c908a5f 1 Other Other +97bffda0-f7a2-407c-8a29-769aa9e5da7d 1 Other Other +97c01dc7-2602-437b-aa3e-f395568d3d44 1 Other Other +97c023fc-db3a-4717-b674-7453fae37451 1 Other Other +97c081d1-ef47-4dc8-a977-b52d32f0fdf4 1 Other Other +97c0bfc0-a8ca-4022-a727-59640163e140 1 Other Other +97c11c38-826a-4039-9256-443d34d4bb43 1 Other Other +97c1619c-3dd9-4f34-91f4-28e994d4ca05 1 Other Other +97c19392-b90b-4217-b478-e8afa07e8c12 1 Other Other +97c1d305-7984-47b0-99f3-c6940362f0c6 1 Other Other +97c1fb51-495d-4057-bbe2-aceb3d8ddc5b 1 Other Other +97c2440e-8526-4c73-9da6-25448cc0d299 1 Other Other +97c27363-2320-4e62-8cca-4ffdd3e7af7f 1 Other Other +97c2aff3-575e-43af-abb0-11948233181a 1 Other Other +97c2c532-e58b-4281-a35c-bb4460f31592 1 Other Other +97c2e0b0-449c-449e-aff7-6e20d611fad6 1 \N Other +97c354d0-1276-41a2-8bb9-d9b4ea7d507e 1 Other Other +97c3d06f-2d9c-4e5a-bb27-0b07b4f6d059 1 Other Other +97c4bd77-3a80-4c6e-a7c4-aecb11ef522a 1 Other Other +97c4e3bf-9b71-4cc3-954a-f81247647670 1 Other Other +97c4f37e-4d8e-4bbc-b6be-71735e86b7f0 1 Other Other +97c58c84-20f0-441d-89b5-dbb085758c8c 1 Other Other +97c5a4c2-d327-45fc-b4c6-6d898252b142 1 Other Other +97c5e904-bad5-4a57-9556-fba37a0446a8 1 Other Other +97c6448d-4dca-45fa-a9b7-087942b6c694 1 Other Other +97c6486d-5619-4096-8d07-3179b92271c9 1 Other Other +97c66776-4823-47f8-a6b2-96bf0abfc257 1 Other Other +97c67b6c-67d3-4c61-bcb8-2e912a614fa1 1 Other Other +97c68265-768e-4b12-a7cf-79c36cd9ea3d 1 Other Other +97c6f744-3bcd-458c-9037-88082b6a161d 1 Other Other +97c77d3c-e463-486d-bb28-29236f270c87 1 Other Other +97c7971f-9b49-424c-b42d-95cdc66d46c2 1 Other Other +97c7e60b-4aad-4917-899f-5112d3111260 1 Other Other +97c82dc6-d4e0-48d4-bf73-8c4f866de177 1 Other Other +97c865bd-5fc7-4e0d-be96-c393dfb01736 1 \N Other +97c87378-e130-42ae-b2ff-4c894da65c43 1 Other Other +97c889b3-5df8-4466-8d78-bfc49acf5095 1 Other Other +97c89973-3e8c-4a2d-addb-c1444861bcd4 1 Other Other +97c89a17-577e-4584-a29e-6b173da92104 1 Other Other +97c89a99-6260-4218-944a-114e5f977de7 1 Other Other +97c93900-a3d7-4198-b164-38e891ec11c3 1 Other Other +97c94aa5-c928-4afd-ae96-042010cff04d 1 Other Other +97c95531-ac09-49e5-b431-f968a01b874a 1 Other Other +97c96e57-4089-4d59-b237-864f11200802 1 Other Other +97c9a767-67a1-4c1a-8d91-a062e685eec1 1 Other Other +97ca0a35-6b08-448e-96f1-0efada16e5b3 1 Other Other +97ca1bbe-93e6-40e4-a8b6-67be41be926c 1 \N Other +97ca20fd-558b-4882-9164-47052b3f52f3 1 Other Other +97ca2939-051f-4fbe-8eae-b53a85bd81dd 1 Other Other +97ca88b4-d2b9-464b-bd75-9c9703b44361 1 Other Other +97cac3e1-8dc5-4f19-b27f-cdeca830e0d4 1 Other Other +97caceaa-3cfc-4161-80ee-eb9c49d2b40c 1 Other Other +97cb2510-33cb-4b42-995d-d02445729f31 1 Other Other +97cb40c2-e04a-4b7b-b345-2e1c57d7cb57 1 Other Other +97cb611b-70fb-4297-9bb5-46c452b7b069 1 Other Other +97cbb02f-1695-4c8a-b9a4-6b4502776feb 1 Other Other +97cc18d9-5244-4d4f-82e3-487a323f99bd 1 Other Other +97cc66af-71bd-4501-86dc-a3f498543af4 1 Other Other +97cc6a17-0185-4a76-b42b-a4ad4f62079d 1 Other Other +97cc6ed2-7e67-4a42-8882-d09bda9731bb 1 Other Other +97cceedd-996e-40b2-a875-c4623b343e17 1 Other Other +97ccfdb4-3b13-46b3-837a-9ff275cbe9fd 1 Other Other +97ccfe12-77d5-4fdf-9991-c9298765eb78 1 Other Other +97cd030e-83d0-4478-bd23-941c8254a026 1 Other Other +97cd0419-2ca0-4dbd-abef-e0cf224996d4 1 Other Other +97cd1de3-9c0c-47ba-ae47-fc88b3bedcc7 1 Other Other +97cd5370-87d6-442a-b0ea-6059508defa3 1 Other Other +97cdb594-d2c8-4e3e-85ef-520a7aeee0bf 1 Other Other +97cdf224-9786-4c7e-96bb-a29adce3459b 1 Other Other +97ce657b-f2db-4f5e-8bfa-144a21811017 1 Other Other +97ceaeaa-2a95-4d96-aab8-ea0938e9209d 1 Other Other +97cf71c4-3106-4433-8bd3-6648debac79b 1 Other Other +97cf9af3-b3cf-446f-9d7e-c9f4c9d9dde1 1 Other Other +97cfb099-bac2-4900-a84a-5659c6803c28 1 Other Other +97cfba38-b530-4929-930b-3f37c68f4f34 1 Other Other +97cfddf4-05b7-4439-8cc3-5d4ed708c55b 1 Other Other +97cfe671-5e26-4972-88bb-6ba6b88099e4 1 Other Other +97d02aaf-227a-41d9-a70a-42c19661ffc1 1 Other Other +97d03a03-6872-4b56-9212-0efe8085d7b9 1 Other Other +97d04b36-2532-426e-9207-3200319594af 1 Other Other +97d0b07c-dcb8-4e98-b9c4-65f4a4e9a877 1 Other Other +97d0d2d1-d754-4ec0-86f1-97393a65991e 1 Other Other +97d142ad-f834-43fe-9042-3b61cd841093 1 Other Other +97d14e9a-7d74-44a7-af8f-451f61bf1714 1 Other Other +97d248a5-3baa-422b-ad8e-c0b2b4d38078 1 Other Other +97d25dce-0a2a-49fb-b753-1d87d0c9c00f 1 Other Other +97d2b3b1-3e53-4a32-b18f-8630ced0c4fd 1 Other Other +97d2c2c6-0f06-40f6-a2eb-1bdfadd9bd7e 1 Other Other +97d3105c-7ac0-4167-a617-0854f48b53bf 1 Other Other +97d320af-9ef8-4776-a646-f572bde2b727 1 Other Other +97d366c2-9328-47e5-884d-7e2116da1b26 1 Other Other +97d368d4-fd76-4bb9-af4f-80f12e6611e0 1 Other Other +97d37ef3-0804-41cb-a7d5-0196e2267ed2 1 Other Other +97d3b5e9-c0db-4a62-aa92-bba96cf303a2 1 Other Other +97d43d7e-5c4c-45a2-8726-82c0e92c9c6f 1 Other Other +97d44c29-9364-4714-96f6-643e9b794168 1 Other Other +97d46a23-429e-4c1d-96e3-a83ae8235c6f 1 Other Other +97d54716-f5ab-4e16-b0d9-e7d2b17e852e 1 Other Other +97d5b065-cdb9-4142-a880-e12be3fa09ea 1 Other Other +97d5b2ec-428e-48e1-94e1-5dd87b77ce44 1 Other Other +97d5d04d-0f85-4c3b-8eb0-4dce20f35197 1 Other Other +97d6146d-c668-447a-85d3-4bb2256f27c4 1 Other Other +97d651d2-87f7-4083-b92f-46b0a972ae0f 1 \N Other +97d655a8-67de-4ddd-a1e4-6847d39c49aa 1 Other Other +97d6e8d4-4a78-40ce-b268-8133dda3db60 1 Other Other +97d6f409-4cf3-4598-bcc5-e758b4eb0470 1 Other Other +97d7424a-60cc-4d9f-824b-1b25e1aa4a58 1 Other Other +97d7f4d9-55ee-4d56-972a-861601129bb4 1 Other Other +97d88f2b-5521-4bd3-9d69-36d392a224bc 1 Other Other +97d8efd1-66da-4ec4-a172-5e789abdf36d 1 Other Other +97d90566-5213-467a-891f-ff7f2955fee3 1 Other Other +97d9209d-772a-42a9-8cf8-1ef4be0c00eb 1 Other Other +97d9541f-a2d1-45ec-90f6-2b3d4ae1d597 1 Other Other +97d965c4-c559-4466-a920-3d412213c118 1 Other Other +97d97a4e-dfd1-4950-af28-bffa06951052 1 Other Other +97d98714-f3e2-4883-b799-cadd83451e06 1 Other Other +97d9ae9c-00bf-4637-8432-e8d23a9ac650 1 Other Other +97d9da71-450f-4f7e-b03b-7861c731a438 1 Other Other +97da1ed6-a17a-4cb1-b727-23536989d95f 1 Other Other +97da26d0-5355-4535-b7ec-74a0a952fb31 1 Other Other +97da3f8d-7b13-4527-9149-7b0c99c3d319 1 Other Other +97da500f-dce3-4bb9-a129-8da6cdb5d47c 1 Other Other +97da589b-4647-4c83-bd5c-03e6ec91f72e 1 Other Other +97da705e-756a-40b0-9e5b-5e0f15a838b0 1 Other Other +97da8fcf-0891-49f7-b160-fc4d146baf91 1 Other Other +97da9a97-db29-487c-ac26-8a63e1b6f9c8 1 Other Other +97db73db-251a-4085-a05d-fb371ce173a3 1 Other Other +97db8851-bd57-4bf2-b042-139917a79b21 1 Other Other +97db8c1e-9940-4dc9-8494-b7bcb8d63829 1 Other Other +97db9bcc-8728-4c11-be14-7faa2455eced 1 Other Other +97dbdd0e-6621-4c3b-8ee1-75fe77c13add 1 Other Other +97dbf664-90d3-45db-b211-83e440b8280f 1 Other Other +97dc12d1-7254-4ee0-b7e8-64c150bf6982 1 Other Other +97dc21a9-d4ee-4ead-a7fc-6c27f7b2d382 1 Other Other +97dcb03a-f5e1-4755-83eb-93b9e504b1c0 1 Other Other +97dcdd16-d1ac-4220-ab45-0ab1e1cb82b4 1 Other Other +97dd0485-35d1-401d-ba3f-86254d62629e 1 Other Other +97dd746d-bf9c-4a1f-b9b0-78f50b2d22b8 1 Other Other +97dd7eb0-8052-4c85-a74f-f8d3faf960f1 1 Other Other +97de0878-fd3f-4195-90ef-184b90cfe77a 1 Other Other +97de15ed-66df-4a34-ac18-ec4cede96f8b 1 Other Other +97de60fb-ddc3-4c39-9fec-8de846c863cc 1 Other Other +97de6785-ff8c-45f4-98cb-5e22d813589f 1 Other Other +97dea32b-abb1-4934-a29d-166d907fdf50 1 Other Other +97dec43a-e5ba-4b92-beb5-168562302c28 1 Other Other +97ded1d2-e746-48e6-9f7b-c6dd3c37f8b3 1 Other Other +97df2baa-b7f9-42d6-a653-94cfaf802027 1 Other Other +97df889e-d78c-448d-8ed8-5073cc30227a 1 Other Other +97df94c9-6d67-451d-afde-a8a3bf48c48c 1 Other Other +97dff774-f865-4bc7-bdb0-65e2a433d24f 1 Other Other +97dff81a-46ed-4491-a1a9-e1979ebcf22c 1 Other Other +97dfff6d-2e27-44dd-b9d0-73ed33a967ff 1 Other Other +97e038ef-9ab3-4cdf-ba8f-1bf745d212f5 1 Other Other +97e0618b-d4b7-4e52-8396-c9148f55c2e9 1 Other Other +97e07649-54e9-4b63-93aa-7a801244b64d 1 Other Other +97e08aa7-8aad-476a-902f-8f54c06282ae 1 Other Other +97e11637-3b93-4b72-a820-2c8c95e91cc8 1 Other Other +97e18f6e-5616-4ade-aa05-7e79d64f0138 1 Other Other +97e1a771-a064-48bf-a756-3d4917882bdb 1 Other Other +97e1c35a-ff1b-4770-a67d-71d5c3328c4a 1 Other Other +97e1da6a-88da-40ec-810b-7a5688327ced 1 Other Other +97e1ec24-1316-4fdb-90d4-30442e07abc2 1 Other Other +97e200fe-b0d0-4bf8-ad27-e699cf70c511 1 \N Other +97e215d0-df64-47b5-a389-eb0ab4d5fbcc 1 Other Other +97e299c2-0c92-41ef-9682-7befead98f12 1 Other Other +97e2b664-1f6b-4688-945b-436fb75d6d33 1 Other Other +97e2c891-c77c-4a34-a175-c911cf2a3d80 1 Other Other +97e3431a-35cd-46e8-b7cd-b62bbdcc73a3 1 Other Other +97e3446a-9563-44f7-bd04-762646ade254 1 Other Other +97e35aa4-b198-467b-a561-d39e7deca81a 1 Other Other +97e38cb2-aed2-4fb6-b12b-daca765e394a 1 Other Other +97e3cd84-6df7-4418-9ce7-a4f5b376c0a4 1 Other Other +97e3d849-b95a-4763-a616-425db15ab166 1 Other Other +97e3e487-e1b2-44c8-8b67-2d9e90ea1650 1 Other Other +97e3fb16-932e-4157-94f6-b9fc34d0e9a7 1 Other Other +97e401de-077a-4ee5-9203-85fc7f4c66a9 1 Other Other +97e43952-caff-4f49-8c3a-4f3a7e83f99a 1 Other Other +97e44869-9a3b-4bf3-999c-f66bc2b42208 1 Other Other +97e50517-6cb2-49d5-a652-d22a2154a057 1 Other Other +97e563b8-f76f-4c5c-8a3d-756d9aa9c885 1 Other Other +97e57fd1-2e10-4480-9af9-30195d34cd74 1 Other Other +97e5ccd1-2292-4a4b-89c2-ae2ead72749b 1 Other Other +97e5d87f-11cf-4ed0-ba46-5a083f3a2c8b 1 Other Other +97e5d9e6-739f-41f7-9974-24a8262262ed 1 Other Other +97e5e251-2342-400d-ab87-4407a23f68ce 1 Other Other +97e63601-78c3-4c0e-aece-87e446328e90 1 Other Other +97e637b3-5834-46d9-b118-42a8f1c20824 1 Other Other +97e65667-25b2-4401-bb9b-d9cdd54bd75a 1 Other Other +97e657b0-27c4-4973-9105-64603b310623 1 Other Other +97e6d922-da63-44bb-9c2e-b87b0bf88d96 1 Other Other +97e6f723-00b7-4181-a6a2-da3c83a77bb0 1 Other Other +97e741e6-fe8f-4b7c-8887-02a6325fad2a 1 Other Other +97e75554-02e4-4c3e-9c60-cc2f9c9f7250 1 Other Other +97e782a8-3e42-4942-81ba-8ff0150aad81 1 Other Other +97e860fd-a5b4-40d2-80c7-c24123fbe3c6 1 Other Other +97e894df-74c5-4642-a382-de0319e9fd0c 1 Other Other +97e8c6ae-d22d-4d81-8894-09722ce168cb 1 Other Other +97e8c7d7-9812-4d51-ac85-5c99e48444fa 1 Other Other +97e8ca34-4841-4a29-b712-007995458e5b 1 Other Other +97e8d23e-098a-433b-9479-88e2bb7a7687 1 \N Other +97e914ac-2c4b-4259-8407-0b5b5bda8d97 1 Other Other +97e925b0-736a-4c2d-bc03-680665c1915a 1 Other Other +97e926cb-f748-4454-9b1c-834f1b871288 1 Other Other +97e961a2-b7d4-47a8-9ba7-a895cd6f6178 1 Other Other +97e96617-e5f5-4d41-958b-a4a03dc2331f 1 Other Other +97e9a5f1-ec27-4372-bb71-3d3af6125b00 1 Other Other +97e9bddb-ac27-4193-9f92-6b7697bb3720 1 Other Other +97e9c371-1d4f-4c14-9997-ba3379e274f9 1 Other Other +97e9e894-7e91-4c55-b665-329519f5febf 1 Other Other +97ea040d-4d9f-41af-97a9-f6a1a24e75a8 1 Other Other +97ea0b0c-4d99-44f2-becc-7303b2bed6a9 1 Other Other +97ea467b-8a34-41f4-8cfb-1f563d6932af 1 Other Other +97ea553c-5d66-462b-a0fd-e7ed3bacdc01 1 Other Other +97ea6e93-96aa-4748-9e7d-f21c5bae4878 1 Other Other +97ea7e59-ceb6-434a-9081-4771b2e0ea06 1 Other Other +97ea8d01-ce7d-414b-a32d-00bb8a888d70 1 Other Other +97eac00c-1199-49d3-b26f-6b0bcdca57fc 1 Other Other +97eb00f6-584a-447b-a328-d72547cd8f5b 1 Other Other +97eb6ae9-a966-460b-b29a-b2354740f24a 1 Other Other +97eb772d-6d1f-41ec-9eaf-20e91fc2516e 1 Other Other +97eb981b-2606-4bce-828a-6f330b9e8e7e 1 Other Other +97ebacf7-61cf-4b64-b5d4-8bc6823c486c 1 Other Other +97ebf9de-b5e1-4626-b2a1-cc9031383af9 1 Other Other +97ec3e08-0211-4596-b5fb-70dd8bf87576 1 Other Other +97ec4ee9-fbdb-4c34-913b-4f2e012d531b 1 Other Other +97ec4efb-e2ea-46a4-a3f5-b508e83ddeff 1 Other Other +97ec7d9e-157e-495d-b951-61936e76a5ad 1 Other Other +97ec9197-a759-4362-b915-c47a7d39b827 1 Other Other +97ecae77-4ef3-4761-963f-7bfff2819b5c 1 Other Other +97ecae79-7d92-4f3b-b009-afa466a09adc 1 Other Other +97ecbfda-0189-47e8-be6f-272136ba1420 1 Other Other +97ed05ae-474d-432d-a5ad-f977bc01536e 1 Other Other +97ed224f-4782-4464-a2ca-7e1b4f257db8 1 Other Other +97edb514-dd71-4263-a0b6-cf7d89f55c6a 1 Other Other +97eddfd3-c529-4e87-85f6-114bee2dcfe8 1 Other Other +97edeed5-8b29-45a8-8e8a-facd873f7ff3 1 Other Other +97eebcbe-7cb3-414f-b2f7-53c399234d08 1 Other Other +97eedbaf-a171-4288-92a7-d0583c32ed61 1 \N Other +97eeeb9b-233e-4db4-bc85-e1f83397d2f3 1 Other Other +97eeef1d-dd8d-4edf-bc7d-abfe476093ab 1 Other Other +97ef0fd3-ecb0-41e4-9a74-fa9fd9787c9d 1 Other Other +97ef35d3-574a-49b7-be3e-bb4ba5d76e84 1 Other Other +97ef559f-d7a1-4950-9cbd-0ab6359ae69b 1 Other Other +97ef7071-b26c-4feb-8c3e-71145937302c 1 Other Other +97ef824d-2b65-4662-b343-6b2a4ea5303f 1 Other Other +97efac24-a542-4d3c-90b4-b1a1cabb606e 1 Other Other +97efeb66-1f0a-46ad-8872-41a23357e7f9 1 Other Other +97f02d4f-28ae-4211-a644-2f8f4660fec7 1 Other Other +97f04d5a-d719-4456-a7a6-1a7dd195d5ee 1 Other Other +97f125b2-3ec4-4930-8a29-75ae18a48b19 1 Other Other +97f12bf5-c03b-4a11-b5da-f9ba403a2c3b 1 Other Other +97f12ea8-be43-4dfc-8056-6e49296e882d 1 Other Other +97f16a24-51e8-43aa-adac-daef1d0069d5 1 Other Other +97f1809c-ccf6-438a-aa24-e42e53cd9e8b 1 Other Other +97f19011-55e8-49fe-9ad8-a4511d049603 1 Other Other +97f19186-0beb-11e8-9341-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +97f19517-52c5-46cd-92e0-7f0bc9b798f0 1 Other Other +97f1b68c-64bc-4240-a753-f64792c11a4b 1 Other Other +97f1c72e-d09a-49a6-b2df-360ff536de72 1 Other Other +97f1d97b-e7dd-42eb-8410-53bd8b9aa8e3 1 Other Other +97f1e760-9eee-4222-b8c8-210b15003058 1 Other Other +97f20c55-9c45-4aad-84f1-7e0560a3d0ed 1 Other Other +97f22e77-93ba-4cea-ab75-5b09435007cc 1 Other Other +97f23be1-86d9-4ace-a46e-fc6d1c84161c 1 Other Other +97f24080-2ada-43c3-b844-567a873a04c2 1 Other Other +97f2596a-78f2-4c56-808a-eb9d2e9af359 1 Other Other +97f276b5-1e00-4a26-8309-7b145f2b0244 1 Other Other +97f2b898-8d68-4540-b63e-e31edfb114d6 1 Other Other +97f2bbbc-3924-4e2d-b978-440d51c8ca6e 1 Other Other +97f2c5e6-3a27-4236-ab6e-66e5bc30ed7b 1 Other Other +97f2da0c-284e-4985-b65a-05c50037544e 1 Other Other +97f2e46b-283e-4a85-83f4-6fe37ac5a887 1 Other Other +97f31605-5d01-4bef-9acf-ac39242777cd 1 Other Other +97f343e4-b7e2-446a-ac47-3e00aea07e63 1 Other Other +97f377e2-1eb2-4a42-906e-788e5b57ea73 1 Other Other +97f38d1f-08d6-4c71-bd8f-63655ae8f6ab 1 Other Other +97f3de62-4722-4083-bad1-015f6f5167dd 1 Other Other +97f418be-9bff-4a39-946b-3f0f5f2c969c 1 Other Other +97f44f32-5dff-4de4-a38a-053d61a7e0ad 1 Other Other +97f4cdb9-c3e8-451f-b350-6579cc575b29 1 Other Other +97f4d23c-3c51-4024-b980-1edbfc33b6bd 1 Other Other +97f50be0-e38d-4c8c-86b0-b6ac7166462d 1 Other Other +97f5766b-ef76-422c-98ce-90060670706e 1 Other Other +97f5fb72-f69d-42e9-8401-ad43ec84fd58 1 Other Other +97f64102-b875-4fd0-ac40-1c2136fb4aa1 1 Other Other +97f65a5a-d6e6-406d-bcfc-3a6f3426d035 1 Other Other +97f67969-e18e-4417-9b91-6bcb6c23e1ce 1 Other Other +97f68615-26e2-4d27-be7b-afde9f5ac8ef 1 Other Other +97f6a510-57dd-447e-a759-0c0c6be82ab7 1 Other Other +97f6e088-b02e-4d88-892b-643064ce3982 1 Other Other +97f6e4a0-ef8e-4419-b15b-eafbd5e5ea6a 1 Other Other +97f73577-3f29-4fe5-8504-6ad913c89b3e 1 Other Other +97f7390f-3c40-4573-b529-fe0d8a13b55b 1 Other Other +97f74e7f-15a4-4f6f-9260-df55d15ea7a1 1 Other Other +97f7cdd6-44d7-40e9-9e2b-6e80cfa5f177 1 Other Other +97f7d8b8-1f9f-4d2c-88a0-06d9497ce96f 1 Other Other +97f7dee0-3db9-42e5-9f4e-d580ac755f3c 1 Other Other +97f7f893-f6a9-4c30-8810-8b19b68a04bb 1 Other Other +97f81b3f-f35a-4b70-a1ec-30da72315399 1 Other Other +97f825d7-19e4-43ef-ba2b-8c8f4bc5aa6e 1 Other Other +97f86125-1bbe-4102-8a6f-00b1ae71b650 1 Other Other +97f86246-e189-4f63-bb87-87bde7d595a6 1 Other Other +97f897f5-21d8-4541-b3cb-d5e3eedbccfe 1 Other Other +97f8b9e5-775e-4866-a2c7-81101bc6a3e0 1 Other Other +97f8ba12-8950-49c2-a797-d4398d3a072c 1 Other Other +97f8cc83-18db-4726-9c78-641cc5a34fb3 1 Other Other +97f8d296-6697-4001-8307-3325572b1ef1 1 Other Other +97f92a6c-3d4a-4bff-97d1-ed06b516b4ee 1 Other Other +97f965a7-9ab0-417f-9424-df4e3fa9f12c 1 Other Other +97f9ab35-3582-4103-881a-711cdecd6945 1 Other Other +97f9f3a0-9d6e-42f3-ab59-25767e13664f 1 Other Other +97fa1654-538f-4e63-9dde-7cb29c282293 1 Other Other +97fa8bba-8078-4bc1-ba81-5ad486dd8c17 1 \N Other +97faf0f1-721f-4e83-a0ac-6cf9e8a00f06 1 Other Other +97fb10e1-db24-4d1b-8982-01b373343550 1 Other Other +97fb1aa3-b68b-48e5-9131-15e8efa0a305 1 Other Other +97fb65e6-caa8-4ef8-92c3-eb9ec387907b 1 Other Other +97fb9f76-4a7a-4cfb-a900-9d8f971c2565 1 \N Other +97fba576-f77b-44e5-802f-c4b6002a5d79 1 Other Other +97fbd4db-4481-4f76-978a-f41ce8799da0 1 Other Other +97fbd91b-a61b-4dd4-85b8-e41dc495f067 1 Other Other +97fc0444-41d0-447a-adbb-9bacd625ed88 1 Other Other +97fc1b78-7bee-4eba-8a08-bd4de6893acc 1 Other Other +97fcf0b9-5166-4573-aa09-ee5a722f0eb6 1 Other Other +97fd0122-efa8-463e-973a-87b5f70cff61 1 Other Other +97fd0cc9-11d4-4027-9711-97596481e053 1 Other Other +97fd53bb-200c-4871-b4b2-768a4c809750 1 Other Other +97fd9e25-f7d2-464a-b8a5-2fad89f55141 1 Other Other +97fd9ee3-4f54-42a8-8be0-5671764bb712 1 Other Other +97fe0622-7150-4d9e-ad05-dc6bd3a13014 1 Other Other +97fe6017-b032-420f-ae14-6a64a8041cbb 1 Other Other +97fedfb7-f602-437f-a53c-42b8f9d73273 1 Other Other +97fee1a4-902b-4503-86c6-30e3bf4e1dbd 1 \N Other +97ff038c-cf7a-41bc-a470-c8629889a6a8 1 Other Other +97ff4466-18fe-4e12-8861-274640398587 1 Other Other +97ff5d57-a963-4618-b85c-d18ce0871037 1 Other Other +97ff833c-2cb9-4474-a52d-05fedf30435c 1 Other Other +97ffc219-3b41-4b9e-a129-4e3b6eb89ec1 1 Other Other +98003e92-7130-4255-a1cd-26e40a89f779 1 Other Other +98004458-08ab-4ac4-b981-593c7e737006 1 \N Other +98005ed9-0902-4cd9-836d-06db030264fa 1 Other Other +9800d348-da36-4426-a302-5a83bbf05cd8 1 Other Other +9801269b-5dfc-4224-8d90-3c70fd08ac6b 1 James Other +980129ce-2c55-420d-87fb-59d1b9082643 1 Other Other +980164e6-e77b-4e62-ba55-f894f3809cbd 1 Other Other +98020e45-cab4-45e5-b3a2-faf0178cca8e 1 Other Other +980258b9-ff37-4476-938b-f5f13215123e 1 \N Other +980287ee-4444-41b9-95e3-81d0d77dd3fb 1 Other Other +9802a98a-4ae5-4504-8eca-d5266a624917 1 Other Other +9802bf38-fc94-48ef-b475-a89d26a5cdc2 1 Other Other +9802eb9d-4707-4dbf-9aea-202fdf259357 1 Other Other +9803521f-5e82-4f0c-9391-f9f876bf772c 1 Other Other +98039896-6bd1-42e6-8a38-c5a152196959 1 Other Other +9803d877-c291-4add-8dcb-b40d665c498a 1 Other Other +9803d95b-df42-4cef-905d-5ed7fa205e62 1 Other Other +9804325c-67c2-4424-b87a-48d364753be3 1 Other Other +98043596-138e-4b11-9924-054663b10c99 1 Other Other +98045e93-40ad-43d1-9918-9245a0078db8 1 Other Other +980471c8-c726-41e2-9da1-d1ff5be9543b 1 Other Other +9804c97e-dcc9-4c32-aa63-82e6d4aa48e7 1 Other Other +9804f92f-4b47-4f0e-b68e-5edcd82e060a 1 Other Other +980526c1-d72c-4772-9199-eb74e307d62f 1 James Other +980542f3-16f4-41f8-8203-316591e85026 1 Other Other +9805a00e-7e90-427b-981a-cb89a2fb865e 1 Other Other +9805a422-a8b3-4e4e-8595-ab8f2565218f 1 Other Other +9805a615-03c1-46b0-81a0-ebafc92a2bd4 1 Other Other +9805d5c8-ee46-4210-9669-8c4f1de50006 1 Other Other +98060606-4db9-432f-9928-18e13d3351cc 1 Other Other +9806254d-2cbf-453e-a591-777bc07535f1 1 Other Other +98065933-d073-430c-9d7f-fd95952c874b 1 Other Other +98067279-9f96-47c1-b983-096c6a3ee3bb 1 Other Other +9806841d-be3d-4dfb-83e3-6a73f818ed91 1 Other Other +980697d4-021a-4d11-a869-da38ef3e0602 1 Other Other +980699de-756e-4c9d-ba31-01415fb739e7 1 \N Other +9806a4bb-4a5a-4200-aac4-d9b7db02c50a 1 Other Other +9806cdb3-1d98-4a8c-8d34-61e7402db7e3 1 Other Other +9806d677-ca62-4c3d-b391-44d1cd34c160 1 Other Other +9806d919-6e83-4d9c-a3de-62251a2b638e 1 Other Other +98075b73-1600-4f4c-a286-d2970257df33 1 Other Other +9807661e-61c8-43b4-a4f5-26d58958cd74 1 Other Other +9807a2a4-93a6-11e7-9311-fa163e8624cc 1 Other Other +9808324b-e693-4156-84d4-39fcf7913fb3 1 Other Other +98084617-e368-4c5f-8642-4d554b64e600 1 Other Other +9808497e-b0d3-4e63-af6f-df065a380458 1 Other Other +980877b8-043d-4465-896e-b31f08c4d24b 1 Other Other +98087989-b763-43db-95c7-7bbd7efd5259 1 Other Other +9808e5a2-1032-4071-bc0d-a9f4297462a2 1 Other Other +9808f5f3-76e7-401d-9ed0-f2566fe5bcbb 1 Other Other +98090cf0-8731-46f0-a74d-f416f9d01b44 1 Other Other +98093d9e-12bf-4e3c-b768-b429d2762f95 1 James Other +98097900-64e8-41e7-9bb3-6771b0aa8ece 1 Other Other +9809a9e1-808f-4523-902e-a3c95ba10418 1 Other Other +9809bcc3-e81c-40fd-8dcf-37d96770083c 1 Other Other +9809dfd5-c11b-4cfb-91f8-db748fb14f55 1 Other Other +980a078e-7315-4e42-b331-a6d4a6ca03bc 1 Other Other +980a1c4f-37f8-4f93-aa62-279d8185559c 1 Other Other +980a4bc3-a763-46d8-ab70-7bc65e7c71dd 1 Other Other +980a79f4-3f1b-4826-830b-db310d67fe51 1 Other Other +980a8b4d-177c-478a-97f3-1e69a67ae388 1 Other Other +980ac9c9-eb4a-4110-a012-b1fca9445166 1 Other Other +980aca4f-689a-415f-8e91-d4cb8a492ff1 1 Other Other +980b96a5-b765-422e-878c-7618a14068d1 1 Other Other +980bcd40-c873-4bc6-a6e0-3c6b9388f8f1 1 Other Other +980c166f-acd1-49ce-bf72-3f4086fc4bf8 1 Other Other +980c9c30-d1c5-481b-84a9-9b0c49563b3d 1 Other Other +980ca9ce-cc46-43f5-bc80-978be1e06ca9 1 Other Other +980cc18f-e33c-4197-8aef-a960a0c2a786 1 Other Other +980d16f3-151a-45f4-80eb-62a13a782e04 1 Other Other +980d56f1-24d3-47d6-a6d3-9386362aaeca 1 Other Other +980d628e-2285-4080-920e-65156e3434cb 1 James Other +980d6f69-46f5-4d5c-802c-1de0f0fd5049 1 Other Other +980d8219-2711-446b-a70e-4ba4ecf9f7d8 1 Other Other +980dd6a9-8a87-4da0-9acb-0c9097479699 1 Other Other +980e110a-08db-43ec-8fd0-03c0ff5b1860 1 Other Other +980e80a3-ebce-4f77-82c6-28c60bf1d2b6 1 Other Other +980eb135-3d16-410a-901c-bd1fa8173d48 1 Other Other +980ece7e-4082-466f-a70b-235592293dcd 1 Other Other +980edb9f-0fff-4353-b05b-7d95fe954ed8 1 Other Other +980f0381-2b62-44b7-8120-bb8a28c919e9 1 Other Other +980f17e5-7aae-438e-a088-16f154c9c609 1 Other Other +980f1f23-92b5-4954-8c92-31736fad09eb 1 Other Other +980f310b-dfd7-4e76-9e25-711407f58f59 1 Other Other +980f7422-74c2-4130-8393-7d0cd9893e0c 1 Other Other +980fa8ff-82a3-4ca6-b2ef-a83f19676b48 1 Other Other +980fb36e-2f99-4446-890f-cbac175a9d57 1 \N Other +980fee63-f797-462e-9eaa-edd4e13b9bbf 1 Other Other +98106af2-c8db-45be-8530-ad4421a9813f 1 Other Other +98107725-7925-4411-83ba-6e412b466ce2 1 Other Other +98108041-cd6e-4839-94f0-fb68a1ed62c6 1 Other Other +98109998-a734-451d-a08a-93cad05e8c8a 1 Other Other +9810ae2e-aa7b-496a-bf0a-bc430e4e5a32 1 Other Other +9810bd31-de8b-4dbd-a2e2-8be8887d3dea 1 \N Other +9810bddd-0e0b-40fe-a89c-3f7ecb6eb43b 1 Other Other +9810bdfe-c919-4010-a801-b7cfcaea4702 1 Other Other +9810d26a-058e-4f89-8cc7-87f48507b40d 1 Other Other +9810e277-955a-4759-a523-ed798a9999c7 1 Other Other +9810faf0-d82d-45cc-9013-f44df4905617 1 Other Other +98113810-50f7-441d-b90d-490e4aecb375 1 Other Other +9811b6b9-14b5-45fa-b56d-305299eb3c63 1 \N Other +9811b978-6b91-4815-a5a8-4daf6e065615 1 Other Other +9811ef5d-7b73-4569-9ec0-5861010d1e47 1 Other Other +98122d41-7a8a-4a24-95b1-8a5e58ac380d 1 Other Other +981254ef-2db5-4c51-b1f5-f0cf7475d839 1 Other Other +98125937-fdda-407b-9edf-9e50d5adf25e 1 Other Other +98126995-2dd6-47eb-90f9-b74216b54d29 1 Other Other +9812afed-5d46-4c3c-a5bd-28dfc1943b6e 1 Other Other +9812ca33-bba2-468d-832c-b5d38bef1377 1 Other Other +9812f4c0-e253-4aa9-8366-51fb2f3c7ba4 1 Other Other +9812f5ce-c89d-4ba4-98e6-6723b4793aae 1 Other Other +98133e25-c8f6-4386-b7f9-f43a7287a800 1 \N Other +9813bd91-816f-4859-bc19-47ed30ab5acc 1 \N Other +9814035f-98b2-43cb-b985-43f65a7982d7 1 Other Other +98143f64-b5c4-4bbb-8895-1b3e9ca25d59 1 Other Other +98146c08-c312-4b11-ad3c-18c0bd167355 1 Other Other +9814852e-eeb6-49fd-940c-11c99df91867 1 Other Other +9815097e-d89b-4f40-bfaa-6550c05b2fb8 1 Other Other +98150ba4-eb72-4460-b691-8db71eef3468 1 Other Other +98152e59-d0a0-47ec-b4fa-42cb61df4422 1 Other Other +98158855-48a2-4bd5-b33b-7d2fe8fbb2e7 1 \N Other +9815d102-3b85-40da-8f0f-96be045a7141 1 Other Other +9815e37c-008c-4022-bf2f-94393e74583a 1 James Other +9815e76c-8bc9-4957-baec-acfb791dd8d7 1 Other Other +98163412-605a-4bc1-bf18-8419e0bf20f3 1 Other Other +98166e4b-82f5-4a5b-af37-cb562809f4f9 1 Other Other +9816dd91-81cf-4c9d-8afd-c9a0c711161b 1 Other Other +9816e0b9-1fe9-4b63-b9a5-7e47420c336d 1 Other Other +9816f544-b2c0-44f2-8c15-66fc2bd56ed4 1 Other Other +981746d5-ba06-4c41-86a7-5b92bac03e9a 1 Other Other +98174832-341e-49c6-b982-3f0583521029 1 Other Other +98175bcf-9170-455b-a0ff-64ada778edd2 1 Other Other +98175d8a-c6c1-4044-9ed7-b9bcb86617e8 1 Other Other +98176929-6fee-49d4-a2aa-26e37e3de207 1 Other Other +98179cc7-0369-4e1d-8138-6b01aa6ad3ed 1 Other Other +9817d19c-3877-4108-b40f-6fc53edc22a2 1 Other Other +9817ec64-3e1c-44ff-932f-d2c779d5afd7 1 Other Other +9817fb36-893d-4b6a-a0c2-52d666fd7d4e 1 Other Other +9818778f-9de3-4b81-9b95-fd7edf8922a2 1 Other Other +9818a4b3-0e01-452e-9584-ca4d03c3006a 1 Other Other +9818efbd-0a76-4a26-b3f9-7d36495da5f6 1 Other Other +98191ca5-28b8-4b50-90bd-55813733286a 1 Other Other +9819a706-f1cf-4ef6-bbf9-3d90e7e1167c 1 Other Other +9819b204-d04d-43b8-810a-1a8d6ca8df44 1 Other Other +9819f146-8ad4-42f4-8641-5c27ecf66586 1 Other Other +9819f249-b548-4166-92d9-b9673c38260e 1 Other Other +981a02a7-7c8a-4bfa-afe4-9e13b1d2fd29 1 Other Other +981a5b66-b39a-4220-aa78-0842d30aa377 1 Other Other +981a6cc7-8726-4cd8-9312-0e1be07dbf73 1 Other Other +981a9874-81f3-4808-a44b-4eef4926a540 1 Other Other +981aea5f-de28-4d1b-8cc3-c44c72865848 1 Other Other +981af571-de00-4926-9b27-fcf4c106fc54 1 Other Other +981af924-4ab6-4d9e-8052-b1bba4ee4357 1 Other Other +981b40c1-7ed2-41a0-acc4-9cbd64e8d510 1 Other Other +981b468d-2ee2-47a4-8906-856ad361d336 1 Other Other +981ba554-ba2d-4474-8cf4-30dac7439995 1 Other Other +981bd594-aaa9-40ff-9c85-7cfb581e2612 1 Other Other +981bde6b-368e-40b0-83f4-aae3af092d01 1 \N Other +981bf8b9-2085-47cb-95a8-533addafc092 1 Other Other +981c415a-0171-4d61-9e19-5556405b0877 1 Other Other +981ceb4a-3fa5-464a-aa72-b1de56405f84 1 Other Other +981d1047-8a97-4ef8-9cc5-fb4cb192fb07 1 Other Other +981d6421-1630-4c10-98f6-24d508c82108 1 Other Other +981d6e69-33bf-44ba-a621-cea097cedee1 1 Other Other +981dc83f-a7f9-4698-a9bb-11b671bb7929 1 Other Other +981ddd73-94f3-4132-835a-92443e6c41ef 1 Other Other +981e0b02-8113-4dfd-bc1c-68f9a0c7a57a 1 Other Other +981e4f05-21c2-4727-86e3-2b3817072868 1 Other Other +981ec170-38a0-466c-b4f5-8c8e3083c388 1 Other Other +981f0cc6-9583-4b43-9160-81573df8c2a8 1 \N Other +981fbad8-9309-4dbf-a179-57c1bc0d43c1 1 Other Other +981fced6-a238-4d83-b967-e99364ef7315 1 Other Other +981fe3a0-6b3a-4759-9198-3c9d307de869 1 Other Other +9820362b-1ae3-4b6a-a7de-b27e8c515f13 1 James Other +982053a3-19c7-44af-ae30-e0a9d3d8ad84 1 Other Other +98208f00-b20d-4ee7-98cd-d42de27aa363 1 Other Other +9820bf79-fe04-4384-89bc-e1640dffb65b 1 Other Other +9820cc92-5621-44ee-8703-caffddc4bd1d 1 Other Other +98215ee9-7a66-414c-9b44-79fc17692760 1 Other Other +98217d96-3ecd-4cd2-b6d3-4f22115c8c3f 1 Other Other +9821add3-c6f5-4b15-97a8-1df491cdc218 1 Other Other +9821dbcc-e806-48bd-8789-d56195a7c6aa 1 Other Other +982207c4-462e-40e2-a964-974a1729d2cc 1 Other Other +98221f48-e754-4f9f-935b-138b207e70dc 1 \N Other +9822508f-5acf-4cae-b140-7b2beff43865 1 Other Other +9822547a-d968-4501-bb11-fb048067b577 1 Other Other +9822d320-9da0-4c69-aa7a-1852360dc1a1 1 Other Other +982306e5-a981-4551-bd3f-7f3abe1ae087 1 Other Other +98237348-07bf-450c-ac41-f544403e8920 1 \N Other +98237a71-1401-44ac-8608-25aef7e1a0fe 1 Other Other +98237de4-d085-4c54-ac65-b1c41024d081 1 Other Other +9823d4ca-1fc9-41c6-8bc3-3cabf4a74bad 1 Other Other +9823dc3d-d87d-4f83-a6a5-a7b765079bec 1 Other Other +98242390-c2f8-457d-810e-4d4f7d0074f1 1 Other Other +9824590b-24eb-4d58-a74e-45080e63f830 1 Other Other +98245be4-0fd8-49ca-99da-da4cb916400a 1 Other Other +98248d91-c633-4b1b-9427-1b0f395ced2e 1 Other Other +98249590-3f65-4303-8f99-f1412f7fa574 1 Other Other +9824b325-920c-4764-b36d-bbc3733acab9 1 Other Other +9824fb01-d095-4519-b666-c18bfeca4946 1 Other Other +98252ad6-c302-43c4-addd-6bc1e4ecb10c 1 Other Other +98255a46-c5a9-421d-b4f3-8d2538e18a2c 1 Other Other +9825630e-a6ee-428d-8416-618821dce809 1 \N Other +9825826e-dc70-4b1f-8769-a9a6570799af 1 Other Other +9825a780-18c0-4af6-b3a0-0c023bca5d98 1 Other Other +9825c13e-e48f-4fd2-8413-03d57c5b929e 1 Other Other +9825cfb8-4657-428f-b433-def3dba0e3b8 1 Other Other +9825e60d-d580-4e85-a711-902964dd3b88 1 Other Other +98261071-1e72-4618-9a7c-5a6494bad088 1 Other Other +98262ee8-7a90-4c69-a446-59e1f5424376 1 Other Other +98263be2-7fb5-4c6b-bbdf-6fe204f49500 1 Other Other +98265cb1-f2b1-4fb2-b843-ad57cfed738a 1 Other Other +9826c99b-d980-4c7c-a129-89976de8f25b 1 Other Other +98273bc7-ac9d-479a-91d0-86766f2e71a8 1 Other Other +98276cb8-b7c3-4cfc-baad-60c3c3495e83 1 Other Other +98279616-4d9c-4cee-9016-17268cc8504d 1 \N Other +9827a5fc-4a74-4ba8-ac35-4505abaf7412 1 Other Other +9827bd42-8eac-46ff-b9e0-f101902042ff 1 Other Other +9827c5ce-7563-4851-921a-7e35c170157d 1 Other Other +9827df83-c2bc-46c7-bfd0-db02c38d095d 1 Other Other +9827f056-950a-4c49-ae6a-5d5a62a7b5f6 1 Other Other +9828538b-0f42-4e27-8959-21f96b0ad8e0 1 James Other +9828862b-04f3-412f-8bb7-6ceaa38686f4 1 Other Other +9828871e-26e2-4415-a68d-ab1a3d6d38ef 1 Other Other +98289286-49f5-4f65-a09e-9319f2b1dcc3 1 Other Other +9828c22b-1b83-49a3-aef0-9f7e122a3b17 1 Other Other +982908cb-5304-46f2-ab9c-a9fabb2ca50c 1 Other Other +982911cd-0f22-4419-94fa-8081fd2d9e38 1 Other Other +98293d5b-27d3-4543-b981-6ece577fc352 1 Other Other +98293ef9-61e0-4365-9b56-292b6f02ec56 1 \N Other +98294636-fa80-46e3-a2c2-0c26c505ff63 1 Other Other +9829949a-d306-43ce-999e-84727cd3fb6d 1 Other Other +98299738-625a-4537-92be-910019e96fb9 1 Other Other +9829bab8-cc13-43b9-93ca-cae5d3393abb 1 Other Other +9829dd48-5b55-4f53-a7e5-028276bff89a 1 Other Other +9829f291-c433-4fbe-814b-f7c39c7889ab 1 Other Other +982a7b44-cea5-422e-b9f9-5010dd694d83 1 Other Other +982aa828-b85e-4c77-832f-435ffddb25a8 1 Other Other +982abe40-ee09-404b-87f9-9f0513ff51e0 1 Other Other +982b16f7-6efb-46db-93e5-35808306711b 1 Other Other +982b29b4-e7ec-4ebd-9354-bc4752e92d67 1 Other Other +982b4dc9-a063-4015-8c23-742aa00c4cc3 1 Other Other +982bbd17-d043-4155-8890-8e3409b0042e 1 \N Other +982c07d0-866f-40b2-a4ac-16968e16f455 1 Other Other +982c26fa-215e-44da-ba2c-e2a6b19a005f 1 Other Other +982c38b5-a345-454b-8b9e-8bbfd786d638 1 Other Other +982c9fa9-05d1-4fa7-a816-1b17266bd6fb 1 Other Other +982ca756-aacb-4332-ad79-be0f444e3411 1 Other Other +982ccaf8-44cf-48df-9740-42ccb0fb7f53 1 Other Other +982cda07-9f21-420d-8ca8-3e07dc5e2479 1 Other Other +982d273b-9b44-46de-a65b-03a0c7fb78b0 1 Other Other +982d36f4-f446-40e7-a4d5-202fb86216c6 1 \N Other +982d91cb-9d17-48df-a378-83ce07383cd6 1 Other Other +982dd437-f9c7-4f38-b3de-deddb58b3bba 1 Other Other +982e3a94-0dd4-4074-b342-99f4b3a41981 1 Other Other +982e5a86-172b-408e-98f1-02f7d240a857 1 Other Other +982ea202-c6b5-4a80-b9f8-4915ab594431 1 Other Other +982ec5fe-e214-4d95-bf83-6882a590b8c4 1 Other Other +982ef6a0-9ef6-4580-9670-cb38020d5fa5 1 Other Other +982f09b8-7415-4c4f-b933-0232a0c94a3c 1 Other Other +982f343f-6de0-4fe9-8337-5587db855550 1 Other Other +982f892d-3ee6-44b9-b90d-3d1e7d9f5ea6 1 Other Other +982fad1a-7ce3-4ca6-9389-fdbe3ffa5bdd 1 Other Other +982fd1ff-611a-498b-91cf-bff91b09ccbd 1 Other Other +982fe807-9583-4627-ba90-734d5cf27ad7 1 Other Other +982fea3c-3ec0-4484-9312-b34fcc8332a5 1 Other Other +983055ec-ee4f-4c73-8c4c-031fd666db7e 1 Other Other +98309171-b81b-4079-84d9-4c1a5a639150 1 Other Other +9830cc4d-cb29-478a-8edc-069113633430 1 Other Other +9830d1d4-ff41-4377-880a-b5c14c5bd155 1 Other Other +983124f8-f3bd-41e4-9733-e1dc1b23d32d 1 Other Other +983142a6-a39e-4140-80fa-ebb5326efa1e 1 Other Other +98318bb2-91a4-4563-9b69-22a12a22c2cf 1 Other Other +9831a8ec-c40b-4db4-af41-1b5d3423aefe 1 Other Other +9831df0e-9845-4b20-bf62-0cedef34ef60 1 Other Other +983204da-53d3-4977-aa90-a8e73eeb2acb 1 Other Other +98322dda-8167-456f-addd-981e698dfe30 1 \N Other +983246d2-7989-40d8-8cfd-1beaebfe86cd 1 Other Other +98324938-b1c5-4db5-9fe2-a8cd6e01d098 1 Other Other +9832b304-378b-464b-8f7c-40b0efc81bdc 1 Other Other +9832dbf3-7a41-40db-949c-d382d6758dbb 1 Other Other +98331b4c-3fa4-4803-993e-ee3c8caac3f2 1 Other Other +98332fa5-ab51-4bb7-a3ef-0dc67879c01d 1 Other Other +983338d2-1f2b-457f-b209-fe4c8fd15309 1 Other Other +9833669c-589f-4617-a3d2-ae66680ea377 1 Other Other +983373ca-0bd1-4a86-8e76-f3c7b4222831 1 Other Other +98338b48-dac8-4e39-a8fb-52e77fb31ad2 1 Other Other +9833b2e4-976f-45b9-b700-fae4a8374a77 1 \N Other +98341a1f-4445-4567-8a27-9774cb7c47cf 1 Other Other +983460a9-8ff9-48f6-8f77-1f7d9bac9a04 1 Other Other +98346cf1-5715-4c6b-9b38-b51ef7142676 1 Other Other +98348313-437d-4631-a31b-e514338943ad 1 Other Other +9834a612-7ead-4773-9f69-7aba2fb90b41 1 Other Other +9834c3cb-a31c-4ba9-aac0-87cfd637b41c 1 Other Other +9834e69a-aa26-47c1-ac83-1fe70a3571a7 1 Other Other +98350b95-a76f-4b79-bdee-2c7daffed8b3 1 Other Other +983513b5-6aca-48c5-9e9f-ee17da1861e3 1 Other Other +983523e7-49d8-4ec3-b76c-a338f94416d9 1 \N Other +983542c7-698b-4753-b10d-28e16bb298bc 1 Other Other +983544b3-cd00-4bda-87ed-5a508a99e974 1 Other Other +98360eff-1fc8-4fd4-ad5d-977d7c88e5b8 1 Other Other +98361731-2bc0-4867-b9ce-c90e725ccb8b 1 \N Other +983622da-4818-42a5-a7e8-929b19b8e459 1 Other Other +98364470-4ddc-4b08-802e-7caffffb7f00 1 Other Other +98370180-cc27-4e61-9cae-592a297ad158 1 Other Other +9837290a-59b7-438d-b588-47d104384f49 1 Other Other +98379d42-7638-4216-9a0f-e36635b0cf4f 1 Other Other +98380be5-a2fa-45e1-a558-177f311c9b59 1 Other Other +983847ae-a1a1-49dc-8caf-9b4e6fceda79 1 Other Other +9838f82f-5c92-41d7-8390-42168660ecdf 1 Other Other +983910a7-c4d3-4d16-bf92-a09247bb163c 1 Other Other +983960bc-5ad3-4976-a190-a422ee32d83a 1 Other Other +983970a3-e9cf-4780-a6dc-9df89fdbc8f8 1 Other Other +9839c9bf-acc2-4219-9093-ff75adaee00d 1 Other Other +9839da66-0f73-44bd-bcf7-9063659e0ba9 1 Other Other +9839dd95-b0a3-4d2b-8a4f-9e825a364eb3 1 Other Other +983aa091-170f-494b-8d2a-2aef7e8cf687 1 Other Other +983aaa16-9aaf-40b2-bf57-8f8f68128f68 1 Other Other +983b01fa-aca8-4d58-9879-621404a445de 1 Other Other +983b3f52-fd86-4e0f-9d3e-4ce5c0e1b196 1 Other Other +983b4697-24cc-47f1-b1e8-bc9aafc749c9 1 Other Other +983b5dc3-b6bc-4320-bb48-04302b82b76a 1 Other Other +983b75ef-2808-4bb5-af10-98d12ec53412 1 Other Other +983bb910-206b-46e6-9b79-04ea2d4fb878 1 Other Other +983c00fb-227b-4b3f-b692-66389f10967c 1 Other Other +983c10c7-6366-407a-811a-d9662ce05120 1 Other Other +983c694a-8613-4926-be63-a8f51ef7e263 1 \N Other +983c90aa-2ec6-42e6-a7a3-59d2b6cb4205 1 Other Other +983c9839-acb7-4c0e-bdbe-20836d3ea78a 1 Other Other +983caffc-cc06-47c1-a181-368bc053a5ff 1 Other Other +983cf5a6-e387-4e9a-9038-66669b794771 1 Other Other +983d25c2-9e33-4bca-af0c-1d6d3eeb0124 1 Other Other +983db0c3-58bb-463e-b91d-db38e613db9b 1 Other Other +983dc7d9-7bda-4c70-9b4f-b3755f4efae7 1 Other Other +983ded62-f3aa-469d-84ad-534b717e24e9 1 James Other +983e0154-e069-48e4-a6e1-2a4fe40f9e56 1 Other Other +983e19b2-6ad2-434f-a55a-4c5486388bd3 1 James Other +983e2035-0a00-4749-b0d3-a6e60aa02ac6 1 Other Other +983e5ef0-2618-4f46-8021-9db58af69883 1 Other Other +983e65d2-bf34-482d-80b1-0ca28ebe4ece 1 Other Other +983e6825-582b-4f5f-884d-da0c44f49482 1 Other Other +983e9569-b09d-4260-b58c-759da37d7a7a 1 Other Other +983f27eb-f905-4ab0-9b90-ef4efdacb7c4 1 Other Other +983f2db9-a9fb-4522-8295-8a69d29842cb 1 Other Other +983fc01a-79ec-4ec7-a01d-85ccb410982f 1 Other Other +983ffc62-1cb5-400f-9379-7884088ec018 1 Other Other +984015ee-defa-463f-8d0f-d70e8864cedb 1 Other Other +98403e25-d454-4ece-b59a-fcf01502fea9 1 Other Other +98406b1e-4436-4ab9-9977-1701c5461589 1 Other Other +9840786c-6d9a-4ef7-a9ef-044bbcaa8644 1 Other Other +984093bb-72e1-4446-96a1-a5d19f95fce9 1 Other Other +9840a939-023b-46d8-9b49-9a40de69cf4c 1 Other Other +9840b50e-7e06-4350-9d72-826d14894797 1 Other Other +9840d2c2-3193-46e8-9a77-9070cc614500 1 Other Other +98410f1c-1682-413c-9a7f-c64a58e1ff00 1 Other Other +984124e0-ba5d-42fe-afbb-1db87db8fc59 1 Other Other +98414ac4-366d-483a-b94c-2de93c38f239 1 Other Other +98418d91-06c5-4fa5-80be-6fe43dd3c4d2 1 Other Other +9841db6c-fcb7-49a1-8e55-cdcb9be37361 1 Other Other +98427a6f-47a6-40e9-a2d7-2e50e28d127f 1 Other Other +9842efb7-1e8b-4a32-b63c-a9799794f46c 1 Other Other +984318bf-f3e9-4a07-8ed7-0d32fa187e15 1 Other Other +98435110-fe9c-4a56-9e6b-1eaed8aa507d 1 Other Other +98435648-778f-4273-8f34-8722946364f1 1 Other Other +9843816c-4cc2-4077-9205-694be1a5d8e8 1 Other Other +9843b72b-f988-4dd5-b988-38108070ce24 1 Other Other +984443d9-62b9-4a21-8b87-d542fdf423c3 1 Other Other +9844807d-1a42-47db-aeab-a77b8ddb35e1 1 Other Other +9844a4e6-7a20-432c-9ea8-ba23dd055c93 1 Other Other +9844b49c-f8b8-430c-9883-82cece86bae7 1 Other Other +9844d6b4-8c03-48fe-82bc-9dafd8610eca 1 Other Other +98450e9e-f738-4633-8bad-62938a74ceca 1 Other Other +984534a4-24ee-4c9c-a996-8731679a77e7 1 Other Other +98454a1b-beec-44ad-afcb-2f34ff0ef8ac 1 Other Other +98458316-355d-438d-8f3e-1a0fba5f4deb 1 Other Other +9845cad9-5746-45b1-bc0d-fed6d3c80969 1 Other Other +9845f0f4-fe01-4904-b458-efadd352e79f 1 Other Other +984613e5-fc8f-4559-a75d-a5b649a9a6dc 1 Other Other +984614db-1031-46c8-a848-80d73796e7ec 1 Other Other +98464576-c635-4d40-a3a7-c09175bc201b 1 Other Other +984648e5-c74d-4f6d-aeb6-a93ec36fff11 1 Other Other +98464a71-c8d5-4bb3-a1c1-d992d9f6f5e1 1 Other Other +984745b7-7210-477e-aaee-81fe97a3c421 1 Other Other +9847871c-dc44-44fb-9d1d-87acdce1caaf 1 \N Other +98483fb1-ee11-4cb0-9321-4e9c08f84ed3 1 Other Other +98485e88-214a-4153-9fc8-cf7ce2a6f10e 1 Other Other +9848b151-0448-485a-b8f1-5fe255da8152 1 Other Other +9848b640-d2c9-4f54-8470-61e53d25a137 1 Other Other +9848ce9a-66fb-4b7b-9e6a-12c7ffbd7bc5 1 Other Other +9848cfc1-8454-4531-9d37-8a133b731c78 1 Other Other +98492edb-1a15-4c44-b42d-980c8b06d883 1 Other Other +9849304a-c0ad-4de5-9e62-08708a82719c 1 Other Other +98498e2b-3b07-4f2d-9d42-03114c786756 1 Other Other +984a5e76-6d33-4974-bc86-9ae56cb45997 1 Other Other +984a7764-7555-4462-b1ab-278388e99511 1 Other Other +984a7a13-b056-47c9-b12f-f73e00c8af1e 1 Other Other +984a8057-b286-4c2a-a94c-89b50da33f09 1 Other Other +984a805e-70b6-47f7-bb0f-f7461340a93a 1 Other Other +984af024-251b-4b50-aa4a-d03b9ddee90c 1 Other Other +984b0a8c-bf87-4cd4-bc49-21401be314b9 1 Other Other +984b4124-6312-494f-82fc-b14816044685 1 Other Other +984b8e53-a83f-4920-8d87-72ddb445d846 1 Other Other +984bc082-062a-4fe3-829f-e8b1e38a5043 1 Other Other +984bdeae-0822-4aba-a57c-cb934331ac90 1 Other Other +984c1c75-5c9e-488e-882e-ce37dcfdd9e8 1 Other Other +984c3286-eb43-4610-8f05-adf2256f3407 1 Other Other +984c3e21-adda-4636-94d3-cdd80b9029b6 1 Other Other +984cc8a3-fa3e-4da7-9b1d-02320383433c 1 Other Other +984cd43a-37e4-4cb9-aafb-38711bb63d27 1 Other Other +984cd7ab-8fd9-4256-a4bd-175677257e3b 1 Other Other +984cfd13-a58e-4f53-9006-7984ff5a8120 1 Other Other +984d014c-8943-4e3e-b223-34af3c579c4c 1 Other Other +984d802f-fb7c-453f-aed5-877b8962f960 1 Other Other +984daaa2-1121-49ff-be21-48dab66ceaea 1 Other Other +984dea3c-f05b-45b7-983c-8c509261aaef 1 Other Other +984e596c-de34-48cc-bae1-0e0e5bb3965e 1 Other Other +984f1abf-2555-4aa5-a94c-ae143c8fab50 1 Other Other +984f1bfe-bcbc-469b-a65d-417c8ea0b097 1 Other Other +984f6eac-28a4-4cf6-bfc1-5b7de9313b9e 1 Other Other +984f9a9a-6b35-40b9-8694-f366f95431aa 1 Other Other +984fa122-3a04-4bfc-8094-17505e760bf6 1 Other Other +98501375-e1d1-4df5-8609-bee1054df2b6 1 Other Other +98501559-d331-45e1-ab7b-b06208ddfb49 1 Other Other +98506012-0d5a-4979-897f-4e5a7ad65faf 1 Other Other +98507308-99e5-4e6e-80ed-d2d247fe373a 1 \N Other +9850808d-ff55-426d-aee6-2cb3ea073f68 1 James Other +9850f13d-938b-45c0-8bf0-000190940243 1 Other Other +98512bf8-4d6a-4250-a874-740afa7fed80 1 Other Other +98513e8f-e686-48db-98ef-4ed157fc86ee 1 Other Other +9851484a-80dd-42ae-8e89-0ed5c4d430e7 1 Other Other +98518bb6-b989-4948-a7e0-44ba91294e74 1 Other Other +9851a621-718a-4362-a570-b978beea0463 1 Other Other +98521dab-bcfd-43a3-8f00-e6d58a459eca 1 Other Other +985224ec-5cb9-40c0-82ae-5efe7e559826 1 Other Other +985227a3-6b1e-4d13-85c8-3a71b248ffa9 1 Other Other +98529c4f-e3bb-4557-98c6-4027cfd0ac10 1 Other Other +9852a232-ab89-4a0b-8cc1-a36f50e9b587 1 Other Other +9852b0d5-2bff-4e22-89f6-c0114a38e262 1 Other Other +985303fb-220f-4ca8-baae-9179b542064a 1 Other Other +98534d70-efd7-4140-9846-b2eae46f52fb 1 Other Other +98539097-63ee-43b8-9a78-8a69338d0b91 1 Other Other +9853f1e9-788e-4b3e-b9f9-67db5220e990 1 Other Other +9854115a-4109-4595-8bc7-8247b3cbe66b 1 Other Other +9854460f-4dbe-4c17-8501-a42c1ad3ae86 1 Other Other +9854d0f3-0427-4499-8f58-61ba8dd8be3b 1 Other Other +985512a1-9c09-4e91-bd12-e59ed7ed5840 1 Other Other +98551bc1-ece4-431b-af5a-9e4885cd1105 1 Other Other +98555f74-4b7b-4866-9514-07deaba63f44 1 Other Other +9855e49e-b038-4ef0-87f4-3961f6d688d7 1 Other Other +9855eb09-eb29-4844-ae57-f332b88156af 1 Other Other +9856342b-7f01-4b2a-ac27-9aabc1919b3d 1 Other Other +985635aa-a29f-4f5e-a5de-b10938d565ce 1 Other Other +98567314-b14a-4e1d-9be0-25f10404eb63 1 Other Other +9856b578-e97d-4afa-a5d2-95135ce26075 1 Other Other +9856b910-408e-4a9c-ae5a-8786838c334d 1 Other Other +9856c087-5f6a-4fc9-8601-f9e8c2acd45d 1 Other Other +9856d068-f85e-44c8-8164-79cecaed32a4 1 Other Other +9856daac-3218-423c-880d-0efc34726fde 1 Other Other +9856f084-c73b-4cc1-9fc5-76952d19b8cf 1 Other Other +98574d56-47fb-452c-a85b-42ca485aeea6 1 Other Other +98578ca0-047a-47fc-9fdf-5b80c6731fd2 1 Other Other +98579565-527e-4cb4-88f7-81c6916b2347 1 Other Other +9857d324-6323-447f-b021-0bd07f36bcdf 1 Other Other +9857d445-846f-42bd-bb59-066795d078ec 1 Other Other +9858c82b-229f-44fb-a0f6-9316f74eed3d 1 Other Other +9858da07-996f-4b9b-9f32-05a046477c00 1 Other Other +9859629b-c84d-48ba-b939-ba1c455f2ebf 1 Other Other +9859e622-5249-4a3f-9fed-fd557a91387d 1 Other Other +9859f358-9fb6-404a-86eb-90d4dd4f73f0 1 Other Other +985a00c9-0a9b-4f16-80e9-4782dbb008e4 1 Other Other +985a0440-3fa2-4858-ac6d-c8e1450eefc5 1 \N Other +985a753b-e3af-4084-9575-809dbab0a0ae 1 Other Other +985a80fc-532f-47a7-9e06-9469e30e0bf0 1 Other Other +985a86ae-80a0-435a-80ac-21c8489b5fac 1 Other Other +985a89cd-6663-4820-b6ac-0e18957ff13c 1 Other Other +985a92fe-ff35-4ea5-9283-830d9272b6d0 1 Other Other +985aaf47-013d-415f-b4e0-267e51950d29 1 Other Other +985ab06c-5caf-4f00-82e7-db310ac445fb 1 Other Other +985b738b-8f33-49a2-8620-16e412bdf98d 1 Other Other +985b9d0d-b784-40df-8a9a-b96985175661 1 Other Other +985be44f-b6db-4d54-9504-c459ce1c9ed8 1 Other Other +985bf3fe-d1ea-4eb5-95f7-97b0d5c76093 1 Other Other +985c0c9a-3577-4aa9-89a8-1d601d96ac28 1 Other Other +985c55c4-74a4-42a0-a1f1-589c42b49aec 1 Other Other +985c5b96-7aa4-4bdb-94b3-cf478794c86a 1 Other Other +985ca584-9e87-4dfd-a1d6-b00fc3b0ed10 1 Other Other +985cbd29-9356-42f5-b56a-6a1171c4bbca 1 Other Other +985d0446-fd1e-4a6d-8c25-22dc0dd4c664 1 Other Other +985d3d62-2794-45f9-9a3d-d9c2c6b8f009 1 Other Other +985d57e3-b7f6-460c-9b74-1fa1a8360823 1 Other Other +985d86d9-2934-4759-92e2-e06182739583 1 Other Other +985d8c8e-e41e-49b4-a845-a75c979e6b13 1 Other Other +985d9ed0-ef36-4a22-b478-c8c36f693142 1 Other Other +985de600-b0d6-46c3-8c22-d187f25906ea 1 Other Other +985e228f-a8d4-422c-b649-aad2edc3fcd1 1 Other Other +985e5037-a730-4c62-877e-cd0d1e62e866 1 Other Other +985e5b52-8553-4d45-ae6d-3cc3afc9b940 1 Other Other +985e6275-b8ce-456b-94b1-4f30a05295c8 1 Other Other +985e7f0d-f619-4cb4-ac2b-3e66c0973155 1 Other Other +985e84cc-313f-43da-ba92-e88a128971c9 1 Other Other +985e9c39-e39b-41c8-8694-14750e7f3787 1 Other Other +985eab4b-db5c-4f60-80b1-daef8950f7cc 1 Other Other +985eba22-68fa-4edd-8561-8855b37ddb5f 1 Other Other +985ed5dd-71ea-405f-ae54-8b87a8294ffa 1 Other Other +985ee966-c067-437d-8ea7-7554bf88561c 1 Other Other +985f2345-7a1a-429b-8ed5-076ca8b63d4d 1 Other Other +985f4acc-29af-49e0-afdc-fa15504acd28 1 James Other +985f6626-1e7b-4b49-beb9-0b33852eccbb 1 Other Other +985fadf8-15ac-476a-a258-9926ac2b03b1 1 \N Other +985fb37c-4788-406b-bff8-1e3afb4eb1ca 1 Other Other +985fb7de-9dad-453b-a3fb-28caea51ee6d 1 Other Other +985fdc2c-e1b7-44eb-bc86-2820df141491 1 Other Other +985fe434-1bf0-4a97-8a0a-112da95906b0 1 Other Other +985fe834-6b12-44d0-b3a0-8d91513ddae3 1 Other Other +986068ff-7191-45d7-ac67-3ae214bdff88 1 Other Other +986075f8-6e50-4618-820b-b92bda2154f1 1 Other Other +98607e99-997a-4dad-aa0b-b1df4e2e77b4 1 Other Other +98607ff0-0b7f-4464-a563-e7ea8fa8c559 1 Other Other +9860a226-23f9-4a4f-918e-f7ad941e8f04 1 Other Other +9860c34f-47af-4420-8f3d-52f8a38bdeca 1 Other Other +98611bc2-7448-40be-be54-7b594df08768 1 Other Other +98612128-d70f-49a1-a959-1d35f3e3e27f 1 Other Other +986198b4-fcd8-401c-9e16-2fa28b344c5c 1 Other Other +9861c115-fc77-411f-b090-53cb4b05664b 1 Other Other +9861ccb5-fd3d-4fd8-aa39-26e04ed5b87f 1 Other Other +9861d5d0-ad49-46e2-9eb3-3bf925eec7b4 1 Other Other +9861ee8c-660d-4bda-8c9b-feb2df269a0b 1 Other Other +98621c1c-7190-4e26-9b7e-a55d7fea1bcf 1 \N Other +98624f3b-9e45-48c3-add3-c0b643343e5f 1 Other Other +9862d00c-ebd5-4139-b728-ca29413d80f2 1 Other Other +9862dc1a-5a22-4f39-9bfb-8f6fdd9f6d8b 1 Other Other +9862e00c-6502-48bb-b3dd-7e0bd8de49af 1 Other Other +9862f867-05d7-45a2-a549-387aabe4cc5f 1 Other Other +98634c16-1d42-41b5-a779-18c9c853ad0a 1 Other Other +98635e6e-5a9d-4490-9217-3342092d6aae 1 Other Other +9863b880-7ea1-49ae-84a1-f97d16c0b6ca 1 Other Other +9863ee7d-3f8a-4772-82ec-20cf545c1325 1 Other Other +986435c9-bc88-4358-a319-3ea61c73d779 1 Other Other +98643f1f-97da-42ee-8dff-21f50716b836 1 Other Other +98645070-c85a-462d-b34f-c92768925452 1 Other Other +98647eff-d6e9-4daa-a5be-9007adfac94e 1 Other Other +98649a4d-e326-4223-935f-2bb7db99a976 1 Other Other +9864f7d5-e397-41e4-a345-91d91e78b2e6 1 Other Other +98652276-35ab-42b0-b51c-40bcdb7f4581 1 Other Other +98652b0e-bc97-4c96-bcf0-d339f591975c 1 Other Other +986566d1-521f-495c-89e3-145d752598ba 1 Other Other +98657902-2ef3-477e-bbc3-7378feb26f2b 1 Other Other +9865858a-584a-4e1f-8e75-dad5d0da1251 1 Other Other +986594db-7480-433e-a63f-dc2fe8aaa2d6 1 Other Other +9865bcc4-5c44-4a8c-a0b0-f132dc793319 1 Other Other +9865cd2d-07cd-43e0-972c-619b6eee8506 1 \N Other +9865cfe5-571e-4e0d-8567-19597ffc8ec8 1 Other Other +9865dc83-2d13-4cbd-8632-416a07494bbf 1 Other Other +9865eecb-4611-495c-9a59-de23cc6aa0e5 1 Other Other +9865f650-223f-4cf9-b8c5-d32b15b16381 1 Other Other +98663281-3f59-42ca-9c0a-a09e7bb72132 1 Other Other +98668277-dc74-46a3-8338-8eb74c78e360 1 Other Other +98668527-06bf-483a-a151-98dd7f5033b6 1 Other Other +9866a393-c541-459a-a524-20c61131d58a 1 Other Other +9866dc6a-d01c-411c-aca3-287c42f6ff2a 1 Other Other +986705b7-e001-44a5-b080-34a7d25fb900 1 Other Other +98673ac4-84f9-46cd-a3e6-1d450a0e56b8 1 Other Other +98676baf-6d4e-4ad6-a447-51e0f1ca0fa7 1 Other Other +98677fae-b3d5-4eab-b968-de44d67b10e4 1 Other Other +98678a27-fa65-4aac-b0ec-5bfe79744874 1 Other Other +9867e006-4a1f-4fad-9565-207ea9b9398b 1 Other Other +9867e323-f5f7-4e4e-8ee5-59a837386430 1 Other Other +9867f485-bd09-495c-977d-29d27758c339 1 Other Other +9868448f-63db-41ba-9561-d89986f04b6d 1 Other Other +9868567c-58ac-4906-a292-9e5d21b229fa 1 Other Other +9868e1ff-aa4a-44ef-b2d1-7d0fb6852a2b 1 Other Other +9868fee1-2bc3-4af5-b2b2-fc1d3bab8bd7 1 Other Other +98690812-76b8-4660-b534-f4e2043d5749 1 Other Other +98695d33-abbc-4024-a1a0-756b21d20c36 1 Other Other +98696835-da0a-412c-9f2f-ad1da74bbc1d 1 Other Other +9869723d-2c6e-4308-834e-8da00699abdf 1 Other Other +98699512-de37-497c-b16a-ea71bfa87b4a 1 Other Other +9869d32c-6d86-4a50-87fa-ee8f9bc01323 1 Other Other +9869ef17-c2fa-4c1c-b09f-aa9c86cdd2a8 1 Other Other +9869f595-dafd-4ed1-83e6-ba91cb4520a8 1 Other Other +986a11cc-d167-411a-a653-53a4e805a717 1 Other Other +986a139c-b283-47e7-b34d-658de76ec63a 1 Other Other +986a1a11-88f9-465b-9cb5-c92a65db6fe9 1 Other Other +986a305a-5621-48e8-bf64-d338903b65a5 1 Other Other +986a4187-af59-47b5-bb0a-201aaa1ab792 1 Other Other +986a5425-3b08-45c3-bd90-3d1dd182eeb6 1 Other Other +986a5fc0-e887-4dca-8ddf-8d97f4f94f1a 1 Other Other +986ad14e-c258-4cf4-83c9-f7dedca27986 1 Other Other +986ad387-a4d4-47c0-92db-c0bfcf3a732c 1 Other Other +986b1b5b-7e7c-4b3d-9d44-a9be8a16e5af 1 Other Other +986b3c0e-7c3f-4b15-b054-0023fa5c39c4 1 Other Other +986b73bf-7206-48e7-9e4d-25d8aa577843 1 Other Other +986b8a78-8e47-4959-b6a9-5742b1092a86 1 Other Other +986bc058-70ed-4210-9d38-e52c32321b81 1 Other Other +986bc17d-89fe-4cee-9edd-db37ddc76d2e 1 Other Other +986be01e-8e9a-47dd-a09d-05cd70d42aa9 1 Other Other +986be08c-84c5-40c1-9bce-1d8b3b2bfe91 1 Other Other +986c0091-fc0c-49f7-9af0-f38f225401c9 1 Other Other +986c750c-07a3-46f3-aa30-a92444c9d0b2 1 Other Other +986cb013-3249-4925-b81f-392802845184 1 Other Other +986d37e6-146d-428f-bc7e-20626f10f9c0 1 Other Other +986d5a07-e9c0-4623-85b8-79dc8e540715 1 Other Other +986ddb7e-1d22-4d25-ab3e-9366958cd299 1 Other Other +986df24f-7051-4657-bdbe-2b78158ec4f9 1 Other Other +986e542f-d0fd-4207-a959-0df7e0de5ce0 1 Other Other +986e5c11-b2af-4bc2-9f46-09ab1b562c64 1 Other Other +986eac73-9001-4a2b-b599-9ad09dad51c8 1 Other Other +986eadad-350f-4901-afb7-4429e05b56a9 1 Other Other +986ed9d4-79f4-4638-86a7-eeee7fc03916 1 Other Other +986f0b6f-7886-4123-a21a-18f615cb5d43 1 Other Other +986fc64e-3229-4725-b03c-844ee00dfaf5 1 Other Other +98701db4-9634-4a1f-8b74-b01df4c9c5f1 1 Other Other +98709230-5758-471a-822b-ed891bbd63e4 1 Other Other +9870e62f-3004-4a87-a11f-f0221ff7c957 1 Other Other +98710df1-bfd3-4505-8922-ba21402e3886 1 \N Other +987166ce-8c61-4288-b91d-929ab0430bfc 1 Other Other +9871681d-ce23-4b6b-95d1-2f4837e8debb 1 Other Other +9871bd33-1bf6-4763-b167-b353cbe20678 1 Other Other +9871c123-d121-4d2a-b86f-673c9e995d93 1 Other Other +9871e2f3-d238-4cb1-ade8-a17fe03089cf 1 Other Other +9872362f-ca4a-4cd2-a800-239162e7e44d 1 Other Other +9872982b-60ad-45e9-a699-0865aa3d7d41 1 Other Other +98729acc-ea43-4561-9a72-0d5ce7e56071 1 Other Other +9872b214-95a0-46eb-ae4b-a0f2c9cf4b6c 1 Other Other +9872d811-4340-4171-ae14-1ddd6b6df723 1 James Other +987388f8-6c97-44f3-be08-206da235b28f 1 Other Other +98739bb1-c68f-43ed-b449-fad08b981fe2 1 Other Other +9873c06a-9e89-4a78-ba90-8638ecf3940c 1 Other Other +9873c490-70b5-415f-913a-97936d9d247c 1 Other Other +9873ed64-4be9-4987-977a-3e254a8795fd 1 Other Other +9873efd4-ff69-4cf2-84c6-7614c30d99d5 1 Other Other +9873f566-78df-42b3-8f6f-7a367a104170 1 Other Other +98740c6c-a77a-45cf-9e48-297f406adddf 1 Other Other +9874320b-921f-43a2-82b2-881bbef51436 1 Other Other +98745047-d353-4b72-8bf5-72cc0188d45b 1 Other Other +98749951-3b27-452e-9f9c-d95511df1708 1 Other Other +9874d7a4-b1fa-4d77-be55-156ddfe81051 1 Other Other +9874faf2-d7e8-46fd-a316-a5b7c308f257 1 Other Other +9874fec3-b8d5-43a7-b2c8-e1e699205fd4 1 Other Other +9875f23e-1d02-4e08-ad03-782a4463a009 1 Other Other +98763c71-0324-49f3-94fb-d2d23e489de8 1 Other Other +9876473e-0c4a-491d-bb15-673b9659d7cc 1 Other Other +98769fb6-5e56-4c9c-8ac0-26c4ec2948ad 1 Other Other +9876f022-761a-4ceb-b2f3-d5c0bafe672f 1 Other Other +98771826-cafb-4bc1-871d-a64958e8971b 1 Other Other +987718ab-218c-413b-815f-9216992ba00a 1 Other Other +9877685f-fae5-4d34-badb-87f26bb11987 1 Other Other +98778373-1a28-45ab-b725-ef58594dca49 1 Other Other +9877acc5-e052-4508-a109-29e69c66eb96 1 Other Other +9877c901-53f0-4f45-8a18-6efb325613f7 1 Other Other +9877f6f1-2973-4593-8a2a-2f5cddc364e9 1 Other Other +98783a78-4cb5-4e32-8265-5d90862149d4 1 Other Other +9878742b-a870-4fd9-b32f-b705a86b43f8 1 Other Other +98787eaa-cecc-4e10-9d16-479f8185d20b 1 Other Other +9878a3bf-2058-4318-a93d-4636cbd5b4ba 1 Other Other +9878b053-f3d9-4417-87c4-1a5477f3c96d 1 Other Other +9878e837-d904-4ba3-8fab-ea4f43068283 1 Other Other +98795c58-5f4d-4bb4-b045-12102d9996aa 1 Other Other +98796572-09dc-4da9-8b93-a2098db3d61b 1 Other Other +98796dc8-a439-4649-b42b-7b4c8f7d5178 1 Other Other +98797857-f0fc-425d-8eda-8127a7f64fc8 1 Other Other +9879bae3-2576-4a6b-8c1b-c06095a43731 1 Other Other +987a12e4-670c-43ed-bac0-4ea978188b35 1 Other Other +987a6e5d-9fb4-43dc-b900-375c424f8115 1 Other Other +987abc31-5e51-4096-92cb-e65087df4aff 1 Other Other +987ac588-6a56-43a7-870e-7502e5c48b99 1 Other Other +987b4cd2-498a-430f-99aa-dcdb306424a1 1 Other Other +987b5161-ab26-4926-a30d-a0aca4dc234e 1 Other Other +987b7af9-7caa-43d4-985e-489b033da71d 1 Other Other +987b86e6-90a1-43f7-b0cb-e3d322cf552b 1 \N Other +987bb7cc-ebb9-4d59-8d8f-78f9a4d1fc8b 1 Other Other +987bce14-670a-4151-aa54-0180646746fd 1 Other Other +987bd842-bb46-4e52-994c-ce7639692990 1 Other Other +987bda75-1a64-47a2-9ade-ebb797382364 1 Other Other +987bdf72-2e5d-4636-ab01-9d01b653021f 1 Other Other +987bf6cc-b9ad-4186-84bf-657f2b1f8586 1 Other Other +987c03d8-4cb2-4f32-a306-4f1b62d1d38e 1 Other Other +987c12fe-ce3e-48cc-b94b-c09ff7086101 1 Other Other +987c1a8b-5751-445f-9f35-79ea341997ed 1 Other Other +987c4b1e-8c7d-47f3-834f-5ef436cd5f48 1 Other Other +987c5e37-e352-41ed-9fb2-d00c9d1db889 1 Other Other +987ca2c4-42e8-44a3-86b9-8da70b1c6332 1 James Other +987cdcfb-b674-4912-bc32-9455998d1995 1 Other Other +987ce68c-45d9-4462-9c4a-9026687d204b 1 Other Other +987d35e6-3271-4722-9c9f-e66cd1fdfd5b 1 Other Other +987d4472-17c5-45e4-bbf9-38289e0e04e7 1 Other Other +987e3608-c7bb-49a7-8aac-adfd20b45f26 1 Other Other +987e6457-4081-46bc-8f0a-66cec6eba684 1 Other Other +987ed6d5-d8fa-4825-977d-4d3263672adb 1 James Other +987f763f-c18d-4a24-b0ac-e4b69b1d037a 1 Other Other +987fa496-8056-439b-80da-fb4726707e46 1 Other Other +98802187-e627-43cd-9148-5e8f248f8092 1 \N Other +98802ceb-6ae1-4da9-8c69-e1733c9273a1 1 Other Other +988076a6-4706-4149-a666-07707401ea61 1 Other Other +988095ef-6aa8-4061-acff-d26458b8f79a 1 Other Other +98811c9d-4431-4247-bbc4-b080d8a42e4b 1 Other Other +988140ce-d1fb-47e8-a1b8-7b9ed2c4b465 1 Other Other +98815839-db11-4c20-ba1b-203869c1e42b 1 Other Other +98815c50-5ca5-4386-a3ed-f264fefe3a90 1 Other Other +988187fb-8cb6-4580-962f-7f0d5bf3f094 1 Other Other +988195d3-c883-49cd-90bf-4ad0080fc6b7 1 Other Other +9881a98d-2069-458a-94d9-0dee2cb73204 1 Other Other +9881b3c4-293b-4599-9ab8-39450cc62ceb 1 Other Other +9881b5fc-ad59-424b-83be-6927e09ffafa 1 Other Other +9881d6f6-a004-4a2b-b113-02af6b2a69ca 1 Other Other +98822637-4803-4e84-b3ef-c042d7d92cfa 1 Other Other +9882f229-adc2-4ac5-af31-166dd73df633 1 Other Other +9882fdd7-238c-4cf2-bd78-94ecc5b9ee9b 1 Other Other +98830bf6-64ec-4392-bd9d-128e4c522566 1 Other Other +98830fcc-08cf-40ac-b55a-4b56ac2538e4 1 Other Other +9883188b-d86b-4f78-8f8e-ad8d3ee47b6e 1 Other Other +98835608-71c1-48fd-8b26-0986d099917a 1 Other Other +98837219-a2f8-4b0e-a272-42c920ccbcfc 1 Other Other +98837d21-5c22-47c3-84fd-dd8909909e8c 1 Other Other +9883a301-f293-4e00-8eb7-b6fc7cb362e5 1 Other Other +98840d0d-3d76-4982-b6db-c47fa649ea2b 1 Other Other +98841859-616f-4e8e-8d90-01cc4f0f60b0 1 Other Other +988456aa-00fa-4da5-aa81-21ce8798a4ef 1 Other Other +9884698b-5c33-41b7-a398-6697dfef5638 1 \N Other +98846f9e-c61c-4916-a53d-2e8528dbaab0 1 Other Other +9884995c-48f6-4703-844a-8d02b7e02dd6 1 Other Other +9884b28e-5fe3-4317-9d6c-087b7c458c33 1 \N Other +9884d8ba-c1d3-4239-a7df-6ebaa24dab68 1 Other Other +9884f04b-82ca-4b13-8c0d-42426d563efb 1 Other Other +988536ac-ca25-4d10-aae3-e82b4358f10d 1 Other Other +988546c3-9c86-4541-af69-15fc0115905c 1 Other Other +98857ef7-c1c8-4206-9bd4-6d237a878067 1 Other Other +988588d6-62ce-45e4-814b-ce30821555c5 1 Other Other +9885b8e9-a017-44dd-be29-a24ecde87ef5 1 Other Other +9886106c-1e31-45ef-a9ce-19cd021c6591 1 Other Other +98861db9-e7aa-4748-a8dc-b7eddf11b44e 1 Other Other +988630bc-3c0e-47a0-bd69-48ac59734695 1 Other Other +98866d6a-23cd-4171-abcc-5afef4ff1580 1 Other Other +988682cd-55f2-4778-add4-2d44608a440f 1 Other Other +9886dc44-e2e1-46a0-b28b-65d0bcc128fb 1 Other Other +9886e82f-84b0-4ac7-8be6-eed6a1868df9 1 Other Other +9886ffa4-0554-44d3-b2ea-550640edb179 1 Other Other +9886ffc2-0312-4480-856e-3521a5ce4b44 1 Other Other +98870a79-8bc3-4406-99be-d99625ee3bd5 1 Other Other +98871d98-9a3a-4e90-8e83-cb97b727e201 1 Other Other +98873fd4-3c42-4688-995f-1f150a261bc2 1 Other Other +98875df3-d043-4d1e-a025-19f3d7b80473 1 Other Other +98876851-f2ce-4b6a-9e2f-28de228f919a 1 Other Other +9887cfdb-60ae-424c-8619-acd405a18546 1 Other Other +98880c8e-eec6-41a9-baaf-2d3698686e09 1 Other Other +98880d0e-e441-4d9d-a59f-e2c707ac2b5e 1 Other Other +98881df2-5732-4965-8cc2-20a4a455e9d0 1 Other Other +98883b12-aa9c-4aaa-b257-e855d60af0ab 1 Other Other +98887bb5-2ce9-46e0-8edc-efa562077786 1 Other Other +98889bc9-58b8-491f-98d4-31c8411b69f6 1 Other Other +9889562e-b0f2-40ae-8b42-cf0c5e655d03 1 Other Other +9889568e-2636-4fbb-b18e-b7fcb6138060 1 \N Other +98896abf-ad24-473d-8d97-f781609acdfa 1 Other Other +988a51df-230c-47fa-b93a-bb6d4588c869 1 Other Other +988a5259-8dbd-4173-9395-186286f221fa 1 Other Other +988a82be-10c5-41a6-9f85-06d140cb1d60 1 Other Other +988a847c-12f3-4a8e-a0c5-6aa5594d5059 1 Other Other +988aa471-66fc-4a73-9b54-efd7bbaeec68 1 Other Other +988aade6-f76d-46da-85ed-4ebb31acdd95 1 Other Other +988ad5ba-6e34-4602-89ea-d0467be18b7c 1 Other Other +988adcd5-17e2-474d-9a76-3ed152ae9458 1 Other Other +988aeabf-dbca-4816-a614-e59d19f22ca8 1 Other Other +988b05ce-9f9b-4172-b9ea-06589232f132 1 James Other +988b2238-e62d-4d01-ac1d-039e847a6b66 1 Other Other +988b509d-2c7b-495a-aa4d-598f4e489e83 1 Other Other +988b5fc9-afd7-422e-95f9-dd02b573df9a 1 Other Other +988b8df2-704d-4234-93aa-ba117f4e00f8 1 Other Other +988c0b4e-7766-405f-b562-091df5462855 1 Other Other +988c2d0b-a046-4cac-bc97-0f634c1e9de6 1 James Other +988c8167-0038-4260-b40d-2c5443f1a35b 1 \N Other +988c916a-ef6f-4f16-b3b9-82a628526a62 1 Other Other +988d843b-7674-48ed-a037-06f8cc393c6e 1 Other Other +988dd443-d277-40b6-9cd2-e9159c96aee3 1 Other Other +988de625-2bfd-4866-9b4a-e052d3c760ec 1 Other Other +988e4ec1-95a6-458f-887d-7ca8ebe117b1 1 Other Other +988e4fd8-ce40-4379-addf-0041c133874f 1 Other Other +988e815c-4579-404c-86a0-1084a919fdb2 1 Other Other +988ecb40-0170-46f9-992e-11f061feec3d 1 Other Other +988ef989-9e42-4515-b842-822725c763db 1 Other Other +988efa16-9f27-44f0-9d93-94e3fad5e855 1 Other Other +988f0cd7-2f07-4a27-84f6-ae1fdfe604ca 1 Other Other +988f17fc-d5b8-4129-8bc8-540027e12dba 1 Other Other +988f4b7d-9561-445d-b7f1-26bf01a5d94e 1 Other Other +988f5549-e300-4d25-b2a4-31383cf8f700 1 Other Other +988f7a8a-a824-42e2-9f16-7a486320fad1 1 Other Other +988fc321-aa86-460d-ae74-5b19666570be 1 Other Other +9890134b-bf98-4bc2-bea0-bd652361287b 1 Other Other +98907b14-9376-48da-ab09-6c82baf97ea9 1 \N Other +989111ed-609e-486d-aa8e-1be72e84c522 1 Other Other +98911917-83ce-4587-99fd-1dc24f7bfae9 1 Other Other +989157cf-05a3-4fcf-9469-fa7739ffbd82 1 Other Other +9891b025-4c1f-41b7-98df-e945bf3ce065 1 Other Other +9891b528-fb53-40ab-bbf1-3b84983535ee 1 Other Other +989200c6-8f7e-41fb-8757-318382385798 1 Other Other +989260b8-0ec0-421c-9b6b-d83cbbd848cd 1 Other Other +9892895c-3864-4f26-88ed-8b0b6646fec6 1 Other Other +9892df1a-959c-49c1-a961-c10f110b38da 1 Other Other +98933099-f6b7-44c8-b2fd-5a8929bf0bf3 1 Other Other +989335d3-c895-459a-ac75-7608894f6b4e 1 Other Other +98938b7f-09c5-4bf8-b348-0c067d502594 1 Other Other +989390ec-2159-48a0-a996-bfbdcc32a5e8 1 Other Other +9893aa92-4f20-4ad3-b664-2d1ae9dc6762 1 Other Other +9893cfc9-5be3-4146-833d-6417df31aa14 1 Other Other +989431b8-8b3f-4d08-a905-a151dcf5ee1d 1 Other Other +9894adec-384d-4c11-bcaf-71dd234170c7 1 Other Other +9894be84-f9cd-465d-9516-8b272525cde1 1 Other Other +9894bff3-deb4-4b9d-9127-465e6db4b52e 1 Other Other +9894cdd0-bb00-4bb8-8898-79047e9c52da 1 Other Other +9894eab8-0ec6-4e1a-b54f-2fef93c24335 1 Other Other +9895a4eb-e5a0-4409-9b6b-399297178f97 1 Other Other +9895cea5-8955-433c-850c-4ad52a686ff3 1 Other Other +98960347-9f69-4523-8454-28ec483e9388 1 Other Other +98962677-8d21-4003-9c2c-a172ec3c2766 1 Other Other +98965ffc-b68e-4454-9cb2-654fb2e7cbe3 1 Other Other +9896a9cf-78f1-4c0f-a8bc-7fd3ab6fcff8 1 Other Other +9896b142-e236-48e2-8d84-bcddc8604354 1 Other Other +9897a04a-b40f-43f0-b171-5c4d7fc7724b 1 Other Other +9897d551-d424-4b87-93db-18dc2246f425 1 Other Other +98987386-6146-40bf-8281-2ba3e26d1ad6 1 Other Other +9898cf88-e7ef-44fe-ac60-51b45b41c51c 1 Other Other +9898d0c3-fb67-44b0-93e3-788852a5607e 1 Other Other +9898eac8-eff2-4f7f-bf34-9c838a395f85 1 Other Other +98990700-dbaf-4259-9053-3f6cfaaf31a5 1 Other Other +989955a4-f72f-4d93-a33c-9049c29ef485 1 Other Other +98995fd3-ffa3-46c3-8ad4-80f2180aa291 1 Other Other +98997fb6-4392-47d5-beb6-25ace3bb9f35 1 Other Other +98998c70-55d1-42b8-9fe8-121cbe30bb82 1 Other Other +98998f21-0aac-47f0-8c49-05c4cef6e07a 1 Other Other +9899950e-f1aa-494e-9376-4e5f326aee4e 1 Other Other +989a1234-adda-416d-9d55-d7be4825a9f9 1 Other Other +989a1c5c-13a6-4702-95fd-fdb287009c45 1 Other Other +989a34a8-2f64-40d3-a04a-b30157678640 1 Other Other +989a63c3-0ed3-4058-b3c4-1b65ba8080ab 1 Other Other +989aa2b8-1c64-4d59-b1c0-a7cae7304258 1 Other Other +989ab37b-d557-4592-b368-e7a9a3813ae0 1 Other Other +989adcc9-03c3-4af3-a702-49634bb7996f 1 \N Other +989b035c-5d23-4adb-9e0c-5f89edc928e6 1 Other Other +989b2b7f-db2f-4d29-97b2-3778f10eab66 1 Other Other +989b4873-467d-4f37-803a-0240cc083ba1 1 Other Other +989b57f8-4443-46ac-af64-6b29680844d8 1 Other Other +989b5c92-9544-4097-9be9-c9c390d48944 1 Other Other +989b7199-84db-4135-8e64-55296881be68 1 Other Other +989ba3b0-ee6d-453b-86b7-1eb1e88c3235 1 Other Other +989be2d6-1eeb-4c94-a3fc-3f653e75d513 1 Other Other +989bf5e3-fcb2-4dfe-b52e-4f01b8e6d2f3 1 Other Other +989c0bcb-8116-4f98-a7be-897592464803 1 James Other +989c1a92-d212-4941-ab52-c2f4d1068f77 1 Other Other +989c3076-d1c0-4884-8842-540a4bb9ccab 1 Other Other +989c39e1-f3e1-4c0a-81eb-69f2c476a4f8 1 Other Other +989c5ead-e21d-4557-8711-c1812c1409b7 1 Other Other +989c66fd-de9c-40f4-a822-2c781a5091e2 1 James Other +989c88b3-0393-49a5-98c7-9baff5a3a2d3 1 Other Other +989cb59b-4ed5-4b59-be72-89608d8dd42f 1 Other Other +989cd3a3-1ce4-4dc5-8dd6-5f106aed5bfe 1 Other Other +989ce005-9c6a-4ea6-b519-b7627ee0c55d 1 Other Other +989cf694-1dd6-4414-addc-71b3954dd1a3 1 Other Other +989d06f1-5a7e-405d-8fe4-c8a049e8f554 1 Other Other +989d11d7-dad0-40d4-b7bc-57c2761f14ef 1 Other Other +989d37ad-51a1-4113-9af5-108a71176422 1 Other Other +989d9aa3-50c2-4455-bfff-57d8bc825956 1 \N Other +989da303-f8b4-4954-99c5-a2e430b78101 1 Other Other +989ddccc-cc3d-431c-a803-1789007c5263 1 Other Other +989de615-9eb3-48ce-a514-c4fd8ea839a5 1 \N Other +989df719-c668-4606-a8a0-cf8a8ff41874 1 Other Other +989e3a20-e368-439d-b4c0-016021638143 1 Other Other +989e4418-d76a-4267-ae2f-4df9885a79bf 1 Other Other +989e52d3-4879-4bb3-9965-fcc8daaea71f 1 Other Other +989e55bc-5ade-4b54-bb5f-d3ab1bd86c1c 1 Other Other +989ee4a8-b2d5-4331-89b0-c941cc02f5f9 1 Other Other +989ef352-3d73-42dd-a598-c872af5cdc05 1 Other Other +989ef37d-ed5b-4b1a-a9ab-fb3342001d56 1 Other Other +989f34fa-558c-4399-b301-95a7b6d03247 1 Other Other +989f5fa0-981f-4fd0-bd22-5a4c080d4ff6 1 Other Other +989f98d5-0a86-4900-beb7-4e94a65fdf5a 1 \N Other +989fe365-62f6-4158-b8a9-0bce2be79e26 1 Other Other +98a00b70-8a8b-4fd0-aed3-8c0f738a1320 1 Other Other +98a01756-b8e0-4ecd-aa96-6b3bf96bb3bc 1 Other Other +98a02e06-b1c2-41ad-8aa6-25cc3149e61d 1 Other Other +98a041ad-c9d8-4502-9ac5-5bc62844d4af 1 Other Other +98a05f82-dd06-43f4-8d17-26cbc2e0fe19 1 Other Other +98a08a39-8999-4951-a92f-372462f7b7bc 1 Other Other +98a0b5ca-d928-4a62-af2b-b2ed3fa8ad6b 1 Other Other +98a0eb3a-d26b-4421-ac3f-b5fdd9d74ec3 1 Other Other +98a0fa76-6e0b-4f0c-a7ef-5a692b136428 1 Other Other +98a113eb-f8da-40dd-be93-80415a856536 1 \N Other +98a14deb-505d-4354-ad29-1f867fa1d2f7 1 Other Other +98a15193-6f61-497d-8a54-1b3336b0177e 1 Other Other +98a1dfda-436b-4e23-a852-417c9fed83f3 1 Other Other +98a1f4be-19b6-469b-9ba3-b3dc4ac7ae2b 1 Other Other +98a264b3-df78-4543-a626-4eb113f604c7 1 Other Other +98a28005-4473-4547-bfe5-20918bc6022a 1 Other Other +98a29ee7-d1f7-4db4-a3ab-73aa9bdc636f 1 Other Other +98a2a634-41ef-47e1-a398-a07265b16738 1 Other Other +98a2b54e-5827-4930-8866-23c6d20e5140 1 Other Other +98a2b619-591c-418a-8c60-6c86a76a17e2 1 Other Other +98a2cc17-1f30-4b57-b88c-698ed5c9b23b 1 Other Other +98a321e1-25ba-4eac-a3f8-61d2a6ba1f52 1 Other Other +98a35975-26a1-4be1-aded-a5a70be63600 1 Other Other +98a3e8e9-6f2c-49b2-8047-7334efec0009 1 Other Other +98a414eb-ed9f-4f89-b4e7-02a9ff806eb6 1 Other Other +98a43360-92b6-4603-a55d-017fd42655f9 1 Other Other +98a480de-3d1a-424b-809c-5dfdf2caab62 1 Other Other +98a48b52-1efd-47d5-8bc4-e46cb58c77e5 1 Other Other +98a4bbd4-abb5-4861-8e11-248bab7e9764 1 Other Other +98a4f64a-6291-47af-8b80-da8a28d6147a 1 Other Other +98a55101-80d2-4a57-bf15-058ba2e6a5ac 1 Other Other +98a5591f-98c4-4161-8b43-63de0faf1e26 1 Other Other +98a5b2d9-0a64-480a-b7e1-ed84a3b46a0c 1 Other Other +98a5c08b-21f8-4cdd-807c-b9800bfbb274 1 Other Other +98a5c102-3fa6-4431-b38a-41b2191a1944 1 Other Other +98a5c79c-fa80-4580-b274-992ebd578b08 1 Other Other +98a5f4b4-e525-4413-a159-a97e9c134aa0 1 Other Other +98a612f9-c7ba-4bf8-b534-e366a3fbc779 1 Other Other +98a63713-bbc6-4a2c-9a5d-82a711f829ed 1 Other Other +98a676ce-c560-4e32-9670-9b1fad768914 1 Other Other +98a6a169-321d-4ab6-b02b-bfc320cb8b5e 1 Other Other +98a6a988-5a4f-4a75-badd-a9b058a1d2d1 1 Other Other +98a6b430-80a3-47b2-98b7-c9fe7474d31c 1 Other Other +98a6b480-1ae1-4a91-b599-5146cc8bb9e9 1 Other Other +98a6bd05-7669-4e13-9c0c-711126c6d698 1 Other Other +98a6c461-2e59-4cd5-9997-8775935ade70 1 Other Other +98a6e84d-9324-448c-8167-82c20f89ae36 1 Other Other +98a721d4-078c-40d3-bd95-0fd81d461130 1 Other Other +98a742f8-f168-4396-bd00-d7d448f1f11b 1 Other Other +98a751db-04a4-4df2-9a5c-0fccbf6fa68a 1 Other Other +98a75901-dac5-41e5-95ba-54a135be5fb5 1 Other Other +98a771f0-db6f-42a2-984c-81f0cf9d4585 1 Other Other +98a774d0-3ec7-4a7a-9712-44e5d20e0234 1 Other Other +98a79aa0-a9ca-44e7-85a4-00c9f466f8a7 1 Other Other +98a7b1dc-5147-4225-85e3-901138907207 1 Other Other +98a7de8e-9707-499a-8c73-425f354fdb83 1 Other Other +98a7fab3-a7cd-4bfe-815b-728a13c436c2 1 Other Other +98a82d3a-f2c3-4551-aa24-4107d87cd93b 1 Other Other +98a862a6-0c59-46e9-91c5-ed0984b0a40c 1 Other Other +98a8a09e-07f3-4c63-94fc-39cad41f9b8f 1 Other Other +98a8b123-f07c-45d9-9fd2-e3fd6538ea88 1 Other Other +98a8d805-42f0-4c86-bd8c-c2f5d3e345b6 1 Other Other +98a913c7-6779-4859-b4ef-75afddceefaa 1 Other Other +98a95464-c936-40be-b6cd-a35d71c27195 1 Other Other +98a9577f-68fc-4785-a722-d0afcda0f0a8 1 Other Other +98a9702d-6314-437e-a2fa-8829aa15eaae 1 Other Other +98a9db3b-0341-4be5-9b8c-7656bd083277 1 Other Other +98a9f57f-3a64-4bd3-b436-3569034e61bd 1 Other Other +98aa0209-6add-4591-a215-9b4b32f435d5 1 Other Other +98aa3cb1-4360-47d3-8a3e-8e2d01f8ff0e 1 \N Other +98aa43f6-6c63-4301-9317-31990f24a5d6 1 Other Other +98aaa607-427f-4643-a6fd-39f293413002 1 Other Other +98ab5fa9-8b0a-4c0b-a4d1-f98b68b3a597 1 Other Other +98ab637c-0c9b-46b3-99b4-861aece5a858 1 Other Other +98ab872a-022b-45f0-9045-51e5115fb1de 1 Other Other +98abc679-0c35-497a-bdda-a3ca7d3bd67a 1 Other Other +98abe958-6c5e-443e-a2c4-9c1efcfb3eb4 1 Other Other +98ac203f-7c2b-47d3-b269-d52576d0403b 1 Other Other +98ac6209-040a-4d00-9071-060761b9a5ab 1 Other Other +98ad3263-2ff2-49f7-99ec-d0f353817dcb 1 Other Other +98ad5dfb-4609-4946-a0b4-6608e54c945a 1 Other Other +98ad95d6-ddc8-4ff9-ad45-dfad95e40b96 1 Other Other +98ae0d7a-fedf-4f34-8312-4da10de19f38 1 Other Other +98ae2226-fc17-4b7d-957b-35744adb57b5 1 Other Other +98aeb5f5-cb3b-475e-b5b3-8fe3d0be7103 1 Other Other +98aec2b6-c019-4e73-8f78-33f772135d0e 1 Other Other +98af112a-2622-4157-b551-cd0a15f01e9d 1 Other Other +98af75b0-8ea9-4ea2-b315-44dde95d66bb 1 Other Other +98af9102-e102-423c-bba9-19e38eec4ee2 1 Other Other +98b02907-2230-40fd-8514-fb257d3b200b 1 Other Other +98b03d1f-4f5d-40f6-a117-2e4ddd8a4e0e 1 Other Other +98b04e5c-cb66-43cb-a15c-6329068ad714 1 Other Other +98b0a85a-038d-4de0-a9f7-e169d852a17d 1 Other Other +98b0be57-d783-43ac-9147-42c925e521b8 1 Other Other +98b0e5c7-eec8-42bc-9e93-0374ee32ad34 1 Other Other +98b0f72b-6c0a-4726-bc01-f664d1f4e910 1 Other Other +98b10e7d-0d32-4f6d-85f9-dfdec566d06c 1 Other Other +98b12949-7f9c-4c6c-8894-16546466e523 1 Other Other +98b13aa8-e268-4bc6-a75f-638f80b9b59d 1 Other Other +98b14456-9a0d-4a5a-a4b7-4a072b8cad0e 1 Other Other +98b19ad6-0823-4951-b495-0bbd8d4cac93 1 Other Other +98b1dd27-e4c7-4311-8d28-09509ea3e641 1 Other Other +98b1df82-8c80-477d-a4b5-ac8343073f78 1 Other Other +98b1fb9b-f0f1-4383-8deb-b24c0443f933 1 Other Other +98b21a57-d005-4df8-bead-303ba9f5ec6a 1 Other Other +98b24b89-ee0c-46f2-a8f4-d9c82a284349 1 Other Other +98b2e04d-ecf7-4e0e-bdfc-33a3746aef0f 1 Other Other +98b2e91b-7bab-481f-ac51-dcc21fab8727 1 Other Other +98b30bae-b491-4781-9283-37befd6a1c49 1 Other Other +98b36291-3002-4a93-a349-0cb5c7afc83f 1 Other Other +98b3cac2-6879-45ca-9729-938a5ad3f028 1 Other Other +98b40b1d-040d-41db-9976-9289bf45e1f4 1 \N Other +98b4367d-3e04-4f4b-864b-5c5f7487e981 1 Other Other +98b44093-59a2-4b5d-8089-4912e2e1b02c 1 Other Other +98b499b8-99c6-4403-a15f-a4e18bb07524 1 Other Other +98b528d1-8ae5-448d-ad16-49ce808ef169 1 James Other +98b5c991-900a-4ba1-b34d-a79929a5a322 1 Other Other +98b62849-af64-4a7b-8bf7-1a777e4c2af9 1 Other Other +98b655ca-dbe7-4b16-9f84-4ea9be8b7305 1 Other Other +98b68835-ac28-4c3c-9e78-22061c83db28 1 Other Other +98b6af60-041f-4d6a-b0fe-08f4273b60dc 1 Other Other +98b6afba-ef68-431a-be57-0eb0cf3b7580 1 \N Other +98b6c5a3-50f2-4aea-883e-79b512247e96 1 Other Other +98b6dac0-7a6c-40c6-975f-4c27964001b5 1 \N Other +98b739dd-8ee6-4423-993f-47dd90ae3d39 1 Other Other +98b76fc2-3a39-41c8-9847-f1f2f61e1137 1 Other Other +98b770e3-108e-4025-8faf-2610a678fbf1 1 Other Other +98b7ebc3-7f0c-4835-b42f-81ebe977d149 1 \N Other +98b80e0d-1540-4e4f-8720-f777cafccce5 1 Other Other +98b840d9-edc2-412b-b5b3-0d9c04819c5e 1 Other Other +98b87846-496e-4bdd-8e71-a1635ead0681 1 Other Other +98b8a30f-1a33-41b7-a282-0d51f1bab0d4 1 Other Other +98b8cbad-1d3d-425c-8e1b-f435761828f7 1 Other Other +98b900b9-3b2c-4c5a-84c1-4a0ee5fc305c 1 Other Other +98b911e9-21b7-4539-8987-f0635ca8f64b 1 Other Other +98b9871a-ee12-4ad8-9ee2-74a9ec034df9 1 Other Other +98b99855-c6dd-47f3-9a90-eab35598db2b 1 James Other +98b99a91-83dc-45b6-b225-e1b7867dfa8f 1 James Other +98b9daf2-3dca-4ef5-96a5-adbc92dc7bb5 1 Other Other +98b9e3e5-4150-4ca3-adda-c912b70f509c 1 James Other +98ba0dbf-eede-4e25-89ec-df276ecfd3e5 1 Other Other +98ba3221-2374-4c7d-a25e-685505b2909e 1 Other Other +98ba3759-1ab4-4259-8272-1776dc95ab4e 1 Other Other +98ba4708-2245-4560-bd16-9dba0968da2e 1 Other Other +98ba6036-d1d8-4c48-97a0-3db9744add23 1 Other Other +98bb1b07-f32b-4ddb-bcba-eec3dd285acb 1 Other Other +98bb250d-a254-419e-839e-af8b9de36816 1 Other Other +98bc0e00-e085-46a6-9f06-b9db9d14abe5 1 Other Other +98bc1818-eac3-4481-84ce-92a01dbe3897 1 Other Other +98bc801d-7ac5-4b00-a440-ff11270de79c 1 Other Other +98bccc16-3db5-451f-8c71-95bd470254d0 1 Other Other +98bd48d5-3568-4eae-9bfe-e814fdf4d9d5 1 Other Other +98bda8f3-4336-4c5a-910f-cd6712952d5b 1 Other Other +98bdca23-74ab-444f-8cf6-bba67e8cb034 1 Other Other +98be9d03-65ed-404f-8bae-12f0f3bdf3c1 1 Other Other +98beae84-6505-4698-b848-8b792563f108 1 Other Other +98beb696-f285-447c-b40e-b22ba893beb9 1 Other Other +98bf03e9-d90a-4393-af40-54fa6e46a448 1 Other Other +98bf41d2-4d47-43b5-89b9-d43bdf0ab374 1 Other Other +98bfa365-e409-4280-8f34-96f38b7ecf47 1 Other Other +98bfb6cc-a4a2-4731-9992-7b2dc6c82954 1 Other Other +98bfd586-3ab3-4e0f-abe6-5c7f066d3183 1 Other Other +98c00873-89e7-4247-a264-3ff63ad8b1b6 1 Other Other +98c0412c-b913-420a-8d49-7b11fefc3bc9 1 Other Other +98c0619e-81d9-4d32-9a67-0011c7afb9a3 1 James Other +98c0784e-a9c5-11e7-ac15-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +98c09587-afda-42f0-82ae-967fcbdad957 1 Other Other +98c0d522-80ab-4a3f-8d6b-7357189cfd67 1 Other Other +98c13e2e-202e-40b5-a6b6-45e02669e807 1 Other Other +98c157f3-b6f7-4b35-b063-930ad7ef113a 1 Other Other +98c16989-1060-49f6-a8de-1ea4a17b718b 1 Other Other +98c205b8-62fc-4d44-8a3b-f3cde1fd64bf 1 Other Other +98c259d8-7809-42db-99d5-11d10fd033c2 1 Other Other +98c294f5-cedc-4688-a7f0-b3cd67834384 1 Other Other +98c2a97e-4eaf-48b1-8157-519de6e0302d 1 Other Other +98c2aebe-0a57-11e8-8111-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 James Other +98c2f004-118e-4868-a4e1-193a42cf20d1 1 Other Other +98c2f4f8-6b23-4e42-8d88-df5f3a795ddb 1 Other Other +98c3016b-4bf1-4a3e-b44d-ef78eca40f00 1 Other Other +98c380a5-4ee6-497f-b4e7-74aeae6c7a37 1 Other Other +98c396a9-9888-40f1-9af9-86432a41b168 1 Other Other +98c3a988-f94c-4ee8-bd8e-a761e64ea88f 1 Other Other +98c3e3f6-f166-4818-8dd6-16c56763d76d 1 Other Other +98c3eeb1-6902-4a45-82a6-a6b22eb816eb 1 Other Other +98c456c4-b02a-44f9-a39c-1c5aa4aa5d93 1 Other Other +98c45b04-cbf6-4593-bdd9-80b425197923 1 Other Other +98c45c71-1122-42c7-b892-661753d34322 1 Other Other +98c46a1b-f574-44b3-9b8b-f125f43d799e 1 Other Other +98c476a0-c457-450d-aca9-a1d5529a556a 1 Other Other +98c4872a-665d-45a8-9bdf-6a3bb1efe5ec 1 Other Other +98c49731-f397-4461-b6bd-5f9496e6ad79 1 \N Other +98c4c9a2-272a-4abf-9c9b-c7258d2fcdbe 1 Other Other +98c4e6ee-085b-43f8-9cfc-893db679550e 1 Other Other +98c53bfa-5b4b-497f-b06d-b4f95d93edcf 1 Other Other +98c56f41-85af-4f8e-9368-c333d9208d74 1 Other Other +98c5865a-35cb-4755-a15f-1c48ba442085 1 Other Other +98c598bd-2600-4124-b72a-bebb71526a37 1 Other Other +98c64614-c7d9-44f7-a247-358d66e080a7 1 Other Other +98c6721a-268e-478d-bb7f-69911dd7f663 1 Other Other +98c6a86b-585d-448b-8287-e84ce93c31c0 1 Other Other +98c6aa1f-5a0d-4e99-91dd-626a3359b6b9 1 Other Other +98c6bcbf-c37b-4267-a8d0-0f587f00c291 1 Other Other +98c6e5a6-2d6b-4338-8491-679ef639bec5 1 Other Other +98c71768-2ac1-43f8-92c5-3f3fa7d05bf8 1 Other Other +98c72e7a-1fc0-4ef1-acf8-45282767b275 1 Other Other +98c734b2-107a-4e7e-a14c-a91b879758fd 1 Other Other +98c742e4-ab10-4534-8412-d9e876dbb31f 1 Other Other +98c76e6a-455d-47b1-a7f5-7cca4599766b 1 Other Other +98c7addb-7e88-4365-b483-d6339d52de59 1 Other Other +98c7cabb-884c-4c0d-8bd5-1ab39a2accdf 1 Other Other +98c83c3f-3276-4bc8-840f-fa9089337cae 1 Other Other +98c85b47-2828-4b2f-ad7f-1456d59ee47c 1 Other Other +98c8692f-0626-428b-9118-15b4c183ebb1 1 Other Other +98c87eb1-029d-486a-bbb7-1cfe9e0fe83b 1 Other Other +98c8bf8e-82ac-478a-9444-db060a84a6b7 1 Other Other +98c8dd1e-1d68-4520-8d33-3bcf4626f414 1 Other Other +98c94191-f50a-442e-8d2f-657d0f731dd0 1 Other Other +98c9dda6-9131-401e-b80a-02536364fa3a 1 Other Other +98ca136a-f797-42f9-8af9-61ee9c33e28d 1 Other Other +98ca3384-2420-4eba-86b4-9057798a9f5b 1 Other Other +98cac75e-c3f6-4828-85b5-b5c132cf5fb7 1 Other Other +98caf5d5-4de4-4f25-bb11-54db91a7c4e5 1 Other Other +98caf81b-98bc-4d65-93c4-a32aeea59e8a 1 Other Other +98cb0f67-fc57-4a6d-ab10-2078b7a26855 1 Other Other +98cb2986-511c-4045-b705-4447a6b6d137 1 Other Other +98cc0c76-24d9-4aa8-8045-4593d895d953 1 Other Other +98ccc291-aca9-43cb-bfe1-43bc8abd43ad 1 Other Other +98ccdc19-ba72-4962-88a2-48ec50ec6bc9 1 Other Other +98ccfbbd-aad7-47c5-bbf8-45bac9b2bb8d 1 Other Other +98cd0f82-f3e1-4d45-a3aa-64ae67c20986 1 Other Other +98cd28ba-1156-406b-b0a7-0e632c171b78 1 Other Other +98cd3965-9ddf-4ef8-9be1-5ab90f0fff01 1 Other Other +98cd56d3-c43b-4d14-9edc-2729f0b5e87b 1 Other Other +98cd61d4-6b63-4062-89e8-c5e10baf55ce 1 Other Other +98cd7153-7f35-4a94-ab50-191d4784c00f 1 \N Other +98cd8378-996a-410c-bb1b-4f6db8592b5b 1 Other Other +98cdab37-2c64-45e1-9197-2c74a53a7128 1 James Other +98cdc394-6feb-4a68-af99-0966a7dd5d31 1 Other Other +98cddaa1-aeee-422c-8043-1537f07684e6 1 \N Other +98ce724a-7dab-429e-8e16-bad00553a162 1 Other Other +98ce7d8f-09c4-42be-a876-47b10bcf7548 1 Other Other +98ceae52-a02f-4f0a-b8be-649b04117e9b 1 Other Other +98cec336-7d6b-4b47-bd35-5cda18a2e253 1 Other Other +98cef4df-c974-4569-b315-0ab025ae75ba 1 Other Other +98cf0a82-3f15-4b94-b318-d0219512cc9a 1 Other Other +98cf5828-474c-45cc-bf29-a4b6641b276a 1 Other Other +98cf5b13-fb32-4ec7-8f7a-2d01f446cb48 1 Other Other +98cfaeef-6c47-491f-8d79-f97f5c6fc560 1 Other Other +98cfcd8e-6f69-41cf-a1dc-cebbc94d4a7d 1 Other Other +98cfdf66-e6ae-4e81-8a6f-95aae33a1f7c 1 Other Other +98cffedd-47e0-430a-9c63-cbe8ba2f5df1 1 Other Other +98d00660-6c58-4c49-823a-0bb2aa594f91 1 Other Other +98d0256a-b13d-445b-a498-6e6f58e40dcb 1 Other Other +98d03427-573b-46f9-b74a-73cca94f8bce 1 \N Other +98d05256-d4f4-4bba-a53f-be560ad7c97c 1 Other Other +98d05a48-4a03-4749-aa64-2d9b35f1efc3 1 Other Other +98d08cc5-c6b6-4356-b1c3-a60e6a3f6832 1 James Other +98d106f3-2741-4942-85fc-1ab33f535370 1 Other Other +98d10707-107c-4fe7-a628-66528b4d5798 1 Other Other +98d12652-2dfa-4d99-81cb-ddb8e8522bc0 1 Other Other +98d13050-ff8d-4417-82ff-8140631da57d 1 Other Other +98d16c3f-e068-4454-880f-b1840cc17a79 1 Other Other +98d17dbf-e5bc-4287-b924-92dacda815b3 1 Other Other +98d1f09b-45f8-45e2-9d11-0bec662ecc11 1 Other Other +98d2154c-dfef-47be-bf70-cf2f06618bb9 1 Other Other +98d24068-78d6-4e81-aa21-bbe006794069 1 \N Other +98d24d73-6293-40ba-846a-b774cb8dc826 1 Other Other +98d250ff-1d94-4fa0-8dc6-892d81b7222a 1 Other Other +98d2640e-f930-4275-897f-29681489a4d2 1 Other Other +98d284ca-0765-43c8-9020-a203b909bfef 1 Other Other +98d2cce3-6688-4141-aac2-faaab14320a5 1 Other Other +98d2d91c-fe5c-4b73-8462-783eb5efaaaa 1 Other Other +98d3c0c2-9b28-4e13-8c80-10e77330e2bc 1 James Other +98d3dc9d-7935-4a9f-8b0b-b59462173632 1 \N Other +98d40a57-330d-48f3-bd29-25f9688acf03 1 Other Other +98d42014-982f-4a26-9fd9-b4520cf49da2 1 Other Other +98d4f15b-c0a4-40a4-92f2-a32e12abd669 1 Other Other +98d56e94-4694-46a6-bc73-8af942db29d8 1 Other Other +98d57c1a-51ac-4bf3-a5b4-24a83306c357 1 Other Other +98d595d9-cb1e-4f85-bfca-b3493fcb3b00 1 Other Other +98d5cb68-2edc-4cd0-84e2-120ff0e93553 1 Other Other +98d5dd20-f259-4fd2-a98d-e01d7d861b2c 1 Other Other +98d5f9cb-fd7a-4399-a799-82a6a4489f77 1 James Other +98d6894c-68bd-4195-a042-74e63a7b8054 1 Other Other +98d755a5-c4ec-462e-91cd-27d8d7c442d9 1 Other Other +98d7577c-f8ca-4615-9920-d25cf73cd3f4 1 Other Other +98d76add-0f46-4f34-9489-2151cffdf621 1 Other Other +98d79eb6-b892-4828-ad3a-33ead8016fec 1 Other Other +98d7c464-9522-4e7d-9313-757cabbb03af 1 \N Other +98d7dd87-1dfe-40d9-bdef-915f21949829 1 Other Other +98d81e58-75a2-46a3-8632-b477afddc9ed 1 Other Other +98d96897-0bc9-43dd-8765-b4328fe6a713 1 Other Other +98d9c3b3-78e7-4294-bbc5-68d4fea10abc 1 Other Other +98d9e514-f2c7-40f8-917d-2724003f66e5 1 Other Other +98da95c0-a98c-4592-b3d1-d783d159385d 1 Other Other +98daf18c-0611-457d-9189-8b4b7aca5f26 1 Other Other +98db4870-98d5-43dc-a2f8-6104bb5b957f 1 Other Other +98db4b76-dd92-4bbc-bcee-7d3ed5ec4ddf 1 Other Other +98db4bc3-ca46-4545-9e80-12f3669bfdd0 1 Other Other +98db4d54-f6d2-48ad-a6b5-0076a9d6ceff 1 Other Other +98db8d5d-a619-4625-8583-63bf4be86251 1 Other Other +98dbf61e-fdde-43ef-9484-1429eb4e7d58 1 Other Other +98dc1fc3-a610-49a2-9075-fd0ed3be9a74 1 \N Other +98dc4422-d3de-4a00-8f76-6594dac6c5b9 1 Other Other +98dc8291-05d5-4a07-aba3-30c65d0378ea 1 Other Other +98dc9371-9bc1-4844-b955-a986ec298985 1 Other Other +98dc9429-6f59-4535-934d-43eb02d955a8 1 Other Other +98dd2775-5650-4cbc-bc98-e720c89b4d1b 1 Other Other +98dd2b0c-6109-4baa-ade9-ea3a781794d2 1 \N Other +98dd44a2-207b-4fc0-94e0-63aad98ab67e 1 Other Other +98dd4c73-4c9c-4f42-878b-163014fd75bd 1 Other Other +98dd7fb7-8bc8-441a-bb48-1401b35fa1c0 1 Other Other +98dd8116-2230-41a3-8363-4885564a996d 1 Other Other +98dd8fd5-c7b0-4179-9429-27c5a39be008 1 Other Other +98ddab91-fd7a-43e4-b898-3fed9b0e1971 1 Other Other +98ddb14a-cbe2-458f-b488-2dc9ceb3d4a0 1 Other Other +98ddd00c-9720-4db6-b527-0783939a9889 1 Other Other +98de0463-ace8-45dd-b3a2-664647638913 1 Other Other +98de3f51-9e13-40fe-83b8-e2c8c1d04ff2 1 Other Other +98de5b72-5214-4a23-9900-be91fbcbc6e7 1 Other Other +98de8cde-ac53-49aa-9349-c7af267b82b5 1 Other Other +98dee565-ed95-47c5-a9ba-6679d92b4090 1 Other Other +98dee6ad-3ad3-4a61-91ba-b425facd122d 1 Other Other +98deff04-d09e-44dc-ab6c-4d026d221947 1 Other Other +98df22e0-7e8b-433c-a10a-65bcc2db5521 1 Other Other +98df9b7c-40e2-43a8-afff-52e87990f694 1 Other Other +98df9fa6-95c5-4297-b322-4dd76abcbffe 1 Other Other +98e06d11-bc34-4f6e-8707-267e59b24ff1 1 Other Other +98e097d1-bc3b-46d0-98c8-25247a437bf1 1 Other Other +98e0b02b-781e-493e-a897-a9ecd4b3f10b 1 Other Other +98e0f024-219d-4469-a475-1655bc2347bc 1 Other Other +98e13a37-7cc0-4cda-be6e-850abedd6903 1 Other Other +98e1a88f-307e-4589-9205-0a54224f5c05 1 Other Other +98e1b6c2-4370-470d-82ef-09f3527fe95a 1 Other Other +98e1bcd2-4112-464c-942a-99915a1e8022 1 Other Other +98e1d389-3752-4370-9f33-3d61370f2451 1 Other Other +98e207e5-1684-48ce-81d5-efc28f7f1a9e 1 \N Other +98e24113-319a-429e-bf3a-2e81346b9a5f 1 Other Other +98e25203-d244-4864-910e-ccf29175bff0 1 Other Other +98e2620d-1548-48bb-9fa8-faa280425c7c 1 \N Other +98e285ec-0672-4097-9db2-30f7ba2f782e 1 Other Other +98e2c8cb-0d02-4439-91b7-d7b0894d6bc5 1 Other Other +98e2e3b0-3397-4bf8-87c4-1df45cd863c4 1 James Other +98e36de6-37ea-4bba-95c5-5c8a7a648542 1 Other Other +98e397d3-762f-4dbd-9e81-42f608d42598 1 \N Other +98e3aa87-4fbd-4e25-87b8-b3a078f091f5 1 Other Other +98e4739c-f83e-46b6-8d71-7922ae21b907 1 Other Other +98e4c57b-4120-43d4-8dd1-b254ca3c1dad 1 Other Other +98e4d18d-abce-4639-9a69-f0e7702a0af1 1 Other Other +98e5370b-bc72-4c64-b0c3-7b8410e53d36 1 Other Other +98e53ca1-55db-4eb3-bbad-57d05b10bb82 1 Other Other +98e5599b-4ffa-4ea9-8a3e-059686bae3f2 1 Other Other +98e5956f-803f-47df-849a-644bc573f727 1 Other Other +98e5b176-d429-4580-97ff-5aefb4317a98 1 Other Other +98e5b2f5-3a6e-49b0-ab71-a50a543cb41f 1 Other Other +98e69250-f926-442a-b936-20384dca23e4 1 Other Other +98e6a02b-a117-41cb-81a5-9674db16b89f 1 \N Other +98e6a959-d8c2-4455-9b21-ad3ee2d04b8d 1 Other Other +98e6e411-6422-402b-8660-328b9f7a3d82 1 Other Other +98e701c3-8967-4bc1-87e8-e57ba2640dd4 1 Other Other +98e70e17-d52d-444c-b7df-f89be9d12735 1 Other Other +98e71d17-8667-42a1-b017-d8f6c8ad5328 1 Other Other +98e76f49-c3ef-4978-ba32-fd0c74f3af1d 1 Other Other +98e7b6b4-67b6-43ab-950b-8cd9ebf8a55a 1 Other Other +98e7d5f4-9f2e-4447-b897-4194b579d2a9 1 Other Other +98e7eca1-7d82-41fe-94bf-87f3ef46d02e 1 Other Other +98e83dea-317a-43b1-89b0-dab54e970385 1 Other Other +98e853c6-c43f-445d-9576-bb30ee8ee66b 1 Other Other +98e865e9-ee8e-400a-a5cd-aed3f9440a19 1 Other Other +98e8bbb7-cb4c-44fa-817e-63c58acb1dd1 1 Other Other +98e8d522-59aa-405f-9843-5be78fe84140 1 Other Other +98e8f977-2e1d-4049-ab8c-9be61036b63b 1 Other Other +98e90da5-b819-46bb-8281-ce95352c3711 1 Other Other +98e91982-35ce-4bd8-bca0-0341ab960461 1 Other Other +98e9722a-bc0a-49f9-86e6-50b7fa115a25 1 Other Other +98e973de-04d3-44c5-889d-5f6911516389 1 Other Other +98e9808d-7d85-41af-bec0-2fc28b4e7441 1 James Other +98e984dc-0a09-494f-b1a0-4131bc5c9aa4 1 Other Other +98e98caf-05b1-40e9-83a8-a9a91e18d878 1 Other Other +98e9a7a8-f17f-41ec-81dc-0ddf8b38ff07 1 Other Other +98e9c6df-5606-4e22-abd9-b80686b5a572 1 \N Other +98e9cd15-8204-4b2a-af37-d950c851faee 1 Other Other +98e9ee67-b8d5-4697-bc91-ee225f6df339 1 \N Other +98ea369d-19c3-4f75-b71d-4327abeec7a9 1 Other Other +98ea40bd-7517-4166-966f-537600b18a17 1 Other Other +98ea98b2-472d-475d-8b19-5688c52b8332 1 Other Other +98eaf0c4-8207-4ca1-98bc-4577e8da401f 1 Other Other +98eb123d-19c5-4d73-b595-919176fd7167 1 Other Other +98eb1ba0-5330-4f96-bbe9-34435c73119a 1 Other Other +98eb4840-eb15-4f9a-8651-b0cdec143a87 1 Other Other +98eb764f-5425-4fb1-9558-a34334301a7a 1 Other Other +98eb8be5-09bf-4465-8d12-fc8a9558d5c8 1 Other Other +98eb8d6d-a90f-441b-9299-ce4af02ac83b 1 Other Other +98eb8f3d-0a0a-45ff-9b5b-77fb77c46c32 1 Other Other +98ebb123-9e95-44f7-9991-6ab52b12220b 1 Other Other +98ec1d88-1434-4744-9555-182b95391cb5 1 Other Other +98ec323f-41fc-4500-9ae3-4fdcbfabf382 1 Other Other +98ec342c-b246-45b3-9a74-519af6e71b26 1 Other Other +98ec3a60-cfd5-4e66-a814-43b3c9f66f58 1 Other Other +98ec45c3-a7b0-4efa-af89-28a4e00a6749 1 Other Other +98ec6506-7ae0-48a8-bfdb-c761a952d169 1 Other Other +98ecafff-27c7-4d24-bd75-7aa0b86163d7 1 Other Other +98ecd269-6faf-4a9f-b076-b0d42799570b 1 Other Other +98ecfb2f-c616-41d9-a934-11af279aca3c 1 \N Other +98ed0e94-0714-4f6d-85f2-8cc05912f7e5 1 Other Other +98ed148d-a35e-4840-b838-23f0226d4767 1 Other Other +98ed5174-47ae-4102-a086-80f675081c8b 1 Other Other +98ee24a2-3b39-4c35-9638-1211c8620a8e 1 Other Other +98ee28a1-c4ee-4fd4-b34e-8b0f3f213186 1 Other Other +98ee6364-b1cd-4f4b-a68b-a72d73373278 1 Other Other +98ee8814-59d8-4072-aa23-05d5728efe88 1 Other Other +98ee9b50-b3d4-4546-8873-b3517ddbd051 1 Other Other +98eea55b-ad94-4101-a63c-cbe44138bc9d 1 Other Other +98eeb229-3a11-4574-a260-1a360fedf625 1 Other Other +98eed68c-c432-47c9-a93f-b16248f2759a 1 Other Other +98ef53e8-6cba-4c1b-88c5-1ca255554f0b 1 Other Other +98efb5d5-7b92-4702-b4f8-3718d5095f4f 1 Other Other +98efe965-1de2-42a7-a88e-e8f4fe805c46 1 Other Other +98f00b76-6804-4344-bea0-2faebc02c246 1 Other Other +98f03e57-f684-4de0-882e-98a427d84855 1 James Other +98f050b0-a4d2-492d-badf-f6ad79ca1376 1 Other Other +98f05245-e483-42e3-9ce9-6d56797ef9ef 1 Other Other +98f0614e-a577-4c26-928c-08e02f7d4806 1 Other Other +98f07971-067f-49b2-a711-75aab5eb3ef3 1 Other Other +98f07ff6-fabb-49e9-95a6-84a07e6a210d 1 Other Other +98f0a692-0cdf-42cc-aef9-a98d02ef7a3b 1 Other Other +98f10218-1a42-4cb9-a976-e6d0cc08f05f 1 Other Other +98f11fed-be02-4737-8810-035591d88dd8 1 Other Other +98f146cd-b95a-4636-9d0e-34ab8b574f86 1 James Other +98f19189-67ab-4c31-9886-8f648ac3b7b4 1 Other Other +98f273fc-5ce2-4381-b82a-1a80d7008e6a 1 Other Other +98f2938b-17b7-46af-ba42-10c373bfe0c3 1 Other Other +98f2e141-d66f-4990-8250-f48eafb86645 1 Other Other +98f33dc9-8a40-4e1e-a627-d1091b59cd48 1 Other Other +98f35aad-6c41-4871-ae0f-fa09933b0e42 1 Other Other +98f44ed2-ace2-43d7-a6df-f5df1d3b2190 1 Other Other +98f45246-14d1-4a80-8b74-705550047743 1 Other Other +98f4854a-1691-4ae7-9496-a5d58c8f9154 1 Other Other +98f4a879-b22d-4e87-b509-75ded39ed569 1 Other Other +98f4be14-f532-4208-ba98-a7574aaecbb6 1 Other Other +98f4dba2-f399-4b2f-bb69-5948ad6483c6 1 Other Other +98f4de73-751b-420e-b12e-7682828e8162 1 Other Other +98f4e614-5b04-4388-b16d-447d558ad4b2 1 Other Other +98f4fef6-8225-4671-ab0e-e9df24368992 1 Other Other +98f511e2-b488-4707-8dd0-430d06edacbf 1 Other Other +98f51422-1aa0-4ab0-a177-38df0e3ce850 1 Other Other +98f53e63-3f20-462c-8d59-1725922b0f79 1 Other Other +98f568d7-4b9f-44f7-82e7-1a089cb944f2 1 Other Other +98f59aaa-f887-4914-85f1-c5071b9754f7 1 Other Other +98f5cb2e-235f-45e7-884f-25a57932d61a 1 Other Other +98f5f2e2-90d7-4afe-bad8-f7417c27faba 1 Other Other +98f6b716-ae3f-4fd2-8844-35de92b0dbcd 1 Other Other +98f6c8f5-9e88-4c6f-9600-2582c6faaa3f 1 \N Other +98f72ba3-19f9-498f-b8bb-ff907225be37 1 Other Other +98f79c55-9ec3-4b19-babd-6869ad6b6642 1 Other Other +98f7b46c-3aaf-44e7-bef7-2cfa7adb5652 1 Other Other +98f7d7bf-3938-4bf5-9ac7-56c2755ff08e 1 Other Other +98f7f9a3-b904-4582-afb7-c54f49c23cb4 1 \N Other +98f8171d-6c0c-4c51-a57d-30aa83eb14e4 1 Other Other +98f90a48-bb55-470d-8baf-abad56daa594 1 Other Other +98f93805-e5d1-4c9b-9d7a-ca30c98dd040 1 Other Other +98f9851a-0968-4233-8d82-4c0ebca98dae 1 Other Other +98f98d50-ac7d-4855-95a5-a8d093ca3394 1 Other Other +98f9a2d8-553e-4043-b552-845cfa2cf0a4 1 Other Other +98f9f82a-85c9-49f1-b481-25a6e60c034c 1 Other Other +98fa0534-0b3f-4310-961f-f3d6c5b18f6d 1 Other Other +98fa1dff-f4ed-4fc9-8ae3-7d1dd34aa19b 1 Other Other +98fa41ff-0037-4048-aace-4f5c4cbe800b 1 Other Other +98fa4e63-08a3-4010-9b8f-6bb32b080de7 1 Other Other +98facf22-2d47-43ae-b4d1-3cc337acaf4b 1 Other Other +98fb4ca7-6cf5-4670-952e-f2f264c24612 1 Other Other +98fb9f7e-55b5-4b24-94f8-751c50898ba9 1 Other Other +98fbd411-244f-4245-a820-a101ea7ea97d 1 Other Other +98fbeeab-f327-4f03-8942-853d143039d4 1 Other Other +98fc7b52-9456-4039-8956-d7546746d06a 1 Other Other +98fc7c65-3731-4e17-a938-0eebdba357c8 1 Other Other +98fca9e7-3095-44ec-97dd-a6e660a12d3d 1 Other Other +98fcc577-c318-4c4a-95e5-739457052117 1 Other Other +98fcdae3-d8cb-488a-b801-b3d7958924d6 1 Other Other +98fd38e3-dce9-4ace-9606-e42c1d47dfe6 1 Other Other +98fd4905-2e09-4f77-8cae-93983fe38c07 1 Other Other +98fdfb27-0b04-44d8-a755-3aa3fd568506 1 Other Other +98fe2680-ff08-4ecd-ab95-b08be1dee484 1 Other Other +98fe5e50-aec1-4f78-88f8-5d82f7deae34 1 Other Other +98fee0b9-c356-4492-8175-d15a09b32d98 1 Other Other +98ff057d-87fe-4a14-afe4-aafec509ed06 1 Other Other +98ff2e64-a8fa-4d11-a146-0401a0b9c3f2 1 Other Other +98ff34f6-290a-413e-bc92-d584e7abc488 1 Other Other +98ff85a6-a933-47ea-8f1e-fef8b47ecb17 1 Other Other +99003977-fac3-4de8-a792-e1bde44b3c19 1 Other Other +99004bf1-35b3-44fe-a9ac-ea647778d39f 1 James Other +99007794-34f7-466b-9382-b8cd6a9ec968 1 Other Other +9900907d-0e4d-4311-ac76-4f7056ff9168 1 Other Other +9900a40e-1f2f-42d4-a1b8-02654cd8a5b8 1 Other Other +99019046-3ae8-4a3c-8bf0-fed9f019ff1a 1 Other Other +9901ecf3-b8eb-43bd-bc33-a99ef7c2e3c2 1 Other Other +99021897-c066-4322-a312-1a1d03dd3c9f 1 Other Other +99022c35-73eb-44f6-bec6-58fad304dcc7 1 Other Other +9902867c-37d8-4243-9a3b-601304f544f2 1 Other Other +9902882c-bc45-443c-a5fa-3a3a15997d8b 1 Other Other +9902b5b2-9e35-4c1f-9898-0ca76ad01718 1 Other Other +9902d7e5-9e25-40cd-9988-4bcae1fc0f90 1 Other Other +9902e056-2340-4b9d-86cc-eaaafa42a923 1 Other Other +990349d1-9453-453b-89b5-c53dfbd3c52e 1 Other Other +99039e05-5b38-4a5b-baa8-7dd42ae2bb39 1 Other Other +9903c714-2ff5-46a9-af12-2396d5d81fa9 1 Other Other +9903d3d3-3fc2-418a-b129-58365b0ab292 1 Other Other +9903e486-9cfb-4cad-8b9f-96a5da247046 1 Other Other +9903e5b7-c58c-4d23-a00e-91e8b9f96618 1 Other Other +9903fa57-71b8-462e-a0b1-899ed62c5a71 1 Other Other +99040d9d-c2db-488c-8475-24b1c583d5f7 1 Other Other +9904117c-0963-4c87-986d-d6ebdf9bb1ca 1 \N Other +9904502b-bdf9-4c42-8c19-b97f23e39f53 1 Other Other +9904d79d-629a-41ec-9d9d-b4bdde5adbfd 1 Other Other +99051bd0-58b4-48a6-ac47-c49b66cd3b49 1 Other Other +99052379-70e4-4406-b802-6f10f75ecbd9 1 Other Other +99052a09-09fc-4703-b49a-7ec31b0cc3c5 1 Other Other +99055944-842f-4346-a612-a2dcd2b1072c 1 Other Other +9905648d-6c04-4800-ba3d-83b14ac139b4 1 Other Other +99064dca-8a29-4a87-8878-0c34c2f51818 1 Other Other +99067d18-277f-4097-8378-ea76aac9948b 1 Other Other +9906e196-315d-41a6-84a1-3ba22f1ab525 1 Other Other +9906e625-f92e-4847-9df3-121677618f60 1 Other Other +99075728-8666-4220-b460-7fd0b077eae6 1 Other Other +99075d97-9c81-4c10-90ca-f4711ec56e39 1 Other Other +990763dc-f057-4228-af7e-b28c537cb3d5 1 Other Other +99079314-f5b2-4502-9920-1c96b1ba0024 1 Other Other +99079597-b71b-49eb-a1cb-f02f13b6b4cb 1 Other Other +9907c646-ca0d-414d-94fb-eecf3ab32f62 1 Other Other +9907d1c3-89c7-489b-8999-9e120c8f7719 1 \N Other +9907e193-7e1e-4289-a049-b4632054e5d3 1 Other Other +99080576-0f7d-4f25-aee0-9aa7df9e8567 1 Other Other +99083785-5acd-4a91-bb18-c9b628424a98 1 Other Other +99091c61-5d28-40cd-b384-421903d63c0f 1 Other Other +99091eba-8d03-4607-8db3-a30a2e4a97dd 1 Other Other +99094e0c-8ab0-4bd8-bdab-5171b0abf07a 1 Other Other +99096ad9-9c2a-4188-8181-78359ee9e2ae 1 Other Other +9909bfb9-c974-4077-8e68-5c49d11046dd 1 Other Other +9909e5f1-9327-4918-b2a8-5304a83be2a4 1 Other Other +990a2483-c71f-471f-bfb1-39330eb851a1 1 Other Other +990a343b-69d5-4804-b9d1-d874aff28854 1 Other Other +990a3cfb-b269-44a4-b8b1-ff4187964274 1 Other Other +990aa453-f730-487f-b03c-5d03658d3b27 1 Other Other +990ab9bf-a224-46a4-9003-768badd70f15 1 Other Other +990b2224-3ca8-4447-a7e9-fc426044a315 1 Other Other +990b60e7-41be-41cc-ad55-1ad209e295f9 1 Other Other +990b7d9d-56f0-41bb-a8e9-e61c94d16d69 1 Other Other +990b7e89-a846-450e-80ae-9e9cf9eb1395 1 Other Other +990b84e9-eab5-48d2-b7b4-7759a1ba3789 1 \N Other +990bbee0-e140-4163-95eb-b971d282b04c 1 Other Other +990bde55-c198-4f2a-be52-2d0edb47a014 1 Other Other +990bff56-23c8-482b-8951-d0ac795d662c 1 Other Other +990c0755-3e8f-4563-8bb3-07c5d94beb22 1 Other Other +990c128e-c9f9-41ce-8f14-5c551ebbb962 1 Other Other +990c1bb0-a6ae-49f9-8954-7f9163e6c75a 1 Other Other +990c383f-5479-4b96-ac9d-777db9137693 1 Other Other +990c4061-e02c-41ea-ae60-9b8d84369491 1 Other Other +990c49a6-320b-4851-89fa-5d7c4d78cd69 1 Other Other +990c5d2d-194c-4604-8c37-1e62613274b3 1 Other Other +990c64f6-c26c-4a24-8f76-f2937e8bd947 1 Other Other +990c7225-ac43-48f0-be23-dc1d8acd5e75 1 Other Other +990c7cae-5b9d-4348-8933-34794ac847b6 1 Other Other +990c8218-9c5e-4b20-9003-d292327a9c7d 1 Other Other +990cc7f1-2e9d-4c3e-89d6-2222f127bbbe 1 Other Other +990ce72b-4935-456d-ab3d-a76f229bb7bb 1 Other Other +990cfba8-b72a-405f-8777-b0b98d74c2dd 1 Other Other +990d2163-f626-4ca9-a480-98ab85c95aba 1 \N Other +990d7509-3b87-419b-912f-e9a389e06154 1 Other Other +990da9e9-dc48-47a9-9027-da26382a48b4 1 Other Other +990debbc-624b-4b30-8eef-74d34fb6304f 1 Other Other +990df2ed-90f2-4cef-8419-7fb9d0edd131 1 Other Other +990e0611-9608-4de1-b8b0-e0609a9844db 1 Other Other +990e1064-16c5-4f00-8d86-0e05a52fac33 1 Other Other +990e344f-3661-4f31-822c-39104a0c4de2 1 Other Other +990e3a92-c836-47a4-97a9-9e03d4140a32 1 Other Other +990f343e-47d4-4fce-baea-3adca15caf33 1 James Other +990f351f-65c5-49e4-bdd2-61c38d4e80b4 1 Other Other +990f3cd7-ca5f-4a20-9542-cd718a49be5c 1 Other Other +990f54f4-812b-4122-99bd-3d533cfeb509 1 Other Other +990f59ba-06a8-496f-b782-f3deeb55d5d6 1 Other Other +990fb227-317d-4c55-b822-5d1d3ff635b5 1 Other Other +990fc603-4516-4768-93f4-3c0ddee4ebf1 1 Other Other +991027e4-bafc-4471-ab2e-b7a088a66d62 1 Other Other +99103d25-47d5-4060-8d3c-2ad42aa22188 1 Other Other +99105fc6-a855-4f20-b193-eb0e2c727524 1 Other Other +991077a2-9bc8-4e40-bbeb-335b53dc7bbe 1 Other Other +99108f8c-24bd-49e6-a6a2-95fa347caa42 1 Other Other +9910963b-15ab-4764-8d0c-7b22b22126a5 1 Other Other +9910a3bf-acb4-423e-bbe9-425774ba2276 1 Other Other +9910b042-04af-4e89-b29d-14cb405b1c2d 1 Other Other +991128ac-5ea9-4bc8-a7b5-e9b797514393 1 Other Other +991134e9-c578-4f4b-8c53-81f917abe28d 1 Other Other +99113fa5-7002-4a44-bffc-9fc662f2c2ed 1 Other Other +991144ec-3e40-478a-9d73-0fa833787bb3 1 Other Other +9911671f-a7be-47c4-b4d6-9ef9cbd8f5a3 1 Other Other +9911a3b4-c19e-482f-b303-4ea23d993c3d 1 Other Other +9911f80c-2ac8-4678-a3cc-be6be01cdda5 1 Other Other +9912084b-a59d-4095-a54f-863e64419bbc 1 Other Other +99122e91-e1f4-4ffc-b2f0-5f8e313f5838 1 Other Other +991246a0-c555-4a7c-addb-fba79f3348b0 1 \N Other +9912573f-148f-4345-95b2-2792d3aa5d9d 1 Other Other +99127be1-1c46-4edd-a678-c3a900d58b20 1 Other Other +9912b1a3-fb0d-43db-9ad0-d1da658dff7e 1 Other Other +991302e5-b29c-4632-bc89-b6b50542fa9f 1 Other Other +99136a25-bf2d-4f51-af43-fd5e599582a6 1 Other Other +991379d4-d4bd-4f92-830e-fd553f7b9196 1 Other Other +99137c85-fd97-47a8-b293-a605a346d4e3 1 Other Other +99139130-bc8d-4bd4-af54-e6531aab7f81 1 \N Other +99139f1d-afa2-4b18-b7e0-30e23fa1d975 1 Other Other +9913a28a-9969-436c-8bc6-f72f57361689 1 Other Other +9913cc9b-7f00-46cd-bac3-c54edff57f32 1 Other Other +9913cf38-fadd-43d2-851f-156d3c220613 1 Other Other +99143125-1aea-4272-a0d1-c4385005531f 1 Other Other +991463ee-26f2-4297-9355-708a74bab89d 1 James Other +99147991-c815-4428-aa7a-3cc08f13e13b 1 Other Other +9914d70a-b330-442a-a55d-e4bba84cfc5b 1 Other Other +9914e429-cd5c-4da4-a965-f1a4d2026285 1 Other Other +99150b40-74fb-4965-bc6f-3bc2b717a5f3 1 Other Other +99152270-eded-4b06-90f2-d2dc529c9e49 1 Other Other +99154aee-ad9d-40a5-8fc9-8403a45d1393 1 Other Other +9915a6b1-429d-4c74-af95-b9169fda956f 1 Other Other +9915a81d-45c9-4aae-bde0-952064913499 1 Other Other +9915a81f-61f8-40ae-b493-588a5a347f2c 1 James Other +9915b256-9c6f-4b76-930d-abd2e2feb253 1 Other Other +99160f0a-1c4a-4073-8976-b140e128d201 1 Other Other +99161403-773f-47ac-9da8-64777979678b 1 Other Other +99162219-bcbb-4063-baaa-6425feb596a3 1 James Other +991660a1-ceb4-45db-b00e-46007d769451 1 Other Other +9916cac4-571a-4905-b8c5-d8950c194486 1 Other Other +99172578-7f3f-4c32-802c-b0e06950e2d5 1 Other Other +991726f0-b98d-478f-94b5-dac99dd6ba54 1 Other Other +99173009-7ef5-4950-8390-633de9360071 1 Other Other +99174264-ae59-487a-92a6-4388bf52f013 1 Other Other +991798af-79d3-43b3-9ce3-78f763b6bc82 1 Other Other +9917ddc3-efd0-4fa2-a63a-e8fb743f6728 1 Other Other +991815c6-e253-4e40-bc81-a0a25b61bea3 1 Other Other +99182c49-04b1-48ee-b4cc-5e9e5ff897f2 1 Other Other +99185897-341f-4495-8dd5-9f1a34800f74 1 Other Other +991867af-7bd8-4e52-81e1-365308d93b29 1 Other Other +9918ca9f-3dd4-49f6-a9b4-10a9111cc0bc 1 Other Other +9918d4f2-5d73-44be-a1b6-d0abd2feade0 1 Other Other +99191fbf-f643-45e3-9e5c-a7e99cfb06fa 1 Other Other +99192099-522b-4479-9cd2-e6ee88f62fe7 1 Other Other +9919304c-5fe5-4139-8b5f-737742c5aab0 1 Other Other +991963b8-af09-4036-9c0e-78846b3a1127 1 Other Other +99198462-22df-4d25-b3ca-424aa4970793 1 Other Other +991a0c3c-5544-467d-9ce4-f9e3443a3553 1 Other Other +991a3076-b592-4ba0-87a1-df1e6c0cc6fb 1 Other Other +991aa20f-1602-4491-a3ae-8fee5f4bc99d 1 Other Other +991aa39d-9eb4-4d9c-8600-9b92f0671d1e 1 Other Other +991ac71f-49e4-431f-9764-e86f4bd0883d 1 Other Other +991b07bb-fdfa-4c8c-b283-e096a0d56409 1 Other Other +991b1dc8-c1ee-470d-8933-d702c2b7da81 1 Other Other +991b2595-fb80-444b-87ff-d0a113555e15 1 Other Other +991b890d-1301-4157-992f-b7620a39d97c 1 Other Other +991be35e-d8ec-11e7-a9da-fa163e8624cc 1274fc8c-64ed-11e7-ab3f-fa163e4dd901 Other Other +991be601-7749-4966-8dc9-a4b3228a9060 1 Other Other +991c36aa-54d6-4434-a272-d30bf99406a2 1 Other Other +991c3ff4-a02b-4234-9c31-3571d70234c9 1 James Other +991c6d18-682a-4c12-af23-196156ca34d4 1 Other Other +991cb29c-1573-4c09-853b-5887bb393a28 1 Other Other +991cb78a-5fa1-46ad-a9af-107075db0ca5 1 Other Other +991cd09e-c38a-49ab-b27b-fee0fb4ce15b 1 Other Other +991cdfb3-4bcc-4bda-b6c9-f731193e3c54 1 Other Other +991cf44c-70d6-4635-9ab5-75a02741f041 1 Other Other +991d85b7-4feb-432f-8dc3-3684e7fa6578 1 Other Other +991dd457-7d1b-41ae-8db2-674ff71dcf5a 1 Other Other +991dde14-014b-468d-af07-8aeff70ece78 1 Other Other +991df66d-a341-4d82-ae37-441a480ecaec 1 Other Other +991e0fab-6b7a-4c77-b3ee-dae8c2a549cb 1 Other Other +991e4788-5b94-4564-b5c7-10e8e6ad78c0 1 Other Other +991e4d01-03aa-474c-a555-bb3edf373538 1 Other Other +991e5f84-d307-4b3d-8150-8492a2e79fed 1 Other Other +991e7241-3f72-4551-94cb-0d98ffd036ce 1 Other Other +991e812c-554b-49a6-b98e-74929b346384 1 Other Other +991ebde2-acee-4ba7-a348-52d9d255167b 1 Other Other +991ed5cf-c556-45a4-92d5-5baee37b8626 1 Other Other +991ee3ad-8f1f-4ed9-a7cc-e44a7b441624 1 \N Other +991f2b15-cf32-4894-ba43-52a6606f1125 1 Other Other +991f4c3a-9328-4c90-b8dc-f7931a64b387 1 Other Other +991f697f-1694-4016-8581-14c278a09700 1 Other Other +991f9696-0f85-4580-88e1-67b125da6b19 1 Other Other +991f97f4-fdcc-464d-9467-ee3f74c1c34a 1 Other Other +99201a32-5a30-48aa-82e4-eade96c5cd16 1 Other Other +99202aaf-1793-49eb-8a66-ae0ef8a5cead 1 Other Other +99203696-9c1e-46fb-b49f-684acb546f42 1 Other Other +992055e9-621f-4952-a40b-6200a8932bee 1 Other Other +99205d62-7722-495a-a510-323356d75e01 1 Other Other +99205d6a-3298-4893-915c-4e2f273a0713 1 Other Other +992085fb-af22-4c8c-9bb6-99db6a897ced 1 Other Other +99208c67-e5a5-4b78-b02f-0bb3fe77566a 1 \N Other +9920d1cf-7c94-4a0a-8940-1cd2462a536d 1 Other Other +992115b8-8d5d-4372-b276-d3908075e8e8 1 Other Other +99212024-9d3d-4265-b641-076e03d9707c 1 Other Other +992120fe-6624-4004-8840-5923cd72410b 1 \N Other +992133af-f6a8-4bf2-9559-dcc21bf96b5c 1 Other Other +992157a8-4e08-4424-be53-12cb294ecc5b 1 Other Other +9921796d-93bd-4364-927b-c20303a3f213 1 Other Other +99218827-f3af-440b-85e2-082101822c83 1 Other Other +99219424-6227-4f5c-a629-41813de8bc41 1 Other Other +9921ba45-7418-4c48-8fbb-7fc291850921 1 Other Other +9921cd51-d8b7-44b7-ad23-ce8e066a2fa7 1 Other Other +9922272c-7234-4705-92ee-8c4a24ee1723 1 Other Other +99222d4e-c653-483f-914f-7ea68cdae720 1 Other Other +99229be2-211f-46cc-b764-b723fe530580 1 \N Other +9922ff1d-caa0-44da-9550-663be5b92df4 1 Other Other +9923151c-9d01-4b0b-a6a1-996fe80f5011 1 Other Other +99233b59-c40e-4f57-b7ec-f70a2fda643f 1 Other Other +99239df9-5f51-4057-8a21-4a0cf8b0da10 1 Other Other +9923a7de-d741-456f-ade2-9f98cb87c4f9 1 Other Other +9923abcd-c07e-4049-9361-2e5c4b2f003a 1 Other Other +9923b312-dcf7-4f8c-bf10-0986149d171c 1 Other Other +992438b1-e9ca-4006-b04f-5bfdecb594e2 1 Other Other +9924909e-0e5d-40f0-9274-b6fee3abc57a 1 Other Other +9924cb05-2c8f-43ad-ac0d-81a67b32c904 1 Other Other +99250007-fd41-4288-aae3-fedc0f8f91d1 1 Other Other +99250a0c-1cd7-419c-92a8-cff8e3f90dea 1 Other Other +99250f59-f346-495e-9467-dae44d5a37f0 1 Other Other +99254ccc-9d49-41ab-91e8-0788cdf2c537 1 Other Other +9925681f-4342-439d-b315-b2b869bb1cbe 1 Other Other +99258397-5d49-4162-806f-683493ee161c 1 Other Other +9925c9f9-46d1-4e7b-9ab2-3fe5a915b046 1 Other Other +9925e831-5110-4a34-af66-5de5aee05075 1 Other Other +99260ba9-a672-4853-8cfb-3ec1e3b1bbf3 1 Other Other +99261232-78ab-4634-bbf2-977dffd64234 1 \N Other +9926c721-5a94-4f48-a072-671e6c11bafc 1 Other Other +9926ec89-14d2-4191-838f-ade1433d91a8 1 Other Other +99271309-fc50-47bf-9636-f307494837ea 1 Other Other +992717e0-1760-4c01-baa1-e4121f761ed8 1 Other Other +9927374d-c142-487e-bcdf-5e7f145f321e 1 Other Other +9927c4ce-c25a-42bd-90ce-6ac9a150b096 1 Other Other +9927ece1-e9e2-489a-8927-c7b7425a551d 1 Other Other +99280c4c-d6b3-4f0b-871d-26ec24d982a2 1 Other Other +992812cb-9e33-4e8f-b63a-f802f0a96b72 1 Other Other +99289d73-b000-4ba5-971a-658c0aa023c8 1 Other Other +9928b823-8969-4eec-8e44-3ff9397b747e 1 Other Other +9928d97d-7559-4869-adb3-6d4d631afcc5 1 Other Other +99292002-0849-4199-b6bc-a8a6d209809f 1 Other Other +9929225a-90b3-4145-9711-bcf749cada61 1 Other Other +9929600f-ad7a-451b-9ffb-128d9ecef722 1 Other Other +99296ace-1f47-43a3-b19d-f40a70cec96a 1 Other Other +99297f5c-877b-4adf-84b7-09c4f264b3d2 1 Other Other +9929be87-07c7-45f4-bdbb-6959b34788c8 1 Other Other +992a381b-29ac-48b4-a106-11915a504f4a 1 Other Other +992a49c1-5384-477f-961f-c454913c37e6 1 Other Other +992a6ee6-721a-4517-bf2f-87bc11a6f81d 1 Other Other +992a8c27-a0d6-4b3b-be94-6077d31b76f4 1 Other Other +992b1cb0-5fc2-4711-aa48-fe3ad33fc5e6 1 Other Other +992b2bbd-a21d-4e64-8629-db26c8a0ebae 1 Other Other +992b2faa-91e2-4b7e-81ba-c2bbc8300d4f 1 Other Other +992beb35-bc93-4b6e-a2ed-65f23ebdf75b 1 Other Other +992c21d2-f4c6-402b-8bdf-bd6f3b5d0c02 1 Other Other +992c3728-64c8-42fc-8d66-3e3424f648e1 1 Other Other +992cf2be-b3a5-43d3-b837-360fafb17a42 1 Other Other +992d0e52-e96d-4804-a9c9-84e7ceec0fd8 1 Other Other +992d1f0f-bd70-48f8-9b30-fe0bbc91873d 1 Other Other +992d9264-e8a2-4530-a4ee-cab132519484 1 Other Other +992d9dc3-dc10-472f-8f58-0e54a1f49926 1 Other Other +992dd097-3632-4d18-8f8f-567fb991acd7 1 Other Other +992de0b2-c24a-4fe4-bce4-08c376d48e05 1 Other Other +992de6b5-3159-454a-90d7-7413a8dd5494 1 Other Other +992deec5-d951-42f9-897f-8fb8d4c29498 1 Other Other +992e41dc-9b2e-4d0f-a1b9-cbb08f36d555 1 Other Other +992e7b43-aab7-421c-97a4-f77f6140ac81 1 Other Other +992e829d-bcb8-4c55-ae01-81281a627165 1 Other Other +992e8860-bd83-4afd-95dd-537577c39639 1 Other Other +992eac20-7d84-4170-9cfd-a1b2adce9e82 1 Other Other +992f191f-baad-4cc2-a77a-4125fb79dd09 1 Other Other +992f2853-027a-42fc-94fd-351bd5ddb6fd 1 \N Other +992f3cf4-fe68-4957-bd53-f6d3b834aac3 1 Other Other +992f8777-3651-470c-873e-dadf212a4b7a 1 Other Other +993122f4-3871-4670-bf6a-b9968b5a1108 1 Other Other +99314570-2b13-48c0-a495-85353f817ae2 1 Other Other +99316e8d-176a-4920-908e-8dc1a267970d 1 Other Other +993182e4-e39f-4608-8ed6-ba7c566fb455 1 Other Other +9931be5d-106a-4657-99be-35c7f89a8d8c 1 Other Other +9931e460-ddec-4192-8b08-8c5d612dd1aa 1 Other Other +9931ecec-a8bf-4168-a80e-3f56dc786f22 1 Other Other +99320686-86c7-4124-9110-c3d3355802ab 1 Other Other +9932461a-ed51-4e32-baba-26f63b7c3038 1 Other Other +993248ce-88b8-4299-94ab-90ce07d5cb43 1 Other Other +99331803-b49f-4610-8f34-72a58c40023e 1 Other Other +993331bf-3c12-4351-a933-34f549411bea 1 Other Other +993340f3-4344-4a37-b95d-9497abc66fe9 1 Other Other +99335649-67ff-4709-ae37-7d6d969ca76d 1 Other Other +99338568-e778-463b-8a72-2101166ecc4d 1 Other Other +9933a849-b7c0-4043-92cb-220f9d7566be 1 Other Other +9933d888-0fd8-499d-81e3-2efde0521140 1 Other Other +993405f5-2c1c-46a7-b92d-70850cd4f554 1 Other Other +993418fb-5a0e-4660-81e7-1b2d4174ceea 1 Other Other +993420ac-1a3c-45bb-9153-65ea47de2663 1 Other Other +9934a425-894c-4fb4-9adb-679f63ecf348 1 Other Other +9934c8f4-0ba7-4462-ac89-df460f19657e 1 Other Other +9934e523-613e-425d-9827-4b5bbba62fdb 1 Other Other +9935042a-c22b-46a5-9f84-15375955036b 1 Other Other +9935126b-04b6-40d9-a0ea-f2e2c2032a85 1 Other Other +99357886-2eb2-46e4-916f-26b8d9dda69b 1 Other Other +99358c35-43e1-4e83-9f05-9d7014189b7a 1 Other Other +9935ef65-2645-4183-b50e-5538887ebbeb 1 Other Other +993617e1-80b2-4231-b236-248b2d502b80 1 Other Other +99367156-6325-4549-bce7-fcb700ef2663 1 Other Other +99367c84-d76b-4618-963d-8903b935d972 1 Other Other +9936b211-c22e-413e-8b57-e7cab08c6c05 1 Other Other +993714b2-158c-4e65-a386-747a632be638 1 Other Other +99378e6c-1e68-41b5-a098-7514065084fc 1 James Other +993809dd-3b0f-4916-9202-9763f1ffa46b 1 Other Other +99381673-2f0a-400f-86fb-f723302e778e 1 Other Other +99388fc7-e516-48ed-a3f0-334fbd2c0d8f 1 \N Other +9938cc69-82e6-4a33-9b2f-0b41f46c95cd 1 Other Other +99393207-60a5-4ce8-879b-b540aa4fda5d 1 Other Other +993951e2-9c72-46eb-9921-e36205305c05 1 Other Other +9939642e-f6bc-42e8-85d9-b1f2cceecc81 1 Other Other +9939c878-037a-4b6c-aa84-435507447089 1 Other Other +9939ecc0-ec48-4bf3-91d1-34732314caf9 1 Other Other +993a657d-4a4d-4734-a6fa-40a492794906 1 Other Other +993a6d2b-af2b-498b-bedf-d881eaf931e3 1 Other Other +993a72fd-e576-464b-8f8c-80a9291e56eb 1 Other Other +993a8b3b-0722-4c6e-8ee1-7e38a9804382 1 Other Other +993aa83d-0e1c-4bb9-a5a3-d22b685799ec 1 Other Other +993ac740-be00-4b60-8983-30cd5710ee47 1 Other Other +993ae796-24f5-4c21-b19d-a890a34d80ad 1 Other Other +993affb2-29e5-4a5a-afd6-c30e191c650d 1 Other Other +993bcd95-bd63-48ab-979d-a854d5ee7823 1 Other Other +993bd7e5-e6ae-4a61-9170-5142f651b116 1 Other Other +993be74c-e67e-4169-bbcf-ef992bcd72cc 1 Other Other +993c06ec-a262-49ba-8005-e87a9aa9bd12 1 Other Other +993c1bf0-8814-4ca0-97a6-74ab52060236 1 Other Other +993d493b-bba8-4121-ab08-6fd68c3f0920 1 Other Other +993dad09-59ce-4abf-b951-cbf330c2899a 1 Other Other +993dcfe4-da9c-41c8-b6cd-e2d3cdc5b17f 1 Other Other +993ddedd-b2e0-436a-b2be-d78e8b231291 1 Other Other +993e3263-2f75-43d2-bad2-9b8cba470edb 1 Other Other +993e40d3-0564-43b5-b0e0-7ebfd4f001e6 1 Other Other +993e4ca1-6607-4c6a-b430-66c23ac7f35b 1 Other Other +993e6f9d-906e-4592-9a39-875a2ea9bb8d 1 Other Other +993e9fcc-81e2-4a0f-9d5b-610641e69495 1 Other Other +993ef991-3a08-41b6-b8f5-4b1cbe809f68 1 Other Other +993f1e26-4f06-4d40-8e22-33261df9edd2 1 Other Other +993f2321-2175-4cb3-bf6b-39aa160683a2 1 Other Other +993f2642-46ae-40ed-ad03-9711ce1f8188 1 Other Other +993f2f91-b130-4ece-a366-966326423f66 1 Other Other +993f4e37-b5df-41f5-a25c-28b4370d6d27 1 Other Other +993f5fa0-b339-44d9-aacf-48ab782eb9aa 1 Other Other +993fd63f-0228-41dc-a8f3-59a79a8ca717 1 Other Other +993ff96a-07dc-4013-a8f6-13f893c9ccf6 1 Other Other +993ffe3d-304b-496f-a698-665e4b8b8a15 1 Other Other +9940a61f-3e30-4cd6-b3c2-8e42066b5ae9 1 Other Other +9941334d-7e40-44b9-b18c-3fd476da0d2a 1 Other Other +994183a0-76d5-4553-a923-fac3f416dbff 1 Other Other +99418b27-c1c9-4cc4-b44c-9baabf39717e 1 Other Other +9941aa87-d36a-4fbb-9d3f-29c314dc4be9 1 Other Other +9941b3b0-1239-4c64-ad28-9440808bb9db 1 Other Other +9941e10e-4ad5-40e9-a6d5-eba732a3d636 1 Other Other +9941eb35-7768-4dcd-aa6f-da36b974f9b4 1 Other Other +99421323-eb34-406e-870b-a766ad86f5c8 1 Other Other +9942592f-be83-4ce4-95b4-5156de5c4677 1 \N Other +99426a60-e95f-4255-ad7e-03a8958109cb 1 Other Other +9942716b-a974-4389-ab36-75c930c64b38 1 Other Other +9942a805-2288-41b1-8a43-1465837d31e8 1 Other Other +9942bfed-4118-4572-9300-102a6e2e6032 1 Other Other +99433ba7-4a83-4c2d-add4-f72d58141e43 1 \N Other +99434c8f-9b9c-440d-a5bb-ad2b7b5573a6 1 Other Other +994361cc-f4f0-4027-9e07-269cbd73e715 1 \N Other +9943ab0d-830a-43b6-b6f1-f0f81821fea5 1 Other Other +994439b2-1a43-43a1-9760-1566a69131e2 1 Other Other +99444e8b-e35d-4ce2-8d91-e7e58e662529 1 Other Other +994453f1-6727-4c22-b468-dacd0022ce4b 1 Other Other +9944ab4f-63b8-4a55-8491-6ac3b85e5628 1 Other Other +9944e9b2-d2e6-4523-b76c-8f961b4d7bf1 1 Other Other +9944f1ff-baac-45c6-b6a3-702f2847a707 1 Other Other +99451957-54fb-4085-8a7b-03a7ed7c7541 1 Other Other +994544ab-394e-4bb2-8703-0bf6e1b557c7 1 Other Other +9945532b-f50a-4c79-b88d-24e2250608e5 1 Other Other +994561f5-9b5a-4e39-aeb5-ea8319843cf2 1 Other Other +9945a5ed-47eb-496e-80fa-352dad93948f 1 Other Other +9945ab29-6a16-40e6-acae-4a161adad6ea 1 Other Other +9945d285-d9b7-426d-8cd5-a5b8468f6375 1 James Other +9945d49c-6adc-4cc9-b676-23bcd2163a14 1 Other Other +9945d70c-b0a7-439c-abdc-375d8c33781e 1 \N Other +994659c1-2d52-41e3-8d3e-5cffe028e735 1 Other Other +9946b138-45de-49e1-a7d1-4f81844099d7 1 Other Other +9946b17c-1f41-475a-a56c-ebbc16c4fdb5 1 Other Other +9946c1d0-73bf-4430-89b0-dd82ea1886bd 1 Other Other +99478627-136b-4909-bc28-12fbd2418043 1 Other Other +9947bf48-3772-468c-869e-ff62b5e0e420 1 Other Other +9947cf0c-92b9-48a4-8a50-9d55c0cc778e 1 Other Other +9947f9f5-2031-425f-84c6-ccd856c18172 1 Other Other +99481506-debc-4955-9860-5066608863c5 1 Other Other +9948346e-0997-460a-bd08-6536683bd2b9 1 Other Other +994841d7-476d-4466-b120-20eb6ab2385d 1 Other Other +994849fc-8605-458a-901b-a535371fd719 1 Other Other +99486cb0-21ad-4b45-9c0f-0d48310b297a 1 Other Other +994880fd-0775-46ad-bea2-2e5ebc5ef3da 1 Other Other +9948b507-8b3a-4342-a83b-71af58f22de4 1 Other Other +994916bc-6476-4a18-bfd5-c57fbfd3c09c 1 \N Other +994935e3-6933-4d88-907f-4feb14d5aef6 1 Other Other +994978e4-f22d-4379-a5df-348c041d743c 1 Other Other +9949a1e5-79cd-4a06-9163-7a6e67bc9d6f 1 Other Other +9949c115-a119-4645-b403-44a129b1bf17 1 Other Other +9949f635-f46b-4d92-81c7-289fada730a8 1 Other Other +9949f775-33fe-4b63-b7ad-0549c0da64f1 1 Other Other +994a07b7-fad4-444d-937e-5bb2e2cbc6c0 1 Other Other +994a1022-ab7f-4944-8225-956dcc8c58a1 1 Other Other +994a1386-93bc-4588-85c0-40f0503f7461 1 Other Other +994a18c8-15c0-46fd-88f6-c5b24bb96f16 1 Other Other +994a590d-51cf-41eb-9a6f-ac7961cae9b2 1 Other Other +994a6ced-e617-4db8-b331-15f0b57fd8a4 1 Other Other +994aeda1-34c3-4ec5-8709-2933655078a1 1 Other Other +994af496-eefd-4052-a200-6f33cb42b8a3 1 Other Other +994afa79-3abb-462e-88fd-7af70cf9ab9b 1 Other Other +994b1c9b-8882-4156-8f0f-a4b9126cee8b 1 Other Other +994b4347-cfc7-4555-9192-63b0694ab3c2 1 Other Other +994b6452-c3f4-4bdb-8167-2d157f7ff184 1 Other Other +994ba330-042b-4c5b-a848-4a0d910f9075 1 Other Other +994c23ed-dc7e-4e19-a505-9328cf56e1b1 1 James Other +994c28c7-630c-40d4-bb86-dc10b904a736 1 Other Other +994c6a83-c5d9-4e2c-82d1-db7eaaa21f5a 1 Other Other +994c6e6d-be30-4140-8929-83c44041f69c 1 Other Other +994cc1fd-67c3-45e3-bf61-6c7b953a5d84 1 Other Other +994d862a-f630-47fc-ac61-31ae2ff67d5b 1 Other Other +994da837-0c81-47d3-8f24-3cc3d4d400b0 1 Other Other +994db440-e80c-4b2d-8717-3cc51ca1c669 1 Other Other +994e1ed5-766d-44e9-b4f1-45b4ee935206 1 James Other +994e6bfc-0d6d-4852-b999-aa52c2686099 1 Other Other +994e947b-1171-4a61-8f5c-5f3eb7211dd4 1 Other Other +994ec7be-c538-45fd-83fa-16b42d3d9822 1 Other Other +994ee5c4-751d-4567-bb3c-67093ac2a3df 1 Other Other +994f04d7-5d08-47b5-aa7c-3f3c7b6a131a 1 Other Other +994f5aaa-44b2-45ae-a0ef-0a3155e124ad 1 Other Other +994f7e09-daeb-40a0-9237-eeaca663d57a 1 Other Other +994f88fe-5d53-44d7-9da5-2385269ce789 1 Other Other +99500585-a4fe-4fc6-bb8d-3641f18ee1f4 1 Other Other +995029b4-a8bd-483e-96ed-24ffc6e9379f 1 Other Other +99507f8e-2565-4bb1-b283-158e3d0c468c 1 Other Other +9950dbb6-e07a-4fc6-a637-cd3966832791 1 Other Other +99514a5e-050a-423f-9b39-08bef56cc99f 1 \N Other +9951662a-62e9-4885-a099-b0d9dd704273 1 Other Other +9951a6a7-e949-4bd6-bd6a-5ca137771da2 1 Other Other +9951b9a6-d37d-4d87-9628-7b7b37c183f9 1 Other Other +9951ba0e-5731-48a3-ac89-6953820c3681 1 \N Other +9951dc46-096e-4b9d-b90b-4382a946639c 1 Other Other +9951eb8b-61d8-4916-a8a1-81857ef363f9 1 Other Other +9952522a-6ba6-42ac-b5dd-463435b63545 1 Other Other +9952aa08-56a3-4967-89b4-691a6c37a6ce 1 Other Other +9952ccd1-a6e9-4caa-be74-06d2904f0722 1 Other Other +9952dbc3-614a-41aa-bd5b-4356cce2a509 1 Other Other +99535dd8-e320-4167-b8ab-894934f6c995 1 Other Other +9953aebb-c921-4258-9416-4cb4f5c6ff69 1 Other Other +9953d7ba-a2e2-4ec1-8b65-943a9e737d89 1 Other Other +995458e8-9bd9-4e7c-b316-cb20b1a37723 1 Other Other +995478d7-1416-480c-84c5-b482f6ecf5b9 1 Other Other +99547d19-aaca-4659-9aa6-e8cf4aae8fba 1 Other Other +9954a6d0-b1b2-4975-b2f1-71b03f0b6f7a 1 \N Other +9954adc1-6b49-4349-81f8-f70929f9aedd 1 Other Other +9954b0a8-8dbb-4ed4-8745-c6ce41697ba7 1 Other Other +9954ca66-b195-41c4-a666-5717ee87c478 1 Other Other +9954d663-aefe-4700-91e1-e0c8a0663c15 1 Other Other +99551093-090f-4bcf-92fe-622df018ddf8 1 Other Other +99554866-4d14-468a-ad34-83392e789d6f 1 \N Other +99556dbe-55ef-4677-9251-447c77087628 1 Other Other +99558b7f-0646-464b-a9f9-1dedc6efac7f 1 Other Other +9955e92a-0af7-479d-a5f4-67d413a7a4ae 1 Other Other +995637dd-30e7-40d4-aba3-bbf0384538e2 1 Other Other +9956e35f-5c93-4b9c-a77f-943d79eb9560 1 Other Other +99574524-6870-49b4-b80a-ec17a3cd1110 1 Other Other +995768b7-f456-4e95-a974-20bfeaf954eb 1 Other Other +9957ca7f-8a01-45eb-ade8-cb6f3b24c50a 1 Other Other +9958225e-b6c5-4ff4-a82a-2619e3f55693 1 Other Other +99582a3d-3e62-4b5a-9f0c-ba2f4e96d936 1 Other Other +99585dad-f0d8-47d0-9e3f-aac5a6ab9f46 1 Other Other +995881c2-2b4c-473d-acf7-9cbe9f0d1877 1 Other Other +9958a5a2-8867-4b7f-861d-14024c695baf 1 Other Other +9958d4dd-537c-4320-8da4-fd3d7b1ffe91 1 Other Other +99590350-0c06-4646-a026-93210fb81a7e 1 Other Other +99593c33-f3a9-47ec-819d-119c1b6f78fc 1 Other Other +99597824-90a5-4527-9bd9-ec8da40425ff 1 Other Other +9959b418-cc24-4ec3-80f5-e225d0d2f50f 1 Other Other +9959f780-720e-428d-afb6-0491d664c334 1 Other Other +9959fbc1-01a2-4ec5-af23-cd227f0cc8a9 1 Other Other +995a1258-3b74-4114-a086-6fe6b8da654e 1 Other Other +995a1765-2b63-4365-ad74-1be82ae8098c 1 Other Other +995a3569-9091-4213-9473-1b7554b12b20 1 Other Other +995a4dc1-a6ce-4a67-948c-888c3a656857 1 Other Other +995a57ad-de0a-4483-a1d7-21051f7bbf5e 1 Other Other +995a8fbf-945c-4945-9efb-11e7105b80af 1 Other Other +995aa539-a54b-44cb-b2ac-3470dbadbe43 1 Other Other +995acc39-9297-468f-a9e8-793acf93103f 1 Other Other +995acfec-bec2-49d6-99c3-1d904e04db04 1 Other Other +995ae037-45d2-4e4a-9aba-1b0b96460c32 1 Other Other +995b0b78-7b82-4ed4-85fe-d8bd36f3e2c2 1 Other Other +995bdaa2-3f98-4ee6-a93c-69877f9223ea 1 Other Other +995be1fb-4869-4a6d-b850-f7ef28d0ee3e 1 Other Other +995c05b0-7a6b-42ee-9274-1e5cce84e481 1 Other Other +995c0814-a436-4020-bc0f-d735fb24d495 1 Other Other +995c8f93-7b82-45e8-aee9-b3d70cc179af 1 Other Other +995cbf99-a5cc-4207-aafb-3c0d5e980069 1 Other Other +995cced1-81dd-4dad-b8f1-c5db8397f345 1 Other Other +995ce7f3-77f0-4e9c-b755-f68be1ee91ec 1 Other Other +995d4b33-8bd2-4211-995b-6fd55d2c0367 1 Other Other +995d5464-b1de-4871-8586-26ff9cf2b1cc 1 Other Other +995d54fb-514e-478e-8494-b0a660e4f1c8 1 Other Other +995def0b-b013-4dd8-b9b3-779ed88f4659 1 Other Other +995e4641-10c5-4b81-bc95-93d95adfdc5c 1 Other Other +995e6f79-65cc-4192-942e-c6330f43f0a1 1 Other Other +995e9456-5ace-428e-ba24-f25527a3226a 1 Other Other +995ec69f-ede7-4c4b-b1c4-a8365b5b5d42 1 Other Other +995f079f-7d87-43a0-b15c-f11489c09712 1 James Other +995f1885-525e-47b3-8208-e8751d9f67a5 1 \N Other +995f259c-6b30-4822-a5c4-429a648756b7 1 Other Other +995f30c2-7ee2-411c-92eb-eab8bd3830df 1 Other Other +995f6ada-8cd9-41cb-85a1-c9061c5c30ba 1 Other Other +995f7baa-b3eb-4b61-a1e1-c108a959cc1b 1 Other Other +995f8193-8382-40b1-be34-d90e11761057 1 Other Other +995f8fb8-90f9-4fbf-882f-fea9b7d45395 1 \N Other +995fe7ee-6c11-46c3-8a10-d1fa513ac794 1 Other Other +995fff59-afc9-440b-a5e3-d5d1b63783b9 1 Other Other +99603f2b-7cfb-41f6-b79f-5504c0e88d39 1 Other Other +9960af5f-dcd0-413a-95ae-4b72016f298d 1 Other Other +9960b820-23f6-4b07-b41c-d830158e31fc 1 Other Other +9960d1a7-79e5-44ff-b0f9-fc4fb41bad20 1 Other Other +99615ed4-159e-45e0-928f-4fce440df240 1 Other Other +99616e95-31b3-44a9-9891-c4373a90ae3d 1 Other Other +99617183-4c89-453a-a6cc-e129622ec422 1 Other Other +9961b209-3cdb-4060-a8e6-44530a68a001 1 Other Other +9961d6ca-a2ce-4030-ab11-3f0e5b85398e 1 Other Other +9962417b-9000-47ed-a5d7-59a231037ac4 1 \N Other +99628947-00f7-4ba0-9592-2171b64ccb68 1 Other Other +99628d7d-7367-497f-add8-867824f64200 1 Other Other +99629aa1-cd8d-45e3-bdcc-7d3cc3e5dcc0 1 Other Other +9962dacc-9826-49a0-8251-8764fcf60344 1 Other Other +9963443e-dba9-4c8e-a709-69a3a43e1cec 1 Other Other +99637cb4-8131-4f07-9267-e0e96879f534 1 Other Other +9963ca9b-0918-460f-8843-141a3d47f87b 1 Other Other +9963d616-5f78-43ec-a40f-6e4e8bfe85ef 1 Other Other +996419de-e344-4d13-8c5b-f0c0a5d8d13f 1 Other Other +996467dc-9f63-4db4-ae4a-bdb8d780c32e 1 Other Other +99646c9e-ccfd-4337-b5ce-75185ef5c66e 1 Other Other +996490e0-f60e-419a-a8ae-f6385973149d 1 Other Other +9964ab94-f8d1-4915-b86d-a5206a106cff 1 Other Other +9964f1e7-5e35-45df-84cf-2c44b629c6a3 1 Other Other +9965347e-f0bf-4af2-a31d-f628f352741a 1 Other Other +99657885-47e4-4379-b836-195bd9eebb9b 1 Other Other +99658834-8b9d-493e-8ec0-c7d8ee91ca02 1 Other Other +9965af52-c337-4aaa-a8aa-40845a5b64c0 1 Other Other +9965e873-e04e-4f9d-923b-faf5eb001a00 1 Other Other +996673f6-320e-40a1-8574-66f00fd11413 1 Other Other +99668e91-d9a6-4952-8d81-1a3ebc4e4fe7 1 Other Other +9966fa3e-a21c-4564-b30e-62f60c610f98 1 Other Other +99672944-9235-4218-92ce-23a536ff9bcc 1 \N Other +996767d7-49c6-4c96-8428-51bddc6194f8 1 Other Other +99676cb3-26bf-41a1-a16a-0168efe924c4 1 Other Other +9967b922-da38-457a-b19f-8389a5596d4f 1 Other Other +9967bd7f-bac2-4f17-abbf-4109d5a1f8f2 1 Other Other +99684036-fe60-43a8-acad-c1b958199d16 1 Other Other +99686970-a42a-4755-ae41-299d46fe0406 1 Other Other +9968858e-aa6c-4367-a57b-3a7b091e9551 1 Other Other +9968e43b-c0e0-40c0-9d71-78dd6af6d93c 1 Other Other +99694780-4910-49c2-9744-8a02e6c36dd7 1 Other Other +99695cb7-92ea-4d6f-88ac-3403313d9286 1 Other Other +99696713-15b2-4b43-82bb-0734d1383574 1 Other Other +9969a068-c292-4391-81aa-af116906a69a 1 Other Other +9969af45-fd48-4643-b347-7bbf88fdc995 1 Other Other +9969f143-0a26-4c73-9600-5fe6e3e81317 1 Other Other +996a0052-39e0-4fc1-83c0-31695f9f21d4 1 Other Other +996a01fe-2356-474d-9e1f-fa220b592ed0 1 Other Other +996a0a36-a42c-4a1b-b3aa-4664d1bbf4ac 1 Other Other +996a3080-eaf0-4f21-97a4-08ebc18b45b9 1 Other Other +996a4eb1-61b3-4761-a1da-16b3849e0e2b 1 Other Other +996a84d5-7d6c-4e97-9d5b-653dc05dd555 1 Other Other +996a8903-5fa8-4f04-84b6-1bcc4894bcb8 1 Other Other +996b028b-c518-473b-ae3b-9f6b83202b66 1 Other Other +996b206d-bcda-49b7-80f9-6a400e5c0013 1 Other Other +996b85d9-7000-4a90-a4f4-3dcca633c201 1 Other Other +996ba4e3-8aa0-495b-a79e-40aab917b310 1 Other Other +996bbc99-c90c-4d50-8f11-c55470e48457 1 Other Other +996bd691-7f6e-4e79-9e69-a3e1bbee3c47 1 Other Other +996c2bdb-afca-4282-9ead-c70ea7721e67 1 Other Other +996c3d17-9278-47cc-b97b-d07e43fdcd68 1 Other Other +996c530f-4787-409d-af28-c0e9e84f3f58 1 Other Other +996c6b0f-0041-4cca-8b03-a300a05a48bf 1 Other Other +996c90f7-7940-4434-b011-5fb2923b6d73 1 Other Other +996ca3ad-9f4a-4151-aff0-8b6b5cc4f0b6 1 Other Other +996cf355-3a9d-4d48-b962-24505507475c 1 Other Other +996d5ed9-bc9d-4bf0-bcf1-217e4b5874ad 1 Other Other +996da3cb-9c6d-4018-9842-6fa324e57221 1 Other Other +996da6b4-1dd2-449f-b239-16038550695d 1 Other Other +996dca76-0f26-4556-8c58-8b78132a6be2 1 Other Other +996dd890-5504-4d90-b9b5-600393309024 1 Other Other +996e18d8-c4cc-4b5e-a73c-765a350ae54f 1 Other Other +996e23cb-30da-47f2-b5af-c5cfe93425a8 1 Other Other +996e5ec2-a647-4bd9-a0f3-81c6b616fca6 1 Other Other +996e7ca2-6668-4507-99fc-83615e738b64 1 Other Other +996ea61b-e46a-4d25-a94c-9abf63c681e6 1 Other Other +996ecd32-010f-4bff-946c-eb39e78a0580 1 Other Other +996ecdda-d74b-4166-97e5-75032a616022 1 Other Other +996f28c6-6291-428f-bc87-f6f13e894479 1 Other Other +996f382f-43e1-4bb2-8022-0b9b3d041c1a 1 Other Other +996f4291-9824-4bac-b171-b3e74b9bd03e 1 Other Other +996f8709-ada5-4177-aea8-09061f44143e 1 Other Other +996fd5fb-cd8b-4500-957b-6df69e868112 1 Other Other +996fef41-071a-45c0-a973-20bb3061c926 1 \N Other +99702c5f-d652-488c-aa22-b67a13edf31e 1 Other Other +99703620-ebcf-463d-9f98-0065d6f1931b 1 James Other +99707a76-532b-4b53-ad33-1551ecc06dbc 1 Other Other +9970b04e-bfbb-476d-9e43-dc6416911029 1 Other Other +9970d446-0b53-4a89-a4eb-6d89e4e557a5 1 Other Other +9970dd15-a510-4b9d-a886-66a9787d218e 1 Other Other +9970e16d-56a0-478d-8c6b-2aa39a8afae3 1 Other Other +99710a0c-f250-4cf3-8790-3bef9e9f504b 1 Other Other +99712c64-1ad2-4078-af10-e9db8c2f3d13 1 Other Other +99718b28-01c6-4daf-ab70-d4260b96750a 1 Other Other +9971a528-11c2-4776-a6dc-6c8e8bb35e40 1 Other Other +9971b5f7-228f-4ceb-a26e-e77d2065b740 1 Other Other +9971ef13-7086-4c11-bcc3-7def8ebd1b78 1 Other Other +997210af-b064-4d7f-ab49-989b8d994a4a 1 Other Other +997220ea-379e-41dc-84dd-d016d660dfeb 1 \N Other +997228d7-de1f-4bd9-b907-9931e602143d 1 Other Other +99724203-81a7-44b8-a2d1-5cc130c9e401 1 Other Other +99727be3-ebc6-4024-90de-577060dfc069 1 Other Other +99728115-4048-4ab1-a0bc-c00236c4d6ea 1 Other Other +9972ad97-1fae-47e2-a86e-b5a7475ed4c9 1 Other Other +9972afbb-8d68-492f-a0e4-62469b69b89e 1 Other Other +99730e0d-1c1c-49cd-bc37-c375601f7bcc 1 Other Other +997359fd-d17a-402c-b84b-e0be8a227ed3 1 Other Other +997369e6-aa1e-482e-a4e1-b2a366e3214e 1 Other Other +99738e55-8bb1-45dc-8942-35f3cd610119 1 \N Other +9973f06b-565e-4d1d-85e8-b694d311b75a 1 Other Other +99742c7d-e874-41ab-b6b1-84a5640a716f 1 Other Other +99747313-3bbd-4c75-884c-5170f17850d7 1 Other Other +9974b893-b39b-450c-bc58-a6d5adece16f 1 Other Other +9974dd3c-44ed-432b-8056-2ad00ae83576 1 Other Other +997544c4-3dea-4639-8f7a-61a31144e0c3 1 Other Other +9975b197-cf4f-417f-ac1e-3718c650b112 1 Other Other +9975e822-66b5-4a54-94c1-c75c84635707 1 Other Other +9975fdc2-d891-4eec-8313-654bc301b0e9 1 \N Other +99762063-e81a-4c26-bd82-83ed7b0cdc72 1 Other Other +99762fa1-09ef-453d-985f-3950a0f3d164 1 Other Other +99764522-0a0f-4f45-8e43-192a3db91123 1 Other Other +997692fa-3fe3-40b9-a683-b378dbf13e23 1 Other Other +9976ba38-2d5a-4c10-ad7f-365a70b417b6 1 Other Other +9976f411-6c8e-40f1-849a-f24a5d68e9fa 1 Other Other +9976f63b-635b-4ec8-96ba-32f93529094f 1 Other Other +99772367-dc4b-4de9-9611-92c93009b59c 1 Other Other +99772702-0bc0-43b9-bb31-b85474f2422e 1 Other Other +9977822b-1cc5-4fb8-bbf9-a541e8723b17 1 Other Other +9977ad18-4b41-4f8f-b23f-3acb15836060 1 Other Other +9977b782-ec39-40d8-b2fe-33f7b85da1bf 1 Other Other +9977b983-47c8-45ae-8e8b-2f01d698aaf3 1 Other Other +9977c93b-2175-49ec-a96d-87939dcc330e 1 James Other +9977d582-76cc-4610-83fb-cfb0dba389ba 1 Other Other +9977f991-e629-4444-8d22-ec8782c22bb5 1 Other Other +9977fd86-644f-47e2-bb80-2c38dd363263 1 Other Other +9978539a-1c56-493e-ba72-59eed48a18fa 1 Other Other +99787674-fd1d-4c2e-b5ee-1cd8c4f38bde 1 Other Other +99789d77-118a-4dac-8a41-5ea4a140f2a7 1 Other Other +9978f53e-66cc-4013-b42c-90485921dedb 1 Other Other +997975d2-3f2f-4b4a-a2c3-374f1c0d77fe 1 Other Other +9979d8eb-ade8-4da0-bbc7-009b111553f4 1 Other Other +9979fc5c-649a-48dc-b46a-a87f25c9a4ef 1 Other Other +997a45a7-79db-4e65-aba0-8f7b294545cd 1 Other Other +997a5b51-c7c3-4177-bf7c-1ebacb33d8ba 1 Other Other +997a919f-ba73-4d9b-8dca-63df4549efcf 1 Other Other +997aa6b3-a963-4128-8784-5791d64066e5 1 Other Other +997aca17-a164-45e1-b7ff-bc74cd795bb1 1 Other Other +997ae6bd-1f27-440d-bb74-736d48473ee0 1 Other Other +997b014b-90b2-4b27-ba99-a00ad953949c 1 Other Other +997b6ea8-9da5-48ac-a8d6-414a9ca3d3fe 1 Other Other +997b84c2-4a9f-48ca-8aaf-ab624d609e0b 1 Other Other +997b9ed1-2727-4450-a8f6-558218a0fdac 1 Other Other +997bb9d7-5676-4667-a6b9-96913dd8ede0 1 Other Other +997bd02b-6d6d-486c-87e1-5e80b18a559a 1 Other Other +997bd94a-e327-43a5-b203-09031aee840a 1 Other Other +997bfc4e-2007-47dc-bd26-5158a5d5f51e 1 James Other +997c2df6-ed7e-469c-8540-8e964e03cebb 1 Other Other +997cbc13-c0c0-411b-ae6f-d88b72288e98 1 Other Other +997cc686-2f98-42d6-819d-fe67c67fbbea 1 Other Other +997cd490-4994-4139-ba1e-2425d43d384a 1 Other Other +997ce763-a2e9-4169-a7e0-8a404f9b0157 1 Other Other +997cf8a4-5fe3-4583-bb1a-9b3badb279e2 1 \N Other +997d1417-b85f-45ea-92d5-77ad0bdb440d 1 Other Other +997d744a-9272-40c2-b8fc-83af695037da 1 Other Other +997d78a6-8f19-43e6-b372-9b541290415a 1 Other Other +997d7b15-eb72-4352-90f6-7d4a4b0d574e 1 Other Other +997da1a5-e061-45fa-9b22-017b1b06c58c 1 Other Other +997db398-7bc3-4267-9330-8850ed188a30 1 Other Other +997dbb2d-d122-40cc-9314-3513c2ddd1e4 1 Other Other +997dd10b-d315-4587-b372-434916456731 1 Other Other +997dd36d-19f6-4552-9f4c-f93ebe2929e7 1 Other Other +997df9e0-e0bf-4187-95fb-ef8f650bc51c 1 Other Other +997dfbc5-5b96-492d-900a-539d82247f7c 1 Other Other +997e57f1-126c-49df-806d-e96b77433734 1 Other Other +997e67e2-4530-448d-90bb-e97010b5dff8 1 Other Other +997e7ed0-c94f-4772-88ea-328cebf90a53 1 Other Other +997e8b0d-3f8e-485d-ae9f-5cf2751e74eb 1 Other Other +997e98fa-5e3b-4270-aa4e-f50705b9de11 1 Other Other +997ee521-722b-47fe-8cc3-dd23cad2ea84 1 Other Other +997ee904-1cc0-4014-83aa-0157dfdc8425 1 Other Other +997eefe4-3d67-4ca7-91ec-699cc051d612 1 Other Other +997f18f6-6234-426d-a176-ea8e656b2fee 1 Other Other +997f1c27-c263-40d0-b340-d9100686c57c 1 Other Other +997f9649-a781-4d8f-a2a1-e422c7b49d09 1 Other Other +997f9e2f-e366-4d01-9499-e829538fdae6 1 Other Other +99800dea-0036-11e8-86b7-fa163e8624cc 1 Other Other +998037f0-08f5-4156-a9a4-8a7c9185852f 1 Other Other +9980381f-4462-44aa-a1a0-9ae94e0c8e23 1 Other Other +998050e7-9d04-421d-bf79-3fea25683a61 1 Other Other +99806f16-8802-487c-9b66-ab229ad5bd99 1 Other Other +99807add-0b0a-46ae-9ee6-4f3df08cab71 1 Other Other +99809044-3080-45ee-9426-f909b3d239e0 1 Other Other +99810bd3-411d-4dee-8f31-d66e68e8b4c1 1 Other Other +99811745-c5ea-4888-b856-2193929cd917 1 Other Other +998117f7-5aa2-4ca3-b162-bb55621cacbc 1 Other Other +99814427-ab18-445a-90de-e5b889a08436 1 Other Other +99815d2c-1ab5-4b31-a97c-0108d6a9b1d3 1 Other Other +99817ce1-98de-4ffc-9fd1-ae5603a9ba9d 1 Other Other +99818148-1070-498c-ab75-e90c488fd1b3 1 Other Other +99824531-8014-4597-8565-90aa3011f77e 1 Other Other +9982807f-0c26-4e3c-9a5d-aeff65dffa9a 1 Other Other +998295ed-a622-44ac-bd5d-241020d1cc73 1 Other Other +9982d84f-94f2-461c-b307-986c4f13b288 1 Other Other +9982db09-b44b-409e-a015-8e37e15fe9ea 1 Other Other +998304cf-4138-41cf-9907-7d68705887f2 1 Other Other +998340c7-02fd-4560-af82-e6bf5b7c60e2 1 Other Other +99839156-f3bc-4865-9e29-a96623b09c93 1 Other Other +9983979a-79ea-4e64-9707-1d5033530fe3 1 Other Other +9983b6bd-9809-4c68-a8e8-ba91b81b5c6b 1 Other Other +9983cc8e-5f9e-4e87-a0bd-632dcf2912b0 1 Other Other +998438f1-158e-436a-91d2-6931e3e4c3dd 1 Other Other +99843c58-244b-4c56-a463-501728c8564f 1 Other Other +99844ea0-31d8-46b8-87c7-5b654cb4adc9 1 Other Other +998476fe-995f-4781-9c25-099219b5c301 1 Other Other +9985034c-f8f7-4546-b5a4-7c40da6ef6b4 1 Other Other +99852ed0-f03c-461c-a4d9-ed109281f90b 1 Other Other +998570b8-5d5a-4298-b2a5-31238dc97b52 1 \N Other +99859f58-f7a0-4a62-a825-a388797da286 1 Other Other +99862aea-61de-4187-aac6-715f571de3c8 1 Other Other +9986724f-7580-4e4f-9521-d610923ee65b 1 Other Other +99870a62-bdf3-48ee-9a16-ec427f48754d 1 Other Other +99872489-0fe9-4299-8473-d89081f88e8f 1 Other Other +99872910-d4bf-44d9-9611-c1638126ebcf 1 Other Other +9987441c-7dfb-4c4f-adc5-6f34a3829b79 1 Other Other +9987533a-9243-458d-9271-8297efceb8f2 1 Other Other +99879088-c890-4aac-b2fd-52296a9dcec0 1 Other Other +9987bee4-aa64-4f66-a11a-3560a118487f 1 Other Other +9987c266-0725-4d9c-9dd6-5ec6fead3a7f 1 Other Other +9987c7a1-f572-4191-b7da-1eb1578f71ad 1 Other Other +99881e36-1f7b-44bd-8088-0f5756bac740 1 Other Other +998832a5-11b8-42e3-b14a-81a1cb385f93 1 Other Other +9988a813-1a06-4253-bdc5-d24f99e64ab5 1 \N Other +9988f895-ebfc-4acb-a4ec-3aa5ca3080b7 1 Other Other +9989272a-7502-42cf-b4cb-b8c5580ae5f3 1 Other Other +998928e1-ae01-45e2-84a2-e4faace5a898 1 Other Other +99893db7-be58-4b2f-8422-58e2a46e8a9b 1 Other Other +9989e050-0af6-405d-a57e-b913b33a1f2f 1 Other Other +9989f4e5-5d0c-476c-9d85-228b1501699f 1 Other Other +998a9057-47b9-4d95-b142-827ba805624a 1 Other Other +998acbfc-bf37-440c-a698-05902059fe00 1 Other Other +998b7a32-8d9c-42d1-b768-8816d4d2c4d3 1 Other Other +998b8799-accb-4c8d-a46d-30d5be41574f 1 Other Other +998bb410-1794-47b9-b1f0-0c45ca398930 1 Other Other +998bb616-5700-407d-ae27-1c679387da36 1 Other Other +998beb4e-be2d-4ccd-96b1-7f51b23684e4 1 Other Other +998bec09-9597-4bc5-8bd8-b96c1de325da 1 Other Other +998c2100-942e-4799-8faa-f77df8470900 1 James Other +998c629e-2109-44a5-90f5-e6a7c926c5a9 1 Other Other +998c65f9-9b27-46dd-9e17-a937392dc34d 1 \N Other +998cd3ba-789b-40dc-b992-933857862a78 1 Other Other +998cd6d2-63da-4902-9acd-afca40c7985b 1 Other Other +998d2b54-1bd6-4eca-87c7-ae9497d0ef38 1 Other Other +998d777c-d6ae-42ca-9516-981a4dda6f5c 1 Other Other +998d8465-b027-413a-b6fe-e85722323720 1 Other Other +998d966f-ade2-42c3-aeab-f271feef96ec 1 Other Other +998e15b0-d933-4fb9-999b-a10cc85d5c91 1 Other Other +998e7502-3135-47ec-8051-8440b0b311db 1 Other Other +998ebfef-2dcb-4d55-8245-bceea1fdcd17 1 Other Other +998ef1c1-7dd2-46b7-86a4-4ef2e6d96fba 1 Other Other +998efdcc-ec73-4504-ae22-2320beaf99a9 1 Other Other +998f8e62-8f32-41ab-bff7-b4194e39127e 1 Other Other +998fc417-5eaa-4fc3-bc4a-78b066caff10 1 Other Other +999015b6-d553-4eb8-8646-bf3f88e2575d 1 Other Other +99910ad2-8b39-4d6f-bbf8-522fa1ce7842 1 Other Other +99911064-28ab-4d62-8ed3-846f6a3191ed 1 Other Other +99911319-edbc-4fa2-a45f-c27b54377f61 1 Other Other +999134c9-77d8-4bac-b674-9b21840bb298 1 Other Other +9991640b-6f4e-43eb-a9d8-1c9ebc840461 1 Other Other +99917429-b6ed-42e5-a9d2-f2a2d22605aa 1 Other Other +9991773a-6dd5-44fb-870c-f505c0eff6f2 1 Other Other +99919741-68e3-47e9-b702-486e48386dc6 1 Other Other +9991b29f-dd62-4311-ab3d-c430cceb6902 1 Other Other +9991b308-bbdc-4dc4-bf63-f101fb47dd60 1 Other Other +9991bb4d-1a92-4620-a070-0ffc1e7072d9 1 Other Other +9991d22b-e0cc-4e14-b5ed-d6ad3b38338a 1 Other Other +9991eb0d-1fec-4e18-b2b9-3c40c81557a7 1 Other Other +99921d4b-dd05-4452-9681-2cf465ca2d3b 1 Other Other +99923649-fe5a-44cf-aa2e-77e561d7b740 1 Other Other +999248c7-b7e5-4013-bd3e-1644b77cd5f7 1 Other Other +9992864f-87fc-4dff-ae53-11f952fc38da 1 Other Other +9992ac0a-7af4-4e2f-b1c1-3843f201d064 1 Other Other +9992b3b1-965b-496f-819a-d661d5b2c3ff 1 Other Other +9992f286-d357-4de7-9a5b-ecf73bb55d30 1 Other Other +99931577-97ec-4bd6-90b9-6b45f145a525 1 Other Other +9993a742-1c14-4512-af80-b376504fd8ab 1 Other Other +9993d905-22ee-4d73-b33e-60403ddc59de 1 Other Other +99941ce9-41e1-4f62-9dc2-f7f04626376b 1 Other Other +99942568-b308-4414-9323-ceef9f4ee59a 1 Other Other +99943a93-a34e-420d-b54b-f149c4287bbb 1 \N Other +9994417f-5428-4b06-b6db-007316db023c 1 Other Other +999465f1-b8a9-4ed2-8361-fcc022c25d96 1 Other Other +99946f77-0f0e-41e8-bf63-e6cc4f9b68d3 1 Other Other +9994dfda-31ad-41fe-95f8-517eabbc4b81 1 Other Other +99952f6a-3143-4be9-b1d1-3c85724ae691 1 Other Other +999537f3-8797-4275-b843-caecc21b3745 1 Other Other +99957818-6c65-476d-9151-a991b54f0b94 1 Other Other +999584ef-b06d-4811-bd45-710a15302dfe 1 Other Other +9995b0cf-036c-4303-b021-e3504ec516db 1 Other Other +9995d2bb-e05d-45fe-a3a4-d15fa3986b75 1 Other Other +9995d959-d832-44ab-b080-2f6aab43b673 1 Other Other +99960cb2-1b83-4de2-9f48-ba47bee4c053 1 Other Other +99960ffc-9b72-48eb-9e62-b431acb73374 1 Other Other +9996126f-7d62-4794-9539-c00b8e82c925 1 Other Other +99965050-e6f9-4ac2-86a0-6aea8e011a0b 1 Other Other +999662ae-d43e-4e0d-98f4-543415bc769c 1 Other Other +99970a2b-5519-4484-98c1-5125217f6bd5 1 Other Other +99972a37-e3c6-422d-a394-c1f3d3d71c2e 1 James Other +9997560b-e3c8-443b-b6b0-a69297dc2eba 1 Other Other +99976e9f-8690-48be-8940-7943ca488449 1 Other Other +9997e5ec-0128-42a0-a257-dd19c4aff979 1 \N Other +999821e1-d017-4cba-90fd-78df70c872b7 1 Other Other +99986afc-f16e-441e-a71d-d5b9223e83fc 1 Other Other +99989ae7-e31d-431f-b34f-ea7c1bb43831 1 Other Other +9998ad48-3d51-4b3d-8ce8-8aebfede8342 1 Other Other +99999aae-60c1-425b-858c-aa02e194ee44 1 Other Other +9999a71d-cef9-4c3a-8354-9c59be1226d5 1 Other Other +9999e43b-f0b0-4163-90fa-72dbb7867825 1 Other Other +999a13dc-2aa8-464c-82eb-7f932967b439 1 Other Other +999a2a03-4896-405d-a047-dfc553a6c34c 1 Other Other +999a2f9c-2492-4f74-8413-09dd15577215 1 Other Other +999a4ae2-2805-4ebc-812f-468393f248eb 1 Other Other +999a4eec-e9f7-4c9b-8105-3bb6bc3782f2 1 Other Other +999a69d9-1ab7-467c-9e45-ba7e63a15ccc 1 Other Other +999ac037-739c-409c-b47e-04658278a870 1 Other Other +999ad0c8-552a-440e-811d-c59f845ce012 1 Other Other +999ae2a9-790f-4ced-84f8-0247465938aa 1 Other Other +999b2dd8-67d9-44c6-8b50-f082ce2f3468 1 James Other +999bae79-5613-452a-929d-89fb904b2e92 1 Other Other +999bb248-ad0b-4332-9512-22199042ce1d 1 Other Other +999bef40-190a-435e-9709-835bf69117f3 1 Other Other +999c368a-5d60-4951-9697-c7c463a7bb2c 1 Other Other +999c6730-fc5e-4884-ab21-3245b0cd3115 1 Other Other +999c80a1-472b-4edc-b09a-d00657578378 1 Other Other +999cafc5-1703-44aa-9b34-21fc5ee6eb1c 1 Other Other +999cece0-4bf4-4650-bf7d-d149f8667621 1 \N Other +999d07ab-2d42-43c2-b5e9-ad4ee521b089 1 Other Other +999d13d3-ad1a-4438-8bdf-f2a53297e939 1 Other Other +999d44b0-5f53-44cf-aa39-8ff8fc39e82d 1 Other Other +999d7c02-b8f2-4c7d-8330-c5ba54c70df9 1 Other Other +999d975f-71d3-4bee-826b-378ec9a26da0 1 Other Other +999d9ee4-e023-439f-889c-3a0407da3193 1 Other Other +999db4a9-9742-462f-ac7d-76d93d92197c 1 \N Other +999ecb71-e485-4f92-a15a-8e0be11bf108 1 Other Other +999f12e6-8990-4a60-b10f-bfb4771cd616 1 Other Other +999f67a5-0447-4e53-b5b7-99808e3fe4fc 1 Other Other +999f816b-4dc0-41ed-8dcd-a72d292121cb 1 Other Other +999f8603-0f1d-480b-a421-0095727390cd 1 Other Other +999fc0ab-21ba-44fe-bf11-b328be29da56 1 Other Other +999fe62f-f3ff-476c-9569-cfbdaf81731d 1 Other Other +99a00c45-8a0e-4135-92a4-3b6b25815c82 1 Other Other +99a00ec6-10fd-4b36-8744-ef698baa79cf 1 Other Other +99a04cab-1c5e-44fa-bfc0-14e926784d32 1 Other Other +99a079f9-b1fa-4317-8dd4-f519bf8528d6 1 Other Other +99a09be6-149e-44c6-bd6b-02ce21935dcf 1 Other Other +99a18153-7316-4bb0-829d-77c3f0c1b029 1 Other Other +99a1e615-d63e-4d2f-8c5c-0a3a7ad781e7 1 Other Other +99a2296e-ef05-4520-b92f-4befc2c4e688 1 Other Other +99a23bec-6f73-4d1d-a572-c64bf5746380 1 Other Other +99a24726-6279-4996-854a-d0ef133d6983 1 Other Other +99a2735d-6aff-4b53-86ce-4d0ddfcddde6 1 \N Other +99a28b01-6ba5-4db0-bde4-7692f54c4fd2 1 Other Other +99a31919-d3ad-4589-9b57-7379afe55625 1 Other Other +99a39f6c-661c-4608-a9c8-28e5d5052a16 1 Other Other +99a3b279-8e6b-4b6e-840a-daed6be28991 1 Other Other +99a3bde5-1fc7-4252-bad9-6f8394cd185e 1 Other Other +99a3db37-b23a-408a-854d-e9c78119a70d 1 Other Other +99a424ba-57ea-4621-884b-01378589d31e 1 Other Other +99a43f97-499b-4b59-a0a8-c67385646449 1 \N Other +99a45698-aa58-4d7a-9297-f2beed938395 1 Other Other +99a48655-1cc5-4da9-964e-5b7ddaf702a5 1 Other Other +99a4b080-5320-4089-9727-9f1f742cbfb4 1 Other Other +99a56dce-2d0b-481f-b425-73698d60ab3d 1 Other Other +99a5c76a-ae27-4407-a991-2c1554b48846 1 Other Other +99a668a4-09b3-4042-9f18-effccc1ffaf0 1 Other Other +99a66bf5-99b9-4777-85c4-0873ce2ab4fe 1 Other Other +99a67036-95a7-4c12-b94e-53037461c385 1 James Other +99a6a63a-f813-420a-8f42-a454890726f3 1 \N Other +99a6ba7f-b249-483c-aaf4-1bef48ea1235 1 Other Other +99a6ce7a-4e83-4c22-ace2-09840836c575 1 Other Other +99a6e4b6-47a2-4ecf-8ba8-dfe37d5464cb 1 Other Other +99a6f8c5-d25c-4ff9-815f-744662169e93 1 Other Other +99a7079a-13c6-44ce-850c-0a3481f6c976 1 Other Other +99a711fd-5c53-4d12-9de2-0acb96a7ca4e 1 Other Other +99a7964b-600c-4288-adc3-4ee1d04bae2b 1 Other Other +99a7b039-46dd-4fa5-b1a4-a4ab570d180e 1 Other Other +99a7b4fc-c663-4147-879d-1e39886e1737 1 Other Other +99a7d629-e165-48da-86c6-18c3187f33cf 1 Other Other +99a857c4-8028-492f-9a73-801e916e9006 1 Other Other +99a8a323-e513-4a58-8e73-69576b2167f5 1 Other Other +99a8aa03-679f-46fa-befd-c78f8581b529 1 \N Other +99a91d1d-849a-4f3d-9d0e-58099ab58dd4 1 Other Other +99a92ea0-d2ad-47b7-80e2-ad54ce30377a 1 Other Other +99a93fe9-6b5d-4219-af91-e76658ca1c0d 1 Other Other +99a998bc-6549-4fa4-b6f5-fcf07f681a64 1 Other Other +99a99b5b-2a81-45b0-9cc6-b8ad4a58ad12 1 Other Other +99a9a6e8-8a3c-11e7-9c39-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +99a9b5f1-1e32-43b0-9ca5-9d571b45d729 1 Other Other +99aa00ef-bf7b-49ca-88d5-79e2e2083e36 1 Other Other +99aa354e-dbb1-4875-a114-fb102ae0c503 1 Other Other +99aa4fcd-b67b-4b04-a6a1-1eeca5055538 1 \N Other +99ab05ac-9c9c-4be7-b177-b5f6ae2ec621 1 Other Other +99ab0b0c-c374-46f9-bea4-07f0a09c2ec5 1 Other Other +99ab39e7-74e7-4b06-8e5b-68cb9dbe5c47 1 Other Other +99ab6d44-aaa4-42ce-b844-8d3ccc4bfb06 1 Other Other +99abaf82-97a5-4f21-a1e2-81755a1934ee 1 Other Other +99ac04b4-777c-4af2-8548-b729fd4660db 1 Other Other +99ac324e-68d3-48fa-b0c7-d8727134fa9c 1 James Other +99ac8066-9159-4a0b-b67e-dc3f826a7e31 1 Other Other +99ac965c-9e9e-4fbc-8d75-d62fb2a101ff 1 Other Other +99ad3e16-85bd-4cff-b479-730baba87af3 1 \N Other +99ad506b-cf8d-498e-b9ae-57e22e758e98 1 Other Other +99ad558a-a8a2-4700-a591-ec81130e7054 1 Other Other +99ad620a-bf9f-41bd-806b-66ca2c3b6cbf 1 \N Other +99ad644c-471d-4ffa-8a7e-a70890d97d88 1 Other Other +99ad7ac8-8d61-4475-b220-72a93445941f 1 Other Other +99ade21f-4634-4419-ac21-5f3bf0d42cb3 1 Other Other +99ae0bd4-6864-42f7-bdc9-61608ab20389 1 James Other +99ae0d52-53ee-459f-b289-d214d6132efa 1 Other Other +99ae12d5-d355-4f41-a21b-06cc2011f56b 1 Other Other +99ae5746-f56e-4234-9442-3535c1beea0e 1 Other Other +99aeccd5-171b-496a-95bb-ba6ed7240150 1 Other Other +99aee00d-400b-4460-a92b-54bb7a475a57 1 Other Other +99af0350-84e2-4bab-bd46-eb458707d47c 1 Other Other +99af7762-140d-4ae2-9cd7-f91eea23627a 1 Other Other +99af8528-b4bd-472a-b2a7-9b9e85fbdd95 1 Other Other +99afa2f3-2f56-4512-8c20-17abde115236 1 Other Other +99afc09a-49cc-47aa-9b75-9c84fc5e6d95 1 Other Other +99afcc78-1f28-4cc0-a1bb-3e3c2b4b362d 1 Other Other +99b06bc8-dd1d-409d-a921-f73f54da8e26 1 Other Other +99b0ad8a-7014-4f7b-af61-4f4a6d8efe37 1 Other Other +99b0d845-7362-4058-b7bd-0f268e03f28f 1 Other Other +99b103a2-ec12-4483-a8c4-559c939e6e9b 1 Other Other +99b165f5-f417-4fb6-9119-dbc39dbe3c73 1 Other Other +99b1aed8-ea05-4654-ac61-683bb889dcd7 1 Other Other +99b1c23b-bd86-4f1f-a533-6d5f4943770f 1 Other Other +99b1c2aa-c652-4923-83db-a19cb2cb81ac 1 Other Other +99b1d805-c483-437f-b4d5-01b9e3927195 1 Other Other +99b1dd00-b7b1-45bb-a7fa-fbfcdd1467cc 1 Other Other +99b213f9-1634-461e-ac45-ca52397cba0b 1 Other Other +99b2af3e-2265-49a2-91c5-6c4e3b08d112 1 Other Other +99b2b58e-7110-441b-87f8-95d59ee1b59a 1 Other Other +99b2e4ff-a91b-4247-8185-624f6a40c41a 1 Other Other +99b2ee63-b8b2-4093-9dae-293b02ef05f0 1 \N Other +99b30882-2c01-4379-90be-5307fdca51d6 1 Other Other +99b3465b-eb5d-43b2-a510-e3709decebab 1 Other Other +99b3799c-20e8-4da5-b18f-01fbbfb6405d 1 Other Other +99b37fca-28f7-4e2c-b52c-283f0e0cd0bd 1 Other Other +99b38bcc-acee-4021-bc97-662d42b1b018 1 Other Other +99b395bb-3a20-4d2e-87b4-61788a4bb491 1 Other Other +99b39a92-9e75-4d93-a216-d89accba4699 1 \N Other +99b3afd8-6697-48de-8490-07395098f2a1 1 Other Other +99b4196c-e51d-43ba-aa6b-4201f1da1048 1 Other Other +99b489e9-2ffc-4b1f-9182-8beef078618b 1 Other Other +99b49bc6-92dd-416c-a3ce-69851dcaeb00 1 Other Other +99b4d085-7115-4887-85a9-4f93dbfb7eed 1 Other Other +99b4e329-b689-4616-adca-cecd980af85f 1 Other Other +99b51c43-a188-4727-b2e3-ce50d3b1f445 1 Other Other +99b5c154-1afa-473b-867e-0193065c1ac0 1 Other Other +99b5c2fb-5598-482a-bce5-5425f17c1bd7 1 Other Other +99b62ee5-9c99-4843-8e72-c3ffac572a26 1 Other Other +99b712ad-43e2-47b1-91dd-1e986d32284a 1 Other Other +99b739bf-82bc-45aa-bc7d-ebb258f1b2e7 1 Other Other +99b76905-0f33-4e58-8f29-a1ba064a92f8 1 Other Other +99b77c17-9f73-409b-9897-87ec39fbe4ba 1 Other Other +99b79c38-62a7-4750-ac95-5716be6f4ab9 1 Other Other +99b7bb34-c788-4561-9ff9-7c900f0fd9ac 1 Other Other +99b7c0c5-8fc7-4f8f-9896-5f3f1b8c7dea 1 Other Other +99b8299a-9253-4948-aeec-1017dd47ab08 1 Other Other +99b82c91-8429-4e57-8b3f-0a4a6e73b013 1 Other Other +99b86d8b-c12e-46b9-a62e-504f53e70e7f 1 Other Other +99b8be01-5d0e-4105-8341-b2090d5b74b9 1 Other Other +99b8c06c-02d4-4602-8929-ad4c533014f0 1 Other Other +99b8c339-4c23-4114-b3fa-892f85a98ace 1 Other Other +99b8c470-ccec-46a2-a122-0e7d16b3e927 1 Other Other +99b8fdeb-68c4-48f4-8c16-8cb20aa70b83 1 James Other +99b913db-4116-4d04-a5f0-8da577a0a815 1 James Other +99b921eb-eaed-4e98-b4b9-85e153808f48 1 Other Other +99b95797-8eb2-4db4-936b-41c2aa40214c 1 Other Other +99b9bf79-f209-44cb-818b-451f8d5ca462 1 Other Other +99b9ed26-2181-4d96-aa7e-32c9c88fedcc 1 Other Other +99ba3405-8cfd-4758-ba1d-066b49172f4b 1 Other Other +99baa2d1-5a1a-4c02-9272-9ab5c81e4023 1 Other Other +99bab8c6-a539-48cb-916e-3e2353f4c2da 1 Other Other +99baceaa-79ca-4c06-bb57-72eb4b61a05c 1 \N Other +99badbcb-090c-43e7-ae52-e545ab9a5cff 1 Other Other +99baff4a-c20b-411b-9044-09458c4e7078 1 Other Other +99bb69ed-8b8d-401a-81cc-290cc4bfce92 1 Other Other +99bb9689-3ef9-4180-b1d4-e48ff2957a32 1 Other Other +99bbdfb9-0e6f-4841-87d4-b6e17caffd93 1 Other Other +99bbe84d-1109-40fe-b54a-dd09630931eb 1 Other Other +99bbf984-d1fe-4989-8ea6-13aaee0554d8 1 Other Other +99bc1b52-daa5-4536-8192-63bc289b0da5 1 \N Other +99bc7eb0-3a60-48dd-a8cd-03c60f82cd82 1 Other Other +99bc907e-9d76-4b99-80cc-5a0c67a59fc8 1 Other Other +99bca17f-c447-4d98-aa3d-9da70dadbb22 1 Other Other +99bcdeab-6d06-4e93-ab79-709e0d1b6cc3 1 Other Other +99bcee68-2774-4bcf-b763-edbe81e10583 1 Other Other +99bd0cf3-9ae7-47de-ba35-349ef847e3ce 1 Other Other +99bd46c8-eced-4046-8efc-630283170e5e 1 Other Other +99bd7a92-0529-47ed-ae3b-12a6ea216816 1 Other Other +99bd9ad8-b0d0-4fc6-a830-e68d45bbbc6a 1 Other Other +99bdd916-9c5e-4bb5-a895-782d8cbf8b06 1 Other Other +99be0d61-677c-4370-8999-5b089a85c531 1 Other Other +99be54e5-a9a8-40c2-8c88-6fbbd4d5dc13 1 \N Other +99be6651-1b52-4360-9fe2-9377adfd268d 1 Other Other +99be959f-f153-4435-aaf2-535b1c225aa5 1 Other Other +99bed597-c484-4373-8938-fb705e91f95d 1 Other Other +99bedacd-700a-4a40-abeb-dfa4f547b462 1 Other Other +99bef586-8037-401f-88ed-6b766ffdfae9 1 Other Other +99befceb-5721-4cac-97fc-dca5e6c44617 1 Other Other +99bf255a-1035-4076-97ec-b6c061e0cc1e 1 Other Other +99bf787b-c784-41d7-856e-25d90ee524de 1 Other Other +99bfc862-2525-4a0b-867b-f58fea3ed0eb 1 Other Other +99bfd5fb-c27c-4072-8e59-a49d1e00eace 1 Other Other +99c004fc-358a-476e-bc3e-f49d60ceb2c8 1 Other Other +99c00b95-f56b-43a5-84e7-4fc102181de3 1 \N Other +99c01e62-2275-41cd-8bef-1b026a8d843f 1 Other Other +99c05e3f-7167-4a8c-ada0-ec597aaef893 1 Other Other +99c0a790-ea17-4888-8876-9c9c9dea28a7 1 Other Other +99c144b1-c757-4818-929b-ac76d2fe16a2 1 Other Other +99c163f9-12b2-4d90-8847-debc2af884b6 1 Other Other +99c19b30-566e-4289-a2c5-39044111d3e7 1 Other Other +99c1ae6d-42c3-4e24-8f8b-390285edaad2 1 Other Other +99c1b154-2c1b-49e3-9ebe-965e10026982 1 Other Other +99c1b2a4-ee53-4168-9d9b-5ec47e7a0be7 1 Other Other +99c1d1a1-c9d6-4a06-81c9-5434e3da4455 1 Other Other +99c1f586-5194-4cf6-abb7-0ff445c72c69 1 Other Other +99c20fbd-a616-4ac2-af7c-6464901474ab 1 Other Other +99c21b9e-3308-496b-a0d4-63f95bcf5f05 1 Other Other +99c22015-e8f2-47e4-8adc-c62e39030ede 1 Other Other +99c26888-0d77-4837-865e-d96cc95c1bf8 1 Other Other +99c28fb8-e55e-4c33-9389-22628d1fcd3b 1 Other Other +99c2c3c9-a336-4771-b427-c919316437d3 1 Other Other +99c30edd-e52d-429a-a3f7-65d641d4257a 1 Other Other +99c33abb-a5ab-48cb-ae33-22a30c02372c 1 Other Other +99c350f2-b26c-471e-aa4e-17033c6bcdff 1 Other Other +99c3a87e-14cf-4d13-8338-9af307c483be 1 Other Other +99c3b98d-345b-474f-8af5-f74833d1d639 1 Other Other +99c4132f-6028-4a64-beee-a1d3443e0096 1 Other Other +99c41441-12c8-47c0-a131-60948f086f14 1 Other Other +99c4ac34-f94a-436f-b94f-aa7a15fcadca 1 Other Other +99c4c6d6-65ec-4e2e-be75-bae841c6e777 1 \N Other +99c525b1-a193-462e-8472-4b67e032e497 1 Other Other +99c537cf-838c-4812-8d3f-1b7f7355ba3c 1 Other Other +99c54a06-5f7b-4368-933a-cff77c4280b7 1 Other Other +99c551b7-90a6-42ee-8298-9bbb3bfc3532 1 Other Other +99c5695f-148f-41b3-882b-b39390f3a7f6 1 Other Other +99c57957-0272-4221-abae-722f91e58c6b 1 Other Other +99c5d7ee-9f26-4ddf-b201-bda352549ce5 1 Other Other +99c60383-d3a8-4cf1-97c2-82054b7c1c5f 1 Other Other +99c65fc2-5de7-46ee-b9f9-6cd03ac14594 1 Other Other +99c68a7e-9b2c-4412-a3af-1a96d6027e85 1 Other Other +99c6de45-744f-48fc-b5c0-0eae78849b7b 1 Other Other +99c6ec66-1851-41f5-9eb1-f1b486e27acb 1 Other Other +99c70ce7-e8c9-4b3a-8b3b-e3985a05cbb5 1 Other Other +99c70f9c-e2a0-4ec4-8f2c-ba39e5203409 1 Other Other +99c71ced-938e-45c7-b775-1376f52f42a5 1 Other Other +99c72a39-a14e-4da5-bfe3-d3ae68510139 1 Other Other +99c73b0d-5b46-4865-84bc-d4af00d5ad67 1 Other Other +99c73cf2-6127-4a51-bbe0-db3776d67917 1 Other Other +99c79630-2b5e-4c04-b1ae-8775d47f7bb9 1 Other Other +99c7ac54-9551-420d-8d46-9e23f94d1191 1 Other Other +99c80fc8-ac26-4075-94cf-b9b763057563 1 Other Other +99c83e92-b21e-4f6e-80f0-5ec573d76284 1 Other Other +99c86dad-1a80-40a8-9f7b-0d5162691d27 1 Other Other +99c88817-0f99-4b85-90ea-0952cb92bcb5 1 Other Other +99c8a1ac-61c0-40a9-8d46-dffa82bd651f 1 \N Other +99c8a1db-36ca-4fb8-b845-235d7a51b88a 1 Other Other +99c94c33-26f2-4556-b8a4-69410ebb40d2 1 Other Other +99c9b568-e795-465c-bd52-158418a68186 1 Other Other +99c9d995-7581-48de-b81a-f91f71b55fed 1 Other Other +99ca70da-6a81-4a57-b8c3-d650430ae54c 1 Other Other +99caad86-b1fb-4cb4-ac63-ecc80082676d 1 Other Other +99cab2f6-5140-4cdb-b22d-6e084283765e 1 Other Other +99cac2b7-750b-48a1-95fb-988bfea139a6 1 Other Other +99cb1035-8301-4e21-8ae7-e93bc9fd51a3 1 Other Other +99cb1764-c889-4411-8b52-2d69ed626321 1 Other Other +99cb2933-76c9-40fa-b48e-8d827d54697a 1 Other Other +99cbe7db-694e-402d-abbc-209a84f4c8dd 1 Other Other +99cc9ca9-75ff-458d-be7d-0ab7813ad7b0 1 Other Other +99ccd8e8-ee27-4687-bfe6-0d36da32a68f 1 Other Other +99cce9a7-d4c4-4089-8536-319de4b4d380 1 Other Other +99ccfd30-6c5c-4b5f-9ca0-3461fa4d965a 1 Other Other +99cd2e52-bab7-4d23-8072-24cbec97d4d9 1 Other Other +99cd6ebf-f2a7-490e-bae8-5aa37fc10d20 1 \N Other +99cd8fda-a307-4ee3-8cfd-0300e5cdcfa3 1 Other Other +99ce0cf6-9d61-4a85-b020-aaf8ea393495 1 Other Other +99ce4a1f-14ac-49af-b46a-04e6af09d177 1 Other Other +99ce6cb6-6bfd-482d-b02c-afab76581d4f 1 Other Other +99cedd0b-132d-4cb1-9cce-4478794b463d 1 Other Other +99cf5b29-9c0e-47ce-90e8-e1337f613c02 1 Other Other +99cf8df7-7929-4a74-a73f-6498570d2cc9 1 Other Other +99cf8fdd-9ea5-484c-91df-a3c768828bb6 1 Other Other +99cf94f9-abda-4403-9c6e-b9e31474b5b7 1 Other Other +99d033da-ff00-41df-83d4-8060feca766e 1 Other Other +99d07650-a65e-44a0-88ea-9f847e2a41fd 1 Other Other +99d095a7-386a-4b51-aada-b905bdbee4bf 1 Other Other +99d0aa54-03a4-46cb-b346-658ccc10d5a2 1 Other Other +99d0cd27-e3f4-4b66-9a76-348e30952301 1 Other Other +99d10318-ab10-4db1-b98c-262e60a77798 1 Other Other +99d14c28-8106-4c77-8f18-f619aad594ab 1 Other Other +99d18055-72f2-41d5-b33e-772990d234ba 1 Other Other +99d195c4-016b-4d8f-ba56-5f186d51bfac 1 \N Other +99d1a068-18b8-44d6-91ca-86a8405ca97c 1 Other Other +99d1c904-c1b1-4d90-be1f-8020672d7806 1 Other Other +99d1f13d-5d83-47c3-a1d7-806ade0cd41b 1 Other Other +99d205cc-b95e-4392-8c94-61758074f94e 1 Other Other +99d21efd-def6-43dd-830e-260cbfd0a7b0 1 Other Other +99d2820f-24c9-436a-90e3-06215af0cead 1 Other Other +99d2c744-736c-491c-81c8-c583b876ed75 1 Other Other +99d2f406-53fa-498f-964a-db9e3a125619 1 \N Other +99d30fec-d44d-4a3b-8e76-e08a73958d98 1 Other Other +99d3ef4b-176e-4d0f-bf0f-6ba3fb9b11be 1 Other Other +99d4463b-cdb9-4c18-889a-e1a203e336e2 1 Other Other +99d44854-c2bd-41b8-a6ea-ed4af69f8ec6 1 Other Other +99d5041d-0f5f-4da0-b867-5aca919dcd33 1 Other Other +99d506f6-703f-473a-8e4c-188ed39d4483 1 Other Other +99d512c7-1cd6-4392-8764-01a419a696a2 1 Other Other +99d51eae-f7c0-496d-bc8c-e90fde3cd3fd 1 Other Other +99d652bf-a7c7-4988-b94e-91a0af84eb73 1 Other Other +99d671d3-8700-49e2-9a68-7fb24fcc2218 1 Other Other +99d6a371-d099-4459-b9c2-d0df8ecb9adb 1 \N Other +99d6a43f-9059-4bb0-be2c-82d754929fa3 1 Other Other +99d6cef1-dd9e-4893-9d02-44bfdb863829 1 Other Other +99d7098a-0fd5-4daa-9f25-2b7efc2b2627 1 Other Other +99d71000-36fa-4517-8831-bc936676998c 1 Other Other +99d72122-4a9b-41b9-87f9-8219d6c07236 1 Other Other +99d72e4a-fb12-4204-a7f3-428dce5c430a 1 Other Other +99d72fb2-b55e-416d-a3c6-b052c6dbd505 1 Other Other +99d76e6f-918e-40a5-9131-951c41b5182a 1 Other Other +99d776e9-66f2-4eef-9b6c-447cc05ebe40 1 Other Other +99d77ad7-dfaa-48cd-a0ae-e284f23e7831 1 Other Other +99d7967c-ddab-49ba-9b69-c549a80cf5d6 1 Other Other +99d822ce-0674-4cd1-b8a4-33649f5f7e00 1 Other Other +99d830d9-1f1f-4e83-b07a-4a2929f77f32 1 Other Other +99d850ba-3e1b-4da2-b7e2-ad2811a9c92c 1 Other Other +99d85d30-897d-4b58-9125-fed44abc3686 1 Other Other +99d87136-9b71-47af-a8f6-9ff3a43a45b3 1 Other Other +99d8cb93-6c80-47bf-9673-43c8fd35fa1b 1 Other Other +99d90bc3-e481-4b5b-a16c-8308c4685834 1 Other Other +99d9469f-9048-472e-84ee-b4fed74cae89 1 Other Other +99d96463-5882-4932-9482-8480b0ff14f2 1 Other Other +99d982f0-27cc-43c4-8254-83fc65f1f2cf 1 Other Other +99d99770-ee20-4704-8fc8-c57f0686442f 1 Other Other +99d9b047-d64c-4ce2-86d3-817d5f980b55 1 Other Other +99da7ae5-aa53-4fbb-b8a4-37c29af2818a 1 Other Other +99da9f09-4479-46da-911b-d21024a67aed 1 Other Other +99daca2c-5379-408d-be1f-895ee520335a 1 Other Other +99dad368-4bb9-44bc-92f2-26c0735d2fd6 1 Other Other +99db18c7-b2c7-4485-8eb3-706295ef3c2c 1 Other Other +99db18e7-f060-4e71-aca9-12b469e53a35 1 Other Other +99db1d79-6f23-43e1-92e9-b96ac2b1a576 1 Other Other +99db4553-53a1-4dda-93bf-1911c1fa1eed 1 Other Other +99db580f-cfec-42c4-915d-e2462fee109e 1 Other Other +99db5da4-ebfa-4047-ac8a-e71afc674f63 1 Other Other +99db70e3-8a53-4d3d-bc98-9676f68484bb 1 \N Other +99dba1b4-0b65-4bb4-aef3-309074e1d742 1 Other Other +99dbad9c-f842-44e6-92e8-d475e54c3259 1 Other Other +99dc2bbc-3271-44ea-a788-d9900a085980 1 Other Other +99dc73fe-93f3-4967-9caf-dbaa6b0b7db6 1 Other Other +99dcbd36-5fb0-464b-a6fb-e3adda5fcd1a 1 Other Other +99dcdc4d-eb03-4941-91e9-9ed336a6b7bc 1 Other Other +99dd1d0c-6f42-4933-b7e0-7cfecc727f72 1 Other Other +99dd1e8a-92ac-4203-816c-2a7cc48d5756 1 Other Other +99dd52aa-eefb-4444-b998-480e81f31267 1 Other Other +99dde660-8bb4-405d-9152-9ab8368c4110 1 Other Other +99de2887-ed5a-4db9-9727-9bf3fbddabd1 1 Other Other +99de862a-2e05-4045-b8d5-497378802f0c 1 Other Other +99dea236-084d-46e7-a1d4-f98f32bc7008 1 Other Other +99deb503-e20f-4ec8-8009-d53a9664d3b9 1 Other Other +99dec32f-ac55-439c-918d-0c06ffa15fed 1 Other Other +99ded883-ff97-4eb6-a5aa-9d7abf512a0a 1 Other Other +99dee670-168a-4a49-af5a-507ecc55858e 1 Other Other +99df1a6c-d6d8-46c9-8274-4164447fd964 1 Other Other +99df99cf-2e7f-4c50-a163-04fc63e5f6fc 1 Other Other +99dfcba7-fa34-4577-9c88-aa8a410efa5d 1 Other Other +99dfd02e-5e16-45d3-8387-c9f71e352ba3 1 Other Other +99dfe999-099a-4ac3-b11c-40860f12ae05 1 Other Other +99e045c1-4e7b-4f73-acfe-c385ed5852cd 1 \N Other +99e06851-e320-47d4-96aa-5167279422d7 1 Other Other +99e0e754-4fa3-4971-b72a-a3821d9e319f 1 Other Other +99e0fa6f-e8f0-4177-93a8-16a4ceeeb451 1 \N Other +99e10267-0d92-4566-b976-1fdf5cd8a476 1 Other Other +99e1231f-b3c6-4d7a-ab83-6efe29fec07a 1 Other Other +99e1c6d8-41f2-4b60-b828-e764a722befe 1 Other Other +99e1da1d-cae8-4e14-aa21-d08291071f58 1 Other Other +99e1ddfa-3d39-45df-8c02-efb026e9abed 1 Other Other +99e1ee33-6d60-42b2-8b82-5b1c64c3a0d2 1 Other Other +99e1fd3a-59d8-4697-8300-c0bde2184ba5 1 Other Other +99e22504-14c9-4023-9447-9bb5c043dfb9 1 Other Other +99e24c89-10ee-47db-a3ce-041bf5bf1f9e 1 Other Other +99e26710-f719-4f32-8a1a-6a71f642e546 1 Other Other +99e28101-f138-4283-9317-b6cc87db80cd 1 Other Other +99e285ba-333c-4442-b41c-011ded9a1671 1 Other Other +99e2952c-1431-47ff-aacf-4ffba1edf467 1 Other Other +99e2aac2-da2c-47ca-a872-485445c21f1a 1 Other Other +99e2be50-12e5-4489-bc6c-8f3d649b52cc 1 Other Other +99e2ccc6-7aec-4379-98f2-0c030f500cef 1 Other Other +99e2de5c-b3ba-47cd-9366-24dd47fafd7e 1 Other Other +99e38b00-826e-4b96-91e6-72c329063c23 1 Other Other +99e38b23-d9e9-4cea-8ffd-e2dc05160e76 1 Other Other +99e3ce19-469f-418e-9796-6b328833cdb6 1 Other Other +99e3d6fe-e599-4a14-9b98-0335bd59b7ec 1 Other Other +99e3dca6-ca76-40f5-93bc-ea1c454b700a 1 Other Other +99e413b7-4586-45c7-b384-7d046f654047 1 Other Other +99e458e5-cdf8-4a3d-8c4f-2553910a313b 1 Other Other +99e45f77-72d1-4377-9baa-14583caa3deb 1 Other Other +99e4afb4-0b11-4abd-b473-89f8f68a9d5f 1 Other Other +99e4de55-eaec-485d-b6c2-bc66e849c7e4 1 Other Other +99e5077e-89fa-45d6-ad8a-37daa3c56619 1 Other Other +99e5577e-79d5-476a-a0b1-7e51b71fd4ad 1 Other Other +99e5afde-1267-4180-945a-ef5b02a17534 1 Other Other +99e5ff97-f251-4fd2-83f7-c9e8e68abe50 1 Other Other +99e60288-57f3-4d59-8439-a67c90259ea5 1 \N Other +99e6061b-db6d-4ab2-9a87-5a494b26df22 1 Other Other +99e60d64-264c-43c4-a29f-5e793d32b149 1 Other Other +99e61d2c-305d-418a-bf97-d4022e663a7b 1 Other Other +99e702a2-bf74-4924-9a21-07ef29558aca 1 Other Other +99e76dd4-3565-47e1-8506-44f3399c24f9 1 Other Other +99e775d7-9d60-4fec-877a-2e6edd8fa6b7 1 Other Other +99e787dd-e87a-4756-bba3-422e8faed429 1 Other Other +99e79289-3773-48db-8836-c202c5ab30cb 1 Other Other +99e7dc54-cad7-4eda-99f6-c85e115c41fa 1 Other Other +99e80655-f948-40a6-b800-23d356c31158 1 Other Other +99e81074-86ae-49e5-9bb4-cc1fecbc461f 1 Other Other +99e8792c-b829-4444-858f-63605753f2b3 1 Other Other +99e88d7c-ac79-4284-8654-4efb1ff82fed 1 Other Other +99e8c0a0-0c37-4267-b066-9b4948e75472 1 Other Other +99e8ec89-3937-4832-8752-d1897320a838 1 Other Other +99e8edd3-0a40-462c-aaff-174a110ca4a0 1 Other Other +99e9255c-c7c6-480e-8fd7-13017d210d1f 1 Other Other +99e94eb7-7a56-465a-8904-74b6bdbd6257 1 Other Other +99e95150-36c6-4b49-88d4-cbaede6031ec 1 Other Other +99e95433-a81e-433e-804a-f9d3a1c95113 1 Other Other +99e95f92-e3d6-463a-9d47-bdd62e3dfccd 1 Other Other +99e9619e-79e3-4c28-b916-aff97ac2b4e2 1 Other Other +99e9fafa-c708-4066-82b1-357d3a4a2b12 1 Other Other +99e9ffdb-1569-4dfb-b881-4e21a9691001 1 Other Other +99ea7914-5dc7-4ad9-828e-81320300a1b0 1 Other Other +99eaa9c3-1865-4a95-a0c0-5263368cb9b6 1 Other Other +99eb9128-293e-416d-a72e-c43bf9692e00 1 Other Other +99ebb8fd-1b5d-419f-acc6-925e19a376b5 1 Other Other +99ebc3b9-cb70-470b-9453-9f17a529384f 1 Other Other +99ec0cb0-299e-4735-82fd-bef192ed9de8 1 Other Other +99ec1b6b-88b8-4c22-a079-aa3455e7eeb7 1 Other Other +99ec3f4e-f9b1-42ea-a5ff-d7d607470c53 1 Other Other +99ecfc31-ca7d-4f0a-a676-5c850d185e97 1 Other Other +99ed1e98-f45b-4653-9caa-9360e988c36f 1 Other Other +99ed3671-5477-4124-94db-c5cf85f834a9 1 Other Other +99ed3852-db66-466d-ac00-903720d5795f 1 Other Other +99ed3bc0-8087-4f7b-9fb9-42430e8cfe29 1 \N Other +99ed4cfa-f2b9-4384-8773-8b6a3d9a4d5a 1 Other Other +99ed576a-9eca-4d8b-9dd6-548426538494 1 Other Other +99ed7dc9-a900-4b40-a1f6-053225f9374d 1 Other Other +99eda606-72e5-440f-907f-092465cef1cb 1 Other Other +99edb408-e792-455d-bd71-6a4bee656399 1 Other Other +99edb74b-69df-4349-ad67-4aeb9a59bb7b 1 Other Other +99edefc7-ae31-4227-b5db-358965ca91d8 1 Other Other +99ee555b-7c38-42ed-9fb7-b5a07f2a3fe4 1 Other Other +99ee5eb8-4d1c-4bba-b48b-cb1674d43dd1 1 Other Other +99ee7150-d784-440e-9003-f389c0597925 1 Other Other +99eeb858-c51f-4783-931c-fa7241008c61 1 \N Other +99eef88e-5056-4967-a12e-26e9b6c8d822 1 Other Other +99ef1947-c2ca-438d-b724-3e14cbec5425 1 Other Other +99ef329d-d78d-4a76-82e2-cd8def288306 1 Other Other +99ef7250-abaa-484f-97f0-9ee7246f9a5b 1 Other Other +99efa895-aff3-4127-9f97-593b77b135ea 1 James Other +99efbfbd-d4e4-430c-b9b2-3d02b11fabef 1 Other Other +99f02380-6082-47c6-a863-498d4a3583c6 1 Other Other +99f02878-61c0-43ee-ba96-6ba385c80c00 1 Other Other +99f0374f-eb45-4975-85bf-e60ad6407c71 1 Other Other +99f09e67-9485-4849-8a12-acc0169cfc08 1 Other Other +99f0f6fb-fa3b-4d37-83be-241ce9898247 1 Other Other +99f0f792-2947-428e-93c2-1f4c431e3298 1 Other Other +99f1007c-9816-43e3-8ad4-6f3eb0a1bb47 1 Other Other +99f10e34-37a0-4fb4-aa31-a6d04b670a8e 1 Other Other +99f120f7-613b-4f0a-a58f-553f2217bd32 1 Other Other +99f1686c-a911-4a30-9819-1e51dcacfaac 1 \N Other +99f1960c-2884-469b-a2d0-5dc854cae9f2 1 Other Other +99f19ca2-562f-4de1-a4b1-bb4195a330e4 1 Other Other +99f1e3ae-f5cd-4d3e-a312-d3163a6ee3a8 1 Other Other +99f1f704-12e7-4ff4-83b3-42d0a5c02e3d 1 Other Other +99f205e8-f924-4f2a-af84-26e7e87e56fe 1 Other Other +99f23780-c4a6-4fd7-899d-1524d53076b2 1 Other Other +99f24429-dc57-4a7e-b25a-8bfdb1bec565 1 James Other +99f29811-66e0-49a4-a473-4a6e3d4f74cf 1 Other Other +99f2b668-ebc9-49ef-adcf-e7aa4740347b 1 Other Other +99f2e7fb-334a-4c9b-9dfc-273e31298335 1 Other Other +99f2f2d0-a53f-43cc-851b-724ad1c40dae 1 Other Other +99f34be7-6264-46bb-a424-9a2768191ee1 1 Other Other +99f37724-a948-4742-9bf5-68b73a61f664 1 Other Other +99f3eb38-7f07-4bba-8960-e84198b874f7 1 Other Other +99f3eede-8487-499f-8cdf-b4f7ba7360e9 1 Other Other +99f3f084-fa6c-4761-95bb-769abfa76534 1 Other Other +99f400fa-411d-48b4-9919-bf3df35695a2 1 Other Other +99f41304-3cb7-4062-971f-5fddc9f45783 1 Other Other +99f46d13-bf0d-4333-9d88-c5b8ce0e897e 1 Other Other +99f4c9be-aee8-4f08-8095-64c0a4baba42 1 Other Other +99f4e1cf-7192-4e5b-ac4c-084f79ca1a9e 1 Other Other +99f50185-3c4e-48ce-8ede-8f67d72bac75 1 Other Other +99f50365-e31c-45df-bf8b-81ec70ada4f5 1 Other Other +99f519a6-19c5-4dae-afd6-0630a6961342 1 Other Other +99f537f7-115a-4fab-9968-f227215910ec 1 Other Other +99f53a60-01de-4520-a6a8-da46ec265ab3 1 Other Other +99f5691c-8fd8-430c-a4c2-7ed88270e1c6 1 Other Other +99f585c9-b912-4c2e-a54d-5253c118cbca 1 Other Other +99f67cf1-fce4-4a6b-8614-c0f20718a26b 1 Other Other +99f71428-bfed-4fd6-8a6d-75ddf7509a1d 1 Other Other +99f73081-ac29-47c1-8ca3-36b9d3be4713 1 Other Other +99f7381f-37ce-4e07-9712-ff32ff17667f 1 Other Other +99f74ab0-8166-422c-915d-6b439f91c818 1 Other Other +99f7a8be-02c1-4be0-b966-ff84e5244ea1 1 Other Other +99f7ab4a-cfbd-4345-851d-57065796b5e4 1 Other Other +99f7b800-f15e-4fd7-84c5-a49171ebc8b5 1 Other Other +99f7da61-6d6f-49b2-a8db-67cbb8aa0b6f 1 Other Other +99f8a041-5e18-42dc-b0f7-4b0ca50f5948 1 Other Other +99f8d78b-ce3a-4b30-a8d1-1232e504f190 1 Other Other +99f905cf-8551-4cfe-af36-48dd6aec79ad 1 Other Other +99f965e9-e212-4133-a98a-568254600d6e 1 Other Other +99f97aee-fd60-4135-bb59-bb518f7b3dac 1 Other Other +99f97e5f-b360-4871-9a17-a1ce6c660924 1 Other Other +99f989e1-d3b4-4236-b399-ba2c4693bd60 1 Other Other +99f996d5-b09f-485d-a171-dbfbb4fff6bc 1 Other Other +99fa1dbe-406e-49bb-b134-cc6c63d40783 1 Other Other +99fa71ba-6c89-4426-9939-f24594e1a68d 1 Other Other +99fa82cf-b3d8-44cb-9fa3-97d13a3010f2 1 Other Other +99fa8e93-6702-44db-94ab-5696cd161d6d 1 Other Other +99fb0a2b-95f8-4106-bf16-4659e61d113d 1 Other Other +99fb0a9a-1d1f-4b34-9b7f-59572e5593a5 1 Other Other +99fb2754-c8b5-4bf7-b35a-3bc5417a4f77 1 Other Other +99fbb2e8-1a01-44aa-b451-fdfd2c844ae0 1 Other Other +99fbb691-b4e0-47a9-bbe1-2015910a785d 1 Other Other +99fbc62e-18fe-455c-8d38-e417951ed80c 1 Other Other +99fbd7ac-2ce8-483a-9b26-ecf95c7feb31 1 Other Other +99fc07ba-c260-4305-a21e-06ab41a23247 1 Other Other +99fc30ed-3457-45b9-a27e-ef37b0990d35 1 Other Other +99fc5b68-5d2a-4f5a-afd5-bd7a09aa2876 1 Other Other +99fc80dc-d8a9-479d-81b0-d64a85da0547 1 Other Other +99fc8438-9dc2-417c-b01b-c59b1f344ebb 1 Other Other +99fca689-5738-4e14-80e4-a8a3852f8239 1 Other Other +99fcb35b-8006-4499-9092-b935108b9458 1 Other Other +99fcbcc4-4fbc-40eb-9dda-b2001c372c4c 1 Other Other +99fcf081-bd0e-49cc-9c8a-708acd50e8ae 1 Other Other +99fd1ad9-b653-43ee-83fd-a217f47d05ff 1 Other Other +99fd4455-6ab2-4bd5-8064-deaef3c03807 1 Other Other +99fd71aa-2c91-4959-be7c-1668469d1544 1 \N Other +99fd7a90-d895-47ec-b39e-dd7c26ad9b4e 1 Other Other +99fdb9ba-339a-4eaf-a7f2-3ebfedca35f8 1 Other Other +99fdd6d7-04f1-49b9-ab53-8d0a87139d26 1 Other Other +99fe4110-e485-4c9b-8ba7-c859b1385fe2 1 Other Other +99fe73dd-a729-40a6-bdcf-bafaed86fa99 1 Other Other +99feb644-fc2d-4df5-9533-6ebaea5c6eeb 1 Other Other +99fee07b-d8c5-41be-bae3-4bf5ec575447 1 Other Other +99feeb06-185d-4f92-aa50-752d87522234 1 Other Other +99ffa80b-36b6-4423-ad15-340b979bc584 1 Other Other +99ffc885-e615-4090-8a10-7a5aed41595a 1 Other Other +99ffeb65-6ee4-4d55-8094-7e75bac315f1 1 Other Other +9a002479-6efd-4c3d-a0ea-c17bb5d6de50 1 Other Other +9a002830-5b10-43aa-92fa-da5df0618688 1 Other Other +9a008787-608c-4669-b1e2-01d6f5ccc590 1 Other Other +9a00cf61-3294-4811-aadc-ac926ddfd6a3 1 Other Other +9a012e93-c470-4e39-a7c7-1f30494dd496 1 Other Other +9a016d6f-873b-49e7-8638-f8dcad225be1 1 Other Other +9a01986d-e2d9-4400-8581-4cb7719ae256 1 Other Other +9a019fad-ec73-4fa8-8eb5-29a2c635742c 1 Other Other +9a01c39e-beb8-4473-8fd3-226dbd1fad7a 1 Other Other +9a0224a6-9aaa-4d70-a1b0-a9b7e6f316b8 1 Other Other +9a0255ac-73ef-46ea-936a-bbd6d6d4ba7a 1 Other Other +9a02a4b5-c0e2-4e40-82bc-43977aac12da 1 Other Other +9a02aeb1-92f8-4fc3-80f2-b719f78ff4ea 1 Other Other +9a0305ba-4bcb-4a8b-88bd-2bdd1bb3486c 1 Other Other +9a038721-7420-4b11-9b18-6422b629842f 1 Other Other +9a03a918-c31f-4f43-9a26-60ff3d2617fa 1 Other Other +9a03ce9e-3913-4708-bd30-509a03a78cb7 1 Other Other +9a0402c7-72d8-45d4-abe3-10c897134975 1 Other Other +9a041913-e53d-4930-acc0-64f9c034e358 1 Other Other +9a043371-0ffa-4396-ae47-37c0f44a4103 1 Other Other +9a0458a6-cd86-4a6c-9867-01d4c36bccb9 1 Other Other +9a0462ea-5c94-4910-ba3c-5daad0749341 1 Other Other +9a04633f-3714-450b-b15a-3c2d8ae0c5d7 1 Other Other +9a048ba5-9573-4002-82f6-b02ad7a932cc 1 Other Other +9a04d0f5-dbb1-48c9-a553-66d362d25611 1 Other Other +9a050596-3d39-4580-8ec2-e26b2db65fb2 1 Other Other +9a053215-91ca-4853-9f2c-7340ea1caa0f 1 Other Other +9a0537b0-8708-4b2f-bb44-179db2123778 1 Other Other +9a059a8b-e139-4f51-8b2f-0882dff9d4d1 1 Other Other +9a05bd8d-fa79-4d5b-9b59-1b9f125db0e5 1 Other Other +9a05c6dc-ed89-4b26-9b31-ad9d6b47c3d7 1 Other Other +9a05d429-b965-48c3-9c84-726e5720c0d7 1 Other Other +9a05d915-ff82-4e25-a3f9-7266d5c40b53 1 Other Other +9a05e2fe-4a75-4b71-b1be-f0b3a2d20951 1 Other Other +9a05f5ec-4072-4da3-81ea-87b7d3ae361c 1 Other Other +9a062538-eecd-49f3-b048-2ff0d228de90 1 Other Other +9a064055-ac46-48ee-afe7-bd749a2a213f 1 Other Other +9a066b15-923e-4128-a7db-bfc48daedeee 1 Other Other +9a066eea-be3d-4abe-83b9-ef078373b7c8 1 Other Other +9a06a24f-f92e-4486-b898-5680897db72e 1 Other Other +9a06ed04-8092-4ea6-bf23-08cee9093b6d 1 Other Other +9a078dc0-6e93-4cd9-86e8-08f970bbe460 1 Other Other +9a07dcec-4f33-466d-bf29-8cc07f9e9bfc 1 Other Other +9a07e715-b6a7-46da-838d-8effa9036de2 1 Other Other +9a07fe32-ac06-4107-9851-96dc54214238 1 \N Other +9a080f3c-5b3e-49cf-be16-aa0d1f805f80 1 Other Other +9a081eac-f2f9-4cd9-b2d6-9eec61b59ff6 1 Other Other +9a082ecf-9e0e-4e3c-ab60-9575efbca721 1 James Other +9a0832e6-f28b-48b2-9bca-5dd186a62083 1 Other Other +9a0853c1-2444-41f4-9544-80c9d63f10ea 1 Other Other +9a086186-74dc-4df9-9a23-5f93934851b2 1 Other Other +9a087948-748c-44ba-811e-96776676b793 1 Other Other +9a08f2b2-4675-469b-b394-b867f8fea6de 1 Other Other +9a0a1aad-33da-4218-8593-9a639853fb4f 1 Other Other +9a0a415c-af1b-4510-99f1-5b025bdca804 1 Other Other +9a0a5554-be85-4c7d-86e3-b4045ae81bf6 1 Other Other +9a0a778e-c96d-465f-888e-7d1258440be8 1 Other Other +9a0b06f2-6ab2-45de-b44c-7000b837b2bb 1 Other Other +9a0b3ba8-190a-4e21-a321-29128cdba797 1 Other Other +9a0b8918-5a45-4b00-9a69-4d84ff53d039 1 Other Other +9a0c32ee-6411-4b2d-b109-793aae6ab8eb 1 Other Other +9a0c355f-4ede-4334-abec-c99599bb0a54 1 Other Other +9a0c9473-4aee-4dab-8a38-4c3d488077c9 1 Other Other +9a0ccceb-be18-4a2d-9689-fb513a045f15 1 Other Other +9a0d1f44-c8b7-4ce1-b1c1-9360a36d0a8d 1 Other Other +9a0d4ca5-5dde-457b-8dce-43dde33a87eb 1 Other Other +9a0d6fad-3dbc-46b5-9c4f-8d39500dc95c 1 Other Other +9a0d9273-6b9d-486e-b4c2-0597a69c8cbc 1 Other Other +9a0d9730-efe0-449f-b57e-0d4012b43506 1 Other Other +9a0e0c55-f65b-4dfb-ae77-c24cddaff33f 1 Other Other +9a0e3583-eff8-400c-a275-6f36bfc73126 1 Other Other +9a0e54ef-7f2a-4c64-89c7-75c8688bc98d 1 Other Other +9a0e6fe0-28d8-49a8-a242-d00b64134df0 1 Other Other +9a0e9727-6188-4373-825d-a502cf975d31 1 Other Other +9a0eed65-b6ef-4960-996c-55fa2a61c309 1 Other Other +9a0f3395-88c8-4292-821a-36b51af4aeb0 1 Other Other +9a0f433c-5aaa-4460-a5ff-f0fa989f7be4 1 Other Other +9a0f6a8c-2779-4673-821f-abc6387a41d9 1 Other Other +9a0f8d2f-c4bb-4cb1-956d-64b7a56c4350 1 Other Other +9a0faa72-b95e-4f18-ad89-42e4bc6a628f 1 Other Other +9a0fc401-e6ba-4bff-8afd-0b23c95c5ff4 1 Other Other +9a0fd252-8c52-40b7-99cf-e3a5a5fb6111 1 Other Other +9a0fd9f9-33aa-4b15-b011-768d07673a76 1 Other Other +9a10050a-0e31-460a-bfa3-9c2bf8ba8e8b 1 Other Other +9a100808-628c-4574-81f3-ce4f7fd586ee 1 Other Other +9a10198f-3110-410a-83a7-6eef076c3768 1 Other Other +9a104b2e-83a3-46cb-95c7-d17a540a5caf 1 Other Other +9a108749-4217-4e67-accb-2b9832e10e69 1 Other Other +9a10ddec-1a5e-4207-b636-f275d1988f59 1 Other Other +9a10f323-fdec-45d2-b165-f28c3034fe9b 1 \N Other +9a10fd0f-ac75-4acd-953d-4932f38bce68 1 Other Other +9a111f3b-e640-4cd8-9dfb-992cf713b880 1 Other Other +9a1130dd-3b60-4077-87ff-79778d28befd 1 Other Other +9a113e83-c1b3-499e-86e9-f537a995e03e 1 Other Other +9a11543b-b54b-4672-92ee-11bb61114ac3 1 Other Other +9a115a9e-d3c5-44a8-a436-ef25274a3cee 1 Other Other +9a115ade-82bb-4558-b581-46e603c5d8ac 1 Other Other +9a115f18-9623-41db-90a2-f4cf0b52d256 1 Other Other +9a116a0c-f7cb-4b4c-8da8-895f511ccac1 1 Other Other +9a119fcd-250b-435f-bed4-59cf7786e64d 1 Other Other +9a11dd4a-6cc9-47b3-8d95-1d9943a9f934 1 \N Other +9a11f886-6f49-4a49-8c87-722c68695c5e 1 Other Other +9a1203cc-5d19-4a4a-96f1-f8c4a84937f9 1 Other Other +9a124c18-bb39-43cf-bb7c-c2315b53961c 1 Other Other +9a12e960-0906-4cec-a69c-14eec1eed9e8 1 Other Other +9a1334a2-76ed-465f-8028-5810c53a28e5 1 Other Other +9a1351ea-8f66-4478-a1d7-fcd157e9c542 1 Other Other +9a139987-6049-46e7-ae07-5f627a91efab 1 Other Other +9a13be92-a44d-4057-962a-98e4a8d30a5e 1 Other Other +9a13cb89-4982-4ebf-8d66-bcaa39d5289c 1 Other Other +9a1420c6-8ec2-4c5a-a4a6-edf0a254436c 1 Other Other +9a142805-d3f3-4eb5-831b-582b95bbdaf1 1 \N Other +9a1438aa-826b-4228-a39d-d47aa6515ccc 1 Other Other +9a144847-2c4c-4a7f-ae14-56df10ebf790 1 Other Other +9a144fe0-0d60-4b26-9139-da02c7aecceb 1 Other Other +9a147901-359d-476d-8374-d9a9999b58d6 1 Other Other +9a14a231-cf89-428a-986f-225806bd9213 1 Other Other +9a14a617-0598-4d64-b691-7bbf522a1877 1 Other Other +9a14ae84-d032-11e7-98ff-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +9a14b50a-7e84-47cd-b900-f6554e54af8b 1 Other Other +9a15087a-35bb-4124-891d-99c1d0c62f96 1 Other Other +9a1533ed-0a7f-43b6-91e0-bdf62ed2b674 1 Other Other +9a153a05-7c54-4656-bc1f-a367126f8881 1 Other Other +9a156d37-f66a-41b7-8d28-36c60f3de665 1 Other Other +9a1653d5-d350-4f40-ac66-86f5f650d975 1 Other Other +9a16861a-be94-4c8d-a6d3-f9da5126632c 1 Other Other +9a168661-e260-45b8-8743-5b11c4e60bd6 1 Other Other +9a16b86a-0ced-4a93-990f-bc7f01a570c5 1 Other Other +9a16e085-a9ca-4acc-9c2b-3600f470aec8 1 Other Other +9a16ff77-0739-4ec1-b7fc-8e4106c72a9f 1 Other Other +9a178c28-6518-43bd-b908-dd4cb115d8d9 1 Other Other +9a17ca78-236a-4082-b9ef-4a094f799cf9 1 Other Other +9a17cead-f177-44d8-8403-2e3443b16c7e 1 Other Other +9a17f5d8-3916-42d9-ad98-a9d6dd5c9d10 1 Other Other +9a180cc8-3e63-4d5b-b8ec-bf252f068632 1 \N Other +9a18129b-eee4-42fe-b0ae-736e1f69bc09 1 Other Other +9a19803d-7342-4ee3-870e-07bc12fd528f 1 Other Other +9a19cb16-e675-4bd2-aae8-3041fc72b4dc 1 Other Other +9a19f6c5-a4be-41cd-b150-d5110636f578 1 Other Other +9a1a0f56-2aff-433f-a374-350440f54b2e 1 Other Other +9a1a3db5-eef7-4955-acfd-4d810642d99c 1 Other Other +9a1a5c12-6952-414b-a42c-1459e44e0eb8 1 Other Other +9a1a9027-169e-4f9e-9b4c-9fffc88a77f6 1 \N Other +9a1aa76a-d04b-4bbe-b999-19c17cd13c30 1 Other Other +9a1abee7-6f5a-4baa-a11f-229f7eb0df96 1 \N Other +9a1b2814-de0d-473e-a745-7ba65cdef1a2 1 Other Other +9a1bdae7-faca-4e12-bf9b-8285775b1682 1 Other Other +9a1bdd50-4da2-4134-9a13-3af7fc0c6f0d 1 Other Other +9a1c2373-9746-4729-b927-73dd383acc84 1 Other Other +9a1c2a91-f55c-4363-99d0-18784fde52aa 1 Other Other +9a1c32fe-8152-4e34-87ee-8c0e5f71a147 1 Other Other +9a1c4715-efd5-425b-91fb-3e06eb284877 1 Other Other +9a1c6eab-5a1d-4917-8c6e-283fc66529b2 1 Other Other +9a1cb114-471a-491e-8340-925b32b315d7 1 Other Other +9a1cccd6-6de7-4cee-9653-372a67eeaed6 1 Other Other +9a1d5012-9c12-42b7-af6a-bfa42369b6eb 1 Other Other +9a1d6291-0099-4052-9850-93272294ec56 1 Other Other +9a1d80cc-4df6-45da-9a19-591f8500f546 1 Other Other +9a1daabe-96b6-4058-b940-6faf0baff6be 1 Other Other +9a1df5ee-26dd-4352-b429-ddf69fa38fc8 1 Other Other +9a1e1709-478f-417f-ac7d-32309557c7d8 1 Other Other +9a1e2e04-ba5d-4f10-b97b-a5e0d2deff8c 1 Other Other +9a1ebf0a-af9a-44e0-afcc-70a1be06cc61 1 Other Other +9a1ec03d-ad05-417a-b5e4-34683de902c8 1 Other Other +9a1eeec8-49ec-47e0-aea8-1cb2cd044fb1 1 Other Other +9a1efa19-3eb2-49f9-87af-bb4c0f1c2602 1 Other Other +9a1f017a-abf7-4c05-af09-118ff3ca9ff7 1 Other Other +9a1f14eb-0e86-4a14-89fc-3e8f5ef4134e 1 Other Other +9a1f396f-a32a-40b4-97b9-b2dab924c01a 1 Other Other +9a1f501d-df52-40fe-8f31-797e1ca56ce3 1 Other Other +9a1f819d-f72e-47ab-aa5a-57851dc7bfd3 1 Other Other +9a1f9a0d-8fe4-4c69-ac66-5c9dea5d3f4d 1 Other Other +9a1fb2c5-07f5-4a2d-a765-e207867aa685 1 Other Other +9a1fccd9-aee5-40eb-838c-11628a6d1398 1 \N Other +9a1fcd01-bcbd-4375-aafd-d5165f958dd9 1 Other Other +9a1fddb1-b091-49f8-b48e-74415f4dd017 1 James Other +9a1fe996-0d17-402c-93c1-2ca9bdd86122 1 Other Other +9a200f30-b96e-497a-a6fc-522a52118b47 1 Other Other +9a202e85-4167-4e12-8339-db3cd5dc32c9 1 Other Other +9a205a8c-432f-4e69-919c-d1058146231e 1 Other Other +9a209b08-0527-439e-a1c1-18a28755d255 1 Other Other +9a20ab5c-3991-4d42-8b3d-ac95dbbf793d 1 Other Other +9a20b4da-8398-4d09-92a3-accd3b75bbe0 1 Other Other +9a20fce3-cfb6-4863-ae71-4a917b2e4113 1 Other Other +9a211435-9be0-48ad-9300-03feda35bd08 1 \N Other +9a215860-eaaf-4013-b839-6d03e4554ea9 1 Other Other +9a218564-13ab-44c3-88d3-4287155480f4 1 Other Other +9a2233bc-1374-4e5b-a2e0-bcfbb7d5e2f5 1 Other Other +9a2233e3-ef2a-4dc8-97ae-77b68af4440a 1 Other Other +9a225be3-f2be-4519-a3d8-55aedfb4366a 1 Other Other +9a2281fc-a53a-487d-99b2-2f80ffd56ac1 1 Other Other +9a22986e-6d1e-47aa-9334-6da32d184ba8 1 Other Other +9a229c86-1f86-4212-836a-29b148f6c36e 1 Other Other +9a22f4bd-7305-4fb6-951c-065656554a78 1 Other Other +9a238457-ec20-4867-b553-a68b3e06096e 1 Other Other +9a23ebb9-9e63-4a46-bc0c-3038ba0e22ff 1 Other Other +9a242bbf-edb3-4f28-a607-32c679bb9aa6 1 Other Other +9a244d3f-c71b-4cbd-9f6c-157f8dfb78af 1 Other Other +9a246e91-598a-42a6-af41-6dc277af55a8 1 Other Other +9a250ca0-4a70-4a88-9d10-60405ee53893 1 Other Other +9a257a52-fc03-402e-a1a6-cbe8e2e218cb 1 Other Other +9a263849-9ab2-4ec9-8661-d5612fe4c0f7 1 Other Other +9a266a33-1e00-4002-bf70-e13b06d768b6 1 Other Other +9a266de4-12e8-4e97-a881-c47844440d04 1 Other Other +9a26a8e2-142f-414b-8035-8b874ffe3070 1 Other Other +9a26d795-636c-49d2-8783-acfbd817f732 1 Other Other +9a26f11b-c80e-4603-ad63-26665ad8fd10 1 Other Other +9a26f918-4150-4956-91ee-1cf7763cda40 1 Other Other +9a275d39-3bc1-4995-8e33-ea60b8088235 1 Other Other +9a279191-7f56-4ea3-86ea-ce20931c5625 1 Other Other +9a282bcc-c3c8-405e-803d-1a5ca3c41b69 1 Other Other +9a28d7f7-ac14-4802-aa1b-acf8fd37e0cf 1 Other Other +9a28edee-9038-4199-b829-bfaca388ad08 1 Other Other +9a292f9b-8dcd-4f7d-9ee7-1b5f24356dc6 1 Other Other +9a299c3e-4a4a-449a-a8ac-dc0cf4e794b5 1 Other Other +9a29abb7-a1f3-4858-b7a1-ad80b333b5f5 1 Other Other +9a29c223-f910-47c1-b2c1-65359139bfcf 1 Other Other +9a29e39f-7a50-4f0c-866a-97dee432fb4b 1 Other Other +9a29f29b-4a81-40dc-85f5-e93fdd33bc86 1 Other Other +9a2a77d3-8a10-4da6-8e3a-2d267e60c319 1 Other Other +9a2ab3ff-5952-4653-b4fc-d2f59cfaac9d 1 Other Other +9a2ac718-68ce-4b0c-baca-60958a6231ae 1 Other Other +9a2b2945-64d3-41a8-a5fe-5458c60d3afe 1 Other Other +9a2b822d-ea16-4844-afcc-db0506361353 1 Other Other +9a2ba490-2a04-45bf-a7b3-d38d3f9ed2e6 1 Other Other +9a2c207e-2045-4ebb-9428-b7f2c7db8c71 1 Other Other +9a2c4abc-36ad-494f-b350-39400bebab0e 1 Other Other +9a2c68db-1edd-420f-918a-5cb0e70311c1 1 Other Other +9a2c7168-6781-4318-af8f-cb87dd81be23 1 Other Other +9a2c8f30-4bc6-426d-923f-2111c4254eb6 1 Other Other +9a2c9c2e-739b-4b3a-89e3-a3d3ba3f46d0 1 \N Other +9a2cbad0-ee66-4d58-a8c9-e0534311c4e9 1 Other Other +9a2cfc32-3b7b-47da-a4d5-90e181e29409 1 Other Other +9a2d0bdc-b33c-4fd7-9e01-7ede7b043812 1 Other Other +9a2d2795-ba0b-4602-974a-f05076613d5e 1 Other Other +9a2d2f82-d113-4349-9767-9604ea173a43 1 Other Other +9a2d4de7-ea7c-47c8-8eda-01f34f1c8862 1 Other Other +9a2de031-2713-4d3c-8af0-962ca1863f6a 1 Other Other +9a2de24e-2137-4248-a862-ec2ef2246cbd 1 Other Other +9a2dfa09-960f-473b-aa91-c13a110bf07d 1 Other Other +9a2e4ff9-a5b1-49f0-a15f-b31abc8cc9a6 1 Other Other +9a2e809a-5fc6-4e67-9437-56c153ba1024 1 Other Other +9a2e8900-6389-4b45-97a3-4e54ddf25543 1 Other Other +9a2e90df-bbd1-4655-8626-02c2999af99a 1 Other Other +9a2ec423-a9f0-4e6e-b9a3-f0463a811d5a 1 Other Other +9a2f17c6-9d65-4f1e-9946-bbfe816af545 1 Other Other +9a2f8116-52aa-4c41-8e2d-f653d25caa40 1 Other Other +9a2fbeb5-4598-4ea6-bd75-b238ca720ccb 1 Other Other +9a303740-ff3e-4450-a9bb-ecc4bca05a42 1 Other Other +9a304bcb-a8dc-44b0-8019-ee6c62e98f78 1 Other Other +9a3056d5-0222-4a57-84c0-2a3430962eb1 1 Other Other +9a307976-ec30-4173-bce2-8ade16faba60 1 Other Other +9a3096b7-2936-474c-9244-d9fea058c67a 1 Other Other +9a31282d-8eb5-4d4a-a0cb-7eb8d2bcccb0 1 Other Other +9a31480e-6507-46ba-a670-bb41864cd462 1 Other Other +9a3158e5-15ef-4fb9-a423-a74858563b89 1 Other Other +9a31a2ed-509f-4ee2-a50e-07a809b92939 1 Other Other +9a31c013-bc1a-4247-9de4-dcc20bee0dac 1 Other Other +9a31e914-4d99-4bd5-af90-23d84f98a411 1 Other Other +9a322d03-775f-436c-a63f-9e6907051a99 1 Other Other +9a322db1-dc77-41af-8bb8-1d3d96f71a76 1 Other Other +9a32bade-7859-47f0-a20a-1b684893a1ee 1 Other Other +9a32cbcd-15df-4b0f-8974-8fd8f18f19fe 1 Other Other +9a333ca9-35ea-42bb-907f-bab6bd4a8506 1 Other Other +9a335c13-046a-4b15-b0fd-3207ce2d13aa 1 Other Other +9a33aed9-683c-4a43-a128-c7f8b91d5d74 1 Other Other +9a33d535-99b3-49cc-8de4-963b8221635f 1 Other Other +9a341107-1775-433c-a1b3-0abadc8032e3 1 Other Other +9a341d1e-1520-47cf-8e37-bf03b4ce60e8 1 Other Other +9a345611-bd26-4ff5-913b-d9cea0870c7d 1 Other Other +9a348865-3b22-4e0d-b1d6-9501832aea9f 1 Other Other +9a349906-b8ee-49de-ba41-bcc13e50291e 1 Other Other +9a34b427-944e-4d18-bf01-6fd5ccb555e9 1 Other Other +9a356474-e5a4-4143-bfce-cc8d2632ec42 1 Other Other +9a3576a8-6fb5-4874-a2a3-5b6ea44ec99b 1 Other Other +9a35ea79-b8aa-4273-928d-257db59f233b 1 Other Other +9a35f605-5c87-435b-8fea-8d4229388c68 1 Other Other +9a35fc6a-f0d6-4041-9954-82fe6dab6207 1 \N Other +9a360923-5640-4ffe-a691-3976cbd2790f 1 Other Other +9a36a7f2-5a41-4ecd-8df2-6a4ba897efd1 1 Other Other +9a36ab9c-edb2-4cd5-8c34-d220a53248eb 1 Other Other +9a36df35-6b9c-4699-b717-e0250979d45e 1 Other Other +9a3728b6-9d57-44f5-bb50-de40b57fb612 1 Other Other +9a375817-821f-4b64-8441-eeac4f88d498 1 Other Other +9a3761ee-569d-4e3f-a23d-1313bcca4d5a 1 Other Other +9a377629-ea30-4314-a53a-02ae013bd240 1 Other Other +9a378063-1f0b-4386-be5e-b8bab84c5ab8 1 Other Other +9a37dab7-0c97-4f5c-8f19-1266c4ff45ba 1 Other Other +9a37e378-bc80-4c0a-87e3-1282442b434b 1 Other Other +9a37ec4f-07de-4b36-8d4d-d1093c19be9a 1 Other Other +9a3832f8-ec6b-4c2f-9c9a-d840060506ec 1 Other Other +9a383417-304c-46a0-bb49-f7313ae060c1 1 Other Other +9a38382e-3ff4-4624-b778-93fdb21e565a 1 Other Other +9a38869b-d3d4-49fa-9a57-c5f791c825c8 1 Other Other +9a390874-e0fe-49a6-8abf-75c8ba8106a5 1 Other Other +9a390e07-aee6-443a-b221-15b1c2dcdff5 1 Other Other +9a39a946-ee6f-445f-bb2f-631c20a3ef65 1 Other Other +9a39e33d-cce9-4daa-9d72-ad92bc8945f3 1 Other Other +9a3a1090-c6bb-4e52-bd23-389a39469369 1 Other Other +9a3a22ec-9ef4-44f5-b1d4-05900aac56ba 1 \N Other +9a3a6e2b-4fff-4ad4-b587-12489374fd50 1 Other Other +9a3a7289-b3f6-42c3-b025-a30be9832dcf 1 Other Other +9a3a89b0-6514-4cea-96f1-6fff729d6025 1 Other Other +9a3a9572-c96f-4a62-8ca2-9f9d5541cc77 1 Other Other +9a3ace6b-a6a6-408d-9982-a6f258f11713 1 Other Other +9a3b1896-24db-43b6-a0e0-d4df6029841c 1 Other Other +9a3b7bd5-5920-4f2b-9fce-38e510de9ff0 1 Other Other +9a3bb1b3-501d-44b7-82a1-d694e0a35dc5 1 Other Other +9a3bda15-2dcf-45ee-9947-d60b6315c5e4 1 Other Other +9a3beb79-c749-408b-a8c8-56f089fa1623 1 Other Other +9a3c004e-4cfc-4ed5-99f2-8a940dc4e59c 1 Other Other +9a3c1a9b-9efa-4b37-8d6f-f4a5fca0442d 1 Other Other +9a3c34bc-369b-4a06-afe7-d4c351f59f44 1 Other Other +9a3c5154-414b-415a-9fbd-fc62b55657b3 1 Other Other +9a3c867b-92a2-46d3-9762-106389509b0b 1 \N Other +9a3c9e88-4489-4c73-8d7f-b08661dfc291 1 Other Other +9a3cabdc-3109-4c09-9f23-7874b2db5c1b 1 Other Other +9a3cb2dd-857b-47ba-ae4a-12bed7e0a1e2 1 Other Other +9a3cec82-de6e-434f-a0db-ff008c90b765 1 Other Other +9a3cf641-e564-453c-b0a4-ef8e3afb8aa9 1 Other Other +9a3cf7b8-e74a-4898-a7f0-122c4bc88458 1 Other Other +9a3d1c99-cb29-4515-81ea-8561bf284310 1 Other Other +9a3d3ad3-910e-4df6-95d5-cd8a025d2ff7 1 Other Other +9a3d5b88-49a5-4d63-953b-94a71e3edeca 1 Other Other +9a3d7818-4d69-4c31-a969-b82a4fae42b6 1 Other Other +9a3d8f7b-f478-469c-88f5-c8bf97c4e7d2 1 Other Other +9a3d921a-2af5-4e20-8520-f6338173aaec 1 Other Other +9a3dadd0-ac7f-4ce9-84a5-c3a38155e2e3 1 Other Other +9a3dbe93-422b-4c9d-bc4a-e5968e3792ed 1 Other Other +9a3dcd42-048d-491f-9883-c89e5a0444d8 1 Other Other +9a3de697-82cb-47d8-a19d-e78d6192086d 1 Other Other +9a3e10b3-604a-4acf-8da8-f97c225bf3ba 1 Other Other +9a3e8a26-141a-49f3-b0f3-8a09a8f72b86 1 \N Other +9a3f0d24-6cba-4315-af1f-f3951b8ea107 1 Other Other +9a3f0fb1-66b0-4609-a8d2-2fc31748605c 1 Other Other +9a3f273b-ba4a-4804-9f60-e4a90562dc9d 1 Other Other +9a3f7c6a-99df-4466-b7ac-cba15a68dfb1 1 Other Other +9a3f9e0f-0642-44d6-a096-8fc93c9a5014 1 Other Other +9a3f9fe8-17b2-4515-9843-5f931b7cf282 1 Other Other +9a3ff27a-b26e-40b6-9c67-46cbffaea173 1 Other Other +9a403fc1-6591-44a2-b089-89cca7e591c5 1 Other Other +9a404734-d5da-4262-a61f-bda1c383eab2 1 Other Other +9a40519d-1ced-45ad-9bf1-2c501f2eb0f8 1 James Other +9a408b20-4ebc-463e-a3bc-6626491ae6e8 1 Other Other +9a40a132-0fc2-4872-b998-d5bfc17a179b 1 Other Other +9a40a931-06f4-4487-adc2-51caab9d4c2f 1 Other Other +9a4124b9-0207-4434-a4fd-c512311461d3 1 Other Other +9a4148eb-b9c1-4777-a759-e5d5027ebd48 1 Other Other +9a4162aa-4ec5-4196-8076-e58080ce65e8 1 Other Other +9a4167dd-26fe-4e9f-8850-8c79c1052792 1 Other Other +9a41b542-944f-4677-bfe1-121f122c4856 1 Other Other +9a41cf9d-f116-42b5-907e-5cd1b5f8261a 1 Other Other +9a41f632-ca78-4b14-a5c9-ee6c8a15675f 1 Other Other +9a4226d4-8a2f-4e2a-9bc9-2fac66d4d08d 1 Other Other +9a428e17-5a6b-4fba-b44b-4c63fe179206 1 \N Other +9a42ef53-4cd4-4d1d-8bfb-cf0f55a336fe 1 Other Other +9a4329bc-973d-41d9-9809-4e8344d06146 1 Other Other +9a434137-71bb-4af1-9f34-5b4ddb8c000e 1 Other Other +9a434bbf-3142-481b-ac9c-454ee8a61f88 1 Other Other +9a4394fd-565b-4549-8b70-11a3a379bb38 1 Other Other +9a443f8c-9476-42b5-bda1-32eb0d91e926 1 Other Other +9a44568a-85fc-4824-9eb6-d04ad06890d3 1 Other Other +9a445ccd-3a37-48ad-9f2a-9de225fca5d2 1 Other Other +9a44aceb-e9e8-4923-a2e9-0f197edbcf08 1 Other Other +9a44d4d5-87a5-4ada-8053-ef793c0ce6a1 1 Other Other +9a44df5a-0a91-42f7-95f5-402104d76d27 1 Other Other +9a450cbc-21f3-4c04-adc4-40be5de0f736 1 Other Other +9a4524b3-5d3f-4c72-b174-49a69466e592 1 Other Other +9a455651-02f9-419c-9085-97841b81fd1e 1 Other Other +9a45bce4-820d-4767-a757-4846723089c2 1 Other Other +9a45efa2-2aee-491c-8626-f63e7eac5ef0 1 Other Other +9a462d76-7d1c-4162-93a8-0d1ec2f0c5e6 1 Other Other +9a463b11-6619-45c4-be4e-8f1c9a50dde7 1 Other Other +9a46b121-80be-4bf7-b20b-807d86a4dda9 1 Other Other +9a4700a2-368f-49b8-901a-da8c43e3c2e8 1 Other Other +9a471052-0886-4e3b-a907-985c904164be 1 Other Other +9a47dd3b-ef82-4eab-934e-c493b49db602 1 Other Other +9a47e212-76e6-418b-ac5e-6ea6833d150a 1 Other Other +9a4825aa-96e7-48f1-8d6f-fda5bec79807 1 Other Other +9a483f3f-8b94-402e-a749-c03403e829d0 1 Other Other +9a48c367-b8e8-4188-ad1c-45af9c027865 1 Other Other +9a48c615-55ee-4ef0-8752-7da6872766b7 1 Other Other +9a48d1bb-1439-4b6c-a177-e3ab9caab52a 1 Other Other +9a48fc15-eede-4c09-a2a3-3bae978a03ac 1 Other Other +9a498407-f3ab-471d-a2cf-fa0f9ca8201b 1 Other Other +9a498f7e-9294-4f88-bde3-8ba82ec9b320 1 Other Other +9a499586-045d-46af-81fb-f536b1b06698 1 Other Other +9a49c6d9-2c07-475f-b3dc-afc9ea52b88b 1 Other Other +9a4b0557-0499-47db-a3a7-8f246cac4ce9 1 Other Other +9a4b4829-2ec9-4965-9220-ba051445f034 1 Other Other +9a4b61ec-9014-4c41-b8ef-61e9af8e0538 1 Other Other +9a4b6a81-9a78-4699-a14c-8842d99fe712 1 Other Other +9a4b857e-9819-4333-a38a-551ab888a4ff 1 Other Other +9a4bb1ff-45fa-4f55-9773-11235d279b35 1 Other Other +9a4bb4ca-c0ef-4380-8be7-32d14cd9a560 1 Other Other +9a4c169f-496d-4766-a50c-0c4556e814b4 1 Other Other +9a4cb577-a136-499f-8ffa-af3e84939f1b 1 Other Other +9a4cd2b1-c725-4349-8445-c3fd9ad8044d 1 Other Other +9a4ceeb6-2820-44af-b1c1-3baaff5be935 1 Other Other +9a4d68ed-7058-4e5d-86da-045577d815f6 1 Other Other +9a4d6dd8-06f9-46e8-9746-f90ec25768f3 1 \N Other +9a4d7baf-2572-40a6-a627-67025e149645 1 Other Other +9a4d9c6a-86e4-489d-a7c1-e5e1c9be84bb 1 Other Other +9a4ddde0-9e2e-4a02-80ca-7d4d4fe2837a 1 Other Other +9a4e0d3c-5c0a-4159-bae2-af9c4be97ee8 1 Other Other +9a4e1d33-0aac-4e26-817d-8c501bd0a2e5 1 Other Other +9a4e2742-1eab-466a-b017-dbe7b2b116d1 1 Other Other +9a4e4030-6cf9-4edf-8ef6-bd29dd71812a 1 Other Other +9a4ea7f2-073e-4787-9fef-eab07f0b9d72 1 Other Other +9a4edbd7-b9fa-4901-ac1f-0deef1c9951b 1 Other Other +9a4ef5fe-d85b-4ed1-bbab-8b29e77140fc 1 Other Other +9a4f061b-ef85-4df9-aa99-cd30f1032050 1 Other Other +9a4f42fb-534c-41f9-bd97-29b65f3bbcc3 1 Other Other +9a4f57a0-9cae-4287-a08f-8d45fbd69f83 1 Other Other +9a4f5a52-c4ad-4888-9b38-702fc5a0636a 1 Other Other +9a4fe4a9-11e9-484f-a52a-e7013832e117 1 Other Other +9a4fedd2-68e4-4834-8729-f8e4090171a3 1 Other Other +9a4ffeb3-9f4c-4b7d-8bb0-6294de512871 1 Other Other +9a504519-9b46-4ebd-b8c0-0958451cf9b0 1 Other Other +9a505cb7-0de3-4e5f-bad2-8095b3a2797c 1 Other Other +9a507307-4a23-4bc1-8483-ad9550f93fa5 1 Other Other +9a50ffd1-a05a-4360-a750-a66d4557b216 1 Other Other +9a510811-1a31-414f-8de1-f9b3dfb8719b 1 Other Other +9a513639-8bbb-4be0-8c09-93678b0fc133 1 Other Other +9a515fbe-ca07-450e-9f16-e1c75f5a5d90 1 Other Other +9a516557-349a-4157-b71e-13c75c6e6668 1 Other Other +9a517cff-7e32-45cd-bb66-e7b0b8d94750 1 Other Other +9a5183da-0494-4893-94ed-b292961bd37e 1 Other Other +9a5186d6-62b1-4800-b26e-b7354905b646 1 Other Other +9a51d85b-370c-4851-89d4-af2eccb001b2 1 Other Other +9a51def0-76ca-40f4-9f64-7377913e2742 1 Other Other +9a5214cc-16ca-495d-884a-9603c30af584 1 Other Other +9a523729-0500-4ec7-8a08-260f04a8d9c8 1 Other Other +9a525e11-3c57-4441-b8ee-5e6d285f51d9 1 Other Other +9a526887-5c06-4546-933b-12a41abf782c 1 Other Other +9a529e3c-b3a5-48a9-973c-e8094983c9a6 1 Other Other +9a52ccf5-b0af-4872-b98d-0395643495fd 1 Other Other +9a52e726-48e7-4d35-b868-b9ec74e2d0f1 1 Other Other +9a53e776-1032-4ac6-8cda-569a9a73cc6d 1 Other Other +9a53ea87-09d9-4697-8242-e89809adbfe6 1 Other Other +9a53eb36-2ad3-440f-bea8-219a91c1b4c9 1 Other Other +9a53f93f-92ce-47e3-8632-2369db468b48 1 Other Other +9a545b21-3256-49a7-a213-da86cd9bf2c9 1 Other Other +9a547555-3d45-4860-a848-2f2496ff7343 1 Other Other +9a54950c-053c-47b1-be51-e3d16ff14707 1 Other Other +9a549977-82d6-46c8-808b-6dd2cc44a233 1 Other Other +9a54a8bf-af7c-438a-9e43-790fa2080f40 1 Other Other +9a54b4db-828b-4a6d-a5a6-689ee29be5bf 1 Other Other +9a54eaaa-7cac-469b-9f77-2b9cc6c5bb99 1 Other Other +9a54fa25-5f39-4b5b-81cc-7a99a34c9707 1 Other Other +9a5564e5-84f8-433a-a271-31a308349456 1 Other Other +9a556a78-c419-41f6-97b8-4dd6af98588b 1 Other Other +9a55a8ca-6101-450f-b9a5-dbfd77a2fefd 1 Other Other +9a55b89a-c9ef-41c9-8236-ec50f6907193 1 Other Other +9a55b8da-56b6-4645-ab34-3f216e4ed993 1 Other Other +9a55cb78-de62-46e6-8176-ed0ae055b32f 1 Other Other +9a560f65-d215-44dd-be48-66088127a7d1 1 Other Other +9a567847-4052-4c21-927d-ac0dfeab8337 1 Other Other +9a56c528-e175-45e0-bdee-30f9abe9b065 1 Other Other +9a572359-59b0-4f69-bd34-1fbff16d2a93 1 Other Other +9a5724f4-2830-432d-b77b-b0f0effd6829 1 Other Other +9a575007-d584-46e2-b091-7b51094bc868 1 \N Other +9a577d5a-60ba-4ced-8873-61fc3844a255 1 Other Other +9a579843-03a6-4efb-a970-6b824e6e3ff2 1 Other Other +9a57beaa-cfd6-409d-9fa9-c6fb13c9ec3a 1 Other Other +9a57ce9b-0e76-449f-89eb-d9035a84b365 1 Other Other +9a57d4c8-c82a-4fdd-902c-a7fe07dd0926 1 Other Other +9a584c3c-6f48-4dc4-b016-6d37efd5a0e1 1 Other Other +9a586e93-83a5-4e7d-8d6f-b6699bda8e05 1 Other Other +9a58b86d-ef19-414c-b864-de8d84583c74 1 Other Other +9a58bcc5-1c27-4984-b351-a974f7f30c81 1 Other Other +9a59583f-4a06-47d5-a0ac-4c4e23280995 1 Other Other +9a59937b-d903-4a72-a82b-1f5c2c98f9b8 1 Other Other +9a59a1bc-6c91-4ec6-a6b9-8a7adaf39abf 1 Other Other +9a59ebdb-e5b3-48f3-b82a-1892ff1e57c1 1 Other Other +9a5a1407-d9ba-4171-9b6e-061b948136bf 1 Other Other +9a5a279c-30e2-41d2-9fcb-8ea0ffc588af 1 Other Other +9a5a2ac5-5d9b-4bba-9af7-56e22d4def23 1 Other Other +9a5a2bd1-1d9e-428f-82cb-269007124eea 1 Other Other +9a5a4f74-46ea-4a4c-ae22-7662dc93f9b9 1 Other Other +9a5a4fb5-0bc0-4d90-8ce9-1e0e1e52f14d 1 Other Other +9a5a561f-3145-4ebf-a418-c4993af589e4 1 Other Other +9a5aa7c1-5701-4754-81de-f4284c979743 1 Other Other +9a5b2055-f863-45a6-b77b-d05f265b81ee 1 Other Other +9a5b379e-4f6b-474b-a27e-a06205692a58 1 Other Other +9a5b4225-9b29-43ad-96e3-78cd43a1071a 1 Other Other +9a5b43fb-e80e-4d19-81ad-337286d2161b 1 Other Other +9a5b6ac9-d11e-462f-bd23-faacd81099f0 1 Other Other +9a5b712b-bf88-4ca7-bf77-9aa6ae487837 1 Other Other +9a5b881f-0234-47ba-911f-30d9cbe9255f 1 Other Other +9a5baacd-eb11-464f-9152-21e5b7b4a9bf 1 Other Other +9a5bcb8b-1dbc-4c51-b828-27d827c39baa 1 Other Other +9a5c5d72-07b5-44c5-82ce-1cc82c05c743 1 Other Other +9a5c9d4b-d951-4f47-b47d-bc27ceb87276 1 Other Other +9a5ca3a7-6496-46e9-8d60-9f5341dc39b7 1 \N Other +9a5ccb2f-23b0-490d-8a4d-5253b701d30e 1 Other Other +9a5d1d39-e0e4-47df-b013-b3fa0cb38252 1 Other Other +9a5d357c-3ad2-4704-a038-21889721d373 1 Other Other +9a5d3e56-e508-4411-9302-65553081aed1 1 Other Other +9a5d4c49-a3ef-473e-89e3-493983b50299 1 Other Other +9a5d663c-1f07-4245-b0bc-6cadf51c0cce 1 Other Other +9a5d7fc4-68a4-46a6-8aee-d7c9cac25535 1 Other Other +9a5d8b32-343a-4f52-82c3-d45b93ef954c 1 Other Other +9a5d8be3-4e60-42c3-afdb-d6d48bfdaeeb 1 Other Other +9a5e1d0e-ea80-4638-872c-2dd3b6f9aabb 1 Other Other +9a5e60ca-c8db-4e07-a695-a399adc844dd 1 Other Other +9a5e78f9-396a-46d6-8f95-c4b82813cf6c 1 Other Other +9a5e81ee-03dc-45eb-aec0-40bd22dd752d 1 Other Other +9a5ebce5-261a-4387-9c53-3c6583488b72 1 Other Other +9a5ee4ca-96db-467c-bcf7-644cc3a46eb1 1 \N Other +9a5ef680-317d-481d-a9c4-70afee80c276 1 Other Other +9a5f2147-4ea6-4613-9ebd-4ff1c3e8c659 1 Other Other +9a5f6152-8950-43e0-b70e-53b8aae1dad8 1 Other Other +9a5f683a-c8fa-4fc4-a3fa-d558315f8d78 1 Other Other +9a5fa6d0-6b68-467d-9da4-4342e5fb7223 1 Other Other +9a5feb83-3b04-4544-8cb2-b469202019b3 1 James Other +9a600332-748a-42d8-89f1-b446fd172499 1 Other Other +9a6067bf-ba99-44dc-a21c-994fe4fff919 1 Other Other +9a60de22-8eea-4b9e-b946-f1f23fed9e4f 1 Other Other +9a611c81-9c92-4c72-8ca2-cd659edf71dc 1 Other Other +9a613722-3b8b-4f63-9a09-0d4a4a82d290 1 Other Other +9a613c1c-0485-49d5-b247-88125f6af194 1 Other Other +9a6180da-ea8d-44db-ab8c-aa685cf23d1e 1 Other Other +9a61a4f9-93c6-4aa8-a317-b133d741bd23 1 Other Other +9a61cdb3-5787-48cf-8ba5-55ef2adcb6a6 1 Other Other +9a61f932-703b-4421-8b54-27bc02b77ce6 1 Other Other +9a6217de-adb8-438a-ae91-fc94a0a99e11 1 Other Other +9a6282ce-b33c-47e5-9a40-a51d7cdcc190 1 Other Other +9a629e48-407a-4032-b691-d9aa0e473767 1 Other Other +9a62bf83-b346-4daf-bf6e-1b9dd06a8c8a 1 Other Other +9a62d267-1e70-4ef3-8d5b-793f12ed9216 1 Other Other +9a62eaf7-9c9e-4365-a382-01fb49689df2 1 Other Other +9a636b89-9f9c-4aed-a3cd-8bb78bfa4cbe 1 Other Other +9a6382fe-2bac-4cda-a6cd-bf32463bc890 1 Other Other +9a63a06e-47ef-4bb2-a767-a5a2b24b94e8 1 Other Other +9a63a28a-2395-44ad-bb98-f30330af82c3 1 Other Other +9a63c993-257d-49ca-935a-542f275fa0d0 1 Other Other +9a644416-69a4-40e4-8d74-c40bb38e44de 1 Other Other +9a64d80a-1a99-4fda-9d00-5aab7f8b44c7 1 Other Other +9a652c9c-0162-4ad9-9260-3f6f1c2b9f3f 1 Other Other +9a653356-0a30-431f-9603-b605720242c1 1 Other Other +9a659d44-4751-4a40-8f10-a2b8200f7a99 1 Other Other +9a65b4bc-b143-4db5-bad7-dc806b433462 1 Other Other +9a6614b6-e949-45f3-86bc-bc6de2105c69 1 Other Other +9a665176-abc3-41e3-b59f-f6682578af24 1 Other Other +9a667797-f2d6-492f-b60e-9d68e28f1635 1 Other Other +9a6773b8-0fda-4036-98fd-587df58b2412 1 Other Other +9a67c6c3-f244-4d82-82a2-4d6ee575b72a 1 Other Other +9a6801df-a3c7-46ee-be98-0a7984b5c67f 1 Other Other +9a68749b-e20c-43f8-a86f-b32b7fb65070 1 Other Other +9a68c57a-5a64-4be5-89f7-2f20d806f32d 1 Other Other +9a68e03c-94b8-4d8d-b713-de9aa9fc33b6 1 Other Other +9a68e0b1-7527-4511-bb81-961b3de14ff5 1 Other Other +9a68eba2-807b-4067-960f-265159d6ff3b 1 Other Other +9a68f0c4-757f-4177-9f0d-12a7eee73b31 1 Other Other +9a68fb6c-9fa1-4ae2-b7eb-ed7cdc304698 1 Other Other +9a69266e-7356-43b2-a991-8e29f8810f25 1 Other Other +9a694aa9-0169-4b38-b856-3537534b13a4 1 Other Other +9a698023-8a85-4485-bf5a-9eff6e1a13cc 1 Other Other +9a69c639-7c22-430c-8b6b-a41d7ef7b423 1 Other Other +9a6a07ac-f5f9-4a62-9229-4b1c2ed55400 1 Other Other +9a6a66be-d1ec-436e-a7aa-3e18e063ac7c 1 Other Other +9a6a67ed-ac9a-4353-86ad-e541844bc99d 1 Other Other +9a6a6a5f-9049-43bb-ba30-732f6733c787 1 Other Other +9a6ad148-6869-415b-888c-c4c32de67a77 1 Other Other +9a6ae97e-cc9b-4533-a35c-a737198402e5 1 Other Other +9a6b2499-ad60-483c-94fe-dfcf9f2959c2 1 Other Other +9a6b364d-a0f1-4637-8034-ed26e64d9fec 1 Other Other +9a6b4e81-e44d-4d20-ba9e-6faeec715e6d 1 Other Other +9a6bd7ea-115b-4e82-8a71-f63956ee8f4b 1 Other Other +9a6be2c4-42cf-430e-b882-b43e59b4eaa1 1 Other Other +9a6be53d-4764-476a-a20a-22f40b18b4a6 1 Other Other +9a6c0240-167b-41e6-90ca-cd8d9fbd70d3 1 Other Other +9a6c1bcf-08fe-4953-b50e-20ebb26792c0 1 \N Other +9a6c30d0-354f-4d12-b44c-39a571b823e3 1 Other Other +9a6c44b8-027d-4b68-94ed-cdd39ed42226 1 Other Other +9a6c68d5-7a8e-4381-8ec5-28e7efb5fd15 1 Other Other +9a6cf1dd-ba02-478a-9ab8-b89c4a71cd12 1 Other Other +9a6d0b1f-92c7-4814-9567-d75b4f26a17b 1 Other Other +9a6d3954-e59b-462a-bc8e-6e98227d39ed 1 Other Other +9a6d5d2a-6a0a-4de0-ab99-1001e5e7c6a7 1 Other Other +9a6d8e9c-578d-4426-8c2e-b2673a69cd42 1 Other Other +9a6e70e0-5908-4253-a2da-a63683fd2641 1 Other Other +9a6e89f1-94c9-4b6d-99e2-d904dde280c6 1 Other Other +9a6f1dbe-3b16-4ea3-85d6-255eb3bd9a71 1 Other Other +9a6f3c2d-45b9-4824-8889-77e0bbdd0e3a 1 Other Other +9a6f5049-30b8-4c3f-84ba-e1371ea2bd2b 1 Other Other +9a6f5d14-5d6b-4f68-9755-9875a604830a 1 Other Other +9a6f645a-47aa-47ea-8b29-5efab2f10362 1 Other Other +9a6f716a-559d-415f-953b-3b7fcf935688 1 Other Other +9a6f87b3-e734-420e-b6b7-9d7ffc344090 1 Other Other +9a6fbb42-4c7d-42e8-8f08-69ed03d2f3e3 1 Other Other +9a6fdddf-edaf-4ecc-8b47-ee4f8815d913 1 Other Other +9a6ff863-1ac1-4bb6-b0aa-2bd301515459 1 Other Other +9a6ff92c-c228-427e-b8cd-2a84c62fe789 1 Other Other +9a6ffc3f-9f64-43ce-9cb0-8125d655be33 1 Other Other +9a703e6f-906e-4073-9ec3-95c1b763bfaa 1 Other Other +9a705024-96bd-44b7-a273-29ff67e9b769 1 Other Other +9a708d69-f44c-4774-a14d-da5346568ae9 1 Other Other +9a709eab-df3e-4d6a-9568-41a5d920e982 1 Other Other +9a70e29d-80b6-4ca0-bb12-33b2938f5f23 1 Other Other +9a710f89-ff49-4003-a96a-1b97d7159254 1 Other Other +9a713b42-b385-4a21-8b40-3a92aad04bbe 1 Other Other +9a716b92-22e4-4b5a-b61d-aa80dac4b4d4 1 Other Other +9a71ec7b-2ca2-4060-95b8-c3f6daeda18f 1 Other Other +9a721110-3200-4803-8704-9aa0d9182396 1 Other Other +9a72524b-23e5-4f42-ba8b-cd118d545c62 1 Other Other +9a725749-5f1a-40da-a396-3bbba18dd204 1 Other Other +9a7259b7-addb-4ffb-90bc-15bf1cf767e1 1 Other Other +9a7294c0-bf87-4cf7-930d-5010202f972c 1 Other Other +9a732b04-72b0-4fbc-adb1-8e5a81d6b478 1 Other Other +9a73492a-3388-45d1-8111-e2608bb2cbe9 1 Other Other +9a73b645-a0a7-4a4f-9920-b8ee06f24d0f 1 Other Other +9a73e9ef-505f-41a4-9b52-4c6acdb50e5d 1 Other Other +9a73f473-1cc3-44c5-9d21-a3a54a844afa 1 Other Other +9a7428a6-dcab-4ae3-b47d-23832f0b8fb2 1 Other Other +9a744137-795a-42dd-92f8-06d3f08e2a5a 1 James Other +9a74cfc7-9eba-4e4f-afbd-cb6880e15032 1 Other Other +9a751089-4042-4c48-b0c3-7209b1e19636 1 Other Other +9a7541f5-f9c1-4adc-9d91-63941844c114 1 Other Other +9a7574ee-fdeb-4687-98dd-982bce8d4fd7 1 \N Other +9a759f0e-86db-4189-939a-02bb39ad00b6 1 Other Other +9a75b0d3-0798-483b-a04e-4aec4dda941c 1 \N Other +9a75cfbd-b8e7-4665-aaa1-a70c5823cf3a 1 Other Other +9a76258f-a35e-4f91-972c-d550cc8f6e3a 1 Other Other +9a7627fa-0660-41f9-8068-791442e048f7 1 Other Other +9a76472e-8667-4498-99bb-d46d74be6bee 1 Other Other +9a765933-f2b1-46ed-a2be-adaea797a6f1 1 Other Other +9a768b37-c908-4065-a662-b48eaebcdcf7 1 Other Other +9a7698c1-a750-4778-b8ab-e6f9cdc7b115 1 James Other +9a76d38d-77fc-4986-bdc6-e1b88b6db7a1 1 Other Other +9a76d511-ef60-480a-a9b3-289ccfae22e0 1 Other Other +9a76df10-104d-4144-a7b7-6a76f825ef19 1 Other Other +9a777f5e-6051-45bc-b816-bd9813817f8d 1 Other Other +9a7784cb-a976-46f2-9ea3-b23ecc46610b 1 Other Other +9a78290c-c5bf-4b6f-a36c-0f5f6578ce21 1 Other Other +9a784aa7-6268-4d23-8de8-eb4be70422f7 1 Other Other +9a78688a-efaf-4196-b8be-e8abff429aaf 1 Other Other +9a788aba-927f-4276-9b53-3c3790dacebe 1 Other Other +9a78f62b-e808-4bfd-a57a-db59b22133c6 1 Other Other +9a78fc9c-7864-4c15-8259-c63742bfa7cf 1 Other Other +9a78ffb3-499f-4f02-a178-ce24e51ba35e 1 Other Other +9a790a22-bedb-4bc8-9b36-1129b4fabdc0 1 Other Other +9a7929c8-e262-426b-bbd2-21cfeb0d59ac 1 Other Other +9a793918-99b3-49e8-affc-69f1f8616503 1 Other Other +9a794d8d-ca80-4324-a2bb-663ebb1a97f1 1 Other Other +9a7975bb-dd14-4136-bf06-76946a502b62 1 Other Other +9a797a1c-f638-4dde-ab5d-7840caf310f4 1 Other Other +9a79fabd-646c-4808-b24d-070f0dab0863 1 Other Other +9a79fc9a-9d32-4718-a33d-a237c81ad1a2 1 Other Other +9a7a999f-fadf-490c-9678-34edc4acb928 1 Other Other +9a7acfca-c936-4e50-90fd-05a379145cbb 1 Other Other +9a7aebc8-575d-402f-ab96-fb55bb71b4a3 1 Other Other +9a7af8ae-59a4-4d7a-a7a9-accd72204d7d 1 Other Other +9a7b040b-ca75-4629-a272-0898fece925b 1 Other Other +9a7b3caf-05e5-4ced-8758-946bee080eae 1 Other Other +9a7b4761-a7d3-48cc-8f24-01774f64e43b 1 Other Other +9a7b4c08-5183-4913-b6e9-a8ace71bd385 1 Other Other +9a7b62ca-33bb-4d7d-a610-1dfca2882078 1 \N Other +9a7b6f02-f684-4cbe-a4d5-4805d9140631 1 Other Other +9a7bb1a1-f27a-4594-ba72-36b0861b5b80 1 Other Other +9a7bbd67-5642-4b72-af68-ba6e5bb0f31e 1 Other Other +9a7bce40-8df2-423b-be2d-c4b40e4b4818 1 Other Other +9a7bfd8b-584f-492b-a62b-ebc736059690 1 Other Other +9a7c011d-f16b-43d1-b329-7587f3bc7433 1 Other Other +9a7c5b4c-7978-4009-b494-af57564954a5 1 Other Other +9a7c5b5b-ea96-4290-b892-d2ca07701561 1 Other Other +9a7c63be-41a1-4fe3-806f-d439ee6d28b3 1 Other Other +9a7c67ed-0731-4dc6-8250-3f19b1b7c993 1 Other Other +9a7c9a7a-cc76-40f0-bb28-1538915402d1 1 Other Other +9a7cbd57-7c8c-46a7-bd71-157663dd0bbe 1 \N Other +9a7d4867-8c8a-4abd-b08a-cd9cfb54dea7 1 Other Other +9a7d9f55-8f6b-4597-8541-7b7ffb697899 1 Other Other +9a7e11ff-71ee-4558-ac71-23b9b869fe54 1 Other Other +9a7ea9b9-865f-4109-8291-131534eed1a3 1 Other Other +9a7f1bf5-7476-4a43-9432-9b6125bcf1e2 1 Other Other +9a7f1c54-f48b-46be-b4a4-7e2e393fb51d 1 Other Other +9a7f3754-1cfd-4f3e-bf05-6722e3e86328 1 Other Other +9a7f46f8-263c-4528-b45d-c02a5149e5a9 1 Other Other +9a7f7ea0-3359-4db6-abff-f809d434d033 1 Other Other +9a7fa98b-17b3-44dc-9884-4db1078a8bed 1 Other Other +9a7fbc02-f094-4d14-8b2b-f9fe47125b78 1 Other Other +9a7fe8c9-842c-4dcb-91ac-8350263973e9 1 Other Other +9a80081d-4996-4905-98ef-8fee42b5ee02 1 Other Other +9a806318-3d13-4627-aed8-d4591deaaadc 1 Other Other +9a80ebc0-3ef2-4622-889e-2a0a32d473f4 1 Other Other +9a8150aa-336a-4bca-8975-79e6b1027e07 1 Other Other +9a8189e2-70fb-49ad-9fa8-d436ddbb44c5 1 Other Other +9a81afe4-2489-4421-80ea-405477d22dac 1 \N Other +9a81e335-2a58-4ad9-9ee3-b93b57c04c97 1 Other Other +9a81fd05-f3ac-4aea-8ea3-28210f9f9ccb 1 Other Other +9a825a50-f0b5-443b-8247-fd5c4b92386e 1 Other Other +9a8298c1-e5d9-4dda-a61a-0b0033733f3a 1 Other Other +9a82c3ad-5784-4cc5-8d22-37c2a2096eb6 1 Other Other +9a82dd82-f77b-4097-8716-659f1830646c 1 Other Other +9a8326fc-e003-4401-a593-0c303a23a8f7 1 Other Other +9a8330f4-c1d6-4778-95e8-0fe73f91f243 1 Other Other +9a834cb3-0e91-4631-bb62-fad37319e7a0 1 Other Other +9a835549-a80a-4ff7-995e-f9924aac89db 1 Other Other +9a838d17-ebd1-4306-90ca-b1d0ecdb3e44 1 Other Other +9a83d6c0-2f08-47c4-a3b1-143905f7e49e 1 Other Other +9a83e60e-2196-426f-a8c8-ff8f65db011d 1 Other Other +9a83f0c4-1877-4052-b2ed-eeb95c5d57a0 1 Other Other +9a83f188-8b56-4715-abbd-9fd62811fb8b 1 Other Other +9a841581-5d3b-47a5-8047-eba08f664356 1 Other Other +9a841862-ddda-45d7-a58d-637c7f67dcd4 1 Other Other +9a84db1b-d65e-470e-a30b-6b090c0cb180 1 Other Other +9a85136f-ee2e-42e0-8bed-3dbc738eee66 1 Other Other +9a8519d1-9846-4747-8a55-28c685bec052 1 Other Other +9a8549a6-e963-4145-97aa-f78df82bd562 1 Other Other +9a855dbd-d435-44ee-80cb-55756f9e55d6 1 James Other +9a85637d-87ca-4b23-8310-bf3e6e2ae41e 1 Other Other +9a859e3c-a99a-4583-9126-ccc37509d498 1 Other Other +9a85a0f7-751b-4a25-ad6d-9ad47f8ed868 1 Other Other +9a85bb3b-e9c5-4a1e-951c-fb6c2a47bf0e 1 Other Other +9a85c0c4-bdfc-4954-bf59-5dc5382aacc8 1 Other Other +9a860970-1fc5-4366-bc92-80a0022ece8b 1 \N Other +9a8626ce-74ac-413a-b10b-37b95976826d 1 Other Other +9a866729-5872-48c4-8cfa-5582d2ff002a 1 Other Other +9a867ccc-5fd5-4d6f-be4d-6629c78848c2 1 Other Other +9a8687bf-18eb-4a0c-8b52-4cff76d9641e 1 Other Other +9a868bf7-a2d1-4ebf-9119-9985b127fd71 1 Other Other +9a872c4e-da3c-4b5b-80ed-aa972673ae8d 1 Other Other +9a874ad4-eeb5-47c3-933d-3b446b751090 1 Other Other +9a878fd5-77df-4a15-951f-3e2cd596d470 1 Other Other +9a87bc66-034f-40e7-8a6a-62dc2c1d4376 1 Other Other +9a87f078-498d-46a4-b51f-68fc4398c15c 1 Other Other +9a88936a-b976-4a21-b799-296374b5e4db 1 Other Other +9a88a288-1812-431c-9edd-3bd182552ac5 1 Other Other +9a88a741-2dda-4440-abd5-b5619cdf393c 1 Other Other +9a88a841-1443-4fbe-a417-d467c00e22a9 1 Other Other +9a897c6e-b6cd-49b2-bf5d-2747b92c0fa3 1 Other Other +9a898121-2326-4ede-a32e-b6a6fabacfd1 1 Other Other +9a8a8b90-1d8b-4399-9d96-b93ac6f15c26 1 Other Other +9a8a9a3c-5dae-4af4-af11-6d95d0668ec9 1 Other Other +9a8aa391-352e-4302-9b80-cdc7984643cc 1 Other Other +9a8ac563-3409-4dbb-b434-805d71bb3305 1 Other Other +9a8ad3f2-854a-4e59-9950-7b953cbde3b2 1 Other Other +9a8b2388-ba1f-40af-9851-74fb95ba7c43 1 Other Other +9a8b276f-d792-4b09-a62e-ca9c637a058f 1 Other Other +9a8b4deb-0ca2-48f5-acbf-4c53bb722972 1 Other Other +9a8b6305-0ab9-4d9c-86a8-4ceda4a3fa78 1 \N Other +9a8b742e-24b2-4b14-a50e-2f160b8300a0 1 James Other +9a8bb833-19d6-407d-add5-c339f3f4e597 1 Other Other +9a8bd797-b7fd-4395-b8f3-944689f12b50 1 Other Other +9a8c0286-6ad0-43c4-9858-8e2cb9cdfee4 1 Other Other +9a8c2d3d-a94d-433c-9687-4082dce7e7ea 1 Other Other +9a8c503a-fad5-4d41-ba07-3561bbe5ab55 1 Other Other +9a8c8a5e-a32a-466f-b1fe-66e095c1a763 1 Other Other +9a8ca364-8339-425f-8b33-d6054b5e176b 1 \N Other +9a8cfcf4-694b-4ddd-84b9-92cf09f27285 1 Other Other +9a8d4d12-d314-4524-bdd8-2e960c6d113a 1 Other Other +9a8d4fed-2116-458f-8efb-d7c0cb29c131 1 Other Other +9a8d727d-27ee-43d4-8ebc-655f11a44647 1 Other Other +9a8de9b2-e47b-4632-add6-6983fc8893db 1 Other Other +9a8e3091-ae10-451e-86c4-0946ebb8fb86 1 Other Other +9a8e9394-716e-4d0c-a71d-79f0264fa311 1 Other Other +9a8eade2-0597-441c-b5eb-ff96f8b93dd0 1 Other Other +9a8eb7e6-f764-47e2-9884-54a504c0c19d 1 Other Other +9a8ed446-64e8-48d2-9223-e1901110c105 1 Other Other +9a8f2369-6595-4dda-a4eb-0b29f71eed77 1 Other Other +9a8f6635-035a-416b-b516-4b9b6216037d 1 Other Other +9a8f72be-2403-4f41-826d-c6aefbce2632 1 Other Other +9a8f99ee-4b6a-4498-8c30-566c98bdfef2 1 Other Other +9a907ef7-1730-43d3-89ff-afd508fedc96 1 Other Other +9a90c2ba-c25a-4d34-adab-4fbb80a2270d 1 Other Other +9a90dcd2-d6e0-4fac-8405-687151bc74c8 1 Other Other +9a90eaee-fa6e-43fb-932a-4a232137543b 1 Other Other +9a90f7f6-51fe-40ca-ab10-2dafd8ec0a67 1 Other Other +9a9104f7-535c-4a7f-82bf-820cd5c06e6b 1 Other Other +9a9117ab-b001-4b2f-ba80-14897292b7f1 1 \N Other +9a91236f-24d3-472a-92d7-1b764f2baf79 1 Other Other +9a9131c7-cd69-4226-bfa0-bf24048429e7 1 Other Other +9a914aa7-d469-424b-9395-c65e245cec0e 1 Other Other +9a916d3a-6926-4431-ba62-2645ca835c0e 1 Other Other +9a919400-a2f4-4e20-8fd6-a616a155c4e7 1 Other Other +9a91ac9e-d015-4749-b3c0-72c0cce942ca 1 \N Other +9a921e7a-d35b-4653-8a73-e2368290d219 1 Other Other +9a92382d-1098-428f-8f75-ea17de0f4ec3 1 Other Other +9a92ad46-7f50-492c-9afb-4ef37adf0d05 1 Other Other +9a92c51d-b23e-4fa6-8b82-f375bca8090a 1 Other Other +9a933da5-fd7d-4bfb-ab1b-3a43e46c4cdd 1 Other Other +9a93669b-ea95-45e9-820e-14e7695ef1f8 1 Other Other +9a936a6f-d267-4cf6-9398-8b266804039f 1 Other Other +9a938b06-46d7-4ad8-8bcd-1843ac732cf6 1 Other Other +9a9391bf-4948-4dd0-b66e-ea5aadcd72cd 1 Other Other +9a93b69c-53ac-49a2-a3d9-322bbb4d7d15 1 Other Other +9a93c815-6e6f-4b40-bdef-b3d6b5c400f5 1 Other Other +9a9400c6-6d62-4e1c-ae44-b59dc7836aa4 1 Other Other +9a941c29-e5cb-4913-8a3a-c656bbb8fff3 1 Other Other +9a9425cd-3147-4151-885d-97d599191c83 1 Other Other +9a946418-f2c4-4e29-9a7c-34a8c6c81d7b 1 James Other +9a947666-6115-42e6-a42f-7e3916919155 1 Other Other +9a9480e2-c750-485a-b8f1-f48dc35ecc19 1 Other Other +9a94b81d-ee51-466b-9a09-8b8e2907d2c9 1 Other Other +9a951796-5eae-4797-b3e6-be07c1907a0f 1 Other Other +9a9519af-464e-4093-9d7b-eb197905eae9 1 Other Other +9a95288a-6ac8-44ce-b865-3227caca3d8d 1 Other Other +9a9539bf-28c3-4ed7-81b3-99af81affd83 1 Other Other +9a95881c-fe3a-49d1-a192-0f0bb9a3e7bf 1 Other Other +9a95a7ac-55eb-444e-9d8f-dc3d089499f2 1 Other Other +9a95e7fa-c8d3-43f0-a3ee-260864a1e652 1 Other Other +9a95f700-6dbf-4d3c-93f3-9844bd2a8804 1 Other Other +9a96052f-b6be-42bf-ac88-d42a84595e4f 1 Other Other +9a960807-d78b-4f9f-97f8-9f980dddb1f3 1 Other Other +9a96357b-feba-4a99-a062-84299a3384bc 1 Other Other +9a9649fb-9777-4b79-a97a-c8c84f2db14f 1 Other Other +9a9678cb-b5be-4414-9f78-bee736a5180e 1 Other Other +9a96b510-52ef-4dd8-ab71-25db3202c67e 1 Other Other +9a96b91b-e07d-438d-b5d9-0431e5366347 1 Other Other +9a9747fd-a7b2-41ca-b4b7-5360bd9bae02 1 Other Other +9a97788b-38c0-45d2-a1c1-9419bb59b192 1 Other Other +9a97b862-711d-4451-ad1d-cf467de035c8 1 Other Other +9a984048-1b9f-4d64-a2b6-95802a0bef9e 1 Other Other +9a984f57-c444-4d75-b05e-6a3dde33a29d 1 Other Other +9a9860d4-a858-4267-845e-4daccabc694c 1 Other Other +9a98adf5-49f3-438c-bfed-0ddf35426698 1 Other Other +9a98e232-4e89-4360-8975-616e8a927b06 1 Other Other +9a98e276-a0ef-4945-9e04-78a5e4b0e464 1 Other Other +9a98fad1-e557-49f7-b366-58d28ad02bc9 1 Other Other +9a992537-f9ba-4bcc-93fa-52d9ada25383 1 Other Other +9a99932c-8831-43d4-be63-32bb830ecfaf 1 Other Other +9a99c026-a47c-489f-8e4e-7ec9066fd23d 1 Other Other +9a99c201-231f-459d-9a91-ccb7fa6d8d1b 1 Other Other +9a99c473-e09f-49b2-9bd8-add44a579f30 1 Other Other +9a9aa9b0-1a33-4c3a-8af6-ea0d06f07f05 1 Other Other +9a9afc5f-b866-45a0-ada1-f359341b1318 1 Other Other +9a9b03e0-5ad9-4b5b-98be-1bd5295da730 1 Other Other +9a9b25c5-cf21-4d67-8fdb-4a1fc1ae6830 1 Other Other +9a9b78e3-eb0c-4f67-b96e-7c19f50d12ce 1 Other Other +9a9d0e39-9047-4a6e-9615-37992e90cb16 1 Other Other +9a9d74e3-7b68-4f3a-9542-8f9e6fb2dd97 1 Other Other +9a9d8f3f-9062-430d-a4e0-6655e97f83ad 1 Other Other +9a9d930e-6b50-41de-824c-ae2dae15bc0b 1 Other Other +9a9e686b-c565-46d3-97d9-8f59a3c78990 1 Other Other +9a9e9f44-4f73-4c3d-89df-fb7b3463d651 1 Other Other +9a9ee1e7-2734-47b0-a2a9-e8c57d51c914 1 Other Other +9a9f4ba9-05b1-4f8f-bd57-0d10b25a386c 1 Other Other +9a9f97be-bb5d-4813-abb5-8dc3b42f975e 1 Other Other +9a9fc272-bae0-4ba8-bc12-ea31a46dd459 1 Other Other +9a9ff786-603f-4f05-bc3f-c3c9a3b5e401 1 James Other +9aa02a91-1345-458d-a3b9-5ebfe428968d 1 Other Other +9aa04def-131f-4df0-80d3-a3212478694e 1 Other Other +9aa08edf-0a78-47dd-a827-d3586379eb58 1 Other Other +9aa094d6-7f5d-455d-afc5-3a4d4996d041 1 Other Other +9aa0ae86-ccf2-48bb-8490-6477ca07121e 1 Other Other +9aa0e80c-91da-4ec5-943b-a9e34bce243c 1 Other Other +9aa140f7-4fce-48d2-a7f6-e875e9fafce1 1 Other Other +9aa1925e-bf6a-4c99-8b7e-359304e63150 1 Other Other +9aa1dd77-9bcd-4ba6-8d95-0fd46f5d9b9e 1 Other Other +9aa22aa8-06c2-44ab-addd-61a6c5ac1012 1 Other Other +9aa23e4f-7729-445d-ba28-35b16e3532f1 1 Other Other +9aa24183-bd9c-4826-938f-3c85692454fd 1 Other Other +9aa256d1-044f-4d05-a1cd-ca96236273c5 1 Other Other +9aa28640-570d-4f63-8d68-825298bf51ac 1 Other Other +9aa292b4-0472-49ee-bfdb-be6cf5bc5aa7 1 Other Other +9aa2b894-cdd7-4059-877d-d1286486c9bd 1 Other Other +9aa2d310-9631-4409-994c-572c4db5b8c1 1 Other Other +9aa3243d-8e95-4929-ab39-cccba584b086 1 Other Other +9aa32c3f-0a46-4998-a28e-a70cf755193e 1 Other Other +9aa36190-4655-4a6a-b127-a129ec430cb4 1 Other Other +9aa36b10-51ae-40c1-b956-04ecfd8b320c 1 Other Other +9aa38c49-a115-4a8b-b9c7-c37b5bff5133 1 Other Other +9aa39cd1-9ee9-41a7-8d69-11c7b54753a0 1 Other Other +9aa3c85e-ce51-4eaa-b7d0-e3a75e93bf2f 1 Other Other +9aa42fd6-611d-4f4f-8e20-e0922f0969de 1 Other Other +9aa44a10-54b5-4d65-9c4a-4ae953ef92ec 1 Other Other +9aa45720-f190-48f6-a318-0ba23910e2a0 1 Other Other +9aa46489-3469-43f2-afba-4e2237ec2e9c 1 James Other +9aa46cc6-e8b6-4aeb-a051-d549733614b3 1 Other Other +9aa4988a-e96d-4c7c-a089-ca485a42def7 1 Other Other +9aa4c95a-a303-46b8-9108-9d688f04449a 1 Other Other +9aa50b55-9334-4a9a-ab00-bdd42cb5ba88 1 Other Other +9aa520f5-f91d-4b3e-8aa0-1417ca1b42cb 1 Other Other +9aa54936-cb78-4495-9ea4-b54cd9a4c681 1 Other Other +9aa57ef7-4913-4467-b111-3e23555e59c3 1 Other Other +9aa5963b-436b-4adf-aabd-ff0ef94ec199 1 Other Other +9aa5ad6b-2673-49e0-934d-421ed5d82254 1 Other Other +9aa5c7bd-948a-4910-9808-b1136cf53e2f 1 Other Other +9aa5d83b-db38-4a86-8f7b-571cefc6b381 1 Other Other +9aa5f210-cda2-49c3-8b11-5ff6cd3ca799 1 Other Other +9aa6293c-b3ec-4680-a32d-76a2305b9a40 1 Other Other +9aa66008-5609-4613-a89a-833fab17bddc 1 Other Other +9aa69c36-8c68-4bd9-afc8-971c64c0425b 1 Other Other +9aa6e100-1be8-4939-82d3-d9f05e1fd806 1 Other Other +9aa70148-c4c9-4a84-bf9d-6eb4a3573200 1 Other Other +9aa71538-50df-4e38-8e99-e78dc9cf2257 1 Other Other +9aa79e7b-206e-486d-a233-fe8392f38cb5 1 Other Other +9aa7a33d-b49c-44bd-83ab-76f48061e0d6 1 Other Other +9aa7b803-9c27-4660-a49a-4811fe68024b 1 Other Other +9aa7f998-2d1c-42c3-b5e5-00d3b725eb9b 1 \N Other +9aa7ff0d-6f19-4062-8fc6-1cb98dac1d87 1 Other Other +9aa85faf-9b9e-4545-ae6e-0a0ac35fe910 1 Other Other +9aa8d860-b916-413a-90c0-b0d435fc973b 1 Other Other +9aa8f3ba-01f5-4bf8-bde9-804724a311cf 1 Other Other +9aa904bf-ef1c-4503-8c44-362116f5e0cc 1 Other Other +9aa91e2e-7325-4d6b-8d40-5724dbefd6ac 1 Other Other +9aa98599-8f18-44b1-831b-8d4478d367e9 1 Other Other +9aa9ad36-6e8f-45c2-9310-4a3a633e1534 1 Other Other +9aa9d1ee-91a0-4b73-b65f-134457c67149 1 Other Other +9aaa098c-e830-4b24-a654-1dc5500c4a44 1 Other Other +9aaa3282-b49d-49ff-bc16-fd656860133f 1 Other Other +9aaa9092-fbec-424f-9e7e-832cb711e9f9 1 Other Other +9aaadc64-41e9-47fb-88b5-f10310c60628 1 Other Other +9aab8e2e-1bed-4919-90e4-93fe65192fae 1 James Other +9aabded5-11bc-4197-8594-942440c173d6 1 Other Other +9aabeb1d-b82c-431b-b08e-0c2826b5c931 1 Other Other +9aabf232-2424-46d1-b5f0-e6a3ac801539 1 Other Other +9aabf340-0395-49ab-b7e4-eafc6885d44d 1 Other Other +9aac3046-8759-4d3d-b7f7-b7f79218a2dc 1 Other Other +9aac9ca3-1791-4e29-b710-b1109375a2ff 1 Other Other +9aacaf56-262d-49f1-935b-6b191b298c9b 1 Other Other +9aacba91-7411-46c3-95ea-c3cafb4d3ef3 1 Other Other +9aacd48e-aa14-4433-9e2c-2d13de622d73 1 Other Other +9aace4e7-9ed4-4a07-9c69-ae8b78cb58bd 1 Other Other +9aacea01-6f7f-4b81-804a-3ccefe8cb9ef 1 Other Other +9aaceb5a-9619-40e1-bb0e-72f86a375d65 1 Other Other +9aad0be5-ee00-4ed1-81d7-5fdf35a82faf 1 Other Other +9aad2955-576d-46e2-81cf-edf5e4a1439c 1 Other Other +9aad7215-3a8f-4bc0-8a82-81a3a533b6e6 1 James Other +9aad8d5b-18b2-4b34-9965-21e67ca6511f 1 Other Other +9aad9d00-0eef-459e-8669-750680e94440 1 Other Other +9aae73e5-22bb-446a-9396-1b1e94127998 1 Other Other +9aae88c2-3a34-4e7d-9038-d071362e0d8f 1 Other Other +9aae956a-d900-417e-8d9a-5c4d1b895c47 1 Other Other +9aaebc40-22ae-49b7-a787-d77f69f677f9 1 Other Other +9aaf4f32-8459-4174-8120-5525a4966a64 1 Other Other +9aaf5d5f-bd37-4a1d-b0d4-2bbca4f6e1e8 1 Other Other +9aaf7228-03ef-4a36-8349-d076752c2714 1 Other Other +9aaf7ae4-437d-41e0-8423-c3a540a989ca 1 Other Other +9aafc805-1584-4f07-9f0e-2f8b928fb02b 1 Other Other +9aafd4c8-4ce8-43db-a006-0307feca8a8b 1 Other Other +9ab006fa-7065-43b3-9827-76000380dee2 1 Other Other +9ab0793e-bb62-486e-8610-0a10123c6d1f 1 Other Other +9ab08514-7c57-405c-b5f6-2f9bb5d05099 1 Other Other +9ab08b2c-d88d-43d4-9c98-dc825bd8476c 1 Other Other +9ab0a133-70f5-4c05-9188-bd34df2f57be 1 Other Other +9ab0b2c2-2c9b-49fa-abb9-7c316627840e 1 Other Other +9ab0c215-186f-482b-a51f-0d2336f5afe3 1 Other Other +9ab0f141-cc64-418f-a0f5-52432ee0fd6a 1 Other Other +9ab16a86-a11a-4a71-95e8-898cfda4aaca 1 Other Other +9ab1dd28-e412-4e5b-a9d3-e42c1abe89af 1 Other Other +9ab23161-3efc-44bd-80e0-e99014f2360a 1 Other Other +9ab2e049-e68f-41a3-9c45-ec053bee12c1 1 Other Other +9ab2f128-70d9-410a-95aa-8e4c4a1c7e2c 1 \N Other +9ab307d6-fc7e-4961-ab98-fa7c48fa3072 1 Other Other +9ab3d29e-c75a-4147-b273-f2362550196e 1 Other Other +9ab40dd3-9d27-4f5a-b331-af8a4e4d9e26 1 \N Other +9ab431a5-1574-4d17-bdcf-79b4fec7c36c 1 Other Other +9ab456e9-f86c-4afd-bbce-4fad67a21856 1 Other Other +9ab45d04-8172-40e5-8e68-4271576f1bcf 1 Other Other +9ab46c26-1ec9-459f-b0a5-eacc0236d13d 1 Other Other +9ab47dc4-e05b-4d55-84d2-8f9d5e126a2d 1 Other Other +9ab5023c-d675-402a-9c1b-c79532cb31b6 1 Other Other +9ab649b5-6a49-476e-8624-12f2d629b424 1 Other Other +9ab65c25-8b82-41cc-808f-f62adf3adfd5 1 Other Other +9ab65d55-0664-4493-8238-b3a03e0255c3 1 Other Other +9ab6ad87-f068-4bfb-828a-fda907cd8cf3 1 Other Other +9ab6bdf7-657f-4155-bfbb-45bac0612843 1 \N Other +9ab6c335-0bcb-4e0b-b0bd-7d5704f39ab0 1 Other Other +9ab6d863-b968-4a0f-829b-1cc2dbcb2985 1 Other Other +9ab6dfbc-801f-44fc-82a6-235de45f36ce 1 Other Other +9ab6f7da-59be-4daf-96a5-b2e1267feb01 1 Other Other +9ab70a47-84cb-4ebd-b610-0ace178dec92 1 Other Other +9ab72894-4583-4cbc-b3c8-205a694f982c 1 Other Other +9ab7a9d4-0cbc-453a-bdba-4ec89fea683e 1 Other Other +9ab7c9e4-5f10-4648-8a8d-03ba75aaf318 1 Other Other +9ab86727-0c8c-4360-a464-c9199f427ee0 1 Other Other +9ab8b051-f70a-46e5-b27e-2a19b3444cb3 1 Other Other +9ab8c9d5-da97-44c3-9712-275e0e572362 1 \N Other +9ab8cc76-fde7-4eed-aa9c-45c879285cfc 1 Other Other +9ab8cfd8-7492-44a7-994d-6af5ae909960 1 Other Other +9ab95d11-2170-41a7-833a-4cd38d7c9482 1 Other Other +9ab9d21f-cbd9-47f4-bfb0-2ecd4e8cc9ad 1 Other Other +9ab9e605-3733-4c87-b134-a271b8880fbd 1 Other Other +9ab9eb44-faed-47fd-a260-3327cfef8adf 1 Other Other +9aba47eb-0a54-4312-8444-02c1716338fe 1 \N Other +9aba4d14-638e-4ba2-9ed5-42e91079a464 1 Other Other +9aba9ead-63ce-4355-98dd-45bcdd818f6c 1 Other Other +9abb13a8-7123-4c85-ac39-78d3af86ae3f 1 Other Other +9abb1f63-1987-4b77-905f-58c2ecdf40b0 1 Other Other +9abb3bc3-ea61-4e50-8a9b-f8919c05ad8e 1 Other Other +9abb5239-7e51-4c4d-95b5-fcb2e59cba55 1 Other Other +9abb5307-ab07-4023-bbfd-73b87f5900f4 1 Other Other +9abb5bc0-8109-4a01-ab9b-1ded7d0d6942 1 Other Other +9abb850e-65af-41f3-b9b9-dbc9c5d3dc58 1 \N Other +9abb8e58-911e-4cb0-8190-d52ee8ca9ba5 1 Other Other +9abc939f-0e52-4858-b695-5d518ea012e0 1 Other Other +9abcdb8f-e760-4f03-a69f-a55f7257c095 1 Other Other +9abd1554-b8cd-4bbd-9a96-d5a1f59fc1a3 1 Other Other +9abd60dc-ba37-4419-a516-4b9c7f154f04 1 Other Other +9abd785e-1c14-41a9-a4ae-9f29a5df0750 1 Other Other +9abdaade-5c59-4d35-865f-9ff80bc5b2d2 1 Other Other +9abe558b-2296-4973-a78c-55953b06b6ea 1 Other Other +9abe79fd-c793-47ab-a046-2b954aff69ad 1 Other Other +9abe903f-5ea5-4441-93ce-86cbabfa50d0 1 \N Other +9abedac0-6a2a-48d6-9b7b-dd54b4016a25 1 Other Other +9abeeb8e-3dd5-47b2-997c-f3c06f55a5af 1 \N Other +9abefa17-d96f-4d16-aa32-adcee974d499 1 Other Other +9abf23b9-5139-407e-9680-a70361e25351 1 Other Other +9abf2782-f7df-4cdd-8090-004ab67defb8 1 Other Other +9abf349a-7f64-4f26-9938-4cb65f461f92 1 Other Other +9abf34b1-3d94-4542-b460-0f2ea5a3e419 1 Other Other +9abfb58c-402e-4dfa-916d-ba9fae1bafae 1 Other Other +9abfb95a-6628-4731-bcf8-d46138cbb0ff 1 Other Other +9ac03282-08ef-4fc1-b0ed-d93e5ee234ea 1 Other Other +9ac0ad1b-115a-4794-a433-55e8e0c14d7a 1 Other Other +9ac0c16c-8c40-48ed-b838-8819d4a3030f 1 Other Other +9ac0c461-c8c7-4948-931f-502db84450a7 1 Other Other +9ac10ef2-caed-41de-a502-63c7233ccdc9 1 Other Other +9ac114a4-6b2d-4b62-a8ae-19868372466a 1 Other Other +9ac1314d-655f-4af4-b6ec-dc6530eca00a 1 Other Other +9ac136bb-fbaa-4ad5-aaf3-ee4e17e04f68 1 Other Other +9ac16055-0fb1-4b73-82f9-058630a581c5 1 Other Other +9ac182e3-8148-4822-bf41-5e429f89a8e0 1 James Other +9ac1be5b-ff09-470d-957c-174339bdb871 1 Other Other +9ac1f08b-ee5c-4fe1-bb5b-07a3065f3ba9 1 Other Other +9ac20093-87cd-4357-9a77-f63a40d82d7c 1 Other Other +9ac2469b-bb44-424b-b65e-71bd6da4072e 1 Other Other +9ac24ca2-ce8c-4488-8be8-0a50bb4234c9 1 Other Other +9ac2579c-e0d4-4cd5-adb7-d084d39c5720 1 Other Other +9ac263ad-ddc7-4de1-8b97-46f43c7ca500 1 Other Other +9ac2c5b6-912c-4ae4-96f3-fc3eea14510d 1 Other Other +9ac2fc19-27d9-463a-bcbd-898f72b56da6 1 Other Other +9ac31e19-5af8-4df1-9dae-2dbe66a7aec1 1 Other Other +9ac35245-3ce0-448a-b1ca-3a4d3d27984a 1 Other Other +9ac36d7f-1086-4bab-a97f-211a50ab5484 1 Other Other +9ac387da-2c78-40eb-b5b0-ebb7e8a194d3 1 Other Other +9ac38bd1-08f3-439e-80f2-91c425a5fd0c 1 Other Other +9ac39f9c-e181-4400-bf04-4b0376ad3936 1 Other Other +9ac3c298-3542-49d7-b97a-e3f71ba88ebd 1 Other Other +9ac43680-e681-4f14-8003-e168a7db940d 1 Other Other +9ac45571-4063-48f3-9557-2cf7b2b832df 1 Other Other +9ac46c99-763a-4447-afd9-113f87d5107d 1 Other Other +9ac4806f-7174-4bbb-bc61-7e66d1d452cb 1 Other Other +9ac4971e-cb54-421c-a573-643ca1889677 1 Other Other +9ac4b9cd-d545-4543-8729-b91ab4592e46 1 Other Other +9ac4e358-1098-482d-9583-1e2ef003d999 1 Other Other +9ac4ea69-3520-4bba-8c0b-b5e8dc1cc655 1 Other Other +9ac548f0-e000-4341-abec-0bc470859b36 1 Other Other +9ac5672e-0790-48d8-a0f7-1dac7b16fec6 1 Other Other +9ac5a97a-02e5-4b07-9a7c-b66949ecbfe3 1 James Other +9ac5c817-839e-41ea-8402-329d35ef031e 1 Other Other +9ac5dbf4-2a64-490d-bc71-798997830887 1 \N Other +9ac61e1f-6898-445c-a98a-cf8abb007aa7 1 Other Other +9ac62728-a02c-4e13-91a8-e166bf2365bf 1 Other Other +9ac6484d-65de-4d25-80e2-0498031dc12f 1 Other Other +9ac6efbd-9608-4533-981e-ec0f37640e56 1 Other Other +9ac71970-97a6-4ac5-9006-ced9ed3a3e17 1 Other Other +9ac730aa-e7e5-41c3-bdf7-d734c4caead7 1 Other Other +9ac76b7a-8b89-4620-823b-7159578d2f42 1 Other Other +9ac76c7a-eb78-41c9-83ab-8302e60a3ae2 1 Other Other +9ac77482-b233-4f05-9f4e-f79d1b80ee39 1 Other Other +9ac77572-bc55-4565-99bc-b6ba51eba52e 1 Other Other +9ac77759-e72d-4f99-b3e2-68607367a4cc 1 Other Other +9ac7b29d-8164-41fc-81ac-9a34bab542e0 1 Other Other +9ac7f2e4-11c1-4bc1-8baf-2b6dcd5a1008 1 Other Other +9ac815c5-cedd-40ea-80a2-dcf2cdf9f170 1 Other Other +9ac82410-add5-4974-8ff4-fb15f3d4a174 1 Other Other +9ac888f5-1be5-41fc-8157-3273a50a2224 1 Other Other +9ac8c0eb-e759-4fd4-97ea-2305fca68007 1 Other Other +9ac8d33b-6d48-4525-a0d1-11515d6747a6 1 Other Other +9ac8defa-19da-4597-83c8-c3a16db7a4aa 1 Other Other +9ac8e0ec-6a21-4317-8c2f-7a8de6b8a356 1 Other Other +9ac91476-da03-4ad1-9e42-6119abf53250 1 Other Other +9ac92813-1156-40fa-bf2b-a7dc51530a2e 1 Other Other +9ac96000-8a06-44d2-99ad-9ef78fa41f08 1 Other Other +9ac994eb-bdfe-4f50-9739-d2714e2eee2b 1 Other Other +9ac9a74f-74e9-4459-bed9-0934778a91b9 1 Other Other +9ac9cd36-a13d-4e9a-913d-ac2d133a9dd7 1 Other Other +9ac9e437-2425-44a4-a85c-66a5b3036c00 1 Other Other +9aca0740-c5af-4a93-944b-472da84a9c69 1 Other Other +9aca0a3d-2153-46d3-b05a-f0ea78b2b896 1 Other Other +9aca5c59-5d08-4e63-8170-bda679fac0bd 1 Other Other +9aca5fca-ffc1-44df-8398-2c0b67254b79 1 Other Other +9aca6fa8-e58c-4ae9-843d-1c6fce821f37 1 Other Other +9aca9d5a-603d-4d16-a749-ffa4208767f7 1 Other Other +9acac45b-c632-483c-ab28-ae2e28bcd152 1 Other Other +9acad1fe-fb38-44e9-b76a-f302c8d406c9 1 Other Other +9acb0663-908b-4c2d-a275-3d09fb8e3220 1 Other Other +9acb0c02-7e1f-4c9d-811c-fe631892c8c7 1 Other Other +9acb0e34-d977-428c-8858-73b062bf7e2c 1 Other Other +9acb120b-c2d4-420c-bed8-72ba6990de87 1 Other Other +9acb15bf-ff65-4a14-82db-b3917edf6901 1 Other Other +9acb7446-d2bb-4e08-bb4a-bb5015e5748c 1 Other Other +9acb9955-aacf-4820-9274-aafe351b0445 1 Other Other +9acc20e4-0977-4784-ad6b-1b6701d631b7 1 James Other +9acca504-f360-44f6-8d26-ce1321c7aee9 1 Other Other +9accc6c4-25a7-4de3-925d-a18bed96d33e 1 Other Other +9acd0197-c1f0-4fcd-898d-964ae6c4cd6b 1 Other Other +9acd13da-76e9-48e3-971f-0cd34a3cc165 1 Other Other +9acd2f63-4513-4075-b259-a23a193332f2 1 Other Other +9acd4d99-3d02-4d8c-9b1f-af1712c6c0a1 1 Other Other +9acdfd8d-67d6-4c0e-a6e9-01e088a71383 1 Other Other +9ace1fd8-b4c1-4685-a9e5-d495b042b28f 1 Other Other +9ace51c4-f0c0-42ad-aef8-57d98adaddac 1 Other Other +9ace5db8-2d35-4b6a-ace2-34e5d3f0eefd 1 Other Other +9ace720b-4528-40bb-a6b4-a8cfb13bc494 1 Other Other +9ace7ef8-f7b9-4957-99dd-7bcc5b773e0b 1 Other Other +9aceb998-8db4-4ca8-b15f-38ac5a542b38 1 Other Other +9acf78b9-cfba-4196-adde-f4af5bfcfd88 1 James Other +9acfb6ff-5ef2-41e9-a455-2a55ebd960d1 1 Other Other +9acfb779-aec3-4af1-b1bd-0038c159e214 1 Other Other +9acfc7dd-6593-421a-aab5-3845718a6f7d 1 Other Other +9acfccef-e043-4847-b05d-40b5932058f7 1 Other Other +9ad0019d-89c4-4155-a3c4-2c1b249a5685 1 Other Other +9ad033ba-7282-4590-a793-a6b85323f33a 1 Other Other +9ad049f2-8d6c-437e-9ab7-4c61e2aeba9d 1 Other Other +9ad0745b-cde3-43b8-b5d6-07458a93d357 1 Other Other +9ad07609-f1c1-4014-8de7-13867752c7d7 1 Other Other +9ad0b4c4-eec3-40aa-87a3-02ea4cb2a851 1 Other Other +9ad0d4d8-992d-4e79-a6eb-8a647f9889ae 1 Other Other +9ad118b4-1499-46aa-bf23-350ea965283d 1 Other Other +9ad11d47-048e-44f6-9c50-d1d807f4321e 1 Other Other +9ad13664-6a41-4410-b7e5-9d334c531737 1 Other Other +9ad14b62-eddb-45c1-8982-df66490012db 1 Other Other +9ad14bb6-5cf9-4713-bc94-602c6e50a033 1 Other Other +9ad16033-e95a-43c5-8ee5-97de0aa6fe18 1 Other Other +9ad180bc-2bd3-467c-8443-33304d869076 1 Other Other +9ad20919-46ed-4825-9b55-be91ae1b1c6b 1 Other Other +9ad20b6f-8308-46f4-8d1a-5756c64a733d 1 Other Other +9ad270ec-27f6-4552-9eb0-39f1df60b247 1 Other Other +9ad27fed-3713-4d4a-b4ee-389962e0e678 1 \N Other +9ad29242-ae44-4358-a37a-021218b4e5ee 1 Other Other +9ad2c17b-8a22-4608-aa46-d0a2f4a1ef46 1 Other Other +9ad2c761-cd4f-4815-b740-42c5940ea45e 1 Other Other +9ad3b5ba-4fd2-422e-bd2f-c8c59abe73f2 1 Other Other +9ad402c9-d4b9-47a6-8276-6ac64171845b 1 Other Other +9ad47b0b-91b4-4c43-a43d-b407fe163618 1 Other Other +9ad47f7e-1569-4d7e-b6b2-035d8cb097dc 1 Other Other +9ad492f4-1e69-40f1-ac8a-4fe8ba79a0d4 1 Other Other +9ad498e6-d563-4c8e-99f4-4c556e1b4f13 1 Other Other +9ad4ad40-72fb-4b95-a1b6-45ad02f3b1f5 1 Other Other +9ad507ff-7876-4e01-8e0c-e71d7ec62a48 1 Other Other +9ad55645-96e0-4625-ba10-63248e7cc60d 1 Other Other +9ad5a18d-009c-436a-a5f3-3e526b2769e0 1 Other Other +9ad5d4ee-ed32-4475-8dac-31dc2cf92e00 1 Other Other +9ad62cc5-e84d-4f25-9a73-3fcda17de3f3 1 Other Other +9ad634f6-639d-4483-b58e-9fdd0c3bf84f 1 Other Other +9ad6378b-92fe-4b6c-a6e8-ecd19d4ffd73 1 Other Other +9ad6528c-cb70-434a-91c2-8b92b15f37da 1 Other Other +9ad66364-56ad-4b2c-bcab-2bd23bb9ca1d 1 Other Other +9ad76332-0fc9-4b13-bbfc-36ac57b343cb 1 Other Other +9ad76810-d7c5-4325-a5c8-e80851e2ce8e 1 Other Other +9ad7944b-2084-4b7c-ad19-ff0fcc5caee1 1 Other Other +9ad79fe0-06e7-4f34-8c5f-92fd12eb3bb8 1 James Other +9ad7ae5b-645a-4730-8283-4b9387c766c2 1 Other Other +9ad7ec86-8047-4f86-9c3b-322972c396f6 1 Other Other +9ad83a69-61a8-4f8a-a256-7350de1b7b2d 1 Other Other +9ad85350-bbe4-44f1-a16e-1e756cfb98da 1 Other Other +9ad87e4a-f925-407b-b5cc-e4ad29452a8b 1 Other Other +9ad881e2-3555-4bdc-a8f2-a54ffeadd0ae 1 Other Other +9ad8bc6e-0d60-4546-a4f7-f1879a8d898c 1 \N Other +9ad8db31-9214-4414-90f1-d08a84295f8f 1 Other Other +9ad939d8-3944-42bb-a9ba-1cfd457a488d 1 Other Other +9ad95cd2-43eb-4910-a6e4-a3046390059c 1 Other Other +9ad967f2-0026-48d8-a9cc-1fb27c3802d5 1 Other Other +9ad96e75-9715-43fb-ade7-58eeb26cf534 1 Other Other +9ad9c335-4fec-43af-bc1f-9790124a3f05 1 \N Other +9ad9ff1d-69d1-4be4-bca6-7539d511c33e 1 Other Other +9ada7615-b281-45f5-828a-1995eb2ac8d9 1 Other Other +9ada8222-1fdb-4dad-a44c-ed6258939303 1 Other Other +9ada9b16-37f5-403e-ad13-50b66e168d82 1 Other Other +9adad4d0-a9b1-4255-bd5c-d2931986e05d 1 Other Other +9adb0efa-c258-4822-a1de-2671de113d19 1 \N Other +9adb10e8-9f03-44c0-8194-f919a0a1684a 1 Other Other +9adb28af-4454-4ccc-aebf-6944e6f0e9a1 1 Other Other +9adba464-a6e3-4403-9d67-22a7313a81e3 1 Other Other +9adbdf10-bbcd-4e7d-8540-fd8c98384e55 1 Other Other +9adc0b35-a076-40e6-9f53-940fe30307aa 1 Other Other +9adc1838-d37e-4caf-a5d0-f3595ec56a77 1 Other Other +9adc9615-45f3-4045-b996-20c1b747087d 1 Other Other +9adca4d5-4a7d-4f2c-b1bc-e0104a4fcbd7 1 James Other +9adcae62-2123-4089-96d5-90878a369fb6 1 Other Other +9adce66b-23d8-4742-b197-dd1403c7655d 1 Other Other +9add2c44-11fd-489d-b276-94a70c868349 1 Other Other +9add40b5-ad52-4e86-9c12-c71837ded981 1 Other Other +9adddd5c-7cef-4e1c-9351-5834cc7376e9 1 Other Other +9adde2b6-03bc-492e-8bb3-974fbe0f0f3b 1 Other Other +9addea0d-64e9-4e54-84ad-1779f60c0f31 1 James Other +9ade24c8-52e8-4379-84db-29f0a9c76aaf 1 Other Other +9ade83ab-676d-45b2-b512-86672b120951 1 Other Other +9ade8dd3-d3a8-4d8b-b448-617d147344b2 1 Other Other +9ade977f-a316-4966-8647-d56819209da2 1 Other Other +9adeb586-4b3c-434c-b478-e201f0ec05d4 1 Other Other +9adf55dd-b81d-4572-adc0-c0c89e19de44 1 Other Other +9adf5df7-3c28-4d1d-bdee-b9fecc3c9f7d 1 Other Other +9adfc305-4e06-4480-b3b6-bedb707839d9 1 \N Other +9adfce16-8eab-4ca4-b962-91e4ade9e931 1 \N Other +9adfe89a-c9d6-4523-ab04-678770768ffa 1 Other Other +9adfec8b-2cd4-48dc-ad97-80371e3029d9 1 Other Other +9ae018a1-b98e-4869-afa9-b45465f75688 1 Other Other +9ae07b3e-20d5-4dee-9ac4-2412d2645b77 1 Other Other +9ae17ef6-0e3a-477c-ab64-24d7ce3c9843 1 Other Other +9ae19260-3324-4c24-8d63-237288228629 1 Other Other +9ae1a655-3f2b-404f-b576-a29676a4d684 1 Other Other +9ae1b9df-6567-4f22-bc6a-1e9b777d2d07 1 Other Other +9ae1da15-4031-46dd-bcb0-914a82397121 1 Other Other +9ae21b44-cdff-4f35-9f64-4249a5f02702 1 Other Other +9ae2ccfb-0acf-4fab-8285-25738e632256 1 Other Other +9ae31aa8-0c59-4f79-a431-c345ac4b0a15 1 Other Other +9ae33f03-ecec-4b8b-8eb3-372dae84c341 1 Other Other +9ae3484c-88f2-4c57-8fb4-5e3afe062001 1 Other Other +9ae37993-856f-45a2-b8f2-0c282977a332 1 Other Other +9ae3acbc-5191-4627-8894-d28907a74375 1 Other Other +9ae3d4ba-e8ef-4f85-aa09-f579b43e4fe5 1 Other Other +9ae3d85b-8835-44ed-a8b0-21704989a150 1 \N Other +9ae3d9ef-c94d-4bb2-88ab-cf4616ee13db 1 Other Other +9ae40050-51d0-4d6c-8119-215ccab7f985 1 Other Other +9ae41a8f-4176-454b-a097-cc3090d6aab0 1 Other Other +9ae48fda-26c3-4874-94de-e7d36050b630 1 Other Other +9ae4e3fc-9048-426a-b55a-a14045b0fc42 1 Other Other +9ae57a48-1b77-4949-b642-02e7a5f9988f 1 Other Other +9ae5930e-f509-45f1-8d3d-0d9b4e4719d7 1 Other Other +9ae5d270-c27d-4bc4-b802-bd9049bf68ed 1 Other Other +9ae5f43d-e13e-44fd-ba6b-65b643843e13 1 Other Other +9ae620e8-2ca7-4a22-80da-916ef7075312 1 Other Other +9ae7959e-ef4a-470a-a00c-f3d384f735d5 1 Other Other +9ae79e2f-bf90-4e3d-bbfc-4b127bd408d7 1 Other Other +9ae7dc70-7c33-4f3a-9721-c9fe889bd221 1 Other Other +9ae7e92a-077d-4b8f-9ca3-e48e4b458a82 1 \N Other +9ae80f69-30ca-4acf-87ca-9d39e0f85244 1 Other Other +9ae81173-f8d7-4b9c-814b-d211b227fde0 1 Other Other +9ae83b4f-07d9-43f0-8910-166ad027adcf 1 Other Other +9ae842a0-8728-4eea-b3f5-d8c0ef1a3311 1 Other Other +9ae84564-505a-4704-88bb-a4980cbec4de 1 Other Other +9ae8735f-e1ed-4215-918e-09f6ece7cf21 1 Other Other +9ae888a2-fafa-47ca-8b97-9f3d7ad70b4d 1 \N Other +9ae94245-3191-4278-bfc6-35507e2517a1 1 \N Other +9ae9443e-54b5-4837-a4bd-be0d8246e655 1 Other Other +9ae97d60-3679-496f-830e-71cf2d9258d4 1 Other Other +9ae9855f-99b5-4b0c-91e5-17f94fc7e4a8 1 Other Other +9ae9ec31-52c9-4f40-a4cb-337ec8ff0317 1 Other Other +9ae9f1cd-e944-4009-8127-b5d1f0806b60 1 Other Other +9ae9f407-84a9-436f-adba-ce725210a944 1 Other Other +9aea194a-0006-4bee-803f-c34f0d0f58c4 1 Other Other +9aea471d-1e3d-4a5a-bb4f-69c819ace48a 1 Other Other +9aeac3d4-0d55-47c4-8802-a2c587bd8017 1 Other Other +9aead6bc-5cce-4119-97b3-9636ffcdade1 1 Other Other +9aeafa49-85a7-4527-b8a0-9f23a8f47c55 1 James Other +9aeb26a4-9399-4487-a853-ec13de726c9c 1 Other Other +9aebaea1-a4ce-4ed7-a2f1-8a4e0d2ca241 1 Other Other +9aebb5f7-26ea-4d35-b54d-6ae9e6e8d377 1 Other Other +9aebbeca-86c9-4c2a-abe0-d80d38215a41 1 Other Other +9aebe2e9-3974-41e1-b73b-5c249d4f2724 1 Other Other +9aec25cd-dc49-4291-8079-4c5725b46981 1 Other Other +9aec26b4-2ada-47c3-82ed-9dc0afab6779 1 Other Other +9aec2e52-8b66-4f69-90c8-e567a23e406f 1 Other Other +9aec6097-79ff-4e0f-a7aa-a3f822e44098 1 Other Other +9aec98c9-a5c2-4608-9ea4-71f82aa90022 1 \N Other +9aeca4e3-5150-4a82-94fd-9f03157e21f9 1 Other Other +9aecbdf1-2457-4f8b-bb3a-ef90d7526ca3 1 Other Other +9aed479c-cb33-43f9-8277-2513f37db98b 1 Other Other +9aed5b1e-4cad-4630-a387-d1cbf71594dc 1 Other Other +9aed6338-d63d-4454-8ccf-99516ff40e37 1 Other Other +9aedce2a-5ed6-474c-ae0d-9f899ed36541 1 Other Other +9aedcf86-1b0a-4ef9-adb3-e75722a6d880 1 Other Other +9aee467f-96a2-4c2e-af24-81af2059ec80 1 Other Other +9aee9bf6-4e11-4772-a35f-2b5e558cf2b8 1 Other Other +9aeef216-edd7-43ce-91b3-1dbaf8fd085c 1 Other Other +9aef1732-b9fa-4d3d-aae8-0706d15dfbc8 1 Other Other +9aefacb5-1f6a-489f-9767-a5af05dcd09e 1 Other Other +9aefaf20-18c8-4e81-a5a8-ff28c486ed61 1 Other Other +9aefc845-98af-44b3-b9e9-764a6810f35c 1 Other Other +9aefe067-c029-4bb9-8981-d69d2a8c1a40 1 Other Other +9aeff7e0-25ea-48b7-85ee-bdfc666917ad 1 Other Other +9aeffa9d-edcd-4048-a5b8-a553d815bcf9 1 \N Other +9af04a20-8fc1-48de-b0d1-6dc5b42f5e9f 1 Other Other +9af087e4-2c0e-4674-b094-63a1540f3875 1 Other Other +9af09ee1-cec7-45de-a48d-63ca6ee012a0 1 Other Other +9af0cd5e-4098-4002-b90d-482db8adc3e1 1 Other Other +9af1381b-622b-46ca-a7be-f8f721c879e2 1 Other Other +9af14958-c5a4-4fc6-bff1-cbf4578e3c2f 1 Other Other +9af16547-665f-4a38-a196-b290975fd655 1 Other Other +9af1cac8-a868-4b1c-b879-6341712e873b 1 Other Other +9af1e4dd-88ff-4c38-8166-2930035e1055 1 Other Other +9af22c65-cc74-4951-a202-da9cc2b1bde1 1 Other Other +9af27a0c-26cf-451d-ace9-b1f7a0c06963 1 Other Other +9af2920d-0cad-4592-87c0-f02b66448f3c 1 Other Other +9af29f38-cdcc-4b57-93e4-b7b986c162f1 1 Other Other +9af2acef-41e1-4979-bce4-fe5da84486fa 1 Other Other +9af2f366-578f-4d48-93be-b11e69e7c122 1 Other Other +9af31406-8d79-4355-adad-37a50eb8b893 1 Other Other +9af3197a-1612-4b99-9bee-d387cd02e1fc 1 \N Other +9af319ea-22b0-4bc1-8301-aa7ead6e6976 1 Other Other +9af366ff-7034-459f-85fd-9d3ef52a93d1 1 Other Other +9af37efe-df91-45b3-b73d-bb311374d3f3 1 Other Other +9af3872b-9424-4942-9abe-8f080d4992ca 1 Other Other +9af3e897-e7db-41cf-b1da-5a9d32fc8e2d 1 Other Other +9af40b1e-9589-4d9e-8467-6119c87e723f 1 Other Other +9af40b48-e240-486c-aae9-4b255612caed 1 Other Other +9af41c09-2b0b-4ac2-9f02-efc3f29d00ff 1 Other Other +9af42218-1cec-45c6-a6d0-732db4237b6b 1 Other Other +9af44982-8ddb-4f99-b6f6-37608098bcfb 1 Other Other +9af46ba7-b33d-4237-8010-7fb1acee3dd8 1 Other Other +9af46d09-2268-4049-add1-adb01dea66c7 1 Other Other +9af483f1-6ea8-4749-ab65-4f6a7c54e1be 1 Other Other +9af48924-4d42-4bfe-aa88-f8a1284257f2 1 Other Other +9af4be84-809b-4077-9aa3-1a7732934a10 1 Other Other +9af4cb4f-0240-4ca0-84d8-a9c799a68865 1 Other Other +9af4ce7a-8291-4544-844d-bc91a74afc09 1 Other Other +9af4f255-4068-4aaf-bb17-7051f4b649f1 1 Other Other +9af5228d-f21f-427f-b721-8d5539fab07c 1 Other Other +9af58382-3493-4fe1-ad6d-0c426c1a2e90 1 Other Other +9af5a379-96f7-4530-984f-09be956ce929 1 Other Other +9af5da22-601a-4a10-ade1-d30eb61bb7ba 1 Other Other +9af5e819-3852-46e4-9ab5-aee19b36eb7e 1 Other Other +9af600fd-04c7-4e3b-9102-4f45cbbd5f95 1 Other Other +9af62954-f8ca-4e40-84c0-1b2d0435391d 1 Other Other +9af663f8-e0d4-4f9d-94fa-49920af3c519 1 Other Other +9af6aef6-f3c8-47ec-9e9a-dc157a2f9ca8 1 Other Other +9af6dff1-2f33-46f7-8508-64a21ba94019 1 Other Other +9af7678e-0cb3-4df6-811c-f91bb5fbd6f4 1 Other Other +9af77eb3-cfcd-46f2-b342-151f25075bd6 1 Other Other +9af77f84-3487-4c76-9717-1fe9d3166246 1 Other Other +9af7bfb2-dcd9-4b39-a268-c27444b136a5 1 Other Other +9af7dce8-45a7-4a99-87a6-abed387a8f48 1 Other Other +9af7e589-1402-4efc-9129-925595a38c4a 1 Other Other +9af868bf-9734-4408-bad2-4e044d399cd7 1 Other Other +9af8b909-0570-4811-9852-3dbf331058b3 1 Other Other +9af91a5f-5974-4975-bbed-b8efb2c87c21 1 Other Other +9af929e3-0e18-4715-9011-472ce3a4ded1 1 Other Other +9af9481c-1593-48d7-8e50-257e5f97c1ce 1 Other Other +9af96667-c4db-4515-b1d6-e1621e916059 1 Other Other +9af988c6-2981-4e2c-83a9-b63639375d18 1 Other Other +9af989fc-e15f-4056-875a-17c7da493a81 1 Other Other +9af99a34-1d5a-4c15-90c9-0ebbb1e99028 1 Other Other +9af99a53-5d2e-4b9a-ab82-fb2d4f1f49b5 1 Other Other +9af9bc41-2fb0-4401-a0ef-86036d29c35c 1 Other Other +9af9d102-bc43-40fc-b16d-a8e22575c43c 1 Other Other +9af9e21d-3ef9-43bc-b84b-5845256913bb 1 Other Other +9af9e480-ea22-4653-a433-1cadbce1c147 1 Other Other +9afa109b-a7e5-48eb-9869-2006b5c284ba 1 James Other +9afa24de-6b3a-4243-b2a3-cf90ee21c5a7 1 Other Other +9afa3468-5316-4492-adf2-e242f8372e26 1 Other Other +9afa8015-4b6a-4a3a-8d01-b4d5b3007080 1 Other Other +9afac2c5-4782-4500-b9ed-5c9d4b213c9b 1 Other Other +9afaddcc-0467-43ff-886f-6a107e1e8e4f 1 Other Other +9afaf46b-9515-4385-946f-8024517bd7f5 1 Other Other +9afb16ef-1e90-4ec2-bae1-48f7e570a277 1 Other Other +9afb6135-e08e-43db-a015-3c005c322aac 1 Other Other +9afb7c5e-24d5-4780-8530-6b2dda55e6cd 1 Other Other +9afb9798-2606-46a7-b20e-93a4d9367e6d 1 Other Other +9afc2172-965c-49bd-88b9-d1321a7513c5 1 Other Other +9afc5261-4caf-4aa0-b5e4-ff1a2dd3966e 1 Other Other +9afc5de8-851e-4707-a068-90857a89be8e 1 Other Other +9afc6da1-aa63-4608-9b7a-f1d257f7e837 1 Other Other +9afcbaa0-647a-45c0-8c62-d80dc57f8544 1 Other Other +9afce67e-3246-4dd7-865b-6213e0058a7d 1 Other Other +9afceeee-ab78-4c1c-a653-2db643339a00 1 Other Other +9afd1088-8810-4178-ba2a-9c455e6fc85d 1 Other Other +9afd602d-18dd-45f5-9ace-fe6d6f84764a 1 Other Other +9afd9d4a-fd98-4c48-af0a-dfa4eb3edd6d 1 Other Other +9afe40b3-c615-47e5-b141-634a0e3f59c8 1 Other Other +9afe750d-1d09-4b0c-8b1a-f640c692db64 1 Other Other +9afe86b7-a834-4090-b8ff-cd00259751c7 1 Other Other +9afed386-9c92-4f87-8d7a-a97c5150313c 1 Other Other +9afefa38-1f38-4c03-968f-9637061df7f2 1 Other Other +9afefe84-7d23-467a-a5dd-06f0a9cb0494 1 Other Other +9aff005e-1782-4529-b2c0-20b9350757e9 1 \N Other +9aff0d01-4ace-480d-9483-7a25d0510f9b 1 \N Other +9aff5eaa-0d27-4bfc-a3c8-7b4ae027be93 1 Other Other +9affeb63-3ff6-4e9f-9d0a-f7704731664c 1 Other Other +9b014a7f-b178-4e4d-9567-ef44fc4a73b8 1 Other Other +9b015731-c898-461a-8722-88126f60ce70 1 Other Other +9b01729e-091e-4d11-818c-fc63ed572fb2 1 Other Other +9b0173b1-e6b0-4126-b75e-1a4794c91f79 1 Other Other +9b0181a7-4590-4b53-bb18-6c0904508606 1 Other Other +9b019568-28a9-485e-94dc-64ce04317563 1 James Other +9b01ba52-2c9a-437f-ab98-09237a425a87 1 Other Other +9b01d036-75a0-4a39-afff-658007e31692 1 Other Other +9b022794-881c-4daa-a416-d0e596a792c4 1 Other Other +9b023f8f-7ed1-46ef-b1dd-7d9fdc729c01 1 Other Other +9b0240f7-dac8-4140-9a4d-85cef3a53791 1 Other Other +9b0260cc-87de-4e8c-8179-ae7066e45800 1 Other Other +9b02841d-fd93-4afa-9c4a-15222a42e6cf 1 Other Other +9b02ec00-073f-4e23-990d-249451bf2c1b 1 Other Other +9b02f9d7-7da6-43c6-acf6-480f1b38dc44 1 Other Other +9b032863-27a7-4723-a1f1-08a50fb4482d 1 Other Other +9b035607-ecc8-42ab-8a54-45b905655672 1 Other Other +9b0356ea-fcf0-461b-b614-3036ea8bdff7 1 Other Other +9b0399f0-213c-4ef8-9f34-82ae9ccfeeac 1 Other Other +9b03f010-2982-4a2e-8253-1d300c5da825 1 Other Other +9b03f2e3-51a9-474c-a9a9-19e6ed17aa27 1 Other Other +9b04111f-4552-463d-b794-3333864427fc 1 Other Other +9b045dd4-4a01-4c7a-a4ba-1c1aa805e1ff 1 Other Other +9b047fef-8618-4ce6-ad77-6665b382eddc 1 Other Other +9b04a273-9b24-47f2-a3c9-638f182fba3a 1 Other Other +9b054c51-5f40-4eb6-ac76-54659e4e79a0 1 Other Other +9b056a23-ca10-4ef4-973a-fab7734a4873 1 Other Other +9b0590c8-29b6-487f-8d41-cca9eef252fa 1 Other Other +9b05a8bb-54a9-4040-a63f-6ead1dc64881 1 Other Other +9b05dfd2-133f-4286-aa02-31716b187b82 1 Other Other +9b05e5ee-e805-404d-be76-b91257cf0de6 1 Other Other +9b05f16a-ea76-48e4-a58d-5327436d88fa 1 Other Other +9b061811-c1c2-401c-b5d8-a3fea55d859d 1 Other Other +9b0649b4-1d19-4005-ae4a-f9463960547d 1 Other Other +9b06617b-846c-4d3a-aba8-c8051ce08981 1 Other Other +9b06c0bd-0db1-410d-a46f-60833d255a37 1 Other Other +9b06ea36-634d-4dbb-b6b3-d5b2df923a12 1 Other Other +9b06f2c1-91c8-4127-85a5-271fbbf8281e 1 Other Other +9b070a44-a5bd-4e82-983f-1460a6f20c96 1 Other Other +9b073100-68f7-4fa1-903b-eda71ca6be1a 1 Other Other +9b07600e-6d94-49ed-9f42-cdb96867e845 1 Other Other +9b07864d-736c-4721-9f62-6cd6999a0840 1 Other Other +9b0795df-ed52-4d74-ad28-dbb1a1cefb94 1 Other Other +9b07a9d2-d076-476f-a55d-a792fe41198a 1 Other Other +9b07cb5a-55b4-4750-9cea-bf5d4809f5fc 1 Other Other +9b080c49-a522-40cb-a9c6-7923f698e21a 1 Other Other +9b081276-e68f-43a0-b810-b58f0c06263e 1 Other Other +9b0815e7-d5c8-4473-ae4e-f32d74fee050 1 Other Other +9b081793-48ed-4305-b8e1-fc927372dd7a 1 Other Other +9b088aa6-dae2-4a70-b2e0-1df19387f8e8 1 \N Other +9b089099-52a8-49a2-b24d-9a4b357b1722 1 Other Other +9b089ab3-a8fc-4ce6-8365-d8dabc59b5d9 1 Other Other +9b08bdf1-6a99-47b5-8e5d-89b00e296707 1 Other Other +9b08c829-7033-4516-b277-d5b6cacdcbac 1 Other Other +9b096ee9-57b2-4e77-8574-eefa7bbc8838 1 Other Other +9b097276-fe8a-4a8b-b832-533f2e1f43be 1 Other Other +9b09d2fd-972c-4ba6-89f3-d303efad6f49 1 Other Other +9b09eadd-fdcc-4e0f-8608-040a93df3bb6 1 Other Other +9b0a012b-2291-41ce-8b7d-f2dc9aa00154 1 Other Other +9b0a0da9-15a9-4325-91b0-60be99c20ad1 1 Other Other +9b0a37a3-695a-4c94-a276-8b0f1b771b4a 1 Other Other +9b0ad42a-dbdc-4cfb-8e87-2330cbb07266 1 Other Other +9b0ae289-cc3e-4057-9aa9-2042212c9732 1 Other Other +9b0b1f57-7173-4f8c-8621-6ae2340097f5 1 Other Other +9b0b4db6-0327-4e84-84b6-956a2adda2f1 1 Other Other +9b0bbb2a-6339-4e37-91c1-58fed16029aa 1 Other Other +9b0bd651-4d93-4e74-9963-0d34af392ea6 1 Other Other +9b0c8ddc-4871-4d6b-98f7-d2755ab5a3c8 1 Other Other +9b0c9eb3-d997-44a7-becf-15d2532fdb1a 1 Other Other +9b0cc02e-8e58-40ef-8051-d4c81d61d77a 1 Other Other +9b0deefc-507e-4d9f-b46d-e070a4c81954 1 Other Other +9b0df447-ee3d-456b-bef2-3c4822119373 1 Other Other +9b0e92d3-de53-4a2b-99f7-bd20c6bd2c41 1 Other Other +9b0ef36a-3d4f-4f96-b0cf-39b786e8e0b9 1 Other Other +9b0f33a9-d231-45e2-ba74-8606d8e99486 1 Other Other +9b0fe55a-8593-43d9-ae29-ef351b4e970d 1 Other Other +9b0ff6a3-7a39-4bf8-9ac2-649444be0522 1 Other Other +9b103b83-5151-4230-bb3c-fc36c64c36df 1 Other Other +9b104431-5c85-4b4d-adf3-a96a694f2b61 1 Other Other +9b10552e-daba-498b-aa35-a5d2dac1f008 1 Other Other +9b107b2d-09a2-4838-a5a8-e6a038e1800c 1 Other Other +9b109605-7401-4aed-ac56-f225ded870de 1 Other Other +9b10a95a-1929-4e88-b4cc-8caa2be36a44 1 Other Other +9b111037-163c-4357-b81a-2a6830bc3ba2 1 Other Other +9b111bfb-8d1c-4cc1-be2c-f01595ffec4b 1 Other Other +9b113905-5e9b-4e4a-92d7-b56265a185bd 1 Other Other +9b118d9a-0859-4940-b4f3-0d809db62db8 1 Other Other +9b11c212-c305-4ebb-8cdb-d39530ef37fc 1 \N Other +9b11d844-b759-452c-84d2-4de72ba8eb4a 1 Other Other +9b11dc81-5910-4426-878c-cb4670e76f54 1 Other Other +9b1255e6-c4d2-44f9-a438-ff7ac771242b 1 James Other +9b12eae9-b45b-49ed-8932-6baa67db1199 1 Other Other +9b1318d2-2fca-4b8e-bb7e-9e031f0b6a49 1 Other Other +9b134beb-a137-4d81-9d47-dd6af2730df8 1 Other Other +9b135a75-011f-45dc-b720-bf06838dd972 1 \N Other +9b137d26-65f7-462d-b4ca-4ca258cfc629 1 Other Other +9b1386da-82d5-4274-92c5-0cafc85b412e 1 Other Other +9b138a44-43d7-44be-a73b-732d8b3fa24b 1 Other Other +9b1429a6-29fe-4add-b4de-50f396983e1b 1 Other Other +9b145287-9e19-4fe5-b1d9-ad4b8235a78c 1 Other Other +9b146604-f8d4-43af-a149-cfe93ed94a54 1 Other Other +9b1473c8-9be1-4d9d-9387-86ab5be2cac8 1 Other Other +9b147cf2-2d6d-4680-bec4-745b23137827 1 Other Other +9b14b78f-dae7-49c8-90ba-2615463e8ac7 1 Other Other +9b14e8af-fba5-4b2e-a8e8-b8478f1dc23d 1 Other Other +9b14f7d6-31cc-4e4b-ba7d-57ffc1161405 1 Other Other +9b15119f-b6cf-420f-8de1-e3fbf300c731 1 Other Other +9b153b40-9b3e-4882-b943-ac10e5277198 1 Other Other +9b154cbf-4a06-483d-a90b-55d63337f9d4 1 Other Other +9b159139-3b48-4cf1-9d7d-71645e903fbb 1 Other Other +9b15b7dd-597d-4e28-ad13-5f3fbd71df93 1 Other Other +9b15e520-9830-4771-86f2-dd98e4a82f5c 1 \N Other +9b15fa5a-ab76-48fb-892b-8feb40bd5c90 1 Other Other +9b15ff49-52db-405c-ae57-64a1af10877e 1 Other Other +9b166265-fd59-4795-be6b-e4e02b2e97db 1 Other Other +9b1675f2-d476-4813-be6f-f3618548cde3 1 James Other +9b1676b0-e1a0-4fd7-af66-87c3f1c0ccdc 1 \N Other +9b16c762-1464-4da7-adb1-47ada18c1085 1 Other Other +9b16ed32-d5e3-4393-94c7-7d456961a3e3 1 Other Other +9b176d29-6729-4ff9-8bbc-acd4d694719b 1 Other Other +9b17903b-ca17-4fa2-8654-ff1b13a5081b 1 Other Other +9b17af27-f897-4473-b89b-aa5521258cf3 1 Other Other +9b18c3d3-c25d-472d-b65c-d5118fdfa6cf 1 Other Other +9b18d117-be77-425f-b9be-e49b07484a8f 1 Other Other +9b195012-8e82-4919-9be1-f51b074f37a3 1 Other Other +9b1977bc-de5f-45b9-980a-08e17de9260b 1 Other Other +9b197f59-f767-414c-bbe1-66333685a681 1 Other Other +9b19bd52-a77b-4dd8-a7a2-0d2a5f2450c2 1 Other Other +9b19e166-af91-41cd-904f-67c0743c7649 1 James Other +9b1a0d7e-6b44-4ef9-b964-3ac50d670c86 1 Other Other +9b1a1c50-653a-423f-a931-4afa381faa64 1 Other Other +9b1a493f-10e5-41d6-a45f-5d1c30a70858 1 Other Other +9b1abc06-31ac-49dd-99d4-3214aa7c54cb 1 \N Other +9b1ad5fc-6045-4331-81c7-3d1e6b5d4457 1 Other Other +9b1b418a-54e4-49d5-9b28-88b96f7b7798 1 Other Other +9b1bc448-237c-41c8-9f57-c9636bef01f8 1 Other Other +9b1c1691-4060-4052-a980-f3f88d5ea9b5 1 Other Other +9b1c3932-2662-410d-ab6f-e466c54befc8 1 Other Other +9b1c4519-8d90-4896-a1bf-d5d0b25620df 1 Other Other +9b1c53c2-c45a-4eed-8102-c92e3bc21c00 1 \N Other +9b1c69e9-92fe-4065-804f-3e55d60a679d 1 Other Other +9b1c8347-488e-414d-ac6f-04a2a3dbcf05 1 Other Other +9b1caef2-e5cf-4454-b1d9-99c159a8eebe 1 Other Other +9b1cb7e4-d6e1-4579-8dab-0610dddf3c21 1 Other Other +9b1d601b-4d47-406f-8f33-e30987d49755 1 Other Other +9b1da2b8-194b-417e-86d2-b72c4fc9531d 1 \N Other +9b1da58b-fb60-4a9c-9eed-bc57c273a49d 1 Other Other +9b1df3b4-e809-40e7-a26f-f49b5a7edd51 1 Other Other +9b1df8d8-8dfd-4d0b-b072-9f8245bebdc8 1 Other Other +9b1e2a2d-6dc7-4032-9fde-29e0d5c40ac8 1 Other Other +9b1e50d5-225c-4567-b412-ca62afa28a61 1 Other Other +9b1ea74b-1eed-4b9a-af90-2802d66af1d7 1 Other Other +9b1f0468-e5bf-4201-8618-ab6310060b41 1 Other Other +9b1f248a-b9bb-41c8-afe6-ee38f6c3ca5d 1 Other Other +9b1f6058-8c81-46ca-819a-cc5f4019bcc3 1 Other Other +9b1fc934-6daf-4a25-a099-9be8d0b7d966 1 Other Other +9b1fd1eb-1691-4e1b-9660-76890fdf2e37 1 Other Other +9b1feaee-b6c6-467d-827a-978577733a61 1 Other Other +9b2051c9-b5d7-4cc9-a07c-f75f65820064 1 Other Other +9b208ba2-8b3f-4639-9a23-965e82a507d7 1 Other Other +9b208c30-3f24-421d-913f-933f1c37c574 1 Other Other +9b20c74e-6c17-4377-beb5-775dfaef6022 1 Other Other +9b210186-1ffb-4185-b91a-0b7f55d58042 1 Other Other +9b212c96-8f85-46f8-8530-abd157b6acbe 1 Other Other +9b213cce-61eb-4966-b380-82c58c98cca6 1 Other Other +9b2161fc-24e4-4dba-95a6-2650b37f6b2e 1 Other Other +9b21a08a-de18-4974-9305-f6258df1a911 1 Other Other +9b21efcc-115a-41dd-b8c5-aeee87bb8fa7 1 Other Other +9b21fc15-ec55-4bb6-845f-7f325d027232 1 Other Other +9b224d25-008f-45d1-8f36-2ca0bceb72a5 1 \N Other +9b225a91-11b2-411f-bb62-b4c4f8c6bf7a 1 Other Other +9b22a805-292e-412f-9b9d-5367ea30b2e6 1 Other Other +9b22afdd-8ca7-481c-8cb0-46a4b92dd65c 1 Other Other +9b22be5b-808d-4e54-8ed7-4256493e892b 1 Other Other +9b231355-f33f-4ffa-a05e-08bcd82ffa3e 1 Other Other +9b23383b-266e-403a-ac45-fd84da36f864 1 Other Other +9b23ca0e-575c-4e54-b7c4-e71e79dfa435 1 Other Other +9b23e5ae-4cd5-48d2-93e1-c8d7ee613b5d 1 Other Other +9b23edb4-5d28-4629-9a4c-063f2b5bf23e 1 Other Other +9b24ac2d-e4f3-4fe9-b617-e8e3551bc0d0 1 Other Other +9b24bf82-03bd-4050-8d87-84bdcb44c67b 1 Other Other +9b24c408-7046-4a20-b0dc-5b4a066d0001 1 Other Other +9b24c585-5fc1-44e5-9094-a575689a8987 1 Other Other +9b24cd57-6c59-4f6e-ba23-93e9ed03f23e 1 Other Other +9b2574a9-6936-4d34-a440-759c053d3db6 1 James Other +9b25a5a5-9740-430d-8167-e57e68108d67 1 \N Other +9b25ab64-7437-450a-90f9-88e1c4ace1ec 1 Other Other +9b25c5f2-8e37-435b-9fc1-39c073354f10 1 Other Other +9b25e9ee-a264-48f0-a4d0-40235d645615 1 Other Other +9b2606c5-8776-4c0d-829f-07745fa188c4 1 Other Other +9b260754-46ba-47cf-9cd3-c39d8dbeb536 1 Other Other +9b2608d3-f382-4afe-b3e2-fb03ce74330b 1 Other Other +9b2608e8-57fc-4f1f-a665-4dfe0fd6274f 1 Other Other +9b261f92-4e71-489e-a986-3edbc46e0dc4 1 Other Other +9b262582-18af-4e64-9d4d-4a46057098f2 1 Other Other +9b275f5b-1613-45aa-b831-3071313a9a65 1 Other Other +9b276b23-8649-451d-8f83-5078f512f232 1 Other Other +9b27bbd5-f483-490f-a99e-47a46e0b467c 1 Other Other +9b27ec76-a24d-458d-9e33-1813e5723593 1 Other Other +9b27f320-e992-465b-99f2-c9be08081a56 1 Other Other +9b280c9e-6d89-42ff-b2ae-0b3a18912ec9 1 Other Other +9b286aef-2eb8-4bff-a9d4-7645af6174e8 1 Other Other +9b28ade6-5bc6-4b40-9cf5-acb4d89442e6 1 Other Other +9b28b4b2-49bf-49eb-b764-a97b6bc3aada 1 Other Other +9b28f729-5737-42c8-a549-08f726f31550 1 \N Other +9b292b78-21d9-4ca1-8813-023a5eec2375 1 Other Other +9b293b50-e6ea-43f5-9cc6-68a49d6b055d 1 Other Other +9b29e3d2-391f-461d-b440-21b15d849c05 1 Other Other +9b2a506e-9b6c-4418-ad53-9c0bcd03abbc 1 Other Other +9b2a63df-8517-450e-b793-39cd70ad89c0 1 Other Other +9b2a6a8f-a958-4f0a-835c-9e5d178ec5a9 1 Other Other +9b2af165-c648-45a5-992d-c102637cb494 1 Other Other +9b2b0398-dacd-446e-b6b5-1630d10474b6 1 \N Other +9b2b35e1-f2bd-4185-9ad4-0ced727dd4ed 1 Other Other +9b2b9c30-a5a3-4197-86bd-edfa48225e6d 1 Other Other +9b2bc88b-833e-4526-adc2-f140a8ed9eef 1 Other Other +9b2bd243-4c2f-4362-baad-d127f5a67a4a 1 Other Other +9b2c1419-454d-4b8a-9ff7-11e46c576d26 1 Other Other +9b2c3133-74bb-4dcd-b728-4d77e5c0ec49 1 Other Other +9b2c3842-9f81-4296-90eb-984a3f847455 1 Other Other +9b2c605e-9640-49f4-abe9-76ab6e9e0f3a 1 Other Other +9b2c6c31-055e-4a45-8d30-b0d42b949ab0 1 Other Other +9b2c873c-699b-4a50-8842-e7a0d175b6d8 1 Other Other +9b2c9470-0e4a-4867-83e3-6856db843efe 1 Other Other +9b2cad53-6ea0-4f0e-ad1b-23201e624d52 1 Other Other +9b2cef1f-5387-40ef-926f-20573a578f34 1 Other Other +9b2d050e-bb81-471f-ab00-9e155b7860c9 1 Other Other +9b2d3856-45bb-4bee-b601-2b001ea6f5ea 1 Other Other +9b2d8641-09a9-4809-9dfa-41e329494247 1 Other Other +9b2d9e15-8495-4970-b3a2-ce1a9506ad59 1 Other Other +9b2e609a-9a83-42e9-ab9c-a793d55494cf 1 Other Other +9b2e85c5-d410-4d65-a743-b6c9c3972a9b 1 Other Other +9b2ed67d-11ad-4253-b70a-9071e1362312 1 Other Other +9b2ee264-b419-4361-be36-f5ebc60698d0 1 Other Other +9b2f7aec-38b9-4aba-9e97-0741ef90ecbf 1 James Other +9b2f9a9e-3820-4fa6-b6be-dbcf79ecf054 1 James Other +9b2f9ee2-b671-4748-8635-1c01f8574917 1 Other Other +9b2fa82e-a35c-477e-8e33-5bf107ab53cc 1 Other Other +9b2ff72a-5985-44e4-a389-5be6c54c007d 1 Other Other +9b300998-a26c-42d6-9d23-f7a73a427558 1 Other Other +9b314633-d778-4d10-8b7b-427b6050aa09 1 Other Other +9b317391-6322-4231-b98e-b3e958e6cba8 1 Other Other +9b3196c0-b877-4ab7-905d-70c1c9a8ce1b 1 Other Other +9b31bea8-f548-40f8-a3f0-cd0c5a0a4d19 1 Other Other +9b31c296-b767-4cfb-93fb-b3f77ff97370 1 Other Other +9b31d578-e1cf-4ca2-91ab-cb420843a36f 1 Other Other +9b31fc5e-0b11-4432-a39e-b5b0688417be 1 Other Other +9b320003-8083-4bfd-8d57-5abddbcd8867 1 Other Other +9b320455-ba39-48d8-9760-50089e44b220 1 Other Other +9b32695f-6b68-4e11-82de-e51fdc829d7a 1 Other Other +9b326f2c-9a05-4836-a1fe-c0d27743614c 1 Other Other +9b329e75-fcab-478c-929e-50e9757ea06e 1 Other Other +9b32c53f-1f90-4caf-820d-2a777cc274e9 1 Other Other +9b32e2bc-e6fe-4edb-92f1-c7e2e7589480 1 Other Other +9b32ff44-4872-43bb-9eb9-45513331cfc4 1 Other Other +9b333808-82d4-41b0-9cf0-4b0a6a91c9f3 1 Other Other +9b333ad9-b9a2-4be2-bbb1-39a10538602f 1 Other Other +9b335975-1082-4a57-9605-3f1aaf569e0e 1 Other Other +9b33635a-b7be-40ec-bece-ab82748b7de7 1 Other Other +9b3387dd-b974-4e9b-b3c5-e762ef853430 1 Other Other +9b33a4e3-e50b-4709-8204-b8ea0db13ead 1 \N Other +9b33e3d5-63f2-4ea3-90f9-9812600edd0f 1 Other Other +9b33e786-267c-4193-9bf8-cd6c23a5aaed 1 Other Other +9b342f00-1e7b-4af8-9448-ae8546bdaf9d 1 Other Other +9b34905e-5347-42d9-9848-150914ea4df5 1 Other Other +9b3490bf-21cc-467e-b3b0-9ee644862cd2 1 Other Other +9b34ce68-deff-4543-8063-2e4484291e5d 1 Other Other +9b34e581-5598-496b-b774-8a240cdb0c52 1 Other Other +9b351db7-17d5-43e9-81d3-caa64585c49b 1 Other Other +9b351f79-2faf-4f5a-825e-df5f89c0c85b 1 Other Other +9b352160-810c-447b-a7e1-da6f714887a3 1 Other Other +9b354baf-9e8e-4a1f-a034-0b7380739014 1 Other Other +9b35e5fd-adce-4a26-b780-82f2abb79890 1 Other Other +9b362e16-4114-4df7-a600-e72887781cb2 1 Other Other +9b362e9b-7672-4504-8b50-b5d2c8e10466 1 \N Other +9b364461-4998-4553-903e-75f2a1aa37c2 1 \N Other +9b367614-139f-43e2-a393-200b70379aa6 1 Other Other +9b36a909-ee75-4fbe-8abe-63abc7c7ea56 1 Other Other +9b36b85b-20a9-4c75-a51a-cae1ea16a625 1 Other Other +9b36fa5f-0d2b-48cc-b468-6f61c698750a 1 Other Other +9b37364b-3f30-40b8-b392-fc1d093eaab4 1 Other Other +9b375ba0-e024-45cd-8ee4-71fa75f7a8ce 1 Other Other +9b376cc1-c6f2-41ca-9513-5f2ccc382bae 1 Other Other +9b37e3a6-7804-478a-ba71-410a297358d2 1 Other Other +9b382c89-da8b-4ca7-9550-322ccb40c345 1 Other Other +9b38872b-feae-4b85-a157-a52a6bc8c000 1 Other Other +9b3889bb-6021-465d-b481-6ef352f13057 1 Other Other +9b3894b4-4d4c-4a31-809d-a0da8756a888 1 Other Other +9b38b797-a77d-4dc7-8d9b-1a3ee3ea9554 1 Other Other +9b38bdc0-3b65-4f18-adee-df516fd0c0b0 1 Other Other +9b38ee21-c916-4577-83d3-520af754f850 1 Other Other +9b391716-7672-42b1-9643-652af4bb9edb 1 Other Other +9b39494a-a82b-4023-9f4c-46ad80dbcb64 1 Other Other +9b39761b-b6ed-4268-bb86-bb2f00ef3b8b 1 Other Other +9b398de0-18aa-4699-b417-bd586cabb81c 1 \N Other +9b3a5b15-b0e8-4fce-bcf4-a75d67747c99 1 Other Other +9b3abad4-2116-4fe2-b73a-7210d76adb8a 1 \N Other +9b3b758d-0a6d-469d-8486-d2182cce0190 1 Other Other +9b3b8c0d-a369-4ce5-81c1-84c1ca9c9079 1 Other Other +9b3b9ae8-74a5-41d2-b31a-b684998fed6b 1 Other Other +9b3bc291-ca41-4cc7-a4a6-832bb5d2537b 1 Other Other +9b3bcff9-0068-4343-807a-c7248c434b1f 1 Other Other +9b3d1839-ea32-4908-a9a7-9bd7a9a12b09 1 Other Other +9b3d6add-aa79-41b9-b876-c2093aa58b78 1 Other Other +9b3d7807-0849-49cb-b280-31be7a659964 1 Other Other +9b3d7851-5769-4ca6-addf-87388e15d697 1 Other Other +9b3d81f3-c05c-4f9b-9a95-cb8331b8a6c2 1 Other Other +9b3dbd5d-0af6-4755-adb1-d5746c376442 1 Other Other +9b3ddd9a-0db0-43de-b7cb-7b2db84a97c4 1 Other Other +9b3ddeef-552b-4c07-9cc4-8854570106e0 1 Other Other +9b3dea84-3fc4-4a7a-be32-efda1dc19262 1 \N Other +9b3ea83f-355d-40bd-aa74-81468c830147 1 Other Other +9b3ef071-fe97-4c88-a499-63799803d746 1 Other Other +9b3f13a2-6b9c-40da-bd2c-490d115fc253 1 Other Other +9b3f45c0-9860-4d9b-a09b-cfebe6f92189 1 Other Other +9b3f6c7f-62ee-4f49-93aa-fda3687995ec 1 \N Other +9b3f904e-7d34-4ca7-8df3-8bee4956d9d1 1 Other Other +9b3f9dcd-2cbd-4900-bf79-b2e5ec159778 1 Other Other +9b3fd749-0132-42ba-9001-26d381defe72 1 Other Other +9b3fd940-8903-4a7d-a445-012f03b46e08 1 Other Other +9b404f9a-dc7b-44d7-8702-6b92f2762467 1 Other Other +9b4051c6-32ae-4db0-b560-092c884453f7 1 Other Other +9b40b025-205d-4248-9cb7-1021af41417a 1 Other Other +9b411b30-59d4-4ec0-a192-ac01f0dbedeb 1 Other Other +9b415c13-1f54-439f-bbff-da5fdb9917cf 1 Other Other +9b415d04-642c-481d-be66-bb6e96f88806 1 Other Other +9b4162bf-687f-4e6b-8429-a759456879c7 1 Other Other +9b4172cd-8696-4ada-84a8-8be7d72108b3 1 \N Other +9b41a98e-5c38-47ee-8298-559d1f3eb981 1 Other Other +9b42289c-26f1-4495-946e-9b8c99413deb 1 Other Other +9b423357-8257-484f-89ac-27e49dd3ce77 1 Other Other +9b424644-8b54-4646-b152-17cc77a27f64 1 Other Other +9b428bb6-16bd-422f-b2cd-e57074b825ce 1 Other Other +9b42a787-b0c7-4242-9b0b-f7686ff3734d 1 Other Other +9b42b02c-e2bc-4efc-95d5-de2dd605921a 1 Other Other +9b42e38a-6978-4b88-9475-21becd70951b 1 Other Other +9b4308eb-7f27-4795-acd4-791cd8f60df9 1 Other Other +9b432a9e-e3eb-4554-a5f0-7bfc27589693 1 Other Other +9b436682-49e1-11e8-866d-fa163e8624cc 1 \N Other +9b43c99f-20a8-4600-8203-87492525de12 1 Other Other +9b4448ab-c185-41c6-8c4c-4fc580a4a77c 1 James Other +9b446fa3-325f-4beb-87dd-b83c059035c8 1 Other Other +9b44700b-a1a0-457c-b73d-89d0a706e2ed 1 Other Other +9b447383-d8fa-43a5-a6ac-8468804a1f63 1 \N Other +9b450d33-a2a0-438b-9367-5b93bda3309a 1 Other Other +9b451f5a-ed0e-42b3-9934-42604edc356e 1 Other Other +9b45c7f8-f129-11e7-bbed-fa163e8624cc 1 Other Other +9b463bc3-31f4-4090-aec1-446571c9839d 1 Other Other +9b466de2-aee0-4272-ad8e-3d3a20028f5b 1 Other Other +9b468904-0a51-11e8-9e33-fa163e8624cc 257f6774-64eb-11e7-954b-fa163e4dd901 Other Other +9b46df20-b252-41bf-96d2-ddaa6ecc93bc 1 Other Other +9b46ea2f-968e-4d46-a3e1-e367abf264fd 1 Other Other +9b46f30c-7762-4cd9-82b7-09e9b2fb43f1 1 Other Other +9b471578-8a71-42ff-849e-1b75163dc691 1 Other Other +9b471f19-7eeb-48f5-af9d-6435f70a1597 1 Other Other +9b473095-3e00-464b-8dfc-006423a58c2c 1 Other Other +9b47573e-4dcb-439f-8f61-0be3e36eb4a2 1 Other Other +9b47624a-5561-41bb-8b3c-20b93bde648d 1 Other Other +9b476d33-60d2-44d9-b678-477b777c5cf1 1 Other Other +9b4788c1-39ec-43b0-8334-6a985b711a31 1 Other Other +9b47c521-71a2-4aaa-a7e4-9bc4adb9c373 1 Other Other +9b4816ae-05e6-4cdc-881e-31bf5c30e654 1 Other Other +9b48230b-3115-47fe-a6d7-e709dfc8efd1 1 Other Other +9b4878d7-e13f-4965-ac58-f67512417a5d 1 Other Other +9b48a863-210c-4364-ac11-8c6f6919b747 1 Other Other +9b48daef-52b9-4035-b925-510939ecb2ab 1 Other Other +9b49159d-5ac0-4909-b204-4d0d198a4db2 1 Other Other +9b494507-d341-43f7-a250-85cf6a8d1e5d 1 James Other +9b495666-e755-4f9b-af71-058f5cff6a37 1 Other Other +9b4974f5-ab17-4a86-92d9-00393f4faa55 1 Other Other +9b499bd5-7ad8-4cb5-8e1b-eb0d20dd9a16 1 Other Other +9b49a9f6-3483-4a61-813f-14bb99096605 1 Other Other +9b49db76-dc45-4112-bd1c-2088db9729b3 1 Other Other +9b4a9d71-e2b4-4055-a9b8-5d64d21000c3 1 Other Other +9b4b2f98-5069-4e1d-a9fa-3435f0d6d49b 1 Other Other +9b4b4589-ae37-448a-96ba-75d8c8807d30 1 Other Other +9b4b5be2-199e-486c-a3e6-959c41cf657b 1 Other Other +9b4bc3ad-71e1-49e0-a39c-6553cba4fc87 1 Other Other +9b4bc60a-eabe-4b79-b8db-142b884bd9cc 1 Other Other +9b4bff40-49e1-11e8-a3bd-fa163e8624cc 1 \N Other +9b4c2bf4-798e-476f-b660-57d2313883f3 1 Other Other +9b4c35d9-0c97-47eb-9be4-9db45f6046d9 1 Other Other +9b4c4502-9d20-4376-b6fe-076bdfd23b2f 1 Other Other +9b4c6386-5d1a-47f7-825b-affc4dfd7e7a 1 Other Other +9b4c734b-9f98-4621-8af5-c6a936d57a60 1 Other Other +9b4cc709-7441-4f61-a26c-32ced503e9a6 1 Other Other +9b4d6a09-4ffd-4a2e-983a-88bf5b9e13f9 1 Other Other +9b4dd8b6-f3f1-4d58-ba67-d12c9a9f50df 1 Other Other +9b4e1ca9-3b4f-4687-bbc1-7bbcdab6f55b 1 Other Other +9b4e26f2-5c6e-44ef-b16b-42c2dac015a9 1 Other Other +9b4e4449-6479-4aad-90d1-2fd0ca89a816 1 Other Other +9b4e4ec0-4f70-4979-b449-c5a1686277d2 1 Other Other +9b4e5f9d-4eab-46a7-bb80-74ad6506e889 1 Other Other +9b4e75fc-570a-4b4a-8daf-ff319c2c9fd1 1 Other Other +9b4e8694-2f0b-476b-8576-0556c4a847d1 1 Other Other +9b4ea04f-a449-49f8-88f7-816bf2ea4945 1 Other Other +9b4eebc7-0e19-4359-8478-46eafe94f602 1 Other Other +9b4f0a83-e4af-440f-b381-b6b6d33179f3 1 Other Other +9b4f1467-5822-4b90-96ad-c15076cd8d17 1 Other Other +9b4f3ca9-818e-493e-868a-3be5c0d3cfcd 1 Other Other +9b4f63d9-9226-4354-9489-dcd7fd08ddf2 1 Other Other +9b4f6865-b24e-4b83-b972-bed21178a098 1 Other Other +9b4f9caf-a8c4-420f-86e8-e443ae53a209 1 Other Other +9b4fbc04-f22d-4613-aeb7-5ee8b0b6bef0 1 Other Other +9b4ffa52-9871-430b-92f4-6d6a11f6f192 1 Other Other +9b5018d9-1fbb-488a-9b7a-d24e0cfe0ee0 1 Other Other +9b502464-91a6-410f-b824-ce620464bc86 1 James Other +9b502651-825d-44d2-8074-9e833a7edda6 1 Other Other +9b503d4b-cc9d-4b99-8d9b-a4ac217ba3de 1 Other Other +9b50762c-d462-4583-bf04-e1b4975bd13e 1 Other Other +9b509771-1981-4765-9426-9dded06f9f30 1 Other Other +9b50a6cc-e813-417f-9a55-0530fb700003 1 Other Other +9b50f8f2-6734-4ead-bd32-fdaa891391cf 1 Other Other +9b510824-e134-49e6-ba61-a95403ac234c 1 Other Other +9b5140d8-ecd7-4334-91fa-eec0e4be1798 1 Other Other +9b5144e7-80be-4a62-98ee-5f5e5bc42277 1 Other Other +9b51537f-7082-4757-a901-402d3f7c4513 1 James Other +9b5167cf-d21c-43ee-8f5c-6dd7d6024e5d 1 Other Other +9b516eaf-3cdb-4b9f-be62-75beeb7becf4 1 Other Other +9b51f1e7-ba53-4d88-8064-ae4736f96c4f 1 Other Other +9b51fc88-7915-4089-9f76-fb70964b7667 1 \N Other +9b52ecb1-1a27-4337-9a5b-140500933267 1 Other Other +9b52f2a4-a43c-46bd-85ff-08cd749dbb63 1 Other Other +9b5335aa-92b0-48b0-a948-c1e702681f51 1 Other Other +9b536a90-59aa-45e7-89e0-e6eec7ed8092 1 Other Other +9b538974-ef2f-481b-9767-93bb6dd1490a 1 Other Other +9b538ab8-7c6e-48aa-aa70-66502ef0f12f 1 Other Other +9b53bc3d-9778-45e5-a2db-41fd73624aa0 1 Other Other +9b53bf48-10ee-4377-bee0-c57c26d136ca 1 Other Other +9b53d944-5213-424a-b8ca-223d79bdc549 1 Other Other +9b542c1d-28fa-4c44-bc67-7d75264c4710 1 Other Other +9b54321a-c1be-4169-aee4-a3b3fcd83794 1 Other Other +9b543538-4dbb-4f21-b060-71bb8c680066 1 Other Other +9b5439c0-201a-47da-ac09-74e8345e2397 1 Other Other +9b544d6c-b3fa-496f-a0e1-0c13ea40079d 1 Other Other +9b54654e-0be9-11e8-8be6-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +9b54876c-6526-444e-8bfa-c5b8dda7a7cb 1 Other Other +9b54c822-5392-4936-969b-c88d12aeb1df 1 Other Other +9b54e3d2-9abf-44a1-813e-8b3059dc069d 1 Other Other +9b5527a7-583c-4278-aae6-a6c1b2d979f0 1 Other Other +9b55d8e0-8554-4ac8-a1dc-9e49b76c373b 1 Other Other +9b55ed5d-5d88-4376-b403-5421140b6211 1 Other Other +9b562ff2-99ea-40e5-818d-3a592086b1ae 1 Other Other +9b567fa8-67b3-4edf-bffb-c2407b85dce6 1 Other Other +9b56c3fc-9afd-4efa-a021-453014948a9f 1 Other Other +9b56e424-0c5b-4967-aa6b-641e0a28cca8 1 Other Other +9b56f033-fd72-4e66-9f80-cb48af6fcbcb 1 Other Other +9b570bdb-d5ed-4b3f-961f-80100a9019e4 1 Other Other +9b570ce8-5a6a-44a2-a3a9-0114ae3a06c6 1 Other Other +9b57576e-60fd-45f2-a173-39b32b69eec5 1 Other Other +9b577d43-a5a9-46a9-978a-a1c4c23e2eb1 1 Other Other +9b587c18-3e0a-4d89-83fb-5f31e110e6d6 1 Other Other +9b587f5f-c4d7-4d9a-9b3f-6a2f9c9ae775 1 \N Other +9b58894c-0846-4bdd-89a2-c335614e863d 1 Other Other +9b58fa82-79a2-4dbd-8b35-9ce41d18bab1 1 Other Other +9b590af6-3630-4efc-b199-78dc92a2bc0a 1 Other Other +9b591803-83a6-4995-b85b-f5ea12bbcae9 1 Other Other +9b593eb0-e085-4b33-8605-4ea71788b25e 1 \N Other +9b596d7e-917e-4367-bd66-17c052d24e65 1 Other Other +9b597e9c-dff1-4c67-88b8-888bb7411345 1 Other Other +9b59c2a7-d33d-4642-90fe-d06289d62cc4 1 Other Other +9b5a0d06-93d3-43e0-a386-73e415092b42 1 Other Other +9b5af6ac-1bc7-41b5-b6cb-f50185c50bfd 1 Other Other +9b5af716-a604-4fd5-8904-900536249d30 1 Other Other +9b5afcdb-872d-460e-ad65-49646e94600d 1 Other Other +9b5b0d64-bdf6-44d9-a33b-4dc73175d517 1 Other Other +9b5b21e2-e5cb-4461-b84b-468935224931 1 Other Other +9b5bf262-1530-40cc-a972-632627f6c4d5 1 Other Other +9b5c5ac5-5961-4d64-b8b9-e19a07840a32 1 Other Other +9b5c7a73-dd37-4867-b83a-e22d852574bb 1 Other Other +9b5c9104-e69f-43f4-8335-59acf95d220d 1 Other Other +9b5cabc8-0cca-42ab-ac97-186ba8bdba8a 1 Other Other +9b5ced33-66af-4053-9dd4-c524d2294a73 1 Other Other +9b5d2391-89ff-4008-be49-57a021f0dcf5 1 Other Other +9b5d8420-6fa6-4252-9cb8-4ac433e1c3bb 1 Other Other +9b5db12e-4ab5-4c46-8841-5f70cdc53eb1 1 Other Other +9b5dfffd-4094-46c4-8895-1b2fb2cd570d 1 Other Other +9b5e124e-0c71-41d5-acfc-fa5a7b620ab3 1 Other Other +9b5e50f3-cdb9-488f-8bc6-c76f426653ed 1 Other Other +9b5e5f46-a2cf-4d54-b44d-6ea2b66fec46 1 Other Other +9b5e640a-a79b-4945-aa9a-d6ddbadd9510 1 \N Other +9b5eb26f-8ca3-4cd2-ab34-ecbbad7ad00f 1 Other Other +9b5ebb55-50f3-471b-a613-671cf1eccf1c 1 Other Other +9b5ed5f7-a3e1-4cc0-ba47-115b393e8606 1 Other Other +9b5ef338-dae0-4575-909f-113da0d2a8ab 1 Other Other +9b5f207a-c8cb-4b38-b4c5-d80929fbe97b 1 Other Other +9b5f262f-de1a-4dbc-b2cf-60b73a97ea23 1 Other Other +9b5f3f92-a4d0-4e14-8320-1067062bf623 1 Other Other +9b5f63a1-8d59-4dee-bffc-24e2e202d74b 1 \N Other +9b5fcc63-564b-4e2b-a91f-9de0fd4cc01e 1 Other Other +9b5fd775-8e59-4069-a64f-693448172965 1 Other Other +9b5fec49-abcb-4de7-b85d-787a5ddccf1e 1 Other Other +9b5fee9d-e37b-49b3-9664-ded82411dcc5 1 Other Other +9b603f8f-f5ad-493b-a7fc-41312b899c4c 1 Other Other +9b607728-4098-4075-abf1-80c9f6d5665a 1 Other Other +9b60b859-47f0-4e98-ae57-be0203644a29 1 Other Other +9b60ef86-6209-4c17-bbdb-cfac4be0a857 1 Other Other +9b60f688-bd09-4e26-b50c-a8e7dad486ee 1 Other Other +9b611078-b841-49cb-9286-fa317daa391e 1 Other Other +9b6125d1-6bbd-455a-8a55-8def8463898b 1 Other Other +9b61715f-fe44-44ea-a147-6e1db0898927 1 Other Other +9b619a67-509d-484e-94d5-db694725f6b2 1 Other Other +9b61a3c5-1c8a-48e1-8d72-c027567ccb9b 1 Other Other +9b61c97a-4a09-4bf0-9c0d-e447f34ea36b 1 Other Other +9b61d2e4-172c-4ab6-afa5-740c6e76de46 1 Other Other +9b6269e8-900a-4f2f-923d-65dffcb68ab4 1 Other Other +9b628530-6455-4d09-8311-5c02a1c6f14e 1 Other Other +9b628ce5-242e-49cf-bd33-d8185b37dcdd 1 Other Other +9b6300c7-5b6c-4dcc-9e88-8224063b64ba 1 Other Other +9b630f8e-6269-42d9-beed-cacc1526d5af 1 Other Other +9b63229e-5d10-4ce1-8d5b-db33830002ac 1 James Other +9b63266f-e477-4783-8325-20eb9d01fa3b 1 Other Other +9b632f50-4831-46e8-ac18-0a5d839b484c 1 Other Other +9b639993-1b10-40a4-85e3-5b209a5b85fc 1 Other Other +9b643e9d-7a73-4d5c-b3aa-3d71d1296d3f 1 Other Other +9b6450c5-5fe9-4c75-9d84-4ff7621fb162 1 Other Other +9b64978a-70b7-4948-8d9a-9de3b289587f 1 Other Other +9b64b284-70e7-457f-8500-d6cd2926ed4d 1 Other Other +9b65328f-e99e-40de-b101-6954ce7a2058 1 Other Other +9b6537ff-4a24-4a4e-bbb3-18552fac1528 1 Other Other +9b6583fd-c50a-4bc1-8ba6-1a089e20969c 1 Other Other +9b65add9-5e2b-49f7-9b97-05592ec758a7 1 Other Other +9b65c861-89bf-48d4-8d20-4488296ad32b 1 Other Other +9b65f3e7-4f65-4612-90bf-fd3cd0bb8c9e 1 Other Other +9b65ffa7-8777-4313-882e-92de9c60736f 1 Other Other +9b662f21-dbcc-40d7-8f19-89fe42c311a2 1 Other Other +9b66332f-f860-45a3-a8f0-d460670f29d1 1 Other Other +9b66618a-3326-4954-b24f-aa6aea9e4197 1 Other Other +9b6662e5-826b-426c-9b51-f8cae280c9a8 1 Other Other +9b6680cf-d8a0-4585-a3f4-ca9ea2584f0c 1 Other Other +9b66bdec-3a4d-4e0e-af37-0566e9b096ec 1 Other Other +9b66e458-f595-4c76-825e-0248b7018c3a 1 Other Other +9b675f33-3840-400a-805b-b9128ae808ca 1 Other Other +9b675fc9-5385-40f9-95bf-57ec110ac2f0 1 Other Other +9b676108-3ee5-4d18-809f-7293729959cc 1 Other Other +9b6781b3-0d6b-4d22-b1b9-53f57e7ee5fe 1 Other Other +9b67900d-bd6f-4d8d-a33e-7e6488818af5 1 Other Other +9b67a3e6-a9e0-4fa0-8008-51e9b718d505 1 Other Other +9b67c62b-c63d-4f81-b44f-430fb2e24e5f 1 Other Other +9b684900-cff3-4869-8ff2-90cd8e9d3727 1 Other Other +9b687d1b-baf7-4306-b5c3-ca2aaee1df25 1 Other Other +9b6880b8-000d-4680-8116-fb3e32eb1997 1 Other Other +9b690435-964a-4c4e-a16e-f2fefb61c17c 1 Other Other +9b691e5c-dd99-40bd-89de-cf13393ef977 1 Other Other +9b694636-8225-4d18-a3c3-16442a5d2629 1 Other Other +9b695466-9881-4c78-9a87-49e109bcbc6e 1 Other Other +9b697ce7-7124-44aa-bd22-d9255c01eda0 1 James Other +9b697f63-3b6d-4948-a850-41c42bc8be8c 1 Other Other +9b698489-77f2-44b5-bf14-302c7b04ae9b 1 Other Other +9b69afaa-95f9-4906-a69d-7ba0d0e6c580 1 Other Other +9b69b161-7a10-4d97-9437-8704f855a7e1 1 Other Other +9b69cafb-3493-4dfe-ba52-b44a62abc32a 1 Other Other +9b69ea46-e81b-4a7c-b707-fa8e4570b10b 1 Other Other +9b69fad8-108a-4c44-9fac-ea95bd14bae7 1 Other Other +9b6a0628-b506-43cf-996a-7546d90bfa91 1 Other Other +9b6a2450-9155-4165-9766-9c96107e77bc 1 Other Other +9b6a4fab-65fe-45a5-b8fc-c9c98cf0d4ab 1 Other Other +9b6a6656-40a6-4d41-b8d5-18d333d43a57 1 Other Other +9b6a6ace-cb93-4c92-a116-a3a051e7c653 1 Other Other +9b6ae563-fbb7-41a9-a984-d6a49a8f59af 1 Other Other +9b6b59da-49e1-11e8-b95d-fa163e8624cc 1 \N Other +9b6b77d4-f95e-4b3c-b65a-cf7e0773d4bc 1 Other Other +9b6b7f11-f9df-4715-8ed0-7baa4d8a8fc7 1 Other Other +9b6bffb2-efa0-41f9-ade9-c0fe4fc70eec 1 Other Other +9b6c1364-3e64-4038-869f-fae44d28ef3f 1 Other Other +9b6c20ef-7d69-40d8-a175-f3297e52f971 1 Other Other +9b6c2c32-de59-4164-9486-abea766a5a93 1 Other Other +9b6c73ab-46b7-41fe-b85f-4e57a91aaf47 1 Other Other +9b6c7516-dfa6-427e-ad2a-bb9034c04f48 1 Other Other +9b6c86b3-5474-4370-a42e-de04475def20 1 Other Other +9b6cc1cb-197d-4e3b-869f-7627962479a9 1 Other Other +9b6cfc82-f4be-4aa9-95c7-70abb690a497 1 Other Other +9b6daa85-14ef-4a4c-8b1e-7584fbf7f3a7 1 Other Other +9b6dab1f-00d9-4971-8241-ec96e39c8739 1 Other Other +9b6dd222-a6e8-4d6b-840b-59e598a28a92 1 Other Other +9b6dfb1f-4a94-4b84-93d9-b4a3f41a1cd5 1 Other Other +9b6e05af-01f9-489d-88ba-2853948afe20 1 Other Other +9b6e2fb2-09b4-4ec6-ad4e-cdc509dd070b 1 Other Other +9b6e378a-5985-40c7-8b59-d58106d1c6ae 1 Other Other +9b6eab36-ce8b-4bc1-bf0c-9b68d1eea29c 1 Other Other +9b6ef7fb-570b-4355-a2cd-39e8ec977570 1 Other Other +9b70bf43-2232-4c56-852b-3dfafc48dc7c 1 Other Other +9b70da04-cef0-438d-a454-5724e1fd738c 1 Other Other +9b70f159-d861-456c-b7d8-ae3f463a35cc 1 Other Other +9b713304-3cf8-40f3-8ad1-cf6297d8f6d3 1 Other Other +9b713e5a-72a1-46c0-95f5-25af737f46eb 1 Other Other +9b7142e1-04ae-4e89-a556-81e8a62f3583 1 Other Other +9b71dafa-b5f0-433f-8404-1a05b82f85c1 1 Other Other +9b720e42-6ebc-43ca-a828-e4c2476a45a0 1 Other Other +9b727437-4305-43d9-b1f5-1f401753a0ae 1 Other Other +9b72b04c-5dee-4b35-841f-390564743dc9 1 Other Other +9b72d406-2d04-4a8e-8b33-02b5c74ef061 1 Other Other +9b72d98f-71b0-4abc-9ab9-dea74aa6f36d 1 Other Other +9b733d9b-3068-4a5e-b71a-6745ff41cd07 1 \N Other +9b735ae0-b46c-420a-8902-9ae2393819ef 1 Other Other +9b73608a-3769-4169-8534-81651b45ae11 1 Other Other +9b73a0d1-2648-4470-8bc0-9e2f3412df2c 1 Other Other +9b73a1e1-f50d-4aea-a715-4f339d10e9b2 1 Other Other +9b73be43-a8ad-4b6a-aaa3-c62190d455da 1 James Other +9b73f0e5-01eb-486f-970e-00c33ef12ffe 1 Other Other +9b7412e9-e3ab-4125-961c-4b16883ef51c 1 Other Other +9b74359a-f65e-48b0-950b-44ce5304279e 1 Other Other +9b746733-018a-41bb-b8eb-4674b7b2780e 1 Other Other +9b746e0a-9198-4ffc-8a6f-7ab1acab3bb7 1 Other Other +9b74b3f9-9d79-4eaf-85b3-c535a53b569b 1 Other Other +9b74c5b5-25e6-4ee8-8215-7223491a4617 1 Other Other +9b754862-df59-434c-9ae0-59cd73536054 1 Other Other +9b75e9e2-28e7-47e2-9bf6-7d72f3c1148a 1 Other Other +9b760d35-2a9d-4fd6-a60b-565ecc08ad00 1 Other Other +9b762a5a-bee1-4027-b158-d4d929aa8c24 1 Other Other +9b763108-8ffa-4896-b4d6-ce29b3ca3270 1 Other Other +9b7646d0-0c37-4210-a7af-cab50934112d 1 Other Other +9b7688ef-a52e-4a64-898c-55b7c724e08d 1 Other Other +9b7690c6-1be5-4796-a996-8603915f1ab4 1 Other Other +9b777118-0848-4f2d-93f6-450d4497db39 1 Other Other +9b777b5f-0803-44c8-ae03-3d24092ef6ab 1 Other Other +9b77800f-225b-482f-b9fd-be00b83fbd22 1 Other Other +9b77d160-a9e4-4a25-bcd8-6cfe940b3b88 1 Other Other +9b7826c4-49e1-11e8-86ca-fa163e8624cc 1 \N Other +9b782a0d-a2ed-452a-9ccf-59ef77dc4ef3 1 Other Other +9b785573-663e-4eb1-83dc-ccac5e0122a9 1 \N Other +9b78d1e9-0b09-4bbc-87cd-e359ecd5ecab 1 \N Other +9b78da14-2cb5-4d8d-b2a3-4e62a33d1d9a 1 Other Other +9b7919da-e455-42d1-a8f8-d36ee9336b81 1 Other Other +9b791b84-9b75-4c3d-9ef0-f85fba44b5d2 1 Other Other +9b7923de-bf77-465e-af96-ddc9e3265620 1 \N Other +9b79252c-eaa2-43ad-ad7e-8a86583eb95f 1 Other Other +9b7940ec-7f59-4cd7-a15f-a1eb27b31a83 1 Other Other +9b797a41-af7e-4e75-b26b-52bf1db523f6 1 Other Other +9b799ea8-0525-4783-bce6-97e9c808e670 1 Other Other +9b79dc86-87c1-4932-8527-4453095b2299 1 Other Other +9b79e2e9-c122-4f2a-b032-3d20471fe3f4 1 Other Other +9b79e890-6fce-45fc-bce8-5c28a75ec389 1 Other Other +9b7a05bd-bffd-4e03-903d-491f0d157977 1 Other Other +9b7a2b18-e13a-4e51-8dba-8e3cb3a6587a 1 Other Other +9b7a40bc-02a1-4571-bfc6-5ace57745c91 1 Other Other +9b7a62ff-f4cc-451e-a512-1774dfeabfb0 1 Other Other +9b7ac0e0-7787-4b1f-85b9-0a6d6fe629b2 1 Other Other +9b7ac4ab-cefa-4179-990d-b5c8cf2d948f 1 Other Other +9b7b1642-7036-4044-b815-99282599f579 1 \N Other +9b7be7a1-bb6d-411c-9419-402014bcd3c8 1 Other Other +9b7bf0fc-9b02-47d4-91ec-9f2747345beb 1 Other Other +9b7c343e-7f31-4d50-8688-bd1722852d05 1 Other Other +9b7c9379-5632-47fa-920c-b7769c3ca030 1 Other Other +9b7cdd22-117a-4f12-985f-0dc9e8a70e2c 1 Other Other +9b7d2153-1015-4eb1-a46a-33de5bde08db 1 Other Other +9b7d8322-1662-4f4b-8d63-f383ed37687c 1 Other Other +9b7daf7a-c15d-4443-9c56-94f85e6832b7 1 Other Other +9b7dc690-52b5-4a44-9ba8-b8d2086cf988 1 \N Other +9b7e652d-cb1d-42cc-8f6b-41f7e03d430e 1 Other Other +9b7e7116-b00c-42bd-bc23-4650a1f37289 1 Other Other +9b7e8c9e-1f60-4855-8ba8-ab1be39c454e 1 Other Other +9b7eabef-7ef3-4add-a132-5df0731d0d8b 1 Other Other +9b7eb8da-cee7-4ef3-8aad-ccd128d9f173 1 Other Other +9b7f00e4-7b1b-47b3-a4af-cf19cd66c36f 1 Other Other +9b7f0aca-b668-4e7b-b8b5-206272ceccb1 1 Other Other +9b7f1523-58a8-422c-9f94-cbbc02767e46 1 Other Other +9b7f5986-3363-4c52-a3a1-99cb7a57d5ac 1 Other Other +9b7fed72-c1f4-4dab-a28e-f0fcc61f0162 1 Other Other +9b8031a9-41b8-443c-8b32-3e819dfbe6a8 1 Other Other +9b804471-0c17-464d-bf6f-5e271bb35c30 1 Other Other +9b80ff39-e60b-4074-9b91-7ba6a852ed39 1 Other Other +9b814799-8280-47ed-b5bd-56a5280d5d63 1 Other Other +9b8164d1-f06f-4505-a816-c7f7e9ea8280 1 Other Other +9b81c2c7-9a5f-4eec-a132-911d1095f89c 1 Other Other +9b81cbee-ef88-405e-ad53-1f4d3c99d797 1 Other Other +9b82405a-70e8-4bc0-b4da-fb408adba51b 1 Other Other +9b82666c-7473-4b20-b810-4cfc3117552b 1 Other Other +9b826787-e710-4663-9a0e-7120cc92a7c5 1 \N Other +9b82913a-685a-4cff-88c3-6bc89559789f 1 Other Other +9b82a1b7-6d96-4052-a744-4f0109fbaa31 1 Other Other +9b82b44d-5cc3-476f-9c4f-75b86984dfbc 1 Other Other +9b82c657-daba-4484-9821-2488da61c1f0 1 Other Other +9b82eab3-0db0-40f0-9ed9-a54a05b527ce 1 Other Other +9b830aa8-5683-4b90-a8ab-dfa60132ac00 1 Other Other +9b8368db-f034-4f98-b153-162dac1afe4c 1 Other Other +9b838ba5-454d-484f-9ccd-bdf57a3bd5f8 1 Other Other +9b838c3d-e0c9-486d-aaeb-9b8bca6ae4ae 1 Other Other +9b838c59-3910-42f3-880e-a92b26463a37 1 Other Other +9b83adb9-1a6f-4e95-bcde-b62ccea69a61 1 Other Other +9b83d6fd-406b-410b-9bd7-7d7af27b167d 1 Other Other +9b83da13-5ff6-4dea-b1fb-552e0363372a 1 Other Other +9b83e576-848a-4f2d-b7bf-2c6a412350e2 1 Other Other +9b83e7f5-ec6c-4d27-8478-783e7cc13066 1 Other Other +9b84650a-e82f-479f-b799-eb642cf31d4a 1 Other Other +9b8489fc-5828-4c61-a3de-a8d402e190bf 1 Other Other +9b84d7c4-2f8a-46d4-bdaf-745d5a2cb1b6 1 Other Other +9b84ee8b-2819-409d-8fa1-b96f818d428c 1 Other Other +9b84f81b-d8fd-4fb7-a9d9-2d90a59b44c4 1 Other Other +9b8525de-829b-4e9e-bb14-7f4cb7372258 1 Other Other +9b854529-86c0-4161-9ce4-6bcf2fec742c 1 Other Other +9b855538-d134-4e05-b8c1-7cb8cf08715a 1 James Other +9b856fc2-b03d-4dca-a870-d060e8392061 1 Other Other +9b85a508-ff59-48e4-8c44-daf712a95f3d 1 \N Other +9b85dc62-1b25-4a78-a51a-cf8f73d0744f 1 Other Other +9b85feca-7618-4cf3-91ee-2cd224638800 1 Other Other +9b86168d-62ac-46c8-b216-651ba2debfcc 1 Other Other +9b861cc4-9330-4e42-82b9-be81da08ee49 1 Other Other +9b86877e-8dbf-4c06-a21f-a25f57bbce40 1 Other Other +9b86ac67-25d2-43f1-a4ce-4b0885601572 1 Other Other +9b86d42f-dd82-4f9d-9f15-c94b7a2eca7b 1 Other Other +9b86d7dd-734f-4714-aa52-7c0efbbe14fb 1 Other Other +9b8704bc-8b7f-45f8-a89c-64c95000a77e 1 Other Other +9b870b99-d7d2-473e-b62f-0f952e545782 1 Other Other +9b871327-7221-4cff-8339-8427299c6c71 1 Other Other +9b8736f5-3aba-4273-aa42-a237e7f7422d 1 Other Other +9b8762d7-55c4-4dbc-b3ef-70790062d26f 1 Other Other +9b87c5ef-f957-42ae-80cc-7721ff638c27 1 \N Other +9b87ce19-060d-488e-949a-da5a02bf794b 1 Other Other +9b87dce8-2ed8-4190-a478-36b249d25277 1 James Other +9b886990-e179-4d2a-ab7e-d4f327885baa 1 Other Other +9b88729f-b6b1-484f-9374-04b6ac810429 1 Other Other +9b88d4c1-eb0e-48d6-80a6-a4e1482ce05a 1 Other Other +9b88d828-6149-4c1a-a2e8-4896da9b6771 1 Other Other +9b890bd7-9fb1-42c4-a4e6-9fa14b993d36 1 Other Other +9b89ce43-acf8-4f3c-af56-9f6911b45cb0 1 Other Other +9b89f06b-4754-41c6-95cd-95975f476817 1 Other Other +9b8a14cd-afa3-47f4-8f5f-94f8bf38b644 1 Other Other +9b8a19e3-647b-410d-b471-24c1f0e60d0e 1 Other Other +9b8a6905-ee3e-4e13-bb45-07d1f6799557 1 Other Other +9b8a7fe9-b6d2-41ad-806b-9d1714847436 1 Other Other +9b8aa144-dfd0-45b9-9d4d-e6fa91583ebd 1 Other Other +9b8aa80b-d568-4a40-a396-48b04ab82352 1 Other Other +9b8ac1b2-7942-4b64-b98e-f8e9ed7f00cc 1 Other Other +9b8accec-1cc4-40be-9227-ce75e6498fb1 1 Other Other +9b8b4655-93dd-4429-8956-5558a44ed7f3 1 Other Other +9b8b50d0-12d4-4f07-95ed-eea6b79d9b78 1 Other Other +9b8b6d70-4714-4a38-af30-f46c0a8881f1 1 Other Other +9b8b7373-71b2-4f24-842a-55ff6f73a072 1 Other Other +9b8ba8d6-3c51-4af6-9406-231debf3f178 1 Other Other +9b8bcfbf-8fd0-4e1d-85d5-a9df7158c434 1 Other Other +9b8be39b-9d45-42cd-911a-01e2f019fc62 1 Other Other +9b8be436-8605-4e33-bc28-6c01f0d6dc5d 1 Other Other +9b8be78f-5553-436a-a323-8b30343243e8 1 Other Other +9b8bf438-dd5c-4c59-bf17-ebc3758144b3 1 Other Other +9b8c015d-38d7-4093-8d89-07d30886bbe6 1 Other Other +9b8c039a-dea7-4f52-a1b4-dec660122e7f 1 Other Other +9b8c5330-fb9e-40de-a4bc-1e13bcca4d6c 1 Other Other +9b8cac28-fcff-4458-9697-f6f9657f0ca7 1 Other Other +9b8cc4a8-fb66-4aec-bab1-e477222107dd 1 Other Other +9b8ceb25-f3c1-4796-bf03-d1e244f21498 1 Other Other +9b8d4d42-e332-46b9-a684-9de29f1d16c5 1 Other Other +9b8d5018-f1f2-4571-bec2-23ad6c643049 1 Other Other +9b8da84c-12c0-4f09-86a4-25214a0e0b47 1 Other Other +9b8dc30c-5ee9-4d3f-87bb-c98c7be44877 1 Other Other +9b8dcd74-b24d-41ea-a907-22f6b57f250b 1 Other Other +9b8e5d9e-5707-4562-aedd-4982a556291d 1 Other Other +9b8eab2d-414b-440e-af9a-ffd43dc1b787 1 Other Other +9b8f2bdb-2629-4cf3-86ad-11a56694484d 1 Other Other +9b8f2ee0-5d20-4843-849a-cc271b9781ac 1 Other Other +9b8f83a8-16e0-4ee0-bed0-be05d7def522 1 Other Other +9b8f8d92-b969-43db-a987-d51cc8721678 1 Other Other +9b8fad4d-27b3-4656-be62-c99846fa17bb 1 Other Other +9b8fcb42-677a-4fb9-b1ea-32cac3ac465d 1 \N Other +9b8fd355-35c0-43b8-b197-13242ba92c36 1 Other Other +9b8ff5e2-de7a-4d06-a04c-04d8ce34d876 1 Other Other +9b901eaf-f951-4a60-81a7-dd8cba5a61e0 1 Other Other +9b9076da-fbd8-47f2-bb0a-2f55b55800a3 1 Other Other +9b90df23-f455-46e3-921f-ec2a34cc0671 1 Other Other +9b90fb44-bca2-43b7-a8df-dba1c150df3c 1 Other Other +9b91188b-ae87-495f-ae02-6deca881f9fe 1 Other Other +9b9119d0-a1fb-4a80-87fb-aeb973334253 1 Other Other +9b919414-d491-4a53-81e0-d68605241eb0 1 Other Other +9b91da04-21eb-4b96-96b2-97f116da5058 1 Other Other +9b91e78a-a1ba-4528-a522-353947cad305 1 Other Other +9b921fcc-bcb1-45a2-af67-0eed73cf3bde 1 Other Other +9b92444b-772d-4218-9de2-16900872cf5a 1 Other Other +9b925755-8af5-44e4-83d9-6c09270782ea 1 Other Other +9b92ad8d-22be-4fab-b475-cc3ea882810a 1 Other Other +9b92d380-37e8-4d3d-a527-9489700a5669 1 Other Other +9b936f05-95f7-4df6-899d-78ffbded0193 1 Other Other +9b940553-4190-46cf-a7d3-c93062df630f 1 Other Other +9b941d80-d49d-4018-97cb-2d3d3cd20fab 1 Other Other +9b944794-20cc-49c4-bf34-dc2ba161ffa2 1 Other Other +9b945651-44aa-4372-9f2a-cf82da1bacbf 1 Other Other +9b94a686-8516-4afa-945c-1cb393a1c1b6 1 Other Other +9b9500d4-6943-4cc5-bc47-b2f2c3bfc5e5 1 Other Other +9b9527c8-1911-4798-9c92-84b940fa9d45 1 Other Other +9b954686-f8ce-4659-82aa-864a9138ea8e 1 Other Other +9b955ea1-b895-4d6b-a901-363a7b7b2a3f 1 Other Other +9b9571d7-0314-4c15-afe7-8bcc81e7400a 1 James Other +9b958fdb-3cc9-481c-b04f-6a2199193acb 1 Other Other +9b962b65-9b61-482c-9f8c-9cb4f87b1c52 1 Other Other +9b9646dc-6d3b-4fc4-97a0-d9b24f63cc19 1 Other Other +9b9648c6-2f89-4fe2-b558-1110621a9f7a 1 Other Other +9b96a199-5e95-46ca-b3b9-6622b2fdac7b 1 Other Other +9b96c05e-985d-4cc6-8fd2-78044f74ea32 1 Other Other +9b96ecee-26fe-4c23-9d94-4f7aeb1a68c6 1 Other Other +9b970cbc-8a2f-4435-ace2-0c484b5dec3d 1 Other Other +9b974654-f36a-4211-8b41-a568a8c14119 1 Other Other +9b977191-0e4b-4cd5-8513-78056fc4cc97 1 Other Other +9b97902f-bea6-4aec-9277-9f113acc6cad 1 Other Other +9b97be34-a5ec-4950-a282-145df7faa89e 1 Other Other +9b97c5ed-0867-401b-8100-af67e03a20f4 1 \N Other +9b980473-1774-4afb-a47f-636c801a2be0 1 Other Other +9b98088a-d8a6-4c90-99c5-955fac392011 1 Other Other +9b9814ce-18b2-426e-a8d6-8eabdb88b5ab 1 Other Other +9b9819f2-833a-4554-8634-c9ca915786a0 1 Other Other +9b9824e4-de23-4393-8f63-ceda1a0b7f17 1 Other Other +9b986548-cf4a-49b2-9354-9c9fbb7d70f0 1 Other Other +9b986a9c-bb55-4354-9953-9b38ad7f7418 1 Other Other +9b9893cb-71d6-47a0-be9b-d9e639c02478 1 Other Other +9b98d008-ad3a-465b-ae30-0a6aa0c005d1 1 Other Other +9b990df2-52b2-4185-a6af-0fb510989d24 1 Other Other +9b99230c-62b9-472c-ab6b-1bb8ecab0891 1 Other Other +9b9953ac-6d4e-4911-b4ee-66fa11e7b6d4 1 Other Other +9b998a5d-db77-4458-b503-6bcc6721e894 1 Other Other +9b99e61a-41dc-411c-b7cf-293f3fd74a53 1 Other Other +9b99f6a1-c299-4645-883b-a75545be2e7f 1 Other Other +9b9aeaa8-8293-40d7-a420-4fde5acba0ac 1 Other Other +9b9bb3a5-dcf8-4ee5-a1c5-35ffbad5adce 1 Other Other +9b9c1b56-32a7-403e-99b2-fb42404313c1 1 Other Other +9b9ca9eb-7df9-4a97-8ae9-648f2329ad76 1 Other Other +9b9cd6b7-ed8f-4065-8b43-f210325005c2 1 Other Other +9b9d97bd-abc5-420a-b55f-0a0ce8c68219 1 Other Other +9b9dc470-4025-45e8-ba1e-4e24fb882ee2 1 Other Other +9b9dea4e-df8a-460b-a290-afa2345c9272 1 Other Other +9b9dfff5-aec8-4291-a5f7-f5311e7cb0d4 1 Other Other +9b9e0a75-60db-4ce9-b4b0-c59e0f860239 1 Other Other +9b9e0f6f-48df-4c04-bfad-39b6a3c4a877 1 Other Other +9b9e3184-2830-4d13-9747-ca012885bb9b 1 Other Other +9b9e4586-304a-43c8-9539-592c1ea2388b 1 Other Other +9b9ef15c-410a-4e67-a5c9-69c72848f1c4 1 Other Other +9b9f2f8e-af8c-4ff4-8e4c-ec99070e3507 1 Other Other +9b9f5d98-5a68-4009-b5c8-c0133cf47074 1 Other Other +9b9fb911-5df0-4d5d-b94b-d85a6ec5b3e1 1 Other Other +9b9fca60-14db-4b46-9596-f66434c11bcb 1 Other Other +9ba03959-7bae-43fd-b523-df7dc58c36f3 1 Other Other +9ba055b1-ce54-4fc1-8e60-9d4d149fcc3d 1 Other Other +9ba0db75-3d89-419f-a42c-1358310a8825 1 Other Other +9ba0eed7-5054-449f-9d64-82ddeb5426d0 1 Other Other +9ba1bcdf-9513-4648-b27c-b7f3f8cc5cc2 1 Other Other +9ba1dd18-198c-4d2a-93ab-41cddeb54314 1 Other Other +9ba2230f-bf1a-47a6-a415-d237309a2354 1 Other Other +9ba25ae6-517d-4e24-b27a-f1ab3aba56f3 1 Other Other +9ba2cf8b-32c7-4acc-85ae-a621aa440ccf 1 Other Other +9ba2e242-1a1d-400c-9d1b-b7be22c2b7b5 1 Other Other +9ba2f8e7-f8e2-4bcd-908f-2b1ce38efb86 1 Other Other +9ba30fe1-b4b5-4cad-ac94-86fa68791eff 1 Other Other +9ba31c44-3616-445f-bcf7-e1abf08056af 1 Other Other +9ba34890-3450-462e-9bc3-b3197ae5ec26 1 Other Other +9ba3a341-13ac-40e6-bfcb-42addb87eed0 1 Other Other +9ba3a6fe-3535-4b35-95f8-569e094565fd 1 Other Other +9ba3cd49-3bdc-46bc-8a1f-17ade6ffca51 1 Other Other +9ba3e3ba-2d6a-4a19-88c1-e6ccbe6a622d 1 Other Other +9ba3ec34-9b27-4040-8cbc-5c622985d425 1 \N Other +9ba4242f-8b83-4894-8b05-c4be030dc87f 1 Other Other +9ba4452a-1717-4d1d-8ee2-ed57815c6ad0 1 Other Other +9ba4636d-a3bc-46ec-8ac8-368f85ef6067 1 Other Other +9ba4788a-96e2-4630-92d5-59efc190dced 1 Other Other +9ba4c57b-210a-4908-a700-7414524885a2 1 Other Other +9ba50bdc-873c-4bc6-8191-3a4e9d2b377a 1 Other Other +9ba51897-2adb-4a6f-9263-dfb9f7587b4c 1 Other Other +9ba53042-57fc-470d-b6c3-2c07d283d0dc 1 Other Other +9ba57166-157b-43dc-8344-7138ba2e6e82 1 Other Other +9ba5931d-465a-4a18-afbc-d5c9fbaec433 1 \N Other +9ba5e12e-6c89-45fc-8778-577ea28afe9f 1 Other Other +9ba60570-2d13-48fe-a1ec-7a5677815eeb 1 Other Other +9ba648aa-fe90-455c-929d-51c5f96a5c12 1 Other Other +9ba6527d-763e-4d4e-967a-f2629c9b15e7 1 Other Other +9ba677a9-0dc0-4b39-969a-49b758c396c4 1 Other Other +9ba67c4f-d937-4bab-9cf4-6c7aeb3b6ee3 1 Other Other +9ba68317-0a42-4e94-a648-465af14cd352 1 Other Other +9ba69f3d-24dd-4efc-b66a-639850942342 1 Other Other +9ba6a7de-80c0-42b9-8530-bfa077423a19 1 Other Other +9ba6e12e-5994-4ded-895c-a7f10cb596be 1 Other Other +9ba6fa01-fa78-4fbc-a256-3f09b94658bb 1 Other Other +9ba701fb-5be8-402a-af4a-7ca945b2e7dc 1 Other Other +9ba714d5-a861-4633-9972-ee624c67bd2d 1 Other Other +9ba728c7-329d-48a9-8ff2-bea0c12790e4 1 Other Other +9ba77c25-f98c-49d3-8d0e-75da115eafb2 1 Other Other +9ba7bb13-fe8b-48f7-bed6-aa642cbb0065 1 Other Other +9ba7dd87-67e7-4c14-bcb9-87b0bfabff42 1 Other Other +9ba7e997-2cb8-4574-8033-a7552807ae47 1 Other Other +9ba7f986-bb5e-44bd-a1b4-886cec1a9623 1 Other Other +9ba81297-9e39-4764-91e7-3dd735984130 1 Other Other +9ba882dd-8954-4a34-afd6-50270bf85ae4 1 \N Other +9ba8ca52-0305-4a02-b46a-08186a01adad 1 Other Other +9ba92cb6-38a0-4a9d-bd2f-ddf5f7fcacaa 1 Other Other +9ba9f721-4e51-4bb1-8e31-9339afe9f3f4 1 Other Other +9baa0fc9-89a6-4c07-8809-9051c1a35e96 1 Other Other +9baa9685-4238-40fb-85ee-3d059a939e75 1 Other Other +9baacb79-29d7-4ff7-962b-ddd4e193679a 1 Other Other +9baaedf1-63db-4111-9dfa-0f34f4c825d4 1 Other Other +9bab31a3-96ff-40d6-b334-34c47eec8ca1 1 Other Other +9bab44b6-796a-4886-b646-2ddf53901713 1 Other Other +9bab50a1-5e7f-4e5d-a5aa-d08218fe8b10 1 Other Other +9bab7a50-e3ed-417b-b55b-8c0f021a55db 1 Other Other +9bab9644-7b72-4425-848c-93caf1bace04 1 Other Other +9bac16dd-ec89-4760-9318-47ffff6e51e5 1 Other Other +9bac4d80-2fb1-4d91-8469-2e6dd690e4bc 1 Other Other +9bac7ac6-60c5-4087-8003-18496eaf7d34 1 Other Other +9bac9f48-7616-4b55-897d-f71cd0cd90b7 1 Other Other +9baca543-6d2b-4a49-9e79-1dfca609a8b3 1 Other Other +9baccf54-11ae-4490-af7f-381c6521a171 1 Other Other +9bacf096-c7ff-4527-b9a8-ffece4c0426d 1 Other Other +9bad0180-4d5e-424a-85ab-769bbd7e6f38 1 Other Other +9bad0409-2b1b-4d27-9311-8c61628d9d04 1 Other Other +9bad1774-acfb-4a81-b94e-22db5457b9dd 1 Other Other +9bad18c6-8770-4157-b275-3091c30f3e8d 1 Other Other +9bad3fd3-30e1-4b01-b033-f1505400d122 1 Other Other +9badd7ae-8ed5-46b0-9b23-cc82557e3d09 1 Other Other +9bae17dc-3320-4e52-84e8-2490ff474916 1 Other Other +9bae258e-b751-49fe-91f0-6fd1985e7562 1 Other Other +9bae360f-d662-469c-97e4-0aea58c876a6 1 Other Other +9bae4a40-9cfc-498d-b8b1-d6166f2f30e3 1 Other Other +9baeab82-28b6-4a78-b346-57ec1211d86e 1 Other Other +9bafdc5a-f92a-4896-b297-5fa5608ec89a 1 Other Other +9bb00db6-bced-41fa-bf77-dd567195fd57 1 Other Other +9bb07639-8539-4003-94f4-0b1a3b3ab114 1 Other Other +9bb078c8-146a-42c0-aeca-df096f329b1e 1 Other Other +9bb098cc-7756-4676-80c1-85f23071cbee 1 Other Other +9bb0b9b5-a075-4cbd-9884-69115e702adc 1 Other Other +9bb11df8-04c6-43f4-93bf-f4ebc9e5f949 1 Other Other +9bb12a44-769d-4db5-8db6-93bc5c4fe58e 1 Other Other +9bb1346e-0924-4609-b615-99cda87789d4 1 Other Other +9bb172d9-29b4-445b-b191-2a9a033d7a0a 1 Other Other +9bb178e1-be53-41d8-8349-4726df4db725 1 Other Other +9bb1a968-46d4-11e8-8f79-fa163e8624cc 1 Other Other +9bb20512-321c-4124-8213-d3fb3ba4cf3a 1 Other Other +9bb20b12-73cb-48d8-8b8b-fd3190b7fc1a 1 Other Other +9bb21f58-133b-4263-9ae5-2bf17d2dda4b 1 Other Other +9bb2262e-c7f1-448d-8d76-8c962f3f5011 1 Other Other +9bb22743-160a-41c2-81c7-f530cbb76f88 1 Other Other +9bb22ce5-5fad-43f7-b97b-b3ffa695cbe9 1 Other Other +9bb28cc0-360d-45c4-adcb-01e9c0373729 1 Other Other +9bb290b9-e8cd-4b81-9582-b405cb963ec7 1 Other Other +9bb29ca6-59e4-49ed-a06d-bb24ed939363 1 Other Other +9bb2e8a2-bbb2-4728-8bab-e5f0354f5e6b 1 Other Other +9bb3535b-a8b9-4dbc-9a4a-7c4804889060 1 Other Other +9bb360fc-61cd-4973-8077-aacbbb2e194e 1 Other Other +9bb37c6a-1aee-416b-ae5a-94e3c6f1cbea 1 Other Other +9bb393cb-56ad-4f02-9dd2-367ed21b98c2 1 Other Other +9bb3b830-755b-49b3-a1a1-1cd12b582682 1 Other Other +9bb3e74e-0a89-45ab-ab35-ded126e18051 1 Other Other +9bb40dec-5082-49a7-a473-7633f3eaaa24 1 Other Other +9bb4396c-720e-4741-b4f4-63396471cc13 1 Other Other +9bb4579e-11da-4679-b4c7-81c5b5a63810 1 James Other +9bb4580e-6c97-44b1-a122-861bff34d618 1 Other Other +9bb4626d-da00-4184-a9ea-20fc368ded45 1 Other Other +9bb48c85-f919-4cfa-89da-72173f16e9a4 1 Other Other +9bb49714-c321-4950-8bb5-1f9d7fb201ec 1 Other Other +9bb4a201-0f3a-44a8-8ac2-b6b7c93a08fb 1 Other Other +9bb4e3c0-eba4-4cf1-b315-ab22c9467c2d 1 \N Other +9bb4e6f2-f065-4050-9bac-7f10daaec4ca 1 Other Other +9bb50b4d-3b40-4e72-b681-edad964ccfcc 1 Other Other +9bb51a6d-bb7a-497a-ba63-0efba044cf44 1 Other Other +9bb53cab-cc14-4a0a-a48e-a7cf953114a3 1 \N Other +9bb53daf-ca74-4cdb-923e-ac73872713c1 1 Other Other +9bb5b40f-e421-4a8e-9264-540b0f53da00 1 Other Other +9bb5d544-0707-4a47-b8c0-d274fa462c6b 1 Other Other +9bb5e71b-fb0b-4613-a221-912637ef94fb 1 Other Other +9bb602b3-9056-4ba6-9419-c53d29be23ac 1 Other Other +9bb60606-76f0-4ab1-89a5-37563bf61505 1 Other Other +9bb61762-6392-4729-8e2c-ef0742fbb13f 1 Other Other +9bb6232a-9e86-4468-a316-bed39442918b 1 Other Other +9bb65d94-316c-4e7c-9c62-6aac17dd7ac4 1 Other Other +9bb6b707-6de0-4cf5-bd5c-0091c3d900a1 1 Other Other +9bb6cb1d-7d03-4f7f-a74b-ac384164a7ec 1 \N Other +9bb6ea3e-0eca-46a0-9942-99d6c910fb43 1 Other Other +9bb7110e-a7de-4fc1-9f37-91a7d634eae2 1 Other Other +9bb74376-4565-4db6-b008-52c7616c09b7 1 Other Other +9bb7edf8-8f94-4169-90d0-f708ad5956a1 1 Other Other +9bb8103a-c186-4319-9d3a-6cb77f54d130 1 Other Other +9bb8120f-8579-458c-97b3-a23004211284 1 Other Other +9bb83668-02fb-417d-9e0c-db4d32bb12ff 1 Other Other +9bb881c4-1367-4ae5-af12-f243d8a6ca0b 1 Other Other +9bb8d765-b2da-42fc-b795-36988dea873b 1 Other Other +9bb8f575-bbc6-4bfc-86d5-dc04199e5321 1 Other Other +9bb8f9b6-3e5a-45f1-98af-e6c8296466e6 1 Other Other +9bb9591e-3ef8-4bc4-9154-bb2a2730088d 1 Other Other +9bb969e1-c77e-4623-98a8-d55b77cdc320 1 Other Other +9bb96f16-79c4-4ead-aca8-973a08c1dcd4 1 Other Other +9bb9b282-330b-4747-bb5d-3e04121e985b 1 \N Other +9bb9d1e0-beba-4ad2-9a4a-54cf21d667ec 1 Other Other +9bba11aa-aa90-49b7-8b04-961caab73e1b 1 Other Other +9bbad49c-0c28-4e97-b736-922b8d8d8dd2 1 Other Other +9bbad771-b225-4ca2-8262-f41b4556e7a6 1 Other Other +9bbb00bd-924c-4f4c-b457-8b9686d46770 1 Other Other +9bbb2dc7-7303-400f-b0d4-acf537e459ca 1 \N Other +9bbb3d1b-78bf-4f3d-98e0-32988d61b96e 1 Other Other +9bbb5c98-27cf-4050-9b01-90a2d9cb86b5 1 Other Other +9bbba3bd-5670-4f57-a8fd-1f2baa792eb1 1 Other Other +9bbbb67a-6ef2-43d9-af32-bd917972257b 1 Other Other +9bbbb87e-403a-47ee-b7fe-ab56572712a2 1 Other Other +9bbbdf64-05f4-467d-b3f1-dcbf05423534 1 \N Other +9bbbe320-9ac5-4f56-834b-0ecea5d182d9 1 Other Other +9bbc0745-76c6-483c-a3b9-d28592197afe 1 \N Other +9bbc3fd7-8e64-4bc1-ab5f-653eb60131a9 1 Other Other +9bbc7be5-8727-460d-9714-2218b424dc52 1 Other Other +9bbcf1ec-f080-43d9-9c1c-342cefac0826 1 Other Other +9bbd4307-9e10-438d-b5a7-73de2cfac454 1 Other Other +9bbd8cf5-7de8-4182-a92c-ca068c33aaa1 1 Other Other +9bbda3b9-850c-4553-99a3-22cdf534fa4f 1 \N Other +9bbe0cc0-4caa-4975-98bd-e74a4b1de60d 1 Other Other +9bbe26fa-0d18-4029-8284-b2f37ba34897 1 Other Other +9bbe4fe3-e577-4784-aa42-4eaec40fa55a 1 Other Other +9bbe77e6-e22b-4471-b3c8-9e0d26b540c1 1 Other Other +9bbecf86-775b-4e95-89dd-adb4a38d01f1 1 Other Other +9bbf5545-90fc-47fa-9f85-96757ed4e454 1 Other Other +9bbf7d90-e094-454b-bb51-3b15c1917b63 1 Other Other +9bbfb13c-3580-421a-9fa6-3d15c7a699b0 1 Other Other +9bc0390c-3a0b-432d-9899-979cf224060a 1 Other Other +9bc052bb-9643-4b87-baed-e0597d2a7e06 1 Other Other +9bc05443-1745-4c35-a789-44d0cfc62e50 1 Other Other +9bc0a3a3-034e-41d5-a911-2a26d5d1c627 1 Other Other +9bc10136-3145-462b-90c2-a1630e65544d 1 Other Other +9bc12c5c-df0a-4420-97e0-7e33ce62c112 1 Other Other +9bc13b69-92b6-4b7c-9054-5ec7b673c900 1 Other Other +9bc147a4-2087-4e4b-abde-f5254d8b30f3 1 Other Other +9bc180d4-9fbc-41f0-9443-31acc2ba5a45 1 Other Other +9bc18983-d874-4645-af72-dfa12c33be32 1 Other Other +9bc19dcf-902f-40c8-b4cb-e8044077e1d2 1 Other Other +9bc1daff-e5ef-4481-83c0-e15938cdbc97 1 Other Other +9bc1df7b-b8fd-4bc7-b38e-e1d08b181da6 1 Other Other +9bc1eeff-132d-4831-a6b7-e6cbea14819a 1 Other Other +9bc1ff9b-a578-4c53-b5f7-f11b3a104e2b 1 Other Other +9bc24649-3125-4bcc-9c8d-c20eab06223f 1 Other Other +9bc25253-130d-4a31-8346-3f5b04d70dad 1 Other Other +9bc29d3b-b28d-46f7-8a70-4dc73dd2bb11 1 Other Other +9bc2f92f-e96c-4dd8-af9e-c9efbfb8350a 1 Other Other +9bc30102-0367-428f-9571-381a1f7e6a3c 1 Other Other +9bc31207-b14a-4d01-b29f-646d973d8647 1 Other Other +9bc34677-263d-4cf9-8d87-c570c478ee7b 1 Other Other +9bc3bc9f-6107-4eac-9688-c04ba6fabfc4 1 Other Other +9bc3dab9-a854-4f66-ac63-fc4ae5b7d4c3 1 Other Other +9bc40cb2-08f3-4d16-a692-382580179b34 1 Other Other +9bc4d25d-116e-4ff2-b653-94984df1f50d 1 Other Other +9bc4d7d1-a166-4f5a-8f18-36854fd413ed 1 Other Other +9bc4f19b-8f4e-43b7-90b8-83dc73b8a606 1 Other Other +9bc53feb-a888-4f6a-9dc6-0a0640bef247 1 Other Other +9bc54b03-b3d9-4a36-9dd3-1adc71bb0f91 1 Other Other +9bc58b20-0489-4395-aaf0-522c634ef79a 1 Other Other +9bc5a179-0e0e-47d1-9eac-13219344a348 1 Other Other +9bc5b92d-c6f2-46f2-a643-fbf190e96238 1 Other Other +9bc5bc20-adc5-4d75-a930-93e1aa675e1f 1 Other Other +9bc5c494-e79e-421e-a2d5-e275aec4c897 1 Other Other +9bc5d8d8-4d35-4c20-a504-caea80118e08 1 Other Other +9bc6048e-61af-447b-a8e3-7c9758c4534a 1 Other Other +9bc66efd-c8be-40f6-89dc-5efd47da48e5 1 Other Other +9bc677b0-817a-48dc-b7a1-e1d6583119fb 1 Other Other +9bc687fe-8508-492d-b392-605cbd42a3e6 1 Other Other +9bc694b4-75c6-48bc-b963-49a74aaa5bc0 1 Other Other +9bc6f394-b1e7-4b4c-b0f9-f0af8d541a55 1 Other Other +9bc709e7-a1c1-42e5-8662-2871b80443cb 1 Other Other +9bc71167-948e-47b1-826e-9c01903ce805 1 Other Other +9bc71423-97ec-488e-badc-3cc2bc45a0ab 1 Other Other +9bc780d0-0467-4292-a978-96476f6c9067 1 Other Other +9bc78f3d-d6c8-4b83-9c31-9517dbc0510f 1 Other Other +9bc79954-adad-41dd-9a1b-fcac2a207554 1 Other Other +9bc7afd0-8047-412f-8a33-7b96adb256c5 1 James Other +9bc7c75a-588d-44be-b0b6-573be66cc2b4 1 Other Other +9bc7c87e-d308-450d-831c-3c9c66dc3d59 1 Other Other +9bc7c94e-aa8c-42ec-a73f-3fdf33ab2c51 1 \N Other +9bc7d41e-29be-4445-ba2c-8866e90afca0 1 Other Other +9bc80125-24b1-4c08-8087-069f5d09e1e3 1 Other Other +9bc818ea-f73a-49ed-a2c4-46462d6aa3e8 1 Other Other +9bc818fc-1115-445e-b44f-68694e9cc281 1 Other Other +9bc8312d-51dd-4c71-8c26-dda1d3a596b5 1 Other Other +9bc8981d-7fbf-4271-8e8d-73da53339c9f 1 Other Other +9bc8e1c8-0691-4812-8219-a3caa8361554 1 Other Other +9bc9148a-307f-40c8-9a77-c4b50379f888 1 Other Other +9bc91d69-df6d-4893-9dc7-dba02331e8c5 1 Other Other +9bc95630-3bbc-41da-ae00-28c684203312 1 Other Other +9bc95b6e-f565-4347-8ef1-2cca1118b320 1 Other Other +9bc9601e-bbcb-47a2-962b-8ed4bca75ced 1 Other Other +9bc9680a-6005-40b9-b845-af3e06b000cf 1 Other Other +9bc9c5c9-6c7d-4cdc-bc5e-ba1c15448359 1 Other Other +9bc9fe7b-56e3-4f17-b949-1590e4ad9cc2 1 Other Other +9bca010b-681d-46a6-8095-31c600f73771 1 Other Other +9bca0fb6-4c5c-4528-a034-c3a22d809cba 1 Other Other +9bca2709-67f6-4827-bc51-7f939ca5fe65 1 Other Other +9bca33e3-d6a8-4f71-ba1c-f6f0571b6a5a 1 Other Other +9bca38c4-313a-4838-a0cc-de7ca2ee75c2 1 Other Other +9bca403e-11c8-40b7-9760-9e17dbb27e3f 1 Other Other +9bca72b5-c7cb-43d4-abf2-1806f8cd26df 1 Other Other +9bca88e3-13ca-4446-be61-702ee33b689b 1 Other Other +9bca9c54-e538-428f-9179-0a6390ab4327 1 Other Other +9bcaaf9d-81b2-45b6-90c0-4d52a7acdb81 1 Other Other +9bcad237-1a9f-4ecc-9ba8-b87c36ae2da1 1 Other Other +9bcad8ff-fce8-42c6-862b-7d4dc9ccebb1 1 Other Other +9bcaf773-b2c8-44c5-8d77-b6199e90232a 1 Other Other +9bcb1162-2809-4998-84ea-bd88f430458c 1 Other Other +9bcb61af-30ce-4dff-a414-6a2d8d4ca8cf 1 Other Other +9bcb73cd-dd61-4915-a3f8-c8164bbde283 1 Other Other +9bcb8365-ac8e-4305-b076-b8a2ddd6ab04 1 Other Other +9bcbf0eb-fca7-4f93-be2c-ffecd77ff612 1 Other Other +9bcc86aa-afa0-4ba4-b883-2cc66ce1f7a9 1 Other Other +9bccf975-26c4-4fe0-8578-2600f2b3f7df 1 Other Other +9bcd6a43-8fa8-4014-8522-dc78443b62a2 1 Other Other +9bcd74d7-bae7-41df-ac6d-5a5a74de7ce3 1 Other Other +9bcda980-b0e4-45fb-a17d-8365a3882f68 1 Other Other +9bcdbfda-9891-4df5-b13d-be0e3f377948 1 Other Other +9bcdf197-1a4f-48df-b67d-878362cdc1a3 1 Other Other +9bce490e-5f79-4ff2-9d26-99ae3cf70f10 1 Other Other +9bceac1b-addd-4399-92fc-87cae22ab1e0 1 Other Other +9bcee99f-27ed-4293-b5e8-6daca65cf0f4 1 Other Other +9bcf1e14-da5a-45eb-9228-1e0e297cc30e 1 Other Other +9bcfd318-b208-4535-a00d-5767b1108874 1 Other Other +9bd05b6b-3c8c-4c2b-b28a-bc9c18776fc2 1 Other Other +9bd06fa9-a4e2-419e-b0b8-5588cc71faba 1 Other Other +9bd08e87-b1e7-479e-9f7d-a51fe346c8a7 1 Other Other +9bd097ee-4c6e-41d8-9d0b-8c54b8d4b0df 1 Other Other +9bd0f9c2-7f1e-43c6-9312-799d531a9166 1 Other Other +9bd13658-86df-4e50-b734-a32aa12e8c29 1 Other Other +9bd1669a-f81f-4e93-a804-9379a74a5738 1 Other Other +9bd1a91d-e0c0-442d-bf44-800936d0e8db 1 Other Other +9bd1acf2-4da2-4be8-be40-58f1cae5562f 1 Other Other +9bd1d3b6-ce2a-4902-8cb4-e15fe74b424b 1 Other Other +9bd1f2b7-ae21-4341-b497-d512524550cb 1 Other Other +9bd21c26-adb9-4113-ba2d-a40e0ec8d571 1 Other Other +9bd22f22-acb7-4bb0-88cb-b5f1e775301d 1 Other Other +9bd299c4-6d35-45e8-8cc1-32fc5a0a57b6 1 James Other +9bd29fca-d7a9-46d2-b793-180c8e1e8ffa 1 James Other +9bd2be35-74c0-4a3a-94a4-021163b0e330 1 Other Other +9bd2fe13-e619-4874-bae0-12825491b211 1 Other Other +9bd3328a-4543-499f-bc9c-be1960b9ae5e 1 \N Other +9bd35748-931a-4117-abf8-592467624049 1 Other Other +9bd35f21-4d5f-4376-8010-e38fd132aee9 1 Other Other +9bd36c8a-358c-48e0-bd01-03e676b3235d 1 Other Other +9bd37d59-e337-42a5-99d8-c2efc4939cf9 1 Other Other +9bd39ffb-932b-4be0-87bc-e6920acbc975 1 Other Other +9bd3e5ec-c536-494d-bdc4-9bc6fdd39f5c 1 Other Other +9bd43edf-ab70-4abd-ba8c-70ea3d525050 1 Other Other +9bd4ea32-60cb-401b-95df-e08b294b45a2 1 Other Other +9bd54083-2b69-496d-9084-8ca56692d624 1 Other Other +9bd54d6f-d904-4089-8f23-4642c5b25186 1 \N Other +9bd596ff-0425-4271-a7ed-517def82a2c0 1 \N Other +9bd59e1d-eeff-48c9-9922-e568f667cc42 1 Other Other +9bd5e3f1-bce1-49e1-8c55-a34967c212b5 1 \N Other +9bd5fa26-b746-4f42-8e44-05b4ae294f76 1 Other Other +9bd64d92-5819-482d-beca-13687f529fb1 1 Other Other +9bd67463-0728-41df-a980-950841d181df 1 Other Other +9bd679ce-9022-448f-b346-6a2cf4624a2e 1 Other Other +9bd69d9f-461e-47e8-84e3-5d73269cb52e 1 Other Other +9bd6b35d-2296-4e3f-aa1e-ff546a5fda88 1 Other Other +9bd6cad6-2605-4934-a95b-87ede878d44b 1 \N Other +9bd77b22-378a-42d4-934e-99eaf2ec60d5 1 Other Other +9bd79bf5-a2c2-4380-a002-2fa88571e07f 1 Other Other +9bd7a45f-d107-4b91-9021-4c6410608728 1 Other Other +9bd7b423-e146-40a5-b2ee-ab5814fec67f 1 Other Other +9bd7c1de-4ca9-4e11-a8bc-dbbf36f1bd4e 1 Other Other +9bd7d813-4c43-4c37-8475-ddc855762b32 1 Other Other +9bd7e1e5-4955-491e-9986-7c3ef157b58b 1 Other Other +9bd7f4c7-f74e-4d91-bc7c-29fd5788ebc9 1 Other Other +9bd88f37-41ed-476a-936c-73af22cfa81f 1 Other Other +9bd898b5-4882-4de1-81b8-afd5d6a001a1 1 Other Other +9bd90cfe-fb9a-4c09-88bc-6d5074397771 1 Other Other +9bd9492f-a059-494d-9402-e3b58298bc56 1 Other Other +9bd94cfc-817c-4379-a9b3-b16e24e49478 1 Other Other +9bd94f49-ccc1-40f2-9da8-9d0d94bb747b 1 Other Other +9bd9644b-faa6-49da-b3d0-e7df253e35d4 1 Other Other +9bda598a-e129-49ef-848a-92e1f090af38 1 Other Other +9bdac703-02e3-4b71-a70d-fdae15233528 1 Other Other +9bdae211-f40b-408f-aed1-13a3b4fb0191 1 Other Other +9bdb0424-aea7-40f0-bcdf-6e4ff1bf6b84 1 Other Other +9bdb0ab1-12de-479d-b90d-61f621451ede 1 Other Other +9bdb3bc5-65a8-4c4c-9e97-62bb58d7fad9 1 Other Other +9bdb7e6b-6d68-47a5-b060-ee32eb630f39 1 Other Other +9bdb8299-2151-4ba4-bb1b-e3c8ad9e68fd 1 Other Other +9bdb8cb3-517b-4287-8e46-503ee076005d 1 Other Other +9bdbbcd9-3dac-47d0-964d-5f566dac5bf2 1 Other Other +9bdc0b58-9208-4cbf-9771-67a52a1e1cb0 1 Other Other +9bdc1833-817b-4797-b078-bfb3ee0badc4 1 Other Other +9bdc3e14-a5eb-4dc7-b2a5-3c33a65ee256 1 \N Other +9bdc4efb-61be-43a1-9070-d8b87c8877f1 1 Other Other +9bdcd4d1-e2d0-4480-8afe-9c69719c3cbd 1 Other Other +9bdcdf48-9d54-4444-b578-937d52aa0eb1 1 Other Other +9bdd202a-f7a5-427e-94dd-92c78d16de1e 1 Other Other +9bdd97b6-0b96-4a26-b71c-b5581c948877 1 Other Other +9bddbc01-4549-4bdc-950d-58e3e583d4b8 1 Other Other +9bddfcc7-355d-43d6-b9a8-6e5a47f1816c 1 Other Other +9bde1368-5de7-4213-93a4-58a7ee7fa23f 1 Other Other +9bde1560-d63e-4f93-8d7f-5a2f1101ba9b 1 Other Other +9bde36bf-0f28-4ac5-a8ef-5ef6f38af17b 1 Other Other +9bde4d46-9e87-4bb2-b42e-551a200f2632 1 Other Other +9bde7a8a-78ac-471c-a430-578c241d13cf 1 Other Other +9bde9aee-b591-4fec-8650-fe33717132b3 1 Other Other +9bded39f-6e56-4956-a582-5e1900367549 1 Other Other +9bdee89a-09e6-4c78-8823-cc31d1b2bfb6 1 Other Other +9bdef1dd-3af8-4f1e-8e78-122e5c3150fe 1 Other Other +9bdef778-3d09-4ed7-927d-5414954e9660 1 Other Other +9bdf0054-81fa-4002-ac7f-e7fe9db0f59f 1 Other Other +9bdf2169-1171-4f9e-b6d1-c1dc3afeb68e 1 Other Other +9bdf37b1-fb0e-433d-9e27-975bd6c74ad1 1 Other Other +9bdf4a52-f942-4b66-a996-2639a3f822c0 1 Other Other +9bdfa14f-f5e8-4e35-a910-736ef599c8ce 1 \N Other +9bdff9b6-f3bb-4297-a5d9-e2e4f5ac1177 1 Other Other +9be006f5-8457-4305-b523-f128c12d6774 1 Other Other +9be025fc-50c2-4bac-8b52-73b22f786130 1 Other Other +9be069b6-9e2f-4ded-bb9d-dd42216c8a08 1 Other Other +9be0c6d2-32c7-4f99-a1f2-0749a00d8931 1 Other Other +9be0fa33-f263-4720-83f2-3ce99668793b 1 Other Other +9be11e64-0e0e-4fdc-81e8-63a7a39877a2 1 Other Other +9be15d64-f620-4c28-a37c-1b14cd684f78 1 Other Other +9be189fd-405d-4b3e-8005-8e07268d728e 1 Other Other +9be199a2-be11-4a7e-93c4-de2b9bb0727a 1 Other Other +9be20994-e175-4111-a644-093c973b3361 1 Other Other +9be262b5-60da-4d14-b932-ca1a5656b3e8 1 Other Other +9be2c692-df56-4951-95ba-fa5d6fd29743 1 Other Other +9be2c9bf-8960-49bd-a4c1-59221eb46bf3 1 Other Other +9be2f9ae-ceaf-4444-889a-8510b12e9037 1 Other Other +9be31091-f6b7-4407-aae5-90677c6f7191 1 Other Other +9be32ed8-c9ad-4fbe-872a-4fc141bf7464 1 Other Other +9be3418b-b62c-427b-b34a-9306833d3155 1 Other Other +9be364c1-0a2a-4ffb-ba5e-98b642692806 1 Other Other +9be36636-9fe0-4056-b300-5c8427d9500d 1 Other Other +9be3684c-7752-4d83-8450-4f6412a69929 1 Other Other +9be37187-d375-4bb9-adbc-0bcbc28ab2e9 1 \N Other +9be3e3f7-cf58-47d5-9821-c30759755475 1 James Other +9be42c4d-7f02-48fb-9510-0fbba16d5d85 1 Other Other +9be44516-67dc-4f79-978a-2b52458a8ddc 1 Other Other +9be47c17-c1e3-4797-af19-24d71c2c1c9b 1 Other Other +9be48cbe-303e-4c92-b389-fb82199392e6 1 Other Other +9be4b155-f02e-4051-a799-f1da09cc5a71 1 Other Other +9be4bebc-b478-47b9-8602-9411a74702d4 1 Other Other +9be523c3-25f0-4d08-a239-c5d65e79619e 1 Other Other +9be52ec3-0d3a-44b0-9990-d59f0ff56428 1 Other Other +9be532b5-c321-4402-97e8-09461c07d867 1 Other Other +9be55326-225f-44a4-9445-eafadd590059 1 Other Other +9be55e4b-b843-4514-ac35-0bef28854c6d 1 Other Other +9be57dd5-87f5-461a-9a03-b692e6af1701 1 Other Other +9be5a1e3-45eb-49a3-bba5-23962004f112 1 Other Other +9be5d228-6d56-43e4-900c-f2d769741470 1 Other Other +9be5f268-0c69-4426-881d-039c4fe00486 1 Other Other +9be621b2-c0c5-41e5-ac23-ebd8713c1c2d 1 Other Other +9be6305a-1b3b-461e-a96d-8b9533097609 1 Other Other +9be66e03-51e2-4635-9d34-c4ff63a8b4d3 1 Other Other +9be687a4-83d3-4bbe-9e72-efd9f1b667d0 1 Other Other +9be6e111-3cb4-4108-a673-8ffdc59f9940 1 Other Other +9be7022d-9ff4-409a-89b8-a46ec607e7c9 1 Other Other +9be772e9-b564-49ae-976b-9cbc190c64ea 1 Other Other +9be7db24-d72d-4639-b071-e45217598876 1 Other Other +9be846d4-3b35-40d9-8650-816fbb075071 1 Other Other +9be85a7d-cb75-4984-9236-fee2ec524dd8 1 Other Other +9be89c26-e61d-4073-85d9-d3a4f9aed630 1 Other Other +9be89f11-260e-46ae-8b4a-3ef725082520 1 Other Other +9be8a3c5-45cc-4724-8b44-112f02007da7 1 Other Other +9be8e412-8a80-437f-ad17-31907661c644 1 James Other +9be8e866-fd8a-4183-b31d-4cd1061c1b68 1 Other Other +9be937e7-aaaf-4585-856c-94e7192ae43b 1 Other Other +9be9a8b9-d752-47f5-8dee-9a2655b814ee 1 Other Other +9be9b389-aa4b-4dae-b3f2-8ee90f447c6d 1 Other Other +9be9f8ea-c6db-48cd-a28a-600257701bb9 1 Other Other +9bea2f77-b889-482f-8760-adb8d7e0fb0d 1 Other Other +9bea8217-75de-45b7-8c76-2bb152f01049 1 Other Other +9bea8473-5b3f-41f9-9a4b-d601432f9f02 1 Other Other +9beaaf45-c8f7-446e-9c90-f3aef0bca517 1 Other Other +9beab272-aa69-449d-805c-3e1a30ff21b0 1 Other Other +9bead421-c6c4-41d5-932b-c9c92cfc69a6 1 Other Other +9beb3fd7-e303-475f-b51e-ab002dbef355 1 Other Other +9beb6e98-1561-4b69-9c77-8b09c51b756c 1 James Other +9beb955a-9759-4ffa-b637-0d0b2775f9d8 1 Other Other +9beb996b-6fcf-4630-bdc2-c0f8697c8576 1 Other Other +9bebba40-f83f-435e-aa9e-ea4587ea06a1 1 Other Other +9bebc0ef-cf43-4cc4-80bd-5a6a68b5f284 1 Other Other +9bebc4d0-ad4f-4548-bc47-202f0c0614c0 1 Other Other +9bebd122-697d-4a6d-9d27-d3fbea369b56 1 Other Other +9bec009e-34c9-4766-bdc0-052ab26b3ac2 1 Other Other +9bec15f5-9a9a-42a2-9e92-c585d5e08733 1 Other Other +9bec3742-8c86-4cb3-bd31-8c4d9865f1ab 1 Other Other +9bec59b7-9790-45d3-b9bf-6b8272addf21 1 James Other +9bec61d4-bd74-4d2f-962e-2d6d6584c060 1 Other Other +9becab9e-28bf-4860-a1af-b36d833535b1 1 Other Other +9becafed-7922-4ad8-aaeb-90a0520db1bd 1 Other Other +9becb88a-feaa-445a-a414-2c742c884121 1 Other Other +9becef8e-9b64-4ecc-be59-60588dc96934 1 Other Other +9bed0246-5574-4859-8a0c-773eb1fa4696 1 Other Other +9bed49bd-4f6d-4944-92a4-90c0dc39dc8d 1 Other Other +9bede06c-8cd0-4bcd-8bca-03c03f89a818 1 Other Other +9bee3866-0e47-44ce-9e3b-287947a721f8 1 Other Other +9bee52a0-a682-4de1-9900-fe1d63375379 1 Other Other +9beea89b-a8b1-4b97-ae1e-da9c3c22a2ef 1 Other Other +9beed0d2-f413-4d61-b307-55225b313026 1 Other Other +9bef44b1-ea14-4c28-8dbd-6c87d2a5660b 1 Other Other +9bef8b67-dd97-4dbe-ac0e-12060b64c9e1 1 Other Other +9befaf8d-0202-48af-8b87-549264ad3055 1 Other Other +9befbf46-dd46-4c91-9914-74ca29c027ae 1 Other Other +9bf00260-eec6-4e64-977f-5acf41964be0 1 Other Other +9bf02391-3dfb-4926-9c24-df082cbb3f46 1 Other Other +9bf02cc3-934d-47fe-8954-8345da7525f9 1 \N Other +9bf03a68-1ebd-44c8-8634-9b0f2072458e 1 Other Other +9bf0503a-dc72-4fa9-9bea-eb6e63aabb92 1 Other Other +9bf122e6-ae38-4fb0-936c-f54db466b6c6 1 Other Other +9bf134b6-d0a3-4d19-b494-5096788e0c50 1 Other Other +9bf1610f-e9d8-4f60-ac93-9d44f67d76b6 1 Other Other +9bf17faf-51ec-42ba-8151-cb510fb3d060 1 Other Other +9bf19bc0-e0ca-41df-992d-3f28a3064b6a 1 Other Other +9bf1cf4d-3fc8-4f84-b721-1335803a2aff 1 Other Other +9bf21696-fcb3-4d13-ade1-ef1a193f100b 1 Other Other +9bf269a0-0e44-4698-8b5a-a39abe871bec 1 Other Other +9bf2a512-8555-4721-b7a8-0b424d376134 1 Other Other +9bf2b919-86c1-43be-aee5-b51b02865b36 1 Other Other +9bf30d4b-4c25-4ee4-b335-e8b626aa1f64 1 Other Other +9bf33469-df8a-4652-b172-45ba85816c6e 1 Other Other +9bf3d0e2-6670-4e88-8584-9c7858726d2a 1 Other Other +9bf3d683-6801-4abe-a348-d5caa3eb42c2 1 Other Other +9bf3dbcd-d809-44b1-89d8-af51be1d28ae 1 \N Other +9bf3e08e-6c21-44e5-b87b-5c4b2b0d5c3f 1 Other Other +9bf44951-1cb4-4923-905d-f94e9891f84c 1 Other Other +9bf498a0-34c1-4449-924d-a125bb29f860 1 Other Other +9bf4e183-5408-4f24-9044-d5b1f4a79a10 1 Other Other +9bf4f92a-9888-4240-86fe-e9e77295dccb 1 Other Other +9bf525a3-2a0b-4b06-a27a-f24b8d403a9d 1 Other Other +9bf56af5-a522-4893-a3a9-5c469b58e44e 1 Other Other +9bf5bfb3-87fe-4b96-bb33-e40301aff192 1 Other Other +9bf5bfff-08b0-474e-a15c-2a34fb372a7b 1 Other Other +9bf5cc4d-54e0-4c7b-9307-b9ddef670d05 1 Other Other +9bf60dc6-c7b3-412e-92fa-dc8199a8156e 1 Other Other +9bf61ce7-4cdc-4d41-8f17-84461097193d 1 Other Other +9bf66a54-aafb-44cf-b3ea-e84fa925cd68 1 Other Other +9bf68464-5425-46c3-aec9-f8b6839c2866 1 Other Other +9bf6a890-f783-41d1-81ba-c6fc244ac6fb 1 Other Other +9bf6d091-7cbf-4b04-82e9-ea902eb80186 1 Other Other +9bf70778-9f15-4406-8df5-4d4d1cbbb578 1 Other Other +9bf71006-ce76-4eac-ac4c-6e4c7f8a3adc 1 Other Other +9bf770b0-4de6-448d-8ee3-102dc3b5eaf7 1 Other Other +9bf7be7d-327b-4888-8875-9bd2cacac21a 1 Other Other +9bf7c965-e6f8-4415-b46c-1a20e5fa8d85 1 Other Other +9bf82795-5067-4105-b86b-48cf94bd201f 1 Other Other +9bf843cc-2bd2-4ec8-bf82-32e262baacd0 1 Other Other +9bf843ef-e5ad-4018-9119-e4295e38d0f5 1 Other Other +9bf86196-e37c-4796-ac9b-6a9b88474a26 1 Other Other +9bf86513-1841-43a1-8072-6bf16dc52648 1 Other Other +9bf8851e-9e5c-4023-b802-a58fd75cecc3 1 \N Other +9bf8903b-0d8e-4184-adfc-4f10c9641079 1 Other Other +9bf8aa6c-909f-4a43-8167-b490adcc898f 1 Other Other +9bf8bf07-c73a-428c-a69a-ee7d3f7bc5f4 1 Other Other +9bf8f108-c9e8-4d1b-a6f1-92c2cb008971 1 \N Other +9bf9018c-92e0-4fa7-8159-f4c652e692c5 1 Other Other +9bf90ab3-9f7d-4706-996d-9ba64585c82e 1 Other Other +9bf90d2d-6a8a-4802-9652-cf911090b398 1 Other Other +9bf923d9-dded-4830-b5ba-4a9d9b70fa78 1 \N Other +9bf930d3-4335-4043-a973-235ff75fd5a1 1 Other Other +9bf987c7-d4ef-4270-9fa7-24372df8fe92 1 Other Other +9bf9e6db-9dde-45ca-8d23-5c27d22c6215 1 Other Other +9bfa0227-ae3a-4927-add4-269d0f25d77e 1 Other Other +9bfa3622-2d00-4b43-88dc-8c8d3f898b73 1 Other Other +9bfa5300-2b13-4af0-bd01-bf357c330b2f 1 Other Other +9bfa54d4-0e3d-495f-bfa4-84990a4dfb64 1 Other Other +9bfa8834-b1d7-47ca-bdd5-e6834a5c6380 1 Other Other +9bfab29e-f5b4-47b9-bd27-f9f4ca9d2fb9 1 Other Other +9bfac0cf-5734-4789-83e1-b9abb615728d 1 Other Other +9bfad3a8-223d-4e53-81f3-c221fe0d4be8 1 Other Other +9bfad494-584b-480d-999f-ad5087ea98bf 1 \N Other +9bfb15d6-77b1-4f2e-a8dc-b4f53a79fea9 1 Other Other +9bfb1d7f-3ef4-4c47-9090-4d548a31907a 1 Other Other +9bfb7935-1753-4895-ab15-0f01bc56fb2a 1 Other Other +9bfb9902-f23d-4f26-a4ca-e1f80ec6aff6 1 Other Other +9bfba6a4-0081-40de-9083-9dadf28ec904 1 \N Other +9bfba911-4e17-4558-964d-5685f58b6997 1 Other Other +9bfc5326-09a9-4beb-b996-732bef269aad 1 Other Other +9bfcd907-5f51-4b83-8ffe-9b497e3629e7 1 Other Other +9bfd82c0-0e03-4a5f-a54b-2cd9c7856b10 1 Other Other +9bfda5cd-abe0-4a01-a851-44297fd79cd8 1 Other Other +9bfe0218-8edb-45b2-810d-798411afdcac 1 Other Other +9bfe034b-14e5-462d-a5c4-92a76c7fd1b0 1 Other Other +9bfe1794-c78a-4e66-bd5e-cb3b112e0246 1 Other Other +9bfe4ae3-9c8a-4684-bd91-b88efce00957 1 Other Other +9bfe61cf-1c5e-493b-906a-41f9627b8ca9 1 Other Other +9bfe7ffd-c960-4362-9d3a-e0bc033f5295 1 Other Other +9bfe83cb-ea91-438a-965f-f584f09814a6 1 \N Other +9bfe906b-f802-41fe-98e2-c5b10b6ec453 1 Other Other +9bfe9e73-e050-48ea-956e-23ad65a2ffa2 1 Other Other +9bfec3c6-558b-4a23-9915-7660bf395cc1 1 Other Other +9bffbaa6-896e-4ce7-a37a-d2c4bb91c028 1 Other Other +9bffd7b5-ef89-40c6-8107-51a88af19b57 1 Other Other +9bffebd5-f4a1-4ba7-b438-50c025efc9e7 1 Other Other +9c000150-5c80-4252-950f-26c3f7cff9cf 1 Other Other +9c00b515-9045-458e-a541-ef97025a9d54 1 Other Other +9c0108fc-d3db-4e4c-aff4-ab60820dd52f 1 Other Other +9c015b52-7f43-4a0a-b9d8-753ecf1c1837 1 Other Other +9c015fb1-ac6c-4c2a-8495-1c5ee0d84215 1 Other Other +9c0196bb-c449-4ce0-a6b3-104efff66cd1 1 Other Other +9c01bbfd-ee4a-4aa0-8aab-8161da81928d 1 Other Other +9c01d7c6-6b44-4af5-977e-386d13728333 1 Other Other +9c02d9b9-0f29-46ce-bdeb-df259f02ef3f 1 Other Other +9c02ef3e-5746-4820-8a52-8f74173e6b56 1 Other Other +9c02fb25-4e14-400e-87c7-90662e6086f9 1 Other Other +9c030b63-de9d-4701-90be-6c690657a6b9 1 Other Other +9c033965-be61-4c83-9d36-fdfdb2ef1768 1 Other Other +9c035d5d-8251-4bf5-9d00-82b966061d0f 1 Other Other +9c0373ea-889f-4508-8b71-d28e5289a522 1 Other Other +9c037400-fb7d-42d9-8f41-1ef6201864da 1 Other Other +9c038d58-001e-48fe-825b-21844087dca4 1 Other Other +9c03b3e6-5bee-4a48-be2c-4fc728b710cc 1 Other Other +9c03bb87-fecb-43f6-b06f-1a02a36129f0 1 Other Other +9c03d928-a545-4e04-9b0c-9b7ef55cf9e9 1 Other Other +9c03e5d5-6155-4aad-9ae4-43191ae9c503 1 Other Other +9c04afdb-4c37-4ea9-8e8d-f670d0d2c6ac 1 Other Other +9c04f067-7eef-4d9d-903c-e07a126ea3de 1 Other Other +9c05278d-cfab-4c3d-bdea-35180ec14f55 1 Other Other +9c0578b2-e1cd-4d68-8e76-9d81bde5c1f0 1 James Other +9c063bab-9e4c-4b65-b01f-97998486ed79 1 Other Other +9c066f40-18c0-42a7-a79b-7af3ab1622c9 1 \N Other +9c06a775-6e1b-4589-b4ed-47995e22fa69 1 Other Other +9c06aee6-eaeb-4241-98b2-272b7da30017 1 Other Other +9c06c19f-01c8-4a82-8bc6-76e23d2e15d2 1 Other Other +9c06c650-4283-490a-a1c9-b0495eeb958e 1 Other Other +9c06e174-0076-4594-8674-08b01c8ce6cd 1 Other Other +9c06e344-7c5e-49a2-a348-466cf473b662 1 Other Other +9c070efc-0aae-4102-8854-6781f3f2d7cf 1 Other Other +9c073f15-2911-4933-be2d-b65cb5d04f9d 1 Other Other +9c07599d-33e7-4713-b1a2-c5d9c4332676 1 Other Other +9c079052-dba7-4831-a47b-bf001511e2d3 1 Other Other +9c07af2d-a6c3-4a23-90da-99bcb949848b 1 Other Other +9c07f817-e71e-4773-b796-a2da0ddb85f0 1 Other Other +9c08267c-60f3-43dd-b3a6-b07c19917581 1 \N Other +9c087d03-95fb-4f70-8fc3-d1075353b7a8 1 Other Other +9c08a1ac-0a48-433e-8928-78202b3e7a86 1 Other Other +9c08d607-3bf3-49ab-8d1d-d0ed7985822e 1 Other Other +9c08ec02-1987-4538-abf2-9979413f2c8d 1 Other Other +9c08ecb2-5f04-42de-a9cf-08451f3584fe 1 Other Other +9c090155-a660-43c2-a421-2b7bcd567309 1 Other Other +9c094d34-e990-4b8f-a82e-ab3962580a63 1 Other Other +9c098410-3257-4fb8-b995-9dd6fdc6ecd7 1 Other Other +9c09abb9-3a91-439a-8f9f-214315f8940b 1 Other Other +9c09e84f-ac66-4967-a6e7-71bb2523f093 1 Other Other +9c0a126e-e954-468a-aa5c-4730c8d348b9 1 Other Other +9c0a16b1-9a4f-496c-86b6-ad4ce12ab8f8 1 Other Other +9c0a180d-1386-49b8-b9e5-98ec39172dd3 1 Other Other +9c0a1e11-51a2-4986-8dbc-35541b5574a7 1 Other Other +9c0a2f9c-00c8-45aa-bf7c-fd3314375a25 1 Other Other +9c0a9a14-1a2f-4990-829c-c190a822a392 1 Other Other +9c0aa6eb-c013-45db-b682-55a379e2b35d 1 \N Other +9c0ab3d3-b7cb-448f-b223-a08c82a735f2 1 Other Other +9c0b9106-0ead-47ee-a024-08a3249912f7 1 Other Other +9c0ba416-a7c1-4f5f-b54d-692f59a7673c 1 Other Other +9c0bd941-f2ae-45da-9ac8-926e9e29c456 1 Other Other +9c0bfa95-bcbe-4c59-bef3-2c2858f9e99b 1 Other Other +9c0c0b75-6b1b-4436-84bc-7b3038e87a5a 1 Other Other +9c0c242e-5d15-47fe-a42f-b69202da310f 1 Other Other +9c0c5e23-af99-47d1-9a47-322aed307e3a 1 Other Other +9c0c737d-115b-4cef-81e3-8056c3bc980e 1 Other Other +9c0c93e1-78d9-43ef-aa6e-72e11d28ad62 1 Other Other +9c0ca332-37ec-467b-b7e6-8d606164e82e 1 Other Other +9c0cb892-cbde-4636-a603-7497050b5b36 1 \N Other +9c0d5ef5-f4c3-4d3d-9527-5deda442a750 1 Other Other +9c0d6818-363d-48db-b5c7-02258b6c6060 1 Other Other +9c0e39d3-32bd-4424-8241-4fbac3340c40 1 Other Other +9c0e4676-beb8-4890-9822-65da8647a151 1 Other Other +9c0e53c3-0f2f-4e46-ac1f-0069007ef4be 1 Other Other +9c0e8b1c-ef89-49cf-8052-6e8c1c7648b2 1 Other Other +9c0e9721-8cba-4405-b0b4-c9cf21cc9034 1 Other Other +9c0ea463-a75a-42f8-86df-ec6cd5a8797d 1 \N Other +9c0ea989-97e5-4aae-a11f-2a0941248369 1 Other Other +9c0f03e3-6cf9-4767-98aa-99a892e4dc52 1 Other Other +9c0f2250-1d48-4531-9855-c2913e57622b 1 Other Other +9c0f311a-1b48-4963-af4d-9115acddab0f 1 \N Other +9c0f4042-2417-4c18-8df1-6dd9215a531e 1 \N Other +9c0f447d-331e-4776-925c-370be7084f49 1 Other Other +9c0f89dc-ea95-40cf-a714-dabe55aa05ec 1 Other Other +9c0fc8e1-7582-40f2-b4ba-b77ec2399773 1 Other Other +9c105360-0270-4325-a5d9-fcbcb2cb1cbc 1 Other Other +9c1095f9-ae31-40fc-97ff-aef7e5be850d 1 Other Other +9c109dbb-ffbf-4db5-9f93-d2c32d9f5418 1 Other Other +9c10b074-b265-4b02-af35-d83271d79a51 1 Other Other +9c10bb78-7c60-47cf-b929-e304662cc5d8 1 Other Other +9c10bee8-b05b-4627-94eb-cd90222d11bb 1 Other Other +9c10da4d-f51f-4321-8031-63b3f99b1757 1 Other Other +9c10fbe3-2739-44a0-be44-59157f68aab3 1 Other Other +9c1160a0-8fd8-4766-96f5-812f1af046fa 1 Other Other +9c118165-428d-44c9-9bae-57cae8857813 1 Other Other +9c118a64-0640-4da8-bf1a-d224a345cd50 1 Other Other +9c120c62-11ce-43fa-a50c-acea33c84a48 1 Other Other +9c1249ff-9ded-425d-8b61-038591145cf5 1 Other Other +9c125920-3e54-4da8-a3ef-369eec1a4105 1 Other Other +9c127ba6-ea0b-40c3-b44f-2983014a8f68 1 \N Other +9c13b8ed-8caa-440d-b254-2b6fea974b69 1 Other Other +9c13e57f-36d7-42a0-8544-88df36ab6a5b 1 Other Other +9c13e800-2e7b-466b-b3b4-6ef80512c1f0 1 Other Other +9c13f21c-37bb-4230-b310-aac28acd69df 1 Other Other +9c1403f1-84e9-4e45-9f4e-0a9801255803 1 \N Other +9c1441e8-5b00-4e5c-a0c1-9acdcb9f9da5 1 Other Other +9c147374-763b-44d3-baaa-80fde2941237 1 Other Other +9c147c0e-b05e-4b77-bb21-e117ff25c0ac 1 Other Other +9c14aff8-4e0f-4fe7-9eba-d03e0b5c513c 1 Other Other +9c14c003-47e6-4bf0-a0c6-95900baecfd5 1 Other Other +9c150211-7da8-4983-aa17-907ce6c76d22 1 Other Other +9c1521fd-6b4e-4e3a-8a8f-092ca43329df 1 Other Other +9c153737-bfc9-4073-811a-5c7a1653144c 1 Other Other +9c15a734-5d2b-459d-a08b-3ae0a12c75b0 1 Other Other +9c15ad64-1902-422c-ad8f-f38e72bb0d0d 1 Other Other +9c15d974-21f1-4fcc-926f-3f8aeaac9626 1 Other Other +9c15f9a1-481e-4917-89fb-b6ae8ae9a2a5 1 \N Other +9c16039c-ad8e-40fe-ba0d-90df97860742 1 Other Other +9c1666b0-a483-43af-beb9-fd4c393006dd 1 Other Other +9c16a9d8-2bb1-4a75-8c51-8324789b9000 1 James Other +9c16e513-70f2-4875-b80d-bb27e4544a8c 1 Other Other +9c16f5b9-6ac5-41af-8d52-786156ff24d1 1 Other Other +9c174757-781a-4132-a6d9-903823873cef 1 Other Other +9c174f39-d064-492f-8690-6e1e7f200f2a 1 Other Other +9c175f59-224e-4298-a675-7bd5d5b55129 1 Other Other +9c176add-ba80-46ba-8879-bedf5221aa1b 1 Other Other +9c1795f6-eff5-4483-9e24-b6855d11a6f1 1 Other Other +9c17970e-e3e8-43b0-b817-c5b9e04b48c7 1 Other Other +9c17cb26-9dc4-447a-a86e-b94837b11591 1 Other Other +9c180692-3f65-4733-b1e2-e0243dff7d3b 1 Other Other +9c18672e-de17-44cd-85e0-deb0dd89c09f 1 Other Other +9c18ed8e-f362-40ba-958e-8d2b87f16420 1 Other Other +9c1924bc-14e6-4fdc-aec8-9c12c1132f44 1 Other Other +9c1924e5-c8c3-4ab2-91e3-e3e2444a1909 1 Other Other +9c1952da-d760-4456-a021-2a8aac8b078b 1 Other Other +9c19c25f-b11a-44a7-a771-b5affbb9efbd 1 Other Other +9c1a08b2-05dd-476f-be62-85bbd8918764 1 Other Other +9c1a19e3-4832-4620-9453-02ba3582fe38 1 Other Other +9c1ab883-1ee6-4df6-a095-f29b4b7a07da 1 Other Other +9c1aedb0-0b3d-11e8-ac6a-fa163e8624cc 63dfcd94-143a-11e7-bec8-fa163e4dd901 Other Other +9c1afb03-a222-4fe7-b0d8-481d1cc5ebcb 1 Other Other +9c1affbc-3f91-46f2-9b97-1cdf6a14c0ce 1 Other Other +9c1b8416-7f67-4639-ac70-904d65fa2ccb 1 \N Other +9c1c4ca4-323d-4f6b-a324-2705b0acd7fd 1 Other Other +9c1c8cf7-c667-49a0-b859-ad94938a4e91 1 Other Other +9c1cb454-1d80-4f1d-8e76-a53fc621b1f7 1 Other Other +9c1cc47d-eacc-4180-b9b2-91606a5711b8 1 Other Other +9c1cd9fa-5267-44d6-adba-14e57b720e64 1 Other Other +9c1ce321-c79e-4fac-bbe8-3b312ff4a71e 1 Other Other +9c1cf3d4-fa22-4304-b463-b8967a61a353 1 Other Other +9c1d848b-2e50-464e-bed3-d372c2470032 1 Other Other +9c1d9dd1-fe17-4eb1-8251-e2b4932338fb 1 Other Other +9c1e29fd-dd10-47b2-8bda-ad8fcea626d2 1 Other Other +9c1e499b-c743-45fe-b5ca-63f211b99e23 1 Other Other +9c1e82f3-fd05-4019-a305-8f0cedfffd01 1 Other Other +9c1eca46-202c-4669-bc6a-8fbb92371352 1 Other Other +9c1ee6f2-0928-47b5-a9b3-7a6265983978 1 Other Other +9c1f1bc6-a8ce-4e8e-a6a8-2c2e58123a3b 1 Other Other +9c1f331f-5827-48f9-ae70-b19f6e846a26 1 Other Other +9c1f5b35-d4f3-42cd-98ec-1c18258836f8 1 Other Other +9c1f7782-2917-4390-9e6a-645d9dca7a17 1 Other Other +9c1fa9e2-861c-4ea6-b286-17fd0164a243 1 Other Other +9c1fabc7-14f1-4592-8e93-f38a12480e80 1 Other Other +9c1fc6ac-4205-48b8-b49f-2b52240ae0ab 1 Other Other +9c1ff9a5-effa-4085-a35b-52009f25f369 1 Other Other +9c20162c-8307-42cb-be0c-7f7f50c0d777 1 Other Other +9c20170e-36f7-40a7-8e61-c999cd16fed1 1 Other Other +9c20212f-b3b8-49e8-9079-8b7e38f4937d 1 Other Other +9c20e3cc-721d-45d7-a448-98e477e26f30 1 Other Other +9c2102a8-088b-46ef-a2d7-0e0885783139 1 Other Other +9c210c1c-8369-43ee-8594-5b8bea267fdd 1 Other Other +9c216b96-19b9-4370-a35d-8efcea20468a 1 Other Other +9c219333-f3b4-48b5-aa1c-72a88e179f2a 1 Other Other +9c21e1d1-eacb-403b-b947-50b04e7e2bcd 1 Other Other +9c21f357-1c42-498d-9559-7ba02355c8aa 1 Other Other +9c223c38-e7d1-4ba8-bdb4-71dd375fb9e2 1 \N Other +9c22b104-b3b6-4517-a04f-851b7a4dc287 1 Other Other +9c22c6df-bf59-46a7-bb52-9b9a9b288a88 1 Other Other +9c231765-58cb-4f5a-9347-5db2a9c191f8 1 Other Other +9c23190b-14b8-4b0f-8133-c6e70d575316 1 Other Other +9c237e8a-7d97-4994-b01b-1137d2f5acd0 1 Other Other +9c23ada4-32e6-4d5f-a883-b9c550567805 1 Other Other +9c23c9ac-46c2-426e-8cdb-d0629e974c09 1 Other Other +9c23c9ae-6005-426a-8ae4-3a0da6db3bab 1 Other Other +9c243f82-9ab5-4344-a8a8-3bb760170691 1 Other Other +9c2466f2-e4bf-4281-aedf-0b0833988249 1 Other Other +9c2467b5-bde2-44e5-b532-f19f401c56e5 1 Other Other +9c247b96-47e6-4a47-af89-51fb53fd98e1 1 Other Other +9c247c91-0ffe-456b-b093-d946fc76939a 1 Other Other +9c24d9ca-4ba2-469c-81cf-af319896cd2a 1 James Other +9c250bcb-2c6f-443c-8329-14679c6f98c7 1 Other Other +9c2527db-a02d-4660-8e3d-30200b59c73a 1 Other Other +9c2584a5-54f4-4452-adae-b8268511f1c1 1 Other Other +9c25a3a4-75f8-4723-8796-524595f58187 1 Other Other +9c25a5a3-f26c-48e5-869c-0ceef3357a51 1 Other Other +9c26181f-bf13-4101-b85e-907f3de52836 1 Other Other +9c262342-1460-4ed1-a66b-c7c1426c2b48 1 Other Other +9c26315f-2c76-45f5-8e55-fdab9ff39160 1 Other Other +9c265a3c-27bd-4fd4-b958-ba9ab5ad8583 1 Other Other +9c270792-e986-40ef-8745-fa37140c391a 1 Other Other +9c273279-2f5c-4df7-8fd5-a27a057de877 1 Other Other +9c276fe7-f38e-49c3-bc88-f5d372913869 1 Other Other +9c27a2a5-0d8d-49fe-a26c-4d70fe9e1f7d 1 Other Other +9c283874-16e1-46a3-9a40-4f491d375081 1 Other Other +9c285635-650a-46eb-b842-f6becf646afc 1 Other Other +9c286c40-b262-43a3-8b9d-5a77b6e29e57 1 Other Other +9c287a99-464c-4ae3-91ed-e8b6f06c20c3 1 Other Other +9c28ae70-75cb-4faf-96f3-da94d81bc0c2 1 Other Other +9c297490-418a-445a-8873-30427ea56fd5 1 Other Other +9c2988fd-6f5e-4673-a1e4-607cb3d94b77 1 Other Other +9c29af11-7e32-4a30-9795-4c8b0b94946e 1 Other Other +9c29bbcd-adb6-4ab5-8f38-7eb36d84f4e9 1 Other Other +9c29d8bd-42ef-4cca-a70f-ec14de1f808b 1 Other Other +9c29fce2-1b6b-498d-b8a9-46bd5c458037 1 Other Other +9c2a414a-3b9e-40e8-95ed-852710fa6269 1 \N Other +9c2a4e6d-b819-4647-bd3b-0a4c74cf0362 1 Other Other +9c2a6024-01b9-4e1d-a9b9-ec87a72ead64 1 James Other +9c2a84c7-07cb-42dc-9b72-9e9bfe3cb0a7 1 Other Other +9c2a9ad6-c261-43ee-9d24-0bab174dbfd6 1 Other Other +9c2aeee8-9f32-4d8a-b0a6-19c9f7aba952 1 \N Other +9c2af46c-2590-48e2-93bb-166455ec5059 1 Other Other +9c2afd4f-ff59-4811-9310-73bbb3ece0d8 1 Other Other +9c2b2a53-bc51-403a-b0a2-37ef17c98507 1 Other Other +9c2b3f9f-0d8a-48c2-9821-df5c1b8ad1d4 1 Other Other +9c2bd235-f3d3-4e0a-953d-db524de09532 1 Other Other +9c2bd896-2ede-456d-99d5-c44106f1342f 1 Other Other +9c2bf493-e1de-47c5-a26c-5f010a25618c 1 Other Other +9c2c1b18-0440-4ea7-aa8c-60a2fed36196 1 Other Other +9c2c3bf8-14b9-4dc0-b737-b5b084057023 1 Other Other +9c2c6426-12d8-435c-9bae-3c925ce8dd2a 1 Other Other +9c2ca503-bee0-4f3e-ab3e-8d9d381189ef 1 Other Other +9c2cb7ae-efdd-47fa-a6f9-be94d4bba058 1 Other Other +9c2ccd10-1c01-4fb5-ba8e-276960406032 1 Other Other +9c2cd5b5-96e8-4d41-8a3e-888d82001a43 1 Other Other +9c2d08ba-b584-412e-b360-036d1b9d1d49 1 \N Other +9c2d0eee-5953-4c51-88e0-8b13a0f703ed 1 Other Other +9c2d285a-9a42-4241-8285-66dcb342ff20 1 Other Other +9c2d3646-5b36-4204-aa14-d3ab69a59fc9 1 Other Other +9c2d9352-b097-452a-a41e-39d516395ad8 1 Other Other +9c2db044-3c4f-4405-8e92-edac1b37392d 1 Other Other +9c2dfa30-fc81-43db-ae83-e962394ae96b 1 Other Other +9c2e0715-2a88-4a57-8978-65b6a896d782 1 Other Other +9c2e11b7-40e0-4d65-9870-2cc6ebe8492f 1 Other Other +9c2e4e66-39bd-4d13-bcea-a41c02040546 1 Other Other +9c2e805a-50d5-4f5d-a2a6-36aad9a4c33a 1 Other Other +9c2ea0e0-ae70-4e98-ab95-949e46f68948 1 Other Other +9c2ec557-bca8-4e28-a9bf-9e0afd99e4bb 1 Other Other +9c2ed0e4-415b-45b0-8ebf-e2b628c0397b 1 Other Other +9c2eeab6-014f-4124-8ffa-ccf4293689aa 1 Other Other +9c2f39a5-b0f8-4d81-89e9-95b593e1eed4 1 Other Other +9c2f7ed8-ab9d-4ab5-b844-6f99c0b702b8 1 Other Other +9c2f9697-fb9e-4985-98e0-1d8e88d4011b 1 Other Other +9c2fd1e2-a987-401e-a362-e86d4e849cb1 1 Other Other +9c2fe03d-5784-4343-aa22-2cfcbda53ded 1 Other Other +9c3070ae-010d-4561-90b5-e526b18ae722 1 Other Other +9c30e5bf-6aed-47a1-81fd-03cd8eca397d 1 Other Other +9c30eb0a-060a-40a7-9fd0-cd7eb489d618 1 Other Other +9c310504-1d71-4e8b-815d-6cd40c0d8e8b 1 Other Other +9c312e12-2080-4a40-8192-309bad774a99 1 Other Other +9c3134f4-6ad3-47c1-86c5-abaa14538106 1 Other Other +9c313b24-82f6-4de4-9b66-844c8d3fd92c 1 Other Other +9c31647b-9ac5-426e-959b-70ce36d41c1e 1 Other Other +9c318e4f-8dab-4763-8576-85e143b37a37 1 Other Other +9c31ca47-cabb-4f96-854e-0d824f5a3013 1 \N Other +9c31d59c-00cc-4c99-b0f7-c5b1c78e8254 1 Other Other +9c31eb10-80ed-4a75-bb5c-b8a285b3e149 1 Other Other +9c321298-d10a-447a-a9f2-71026f8c9493 1 Other Other +9c321299-edac-4862-b512-521df5125af6 1 Other Other +9c3237e7-ecd9-41de-a550-822248bf1020 1 Other Other +9c324ea7-f9f3-4c02-b8c6-864d0d6340c6 1 Other Other +9c32523e-7e72-437b-a87f-53849cf82739 1 Other Other +9c3267cd-21cb-4628-aab6-ee9e4371ced0 1 Other Other +9c3275fd-eec5-44a4-bea0-399cfa2e5774 1 Other Other +9c3286cf-2596-4da2-a534-6d3a67ca75c3 1 Other Other +9c3297ce-35ce-4666-90c2-c8f0739a06eb 1 Other Other +9c32b591-a13d-43f6-89bb-a26af0d7666a 1 Other Other +9c330dc2-78fd-4f14-9d89-608782d6ff78 1 Other Other +9c333f24-ab87-4e13-8522-6e1cd1e692e5 1 Other Other +9c335a52-7dba-49b5-afce-0c98580e17bb 1 Other Other +9c338a16-ed18-4e71-803b-53b178d3f4d1 1 James Other +9c33b893-a326-4fde-91c2-2ea8c2de2a21 1 Other Other +9c342481-6c5e-4c2a-bb33-973313307ee7 1 Other Other +9c34260d-0506-437d-b663-ba1097b3ed16 1 Other Other +9c344dae-22bf-4bf6-acf6-5a7becac7457 1 Other Other +9c346f0b-12db-41ab-bee3-f190ebea87f7 1 Other Other +9c348fac-4a51-42bd-9d60-d1d8ff4b193a 1 Other Other +9c34dd1b-4e8a-4be5-96e0-53c673007b14 1 \N Other +9c34e702-c090-41d4-b9db-9247a6e1c453 1 Other Other +9c34fdd8-652a-4dfd-875d-ca61705a42c5 1 Other Other +9c3533a4-8b5f-402e-aa99-c8f711b17617 1 Other Other +9c356b7f-d766-4a76-a8d5-772cf042caeb 1 Other Other +9c35895b-707d-40e7-91d6-a1c5e7846043 1 Other Other +9c35dc35-86dc-4cf9-a902-cd7ec01baa6e 1 Other Other +9c360bf9-2b7c-42d1-b367-c102c086a400 1 Other Other +9c3626df-f790-4e4e-a654-36e252151adb 1 Other Other +9c362c56-dee0-461f-98ef-48ada96adc38 1 Other Other +9c36376a-ae30-46f9-9e90-622fcec7ecc4 1 Other Other +9c364b13-c784-49ce-ad64-02e3f60ed235 1 Other Other +9c36579b-6c0b-409e-82c5-33fcbdf9f1d4 1 Other Other +9c366f12-3c7f-4b19-b796-6cd60d3799b0 1 Other Other +9c368c13-b15f-4503-b2f6-25b5e5a63c6a 1 Other Other +9c36da5e-470d-4668-bbea-6cfc5c3cefc6 1 Other Other +9c36e651-010a-4cfc-a6a3-37c3a303b0f9 1 Other Other +9c36f08d-9644-4d9d-8fb4-0023c4ad0a77 1 Other Other +9c37573f-05a6-492a-8bad-4818759a500b 1 Other Other +9c378cbc-243b-4524-be9e-73c0095e8556 1 Other Other +9c37985e-9e0e-4bff-b3e2-917b368ee840 1 Other Other +9c37cdd2-5e62-451e-8a93-d766afc8687a 1 Other Other +9c38b6ff-feb7-4d9b-bcaf-e93441faf5b4 1 Other Other +9c38e3b9-b1e5-4cac-b74b-c469cce061fa 1 Other Other +9c39223e-e745-4af5-bfff-a8e8b2c33133 1 Other Other +9c39395f-f1a7-4c03-99f1-1ee1839339f1 1 Other Other +9c39acac-4dfc-4351-bd4d-dd0507832f81 1 Other Other +9c39bb54-bcd4-451e-917e-93f3b27e8f27 1 Other Other +9c39d4c3-37da-4f7c-a2b3-035b5d84c77d 1 Other Other +9c39e548-c793-4f23-b8df-b867de8875ad 1 James Other +9c3a03d4-8acf-492b-9963-2cc5ed752485 1 Other Other +9c3a044b-1727-40e8-9ba0-602b2e6667a8 1 Other Other +9c3a5d87-320b-416a-980a-e754e261879a 1 Other Other +9c3ab900-fc8b-46fb-b691-daf44ad1eaca 1 Other Other +9c3abd59-675f-41a8-b76f-39f3bb0fa038 1 Other Other +9c3ba100-a326-4478-bc8d-784622705ed5 1 Other Other +9c3ba49d-154a-47b1-b7a9-dbdbd7739027 1 Other Other +9c3bb4fc-b0ba-45ab-b350-904cea9e58b4 1 Other Other +9c3be260-63fa-473d-9368-7bf85ad439aa 1 Other Other +9c3be52d-bc57-4e4e-90a5-e187bc3d252a 1 Other Other +9c3c58f3-f383-4d08-a8f5-22dee1794c10 1 Other Other +9c3c80b1-79ea-4a78-86a1-1c99ea5fc04f 1 James Other +9c3c82c2-5d03-48df-93af-db7ed49cbe72 1 Other Other +9c3c8c88-614f-4788-849c-eacbaac2c43d 1 Other Other +9c3c8e44-a44f-4634-a1fb-2d5a74cc4328 1 Other Other +9c3cebb1-d545-4be2-b274-740109834fc0 1 Other Other +9c3d0ff5-6e0d-44b7-8a11-28a57ba888b2 1 Other Other +9c3d52f4-bc88-43f3-b9c8-54e970d320b4 1 Other Other +9c3d81fe-c7ae-4f48-8dd6-4a0c660ce137 1 Other Other +9c3da48b-2901-45a7-aa04-950c8a5958db 1 Other Other +9c3e0247-c0af-4c6b-a01a-63a9050b35ae 1 Other Other +9c3e0ce6-8fac-49b8-84ac-d451aea882ac 1 Other Other +9c3e13a3-5aca-465e-8074-f5b749be3123 1 Other Other +9c3e89b8-44c3-4ed2-863c-f227efc1ea1c 1 Other Other +9c3e9b51-b956-4204-bd9a-c5cbd34a8575 1 Other Other +9c3eab8c-b3cf-4c4a-910c-6ef7247b518d 1 Other Other +9c3ebb8d-415d-456c-a638-34bc68c05603 1 Other Other +9c3ef637-917b-41a5-b6eb-2d1417e6ad4d 1 Other Other +9c3f0b84-d367-48c3-92d9-92fa23b5021f 1 Other Other +9c4012a3-13e5-4be9-9b78-dc2c73c43ebb 1 Other Other +9c410914-bbfd-4109-a15e-6264bbcaf61d 1 Other Other +9c4111af-2479-4afe-b572-2de2c91e47c1 1 Other Other +9c41b3e6-705c-4a41-8245-e1592fa4fcb7 1 Other Other +9c41d385-24b4-4b8e-96ed-fcb119a31148 1 Other Other +9c41f706-41a2-48f3-8f1a-1ca0e3bbc022 1 Other Other +9c422070-3ffa-4ea3-a44a-5842c1d4fb6e 1 Other Other +9c422ce8-801f-45bc-946d-61ed3ac61fbf 1 Other Other +9c4254c5-62fb-460f-8406-f16ac4a4f1b0 1 Other Other +9c42a435-a844-4add-a870-5324e23c0986 1 Other Other +9c42ad8e-e45f-420f-b32e-c622a9e6512e 1 \N Other +9c42b29d-9576-4ed0-974b-32052c40329f 1 Other Other +9c42fad7-dacc-4e22-ab79-7b18128ac4a3 1 Other Other +9c432d69-657e-49b2-a1f9-f7641697c8cc 1 Other Other +9c43a904-b570-46d2-bf8a-8101809ee0cf 1 Other Other +9c43b3e4-7c53-45fd-a9ad-0ef44e45840b 1 Other Other +9c43e0bd-d7a5-4b3b-8f9f-866dbb2aae64 1 Other Other +9c43e441-b68f-40c6-8f9e-4ce53bfbae9e 1 Other Other +9c44092a-8808-4240-aaab-28ed8a7518c7 1 \N Other +9c441d08-967a-43f6-a7ec-5f768943c415 1 Other Other +9c442d43-febe-419f-a1c7-54885bebf265 1 Other Other +9c445e15-af69-4371-bcb6-e1ca9e1dfc50 1 Other Other +9c44bb75-9ab8-45fe-9f5f-b3b8d5e54f0e 1 Other Other +9c44c167-ca8e-4a47-8e19-282f85d8ca43 1 Other Other +9c4504fd-f8bc-4741-834e-a8305588e40e 1 Other Other +9c456b40-d6da-4619-9c70-3a7e10f5ad89 1 Other Other +9c457685-84ab-45e3-b3d7-161a85de0e8a 1 Other Other +9c45947f-bf59-47c3-8252-5809c4a191fa 1 Other Other +9c45b93f-f570-48d7-b608-980cc3c2a13a 1 Other Other +9c45c8b3-0095-4824-b295-c3e176c446e2 1 Other Other +9c45c8f0-ac26-47f9-85d4-b132e4f8f2c3 1 Other Other +9c4608aa-15cb-4672-89d2-9e98f3b18cc7 1 \N Other +9c46489d-4019-46b3-a6ba-4636a4c1d57a 1 Other Other +9c467f36-93f8-4244-bdbd-57fd87b05ffe 1 Other Other +9c46857a-e54e-4273-ae21-9edbe2ea2bfe 1 Other Other +9c468d0b-e627-44e1-ab60-760854b69c15 1 Other Other +9c469192-20c2-4560-86c2-47a41a54ac95 1 Other Other +9c46d348-8e68-45cb-86fc-88f551316da8 1 Other Other +9c46d961-8409-400c-b7d7-b3ec7fcd4aa4 1 Other Other +9c46da98-85e4-44e7-90b2-3a87ea272d7b 1 Other Other +9c473aca-4f2d-4654-9d5b-5fe5414496b5 1 Other Other +9c473fab-e997-4d2d-b995-49494fe8834e 1 \N Other +9c47b351-37c8-49ce-a195-4bad8910e6c0 1 Other Other +9c47bb45-359a-4baf-9d4b-fb7d131adcb1 1 Other Other +9c47c355-5e10-4cb5-8d3f-d78e1c7b6669 1 Other Other +9c480a0d-21b6-4b0a-bac1-4476d0f23052 1 Other Other +9c482d71-c535-4105-99df-0ab39e30b078 1 Other Other +9c483279-bedd-45d3-a5ac-cb29c9a61d1d 1 Other Other +9c48f4a5-3429-4af8-8378-16bb72a7b48e 1 Other Other +9c491f28-7e0c-40af-b12b-f0cae4519b2f 1 Other Other +9c4939b6-1f5f-4709-92ba-a81023419101 1 Other Other +9c498cd7-2a3e-4175-9f7a-e4b7f4c001d1 1 Other Other +9c49b689-965f-4f1f-8c94-c0dfe6149ce0 1 Other Other +9c49cb56-679c-4b8c-96af-cd7f9adc5304 1 Other Other +9c49cbc7-c7d1-4b49-a6af-bbe1a4066279 1 Other Other +9c49f15b-f152-401f-b58d-5186ae05d156 1 Other Other +9c4a09c2-ebae-4878-91d1-0af3310285b3 1 Other Other +9c4a1558-6408-46e6-ad71-6077a3259524 1 Other Other +9c4a2380-b566-4693-b88b-22404c37d0f9 1 Other Other +9c4a7c7d-5b44-4a71-a683-3324035ae644 1 Other Other +9c4ab717-3d0f-4d83-89fb-909db6136c16 1 Other Other +9c4aba52-0797-4930-8e2f-837fa420b76d 1 Other Other +9c4b68a4-b36d-4cff-8c12-c2ed42c28af0 1 Other Other +9c4bebce-cc26-4dc9-9c0e-a4e5642f4866 1 Other Other +9c4bebd9-adc0-455a-a9da-b3b149e3038d 1 \N Other +9c4c397d-e639-4ef1-a563-30aef0943241 1 Other Other +9c4cac31-eef2-458d-a379-06c07d06678d 1 Other Other +9c4cfcee-c947-4bf9-a505-3b732b9a7d80 1 Other Other +9c4d47f7-bc63-473e-add2-672a80dd2372 1 Other Other +9c4d4ca8-7648-4f23-bcc9-c9791a42050a 1 Other Other +9c4d711b-f5de-4949-ba64-e75d725496a7 1 Other Other +9c4d9344-c842-4dae-bea0-dff6b685ecc0 1 Other Other +9c4dd8ac-adbe-4161-bc59-3a16ccfd105e 1 Other Other +9c4e7302-7335-445f-a193-8c20fd507a3b 1 Other Other +9c4e83f5-3ab2-407c-96f5-c7d662408804 1 Other Other +9c4e97c6-deac-4008-a331-1b2d0bb30ca1 1 Other Other +9c4ebd37-fba8-4a7f-9d67-fcc8500aff21 1 Other Other +9c4ebecf-ace6-4664-9def-418f5d4c7803 1 Other Other +9c4ec2e4-6cde-4495-b67b-e1c8677f968d 1 Other Other +9c4ecf43-5651-4d6f-8601-52259ce866cb 1 Other Other +9c4ee821-a479-4b59-a1a2-58958a4b5ed5 1 Other Other +9c4f04e6-111f-11e8-8f19-fa163e8624cc 1 \N Other +9c4f0994-3d96-40a7-b135-a68ddcd69e00 1 Other Other +9c4f7cee-6b52-4505-a684-87367d816029 1 Other Other +9c4fb296-568a-46d5-afe4-4aaa87b86538 1 Other Other +9c4fd831-8669-4606-8e63-2dbb4627a3be 1 Other Other +9c4ff420-027d-49b6-a440-9e94fec91d96 1 Other Other +9c500b5c-5989-4d18-9a5e-7166d0d7ac20 1 Other Other +9c502c37-904f-421a-8975-106546f85993 1 Other Other +9c503094-dd3d-456b-9c12-d3e25b4ad1cf 1 Other Other +9c50740d-766c-4cfe-bd1a-f6d44bdb1bf9 1 Other Other +9c508e97-71e9-4383-9fbe-3b7e7cfb535d 1 Other Other +9c50a5a3-5f4d-49c6-b89e-648397807bc6 1 Other Other +9c50b751-aff9-428e-a2d8-575d4ebb603c 1 Other Other +9c50f2a9-20e9-45e5-8243-6228f09be648 1 Other Other +9c510365-3e44-436a-b7e4-0b72ced872d0 1 Other Other +9c51139b-ec37-49ab-8f18-079c3812b546 1 Other Other +9c51268e-6327-4f9c-979a-cbd48b18601d 1 Other Other +9c513c84-9668-4f86-a9d2-ce9bcd5d126d 1 Other Other +9c5146c4-e49b-4ad4-9bfe-c845eaf51785 1 Other Other +9c5149ee-8917-43fd-8e61-86a1e2d9dc28 1 James Other +9c515768-9055-4e46-a9bb-bdcb28081207 1 Other Other +9c5161b0-0026-404e-99c6-dcfb64740434 1 Other Other +9c517129-57e6-4b37-8799-f305ad9c8e67 1 Other Other +9c51a824-c4b2-4d26-946f-be94a29ab685 1 Other Other +9c51b7ff-3f43-457d-8e19-33879b716c3a 1 \N Other +9c51ee54-5388-4048-a29f-293c2d27d34f 1 Other Other +9c5205a3-ead3-46fd-86e6-cefad6eefe28 1 Other Other +9c520ab7-fe97-495e-bb4a-bc1692557e5b 1 Other Other +9c520be7-0931-48b1-b328-26dc6584e623 1 Other Other +9c52a4f0-a784-4581-b0e8-efaeb8d85c8c 1 Other Other +9c52d067-2a8c-48df-a977-edadf00ffd46 1 Other Other +9c52ecc8-8e7b-42b2-a64d-6ed3270c9a65 1 Other Other +9c5300f8-1cd2-42a9-a783-740b71e96de3 1 Other Other +9c53e04a-e351-4f2c-bda3-1b3db10887bb 1 Other Other +9c53ee82-9c5a-4b78-8b32-c74b575b68d9 1 Other Other +9c543849-d098-4cf2-a097-9161c26791c5 1 Other Other +9c546302-1546-452f-aaee-fd32e740807c 1 \N Other +9c548e57-02d7-456d-99ee-c21a84b31e16 1 Other Other +9c548ff6-60b3-48bc-b9da-3e476ac988df 1 Other Other +9c549fc8-461a-4fb1-a38f-c8769ca27d7c 1 Other Other +9c54f031-7d87-4cb8-8dda-dc3b4b89bc6f 1 Other Other +9c558406-2daf-4f0a-8196-a4623baabb36 1 \N Other +9c55e85b-eb34-4bfa-b898-3e46951977dd 1 Other Other +9c55faae-a7c8-4c2b-a41f-6826d0fbc4d5 1 Other Other +9c565029-adbf-4c5c-9d98-9aae7a8daed1 1 Other Other +9c566738-ea9d-4203-80ff-befa6323c5b9 1 Other Other +9c56845b-1f06-42f9-9d64-195b0cb475b2 1 Other Other +9c56c48d-cdd4-4c74-9adb-4c792060566e 1 \N Other +9c57349c-2994-42c7-8ad2-3d630359fa57 1 Other Other +9c575b8d-d485-4f0d-b20c-81a34d64bce6 1 Other Other +9c575c9d-04d6-4fcc-95e0-9f26bcaa46c6 1 Other Other +9c57aac8-7362-4c1c-82e0-d48a305f015f 1 Other Other +9c57de20-e85b-485f-a865-01923c2bf1f5 1 Other Other +9c58394e-5565-4928-995f-8656998d7254 1 Other Other +9c58a2fa-54ac-46fe-a7d5-72246646c639 1 Other Other +9c58c173-8d8a-49e6-8509-47c037a3e442 1 Other Other +9c58f552-0c42-4ef7-9686-b6c49d1db3c9 1 Other Other +9c58f66d-f0ce-4458-81fb-eefd30127c6e 1 Other Other +9c591df1-a8bd-4b36-bc5b-90df0a99759c 1 Other Other +9c591ef4-38be-4833-9b3d-19a9e938fbcd 1 Other Other +9c593499-c4d1-4ce2-863f-375d207d06b0 1 Other Other +9c596776-ec9a-4769-b092-f5685cb17c96 1 Other Other +9c59e91d-39ab-4952-958b-7e05114f3d2e 1 Other Other +9c5a2945-6efa-46ec-a7c8-87b07cca5b04 1 Other Other +9c5a8208-b139-45f8-ac16-c3c60da4257d 1 Other Other +9c5a9e53-2a54-4caa-81c7-4a8f4c617f7f 1 Other Other +9c5ac930-d5df-493a-a03c-254926316dd5 1 Other Other +9c5ae81a-d118-4ea3-bb3e-59ed40320a90 1 Other Other +9c5b08c3-4508-4e14-9134-2786c39f9a45 1 Other Other +9c5b0d15-9efd-4165-909a-be2f2364b591 1 Other Other +9c5b188b-1479-4dee-90db-87e81dbb73d7 1 Other Other +9c5b55c7-6ff4-4787-af69-9a72c82fd33a 1 Other Other +9c5b9990-9cb5-4a09-976e-6a944770ffb3 1 Other Other +9c5ba64f-6b31-4195-9e48-1fd54225058b 1 \N Other +9c5c31f7-4b01-4048-a9dd-4aa79b49ec87 1 Other Other +9c5c420a-29ee-4412-8fa1-af2afa45e1dd 1 Other Other +9c5c5258-8065-4a0e-bdc6-382a567d2f42 1 Other Other +9c5cc353-c45a-40d2-9297-592f84c306a1 1 Other Other +9c5d1d06-5b5b-4182-8534-efa40b4298b1 1 Other Other +9c5d5ce7-4cc2-4f89-8606-eb954d8040f6 1 \N Other +9c5d72ec-8eb0-45f1-9a7d-c593fa871a26 1 Other Other +9c5d8900-cd38-404b-a899-2c0a225711c2 1 Other Other +9c5da8ae-fc05-49a7-a8c9-6be005fd63aa 1 Other Other +9c5df45c-ab3c-436f-9864-d6d106e9e73e 1 Other Other +9c5e1133-d6fd-4747-8b57-441008bf7926 1 Other Other +9c5e5ffb-ccb3-4be0-aa94-2cd66fb1e53e 1 Other Other +9c5e8005-2f76-4e67-9e7c-3c2388637b1d 1 Other Other +9c5e9020-42c3-4a57-af87-0d2e9397eaf0 1 Other Other +9c5e957c-7a50-4607-9647-18cff0b9b1f0 1 Other Other +9c5ef752-ce2a-44c2-a946-81baf66b0223 1 Other Other +9c5f2127-56a0-494a-a0f6-3c6dbda86506 1 Other Other +9c5f4bbf-3d56-44e0-97b9-91ade054326d 1 Other Other +9c5f651f-b6aa-470d-8915-70e68b10d912 1 Other Other +9c5f92a0-6d30-4d7c-8b5a-74b6d5cf7270 1 Other Other +9c5fdafd-7edf-4dad-a134-4bd318e95c69 1 Other Other +9c607891-23dd-4aca-a458-c1d9541d26d9 1 Other Other +9c609810-e40a-11e7-8262-fa163e8624cc 257f6774-64eb-11e7-954b-fa163e4dd901 Other Other +9c60bf98-c83f-44b7-9229-0ebff601c722 1 Other Other +9c6123f3-b333-48c8-8654-55413128e684 1 Other Other +9c615ab9-cee7-4b67-b7ba-d0fde370e0fb 1 Other Other +9c619f6c-9702-11e7-9c7f-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +9c621980-48b2-4858-9cd3-6f3a35241cd1 1 Other Other +9c6232a3-5a0c-4580-92c9-027e28287d94 1 Other Other +9c626243-cc5a-4f5a-bbb5-9dd6c4639c04 1 Other Other +9c629f38-d3ee-4c02-a809-1e6b2aa255d0 1 Other Other +9c62c75d-1359-4afe-8668-a1b4a8c98b47 1 Other Other +9c62d203-c45d-41ab-b1ef-da6c3cc883d9 1 Other Other +9c631dac-730b-4c89-9023-f68f0f41b1c9 1 Other Other +9c6320cf-5200-41a1-afa8-1b2d6391068e 1 Other Other +9c632e11-ccba-4bf6-8f33-2e16b7eb8880 1 Other Other +9c632e63-7717-47f7-9d11-68a846b25711 1 Other Other +9c635066-3d3e-4dda-98e2-2c9b522b8f61 1 Other Other +9c63761f-2e93-48a7-b873-02dc31be9b6e 1 Other Other +9c637da5-d166-40c6-a8e4-1f4bf85f65b5 1 Other Other +9c638602-f960-4f3e-a03a-57e6facd53c1 1 Other Other +9c63962c-e280-4fda-9c3f-401f0fa67825 1 Other Other +9c639ad9-d5a7-4dbb-9d5a-8f1cfc48b079 1 Other Other +9c63ac52-53ec-4e0b-a8f1-af78c3059874 1 Other Other +9c64292e-a370-48c6-9a7e-5334de687db2 1 Other Other +9c643d3a-8085-46e0-8541-488085f87f59 1 Other Other +9c649d02-6711-4449-8992-800f963565a8 1 Other Other +9c64f653-e82c-45a8-8a89-72fbd2e71a36 1 \N Other +9c650ddb-6b9e-49dd-9e02-add9e2abbea9 1 Other Other +9c656bb1-5000-4e26-bf14-f313ca4e752e 1 Other Other +9c6572d0-e867-483c-97d4-df377bf3289e 1 \N Other +9c658789-339e-49ce-b169-12d31fb54e85 1 Other Other +9c658b28-a64e-4ad2-b966-f6f548e632c0 1 Other Other +9c659f49-3766-4451-9f92-1b1deaf30856 1 Other Other +9c65b052-196c-4bf2-8bc6-e7c44230d35d 1 Other Other +9c65ed39-413d-4c8f-a5de-ad4c161d1a08 1 Other Other +9c665275-3db7-4cce-8ec5-1ca2591f0168 1 Other Other +9c667e40-e78c-4687-b614-2a7ca27a12f1 1 Other Other +9c668fad-280f-4c44-8670-3b85ebd57a15 1 Other Other +9c66bdb1-e202-428e-b3bb-fdd00ce44033 1 Other Other +9c671c1d-bf1a-4655-bb0a-dec8d20245b4 1 Other Other +9c6734d7-240e-4493-8a4b-1e95dea830ff 1 Other Other +9c6770a7-9f33-4521-8432-e34402b179d7 1 Other Other +9c6784a8-badf-4d0d-917b-f58e54a22d2d 1 Other Other +9c67c108-6cba-4e78-8b08-93d487f6150f 1 Other Other +9c68149a-878c-4d2e-b7bd-d39e3c180520 1 Other Other +9c685302-d996-44f7-9709-75d55942c6c4 1 Other Other +9c687e5d-e02a-425d-9b87-d909ac6ca267 1 Other Other +9c687ea5-1552-4973-8c15-9315f8fa92cf 1 Other Other +9c68b718-b36e-45e9-acc2-a519f2fe53f8 1 Other Other +9c690925-281c-4389-891c-645d443c376b 1 \N Other +9c698559-7fff-409a-9809-d4b919af5f55 1 Other Other +9c69d024-1a18-4015-8a0a-d467b3db72d7 1 Other Other +9c6a065a-b7fd-4b03-bdda-6c75ed683e79 1 Other Other +9c6a2bf5-ceb6-4ad8-90bf-0e8b9f171b55 1 Other Other +9c6a5cb7-2e2b-4902-9884-147f66caf1e5 1 Other Other +9c6a67de-a5cb-4081-b525-9559a8e1998b 1 Other Other +9c6a9866-9501-4478-a696-4a65ce67b6c0 1 Other Other +9c6aea7a-8dbf-4c57-9e9f-6eaa3f15f471 1 Other Other +9c6b26a2-5e14-4484-bb72-293d38e8a48b 1 Other Other +9c6b2fa2-c56d-4467-a139-f9780d376dd8 1 Other Other +9c6b3111-f96e-4235-a29f-a77938ab4a74 1 Other Other +9c6b4ca1-c98a-47c5-bd5e-4f987e48fc7c 1 Other Other +9c6b796a-1d1a-4593-a8f1-f1dd7154385e 1 Other Other +9c6bc9c6-7882-47fa-9fea-dfff6cbe08a6 1 \N Other +9c6be5ec-580c-4573-8f5b-50f3f1da1de7 1 Other Other +9c6bea7d-f9e6-436a-af02-94603869d59e 1 \N Other +9c6c0093-233a-43da-a396-509a50accbfa 1 Other Other +9c6c4fd6-92d5-4013-9b95-9a17d2fc4313 1 Other Other +9c6c57f4-95bf-44f2-9b82-dc5297c90b10 1 Other Other +9c6c9d3e-d105-44ce-89a2-e3739b0b3e5a 1 James Other +9c6cb666-e4bf-409b-b6d8-d0491e8c12c0 1 Other Other +9c6d443a-d811-41fc-b6a8-102a87a22bbc 1 Other Other +9c6d46df-355c-430e-aaad-ff4b41615072 1 Other Other +9c6d9070-418d-48de-bfbe-42302aeab25b 1 Other Other +9c6dbac9-7021-4f8d-9ec2-7d0d4b580cfa 1 Other Other +9c6dbead-d747-4010-a72e-fc7ddf83a7b1 1 Other Other +9c6dd00d-aa09-41c2-89d8-1d34e57629c4 1 Other Other +9c6df9d9-25d6-4cc7-b434-fa7e52b6ea0e 1 Other Other +9c6e7242-3a05-4f0b-82ab-73288fd25b89 1 Other Other +9c6ecb73-14dc-45d7-aeb8-f33118780af3 1 Other Other +9c6ee2d6-9be7-40af-9588-5aa554eb4549 1 Other Other +9c6f1e17-a101-45dd-9a45-540571a0737a 1 Other Other +9c6f8ac5-e68f-48a1-a36a-2fc0538368d7 1 Other Other +9c6fb228-833d-4801-afed-adba3a9ab524 1 Other Other +9c6fc326-0673-44bc-8ae4-c829191dd8ae 1 Other Other +9c6ffc38-22bb-40cf-933b-aa280047443b 1 Other Other +9c700fb3-1907-4127-929e-e64c8a32327e 1 \N Other +9c7023d3-01d6-40ee-bbf1-865f7ea3bc26 1 James Other +9c703d3d-151d-467f-8840-8890544b4fc8 1 Other Other +9c703fa6-34ba-410f-b339-d1b26238831a 1 Other Other +9c708338-f57a-484e-b0d3-d58986b9047e 1 Other Other +9c70864c-f373-4293-a064-76b62952d1ca 1 \N Other +9c70a60f-a7e2-404f-b46e-63312f39f177 1 Other Other +9c70c1c7-822d-4775-99e6-aba8da34a00d 1 Other Other +9c712e88-52e5-4a24-9941-e0c05c98c2a5 1 Other Other +9c7145c6-a905-4501-b997-da1031b9aaf3 1 Other Other +9c71846b-7ded-4388-9901-31fee4e32261 1 Other Other +9c718c7f-5567-4c7c-9e5b-5b3c77c214ba 1 Other Other +9c720304-8832-4ee1-9bcb-540ddbd20dce 1 Other Other +9c721cf5-4a21-450b-b007-3ad1995fb362 1 Other Other +9c722ad7-a994-464a-a215-b755c25e6e7b 1 \N Other +9c726699-137d-4d4c-99a6-6263eb96021c 1 Other Other +9c727955-1650-41ce-a793-dc4279c763b5 1 Other Other +9c728c98-b155-43b2-a291-09536a2536fe 1 Other Other +9c72ad27-b6f2-4190-a2d4-5b62096efaa1 1 Other Other +9c72b67b-d84b-459b-9396-e7d311f430bf 1 Other Other +9c731986-804e-4603-aee3-736dd9cc9f54 1 Other Other +9c734758-fb8f-41eb-8b8f-e54e7bc21d6b 1 Other Other +9c7362e9-8350-48cc-9b00-87b5c8c64005 1 Other Other +9c73756e-c548-4e80-85e6-092fc41d884f 1 Other Other +9c73945b-1207-45c9-a919-7e8d27e498c7 1 Other Other +9c73de44-6592-445f-bdd9-86e6d0734826 1 \N Other +9c742b2e-ac58-4300-a784-fe8047ed9abd 1 Other Other +9c74359f-5e92-456a-b472-5a4220b32e10 1 Other Other +9c74464e-21fb-4835-a5d2-2bb4b9f673c2 1 Other Other +9c7449be-f2ca-423f-9b5b-2e2c704d8ff7 1 James Other +9c745ce6-8213-4696-8a9d-edfd5e7de546 1 Other Other +9c7472c0-6e63-4ffa-b7f3-bc57e60b6b42 1 Other Other +9c748373-cdc6-4da6-a51f-f3d450f26092 1 Other Other +9c748851-9417-468f-b7f8-fedb70e147c0 1 Other Other +9c749912-c6cf-4f1b-976a-e3914f323c32 1 Other Other +9c74b075-17a8-46e8-81fe-799122fcf4c4 1 Other Other +9c74bb94-f9e4-4ab5-9f20-4871a08b05cf 1 James Other +9c74bd89-ff10-4d82-941a-3d0dd4614241 1 Other Other +9c74ee3e-02f2-4666-aed9-87decded1569 1 Other Other +9c74f55f-313d-47d0-a749-a645e6318263 1 Other Other +9c756d07-8058-4f2b-9993-e5884cb48d83 1 Other Other +9c756fb9-6ee5-40ec-98c4-a0cfc4f2ed07 1 Other Other +9c7577c5-13af-4a79-b347-e6b6a3a65475 1 Other Other +9c758052-3e0a-4d19-900d-d15d97ecc3a6 1 Other Other +9c75de41-1115-4681-a964-54fa332aee2a 1 Other Other +9c76318d-9079-438d-9ac4-75ec53fa252f 1 Other Other +9c7636e7-27a4-47ca-9fef-8d13adf9e237 1 Other Other +9c7649f5-ff84-44d8-b540-06feeaf7cb49 1 \N Other +9c76bdaa-2edd-4c73-8609-deddac212d5e 1 Other Other +9c772492-9e1e-41c8-b695-5e8100d46e3c 1 Other Other +9c77f90c-9d56-4f3d-ac40-fbf5d27d05aa 1 Other Other +9c78080d-a7d7-4245-9ecc-02a5aadf1219 1 Other Other +9c781451-1cec-429a-bf9b-6ba7771157a2 1 Other Other +9c7824d9-22a8-4b44-b6c6-22f03f4c784e 1 Other Other +9c785a5b-5310-4f4d-b5ae-22910f33889a 1 Other Other +9c787d3d-24c3-4615-b7bf-7fd60b28f9c6 1 Other Other +9c78a530-e170-4206-aa9a-7d017f6ca533 1 Other Other +9c78ba81-06dd-494d-bc17-851a158b39ef 1 Other Other +9c79736b-8e13-4a2b-861a-db000686444f 1 Other Other +9c7999f5-315e-40e0-a89e-168954641c7b 1 Other Other +9c79e686-4729-41af-917b-955250b06834 1 Other Other +9c79ecf0-fb82-45ce-8569-57b819f8674c 1 Other Other +9c7a1e52-f386-4510-b9e9-21416732d516 1 Other Other +9c7a6f81-49b9-4fff-966d-07bc09a7d3f5 1 Other Other +9c7a7514-fe1d-48a5-926e-1a5c70aca162 1 Other Other +9c7a886f-cd96-479f-b340-f13918993d9b 1 Other Other +9c7ac42f-81a1-42fb-91d3-9cfc70df136d 1 Other Other +9c7b072b-6b2c-4ddc-9ad7-9ae8992ec96d 1 Other Other +9c7b95c5-d33b-4ebb-8a69-b5c4a2303109 1 Other Other +9c7bcf1c-3e7f-4a07-b483-40bcc02cee91 1 Other Other +9c7bd32b-c3e3-4c1c-8bf8-c55874e0d5b4 1 Other Other +9c7be9d1-f810-49b5-9e6e-41b9473952c0 1 Other Other +9c7c2338-4033-458c-a4b5-7d5ea9ddd6cc 1 Other Other +9c7c252a-da70-4112-b626-e8e1b25eed5b 1 Other Other +9c7c7767-f255-4944-b752-0d4d9a72ccf4 1 Other Other +9c7cb6f7-3901-4792-a1d2-b2a38c6984f0 1 Other Other +9c7cbc37-4c92-4238-bb65-d0fcd8042260 1 Other Other +9c7ccb20-0b89-4e81-8734-10835f5c7638 1 Other Other +9c7cf807-5406-4cf6-a9cc-2f768144250c 1 Other Other +9c7d0f35-807a-434e-921b-12e662130d7a 1 Other Other +9c7d69b3-50cd-4457-8f32-1212dbea13cb 1 Other Other +9c7dbc5d-668f-4120-ba21-7b338decc694 1 Other Other +9c7dcdf6-74b4-419c-956a-98f47290566b 1 Other Other +9c7de42a-e329-4b17-aec9-1fbe3ea7152c 1 Other Other +9c7de67c-f83f-4f58-a7a6-0bae611c204e 1 Other Other +9c7e07ac-636a-454c-aa37-616a4536b00b 1 Other Other +9c7e481a-a955-42c6-a328-8454e5abd6e0 1 Other Other +9c7e6364-8e12-4a9a-a7b2-3cf125dd190a 1 Other Other +9c7edc2b-81cc-436a-a3f2-a7b99393045c 1 Other Other +9c7eec2a-0835-4fa1-9b8d-23aa9ff57eba 1 Other Other +9c7f22a0-e461-4064-9c94-82f0c0a82c84 1 Other Other +9c7f281c-5af1-4d1c-b88e-8db5eba1f9a9 1 Other Other +9c806b10-e91d-4531-b668-ac7707bf44fa 1 Other Other +9c80a083-0bad-4d55-9a85-aacd5b774a3c 1 Other Other +9c80aced-73d8-4797-bd3d-45f789c1f3b2 1 Other Other +9c80ec6b-0687-4f1d-8c2f-af95b4fc22c6 1 Other Other +9c80ee23-3602-4dd8-a79d-5067169fdcff 1 Other Other +9c80eea1-94bf-4e57-a500-7924ca097339 1 Other Other +9c813067-a71f-44e7-a771-bd477049b8a0 1 Other Other +9c81824e-721a-4a0b-a346-c040cfa366a4 1 Other Other +9c818975-4295-4089-937f-2773f741fbd6 1 Other Other +9c8190b6-82ae-4326-8315-9a837f3680d1 1 Other Other +9c819c23-4dae-412e-8637-35092300d3bf 1 Other Other +9c81eeea-80c1-4f2a-90cc-de8bca44e70c 1 Other Other +9c82280b-2bb5-4d56-ab7a-e1c05cdb5030 1 Other Other +9c829000-7e86-4ca8-a45d-b476d187456e 1 \N Other +9c82d2b0-84d3-446d-82d2-934923029ec2 1 Other Other +9c82fc77-458f-40cc-b5fa-6f68b27ff452 1 Other Other +9c830044-6f42-4011-9da6-18da2c545a8a 1 Other Other +9c834d25-fb00-47a4-b521-287dbc0b178b 1 Other Other +9c8377a2-d419-4fff-b18d-37de12f27e98 1 Other Other +9c83b8e7-2543-47dd-bc4f-66bd57aaf7cb 1 Other Other +9c83c8dd-c56c-4501-ae31-ecae978558a5 1 Other Other +9c83e723-38b5-47fd-9c35-0c0d24f56333 1 Other Other +9c8400ba-c99e-4022-80b2-c8f3ce37a1ed 1 Other Other +9c84020f-fa40-4c9e-9078-a2d1c975f750 1 Other Other +9c84107b-ef8f-4137-9ec9-1d08f15890f2 1 Other Other +9c84e830-9592-4bf3-8a30-e294cfc5987c 1 Other Other +9c84fa79-5d7f-4b4f-a165-83b0fffa4fee 1 Other Other +9c854c8d-909c-433f-9146-3af96b63160d 1 Other Other +9c8568ad-5f86-473c-bd49-0d780d5139e8 1 Other Other +9c856d91-29df-4ac6-999e-0c169c9befa9 1 Other Other +9c85806a-a0a3-490b-a54f-03aa3659a3c9 1 Other Other +9c859277-cd4b-4a32-8a11-9eee970d75ab 1 Other Other +9c85bf7d-65aa-42ba-9c35-baadeae8f87b 1 Other Other +9c8647c6-7d0a-4b4d-b3e2-86481acd28a3 1 \N Other +9c865a70-2aca-4ead-9f1f-360fe85ed87a 1 Other Other +9c86ac88-5fc6-420c-af26-75e38e85be53 1 Other Other +9c86cefb-106a-45e7-9808-db5a725ecfba 1 Other Other +9c87307e-0006-4022-adae-7204b87b12b2 1 Other Other +9c876354-51ff-49c9-a3d4-6369961c4655 1 Other Other +9c878887-3124-439e-9ccd-5a5e491c36a0 1 Other Other +9c879a1e-5d81-454c-baeb-5400b43f3572 1 Other Other +9c87b048-158f-4d76-8d2f-7502f39d35ed 1 \N Other +9c87bdd6-ca81-4854-9fa3-7878314adfd0 1 Other Other +9c8825c6-55e0-4455-86d5-7036892e9895 1 Other Other +9c88636d-c4fa-448d-bbe6-bcb94987fda8 1 Other Other +9c8863d4-c960-4302-aecf-4cd1b530809e 1 Other Other +9c88eee0-a682-4bc5-8002-f00c88b6584e 1 Other Other +9c88fdee-5088-4990-8209-9b810ee6f55c 1 Other Other +9c89072f-a970-4787-8da4-d7f4bd0d40b9 1 Other Other +9c890d3a-9570-4cad-ad2b-290e34ad7846 1 Other Other +9c89379c-a8f2-4075-8b4b-1f462000134e 1 Other Other +9c89600a-d823-4055-9b72-6e91768df895 1 Other Other +9c89895c-b06f-490d-929e-91ebb01e0d15 1 Other Other +9c89ed75-7807-4b3a-b557-b04944110c30 1 Other Other +9c8a0ef9-b179-4f83-8abf-69208324026b 1 Other Other +9c8a110b-047b-4660-a037-d7f68a534605 1 Other Other +9c8a43dc-d349-410b-aef6-e1192e37b172 1 Other Other +9c8a5028-6a19-4780-be20-df1d5d118ec7 1 Other Other +9c8a5836-700f-4df6-b89b-84909bfc2229 1 Other Other +9c8a5d15-650a-47a6-bbdc-b5de0089fdf3 1 Other Other +9c8aa319-59d0-489d-acc1-1b8a4cdb57f2 1 Other Other +9c8aec91-62fc-495d-b6d8-f2429d2edd0f 1 Other Other +9c8aefcd-2911-43b1-aaec-d51eccde1223 1 Other Other +9c8afd6a-ba19-499b-9da8-c624cc2775f0 1 Other Other +9c8b5fc4-74eb-4cb4-b199-322533b1efa7 1 Other Other +9c8b7752-b80e-412b-8fd2-5cb067f04476 1 Other Other +9c8b7f09-095b-4187-8e89-08c5eda425db 1 Other Other +9c8bfe5e-2137-4fec-85f3-4607e1109129 1 Other Other +9c8c4790-aac4-40f7-b030-5bf330fb7b18 1 Other Other +9c8cceb7-2d02-49d8-abdc-a983239cbe7b 1 Other Other +9c8cfa6b-1a4d-4ea1-98fb-f9829ac6ed2f 1 Other Other +9c8d0a2a-9af6-40ce-9fce-b57577152c2a 1 Other Other +9c8d6a47-2c5c-4855-8240-d2f035eac4b0 1 Other Other +9c8d96fe-a746-4fbd-b1ea-417c971b3cf1 1 Other Other +9c8e572a-e3b1-43ce-8c68-24bc4f6fa7c3 1 Other Other +9c8e7a59-0987-456c-ae72-5b3088ed62ab 1 James Other +9c8e98c0-2984-4df6-bb0c-d1c51cd05681 1 James Other +9c8ebe88-a29f-427c-a1da-c7c81af73d24 1 Other Other +9c8ed21f-052e-43c1-ab55-ff6d3f175645 1 Other Other +9c8f5b95-a0ef-4da7-b773-adb6245f93d1 1 Other Other +9c8f6da8-3ca5-4a79-9b2b-739582cc41a2 1 Other Other +9c8fa386-dbce-463e-8583-7d1704ce44f7 1 Other Other +9c8fb43d-290b-4ec6-916a-123c9546a1e3 1 Other Other +9c8fe723-86f8-4e5b-8b92-d8b6ef86f027 1 \N Other +9c900bb5-e822-484a-a8ec-d1b2b087dcf5 1 Other Other +9c9015b8-8e1b-43da-9160-9c4fc78144c3 1 Other Other +9c90309c-eee0-45e7-afbb-b9647f880223 1 Other Other +9c9049a0-bb68-40c5-95ff-ec69c37e06af 1 Other Other +9c907d06-6352-4c72-a691-91bdd1525eab 1 Other Other +9c90bc1b-7ebc-4bac-a705-fb977d50daff 1 James Other +9c90f4ea-0fb4-4f36-87dc-e6b90189a5f5 1 Other Other +9c911c76-bc87-4560-98c2-1f630aa1dbf4 1 Other Other +9c912117-dc02-48d7-8c3f-628ec035220e 1 Other Other +9c9129b4-c734-4875-90f9-0759d664791c 1 Other Other +9c9173ce-211f-4475-b13e-d702e8ff4fec 1 Other Other +9c91a926-0a6c-44dd-9417-13a6548fe03a 1 Other Other +9c91bf35-5a96-4a7d-aee6-6a9bc6c540cc 1 \N Other +9c91c56d-33c7-4e29-8190-4f91f5a820f7 1 Other Other +9c91d8fc-4e3e-4aa9-a368-ba389b50f627 1 \N Other +9c91de3d-2fb3-448b-94c4-5be630ac44ce 1 Other Other +9c926db5-8d3a-49a5-991d-41ae52f2dc8b 1 Other Other +9c929fed-fb5e-4d4d-bb24-6bb394b80f85 1 Other Other +9c92dcbd-8584-4aa7-b98c-78f8d2a18e3f 1 Other Other +9c92e3a3-f79e-41f9-a369-06da76024b3d 1 Other Other +9c9307a0-ef06-4c0b-9145-65bc832e7907 1 Other Other +9c933a87-9d80-47d7-a447-43ebec47bbba 1 Other Other +9c9354c1-e2e4-45b6-8e54-21c5672a2659 1 Other Other +9c936c90-18e8-4443-a394-0b2e568ab910 1 Other Other +9c93b783-f932-4743-9e0f-8bba994d1d41 1 Other Other +9c94081d-247c-417e-afbb-1d2acf61e6f7 1 Other Other +9c94396a-ddf8-48e6-bf79-d4ee4719ccec 1 Other Other +9c944948-3e8b-4a2a-b1c0-6096714b151d 1 Other Other +9c945412-e529-48ce-accb-2117aee231e2 1 Other Other +9c9454cc-1b38-4a48-9065-381d160aec28 1 Other Other +9c94a338-0349-4c45-807b-256979fc873d 1 Other Other +9c94cb24-c4da-49ce-bc95-ae731cc7a301 1 Other Other +9c94d057-8a20-4e97-a287-4c7ba467710b 1 Other Other +9c95133a-2b81-4682-bfb3-cd5c0825fe01 1 Other Other +9c953ee9-908d-4a69-aebf-e102d8769997 1 Other Other +9c954451-25b5-423e-b4c2-f09060bff3bd 1 Other Other +9c957b0e-114f-4f23-878c-2d7d4c00ed1c 1 Other Other +9c95a0ff-c77d-4ed6-b634-392554039d20 1 Other Other +9c95aeea-7436-4fbe-a101-7a9489079cfd 1 Other Other +9c95b9ce-fd1e-4f3c-bcd2-43c4fa19310b 1 Other Other +9c96085e-891b-4d71-8416-5a82fbf1bb29 1 Other Other +9c96224e-2275-4e3a-82a2-5094b657e81a 1 Other Other +9c964743-f358-46e7-9765-2960e9bac8f0 1 Other Other +9c96ab3d-a5bf-4e7f-ad15-8912e1c32b39 1 Other Other +9c96e9b6-e33d-47dd-95ec-300c37e8531b 1 Other Other +9c96f032-c106-4087-9452-34a1b30dc2ab 1 Other Other +9c970623-39d9-4a54-9f2a-6fbe84c363e1 1 Other Other +9c974a12-f553-4964-9ed3-f1927c0ee574 1 Other Other +9c97689b-152d-4d30-8dcc-01097a65819b 1 Other Other +9c976c87-d1a9-40e4-b68b-e5cd1b476ec5 1 Other Other +9c97734b-6252-457c-ae7a-23000bc496a9 1 Other Other +9c977bd2-1612-4614-b44c-e2b8f086dee6 1 Other Other +9c978e2d-cd6b-411c-9719-2f5b55f1741c 1 Other Other +9c97d101-029b-4812-aab8-9d4964db0179 1 Other Other +9c97e27f-de24-4873-8bd6-8686e641f622 1 Other Other +9c97f14d-944f-4135-9683-0d29e54587c8 1 Other Other +9c983bc5-cf3e-4fc4-a636-5a1cd2b4b1b9 1 Other Other +9c9891d4-5ab1-4ac0-96cc-7f4b52691a6d 1 James Other +9c98c83b-21a9-4cde-9152-065626de7eac 1 Other Other +9c98ce9d-23e2-4152-9801-17e62391e7c4 1 Other Other +9c9910fc-8018-4721-a222-02059ff30377 1 Other Other +9c992a7f-6452-4797-a462-d54f02c4c51d 1 Other Other +9c997c5b-1b8a-4727-abba-2b76fec22c4e 1 Other Other +9c99bf38-5523-4af1-bfc1-410f91cac505 1 Other Other +9c99df62-7b5b-4942-aa8b-d752b7a04888 1 Other Other +9c99e37c-4446-455a-bf67-5c2883e0fae2 1 Other Other +9c9a1059-ef85-41d7-b707-28aa35aa7e20 1 Other Other +9c9a687c-59ab-45ad-8708-b164bc191f85 1 \N Other +9c9b03ff-ed46-4613-892e-1b54370a5256 1 Other Other +9c9b2207-8f1c-4f39-9553-60fa145bdb43 1 Other Other +9c9b35e3-20f8-4a4d-91f8-b1141960aa66 1 Other Other +9c9b421b-3fd3-47d2-a4a8-c7561e093a3d 1 Other Other +9c9b5193-1aa2-4a8f-809f-adb3d38ae40a 1 Other Other +9c9bbcd1-b4fd-444f-94b9-18c99ce71e1d 1 Other Other +9c9bc546-a190-4cdf-a973-09f2e68e20c3 1 Other Other +9c9c1542-bb7c-474a-b0d2-3353d74df07e 1 Other Other +9c9c15e8-fd97-4cb4-829e-90812de7d7fa 1 Other Other +9c9c51d1-b2d4-41d4-9a93-bdadf475bb6d 1 Other Other +9c9cb2ff-c42c-4f09-8e3d-e44f1a091cc5 1 Other Other +9c9cb77f-a144-441e-b318-0016efe9b9ca 1 Other Other +9c9cb7fd-58fa-4d9b-acd1-9c8bbba1a565 1 Other Other +9c9cd058-1c6d-40a6-a2c2-6de60c4976d1 1 Other Other +9c9ceb38-b2df-4b32-9b81-237dee1d229d 1 Other Other +9c9d5c5d-c291-4a97-9bce-5d69cc5d7b95 1 Other Other +9c9d9f67-8de0-4440-b5c8-27bef2b45cd4 1 Other Other +9c9da1e5-ff38-4721-913f-54468389ff00 1 Other Other +9c9dd87e-5fc6-4945-a77e-887f754d8bcd 1 Other Other +9c9e010f-4b70-4284-9231-4d7dacf1d1cf 1 Other Other +9c9e38b8-d296-4ed9-80ce-dcc98d2569b6 1 Other Other +9c9e55f4-0a43-459b-974d-76920fa78509 1 Other Other +9c9e88ff-e55c-44d8-8aec-92fe6da86c73 1 Other Other +9c9eb62f-7ed3-405c-b01a-766d8e9e3ed6 1 Other Other +9c9f0c2a-b34f-4c3a-a4a7-119baa157bf7 1 Other Other +9c9f3b2c-ba4f-40dd-acd4-e9e1b144ab74 1 Other Other +9c9f521b-3669-43d8-9e42-64f050aee093 1 Other Other +9c9f6d49-074e-4a30-acfa-1368ae0c6b0c 1 Other Other +9c9f7366-6806-4154-9709-2922b643aa40 1 Other Other +9c9f8013-297a-42d8-afa5-922834729a48 1 James Other +9c9f90fe-7d05-4107-b57b-68edbcc41f17 1 Other Other +9c9f97d9-2ba7-491b-9624-9be0e1d8b237 1 Other Other +9c9fde83-2e4e-4302-9c65-21a632f71989 1 Other Other +9ca02048-c382-4d7b-8626-ef418d31439c 1 Other Other +9ca082b5-5d13-4226-a23b-394c11cb2d7e 1 Other Other +9ca0f73d-74fb-4885-9af1-36b79a0d0d04 1 Other Other +9ca10908-4419-4cc0-a7be-66cee4251522 1 Other Other +9ca10bf1-6d71-4e3d-82f2-0327435a037f 1 Other Other +9ca1189f-a50c-4f1e-824e-058349a50dad 1 Other Other +9ca16452-f5f3-470a-a218-09224b50f807 1 James Other +9ca16a5d-27fb-4827-9723-81b4f19ce07e 1 Other Other +9ca1d9fa-e216-444f-9561-551d0b37d4ff 1 Other Other +9ca1ed00-c95a-4b23-82a5-2c0fa09b3c84 1 Other Other +9ca21c62-4eb8-47c2-98d0-a652c8e46592 1 Other Other +9ca25fb6-1d0b-469e-abe4-d3871c4af0cd 1 Other Other +9ca29e82-323b-46b9-b050-b4259ac7d1ca 1 Other Other +9ca2b22f-7fab-45fb-b425-0ec7b5b9df05 1 Other Other +9ca34d4b-5651-4d87-b797-1a8d50e7a7cc 1 Other Other +9ca3704c-009a-41fa-a488-5a7a152fd754 1 Other Other +9ca3c7bd-05ca-4a80-9e96-d1d5cd8769d2 1 Other Other +9ca3ca7a-a077-4f73-9f74-6f96358e8d94 1 Other Other +9ca5040c-e583-4638-932b-d21b64b52f2c 1 Other Other +9ca52671-5c71-4d2b-b03d-dc95ee180e80 1 Other Other +9ca5288c-28f7-42dc-98d8-5ed39f7cd8c9 1 Other Other +9ca583cc-dc8d-4ab8-a2d7-6d367528c3be 1 Other Other +9ca5dbef-3fe0-4ced-8908-cb9ed5661670 1 Other Other +9ca5e3ee-3640-4d7c-ae2f-e12c45e6d53f 1 Other Other +9ca61188-604d-406a-9804-2429e530c7de 1 \N Other +9ca61ed0-d260-431f-86ea-2c81660a6167 1 Other Other +9ca63ba9-f712-42a8-b65e-698189870ac7 1 Other Other +9ca6a05e-3176-4259-8bf0-d441911f0e0b 1 Other Other +9ca6b8c3-485c-487a-8735-dc170e925567 1 Other Other +9ca6ca6b-cf0d-43e8-ab55-b4b231834ac7 1 Other Other +9ca6debf-dc85-4979-9167-cec54b8a7f26 1 Other Other +9ca718a7-2b71-4be9-a8d4-9399878a16cb 1 Other Other +9ca72ba0-1946-4cc0-9718-052639a8ffc4 1 Other Other +9ca758ca-cdbc-464c-871b-f49babab39d5 1 Other Other +9ca7701b-535e-44c4-b1a3-083c6ad95ecb 1 Other Other +9ca789f5-2fb5-498a-9ebe-fdb13001bdee 1 Other Other +9ca7a5b0-747e-4973-af5d-cccb719e875d 1 Other Other +9ca7cc31-2e28-4614-8d57-b94f4abfcd60 1 Other Other +9ca7cca4-b149-422f-9d13-6f5e9a008fb0 1 Other Other +9ca7d715-4414-4140-aa66-04d6deb1e37d 1 Other Other +9ca7e860-c388-4769-9823-c5b8e488b4f0 1 Other Other +9ca7ee8e-5820-4b30-8eca-4475647accb4 1 Other Other +9ca823e6-844f-4ed4-9667-0b9388030bf2 1 Other Other +9ca83902-1acb-4df1-8fdf-2c606dc6b6a1 1 Other Other +9ca895ad-adf9-46fc-b070-2d7c00b8d496 1 Other Other +9ca8b862-62b9-4fb0-81d0-33b147826cf1 1 Other Other +9ca8c9cb-ebc1-4f4a-8e8b-ee3461410894 1 Other Other +9ca8ee7d-4168-4c65-9de7-5058cde0969b 1 Other Other +9ca90e6b-eecd-4a90-b405-1caf8618a63c 1 Other Other +9ca92214-1633-4747-8a37-bceb5e46315f 1 Other Other +9ca9699f-c39c-4d40-9437-6d421e69a51f 1 Other Other +9ca97b32-1642-4453-8fe0-06c07d6691e1 1 Other Other +9ca9c967-0ab5-45c3-acc5-6baf5a37c62b 1 Other Other +9ca9d0e2-0ee5-42c6-9e54-e8a764386f80 1 Other Other +9ca9d3c9-b9c8-4ee1-9a0d-abf10fd35e41 1 Other Other +9caa159b-8b41-4c05-9293-0eba396a6c36 1 Other Other +9caa35a8-6cae-45f1-a2f0-b080d03a9ba0 1 Other Other +9caab2b1-0014-491f-b080-96b6426b7955 1 Other Other +9caac403-45df-47f3-9d62-24499143500e 1 Other Other +9caacdd2-4c26-47d6-b6fa-33c1c4a24dce 1 Other Other +9caad0b3-8691-495b-8360-6723cf0d6e5b 1 Other Other +9caadc29-0f2d-4a13-9c68-beab0af7ca81 1 Other Other +9cab4714-4709-494a-821a-2d99aae33583 1 Other Other +9cabaf91-2ee7-4c11-be45-30a7bd8aa119 1 Other Other +9cabf187-f1c6-4d2f-afc9-b17a2dca5b6d 1 Other Other +9cac50a5-5f9a-4fbc-aa4b-c3b0a0045760 1 Other Other +9cac6845-6638-4198-a15d-3860b70fef70 1 Other Other +9cacc0de-308e-4a56-9347-09d01ac4e6d4 1 Other Other +9cacf03d-6859-409e-b8a3-7b375b0ffe00 1 Other Other +9cad2770-6f1d-4349-97bf-cde35bd1520b 1 Other Other +9cad31d3-03bd-45c4-bafa-fa236bb108c1 1 Other Other +9cad52d3-ddac-43e9-a208-3acfa151c17e 1 Other Other +9cad8b15-afd5-43ea-bfce-b82c7768c0f7 1 Other Other +9cada32c-ed92-4719-bf4c-2e260e84ed34 1 Other Other +9cadf78a-bd77-4e0c-a42b-433ecd0e69c8 1 Other Other +9cae204d-5827-4517-baaf-62f481e656d5 1 Other Other +9cae30f5-2f00-4140-84a8-e7c59b9f023f 1 Other Other +9cae373d-2cfb-4b1b-9d32-bf35f3f53776 1 Other Other +9cae4a56-bb6b-4949-927f-87d88af15fbd 1 Other Other +9cae625c-3382-48cb-ad92-a7cccc00fd04 1 Other Other +9caea087-7908-4fd1-8d50-428b8560506c 1 Other Other +9caee9d7-fa72-4fa4-a5b5-c31460a7baa1 1 Other Other +9caeea8f-7f7d-4d2d-9f71-db5bfd673c24 1 Other Other +9caf0291-976e-44c5-9cc2-e244c4af3560 1 Other Other +9caf9bc2-5c67-4a14-8749-5a62ab49827d 1 Other Other +9cafaa39-93b6-41eb-b079-fb7189f22a86 1 Other Other +9cafb765-f7eb-432b-a758-d588e72b0de2 1 Other Other +9cb03227-7274-4c99-a3c1-56ec44357ace 1 Other Other +9cb0347a-6b14-4ac0-8273-6a47ddf370f9 1 Other Other +9cb15bfa-cfa1-48c8-898a-c359d7054626 1 Other Other +9cb17260-d1d5-4751-8258-8c9b19b6c555 1 Other Other +9cb18ade-2391-4905-b4c9-6d85ab177aaf 1 Other Other +9cb18b32-4603-4958-9b3d-7d41630d28e6 1 Other Other +9cb19e51-e0d7-4504-b2e2-6e6a25db6fe0 1 Other Other +9cb1ad8f-95d9-42c8-8bc6-2465cc8f00db 1 Other Other +9cb26508-abc4-4b3f-9dbf-cc95882b4f3b 1 Other Other +9cb2915b-ee2c-4304-a869-bbced3cd3296 1 James Other +9cb318c0-923b-49a7-81f6-8ecfa66bb746 1 Other Other +9cb358f8-9603-410b-8463-01a2b14bde4a 1 Other Other +9cb36f99-ebe6-4509-a173-0eb032d62797 1 Other Other +9cb3ae69-b403-498b-a2e8-5dc8196dbeb9 1 Other Other +9cb3f911-def8-4a32-8091-676f0948ede2 1 Other Other +9cb422bf-9370-4ee8-a3a5-bf3e29ad300b 1 Other Other +9cb4250e-16d7-4d09-924b-c96c05e1109f 1 Other Other +9cb44cfc-9844-4c87-997e-86b4b330ee0e 1 Other Other +9cb477d8-f85f-4b7a-bc41-d6585f853d0d 1 Other Other +9cb47dd6-7b66-4cc6-89c2-3c334f6a64fa 1 Other Other +9cb49b02-cb81-4ca0-a898-8e6702a15ac3 1 Other Other +9cb4bc99-8281-49bb-ad59-91130642882a 1 Other Other +9cb4ddb4-7f75-4a8a-a3ff-e35d611ee6f3 1 Other Other +9cb4e696-1fce-4e1b-b60d-4861e5602431 1 Other Other +9cb51b6b-c302-4c4f-a578-d8fddeb209b3 1 Other Other +9cb6373f-13c5-4767-b4b5-f15ed1a23f96 1 Other Other +9cb65300-6a43-4b02-8113-0c01436d4f5f 1 Other Other +9cb65531-1b03-4803-af8f-924494b5f5fd 1 Other Other +9cb65b45-b2f1-4ba4-b11f-99cccf8c192a 1 Other Other +9cb6908b-c461-4faa-8f9f-5fa880883c7d 1 Other Other +9cb6b25e-e38b-4138-b5c9-6753101ab516 1 Other Other +9cb6e386-01ad-4f50-967f-25a0e2186ce1 1 Other Other +9cb77aa9-3502-41af-a317-8c0138c38a85 1 Other Other +9cb79a97-62cf-400a-ba07-d1b8e928cc0e 1 Other Other +9cb79f14-5f38-40bb-9c94-0acfdd86ea57 1 Other Other +9cb7da49-8e9d-4b9e-963a-a7389cfedfea 1 Other Other +9cb7dbf4-8584-4df9-8889-433a69b96c1b 1 Other Other +9cb7e40f-fd9e-4972-b2e4-cbe0a8f9ad49 1 Other Other +9cb811c7-f3a5-44cd-97b4-4669483a2c9f 1 Other Other +9cb8288f-44c6-457b-9080-f20ff2e1c012 1 Other Other +9cb841d4-e8a4-4ec0-a76f-dcd10ca9f55e 1 Other Other +9cb868d7-ada3-4e43-9618-f733d14df644 1 Other Other +9cb88e98-9fe7-4592-993e-28db031e4f07 1 Other Other +9cb91e99-7316-4f0f-9eaf-f59c84bb8763 1 Other Other +9cb95b8c-6779-49db-94c9-624e95dfb3ac 1 Other Other +9cb9940a-511c-4bb8-a969-8e5650c974b5 1 Other Other +9cb9b5cf-c43a-497a-86bb-cd48053ce6a3 1 Other Other +9cb9ef4f-2b7c-41ca-b27f-fb9359077c39 1 Other Other +9cba4970-87cd-44d7-9124-ed1f89188c0c 1 Other Other +9cba53ee-e83c-4b98-89b0-06533b471417 1 Other Other +9cba5dde-373e-40b0-bf6d-e22986aff8c8 1 Other Other +9cba9870-aa98-4d13-b163-75c40580ceaf 1 Other Other +9cbb4456-8606-4519-b69b-5189a2a5b321 1 Other Other +9cbb4adb-0c88-4c90-8976-4cd481f5115b 1 \N Other +9cbb82c9-1755-4eb9-8bc0-c2a05bcbea9d 1 James Other +9cbb918e-bb0a-4cd0-8ba4-1c0b4178d718 1 Other Other +9cbba9bb-c60f-47f7-a2a8-2d4289f3a6cd 1 \N Other +9cbbd6dd-3d99-46e3-b404-0b954f526793 1 Other Other +9cbbe9a6-445b-40cc-b6b8-9f31cd92cabc 1 Other Other +9cbbed86-4228-4602-ab63-d9c01250fa18 1 Other Other +9cbc0dfe-50f7-4478-935c-1d3e45392dab 1 Other Other +9cbc1ba6-64d5-435b-86de-d527944db3c2 1 Other Other +9cbc6f98-429e-4a81-b67f-7feeb68aa66f 1 Other Other +9cbc7673-8570-466e-addb-fa4bf1fe00a8 1 Other Other +9cbc99f7-bca4-429a-8cec-1aacf5049216 1 Other Other +9cbcdab0-bec3-41b5-961b-7967a041043e 1 Other Other +9cbd030f-3054-43b7-98d9-42eb878d4db5 1 Other Other +9cbd38ef-f624-40ac-b7fb-f6e6f1a8bcf4 1 Other Other +9cbd5ac8-9801-4ad6-a15c-f066840a21a3 1 Other Other +9cbd5dac-56df-440b-9baf-8a04ca3cc16b 1 Other Other +9cbd8ae2-b8ca-4b33-8ed5-d9c834c5deb3 1 Other Other +9cbd8b5c-75ca-4b89-9c21-496d64caa452 1 Other Other +9cbd912d-ccdf-44bb-af47-755b26038a28 1 \N Other +9cbdfed3-c0be-4fc4-9b05-5b43105e7687 1 Other Other +9cbe4b90-61c4-4079-bf85-80dafdc4a3ac 1 Other Other +9cbeb3ea-128b-4856-98d9-258f9a460720 1 Other Other +9cbee12e-b323-4bae-823f-3536dec9a7c7 1 Other Other +9cbf01ba-31e4-4237-abef-3c9a74734978 1 Other Other +9cbf06a8-6a7e-4928-a107-a513ac7e6a55 1 Other Other +9cbf5cc7-72de-4928-800e-d06dd3a72470 1 Other Other +9cbf87d0-de77-48eb-af1f-dee57ca839e3 1 Other Other +9cbfaae7-ba8f-42d2-b90b-f5ab6b4bc457 1 Other Other +9cbfac91-07b1-453a-bd7d-e579d884cae9 1 Other Other +9cc04309-fd98-4892-930e-04ac91cae15a 1 Other Other +9cc0d2ca-d02f-4e15-8b94-c74c6dd4dd21 1 Other Other +9cc0e6e6-25a1-42aa-a192-659dc42b07cb 1 \N Other +9cc0f625-2f4f-44c1-b018-20a9e176dcd7 1 Other Other +9cc14a71-e877-4fd6-a8ff-2be1a4609ae0 1 Other Other +9cc1c790-b891-4f51-8781-2f2d72ece6a2 1 Other Other +9cc1ec9d-dd8a-4aee-b057-bb351d72352b 1 Other Other +9cc2136a-6e12-4719-99d9-f476cb5dee48 1 Other Other +9cc22364-2433-486a-b5ee-2a3279b94a4e 1 Other Other +9cc24818-6cf4-4336-a7f9-2ae1e6a60dc9 1 \N Other +9cc301ea-9baf-41d9-a0d3-45fb7739def8 1 Other Other +9cc323fe-b82d-4336-97b6-d1124e165e58 1 Other Other +9cc41caa-e58c-42d4-80e3-ae66f9050133 1 Other Other +9cc44069-b25e-4822-b6e2-d5fc0246e124 1 Other Other +9cc4566c-f878-42f4-a636-678db0590a41 1 Other Other +9cc463e3-480b-4eed-9779-e65154728f2e 1 Other Other +9cc49175-0ba5-4389-bbb2-e83d5b24dbd5 1 Other Other +9cc4a58d-03d3-4cd2-819d-5343eca35eb1 1 Other Other +9cc4e973-b074-4b4d-a565-3b99b42fe928 1 Other Other +9cc51806-bafb-48cb-868f-ab39c9365499 1 Other Other +9cc5710f-8c82-462c-9eb0-6bb3deb838ac 1 Other Other +9cc575d5-023d-433e-9d4f-a7d0da331df8 1 Other Other +9cc577f6-bbff-41f2-85fd-6c834cd9a64e 1 Other Other +9cc5b52a-a4c5-46be-964f-34981edcfa26 1 Other Other +9cc5b818-e03c-4cca-ba25-7b3fc2570db1 1 Other Other +9cc5d551-b1a3-4827-a98b-4c12af6b2043 1 Other Other +9cc5dda2-bd45-4c95-978c-1af77df40956 1 Other Other +9cc65386-ad65-48e0-853b-32b0713330c5 1 Other Other +9cc6aa6e-46eb-494a-8423-1525e0c8e7e7 1 Other Other +9cc6d82d-185b-4bb3-a298-1ab91e018871 1 Other Other +9cc6ffbb-4bc0-4ee4-bea7-16c747341301 1 Other Other +9cc70c01-130c-4bd8-98cc-879ba5e361a8 1 Other Other +9cc70d39-63ae-4436-b4c9-25d1da3b5d72 1 Other Other +9cc70f68-0cfe-4dd1-b050-0ae64d6734b3 1 Other Other +9cc726bf-a0d4-4e58-b6ef-40ac72fc8501 1 James Other +9cc79322-b293-4ee3-a050-5697fe4040a0 1 Other Other +9cc7be01-c01f-4610-8e71-6daad1a28b63 1 Other Other +9cc82372-daed-418d-9d63-4ab8b7c1d766 1 Other Other +9cc8388b-d2c6-43d7-8068-9c92d98ce09f 1 Other Other +9cc856e2-6cd1-4916-acc4-5f613acd356c 1 Other Other +9cc88f55-0631-4cd4-8d21-8ae08e12f8ac 1 Other Other +9cc8dc08-895d-485b-a599-6f81a4818aec 1 Other Other +9cc9a415-2c1b-4b28-a59a-0a16ceba3c95 1 Other Other +9cc9b3c8-ac8a-4c4a-81da-dce5d6bcc1fc 1 Other Other +9cc9ba69-80fc-4cf8-a949-8ef2bbcbf795 1 Other Other +9cc9f6aa-e689-46bc-a354-fbad08d2de90 1 Other Other +9cca4242-0340-48c3-acb2-e07b39b15e93 1 James Other +9cca517c-8642-4603-a2b5-446d738dc645 1 \N Other +9cca519a-fe93-4a30-9edc-7de9bcfa002f 1 Other Other +9cca6e5d-53c4-4760-9bc4-eb0915ddb5ff 1 Other Other +9cca8ce4-efec-44cb-b2fb-bde537d0c3bd 1 Other Other +9cca8dfd-4d23-46ce-89a0-668ecae2b69c 1 Other Other +9ccaaa6b-bf5a-4e69-9158-e27351fa661d 1 Other Other +9ccad6c1-dba3-4359-bbdc-a9f0c020b09d 1 Other Other +9ccaf65b-d536-4a5e-a795-b5fd5c901768 1 Other Other +9ccb175f-9b65-4617-9bed-726d3b4fa45f 1 Other Other +9ccb22ac-3992-4660-85b8-f5b3defbaab6 1 Other Other +9ccbaeae-bee0-40d2-a061-46742ef3caf1 1 Other Other +9ccbcad7-26b7-4454-83b9-ac34a6b35243 1 Other Other +9ccbfb25-3536-4e1b-9c1c-ab10b559edcc 1 Other Other +9ccc0b2e-b681-40ac-96d5-7eeb736e6cde 1 Other Other +9ccc1394-de30-43bc-a0d0-875cf913b6bc 1 Other Other +9ccc4b8a-92c7-47fc-af15-fdc3ceb99345 1 Other Other +9ccce2cd-22c5-4bfc-a842-49e64d9a9927 1 Other Other +9ccd8cc6-f04c-4f71-841e-9871d7e6d75c 1 Other Other +9ccea223-ffae-489d-96d1-9c5cd4fa82c3 1 Other Other +9ccecf7c-4f4f-4c1c-8ff8-9d6fa6055ada 1 Other Other +9cceda46-70b9-486a-ab91-133767b9a1ed 1 Other Other +9ccf29ed-f8ba-44e4-a2ca-98c90e5324c4 1 Other Other +9ccf2d24-a464-11e7-8d17-fa163e8624cc 1 Other Other +9ccf53e3-38df-4e08-aee8-bbfe918d595e 1 Other Other +9ccf5cbf-8233-4a32-9151-1fff894c8afd 1 Other Other +9ccf7e60-5673-4c64-a129-af11b59f3fdf 1 Other Other +9ccf9f7e-ca02-42f0-85e9-07aed0d4297e 1 Other Other +9ccfd20e-5a69-4a4f-a456-50074397f6a7 1 Other Other +9ccfe387-1b3f-4dbf-a9c4-6141f5d07684 1 Other Other +9ccfeff3-7d3b-48fb-9882-7ef485cca012 1 Other Other +9cd0225e-14dc-4a57-8444-fac4ec731db4 1 Other Other +9cd0baf1-6a0d-40a1-bef3-ee7a5c46d25a 1 Other Other +9cd0c48a-6008-445f-82b2-4456f6c5a318 1 Other Other +9cd0d126-36b0-4d87-85e5-18784660e16a 1 Other Other +9cd13f24-a84c-405e-b353-8f77e0eb8803 1 Other Other +9cd16da3-2b22-4fbe-be1a-55d6fa4d1841 1 Other Other +9cd17986-d862-4812-a054-365018ce657a 1 Other Other +9cd1c663-7f55-4b03-a96a-6757a2c4e142 1 Other Other +9cd1ce89-ca9f-4125-be25-3715d0c550fe 1 Other Other +9cd1ced2-0a04-4e9e-9699-3f8830af42cd 1 Other Other +9cd1e702-a6d8-4164-9dc0-e8191caf9bb3 1 Other Other +9cd23ecb-c038-44b6-8794-d3cf84495a09 1 Other Other +9cd2a514-1bf9-45a3-a510-0198911f7f38 1 Other Other +9cd34064-fc1a-413c-913c-4c4ebf22b391 1 Other Other +9cd35cd5-ed4a-4f4a-814a-8ad08695ba0a 1 Other Other +9cd37d38-ec71-4680-8ebd-79dac75382c3 1 Other Other +9cd3bf21-06dc-408d-b97a-2f7ff6436b49 1 Other Other +9cd3c226-9262-40ae-9e06-ec40878ffa07 1 Other Other +9cd3f76a-ebb2-4204-9b7c-af599f23f204 1 Other Other +9cd4ebb9-ef84-4e77-a512-f19611953b43 1 Other Other +9cd51d5e-e42b-4ceb-bbb0-af8e35fbf98c 1 \N Other +9cd59c46-74e6-428d-9e21-8cea445b8307 1 Other Other +9cd5bdb9-1d4c-4ccc-991e-ce6c3fa55593 1 Other Other +9cd5bdd8-17b4-4e68-ada5-b3de8082cb07 1 Other Other +9cd5df8f-064b-4900-96e0-ff7804d1c4e1 1 Other Other +9cd63d04-e5d1-48f5-afd1-069619cc6229 1 Other Other +9cd65b8c-2a69-47ab-8ee5-c0c3bf79f187 1 Other Other +9cd673fb-244f-4d91-bcb8-4d2b2ff4e440 1 Other Other +9cd6868a-62aa-459d-b873-5d4e49add9b2 1 Other Other +9cd6ecf8-7bd4-4c87-9d17-5bdcf5b68da3 1 Other Other +9cd71d02-3ddc-4226-9cab-f7d9246c0b40 1 Other Other +9cd72357-6d6d-4db1-8f9c-961e68ccbb85 1 Other Other +9cd7634a-9387-444c-bd56-dbcfa4a55ee1 1 Other Other +9cd766d8-5194-4a2f-9471-4e0a02360e6d 1 Other Other +9cd7bdb5-ebca-46c7-b740-6b108e1a94cf 1 Other Other +9cd7f567-710c-460f-a70a-b81dd7c74cae 1 Other Other +9cd91e53-02e9-4c1b-a77e-911ca956efa2 1 Other Other +9cd93653-ff96-49b3-ad57-6a11bdf51ab7 1 James Other +9cd96585-e4ab-4f89-a9d8-878b3605d211 1 Other Other +9cd984b9-ceda-424f-a03d-0e61fb86358c 1 Other Other +9cd99a25-1456-4cde-823a-697104dabfd8 1 Other Other +9cd9b58d-b239-4a24-a90d-1b17cb1dcce2 1 Other Other +9cd9d925-d1ce-4d08-bb4c-dd8aad468dc0 1 Other Other +9cda1d06-dcd2-46f6-8f7d-2a00816b2422 1 Other Other +9cda3faa-f416-43aa-b7f0-220d6adab700 1 \N Other +9cda4429-78a9-4025-b214-00c5b6a51256 1 Other Other +9cda4c38-fd9b-4513-8df4-e8a9a85e9a6a 1 Other Other +9cda5d4c-c0fe-443d-a16a-4718e5ddb47b 1 Other Other +9cda6bd5-bbab-4233-a803-eb5749430244 1 Other Other +9cda9d03-c508-4615-b99e-5de867415a21 1 Other Other +9cdaa100-e280-45ba-9bad-a1dec4e473d4 1 Other Other +9cdab42a-523d-4960-a3f0-5950d97fc6a5 1 Other Other +9cdb2a72-13c2-4c09-a7bc-7edff1695e83 1 Other Other +9cdba49e-10fa-4fdf-b327-e25072865aac 1 Other Other +9cdbd4bd-2cdf-484a-8996-16917a911921 1 \N Other +9cdc2582-4fcd-48e7-ae3d-124e3f08a2cf 1 Other Other +9cdc4221-78bb-4ef8-baf1-a730bf3ab1ad 1 Other Other +9cdc48bc-f63c-4478-93e9-9aec47f8c185 1 Other Other +9cdc5f96-74e3-420e-8ac0-142b812634c7 1 Other Other +9cdc77ad-e2d6-4d87-8f15-b3115e59fdb6 1 Other Other +9cdcae6e-a0ce-4ee8-9cbf-fb453128e8c2 1 James Other +9cdccc33-424b-4f1c-b20c-16135480d28e 1 Other Other +9cdcd941-1f22-4fba-9c16-23082cc1c0cc 1 Other Other +9cdcde9d-3ae6-49f0-9ffc-d706b92abf68 1 Other Other +9cdd22bd-9d1e-47bd-8cbc-3230e6377311 1 Other Other +9cdd2f79-6c5b-4afa-bdb1-5481746e41ec 1 Other Other +9cdd3bd0-248f-4bf1-9aee-acfe5df4e86d 1 Other Other +9cdd5895-5846-4609-9270-289f77f60eb2 1 Other Other +9cdd600c-84dc-4a17-83c8-cf1f720b7300 1 Other Other +9cdd71ea-cdf5-41d3-8a24-ec9cc752e7f4 1 Other Other +9cddb9e9-ad4c-429d-829a-d4b490ea02f9 1 James Other +9cddc8d4-02f9-4ca3-bd53-4225238951e1 1 James Other +9cddcf55-0683-40b5-9605-4bf6d04ab1cc 1 Other Other +9cdde6f8-62fb-477c-8b6e-ecc2d8477980 1 Other Other +9cde5176-20bf-41d5-90ea-b2d77f619099 1 Other Other +9cdeb6d3-0d6c-4495-8636-c55ac5eb17cb 1 Other Other +9cdedecd-736a-4f1f-a688-02d1e3718658 1 Other Other +9cdf18dc-eaa9-4637-ac27-0c820492bdf0 1 Other Other +9cdf2c99-7239-4361-b629-2940233dc27d 1 Other Other +9cdf4b87-f85d-4c63-9578-68cd8d1289f3 1 \N Other +9cdfc3cb-ce22-4e5a-8c47-85fbea416368 1 Other Other +9ce0217a-3316-4101-96dc-c85fee3a9cc5 1 Other Other +9ce04fea-5500-47be-a63a-de8cdf6d909d 1 Other Other +9ce05716-6781-420a-99c2-162aa40483c2 1 Other Other +9ce0572e-cfe5-4360-9427-36ad0f9ee07c 1 Other Other +9ce083e7-db01-4dd1-a92f-170a02cc4a15 1 Other Other +9ce0a6b6-6886-47d4-abb9-351d84e24625 1 Other Other +9ce0e0c5-540f-49b2-939a-48aa218a2c2c 1 Other Other +9ce15c11-a57d-4401-ad4d-7f71bfaff50c 1 Other Other +9ce16718-92a5-4b75-8cbe-fe6648f4b070 1 Other Other +9ce2357c-ab67-4aab-b143-ea826b5d3f0c 1 Other Other +9ce24126-e39a-4a85-941e-dff05831fd2e 1 Other Other +9ce2682c-f7b7-4770-be8e-6363597edf1f 1 Other Other +9ce32c4a-79ec-43c4-82f6-1cca52276c5d 1 Other Other +9ce398e7-acd7-46e8-91e9-d943d4e40242 1 Other Other +9ce3b44d-2e9f-4a57-8977-b159a144133b 1 Other Other +9ce3b79d-4940-4e16-adc1-829b1ad4f7dd 1 Other Other +9ce3c033-a4d0-4172-af08-fcfdd48d3213 1 Other Other +9ce3edc1-9d75-45a4-ad94-ed2d55b409b1 1 Other Other +9ce3fa42-0955-4045-bf27-2f4f7f541b38 1 Other Other +9ce410d0-c4cd-4567-ba7a-5f521f2e7843 1 Other Other +9ce42679-001a-4d7b-9250-46e8e28d6b38 1 Other Other +9ce42dcf-b5b9-46aa-b6c6-fe70925a91d9 1 Other Other +9ce4436b-af62-4d0e-b65f-158c75f0498b 1 Other Other +9ce494ca-2636-4f77-ba76-7d584ac46548 1 Other Other +9ce4b16e-c5ae-4264-8301-323343b813fa 1 Other Other +9ce4e69c-3eff-4689-b50b-0b1c690fea1f 1 Other Other +9ce52f5d-1053-4ba9-934a-3479c1e23bb6 1 Other Other +9ce542a3-a8c2-41e7-b589-e84447194fec 1 \N Other +9ce5bf6f-3f77-4bd4-83cf-b0c3a482f0d8 1 Other Other +9ce63c92-8746-4317-bb9a-54fd69417ff3 1 Other Other +9ce643e1-d31f-4986-80ac-815aa26d38d2 1 Other Other +9ce64c47-5047-4994-a09d-e7f6b42dec27 1 Other Other +9ce70aec-dd6d-4a35-9c9e-01356f50607f 1 Other Other +9ce710da-bddf-4d1b-a25d-dd53ea22da42 1 Other Other +9ce78fbd-fd79-44b0-8196-5980eea4c982 1 Other Other +9ce7abb3-3c4d-4951-bbee-abe495519b5d 1 Other Other +9ce7c035-9e08-4721-9d98-799779db5663 1 Other Other +9ce8ac19-5d69-4280-97de-8211c71646bd 1 Other Other +9ce8b2b5-a441-4d6e-9125-1db1321a63bb 1 Other Other +9ce90ef5-1d01-4f55-a394-1eea96540357 1 Other Other +9ce911a2-96f7-473d-a0b1-50d10a22ff56 1 \N Other +9ce95378-d930-4877-9c12-c86f16fdb71b 1 Other Other +9ce97750-742b-405a-8cf6-bfad50226be2 1 Other Other +9ce9a302-201b-4236-8e5e-43fe1a21b587 1 Other Other +9ce9b39c-b6b6-4b8a-927c-3bef6ad90628 1 Other Other +9cea1ce1-660c-4e17-86f3-b32c65e5565f 1 Other Other +9cea2d20-7cf0-4b0e-b4f1-3821b5bc8dc7 1 Other Other +9cea4513-41f9-4bc7-b569-01c721d9761f 1 Other Other +9cea45c2-41e9-4c15-9f71-3f79d6c7167e 1 Other Other +9cea7090-2259-4c14-929f-3eaac2aeba32 1 Other Other +9cea8494-21d4-4f65-8aa6-3759dd89b387 1 Other Other +9cea9881-b8b4-4450-a86d-96e703261018 1 Other Other +9cea9ccf-22d5-4ed6-b387-070882b648e9 1 Other Other +9ceac9a5-585e-4a1c-8720-d47eaa8c15a1 1 Other Other +9cead970-01ec-4f20-be53-f5d7cc67dd11 1 Other Other +9ceb15e2-9a1a-4b71-ad52-520c35a63f4c 1 Other Other +9ceb2f2d-133a-4ffb-9a8f-4fb492ca854e 1 Other Other +9ceb6d14-f636-43ff-9e8b-3a2a2fe043ba 1 Other Other +9ceba33b-670d-4ee3-a90e-f010bd0ad507 1 Other Other +9cebb84f-7f62-47d9-860c-a470b7cf2b52 1 Other Other +9cebc2f4-5f77-4ea2-b263-194420293dc1 1 Other Other +9cec31a9-9cc6-4b94-a7ce-e7a721a2fec5 1 Other Other +9cec40e7-e265-4161-835a-e7a933e18041 1 Other Other +9cec9755-7947-45c8-991e-7ce2c5c7a05d 1 Other Other +9cecd5e0-4834-45c5-90dd-e0f676caa003 1 Other Other +9cecda71-bb82-4aa6-b853-522f8ea6a919 1 Other Other +9ced6c8c-4250-4c64-87c8-ab173c2dc7f6 1 Other Other +9ced6ed0-00f1-11e8-9dc9-fa163e8624cc 1 Other Other +9ced9405-7c71-4d01-b2af-3103d2ed0344 1 Other Other +9ceda3b9-1adb-4e53-b3f7-c54f9b6d5e34 1 Other Other +9cedfd18-8da7-4534-bf47-2d0487326e85 1 Other Other +9cee1011-b63a-4317-ae75-0682536d8c5e 1 \N Other +9cee690c-8150-46a8-bc11-d30d1edca27a 1 Other Other +9cee7093-7e4b-4434-96f8-fedcc9e57ebf 1 Other Other +9ceea789-5c46-41f7-b58a-64a37308a6c8 1 Other Other +9ceebdd5-d6df-4981-ad51-e1e511052541 1 Other Other +9ceee829-3624-4f06-8819-4025dfaa4b7e 1 Other Other +9ceef476-90a6-45cf-b14e-4593864faeca 1 Other Other +9cef44e9-5b65-4c29-835c-e68597fab64e 1 Other Other +9cef4f3b-8ee2-4774-abcc-6fafa60d5660 1 Other Other +9cef6f1d-3519-4a13-9fcc-def14019ab99 1 Other Other +9cef75b0-01a2-4c01-8a95-ee597aeb4825 1 Other Other +9cefa059-ea9f-4c57-804c-54f86ea457b7 1 Other Other +9cefbef1-b8e5-490f-a2cc-adb5cd29f026 1 Other Other +9cefc25e-3e38-400d-a2e0-5c7079d24bfd 1 James Other +9cf00227-0efe-4781-ae2c-08c7afbe913c 1 Other Other +9cf09b8b-00a8-4a64-bc2f-8a9858972032 1 Other Other +9cf0b47c-112d-4c04-a6ca-e9db95f24f3f 1 Other Other +9cf0e418-1c11-46a0-8ffd-af2a94ceef05 1 Other Other +9cf13157-54a9-443b-8eed-b860d0ac3574 1 Other Other +9cf151c4-05fa-4ef1-9001-1b6bfaac3f6a 1 Other Other +9cf15a7d-485a-411f-b35a-ca4f5c2f2db3 1 Other Other +9cf15e7c-2eb7-4daa-86a6-4fde2625f36b 1 Other Other +9cf1749c-85d2-499d-b8c4-77090571654f 1 Other Other +9cf1af3c-82ed-4c76-8cf8-526100519c5c 1 Other Other +9cf1ddba-e33e-46f5-a657-edf63dff5448 1 Other Other +9cf20a21-dffb-4d40-8ef1-4ad4475bb89b 1 Other Other +9cf23f41-e12e-44b0-88b2-4d22ed0520d5 1 Other Other +9cf2eff8-1f8a-44fc-9407-a54d8b07568b 1 Other Other +9cf2f931-8d29-4ee8-8a2a-52be6839ca7f 1 \N Other +9cf33cea-3394-4ed5-a259-b5a3c0884142 1 Other Other +9cf387b4-8740-41ba-b371-9e24d30e1c59 1 Other Other +9cf390f6-3bc1-44b1-ae7c-91799dd68336 1 Other Other +9cf3ab4a-462c-4fed-8605-9f609398bdf0 1 Other Other +9cf3b815-8a31-4ecc-b394-32d1fc3c276b 1 Other Other +9cf3bb11-156d-4163-ac51-4b387ca4f14d 1 Other Other +9cf3e57a-16c4-447b-adcd-72a85d694e76 1 Other Other +9cf4a1ff-bad7-4447-a872-c02f956143f8 1 Other Other +9cf4cf91-2477-4f9e-88ad-c0764c8a567f 1 \N Other +9cf4f257-0195-4358-ac51-ef75cac88971 1 Other Other +9cf4f7a9-0821-4d43-958f-08505f96415e 1 Other Other +9cf59166-a016-4b6b-9563-f6c6fc9fc039 1 Other Other +9cf5b928-6c39-496c-b63a-fd125bd79e6d 1 Other Other +9cf5d7e6-8ec6-4518-8153-db7a1a073daa 1 Other Other +9cf64838-3a1b-43f8-b302-3e5b4b7f846d 1 Other Other +9cf64962-0588-48e5-954d-b4cf28372bab 1 Other Other +9cf64f0b-eb79-4959-9b08-f6f281301b86 1 Other Other +9cf656b4-e37c-4fe1-b2fd-0e73c8a4ab9a 1 Other Other +9cf667e5-4efb-42d7-b7a2-95fc8da8d3ec 1 Other Other +9cf6af1d-23f3-4402-ac3d-24628546a6f1 1 Other Other +9cf6f03e-c0ee-437a-87d1-859be5b0d3fb 1 Other Other +9cf70cbf-b2d1-4786-bd41-ee53e2137b25 1 Other Other +9cf73d09-e05c-4c2c-ad7c-803fc933a513 1 Other Other +9cf744d7-fcc8-4114-9e08-2ff62131c772 1 Other Other +9cf758a4-79c7-4eb9-918a-7f99dbad59b4 1 Other Other +9cf77205-5453-4c1b-b177-3e6b86903bc2 1 Other Other +9cf78940-0784-4dcf-9ac9-c8610b841274 1 Other Other +9cf82250-e711-4eac-96db-3e81c29a4b18 1 Other Other +9cf85b60-c535-450a-8ec7-53e1b067c07e 1 Other Other +9cf8d63d-ab52-4c90-8cd1-ab12d1253da0 1 Other Other +9cf90c8e-3f42-411b-989b-d10fa2f0bafa 1 Other Other +9cf92d78-1b51-41e5-af0e-a56fec946e8f 1 Other Other +9cf943f0-9cf0-4193-a191-81b3773c782c 1 Other Other +9cf967c9-d88b-40e6-939b-7052cc4b0855 1 Other Other +9cf9834e-7fa3-4acb-9558-50fe906a7e7e 1 Other Other +9cf988bd-d145-4fee-bb3f-427a846c8496 1 Other Other +9cfa0319-95b0-45e4-a461-7185b70379ee 1 Other Other +9cfa4d58-7c29-44cf-a42e-75dd084825ae 1 Other Other +9cfa5e2c-6e3a-421d-a273-0bbdf2ca5eba 1 Other Other +9cfa7b54-ad1b-4fa9-9bf9-9431dddd6bff 1 Other Other +9cfa9af7-c810-446e-add1-b1dd80cddce5 1 \N Other +9cfabc79-b109-4c8c-bd49-d4720f24d2cd 1 Other Other +9cfaec43-f53a-4005-8ad9-371f03f6f40f 1 Other Other +9cfb1d30-8763-4d7a-b0ee-6583afdc65dd 1 Other Other +9cfb2538-38b5-459f-ba04-50ceccac7dd7 1 Other Other +9cfb6d8b-6d14-4e80-ba8d-12ff8cef01be 1 Other Other +9cfb8384-c9b4-4a2e-a21f-8fdb28b85d9b 1 Other Other +9cfb86e1-0ca4-4d43-8348-fe57599db8bc 1 \N Other +9cfbcb73-a4c3-44b0-a480-02cc444623db 1 Other Other +9cfbfaa9-48b4-4af7-9e51-c1a81d42af59 1 Other Other +9cfbfcab-d465-46e5-89f7-052bc4f32dab 1 Other Other +9cfc47e6-2551-49d8-9b0a-cd6e8b80c447 1 Other Other +9cfc5223-202a-4c2d-8c67-c6d639d5d158 1 Other Other +9cfc59bb-4f3f-4a7c-8133-ca3613ec4040 1 Other Other +9cfc7050-f98c-4501-b147-e1ba3191cd77 1 Other Other +9cfc7ca8-5cc3-4122-a0fa-2d2259f989ba 1 Other Other +9cfc838c-2f94-4657-8932-76dc6482a53a 1 Other Other +9cfcab81-ec0d-4e4d-af08-6afcb6f55c90 1 Other Other +9cfd56fa-09c4-4ae0-931d-1f4ff3e93fe5 1 Other Other +9cfd746b-69c8-4392-8199-fb56e91553af 1 Other Other +9cfdb06e-dec4-4ab0-9e29-ca3ddf1999fc 1 Other Other +9cfe26b9-a4fb-4d96-adb7-a8dbc4e95967 1 Other Other +9cfe93b5-6599-4115-89fc-e67ce0a45a68 1 \N Other +9cfe9b06-bbd6-49fc-9cf3-ad10a9192ad9 1 Other Other +9cfebc00-15dc-4efa-9f93-a43bc711a6c4 1 Other Other +9cfed2fd-f720-430b-a607-ab08852a1c45 1 Other Other +9cfedb34-f5b6-4ee2-9054-c91141b991d0 1 Other Other +9cfeff2a-f0b0-405a-8920-5882d72b3937 1 Other Other +9cff3e8a-d98a-489d-900d-ca1a4a36dd9b 1 Other Other +9cff5190-15f4-4a08-aa68-e64ba760ddd6 1 Other Other +9cff5482-ffae-4e30-9e4e-4b9e34567093 1 Other Other +9cff8317-0488-47d6-b144-f218f393e58c 1 Other Other +9cff9a5d-ceed-43af-b450-bc44eade1ed4 1 Other Other +9cffdaba-3e30-4fac-bfa5-f6957aa472aa 1 Other Other +9cfff7ff-b0a3-4424-b378-4fa837f6b41a 1 Other Other +9d002899-f8cd-42b9-81ec-190b53df2799 1 Other Other +9d00d879-6125-477f-b947-ee44fb61fb8e 1 Other Other +9d00e5c5-a5f9-4329-a686-5b684df6b2dc 1 Other Other +9d015525-83be-464d-a6f7-ce367115be88 1 Other Other +9d015dd9-c215-4d00-95b6-b204c0e51111 1 James Other +9d015f86-19e5-49a9-95dc-5d011c85f489 1 Other Other +9d0170a7-802b-4f25-9d15-3832cca26f10 1 Other Other +9d017d97-13cb-4271-9414-2271e7f4bfd0 1 Other Other +9d0181bf-817a-42db-9134-ab59687dd94c 1 Other Other +9d0194bc-940f-433a-8652-7662e7ccde19 1 Other Other +9d01a02e-21e5-459c-884c-9bd22603c011 1 Other Other +9d01b05c-5253-4909-95d8-7187ab4530eb 1 Other Other +9d01b786-9f4f-4fb1-aef1-ba06b2c131d4 1 Other Other +9d01d6d2-4804-488d-a11c-795f7e6ce22a 1 Other Other +9d01e15b-d0cd-440d-aef5-f90ca8764af7 1 Other Other +9d020bea-2ad4-41b2-aa5d-c2df20b42a9e 1 James Other +9d02e2f8-aa1a-4317-8f83-b81230cd6910 1 James Other +9d02e589-e04a-41ed-8dd2-d0ff272f789c 1 Other Other +9d02e856-ea0f-4bae-bce6-3985b9b5c7c5 1 Other Other +9d03005c-147e-44cc-ae96-d4117fa2d7d4 1 Other Other +9d0371a3-34f1-4fbc-99d5-c064d21b137f 1 Other Other +9d03f943-ee5a-498e-908a-7fd7ff6c3dc5 1 Other Other +9d03feab-ab7d-4665-9fcf-d20489c2e03a 1 Other Other +9d0405fc-42d2-4f59-94fe-c2c59621bcab 1 Other Other +9d045953-2709-4002-a315-203c373cf5b2 1 Other Other +9d046a53-1767-4440-898e-e33b452cc899 1 Other Other +9d04bbb2-0b3a-4904-8c11-5424671a818b 1 Other Other +9d052985-437c-435d-8488-3a302490bef6 1 Other Other +9d054310-9794-45b5-ad90-a5f3eae8efcc 1 Other Other +9d0577ed-338a-4d66-9fdb-a39f663a5b2a 1 \N Other +9d05b13c-3125-43da-81aa-f1097463c13a 1 Other Other +9d05f8c3-9ce3-4486-9e29-576d38201481 1 Other Other +9d061aaf-0a33-48ae-9473-4155503aadaf 1 Other Other +9d066032-9f0e-4ee5-b5ae-fa5a8c80b044 1 Other Other +9d074136-622a-45bd-b51c-fa3283e5b002 1 Other Other +9d075be7-2e9c-4ce4-a54a-90462d4542a0 1 Other Other +9d076849-39a2-42a7-900a-46b1ed759be1 1 Other Other +9d078cdb-025d-4949-8722-08635bd05680 1 Other Other +9d07a31c-ac04-4f80-8467-42bb6c85c1df 1 James Other +9d07b8f5-ff3a-48d5-8a1e-9a0502fbcca4 1 Other Other +9d082dbd-4ffd-4b3f-be09-52a074979926 1 \N Other +9d085839-af20-4111-80f7-5ef7e11cb2cb 1 Other Other +9d08b179-7c70-4ba3-9513-df53eb1a3654 1 Other Other +9d08ca18-09d8-40f9-adbb-c30a19773ebb 1 Other Other +9d08cbac-155e-415e-b117-9a8620cb18e3 1 Other Other +9d090823-efa0-4d1f-9d89-edc9f4d8bead 1 Other Other +9d09203c-7d9a-490f-9737-dcac68ea0f27 1 Other Other +9d09469d-063f-4793-9f5a-b5fe3bc7c4e6 1 Other Other +9d0951f5-fff9-4fd8-a973-77a60abbd1ba 1 Other Other +9d09a596-7dbb-4859-9da8-5626f8bf56ab 1 \N Other +9d09aad1-1ae3-47d3-bb6d-9cba53ec04b1 1 Other Other +9d09ff08-11f3-4b55-a6fd-ea8d93dff4ee 1 \N Other +9d0a60a3-776a-4ae9-b1df-2a53a9f588b7 1 Other Other +9d0a6d38-d340-4b8b-9e6a-0e0f86e5f561 1 Other Other +9d0b1010-be1a-41d8-9be7-a87ee3297075 1 Other Other +9d0b5084-2cad-440b-b225-8ae05918f454 1 James Other +9d0ba5eb-1508-4e95-b654-5d45d78cad36 1 Other Other +9d0bb528-81de-40ca-8084-09d27c310d06 1 Other Other +9d0bee85-d31f-454b-bca4-d536b6f7553c 1 Other Other +9d0c5567-89ae-4196-83d0-90d8a93f042a 1 Other Other +9d0c7b89-3736-4ca1-96a5-e60e005c1f04 1 Other Other +9d0cb46b-f7dc-4de8-befa-7a5770c535f4 1 Other Other +9d0cb87a-7691-4bc0-a88e-e6de1d0fc950 1 Other Other +9d0cf298-335d-4abd-b4b6-4392e1fdb384 1 Other Other +9d0d3a06-c223-4638-89a3-5dc678159fa6 1 James Other +9d0d3f2a-6708-4cc1-b477-43302179509b 1 Other Other +9d0d561b-e4b4-4504-b465-a84e43156c46 1 Other Other +9d0d5ea8-e608-4bdd-aed2-0498f8b9e59f 1 Other Other +9d0db10f-04ab-4f27-9c9f-9e0d7ae91f88 1 Other Other +9d0dcb3b-34f1-4832-98ee-0dccda43d2db 1 Other Other +9d0ddced-2b9a-44ef-b2b8-0cc5b3ebe74d 1 Other Other +9d0de277-5359-4d38-adcf-6a9d9205a31f 1 Other Other +9d0e3641-0e55-42dd-bb80-64851049e2a9 1 Other Other +9d0e8cf7-ecc0-4bea-894f-a214464dd8a9 1 Other Other +9d0ebdd7-67c5-4c9c-a516-b58af41860bb 1 Other Other +9d0ef90e-309c-44b2-af8c-52530aac16e1 1 Other Other +9d0f658a-4cd6-4778-bf9e-449e26696812 1 Other Other +9d0f72f7-f6e5-448b-876f-8f2e782d4b71 1 Other Other +9d0f9256-0c07-40c2-a5f9-a7ad04da7ad9 1 Other Other +9d0f9b26-1225-4ad1-a520-f04a3daefc7f 1 \N Other +9d0fb56e-b467-48fe-8439-f28fde13a421 1 Other Other +9d1015f8-e381-4d5e-9018-c2488277f01c 1 Other Other +9d1026fb-e76d-4324-be4b-4109f14cdaf3 1 Other Other +9d103698-237f-480b-8338-96271b33cf1d 1 Other Other +9d10ab4b-bae7-4c9b-bae4-cbaaaf296b3e 1 Other Other +9d10c1d2-45b3-462d-b913-0b98fc98f7b7 1 James Other +9d10c94c-b8e2-4cec-94e4-ef222825678a 1 Other Other +9d10fdd4-4ada-47bb-bef0-37ed57f9cf25 1 Other Other +9d111366-b089-4994-bc5e-1aa45c9b5836 1 Other Other +9d1136f5-b5d4-4926-81af-d54a8b0f65ab 1 Other Other +9d116c08-a73d-4f3d-9187-a73e082ead12 1 Other Other +9d117660-19b5-43fe-9029-f9b61f00ae7f 1 Other Other +9d119146-d11e-44da-9258-bc8a801074cc 1 Other Other +9d11c203-619a-461f-a69e-fe4ef30c3245 1 Other Other +9d11cb25-be25-489f-a804-a79297d9b1e7 1 Other Other +9d11f104-172e-4bad-a7d3-9567e7723c28 1 Other Other +9d11f521-d1e2-4b99-afff-8fbbb970e11e 1 Other Other +9d1201eb-a1a6-4eb4-a663-70e744ec8c76 1 Other Other +9d120dca-b4ea-4d71-889d-c7fc1dd109c7 1 Other Other +9d122927-2496-4d67-bcc5-b430a288551e 1 Other Other +9d12ae92-3c89-4589-8222-74d8ba4fd72c 1 Other Other +9d12f7f6-72bf-4ae6-b926-f81fc106997d 1 James Other +9d133403-664e-42ef-99b1-6500d7b77c72 1 Other Other +9d133622-8957-4c61-bafa-835a21c7d66b 1 Other Other +9d135ff2-2d06-4e1f-8dfa-00e0c4a51e9f 1 Other Other +9d137662-620c-459c-86cf-95f4ae7fa8fa 1 Other Other +9d13a1d5-b233-4e5f-99cd-712b91101191 1 Other Other +9d13bc19-a96c-4de9-9245-bd08421912bf 1 Other Other +9d13f476-b2cd-40d9-a816-8893ba78a8a5 1 Other Other +9d141a04-a749-4c5f-9be1-6a9d567cc63b 1 Other Other +9d142845-a663-4662-9475-986e4ead0f5f 1 Other Other +9d142ca7-f2f6-4a9e-8907-d7b0ed943000 1 Other Other +9d14420f-2902-4752-9d5a-ab4b31d32367 1 Other Other +9d144747-c99e-4547-967f-5d36b41084c2 1 Other Other +9d145381-11be-44d2-ac89-04267e2c86c6 1 Other Other +9d145b7c-2a9e-4011-9b5e-0fd52e29e19a 1 Other Other +9d146a68-cd6c-44c5-b344-d9c87ff6c49d 1 Other Other +9d147993-1ad0-4e85-bf04-36cb28dff8ab 1 Other Other +9d1489d7-b098-401d-8a66-3e29687b0443 1 Other Other +9d14d1e8-8ab4-4a7e-9b0b-c4ede54a95b8 1 Other Other +9d14d2d6-5880-4584-90b1-c1643eedee71 1 Other Other +9d14e2b8-710f-4c0b-9d6e-de0b604f7727 1 Other Other +9d14fe85-6eeb-404e-831d-f9b23bc6fcbe 1 Other Other +9d151208-8703-462f-8584-90dd9718e88b 1 Other Other +9d1536ca-bbeb-4dbc-99f7-a3c69b20cb80 1 Other Other +9d15866d-d725-4d31-b220-9150b67571f2 1 Other Other +9d15f183-7ce5-4d45-b039-c9db47c2c021 1 Other Other +9d162d51-fdd3-45bd-884b-010dcd7d2ae2 1 Other Other +9d165e81-58d4-468c-bf93-976e97480ab5 1 Other Other +9d166ba6-85f9-42ad-9d2e-666d2c2174b8 1 Other Other +9d1678e3-7a33-443e-8540-bb0b2511902e 1 Other Other +9d168bc5-d7f1-4f60-8ade-3516e116dc45 1 Other Other +9d16b1ef-24ff-4045-a835-8cf0ba45a1aa 1 Other Other +9d16fa48-feb7-4eb1-baa9-21e9289b4d19 1 Other Other +9d17034a-af5c-4943-b91a-3896fa46cd32 1 Other Other +9d1771d7-db5d-44b7-b1b9-2b84e91bc577 1 Other Other +9d179d8a-8353-419f-94e4-04a92b138cca 1 Other Other +9d17e5a8-ab4f-4fea-a2c0-8cea4f684767 1 Other Other +9d17f09e-840d-4328-a0c6-f57488ab29b2 1 Other Other +9d18473c-c725-4f5a-9aa1-be16019ecf74 1 Other Other +9d190174-5535-4b21-a673-0cd32ecc3d52 1 Other Other +9d195288-3f75-4872-a1ea-0ac413741f4b 1 Other Other +9d196545-6a55-47e5-bcd4-68904da79d3d 1 Other Other +9d196a45-3262-4192-9791-19f5c85394ed 1 Other Other +9d19ae01-e2c8-45c3-9946-f32e3bf4fd82 1 Other Other +9d19fda5-d969-4600-a62c-74d015c38b91 1 Other Other +9d1a3500-bfe6-4644-8bdb-74c4dc8b3832 1 \N Other +9d1abb57-a8a8-4c31-a652-a978b400eda0 1 Other Other +9d1ace1a-247e-490a-8721-7e6e45ee7d4a 1 Other Other +9d1aea72-0672-437d-a0fc-dc7d3ffcae28 1 Other Other +9d1b22ee-79cb-4d50-bf9e-f33559741a56 1 Other Other +9d1bb843-e1a4-4139-8984-ddaa6d0abbec 1 Other Other +9d1c0d3e-21ac-4f10-b98d-d1aab38e44c2 1 Other Other +9d1c12fe-ad7b-4e2d-9e7a-e3243e445d5a 1 Other Other +9d1c3fba-cd2e-4324-bdec-d458fb104cdb 1 \N Other +9d1cb6ab-7034-4e69-a581-6297eab24e15 1 Other Other +9d1ce689-119a-4df2-b8e5-1f72a87a4047 1 Other Other +9d1d0a5a-85bf-4489-9411-f36d5d51f3dd 1 Other Other +9d1d0d14-b116-45bd-8a8e-fd633a40a186 1 Other Other +9d1dfd0e-c01b-4e72-8b8e-e805d0e51716 1 Other Other +9d1e04e1-fafa-4413-ade5-01e147449b24 1 Other Other +9d1e144f-a7ba-4abd-a9d8-782b788f5a9f 1 Other Other +9d1e600a-ca00-4b91-a967-07b0d7afa3e2 1 Other Other +9d1e7a61-dcf1-4969-9ec8-6eb2f5ac9aab 1 Other Other +9d1ed325-2d3c-45e9-ab64-42fe58e85571 1 Other Other +9d1ee17c-0cd7-4e34-9d31-e4a40b5edfa5 1 Other Other +9d1f42f9-f72d-4666-8baf-8a2253c55f0e 1 Other Other +9d1f4e49-2c7a-48e6-bdce-b5fa2e34fe68 1 Other Other +9d1fcde8-f9ae-4102-8e9f-d0b935289981 1 Other Other +9d1fcefd-4601-4f78-a321-79d659255aaa 1 Other Other +9d1fd86c-7943-48e3-8b80-0e99623ace38 1 Other Other +9d1fdcdc-9b0e-4a6b-806d-bfe93de8be95 1 Other Other +9d1feb18-e5df-4b56-a2dd-75e7fb145b2d 1 Other Other +9d207305-bb28-4a23-b34b-fc4704d33d65 1 Other Other +9d20ff7a-b3c6-4895-8f08-f2ec95e4b15b 1 \N Other +9d2103d1-f3cb-49f9-9b75-4f3b83fd16cc 1 Other Other +9d211d2c-1c93-4b4b-bb5e-647887b3ae3d 1 Other Other +9d211ebb-8734-4a0e-a3b6-059777a2617d 1 Other Other +9d2128a0-e36a-4ec3-a0bd-7e0d232d67ec 1 Other Other +9d21610c-edf9-4fc2-8169-969a242b81f4 1 Other Other +9d218b40-3a0c-4139-b510-c585cdf5b2b3 1 Other Other +9d218dbe-31e6-4997-8117-91da3e8d1ab7 1 Other Other +9d22049f-cd38-4ca6-84f1-d0b3ea014593 1 Other Other +9d221269-05d7-42c5-995b-1ee68eca6936 1 Other Other +9d223765-bbe0-48aa-ac60-cf0b6da783d2 1 Other Other +9d2269ee-52e9-41e0-b974-41136c36b141 1 Other Other +9d22a2cb-9a61-48a8-95ec-2faa1abc472d 1 Other Other +9d22d058-efd9-4f11-80cc-02a34a0f887e 1 Other Other +9d22fa2e-0409-43d4-bd91-82947a2a3142 1 Other Other +9d23701e-b92c-4fbe-ad7b-b16088dc2022 1 Other Other +9d23a5bd-f908-4a68-bf05-8feaf00b240b 1 Other Other +9d23ceb8-1340-4342-8125-c9c812f7a331 1 Other Other +9d23f14b-ce8d-4f0b-83d0-cf5aa8e19a56 1 Other Other +9d24111d-acc8-4e69-8e6e-f7d64ba92893 1 Other Other +9d242aec-d87e-405c-9d6f-9f0dfcaa73dc 1 Other Other +9d2462c6-339e-40bd-87f3-e2799583e56c 1 Other Other +9d254830-890b-4a10-8d55-a7a97aa826f6 1 Other Other +9d2558a2-8817-4a1c-b9b5-2f8c2eec46c9 1 Other Other +9d257bc4-f379-4faf-8676-869f7d77540b 1 Other Other +9d25dd0d-82d7-4d57-b56b-8511aed5985f 1 Other Other +9d2607b3-c5e0-4e75-b250-3d98fb46a428 1 Other Other +9d26c6d9-2b53-403a-b167-8030b99750fc 1 Other Other +9d26f731-ffed-4b41-8468-991d200be699 1 Other Other +9d271119-5761-4ab7-a4b0-ea7f2a389cb8 1 Other Other +9d271798-2d00-4bbb-9f9f-cb7f4dac52c2 1 Other Other +9d27351a-22f3-4be7-aec4-03d3a1743a98 1 Other Other +9d276fc6-337a-4870-8b56-f682d787ea15 1 Other Other +9d27779f-21b0-4428-8e89-d7c74388e4d8 1 Other Other +9d277988-9c96-4a4d-82cf-8c8628738ec1 1 Other Other +9d27e43e-54d8-49ad-83a4-39b67210293c 1 Other Other +9d27f0f5-f612-4f1f-aec4-932469347dd9 1 Other Other +9d282500-77a8-412f-9edd-813bf8ce5859 1 Other Other +9d284c9f-c8bd-45e9-bd76-055465bb4cc4 1 Other Other +9d287e37-92d0-4e12-baf7-ced438e2aeac 1 Other Other +9d2896e0-e287-41e1-ba7c-d8337a830efc 1 Other Other +9d2924c9-a546-4699-b688-8be0153ebcc4 1 Other Other +9d29641f-3378-40ae-a825-0adcf0fe26d5 1 Other Other +9d297353-ee9b-418e-8d5c-adff0dddb81f 1 Other Other +9d2a0e28-1ade-4465-9abd-8680a69720a2 1 Other Other +9d2a2277-bea9-4fd6-a797-50274ea6eb57 1 Other Other +9d2aa99b-237d-45cd-b4e5-55e87e5cfa85 1 Other Other +9d2ab8d2-7134-4bdb-9718-cb4dc87101c0 1 Other Other +9d2abb88-375b-4467-a151-abe3dda7cb1e 1 Other Other +9d2b7416-a584-451f-8203-3bd93dbe04ee 1 Other Other +9d2b9be5-346c-4e6f-a86f-c11ad6657e9f 1 Other Other +9d2be48c-1878-45dc-9ef5-c84ea31750be 1 Other Other +9d2bee6a-76a6-4eec-860c-09113bc5d948 1 Other Other +9d2bf796-f7c9-4d39-b02a-1a6384343785 1 Other Other +9d2c345f-f7fa-4422-bb0e-dddf0b399396 1 Other Other +9d2c39bf-a604-4b7b-b3fc-732b78db0cab 1 Other Other +9d2c3e5c-a69c-4260-a0c7-db2f9d6aae81 1 \N Other +9d2c4b5c-8460-46dd-b7b1-9eba65dbfcbd 1 Other Other +9d2c9ec2-f24f-4a52-8629-4861feb534f2 1 Other Other +9d2cb200-1e27-4438-8418-4582df338eea 1 James Other +9d2ce96d-d318-4318-a2a9-d8fd01229871 1 Other Other +9d2cfefd-bef3-46a5-9d54-02cb39f8b1fb 1 Other Other +9d2d2026-f485-4f13-b2c5-a037a30a12e1 1 Other Other +9d2dfcb3-1c28-43d3-992d-cefb4699ead0 1 Other Other +9d2e5424-ac7b-4ae3-874d-abf860fbae9d 1 Other Other +9d2e64b4-efee-41c7-91e4-72631cf88a80 1 Other Other +9d2e8398-ff7b-4154-9a78-e5b37cea772e 1 \N Other +9d2ea8c2-1cde-42cc-97be-32ba453f37e5 1 Other Other +9d2eb0b8-4494-4b91-8cae-55028faea04b 1 Other Other +9d2ec666-89fe-4f47-9069-0f1bcb9b536a 1 Other Other +9d2efc37-ae5f-4456-8d9a-c7c148cad134 1 Other Other +9d2f35f6-f1c0-4685-8e38-f17681d43d91 1 Other Other +9d2f94bf-3162-4c56-9759-5b19d15548f1 1 Other Other +9d2fd3d0-4207-4b25-a36f-d649c93be134 1 Other Other +9d2fe4b6-f3b1-4eeb-9697-de3280dec74a 1 Other Other +9d30c1bf-20a4-47fb-b5d2-f357c12ad11b 1 Other Other +9d30df71-ef7d-45ea-b17b-7dedceb66f58 1 Other Other +9d30e473-7744-4a5e-9530-d16bb8b013a5 1 Other Other +9d310619-36f7-49e3-9f68-de1e4105930f 1 Other Other +9d32000a-4b30-4fce-a65b-a5bf175e980f 1 Other Other +9d32493c-25e5-49f7-9019-036bb2f0af60 1 Other Other +9d326e4a-c8de-487f-830f-57fc0d3df4f2 1 Other Other +9d3281f0-8d66-4e6b-bd82-576821c863b5 1 Other Other +9d32919a-c59d-49d8-8bdb-7645a66d77ce 1 Other Other +9d3299bb-e263-4751-b5f5-3be68df84d74 1 Other Other +9d32a984-9fd0-47dc-98d6-6fe2200277f1 1 Other Other +9d32b97c-476e-4cfc-8c94-ef5e6eab0226 1 \N Other +9d32eb96-756d-49ba-bfaf-6cf8a11c0d52 1 Other Other +9d330d77-7360-4e56-82ae-bc78287540e5 1 Other Other +9d335e35-1e19-4a76-8130-a7efa124e31c 1 Other Other +9d339f86-25f6-4d84-aaa9-c214860e05c1 1 Other Other +9d33c9f4-18eb-4578-8250-59614012990d 1 Other Other +9d33ce3c-0f0a-450a-9813-6c59cc723ddd 1 Other Other +9d33e12a-a163-4abf-b10d-63b8d092beb2 1 Other Other +9d33e649-cda8-431e-8918-9667019f990b 1 Other Other +9d33efef-d2a9-4d95-b537-f24bb2dfd163 1 Other Other +9d340487-c1c2-4847-b9d4-fd07ac7678f3 1 Other Other +9d3428ff-e31e-4176-aca4-02ab459a55e4 1 Other Other +9d342b69-9b32-4c23-9af0-2b02cbad8339 1 Other Other +9d344221-157d-430d-8f06-0b8228634fbc 1 Other Other +9d34562e-e719-44b9-899c-cb198282cca5 1 Other Other +9d348d06-8b15-4db0-978b-3449f7caacbe 1 Other Other +9d349fa0-afc6-4fd7-b359-25aab1e9469b 1 \N Other +9d34b9e1-b329-4c5d-a194-7000365b8a9c 1 Other Other +9d350520-b655-475d-96f5-c2372a011a12 1 Other Other +9d3542fa-b23c-4f35-98f1-652897b83f03 1 \N Other +9d35779c-2ad8-4775-afbb-aae30f6e6eb4 1 Other Other +9d357f25-a537-468d-a35f-fa4448d48961 1 Other Other +9d3589c7-7106-4ab2-9238-adeccf0ced23 1 Other Other +9d35dcb5-ae56-489f-a677-8e1a4c69e56d 1 Other Other +9d35f815-069e-4a50-840c-aea85eee3895 1 Other Other +9d36113e-b740-4956-b922-6594007f3bdf 1 Other Other +9d363642-5026-46a9-947e-26b972b3c077 1 Other Other +9d3647f6-99de-4d6d-b5fc-ebdc7a17c67f 1 Other Other +9d36b68c-0ece-43fb-92b7-e424ca4fabcf 1 Other Other +9d36ca62-f17a-4db1-bed6-526f2b6eda1a 1 Other Other +9d37282c-1589-4a3b-857a-2356a7d8fb7d 1 Other Other +9d374c77-f3db-4e01-8bfd-e38bf821afbc 1 Other Other +9d37b8ac-7480-483d-a53a-4087d6f7aea1 1 Other Other +9d37ea2a-4b7e-4b7b-be49-2ecefb4c145a 1 Other Other +9d37f1de-0d08-4834-b4e7-cb7080acfe1b 1 James Other +9d381a5d-b539-43fe-8d67-25fb276f195f 1 Other Other +9d382767-87a4-426e-a774-0621f77481ed 1 Other Other +9d387dcb-3812-40e8-ae50-4b07cf52e0eb 1 Other Other +9d38bd61-6345-4451-bb10-7262c254906a 1 Other Other +9d38df85-0d3f-4db4-a510-d3983d520756 1 Other Other +9d398fe0-1126-43c3-bc58-56bb75687726 1 Other Other +9d3993c4-34d8-4909-a1a0-eb2c33e84196 1 Other Other +9d39eba1-13f4-4214-8687-2fd9389c8a19 1 Other Other +9d39f703-a4b5-41d0-a861-eef36d20708a 1 Other Other +9d3a3886-28d4-4d16-9803-c49fe84d8217 1 Other Other +9d3a5c92-a853-44ec-9e0f-4529dfd9443a 1 Other Other +9d3a671d-522f-4e83-9c58-7f076cb65db0 1 Other Other +9d3a9d8b-eabe-473f-92e8-7af10c92a00d 1 Other Other +9d3aaea6-423e-42d6-b512-84c2ee1bca6e 1 Other Other +9d3acc19-5540-4b8a-9faa-c3546a1bf27b 1 Other Other +9d3ad1e8-1f6a-4960-80d9-3afa28998a3b 1 Other Other +9d3ae5f9-d06d-450a-a5e3-622c8ee274d9 1 Other Other +9d3af36a-920e-4d87-a046-7d94f8a52f93 1 Other Other +9d3b974f-32ab-4a39-8d41-c63a05213767 1 Other Other +9d3ba630-ba73-4a72-9979-a948c44d6865 1 Other Other +9d3bde01-7d7d-4526-a899-3f372c3a4dc7 1 Other Other +9d3c7f47-7aac-4c59-9f6b-dcca8185beac 1 Other Other +9d3c8d01-0586-4baa-95fb-23691ce84b5f 1 Other Other +9d3cc838-8de9-48c6-a851-309242873b15 1 Other Other +9d3ce65d-0c76-43b3-b207-2aaafbc0bd1b 1 Other Other +9d3cfebd-31dd-45a2-837e-2d871f6f8a65 1 Other Other +9d3d24c6-2a27-4624-bbdb-18796962a18e 1 \N Other +9d3d6146-b58b-41e1-8570-d9afd559b209 1 Other Other +9d3d82b7-e25f-495b-9f66-b85793008c73 1 Other Other +9d3df199-9d1f-4f3c-a5ae-91814bb68667 1 Other Other +9d3df9a5-4f9e-4b2a-9647-1c724a00696e 1 Other Other +9d3e3443-d9de-4ea5-9fcc-c9aad9371d1a 1 Other Other +9d3e4cc5-dbd2-4a43-8f63-122786421d25 1 \N Other +9d3e670d-18be-4cd0-ba25-ee6c73ed3d06 1 Other Other +9d3e9a09-182c-49c9-bb68-5a7fa92d14a4 1 Other Other +9d3e9f0d-6ec4-4df1-b930-787611d8a482 1 \N Other +9d3f0cb0-ca1a-448b-92c2-d0d961bc6eaf 1 Other Other +9d3f3a9c-e064-4bbe-bbd1-06a10c537cba 1 Other Other +9d3f5ce6-7904-41a3-ba9b-7978634405ee 1 \N Other +9d3f6931-f450-4092-8cd6-554d83d4336a 1 Other Other +9d404d4c-13ae-400b-9a68-49236f399797 1 Other Other +9d405cbf-ada1-4e16-a108-fcfa9580a544 1 Other Other +9d407ecb-3e3c-4db3-9b0e-9872af48369d 1 Other Other +9d4094ff-ff5f-4e15-80bc-e252eb647ea4 1 Other Other +9d40fd8e-9b1f-4c1a-9141-deec89281157 1 Other Other +9d41271e-454a-45df-8c86-234544aed865 1 Other Other +9d41337b-8778-4da7-8300-77d1f0cf8d89 1 Other Other +9d41655f-428a-4333-b89e-09e7c2d9f746 1 Other Other +9d4191b1-0a66-4c42-babf-6f0f7781cc36 1 Other Other +9d41bbc2-235e-4686-bb5d-06dc1d25c459 1 Other Other +9d4243e5-4b08-4a0b-8c74-063c3cc92bb3 1 Other Other +9d428c6d-2bf7-4b08-ac19-517b99379d8a 1 Other Other +9d42eec7-7830-4ae0-845f-972c04d7ff46 1 Other Other +9d431d49-0115-442f-a51a-f9bf2b51ec65 1 Other Other +9d434642-acf5-4032-9a5e-6aa0e10e7008 1 Other Other +9d438703-a88d-4ba9-ab29-32af2a2426fa 1 Other Other +9d43a4a2-97ab-4797-8e32-fa61ed2892f0 1 Other Other +9d43b9c2-878d-444a-98a9-57e82296a0c0 1 Other Other +9d43d4e0-9d37-4e80-a2d1-e0e26199042b 1 Other Other +9d440464-de01-4bbb-ae0d-cf4bee09e920 1 Other Other +9d44207f-ad15-4488-9f9f-4c299fcf7d30 1 Other Other +9d442537-82be-4fce-b0e4-b356f25615a9 1 Other Other +9d445182-8389-41bc-95e0-0743e29f5f37 1 Other Other +9d44a23a-4c4c-4cf8-8cf6-bb3e184efb01 1 Other Other +9d44a6b9-8722-4a61-a0c0-55351a659863 1 Other Other +9d451be2-7c5a-4821-9196-7a98c935336d 1 Other Other +9d453dbd-af80-47aa-9c62-59034e27b181 1 Other Other +9d45b445-9300-49ac-a467-c1b7123b515b 1 Other Other +9d45b6f7-add5-46c1-9450-9b7c9c886ee4 1 Other Other +9d45d356-ca20-44f9-931f-82b49b84aa96 1 James Other +9d462410-2824-4a67-b1c1-1103ca78e182 1 Other Other +9d462844-5611-4f03-90be-a2f33d5d6feb 1 Other Other +9d464fff-abe0-404b-9d2f-5465081f9bf3 1 Other Other +9d467eb2-0614-42ff-87f0-c05a581e1250 1 Other Other +9d469bdc-014a-4271-b04a-8d3d55e00336 1 Other Other +9d470466-b0b3-411e-94c9-c3be56edd799 1 Other Other +9d4723c5-cd86-40d7-aee9-121bf3fd6e0e 1 Other Other +9d4752ab-fbe1-4e85-bfc3-d8e70a268486 1 Other Other +9d47570c-317b-45d2-9713-8487424d007b 1 Other Other +9d478e1a-c769-4990-8ecb-af07f31cf45f 1 James Other +9d47cf55-8633-4cce-8ee7-0e634b31947a 1 Other Other +9d47e0b6-3b36-4406-bb2d-d8e613c62b06 1 Other Other +9d480d99-35a4-45ba-96f3-0aea5f8af81f 1 Other Other +9d4859b1-dec6-4283-bfb6-c7df3d1bd2fa 1 Other Other +9d48673e-5f77-4cc6-8fcd-fcc6c5554b37 1 James Other +9d4894a0-c08f-41fe-9db0-c6f0470558ba 1 Other Other +9d48a50d-54a6-498a-9836-b4b2d7110c48 1 Other Other +9d48a5d2-371b-4c36-bbea-6819b1ab07db 1 Other Other +9d492b88-e4e4-4438-b611-89073749b75c 1 Other Other +9d4995b3-8e48-41e0-8ca2-488f3e48eacf 1 Other Other +9d49b209-fe9a-4dfa-af2a-c426ba064169 1 Other Other +9d49eeea-c0e2-4536-9522-50d5129f3c89 1 Other Other +9d4a1a70-79ee-453e-8b58-2f9ac6a4fb9f 1 Other Other +9d4a4aa4-cdb7-40aa-800f-07f6022153f8 1 Other Other +9d4a5242-b87a-45b2-80a4-167ad24007f5 1 Other Other +9d4a8502-bc3a-42d3-8a7a-dcf5d0476111 1 Other Other +9d4acdf4-10e3-4430-bd92-7e836b56599d 1 Other Other +9d4b3681-ca76-4b46-af0c-580111074347 1 Other Other +9d4b4269-9901-4931-92c9-f28a81345dd4 1 Other Other +9d4b580e-766b-4cb1-aa37-7c1c936d761b 1 Other Other +9d4b58a2-38f4-4381-aab0-8be6ad392a95 1 Other Other +9d4b7225-72f0-48d8-af50-2318bb1a7bf6 1 Other Other +9d4b8d97-80d9-4438-8c86-cd4283a4ffab 1 Other Other +9d4b915c-9232-4de4-a507-0fa30ed1183e 1 Other Other +9d4bd3b3-f98a-4d51-832d-b7ec777f437e 1 Other Other +9d4bdb7c-8342-4654-bb43-384bbc22936e 1 Other Other +9d4be744-5c23-4027-b498-773530c82693 1 Other Other +9d4bf4a0-1758-11e8-ae93-fa163e8624cc 1 \N Other +9d4bf4bb-63f9-4c7d-b9f3-a25a6e7a36e0 1 Other Other +9d4c4580-e17d-46dc-8d34-93e8f1a1886f 1 James Other +9d4c47e5-f877-4b31-bc0e-4852c6a9b2c5 1 \N Other +9d4c5b15-6134-40d8-9b87-d8f7a24629da 1 Other Other +9d4c8ec5-6a18-4d7d-b503-d0d0e8add66d 1 Other Other +9d4d245d-02be-4ba4-bdb1-0a6a9191ff0e 1 Other Other +9d4d2dcd-b84b-49ca-81ea-5ee204eccbe4 1 Other Other +9d4d4089-3ccc-44eb-9c1f-6a671ce3e2c6 1 Other Other +9d4d50e5-e23d-469e-8dc3-1af45a7bd073 1 Other Other +9d4d6303-f44a-4a48-a7ae-9cd04fd63143 1 Other Other +9d4d76c3-efc3-4702-a226-44f04f28447c 1 Other Other +9d4db757-ed9c-4943-abeb-b6949a296e99 1 Other Other +9d4e8d2b-7e43-4731-9e8c-98bdbf9b9d2e 1 Other Other +9d4e8eb2-87aa-4fed-977b-d17f31c5e2c0 1 Other Other +9d4fe24e-0668-463e-810f-560fb5ea5144 1 Other Other +9d4ffb7d-7989-49c8-aa37-e701ffa642f4 1 Other Other +9d5070a4-8c85-4efd-9c03-52af35bcd98c 1 Other Other +9d507a32-18b0-41a2-a0ee-79ab96dd5792 1 Other Other +9d508765-27f7-4648-87f6-794b45a984a4 1 Other Other +9d50b97d-07b5-4130-8f29-ce0953e4e6fa 1 Other Other +9d50ebbc-8389-48a6-9608-7f91ba4692c0 1 Other Other +9d511ad6-e0ac-4853-a373-c269bcfadcbf 1 Other Other +9d511b43-fcbb-444a-900a-79e9df2fb8e4 1 Other Other +9d512d2a-58a3-44b2-80c7-8cd2103dae38 1 Other Other +9d519090-f0b3-418b-b2c5-32f505bc8de0 1 Other Other +9d51958e-0c6c-44b9-9e85-a0a950a93ddd 1 Other Other +9d525462-3793-4b41-aace-466108848ada 1 Other Other +9d5280d2-79d2-4853-a41b-35aabff4aa35 1 Other Other +9d52dd8b-a3aa-4067-b761-4f343caddba0 1 Other Other +9d531adf-2255-4da9-9d0b-918b3394a3b7 1 Other Other +9d538255-fa2d-4fe1-b497-720e0c1f7bc6 1 Other Other +9d53e0eb-1594-423c-a9ae-3e89e8790463 1 Other Other +9d53eb17-35e3-4100-a607-e3e520f1ce9a 1 Other Other +9d53fcc9-b0fd-43aa-b05f-01866a689caf 1 Other Other +9d54796c-dd93-4614-b16d-ac7e62b3de59 1 Other Other +9d5484f7-6686-4dfc-960f-d70f9e9a8820 1 Other Other +9d549dec-b598-47b9-a7ef-f5b941d55c47 1 Other Other +9d54c861-282d-46b9-a3db-279f9a7e0643 1 Other Other +9d54e0c6-931f-480b-876b-88a7c37bc627 1 Other Other +9d54eddf-99af-40db-aad1-5ca55506edfe 1 Other Other +9d551216-903b-46e1-9d92-21926d49087c 1 Other Other +9d55a05c-45e6-4727-87b9-af0034fa0eec 1 Other Other +9d56065c-f801-4a01-a93a-285ba77d9b76 1 Other Other +9d56192a-52bb-4664-905c-c1be160f47ae 1 Other Other +9d564084-0e00-4468-b02e-6e75fdcfac7e 1 Other Other +9d567fa8-e7da-497e-8f71-89293beaf021 1 Other Other +9d569262-d7bb-40df-9b6f-31a40a8f3c9e 1 Other Other +9d56a726-77ec-4e21-8fbc-76b2f1f5f714 1 Other Other +9d56ac46-5a54-4e3e-ae10-64fb410c8bac 1 Other Other +9d56df18-3bee-40ac-99c8-5df2c58017fc 1 Other Other +9d56fb41-4873-4050-b48a-a868955a3f01 1 Other Other +9d571be9-16ef-4bc7-b7b3-261c143fcd89 1 Other Other +9d572ab6-cdb8-4bae-96ad-fd4fe76a3865 1 Other Other +9d57365e-3cb2-4442-8ced-9ea0178058c9 1 Other Other +9d575437-b67f-4688-8af6-a7aecff503b4 1 Other Other +9d57a9ee-565c-43c6-8cf2-daf90ccecf21 1 James Other +9d57d607-e7ae-4025-a685-ba01f262fc5a 1 Other Other +9d57e4ce-0979-47a2-afcb-a0081237829d 1 Other Other +9d586771-cdef-4bec-8e15-f03b624aabac 1 Other Other +9d58d35a-6796-43ad-bde3-20cf870e4baf 1 Other Other +9d58d8b7-f0fa-44a2-88d3-93aa1d998d21 1 Other Other +9d5904db-5011-40fe-910c-6f53c7570a95 1 Other Other +9d5965c3-80c1-4835-ad0e-14e49aa3498a 1 Other Other +9d5989ca-0bef-4ea5-81ec-353c78cf5c0d 1 Other Other +9d598e7e-c3d2-49e9-b0d2-11ae5cb4147c 1 Other Other +9d59a2be-4b0a-43e7-b776-906990df0725 1 Other Other +9d59e619-e3b8-4f33-b68f-6ac29199a2a5 1 James Other +9d5a057e-571a-4800-945b-128d34320301 1 Other Other +9d5a1f19-143b-414a-b93f-f0c7e424b701 1 \N Other +9d5a231b-6f7a-4773-ab7c-92c5588c4181 1 Other Other +9d5ad165-26d4-4b72-b932-5dfac6def51f 1 Other Other +9d5ae662-a3f7-4ec3-b96c-989e1b2458a7 1 Other Other +9d5b1a44-07e3-4dcb-8e37-53b1bf7a5d15 1 Other Other +9d5b5cb3-e97a-4f35-8a4b-09307420cae2 1 Other Other +9d5b9d97-2b41-44bd-bfb8-9524587c65e1 1 Other Other +9d5bbbf9-2c68-40f7-9236-176b31ee536e 1 James Other +9d5bc7ba-9e88-456c-9e74-d399cd943f20 1 \N Other +9d5bd551-fdd1-4c0a-b9c5-7ac57adb4eee 1 Other Other +9d5c0972-d2ed-4a73-8fde-59978837fec7 1 Other Other +9d5c5b9b-e30b-4c4d-9925-b462fae72299 1 \N Other +9d5c8f49-e8ea-43e2-b0e0-38b387788838 1 Other Other +9d5c9674-62c3-42ba-94c0-4b6266716667 1 Other Other +9d5cbd8e-16d6-495a-ba60-fe80c10a1469 1 Other Other +9d5ccba6-8c0b-4a32-b6fe-a9d3b53eb9fb 1 Other Other +9d5cd7b2-aa89-4fe4-acd0-dc7a33ba1813 1 Other Other +9d5ce0c4-825b-4b30-b915-ea837a360f8f 1 Other Other +9d5d1027-a49e-4595-b65a-e38322cbdbb6 1 Other Other +9d5d2394-9e35-4f75-ac34-6680c2f6e03c 1 Other Other +9d5d3db1-dfc2-42c1-85c3-246a87a2afe6 1 Other Other +9d5d9e5a-befe-4258-8bf9-e25d08f77ffb 1 Other Other +9d5da10b-5f4d-41aa-b42d-db3ff9af2c92 1 Other Other +9d5dafbd-f7e4-498b-b2a0-1dac1eb4ae71 1 \N Other +9d5dc766-0705-4e4d-8193-a8ad9c967ec4 1 Other Other +9d5e6116-7847-4ea8-bfdc-d212e716e299 1 Other Other +9d5e8a17-3d7f-484b-8dfd-496a8f8a2b56 1 Other Other +9d5f3344-33d3-404a-baf6-66872f32ac62 1 Other Other +9d5f4fac-e945-415e-a06d-990564678bea 1 Other Other +9d5f697f-1a07-405c-b0e3-bef06d1bde00 1 Other Other +9d5faf07-f37e-4829-baeb-efe4185df24b 1 Other Other +9d5fcd01-e171-453b-b89e-0526d1bef8fa 1 James Other +9d5ffdcf-11bd-4cfd-80c4-0aeb04835fc7 1 Other Other +9d600d38-d648-4298-aa2f-73139418f396 1 Other Other +9d6032b4-e210-4aaa-99be-1f05813fa980 1 Other Other +9d6038c8-994e-4f58-bc5b-4dc72a8bcd8a 1 Other Other +9d60ee9c-d727-421d-b1e9-99dc0b5c240e 1 Other Other +9d60f816-4627-4aa0-a086-40517ef163c0 1 Other Other +9d60fe74-76fd-4fff-8662-3b2b34c0f713 1 Other Other +9d6119ff-e8af-4810-861b-3af95f825d88 1 Other Other +9d619181-eaeb-4e55-9c54-f393aa1369e7 1 Other Other +9d621ab1-f02f-4dba-ba02-0eaaff3e9321 1 Other Other +9d622ee9-519c-477c-bbcd-d6beedf30993 1 Other Other +9d6276b6-cfa7-4f43-9610-653cee360f98 1 Other Other +9d629404-4f45-4a9e-a9be-c729c6ea20d7 1 Other Other +9d62b57a-e20c-4b9a-9f75-a39b55b9dd19 1 Other Other +9d62bcc7-1f1d-446a-9fc1-48b903315035 1 Other Other +9d62def3-2bc9-466f-938a-4b02cb14086b 1 Other Other +9d62fe59-1bf2-4c5e-b956-b321a746741d 1 Other Other +9d63095f-b350-4abc-bbcd-1d81680d1137 1 Other Other +9d633252-d4a2-4e6a-9d48-85cd251aba43 1 \N Other +9d636759-d379-4bd2-b738-30d5461e9716 1 Other Other +9d639587-719c-44c8-b46a-f8d4b4994ae0 1 Other Other +9d63b976-a668-4c9a-ad9d-5bcca0cc43f9 1 Other Other +9d63d62a-d5b6-4905-8807-b0adf44ef0ef 1 Other Other +9d642a46-74db-4687-afbc-c4e46facd122 1 Other Other +9d647d2d-3ebc-4347-9068-fa709ef736f9 1 Other Other +9d6488a4-5905-4264-93c0-e3f42ac868af 1 Other Other +9d6496c4-76f5-444f-8c3d-5e160655e467 1 Other Other +9d649e4d-8710-449f-84a1-b65b0e009f0e 1 Other Other +9d64c5cb-8624-437e-9ac4-2438bfa2c819 1 Other Other +9d6541ae-e3df-4539-9d3f-804ebb3064a8 1 Other Other +9d663672-699b-4496-b202-192eb4c7a7c4 1 Other Other +9d665a5f-2850-40d0-8570-245dd7c9fa0b 1 Other Other +9d667d1b-cc23-46a3-afa2-95ee8291b78d 1 Other Other +9d66854a-28b8-476b-8725-f32491df5ffa 1 Other Other +9d66c4c6-381f-497f-aa56-fd73b99cff6a 1 Other Other +9d66c95c-20a2-4e87-b1b0-92c73821f362 1 Other Other +9d66ee14-5345-49b8-9cfb-e5788cc78d73 1 Other Other +9d66f254-8745-489d-98cc-66ef10235fdd 1 Other Other +9d66f40f-7abf-4b46-bc7b-c883334e888f 1 Other Other +9d6753f7-91f8-40a5-8f90-12b3ee91214b 1 Other Other +9d67965f-e4d7-4c2e-af9f-184f3421fd08 1 Other Other +9d67a9f7-b828-4d02-9919-28aaf6a9f24d 1 Other Other +9d67b1d8-9d0a-4abd-8906-cae050dad46e 1 Other Other +9d67c3b1-bf73-4537-b272-821051eeedac 1 Other Other +9d67d919-e0fb-4fcc-bae1-e0022b7781e2 1 Other Other +9d67f65f-e6b9-4fcc-ade7-42c2d47013ee 1 Other Other +9d67fe6e-784d-432c-abbb-466eb8cfaaa6 1 Other Other +9d6849db-6e83-4db4-8d3f-fb6077a9470d 1 Other Other +9d685a84-72b4-4b57-84bf-f6c6683fabba 1 Other Other +9d686d9e-77ac-4f74-987c-b2bc39169116 1 Other Other +9d686ff0-c38f-4d16-908b-3a45e8adb9f0 1 Other Other +9d68abe1-a6c5-4ff5-8cb5-37ea103e952f 1 Other Other +9d699c10-4968-40dd-851c-5661354dc071 1 Other Other +9d69b456-e0e1-4f9a-bfc6-420ba11665a0 1 Other Other +9d6a18d9-770a-47c4-b139-e78fd0c77201 1 Other Other +9d6a8459-73a3-4ada-860f-d4601b270c21 1 Other Other +9d6a96cf-91bc-42f9-82a3-5202d2c532ef 1 James Other +9d6ad11d-e503-47cb-96df-3f6ca7c0899a 1 Other Other +9d6ad9ea-69a4-42e8-988a-c70ae2b452dc 1 Other Other +9d6adf65-fcf5-4efe-865f-77cd8c26a5ce 1 Other Other +9d6ae82f-947d-443e-8c1b-c79802b3f4bb 1 Other Other +9d6b2cfa-345b-47a8-b0d3-982cddab2ca5 1 Other Other +9d6b4389-c43a-4d85-baf6-f2055058f489 1 Other Other +9d6b498a-d45f-43ad-b3d0-fa0f432a7e6e 1 Other Other +9d6b8ba5-7f96-4413-bc65-73d5ff8cee21 1 Other Other +9d6ba2a0-4c0b-4bf6-a966-1cccf5b13be7 1 Other Other +9d6bc1c7-820c-42a6-8e56-dce601b64937 1 Other Other +9d6c1832-1b0a-4ccf-826e-f7e4e379b854 1 Other Other +9d6c40f7-df89-4388-b3b1-3dc9184f8e52 1 Other Other +9d6cca76-0612-4bad-9700-b88372427593 1 Other Other +9d6cdd87-0089-49df-a760-79c7b1f4c560 1 Other Other +9d6cf48f-cdf0-455f-aed6-597c04599adb 1 Other Other +9d6d7c99-7162-484f-bfb3-1c1f051f3fab 1 Other Other +9d6d8639-312a-4cff-916a-49fc6fe5b603 1 Other Other +9d6dc9cb-2a28-409c-9d40-6350bab71e4b 1 Other Other +9d6df220-90cd-4594-b469-f14ab0e1d35b 1 Other Other +9d6df88b-ec91-4b7c-9a10-ccc3f6dcf6b5 1 Other Other +9d6e0fa4-a574-4037-82fa-cc1c4ac867ea 1 Other Other +9d6e3490-b6b4-4457-933f-4a4a0652f6b9 1 Other Other +9d6e4f8d-a037-440b-a215-7624585d409d 1 Other Other +9d6e7a74-2f9b-40a6-91b1-040a7d68e2b6 1 Other Other +9d6ea5eb-d0b5-4f2d-bf91-cc4ac7f7bc06 1 Other Other +9d6eb9c8-99a5-4e99-a9e0-a63ee8064d69 1 Other Other +9d6ebb38-23b6-4018-ae70-8d390314bec5 1 Other Other +9d6eca29-7362-4cb3-9f4b-9e6989a469bd 1 Other Other +9d6f1453-240c-4100-b83f-3c63d58937dd 1 Other Other +9d6f2ce4-6346-4a09-91da-ca4a69722851 1 Other Other +9d6f4cd9-de95-4a40-bcf8-82bb4c260b2e 1 Other Other +9d6f4d68-f508-417e-8c3b-ecd7f0f74b5e 1 Other Other +9d6f52cf-1da5-4e47-9f99-7e328d15de95 1 Other Other +9d6f80e1-f1a5-4612-81b9-b37722d78aea 1 Other Other +9d6fd28b-955c-4a22-9934-9853a81a8d2b 1 Other Other +9d6fd509-b5ba-49a9-b68e-82fd10842ad4 1 Other Other +9d7013ef-f80b-4282-8480-5fdc1421a14b 1 Other Other +9d701d80-5fbf-44ca-ac3b-b8b51cf0fe75 1 Other Other +9d70a641-d97a-4afb-97b9-dcdf75006159 1 Other Other +9d70a837-0716-4d2f-a4e7-f44b31b049f6 1 Other Other +9d70cba9-c56a-4d03-a6e5-2cc6bed94384 1 Other Other +9d711303-8dc0-4046-82b8-d81ad44123b4 1 Other Other +9d715b0d-7cb4-4601-a76a-959e1265c1ac 1 Other Other +9d7187b3-b769-402e-b5fb-6f882a89864d 1 Other Other +9d720436-9114-460b-b1f7-9e1df7a83845 1 Other Other +9d721331-2b27-49d8-9833-f755d7f4d59b 1 Other Other +9d7238e6-eec1-4e02-8061-ca3fe1aab336 1 Other Other +9d72d005-8faa-4400-91b3-2463fc01b39e 1 Other Other +9d7364d5-2343-4ded-8063-99b1a86a159b 1 Other Other +9d73864d-be6a-4e3a-b4b7-bae21cf09592 1 Other Other +9d73a61f-bc07-409b-932f-879d04fe9e2e 1 Other Other +9d73ac94-0bc7-40da-a0b9-ca351f65ad2f 1 Other Other +9d73b37c-4abf-4e4a-b1ba-84df357e0487 1 Other Other +9d7417cf-ac12-419a-a5b3-1e6da0b4918f 1 Other Other +9d741e02-ecd2-4366-bb05-f8b861e210b8 1 Other Other +9d744f70-1f3b-4c8a-a664-fa97f099331f 1 Other Other +9d74e9a5-1cc8-4be9-84b8-5ec37ebcd3a0 1 Other Other +9d7583eb-c396-4795-a236-26234fb495fe 1 Other Other +9d75d036-60e7-42bb-a69e-3ce3d830db02 1 Other Other +9d75d3bd-a83d-48bb-a476-ea25fad2a076 1 Other Other +9d76d938-abee-470c-8fe6-48a35c1ea642 1 Other Other +9d771ee4-5779-400f-9d91-3ad024e7d080 1 Other Other +9d77429f-8bec-4797-8153-bba5d600c545 1 Other Other +9d77ae56-7bde-4769-93b6-1f3f1c535266 1 Other Other +9d77c1f9-d1ac-44c9-ab88-e9ef77e7e8b5 1 Other Other +9d77c617-1592-458c-a193-7e0f4739b502 1 Other Other +9d77f250-3a86-4220-aed9-3df5319b25d7 1 Other Other +9d77f48a-d6ea-4ac2-81e3-9b9fd94133b1 1 Other Other +9d78355c-5349-436a-8a73-5249474b15d6 1 Other Other +9d786609-b9a1-41aa-bc69-2dfee18f8704 1 Other Other +9d788d9c-1331-464c-8378-f36b1906129a 1 Other Other +9d788fbc-d6fc-457c-8aee-04e4f30b4042 1 Other Other +9d789c54-2e9b-449e-978c-1a451921ef43 1 Other Other +9d78b281-4b09-4035-9880-cbe356605ada 1 Other Other +9d78cf52-cb75-4eae-a75c-915e27ae83da 1 Other Other +9d78e7e9-46c2-46ea-970c-2ab2fdafc872 1 Other Other +9d78e828-00b3-4d1b-8f23-f47b78edf4e8 1 Other Other +9d791530-0d18-4514-b039-5bc23e146f92 1 Other Other +9d7956c3-e9ba-48ba-82b3-54169c7b239b 1 Other Other +9d797964-ee13-4c18-bce8-d1ffdbc10c48 1 Other Other +9d79bce5-535c-41fc-a480-c701cc2b6207 1 Other Other +9d7a37f7-5647-4197-86c7-88979e4bfd74 1 Other Other +9d7a6116-3c70-4023-8fc8-6bd843269f58 1 Other Other +9d7a7a49-0582-488a-8598-37682a5e81bc 1 Other Other +9d7a8b36-ee1b-4f29-884e-273f05d4723f 1 Other Other +9d7ae37d-10d9-4f4d-a0a8-79f15837b94f 1 Other Other +9d7b96a8-2bbd-4d8c-a204-1bb982dfee00 1 Other Other +9d7bd9e1-d3e8-46b4-96f2-3d330d32dad8 1 Other Other +9d7bdbf7-4213-4489-adf9-8193192d1f63 1 Other Other +9d7bdcba-d834-4fa7-b838-e51a3943810c 1 Other Other +9d7c6893-c327-454c-bf2d-60b3c89fefc0 1 Other Other +9d7c69b5-0d79-41f2-b795-a483c71fa5c2 1 Other Other +9d7c727d-2c85-47dd-bd0c-89898782282f 1 Other Other +9d7cdbb2-78d7-402d-b6cc-499e4bbedb7e 1 Other Other +9d7d0612-bf1b-40af-925d-747cfe27d20d 1 Other Other +9d7d066b-f731-4c69-ab3d-0b36375170b9 1 Other Other +9d7d0f1d-a7d8-4922-b12b-6c2151b95eae 1 Other Other +9d7d116d-a11c-4d37-a084-4c0eea031e16 1 Other Other +9d7d6683-ec42-4c93-9d73-e6030cd871a1 1 Other Other +9d7d9c1b-8190-4bca-8df9-d083551f0d07 1 \N Other +9d7dab08-59ec-408f-bd72-3f81fd3e9c08 1 Other Other +9d7db5f4-9c42-4536-b485-9257c6f12e1d 1 Other Other +9d7dd171-a7e7-47ae-bcc6-96737cff8192 1 Other Other +9d7e1a2d-e7f8-4836-babd-fe622b3391d2 1 Other Other +9d7e2104-7ae3-450f-b64a-3640c16d3cc9 1 Other Other +9d7e4d03-936c-4ce6-b4eb-0527c323cd91 1 Other Other +9d7e56ba-32a0-4385-8259-167bdb3b8cd2 1 Other Other +9d7e7aa0-44ac-4a07-8e93-0380920c22b6 1 Other Other +9d7e9116-fe9a-4a2e-a706-f60ebc45bd18 1 Other Other +9d7ea9bb-930b-466c-8e83-d748d66dd75d 1 Other Other +9d7ee76f-8597-4c5c-a232-6f910d08f21b 1 Other Other +9d7efc23-1ae7-477f-b008-232b04592afa 1 Other Other +9d7fcf84-5d7c-42a7-9f11-ee473d186af8 1 Other Other +9d7ffce6-1758-11e8-b812-fa163e8624cc 1 \N Other +9d7fff72-4a26-43a2-927e-330e1cafab49 1 Other Other +9d81346b-43c4-4d11-8683-d60ddb573f3f 1 Other Other +9d81f39b-418b-41e6-91df-949659b1d67d 1 Other Other +9d81f9aa-a7ad-44d4-a35d-d1e8556474c0 1 Other Other +9d82648a-dbd6-4741-9a49-6476fe96dc1c 1 Other Other +9d828b3b-5e28-4abe-900d-c372bdfc684d 1 Other Other +9d829adc-361c-4f64-a3a8-35178cbb5d41 1 Other Other +9d82debc-fdf1-47c7-a55c-b3cb90682aed 1 Other Other +9d82fb11-dda5-456d-9f0d-accdf8fce440 1 Other Other +9d8304ae-566f-4715-9fab-42fbe1a5051c 1 Other Other +9d833120-17cc-4054-9f09-d56958b4cffc 1 Other Other +9d833744-746c-4448-ae7e-1714f86995f5 1 Other Other +9d836ca7-d04c-44f9-9c1c-e36b56400f86 1 Other Other +9d83bf9c-0409-491f-ad10-ea53f5150def 1 Other Other +9d83d6d1-7db1-4a76-9f6b-2b62fd1c55de 1 Other Other +9d83e298-b454-4b3d-9d65-9133ce865e70 1 Other Other +9d83f824-6e8f-4cb9-a11e-f087b1dd738d 1 Other Other +9d841a07-01db-4b94-af15-e6808105096f 1 James Other +9d8505d5-db90-4301-9b42-599cdc6fa48f 1 Other Other +9d851eb5-8217-4a69-950a-7c1ae44723e2 1 Other Other +9d856713-b7e1-4846-8294-fb0d24c5f14d 1 Other Other +9d85b25d-1986-4cf7-a2b3-b6cc3185f426 1 Other Other +9d85c16c-7f05-4b28-b2a2-f846d64e86cd 1 Other Other +9d85d583-5f70-443c-9533-c44d0e796e29 1 Other Other +9d85d6b2-bcad-4b1d-9a0e-c744151872ba 1 Other Other +9d85efc6-cd22-42fd-9bb1-06185603f187 1 Other Other +9d864764-aa90-4868-a512-62a8eb7ba2dd 1 Other Other +9d865d36-d718-4270-8210-1bea56f224b8 1 Other Other +9d8669bd-c20d-4697-86eb-67535417eb1c 1 Other Other +9d867a12-282f-4ca8-ac66-ba9223b54a2d 1 Other Other +9d87008f-f035-4807-abcd-59e63bab0aeb 1 Other Other +9d87276b-7869-43d1-b732-82debfc9faf9 1 Other Other +9d873634-7e6a-48fa-964a-b5cbfa7af442 1 Other Other +9d87766b-c748-4704-85b0-e6ac93c824c8 1 Other Other +9d878083-6250-40ab-9ef9-b588182294a5 1 Other Other +9d87a6e5-33b5-4e64-abc9-886bacda439d 1 Other Other +9d882aeb-0165-43a9-a848-0cbdb8768acb 1 Other Other +9d8850d4-9705-43ca-81cb-599a574ba078 1 Other Other +9d8909c8-ddb0-4316-b6c4-0efc82107557 1 Other Other +9d89253c-9dfd-42aa-93aa-223ea5a044e3 1 Other Other +9d898a43-520f-4b90-9068-9e16aa8eab48 1 Other Other +9d899b67-63a9-4f14-bfe2-76917799b972 1 Other Other +9d8b1f55-ecee-47a8-b12c-76a671a11171 1 \N Other +9d8b5f93-3730-489b-bdee-f6781c0b9922 1 Other Other +9d8bc7f4-c85e-4bf8-a502-c85923683f36 1 Other Other +9d8bf0c1-3ca1-4dd5-aa7e-b10c551db030 1 Other Other +9d8c0d82-6363-419c-a4a4-1d7f23036a35 1 Other Other +9d8c164e-4c0e-4f2f-b6a2-a18ee23d7e02 1 Other Other +9d8c7eea-6ec6-45cd-b704-f77792380536 1 Other Other +9d8cb568-c16b-4c9b-91d1-cb94fd90beb5 1 Other Other +9d8cbb74-6d30-403f-8dd9-88de90f3c00e 1 Other Other +9d8cfced-fb40-433d-a3f9-55ebb966c5e3 1 Other Other +9d8d085f-f4da-47a0-a644-1c9db612be23 1 Other Other +9d8d0a3f-86c5-4a01-9270-75ce5fa09a64 1 \N Other +9d8d46c2-ef2a-457e-bf68-1fade6267c50 1 Other Other +9d8ddd7e-0d69-4bfc-a1e8-d2fdfb00a22a 1 Other Other +9d8deb73-335a-4f15-9022-fcfd76613620 1 Other Other +9d8e6bac-b450-4649-906b-bea8950e7d09 1 \N Other +9d8eb0ff-c713-4f76-9d83-0a08dd9260ba 1 Other Other +9d8eb3f1-9b63-46c5-935d-74407a6d8da5 1 Other Other +9d8ebc08-0d94-4bc4-9588-544a54385a87 1 Other Other +9d8ec758-d46e-4bdb-9adc-50856b336048 1 \N Other +9d8ecbb0-6d8b-4785-9dcb-ee128c4acbe1 1 Other Other +9d8ee44b-8046-41d7-b937-ca211c202693 1 Other Other +9d8f1b3f-91ff-4a8d-bc3e-c5f0601d2e3f 1 Other Other +9d8f25a7-35fa-4bc1-a2a7-d25326f0109c 1 Other Other +9d8f272a-fbf3-4d94-bc5b-55eaa863b7c2 1 Other Other +9d8f4622-0eb4-44d8-92a9-e6b8f623a694 1 Other Other +9d9061cb-ff6d-4720-9f5a-f1177967bbc8 1 Other Other +9d908dbc-c9f2-4c78-bb03-35398e241ddd 1 Other Other +9d9095fc-d475-4a32-a61f-fd69f7fe23af 1 Other Other +9d90c52c-f95b-47f0-a364-8c2915fa9429 1 Other Other +9d90e139-f4ee-4997-add7-de7617bb4852 1 Other Other +9d90e18b-9ecd-48ca-9fe9-85eaa854748e 1 Other Other +9d9147ef-0b99-4b28-91b4-9540a9522c13 1 Other Other +9d915537-6248-46e9-bf01-ae19483888d8 1 Other Other +9d9155bc-f10e-434d-b128-432470936b2d 1 Other Other +9d915828-ef77-4060-b204-7b6546d147a0 1 Other Other +9d919aba-6077-4aaa-ad66-643239bc2967 1 Other Other +9d919c71-709c-4ecb-a8d7-8c3d70980bb6 1 Other Other +9d91eca5-008b-4315-bf2a-6e158535b843 1 Other Other +9d92090d-63d1-4ae5-b362-1efe0eabba12 1 Other Other +9d924f15-df3a-4ec1-bc03-235579df0c5e 1 Other Other +9d92942c-b3f5-446d-9411-5566a7282812 1 Other Other +9d92b56e-2787-4ea4-862e-8486342f5d42 1 Other Other +9d92fba8-4b59-41a2-8744-06a3673f7f9b 1 Other Other +9d938a99-733a-46d2-8230-3c14650214f5 1 Other Other +9d93d0cd-ac9e-42ea-991a-4592abd16ee9 1 Other Other +9d94decb-98b5-4b12-a9b6-7bfc03f32091 1 Other Other +9d955bb6-d3d9-4182-be7a-86ba6fa55714 1 Other Other +9d9574dd-4a19-4252-a4fc-355ea4c907e2 1 Other Other +9d958966-0f49-470b-887c-5a6029b6e973 1 Other Other +9d95a64e-923b-4908-9a9e-f0a4e335340d 1 Other Other +9d95dc65-b00f-4865-98c4-27d5c5179e51 1 Other Other +9d95ded0-ad6f-4bae-8a5d-e9a9e0abc59a 1 Other Other +9d95e4b9-46ad-49a6-8003-ce707c7123b5 1 Other Other +9d964adc-f74d-478f-9b28-5c89c5b146f7 1 Other Other +9d965a57-cb76-4b90-a39c-987f556b7842 1 Other Other +9d968748-800a-43d3-adf7-4aa06086a13a 1 Other Other +9d96d1e7-0f70-47da-bff2-21670dd3b2a2 1 Other Other +9d96f97b-978b-4bf3-b327-e54f8a9c92f5 1 Other Other +9d970a6f-0b58-4a4b-9004-93c4952d1e1d 1 Other Other +9d971829-d93a-4460-bf90-b0b62e4a2745 1 Other Other +9d97501f-81aa-4677-855e-15e4a3ceba27 1 Other Other +9d97a8f3-ad54-41d3-98db-90a65dd0d285 1 Other Other +9d97d053-302e-4fba-90f2-632d3bb31e33 1 Other Other +9d980f1c-d5bf-40c9-b9ec-706a466d6852 1 Other Other +9d985133-14c7-40d1-980b-7617c109fbea 1 \N Other +9d98b225-5fb8-4bcb-939e-bda4900bd681 1 Other Other +9d9952b6-9cea-4878-b994-f3c268bec403 1 James Other +9d997278-8c25-4618-b027-9848efea1a6e 1 Other Other +9d99b08f-0952-4f23-ae2d-f59abf4ebc7e 1 Other Other +9d99b90d-41bc-462b-bef1-fcb9d12b6079 1 Other Other +9d99db42-a552-4e78-b6e4-59dcf611255a 1 Other Other +9d99df7e-e281-447c-84f0-9b5b75745c16 1 Other Other +9d9a008e-0fb9-4f16-80cb-51f4e5f271c8 1 Other Other +9d9a20f3-f257-457f-be18-bba805681a86 1 Other Other +9d9abdc4-8c3c-4fd0-9bc4-5c7e45de50d5 1 Other Other +9d9b16e4-6cd2-4257-be5e-7397218b8b21 1 Other Other +9d9b4d0d-96ec-4f54-ab7f-38a10c45e2bc 1 Other Other +9d9b6c9c-ae2a-49b7-92a1-3313709eacbd 1 Other Other +9d9b6ee3-2939-453a-93a3-8f9e951624fa 1 Other Other +9d9b76b0-acbb-4776-9e15-95ca619976bc 1 Other Other +9d9b8f7d-b80f-4172-848a-cb0a1559101f 1 Other Other +9d9bc180-7fd7-4982-9dc4-546b6151c44f 1 Other Other +9d9be6ed-a0f0-4450-805f-c57655854760 1 \N Other +9d9bef19-c5e2-43ce-80fc-b280513d3e15 1 Other Other +9d9c0215-9128-407b-ad90-f7b723ea0e0a 1 Other Other +9d9c27e4-bcfa-474d-a93f-f5e4aeeafd25 1 \N Other +9d9c38f9-88ab-4fe8-a015-c7d7f430cee3 1 Other Other +9d9d88e5-8317-434a-8dad-143b57181965 1 Other Other +9d9d98a5-974c-4a7a-afae-2bd2bbae833b 1 Other Other +9d9df57d-c112-4890-9aac-3654d0c19298 1 Other Other +9d9e264f-a090-4686-b9f3-867efea4f5a2 1 Other Other +9d9e4769-a447-49bc-ad1b-93cff9aa776e 1 Other Other +9d9e4f47-11bb-4077-ba82-a260d2d3627e 1 Other Other +9d9e8f30-6208-4af3-a839-990e17f8f76c 1 Other Other +9d9ec742-c920-11e7-ade0-fa163e8624cc 1 Other Other +9d9f0787-ee15-4cc9-8fa8-beebf7c2728e 1 Other Other +9d9f9841-4855-4edd-8ac3-8bb869ff4c7e 1 Other Other +9da075ef-11f8-47ca-a2e1-ae72b1db194f 1 Other Other +9da14d44-76c1-4cf1-9d1b-0b730cb7c3c3 1 \N Other +9da183d9-2fd6-456d-84f7-fe165cac1ce1 1 Other Other +9da19d3d-7ee2-4450-83d2-f06a0003fe98 1 Other Other +9da1a441-8792-4cb5-819b-fe93d59f457d 1 Other Other +9da1cd1c-d050-4952-a7b3-3d2446d81cdd 1 Other Other +9da207e0-7c94-40a2-a7d8-a30b30c2d192 1 Other Other +9da22c13-1d15-435e-8801-fb954370bec5 1 Other Other +9da24f57-96db-4159-8ea4-98487b95a29e 1 Other Other +9da2c918-0c8d-4bae-822b-a461d6214f39 1 Other Other +9da2d65e-fb9e-4124-a7fd-fee75962fd1b 1 Other Other +9da2e628-4281-466b-a19b-b44358a3c7d1 1 Other Other +9da2f983-5994-47af-866c-c9b96c2b6609 1 Other Other +9da2fb88-f464-4818-8449-5d7b50dc43d7 1 Other Other +9da32b47-8fc1-42ce-964e-974026f24170 1 Other Other +9da34dec-86e7-4e8e-baf6-a97a20eac98d 1 Other Other +9da37737-18c1-42ce-a3f5-dbc3216792cd 1 Other Other +9da3e825-de66-49a8-9bdd-31df58e10619 1 Other Other +9da416b5-5abd-4f94-a06c-f8085248264f 1 Other Other +9da47f90-65ad-4129-b177-742081b2b8dc 1 Other Other +9da48398-b7ae-499c-b749-06a89d5ba7ce 1 Other Other +9da4dd44-091f-4615-993c-b07c2a6e7861 1 Other Other +9da4e1a2-4cf6-4046-92dc-bac081e897fc 1 Other Other +9da5185c-ef93-4fd8-b714-0016b71e194c 1 Other Other +9da5b776-2d8f-4559-a787-aa074788fe48 1 Other Other +9da605a8-fa9c-416c-9e1b-83dd1f28c4d9 1 Other Other +9da62755-7360-4088-8a03-94b61b52036b 1 Other Other +9da63494-2997-4932-8072-c412ee212746 1 Other Other +9da65c06-1577-4916-89d2-7340fdbf23b3 1 Other Other +9da67f57-6fb5-4701-bf56-5d0c09cf2389 1 Other Other +9da72898-06b7-44e8-a17a-0f198e3729a4 1 Other Other +9da752e7-a4c1-46d6-ab6a-060168280ca0 1 Other Other +9da76818-f60e-4f5d-99bb-9f80fa72bbbd 1 Other Other +9da78255-af75-4407-8815-18fc1b3b829b 1 Other Other +9da797bf-9d3e-4a07-9709-f1bf9e4c9d4d 1 Other Other +9da7df42-a15a-46dc-a559-9c82ed8150fb 1 \N Other +9da8005b-3ef6-4f4c-864b-9a2d567abb98 1 \N Other +9da84811-15a6-4ed8-bc5c-7ea0464b68b3 1 Other Other +9da848fc-c16c-440a-ad52-76e8b0b90604 1 Other Other +9da85bb5-de5d-40a4-a3d1-180db72f3048 1 Other Other +9da897a7-bef0-43b5-8e58-b965bcf67852 1 Other Other +9da93c7c-6b89-4382-adac-5a23b49433ec 1 Other Other +9da95b4f-36ce-44c0-a7aa-5cdd5067363f 1 Other Other +9da994b3-e8b3-481f-a909-a935600b48cb 1 Other Other +9da99fb3-dd32-4953-98c7-3c036b5a3e0a 1 Other Other +9daa0c51-553c-4eba-85e9-dbb65fb7bbb3 1 Other Other +9daa347e-db7c-4c5b-9643-abd85113215c 1 Other Other +9daa9bfb-1830-4b7f-a7f1-6186a3c22020 1 Other Other +9daab0d2-e265-45bd-8c44-fcf145bc24cf 1 Other Other +9daaca1f-31a6-4a9a-a53f-e16314330073 1 Other Other +9dab0cb7-d57c-42c7-b287-21d5c75c24a3 1 Other Other +9dabffa2-a2c3-45d4-92fc-0be68b37fa76 1 Other Other +9dac1d43-c3da-4f6c-8f25-add78ad67276 1 Other Other +9dac38e4-3d8f-4170-98e6-060c765aa5e2 1 Other Other +9dac4b6c-60c2-4252-9b40-baef9e0d8521 1 James Other +9dac752f-7f8e-43ce-914f-e12171726dc2 1 Other Other +9dacbaf2-e8c7-4093-a2be-46d9adfd58b7 1 Other Other +9dacf809-915c-4abd-b7cb-897d5ecd9092 1 Other Other +9dad1ec1-7b77-431f-a72f-5b5189973e33 1 Other Other +9dad4106-1089-4657-a369-3b3b760a737a 1 Other Other +9dad61ca-630b-48c4-aeb0-199dd4fecd2f 1 Other Other +9dade1f3-ba13-483e-a081-30d0199aad32 1 Other Other +9dadf70c-1bec-42a2-8924-eef4be88d891 1 Other Other +9dae6fdd-0803-425d-93b2-94b93a6c4c4e 1 Other Other +9dae7074-06c8-43a0-b5e2-6756dc8af732 1 Other Other +9daecf5d-5b01-444d-bb2f-6c418ad8a860 1 Other Other +9daee4d3-d4e7-4d16-bb55-820d33ca2553 1 Other Other +9daeea35-f1d6-4620-99e4-a05965387523 1 Other Other +9daef9fb-90c5-429a-b77c-ebbdb040f5ad 1 Other Other +9daf37a7-eabc-4b04-a2d4-e5ab2d3df656 1 Other Other +9daf58eb-744c-4561-8cea-7d600bb9fe40 1 Other Other +9daf62a5-ddd4-4489-87be-7567d9164ceb 1 James Other +9daf6b7c-1f58-49ea-8088-bcc0f76aed8a 1 Other Other +9daf9c9c-6a8f-4322-b339-e133eb234336 1 Other Other +9dafba53-b2eb-478e-874f-67bf8b362c52 1 Other Other +9db02a09-e4b4-4ee3-90a9-366d98c1ed23 1 Other Other +9db07272-9b35-4c35-84fd-1a0a9f295eab 1 Other Other +9db08439-db1d-4ddc-bee2-f5a920d171b3 1 Other Other +9db096e6-21a3-477c-902a-6b50f9e8cb55 1 Other Other +9db0d460-840e-4923-9f51-142c5770b616 1 Other Other +9db101c5-ba90-4b50-a6b1-d505ddf9b643 1 \N Other +9db14ac2-6cce-469d-9283-7e79334ad11c 1 Other Other +9db16560-7538-4799-ba61-4520447fff02 1 Other Other +9db17f87-62af-4025-9dae-fd3cda1a5ac7 1 Other Other +9db18216-6135-4ac5-9f51-e0e05b957887 1 Other Other +9db1abcf-a34b-4fd7-a645-147b85557562 1 Other Other +9db1f716-0d76-4bc9-bfdc-c9fc948cbf34 1 Other Other +9db226f5-c469-4367-9d63-0de0bf2ba7aa 1 Other Other +9db23f12-9fa1-478f-b34f-bab64306de5a 1 Other Other +9db298e1-8584-4750-af8f-3ccdea458426 1 Other Other +9db2d933-0172-41c8-9dfe-1c826792416f 1 Other Other +9db30561-9d76-4550-9cfb-23fbdc80a158 1 Other Other +9db31b93-3e57-408e-aac3-146df84e6fc1 1 Other Other +9db32740-52a9-431a-a1de-3a796751dcaf 1 Other Other +9db33773-079b-4ee0-adff-aaa019e7a8b7 1 Other Other +9db33d07-d8d1-40a5-b23b-61e08696cb94 1 Other Other +9db35299-bdde-48af-874e-a300ba35a315 1 Other Other +9db37aed-fba8-4efc-8ae7-c988ed648345 1 Other Other +9db387f5-6439-414d-a18f-e9f2c37a60e2 1 Other Other +9db3a94f-3eac-4367-bc3b-0e9d19323c70 1 Other Other +9db3ccf1-15b4-486d-be14-87f0ac0872a8 1 \N Other +9db3d5ad-216d-4a24-9b94-a62cafeeb1cd 1 Other Other +9db3e34e-89f7-411b-85c3-eb023506308b 1 Other Other +9db3fab8-9dd4-4c1b-9575-e40201234edb 1 Other Other +9db40be8-5bc2-4054-a63c-1b67607b8334 1 Other Other +9db42567-65fa-4f67-8be3-18e17edbc43f 1 Other Other +9db432db-859c-4b5e-bffa-b3fd54dded09 1 Other Other +9db481b0-76d2-4a63-aed8-5fff8b4f3d99 1 Other Other +9db49a87-5293-4e7d-9096-582daca0b693 1 Other Other +9db4a671-a50b-497e-8b40-fe53de998dfc 1 Other Other +9db4c7de-d9ce-434b-a8da-b0ad568800db 1 Other Other +9db4cc51-d853-44c5-88af-c0c7a73a90ac 1 Other Other +9db4d953-2059-498a-ad9e-39c4d0a30ed0 1 Other Other +9db54d1d-ed61-492d-9412-a524a3865e46 1 Other Other +9db587d3-7a31-49c1-abdb-86091e41f5d7 1 Other Other +9db5bb0b-1798-44d9-8ce8-a4107bfc7b90 1 Other Other +9db61df3-ff4c-4985-8e12-bdbc3618af95 1 Other Other +9db6238a-1ffa-4638-8af3-17dad354dd09 1 Other Other +9db653fc-a7cf-43e5-bd74-1572dd84b64c 1 Other Other +9db65cff-c23c-480d-baef-60d5e11c3fee 1 Other Other +9db6be5a-d7ae-4be4-a12f-13dfeb864539 1 Other Other +9db6f8a6-abb6-44af-aed2-6e1dab675b92 1 Other Other +9db7319f-48e2-4957-9482-a6657ce3f967 1 Other Other +9db790c3-f188-4707-a071-dc3d21077d8b 1 \N Other +9db79347-9329-4fb7-8486-6c6d4aa4025a 1 \N Other +9db799c4-2262-4015-a768-92d3d062ac43 1 Other Other +9db7aec1-107d-48a5-8ca6-0d3e5dfa1016 1 Other Other +9db7af70-72fb-497c-a23a-61cc47a3960b 1 Other Other +9db80ae7-634b-4679-b367-008525174c4e 1 Other Other +9db82498-be19-49d4-9a3d-7dcb7a9e7cea 1 Other Other +9db834f8-6a3d-4ae6-baae-7c3b360b5bae 1 Other Other +9db84f5c-e69f-4840-ab16-cda963e09746 1 Other Other +9db85f1c-df3c-43bc-9fae-3b4b4ed87671 1 Other Other +9db85f92-53e4-4d39-8dd3-c7626c90ce0c 1 Other Other +9db86a32-56c9-4d8d-b9b8-6acd83bb5248 1 Other Other +9db89893-9d99-4fad-94e3-56a1ba357e71 1 Other Other +9db8dbfc-c4b8-434d-bb0d-aa4da9b7151b 1 Other Other +9db94a1f-fb01-47f5-b77e-e6d9e9511634 1 \N Other +9db963bf-79e1-48a6-b7fd-a9a5af1a17dd 1 Other Other +9db982d8-0c27-440b-916d-fa5735d43603 1 Other Other +9db9d3b3-69f9-468b-9564-b3e34834b699 1 Other Other +9db9ff98-46c3-4c94-88a2-a8cd1d047077 1 Other Other +9dba2064-af5c-4300-b310-0fdf8f038315 1 Other Other +9dba6b61-3467-48f3-a678-258dd019f0fa 1 Other Other +9dba7e45-66b1-4624-b1a0-7a7c17da1771 1 Other Other +9dba877b-e942-4d41-ae63-b13700b8a070 1 Other Other +9dbab190-1c57-4208-9bdb-07dc7c97aab9 1 Other Other +9dbace98-c7ae-432f-8c7d-2420bb11835a 1 Other Other +9dbafbdb-6c23-4b4c-b603-f6e2d189e06d 1 Other Other +9dbb21b8-2766-4c63-97e9-a0329556e967 1 Other Other +9dbb5e17-e1f8-4966-bc69-f835d85ffcd6 1 \N Other +9dbb94e5-2bbb-4c64-9f85-8657b14cf095 1 Other Other +9dbb96f7-07e7-42a4-9479-25284e5025ce 1 \N Other +9dbbc711-ffca-47fc-8b34-14e43b6fab98 1 Other Other +9dbbe2d8-569f-4391-b9d0-fca92c33faa0 1 Other Other +9dbbea71-98b5-4f3d-a235-5c52ab5606a6 1 \N Other +9dbbef28-fcd0-431f-9a13-e86f4aed94bf 1 Other Other +9dbc0fca-9f0f-4014-a62d-7b9df01ab401 1 \N Other +9dbc243c-6154-45f4-96ef-86fbf7e7c0e7 1 Other Other +9dbc993e-f077-4355-a1e1-d35ad245e83f 1 Other Other +9dbc9cae-c239-4afc-bd6d-c3f6c8010301 1 Other Other +9dbce826-44f0-45d5-b672-ebcac9d59ad6 1 Other Other +9dbd0263-5cf8-4e45-a4b0-5bc39acb2c6c 1 Other Other +9dbd20a3-ae96-49ad-a2ab-501e5a06f72f 1 \N Other +9dbd2e45-04dd-4a03-a84d-cdf9a846bf47 1 Other Other +9dbd306e-b23c-45ee-a0e6-0ffd3681970f 1 Other Other +9dbd3ab2-36e2-47dc-9546-a2f9109f4783 1 \N Other +9dbd3c4f-8f63-4e65-8b2f-e5a74ef8dab0 1 Other Other +9dbd90d6-4696-4336-9278-b1a8ae511d06 1 Other Other +9dbdc03a-70d9-4223-aee9-013fba791c66 1 Other Other +9dbdcd7b-0780-4351-b038-c99317f760a0 1 Other Other +9dbe08c9-1205-48e2-b693-f2dc4fe8e02e 1 Other Other +9dbe201e-d9d7-43a7-a5bf-d9021e295fe6 1 Other Other +9dbe2eb6-4ed5-4df5-b72a-90fccc839059 1 Other Other +9dbe4053-08e1-452e-b253-4b35a81f3287 1 Other Other +9dbe52c7-e866-4337-9f08-f31875b16f59 1 Other Other +9dbe5363-77c5-4885-820f-42f9ed05d503 1 James Other +9dbe8502-53bf-428d-ab93-13c873973833 1 Other Other +9dbf2495-890f-43c6-ba23-06a8e89f0d9f 1 Other Other +9dbfc06d-6fc3-47e3-8349-9faee358f16f 1 Other Other +9dbfc17c-cac3-4125-9113-a2e509f9a1f4 1 Other Other +9dbfd40b-1e13-4532-bf82-6f9e658242be 1 Other Other +9dc02b5a-fad7-4922-a1ac-ae46693620e6 1 Other Other +9dc06d84-6790-4ef1-aa96-3f3498ceade5 1 Other Other +9dc0adcd-e7b8-44ad-a0e7-84cbb7da3bef 1 Other Other +9dc0e2fd-2c29-49ee-ac3b-d4f3a8d9b33a 1 Other Other +9dc19c16-72bf-490b-8974-c8d9a9d9e680 1 Other Other +9dc1cc01-de3c-453d-bb66-5771a93228f4 1 Other Other +9dc1db2a-eef7-4173-8c4f-ace3d100c53d 1 Other Other +9dc1fe8d-ae17-4d9d-b658-bc419be10289 1 Other Other +9dc21dbc-3df0-4ca8-96c3-9d679f22bb1e 1 Other Other +9dc24d3b-c373-4ab4-8bef-c2abd87f03ae 1 James Other +9dc2bd31-544d-4b12-92ce-9b214820f086 1 Other Other +9dc2e47e-06c0-4e71-8b3a-e77780921f55 1 Other Other +9dc31e8a-f8ac-4b7a-ab07-6da2eb913635 1 Other Other +9dc32bd5-a61f-4059-bbe2-9e14bf4a010e 1 Other Other +9dc36f27-5987-402b-b4aa-d528ae7feedd 1 Other Other +9dc382e4-7083-4776-b4f8-46d10b7822ed 1 Other Other +9dc38329-fdec-4826-b690-fd6ad65b31d7 1 Other Other +9dc47b37-6f34-4b4a-b8a5-27757e173660 1 Other Other +9dc48854-7217-4ad1-9665-5cb65614b600 1 Other Other +9dc4bc47-3c65-455d-8148-6d52c40a9469 1 Other Other +9dc4bfcf-7047-41f3-b87a-18c6fb7e674c 1 Other Other +9dc4d3c4-4f00-4356-bbbc-2d63f1771b19 1 Other Other +9dc50943-4d1d-4b43-b4ab-1d7dcc3972bb 1 Other Other +9dc50db3-145d-4d50-b0ab-9c27c2a34d1f 1 Other Other +9dc51db5-9e00-41d9-9427-ed8de190c130 1 Other Other +9dc5612e-19a2-4c7e-8fd1-597224e9dbe2 1 \N Other +9dc5733a-24fb-4d25-9762-3e09db2a1df7 1 Other Other +9dc68dca-85f9-4075-b46b-2636ef8ee882 1 Other Other +9dc6ebce-9e5b-470a-877d-3503a57ec34c 1 Other Other +9dc6f69c-0de5-40e6-8bc8-11feecaf9c45 1 Other Other +9dc700e7-1f42-4077-8ec4-d417404819f6 1 Other Other +9dc70e36-9091-4283-8343-8aefc1448567 1 \N Other +9dc71135-338b-4340-8f34-05a10c19ea73 1 Other Other +9dc7194d-a674-49dd-8512-7b34d4b4e453 1 Other Other +9dc73c85-3bee-4b4d-9580-8e615d15e4ea 1 Other Other +9dc75928-348f-4310-b362-5fdd6a2258a9 1 Other Other +9dc7d680-8436-413c-8cbd-f606f05d5857 1 Other Other +9dc81495-0d36-491c-a08e-0346be02989c 1 \N Other +9dc8349c-5aee-4657-84d8-04b6f3f58abb 1 Other Other +9dc845c7-5ba9-4583-b824-3917c5285c25 1 Other Other +9dc8596d-16a6-4bac-926f-e98fd73f9667 1 Other Other +9dc866a1-ae96-475e-b8fc-6dbdcab624c3 1 James Other +9dc86762-a2b9-4a7c-bcd1-e259312c3903 1 Other Other +9dc876dd-c9e6-4c36-af1d-8ba17a01050b 1 Other Other +9dc88b77-399b-44ba-b766-9d893ef99b1a 1 Other Other +9dc891b2-21fc-43e2-8d72-3e93a0049d24 1 Other Other +9dc89793-6695-44cd-9b4a-3825e496bbfb 1 Other Other +9dc8fe43-5674-4539-90c6-3659fc26ecb8 1 Other Other +9dc950d0-abd5-4bf7-8d81-013b5f221d9d 1 Other Other +9dc998b7-b674-4dfc-b4bc-e3827dcbe2e9 1 Other Other +9dc9f494-67ae-4226-a75f-64d7fc8613f6 1 Other Other +9dca0cdb-1205-4108-99ec-41f176ee0601 1 Other Other +9dca1254-f691-425d-999f-77726a4f188e 1 Other Other +9dca15d5-4033-4079-a061-3011ee190e24 1 Other Other +9dcae65d-ea19-43ed-8880-aac3e7f8ce9a 1 Other Other +9dcb45ee-1703-4b52-a938-349c512c7129 1 Other Other +9dcb7fa6-8b21-4b9b-b073-b587fa4f7015 1 Other Other +9dcbaa7e-436f-4cd1-9631-dd617cef4ee7 1 \N Other +9dcbb9c9-60c0-47cd-863e-a7a4baa05a20 1 Other Other +9dcbbdbf-6902-42e3-ad37-00e6965ab20b 1 Other Other +9dcc0786-1b7e-46d2-b4f7-aefe090c2686 1 Other Other +9dcc780d-a83e-422e-bb59-1d20a716b6fd 1 Other Other +9dcceafd-8981-42a6-b934-bb4fddce810e 1 Other Other +9dccf2f1-c979-423e-b6fa-b3da58ea9dc8 1 Other Other +9dcd0071-5486-416b-92a8-2fea5f6bfb35 1 Other Other +9dcd2a2e-26e1-4176-9faa-423740d9d39b 1 Other Other +9dcd31cc-1087-4d36-a9f0-8f17c2758cbc 1 Other Other +9dcdbd47-ab3a-4031-8377-9d2c9e0702f0 1 Other Other +9dcdc2a4-000c-4769-bc18-abf0c809de32 1 Other Other +9dcdd3db-6491-41b9-8f77-bd9fd34fef13 1 Other Other +9dce001f-313b-432b-ba22-7922bccc99a9 1 Other Other +9dce00c5-8093-4ede-93ff-eed595c26dd7 1 Other Other +9dce2f45-04b3-452a-9d66-cf83f2bda344 1 Other Other +9dcecbcc-b9eb-49f7-9e1c-c1aa84144093 1 Other Other +9dcf1112-bf41-4cda-ad91-9f33137d5500 1 Other Other +9dcf7b44-577b-4ef5-84ff-63490234299b 1 Other Other +9dcf9b43-7b4f-4311-bb9c-19842ab66829 1 Other Other +9dcfda47-6d9c-4386-a315-d90d54338f4d 1 Other Other +9dcff278-4a74-43c9-976e-839528bd617b 1 Other Other +9dd0507c-847a-486b-a7c0-c5a7ed821633 1 Other Other +9dd090d9-99ee-4e85-a5b2-03d67801d62d 1 Other Other +9dd0a26c-3b95-47b1-93eb-b4e6ace8eb6a 1 Other Other +9dd0e334-c05f-4d9e-8170-54b89da6f4c5 1 Other Other +9dd0ee70-e0b7-4535-b5c0-f199ae885192 1 Other Other +9dd0f066-df6a-4848-af7d-32a7a12c8017 1 \N Other +9dd0fcb6-6489-4490-9853-adc161ce3f69 1 Other Other +9dd10a6f-e1ac-4f4e-aff6-25822cb51292 1 Other Other +9dd1308d-a95f-4ed5-b73b-b6ad33c69455 1 Other Other +9dd14508-11bc-40a3-841f-268b3666816c 1 Other Other +9dd17683-5055-47dd-9450-7962c607becb 1 Other Other +9dd18c17-ee5c-4b82-ac48-76d4ec81c115 1 Other Other +9dd1b17f-7496-4c7b-bff4-6c609ea0e922 1 Other Other +9dd1b66e-7f66-4881-8699-7a6c301cf241 1 James Other +9dd1ca6b-f90f-44f0-a60f-3bc0e79b75fb 1 Other Other +9dd1e08c-c0fe-4b37-ba9d-0b86f3279ccb 1 Other Other +9dd23397-d79d-41d0-b38a-86de6b5f20b2 1 Other Other +9dd30b93-9429-4eed-9bd1-a0933d117a72 1 Other Other +9dd30ee4-a736-465c-a069-bd114ec99bbd 1 Other Other +9dd334d0-a975-4737-aa58-75478a68cffd 1 Other Other +9dd33e2b-47bc-468a-a8f8-6818e68e7362 1 Other Other +9dd344e0-0f42-4ed6-8140-9a1b49c520df 1 Other Other +9dd3e8c2-5811-4610-aec7-81cb8b684f42 1 Other Other +9dd41b12-2bdd-4dac-91d5-c646de8356b0 1 Other Other +9dd43441-dc2b-47bc-aa5a-51303f7ec869 1 Other Other +9dd45350-53a5-4972-8acd-a0e6ad1e9ed7 1 Other Other +9dd476f0-48a9-460c-80d6-7ef27e7045f4 1 Other Other +9dd47f45-a5e2-4adb-919c-f13c298faa0f 1 Other Other +9dd4a255-2116-48b5-a0ba-36546baa1e92 1 Other Other +9dd4aba2-3a67-4de5-935e-e73c02d6bbac 1 Other Other +9dd4e2c1-cda9-40e4-ab45-4ad1ccaf50b8 1 Other Other +9dd50c88-27bb-4004-bd99-9c9e1ee5e2ef 1 Other Other +9dd5304f-e37b-43a1-974f-12ab420489e6 1 Other Other +9dd53cbf-d0d6-43b1-b5ec-70eddc20fcec 1 Other Other +9dd56f4a-f98f-4963-82cb-b46325e124d5 1 Other Other +9dd5bece-ceb0-4aa8-a04c-fe7f82a4632a 1 Other Other +9dd5fc78-57f5-4e10-bbf9-972e97146e7a 1 Other Other +9dd60979-9c7a-4b95-a6db-e7330343dceb 1 Other Other +9dd65e55-8c68-4de0-b5eb-a98532604f2b 1 Other Other +9dd66cd1-b5e2-4834-b6fd-ebc27bbbc9dc 1 Other Other +9dd67821-ad34-4b07-9dc6-e895f2dfa1bd 1 Other Other +9dd6960c-b3d5-45bb-96de-015fbff10272 1 Other Other +9dd6a241-0e51-4d44-b089-3b4b6018c987 1 Other Other +9dd6a648-547b-4b76-afdd-06f96745b856 1 Other Other +9dd74985-b5d5-463a-9caa-7eba6f9bff42 1 Other Other +9dd7801b-6c59-46fd-aab4-cc34444409ed 1 Other Other +9dd7caf2-0cb7-4a3f-91af-2c80a8dce564 1 Other Other +9dd8fb61-04a8-4e42-8254-6bb4b8fa1c1b 1 Other Other +9dd97d34-31d8-408c-aad4-7e8bb90d4745 1 Other Other +9dd98587-f1e8-4800-9325-67011d2e998e 1 Other Other +9dd9a986-e134-495b-a87f-6a84d3c5147d 1 Other Other +9dd9c08c-fe23-4acc-bc37-543f17ab8814 1 Other Other +9dd9e096-9f18-43b0-823c-09d51e4dfd15 1 Other Other +9dda04d0-5516-4668-8abb-20920eda21e2 1 Other Other +9dda2b76-626a-4884-baf4-29091bdb822c 1 \N Other +9ddacb5e-44c7-4fe4-b97b-9b72f22f72f1 1 Other Other +9ddb2a92-f2df-497c-a022-393e20d679e8 1 Other Other +9ddb952e-554d-4f68-a4bc-682a4983abe7 1 Other Other +9ddb9938-5162-4b2a-a1dd-5771b4d943f3 1 Other Other +9ddbbfa5-96fd-42f1-8e2f-23fe001c18a6 1 Other Other +9ddc01db-e39b-4a8a-bdc0-ae32926f121b 1 Other Other +9ddc0874-3e8f-4572-abaa-9f523d605cf8 1 Other Other +9ddc58e2-517b-4fc5-ac0b-b93b47624e56 1 \N Other +9ddc67a2-8dd6-4f15-99cc-c496dfe37458 1 Other Other +9ddcb763-9112-4d57-916b-dd68b81b27ee 1 Other Other +9ddcc5eb-a59a-417f-a1c6-6759a5bd2ee0 1 Other Other +9ddccf39-729c-420b-9181-446f944de034 1 Other Other +9ddceebd-dacd-4549-85fe-f56c5e628ff2 1 \N Other +9ddd3434-b9ab-4552-88d7-26b994f947a9 1 Other Other +9ddd6629-ef1d-466a-aad1-4bc822fb4f22 1 Other Other +9ddd79da-c26a-42bb-b710-7a7a21e71c76 1 Other Other +9ddd86e8-ef80-4aee-9af2-1a3cfe3d0c6a 1 Other Other +9dde1175-a24e-46a3-b50f-9b26abe7b3e0 1 Other Other +9dde2a67-ecf6-4332-b88c-37f1e683f168 1 Other Other +9dde5ffd-adf5-4fee-94d8-a7fc511dfc53 1 Other Other +9dde8293-8332-4db2-8060-c18d0012f801 1 Other Other +9dde855e-ebef-4168-b387-1639a7c8ff39 1 Other Other +9ddee412-444c-48f1-b349-27c07931657b 1 Other Other +9ddf05c5-a21d-4474-9061-a10b576c8520 1 Other Other +9ddf2d11-28ef-4c86-928f-a0fb8b027bf8 1 Other Other +9de005ac-e522-4ab7-897e-9e71257050dd 1 Other Other +9de0391a-7b4d-4197-ae19-857e08ca0921 1 Other Other +9de0471e-f49e-4edd-9ff5-08d6fe5462ce 1 Other Other +9de0492a-30d6-4d96-9bae-6a55dc6c12e1 1 Other Other +9de062ff-632b-4d91-a91e-08e3c80ab413 1 Other Other +9de06598-0bae-41d2-a545-7ddf2d0ebe47 1 Other Other +9de077d7-579f-4872-bf79-644c7c97e348 1 Other Other +9de0bf1a-ca98-41d6-b7ff-893ce4a1c2d7 1 Other Other +9de1a01c-2c13-4c95-b91f-9b3161dbc8e7 1 Other Other +9de1c9f4-5b1b-44d8-9687-dbf603b561bb 1 Other Other +9de22e55-0adf-4789-99c4-e2f124ccf287 1 Other Other +9de2731b-f2c9-43be-a27c-1b4306e31be0 1 Other Other +9de2ab3e-ee06-4fd6-a0ee-554a50d9abac 1 Other Other +9de2f9aa-3307-4c2d-8ca0-fba988115a78 1 Other Other +9de30f04-9a1c-4997-a481-bb862b86df32 1 Other Other +9de33d9e-44cf-4788-90db-013a0a572ea7 1 Other Other +9de381ad-1d18-4246-b350-89a55c337788 1 \N Other +9de3b645-051d-4577-aa8b-7ab582ae342d 1 James Other +9de3f8f8-34c1-4472-93dc-ac31d0a8b6c2 1 Other Other +9de3fdf9-c03b-4ff3-94b6-5acbf7d67819 1 Other Other +9de40dba-5ad8-474a-8668-43c794c1a8e5 1 Other Other +9de41c48-293f-4421-b265-f204f3045c65 1 Other Other +9de4914d-68a6-4d4d-a061-2513f88938a0 1 Other Other +9de49443-3f25-4e2d-b7f9-c44a28a453f3 1 Other Other +9de4bfb2-40c0-4572-bd17-11db94771dd3 1 Other Other +9de4c7b5-6960-45cb-88bc-54bf0a181713 1 Other Other +9de50ec1-ba82-4387-978f-f524c0405a1f 1 Other Other +9de55063-a6a2-4a17-bd2d-ab252d259adc 1 Other Other +9de55463-350a-4a4e-acce-440be8aa34d0 1 James Other +9de55521-8249-442e-a400-040e8e4ce08b 1 Other Other +9de562fd-7eae-4c72-98c4-931a0a734f4f 1 Other Other +9de57eb3-1da5-434a-aee6-ec374e50b54b 1 Other Other +9de5a1fc-2414-4736-964a-639c23b4196c 1 Other Other +9de5ab71-f988-4cce-a610-467575323a96 1 \N Other +9de5b76f-5182-4226-8225-c14d7ca4ec10 1 \N Other +9de5e33f-4099-42c8-ae28-174042fe15b8 1 Other Other +9de5e5d3-b4c7-4c6c-a186-1f211051d874 1 Other Other +9de6061a-5792-4e32-9377-1da89225e72f 1 Other Other +9de6569e-2180-4b15-9d32-34ef68504906 1 James Other +9de65a19-ba74-43ae-9753-a7563c422ffe 1 Other Other +9de68d51-0546-4f0e-8da4-40a8c5d65cce 1 Other Other +9de6b4df-99e4-49e5-b68b-db999e2ac78e 1 \N Other +9de6f4e4-a68f-487f-a316-bb33f181380f 1 Other Other +9de70197-2172-4b68-9ff5-452b97352f60 1 Other Other +9de74a85-1cf2-46a0-b02c-bb47d49e4197 1 Other Other +9de763a2-59f5-43c7-9f23-f14b510ff98a 1 Other Other +9de7dc82-c013-42a4-8875-ff35af9e8e7f 1 Other Other +9de7e56d-9048-48fb-9950-723b37007880 1 Other Other +9de7fb7a-4655-4192-81ee-363d48a15210 1 Other Other +9de7fcc0-2acf-4ba9-bf9b-29e3a3c748aa 1 Other Other +9de86d45-20c3-4fa6-8627-0bff6b469abf 1 Other Other +9de8d2cc-156d-41f7-9bcf-8d758adf08d1 1 Other Other +9de9467b-d485-45c2-9644-f7654b8a7b5c 1 Other Other +9de9f254-a302-4d32-aa42-b2cef3bbf188 1 Other Other +9dea4158-9302-403f-8172-1971daf9d2f4 1 Other Other +9dea4673-b430-46cb-963a-5cd184ea3caa 1 Other Other +9dea750f-7fd0-47a8-9d76-1edbede820fc 1 Other Other +9dea9401-2c27-4363-aaae-29254fdd4660 1 Other Other +9deac03a-7827-4b9f-a53b-4ccbc03b74e9 1 Other Other +9deac546-a130-427e-8b6b-7f4d264b176a 1 Other Other +9deb09e7-e046-4e57-8c8e-ec4aa7fa300a 1 Other Other +9deb1a19-d02e-4214-84b3-c97cf022f32c 1 Other Other +9deb568b-867a-4509-873b-f786f5e34972 1 Other Other +9deb5795-a0b8-46f5-b0ba-8ec62668b6d9 1 Other Other +9deb72a9-a4e5-4744-bb7a-04df47ea0866 1 Other Other +9deba34c-a70d-4afa-8ef0-d27c913580e2 1 Other Other +9debbacd-e501-40c6-9e89-eb4c46bd3d07 1 Other Other +9debfd4a-7474-4eba-b344-3e0020da5a6f 1 \N Other +9dec4654-87f6-4870-8b07-7f43cd60002c 1 Other Other +9dec6e87-ee1a-4cda-89e3-cc86e67b974d 1 \N Other +9deca7c8-ac97-4b96-a0bd-be0f4426c036 1 Other Other +9decf2db-e461-4bb5-ae9c-9121e9947ca6 1 Other Other +9ded07df-7c05-4389-b811-cf6f00227276 1 Other Other +9ded1141-db38-4c96-af12-2b7ca586d354 1 Other Other +9ded2877-5755-4299-84f0-2d4549258535 1 Other Other +9ded537d-8477-4442-9145-6f035ce3214e 1 Other Other +9dedab79-4349-49d0-9791-7d3c5fff9270 1 Other Other +9dede017-b36a-48d9-8d58-171e0ec6788a 1 James Other +9dedfee9-4bc2-41ec-8717-51ce63834f54 1 Other Other +9dee5d4a-56e6-4c90-b073-54461dfc2621 1 Other Other +9dee5fff-26a4-4119-b7a7-1d2affb18066 1 Other Other +9dee604a-56a5-4bbb-bb04-3190a24ab49b 1 Other Other +9deeb95e-dc9a-46c7-9096-f4818b0fad98 1 Other Other +9deec0ce-13f6-4aa6-a2a6-1c1487a02595 1 Other Other +9def45a6-11de-408e-b243-259a030aa4c3 1 Other Other +9def7ce4-ff9d-4c1d-b4b3-ff57453b315e 1 Other Other +9defadbd-28c6-4882-9c0d-b89fa30c46ab 1 Other Other +9defaed9-55ca-4671-86e0-8fdf0ca72e6b 1 Other Other +9df071aa-1ce0-4f24-8c01-e504ac555f93 1 Other Other +9df0be10-ba4a-4450-9523-43adc5ad8214 1 Other Other +9df139a5-8d77-4e1b-af51-8c4a4bb7601d 1 Other Other +9df16a49-1ca5-4e48-8bea-726427f0e4d4 1 Other Other +9df17307-19b5-4143-b5f6-acd295b2145a 1 Other Other +9df176c8-7dc5-4c2d-b1ce-6fa3066c4be4 1 Other Other +9df19ce7-ecf5-4381-a06d-a7918d5b7b1b 1 Other Other +9df1fc3f-b2fc-4c9c-8b0b-7dcd24297b54 1 Other Other +9df22e2d-04b5-4057-a819-b706f272be09 1 Other Other +9df24d66-4ac8-4a9f-b578-55e0e782edd0 1 Other Other +9df29cf4-e86e-4a05-8b11-3e1da6f41a60 1 Other Other +9df2ae18-1451-4efc-99fe-8a0f556c851e 1 Other Other +9df2f0dc-2934-439f-b3f9-581e246a2bbf 1 Other Other +9df3482e-1c07-4158-97f3-a7160168c4e4 1 Other Other +9df35511-c8db-4fe6-9e29-6a3b3aab829b 1 Other Other +9df36789-2381-483a-99c3-0de00b84a184 1 Other Other +9df3d792-a6d7-49f3-9cee-4bae50244b99 1 Other Other +9df3e29c-87fc-4bf3-b442-695fc690dff8 1 Other Other +9df3ef20-2b4d-41c9-b2d3-1e572ce31eff 1 Other Other +9df407d6-f210-4bb6-bb61-d6f0917a317b 1 James Other +9df40819-80ed-4a1b-bacd-f9d27eea6f33 1 Other Other +9df43203-c04c-4264-bbc4-33a666ce45cb 1 \N Other +9df4447d-ba48-4832-8a51-4ba1a88648f5 1 Other Other +9df461da-30a6-4505-82b2-eccf85d2f6f9 1 Other Other +9df4bffc-5940-4d91-a793-4b0290610ad4 1 Other Other +9df4f562-444a-4781-b600-bdbc661f81d1 1 Other Other +9df51748-5c1a-4d12-89e8-db2fe23224f7 1 Other Other +9df51bb1-c4c0-4cd4-b19c-5cb77421a6cd 1 Other Other +9df57e63-c02f-4da1-85c0-73a43c7a308d 1 Other Other +9df57fab-792a-4678-9cd0-8e06d08113e7 1 Other Other +9df5a36e-5b33-4481-a371-185110b4032f 1 Other Other +9df5e1e7-1da4-42dd-afee-0eaea15290f1 1 Other Other +9df60842-0c77-4c0a-8398-a769793eeeb1 1 Other Other +9df614b2-fe51-4f2d-888a-adf62ff69c7d 1 Other Other +9df62de7-5f28-4cbc-84f5-d7f0316a9245 1 Other Other +9df65fbc-3ca2-42c5-b2d7-00dbc221d0f8 1 Other Other +9df67201-0b1c-40d7-9a00-89b40b10ca4d 1 Other Other +9df672dd-4ad6-4ff3-bd66-f80765439696 1 Other Other +9df6838b-a1e1-472f-a32c-19877a855217 1 Other Other +9df74d2c-88fc-4eb8-8087-6b98e95ba2a1 1 Other Other +9df75dac-ea5f-4919-ad19-c3c69805eff4 1 Other Other +9df78fb7-b3b9-4d53-9087-583de75e62fb 1 Other Other +9df7983b-49f3-4e95-9be0-fa8d716d8b06 1 Other Other +9df7a01c-108a-4244-96ca-4dc75885573d 1 Other Other +9df7a606-a28c-42a1-be0f-918320f2490c 1 Other Other +9df8102e-8dcb-4de6-b700-84371a8109ae 1 Other Other +9df82156-5cd7-442a-a9b0-f8f1f681a5ea 1 Other Other +9df8218e-c505-49a0-a0be-4426a8d7530a 1 Other Other +9df84374-2b8b-493c-a44f-e143a387e67e 1 Other Other +9df86110-dd30-4c15-a5cb-65fe12182092 1 Other Other +9df8769b-54ad-4f9f-9a8b-8c0da9446800 1 Other Other +9df8ab5b-2bfd-4de1-a790-1be2bf73ebc2 1 Other Other +9df8bdca-2d15-43dc-b210-9505de90e4a9 1 Other Other +9df8d096-d860-4886-808b-a36f55640b01 1 Other Other +9df8d3b8-62b9-49c2-8670-1335219e54e7 1 Other Other +9df8d9fc-b064-4a1b-b0db-b1f33710600b 1 Other Other +9df8e139-4714-4540-b3f1-1879c7125988 1 Other Other +9df90837-3657-4d09-8b09-454fba4228e2 1 Other Other +9df92eb3-5661-408b-a907-4d143e6e5332 1 Other Other +9df93adb-d053-4cc5-82d0-074c7e6c5755 1 Other Other +9df9478c-e4f7-4e6d-bba7-f7fcc9c48b76 1 Other Other +9df947f8-4e24-452e-89f2-37242f583a7d 1 Other Other +9df956d7-6cb3-4ae5-8ce2-5f2e1bcecdb5 1 Other Other +9df95f7a-6928-4eda-9fac-da6ca1ecc31f 1 Other Other +9df966c2-e01d-4398-a31a-445088f7c690 1 Other Other +9df98c69-41ec-43c1-b978-1313d86f43ce 1 Other Other +9df98e54-603e-4aaa-b4d3-b7da7c4ad1a9 1 Other Other +9df9b005-c067-41e1-93b4-ecb5f4bba8c7 1 James Other +9df9d5fb-d5cf-46a3-b0a7-1c132bb56426 1 Other Other +9df9e332-0ac7-4859-b301-97217aaf82c3 1 Other Other +9dfa6d4a-ab1f-49c8-9575-61c523f5c1bd 1 Other Other +9dfa8373-d0ab-41e3-be15-6a8b8d7f3691 1 Other Other +9dfa9850-4500-4d04-b16d-eb33888f5249 1 Other Other +9dfab25b-bdfb-4c16-a725-09837bb54737 1 Other Other +9dfada96-e327-49eb-8e2e-3373da898e48 1 Other Other +9dfaf36c-239f-11e8-9e38-fa163e8624cc 1 Other Other +9dfaf63a-0f6c-4ca5-a19b-e05442460002 1 Other Other +9dfb3068-cca9-4f3a-b700-486191d4f5aa 1 Other Other +9dfb3cf4-eb05-46b0-a4cb-3ef2adc9a314 1 Other Other +9dfb9dde-a54a-431b-bd67-dfb748c986f9 1 Other Other +9dfbf524-f200-4359-b50e-7c83acb8c3ee 1 Other Other +9dfc0d6b-efa9-4bc9-90c0-cacde9c1c2e3 1 Other Other +9dfc102e-e9a4-4517-a251-3ed08ae706c7 1 \N Other +9dfcb8e7-2e95-4c7f-9865-23a652deac41 1 Other Other +9dfcc4d6-686a-4c06-84f7-7cc9ea38f33c 1 Other Other +9dfce7c0-9d57-4898-a2b0-099745e207e6 1 \N Other +9dfcf6e3-6869-4f9a-ba64-e77f9fc4f2fb 1 \N Other +9dfd059e-d361-4174-b100-f92fbb8e75fc 1 Other Other +9dfd1088-a8b2-4dc7-b561-c6114dd75f92 1 \N Other +9dfd3842-867a-47c7-bb5d-d1bf6c7debf3 1 \N Other +9dfde654-4169-4a6c-94e8-2fde75fd1b5e 1 Other Other +9dfe2982-bc37-4e38-be6e-d5802c8185a2 1 Other Other +9dfe5aa2-a89d-490d-8cfc-95436dfa2c88 1 Other Other +9dfe5e6b-b705-4755-a9ad-9bd1fd48d0b2 1 Other Other +9dfeac09-ea16-4884-b5a3-ec2a1c77695b 1 Other Other +9dfeeb49-757d-4165-8ffd-fb84b498d543 1 Other Other +9dff51ba-592d-4cae-b62a-9a5bdb465627 1 Other Other +9dff5d42-c927-4fdd-b8c0-7527dd7b960d 1 Other Other +9dffe7c8-2a73-44f5-ae03-73ce70707019 1 Other Other +9e002f78-ef6e-43bc-80d2-2ac6dbf70d31 1 Other Other +9e0030ec-2d29-4a1a-9e41-0fdbdb10c7c9 1 Other Other +9e008ab3-43b7-4f81-9aff-6013fd1ad820 1 Other Other +9e00cdc2-707a-4596-8684-29275ded3695 1 Other Other +9e00e4e7-e315-41e9-ad50-2b5004822e22 1 Other Other +9e013ae0-a848-448a-b9c0-8b9ed55c766d 1 Other Other +9e0169f8-5f11-4735-b7e2-ec9234fb9fb4 1 Other Other +9e016a16-444f-498e-b443-51153610a8b3 1 Other Other +9e019168-cfe6-4b03-ac06-38d71968348b 1 Other Other +9e01dd3f-e66e-4ba4-a238-341f783ab45a 1 Other Other +9e025b29-52d6-4a21-a553-2a997ad40e93 1 Other Other +9e026450-7fa9-413f-87e6-96b906f55ef7 1 Other Other +9e0282c4-857b-42fb-a10c-d0216b814ffd 1 Other Other +9e02a95c-bb0f-4c2a-ad13-7f5cf5b703fa 1 Other Other +9e0363e2-a210-4f62-aa0e-56ed85ab0364 1 Other Other +9e0437f3-7120-4e01-81e6-d60da653241f 1 Other Other +9e0438a5-d5a2-4701-bc9f-b8510aea59f0 1 Other Other +9e04caaf-2c51-4793-9068-a797c7c5cddf 1 Other Other +9e04ff1e-f323-488b-93ea-6d45be02a3ad 1 Other Other +9e054b09-1b54-44a7-b9d8-0e49b17a52a3 1 Other Other +9e057bbf-805e-4df1-9e84-eb9cd8a50e38 1 Other Other +9e058a87-2ba5-4393-8329-ccf3666dd4b6 1 Other Other +9e058d56-be41-4d6f-9158-066b05ea49b0 1 Other Other +9e05c435-6cd2-40bb-80e5-544c180e8ed9 1 Other Other +9e05c638-2f43-46b6-8a95-b37df16d7a94 1 Other Other +9e05cc9d-8901-44f7-a2c0-7d98a7c9b9ac 1 Other Other +9e05dab6-9a0c-487e-a370-657e69e48bfc 1 Other Other +9e064e8a-24c7-4cf8-a4fd-bc562d1af065 1 Other Other +9e06a0e3-eb72-4722-aac9-c31adc7ceee6 1 Other Other +9e06fccf-bc9a-4426-b901-c33da6901c0b 1 Other Other +9e07a66c-af7d-498d-8588-1d0a1c2a3463 1 Other Other +9e07c167-852d-4d50-aa8c-c2220ec7a14a 1 Other Other +9e07f55c-e8d0-4a9b-a7d2-cda2074fc808 1 Other Other +9e083e02-8654-43aa-b50c-fc73474221e9 1 Other Other +9e084759-3275-4ba7-9c2e-dead5c043906 1 Other Other +9e08ca02-1129-4ec3-9f93-5fee6e5ad0e6 1 Other Other +9e08ccff-226a-4e9f-b164-2575bb204f4f 1 \N Other +9e08fb58-c4ec-48ed-b61b-69e188187055 1 Other Other +9e0900a3-d2d8-435f-b49c-5eb27716c3d0 1 Other Other +9e090cdb-ee4c-4524-a167-a4899320fceb 1 \N Other +9e09257d-283b-46f1-ac8f-712f3a70eb26 1 Other Other +9e095dca-db51-4016-861c-6119cad9bfdb 1 Other Other +9e096070-e9ad-49f1-a35e-71fb6358dcc3 1 Other Other +9e09b52e-fd5c-4553-b76e-96519585fd7e 1 Other Other +9e0a3e77-5f8f-467b-b3c0-c9ed209cc824 1 Other Other +9e0ac106-421c-4491-8b7a-60ed8692ad66 1 Other Other +9e0afebb-291a-47f9-8a10-988c74f1defa 1 Other Other +9e0b0a30-a097-4ab7-9812-3a850891d5e1 1 \N Other +9e0b93f2-d7d2-4ace-91a5-ca95ffec20ed 1 Other Other +9e0c3ebf-8fd7-41ad-8dd8-abcd2e955f22 1 Other Other +9e0c6f04-abf1-4c8b-8c5a-0dab38e303fb 1 Other Other +9e0c8613-8f75-4bd5-a697-edf4b6eb8979 1 Other Other +9e0c9292-8ce8-48b1-8827-6b752861c760 1 Other Other +9e0cc248-2b2c-4608-950a-b8af9c4a33d5 1 Other Other +9e0ce187-eb7d-4b9d-9007-2e39690c3f7a 1 Other Other +9e0d0762-8b89-4b59-80c0-bfcfa81e3b36 1 Other Other +9e0d98d9-3697-41d9-b0dd-76caa339dc22 1 Other Other +9e0d9c49-a1a4-47db-b055-d7806765ea1e 1 Other Other +9e0db9e2-1b9b-4d06-a627-e81b7a96aae9 1 Other Other +9e0e2c11-3221-483f-ab86-b5cdd0aa1c37 1 Other Other +9e0e34f2-470c-4c5d-ad79-e37dcc5d7c71 1 Other Other +9e0e4a13-0982-4bd8-a584-39f1ae967c28 1 Other Other +9e0e5516-f4c2-4f73-ba74-9ba792b186d4 1 Other Other +9e0e5dbc-8a7d-4a01-803c-b967388c4472 1 Other Other +9e0e8da6-d9c8-4d61-b243-4e8db1d4cffa 1 Other Other +9e0eb4ba-3dd6-4708-98db-17d185ba0411 1 James Other +9e0ecab5-caff-4f0a-a1b1-23639198cecc 1 Other Other +9e0ee9e5-e801-42ef-b88c-6d8ddb4b4228 1 Other Other +9e0f2a42-7441-4e0d-afb8-43a17870b707 1 Other Other +9e0f3a8d-12ad-4554-9531-6fc501e245d9 1 Other Other +9e0f53b8-598e-4454-9d2b-2280688c5d78 1 Other Other +9e0f6587-20ac-4fef-882b-edfd53fdbb93 1 Other Other +9e0f7209-5784-4ada-bc72-982f97780131 1 Other Other +9e0fda06-b16e-44db-b940-d047b489374d 1 Other Other +9e100ca4-c5cc-4ac9-9ae9-7758a0382f8f 1 Other Other +9e10137e-ceee-4970-a5a6-0c93279c5a0e 1 Other Other +9e105660-d02f-4aec-89b6-45f39f68cb40 1 Other Other +9e10a726-1f15-4444-9a9d-4004179dfe27 1 Other Other +9e10d252-86fa-467a-8220-4e8ae7d68625 1 Other Other +9e110bc9-aec4-4858-9039-88f8c22ca46c 1 Other Other +9e111092-a6dd-4300-bef3-703486b9daa4 1 James Other +9e11361c-35e0-40c8-9f04-f0353ccd7672 1 \N Other +9e11388b-9244-4d23-a7ce-4ab4ccd7d954 1 Other Other +9e115811-0107-4f80-a621-a57b6dfdc683 1 Other Other +9e11bcce-d896-438c-8634-6b483ce32471 1 Other Other +9e11cfa7-5468-43bd-9406-5464a1919cbc 1 Other Other +9e11d12b-07eb-44f9-ae10-9bdba6ae1903 1 Other Other +9e11f2cc-9cce-49a0-8b60-2d53df0b4e15 1 Other Other +9e126202-5014-455b-b1d6-6d603e404b75 1 Other Other +9e12919b-19ad-40d7-a6ce-c0a9dc055c25 1 Other Other +9e12c874-c0ff-4e55-aa6c-fe42089efb2f 1 Other Other +9e1314a5-b926-4fbb-8ff5-86bf845d471a 1 Other Other +9e133532-4209-48fa-8302-2913e1c0da30 1 Other Other +9e133cac-e61d-4c67-916d-8c25daa526b6 1 James Other +9e13432e-0a8c-46d5-92af-379d922d3bc9 1 Other Other +9e135367-f9c3-476f-a3a7-f706c4c44d52 1 Other Other +9e135d52-e423-4fc1-892b-3ebe74c06570 1 Other Other +9e13d201-e2a0-4cd0-af65-0267b2415779 1 Other Other +9e13fb05-2d28-49c1-8f23-aa86681bfdab 1 Other Other +9e141447-2f14-4379-baf6-16085ad2767a 1 Other Other +9e1423b8-c7d1-483b-aa51-67dd76462d8e 1 Other Other +9e142991-e222-4c2d-bbdd-9d9c048195fe 1 Other Other +9e14327d-510a-448d-8727-4bc305271478 1 Other Other +9e14591d-a046-4066-96ea-3282753b39d2 1 Other Other +9e14bdff-63c4-424b-be72-e98f10506a64 1 Other Other +9e14d36f-531c-4301-9c6e-da74b8aef634 1 Other Other +9e151391-4455-4130-a08c-6edaaf21a79c 1 Other Other +9e152e6a-6a8e-4126-87cf-7bc5e00ffaf8 1 Other Other +9e154507-efc2-4d18-944f-d22719fce670 1 Other Other +9e1591e7-70bd-41d9-bec5-092370fbde02 1 Other Other +9e15927b-5c06-460d-963e-33f491dba3bd 1 Other Other +9e1594b5-5f9b-443c-af12-99791f94f494 1 Other Other +9e15d58c-bc03-48c5-a897-d9f36c70a859 1 Other Other +9e160239-a4a8-4aec-ad24-f83a17e448e5 1 Other Other +9e169d30-38d2-4933-b1b3-472f804121b6 1 Other Other +9e16ef9c-4666-4629-b014-cc3009c071b8 1 \N Other +9e171e25-7f6e-4eaf-8308-a15a169baca6 1 Other Other +9e174741-d671-4532-a37d-cfda19e6c721 1 Other Other +9e1770ed-8ea2-4fe2-a4e8-53acdef659ed 1 Other Other +9e17da5c-fd77-4593-920d-b421d175e34f 1 Other Other +9e17ecc4-78dc-4d84-abe3-1dfc11b440d2 1 Other Other +9e18e092-1493-4e5d-872a-0ca4c5520e05 1 Other Other +9e18e0c8-5d70-4827-add5-b95528edb717 1 \N Other +9e1905c3-22f7-4a24-98d8-2e20ddaefc5e 1 Other Other +9e196445-3889-4530-a23e-d552311103f6 1 Other Other +9e199ea5-a73a-49f8-8b9a-6c69165f36d3 1 Other Other +9e19ac42-1938-4132-b5bd-63bb696c0a36 1 Other Other +9e19d0ce-fea9-4745-8e15-a07941f959eb 1 Other Other +9e1a2b04-6248-40bf-99a9-32bcc7b00d7f 1 Other Other +9e1a7f5d-6cc0-4c2e-85e7-603c75bc1d65 1 Other Other +9e1a88f3-349f-44e8-b0df-0629e99430f0 1 Other Other +9e1a8ce4-10f0-49d6-b111-2561755a0261 1 Other Other +9e1aea79-0adf-49e7-a209-caaa5317bb79 1 Other Other +9e1aec5f-2410-43ab-bf3c-6f68df5b7760 1 Other Other +9e1af560-062f-4fd8-af85-87ee1ca7dc19 1 Other Other +9e1b79f4-d268-4294-af52-30021d98b699 1 Other Other +9e1bb92a-6e0b-475c-beec-72be6a899c5a 1 Other Other +9e1bcf88-068a-11e8-b8d4-fa163e8624cc 1 James Other +9e1be223-aafa-4569-86fc-940157d0d6d0 1 Other Other +9e1ca785-74a0-434b-97c5-07a3a5415d5d 1 Other Other +9e1d050b-15e3-4423-9690-f7a39e644bfd 1 Other Other +9e1d0e33-143e-4fa3-8e68-b87744d4e063 1 Other Other +9e1d13c3-9e1f-44d9-8920-b6ee3e813255 1 Other Other +9e1d5dde-4cdf-4f2c-bee4-c86e831611ce 1 Other Other +9e1d8e8c-c893-4836-978f-683f45ee349d 1 Other Other +9e1d9546-6840-45ee-bbd0-13b9fa78636f 1 Other Other +9e1dc909-97b9-448c-81f7-8466c5c1c22f 1 Other Other +9e1df2c8-c09a-42b8-9d6c-533ca5f768ad 1 Other Other +9e1e2be4-55ce-4984-ba6b-5e070c179a5d 1 Other Other +9e1e4586-7f02-47d9-bfa0-386449daa1b8 1 Other Other +9e1e9fce-7bca-4a5f-8877-7a04cec2909b 1 Other Other +9e1ead71-1c93-41a9-acc9-0863a6efbfe3 1 Other Other +9e1ec667-2040-4895-bf77-435b2662449a 1 Other Other +9e1ed619-c876-4541-88c0-e56cb0b2a7e1 1 Other Other +9e1f2c28-c6d4-4ac1-8120-8d96d258fcc2 1 Other Other +9e1f6b52-68e2-487d-8093-5b2a1b4d22a6 1 Other Other +9e1f7376-080b-4b35-84a3-7898a40e415d 1 Other Other +9e1f9a3d-cd50-4d4f-a78d-48020a08d488 1 Other Other +9e1fc42b-9884-4ad9-8c5c-24e3a6d2097d 1 Other Other +9e20116d-5ff3-4ca4-9482-3965af576728 1 Other Other +9e204826-b33f-4c55-b1fb-5016f13819a8 1 Other Other +9e207cc6-6043-4c8f-85f9-d92b814311cb 1 Other Other +9e207d27-2aa2-4e83-804a-08f5082fa749 1 \N Other +9e209b3c-9f50-4d0b-8838-2191d3fd75e3 1 Other Other +9e20e7e1-17ce-4916-ad5f-93a41e70f980 1 Other Other +9e20eed8-5152-4c36-ab8a-4a4a084a87d3 1 Other Other +9e210408-ab8d-48f6-a5fa-587d26e2b7d4 1 Other Other +9e21051d-97cf-4524-a656-5c45192f24ce 1 Other Other +9e211822-3c56-4b31-9319-631e141889b9 1 Other Other +9e212e3a-e540-44ce-8e3a-d91210146c56 1 Other Other +9e215c37-b345-4c56-a50e-babff08898a0 1 Other Other +9e216e1d-5559-48de-8d24-0b51a7eab2bd 1 Other Other +9e217ddc-ccad-4513-8eff-75fbb0e4444b 1 Other Other +9e21f6fa-8d7f-4012-9ddd-e54b94c74411 1 Other Other +9e21f99c-402c-4702-8646-e2a2395d979a 1 Other Other +9e21fcda-0204-461a-80aa-d6740ab85a79 1 Other Other +9e22084f-cfc5-4afe-886d-bc3436483fa4 1 Other Other +9e220d08-0f6a-4c88-b55e-33a60001fed7 1 Other Other +9e223274-f986-474d-89d4-2fa1235dd6af 1 \N Other +9e22537b-9a5a-4be1-aaaf-9df3677d7e7c 1 Other Other +9e22956a-3226-4baf-b424-ee7db171b90a 1 Other Other +9e22af19-ac27-4251-b8df-5f1ba5320b31 1 Other Other +9e22e255-f577-4e80-aa87-274552245b91 1 Other Other +9e230100-0a0b-4c9b-8f82-d9ace17115b4 1 Other Other +9e23325a-276a-461d-b266-de071de1aa1a 1 Other Other +9e234437-e0cb-48cf-9505-033c81bc4627 1 Other Other +9e237299-1833-409a-a176-19683fc0492f 1 Other Other +9e23e77f-17d2-4910-bb8a-12abad0389a8 1 Other Other +9e244d0b-be42-406a-8bf1-9a92bd2ba9ae 1 Other Other +9e246c9d-8097-4069-bda8-d4aa764ada08 1 Other Other +9e24d561-b4dd-430d-8ead-7b52a9f06a0e 1 Other Other +9e250a24-67f0-4a8f-8476-114993c100af 1 Other Other +9e2511d6-ef1b-41d8-a652-3262aca25dc8 1 Other Other +9e252014-61ca-426f-ba59-353119f79513 1 Other Other +9e252ba9-82ee-4cc3-8749-e1453133bba5 1 Other Other +9e254409-9a66-47b7-9b32-09910abc8144 1 \N Other +9e2555df-0fcb-42fd-89e0-3b138f61fbfb 1 Other Other +9e25618b-598a-40d8-916d-9b892faaaaf3 1 Other Other +9e25eba8-23ab-4b79-9444-15490e2fbbe1 1 Other Other +9e264e00-df5f-46a8-b21f-cfe4e4f82c65 1 Other Other +9e2658f0-8c67-4216-a065-1eb4f8d860ba 1 Other Other +9e26643f-741c-454e-bfd3-ab20c9541f12 1 Other Other +9e26781f-05b5-4264-a4bb-c6daa40da18c 1 \N Other +9e26bdb7-6ebd-47ea-84ff-bd1e6b2e3021 1 Other Other +9e26da30-2276-434c-8f59-06aefe11cadf 1 Other Other +9e26fec3-3792-4eb9-bc7a-243368f462dd 1 Other Other +9e279511-df83-4f7d-9630-7ceb5731bde9 1 Other Other +9e27f2f5-6f28-422d-8185-d7866dd8bc90 1 Other Other +9e281213-9bd8-4d66-9035-81fa77b18408 1 Other Other +9e281cf0-6e66-47bf-a112-a2da9c338686 1 James Other +9e2897a4-bdca-4017-846b-dbd52c90c18b 1 Other Other +9e289ee6-aa6d-4586-bd5d-560e6f7fd873 1 Other Other +9e28be21-5753-47a9-9953-2b494b9b561e 1 Other Other +9e28ca28-4c41-4706-b613-e8c2291f6368 1 Other Other +9e28fbd2-766e-4541-82e4-a2231bc85a44 1 Other Other +9e290674-c5ab-4416-bfec-5681dba731a3 1 Other Other +9e290a60-78cb-428e-b920-f5c6a5cdece1 1 Other Other +9e292483-89f7-43e9-b28e-1018c905fa25 1 Other Other +9e295106-b9c7-4def-a5fd-ffafab6bac2c 1 Other Other +9e29732d-1370-4c42-a0c2-ec0accb9409e 1 \N Other +9e29b02e-3110-4c3b-82a8-ce91ae6df1a0 1 \N Other +9e29c8d3-4f67-42a8-9256-3c55ba4ae990 1 Other Other +9e2a3861-6d0c-45a9-b3f0-369e01ac93cb 1 Other Other +9e2a51a0-d63e-47ef-9970-d9b8efab17c6 1 Other Other +9e2a62b3-4948-4292-b793-6a305b85a9c4 1 Other Other +9e2ac17d-99a7-421b-aabb-56bff7bb0288 1 Other Other +9e2aeed6-34f4-461d-a365-f421c9d40d4a 1 Other Other +9e2b2343-7289-414b-96b1-8a9c0c8ca4fc 1 Other Other +9e2b3586-a0aa-4273-92d7-ad739aaff3c6 1 Other Other +9e2b3626-129d-4580-a7e1-50502fce5ed7 1 Other Other +9e2b4ec7-9d3b-49e6-9fab-a1b87970348b 1 Other Other +9e2b590b-d600-490c-8ff5-5c3da09335fb 1 Other Other +9e2b9f22-bf55-42c8-a360-8bbdb195ff94 1 Other Other +9e2bab55-0249-4d2c-b3ed-32bce9ffa79f 1 Other Other +9e2bac59-7a8d-422c-8f70-4688679fb761 1 Other Other +9e2bb7c7-5739-496c-a61e-3385e5ae18f7 1 Other Other +9e2bb932-e73e-429f-8ace-57f822fda7c9 1 Other Other +9e2bd18c-a53c-4b13-80a2-d6d8f63b0722 1 Other Other +9e2c4c31-9874-4ec1-8286-c45cfa8e49a3 1 \N Other +9e2c6490-c3d0-4a8e-8691-f2bf04e88ba7 1 Other Other +9e2c6b72-b51a-4ecd-ae5d-5f88cab7fa2c 1 Other Other +9e2caa62-1b34-4e0e-900d-f0ac75467c56 1 Other Other +9e2cb543-1e5c-4b05-a732-33dbebda82ed 1 Other Other +9e2cb5f3-c06c-4edb-ab61-ac08332f6d6e 1 Other Other +9e2cd5aa-5aab-41de-a538-ba0b0b0ba66e 1 Other Other +9e2d09d4-994e-4a8d-96f3-0ec55d22d590 1 Other Other +9e2d11c8-50b4-4bb1-8e77-3e7bac49ae81 1 Other Other +9e2d1759-7bd8-48dc-bc98-9f3cbc48ef33 1 Other Other +9e2d1ff8-6dea-4111-be1f-38c956acb5ee 1 Other Other +9e2d489e-f57f-4430-9869-a85f78db15f2 1 Other Other +9e2d6589-371b-4c64-bc7c-cca71a2dd031 1 Other Other +9e2d8f7b-3ec8-4808-b9c2-f6ab7ddb83fb 1 Other Other +9e2dd750-40ff-47ca-815a-514411e27320 1 Other Other +9e2df5a4-953f-44e9-aa67-313b8fbbc2e6 1 Other Other +9e2df890-272c-46e3-9bad-b48a450ee8c7 1 Other Other +9e2e0b93-a22f-4ee6-b3da-84be3072b870 1 Other Other +9e2e2353-8f2a-4403-b090-5dace421a3e1 1 Other Other +9e2e2ad3-170a-4553-8792-6eea6e6d7a13 1 James Other +9e2e9089-cdd5-42b9-8719-16ae057e5ce9 1 Other Other +9e2ebf1f-5462-439d-a634-789ace97297f 1 Other Other +9e2ece99-21a4-4516-bc4a-3a40b5a19e0d 1 Other Other +9e2f40de-904f-4c19-873e-74181604ef86 1 Other Other +9e2f81e3-4163-4a5b-8240-4b1d985cfc9b 1 Other Other +9e2fd178-1d8e-47c9-80d6-787e7da0275e 1 Other Other +9e2fe0c8-00e3-4733-be05-42f9b61ebd1e 1 Other Other +9e30359d-1574-4cb3-b806-ca43820feaac 1 Other Other +9e3054bd-54fd-47d4-8633-4f12cdfffc60 1 Other Other +9e3062fd-8c20-49ce-9b2d-b404542f0b81 1 Other Other +9e30cbc0-b346-4f50-882d-584180cdd140 1 Other Other +9e3110db-f5e8-4184-9013-f74f75e7a641 1 Other Other +9e311690-2a05-44cb-9692-47ad77fc0885 1 Other Other +9e3135b5-3cf0-434b-aefd-0d58238d39e4 1 Other Other +9e313bec-2f37-4850-8a28-f2e0ad6826c6 1 Other Other +9e316a19-14a2-4282-a23f-cd39d9e6067b 1 Other Other +9e318041-093b-4d13-b8ec-f776e2fef3ec 1 Other Other +9e318e0a-282d-43fa-b437-1b087174346a 1 Other Other +9e31f7db-37a9-4978-90b3-bef7014635aa 1 Other Other +9e325a98-0025-45a0-943d-3fb3c8ff422b 1 Other Other +9e327b4c-1948-4f1b-9baf-0e78d1359ad1 1 Other Other +9e32878b-fb05-47fd-8fe8-1e485fa2230d 1 Other Other +9e32b716-35de-4a6a-9657-6435ae6ca7d8 1 Other Other +9e32b869-bb11-4d0d-93be-9f7747302cba 1 Other Other +9e32d6d8-d9a7-4320-81f2-db4aa680f5b4 1 Other Other +9e32e1fb-9e00-4101-8396-0b704aabed76 1 Other Other +9e32fa0c-3d7b-4167-afb2-e5d81e4ae65b 1 Other Other +9e33030e-fcb0-4a55-b316-046ec4d131ae 1 Other Other +9e3315ff-f9a0-4e14-bd46-66ef548c516a 1 Other Other +9e3317ad-5452-4e3d-82db-38fccc67dcaf 1 Other Other +9e331862-641f-4697-b78c-70da614df10b 1 Other Other +9e3332f9-f849-4a5c-9c00-2d17dcc38af6 1 James Other +9e336728-42a4-469a-9d3f-05f40a316a44 1 James Other +9e338c24-1c6f-4ed3-9f89-84073821ab8e 1 Other Other +9e33d8f9-7f19-4267-be18-aa558c8171b4 1 Other Other +9e3479d4-8727-4732-84eb-875f1b0fe4e7 1 James Other +9e3490d8-8c2c-4b96-b57c-08e9049d538a 1 Other Other +9e349ea0-0a10-4a97-bc13-acb5524b05eb 1 Other Other +9e34ae61-9a24-4f35-9b16-7b63f971e0b2 1 Other Other +9e34cdc1-5d8a-4652-b35e-92538e7f7287 1 Other Other +9e3508f7-a599-49e0-a974-3c7343841b40 1 Other Other +9e35370a-bc2a-46ef-b401-bd96e19ee588 1 Other Other +9e354c72-3960-4a3e-b956-2976aac7eb42 1 Other Other +9e3585f8-3e18-4bab-bc19-dfa0cd299222 1 Other Other +9e3611f2-8143-48f8-af86-2ca498576e0d 1 \N Other +9e36b6b3-8774-4029-97a6-349037a4e79c 1 Other Other +9e36e10c-ec9c-47db-8ef8-226254f148a8 1 Other Other +9e37419b-e05e-4284-86d6-af066982735d 1 Other Other +9e37474c-4af2-4c7f-a449-4987a3e7d099 1 Other Other +9e3779f0-6c50-4b80-9103-e367ad964b07 1 Other Other +9e37a9fd-b2e3-44ef-81ae-df77511c08f4 1 Other Other +9e37ac11-518d-4996-855f-028b64f78997 1 Other Other +9e37c671-c0a2-410a-9a5b-4a00ea021ae6 1 Other Other +9e38124c-49df-41e9-b7bd-95270dfc29a4 1 Other Other +9e38507b-78d1-43d2-9a7c-dee8d3ef4e8c 1 Other Other +9e38bc2e-b503-49fb-9579-bfb7e8b149a6 1 Other Other +9e3995f4-e94b-4b71-8813-5725c4734651 1 Other Other +9e39f48e-3642-41de-83c3-184c3546cdaf 1 Other Other +9e3a7719-ef0d-4f44-a6b7-5bf5d251cafe 1 Other Other +9e3abf22-9773-4f6d-a8ac-88c48f977214 1 Other Other +9e3ac03c-af74-47f3-adfb-3f31853723e3 1 Other Other +9e3ac8eb-514c-44a4-a86e-180df8316a20 1 Other Other +9e3acb19-3e5c-40a6-a884-3addb86d418e 1 Other Other +9e3b5a95-a7d5-49bc-9397-97cf48740ac0 1 Other Other +9e3bba2e-4921-4a1e-819a-cbddf78aa091 1 Other Other +9e3bd0ef-accf-485c-bd66-5775d96037f5 1 Other Other +9e3bf6d8-0c7c-4290-9f83-1fc76dda062d 1 Other Other +9e3bfd35-77b8-4e24-8e8b-148390d48b70 1 Other Other +9e3c1607-4d2c-49c7-8b73-7ecfa1d7c416 1 Other Other +9e3c1abd-4cb9-4083-b0ba-365ea3ef5111 1 Other Other +9e3c22a1-bf12-4cb5-bcd4-c25547827765 1 Other Other +9e3c3e94-d7fd-4910-99ce-a72dfa3c712b 1 Other Other +9e3c44ac-f188-47e0-8bfe-fe9ed061174e 1 Other Other +9e3c4b5f-7c5c-4415-af71-44d3e4087f65 1 Other Other +9e3c6b4c-25ab-483a-9764-30f48aece4ca 1 Other Other +9e3c71a7-8cc9-4de1-9eaf-87b97d3ec525 1 Other Other +9e3d00c8-c0a5-4b43-95cc-05ba9eb747fe 1 Other Other +9e3d1985-6436-44df-99e5-2edae291f754 1 Other Other +9e3d540a-30fd-4d51-ac82-1c80598fde9a 1 Other Other +9e3d5918-2a00-4113-8f47-0d59b8404ee7 1 Other Other +9e3dc7d4-7ff4-4755-97b3-ab6699c97258 1 Other Other +9e3ded6d-1265-4ce7-9657-675aec14e2f4 1 Other Other +9e3e3606-55c5-4409-a89a-62c419d05448 1 Other Other +9e3e781a-baf1-4c9e-93f9-04393b3fb3b5 1 Other Other +9e3e8ecc-6cb9-4b62-9b01-7bce3bd9c477 1 Other Other +9e3eb8de-1adf-42b9-86c4-99608052f1df 1 Other Other +9e3f1267-6757-4b51-97f9-efbcd8bfa762 1 James Other +9e3f22cc-d1cf-4696-ab59-8baee2b3568a 1 \N Other +9e3f4181-aeb8-4ac3-9da1-034419a7f6c1 1 Other Other +9e3f8709-203e-4083-859b-b0a350ae2b0c 1 Other Other +9e3f91ec-6743-47a6-b1b4-ba2a2ef4aa0f 1 Other Other +9e3fae4b-3b0b-41f9-a989-3ed392f086dc 1 Other Other +9e402fd5-925d-46b9-a9ae-5bcdc1644428 1 Other Other +9e406422-bc1c-4d2d-82ef-707da264b374 1 James Other +9e406546-1308-40ae-8890-7a6228852adf 1 Other Other +9e40895b-e167-4727-b522-c9bc2c47ad65 1 Other Other +9e40a7ad-a3f7-4448-ba65-4d14871cd1f7 1 Other Other +9e40b455-77b2-4f20-a18a-c801223bd7a3 1 \N Other +9e411c26-f385-47b2-a32b-f2e99788b282 1 \N Other +9e413364-6161-4661-8f52-b63f467d7c35 1 Other Other +9e41491a-89de-4121-bd69-c37d7f26e21a 1 \N Other +9e4156b9-d2e4-41e7-8450-29faa0d26199 1 Other Other +9e419253-54a3-4435-8047-a2362085dc10 1 Other Other +9e42090f-e5a2-4fa8-8cf4-923171fa15b8 1 \N Other +9e422553-58ab-4b11-ac09-24feefab7f4f 1 Other Other +9e4245b0-b4ee-4ff9-aedd-a5941cc5ea85 1 Other Other +9e429247-ee18-47c5-8c46-85402be9a338 1 Other Other +9e42bc00-f373-446b-9857-834f0f66e3d6 1 Other Other +9e431ec9-f5fa-49ce-b7b1-624caa083d98 1 Other Other +9e431f64-5717-460c-9170-fc830eca2895 1 Other Other +9e43205d-643b-4111-aab0-ccea36b4dcf4 1 Other Other +9e432cdc-e399-471c-9a96-2137bd022644 1 Other Other +9e4354b6-28db-46bc-a757-65c6961e9a4c 1 Other Other +9e43a8d1-830d-4593-a47d-7b8cb7093340 1 Other Other +9e43d59d-a228-44af-b9d5-64f2773ac2ff 1 Other Other +9e4450b8-33cc-4270-961d-65acf9aa2d42 1 Other Other +9e44714c-3661-4de8-9127-383ff84dd6b0 1 Other Other +9e447de2-c53f-46d2-8f77-03f18b2285c7 1 Other Other +9e448507-f1e0-4a0c-a34d-783f50d6f4ac 1 Other Other +9e448b7c-7ac0-44f9-8d1e-c400dc4a6326 1 Other Other +9e44c493-2af2-49e7-8125-e9b0a0222f1b 1 Other Other +9e44d222-7ce3-43c7-9eca-ee51eaec50c0 1 Other Other +9e452a07-cd90-418b-be54-d9f6f6dfe82b 1 Other Other +9e4532e6-e182-4bb2-bb84-d960f6605865 1 Other Other +9e454975-5330-4d4f-a93d-84d8d83c8327 1 \N Other +9e4597c0-1bcb-417f-be1d-193de20c1f61 1 Other Other +9e45a46a-3f2b-4980-8204-a48cdf3e37af 1 Other Other +9e46463a-19e6-48dd-91a6-058adde7e193 1 Other Other +9e46575b-d989-4196-bf39-17c547912c53 1 Other Other +9e467415-a9ec-4e8c-b598-850c542df235 1 Other Other +9e468ffa-bc97-4dd6-8334-bf3f8d9842f2 1 Other Other +9e46993f-b8e9-42b4-9364-02858d98e8ac 1 Other Other +9e46c230-8f3c-42b4-9d59-20fbdb123abd 1 Other Other +9e46ca46-dc61-4466-ba4d-e543b5320440 1 \N Other +9e471137-0b7e-4cda-a292-103caa427779 1 Other Other +9e478ece-4065-4492-aa6a-272f6bc1d06c 1 Other Other +9e47977b-45c6-4143-94f2-82bc16e5c23d 1 Other Other +9e479fd2-433f-4a2a-8612-43ba5244b53d 1 Other Other +9e47a54b-2579-4864-8e8f-2860bf6af436 1 Other Other +9e47e586-2c6a-4fb9-b7bd-f2b5999c5e8b 1 Other Other +9e482c35-c062-4706-9cdb-fb9520a0500d 1 Other Other +9e48639e-7a07-465b-988e-00d1238ed456 1 Other Other +9e486b3e-3dae-42ff-8432-55abc86ee0e5 1 Other Other +9e487f95-48da-4c58-9f76-2a4bab5283a1 1 Other Other +9e48b796-6a42-498c-956a-03f0987a11b3 1 Other Other +9e48e0ba-0e5d-4aaf-82d7-56954af083d8 1 Other Other +9e48eea8-c64d-4596-87ac-fa44f0285ddb 1 Other Other +9e491695-b10d-471c-b5e2-68b1e2a65798 1 Other Other +9e494dc2-5cb7-49d4-b28d-dfde17a43fc3 1 Other Other +9e498122-baf4-4e3a-8467-b6a78eb8c04d 1 Other Other +9e4988eb-5086-4413-bd8b-c08420411eac 1 Other Other +9e49b739-8576-40fd-ac04-4f6b066e552b 1 Other Other +9e49d547-2f05-4c38-a5d8-67707f5643c2 1 Other Other +9e4a18f5-394a-4517-a494-8aef16daaf47 1 Other Other +9e4a5411-9e00-41fb-8fc3-4a22fe04fffb 1 Other Other +9e4aa349-5d3a-498b-bf76-ccb24dc2901a 1 Other Other +9e4ab96f-22e2-4552-96b3-b69067f1cb15 1 Other Other +9e4af0fb-beca-4fa6-9ad4-e547bf71a291 1 Other Other +9e4b1a5f-9208-4cbd-822a-25585ac5650a 1 Other Other +9e4b41e3-be2b-4925-aede-2e22511500a7 1 Other Other +9e4b5fea-f06e-4d27-b291-bb9ded0ffe49 1 Other Other +9e4c27cf-16ba-4ff1-89d6-76e55d29ab4d 1 Other Other +9e4c3a6f-e0de-4a80-a422-0780bcfeb97d 1 Other Other +9e4c3e1e-dc89-457f-afb8-90a14979e273 1 Other Other +9e4c6cdd-139e-43cd-8b74-e4edaa9031ce 1 Other Other +9e4c7574-fd87-4445-a9bb-5c2e4152c70f 1 Other Other +9e4c99cd-5492-4c0e-b0a3-3600f894abc9 1 Other Other +9e4ca52f-04cc-4c7a-8a78-a86497bbc2d0 1 Other Other +9e4ca5e6-f961-47f3-9590-bb4abaddae50 1 Other Other +9e4cf812-a278-43e6-99c9-e8cd1faf9f05 1 Other Other +9e4d085b-3997-4537-8858-a3637025bdc1 1 Other Other +9e4d27b2-e111-489e-ae63-4eab301dc8bb 1 Other Other +9e4d4523-9fa1-4371-8680-fa1bff87baf4 1 Other Other +9e4d5222-e06a-42dc-9cb6-fa697e8b17cf 1 Other Other +9e4db927-b77d-4a7b-9c86-45d99bb755a2 1 James Other +9e4dd44d-77bb-4976-8dbe-bf8837c50815 1 James Other +9e4dfc05-eac6-4a72-bdb0-a5ba44f43056 1 Other Other +9e4e3c41-ffb2-4044-b5c2-cb4eb8dceaef 1 Other Other +9e4ecbed-569f-453d-be45-49231a83706a 1 Other Other +9e4ed16d-3298-49b2-bdf1-b95a13e26ae9 1 Other Other +9e4ef25a-d219-4b22-b9c0-96c64d1bd2c4 1 Other Other +9e4f15f7-30e5-438c-b653-1e7b9dad3a93 1 Other Other +9e4f7594-5c80-404f-b5ab-50499c01764c 1 Other Other +9e4fb130-5ced-4629-b99c-e7ead76675b5 1 Other Other +9e4fb883-8d6d-4ac9-b854-d9112e38838d 1 Other Other +9e4fe364-2e55-4ddc-a348-9adbff0e322b 1 Other Other +9e4fe3ef-cc5a-40db-8755-d9f63e3c8bf7 1 Other Other +9e4fe999-73f2-4c52-b7d2-775252e3028e 1 Other Other +9e4ffa03-297e-4807-9454-434583944e05 1 Other Other +9e4ffb0a-0a13-41f9-81ae-ad01f00c1dad 1 Other Other +9e501bef-e321-4853-80da-a12baeb657cd 1 Other Other +9e5093f2-0ede-4533-ba09-4daffe71dfd5 1 Other Other +9e50efa4-51ab-4c8e-83c7-bde5090c5bd8 1 Other Other +9e50f07c-bf0a-4489-9f67-8bc8c532d4ac 1 Other Other +9e511166-207d-4af5-8a98-a15b3af1db39 1 Other Other +9e511336-27a4-4f0a-bbea-00921194d79c 1 Other Other +9e5113f2-59a4-4bd8-93f8-89760abb1b7f 1 James Other +9e5122bd-56a6-41b3-9f06-86ec9a3bae87 1 Other Other +9e5159f5-b1c2-4957-bf65-64a46cd09701 1 James Other +9e516537-2e60-4387-8109-71121b863bd1 1 Other Other +9e521539-4af2-4832-a622-40cfa5438ba9 1 Other Other +9e5250e1-4d55-452c-b5af-46d3fd5a5179 1 Other Other +9e52aebd-35a6-42f3-8f2b-8a512f4ccf82 1 Other Other +9e52e3d7-16b5-4da6-94dd-51b5874aef69 1 Other Other +9e53413c-06c3-45ef-a899-8bcded139999 1 Other Other +9e5343ed-332c-4f12-9824-1300665d987f 1 Other Other +9e534d17-3fad-4ec4-92bd-f69fbbf481d4 1 Other Other +9e536ef1-6e4f-457c-9c9e-15853575da68 1 Other Other +9e537718-7189-404e-b106-2addac4c935b 1 Other Other +9e538f06-6275-4e88-a06c-bbfbf6d20f1d 1 Other Other +9e53eb0d-27c8-44f0-bdd0-a2127c0ca1f2 1 Other Other +9e54974d-c2b0-4cf5-b215-ee6a6b883168 1 Other Other +9e54dfd7-83ca-4bb5-92a1-451985836715 1 Other Other +9e54f189-21e5-4a77-a095-eb0e821b9a97 1 Other Other +9e5530a5-093b-4a67-ae8e-669e2689fe22 1 Other Other +9e5538fa-74b8-4cb3-9820-775a1d994d79 1 Other Other +9e5543d8-9556-4356-a37b-5a10ce12e2b2 1 Other Other +9e55ac3b-585d-459e-a1a1-7c3f78df3cfa 1 Other Other +9e55b678-8b52-45c8-a978-638b584270ab 1 \N Other +9e55cd97-1983-43dd-a939-6de852471d91 1 Other Other +9e55e8dd-9cf1-4c6c-b444-5719ac0c3b3c 1 Other Other +9e55f4a0-64c8-42cb-8043-62052741367c 1 Other Other +9e563e1b-a7bf-4ccb-b9f9-ca8efaefcf7f 1 Other Other +9e563f64-ed92-45cd-b34d-4af176e3c23b 1 Other Other +9e565056-69c8-4989-a428-ea76e36e46e9 1 Other Other +9e5675ec-4325-45bf-9ade-d02f150c057f 1 Other Other +9e570506-da7c-4179-84ae-6d7208a38372 1 Other Other +9e575126-8817-42a3-8af3-903d05165165 1 Other Other +9e5787ec-4d62-43d8-9bca-484dbb69f0b3 1 \N Other +9e57bcbb-58e4-4b93-8f86-c54c328fd192 1 Other Other +9e57db4b-314e-40c0-b876-49fe33185460 1 Other Other +9e57f7b5-2560-4837-9b90-eb40207daaeb 1 Other Other +9e58198c-d259-4b56-b696-7ba65bfb2605 1 Other Other +9e589364-2725-48fe-8397-04a7b89f6421 1 Other Other +9e59495f-2978-4ca8-8326-84ccb9cc26d9 1 Other Other +9e597eae-f780-4ff7-85c7-da62d9ff8e71 1 Other Other +9e59a437-5680-4d35-8144-d79edde8463b 1 Other Other +9e59b142-ae05-4c4f-a11d-7a42c896288e 1 Other Other +9e59cee5-0d62-4a8a-8a0e-4301e5dab89a 1 Other Other +9e59def1-cb7c-4e2e-b045-398813a6fc64 1 Other Other +9e59e106-c620-4981-a39b-7ac650711050 1 Other Other +9e5a0179-cda7-4898-a6e0-13569c52f76e 1 Other Other +9e5a074c-309e-4946-9294-34312fe1e54c 1 \N Other +9e5a1386-bac1-4812-92ac-9e8124919070 1 Other Other +9e5a2776-6d4f-48bc-8b46-2ffdb661135f 1 Other Other +9e5a7e2f-a47d-4c3d-b357-a67dae26adbb 1 Other Other +9e5aaefd-8e3e-4cd1-a83e-aff3ce060203 1 Other Other +9e5b0234-9e68-4643-8c1e-19351ab6c14f 1 Other Other +9e5b50f0-782d-42db-9c58-b25dd9602026 1 Other Other +9e5b8d1c-d727-4c65-a162-1b1392d46650 1 Other Other +9e5bbbde-fdc8-4da1-a932-18539bdaf638 1 Other Other +9e5bc8cf-c306-4896-9c85-6f21d24b315c 1 Other Other +9e5be694-cbe9-4aed-b609-011aadb619f4 1 Other Other +9e5c55a4-1a33-45e7-9cda-9b9fe136bb94 1 Other Other +9e5c9f7b-57b7-4b99-82d7-564aac92f108 1 Other Other +9e5ccd89-58e1-4222-be16-6d5e0ba4cab5 1 Other Other +9e5cd967-e746-4895-9138-01c2cfe914cd 1 Other Other +9e5d1685-f3a4-4ea1-b364-5f500077ba7f 1 Other Other +9e5d2b10-3831-4322-831d-60b5281ad9ad 1 Other Other +9e5d5146-372b-4a7f-b69e-b80c0fcf6114 1 Other Other +9e5d8f9f-18c6-440d-a150-43131be9ca83 1 Other Other +9e5ddfaf-0dfa-4b9c-b77b-b18d1943c31c 1 Other Other +9e5df174-9306-475e-b2b5-99f2ae67c9a0 1 Other Other +9e5e2e79-b960-490a-8cf3-e22f0847b097 1 Other Other +9e5ee5f3-54bd-4348-ad00-c0e937f037e9 1 Other Other +9e5f3ad7-af4a-4ddb-8e6e-f59f020f6ab8 1 Other Other +9e5f5f9c-350c-4a53-b089-b563df6e14fc 1 Other Other +9e5f6b31-cbf0-43c8-8567-10adbc23f6d5 1 Other Other +9e5f9cf8-f5e5-4338-8675-062b4a0abe84 1 Other Other +9e6010b2-0636-4ca9-91a3-4de5520a5150 1 Other Other +9e601940-615f-4b17-807d-7c01d3ff63c3 1 Other Other +9e611ade-db82-4e06-9e8f-ce1412289767 1 Other Other +9e611bae-ead2-4f90-91fe-47c855802c9a 1 Other Other +9e6121b0-5143-4229-93e0-799eab69301b 1 Other Other +9e61977c-dcd3-4f0c-9dba-7a2c3b3e4e19 1 Other Other +9e61af55-8c82-4b87-abbc-dfa0dd2a8bc2 1 Other Other +9e61ebae-da14-4098-956a-ee0ddec079a2 1 \N Other +9e61f972-3b61-4fd2-bc88-92a0d9d0ba77 1 Other Other +9e61fec2-46a6-4e2f-9307-61f9bce4ced6 1 Other Other +9e62059b-f0b6-415c-9188-910a2f369200 1 Other Other +9e6205b9-76e0-4b62-9f59-4b75823b6edd 1 Other Other +9e622424-ad1e-41e9-b4ed-b1c86f25081a 1 Other Other +9e62901a-0dcc-4093-bb9b-67a63526fdc6 1 Other Other +9e62e7cd-d45b-421b-a09e-0cbd298c12fa 1 Other Other +9e635406-2d52-44b1-9fa9-28ab425e2b4c 1 Other Other +9e638e73-4dd1-453a-a277-e28414361918 1 Other Other +9e63a0eb-d82f-4445-9780-f2fb9d597751 1 Other Other +9e63ff95-6105-40bb-b94a-91f6e9340677 1 Other Other +9e640686-cb34-4365-94f1-323bcea5010c 1 Other Other +9e64631c-e8f3-4636-86c2-f50d883ed2da 1 Other Other +9e64ebe1-6b60-49db-8c51-5e266fbd5cc2 1 Other Other +9e651ae7-73c2-4a03-9e2d-14d400cdb123 1 Other Other +9e654ad9-1e85-475e-b0a8-7294dbd7eaa3 1 Other Other +9e655011-0c27-49a1-9402-88c5be7aaa04 1 Other Other +9e6587e9-2cd8-4933-a606-576ce09e02b3 1 Other Other +9e6591e3-ed35-4426-b52c-546fe52976e4 1 Other Other +9e65d84f-8ca0-4b44-8092-54401da8b0eb 1 Other Other +9e65e49e-6161-4198-b958-63e4b0be29c2 1 Other Other +9e660daf-fceb-4265-b1f8-ab050ddf511f 1 Other Other +9e663236-681a-44ae-a5e1-9c5460095b52 1 Other Other +9e667ad5-b143-4aef-951d-024fb992ddf6 1 Other Other +9e6686b0-a19a-4763-a297-ad48ee6ea21a 1 Other Other +9e66e8a9-9b19-40a3-81b8-e89f986a1ea2 1 Other Other +9e670811-d0e4-4887-a1af-fbda31b17783 1 Other Other +9e671e42-c412-4aa4-aae0-83ab6df1a783 1 Other Other +9e6738b1-e3c8-425a-ab57-9f72b8cbc1a9 1 Other Other +9e677e0a-afe6-46b7-a635-e75c59bcb98c 1 Other Other +9e6781e7-53ed-4ebf-a648-85d6a946e17a 1 Other Other +9e67aa60-efdf-40f5-9aa5-62428988cfc3 1 \N Other +9e682a44-f539-4580-afe9-2c75f6b4f1a2 1 Other Other +9e682b6f-cb7b-473d-b7a8-b091dbc0ef19 1 Other Other +9e6852bc-533b-4932-a0df-9d66bd78f781 1 Other Other +9e68ba71-6b64-46bc-bf19-93d45eb53f39 1 Other Other +9e68da68-ad40-491b-aa9f-5724ebefd7c7 1 Other Other +9e68deb0-e884-4b53-bfc6-3c2f76e54554 1 Other Other +9e6991ba-31c9-447a-bac1-dc5cb1d8758f 1 Other Other +9e69a1d8-e1ae-4a28-b589-d4319b6fc695 1 Other Other +9e69ab7d-6a8f-48d5-bb4d-ac880eeac90b 1 Other Other +9e69d990-ef1b-4ed7-ac0c-c5068edfa48a 1 Other Other +9e69da76-89a9-43fe-8879-5bf7832d48e0 1 Other Other +9e6a0c2c-43f7-41e1-967c-b59900f0ed2b 1 Other Other +9e6a11a5-caa4-4043-9d46-2b3677b883f0 1 Other Other +9e6a1e57-0b50-422a-b26e-01eed7d54156 1 Other Other +9e6abc3b-ed74-423d-84dc-fb9aea7a9068 1 Other Other +9e6ae078-8466-46ba-82e8-10c9780ab050 1 Other Other +9e6aebbc-563a-4467-9650-7f8ffc8627b0 1 Other Other +9e6b68e7-7757-405c-b109-5e4163cae389 1 Other Other +9e6bc1fa-5707-4781-b7a5-8d2749f20e97 1 Other Other +9e6be0ca-09f6-4b9d-87b8-7f3821a6690e 1 Other Other +9e6be65b-0529-4d58-9dc6-60ae0f627af6 1 Other Other +9e6bf8ed-67c1-4e31-9a4b-78cc0e38c7bd 1 Other Other +9e6c2a64-d29c-423f-978d-64dd9c28f444 1 \N Other +9e6c3a8e-48f1-4df3-ad58-ec01a14274e1 1 Other Other +9e6c41cd-6e52-46c5-b013-0188302b465f 1 Other Other +9e6c7871-2076-4663-84c7-ccd651eaa786 1 Other Other +9e6c94a7-6085-4285-98c6-1979254f0466 1 Other Other +9e6c998d-61a2-423d-8c64-4e250412c0e2 1 Other Other +9e6cadaf-d55f-4f36-9550-d753b0260975 1 Other Other +9e6cb54b-ebe3-463a-b2df-7e128e5774c7 1 Other Other +9e6ccad3-fff0-40d8-b084-2d54ad811c2e 1 Other Other +9e6cf769-e19f-44de-8508-bd07333419d6 1 Other Other +9e6d6582-a8b9-4b82-a8da-3675b8400ae7 1 Other Other +9e6d8192-e878-44f1-bdcc-47eac271bd11 1 Other Other +9e6daa24-6f5b-4db1-b6c4-2ce942f83829 1 Other Other +9e6df47a-73fb-4bac-9c4a-6174ea752466 1 Other Other +9e6e2824-1d41-4594-91d6-c80df798909a 1 Other Other +9e6e906f-9b97-4477-830d-91c4ab3b0eec 1 \N Other +9e6f13d4-e9e1-410f-b2dd-7c8c4d20d363 1 Other Other +9e6f4e3f-f091-4711-85bb-db60bde82673 1 Other Other +9e6f7eaa-5021-4210-a677-0c59a72428e7 1 Other Other +9e6f883d-06a8-41a5-af87-833d64fb3c0e 1 Other Other +9e6f8f2c-ef20-4dde-b03b-f017ad846ac5 1 Other Other +9e6faf4d-dcfa-4484-9a0b-d3c6775cefa0 1 Other Other +9e6fed24-1023-4473-8d05-8bfdf3da1185 1 Other Other +9e702e0d-8b65-4e5b-80b6-c6d9ea415196 1 Other Other +9e703f51-b488-4db8-a6d7-26ac93c82c74 1 Other Other +9e70a7d1-59a7-48e7-991b-685ea0d69911 1 Other Other +9e70ce9a-9e8d-457e-b412-3d40d9239971 1 Other Other +9e70eb45-7639-4b20-b056-78edfc023753 1 Other Other +9e71c21d-4572-424b-8e49-05e295110c91 1 Other Other +9e720e31-9097-487c-bc14-fceaf93cdbe3 1 Other Other +9e72c196-0c5c-4427-b3e4-0e1df32b8034 1 Other Other +9e72c36b-6285-438d-8587-261552108f52 1 Other Other +9e72c5c6-8273-4122-accd-a42d8996b6a7 1 Other Other +9e733d51-5283-4fc8-bbe6-d1af00afc9c1 1 Other Other +9e7355d7-63ef-47b5-ab7e-98b8c02a3664 1 Other Other +9e73b5f7-dc23-4c85-95b6-4a0358ccb06d 1 Other Other +9e7408df-5bca-4683-b756-79c4768dc310 1 Other Other +9e745a5c-d5a7-4031-937b-1dc9076113e3 1 Other Other +9e74c25e-24d3-4700-bc0f-8a7c72f9076a 1 Other Other +9e74fa62-34cb-4ae8-9bbb-8f1667648314 1 Other Other +9e74fb09-b98a-4f1a-871b-925533c21d67 1 Other Other +9e7508be-1dd7-4dc2-b4c0-166f4a73b8f3 1 Other Other +9e75bb8f-32b4-40cc-9ef4-2a42720f8d31 1 Other Other +9e75bea4-cb40-42ae-95d8-239a5d65c123 1 Other Other +9e75e8a4-7fd9-4bbd-b198-da86270948e1 1 Other Other +9e75ff80-84df-4ab5-bb4c-2bf44e4a674c 1 Other Other +9e761a62-0927-479f-ab8b-aa839f81a9a0 1 Other Other +9e765b4c-b8e3-4cc7-9865-825b3d70595b 1 Other Other +9e7665a2-be3e-4996-baba-7c68791a8c2f 1 Other Other +9e76bf24-051a-4450-a055-57c2320d1a32 1 Other Other +9e76d5ca-f758-4a7d-a9c6-18c1a4fa80e0 1 Other Other +9e76dd26-25e2-4a4c-ae74-97b2cf77ed99 1 Other Other +9e76f3e7-33e8-4b40-812b-7ba47ceca433 1 Other Other +9e76f843-d4d3-4a10-9de8-2ed8e63b90f8 1 Other Other +9e77230c-3c3f-4506-8160-0c01b5afc7eb 1 Other Other +9e7739fc-841a-448b-901f-84cdd5b71657 1 Other Other +9e778b08-c4e9-414f-953d-507db386fe57 1 Other Other +9e77deed-97a8-426a-8174-7078b5ed0aac 1 Other Other +9e78178a-267b-4480-a1cb-89a69e612115 1 Other Other +9e781bed-7de0-4759-be07-d1d8f7bdf3f2 1 Other Other +9e784cdc-d726-43c9-a841-177a9d8dfd47 1 Other Other +9e784f79-3409-4016-8407-272c211ca13e 1 Other Other +9e78506d-d4e2-41fb-9451-21ba0ad2b581 1 Other Other +9e786332-97b6-4274-b8d6-aa9a3ec543e4 1 Other Other +9e788ab1-011e-4ef5-bfec-2ed9dc4ab4ba 1 Other Other +9e78d66a-4769-4ed3-aae9-92a032df9c86 1 Other Other +9e78db96-65ce-4192-81c6-2d0c73af4122 1 Other Other +9e78fdd9-ea02-4224-bb40-ffaa2c7c8952 1 Other Other +9e7906fc-dfeb-44ba-b156-e7e64392f991 1 Other Other +9e791274-2275-4e48-9c46-caba0227245c 1 Other Other +9e7915f9-c990-44d6-9d29-4f1c7ccc78d2 1 Other Other +9e793321-f65a-4c56-85d8-da52141a73dd 1 Other Other +9e795ec0-ef12-4ac8-b084-771290fff0b9 1 Other Other +9e79ab25-e2b4-4238-a37a-78f0ebc4314d 1 Other Other +9e79bf29-6378-4782-817c-1814cf5f94fd 1 Other Other +9e79bfa3-218f-4cf6-a259-8736c77c3f91 1 Other Other +9e79ec6e-1088-4d72-a224-9c34eb4dc9df 1 James Other +9e7a23ee-93a7-4b76-b553-97b7930da31a 1 \N Other +9e7a31b8-c33e-4207-85a8-51ab4644ee03 1 Other Other +9e7aa96f-ba4f-4d66-b803-839087ac8354 1 Other Other +9e7b1e98-2f63-4180-9624-e2e25df7c46d 1 Other Other +9e7b38de-980e-49be-b270-ba2ad9e036bb 1 Other Other +9e7b40de-b4b6-42e3-bc85-beeaf22f9ba5 1 Other Other +9e7b4b77-aac4-46ef-9739-6dfe5f988be8 1 Other Other +9e7b5d65-c74e-4a26-9f32-655395f25dd0 1 Other Other +9e7baa27-95d5-45ed-86f3-a2af665453ba 1 Other Other +9e7c1b2a-1bd7-442d-967c-0639e14ae33a 1 Other Other +9e7c2204-e97e-4cb2-8581-4439393c7ba8 1 Other Other +9e7c2fc8-7ae7-47ea-83a4-eb83fb4984a1 1 Other Other +9e7c6eb4-6e37-4a25-a6bc-20080bcd95d2 1 Other Other +9e7cf24a-86d1-40de-a782-8979d8036987 1 Other Other +9e7d0772-00a9-4623-9125-5d1404935a19 1 \N Other +9e7d1ab7-d7b7-4faf-a5bb-2facb3b23e06 1 Other Other +9e7d1dfe-01c5-4ab9-8e9e-01b158c8a6ce 1 Other Other +9e7d4fcf-a0db-4e21-9135-0ad9bc0dfdee 1 Other Other +9e7d576f-a7da-41c9-900e-3200b20cfd9f 1 Other Other +9e7d8b95-fabf-41a4-8bef-70062d417d24 1 Other Other +9e7d9d27-06e1-4bd1-a60c-aee855f418a3 1 Other Other +9e7dd37c-59ba-45a8-899d-5bd3abf13a90 1 Other Other +9e7e738d-88b0-4706-a214-37e099344ca4 1 Other Other +9e7ea984-7528-4815-b844-89f612290465 1 Other Other +9e7eb444-60e0-412d-9515-a3b3af6596aa 1 Other Other +9e7ec6c9-c375-42c1-bd8b-7b8400d5d52d 1 Other Other +9e7f1cfd-646e-463c-953f-109382c4bb2c 1 Other Other +9e7f30e8-e7a9-4897-b55f-ab26530825d2 1 Other Other +9e7fac05-a411-4bf4-a834-4109e7c4c8a5 1 Other Other +9e7fc0b4-2f16-4741-a857-0ab4a800c1f7 1 Other Other +9e7fcac7-df14-4ddb-91d5-43fad4822c95 1 Other Other +9e7fd703-7415-46b2-834b-4db2456e672a 1 Other Other +9e7ff2b7-c63d-4c8c-afc2-f11d33fe55b3 1 Other Other +9e7ff38d-e522-4f8a-9921-9e4551663c81 1 Other Other +9e803fd1-005c-4a26-af1e-dfbbcc5cb7ca 1 Other Other +9e8048fd-3693-455c-9ebc-98dffac5cf06 1 Other Other +9e80fcb8-1897-11e8-8a97-fa163e8624cc 1 Other Other +9e80fe67-36df-4b75-91c3-a51ca1f120d8 1 Other Other +9e811181-9c31-4a33-8d5f-0f45ceb8cbe6 1 Other Other +9e816b25-4a79-4664-aada-aa1d254ac4ca 1 Other Other +9e818da0-a296-4ad7-a4e2-18c93b8a2bdd 1 Other Other +9e81913c-1dfb-40f5-8099-e0f1e5e11669 1 Other Other +9e819ebd-f562-4dc7-81c9-2c7064fe5b2e 1 Other Other +9e81d8b4-8fdd-441b-9306-f47c1af47ca2 1 Other Other +9e81f78c-1bc3-4545-b84e-0290685aa740 1 Other Other +9e823b77-d210-4334-bb75-5d93a0401320 1 Other Other +9e827005-f5c6-4f2e-94ae-5bb9901d18d1 1 Other Other +9e829807-990a-416f-ad91-413557231298 1 Other Other +9e83304e-1844-4b90-88bb-33065ef6d115 1 Other Other +9e8358ee-d55f-41e8-a7ff-5b585e877a33 1 Other Other +9e83d93a-ce94-4042-9acd-6434357ed028 1 Other Other +9e83f97d-592f-45e6-8ce7-a1dd8527e64e 1 Other Other +9e841bf1-68bb-4084-b48d-836832c7bd3c 1 Other Other +9e845712-731d-4172-a428-d93458d7e1bc 1 Other Other +9e849753-e4fa-4999-9ad9-09eeb060036d 1 Other Other +9e84a926-070a-46dc-98fd-01d06bfbff0e 1 Other Other +9e84bba9-0bda-421c-bb78-bd5aa6be574f 1 Other Other +9e84cda1-7c31-4d95-9ee2-4a12914bea7f 1 Other Other +9e84e0e9-8837-4854-8a34-efdc33482a05 1 Other Other +9e84fb5c-ecb7-4c7b-8bb8-e50f1eb4a23e 1 Other Other +9e85867c-ae61-4f1a-899f-4aab36a3d3e1 1 Other Other +9e8586be-b597-4271-9474-fdba39efafe9 1 Other Other +9e85bad8-c088-43f7-b8b6-ac8444e05d48 1 Other Other +9e85d0db-7e27-4e55-ac7f-d561dad9d5aa 1 Other Other +9e85f35d-3b5b-43e4-bf2a-4c5233a7a8b3 1 Other Other +9e863ba4-bb25-4257-bcf7-dd2e7b8f943a 1 Other Other +9e86741e-1b75-4766-ad39-1adbb2bdd9e2 1 Other Other +9e86902c-119c-483c-b86b-030af62a7a41 1 Other Other +9e872ca4-a701-412d-b08b-aa8850116cc6 1 \N Other +9e873ad5-5796-4375-8cb7-825955e4ef33 1 Other Other +9e877f89-2149-4c66-88b1-0fd184e08013 1 Other Other +9e879e21-63db-4f57-8d2d-1392d2a4d01c 1 Other Other +9e87c145-6661-4676-b52c-1e929260e04b 1 \N Other +9e87cba8-0424-40e4-988b-244aed7e0100 1 Other Other +9e87cf3c-8937-4196-bb61-e54f1f6d83af 1 Other Other +9e8807f3-bc98-4c09-8601-054939350f9e 1 Other Other +9e881b9a-218f-42d2-963c-c6879a379d62 1 Other Other +9e88298f-896d-47f0-86a7-26e98d52e128 1 Other Other +9e886827-45a2-4501-bd8f-30a8befbd756 1 Other Other +9e888c2d-78fd-4436-a63e-ca58ea7c770c 1 Other Other +9e8896c9-c042-4cb8-9d92-bac712c5dd51 1 Other Other +9e88a090-4634-4236-8113-9a60cc5d4a7c 1 Other Other +9e88b4eb-ef45-4918-812b-02f9c27a078a 1 Other Other +9e88bff7-9ad0-4c91-a2b0-83e7ea8f4b83 1 Other Other +9e88cb05-ddbd-4771-8805-1a16fd6563f2 1 Other Other +9e88e585-e6ce-4955-b2fe-e429fdb38c4c 1 Other Other +9e88f002-4627-4982-a1f6-9e9dcbd5bc04 1 Other Other +9e8926af-539c-4b61-8a4a-e2280ca6dd73 1 Other Other +9e895528-55f6-4b70-85ca-ef5bf354a82c 1 Other Other +9e89596e-c8ed-4865-b82f-06d1ba2ce503 1 Other Other +9e898759-87e5-41c9-9f77-e456f99a43e0 1 Other Other +9e89f37f-f366-4eca-b3c7-cff14381756d 1 Other Other +9e89f8a3-1482-432f-8674-a01be2e97f87 1 Other Other +9e8a4e44-a1de-4e6c-b0d9-83daf8199545 1 Other Other +9e8a5ce9-00e5-441c-9dac-b2e66cbebdbd 1 Other Other +9e8a8951-cc42-40d0-b839-861a6d483c92 1 Other Other +9e8a8d52-bc47-456d-9468-63b00b586917 1 Other Other +9e8a9725-d68e-4a26-8cfd-a27f02ebb0a5 1 Other Other +9e8af4ea-be60-4a01-9652-3837ae87f745 1 Other Other +9e8b1db4-de4e-4c6b-b83e-b689fb44a541 1 Other Other +9e8b306e-c211-4bad-88ba-0afc929bcc06 1 \N Other +9e8b4330-0f3d-4f90-86da-608e9cf95c18 1 \N Other +9e8b9d42-6b83-4d85-a89f-30dd1cdaf6d9 1 Other Other +9e8c179b-edd8-49dc-b88f-ddf366d4e4f4 1 Other Other +9e8cc2ad-0e3e-499c-a235-d17d3676d047 1 Other Other +9e8cc675-8db0-4d86-ab81-5ab6217b0576 1 Other Other +9e8d0339-7cc7-4814-bae3-5f55efe562e3 1 Other Other +9e8d0f60-ffca-4e52-95a5-8486b20f189a 1 Other Other +9e8d3753-d161-46ba-b3dc-15fc6b4b8f4d 1 Other Other +9e8d9e70-db1a-49cb-91e4-808679890ab3 1 Other Other +9e8daad2-13fe-436d-84ec-1537ebebfc6f 1 Other Other +9e8deea2-a397-458c-bc16-1bf8ea02fc52 1 Other Other +9e8e18ee-7a45-4ade-9567-eea3e0d18f72 1 Other Other +9e8e4bf3-bdeb-4d65-981d-cb19b9cb1dc6 1 Other Other +9e8e683f-cd1c-4e5e-956c-dadab271bd89 1 Other Other +9e8e6d86-24ca-4565-8fcf-69f33cee8ee4 1 Other Other +9e8ed722-8ca4-4507-a609-59352b32f721 1 Other Other +9e8f5caa-6b0f-4236-9b57-0d77ef5a1b40 1 Other Other +9e8f7810-82d0-47b8-8a44-b1a652b1b2ec 1 Other Other +9e8f8f47-1689-46fa-b564-7122270e5a9e 1 Other Other +9e8fae56-e272-43f8-b4be-6406d9825358 1 Other Other +9e904ca1-82f1-422f-8923-0e85495b0c76 1 Other Other +9e905152-7a1b-4ac8-adc9-16837950e357 1 Other Other +9e905276-3f9d-4a7d-be42-b7f8d2278293 1 Other Other +9e906785-f977-43dd-af9c-710fc6447beb 1 Other Other +9e908523-ac11-4dbf-a106-27df9f60f57f 1 Other Other +9e90a2e9-b48a-400b-8018-191f213218d1 1 Other Other +9e90a3a0-d1ac-4275-a7a0-34f98cf26306 1 Other Other +9e90aa96-2ebb-4afa-8b60-b483797f08d2 1 Other Other +9e90b354-e45e-47de-914b-60e04e2a3e60 1 Other Other +9e90bab3-3f77-4c43-8c47-5b7fc63c4a03 1 Other Other +9e90e4f4-9499-4c63-8508-cf24ec925437 1 Other Other +9e9103f7-47ca-4a1d-bf6d-66ff7bae3270 1 Other Other +9e91808a-f855-4ca6-bf7c-26ac1983012b 1 Other Other +9e919b90-9cb9-4081-a883-3f5456c62b9d 1 Other Other +9e91b265-f6c2-41fb-bfd3-d688a1a52336 1 Other Other +9e91fff6-4257-4565-b6c7-4fffaef3d454 1 Other Other +9e92182f-1d28-463a-8c6b-bb18447d1218 1 Other Other +9e924b88-1ffd-44b9-a79c-9a49fb7b6665 1 Other Other +9e92653d-45bb-418d-941e-34c81b59c213 1 Other Other +9e9285e6-c0c9-4338-9034-49a34ecd120f 1 James Other +9e93000f-23d1-428f-8241-de376293c5ab 1 Other Other +9e935ee5-a9a0-45dc-a30f-e5842d46d3f2 1 Other Other +9e9393bf-0b23-47d7-941e-0c8d74193a6e 1 Other Other +9e93b0e2-1209-46fd-8553-ca2b9feaec69 1 Other Other +9e93b5e3-b354-4704-a1bf-9efdc4a51019 1 Other Other +9e93e142-186d-4168-a200-679a486cd5aa 1 Other Other +9e93e9a7-037d-432e-b7fc-b1739713999f 1 Other Other +9e940068-f2e1-4bdf-92f1-cb4bdc6d82aa 1 Other Other +9e941b60-47a4-47ff-8cc3-ec264cbede69 1 Other Other +9e94d199-c1d5-44ba-8075-92498d157ad2 1 Other Other +9e94d330-ab05-4390-982e-4819bb333046 1 Other Other +9e94d5c8-9ce7-4825-9c25-7f86aa4c7a21 1 Other Other +9e9559c0-74ad-4f40-be1e-ae0058694e9b 1 Other Other +9e956b82-ba57-4304-b42b-df636d3a12fe 1 Other Other +9e95ed80-6d40-4142-929a-3e19e13986a2 1 Other Other +9e9631ad-6ff5-49c2-9b80-062906e2146f 1 Other Other +9e963cb2-9d0b-4509-8cd1-cb138a94b627 1 Other Other +9e969150-072c-4127-9b6e-4bade43ef001 1 Other Other +9e96ab30-c991-46b1-bce2-75175a4f0733 1 Other Other +9e96de9c-87fe-47d7-adc2-3d02a2832e6b 1 Other Other +9e97456a-879b-4c1c-970d-c95d2c054f19 1 Other Other +9e978072-d63d-45fa-844e-57c602b058df 1 Other Other +9e98159d-1326-4713-9c90-74251d2bb017 1 Other Other +9e9815a0-f312-4bb0-9301-413121f7a403 1 Other Other +9e981e22-9cff-48e6-bbe5-42f6175d76bb 1 Other Other +9e9877d0-4ecd-4134-9812-0b60580f5b67 1 James Other +9e988428-5a2c-4c49-ab6e-032fbbf759f3 1 Other Other +9e989e12-ae77-434a-9277-6134a2ebd559 1 \N Other +9e98da06-534a-42e9-a859-e96aad74954d 1 Other Other +9e995df0-4a28-45ef-a210-4404e72bc8cd 1 Other Other +9e9a17c1-e784-4b5f-aab3-ddc371d2298c 1 Other Other +9e9a2c5b-27c7-477d-968e-2b781811de79 1 Other Other +9e9a35a4-7b96-4a55-89b0-b05aac7e9159 1 Other Other +9e9a7b13-348e-4914-9624-003a0728b699 1 Other Other +9e9ad623-4e93-4828-8489-b28a7dae6fdb 1 \N Other +9e9b5bc0-e588-4d28-8a57-027c9fcc80c6 1 Other Other +9e9b8683-b438-4c9f-bdbc-5b39a96489ed 1 Other Other +9e9b9046-2ee4-46bf-8705-808b2f01542b 1 Other Other +9e9bb7c1-1362-463d-bc5c-49f2a01d6b49 1 Other Other +9e9bcd97-a2fc-4f1e-8631-308e5490ac69 1 Other Other +9e9be68c-1933-4072-a9dd-5e7fbd22d8b7 1 Other Other +9e9c3817-2bb5-4800-b73d-1420ce8a1be8 1 \N Other +9e9c779a-a088-4f09-9b8a-9c854ab5d301 1 Other Other +9e9ca388-98ec-47da-9500-bea4fad5f4b0 1 Other Other +9e9ca600-96c7-4d3e-82fb-94c13fc0e634 1 Other Other +9e9ce1b0-9584-44c6-892a-0f2f8d457ba2 1 Other Other +9e9cecfd-9fce-4702-9420-4a1aa42d95d3 1 Other Other +9e9d5240-ad14-4677-9d93-2c9d0c85aab4 1 Other Other +9e9d6e4b-e13a-49e1-9932-5be75b3f5707 1 Other Other +9e9d6fd5-fe6a-4de0-89d3-91b3ed9a75f0 1 Other Other +9e9d7af5-0473-46e1-a457-2ebff129314d 1 Other Other +9e9d94c7-c177-4328-a299-e58405def8e0 1 Other Other +9e9d992d-50b8-4777-a9b3-9644fed58edd 1 Other Other +9e9e06b9-b67e-4bb3-b8a1-91357a6c5c62 1 Other Other +9e9e08c2-ddd9-4f42-98be-b983bbd4317f 1 Other Other +9e9e18de-9dc1-4397-88da-37bf4fe4f6b2 1 Other Other +9e9e8398-be79-4c83-bacb-f46d7a000f33 1 Other Other +9e9e9d13-d4d7-495e-bef8-a048f81b6408 1 Other Other +9e9ee500-27a0-4664-b088-4f9feae9e00a 1 Other Other +9e9efffa-0033-11e8-9be8-fa163e8624cc 1 Other Other +9e9f3c94-c5cf-46ee-a24d-5a82857cb20e 1 Other Other +9e9f4249-f18f-4a60-8d99-a6df6765c3bc 1 Other Other +9e9f7085-86c9-43a3-a0d2-8fbef5b3a8f6 1 Other Other +9e9f747c-170c-4251-ba69-de0cad552246 1 Other Other +9e9f9ce6-7833-47f3-9c0d-a434362b8724 1 Other Other +9e9faf98-fcc1-4d84-b8a2-62ae056d4e52 1 Other Other +9ea030f6-e115-422d-ad4f-8cfd9a3ffc8b 1 Other Other +9ea0c433-6b60-47c7-8106-d947b3d56ae8 1 Other Other +9ea1309b-03f9-4ca5-9b49-afe828c0dec7 1 Other Other +9ea15857-cf00-4922-ba1c-bf933b90f56a 1 Other Other +9ea1651b-8076-4dd9-866a-d4b5d8ee7083 1 Other Other +9ea16621-65cb-42c5-9b04-8e3aaef93c13 1 Other Other +9ea16809-71ef-493d-9ea4-79eb382411a9 1 Other Other +9ea1bdfe-b349-4ea1-adb6-59139d518e08 1 Other Other +9ea1d36a-ec93-4a27-81b4-b355815f194e 1 Other Other +9ea2045d-939c-4e0e-aaac-d9a0e8a0ca1a 1 Other Other +9ea214dc-9993-4449-bc78-54bf6f9c6f78 1 Other Other +9ea2552e-6131-4dcb-92bd-e83d578fa621 1 Other Other +9ea276fe-7e98-473a-8a2b-c31f4cea0078 1 Other Other +9ea2778b-0e31-4bce-b1dd-30be3325da99 1 Other Other +9ea29e9f-bcd9-4abc-b254-7a2e3c6f3751 1 Other Other +9ea2ba8d-84cc-42ab-aa7e-15ac4424bfbc 1 Other Other +9ea2c269-3145-420c-9fdd-3b48ea095fb1 1 Other Other +9ea2d795-62b9-475f-9b60-e452053ba550 1 Other Other +9ea31753-2ca9-4da7-a1c9-9413c911cfab 1 Other Other +9ea34a95-d2f3-4349-be28-f67b7dfd77c3 1 Other Other +9ea38daa-637f-4652-bf10-0af483a0ff62 1 Other Other +9ea392d2-0abe-49e1-b710-ca2eae7f90bd 1 Other Other +9ea394df-bbcb-46f5-ba13-00715c554a23 1 Other Other +9ea39d87-f57a-4475-8ac3-18548c37ce7f 1 Other Other +9ea39e19-8311-4e5b-9d41-6880d08c44f9 1 Other Other +9ea3b685-e5a4-4e9d-aa4b-5a78bbef1f63 1 Other Other +9ea3e5ce-aeba-4993-8e31-f7db6ed6710f 1 Other Other +9ea45785-db95-4ae3-95bc-8f43b771c802 1 Other Other +9ea461f8-6f1a-4231-b7fe-f215f4490449 1 Other Other +9ea46d05-492f-42ac-a8d7-9d756b0770e7 1 Other Other +9ea4e939-2a94-45b8-8c85-26d350bcda3e 1 Other Other +9ea5f3a9-fa3e-44ba-b831-cada60ce85fa 1 Other Other +9ea61e2d-3b1a-49e4-a34a-6833f56979f1 1 Other Other +9ea68091-1656-4444-a713-72ae5b3f20f4 1 Other Other +9ea6adab-5ace-4aab-a71c-deca1f9a7d60 1 Other Other +9ea6d3f2-e844-4283-808d-76c4e5f71b01 1 \N Other +9ea6d678-fb31-42e0-b934-4928e48073c6 1 Other Other +9ea6e56f-027b-4777-8df7-46420d270efb 1 Other Other +9ea70a18-0dea-4be2-82c6-d102ed7669a1 1 Other Other +9ea7651a-9f8e-4835-b9ce-e7f30d8dedc4 1 Other Other +9ea772a1-5bbf-4bbf-b148-6e0065419cd9 1 Other Other +9ea77567-efb4-4ee1-99c5-2da056a69d96 1 Other Other +9ea7b82b-42b6-412b-b7e4-56f351fe9afd 1 Other Other +9ea7dc8e-0b71-46b2-a34a-517ad5572380 1 Other Other +9ea7e515-9a3b-41a8-884a-0f2361f3d297 1 Other Other +9ea7f8a4-d951-48d4-887e-7d1fbe2e1d54 1 Other Other +9ea806cc-114b-4bc6-ba77-c0319426295a 1 Other Other +9ea816b8-9413-4738-8c59-c73a98820687 1 Other Other +9ea84f4a-63f8-433f-8c5a-84aef94e6547 1 Other Other +9ea85f79-8cbc-4b62-b00a-8628676ed2cb 1 Other Other +9ea87de6-3449-45d9-9dc2-998bb28f9e32 1 Other Other +9ea8d7b5-0346-4bd1-b94f-60d9e7e65413 1 Other Other +9ea90b92-fe9f-47f4-a1f8-91902d344e40 1 Other Other +9ea95510-ea98-4b15-a2e0-c2cdd335fb07 1 Other Other +9ea96e41-a044-4d36-be81-1632987eed16 1 Other Other +9ea97742-f78c-4a96-b989-826cb568904d 1 Other Other +9ea995a4-ef44-4f8b-8bbd-c98115ff706d 1 Other Other +9eaa1676-1d12-43ce-8a3c-a2bfd3500179 1 Other Other +9eaa1c31-a60d-411e-b9f4-6beb00b72015 1 Other Other +9eaa24dc-998f-4ceb-bbec-649221844add 1 Other Other +9eaa30ae-91aa-4685-a29e-185359f63357 1 Other Other +9eaa5f07-c7ce-44de-a86c-8158d4d2244d 1 Other Other +9eaa6e97-9932-44b7-a6d8-1590224fb9e7 1 Other Other +9eaa889e-91dd-4d19-8d06-5295e22893cc 1 Other Other +9eaa9f5e-a51e-40eb-bcf8-ec57f3bb3fa0 1 Other Other +9eaab14e-294f-4169-9d61-411a12450653 1 \N Other +9eaadf9a-83a4-4ab5-bacb-07628c123cf1 1 Other Other +9eaaf447-1a0c-4aec-b3d5-cf0cc13e094a 1 \N Other +9eab039e-7eb7-4fbf-ba52-add93503c530 1 Other Other +9eab6f2d-f46f-4b2b-a5d1-ff60d9fcedb2 1 \N Other +9eab7932-063f-4b9b-b49a-4fda0e158d9c 1 Other Other +9eab91b1-5979-465c-9bc0-25dbe581c17b 1 \N Other +9eabd4f2-ddb1-4535-9ca0-bc5f38b5db3a 1 Other Other +9eabf2e3-8c88-4aea-b3a0-0e053e3a9775 1 Other Other +9eac1d09-f7a8-4d06-96f4-2a99422faf03 1 Other Other +9eac2516-c0ce-40c4-874e-9eeea5392a57 1 Other Other +9eac3e3e-b48a-45a5-b4eb-3dc7bccd1746 1 James Other +9eac4815-7ac4-4165-90de-40867fd6582f 1 \N Other +9eac488b-237a-4e1a-9b7b-60ff36f38cf6 1 Other Other +9eac505a-1957-4ecc-9037-00c9405a7a1e 1 \N Other +9eacc905-2147-4e01-805e-54d25ab04c43 1 Other Other +9ead50b4-eaa7-49ba-be51-bcfd3b3f0f01 1 Other Other +9ead6ce5-fe17-449b-b991-294b6e3bb247 1 Other Other +9eae0a4e-aa07-494c-9b01-81f4a15decc0 1 Other Other +9eae1913-ca8f-42a2-8dc6-4514e60356fa 1 Other Other +9eae1a23-557e-461f-9f34-521295dd9e45 1 Other Other +9eae7348-ac67-461b-a275-827140a500ea 1 James Other +9eaeba69-e7b6-46d2-8d37-7056322a689c 1 Other Other +9eaec0ce-5cfc-4de8-ab68-c8081989c85e 1 Other Other +9eaece9f-b413-4d54-944c-55c889dbeb1c 1 Other Other +9eaed4cc-2543-4b7d-b2f4-456aff7ea339 1 Other Other +9eafa3e5-9d44-4eab-9fc2-9da12cd83858 1 Other Other +9eaffbd6-ec41-40aa-affe-4807bff9fd32 1 Other Other +9eb019e7-8e5b-42e6-a0f4-bfb8c32a24a7 1 Other Other +9eb07588-8a4e-4aa3-8347-71e6f290fed4 1 \N Other +9eb086f6-1a0a-4376-b57a-dc8c4af67d5d 1 Other Other +9eb0bbfb-1127-421a-bf25-44bab87f74c7 1 Other Other +9eb198f6-f284-4593-913b-2b559fb4c432 1 Other Other +9eb1e436-1964-40ed-b970-4960cc8542ce 1 Other Other +9eb1ea67-09b8-45a5-ad21-9c3a56e730d7 1 Other Other +9eb1f0f1-0903-4788-9324-1d139a699652 1 Other Other +9eb22ca5-dcb4-41ed-a32d-52eb2c07ca81 1 Other Other +9eb2aa2f-ab63-46da-9fb8-3318e930ef7b 1 Other Other +9eb2c738-23f7-4ffb-9423-f91d78fe3239 1 \N Other +9eb33e37-4a7f-42e3-bbff-69829287eb2d 1 Other Other +9eb353e4-4adb-4d2b-b68e-f8bdc42b8b70 1 Other Other +9eb3c552-0290-4fda-8e7e-e6cfe0b66dc7 1 Other Other +9eb3e142-6044-442c-bdf5-99293e975f8d 1 Other Other +9eb3e56a-e165-4f30-8a47-61f6e01fd077 1 Other Other +9eb3fa1c-bd10-4fc9-b532-0be49b7c087d 1 Other Other +9eb42455-b656-440d-be0d-50265952bd1d 1 Other Other +9eb428d5-14c7-489c-a793-fdf79e4eae69 1 Other Other +9eb46670-080a-43ea-aa7e-4d07845ec570 1 Other Other +9eb4b25b-a689-44c5-988f-d0f1fc24666b 1 Other Other +9eb4b6ef-426c-4564-94bd-3e8c412737e1 1 Other Other +9eb5300c-df24-45f3-8f58-fbec5cb18d19 1 Other Other +9eb557da-ca27-41bc-acf2-8a7fa14c2970 1 Other Other +9eb566d0-7780-48a1-bfd6-a218f62f4efd 1 Other Other +9eb57fb7-5f13-4f00-8c17-0eb026887aa2 1 Other Other +9eb5b561-1385-4fef-924c-f39563bb246b 1 Other Other +9eb5b5d3-6892-4c8a-ac25-491054a50764 1 Other Other +9eb5ecea-25ae-46ed-a2f8-6ee516e32268 1 Other Other +9eb5ecf0-15e0-4500-b8b7-cf86e1f6c225 1 Other Other +9eb64c8b-ea12-44f0-8d82-7e80cf03f746 1 Other Other +9eb678f9-32a9-44f7-93ea-83e99b382b00 1 Other Other +9eb691b1-f418-4114-bcce-d3a10c6d0311 1 Other Other +9eb6e184-9d60-4e34-948d-03c60b65e0d3 1 Other Other +9eb73ebd-2ef7-4b02-af96-f48a70230a00 1 Other Other +9eb7625a-7442-440f-aadf-d29e9fff61b5 1 Other Other +9eb791b8-bb52-4e30-9aad-b4357830878e 1 Other Other +9eb7c64d-c1d7-4654-b251-eb920d4d4836 1 Other Other +9eb7eec5-732a-44d4-aa71-9585dd445fc1 1 Other Other +9eb835a0-9825-4777-9c7b-be5f21a68acf 1 Other Other +9eb86bb0-484d-48fd-84d7-47a32cbd5aaf 1 Other Other +9eb87d6d-540e-4efb-bbef-c470673cb9ef 1 Other Other +9eb88627-a09d-46ca-aa7c-21a16e48962f 1 Other Other +9eb89384-06df-455e-ac5c-ac1d353ee509 1 Other Other +9eb90237-93a0-403f-8c78-3c72f69ae9e1 1 Other Other +9eb91697-0938-4c10-b292-5e7866136884 1 Other Other +9eb9232f-a233-45e3-bd85-1102e84bb85c 1 Other Other +9eb95d8b-4cad-4bb4-8559-d0445c1e132b 1 Other Other +9eb95e80-77a1-4798-91ca-b573057d847e 1 Other Other +9eb9c44a-b77b-4808-b39c-c5d4fb2f1802 1 Other Other +9eb9c4a6-9a23-40fa-807f-eef43bd3a3db 1 \N Other +9eb9d134-99b0-4f2f-a5a6-4f48b2bcc74b 1 Other Other +9eb9e3ba-6436-4733-8bf6-3f681c30a980 1 Other Other +9eb9ea91-346a-4045-b3a3-ade03a85e660 1 Other Other +9eb9ec97-c2e9-4211-a55a-dea7d68d52e8 1 Other Other +9eba1f95-16e8-431d-8942-ddc3397eb037 1 Other Other +9eba2cba-b101-4329-944e-8e8780542644 1 Other Other +9eba70a6-f689-4315-9432-9ee0e2aea276 1 Other Other +9eba70db-e1cb-4d1d-a7aa-597830dfea2a 1 Other Other +9eba7ed0-5597-4f41-86b9-5fae3d812d33 1 Other Other +9ebaacd1-e9bb-4d02-adaa-5c583446fe73 1 Other Other +9ebabafa-85f8-400d-86f3-4be106d32dfa 1 Other Other +9ebac24f-f40d-4465-8a68-c6258ed64ee7 1 Other Other +9ebac929-d45c-4c85-933c-0d2505927987 1 \N Other +9ebacac1-b276-4a2c-a755-7d05370756b4 1 Other Other +9ebae7d6-1186-4f08-9335-4d10f8a47bc4 1 Other Other +9ebaf994-f567-48bd-8bc6-5e65b2e3ab2f 1 Other Other +9ebb0028-9847-4171-a1c0-413c9790d6f5 1 Other Other +9ebb54fe-a155-4726-b2c6-df8aa3e42420 1 Other Other +9ebb83ad-1d71-4557-a30c-3cff5e40a970 1 Other Other +9ebbd587-f208-454d-9ade-3d71ae0a8ee6 1 Other Other +9ebc7924-3aa2-4479-be37-a37286528ae7 1 Other Other +9ebc832a-b2ba-4f55-bf6c-bedc8a9eca54 1 Other Other +9ebca949-53af-4178-b4a2-5c220fcdc9f3 1 Other Other +9ebcbd90-24b9-48a3-8ebd-26e803291a3f 1 Other Other +9ebcd4e2-c899-42b8-b14c-3bac82daca2b 1 Other Other +9ebd761d-dd7c-4c77-acc1-22a0ee66aa1a 1 Other Other +9ebd7d23-3c5a-43a5-9652-5c1f23c95dc1 1 Other Other +9ebd95fe-b35f-4d8f-8763-b55b7e69f32b 1 Other Other +9ebda904-c65b-4bc7-9788-50d9709ad531 1 Other Other +9ebdbc46-aaa7-4353-8daa-917631aeac55 1 Other Other +9ebdda07-2e6a-475c-93df-8e3949f53ac3 1 Other Other +9ebde02d-a3d6-457e-a970-55a5448ae98a 1 Other Other +9ebeaadd-d4b1-4198-8414-5e7f8c4c7983 1 Other Other +9ebf2bbf-b5cf-4c79-a9fe-4e6ca962ce62 1 Other Other +9ebf6101-ae3a-43c3-8180-e40effd9ccb4 1 Other Other +9ebf6aff-51c8-4fcc-85c2-cd3b08b41586 1 Other Other +9ebf7289-a758-4b3f-938b-5a36e9bde5a2 1 Other Other +9ebfa406-1d39-421d-a0df-19e6d0be745c 1 Other Other +9ebfa80b-6598-4999-bd48-4e9488ded4ae 1 Other Other +9ebfaed9-44de-439d-b925-c0a2f3eae711 1 Other Other +9ebff1d8-0b36-417a-94b1-47191a94f57e 1 Other Other +9ebff962-b1c9-406e-b6fd-ec2f260bbe04 1 Other Other +9ec06f2a-d524-40b2-965c-504d6ceb0eb4 1 Other Other +9ec0af7d-b052-472c-a8a5-a476bb34e828 1 Other Other +9ec0ba47-f748-4f5e-b93b-6a28fe6aafc1 1 Other Other +9ec10389-b200-4197-b3da-b6189a7a941d 1 Other Other +9ec1050c-c577-4b75-a208-fe346642cdf1 1 Other Other +9ec106af-58bb-4bdd-8d28-ca69d311b33b 1 Other Other +9ec1135b-9a07-4cbc-9979-1156efd6f526 1 Other Other +9ec12e30-c11f-41f2-a82c-b5fc1996cbc8 1 Other Other +9ec140fc-43ad-49ac-9c66-14ebd9d063f3 1 Other Other +9ec14b24-364d-4198-80bb-cb6b1c2d8f79 1 Other Other +9ec1847c-4a32-4539-9f13-418fb599cbb9 1 \N Other +9ec289b2-dac2-4acc-98b9-e9f5f6a76316 1 Other Other +9ec2c42d-26ae-4598-8a42-8908b402ecf3 1 Other Other +9ec338ad-cca4-4c6f-85fe-0fe1878e66a2 1 Other Other +9ec348fa-09b7-4f13-9adb-8d88c1177d42 1 Other Other +9ec37da5-7607-44a5-89af-8c173adf42e5 1 Other Other +9ec3b651-f5c7-4253-95a2-687e097a4f8d 1 Other Other +9ec3cb03-9521-4d7e-8c58-c311685e15c2 1 Other Other +9ec3f6b3-2532-4fb8-b0e5-009d20e63516 1 Other Other +9ec3fcd3-0b0c-4210-a35e-ff2589173ed5 1 Other Other +9ec414ce-5b49-49fb-a2b7-7e35b9d3c758 1 Other Other +9ec44403-2f06-420c-9afa-4b33435248e5 1 Other Other +9ec46202-7e33-4a94-8e55-def555d28740 1 Other Other +9ec4a3ff-47fe-4271-8b18-2f6d463db625 1 Other Other +9ec4d101-e281-4768-8dc0-33d7a62e9a49 1 Other Other +9ec4d645-21b4-4558-a892-5ea553aecf59 1 Other Other +9ec4ee80-9314-4d09-801b-0e440f234233 1 Other Other +9ec4fdf3-cee9-42c1-953a-003c836e741e 1 Other Other +9ec53a00-4e89-409a-bd01-35c1ad29699c 1 Other Other +9ec55c02-30a2-4e2a-a920-eddf814ff98f 1 Other Other +9ec58a66-a20f-49f1-9780-754617f2a448 1 \N Other +9ec5ce72-2fb0-46fa-ac11-2a71da186250 1 Other Other +9ec60e0d-e338-47b9-92ab-ceaa5e91081f 1 Other Other +9ec67cbc-f12a-4c8c-b7de-0fc323e9a2be 1 Other Other +9ec68901-2409-4836-b5a6-fbf126277962 1 Other Other +9ec6fe72-6a89-4708-9e3a-6eab5cbfc65c 1 Other Other +9ec72c75-0a86-4604-943e-eada0bb0d7b4 1 Other Other +9ec7424a-ed21-4303-b2e6-e768308aa9b4 1 Other Other +9ec77742-474c-43b0-9e0f-497635f4e979 1 Other Other +9ec7802a-6767-48b7-ae76-7233e1d87ea1 1 Other Other +9ec78cb4-1fad-4f75-af02-33098fd68074 1 Other Other +9ec7995c-2b94-4f76-8f40-b3ca23a17cdc 1 Other Other +9ec7cc7b-d0fe-4307-95c6-36f0bb7c3e1d 1 Other Other +9ec7db91-be93-437e-a2fa-d8832df19925 1 Other Other +9ec7e0df-2f7f-42a4-aa34-493d5fd62509 1 Other Other +9ec81c0f-c1aa-489d-9e87-04df153c1fb5 1 Other Other +9ec82c4a-6123-4734-ac6a-efc47f4ecd95 1 Other Other +9ec8507a-026e-42ab-af46-06cfb4dce403 1 Other Other +9ec8531e-9dc7-43df-95ea-a06ac43e076c 1 Other Other +9ec88c46-c77f-4fbf-9d1f-800dae64104c 1 Other Other +9ec89374-edd3-4091-a4ee-ac543521ebd8 1 Other Other +9ec8a7b7-bfe8-4f84-9c0e-a42a34d3e882 1 Other Other +9ec8af2c-704a-477a-991e-df04a50f33db 1 Other Other +9ec8c2e1-b832-4e7c-b1eb-fe6d698e1167 1 Other Other +9ec8f0e9-6c51-41c9-9f61-c700e2e3a6bc 1 Other Other +9ec91a54-3b72-40b8-b14c-eb0d86b37550 1 Other Other +9ec91f68-63e0-4a19-97fb-f3c889dd00e8 1 \N Other +9ec939d2-016c-42fd-b987-e7d622555f2f 1 Other Other +9ec95207-4fb1-4d1c-8a41-6180aed656e7 1 Other Other +9ec99db3-d9ac-4a1c-b199-64f36bcef5e2 1 Other Other +9ec9ac11-3afd-489b-8685-fe76d478f7a7 1 Other Other +9ec9c02b-0ea2-4318-add2-dfb0d44a6043 1 Other Other +9ec9d1ac-d971-43d3-9691-ec7ab313838d 1 Other Other +9ec9ff71-ee27-46f0-a6ac-e6d4a15a5fb1 1 \N Other +9eca09cf-9f9d-4f2a-9891-ed1c1f861822 1 Other Other +9eca3353-2401-4bfb-8e05-9b7cd1df4826 1 \N Other +9eca6662-141e-4cee-8f8c-1dec316d17ba 1 \N Other +9ecaa88c-2038-439e-b996-c609120f18f8 1 \N Other +9ecaabd3-833b-40da-a965-2a49672bf6a5 1 Other Other +9ecad2be-4e7f-4a27-9a32-0357a5ef6ec7 1 Other Other +9ecad653-3146-40ae-a87a-eb3bf30869ad 1 Other Other +9ecb23b7-0e45-49d3-8334-1028a51d3060 1 Other Other +9ecb3fac-4280-4bcb-b18d-9412949cc14f 1 Other Other +9ecb4061-6915-4344-b20f-4b8dae2b5cd9 1 Other Other +9ecbb322-0662-4056-87ae-00eb92047730 1 Other Other +9ecbc113-7159-4816-93bf-a80e975512fd 1 Other Other +9ecbcc08-5710-4eff-9d9f-924a210b9512 1 Other Other +9ecbfea3-501b-4ba4-8f94-12ed885e3347 1 Other Other +9ecc2a6f-d200-4397-bd36-1d80a2fda5eb 1 Other Other +9ecc5dfa-37ca-4b59-a13e-fa9d4f374b70 1 Other Other +9eccae87-8526-4df7-a065-f29a368895e1 1 Other Other +9ecd27c9-cfd6-4925-88e1-1ca786bfcfe6 1 Other Other +9ecd3e47-58a8-4cba-a00f-223225719630 1 Other Other +9ecd4d31-1dfb-4ab1-b18d-1063ac6802c3 1 Other Other +9ecd5759-e6bc-4687-9c3a-0d1383f5fe51 1 Other Other +9ecda040-6251-412a-a4b9-568f02f9e9da 1 Other Other +9ecdbe85-9b1c-4038-b9a3-9107acb0126b 1 \N Other +9ecdee9e-58e3-4560-ab30-ccb71f7a8d82 1 \N Other +9ecdfc2d-fd84-420d-a39f-648089807895 1 Other Other +9ece41ff-7256-4b76-83c6-cc00f3630b26 1 Other Other +9ecefddf-9fc2-433c-8864-b226b3873124 1 Other Other +9ecf2326-09bb-400a-b0a3-fb55c7fd62e9 1 Other Other +9ecf3e63-bd7f-424f-b03d-17c1c0bb61db 1 Other Other +9ecf7bd8-aa04-4bc2-aebd-af6611f11673 1 Other Other +9ecf803d-cbbd-4dd2-8ed5-4c1f77ae8626 1 Other Other +9ecf9cb9-d749-4f7b-8460-b05d4e46bab9 1 Other Other +9ecfb857-856d-430e-97ae-71d5bc5faf8a 1 Other Other +9ecfd264-8afe-4ec7-8c43-d88e14901ab7 1 Other Other +9ecfe816-f991-4f8c-a52e-f78350ecc3ee 1 Other Other +9ecfe9f8-ba03-4c06-aa5f-e925529320c4 1 Other Other +9ecff516-c0bd-450e-a14e-aa51a4cdd358 1 Other Other +9ed00628-a775-4c91-8ac1-f26e4c391588 1 Other Other +9ed05e7e-534a-4609-9a74-e6fe8a78cfa9 1 Other Other +9ed0cb88-7cbe-4ef9-81ca-c29af4ef7ad1 1 Other Other +9ed13665-d04b-4c77-9787-a65a6b0bfb13 1 Other Other +9ed13b8b-0acd-444c-83f6-7a3d7e29b7fd 1 Other Other +9ed13c97-4b22-4275-a08e-6178edbc8e8f 1 Other Other +9ed14123-c039-4ef1-842b-64a31db8e7cb 1 Other Other +9ed15b9f-efa7-4585-8a33-17a06e4f0579 1 Other Other +9ed196d2-4da5-49fb-b9af-34ad0c39583e 1 Other Other +9ed1aea2-4da1-498a-ac98-b7621f80171a 1 Other Other +9ed1d2f3-0712-4176-a270-d87960320a65 1 Other Other +9ed20c2a-6d3b-4ba2-8e34-167172969b5b 1 \N Other +9ed22a0b-15fd-4c3f-85c6-24caf08b785a 1 Other Other +9ed2b563-878d-41f7-8f10-12a3e28ab96b 1 Other Other +9ed2bb1b-6f9f-48f4-a4a5-4714c0cb6538 1 Other Other +9ed2f4a7-ef2b-4efc-a876-13e881e85014 1 Other Other +9ed3467b-f5af-4843-801d-76a73033d06b 1 Other Other +9ed36618-a939-4ddb-92a1-6240a9b262c8 1 Other Other +9ed3aec1-a2f9-48c6-a598-a6adbbf8d068 1 Other Other +9ed3cb07-7ed2-4e65-848b-1a0d1bb6c891 1 Other Other +9ed4ab44-c865-4dae-8693-238f23585207 1 Other Other +9ed4c3b3-7a9f-4497-9d5b-4945ccd92c1a 1 Other Other +9ed4e884-08e1-44ed-822a-d230ef8af1eb 1 Other Other +9ed5daea-f273-4fee-a35f-5405d105e423 1 Other Other +9ed5f247-067a-45d4-9949-3a3b87766d4e 1 Other Other +9ed69a5e-2a60-41f8-b110-5d89fac4ea73 1 Other Other +9ed6ad00-9f79-4d51-bcd7-bda173717092 1 Other Other +9ed6e7ef-a7a0-4cdf-88e1-e56a4cb0e18a 1 Other Other +9ed6ea8e-1652-453f-ab8f-7f2c1b0d36fc 1 Other Other +9ed6f0e1-b983-4952-a90c-5749277a4ad6 1 Other Other +9ed702db-da5b-4ebb-951c-2841fef4b67c 1 Other Other +9ed77e0f-8992-42e9-b3d1-7eed0810aca3 1 Other Other +9ed78f7e-290a-417a-a9ef-0f1660cf82b6 1 Other Other +9ed795f7-261c-4ceb-9962-0b78e8162b2e 1 Other Other +9ed7c1b7-57c0-4cfc-b7a6-0fd1ac1c2dd7 1 Other Other +9ed8722b-d6be-432c-a732-0ee7a2ff8ebd 1 Other Other +9ed87552-ace2-4d33-9745-5d100c9fe841 1 Other Other +9ed8fffb-cabe-4569-a073-50eb1edd569e 1 Other Other +9ed901e8-44f2-48bf-9c1e-4e941d630a14 1 Other Other +9ed91c6b-b079-489b-afe4-358b021f613a 1 Other Other +9ed93e11-df60-4465-a5b0-18fe076952a2 1 Other Other +9ed9489f-b1f3-4284-952e-fc33bd1e4397 1 Other Other +9ed9585a-5e97-4913-831c-c3cc4d45a35d 1 Other Other +9ed96207-39ab-435e-985a-90fd688d34f7 1 \N Other +9ed9b3e8-d92b-495f-b0c0-d5c17e60961d 1 Other Other +9eda1cdc-4d94-4377-abfa-fc9319375777 1 \N Other +9edac79f-270e-4712-a43e-0b53c8fc2394 1 \N Other +9edaf7f5-cbb2-4e35-9d40-53017cbd718e 1 Other Other +9edb0973-31d8-409f-846c-222611691f1f 1 Other Other +9edb33dc-ba24-4157-8e79-32d23f76f57e 1 Other Other +9edbaea6-93b3-46be-8f96-61a98ced1c16 1 Other Other +9edbda3f-2a4c-44ab-8120-6694e3efa6a4 1 Other Other +9edbe327-5848-4eee-b1ad-84432fe72806 1 Other Other +9edbf13a-42a4-4497-b7ab-5b142366b441 1 Other Other +9edc2256-94ed-49c9-ac01-cb96c9732c9f 1 Other Other +9edc2e43-61fe-43cf-8ab5-c4f830c0270b 1 Other Other +9edc3e62-2aef-40ad-a46f-ed77fa86562a 1 Other Other +9edc40ba-402e-4518-8400-715dac18a94b 1 Other Other +9edc46c0-b6fb-4672-b0c1-4d9583157f37 1 Other Other +9edc691e-26f2-4520-891b-1bd8ffecfc57 1 James Other +9edc93a9-5d4e-449a-a6c7-e770c2ba4d71 1 Other Other +9edcbde7-4ff4-43a4-8ad1-f354c1934126 1 Other Other +9edceaa2-e902-4130-bfed-266e41559062 1 Other Other +9edcf417-bdcf-40f3-a621-92b0697d26ee 1 Other Other +9edcf677-bd91-4a63-bb9d-7efe4b78b173 1 Other Other +9edcfa67-5e8a-4351-ab5a-2832ed37f63a 1 Other Other +9edd401d-2054-4be0-9fc8-6aad3551f59e 1 Other Other +9edd47ad-ae51-408c-8492-4f8551807e7e 1 Other Other +9eddb6cd-171d-419e-9494-ee1264ca1022 1 Other Other +9edde1c8-4097-43ed-aca0-7f5fad743de5 1 Other Other +9edea8e5-27b4-468a-a39b-bbf0cedc2dda 1 Other Other +9ededd56-4da5-4311-9388-a759c0d195e2 1 Other Other +9edf2ad3-e391-4e79-b149-4ff6e003cb28 1 Other Other +9edf4233-6d8b-4655-af6e-64696e42e2e7 1 Other Other +9edf7cee-a861-45f3-85b3-4c8215ebc0e1 1 Other Other +9ee05e3e-94fa-4822-bbd5-b1625b141ce6 1 Other Other +9ee0880e-d3c7-4ced-9752-95f9d5e59d03 1 Other Other +9ee0c9aa-8a8b-445b-ba69-c35cdf6f1daa 1 Other Other +9ee0eb79-a94f-4aad-b6e3-8c6c52cdec6b 1 Other Other +9ee13d50-7113-47cb-bb7a-fd81135a1c33 1 Other Other +9ee15586-4f60-4f91-a368-3861b7c65d3c 1 Other Other +9ee15c93-5c63-4c31-9f8f-ae4a673c54b1 1 Other Other +9ee1ac4f-edb7-4973-b91c-08b0cb01c171 1 Other Other +9ee1ad5e-f50d-4a64-bf4e-6b4fb637b379 1 Other Other +9ee1e9de-4728-47e8-808b-0282a45f53d6 1 Other Other +9ee22e01-a1ff-44f8-988d-084a69e5b165 1 Other Other +9ee29dd6-f939-4f5d-8dfb-f72a23d8a5d4 1 Other Other +9ee2b32c-568a-4cf6-adb1-a5b3bcb8804f 1 Other Other +9ee2f4e6-ff29-4c81-82aa-aad2f6af418c 1 Other Other +9ee38470-e224-4eaf-a175-4c4a47f8ce9b 1 Other Other +9ee38946-4591-4c43-84ac-2bae0f78a1b2 1 Other Other +9ee394ee-e3f2-43c6-ba09-58576ade0953 1 Other Other +9ee3bb78-7e21-4dd8-bea7-d2f7285f9ee1 1 Other Other +9ee3d62d-2b5b-4faa-96c3-4c8763285206 1 Other Other +9ee43730-473c-45f4-89f7-b3dbbdabc8d1 1 Other Other +9ee44cf7-3afc-4bcc-8caf-7a5f294be71f 1 Other Other +9ee493a7-fcdb-46cc-bdaa-b24370356f43 1 Other Other +9ee50ef4-7980-4ac3-affc-ac47a667e4b1 1 Other Other +9ee56de9-7665-473c-bfda-d102c9832b9e 1 Other Other +9ee57e47-05f3-4bca-adb1-95f0c2fff70a 1 Other Other +9ee5874c-c155-4f70-9b6d-0449d69fd38d 1 Other Other +9ee5f1b8-6e0e-4a67-8caf-2357bb16f34e 1 Other Other +9ee5fdc5-49d8-4e55-93e4-44be15c95d95 1 Other Other +9ee60744-01a5-4ec0-aa2c-8f533a39532e 1 Other Other +9ee61d68-d908-42e5-acc9-ef01534f793e 1 Other Other +9ee654a0-6322-4a12-b405-ec71c5ccb987 1 Other Other +9ee66862-975a-4f64-9fcf-b453a395c60d 1 Other Other +9ee66fbe-1a34-40e4-b436-18356ec55a34 1 Other Other +9ee6f1dd-4326-413b-aed7-705b94ce9898 1 Other Other +9ee6f343-9bc5-480e-8041-d0ed7117b23a 1 Other Other +9ee70d8f-ea09-4a91-96f7-d25efd6fba54 1 Other Other +9ee77271-3d89-4f0b-ad79-78804780dd40 1 Other Other +9ee783a9-4ea8-47b5-b6c0-4afcd0419df4 1 Other Other +9ee7bf83-9e5a-4ea0-bd09-a85d083fadde 1 Other Other +9ee8365e-9cc1-4198-9e29-a2383b5716ed 1 Other Other +9ee8411b-288e-41b7-a1a2-2a3d2230b1c4 1 Other Other +9ee84ff5-94e2-4cd9-9bf9-7adb2174554c 1 Other Other +9ee86ae0-2cd0-4769-9436-f7e187023e1f 1 Other Other +9ee87bb4-a322-4686-845e-8f656df2af44 1 Other Other +9ee88263-4f61-431b-b377-7de62a4c1899 1 Other Other +9ee912a5-436e-45d5-9050-8ed7706f06ba 1 Other Other +9ee91cc0-9c14-43e0-b140-a220eed58997 1 Other Other +9ee937e2-a09a-4fb4-ab85-2cf096581e3c 1 Other Other +9ee93867-17b7-42f6-8a11-86069655f7c1 1 \N Other +9ee95219-0419-4f26-a3b6-21b4f818804c 1 Other Other +9ee99966-11bb-47c3-8cc7-df6f8204d711 1 Other Other +9ee9b893-54db-41f2-8841-dbc607796f1b 1 Other Other +9eea1933-6df1-4e99-b256-685d13523b5b 1 Other Other +9eea3de7-4012-4698-b7ee-c9eb1d751475 1 Other Other +9eea95f9-6a97-4aee-bc35-988cc741363b 1 Other Other +9eeaab54-0d22-49f8-bea0-d2e45c3b11e5 1 Other Other +9eeaad15-fe14-46d3-9c05-fe2d23ec4f91 1 Other Other +9eeac685-a22a-4b97-8f52-a28b2024ae6e 1 Other Other +9eeaec0c-2793-43e7-820b-2847922499e3 1 Other Other +9eeb0723-1c7a-4cc5-ab26-dafdcd32e13e 1 Other Other +9eeb2b8f-1abf-4ed2-8671-b4f8276dbebf 1 Other Other +9eeb482e-dd11-4390-bee9-d3eb2682993c 1 Other Other +9eeb90be-87fc-443b-b2a7-e21d81c8afee 1 Other Other +9eebdae9-caf0-42b1-881c-eaafbccc491e 1 Other Other +9eebdf56-6a03-49c1-81e7-8d9d5900e5b7 1 Other Other +9eebedde-769f-4b90-8e77-cb73c6796c77 1 Other Other +9eebfa78-1ce0-4a43-af84-2d987c189bfd 1 Other Other +9eec81c0-ce55-4ce6-b3e4-ec25050d63eb 1 Other Other +9eec990e-0450-4da4-aaa7-d3d255de860b 1 Other Other +9eed4145-e332-4c4d-acca-29b4c9fc1b4e 1 Other Other +9eed4406-19f6-40b7-a398-4b5bbb883b90 1 Other Other +9eed6023-2fab-47db-9929-4937e1d181a9 1 Other Other +9eed66a7-73fb-4ab4-afa2-fdf8c015f31d 1 Other Other +9eedf1f0-66ba-4014-ade9-b19588d6eab9 1 Other Other +9eee3f85-6265-479d-933b-9a37e4ced7a6 1 Other Other +9eee5547-8e36-4247-8dc5-c4275601b655 1 Other Other +9eee896e-b56b-4676-8c9d-4b9c5f75a39b 1 Other Other +9eeeb404-ec3c-4b0f-8f12-72fc3d2ba2e6 1 Other Other +9eef044e-af1d-4653-89a2-70ef9977571b 1 Other Other +9eef237e-3755-41f1-8bd2-27005dc88171 1 Other Other +9eefd579-86b6-4214-b219-542b466429bd 1 Other Other +9ef03f14-8ba2-40bf-b775-1fd72134810d 1 Other Other +9ef0ab8a-927e-4c0b-b84b-126a16991193 1 Other Other +9ef0b29f-5112-4ea5-9082-d1f3a457d3d1 1 Other Other +9ef0bbb4-69b6-4a89-b119-627c176d6dbf 1 Other Other +9ef15e92-71a8-4c3d-a5ef-8215c52fcb50 1 Other Other +9ef175b1-52a2-408b-a507-be7e9fde6ce1 1 Other Other +9ef1d5e0-96eb-4eeb-8bc9-14e5e5677dd3 1 Other Other +9ef2322c-55ac-48a6-8d29-d104538d6de4 1 Other Other +9ef27f32-e259-4ee0-83c4-6c31666a2d41 1 Other Other +9ef29400-70c8-4dd6-be92-378c1efef4f2 1 Other Other +9ef2a08b-84e3-44b3-8a99-82697c9b51d5 1 Other Other +9ef2d1e9-78c2-40c4-8075-05b7c5d1a3f9 1 Other Other +9ef32231-5f09-4986-b425-736084d971c8 1 Other Other +9ef32bcc-920b-442a-b0ed-05356673d10b 1 Other Other +9ef343d8-30d3-45fa-acb9-513aba657e4b 1 \N Other +9ef34cf2-18cd-4cfa-a643-147dd0e77672 1 Other Other +9ef3556e-d82e-48eb-88e3-b564adc8449a 1 Other Other +9ef40d19-626e-42fd-9974-ea582cd2abff 1 Other Other +9ef431ad-c96d-44ce-80de-4ff015ffb50a 1 Other Other +9ef4b69e-d2d8-4827-bbfa-19f61f0062fc 1 Other Other +9ef4ce8c-8f36-4b3c-882d-457447a533c5 1 Other Other +9ef5094e-a29b-40f4-b1d3-1a63a6192238 1 Other Other +9ef52c89-85ba-4795-a5c9-69a4a64e7d1b 1 Other Other +9ef5518a-662d-42de-9c92-9917a9f80499 1 Other Other +9ef5618d-a31e-41ad-969a-49a795e1f353 1 Other Other +9ef56c2c-8cd1-403e-8572-5dd735ec85b5 1 Other Other +9ef5ab81-6518-47c5-996c-4a7a5a9c9b41 1 Other Other +9ef5e7a1-c735-4b1f-9419-7428eef38597 1 Other Other +9ef6296c-21a3-458c-91de-fad84d3c06b6 1 Other Other +9ef62db8-c152-4d69-95e6-49545eebc50e 1 Other Other +9ef6876d-fdd6-4bdf-b2bf-a1f62e0110ed 1 Other Other +9ef6a839-563c-4de1-a4cd-3b02073a2e25 1 Other Other +9ef6a905-3011-41f6-a774-63faf1871702 1 Other Other +9ef6ba83-1d1e-4d17-bf33-6b60fedf51b1 1 Other Other +9ef6c134-bd4b-11e7-b556-fa163e8624cc 1 Other Other +9ef6ef0f-1686-45ec-aaed-97f262ce9a47 1 \N Other +9ef70238-e639-4192-8c3a-592284806579 1 Other Other +9ef7804b-bc85-48dd-afc9-9a8e36b59d8c 1 Other Other +9ef7d9b9-ed84-4e7d-875e-d01050f4e8e1 1 Other Other +9ef84e16-9931-44aa-9d2a-b16d01ae254f 1 Other Other +9ef868bd-414b-43ed-afcd-4179c40efcbf 1 Other Other +9ef8b55a-56ea-425e-a01a-eb0afcf0ee60 1 Other Other +9ef8dd63-ece4-4d37-8cf2-92976920e915 1 Other Other +9ef9464f-c9f7-4077-970f-2f282856500c 1 Other Other +9ef949fb-eedb-4f96-a6ad-b02a7428986e 1 Other Other +9ef9555c-7322-4dca-bf68-c75027b2826b 1 Other Other +9ef968e6-177c-4fef-9654-d89269603c70 1 Other Other +9ef9a4c6-9ca3-4890-9e63-ba0307f6f1f8 1 Other Other +9ef9c7e2-2cf8-4f2e-8924-48f066161dcc 1 Other Other +9efa0e27-b1f5-42d2-82ec-796424fba346 1 Other Other +9efa3007-66f6-4819-a962-f5b0f5e9bf96 1 Other Other +9efa56b0-eea2-488b-90c1-0f16560267d1 1 Other Other +9efa9cae-9f4f-4a77-9bec-6c247385afd3 1 Other Other +9efaa141-093c-4ebb-bd5e-6a64a4293fe6 1 Other Other +9efae3a4-3341-465f-9ad8-b075752925e9 1 Other Other +9efb0feb-64cb-4af3-b675-55cb36d6da5b 1 Other Other +9efb15a5-ac95-4ec5-91cf-d3773cbc44d8 1 Other Other +9efb4277-7e3d-460a-946b-06838bc28b11 1 Other Other +9efb43bc-870e-43bd-8167-46b8435bafcc 1 Other Other +9efb5254-a2ee-49c2-9ccc-09bd1cae3c6b 1 Other Other +9efb97f6-d8a0-4a37-ba2a-75270ff31be2 1 Other Other +9efba4d7-e37c-4f29-b5bd-679f3d1dce42 1 Other Other +9efbf4d1-632e-403d-b06a-6f8630887de6 1 James Other +9efbfd3f-c2e9-4883-a862-4c0d10d80bb7 1 Other Other +9efc0a5d-5345-42fa-90ee-55aaf43869fc 1 Other Other +9efc7779-db5b-451b-acfc-6df6353f5e42 1 Other Other +9efcabb0-943b-4e4d-a5fc-33e323f158e0 1 Other Other +9efd1f5d-9ae2-4b58-b314-e72921b4c68a 1 Other Other +9efd60e9-7ed8-4f22-9576-62bf0506cbb0 1 Other Other +9efd7397-2bff-4182-a6d9-871d3e6cb9c0 1 Other Other +9efd8795-f461-4ff7-a42b-2fd9fea48569 1 Other Other +9efda36e-5851-491a-9849-cbf8caeae884 1 Other Other +9efdb1bd-7282-4f5b-b9d7-afd8bfa19446 1 Other Other +9efdd9d5-00bb-4305-af68-373c743547cc 1 Other Other +9efde3bf-70fc-4974-b235-527218927a78 1 Other Other +9efdf00b-3d33-4119-a47a-32582a3dcfc0 1 Other Other +9efdfffa-4d33-4661-964b-601903c71640 1 Other Other +9efe3e36-e249-4c94-af4a-19536f7b445e 1 Other Other +9efe5ff2-d28a-44ae-9a1c-0924d1ff272c 1 Other Other +9efe8b04-28e5-41eb-b1f9-4e7c1f262af5 1 Other Other +9efea5a8-cf87-46c6-bd11-0e8d04ec5d39 1 Other Other +9efea5ce-41f6-4b43-a8f6-72e4616fbafe 1 Other Other +9efec253-5a8e-4d7d-a998-f0894c8ba12e 1 Other Other +9eff1f32-bcd9-42eb-aa42-fec139ddce58 1 Other Other +9eff273a-b137-4936-9cab-720ad4194f90 1 James Other +9eff5d38-2320-44b1-872f-be63e7125643 1 Other Other +9eff60c1-4288-4718-b4e1-9a54d4182be4 1 Other Other +9effcfed-d7eb-4fc5-88ab-b7b1bb8df9c7 1 Other Other +9f0000b8-f599-46e2-b243-1cd3c3324ade 1 Other Other +9f001780-d2d4-4039-bf01-d945ddfa0e5f 1 Other Other +9f002333-2b8f-4e91-8dea-f368f6a80425 1 Other Other +9f0083f3-c1d4-4a77-9dde-2ed999f5d33c 1 Other Other +9f0096e8-21ea-4d03-b75e-c966845af237 1 Other Other +9f00e874-6be7-4bd4-a9c4-27441b09ebfa 1 Other Other +9f014903-d12a-4048-9484-7f73138b06fb 1 Other Other +9f0162b8-81f0-4098-9d63-37df028672e4 1 Other Other +9f016955-2933-46c0-a5ec-5187eced26e2 1 Other Other +9f018292-737d-4d36-a971-ca675f3b7791 1 Other Other +9f01a8e9-60af-4dea-aed0-595acf3b2a01 1 Other Other +9f01e2a2-b77b-49ef-a94a-e56b79ec610e 1 Other Other +9f01e74d-290d-48e2-adf1-6c0e5dff51a9 1 Other Other +9f01fb87-7c40-424b-b17e-5bdb6b188841 1 Other Other +9f023afc-cf4a-4e78-94af-bf38daea72e1 1 Other Other +9f025b49-9c19-4b63-91b2-800904e57675 1 Other Other +9f026080-16e0-4d19-8734-7f6e290b83be 1 Other Other +9f02fec4-98eb-4c92-8ff6-e9c685905569 1 Other Other +9f03656f-1724-4c94-a3e0-72e5a88e5fd2 1 Other Other +9f0372b1-7db1-4541-a144-64dbb28b6897 1 Other Other +9f03ab1c-c0ea-4339-a362-2c8aa7b28221 1 Other Other +9f03b7cf-9a27-42e7-9794-3c2c02f2d36a 1 Other Other +9f03e5cf-9a2f-417e-ab05-b721fe1a2adc 1 Other Other +9f03ef75-1ee8-43e8-8d18-183240763938 1 Other Other +9f043200-8810-49a6-8dce-8ef4a13e582f 1 Other Other +9f047b07-c4cc-49d9-8890-b32a5c28611b 1 Other Other +9f0487e6-4be4-434e-bcd5-3d86f29fdd6b 1 Other Other +9f049118-7f43-4921-9bc0-b093bad73b2d 1 Other Other +9f04af05-4e8c-49c1-a6b8-fe805a411448 1 Other Other +9f04af55-f3e6-4b53-adfa-17bd7de218c6 1 Other Other +9f04b6a3-f52c-497f-9493-8843fb147724 1 Other Other +9f04d148-f7be-4530-90b1-0a9b92d2cf63 1 Other Other +9f04df56-2de4-44a5-a603-75e6d8447ca1 1 \N Other +9f050e28-2524-4358-afb6-5da15997ce82 1 \N Other +9f052ce1-776e-4ae0-8140-0b6991a96192 1 Other Other +9f053e4f-d0aa-4b63-ba53-3a7c140df3a7 1 Other Other +9f05e5f1-5a88-430c-adbb-c330d5a3a881 1 Other Other +9f063f58-ad16-43a8-88c1-44cdfda2b4c2 1 Other Other +9f065e54-2579-4447-823e-cd32bfd7eb74 1 Other Other +9f0660d4-0819-4e3c-ab66-d3011f7f2756 1 Other Other +9f06881b-41b8-47a6-a28e-c150d60bf88e 1 Other Other +9f06a186-455d-11e8-b2e5-fa163e8624cc 257f6774-64eb-11e7-954b-fa163e4dd901 Other Other +9f06a20d-e98b-4709-b565-4071781fb78c 1 \N Other +9f06d5da-cbf7-461a-a179-b02fca1d464b 1 James Other +9f0720b0-4a82-43f6-80e6-e93e4e46af6b 1 Other Other +9f0734ad-d254-42cd-8936-c0fbcf286d44 1 Other Other +9f075c40-6589-43c5-a8f6-5d5b7a342620 1 Other Other +9f076735-a1bf-4043-85e7-64dd4aa0fc25 1 \N Other +9f076981-105b-4f0e-9dfa-4d1043f4eadf 1 \N Other +9f078585-98bf-4017-a2dd-920c8cff6a7c 1 Other Other +9f07c977-29da-42dd-8a0f-60581f03859f 1 \N Other +9f07cdcc-28a5-418a-b2ee-6d68336b82c8 1 Other Other +9f07de64-1d90-48c2-8648-eb604c80a005 1 Other Other +9f07e811-25a4-40d7-81dd-224a3951c0be 1 Other Other +9f07f776-049a-4032-9991-fae912b51234 1 Other Other +9f08651b-006b-4441-bcf8-c842b2e8337f 1 Other Other +9f087832-4090-4208-af1f-abf69dc773b2 1 Other Other +9f0888cf-99f1-440b-b115-26830ade2ecf 1 \N Other +9f0898a8-9ab0-4206-ac6b-c223ca58cb2b 1 Other Other +9f0908f4-89c4-43b8-b732-8927e283face 1 Other Other +9f093b8b-a57c-4100-9fa7-489af623b0ca 1 Other Other +9f096e27-b180-4d40-ad21-481f519f0d38 1 Other Other +9f0995f1-8008-491a-b05d-176de12f04ac 1 Other Other +9f0a522b-90eb-4e70-9fb2-73f8c4c6bbcb 1 Other Other +9f0a62b0-9085-4dd3-aa29-51742dadd0e9 1 Other Other +9f0acd65-b8d9-468b-90fe-4ab1cdffd782 1 Other Other +9f0afcc6-31fe-419a-9b8c-71bbdb575842 1 Other Other +9f0b5aa4-7914-4047-8177-cf12c7531907 1 Other Other +9f0bd0f7-9c03-421f-8bc9-44050cf50b5c 1 Other Other +9f0bd272-2330-45b1-a784-82ed8aea4aef 1 Other Other +9f0bd2bf-a6c4-4a58-a5d6-e0e82e963751 1 Other Other +9f0bde98-7e97-4bd5-8b53-8a6a3c3d1f50 1 Other Other +9f0c22c9-2aea-4457-9260-39f81ddca917 1 Other Other +9f0c2948-f975-4fd1-b3db-cdf089aa68b0 1 Other Other +9f0c5991-c088-4cfa-8227-5f9640f43423 1 Other Other +9f0c6436-0e36-4fb6-aa4b-3b340e0cc9f2 1 Other Other +9f0c7aed-b9c3-4441-aa0c-937c7cb2de74 1 \N Other +9f0c905f-47fb-4b85-aa2b-17878c2ca4c3 1 Other Other +9f0c98a3-90ad-46e7-beb6-b281d0e341b4 1 Other Other +9f0ca9d3-7b04-407a-a2bf-4516e09d991a 1 Other Other +9f0cbe73-1360-4d7e-855f-6913a3aee0ee 1 Other Other +9f0cbee5-b72c-4444-b69d-6d765872d40f 1 Other Other +9f0cc3bc-b362-4682-aa32-84b45a21ed70 1 Other Other +9f0cf7da-6eb7-49ea-a97d-817f08807ff2 1 Other Other +9f0d35ad-36d3-4266-b441-33db00953a95 1 Other Other +9f0db948-67a2-4a3c-bd4e-e23eddddebd1 1 Other Other +9f0dbc3a-7124-4f0f-b144-b2abdcd79b1d 1 Other Other +9f0dbfab-c910-4643-b6a9-4ff3aaedd9d1 1 Other Other +9f0dc659-0cb1-44ad-b7b6-a055ed89df9f 1 \N Other +9f0df1b6-cdc8-4c84-93fe-aa98df1e0aa3 1 James Other +9f0e0d0a-1e68-4c71-b124-0910b332a70b 1 Other Other +9f0e13c8-bffb-449c-a093-03e094145d04 1 Other Other +9f0e14e0-5dae-4258-8ae7-1ee158269eb0 1 Other Other +9f0e5149-c4c6-4bea-9ec0-480fd28e941b 1 Other Other +9f0e7c1f-9bbd-41be-9ea7-c6194cb62399 1 Other Other +9f0e7ca2-5df9-426b-a15f-7240b8e27c8f 1 \N Other +9f0ea9e3-e2c3-4bc8-b1d9-d2d36a9d68c2 1 Other Other +9f0ec14b-5ec3-4794-b4a6-403cae49fbac 1 Other Other +9f0ede6d-0512-43d9-97a1-365922bf9177 1 Other Other +9f0ee93c-1a98-413d-a3d1-a6ab45b30e40 1 Other Other +9f0eec4d-ca3a-430a-8cdc-6cb96fa066dc 1 Other Other +9f0f1fae-4566-478f-88dd-098d32acaf86 1 Other Other +9f0f7246-307d-4f32-8b8a-ac55976ef0f2 1 Other Other +9f0f889f-c386-4601-ae5e-32bfab4ae8ed 1 Other Other +9f0fd10e-b808-48c1-b28c-055ba7139b9c 1 Other Other +9f104e71-9ab4-476b-9b85-1154f5714e52 1 Other Other +9f1058c4-5f27-447c-a542-831a856866d9 1 Other Other +9f108c90-8f35-440a-96c1-435452912e4b 1 Other Other +9f10bc96-4a27-4e45-b0f1-c0625a63753a 1 Other Other +9f10ce96-db09-4312-a397-2265ce36f04c 1 Other Other +9f10ed32-0edd-4726-8024-3952a1dd10a8 1 Other Other +9f1146db-f6f9-4cc4-b131-5defcf3a83bf 1 \N Other +9f1155ed-859b-4cb2-8d04-695a9c04ad41 1 Other Other +9f1173c1-ad4d-4113-a2aa-99ee04a7218a 1 Other Other +9f119c31-51c9-4289-8493-4935a51d4d4b 1 Other Other +9f11d047-fbd1-4589-a146-749f9ec0c202 1 Other Other +9f11d849-e54b-464d-b8ec-8858446820b8 1 Other Other +9f11dd83-27f8-4368-9549-a3a705f8cb31 1 \N Other +9f122c70-7585-44dc-8665-b55571984627 1 Other Other +9f122f2b-d795-411d-8f9c-0ef613588efa 1 Other Other +9f124a34-1004-43a1-888a-e9c58715b110 1 Other Other +9f1250be-4bf5-4c84-bdba-718c59dd021c 1 James Other +9f126823-c071-427e-8dc1-48a08c7ef2c8 1 Other Other +9f12704d-bcbf-4a84-becd-2bbcc1074543 1 Other Other +9f12750d-04e0-40d2-80e8-25fbcbaf2b35 1 Other Other +9f128837-e11f-4042-9cee-d6f22bbe5c95 1 Other Other +9f1294d8-f3a9-4da7-9cef-47e4ab2716f9 1 Other Other +9f12b32e-8b0d-41d5-bae4-b9fd4b69b473 1 Other Other +9f12ba63-a12a-4d5b-a556-d0606e3eeb56 1 Other Other +9f1333ef-4bf3-4041-bfc6-00cf7588fb83 1 Other Other +9f135060-4339-4d36-91f9-29dfa9f79579 1 Other Other +9f139b7b-4dfe-4879-a367-b3095defc369 1 Other Other +9f13c8b4-fa54-4798-b107-99a8285e78f6 1 Other Other +9f13f447-d84f-4481-8c72-a3cbf99bbfe8 1 \N Other +9f1409c4-8d2c-492d-aa72-f3a897d68296 1 Other Other +9f1443b2-4697-4d32-8f38-4d1af503f42e 1 Other Other +9f144dd7-a1c4-487e-bcc5-129c3eb451e8 1 Other Other +9f148db7-a14f-4022-a237-f574cc7b9b90 1 Other Other +9f14973e-9946-4e4a-85ad-767b53e8807d 1 Other Other +9f14a91d-6cf8-4b9d-ad4c-8d2a143e634d 1 Other Other +9f14ee7d-e5d2-4a20-8b16-c03e07396f4f 1 Other Other +9f150767-ad74-49d2-8776-b0553fbc7f10 1 Other Other +9f150911-3f79-4658-86f7-16478fb753ba 1 Other Other +9f15d0eb-ca9e-478f-befb-3ea18a66404a 1 Other Other +9f15df26-b286-11e7-aff0-fa163e8624cc 1 Other Other +9f160aa1-5e5e-4dd6-acc7-1d516e1b2140 1 Other Other +9f1613a6-18ac-48dd-ad10-4178301d8ebf 1 Other Other +9f166cb4-f8ed-48fc-97ef-90ff54a4b6c9 1 \N Other +9f167fa7-39ca-48fb-9c4b-63d2014b87ab 1 Other Other +9f16ade3-8ed7-4b5a-953c-7c4686286cab 1 Other Other +9f16e9a3-dbb1-43a6-9fbd-b937a19df13a 1 Other Other +9f16f7b3-7191-4d00-9174-6bed4c6fa6ad 1 Other Other +9f170803-70e4-4f13-8281-2d575ece061a 1 Other Other +9f172d47-3271-4301-b0cb-3432f15df34d 1 Other Other +9f173b83-5aa1-4f8a-8c4c-f6c4ed475e33 1 Other Other +9f17450a-e8bb-4b3b-ba07-11d15fb4907f 1 Other Other +9f174f2c-89c0-4f24-8dcc-47e4bb850d19 1 Other Other +9f179cab-a632-4d34-a90d-a28e70cf2bc4 1 Other Other +9f182207-b799-4199-973e-8b69eb63f183 1 Other Other +9f1834ee-9156-45c6-a451-b7599185000d 1 Other Other +9f184f6e-837d-40a0-b24f-0e1bf62934fa 1 \N Other +9f186158-aa8d-4031-b4ce-70d190908e5c 1 Other Other +9f1861e7-d75f-44a9-ad5b-a31234754172 1 Other Other +9f187f23-5604-4f70-bb75-bf723e7137de 1 Other Other +9f188cd8-9917-426a-ad49-f0311889fb90 1 Other Other +9f189f75-90c3-4deb-abd0-064fbb4062e3 1 Other Other +9f18aa19-3dfa-4f43-83f3-fcd20d3f7849 1 Other Other +9f18e526-4bbf-401a-92c9-0edbdb0a885b 1 Other Other +9f18eb12-c9c2-43a0-a504-bf4cd46d6ff1 1 James Other +9f193cf2-e930-4e47-9bf3-a0577c9c4f5b 1 Other Other +9f1995de-640f-4442-a5a3-7fbe4da965bc 1 Other Other +9f19da8d-48e5-4615-9ce7-9be0a9e2e56a 1 Other Other +9f19f004-6123-45a4-ab60-2f72b9a5803a 1 \N Other +9f1a0f77-bfe4-49bf-9086-516d840db666 1 Other Other +9f1a23bd-1ecc-428e-a1d9-6f698606cb37 1 Other Other +9f1a904c-ae6b-4a82-8ecb-6a9bd24f42f9 1 Other Other +9f1a9084-5b88-4b03-9550-f3eb0c4ea6c8 1 Other Other +9f1aa1d4-488e-45af-8f26-49c129abe3c0 1 Other Other +9f1ae74b-d6c3-4ea3-bf2c-350b0c6d4c27 1 Other Other +9f1b0bf0-1a14-4308-9119-4a0d55c9d30d 1 Other Other +9f1b0f59-741f-4a49-94b1-2ca3cdfeafc6 1 Other Other +9f1b1f44-1703-4c39-bd1b-19eb7beba406 1 Other Other +9f1b77d0-9d0d-4259-974a-aeba09cb1693 1 Other Other +9f1bb376-3dbe-45b7-8523-a88910f9cced 1 Other Other +9f1bcbda-f6db-44e2-8c40-b151e44d5bc2 1 Other Other +9f1c8303-906c-4fa3-ac83-587bce9252c0 1 Other Other +9f1c9019-2a1c-4cb6-ad8e-c806766bd29b 1 Other Other +9f1cc616-82fa-4e83-8aad-f2e537a93da5 1 Other Other +9f1cf647-cda8-4f94-9a6b-fcb79be089d6 1 Other Other +9f1d081a-1da8-4b6b-96aa-c28f567422c0 1 Other Other +9f1d2672-74ae-4ba1-9f8b-6b40c1f48d46 1 Other Other +9f1d4e5d-b859-44f3-bc7b-2bf250057751 1 Other Other +9f1e3547-3543-42e9-af1e-63ea6cb88a4d 1 Other Other +9f1e3d66-40ba-41eb-8986-4a1fa1563c01 1 Other Other +9f1e588b-5388-4b28-8e31-279bf632984c 1 Other Other +9f1e996a-e039-42dd-83f4-dc3cc1495b1c 1 Other Other +9f1eae88-c38a-439b-b107-19966378094d 1 Other Other +9f1eb880-a669-4406-85b2-7fcec5004a15 1 Other Other +9f1ebcac-915e-40cb-ae5a-a6520d31355f 1 Other Other +9f1ee9e7-8a76-4d95-9d7d-5330589ae68d 1 James Other +9f1efe61-8946-4c76-8e24-d94ce242cf06 1 Other Other +9f1f154d-ccf5-4e26-8078-2b37a54a949a 1 Other Other +9f1f3b01-4f78-4cde-82cb-54d957a498fa 1 Other Other +9f1f482d-15bf-4f90-b942-90220d26b3a8 1 Other Other +9f1f58c7-ddd8-4cb1-8833-c47ec663adcb 1 Other Other +9f1f63cf-3ce6-49b6-a014-7bcbaab34475 1 Other Other +9f1f6421-33d1-4337-abe0-65f4cae76ee2 1 Other Other +9f1f71a2-e671-4325-92ec-37d13fcc7e6a 1 Other Other +9f20042d-41a7-4331-9929-11e178376cd0 1 Other Other +9f20137d-e344-46dd-a943-1f3c95878068 1 Other Other +9f21125a-b25a-4562-b3b5-50e418d79c4e 1 Other Other +9f211e45-6c46-4644-be7f-81080c58bf59 1 Other Other +9f219b76-a18f-49a4-9cc9-5960cdfbec83 1 Other Other +9f21cf5f-3b90-4744-8be9-ba84e1f30ded 1 Other Other +9f21fd7e-dec7-405d-85fd-8adc0266413b 1 Other Other +9f2218e8-55ea-40be-adcd-aa38f34f50f2 1 Other Other +9f2259b3-5f16-45d3-849f-0b67527eb3c0 1 Other Other +9f22898c-6846-4f2d-b9eb-55d26e8ff280 1 Other Other +9f229b8a-df28-4ead-93e0-0c20d9a32504 1 Other Other +9f229e63-a28f-457d-99b0-8ff68c2fb434 1 Other Other +9f22a7fd-c3f7-4682-93f8-7d6a9777c280 1 Other Other +9f23094e-67a1-48f9-b55a-dad5f6d54212 1 Other Other +9f233e80-e661-4763-afa9-ee42853bea5d 1 Other Other +9f234f0c-b5f1-4e44-85f9-4680920bae40 1 Other Other +9f236d41-0251-499a-bee4-4fd46b163ed3 1 Other Other +9f23923f-927e-48ce-bcd0-f31518da0a09 1 Other Other +9f23b720-3860-492c-b78b-0c053bf64065 1 Other Other +9f23e5d6-6a11-44b6-b586-66c147d75747 1 Other Other +9f23fe29-fe33-4d59-8476-b3c7abdacf56 1 Other Other +9f241e10-840c-4aa5-9538-8494bc76baea 1 Other Other +9f24890e-0c96-47d8-a926-86c34b6f46d8 1 Other Other +9f248960-d301-423b-84ea-aaf729f83735 1 Other Other +9f24c40c-b46b-4c26-8e0e-5e2a398624b2 1 Other Other +9f24e112-751c-443c-8825-e54b92dd32d6 1 Other Other +9f254186-d81d-4854-97cb-03644d71ee07 1 Other Other +9f25482e-77e9-4566-8ba2-ed22fd63e0b3 1 Other Other +9f2558dc-8054-4fcb-834d-d7ff4103c3e6 1 Other Other +9f259194-eb66-4550-bf05-abd6ae6a9d60 1 Other Other +9f263a37-5725-4815-aafd-e8286b4c6674 1 Other Other +9f264f75-8717-40cb-ab89-0f644ae26d8a 1 Other Other +9f2677f8-b5ff-482f-bc31-31f2e5834a8f 1 Other Other +9f267e4a-99ee-4059-af87-98666fbec1d8 1 Other Other +9f26e2b0-65b6-446e-b2eb-69af4af2b253 1 Other Other +9f26e3e3-e8bd-4b37-870f-d10be09d4b72 1 Other Other +9f26f5d0-055b-4f68-8f4a-bbd62b7c90fd 1 Other Other +9f272cc0-5812-41cb-b7d0-934f92d62d97 1 Other Other +9f27b08e-fa18-4d28-9dac-9ce260e81998 1 Other Other +9f27de84-d6fe-4692-b669-4e75fcf93098 1 Other Other +9f27e373-95e8-4e59-ac34-fff4ec38e062 1 Other Other +9f27e5c3-65a7-4288-b977-f39f27efddcc 1 Other Other +9f2802d0-f8db-4d66-8514-ef10240d7920 1 Other Other +9f280a4e-214c-486a-b9c9-5fd6920ce58f 1 Other Other +9f28346a-7517-42b5-8b10-a87f55d8a6b0 1 Other Other +9f2865e2-9d45-405b-a38a-a1fc3dc618e2 1 Other Other +9f28e8f0-6b17-4346-9371-7639c45daa75 1 Other Other +9f29037b-497a-4c50-a37a-fdef17c91ee2 1 Other Other +9f293d28-ad3d-4e97-81a8-2cc863a1088c 1 Other Other +9f2953f9-74a1-46d2-ab4e-30f205297ce8 1 Other Other +9f29733b-408d-4b12-90e3-8f6405da9dd0 1 Other Other +9f2982ca-e2b7-43d3-9dea-f61cb30ac99f 1 Other Other +9f29a91a-a874-4929-a6c6-205fd59c0bd0 1 Other Other +9f2a0cd0-4e13-4e1d-88f9-aa6ccfcb5431 1 Other Other +9f2a23d6-c22e-45bc-87c3-2fa6204f5903 1 Other Other +9f2a290c-35e8-4e65-bae0-7a9785958829 1 Other Other +9f2a87fd-1c79-4b4f-a696-506cbbe19cd8 1 Other Other +9f2aa455-846d-43fd-bbac-6f48967dfd10 1 Other Other +9f2aca47-dda8-4b57-a503-c6f687b52b0f 1 Other Other +9f2af2fe-5629-4a45-a458-64e392dbf5ae 1 Other Other +9f2b0e1f-5db2-48ec-80c3-a2cbaddf9b30 1 \N Other +9f2b14b9-f87c-4620-a12f-00be9b23f338 1 Other Other +9f2c217b-139b-4ed5-926e-30bd21bfce7b 1 Other Other +9f2c4157-65d3-48b7-bc89-cf9f55fc8a9d 1 Other Other +9f2d0183-6929-4eeb-9ad5-b2ad98cfa0bb 1 Other Other +9f2d66e1-2067-456b-8c97-5c2528195195 1 Other Other +9f2d756d-55cf-4bb7-bed5-2f77e3e3a6d6 1 Other Other +9f2dad05-5198-49a0-9b0d-2720b999770c 1 Other Other +9f2dc7e5-8336-4eb8-aa5a-0a34645c82cf 1 Other Other +9f2e3e25-51f7-4878-b90a-7ceabdc76748 1 James Other +9f2e4d8d-22a4-40f5-b66a-508c3c193bcb 1 Other Other +9f2ed9c3-19de-4d61-8603-fda28668eb6e 1 Other Other +9f2f3bcd-566e-4f56-b36d-07ac4cf51b67 1 Other Other +9f2f8851-170d-4596-a007-b411dff6f29f 1 Other Other +9f2f9254-348b-4eac-95d6-e426567a0e2a 1 Other Other +9f2fd677-daff-4372-8d14-6f099b713cf3 1 Other Other +9f300da0-3cc2-4a83-b92e-3569facb04e8 1 Other Other +9f30254d-05bc-4192-82c0-f8f2b1dd0431 1 \N Other +9f302cbf-87c6-4b33-b98d-f2c877544856 1 Other Other +9f30358c-d2f7-4ef1-8076-57cf7933fa57 1 Other Other +9f306d19-97b3-4b8a-8533-5eb9ff0f05a7 1 \N Other +9f30bbf2-d4dc-443e-b5d3-ab13bb27abba 1 Other Other +9f30be08-54bf-441a-bbfe-b77a9f798b03 1 Other Other +9f30d0bf-0404-4fcf-85cb-aaf10a9c5c87 1 Other Other +9f30d169-ef9d-42ce-83aa-4cb5824689f5 1 Other Other +9f3106d0-b432-4d60-ab1d-f13fd4c75e7b 1 Other Other +9f316de3-46a0-4e86-b92f-15ecdb8bbcb1 1 Other Other +9f316e74-9647-41f7-8d50-e5e4c57aa4ad 1 Other Other +9f3192e5-3383-4a92-80cc-d95fcd808227 1 Other Other +9f319b9e-3041-4fa6-980e-5a77ba0fd898 1 Other Other +9f31a04c-6005-40c2-bf3d-6b5f44412cae 1 \N Other +9f31a357-e429-4751-9d33-0c41efc9007b 1 Other Other +9f31afbe-4348-4aa0-9b08-5cea47c299cd 1 Other Other +9f31b328-4a9b-4e0a-95cb-6b59dc6666c5 1 Other Other +9f31e1a2-19fa-4268-88be-28918dddb1c3 1 Other Other +9f31e46c-e66d-4b5c-9c40-059d18de28e8 1 Other Other +9f327cfa-8e65-4410-a10f-e58a762692a0 1 Other Other +9f32ba97-a1fc-41d7-bd0b-a8984ce375bd 1 Other Other +9f32c8bf-2af8-4a28-8c21-a72136f3fead 1 Other Other +9f32ce9e-aab0-4816-b374-bd3a914d13ae 1 Other Other +9f332d1b-823d-4c1c-ae45-746ca31e218c 1 Other Other +9f333e04-a865-430c-9d6f-021b98942a05 1 Other Other +9f33ffe8-4c7f-41bd-8360-154fd2728e24 1 Other Other +9f3403ff-365e-4b11-87a8-c8c10fa2d281 1 Other Other +9f3483fb-8b99-4263-999c-64cdb6ac58a4 1 Other Other +9f34b7c6-e9b3-46d7-bb87-3fd0bf2c6aef 1 Other Other +9f34cf67-a236-4d71-8e17-bc290ec9016e 1 Other Other +9f34e401-880b-4170-876f-86a358ce3f49 1 Other Other +9f34ec3e-7c9c-4773-96be-16eb4d0e4f1b 1 Other Other +9f35041f-ebf4-4b94-88d0-89e671b390bd 1 Other Other +9f351c46-d585-4feb-a477-58ec9e83bc29 1 Other Other +9f35245a-fca7-4d65-8214-cd793f65c422 1 Other Other +9f352da2-f416-4f06-8eab-970b225f9978 1 Other Other +9f358c89-ab0a-450f-bbb0-418e001f5cdc 1 Other Other +9f36384b-adcf-4fa5-86d5-0a1da5fba8c9 1 Other Other +9f36ad0a-55b5-424d-81dd-ef5713239489 1 Other Other +9f36c1cb-1856-4f6d-a991-da6ba036eb9a 1 Other Other +9f36c704-f616-4a1d-b4c3-530ea33f0611 1 Other Other +9f36dfac-c577-47fb-868e-abbcade7976d 1 \N Other +9f371fa5-b20f-4287-b6a0-8111bb3a1c73 1 Other Other +9f3747d4-3540-4767-9242-273d0b44605c 1 Other Other +9f375ca3-6f6b-47eb-b42a-327b5701d326 1 Other Other +9f3761a7-9e8a-44f7-a816-8b92ce714752 1 Other Other +9f37a683-33c4-43da-88f3-36700f583f78 1 Other Other +9f37ac05-a558-46fe-8fae-eee295d0d161 1 Other Other +9f37bb6f-9541-4572-b33c-4f1e6a5e120a 1 Other Other +9f381768-17b1-4cbe-9350-bce6cf2e220a 1 Other Other +9f386d14-5d82-4c06-8751-6eaa6ab0fda4 1 Other Other +9f38722c-a56c-4cc0-8d6c-0523c809031f 1 Other Other +9f38772d-5739-45c1-a0a5-4d83f98c08de 1 Other Other +9f3881bb-565d-4062-b814-ed3baf8b56ba 1 Other Other +9f38ba2a-0e59-426f-b419-9a56291d7328 1 Other Other +9f38fa49-2476-4288-a4bc-6fd32264b5d4 1 Other Other +9f39417a-92a8-44ec-9544-9b246d0e9f41 1 Other Other +9f399010-ac7a-437c-bcb4-1d00dd8f9ba5 1 Other Other +9f39914d-94cc-4477-9ea8-7cffaedc2750 1 Other Other +9f3a10a8-4734-405e-8b08-07481385cb4d 1 Other Other +9f3a14da-5746-471a-963d-95a9e8348fa9 1 Other Other +9f3a330d-ef18-42bd-ac7f-2be145b9bfc6 1 Other Other +9f3a706d-438f-4d4b-abe4-bfd2b468ead2 1 Other Other +9f3a8168-a360-46f1-a187-32228274341f 1 Other Other +9f3b6b58-cb89-435b-afbe-92f17e2bb35a 1 Other Other +9f3b738c-0218-43dd-9e2e-db2f69ec5199 1 Other Other +9f3b87b1-81a2-436a-aeae-37e470ea909f 1 Other Other +9f3ba2a8-cdbd-4ec3-8e7f-6d34fd5d7a4d 1 Other Other +9f3c5ff0-bb21-488d-a8e2-faaa51ed32dc 1 Other Other +9f3ce6c9-850b-4281-817f-c798601cc8f8 1 Other Other +9f3d18c2-02db-46a8-834a-606f85253575 1 \N Other +9f3d9632-e090-47dc-b91e-c8eda54a90ea 1 Other Other +9f3daa5a-d197-4965-81da-d86040e9d06e 1 Other Other +9f3dd6ee-9193-4070-bb98-c0a95d7a5636 1 Other Other +9f3dfe5f-f0e1-4873-933b-317922257cba 1 Other Other +9f3e153a-4328-4a60-a74f-4a2dd02603a2 1 Other Other +9f3e79a4-bef3-41cb-8ff9-a162bd101e59 1 James Other +9f3e9c1b-acf0-4696-8cde-d4974a839ba6 1 Other Other +9f3ed6a8-db09-45ec-91d3-83029a1d9f95 1 Other Other +9f3ee4c6-da8d-40be-912b-45cc7e0437e1 1 Other Other +9f3ee70c-734f-4423-8194-76399700ea9c 1 Other Other +9f3ee7ae-37ed-43a6-8869-9ca6059596b7 1 \N Other +9f3efba0-1f03-497a-8e94-49e35aa911eb 1 Other Other +9f3f32ac-082a-4494-9a11-9441044cadd0 1 Other Other +9f3f7451-e419-47fd-ac1c-6caa7ead0f3b 1 Other Other +9f3f9539-7129-4536-8020-55d4a5cd3479 1 Other Other +9f3f9ed6-b930-495c-b4e3-f298ec314287 1 Other Other +9f3fd675-88ed-48a2-b9ce-dc0a3a49d68d 1 Other Other +9f3fdc8c-bddb-4125-958c-e97ee1854ae0 1 Other Other +9f4003f6-3fcf-42ec-9d23-cf693dbe6436 1 Other Other +9f405c51-9233-43c7-bc5c-99754ca9f495 1 Other Other +9f4067e1-48d2-40a1-a766-5765d8340b69 1 Other Other +9f40a856-e3f8-4bca-ac12-ca3847f6086e 1 Other Other +9f40bc6b-2eaa-43c4-b1e5-88fc8d0c1a7a 1 Other Other +9f40ddeb-c4a9-4c9d-bdb8-e635057218ab 1 Other Other +9f412813-5a20-465a-9b2a-dd2abd0b70e2 1 Other Other +9f41fb83-c7e3-4e0f-aefa-ec8f4fb32a76 1 Other Other +9f4201e1-71a0-4ff8-8c86-b108f9ad87b8 1 Other Other +9f4213e2-61e5-4186-9aa5-3f4b4c90a9a1 1 Other Other +9f425e67-e17b-4c71-ac26-5e6ef33bd1e2 1 Other Other +9f4273b8-5e37-4858-bb20-11065b16756b 1 Other Other +9f4298bd-6700-4e75-ac1f-7c1105c6840d 1 Other Other +9f42a1ce-ab45-4ff9-899b-c8877b862fd3 1 Other Other +9f42dde9-1934-4aed-8a3c-e5b54baa63f2 1 Other Other +9f4312c2-43cf-4d66-9ccd-299022dc12c7 1 Other Other +9f433c3c-be2a-4ca2-8a27-1d71b9ff1926 1 Other Other +9f437d33-89f3-4e9b-9bfb-6d4b5ea41bb3 1 Other Other +9f438a90-4582-43c8-b427-8300808ce525 1 Other Other +9f43abdd-8f55-476b-9a1b-232198847fd7 1 Other Other +9f43e2fd-e89f-43cb-ac00-1f52f3cd1e76 1 \N Other +9f43e426-f90a-43db-a17d-88de60f781ff 1 Other Other +9f440f7b-1f26-403c-9231-1b0c5cdb56f7 1 Other Other +9f4419ae-bdad-4a5f-a5f8-e37d59e812ff 1 Other Other +9f442e59-dbc9-47c7-a49d-298f7caa36b4 1 Other Other +9f4462be-6f73-4a1f-b79e-5b46800e6cd4 1 Other Other +9f447b0c-fd54-42b9-b655-7029ad422ad0 1 Other Other +9f44916a-c797-4e42-bb9a-474dad79a547 1 Other Other +9f449d1b-fd3e-4c93-8e4b-30fa4dc26157 1 Other Other +9f44aec9-1a2a-4cdb-ba8e-83ba218b5c53 1 Other Other +9f44db60-d8ce-4f22-960e-e70bb15c5fd5 1 Other Other +9f450798-932c-4180-a28b-6fcd646a45f6 1 Other Other +9f45240b-79dd-4039-9419-6abff492eb01 1 Other Other +9f4554f6-ee54-46f6-9f30-c0dc9db6f9ea 1 Other Other +9f45961c-9a3b-4a3c-964e-f2bbe9823fe6 1 Other Other +9f459e56-59de-48e2-adf9-bcb131ddffc5 1 Other Other +9f45af38-f0e7-433c-bb21-ff8e8cc811c5 1 Other Other +9f45e0ab-3db7-4dd7-9b5d-f449fe5587a4 1 Other Other +9f45fa64-768e-4521-81bb-3075dfbaf055 1 Other Other +9f461583-0981-4f08-ba9c-dfee202ec048 1 Other Other +9f4628d7-4ff2-402e-adfd-35aae05d85a2 1 Other Other +9f465c45-d750-4ede-bdc6-33a5d1cc2b44 1 Other Other +9f46775a-4632-4510-8063-377b5a4293aa 1 Other Other +9f4684b3-40a0-4787-a9c0-a706a897d4b5 1 Other Other +9f47bbfc-6aef-4270-b7a0-3ca79bcf2173 1 Other Other +9f48389c-10c7-4782-a6a1-aeb0d6d48a91 1 Other Other +9f483a37-0798-4467-a3e7-213d05613ef7 1 \N Other +9f483d8e-80a9-40a8-94bb-71be806f453d 1 \N Other +9f48bb1b-0612-45a0-bb9f-504ca4e852fd 1 Other Other +9f48cbdc-d370-4f4b-906b-1d5cc760699c 1 Other Other +9f490bd3-fbae-4110-8794-eb8e86afa7eb 1 Other Other +9f492869-839a-4e3a-91b0-039a7afc62e0 1 Other Other +9f49520a-6074-43ab-8ad8-fa38c2422e58 1 Other Other +9f4953d8-cc98-47b8-8050-7daeafa6879e 1 Other Other +9f495c65-63f0-49d3-bd69-ed0a5dc4f916 1 Other Other +9f49b2de-bcba-4f2f-83d9-fc0192f600b6 1 Other Other +9f4a2217-10f9-4b32-850e-e662347c33d3 1 Other Other +9f4a2cf7-c267-4e08-972e-815e10f70936 1 Other Other +9f4a6b90-8c3d-47ef-8ff6-8ead43cefd2f 1 Other Other +9f4a9be5-9164-44bf-a93b-7de7c5006542 1 Other Other +9f4ab5d9-c71e-4be7-a66f-54f1f8fe6e82 1 Other Other +9f4b881f-5951-4d2c-9c9b-11ccceb59fcb 1 Other Other +9f4ba758-84b5-4944-936b-b3bae3bb90c6 1 Other Other +9f4ba9f0-75df-48a3-be89-be7bd5ef43a9 1 Other Other +9f4bd0c1-0de4-47d6-b81b-372e2dd4af29 1 Other Other +9f4c3e33-5655-452d-86df-5cbc1a6d2e48 1 Other Other +9f4c8439-3984-4321-a46f-35f57ca0772e 1 Other Other +9f4c9751-3f8d-4b1e-a7af-a9f73a128c2b 1 Other Other +9f4cb79a-ee32-4f77-8024-1326090a2877 1 Other Other +9f4ce099-c1c4-4bf8-913e-011641b45d7f 1 Other Other +9f4d5c28-339b-43f9-b6fb-fdec2c38cc6c 1 Other Other +9f4d606b-9a6b-415c-b1d7-46b503f248cd 1 \N Other +9f4d7af1-30f2-4b79-8f11-2b41662ba8d7 1 Other Other +9f4dc873-a59b-4bca-98eb-a781550778f8 1 Other Other +9f4eb085-ebfb-4a86-83af-7c99a6f062ad 1 James Other +9f4eb1a7-6355-43fb-818c-034f92a6591a 1 \N Other +9f4ec628-5375-43ad-8904-a7677ade0f80 1 Other Other +9f4ee5ab-1423-4ed2-995f-0e2a00088971 1 Other Other +9f4ee65d-c1e9-4be0-8291-19bd57d274c6 1 Other Other +9f4f06cf-b9bc-49d6-9e94-fdd09344dea1 1 Other Other +9f4f1e59-6837-45d9-ad70-4d27f69ec257 1 Other Other +9f4f3525-3c8e-4ee0-a8e6-439e5c9847cb 1 Other Other +9f4f6fee-2d64-4954-bd97-7532283b3357 1 Other Other +9f4fa5cd-dfed-4ab7-8c49-591f6b5994e1 1 James Other +9f501f5c-e720-4497-bdbb-f65c38228a40 1 Other Other +9f502800-d635-461d-b54a-a0d2dbba3ed2 1 Other Other +9f503479-a017-477d-9375-1b59635f358b 1 \N Other +9f508228-47c1-4713-8780-d171edbaa980 1 Other Other +9f5105d0-8be5-4cb8-a09d-7d6124af1e66 1 \N Other +9f5127be-1a31-4d26-a0f5-386c2d31d6c2 1 Other Other +9f516b56-5072-43c3-89ab-0e1e6df59b21 1 Other Other +9f519108-b3d4-4f0e-a733-73b6355ef020 1 Other Other +9f51d942-8dec-4fd3-a8d9-0fc3999e6a09 1 Other Other +9f52093b-52f6-4e04-a851-53362ead1ac6 1 Other Other +9f5243df-d34b-4ecc-8bc5-79ed9e415bd1 1 Other Other +9f5254e7-cd96-4512-ba6b-9ecb732e0091 1 Other Other +9f526ce5-fdba-4d75-a7fa-5a91290cda79 1 Other Other +9f526dc7-b3f0-4102-a921-a98e4678f4ca 1 Other Other +9f52cd9c-b664-46e5-a28e-0b7aa6a9c8ae 1 Other Other +9f536817-8a9d-4bbd-a41b-8c22fac4d958 1 Other Other +9f539876-f997-47a4-9546-fc718f6a6862 1 Other Other +9f53a167-5a29-4a74-b23b-8dc8e7a08efd 1 Other Other +9f53aaf9-e27f-4555-b6eb-f5d3a25e79d3 1 Other Other +9f53ad1d-c11b-461a-b247-2abf51ce754d 1 Other Other +9f53d7bb-a0ee-4faf-8b46-059fe9876496 1 Other Other +9f543b54-a891-4e8c-8c2e-0c9a49f8eb05 1 Other Other +9f5466bb-900c-4794-aaa3-ddafbf521a2c 1 Other Other +9f546f39-0d6f-48c7-8ef6-7509861f6aed 1 Other Other +9f54d2ed-522c-45ef-b7f8-4573722125fe 1 Other Other +9f54e1db-50e3-40eb-a988-b712a1688378 1 Other Other +9f55055e-9a9b-4680-b8d0-1690367f3589 1 Other Other +9f550d85-90b4-4791-9fde-9507082bf6d4 1 Other Other +9f552fe6-d252-447e-b705-d2575b273e40 1 Other Other +9f553e74-f99e-465a-bd94-499de6000396 1 Other Other +9f554e92-f3be-4f37-8568-1b2ee4ab81a4 1 Other Other +9f5550e0-66d9-43ae-ab36-f285c3eaf2fc 1 Other Other +9f5551cd-67de-4fd5-81e6-5d83fc4dec06 1 Other Other +9f556e8c-a5c1-4f51-9753-ff62b3204c3b 1 Other Other +9f557f4e-0633-4bd5-9311-d1ebc2ad7c33 1 Other Other +9f55b3ec-ca10-4d6f-9c59-e190cbd73fcd 1 Other Other +9f561349-ffd2-4063-895d-59767b1b001c 1 Other Other +9f5640e2-9e19-4b43-8674-d879c0b6baa4 1 Other Other +9f56583a-ffe2-4896-a325-1024d9fc5797 1 Other Other +9f5658dd-0f3a-421a-a3ae-9fffa5cb8ab3 1 Other Other +9f5691ed-b366-411d-9093-d154fe7bf33b 1 Other Other +9f569848-3c9f-4fd2-aa24-c46353ce1695 1 Other Other +9f56bd3b-ffb5-4eb7-becc-de3ddb869b45 1 Other Other +9f56e15d-49ed-4a7a-ad7f-1437f50ba9ca 1 Other Other +9f570e6f-c04a-4ccf-82ac-9aa1ad2cd987 1 Other Other +9f57137b-f30c-4849-92cf-077f5f56ce65 1 Other Other +9f572a61-98dd-4c7f-ae6e-3f036bc888e4 1 Other Other +9f576f49-04be-4f8a-a50f-a30bea13bf2a 1 Other Other +9f57b608-c118-4846-ab0c-9845f2a266be 1 Other Other +9f57c56d-34f7-4e54-91d1-d8779e7ceee5 1 Other Other +9f5885d2-dcae-4b2a-863b-b51efcacd2b4 1 \N Other +9f589ef4-851a-4d71-b3d7-8f20da24ccc1 1 Other Other +9f58b3ea-1370-4e1e-9631-7df6b68ecd20 1 Other Other +9f5953d8-776b-49d4-ae0d-477f98a06f2b 1 \N Other +9f597b7b-8a76-4216-9db7-acd4962d3a0e 1 Other Other +9f59dc3e-e0aa-4fe8-91a5-5b9ace3be9af 1 Other Other +9f5a441c-5dfd-4401-9de9-7c8cb67566cd 1 Other Other +9f5a5d13-6634-4250-9c62-5a830009dcf7 1 Other Other +9f5a6c60-4e40-4fc7-9c12-5daf996b4e5e 1 Other Other +9f5a7734-a58f-4704-8ec1-edc45f8fa1d9 1 Other Other +9f5aeac3-31c9-4cbf-b5e5-dde379ea26aa 1 Other Other +9f5b05ea-2421-402a-a458-9c24d122e88d 1 Other Other +9f5b0792-888c-493c-9860-6408e697e9e1 1 Other Other +9f5b16fa-18a7-43cb-be89-798d4f5af671 1 Other Other +9f5b1cb4-2a42-424c-83e7-ec6bca127961 1 Other Other +9f5b31f1-6d0d-42cf-8ab2-5ccff17eeb5e 1 Other Other +9f5b588b-fb4c-4f1e-bdeb-f22fae062bd5 1 Other Other +9f5be0cb-fc9f-40c4-8b18-ff95eecf3e12 1 Other Other +9f5bfa6b-75ca-42db-9037-121b381fc47e 1 Other Other +9f5c9b9b-221b-43c9-99ba-8a4103b40777 1 Other Other +9f5d31a0-436c-482e-add8-b7bc8fb0f01e 1 Other Other +9f5d3b30-9942-4be1-b685-5f35f354817e 1 Other Other +9f5d50b6-f79b-41fc-bd20-74d837ece7ea 1 Other Other +9f5d5c7c-4aff-41df-b22c-3e2f7f4fccd3 1 Other Other +9f5dbf4e-6cdf-47f8-aff8-c5f96e7e44db 1 Other Other +9f5dcdb3-5ea1-4966-96db-85d37ff325d6 1 Other Other +9f5dd6a8-5a62-4fae-af6b-b0709effef7f 1 Other Other +9f5de88a-4f71-409e-b1fa-af3c9920c442 1 Other Other +9f5e16fe-c5c0-4340-90ec-e74f3df3d6fc 1 \N Other +9f5e27b9-5be2-4595-9cf1-bbd2d0a092e3 1 Other Other +9f5ea7bf-9031-4b62-bb93-6539d23f364c 1 Other Other +9f5eb68b-3616-43a4-9e5a-d8daa7d7d768 1 Other Other +9f5ef641-e487-4479-95c6-0f18aceec8e3 1 Other Other +9f5f06f5-a2f7-4063-aa4c-235933dd6b26 1 Other Other +9f5f6b79-6a2c-44d8-92ad-7487c1e5d4c0 1 Other Other +9f5fab96-3d21-4a38-a832-b9b419a2d22b 1 Other Other +9f5fbb8a-61ba-4042-ba0d-9ac68d143c53 1 Other Other +9f5fbcd3-4773-4831-8195-8f02bb7c1860 1 Other Other +9f60d63b-ecc4-4c24-a07c-bf9be39d38a2 1 Other Other +9f60d791-3582-4f88-908d-bedb67d92329 1 Other Other +9f613ec9-74b7-46d1-8fa0-8f1548c1bd2f 1 Other Other +9f614047-ce9a-4082-aa20-ba5605910abd 1 Other Other +9f61c325-681c-4a54-84cc-104c59ff2ffe 1 Other Other +9f61fa2d-6f84-4cd9-a8d3-e5cb07d14b4e 1 Other Other +9f627e07-e8fd-4b0d-8fbf-a6fc801e3abe 1 Other Other +9f62949a-bda7-4d0c-abaf-8968090e197f 1 Other Other +9f62d372-c2a5-49dd-8fb5-58a1bde361bd 1 Other Other +9f62fa2d-3b78-47f5-b1d6-1eb9c8ddbd77 1 Other Other +9f631880-66ae-4af1-9ac9-14d72402c883 1 Other Other +9f6333dd-ffe4-4eff-b6cb-1a3ae7073574 1 Other Other +9f634ee1-d5af-4456-b8b1-5c3a91e1fa5c 1 Other Other +9f63941a-1625-484c-9729-137eef0532e4 1 Other Other +9f639847-b75c-4c3e-a81a-25e1d436353d 1 Other Other +9f63af0e-d522-4a22-be43-47b34555865b 1 \N Other +9f63bcc4-0c7e-486c-af0f-64337b221c1c 1 Other Other +9f63eef7-d563-49ba-b196-03828fd495bc 1 Other Other +9f640ac0-c958-48ac-8b29-05d9b90f37b8 1 Other Other +9f6414ba-cf29-468e-8efd-ec5ef0c25222 1 Other Other +9f644010-bb57-49d7-86e6-b548b2c6d3d1 1 Other Other +9f64bed6-fc52-40a6-8c44-22f2a20b155b 1 Other Other +9f64ef3b-d0cd-469c-a508-c9c6a56f23c2 1 Other Other +9f6511a3-b0c4-4d7c-8904-167f8ebc98e6 1 Other Other +9f6518c4-29aa-44dd-9903-c9300b6f52f5 1 Other Other +9f653361-2c91-4445-8a11-6601d79b7864 1 Other Other +9f653ef9-e80b-4f0f-8706-69037fc2c613 1 Other Other +9f655bde-ded0-4c1d-94b2-d291f45e7138 1 Other Other +9f65ae12-1f70-4989-af15-576898d4c9a9 1 Other Other +9f65b44c-7300-4d32-b1ee-f37d56c26164 1 Other Other +9f65db81-a12f-4524-b388-d9527641f845 1 Other Other +9f661f23-777d-45fb-8ccc-f8c93a634861 1 Other Other +9f663260-f6b5-4423-9332-90ebae60914b 1 Other Other +9f6657d6-e58a-4029-9453-1733ed6690a1 1 Other Other +9f66661c-bf4f-4828-84ec-7f428bd18fa3 1 Other Other +9f668d1d-9ed6-45b3-bbb1-403cb15c3e39 1 Other Other +9f66c66e-be37-4d49-b345-10f8440b236f 1 Other Other +9f66d164-6f23-4d8b-b4d7-853e34ff476b 1 Other Other +9f66dc76-42fe-45da-a5f6-28e19ef31a13 1 Other Other +9f66fea2-90c3-4f51-b3f4-66791ae0fe4f 1 Other Other +9f673aec-daa5-43bb-b529-95e732b32ccc 1 Other Other +9f673b92-1e22-447a-8b27-42ac25b53821 1 Other Other +9f67cd0b-dd0a-465e-97c9-0ec947cae2db 1 Other Other +9f67ce2e-c07b-46b6-bf58-f2e006e2bb26 1 Other Other +9f6853d2-595c-4778-90c2-31e9cfe2ac45 1 Other Other +9f68b769-ff53-444e-86e4-a96c542e8a2e 1 Other Other +9f695bec-be6f-4606-9343-8f73591d3d1b 1 James Other +9f69cefc-835c-4590-a899-d58203f410fb 1 Other Other +9f69e0aa-93ba-4cb0-8905-c2e427ecf963 1 \N Other +9f69fe40-3077-46f3-b004-ce1027a62f27 1 Other Other +9f6a09a0-8bfc-43e9-bdc1-6bca169c890f 1 Other Other +9f6a3a8c-da02-47e5-a647-06fd29d9ce43 1 Other Other +9f6a678f-460e-4a9e-9bf7-ca7277d2c102 1 Other Other +9f6aa48a-9d21-4daa-8549-d4d72f3d802a 1 Other Other +9f6ae0c8-5ae7-4ae8-ad00-ee8876e7068f 1 \N Other +9f6af6ce-fe5d-4583-8ff8-9192de6b5fb9 1 Other Other +9f6b184b-48fa-4a6e-89d7-7d9c993dc9a4 1 Other Other +9f6b2c24-99af-4b87-9fce-d9d4f07984e0 1 Other Other +9f6b595b-ac93-4ae8-9ffb-aebc4576981f 1 Other Other +9f6c5149-8a54-4342-8359-981ee790a424 1 Other Other +9f6c84e2-311b-485f-a9af-f7e55f62d180 1 Other Other +9f6c98b0-5e5a-4925-9c04-3fdeb61671a5 1 Other Other +9f6ccd7d-b37d-450e-b0b1-7d7570455a28 1 Other Other +9f6d452a-111f-11e8-9ee1-fa163e8624cc 1 \N Other +9f6d696f-00c1-4f74-9cc4-04ca36fa6a25 1 Other Other +9f6dc771-e154-4f40-b271-05b3ebbf96c4 1 Other Other +9f6df619-daf7-4753-be63-c49c6101f8f7 1 Other Other +9f6e30e4-a0f8-4c73-85a9-87dc21d9bcbc 1 Other Other +9f6e88cc-38b1-438b-88ac-1b518d24450b 1 Other Other +9f6eac40-5223-4c39-b214-0499d408e8d4 1 Other Other +9f6f683a-a44b-4d9c-a983-130c5dd8eac5 1 Other Other +9f6f7f31-7b24-415a-9afb-56c540cf1ce2 1 Other Other +9f6f9d5d-b87a-41be-9256-0db2d1c7d1f6 1 Other Other +9f6fb08b-2ec0-4389-898e-b8638ce1942b 1 Other Other +9f6fb91d-5f0b-47a8-bdc5-df187517bc04 1 Other Other +9f6fde88-0b61-454d-b649-579ab9a9cbd9 1 Other Other +9f6ff547-d77f-4000-92cf-542faf355843 1 Other Other +9f6ff5d6-a033-4380-a1ed-b39a20c37d5f 1 Other Other +9f6ffc1f-3c8c-492c-be4c-2bb346af6a19 1 Other Other +9f70c8db-51b8-461f-80e9-ada0bd72624a 1 Other Other +9f71020a-cccb-4459-86b5-a5b114cffabc 1 Other Other +9f715f9c-e6e4-46b0-a196-2f2d3be09cc2 1 Other Other +9f717d35-e64e-4b60-9ae0-66076901886d 1 Other Other +9f719c4e-17d2-4b8a-97e2-2d6ac13a7086 1 Other Other +9f71c426-8f35-448b-9ba4-ffe875a60cf1 1 Other Other +9f71e6dc-0abc-4ba7-9886-a5e5edbd150a 1 Other Other +9f72015d-d673-409c-b260-ad70557f1671 1 Other Other +9f724efc-ba51-43bf-a474-80cbaf28860f 1 Other Other +9f727d1b-e4c6-4298-9ef2-fd144c3b4a6d 1 Other Other +9f72ba9b-37e3-4760-9e4a-e53380f9ee24 1 Other Other +9f72bb74-02f5-4438-9739-8eb31ff4947c 1 Other Other +9f7354ee-b90c-481c-8f64-2fdd04170079 1 Other Other +9f7381cd-1410-4160-8f20-4686875a001a 1 Other Other +9f73e6ed-1996-44ed-86db-fa6d239420eb 1 Other Other +9f741fd1-6004-4652-94d9-c5b242e7dd1e 1 Other Other +9f743a4c-da37-42e0-8f5f-1ee949c112ee 1 Other Other +9f7453a5-b074-40d9-a9e7-6de7f078e733 1 Other Other +9f7461a4-e4e1-45dc-89f2-d0b0c8d68989 1 Other Other +9f747c6a-77de-46cd-afb2-d402159bdfdb 1 Other Other +9f74a5a9-c71d-452b-9044-f68fe5c9de89 1 Other Other +9f74a65c-1438-45db-b515-81d2686167dc 1 Other Other +9f74a83b-7087-4d9b-8a50-bc04f679face 1 Other Other +9f74d066-dfc1-45a1-97a0-97e1b7bc4ea2 1 Other Other +9f74d297-8a92-4f7a-8325-156149f2e9a4 1 Other Other +9f74fee0-0079-4043-9ab4-937570ff3a5f 1 Other Other +9f75b745-5b7e-48ee-88b7-12cd206409bf 1 Other Other +9f75bf44-aea6-4daf-8329-4a1cccc5b0a7 1 Other Other +9f75e847-ef55-49be-87fa-3d6934ac7874 1 Other Other +9f766256-0d79-4ec8-b59d-3ab479dc2353 1 Other Other +9f769ec2-34e1-4059-8eac-f25271d62474 1 Other Other +9f77b7c4-2cfe-434f-87c0-c3fe27ea502b 1 Other Other +9f783760-e98f-4894-8c5a-152020aaf5d2 1 Other Other +9f786578-c2ef-41a5-b678-edd3ce6cc7ac 1 Other Other +9f79010b-a3f1-42dd-8bbe-385568229f61 1 \N Other +9f790737-ef9e-43ce-9b1c-4c77fa268d8f 1 Other Other +9f792b43-d7c3-4127-88af-003b5f217fa6 1 Other Other +9f797171-0ea5-4950-9bb4-35daa8943670 1 Other Other +9f798f10-f8d9-4fca-affe-44aeb5e919a2 1 Other Other +9f799476-93a5-42c2-b2cd-bf95375e52d9 1 Other Other +9f79bfbc-d040-49a0-853b-2fdae314dcf5 1 Other Other +9f7a2bcd-21a5-4d9b-b506-87d151326600 1 Other Other +9f7a31b1-e412-4e52-9272-dacf2c4ccf9f 1 Other Other +9f7a42b6-9029-46d2-b167-fc0edc991654 1 Other Other +9f7a53f8-d18d-4429-8400-823a48251cb6 1 Other Other +9f7a60d4-56e8-4489-9ea4-78bffe9522d1 1 Other Other +9f7ab682-2cc8-4b00-ab5e-6a4400c8a35c 1 Other Other +9f7b23db-d73e-4e98-8942-c9e0ec3029eb 1 Other Other +9f7c3405-bb12-4963-b325-c240793e7cf3 1 Other Other +9f7c4cab-7516-49e0-ad34-ab62e43d9777 1 Other Other +9f7c5ad3-706a-44bf-9fe9-b56a90ae4f0f 1 Other Other +9f7d055a-f34a-4142-9104-dd2a2adab2da 1 Other Other +9f7d370e-69d4-47a3-9060-3356964dcf64 1 Other Other +9f7d5598-7b55-449e-8840-96d86721607a 1 Other Other +9f7ec6a1-f7a0-4155-ab44-67af9f08bd5e 1 Other Other +9f7eff85-4a8d-408e-a05b-d50e3be64470 1 Other Other +9f7f0388-3f5b-42b1-a892-bf7ff086f53a 1 Other Other +9f7f1011-f4d9-4876-89d7-7d4ff0d50966 1 Other Other +9f7f2a38-9427-478e-b7da-ce00615e5364 1 Other Other +9f7f39e3-3183-4fee-b78d-e15a60175903 1 Other Other +9f7f9309-19f3-4f03-82c6-cabc7b757b4e 1 Other Other +9f802741-4691-4ddd-b61c-d899c39443c6 1 Other Other +9f80300c-b706-4469-851c-b02ddcba6ee9 1 Other Other +9f80371c-1c19-402e-a042-477a8f97c833 1 Other Other +9f80432c-bd77-40cd-9f0f-b84898404819 1 Other Other +9f808453-bf83-4a63-b487-303091fca513 1 Other Other +9f80956b-46a3-4599-b109-a5909a58aab8 1 Other Other +9f80b3b2-b2a2-4e4c-9fb3-f180e91dbaad 1 Other Other +9f80cfdc-7e23-456e-818a-8191264e4340 1 Other Other +9f8159a7-7a3e-49f4-9d1c-7fb66c4e911a 1 Other Other +9f818de1-df92-471b-93d8-e22134ebda5d 1 Other Other +9f81e79b-58d2-49d8-8afe-f74587125153 1 Other Other +9f821caa-daf8-4b34-9823-7e00e52e044d 1 Other Other +9f825785-1589-4c6e-b5e7-9d0ff7d98724 1 \N Other +9f8258df-4524-45a3-b93d-495c0582aa72 1 Other Other +9f826889-7228-459e-a001-d968b8fe9a57 1 Other Other +9f839ac3-e9be-4991-9b0e-3b0c7d341b8c 1 Other Other +9f83b688-2d69-4ab2-a011-4bd4fcc89c20 1 Other Other +9f83dcc6-1b97-4504-b0bf-0184adc4088e 1 Other Other +9f83fad2-29cd-4886-af2e-8deea3d924dd 1 Other Other +9f842164-eb1c-4c51-bfe8-34783170f354 1 Other Other +9f845dd3-6bc6-4eae-81a8-fdde82902fcb 1 Other Other +9f847837-e3c3-4906-a069-8f71fdb49475 1 Other Other +9f84ca33-0455-4c30-8579-97f809fa70c9 1 Other Other +9f84fb96-000d-4134-bf74-8cbb1e92a32f 1 Other Other +9f8504ef-8dd6-4728-b60f-860299a0610d 1 Other Other +9f850521-233a-4d4b-91d8-7858781af9f2 1 Other Other +9f851112-9be0-4e54-9271-fb03db10d9b3 1 Other Other +9f856d3f-c0c3-44b9-849f-851a15a2ea61 1 Other Other +9f8589c1-1e45-44b4-944a-5647e8a6fded 1 Other Other +9f859e1a-1376-4bb7-afed-e70a8701720f 1 Other Other +9f85f855-81b6-4a57-a7bc-734c214edd71 1 Other Other +9f85ff01-4d2a-4068-bb62-007eb01dc130 1 Other Other +9f8623a7-e5f1-4032-8ffc-af9f665685a6 1 Other Other +9f86638c-15a9-443e-b402-ee8691e3d77a 1 Other Other +9f86663f-be29-42ec-99ea-59ec98d714fa 1 Other Other +9f86923e-499b-438a-82dc-f6a4d56dacf6 1 Other Other +9f86cfdb-5f0b-40ba-a597-dad33408af4a 1 Other Other +9f86fd65-92eb-4d8c-aa54-7e0b94333832 1 Other Other +9f87250d-5bde-4f25-9512-b23513bd6d15 1 Other Other +9f874c7c-b450-44b1-9a66-5c2ccd2695c6 1 Other Other +9f87ae77-de69-4e86-a08c-48d0abaae2c1 1 Other Other +9f8808e7-6293-4f52-933d-0429b00987fa 1 Other Other +9f8810e9-8561-4f2c-b222-c5b8bbab7ece 1 Other Other +9f88bdca-c052-4027-88eb-dc04e2d969f3 1 Other Other +9f88c99b-b5b7-4fdf-895b-f93aa46f3fb5 1 Other Other +9f89045c-204f-406c-be97-b753d893cd7c 1 Other Other +9f892238-1d81-4636-abf3-7a9e8ab44a8c 1 Other Other +9f8944d6-1dc1-4a89-9d60-e3768823e47c 1 Other Other +9f894706-d0d8-44ec-be5b-5e0ad49dc361 1 Other Other +9f897857-5085-4aed-9584-5297f15bf2fa 1 Other Other +9f89b8b9-38d7-42cd-ae6a-9face44b4aaf 1 Other Other +9f89c05c-6577-4235-88b4-725374561de7 1 Other Other +9f89ce2f-1dd5-4d1c-82cf-4b63d814aee3 1 Other Other +9f8a12b0-8090-443c-876b-3c6a0dd237b5 1 Other Other +9f8a139f-a3cd-4a05-b853-733d5167ff14 1 Other Other +9f8a1fbb-cd21-41dc-93d5-3817c6db457c 1 Other Other +9f8a2045-96fc-4c1b-98d7-efabf87722ae 1 Other Other +9f8a2d01-eb58-4619-b8c4-5d161a3fc8c7 1 Other Other +9f8a3f3b-7e9b-47f3-bf11-5b173aa3145f 1 Other Other +9f8a44dc-d306-4af6-882c-16c251cf78fb 1 Other Other +9f8a4691-8589-4129-9761-787313c25c8b 1 Other Other +9f8b17d5-c827-41e0-bb14-2c4c25de32ec 1 Other Other +9f8b3267-ff95-49b9-839e-84f3a614929c 1 Other Other +9f8b6551-470b-49df-b92e-835fb34b3a75 1 Other Other +9f8b693b-4ccc-4484-af5b-d5d76f051538 1 Other Other +9f8b843f-33c7-46b8-97c3-6f03265554fe 1 Other Other +9f8bbd24-fd75-4ba6-a898-709e88d0b392 1 Other Other +9f8bd7c0-b287-11e7-bf14-fa163e8624cc 1 Other Other +9f8befcf-9c68-4e62-ad27-2022bbd7a4de 1 Other Other +9f8bf3db-272e-4699-abf2-d90a32c4b234 1 Other Other +9f8c3057-07de-4479-b908-3adf0fc88347 1 Other Other +9f8c498d-f842-47c2-9c4c-2da20d652879 1 Other Other +9f8c68db-027b-42fa-a0e7-b4a29c1e90fb 1 Other Other +9f8c6a3a-a854-4f8c-8363-b267e3ae3226 1 Other Other +9f8d452f-1c0d-45b1-97ec-9e3e65f686e1 1 Other Other +9f8d51d5-3a3a-4087-b86b-da91f5e3451e 1 Other Other +9f8d74a5-b596-4263-ba10-4d5f72caf657 1 Other Other +9f8d904d-fe34-4f98-9e0e-9db57cdd08b4 1 Other Other +9f8de282-c486-4c47-a3b6-d39d63936c2f 1 Other Other +9f8df031-8337-4558-b63a-afb4e5b28e1b 1 Other Other +9f8e99b3-b956-424e-bf4b-cd03892f153d 1 Other Other +9f8ec34a-0d95-11e8-83b2-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +9f8f11f6-ee50-4339-8daa-ea076a4d931d 1 Other Other +9f8f6c2f-67c8-4055-8e1c-db7163943650 1 Other Other +9f8f8559-ad83-434f-a445-733a61f42a25 1 Other Other +9f8f8c4d-e1ad-4aa9-b22e-7aeb61eea075 1 Other Other +9f8f9320-c87b-4e29-959f-60eb36f339fc 1 Other Other +9f8fe2c8-f954-494c-9f21-f10bfd2b85a5 1 \N Other +9f902bd7-2926-4c14-bfc7-452e9d884f39 1 Other Other +9f904a0f-e585-4707-8f09-acbcb0e0b754 1 Other Other +9f90a799-2a0c-4ae5-9e01-50431898e37c 1 Other Other +9f90a812-149a-4b49-a618-5c872f059ac6 1 Other Other +9f910276-23eb-42b4-99fb-f6ac9a4bc96c 1 \N Other +9f914216-9cc0-4077-9ae6-2088f17516a9 1 Other Other +9f9168cd-bfce-4d3e-97c4-95ba6c20e079 1 Other Other +9f91925b-cf88-467a-ac6d-5ff56f10cea5 1 Other Other +9f91d238-5dd4-4461-8837-0773348bcdb4 1 Other Other +9f91ef52-5fc3-4364-a359-cd9650f24a76 1 Other Other +9f9203f6-ddc2-442e-bfc8-472e4d2e21d1 1 Other Other +9f9221aa-fbca-43de-b3fd-e77ddfba96f4 1 Other Other +9f924a7b-31e2-4848-b0b4-79d8a3cee887 1 Other Other +9f925e55-0796-44f6-8d6d-ea0d0744c1ae 1 Other Other +9f927928-599c-4fb7-8fba-47a02419dcdf 1 Other Other +9f92f97a-871a-4ef0-b400-efd5d27a07fb 1 Other Other +9f931252-9090-449d-8a7a-4cbd809cd7d3 1 Other Other +9f93224a-f996-401e-9799-86ea4a15a0ec 1 Other Other +9f9322ea-2ef2-41ab-a427-bd408011dbe1 1 Other Other +9f93b91d-9c28-4453-9c1d-5a379be1802f 1 Other Other +9f93c9d2-e294-44ee-8398-24e49294da59 1 Other Other +9f93cc9d-dc4d-4035-af7d-ae0211574a51 1 Other Other +9f9434a2-f5f2-4f35-8e2c-9765c1215c58 1 Other Other +9f943774-3595-43d7-be4c-5ee8a235fa8b 1 Other Other +9f94cacc-692a-4e52-8ac4-d6ab34f00f50 1 Other Other +9f950ab1-3302-4409-ab07-d0488dddc7bd 1 Other Other +9f951ca2-56e3-40a9-9dcd-8d9ade536ef2 1 Other Other +9f9526e1-8dda-4619-a3be-5ed9f3f25c79 1 Other Other +9f9540bc-0995-4894-92b9-de6cc5a25b99 1 Other Other +9f957d76-aaeb-4c83-b037-c3e650fa4a51 1 Other Other +9f95ca9e-d82b-4fa9-b16a-31f035d7f2f6 1 Other Other +9f9652a6-75e4-4568-867a-ca2a04ce16ff 1 Other Other +9f96c27b-45fe-432d-96b4-48365aa3066d 1 Other Other +9f96d3b0-f2d6-4653-a069-d0d1550c0fd2 1 Other Other +9f970350-3f7b-4333-bd5f-3075f37b54cd 1 Other Other +9f976710-5991-4804-b0a4-5d8c3cae8797 1 Other Other +9f977840-9509-4df7-96bf-cb2070e55202 1 Other Other +9f97d641-f73a-4a27-91bb-30c6349329eb 1 Other Other +9f97d92f-4aeb-48fe-9368-b6d2b902f5f7 1 Other Other +9f97f8ba-910d-4dcf-bf5e-2a368253e683 1 Other Other +9f981e16-d2b7-4b74-8d3b-fab0af8fd55e 1 Other Other +9f9822d7-9069-4b3c-886e-e329ace30471 1 Other Other +9f985806-be6e-4c05-9a76-989d7947acc0 1 Other Other +9f98ff2e-290f-4e7e-85fe-f706c714d7fd 1 Other Other +9f99293e-ac93-42fc-83b0-d88e667f07c7 1 Other Other +9f992d05-d912-483c-86ce-e7b11f320ef5 1 Other Other +9f9938aa-d84b-419d-a2b0-32d0f7d7a601 1 Other Other +9f993c16-164f-4bb2-aefe-7d67bfb90d96 1 Other Other +9f995585-9a2f-41b0-8f44-8938fe28a813 1 Other Other +9f997fcc-6456-4195-8be2-0796e510edef 1 Other Other +9f9989c0-52f3-4d57-8dec-568e5f6d42c5 1 \N Other +9f999a77-df84-4f39-9636-2e8f2962ea09 1 Other Other +9f99d3f1-7105-4f81-86c0-c590e83b6954 1 Other Other +9f99ffc2-9c06-4568-a810-5754767bbef5 1 Other Other +9f9a2236-5473-4c82-80eb-69e3402d7099 1 Other Other +9f9a6bec-fb55-4db1-b521-78fffe35bf50 1 Other Other +9f9afae4-fcbe-4338-9fe4-784e2975f1b6 1 Other Other +9f9b1bd3-2f80-4b64-804a-0f4f594f5f54 1 Other Other +9f9b3303-7a87-4f7e-9a93-ae718a37e6cf 1 Other Other +9f9b4b6a-7e36-470f-8309-d511e06d8390 1 Other Other +9f9b66a9-581a-409b-9d9a-63182e3372e2 1 Other Other +9f9ba23b-48cb-4609-97f4-540da2e30f0f 1 Other Other +9f9bcc3f-332f-468f-a96f-fb1dc16ee95f 1 Other Other +9f9bd1f5-58a8-4d4e-976a-199e7689f621 1 Other Other +9f9bd2ee-82ee-42b0-b203-fea4b8799577 1 Other Other +9f9c1254-486c-4359-802e-8bdcdcbb3c4c 1 Other Other +9f9c1300-6fb8-410f-bfd6-4135ba44ef78 1 Other Other +9f9c78df-7955-4a23-b264-eb6fe1fcfc75 1 Other Other +9f9cbe0e-3c8a-46a0-9443-332d347a8e76 1 Other Other +9f9d08b1-855f-40f0-a2c6-b065c219140f 1 Other Other +9f9d5513-5aac-406b-8bed-7aa7748f70f0 1 Other Other +9f9d9f59-5e9a-4cb4-810d-d65ed52ed5f5 1 Other Other +9f9da89e-2834-46d2-a72d-c07e56f43c00 1 Other Other +9f9dd187-614d-433f-a3ee-958d17ad68cc 1 Other Other +9f9e0c39-0b1a-49f1-90ff-0a7debaa41f4 1 Other Other +9f9e1c7f-31a5-4125-9cbd-91199299fe7b 1 Other Other +9f9e2da0-cc03-4791-a2ee-32e416293c7f 1 Other Other +9f9e33d3-63cb-4993-9858-4aa7d07e2456 1 Other Other +9f9e6366-2f48-4658-ae83-306b7a90d93e 1 Other Other +9f9e66c1-6692-4bb5-ac70-88459a51f493 1 Other Other +9f9e6811-f5cb-4431-a03d-0a9db23df342 1 Other Other +9f9ea64d-4488-4a39-8b2c-818dc265fc2a 1 Other Other +9f9ef193-1adb-4dc6-8d91-349ff6bad7d1 1 Other Other +9f9f019a-b3e8-4780-86e0-b8b5fececf1b 1 Other Other +9f9f02f5-d8f0-4af8-84f3-510fccec2ff2 1 Other Other +9f9f042e-b0ae-4d0b-b6ee-609b6d1af6a1 1 Other Other +9f9f7e97-2692-4e03-a245-2d0690113660 1 Other Other +9f9f90c8-f8cc-46ed-9560-f7387019896f 1 Other Other +9f9f9f8a-e000-400c-957c-7d8528de542d 1 Other Other +9f9fa144-d110-45d1-bd95-b36ff87e4ad3 1 Other Other +9f9fa5a6-e146-42a3-858b-c5a3121d0301 1 Other Other +9f9fbd77-b6e0-436e-ad04-098ae8e994a9 1 Other Other +9f9fc518-3b55-496a-89b1-c80fa14a4cbb 1 \N Other +9f9fe342-65ae-4f20-a1d9-4c5393fb5426 1 Other Other +9f9feded-9b14-4cab-984e-4b5baf8b2920 1 Other Other +9fa02ec7-11c2-42d8-a7a5-691898e03346 1 Other Other +9fa03240-2649-4d31-9c0f-228e9613f19b 1 Other Other +9fa068aa-eccd-4813-a65d-38914160fbdd 1 Other Other +9fa07ae6-ade5-4675-b9f6-4ea57e80da9c 1 Other Other +9fa08e47-aa53-43f9-a294-c4166921771b 1 Other Other +9fa09a4c-1de2-4f0e-8627-814603af70b5 1 Other Other +9fa0b714-8f7d-4a05-83fc-a3afde97623b 1 Other Other +9fa0d980-3d1f-4048-9888-66269de93401 1 Other Other +9fa0fede-3b20-4114-b36e-54b1297fa121 1 Other Other +9fa102e4-41ed-416a-9f2b-f4354d145e30 1 Other Other +9fa18564-955e-4ea4-81a5-25e923c4fb1d 1 Other Other +9fa1d351-7867-40b6-824b-cb1de948e704 1 Other Other +9fa1d6df-b346-4d41-a443-8eb347c1ac82 1 Other Other +9fa21f0b-2c12-458b-ab07-3114dd4329db 1 \N Other +9fa237f7-412b-4fe7-b573-216f53454ad1 1 Other Other +9fa25ef1-dcac-471b-96d5-fdc23248fb5f 1 Other Other +9fa2c1ed-441a-4a07-980a-1c009b05ac10 1 Other Other +9fa2de2e-ee07-467b-8a60-e861cf75b249 1 Other Other +9fa30007-dab8-4eb5-ad27-fec11799574f 1 Other Other +9fa31605-a942-4a86-9d3f-38892178a0c0 1 Other Other +9fa3491b-05f9-489d-8691-7abfcef82c0f 1 Other Other +9fa349f8-2c96-402b-a2f4-0c1c1c413810 1 Other Other +9fa389ca-414d-46c1-8ad3-31a42532bd0e 1 Other Other +9fa3a42f-685c-4bd1-a9fc-7cade5519870 1 Other Other +9fa3fbdc-c9ea-46fe-a227-a0d92b814b3c 1 Other Other +9fa40eda-d44b-4bbb-a4ea-80f0fcfeda42 1 \N Other +9fa54b7c-5d18-4594-a850-2cd9c32a3c63 1 Other Other +9fa56885-cf74-436f-b6c6-88455cf84dc9 1 Other Other +9fa5962d-1c35-4b98-b0d6-1be4f016db2e 1 Other Other +9fa5f1dc-29e6-44f2-a829-729feb02f38a 1 Other Other +9fa608a5-d583-4c09-ac0b-db7e54a16297 1 Other Other +9fa61683-992a-4452-9f08-8237f6632789 1 Other Other +9fa6438e-6783-485c-b124-abbf6aeb968a 1 Other Other +9fa64ff7-24de-440e-96a4-ea47afa769ff 1 Other Other +9fa6613e-11bf-4b80-a5df-a0e7ce0ce037 1 Other Other +9fa6635e-8683-425d-ad5a-444601fae9da 1 Other Other +9fa6e49a-8a72-4ec8-b764-cc9d0a050c98 1 Other Other +9fa71317-c28c-462a-9629-7f8138615a89 1 Other Other +9fa72980-838a-4271-886d-feb77ca5ea2b 1 Other Other +9fa76817-8fb9-47f9-a8f9-0833e72b9a44 1 Other Other +9fa78e9f-145c-4bf0-aead-e468e13e17e8 1 Other Other +9fa7909c-eb52-4c19-b499-4d1b75d1deb8 1 Other Other +9fa794e3-211f-47e5-841d-c3a7229b3d97 1 Other Other +9fa7a398-79aa-4a56-977d-1d6694049a86 1 Other Other +9fa7afc6-0d96-11e8-96e3-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +9fa7fede-db82-4dfa-9e9f-0008b9cbfaff 1 Other Other +9fa8658a-8d25-4b09-aa99-1b6c62f75d3f 1 Other Other +9fa8ae07-70d8-44eb-a1df-c310196a5bc6 1 \N Other +9fa8e1f0-5c86-4d82-ab47-37d3c9174614 1 Other Other +9fa90a90-87de-427b-80e7-c3a482279ad7 1 Other Other +9fa939e4-4c9a-47c4-9199-be41fd95fd42 1 Other Other +9fa98395-dd2b-4d8b-b500-5a67d825236c 1 Other Other +9faa0f04-4d1e-41e9-ac01-85224d82286a 1 Other Other +9faa328c-4f0a-496b-ac78-ae85bc22a389 1 Other Other +9faa3b7f-a008-404e-b5e4-4d4f8147d498 1 Other Other +9faaacff-794d-4412-9b62-da213aeb6d2b 1 Other Other +9faaacff-ba3a-446a-8a2e-8707cf3fa7dc 1 Other Other +9fab0cfb-ff2f-4ddf-afa0-3c7aae31e286 1 Other Other +9fab1cf2-5ad6-433b-bb7b-0d1dd7003f1b 1 Other Other +9fab1ff8-db96-44d5-95cf-b2a80bdaa6a3 1 Other Other +9fab29d4-3f24-4ba3-b203-76fb7b069845 1 Other Other +9fab54cb-a07e-4dae-a84f-a6c4bb3ea545 1 Other Other +9fab8625-a9c2-4f37-8812-43068c5654b8 1 Other Other +9fabbccb-3a7a-4911-834a-20d404827875 1 Other Other +9fabe09d-d366-4ae1-8327-af177e00c86f 1 Other Other +9fabfb90-3ec4-4de3-9a52-2f0392fc0406 1 Other Other +9fac243b-5ff7-431a-8314-3913720cfbd0 1 Other Other +9fac49a3-bfd5-4116-ae04-f4921e672600 1 Other Other +9facf0ba-4454-4382-b784-49a88397b5f7 1 Other Other +9fad1b87-9f66-4a66-b64c-b18f96be2f62 1 Other Other +9fad4961-a904-4ca9-83e4-e023c06ef117 1 Other Other +9fad61b5-a385-4fb5-9402-4ede4797ef6e 1 Other Other +9fad94de-d5bb-4d96-bbdd-75a39091078a 1 Other Other +9fadacfb-78bd-4cee-8e73-dd1d5220e2f6 1 Other Other +9fade197-c2bb-4788-9677-35c81940368b 1 Other Other +9fae1391-17c4-4e63-9d5a-c5f7b4eeaedd 1 Other Other +9fae4a18-33bb-4fcb-82f5-1294c0957520 1 James Other +9fae9fd8-52b9-4c5f-b877-2310959e808e 1 Other Other +9faed731-b8b2-4e66-80fc-666cd3ada240 1 Other Other +9faef90b-2db1-479b-a79d-3717b8cd8924 1 Other Other +9faf21ba-1439-4943-bffd-f3422c40396c 1 Other Other +9faf2808-8205-45fe-95d3-98bcf36ead7f 1 Other Other +9faf5bfc-4fff-4253-ba8a-77291717fb02 1 Other Other +9fafff0f-a46e-462f-82f5-bf098a0ea0aa 1 Other Other +9fb03519-e99a-4026-acf2-96ea281cf348 1 Other Other +9fb062f9-671e-49ee-9c3d-5fbfc96d830b 1 James Other +9fb078eb-274f-4403-9885-5a4bf0337938 1 Other Other +9fb080cc-c544-4ebc-a827-5db4d93cd788 1 Other Other +9fb0862a-f551-49bd-9d2e-b75213a6f0bb 1 Other Other +9fb094a3-b762-44df-9a85-2fe83f255aa2 1 Other Other +9fb0ae22-c492-45e6-a299-c26d0ea368fc 1 Other Other +9fb0bd3a-1dcf-49a2-a8c4-072e29d2db9f 1 Other Other +9fb0cc82-0b9f-4201-8dcb-0fc994b359be 1 Other Other +9fb131fe-ad0e-4ed5-a643-ac631bb77096 1 Other Other +9fb13a2c-117a-4f53-ade2-57ec1f09e851 1 Other Other +9fb141ae-c5a0-411a-8d21-c33f8ca462c9 1 Other Other +9fb19201-29e5-49ca-8f2d-4e6ef9599269 1 Other Other +9fb1bfa6-cb0f-42b6-b1ec-4d810ed1ffc4 1 Other Other +9fb1d073-12c9-4e4b-829d-2315977b4f2f 1 Other Other +9fb20560-4e13-49e8-9d72-43b62119ba8e 1 Other Other +9fb21d86-b199-41aa-8d20-662ea5a3d4b7 1 Other Other +9fb235e7-2ec1-4dbb-874e-046c7062bf2a 1 Other Other +9fb273e6-68bb-4315-8c50-907b720aee81 1 Other Other +9fb2c083-66d2-40b0-8c6c-37138c907339 1 Other Other +9fb2c3fe-cb5d-44d6-8b26-cdbd914c27bc 1 Other Other +9fb2c89b-5b94-4fb7-83a3-9b6b1e5722c4 1 Other Other +9fb32b88-5ddd-4350-9b5c-9f1b2b3b07e7 1 Other Other +9fb339a7-9688-4c9d-bf95-7b7a5096de74 1 Other Other +9fb33a30-9e7a-49c1-bdb9-8cbb1a60ba5c 1 Other Other +9fb3e5d7-2fa2-4214-a929-77750dda6065 1 Other Other +9fb40a9e-0455-4dea-bb5a-a1127f4339d4 1 Other Other +9fb41379-6e79-4ab8-b192-68679b88490b 1 Other Other +9fb41938-da75-4411-92ea-43474f6b2421 1 Other Other +9fb4391b-b183-4e84-9251-851679fba9c1 1 Other Other +9fb45ff5-0f53-48b9-b010-50557ec87263 1 Other Other +9fb46326-01ed-4258-be5b-93df0dc25afc 1 Other Other +9fb477f5-a01a-4f3d-a68f-5569455788bd 1 Other Other +9fb47ce0-79f2-450f-9ec1-6b575dc08e24 1 Other Other +9fb48199-0053-4d4c-8766-ead54a4c6b35 1 Other Other +9fb492ac-68ad-40e2-9682-71c361475a69 1 Other Other +9fb49d45-e4e2-494e-9c67-70baca7c2088 1 Other Other +9fb4df1d-69d6-4888-b029-f6eb7aa9e2e4 1 Other Other +9fb4e795-d24f-4b4a-bebc-3ab6ebb60724 1 \N Other +9fb4ec94-2904-48d1-8c99-b4d528ccf7d4 1 Other Other +9fb543f8-97c1-41aa-93aa-ebd29e269a9b 1 Other Other +9fb54819-cdb0-46fa-a0a9-9d30841a432c 1 Other Other +9fb586d5-1207-438b-bd64-b43bb373ddca 1 Other Other +9fb64bb8-6bde-4cc2-ae9d-33dcc5ec316a 1 Other Other +9fb6734b-f9c6-443b-a404-df6e6a93f38b 1 Other Other +9fb67c1e-9523-4b34-8940-2469ecd54534 1 Other Other +9fb6d130-b705-4e17-aba5-8709a1591811 1 Other Other +9fb7048f-bf1d-4f73-92b2-73ca6dbb1cf9 1 Other Other +9fb754fb-e0da-4737-a1fb-08dbec59afd7 1 Other Other +9fb7a6c5-59fa-41e1-bfc3-379f0415ffec 1 Other Other +9fb7b73b-7c6c-463b-8f90-19b0afbdc645 1 Other Other +9fb7e8d7-7aa5-4995-b0f1-7e0e51dfb190 1 Other Other +9fb806b8-300a-4d00-b50f-e2868006e7f9 1 Other Other +9fb84e15-af3c-4a54-a070-5d170a89ad8b 1 Other Other +9fb85074-c492-467e-b56c-ff98f3a6b95d 1 Other Other +9fb86a18-e341-44c6-8b29-d61f889402c7 1 Other Other +9fb8ccdf-87cb-4600-a627-7c4e2dfdb942 1 Other Other +9fb8d99d-0d53-4c77-8c48-d2225ed26b07 1 Other Other +9fb8f2a8-de29-42d6-8b77-316854e46f49 1 Other Other +9fb92c15-c9fb-447a-abfc-3b3e9153adf9 1 Other Other +9fb9b2f6-a0da-496e-8a8a-2bcc49ebd615 1 Other Other +9fb9d491-efd5-425c-9acc-f30acfd2ed73 1 Other Other +9fb9f7b1-b3c5-4239-a61f-1feccf944c34 1 Other Other +9fba42bf-0a33-4eec-a534-9507ec1147c6 1 Other Other +9fba556c-3c24-4b5b-a11a-bf79c61e1162 1 Other Other +9fba6a6d-6dbe-496b-910a-6fbf0eec33df 1 Other Other +9fbb0743-2eea-42e9-94ca-b24decec0a05 1 Other Other +9fbb4e49-64f3-48b6-89a5-e71d850b7df0 1 Other Other +9fbb8133-bd22-4be7-8329-1843bbc21cb5 1 Other Other +9fbb9bc1-0036-49e7-abef-5ca471698640 1 Other Other +9fbbb046-79ad-4d24-a360-cf7c86c8eada 1 \N Other +9fbbcd93-8310-4769-8662-6983bac78e06 1 Other Other +9fbc0333-c846-4d52-863c-e3bb9b0e8d67 1 Other Other +9fbc12e8-f564-429f-9ab9-75d2e605913b 1 Other Other +9fbc414a-4f29-46bd-a76b-448207c06620 1 Other Other +9fbc48c3-2e90-4148-ac15-67c9664d8711 1 Other Other +9fbc53a7-83b1-4cb8-b52d-8a7cabbf9ad6 1 Other Other +9fbc662d-e0b0-42ce-ae98-e1e0f097498c 1 Other Other +9fbc7cad-a73c-4a8c-b527-6417260c8239 1 Other Other +9fbc8a89-5160-4549-8236-c59cb326ba82 1 Other Other +9fbcb501-33e3-44ca-8fef-6847f2321bb1 1 Other Other +9fbcec1a-f1d5-4214-b82b-a2c1f32a32c4 1 Other Other +9fbda536-abe5-444e-bb92-6aeccada2e28 1 Other Other +9fbdb06d-80cc-4b89-a6a1-edd6356662d4 1 Other Other +9fbddf52-6e47-443d-83f2-c8d321bd7fa9 1 Other Other +9fbe0670-438c-4573-9553-a2cb98e6bbb9 1 James Other +9fbe0dc6-1cb9-4a15-b052-55ec8ab6a5a1 1 Other Other +9fbe24d0-7cbd-43ca-8795-74e468a80d01 1 Other Other +9fbe9399-cf24-40c8-be5f-936cf3e23107 1 Other Other +9fbeb696-e1e1-4e9d-abc8-da18877fdeef 1 Other Other +9fbeeb78-01a7-4cf0-afea-74b3d27adaf1 1 Other Other +9fbf1761-1132-41a6-8a70-a3ee307261a3 1 Other Other +9fbf2e38-0dad-49c1-86b8-3a312169a3e2 1 Other Other +9fbf8e91-db0b-4254-8abe-ebdb005c4dde 1 \N Other +9fbfaa36-1b7b-421d-8d9a-4eb582f8983b 1 Other Other +9fbfcfa9-1f87-4cec-b300-e4aebda01004 1 Other Other +9fc01fa8-c896-4c6d-aa8e-68686163886a 1 Other Other +9fc0493d-7aa4-4f77-bb08-359273eebf1c 1 Other Other +9fc069db-ad6f-4e90-8009-efbb59330825 1 Other Other +9fc0b69d-5fcd-45ae-9b6a-853ec4c10c7b 1 Other Other +9fc0f547-a544-4ef1-a590-267372150866 1 Other Other +9fc112f8-8006-4302-ba44-973092fcf90e 1 Other Other +9fc159e6-f790-4c90-b71b-34dfea90b79d 1 Other Other +9fc18795-3d90-4985-a1f4-736ba90b72f7 1 Other Other +9fc1a41e-6382-4a83-86df-e9ffa67af651 1 Other Other +9fc1f3ef-21a1-4c6f-8b1a-7cf30de72cbd 1 Other Other +9fc20281-80bc-4d09-ad94-38a00336ad92 1 Other Other +9fc2cef6-c9d7-43f2-a843-adcc665426fd 1 Other Other +9fc30848-13e3-45bd-8a54-910a6a660930 1 Other Other +9fc37db0-17fc-41e0-ba79-20d1d95475be 1 James Other +9fc37e62-6e33-4c51-bc36-00a0d29fcfcc 1 Other Other +9fc3d35b-9fd3-4692-8c4d-bb846011f02f 1 Other Other +9fc3df6a-c6d0-485f-8fe9-17dd3fc0e6e4 1 Other Other +9fc3f295-ca38-4544-b5b6-47b71bb5c4fe 1 Other Other +9fc3f6d4-c30f-4fb4-bbcb-906ff46c8a12 1 Other Other +9fc41f38-e0f2-47e3-84a3-f99c49093408 1 Other Other +9fc4ade4-0315-4a32-9a6e-65aa91dc63e0 1 Other Other +9fc4e31c-4253-4559-9aa8-bd359a58e599 1 Other Other +9fc4f125-8734-4ba5-9932-0a8a2ff28b5f 1 Other Other +9fc50cc3-17ee-4d48-a812-fc653ddf28be 1 Other Other +9fc5106d-87f1-469f-8bed-07abf26199d8 1 Other Other +9fc55094-19a7-4938-b580-a91fc4b302ef 1 Other Other +9fc57ba1-2282-454b-9e5e-3e931c286d2e 1 Other Other +9fc5b997-3c4d-4120-8c55-3eb809ffddf5 1 Other Other +9fc5cb74-cfad-453b-b8d3-c6ef8fc4b7e4 1 Other Other +9fc5ee67-ce5d-400a-bcef-41c40dbc9352 1 Other Other +9fc5fd4a-b0cf-44ed-8e8b-7dfa0f55dffb 1 Other Other +9fc62ca8-983d-47d2-810a-5049fb7ad328 1 Other Other +9fc676e5-785f-4d5e-a377-5faac0200846 1 Other Other +9fc6c0f6-61cb-41aa-aa54-309704cbc9a4 1 Other Other +9fc6f916-6264-4b61-b5a8-b8fd38d82263 1 Other Other +9fc72f97-4b2f-4c3c-9448-6be0ef8c4485 1 Other Other +9fc754e2-ba36-4c59-9325-e1336d010672 1 Other Other +9fc754fd-97cb-47fb-ba13-64af04c93716 1 Other Other +9fc7a3a6-e90b-43e0-aed8-fd6aeed30c03 1 Other Other +9fc7dbca-145e-4502-8589-a0b914383c02 1 Other Other +9fc7f2b7-9b25-4b72-b806-323d5b818f52 1 Other Other +9fc8443e-d76e-4bc3-9cda-686506cfee1d 1 Other Other +9fc84e95-7e5c-4c4b-93e0-5ae6346d8107 1 Other Other +9fc860e1-f722-425d-95e8-d2f12a175be3 1 Other Other +9fc8b075-965b-47e7-a6d6-5e019f6d9c68 1 Other Other +9fc8c593-506b-460b-91a3-df48039a7ea6 1 Other Other +9fc8efa6-0350-4f97-8416-72b8763a08fd 1 Other Other +9fc906fa-9935-47dd-a0b1-6b63cb6cc7a6 1 Other Other +9fc936f8-42b4-42c8-a069-a50c5175ada8 1 Other Other +9fc95a7e-d67e-4d0e-9734-68773065d72c 1 Other Other +9fc9af1c-09cb-4c06-971b-46c0abfe0da1 1 Other Other +9fc9c31f-9595-4b58-a831-fd9fd0b5ebd5 1 Other Other +9fca39b4-e87f-424f-83f4-3fccda550e43 1 Other Other +9fca8d99-e0c3-463b-aa0c-5bd733ce40b8 1 Other Other +9fcae8c7-c337-49e7-972e-021efd606b8f 1 Other Other +9fcaf11c-eff2-49cc-8fa7-3738a5eaadef 1 Other Other +9fcafa81-e3dd-48b2-94bb-8acc4b53a26d 1 Other Other +9fcb1b2e-f0b2-4fac-ba80-995cf50a6090 1 Other Other +9fcb950c-c65e-44c3-b336-ea0636923c86 1 Other Other +9fcbeb1c-7e7c-4830-aa05-afc1af355777 1 Other Other +9fcc8724-39f6-448f-97d7-0408da7d8dcd 1 Other Other +9fccac08-2dbd-44f6-9805-4a7031f8099b 1 Other Other +9fccb61b-784f-440c-b46e-8ce932684b2f 1 Other Other +9fccd261-a668-4adb-8485-e1217ffa267b 1 Other Other +9fcd1118-b5dc-4764-b34e-d3c47e4bf051 1 Other Other +9fcd51e4-c80a-4659-8598-61ead21b649f 1 Other Other +9fcd67c1-828f-48cd-88ec-0d01701de043 1 Other Other +9fcd8f34-76fd-49d8-b611-111edc6c601a 1 Other Other +9fcde160-734e-479c-8c3d-0b262c0af5b6 1 Other Other +9fce1976-fe31-4879-bdf9-eec8309b2886 1 Other Other +9fcee963-3ea2-443d-8c81-ad16e6304442 1 Other Other +9fcf0f66-e940-445a-b968-cbf96207f338 1 Other Other +9fcf1a83-43c3-4ea5-8c88-8caafeb89a74 1 Other Other +9fcf3cb6-b968-4280-b115-0340e4608e5e 1 Other Other +9fcf547f-35aa-4081-a9f1-0f3b9de62b5d 1 Other Other +9fcf7fbf-d595-4e67-a195-0b903b64ed67 1 Other Other +9fcf9b74-d600-4936-9157-d0a1f9a8511d 1 Other Other +9fcfbf62-2f0c-49f2-8b01-65ef3c0cb4a8 1 Other Other +9fcfe3f6-a42e-471e-a31e-e5a36a62b88c 1 Other Other +9fd02426-9b53-423a-8346-13645b227c16 1 Other Other +9fd05144-ed94-46b1-b812-253ccb74fe79 1 Other Other +9fd0d45b-b998-47d5-af0a-2a48989a1c8b 1 Other Other +9fd0d9ce-a070-45da-8268-6871c62e3d97 1 Other Other +9fd0e841-bd62-479c-9e73-126423ad2e05 1 Other Other +9fd115b7-5ce9-4d96-b3e8-9060b6570ce0 1 Other Other +9fd1612e-e1f4-4493-a4f5-aa1ed6872d99 1 James Other +9fd186c8-6d76-417a-9b85-c0c40c581505 1 Other Other +9fd26659-60c6-4ff6-9870-f36356c86f23 1 Other Other +9fd27651-c7d7-48fa-91ed-021bb617f7e9 1 Other Other +9fd2e88f-8b95-46a4-9e47-82164c0942ca 1 Other Other +9fd2ff48-c215-4f39-94c4-bca66f87eff7 1 \N Other +9fd35f82-e438-4e57-aa48-1142bea4287b 1 Other Other +9fd3775d-2466-436b-83d6-d48ba73c2315 1 Other Other +9fd3acdc-fb9c-46b4-a909-e8d91c864fae 1 Other Other +9fd3bd6b-2036-4a5d-b4a0-b45ef8b40e13 1 Other Other +9fd3cb40-87d6-4989-8d13-d654bccda7fa 1 Other Other +9fd3d21c-741f-4611-bec8-5b992eacbb18 1 Other Other +9fd3f993-40f9-405a-875b-3de8f0c5a4c9 1 Other Other +9fd47737-d9c7-4a76-bebd-795e5cee9755 1 Other Other +9fd4836d-90c5-4bcc-acbe-386945829adf 1 Other Other +9fd485a1-e8b0-4944-a3e2-c01ebf003de1 1 Other Other +9fd4acc5-a305-4ea8-9e38-bdc11d91f161 1 Other Other +9fd5557c-762b-4d07-9680-c08dbbdc743e 1 Other Other +9fd5771f-2412-4ddc-886c-05d95499746e 1 Other Other +9fd57c55-e84a-464c-85c3-23fbf99970ac 1 Other Other +9fd60273-afce-4072-8fe4-23bddf6da7b4 1 Other Other +9fd62d36-efd2-497a-9b8b-2d040b6075ce 1 Other Other +9fd64b3c-cdc8-469a-ab60-2e81678b4209 1 Other Other +9fd64f58-c7ae-488f-90b9-5633b9166a94 1 Other Other +9fd6d414-0aaf-473c-a883-1c33033290ff 1 Other Other +9fd6fed0-ca3d-458c-8380-114422022c11 1 Other Other +9fd72be1-f31a-46bd-9338-a30c8bd2d8f1 1 Other Other +9fd7c7a3-9496-4761-ba4c-54e63b79b04a 1 Other Other +9fd7dfd2-2199-4540-a930-ad14f5d3db8d 1 Other Other +9fd7ed2f-607a-44b4-a094-48bc10207292 1 Other Other +9fd814fa-eeaa-419a-b8c0-017bf4fe3ac5 1 Other Other +9fd85727-ba06-4095-83f7-787005d920c9 1 Other Other +9fd85be7-4d71-474a-957b-eccc4b1b21a8 1 Other Other +9fd88529-368b-49ea-b864-baa31bce33b0 1 Other Other +9fd8a233-ea58-4a5c-933e-b8f0bd2d6354 1 Other Other +9fd90903-25d2-413a-8585-d5745839aafb 1 Other Other +9fd9209b-ae3d-4993-966f-93e0b0c25a3e 1 Other Other +9fd926a9-4db5-4b10-b7c0-202c04011a52 1 Other Other +9fd96318-ae6a-4f92-b22e-3acacec34b74 1 Other Other +9fd974c2-a11b-4e05-99f6-ea15b8e44641 1 Other Other +9fd98125-de51-46ec-b1a1-dc248a5463f1 1 Other Other +9fd9bf7e-146b-466e-a6b7-a9e03280ce8f 1 Other Other +9fd9d092-ceb0-4b00-8b91-66a589bea2fa 1 Other Other +9fda3ebd-80fc-4587-a2c7-c6f798be3b9c 1 Other Other +9fdaa613-49e7-46f4-bc9d-324a96b02b70 1 Other Other +9fdaadd6-c6b6-4cb8-a95c-2af48ff092cc 1 Other Other +9fdac93b-86ee-4400-b84d-b621423105dd 1 Other Other +9fdac9d3-f189-464f-8ec0-b53dc796f29e 1 Other Other +9fdaca33-9396-40a9-a76f-cb4565db0718 1 Other Other +9fdacb60-8c4c-4eb1-854d-ce6defd14b64 1 Other Other +9fdae363-727b-4575-9a60-b5c26f54a81a 1 Other Other +9fdaef4e-e621-4ab8-9180-84d42b6d3c3a 1 Other Other +9fdafb6b-9c8f-418a-afee-b82ba616e6bb 1 Other Other +9fdb0010-6a7d-40da-84a5-1d96574a1f6b 1 Other Other +9fdb00b2-0caf-40dd-bf8a-04ba0f383159 1 Other Other +9fdb1f33-d62f-47cc-ad9a-b8e27e84733a 1 Other Other +9fdb4086-bdcb-4092-89b4-61b2ef5cecb3 1 Other Other +9fdb731b-30e4-452b-ad01-580edb610834 1 Other Other +9fdba269-72cd-4f6d-999b-a2c6f4b35a43 1 Other Other +9fdbf8e1-aca4-4bc5-b73d-9af6e22b24ff 1 Other Other +9fdc4514-44c5-4d00-aee8-d485df525def 1 Other Other +9fdc56fe-cfba-4305-8dae-820845a7c968 1 Other Other +9fdc76b2-6f7f-4c03-bed9-df763dfc997b 1 Other Other +9fdc8006-1ed9-4ba3-b1b2-d22a638ce0b3 1 Other Other +9fdc93d7-64cd-4a1d-ab9b-7568d208d0c7 1 Other Other +9fdcb574-4362-4edc-be1a-2bbd4cdffb7e 1 Other Other +9fdccd55-d0ae-4ddc-bdc7-7efd912627e0 1 Other Other +9fdde273-3c70-4071-9f84-a5d12297081c 1 Other Other +9fddf82a-7849-4277-b2e7-932229306fec 1 Other Other +9fddfad2-bead-4080-ae01-2baccae3aa87 1 Other Other +9fddff9e-592b-4791-93fc-03510a48cdcb 1 Other Other +9fde8d8d-2a04-440a-8349-e920946afa91 1 Other Other +9fde95ac-5785-432f-b250-36052b514124 1 James Other +9fdf0e72-0e72-483c-934b-b75c70e85663 1 Other Other +9fdf1b60-44cc-40ab-b392-b818e1c097d2 1 \N Other +9fdf8f20-8235-4d4c-a4c8-8b53282e8cd1 1 Other Other +9fdf9728-6bee-4d0d-9f6e-12663dd43a87 1 Other Other +9fdfe9ba-c916-4b4d-9379-df146eb32e45 1 Other Other +9fdfeca5-9819-4a0d-a724-28e2096b25ba 1 Other Other +9fe069e2-30be-4881-82c2-594cd42a0fd5 1 Other Other +9fe08da1-c58d-43ab-aefd-9f02d366c6c7 1 Other Other +9fe14639-37f6-4769-bc0a-e263d660b4ff 1 Other Other +9fe14c25-77c2-4f32-adf6-17ee4e122c72 1 \N Other +9fe164ce-e19c-46cc-ae65-5edc4eacf7b6 1 Other Other +9fe16bfd-f46b-4891-b39b-10432b1442fc 1 Other Other +9fe1c9e4-fc09-4dea-ba9a-f3ca7b7b69df 1 Other Other +9fe1d649-8d75-40ea-894c-a355a0d111d0 1 Other Other +9fe20d76-47ac-4486-b4bd-8bf1411c4e15 1 Other Other +9fe2123a-f256-45cb-9ad7-a6c70f01edf0 1 Other Other +9fe2232c-85d0-43fa-ae1c-5e4d043e1f81 1 Other Other +9fe25926-095a-48b9-9edb-70d463889040 1 Other Other +9fe34cdf-d8e1-4f72-9cf5-5013934398ca 1 Other Other +9fe4575f-3369-47d7-83a2-da80a9733a3a 1 Other Other +9fe4e55c-b452-49e2-9143-9d0c57c3fde4 1 Other Other +9fe4e6e6-4f69-4bff-8ccd-f55f1a4994cd 1 Other Other +9fe4f292-694b-4cd8-8e7d-d6ffe593052b 1 Other Other +9fe5331d-fede-4e73-9cad-e3907aef2e31 1 Other Other +9fe54b84-bb41-4895-9883-e1470b276772 1 Other Other +9fe58741-c3ab-4b31-9553-9647d52f8b25 1 Other Other +9fe59ede-a430-46a4-863c-269220ad6f6e 1 Other Other +9fe5f677-2a29-4e05-b2fa-d80556cfee52 1 Other Other +9fe5fc74-ebe0-4aac-976a-940c74fbbb66 1 \N Other +9fe600d4-9bc2-46a2-bbee-dd155b55d927 1 Other Other +9fe61a84-39dd-4e2b-953d-d79ef1af4f9e 1 Other Other +9fe68813-2a59-4ca3-a500-379ab951c284 1 Other Other +9fe6aae1-ed3f-4cc7-86fb-d17c09a1a099 1 Other Other +9fe6ae00-c3e5-4e35-acbc-ce70fc2215a4 1 Other Other +9fe6d55f-c4ab-45b0-b768-6fc1e1470c04 1 Other Other +9fe706ab-2e81-4ea0-bc02-51e80a69579e 1 Other Other +9fe72429-4ff2-41c2-b9e8-4f9feaa7bd22 1 Other Other +9fe73bb9-8f51-4745-ad1f-47bd8c3e23c3 1 Other Other +9fe76709-5fd0-419f-907f-9a0712da582b 1 Other Other +9fe76b9b-e2fc-454a-a7eb-f1f9a13e147b 1 Other Other +9fe78e8e-44c8-4732-a46f-4c015ce556de 1 Other Other +9fe7bcad-822c-425e-aced-3fb1c4726de3 1 Other Other +9fe7cd32-898d-4815-a15b-f519ca92f7c5 1 Other Other +9fe8646f-d425-4a03-9a4d-acc04f62893b 1 Other Other +9fe88a81-6342-40dd-b3b7-954897cd6f15 1 Other Other +9fe8b794-01a7-4d17-936e-7ee150f94996 1 Other Other +9fe8e12a-99b3-4bb3-9858-721cc6149ac2 1 Other Other +9fe9049b-1c44-427a-a81d-61c24dd46b5f 1 Other Other +9fe9119f-ed63-4b8e-8842-4077de5e2356 1 Other Other +9fe96b47-8d0c-42d5-a84f-05205c9aa96d 1 Other Other +9fe98d14-9145-40ff-801d-2c78e8faf58b 1 Other Other +9fe9c3a1-e87e-42d9-a1dc-bb161c2c5d96 1 Other Other +9fea6059-4d15-48d5-a0d1-c9dc1b679cfe 1 Other Other +9fea60cf-861b-42fe-bd70-e62539caeff7 1 Other Other +9fea6154-c576-4e96-8e23-311cd5c9e36c 1 Other Other +9fea8a31-4518-4597-82c2-3e50e90a035f 1 Other Other +9feab83a-061b-421b-92cc-eb71c768a6c8 1 Other Other +9feabab4-8ea7-4a37-9454-c4695d65a188 1 Other Other +9feb23ad-fdfa-4a2e-83f8-ced2cb652802 1 Other Other +9feb4050-27cd-41a5-ac1a-b1f694a49bd6 1 Other Other +9feb46dc-e9d5-4e67-be44-99d47cebfa15 1 Other Other +9febe3fc-7e4e-475e-9bcd-942e27260dc0 1 Other Other +9fec2522-caa5-48e6-8d41-a85c9e0f05ae 1 Other Other +9feca24b-2f52-49ac-ad6f-0b8a29ee9088 1 Other Other +9fecd97d-f724-47b2-bf15-0a89b2f3bd78 1 Other Other +9fed0612-45e5-49da-aab8-ff13b9e68dd6 1 Other Other +9fed0901-a439-40b0-ade6-3050befebb75 1 Other Other +9fed2276-9eac-4518-bc13-3cac8b8f995d 1 \N Other +9fed37fb-bce3-49dc-8b3a-bc6825c77ee8 1 Other Other +9fed53b0-82e1-4614-97f8-458693c00637 1 Other Other +9fed823c-2ded-4130-818a-9aee131b0583 1 \N Other +9fed8367-4b58-4c70-bac7-f83b4d6a7b2c 1 Other Other +9fed944b-d21f-4f3e-b140-09b30cc470b5 1 Other Other +9fedb771-705a-4ccc-b669-fd8a4fa40e6d 1 Other Other +9fedcfda-16ef-410c-a52f-b1d9846ab7a4 1 Other Other +9fee6246-f88c-4c13-bbd3-4d65cad6f644 1 Other Other +9fee72b8-269b-4331-87df-7036d3155729 1 Other Other +9feea73a-efc9-4b97-9bff-691607524309 1 Other Other +9feec90a-de2a-4672-a525-33dd078d4908 1 Other Other +9fef09ee-68c5-4d4c-93ae-7e8514cd02ee 1 Other Other +9fef298e-db7c-46bf-a575-04f39bda5f99 1 Other Other +9fef6904-df5c-432b-8501-98c49f18a1f1 1 Other Other +9fef97e0-fb5b-414d-a6d7-93c146ec6f64 1 Other Other +9fefbaec-97fd-4392-a7ae-f78626d9e562 1 Other Other +9ff035bd-6908-45ef-a94a-1efc277e2b54 1 Other Other +9ff03893-6851-437e-96c9-0930046f0548 1 Other Other +9ff0407e-a25b-4a3f-b06f-b6e9017a0dff 1 Other Other +9ff04b01-1362-49cd-81e3-9d57baaada33 1 Other Other +9ff0610d-6524-479c-b40e-c1586956c256 1 Other Other +9ff0cbb9-5f0c-4ad0-8201-937d60a7015b 1 Other Other +9ff0da05-3ecf-406c-b8da-833544e3d518 1 James Other +9ff130ed-fab6-4121-a824-837f0b55a983 1 Other Other +9ff14699-799c-49ec-8c76-ec6bc5dd754d 1 Other Other +9ff17686-a333-4653-9af8-9c967e34eac7 1 Other Other +9ff17e6a-cd22-4dc6-9bbb-1d81eb07c21b 1 Other Other +9ff1cd3a-4542-422b-91ee-1a25d2456d81 1 Other Other +9ff1f132-7a4b-4011-83a5-f3fc654b5e8f 1 Other Other +9ff226c7-66e2-4700-aa02-d1cfe5308ba1 1 Other Other +9ff260aa-97c1-45e7-875b-dccfa5d9d576 1 Other Other +9ff262a5-14bc-43e2-8a7a-ff64a7a92162 1 Other Other +9ff26872-4ce1-4fbb-a37b-1c6b84d2964e 1 \N Other +9ff26a23-189f-4523-8b20-c7a48a1b9c7f 1 Other Other +9ff2b646-6a91-4637-96c2-bd9da27c520c 1 Other Other +9ff2f6c5-4f41-42a6-b77a-1530dc1b318b 1 Other Other +9ff31db1-16c8-46ea-91bf-c7a90d3cee48 1 James Other +9ff368fb-cbcd-4472-beaa-f1d225c40a0c 1 Other Other +9ff3c895-f65e-4080-89b8-a8b7c7e19e6a 1 Other Other +9ff3d5e3-549c-4cc4-8d35-f5fdba5a7df5 1 Other Other +9ff3d6d1-d9ea-4e6f-9e6f-65c2a3d6ca75 1 Other Other +9ff40d2b-f6a0-4006-8dc9-dc0d7f2435b6 1 Other Other +9ff473ee-0a00-4a91-a89b-7ed78f36ab8f 1 Other Other +9ff48b6e-7688-4b7b-9dbd-d161cb4a77ad 1 Other Other +9ff4e23b-6429-47bd-97b4-772514a53d8a 1 Other Other +9ff4e92c-e01e-4663-a75e-4d679048b254 1 Other Other +9ff5d586-197d-442b-8746-26299f7743e3 1 Other Other +9ff60f70-9130-4fd3-bb06-eee7c7dcf4cb 1 Other Other +9ff61191-0422-4d1d-957b-e9b4266c76d6 1 Other Other +9ff64c59-1ea9-4a4a-a1f0-dab1922a0c79 1 Other Other +9ff79663-0911-4c27-8265-a41f7e244e29 1 Other Other +9ff7bb4f-4c3c-40d9-bce4-d430ba6834c1 1 Other Other +9ff7cb2e-1531-49c9-9b83-90b30e317ff7 1 Other Other +9ff8384c-0c32-4aa5-a574-017b1287fbb7 1 Other Other +9ff83e22-1215-4ac7-8829-11cba8363d9a 1 Other Other +9ff88ddc-1365-49f8-9b02-79f689210497 1 Other Other +9ff8bcc4-58e1-4f38-9885-bd45e7796823 1 Other Other +9ff94ea0-2abb-4944-ae85-7015bdfaa379 1 Other Other +9ff96de6-dc91-407b-9984-3e3da3fd3873 1 Other Other +9ff96dff-27ad-4283-b922-b99396c0ae98 1 Other Other +9ff97a76-5772-43c5-8a5c-f487e9f1ba2f 1 Other Other +9ff9ccf8-a401-4351-bc3c-742661a55dd0 1 Other Other +9ffa0eba-6c66-4a38-8b6c-75c856ed5413 1 Other Other +9ffa8604-69a3-46b6-b422-d41b267fc81c 1 Other Other +9ffa9c36-880d-40ca-b8aa-4ae40f58c408 1 Other Other +9ffaa357-a9b4-4e49-a475-936c07f8541c 1 Other Other +9ffaf015-f742-477d-a261-6fe2cea3e417 1 Other Other +9ffaf5b8-4121-4179-8624-2312352b15c8 1 Other Other +9ffb09db-4984-4b26-b0f0-d90b35a02b82 1 Other Other +9ffb5810-2024-4148-ad1a-9bb9148b6dd3 1 Other Other +9ffb7040-dd6e-4e16-a03e-c4b13ff7dbf6 1 Other Other +9ffb8f78-056e-4a81-b871-e770a8623e30 1 Other Other +9ffb927c-dfe1-460e-81ed-15b0aa66af4b 1 Other Other +9ffbbe02-553d-4d6a-a7d8-44a1b9813bda 1 Other Other +9ffbcc98-13e3-4b45-8154-092ae9c4452d 1 Other Other +9ffbcdaf-3112-4a63-8794-c2dbcb1a0980 1 Other Other +9ffc8d24-5224-429f-820d-c9a6667eb1ba 1 Other Other +9ffcaf52-f2bd-463e-be60-ad62a70c4399 1 Other Other +9ffcb454-ccba-4e15-a077-a9d13c88064a 1 Other Other +9ffcd27d-31e5-453f-952b-5a2c32555d06 1 Other Other +9ffd4994-5fe2-4695-9f00-5999e84fd6d2 1 Other Other +9ffd6808-05a6-4ab4-8eb4-032f8d64e470 1 \N Other +9ffd9898-6fc5-47d6-b382-5d0ab79991c4 1 Other Other +9ffdd253-1877-46a5-b897-0cc8dd324450 1 Other Other +9ffddc25-2a71-4f99-bdea-81c13eb1803b 1 Other Other +9ffdf3c3-c227-4b1d-b9ca-9909c5f808f9 1 Other Other +9ffdf48e-e94a-41ca-914b-96ae37a44fc7 1 Other Other +9ffdfb26-425b-4669-92d2-34be1f7bbb0d 1 Other Other +9ffe80ad-72d8-4029-99e6-05011a5277ee 1 Other Other +9ffead25-b5db-4c59-b2ab-0d5644e1d95b 1 Other Other +9ffeb07d-2826-4a53-a364-d8f4c189a79e 1 Other Other +9ffeda45-ed66-4d66-b6cb-657a7a3b16ae 1 Other Other +9fff09cf-e386-4a6f-b449-d5fcd28a9ef8 1 Other Other +9fff12db-473d-41d7-b618-3f23c872db13 1 Other Other +9fff28d6-48da-43e7-8399-ede93d52a835 1 Other Other +9fff2bfc-982f-4184-9328-ad1b0e9383a3 1 Other Other +9fff8b44-77cf-4146-9ff2-a3e86819642c 1 Other Other +9fffb4ac-39b9-4a07-8a45-ddcc6bc52e0b 1 Other Other +9fffba67-3cc7-4140-b873-ac1eb2f33971 1 Other Other +9fffca97-0368-4c50-86e9-bdc1e07d9275 1 Other Other +a0003ab0-84fd-492a-acfb-ddfb2688ea6e 1 Other Other +a00074d6-4a9c-4de2-9a0d-402e8aa934f6 1 Other Other +a00099fd-aebe-48ee-b3ca-cb8b0d78173b 1 Other Other +a000e0ef-a5a2-404d-80ab-48f775ccb0bf 1 \N Other +a0015c5a-6eb8-4bcb-b218-8acb3b735a1d 1 Other Other +a0016d45-8ea3-4710-b531-19d44fd58095 1 Other Other +a001b987-db1d-4480-bcd0-eabfdb23dc44 1 Other Other +a001deaa-4d8f-45c0-bc46-88e9b6eb4b26 1 Other Other +a002004d-3a3f-45f7-970a-c451c55b6cb9 1 Other Other +a0022c18-9f5a-4854-ab03-447aa7480252 1 Other Other +a002525c-c144-420b-9e6e-fc4023235acd 1 Other Other +a002bd3e-7c05-4f9e-bd97-d0f15abd9a71 1 \N Other +a002d745-ab18-4d41-a599-81cf9b480f02 1 Other Other +a0032b54-512f-475b-9e40-680c34986ddd 1 Other Other +a003439d-b089-48d7-85f4-eb43d7450cee 1 Other Other +a003bf90-7a8f-42d8-988f-544022afdd95 1 Other Other +a003c0c9-28c7-46c1-8173-7814cc261428 1 Other Other +a003c27a-14e6-4253-a9a3-1882cdb081af 1 Other Other +a003f9fb-e444-4a79-a2af-4281ccade9d5 1 Other Other +a0042502-3dc0-4b7f-8a95-c81665acc5b5 1 Other Other +a0042bfa-cf07-4925-b156-4bd329e40f4d 1 Other Other +a0043eba-8a7c-4012-b317-1937c4dffc44 1 Other Other +a00464d1-ff74-435e-9ff2-57ac578253ce 1 Other Other +a0048b81-902a-426a-8f88-60641ade51d6 1 Other Other +a00494f1-7eab-4c56-b8ae-53a58e482c22 1 Other Other +a0049f43-5463-48a3-851a-ba9c70561954 1 \N Other +a004e8e9-7381-4440-8033-d7e23bf9e472 1 Other Other +a0050c9c-94ee-4869-a836-5258026fb4e3 1 Other Other +a00539cb-6851-4fe2-ae1c-bbdd7da7cc09 1 Other Other +a00547e2-f903-49df-88d4-e65f5392d14b 1 Other Other +a005a93d-06f3-4e9f-9026-98746ff1bd80 1 Other Other +a005bd99-0fe5-41ef-95f4-1c86b0b79fe3 1 Other Other +a005ca0e-550d-4caa-859b-3ec180807f1f 1 Other Other +a005e472-c2c8-4d00-ab5b-39b9a61c7634 1 Other Other +a00601df-8788-41ed-903c-347c61b01c07 1 Other Other +a0061616-6c31-438b-89ad-07d5c1bde55f 1 Other Other +a00619c2-2262-4d3a-9795-61f9cfab3cae 1 Other Other +a0068df0-b79d-4a50-8a1d-10bd271e8f73 1 Other Other +a006a259-53ea-455a-8e58-20c559f666b8 1 Other Other +a006cd5b-2b82-469e-b277-0d29225b6a70 1 Other Other +a006dc33-1c0b-454a-9ed5-ce510417e2a1 1 Other Other +a006ed3b-7454-4f09-b355-9b3b10823545 1 Other Other +a006ef6c-0d92-4075-a570-17ca4bdae3ed 1 Other Other +a00730b2-f954-4cbf-9556-43e05d8b5253 1 \N Other +a00740b9-0733-4fe5-b313-3b7ce1c29354 1 \N Other +a0075787-6c8e-4af3-a7e4-57febe218daa 1 Other Other +a007fd81-1066-4ca4-839e-cb975afd1ec5 1 Other Other +a0084129-522c-44c3-a494-789d92cb574f 1 Other Other +a00852e0-3116-44d7-9af3-b71d2b31e1fa 1 Other Other +a0086338-b685-4680-8446-f811c8881813 1 Other Other +a008e96e-03a0-4c79-9f1a-13ab180ba67b 1 Other Other +a0090167-32f6-40b0-8fa6-d4d9ffe5561c 1 Other Other +a00919af-c0f4-4f0d-9dae-9edee6b09a6e 1 Other Other +a009362d-c1f1-4762-ac87-93a43dfc40c8 1 Other Other +a009729e-756c-449c-be20-ff445f596650 1 Other Other +a009990a-155d-4066-ac30-a0b43014a535 1 Other Other +a009fb30-dd96-48d9-9452-0c29b673f416 1 Other Other +a00a0e82-abb1-48d1-b666-61b03020c6c0 1 Other Other +a00a2e62-9e62-4290-a7d8-620f03c5d9a7 1 Other Other +a00a34c2-0d8d-45cc-bc76-19e6fff5083d 1 Other Other +a00a3ce6-9e9f-44c5-bf01-3cdb14039a4f 1 Other Other +a00a5d46-272f-4328-b680-0670508cb9ca 1 Other Other +a00a60e0-8b99-4640-b43c-fb312abf7c3a 1 Other Other +a00a8d74-05e2-409d-8f87-02f60eb0cd2c 1 Other Other +a00aa58b-3dab-484a-b28a-a01d7eda8fc5 1 Other Other +a00ab9e4-4e6d-4c8a-8e49-47d050eac772 1 James Other +a00b2945-83de-4ff5-816a-66482ec8234f 1 Other Other +a00b6bc8-af82-44a0-a846-850118f56968 1 \N Other +a00b7e74-3727-4164-b863-dbef17958977 1 Other Other +a00b94db-cdc1-4d3c-b44e-f559173a00b0 1 Other Other +a00b9b86-804a-45c5-aa41-033b1f7456a7 1 Other Other +a00bc5a0-5d43-4593-9d39-079c5e4f8dc3 1 Other Other +a00be9b1-db41-48e8-a9f2-9ed749803b04 1 Other Other +a00c5b32-464d-4209-bbbd-607ba6f984bc 1 James Other +a00cad93-e1d6-47ae-8bb5-28f444c4abfc 1 Other Other +a00d757b-51ca-428a-82c1-1a2db99d2c2b 1 Other Other +a00d76ed-8389-4d49-a049-2bbec2359208 1 Other Other +a00dfe05-ef8e-4e17-aec4-e828e7facb68 1 Other Other +a00e10f2-602b-4b00-b559-bda5d11da1f0 1 Other Other +a00e22da-40d0-4106-a844-caaba73d7c29 1 Other Other +a00e273f-137f-4a24-9b2e-f289bc4712d4 1 Other Other +a00e5d12-f4d1-4cf0-b1eb-fb9954c834fd 1 Other Other +a00eae6b-4469-4fa1-9e96-cb7cdec89413 1 Other Other +a00eb22c-7acb-44e9-afad-c5d49432457e 1 Other Other +a00ed42a-7359-441e-83da-beab4f50ab4b 1 Other Other +a00ef6f1-5194-4a5e-abe9-992dd3a5edfe 1 Other Other +a00f04ce-2184-4c7e-9b87-972bd44060ab 1 Other Other +a00fca84-0763-4318-8123-8ea0af23adc1 1 Other Other +a00fe888-de2d-4fb6-9f4d-1293461b96f4 1 Other Other +a00ffb17-506b-443e-ae2c-951ae3b6aeb4 1 Other Other +a0100274-c274-4d2a-b78e-608613291ff4 1 Other Other +a010091e-5a24-4daa-8be0-c4a0654b7317 1 Other Other +a01031ee-519c-4aa2-abb8-8d1b824fd653 1 Other Other +a0104c25-1373-4beb-8f7d-8f1a13e9b68c 1 Other Other +a0107a6b-5b78-464a-b6cb-fc580cb3ffc2 1 Other Other +a010a2af-94f6-4657-ac22-d6a2fc67ba97 1 Other Other +a010c737-4a8f-4030-b60a-5cfd5bf3b8f5 1 James Other +a010cefa-ab59-4115-983d-276d2e3725a5 1 Other Other +a010e94f-50de-479b-9bf3-5756e2528d0c 1 Other Other +a0112982-3c7d-435e-b316-d71537920e12 1 Other Other +a0116ba7-76e7-45ba-9708-bf38dfc07f45 1 Other Other +a0119d5f-8053-414a-a0aa-b7214de446a6 1 \N Other +a011dd2c-4dfc-4a0a-a167-53e20a966180 1 \N Other +a011e713-9706-4c83-9306-6b7aabca5e96 1 Other Other +a0121058-c24f-4790-bec0-e3e66704aab3 1 Other Other +a0126a61-f5c2-4b8a-abb6-56d491efeed7 1 Other Other +a012723f-8ead-4f4d-8b9d-b4ffa1c41423 1 Other Other +a0128877-5b07-449e-9637-105f255f070a 1 Other Other +a0135528-4a33-451b-885b-4b5910b6c4d4 1 Other Other +a01367a8-edfd-42a7-a173-19e048fcb8d4 1 Other Other +a01406a1-2f1e-41d9-be20-f35fe0a58725 1 Other Other +a014358f-d5d2-4bf4-8745-7ea94607fc7c 1 Other Other +a0143f05-3496-42c6-a4f1-9f2d1995d16d 1 Other Other +a014696c-ca94-4ad6-9cc8-9d27e83bf99d 1 Other Other +a014819a-ee0f-415b-931c-75baae4389f6 1 Other Other +a014b4dc-9e82-410e-8068-c292ff6fbb32 1 Other Other +a014d19a-f148-4082-9208-46c303ad165c 1 Other Other +a014ed19-c7f4-4828-937c-52a84347f88c 1 Other Other +a0151073-cbd9-4800-9c2a-e52098abacc9 1 Other Other +a0151d90-367a-4202-841e-441bdc23c361 1 Other Other +a015cfd6-503f-4b00-8411-09a044633efd 1 Other Other +a016037f-f965-4128-abaf-a346a8a94746 1 Other Other +a016174e-c9d7-4dee-a51a-5aea44958439 1 Other Other +a0164839-c0e1-494a-9161-6c0fc9429bb3 1 Other Other +a01668e2-45c4-4dc9-b057-2f1de9fb1e4e 1 Other Other +a016896f-22fa-43bf-8443-ee7ca537d8fb 1 Other Other +a0169448-fbf9-4b89-9cb1-9e8104cb10c2 1 Other Other +a01696be-71b0-45f5-a5d4-9bba9239e0f9 1 Other Other +a016a65a-9943-4e01-b6e2-2358bc20fc37 1 Other Other +a016b569-4387-4cf0-b143-4a2d4482fba9 1 Other Other +a016da82-ade6-4804-aeca-35a04ad4bfbc 1 Other Other +a0173cf7-6063-401c-b771-8229a88b66c6 1 Other Other +a01782ef-e4cc-4b70-9a14-9e0c39570199 1 Other Other +a01787ce-d291-4e3a-8b52-3c83b51890e6 1 Other Other +a017caf0-19cd-430a-ba51-0f5a513284a2 1 Other Other +a017ff64-0775-468d-9e12-ccf03b9d4f83 1 Other Other +a01838e9-c17c-49ff-bfad-6058b68e0317 1 Other Other +a018a097-303a-42ce-9b10-34a50e3b125a 1 Other Other +a018b8c0-8838-48df-a992-b4d0806c35f5 1 Other Other +a019102a-319d-4182-9290-f5a16eb134d3 1 Other Other +a0191162-6ea1-4291-b3d7-b4404d109e02 1 Other Other +a019737b-669f-4ba2-b08b-31fa281ce8f0 1 Other Other +a0197c9f-38e9-4044-90a7-d312e78dbf97 1 Other Other +a019a828-8486-445f-a64b-b8af742cd577 1 Other Other +a01a0538-c6fb-4eca-b9a2-dc9d86620d50 1 Other Other +a01a1cae-0584-446f-ab9f-a062f3e1323f 1 Other Other +a01a21e2-5683-4f94-a41f-8bbce53fad4c 1 Other Other +a01ad194-1c0b-40db-a9eb-aad845c49937 1 Other Other +a01ad822-f92c-4e1c-902e-a95db10f865a 1 James Other +a01adbb7-b08f-40fe-aec7-b631d14f8c92 1 Other Other +a01b2dd8-74e3-45a4-84d2-b625b8b82155 1 Other Other +a01b6dde-9153-4534-b853-f125071ad24e 1 Other Other +a01bdf3e-969e-4444-be78-6c7c8d4d627e 1 Other Other +a01bf9a2-6831-4a9c-96e0-c3bb864b2334 1 Other Other +a01c21f9-8664-4cf8-b4e8-5601c3e5f636 1 Other Other +a01c6091-c20c-452b-a080-3273c99b9c78 1 Other Other +a01c60e9-ede4-49dd-96f6-bfdb53b8eda9 1 Other Other +a01c7213-5e96-4328-b635-ad71b0c229e5 1 Other Other +a01c732b-5b3d-4a3e-b6e7-f893a0d5f0d7 1 Other Other +a01c81b3-232c-4b77-9b91-9e7e4fb061e4 1 Other Other +a01c987f-cf7c-42da-9480-5942ca9042d6 1 \N Other +a01ce1bd-d8fc-4efe-a5a2-cf2b32458529 1 Other Other +a01d0b33-bca2-4cd3-980a-30b3dc90848d 1 Other Other +a01d0efb-432f-4d86-8738-e91283c3c07e 1 Other Other +a01d27af-8a6c-499e-89a8-502575f6e029 1 James Other +a01d39a8-a828-4f24-962f-c404f0e2d1d4 1 Other Other +a01df429-3227-4ac1-8433-42ba0b33890d 1 Other Other +a01e64a1-724d-4a9f-9904-83f698284ae6 1 Other Other +a01e9576-8d7b-4266-b046-8745378ee6df 1 Other Other +a01ebf5c-d3f4-4def-b29e-669a7dc30118 1 Other Other +a01ecc81-7885-4b9c-868e-fa642a70b1e6 1 Other Other +a01f623b-d753-42f0-949f-ab1292a57e14 1 Other Other +a01f83bb-07d4-4fa0-81aa-a7235f5f2234 1 Other Other +a01fa063-00a0-4ad7-a0a1-c1f039766cb3 1 Other Other +a01fde72-086e-4b89-982c-ced421ed201b 1 Other Other +a01ffb05-2374-4b68-a1e4-223d373f4278 1 Other Other +a0200337-5fb2-4c3a-b6fc-6adf1d8aa89e 1 Other Other +a020e197-b286-4886-a3b2-ba95e49c94ad 1 Other Other +a021333b-3d4b-450d-a742-1ec10d422817 1 Other Other +a021382f-f831-4687-9325-7e83405db87f 1 Other Other +a0213f83-d3a7-4013-99cf-ba89f87e4679 1 Other Other +a021920f-98db-4872-9c2f-2c7459dec02c 1 Other Other +a021ab4a-368d-4492-a4ba-d6a203fa6fcd 1 Other Other +a021d470-01a3-4d42-9fef-7f7570958c2d 1 Other Other +a021f983-e228-466d-ac00-c039d9578ff3 1 James Other +a0220752-fd51-4d63-8514-a040e9d7d853 1 Other Other +a0220b04-f84f-4c33-be85-c940733d961f 1 Other Other +a0224972-91fe-4597-86c6-4d558f063cb4 1 Other Other +a0226f88-5f5e-4716-86b1-d6183571b9ff 1 Other Other +a0231665-908a-4974-8ddd-8b2488451289 1 Other Other +a023581a-aea3-416c-b1d5-5a6ec5056d3c 1 Other Other +a0235aa0-200d-4411-80f9-08bd77cca90c 1 Other Other +a0237c2c-8c52-42fb-9a79-c05ced9f004b 1 \N Other +a023ca8f-693d-433f-bb68-037e73a876ed 1 Other Other +a023e23b-92e3-4365-9e63-212e4af1d132 1 Other Other +a0240033-4178-4cb4-b3d3-9c3aed7ccc23 1 Other Other +a02421ac-8c54-4b31-99e6-09932de7fc27 1 Other Other +a0243042-c35b-4ae7-80fb-442fdad16332 1 Other Other +a0243fc0-8688-4486-9203-19108f71c523 1 Other Other +a0247069-8fa3-4bb3-8ae1-8558c0d4b9d6 1 Other Other +a024b2f6-2d65-4d62-afeb-aa5ee496c87e 1 Other Other +a024ba98-68bc-4bc0-82a7-1729d88888e1 1 Other Other +a0252529-3fc3-4194-a10c-c8de3c2077e9 1 Other Other +a0254d9b-2256-4653-bb93-aa50690f7407 1 Other Other +a02556e4-2514-4665-9334-b4eb71efe610 1 \N Other +a025582c-0759-4322-9a69-6edae818a9df 1 \N Other +a0259215-f53e-4ae7-8ee1-a5f4a9a1c4b2 1 Other Other +a02641b9-59ce-43e6-993a-9e323acbd499 1 Other Other +a026a229-4e0b-4316-a568-d7b930ba23da 1 Other Other +a0273896-7c36-492b-9010-a8118c2eb928 1 Other Other +a0274be9-7239-448e-9bf2-2947538fe101 1 Other Other +a02755f6-b5e5-4516-a3a4-9986f19e05cc 1 James Other +a0277838-c54f-4ece-b831-868931e5e9ae 1 Other Other +a027dabc-66bb-492c-b61d-2aa3502f0886 1 Other Other +a027f0a4-99e6-46d3-91ce-9d91e1a7ad5e 1 Other Other +a0280b37-ab24-4b39-a857-f1ccab9781f2 1 Other Other +a0283065-4451-4b97-90cd-477b3a216bd8 1 Other Other +a02830cf-5189-415f-b408-bc54bb2cd099 1 Other Other +a02843a6-1cfb-49c6-891b-81ecf8585979 1 Other Other +a02850a4-404a-4266-958a-0b7dc6c5e59a 1 Other Other +a0286afc-5795-4a81-a3c9-52a04b39158e 1 Other Other +a0286c47-6364-431e-b2a9-1f9159ac795d 1 Other Other +a0287b52-5de0-4f7e-9796-b61410eb36e5 1 Other Other +a02883ca-d2f3-42da-85ee-6f18c21e5f66 1 Other Other +a0288e7e-799d-41bc-912f-a740d62b7874 1 Other Other +a02917b1-c5d6-481e-93d0-19ca7db75228 1 Other Other +a0295ded-61c6-4447-866f-91ee0a13aed5 1 Other Other +a02993d5-088e-4466-9c08-f06e1a9dda5e 1 Other Other +a0299a72-6a54-4907-8b56-1dfef1472fb9 1 Other Other +a029e6c9-8a44-4d84-b00f-f0719606f232 1 Other Other +a02a0708-8c6f-4040-9dd7-917c13c6e91b 1 Other Other +a02a1f0a-efe8-4fac-916a-bf930dbd48da 1 Other Other +a02a9dd8-b9c5-4a1b-b610-c420c9f678f8 1 Other Other +a02a9f80-7e3d-4a29-9df4-cd9e9d15b95e 1 Other Other +a02abb29-0be9-426f-b5a2-5ebe1b808c2f 1 Other Other +a02aec24-f33a-4500-b5b5-b98b3f1584d1 1 Other Other +a02af120-8e7f-4fcd-adf3-881a2dd047e2 1 James Other +a02b2ffa-426d-4661-8401-6c8224fa8840 1 Other Other +a02b50eb-eef8-4c0e-a74c-8f7aba134e21 1 Other Other +a02b8156-1e54-4ca8-a49c-d15820373bdf 1 Other Other +a02be84a-dd36-4096-a1c9-9c07fbd74e44 1 Other Other +a02c0331-848d-4a13-8718-f345e46ae3c6 1 Other Other +a02c047b-9a69-4c94-87b9-16980dbdb52f 1 Other Other +a02c04fd-0160-4e2c-8322-83023bc62290 1 Other Other +a02c624d-67c9-4f2e-9533-2f9ecf5c23d4 1 Other Other +a02c6a10-768a-44cf-a370-6589e04440df 1 \N Other +a02cd1e2-846c-423a-beb2-0bc7a0262b1d 1 Other Other +a02d0031-3862-489f-8f0f-aa76d9c70de8 1 Other Other +a02d1544-d597-4b5a-8928-25c5aa1ce8ce 1 Other Other +a02d5898-ba4b-4e56-a6ea-c165bbbfa500 1 Other Other +a02d9aad-8ecc-4952-8567-b01590a24863 1 Other Other +a02df3fe-157d-4f9c-86f3-3816a90344be 1 Other Other +a02df862-c998-47ef-aa8a-1d55571f7beb 1 Other Other +a02e0dfd-a9a9-4310-9bea-8505fce5f056 1 Other Other +a02e3594-4af9-4ed0-a4e7-ab3e06df28fa 1 Other Other +a02e74dd-0012-4d61-a3a9-ea18d27682c4 1 Other Other +a02ed56f-e1c4-451d-b055-06cd165aa4d1 1 Other Other +a02ef6a5-a00f-48f7-b626-42fc83ae1f85 1 James Other +a02f06fd-4296-487b-8106-a778e1ba763f 1 James Other +a02f68a3-c6aa-4729-b54c-552a5bb0c358 1 Other Other +a02f7f15-9266-4621-bcf1-499ab3ba09ef 1 Other Other +a02fa15e-9a88-4ba2-9eb4-352c53bdc893 1 Other Other +a02fbdcb-8ce0-4984-ae8d-455c8a508653 1 Other Other +a02feaba-6b59-44a5-92a0-e48fbd415499 1 Other Other +a030488a-cd42-42d0-bb1a-d518b07dfa0b 1 Other Other +a03051ad-baf7-487d-ac90-0092cb34d931 1 Other Other +a0305d0e-d919-4aac-9ffa-6501116819d8 1 Other Other +a030cb30-a8d2-4cf6-9b4d-4a511e3971da 1 Other Other +a030cbe8-14e2-4849-b458-e401f5e2bde1 1 Other Other +a030d131-d749-43f5-8da2-d5c55d6acf70 1 Other Other +a030f279-638d-4c26-b90e-c5c5bc4c74fd 1 \N Other +a0310756-ffc7-405a-8df8-331c2fddfdf9 1 Other Other +a03158ef-9552-497f-abd8-e4220855b3d5 1 Other Other +a0315c57-7fc8-4115-815f-99737c580b2c 1 Other Other +a031abce-6a60-4541-8069-01c715e239d8 1 Other Other +a031b235-8f48-4038-a288-681c40a05c60 1 Other Other +a031d5ae-8db5-4935-9c37-869303dba962 1 Other Other +a031d82e-6e77-4dc8-a531-d08dee4a0e14 1 Other Other +a031e7d7-a6cf-4eef-b446-e103cb8a9b9e 1 Other Other +a031ed00-2366-4abe-8b5d-b74acfb20ba0 1 Other Other +a032148b-e933-4385-ad54-e6ae3ec2bf35 1 Other Other +a032246e-fb3f-4297-9436-23ad783032b0 1 Other Other +a0325264-8731-465b-be8c-abad1d9d7c2f 1 Other Other +a0326d47-9eff-4c1b-94d5-8232a2d6d55a 1 Other Other +a032767c-4abe-47c9-9bd0-69176e20f4b8 1 Other Other +a032d154-1cfa-4d6f-b58b-b34aca087b8a 1 Other Other +a032e8b4-6ce8-4265-957e-0823c580618f 1 Other Other +a032f3b1-e86a-4a0b-ae15-69c09f6619c2 1 \N Other +a03402fc-1335-4aa4-be17-ba74830e90b1 1 Other Other +a03407aa-1ae8-4ef5-8d90-e7084cbe4ca5 1 Other Other +a0340a83-584e-4010-a107-8129fb820be7 1 \N Other +a03436dc-7f57-4ed4-9cb3-40ecc136e9c0 1 Other Other +a0344985-2438-4a09-a008-37ace8c8b17a 1 Other Other +a0347692-a8ed-40f7-88d1-58ebcbf38d16 1 Other Other +a034790d-7679-47d3-8bec-6dd632c58d4e 1 Other Other +a034c099-2909-44f3-b3a7-b44637144280 1 Other Other +a034e4c8-f577-413c-8310-5b0ce50727a7 1 Other Other +a034eb49-8ee9-4ac3-ac6a-053d7da0bdb0 1 Other Other +a034f3bb-7f87-4e56-8820-e0115582fe88 1 Other Other +a03555e5-9e5d-492c-81a3-215c091c3e09 1 Other Other +a0356e6a-74fa-442e-bb7e-f317b8be6654 1 Other Other +a0363b94-81c9-4787-a7cd-05f869b0d540 1 Other Other +a036d0ed-591a-4793-b127-2b1416f70b1b 1 Other Other +a036f546-b855-4ac5-8c47-5d15dfcc8d79 1 Other Other +a03705e2-5559-4569-acfe-7abd9499ea5b 1 Other Other +a0370606-8202-4bee-aa31-c89d8859fcd8 1 Other Other +a03742fe-1e60-40f9-9926-556e98c28593 1 Other Other +a037d063-f4d6-4137-bedc-27eac96242a8 1 Other Other +a037fe5d-54e9-4ce2-a318-a3c8bcc29e02 1 James Other +a0386691-de7b-44e5-a476-c717a0db95dd 1 Other Other +a038793b-cc7e-4d9a-95c6-97113d601b98 1 Other Other +a03885b2-992c-407c-8a6e-69453dafd69c 1 Other Other +a038bf01-5dfb-46df-b61b-2d10aa2857fe 1 Other Other +a038e2af-29a6-49b9-8c7d-a0425decfce3 1 Other Other +a039235f-968a-4833-a6eb-11f1afdf58a8 1 Other Other +a0398cb4-3f50-40ca-9116-a75c9f42d133 1 Other Other +a0398e7e-cd83-401c-8300-19ac8e92fb07 1 Other Other +a039e157-2add-4b74-956f-654e61fd1181 1 Other Other +a03a0e90-480b-456a-9ab6-19ceb04f8816 1 Other Other +a03a2929-01a0-45ab-b9c7-f8e602ddd3ac 1 Other Other +a03ab58c-1bb1-428a-833d-1d2a04028192 1 Other Other +a03ade9b-dd30-4506-975d-9ad19de895d3 1 Other Other +a03b1a47-aaa0-45b0-b2b6-d7948fd8ae93 1 Other Other +a03b9f72-5714-4961-83e3-42e9817752cd 1 Other Other +a03ba9c8-8980-11e7-b903-fa163e8624cc 1 Other Other +a03bcacf-64af-4ebc-bec2-05dd05c85fa2 1 Other Other +a03c3f77-160c-418c-983b-811d7d8cf454 1 Other Other +a03c6e66-6e14-4b78-9d30-940dd7aaac06 1 Other Other +a03c826d-c1bd-46aa-8872-b141d3e62277 1 Other Other +a03cbe31-bdea-4e11-a6ae-eea9c474445f 1 Other Other +a03ce495-2b76-4eac-84e3-aa00e9077434 1 Other Other +a03ceecc-c3f3-4631-a1c9-f99f0e29a785 1 Other Other +a03d2966-37b5-4f79-8eaf-8208eb7c15c9 1 Other Other +a03d84db-d9c1-4835-8c55-05eaacf2f437 1 Other Other +a03d9221-ec7b-47ad-bd50-20a4089e8117 1 Other Other +a03da93d-5b0e-4da8-96e0-829091645209 1 Other Other +a03db339-b1e9-4767-be4b-0f7b6e572be9 1 Other Other +a03e188e-1765-4cf4-818b-ce31ca65d206 1 Other Other +a03e6f3b-756c-4165-b3f9-d407439a6a53 1 Other Other +a03e8091-5961-4e88-9605-6beb7d296eab 1 Other Other +a03ef3d7-b8ac-4597-b66f-dae5d309cbe0 1 Other Other +a03efd37-7e2e-4c57-9521-9ac499c6964a 1 Other Other +a03f2950-7e9a-416b-87dd-a4a8757ae66e 1 Other Other +a03f303b-c737-48ec-a4fc-a42613288c19 1 Other Other +a03f4066-c0e3-46d3-b946-dba4855d9258 1 Other Other +a03f45ed-6beb-4dd3-b363-770e883286f4 1 Other Other +a03fd36b-7518-4c49-b61c-4e62768a51f5 1 Other Other +a03fe58a-b77d-43c8-9446-53769cfa9214 1 Other Other +a03ff67f-3680-4ba4-a532-c9ca84525d6e 1 Other Other +a04042ed-a6df-4210-a31f-a2d2e1b8b89d 1 Other Other +a04073db-b2f1-4b3f-971e-07856320213a 1 \N Other +a0407780-6c06-4c69-b463-50e5761266a2 1 Other Other +a0409f24-93a7-11e7-9ae1-fa163e8624cc 1 Other Other +a040dde6-efbc-477f-8895-d5e1e930f737 1 Other Other +a040e385-80e0-4540-9304-ab7b3308b52d 1 Other Other +a0410083-59de-4d9b-9b95-094e79317c0c 1 Other Other +a0411727-0219-4746-a850-f23ba506ae1d 1 Other Other +a0412c71-47e1-4b19-a2cc-fb1c5d7c15da 1 Other Other +a0415c92-3b81-46fa-9387-3e909beb3312 1 Other Other +a041853b-3220-4102-acc0-4c12d6548a44 1 Other Other +a0419e1e-a663-47cd-9f28-0149d0eb5da3 1 Other Other +a041b4cb-b9dc-4ae2-9bd6-f3d4e79a7d1a 1 Other Other +a041e38a-f09f-4ed5-baca-4c7a32b48a63 1 Other Other +a0422c63-9f27-4f57-9eb3-81ef7d5e9239 1 Other Other +a042efca-c5c3-41c4-82f3-a7a62a5a5b4c 1 Other Other +a043357c-ec57-4532-8732-b1e4fc510105 1 Other Other +a04347f2-02ec-4909-976f-d19d630f7262 1 Other Other +a04354e3-557e-4c4f-88b0-c1f989df2db7 1 Other Other +a0435711-6e2c-42cf-ad0c-e5108979dbe6 1 Other Other +a0435886-8ec2-41a7-96b6-c6f9c91bb32c 1 Other Other +a0437739-20d1-4557-a272-c51203092c72 1 Other Other +a04380ab-ce14-4384-b580-16593489c706 1 Other Other +a0438c00-4dc5-4276-81bc-1aa1f707d75f 1 Other Other +a043ae59-6e0e-4a9d-83f5-b19f7e74c6d1 1 Other Other +a043bc97-dff4-4d16-8c4e-80e8522f086a 1 Other Other +a043c6d4-2038-4feb-ae49-460f6f7728d2 1 Other Other +a044246f-4c12-47d3-8669-6bd4ca8c7de2 1 Other Other +a044c813-5ac8-4c22-97cc-a2dad1710644 1 Other Other +a045e924-a2f9-4cbc-b728-0ae447b8e008 1 Other Other +a046026e-c81a-44ff-b24f-0181895fa7d0 1 Other Other +a046698e-5a13-4af2-bcc1-1403f34c0490 1 Other Other +a04671cf-fefb-4412-920e-43473932a64a 1 Other Other +a046d392-9dec-47c9-97f6-c7e6da1341ce 1 Other Other +a04764c8-3964-4fc3-be68-16438a850562 1 Other Other +a0478714-3660-4c60-8dd1-22a6835729f0 1 Other Other +a047ab7c-3613-4daf-b733-2d31798ec37f 1 Other Other +a0480255-2506-4f46-a9f2-2a6e6eb4a8ed 1 Other Other +a0483f9a-69af-47d8-a5f5-76dfb3090a31 1 Other Other +a04878ca-3900-4e2b-b10a-187e1b6fd106 1 Other Other +a0489e19-209a-4e7e-9dad-804e811f9719 1 Other Other +a048ee4a-a6e1-4998-ab9a-1ac202892609 1 Other Other +a04915af-a3ab-4e98-96fa-75971341918b 1 Other Other +a0491626-77fd-443a-a89d-8bd1b6a26623 1 Other Other +a04933f6-103e-4114-a212-b96f3ac1e36b 1 Other Other +a0493ad4-aa4b-44a1-80cd-87ffc58b1c7e 1 Other Other +a049438a-f3fe-45fd-b663-a3ea1643f182 1 Other Other +a0494810-005a-4321-ba09-b53ad29b79ed 1 Other Other +a0497074-d3cf-4b45-8fef-bb78b798f22c 1 Other Other +a049e303-5f90-4ddc-9aae-b6409e6a0de7 1 Other Other +a049ff83-ce35-4053-8a38-922c5ded89b1 1 Other Other +a04a0273-ca75-440a-b55b-ec9aa5c76460 1 Other Other +a04a0547-29d7-405d-8602-23e02a38c4eb 1 Other Other +a04a1fc2-4066-499c-8b4e-07727a758802 1 Other Other +a04a24c0-dacd-4555-8b1b-cbfeb727747d 1 Other Other +a04a3f03-0c20-430f-b33a-abdbab728e34 1 Other Other +a04a43f6-840e-4bfc-a25b-e186114d7cb8 1 Other Other +a04a61b3-f039-48fe-93d4-8f9583366063 1 Other Other +a04a62a0-82a6-4efc-9df0-f271cd7046b2 1 Other Other +a04aa2bf-f49c-4d89-86c1-c01c2cc38e2c 1 Other Other +a04ab935-3f3d-4a94-b106-f77d712ab6f4 1 Other Other +a04aba87-21d1-4aa3-8d7c-a296367cacb4 1 Other Other +a04b0000-73eb-45a5-9f49-a573618b9999 1 \N Other +a04b44f8-d8a6-443b-9f20-c9e909a58341 1 Other Other +a04ba2b5-bd38-4cfb-a528-db1884bee8d6 1 Other Other +a04c0e51-a283-49db-9ca5-e66474181110 1 Other Other +a04c28b1-654d-47dc-8f76-8d995eebdc62 1 Other Other +a04c6f8e-fddf-4c82-b465-ad86d6bf9d06 1 Other Other +a04c7e5c-8ff1-40f4-8c1b-792b95c1d178 1 \N Other +a04cc572-5254-48a6-9c0a-3b553de914b2 1 Other Other +a04cd8b1-ef97-43a4-b742-da66e6f123d6 1 Other Other +a04cfdc7-8705-4d5f-a5e6-6ea76f05050f 1 Other Other +a04d51b3-e322-40f8-8dec-191cef88960f 1 Other Other +a04e2eb0-feaa-45df-811d-1db0f208006a 1 James Other +a04e494a-18a1-441f-93ba-8fb9a9bde4f2 1 James Other +a04e63dd-ff88-446c-a06a-a96f9f82ae4a 1 Other Other +a04e67ca-135d-4a0d-9fc7-4f5cae6ce4a0 1 Other Other +a04e685c-9dde-4565-ba73-ccc65c74c87d 1 Other Other +a04e9774-a938-4208-89d1-f8d9a5072f26 1 Other Other +a04ebeed-ce2e-472f-abd5-4c1c88b9db9f 1 Other Other +a04ef24f-a6a0-4704-b4a6-f02b02593b63 1 Other Other +a04ef773-82b9-4a1b-bd3c-3c1c630368a6 1 Other Other +a04ef9c2-8394-41c8-8304-69845ddf77e4 1 Other Other +a04f2c01-1fea-4e72-a821-a5e2f99bce95 1 Other Other +a04f5b76-9a3e-4b08-a441-198512624cb2 1 Other Other +a04fe342-dda5-4adb-b329-a50989141bd8 1 Other Other +a05080d4-21a8-4963-a7b9-96c98d557843 1 Other Other +a05094c0-18a8-4558-90c3-b9dee5880038 1 Other Other +a0509939-8868-43d9-8f2f-aa84eff4d821 1 Other Other +a05099a2-a2c0-4bfc-9bd5-f4fe26d22ba7 1 Other Other +a050af63-10fd-49d1-bf25-7ec5cd5393de 1 Other Other +a051032b-187d-4443-97a0-634665595e7d 1 Other Other +a051267b-d95e-473a-be6c-354b5f5ef683 1 Other Other +a051448c-f201-4fea-b040-0f0d64d4ced5 1 Other Other +a0515c74-e021-4ece-b79b-1288e9fee20a 1 Other Other +a05170cf-44cf-4f5d-87db-706ae61fc854 1 Other Other +a0519b07-ba60-413f-a4fc-e086f195d634 1 Other Other +a0519c31-46d0-4d27-b944-8bacd23a5e9a 1 Other Other +a0527127-84f1-412c-a104-c42593774834 1 Other Other +a0527960-9f47-4573-a1c1-e5a01ef81357 1 Other Other +a0528464-b92c-42d5-9798-c6d9b5d78d2e 1 Other Other +a052a40d-2a4e-4fee-9c95-17bd67322151 1 Other Other +a052a7c2-1fa1-4076-8efa-a63d10e7dd57 1 Other Other +a052d6e6-5509-46d5-b455-b3a9e04891f7 1 Other Other +a05309d4-a21b-4d7c-8cfe-a4efc2a673fd 1 Other Other +a0531539-15f5-4961-9162-a970c210a54e 1 James Other +a05326cd-43c4-43a7-a7bc-12a8921b307a 1 Other Other +a0534abd-f4b9-4e76-b818-ec5c6f818ae6 1 \N Other +a0535153-2db7-4a14-942c-ad9e7a4d7c37 1 Other Other +a0535fd1-2a9b-4cc6-9e41-86d2feb7fc95 1 Other Other +a053c981-7a21-41c3-9b8e-4da7ee489349 1 Other Other +a053d4ab-dbac-4639-b147-2a6f7ca83fea 1 Other Other +a05427dc-9dc2-4eeb-b5af-f5a11fd2e9f7 1 Other Other +a0546d5b-9ece-4e22-8f5a-b4f912560780 1 Other Other +a055060f-510c-445e-914f-35ef1daa3062 1 Other Other +a05575ec-5c36-4332-8a1d-4cdb1bb1503e 1 Other Other +a055af4a-647b-4e39-88b6-57d9dbef94ad 1 Other Other +a055c907-38a8-4d09-8d36-a5beaedb6a33 1 Other Other +a055f2c1-f68c-49bd-a632-fef88c1e9b86 1 Other Other +a0560182-4372-44cb-a269-411900064e0d 1 \N Other +a056bea6-de24-45ef-9986-d1d2982ba561 1 Other Other +a05775f4-ccb3-4324-9452-644a940c1e16 1 Other Other +a057b99e-1821-4a96-9364-105bbe11e4cc 1 Other Other +a057bf55-f6cd-4cec-b917-af3253f44465 1 Other Other +a058ee70-b977-4789-b642-68713c39c8d0 1 Other Other +a058f62b-0e8e-4ee6-8a44-43edd8dab41a 1 Other Other +a059444f-f8ab-4d29-a00a-7edacf004ad4 1 Other Other +a059625b-eae0-4ecc-ada2-36de8aa6d1a5 1 Other Other +a059653c-2f20-4d32-8db4-f08d2e3d53c8 1 Other Other +a05972b6-7148-4242-80d1-468cce66aafc 1 Other Other +a0597921-714a-4255-b7e8-c3bf8468d4f4 1 \N Other +a0597ade-63ba-486d-a68d-754b33a1a19d 1 Other Other +a059b80e-c4d3-4f73-9a40-be490a24da4c 1 Other Other +a05a1c62-4133-433d-bbf8-752da84e1135 1 Other Other +a05a1ead-0d06-49e8-abee-26d778aa0d7d 1 Other Other +a05a526f-6cba-460f-8930-d9c07b0dd9f0 1 Other Other +a05a6d59-a360-4941-a722-0b98924ebc7d 1 Other Other +a05a8c62-db90-43d4-ba35-19f1fea33d92 1 Other Other +a05b3e1e-e42f-4da5-babb-b2cdd6843d08 1 Other Other +a05b78f9-a4c6-4922-9363-16436ae218ba 1 Other Other +a05bccc8-1000-431c-8ead-68e507e2cdc6 1 James Other +a05bd64e-44f9-488d-a840-43beff3cf753 1 Other Other +a05bd6c7-df68-4565-ac5a-c0ba1ae4490d 1 \N Other +a05c004b-0eb0-47b2-adf1-8ccd72ff7578 1 Other Other +a05c20ea-3b17-47af-969f-5e4de9884c2b 1 Other Other +a05c4068-5575-4a49-934d-026df7785bee 1 Other Other +a05c442c-3bb4-48af-a305-91e29fdb1b1b 1 Other Other +a05c7915-12e3-44e6-8e4d-5b075c549418 1 Other Other +a05c8307-7b59-40ed-a15f-884aa18c330a 1 Other Other +a05c8ee2-68ad-422d-965d-7277f3e3524e 1 Other Other +a05cec9e-2ac2-4c4d-8f67-88c0ef6e9844 1 Other Other +a05d18e8-65fc-499d-879e-7f36d765caed 1 Other Other +a05d3d8b-725d-4fc3-b7de-5a687605072f 1 Other Other +a05db7ab-cfa7-4329-bff4-e09d39df5e7d 1 Other Other +a05dc616-320c-43db-8bbc-7fcc9af6cb05 1 Other Other +a05df77f-cbf9-4d40-8e9b-23b7f35719ef 1 Other Other +a05e046b-3a21-4c4e-a0b5-c18ffeb43bc8 1 Other Other +a05e5f4c-8391-4c31-b66a-f4d0fdc6cc59 1 Other Other +a05eabe2-fb93-402f-9cc5-732f657150c9 1 Other Other +a05f0a80-7df1-4b78-98a5-d18eb504aff7 1 Other Other +a05f145e-7f0f-4b35-bad4-8dfcdc4a353a 1 Other Other +a05f222d-5ac3-47ac-a69a-19a95a835839 1 Other Other +a05f2d3f-54d3-4cb0-91d8-ed7f9450d0f0 1 Other Other +a05f3866-4aeb-497a-af69-f36c78b0b917 1 Other Other +a05f61ad-fe1f-413e-a29b-dee2111812b8 1 Other Other +a05fefd0-367c-4a93-964b-0cfc90eab2f9 1 Other Other +a0600cd9-d540-48c3-ac36-e6d3c2852313 1 Other Other +a060198c-9dca-4190-a322-4ada8833226f 1 Other Other +a060372e-1ad8-42fc-ac4f-aa38371a6c82 1 Other Other +a060c80d-d6ae-4e29-9d40-136712a091f8 1 Other Other +a060d698-87b8-4f06-af88-ad4257ea7cf6 1 \N Other +a06155f5-3f73-49a3-afc5-a2a5a9142d5f 1 James Other +a06199ae-b0be-4d32-8826-69338dd87ea3 1 Other Other +a061ef80-657b-49eb-8a35-065a6943468e 1 Other Other +a0624862-5d71-419d-b22d-94c03893e188 1 Other Other +a0624de0-d432-4c92-870f-d21deac78a5b 1 Other Other +a0627824-4006-45fd-8d12-3cdcd5a47582 1 Other Other +a062a28b-5026-4214-b518-d587cc510e49 1 Other Other +a062b0a2-d39a-4b9e-9997-6a0cdc135ada 1 Other Other +a062bb41-b0c6-407e-8348-5e6f25f6722a 1 Other Other +a0631170-2381-4723-b8f3-f5eace4fad7e 1 Other Other +a06337d2-bf34-4655-84f8-7490c342a9b4 1 Other Other +a063654e-962f-42e0-8f1d-b2ac23b70c5b 1 Other Other +a063911e-6f81-42e6-9877-e822f71cdf2a 1 James Other +a063960a-7b5e-4974-ae31-193371f0de53 1 Other Other +a063d021-8e97-4ce7-9503-2b85c4184f45 1 Other Other +a0644c2f-1f2a-47c0-983c-b56f38206054 1 Other Other +a0647dda-6407-4eaa-92e0-9140b59d87be 1 Other Other +a06482fe-9619-4dd6-ac64-5faadead20ec 1 Other Other +a064a836-9cb9-40ee-bbc6-55bbb6729e6a 1 Other Other +a064b621-4498-4bab-998b-066b18cfb20f 1 Other Other +a0651e71-9d35-4acd-9963-ff725c31fe02 1 Other Other +a06526c9-3388-41f7-940a-0d7fc723d3cd 1 Other Other +a0655753-32bd-4604-a7b8-b63282b6cdda 1 Other Other +a0656f0c-4595-4f9f-bc21-57bd6e6ea4a2 1 Other Other +a065869f-670c-40ea-9168-4261f3207e44 1 Other Other +a065aece-23d6-43f0-8f5d-55b44876300c 1 Other Other +a065bca1-e1b9-4aac-b7c7-7e8b133e8609 1 Other Other +a066040c-8779-4b0c-ae81-3ddde9ec2481 1 Other Other +a0662295-0183-459d-9914-cb07fd7d9e65 1 Other Other +a066673c-3cc0-409b-99d2-2c03fe2fd702 1 Other Other +a06688b3-216b-4a16-bb3a-11c4d1e1ca06 1 Other Other +a066b00a-11d8-4b32-b9ef-5d21a041fa8a 1 Other Other +a066c06f-848a-4ac1-b5cf-04b262d033d6 1 Other Other +a066c38e-488f-4f51-a550-7af2dae64b45 1 Other Other +a067180d-d2cc-4670-b695-1b0eb2507e5d 1 Other Other +a0672037-cf4f-405b-9d4e-7d2581e09fa5 1 Other Other +a0675084-0af7-4fc3-bd5b-b002204adc83 1 Other Other +a067688f-8efb-4acd-b539-4d253a2f42c8 1 Other Other +a0678c65-2f82-4836-9d76-2c3d43a22834 1 Other Other +a0679a2f-3e3a-4314-ba46-a8d8aad7c3e0 1 Other Other +a067f511-5929-4fbe-9e85-11a7c2baab97 1 Other Other +a068276f-089f-4dac-84e4-b4ed171edad1 1 Other Other +a068298d-8865-4988-93a2-543ad08247d9 1 Other Other +a06847fe-145e-4f5d-93a4-8ca57bdabc9d 1 Other Other +a068548c-903c-49cc-8494-eb9831893625 1 Other Other +a06859f8-0976-4063-8ff4-79abec4b5355 1 Other Other +a0685fd0-0991-4c0d-9edd-c2756acf8075 1 Other Other +a068629e-42a4-4d80-addd-bae43d9f0ab6 1 \N Other +a06885d9-76c3-4675-bdc4-fbdcf861df87 1 Other Other +a0688a60-42ad-4e5f-a138-f11d0838bff6 1 Other Other +a0688d7d-c6f8-4768-aee5-7bce3fbd9809 1 Other Other +a069268b-9751-41d0-9cd6-1a85a6dead48 1 Other Other +a069564f-e338-4433-ac4a-62d48f43ccb9 1 Other Other +a069dd6f-6964-407b-a364-b56e6faeb916 1 Other Other +a069f16f-7f65-4553-b027-a5c78f7da2f4 1 Other Other +a069f695-1b34-4c4c-aefb-f2e58372b401 1 Other Other +a06a3ca7-2222-423a-9376-c1b1846991c8 1 Other Other +a06a49f6-9063-4256-9716-d032e8ba8dc2 1 Other Other +a06a6408-3523-418d-9e58-1c107d3b0c43 1 James Other +a06a6dc7-716f-488d-a412-9528ab57d20c 1 Other Other +a06a739d-3656-4339-a024-997d5f2b5fd8 1 Other Other +a06a9e0f-dbb2-4447-bd4d-f030265b3d9a 1 \N Other +a06acaf6-3e58-4429-8019-e7c95fd04786 1 Other Other +a06afcf3-09d8-477c-a857-7e31bcc50d84 1 Other Other +a06b0865-3539-42c2-978b-6ee5d0269085 1 Other Other +a06b10c2-1b65-443a-80a1-3d521bbd6d05 1 Other Other +a06b1306-5fbb-4420-a2a7-600997b32158 1 Other Other +a06b2742-e696-43bc-a4ec-4d8cf2d4098c 1 Other Other +a06ba22e-435e-41af-ae35-2cb5b9e9f9c6 1 \N Other +a06bb2c5-4025-4cc9-844b-045f1d68fc3c 1 Other Other +a06bde61-d584-4dd5-a0c2-8dbe608503f6 1 Other Other +a06be3e0-2864-4182-b7d9-e5e63499f2d2 1 Other Other +a06c346b-206a-42a5-8401-ec82223da79e 1 Other Other +a06c4d4f-770b-4f44-8326-444c4f0ce859 1 Other Other +a06c6e12-761a-4557-8868-84e359470ab3 1 Other Other +a06c708d-e1f7-4b5a-a467-21249e4d5c50 1 Other Other +a06c7ccc-fb40-4646-95f9-855ee0b05323 1 Other Other +a06c8520-247c-4a06-bd64-d249efaa2c4b 1 Other Other +a06d83a6-2560-4464-8346-2e4182e49cab 1 Other Other +a06d976e-02d9-4505-92bd-9227858aa07a 1 Other Other +a06dbe52-4197-4459-a5e4-46c10a5e24d9 1 Other Other +a06dccd2-bf4a-4d0e-81fb-849473574afd 1 Other Other +a06e0f0a-1464-464a-812f-67fc2b02e6ce 1 Other Other +a06e2843-a0d1-40f6-bad5-f55094ef3d61 1 Other Other +a06e84f0-28d2-4833-9571-0d21e1aba3a1 1 Other Other +a06e9ed2-2ee3-49f3-851b-faafdd1dec38 1 Other Other +a06eaeb6-9d6e-4c9c-b1e0-608a228a3317 1 Other Other +a06eb294-af86-4025-87a0-e9f95b7dafd5 1 \N Other +a06f18e8-c3d6-44e0-bbbf-e2c2b757c081 1 Other Other +a06f19ae-c7a2-442e-9e29-a94a5606f9cd 1 Other Other +a06f542d-79e1-483d-a26b-0ed00e3ddf24 1 Other Other +a06f58b2-c01f-44fd-b243-450d044850a8 1 Other Other +a06f5e47-c7f9-4220-aba0-b0d935b551d7 1 Other Other +a06fb4bc-f361-4dad-9b78-7cfbc3fc736a 1 Other Other +a0704941-182b-4f49-9a60-0ba7d32deeda 1 Other Other +a0704af7-4efe-45d5-b496-6517cfaf66d7 1 James Other +a070d6b4-db14-47de-8d6f-5c9339358234 1 Other Other +a0713d7d-094a-418b-a84a-d6aaa94c6075 1 Other Other +a0714943-044f-4ef1-84bd-53dafcfd8591 1 \N Other +a0714e65-84a9-43e1-9873-44f23f115aa0 1 Other Other +a0715a5a-ac56-4f1a-a5e4-81e2fddb3a04 1 Other Other +a0717f71-fbb4-4a36-bd01-021355fc0191 1 Other Other +a0718d36-eaff-4ba2-990c-6305ab1f4316 1 Other Other +a071a81d-cee2-4da5-b1ef-44c0d5221ca3 1 Other Other +a071ad0f-3f1a-4dbc-aadc-d0cff9e4f7c5 1 Other Other +a071eada-cb74-4b08-96b4-1f0b3832bb7a 1 Other Other +a0721f28-a61b-4f29-adc3-a6e97be9df97 1 Other Other +a0722384-64b5-49f7-9c40-fd5f45c5fc04 1 Other Other +a072665c-0ddb-467d-bedb-8222792a4a97 1 Other Other +a072b72b-5e43-447b-a96d-54f80368a54b 1 Other Other +a072bda8-efe2-4300-979c-00492b6ca1a6 1 Other Other +a072e25d-b6f6-4a39-b7a7-0f7324f0bc91 1 Other Other +a0731195-cd19-4edb-8f04-c4875619b3f7 1 James Other +a073144a-924d-41c1-be1b-d1845d456c91 1 Other Other +a07454e4-4bbc-4e3b-aa64-0e7a0fc52cb8 1 Other Other +a07456aa-4a29-442f-ab33-560ce5d0e9dd 1 Other Other +a07466df-e1dd-4d75-8393-789de43ae071 1 Other Other +a07471d9-4eef-4edc-9276-5d0436e47fd8 1 Other Other +a074ad5c-34b7-4ebb-897c-a94c60d3c410 1 Other Other +a074ea43-9d9b-442b-9a57-7ac0bf0cd0ba 1 Other Other +a0759c40-ad26-4f54-bd8c-3f75eb35b94a 1 Other Other +a075c787-5b30-41ef-aff5-15adc738f520 1 Other Other +a075dc62-bbbb-43fa-b183-18acc180cc40 1 James Other +a075f1be-5b76-4e14-b197-49f09f5e0604 1 Other Other +a0760638-8574-4034-a489-1a44f227fb63 1 Other Other +a07686e0-b0e4-454f-ab1c-ea00c8f507bd 1 Other Other +a076897f-48f6-4148-a82d-30e14a3d54f0 1 Other Other +a076c01e-d812-4371-b760-1ff6c08ffd12 1 Other Other +a0774ebd-c174-487c-aab2-fa48139e9777 1 Other Other +a0776d0a-9a77-4779-82e9-84070bd414f0 1 Other Other +a0777d5c-b617-4434-aa49-74e891057168 1 Other Other +a07794ce-54e7-4f32-b8ef-b532f613f653 1 Other Other +a077aff8-1b04-4ff2-985e-65a57f7f5dfe 1 Other Other +a077c4b4-124d-4a90-92d7-23af4768dee0 1 \N Other +a0780a6f-af2a-465a-9402-d8e83d8fb99e 1 Other Other +a0780cd5-120d-48ae-810d-77aa83f31f32 1 Other Other +a0781a74-efe9-4ed2-91cf-9776f023d46f 1 Other Other +a0781f97-cce0-4032-aa9f-90ebe3e8277d 1 Other Other +a0788b82-181a-4134-8fd0-012aeaf05c94 1 Other Other +a078da41-2f0b-4e4c-b4e1-89a9f0206c22 1 Other Other +a078fefe-d7d6-46e8-a220-c2b3217d5367 1 Other Other +a0790233-0656-416e-9073-510f86821504 1 Other Other +a0793482-f331-49bc-9cd2-cdb31c8f3ed1 1 Other Other +a07977cb-a408-409a-9eff-9de0e4317c22 1 Other Other +a0797a1c-b33a-11e7-b658-fa163e8624cc 1 Other Other +a079ab21-f797-478c-a050-8374b5eaf059 1 Other Other +a079fef5-a008-45aa-ad8a-90c0d10eef2b 1 Other Other +a07a00f2-287f-4616-9833-9d99ffa80a1c 1 Other Other +a07a03c8-c911-43c8-adb5-aac13f59aa9c 1 Other Other +a07a197d-de09-4fca-97a9-a919dc94a200 1 Other Other +a07a3368-baca-4708-905e-d0344eee383e 1 Other Other +a07a5e6c-2847-40b0-8a81-35b2e82f0e41 1 Other Other +a07a6577-9015-4a8f-af5e-97f248c906b5 1 Other Other +a07a7a07-3ac1-423b-aa2d-27452527d7fa 1 Other Other +a07a831c-1a72-4fee-9c3a-54f5edb6be82 1 Other Other +a07a93f8-f7a1-4027-8e07-2d78560bc89c 1 Other Other +a07a98c0-677d-4dbe-8d83-4066338da2ad 1 Other Other +a07b1fd1-6ccc-498b-b2ec-6300825fd4cd 1 Other Other +a07b2adf-8f84-4961-9c26-3c1587b49058 1 Other Other +a07bcdef-9e49-40bb-8b42-c29c67dc8724 1 Other Other +a07c40b7-8ac4-4cd7-973c-ecbc736688a9 1 Other Other +a07c7647-60a5-4d35-a235-e53f3e8ae1f6 1 Other Other +a07c7e84-2175-4cfc-b73e-050d9942baaf 1 \N Other +a07cb5e4-cfee-4a44-b399-4abf69fcb058 1 Other Other +a07d3490-55fe-49eb-bcf2-1de6d3bbaf33 1 Other Other +a07d4b5b-0f94-45ee-a200-21003d7ea982 1 Other Other +a07d4f0f-daee-4f59-bc32-de69597c2827 1 Other Other +a07d5456-739d-464a-8323-6cbe065d4d3e 1 Other Other +a07d5994-bd24-432f-b286-b1686da4364c 1 Other Other +a07da145-bd32-41cf-9f73-2c386c1bb62c 1 Other Other +a07da6a2-5e12-44ae-9f24-c935ec8ae211 1 Other Other +a07dabff-0f63-4a29-8a5a-d1f34811dfd1 1 Other Other +a07dc590-6449-41fe-8b77-8757a3c10b20 1 Other Other +a07df07c-552c-4f65-bd4e-ba292a1ce312 1 Other Other +a07df132-b6ce-4a08-b87b-7a9497a34433 1 Other Other +a07e0fed-d273-45dd-ab7a-3444e4eadc6c 1 Other Other +a07e16da-0cbc-464b-b96c-379eba6e6b38 1 Other Other +a07e91fb-cf20-47a0-8b5d-be39bc156196 1 Other Other +a07edb50-2418-485f-ab35-6745d3d358b7 1 Other Other +a07f0ab2-1d1c-4a3a-bcad-6ba5a9f08284 1 Other Other +a07f316b-7d6a-4ea9-bc64-c66844973cd1 1 Other Other +a07f3889-08e4-48e5-9708-19dd5a278032 1 Other Other +a07f6dd1-5302-447b-b68e-a3ed7ae15eb0 1 Other Other +a07f99ee-7c04-41e0-adc4-ae3e622a5fee 1 Other Other +a0801e96-931d-4957-b6db-98b6b911391d 1 Other Other +a08024b9-2a05-4644-aab2-9dad92e68e7a 1 Other Other +a080274f-3856-4520-90cc-50cd77f3c592 1 Other Other +a0803cdd-be22-4eb7-bdfe-9de2780df72c 1 Other Other +a080b1de-119b-453a-ae33-a6747149b8d5 1 Other Other +a080df19-4383-423e-8928-22e343eb7023 1 Other Other +a0812ae2-0c24-4d94-96d9-e8b0285cc2cb 1 Other Other +a081418e-efb0-40be-9b10-84f6aed56150 1 Other Other +a081cb70-885c-467e-88a5-3c5870292131 1 Other Other +a0821673-f60f-46fa-9802-57c4beddc42e 1 Other Other +a082428c-35b1-4ef8-aaa7-fa8174902918 1 \N Other +a082fa75-6d64-4707-b283-72105c383e12 1 Other Other +a0832db7-26c1-4b04-a809-f13c3ec5ad56 1 Other Other +a08359a7-753c-4087-bbed-987123663d07 1 Other Other +a083ac19-39e4-48ff-97b0-ceb74dfc234f 1 Other Other +a083ee5d-1714-4f88-a8a4-c7ff9bf5f29a 1 Other Other +a0842c4b-f8c6-4865-8eb3-b93798592fea 1 Other Other +a0844d36-1d21-411e-a464-90247c8f42d0 1 Other Other +a0856cb7-1c6e-4b78-a6e2-c5861d63c02a 1 Other Other +a0856e6b-4f48-45ee-b255-69b399e13a8f 1 \N Other +a085742d-6f1d-4d3c-b316-1ef4251c0149 1 Other Other +a085cebc-8dd8-44be-8577-a6f1fe357a63 1 Other Other +a086473c-86f5-467d-808c-968c8b5f772e 1 Other Other +a08666bd-c532-487a-bf53-f97366306c06 1 Other Other +a086a3b8-6e14-4812-a650-d4fc326ffca1 1 Other Other +a086df3f-8295-4969-9138-260c3a714a37 1 Other Other +a086e4a1-e193-4df0-a8f7-abd0ed9899b6 1 \N Other +a08711a7-01e6-42ab-ba8a-14a82ee003f8 1 Other Other +a0871e50-dcea-4af6-a49a-68a90622a281 1 Other Other +a0873fae-9072-4d3e-b06e-d7816a64b8e6 1 Other Other +a087cbd0-6a97-4698-9f15-3608ba899820 1 Other Other +a0880c4c-cd31-4ccc-84dc-c7015991da52 1 Other Other +a0882848-29fc-4ea8-9563-d56cfa68e614 1 Other Other +a0882d08-36a9-41ec-9e73-6d4f036781e3 1 Other Other +a088853f-e204-477e-a635-f9cd660c2ddb 1 Other Other +a0889a88-9474-4fd5-8246-1b7b71096869 1 Other Other +a0891d61-9f34-41db-91ad-2131a9201351 1 Other Other +a0892080-5dfb-4316-88cf-5b11764c35e3 1 Other Other +a0892085-0e04-4e0d-ab85-ec01b0083060 1 Other Other +a0892c53-b106-4863-95cf-d77194000e51 1 Other Other +a089c15b-1a79-4f9e-9068-9a6cf7e0b737 1 Other Other +a089cee6-549d-4af7-bafb-c6d6a74a7c9c 1 Other Other +a08a0a88-f49c-46ed-b7d3-7621f7434cf1 1 Other Other +a08b2ba1-a784-4383-bfd6-674ace0821e3 1 Other Other +a08b7f95-4ecc-45f7-b195-670a6b5cafbf 1 Other Other +a08b94b3-4919-46c5-abf6-45b02b58a852 1 Other Other +a08b9743-f03e-4335-bd97-b2c99824c07e 1 Other Other +a08bac87-38df-40f8-87ee-87bfca4b096a 1 Other Other +a08becb2-4379-403d-a85b-01b4841cb858 1 Other Other +a08c0dc0-f628-46fd-b423-8a61ab70074c 1 Other Other +a08c21ae-f3a2-4cf3-b19a-2e0674bafb95 1 Other Other +a08c437a-7aa7-4b24-b492-af75512e8be2 1 Other Other +a08c4795-dc03-4c25-b999-ba5bf8995a32 1 Other Other +a08c5db9-931c-4e3f-8db3-0ab106c36aaa 1 Other Other +a08c6a0a-57b7-415d-8e24-cb92ccc5f7ea 1 Other Other +a08c71a5-67ea-4afc-81bb-2ee2d813c15d 1 Other Other +a08ccf43-43f8-4752-bae5-d48c28757be2 1 Other Other +a08cf7c2-3c63-4d48-8a3d-f761967ffc0e 1 Other Other +a08d120b-73b3-46a5-9196-69379f269405 1 Other Other +a08d45c3-6cde-48ed-9eb5-d3f2de4ac507 1 Other Other +a08d5769-00d5-4609-ac3d-78b2ef2c4b4c 1 Other Other +a08d79ca-c0d9-4091-9c72-7c1bfbb8176c 1 Other Other +a08da409-35ca-4cb2-bbd8-846d04b1a684 1 Other Other +a08daae6-691e-4c2d-8659-f0e33178f7bd 1 Other Other +a08dc998-1d42-4de2-9bde-c1143558bec2 1 Other Other +a08dcf62-38ca-4853-8fe0-e17ae5e4cdc2 1 Other Other +a08e2bf2-04b4-47ef-a2a1-b65985d82517 1 Other Other +a08e4297-e79a-4303-9290-6530aaace250 1 Other Other +a08e4358-ed9d-4b10-8809-65c24b7f19f7 1 Other Other +a08e51c5-1e1f-4e91-8fc1-07f7cf93448b 1 Other Other +a08e6f5e-3823-4e08-8b7f-79a289fc19f2 1 Other Other +a08e7fe1-13db-45e1-9804-bdd5b4210437 1 Other Other +a08ea3a2-ce8d-453b-bd0a-ba62c05ab386 1 Other Other +a08ec2d8-1ec8-487b-936f-8cd4a9da0fe4 1 Other Other +a08ecbed-9b6e-46fb-b401-d50c2cf32080 1 Other Other +a08f3510-5466-43e6-8837-a8cf05ff507b 1 Other Other +a08f77db-1fa1-410b-af1c-8c3eff029be8 1 Other Other +a08fe503-591a-4cd6-bc41-62dcb0d225d7 1 James Other +a08ff214-1d0d-40ae-a89b-fb21c98989c4 1 Other Other +a0900112-2837-4e7a-b357-3a32136e43e9 1 Other Other +a090874f-12a9-4c82-9e98-494cfb68ded7 1 Other Other +a0908bee-a86b-44a8-8103-783c010bd2b6 1 Other Other +a090b0d9-7a97-41f1-8b25-c161fead5b3b 1 Other Other +a090b387-d509-4577-99a0-fb595d40b9cb 1 Other Other +a090d431-9f67-4f97-925a-91b927bc206a 1 Other Other +a0911461-eece-47a9-8e5f-1feb3078a4ca 1 Other Other +a0915dfc-aa5d-4d7d-8071-fea3e8f32819 1 Other Other +a091cc1b-3505-450e-b4ab-f34d591ef2e2 1 Other Other +a091e11a-32b0-4e9a-9f61-05e1fc346cab 1 Other Other +a09203b6-d403-438f-bca2-2460c7d8313a 1 Other Other +a0920c02-1945-4b6a-8c79-9df883cec65d 1 Other Other +a09212f3-bc1f-42ce-b290-429de21f4adb 1 Other Other +a092355d-b7c2-4d77-9bb3-8718fd3e1fc0 1 Other Other +a0924ec4-8384-4734-ab67-a283c8f4d838 1 Other Other +a092e162-4fc4-495b-a0da-688cbae479ce 1 Other Other +a09338a5-d8c1-46de-bbf5-dd38fbf26415 1 Other Other +a093d4a8-5485-4512-bacc-9b18e0a49aae 1 Other Other +a093dfe4-9068-43ed-85ba-3da3baba3127 1 Other Other +a09400e1-803c-4516-9226-4113025a702f 1 Other Other +a0943e60-da5e-4588-9402-13a372c9601d 1 Other Other +a094690d-292a-441b-977a-5f6d8842e96b 1 Other Other +a09474bc-c598-4bce-8a4c-c39bf5a87c70 1 Other Other +a095041a-22f8-4fb1-84d2-f48be7be0ef1 1 Other Other +a095064a-d90d-4773-8e6e-1ee2d0d2bbd5 1 Other Other +a095365f-7b8c-4af8-bb70-3c0135269213 1 Other Other +a0953aab-7331-49a7-860a-afdca9423258 1 Other Other +a095449f-5b61-42d7-a668-8b85814e7fa3 1 Other Other +a0954ddb-de62-4adf-b034-3764b238baab 1 Other Other +a0954fa9-b10f-41a9-abca-5af219e4a9a8 1 Other Other +a095e256-831f-4dc4-8751-0143d6d23eba 1 Other Other +a0960195-fb00-4e54-b5e3-55c4ba4fce42 1 Other Other +a09633b6-9e97-4bde-b03c-a14f92381443 1 \N Other +a096766a-e5bd-4233-b8f2-b2bfa16f2935 1 Other Other +a09678b1-b8de-4805-a807-f84c38f0576a 1 Other Other +a096a1af-42f0-4278-b972-4a5f23988c25 1 Other Other +a096ac29-2b23-4c70-bdac-a3e0a1a94bbf 1 Other Other +a096cfc2-0047-4e3d-ace3-05ffbceef859 1 Other Other +a096f913-a8e6-4b38-9979-a1466e8daf4c 1 Other Other +a0972190-ae54-40f3-9828-612f7c4066fc 1 Other Other +a09737ec-e54f-4f30-b6b2-ac06fe37f8a8 1 Other Other +a09752c0-a8ee-4fac-9e14-a054e22426ea 1 Other Other +a09787af-db22-4dd3-ae5e-1e1c24e99379 1 Other Other +a097ae35-8091-4c29-ae9f-460982731f47 1 Other Other +a097ddc1-0391-46dd-8fde-f4e23139267e 1 Other Other +a0985066-19c0-48b1-80a2-0bc6a9fb94f3 1 Other Other +a0988671-2476-4945-a401-01c610e607b2 1 Other Other +a098903c-3ffe-4833-b24d-cc8a21d9497b 1 Other Other +a098bf96-56e0-4205-a71d-5ab0ebfeb22e 1 Other Other +a098d989-6f6d-4c3f-903a-f85f03ccbcbc 1 James Other +a098f0dd-e601-4752-948c-88373ae87115 1 Other Other +a0991d02-8e06-4445-ae29-e253ad3b207a 1 Other Other +a099ec76-8d5b-4ff9-8aa7-9ae5260f3d71 1 Other Other +a09a2795-cf1f-405e-9578-3a83f22f0960 1 Other Other +a09a33e0-ca74-44e1-9d66-8277945f637c 1 Other Other +a09a5d37-2a4e-4c1f-b1e6-c59c93fe2e6a 1 \N Other +a09a6960-997d-4276-b809-0ca58d0d4ea9 1 Other Other +a09a71b8-1b28-4e96-99a2-6e48cd436c07 1 Other Other +a09aabc4-3c28-4c93-95c2-9588eefc57d9 1 Other Other +a09b0243-3fa1-4539-9dd0-f7ceb654a4b9 1 Other Other +a09b22b1-d3fd-47d5-ae95-bca79911ea27 1 Other Other +a09b73cb-712b-4c55-83e6-21e94f3c9e60 1 Other Other +a09b8ac4-9217-4e19-87c8-15de173de772 1 Other Other +a09bc526-fbab-4bec-8f8d-818ebed09d8e 1 Other Other +a09c0846-cba5-487e-becb-d00d5fd1d075 1 Other Other +a09c62e0-b3ef-4ab3-9719-bd515f828a2d 1 Other Other +a09cb2e9-61e1-4364-ad95-9cebe6418acc 1 Other Other +a09cdf26-3705-4431-a0b2-2750f8817202 1 Other Other +a09cf62b-f521-49b2-b36c-3c52681e3f46 1 Other Other +a09d025d-e3c3-4fab-b87f-4b0ee5b01527 1 Other Other +a09d155f-05cc-47dd-b393-bc1e7c923b79 1 Other Other +a09d2e80-c791-42dc-8e11-5a1df6ca3dc9 1 Other Other +a09d49f0-7813-45f5-bead-55ce9ba87973 1 Other Other +a09d8165-ee49-470f-9ff9-eff650cde504 1 Other Other +a09d8494-1265-4e1b-b214-f357cebe94cd 1 Other Other +a09db0f0-574b-41f0-bf4f-b12b2d749576 1 Other Other +a09dbfe1-7b5c-4c21-b116-35ac052c5644 1 Other Other +a09dc1a5-70c6-4eba-a1ff-0ef1b7263f36 1 Other Other +a09dfabc-c9c6-4be1-9671-e4a21910a1db 1 Other Other +a09e2b96-3e19-49a2-b9de-a80f2faf22fb 1 Other Other +a09e7ec4-6228-45ab-99e8-06fa41093cd1 1 Other Other +a09eae62-9523-496f-9970-b47c2a5cb99f 1 Other Other +a09ec2b3-bf4e-4df8-bd2d-c53fedd8aba2 1 Other Other +a09ec689-fb18-4309-a70e-638c16f55256 1 Other Other +a09ee4ff-aca5-4196-b39c-0f7828e96b3d 1 Other Other +a09f0613-5142-4e25-ad85-d137df257a5b 1 James Other +a09f19ba-048a-4896-8096-eaff882b78db 1 \N Other +a09f4791-9591-4ab0-881c-520801fced4e 1 Other Other +a09fb684-5a10-40e0-9ac4-b96e1194db6c 1 Other Other +a0a0906f-efe2-426a-9fa9-68f629cfbee6 1 Other Other +a0a09990-5c41-46aa-8432-ae7acc07a6e8 1 Other Other +a0a0a93a-c0c5-4b97-bc82-cb1950c5bbfe 1 Other Other +a0a0b63e-ad77-4031-949d-b74011288645 1 Other Other +a0a10259-3a8a-4fbe-9cf1-6eacafed52f1 1 Other Other +a0a16151-73ae-468a-8459-b18f1a579e66 1 Other Other +a0a16376-078a-46f0-b336-d8916064f388 1 Other Other +a0a1f54c-e727-4f55-9964-255d1339bc3d 1 Other Other +a0a20f95-e5c7-402d-bf9e-6880870af56f 1 Other Other +a0a21802-aef1-4653-8068-550fd4a108b0 1 Other Other +a0a21efd-3038-4b29-b5ea-45c4cd2241ca 1 Other Other +a0a25fb5-19ea-4c42-a259-f55302d0631f 1 Other Other +a0a2c790-11aa-486e-a02e-53684139e28d 1 Other Other +a0a3092e-b3b8-46f7-a394-ff9eddde4916 1 Other Other +a0a3352d-fb45-47a0-85f6-135676342839 1 Other Other +a0a3444e-7f3f-4bb1-88f6-c8485cd9a6dc 1 Other Other +a0a34e28-0c09-11e8-b744-fa163e8624cc 1 Other Other +a0a36d8f-7623-483f-8b0a-f32b453ca004 1 Other Other +a0a38fa9-e197-4370-b8d3-1a6f1d577672 1 Other Other +a0a3b907-cfd2-4bf8-afc8-5fc16ff72133 1 Other Other +a0a3b9a1-da9b-4b0b-a662-9c7671b8ed2d 1 Other Other +a0a3bba3-1aab-4dd0-afde-53384ad7d07a 1 \N Other +a0a3d913-7be2-4fb7-8215-b6665116a41c 1 Other Other +a0a3f624-e0e0-440c-a612-aca3c501d0b9 1 Other Other +a0a4369c-b79c-425c-b007-f98fb5739b9e 1 Other Other +a0a4f294-11b6-43cc-966d-63f2120e4bd1 1 Other Other +a0a4f7b5-f319-4cac-ad81-fc7ffa612fcb 1 Other Other +a0a579e5-b424-4bb0-8a6b-f93e6e65267d 1 Other Other +a0a58752-3d6c-4b6b-9d04-ad6efcd1b4fa 1 Other Other +a0a5d046-3eec-4862-9f78-889e78f7cf50 1 Other Other +a0a60954-e58e-4a7a-a90b-48fe4149b49b 1 Other Other +a0a66a14-fa1e-490a-8a13-d2c687c31e75 1 Other Other +a0a6c60b-e91f-4712-aacc-39a3a063df99 1 Other Other +a0a6fe5d-2187-40c6-b337-9686a9e131fe 1 Other Other +a0a753bd-59ca-4260-ab23-00515d9b49cb 1 Other Other +a0a850f1-6267-4827-86a5-be7620ffa4c4 1 Other Other +a0a8de6f-edbc-411d-860e-3f6e5fc7e992 1 Other Other +a0a8ea33-db5c-4676-a12f-1bd7023d19c8 1 Other Other +a0a8eb83-9f8c-47b8-8778-19cc0934ec3d 1 Other Other +a0a903a0-b30c-4ea4-b3b3-ec39cd60b356 1 Other Other +a0a90aac-6560-423d-bc50-7eb6f4b121bf 1 Other Other +a0a9297e-2c73-4d6f-b8f7-a35215018654 1 Other Other +a0a93825-6b8d-494d-9df1-39be01096da4 1 Other Other +a0a9a3a9-0077-4a78-b749-cde71a0607d2 1 Other Other +a0a9ec2c-f882-482b-92b2-f1de8e4e8d9a 1 Other Other +a0a9f0ed-ec92-4421-bfb5-3ad0cccde306 1 Other Other +a0aa0ffd-00b8-4813-ac4a-d08819e8a5e0 1 Other Other +a0aaa71b-a5a3-4f59-9038-706c833257ec 1 Other Other +a0aafa6b-4804-4f3b-b9c3-e808acb7dcd8 1 Other Other +a0ab15a7-d588-4eab-9bf6-ded2fb62a9f4 1 Other Other +a0ab35fb-9a76-4793-bbaa-40e2a80188a6 1 Other Other +a0ab5761-1214-420a-b8cc-dbec06147269 1 Other Other +a0ab6bf6-3a21-4836-8511-7aba004adf52 1 Other Other +a0ab6c77-0396-4634-867c-88f1ec36f679 1 Other Other +a0abceb1-070b-4af5-b396-7cfa1ff15ebf 1 James Other +a0ac0ac9-0efa-4245-820e-0a56c061f7e4 1 Other Other +a0ac459f-33e0-44f5-aafd-5cff114d9f2d 1 Other Other +a0ac6d14-27f5-41a0-b4d8-a017020865d6 1 Other Other +a0ac73fb-995a-4a12-a2de-a781ab663e66 1 Other Other +a0ac7ca7-83a8-4803-b43e-0eff0711d6a9 1 Other Other +a0acc594-fbec-4cfd-8953-c21851ebcd6c 1 Other Other +a0acc624-edd4-41c7-8ffb-ca37a1eb673f 1 Other Other +a0acd600-37cd-4b69-b21d-4594a50c9799 1 Other Other +a0acebe4-a7bd-4669-9a54-3e10c608ec04 1 Other Other +a0ad46c9-5098-4cf0-972a-cbec69f67d50 1 Other Other +a0ad8e76-1db3-4093-8a5e-899ce394ea4b 1 Other Other +a0ae3467-ce57-44ef-9cfe-fb3559d86314 1 Other Other +a0ae886d-b50c-4de1-a39c-50193c54d803 1 Other Other +a0af0f8b-6037-474e-8cff-3aac60a841d6 1 Other Other +a0af11be-aebf-4eec-af64-005a21a65ee9 1 Other Other +a0af7c03-a7ca-467c-bae1-1b1739e3f02e 1 Other Other +a0af7cce-a5cf-4195-a550-e8c4c651f436 1 Other Other +a0af9061-57d5-439f-a9fc-2c8271217353 1 Other Other +a0af977b-91c7-4fb4-9664-622ad8e50c62 1 Other Other +a0afcf0c-10f5-430d-a1de-a1c731c8df83 1 Other Other +a0afdecf-9476-4726-9ffe-0195d53df3b1 1 Other Other +a0afe33a-aaed-4cf1-8e2a-580847f03296 1 James Other +a0b02362-d747-4d3c-bb66-893eb59b6fde 1 Other Other +a0b02c69-edec-4a29-a8ed-e7e1174f18df 1 Other Other +a0b03621-e901-46b0-a7b5-d1457e9b5356 1 Other Other +a0b0b198-0b79-4198-bc28-ae75e5d6300f 1 \N Other +a0b0b44e-61a1-458c-9977-e7b2a773ef0d 1 James Other +a0b0e3c1-c0f0-44ff-841c-1de30a089d12 1 Other Other +a0b0e7a2-2ad2-4913-86f2-49342367f327 1 Other Other +a0b12552-aa57-4b74-b46d-d1d4c6ef4bfd 1 Other Other +a0b176a2-c004-4a6b-85f4-113928d071b1 1 \N Other +a0b1c9a2-41c6-4584-a22e-0243d17acdde 1 Other Other +a0b1cda2-c987-4c76-b7ee-b589fc802213 1 Other Other +a0b23b94-8f5d-4bcf-a2a2-20f590086b92 1 Other Other +a0b27378-c021-417a-a485-3da303ca62aa 1 Other Other +a0b28f84-dd34-4d53-8d2f-5e711fea3904 1 Other Other +a0b2bd59-a6e2-4493-960f-0c090b2aa11f 1 Other Other +a0b2bf95-e49e-4866-81c0-0eb7aa3c2de3 1 Other Other +a0b2f9f8-f2c1-4206-a676-5303108f1f85 1 \N Other +a0b32696-c8cc-47cc-9184-76a3d2627855 1 James Other +a0b35164-3ce9-44d3-aefa-e26fb569d890 1 Other Other +a0b36527-26f4-4735-b468-d171c1cf7433 1 Other Other +a0b37464-0fe5-4a76-a707-e16733032a75 1 Other Other +a0b3c25a-704c-4c88-9053-1330f1302f5f 1 \N Other +a0b3dfe3-dbaf-4066-b8be-17db7c25b572 1 Other Other +a0b43b16-c6c9-45cf-8595-e89994247e09 1 Other Other +a0b49333-892f-482a-8937-ef025d16b3c1 1 Other Other +a0b4afb6-65ae-4dfd-95be-449b1112b4d3 1 Other Other +a0b4d6d7-933f-42e0-ba57-3f9e3c99ee69 1 Other Other +a0b524d9-060e-460b-af81-c688964f7392 1 Other Other +a0b56350-7e56-4f17-865b-4f2b967f5445 1 Other Other +a0b58357-c426-4fe9-a7df-5d0f147128e8 1 Other Other +a0b5d526-3b62-4fdd-a340-d2d6fa241cf1 1 Other Other +a0b60186-ba5a-4971-9051-3864ce56960e 1 Other Other +a0b604c2-9cab-42a1-b085-991af28cb2f6 1 Other Other +a0b60af8-df69-4915-a6ab-e9b35521d045 1 Other Other +a0b61f15-7dce-4e82-864b-14aaa47f622a 1 Other Other +a0b63241-7465-4578-ba45-7e3d43156cfb 1 Other Other +a0b65fbd-91a3-46db-a704-3a49e20c58ba 1 Other Other +a0b6d0f4-a58f-41c6-ad83-7634013eff9d 1 Other Other +a0b700e5-96cb-4a0a-8353-fdc4340f6eb0 1 Other Other +a0b71156-9661-4d52-90e4-5e1624c007be 1 Other Other +a0b721d5-ca54-4dc5-82f5-9b35be5e44ee 1 Other Other +a0b72b54-60ac-46fb-8a34-8813a1b7f238 1 Other Other +a0b820aa-742b-420b-a380-af371a4af16e 1 Other Other +a0b88397-9778-47e4-9f33-2b08cd52dab2 1 Other Other +a0b8a5dd-d165-4b08-8433-80a7e960ffcd 1 Other Other +a0b8bd6e-2439-4a38-9bdc-145035e2de5f 1 Other Other +a0b95082-b6a4-41ce-8bc5-7a3f8b3e7895 1 Other Other +a0b97cf1-98d3-4e1d-9e3d-4b795a55995e 1 Other Other +a0b98118-12c8-473f-b513-aed40ff57979 1 Other Other +a0ba1a2c-4fe2-4c3c-97c9-c55e5f47c1ad 1 Other Other +a0ba5226-0fe0-482c-94e1-443512ed3d8f 1 Other Other +a0ba57e4-a32a-430e-ba64-3295e49294d7 1 Other Other +a0ba85f7-1df0-426a-82dd-876f5623d46b 1 Other Other +a0ba9a5c-4db3-44ef-9248-9a2365cd79cd 1 Other Other +a0baa9fb-186e-4ac1-97d0-4bc04d81bace 1 Other Other +a0bae0d8-1092-4482-aad4-ff719b8df849 1 Other Other +a0bb1fc7-0ef7-4463-8956-bc77d8c395d5 1 Other Other +a0bb3f0b-8a6e-45ff-a2f4-4eec13fbd529 1 Other Other +a0bb7a15-9b73-4406-a3fd-a525acef41eb 1 Other Other +a0bbb867-955a-4e01-be11-f7ec0b9c4fbc 1 \N Other +a0bbd716-8aae-4236-bd6e-c8532ed985cc 1 Other Other +a0bbd770-6524-49fc-96ac-717eba37377f 1 Other Other +a0bbdc13-6b2d-4761-91e7-1a997561d6e7 1 Other Other +a0bbe152-fc64-4ac1-9e3d-9d1bf1273be0 1 Other Other +a0bc0f72-5e29-490b-bc74-36b311eed95a 1 Other Other +a0bc8b42-6545-4ef5-8cc4-5d6af85e9477 1 Other Other +a0bc9d30-b45d-4e2b-aa60-4e879d1e2073 1 Other Other +a0bcaae4-9343-4aee-bf9a-f03b48d528bf 1 Other Other +a0bcddb6-3029-49cd-8580-6c10b360fdee 1 Other Other +a0bce4f7-279f-4e70-9b0e-10eb8025652c 1 Other Other +a0bcefd5-ee60-4445-8861-255f27cba1c1 1 Other Other +a0bd4d1b-262c-4f33-b7f0-7078f5644717 1 Other Other +a0bd622d-6627-43ae-ad0d-23d1beb7c42f 1 Other Other +a0bd6615-22ed-4882-9303-4420b1109382 1 Other Other +a0bd6e66-d869-4ad4-9243-77c1e22b2446 1 Other Other +a0bdbbcc-63bd-41a3-b863-696120f6044b 1 Other Other +a0bdbe96-904b-457f-8b09-9b44c669c897 1 Other Other +a0bdd042-7d76-4bc3-894b-7e69bd9e46ee 1 Other Other +a0be776d-c780-40c2-99fb-b52d61c0961a 1 Other Other +a0be87d1-2d47-4411-88f0-476a4e06bba8 1 Other Other +a0bf0318-d5a7-4505-a091-a11ff24327fd 1 Other Other +a0bf1a07-6ffa-4566-9993-6439301bfc20 1 Other Other +a0bf3859-f721-456e-b038-aba33cb51ca5 1 Other Other +a0bf4b2d-3621-4350-85f4-e53957fe8b9d 1 Other Other +a0bfbdf5-8330-4030-a428-b39f216ad8ad 1 Other Other +a0c01cd0-095c-4594-9262-6d8ab0659931 1 Other Other +a0c05d72-462f-49bd-b693-f795fabd93fe 1 Other Other +a0c081dd-c870-4abb-9321-1517ff8bdcce 1 Other Other +a0c0828c-86f1-448c-8390-1cce7cc5803d 1 Other Other +a0c085dd-b284-44b2-8e9d-b095b32219da 1 Other Other +a0c0a8f1-bb02-41f6-80ad-99118ad120fd 1 Other Other +a0c0beae-356e-4c78-862a-41d1aae6de59 1 \N Other +a0c0d9eb-2709-4ce2-abdd-e29bc941056d 1 Other Other +a0c0f1ab-e0d5-433c-8f53-1f78dbe69851 1 James Other +a0c21684-5853-44db-a604-e3f0bb012c3b 1 Other Other +a0c2505f-5b1d-47d5-8850-b5f3a81586c9 1 Other Other +a0c26b23-4ffb-4dc1-905d-66baafe745ef 1 Other Other +a0c3072c-a7b3-4c58-baee-3f46e2dab7f5 1 \N Other +a0c362a6-5035-4250-8ca0-e14eca4f08cb 1 Other Other +a0c387c7-d410-405d-b5e4-70d6f5c9a58c 1 Other Other +a0c3b801-bf27-4a73-b6b8-9e5ccf025b90 1 Other Other +a0c405f3-7ad4-4c3a-ba53-079bb5571536 1 Other Other +a0c43566-fdef-4251-a838-11f21e67805f 1 Other Other +a0c44755-9a9b-43f8-9303-31e6da84432b 1 Other Other +a0c49aa2-4cbf-4df7-b8ab-06421070f9bf 1 Other Other +a0c4de70-0cf6-4732-83ff-cd80d43fe569 1 Other Other +a0c55000-daab-445f-ab7c-e98666388f4b 1 Other Other +a0c574dd-292c-4a24-8a22-7957f6985bec 1 Other Other +a0c58bf3-9961-4b3c-a2f9-4a55b79cc2d7 1 Other Other +a0c5b2b1-5751-4d48-ac64-ab20111b7d8b 1 Other Other +a0c5b6b6-a7d3-4da6-94aa-6537a8fbd1e0 1 Other Other +a0c5d3ca-6f83-4dd4-b271-9ad60327610a 1 Other Other +a0c5fe47-1055-4aaf-a1be-7790b0119128 1 Other Other +a0c622c0-ac74-4eb8-ab16-6cc78810dacf 1 Other Other +a0c63639-5959-4211-8b50-df93c443649d 1 Other Other +a0c6398a-78c6-44f8-840d-1c2c09605f84 1 Other Other +a0c6b449-6eb6-4d28-b2e4-f864d9809a41 1 Other Other +a0c6eaeb-5f54-4207-af24-fa79e448deb2 1 Other Other +a0c70b3f-c34e-4b6c-baf9-0e411dfdfd7b 1 Other Other +a0c70f96-3df7-40eb-a579-b2c060c32c17 1 Other Other +a0c762dd-7ddf-4612-af8d-0d4988f52add 1 Other Other +a0c779c3-5eae-4fa5-a51c-9e301132a0e8 1 Other Other +a0c7ba4b-b526-4ef7-8ddf-9b001a41213a 1 Other Other +a0c7daf0-bb47-4c9b-ac2c-db638c0a2d2b 1 Other Other +a0c7e1f9-9e30-4d89-b38c-d14022c0454d 1 Other Other +a0c824c4-2879-4cd7-b838-4bdc6378fa0e 1 Other Other +a0c84977-45d7-4167-bffa-7815f017a959 1 \N Other +a0c8602a-a72c-405a-afb4-10c6350cf24f 1 \N Other +a0c897f7-19e8-4277-a634-303c7ab6dca4 1 Other Other +a0c89c7c-c649-4a19-9418-20e326beeedf 1 Other Other +a0c89f29-67de-43f8-8910-ce437db0e159 1 Other Other +a0c8a082-7ae9-4743-8c61-9bc07be257ff 1 Other Other +a0c8e399-ac33-42c4-98f6-96dcd24950e7 1 Other Other +a0c98637-8575-4810-bd25-ab61bf758d7a 1 Other Other +a0ca1766-7073-4991-b9b0-3c436771b6b2 1 Other Other +a0ca56e4-24b1-4a97-8825-cd85d12ad86c 1 Other Other +a0ca6cc9-2187-458d-b080-5b562d727a5e 1 Other Other +a0ca7dfd-4a5b-4d93-8559-6b6e5b8bc352 1 Other Other +a0cabd99-c186-45dc-8a76-2555dc6f2bab 1 Other Other +a0caefa7-179b-4c32-a97e-387f1f453e49 1 Other Other +a0cb0310-e21a-43fe-9bad-630b56d42b9e 1 Other Other +a0cb08fb-bfb7-4190-b696-5718fa14be04 1 Other Other +a0cb5712-61f2-425d-96de-1d7040d1b486 1 Other Other +a0cb78a1-5cf5-4778-9c9c-3c0825d3a959 1 Other Other +a0cbabd7-89c4-4814-a82e-3fa116675700 1 Other Other +a0cbed34-dc37-441e-b601-b4eca2fd3a57 1 Other Other +a0cbf468-15b1-4791-b6ef-419dcb8d3147 1 Other Other +a0cbfd5a-3127-45a5-a05e-cd5b30c49703 1 Other Other +a0cc2309-b7c4-4e30-8a1c-c1382968a8e7 1 Other Other +a0cc5113-a300-4bea-a684-dc0d492439fe 1 Other Other +a0cc765d-9e4d-4789-961c-c70028154c98 1 \N Other +a0cc79f5-931e-47a0-b133-74a15726678d 1 Other Other +a0cd084c-d077-40eb-b1c2-b0db5a519a09 1 Other Other +a0cd1e78-755b-4063-8817-50d8890a1847 1 Other Other +a0cd26bb-916f-43d6-bd53-82a6a514272a 1 Other Other +a0cd3965-121f-4222-b5f2-ab0cd61c1c5d 1 Other Other +a0cdccce-3746-4f14-b837-422eb50e42d2 1 Other Other +a0cdd045-d544-432c-a4e7-da0d2dfb3a0a 1 Other Other +a0ce4ab4-ef18-484c-9d1a-b15c2c5b8bb7 1 Other Other +a0ce95b9-8e4a-4a5f-a53e-a304e8f2ddb7 1 Other Other +a0ceaf06-03dd-4fde-bf45-ca0a3349dd8f 1 Other Other +a0ceafa4-9308-43e6-875e-ac592508950b 1 Other Other +a0cf5048-3c25-444d-819e-c6a3ac396ee7 1 Other Other +a0cf5a5a-b51e-4680-9a82-7d4d1ca323c6 1 Other Other +a0cfccf4-4d5c-419a-a9a9-77554399736f 1 Other Other +a0cfe653-ae32-4ea7-b9d9-4f588cf2ed3e 1 Other Other +a0d02130-0058-4586-8201-85316603dfaa 1 Other Other +a0d02c11-72db-413e-b194-d18ad4ab8c28 1 Other Other +a0d04cec-3742-423b-8e54-89e96840a1c0 1 Other Other +a0d0ab09-945e-4ba5-bc34-38d309b22582 1 Other Other +a0d11020-0ff0-4816-9f00-4f5e2fc2508d 1 Other Other +a0d14d2e-2099-4666-92d3-a62441c485b1 1 Other Other +a0d16fa3-c601-4128-8a7d-d9d6e4128566 1 Other Other +a0d17e47-46cb-44a0-94e4-30f322e8c957 1 Other Other +a0d20b5d-9a23-402f-b6d6-a3d215f906bd 1 Other Other +a0d21f63-9ac6-498c-8d94-109c00514def 1 Other Other +a0d22467-ed8b-4e1b-afe8-15c2fb03440e 1 Other Other +a0d23b92-0791-4dcb-8a83-9859f0ffe59b 1 Other Other +a0d26846-3ffc-4366-abe1-78589b3f34ec 1 Other Other +a0d26ea1-0547-4db0-9eb5-c92ee1b4e100 1 Other Other +a0d281cf-d790-4935-9aa7-3bd5799c05d3 1 Other Other +a0d2fbdd-d373-4c02-bd3d-1713971d01b1 1 Other Other +a0d30b94-7a3f-4fe0-891d-610e646d8e93 1 Other Other +a0d3174e-d204-4105-82bb-b92b470f15d1 1 Other Other +a0d33ed3-6f24-4215-bb66-cb564d9ecb1d 1 Other Other +a0d357a7-0e72-4931-8433-4333e5160e94 1 Other Other +a0d39966-8bac-4d7b-8ecf-ddf3fd04739e 1 Other Other +a0d39bbe-0bda-41fd-a12a-4e0a961fe419 1 Other Other +a0d3ad30-abea-47e6-b9bf-4a51d3fcefe2 1 Other Other +a0d3af13-08b7-4c3e-8350-742a0090a13e 1 Other Other +a0d3ba2c-fc42-4ea3-9ff8-f65c9da9caf2 1 \N Other +a0d427c9-1252-476b-8eb2-d336ec3e599a 1 James Other +a0d462c1-e7e7-4e7b-beb4-25017a46148a 1 Other Other +a0d47a9b-b700-42c2-be84-0b5a780aadda 1 Other Other +a0d4ba59-4cd8-4178-8b8c-807e82d4d4e8 1 Other Other +a0d58639-2056-47f6-abd0-f7069767590f 1 Other Other +a0d5f098-603e-4e1c-9b40-2194a31a38d4 1 Other Other +a0d72474-a325-4088-8db7-83f94704ed27 1 Other Other +a0d76be4-e928-43f9-96eb-b9b0b58d0f76 1 \N Other +a0d7acbc-10d2-4687-bebc-106783382eb5 1 Other Other +a0d7e55b-58a9-4c91-a205-23bc29bd361f 1 Other Other +a0d84686-2c64-4c98-a09a-ff3875290e56 1 Other Other +a0d85804-9aab-4db6-942b-da1fcc8929be 1 Other Other +a0d87b27-8265-4d57-9990-ebcbe5893f97 1 Other Other +a0d88fba-3138-49cc-a96b-2b19d8df29c3 1 Other Other +a0d898ac-fe1a-453a-8142-084fa8080ac3 1 Other Other +a0d8ac39-8e1b-4548-afe8-cd5cfb0bc4f2 1 Other Other +a0d8af3b-6252-4e6c-9c07-4428c86fc525 1 Other Other +a0d8f121-65d2-4b49-a82e-51dac00c76d5 1 Other Other +a0d8ff95-fba3-4bf9-a224-3a858da98b88 1 Other Other +a0d934ec-a9f0-44bc-9505-d0c9b4588229 1 Other Other +a0d9c0ce-7408-41ba-b701-a4f170098191 1 Other Other +a0d9d690-8420-47ae-afdb-590b894cf9a7 1 Other Other +a0d9e781-72bf-4f95-bc07-3e913fb085af 1 Other Other +a0da366c-9f91-4f8d-92f3-b9b9ac807abc 1 Other Other +a0da7d6b-71a2-4938-a580-b7aeb51f8ac7 1 Other Other +a0dac392-15de-4941-a8d7-f57e3efa2c28 1 Other Other +a0dacadd-3871-4376-9ab2-7d3bfa4de1d9 1 Other Other +a0dad874-6a70-4c11-8ff6-91ca7c693f52 1 Other Other +a0db86ce-2299-4ee2-a495-19839b464b24 1 James Other +a0dbafc5-aadb-42f4-a434-9fd522a5492f 1 Other Other +a0dbcf6d-f7c3-4587-8196-2d2d96802a75 1 Other Other +a0dc15f1-b035-46f2-80e6-182482e13064 1 Other Other +a0dc6a92-6847-4347-9783-e1c157c4b871 1 Other Other +a0dc8da0-55f5-458a-8b60-dbaac344cff5 1 Other Other +a0dccffe-fbd4-4c05-b4f3-4881dd160f0e 1 Other Other +a0dcf7ac-7dfc-454f-8d6d-c4b26edc8afe 1 Other Other +a0dd4683-7bf0-427a-a5d6-8a730a782afa 1 Other Other +a0dd4903-7308-46d4-94be-3b22e4a4eb0f 1 Other Other +a0dd6f4e-da69-11e7-8d79-fa163e8624cc 1274fc8c-64ed-11e7-ab3f-fa163e4dd901 Other Other +a0dd8804-2785-4715-8e43-05a5b1ce4892 1 Other Other +a0ddcf29-9e98-4516-a769-bc6e9de71cf8 1 Other Other +a0ddebf9-1449-44b8-a0f7-5b3b188fcbfd 1 Other Other +a0de6ab2-387b-4736-a354-3c628640c48f 1 \N Other +a0de832a-8400-49c6-8002-a98c32366844 1 Other Other +a0dea1b5-06a9-4296-9e05-9a1241b751aa 1 Other Other +a0df3c2a-2139-4b3d-9325-47279d5b6e31 1 Other Other +a0df938b-3646-4b60-821d-37d03a517b57 1 Other Other +a0df9637-e682-42de-804e-a7fbc518e4d6 1 Other Other +a0dfd82c-08a5-4500-9773-3a730f6b6849 1 Other Other +a0dffdf2-5892-4f88-857a-9fbd7960d94c 1 Other Other +a0e077c4-aac3-45ba-bedb-651b52bfde6f 1 Other Other +a0e0e133-363b-47bf-bb23-1bd372b99b44 1 Other Other +a0e18aac-6dff-4e26-bcab-93c9de71a9ff 1 Other Other +a0e19933-1130-4795-9c60-1b425135214e 1 Other Other +a0e1b840-f980-40cb-9ff5-102ee4065971 1 Other Other +a0e1d948-f520-423f-94b3-032baa5f72ed 1 Other Other +a0e22ee1-0645-40f6-813e-6abeebbeeaa6 1 Other Other +a0e28009-6ce0-4815-a206-9f43960f1a94 1 Other Other +a0e2d115-1d4e-4378-a576-2ccca10d5b8c 1 Other Other +a0e2d2d1-19c5-433e-b93b-5f5518c7502a 1 Other Other +a0e2e1d1-5eb0-40e8-8a4c-c7467f983e6b 1 Other Other +a0e2f845-4cd3-4e81-bb1e-5e1c7bd05780 1 Other Other +a0e31160-afb9-4de8-aec3-36ef1cfad06d 1 Other Other +a0e350f9-cc74-47c4-aad3-851ca0bef610 1 Other Other +a0e354cf-6e10-4424-8cbb-a302c83474c4 1 Other Other +a0e360aa-6b82-4143-9069-cc596a6d2e8c 1 Other Other +a0e3af9f-a7a3-473f-9613-d232479630cb 1 Other Other +a0e3b33d-27d2-4cba-b1b7-e107b2f66fc1 1 Other Other +a0e3dcc1-e6ce-432c-af3d-c3b12b19f104 1 Other Other +a0e400fe-f6cf-4526-8308-ffb747d97e77 1 Other Other +a0e40555-0ec5-4bc9-9dc3-83b9c7f8db54 1 Other Other +a0e40e29-dd9c-4079-b58d-651c1577407d 1 Other Other +a0e45348-d773-4757-80ed-f7b8781fc8bb 1 Other Other +a0e4d3dd-a907-4aa7-861d-9c71db9fd288 1 Other Other +a0e4e410-338f-4787-a0d4-ecac01d6e1a0 1 Other Other +a0e4f352-5441-4161-8452-3859edf7f7ce 1 Other Other +a0e5283c-d494-419d-afa0-5973b111df17 1 Other Other +a0e577b8-1704-4e4d-8766-0cd2ca668a7e 1 Other Other +a0e5bcce-1aa3-4eb4-8474-c2643c03b3e9 1 Other Other +a0e5beb2-f8b0-4c4d-8c53-0f613e7034aa 1 Other Other +a0e5f943-dde9-47e4-9a10-ffc56e607d39 1 Other Other +a0e690b4-ffbe-406f-956d-3221e1fe7e3c 1 Other Other +a0e6fc3f-44f1-4faf-8b47-a81df8203851 1 Other Other +a0e717da-aa55-4021-82e3-c3b4079a9df3 1 Other Other +a0e72f73-3a3b-4b74-8313-7a64ee7a2ea8 1 Other Other +a0e7430b-ed18-4f6c-9969-993c51362cd5 1 Other Other +a0e74de4-85b3-4449-b6ea-76778ff69e29 1 Other Other +a0e7cb6d-9db3-4d9c-8674-606e91a67b35 1 Other Other +a0e7d0f7-f1cc-452d-8ba1-811794a9bd99 1 Other Other +a0e7df26-de65-4f7b-ac4f-2c06d6483d61 1 Other Other +a0e7ea14-731c-422c-bd73-535e6e4a51e9 1 Other Other +a0e86b83-2529-44a1-a983-0dfb7d7206f9 1 Other Other +a0e879ab-6419-4a9a-a783-98b4bdd56dfc 1 Other Other +a0e8a82e-4dc3-475d-aacb-0fe6f0693595 1 Other Other +a0e8d206-159c-4dc0-8f83-5dc9d96c488d 1 Other Other +a0e8eb27-6871-4645-bd47-9aff7d210d3c 1 Other Other +a0e91875-940a-4b64-bfa6-75e29e04820e 1 Other Other +a0e95820-7acd-45c8-8c1f-8d208d651b3f 1 Other Other +a0e96dd4-09be-4f48-94a7-9c879f993f06 1 Other Other +a0e9e458-9a53-4a43-8a58-27e2501171a8 1 Other Other +a0e9eb60-10f0-486f-ac35-3401e5536e4a 1 Other Other +a0e9f456-cc98-44ad-b339-91444dd4ffb7 1 Other Other +a0ea072c-f13c-49cc-afda-23e8f864b343 1 Other Other +a0ea1692-576a-4161-b77c-a0aa5630fe3d 1 Other Other +a0eaa394-1454-40f1-88bf-b4e96b8d887b 1 Other Other +a0eab8ba-7a83-497f-801b-acb8991ea8ab 1 Other Other +a0eafa79-3750-4713-acdd-4cf9fdb75de4 1 Other Other +a0eb2f81-efe1-4ec5-aa34-296db6c4f033 1 Other Other +a0eb4dbc-93bc-4c90-afc8-8b3f773f34c5 1 Other Other +a0eb9265-76ca-4c60-a714-f6f5f220d8d2 1 \N Other +a0eba306-fd6b-4532-8b03-e9b64b8dbc0c 1 Other Other +a0ebef8b-3e57-4ec0-96d2-80383185a40f 1 Other Other +a0ebffbd-4d80-431f-9d2e-20f154b08b5d 1 Other Other +a0ec0cd8-ec47-4c57-8c63-b9edfe4b0f77 1 Other Other +a0ec40f8-acb4-42a1-96d1-a3c4c371ac75 1 Other Other +a0ec5b7c-69f6-4b20-b84f-7f27ca549918 1 Other Other +a0ecb730-aea6-41ae-a875-7fefc346654b 1 Other Other +a0ecf4d9-1f4d-4d3e-ae5f-114c4623875a 1 Other Other +a0ed1604-c27f-4737-91ea-28ee0a01aca1 1 Other Other +a0ed2718-8976-4a7d-8452-8c948f6a399a 1 Other Other +a0ed47cb-70d3-4191-82a8-fd5e49ad3f6e 1 Other Other +a0ed4812-065b-4c28-aad2-0eb5a8c9b55c 1 Other Other +a0ed5890-1298-4070-9da8-6457060a8426 1 Other Other +a0ed70b8-66a2-45cd-a73c-bbdac12e737c 1 Other Other +a0ef21ab-639f-4156-9d2b-38e6519f934e 1 Other Other +a0ef921a-8a0f-488e-93b6-9aff3af4dd21 1 Other Other +a0efcbbd-54d4-4177-a1a4-7b79df269369 1 Other Other +a0eff85f-2a4d-48a0-b51b-52ed3f64feaa 1 Other Other +a0f002ee-d5e7-43f4-b3df-e9f76f26adb2 1 \N Other +a0f00c2d-4c97-45c6-bdea-3fc4ccb2e165 1 Other Other +a0f02e61-5c0e-4ce5-ad7c-eed4409f969a 1 Other Other +a0f09b57-60d9-4279-bf97-03680dfced2e 1 Other Other +a0f0c6fd-9bf7-41e8-9791-5abf9c5bf652 1 Other Other +a0f0f0c6-13af-4e01-a7a2-60f9555e9eee 1 Other Other +a0f10b80-dcc0-4aac-969b-eb5975aac60d 1 Other Other +a0f11e05-e56e-4676-8e43-a0979002410c 1 Other Other +a0f12c69-b6b7-41d4-878c-9041e765a217 1 Other Other +a0f13a3a-8dd9-4eb4-91b0-2c471488286a 1 Other Other +a0f1fa3d-8e3d-4c18-bd45-283498410127 1 Other Other +a0f22666-627c-43c0-80b3-9c79d7d4fc58 1 Other Other +a0f23765-bf11-4709-b933-0c35d73b9799 1 Other Other +a0f24246-d060-4006-82a5-4efed309645b 1 Other Other +a0f2579e-fd8a-43cc-839e-13cbe9009c12 1 Other Other +a0f2c581-c9a8-4923-8570-79ce269fc736 1 Other Other +a0f2defb-f116-4522-98d4-dae210781781 1 Other Other +a0f2e6cf-0da6-405a-80ec-fad35d9f6bff 1 Other Other +a0f2facf-b4a5-45ac-a923-77b8be0637dd 1 Other Other +a0f305e5-a3af-48ef-952e-13fe87a25e45 1 Other Other +a0f338ec-cff5-41b9-bc82-71dff2250255 1 Other Other +a0f3438b-6d08-4010-9ea1-4ae8e3a4a078 1 Other Other +a0f3555d-1d3c-4349-aabb-6a835898187c 1 Other Other +a0f3a9ac-efe5-4aa2-b7d1-f168d7031e72 1 Other Other +a0f3bf6f-310a-417a-a0ce-9112bb3437d0 1 Other Other +a0f3cae1-48ff-42ce-89f6-d5bfaa18f790 1 Other Other +a0f41cbd-7c21-4852-80ab-8df3cb7e1cf4 1 Other Other +a0f436a5-f5eb-4b81-aa39-11a1185f5b2f 1 Other Other +a0f491d9-f2d0-430f-935b-6ca81d2e1d12 1 Other Other +a0f4b766-bd08-4e38-a1ba-83ae183166c6 1 Other Other +a0f4c109-0382-4267-9957-be7ffe8ca528 1 James Other +a0f4c379-4b98-45e4-8042-8599346effa3 1 Other Other +a0f4e4c9-3963-4794-a043-e36af4d84468 1 Other Other +a0f4f000-a1f9-4cde-a161-ff041cdf0a6d 1 Other Other +a0f4f02a-ae32-4199-b459-6954cf347c40 1 Other Other +a0f50cda-b11c-4243-bbba-21980ef7bbf0 1 Other Other +a0f50f09-2366-4e1e-8d13-c950744aa495 1 Other Other +a0f5715d-ff87-4589-933e-a3b5b6914036 1 Other Other +a0f5a968-5996-4755-a826-58bfbd1b5853 1 Other Other +a0f5af81-616f-442c-9b74-bceb2c5fb872 1 Other Other +a0f5d20d-ead3-465a-bfc3-8fc1ff2882dc 1 Other Other +a0f5e8d9-cd6f-4ae0-b8eb-af0845deee14 1 Other Other +a0f61e6c-7c2a-446e-a90d-c5fe9e13ec16 1 Other Other +a0f64aa4-3735-4ce7-b434-41159ded0f18 1 Other Other +a0f6612a-c382-4778-89ad-e59efe0d4dad 1 Other Other +a0f6989b-c74e-488e-87dd-bf38717019e1 1 Other Other +a0f6ea9a-d6c7-4f7a-b0f6-2e32b69d3ae9 1 Other Other +a0f764fb-9b76-4491-b79d-4b82ffd8a60a 1 Other Other +a0f7689f-db83-4999-9701-88cdc23e2169 1 Other Other +a0f7b8ef-4529-4713-a9bb-56eb6faf2df5 1 Other Other +a0f7d726-6d6f-48f0-80cd-312378888bb5 1 Other Other +a0f855bf-d0a9-4138-923a-dfae383b3678 1 Other Other +a0f867d2-930f-483f-9708-e67792807bfb 1 Other Other +a0f8a60d-ac7c-4d24-8deb-867a7a25b8f6 1 Other Other +a0f8b791-64a4-4804-b4c4-9b996eb888ef 1 Other Other +a0f8c489-28a1-4a84-a522-9ca30c9dbcc8 1 Other Other +a0f8faef-b5f2-4ca8-b125-8ca4c42f65ec 1 Other Other +a0f90085-b2b2-45ce-8bc5-20258fe299a2 1 Other Other +a0f91343-0f5d-4910-9841-bcea84522761 1 Other Other +a0f9ea67-a094-4253-9f1f-11d4f80cdf2a 1 Other Other +a0f9ed2b-4ffe-4ea2-8f61-627e20b28411 1 Other Other +a0fa3fbf-5690-4cfe-83ae-727fcfa6c441 1 Other Other +a0faf8f3-459f-4b54-828b-6beb8ffb0933 1 James Other +a0fb23f3-f95a-45c7-82fa-675be8d9ae2c 1 Other Other +a0fb5431-b12e-492a-9ece-a63f0d30bee7 1 Other Other +a0fb7a71-f23f-4025-a2af-f746ab64abdf 1 Other Other +a0fb7de4-bd77-4279-8acf-66be03589af1 1 Other Other +a0fb9166-011f-4602-b600-470f69bfda29 1 Other Other +a0fbb504-5b60-44aa-848e-b0c69e91a674 1 Other Other +a0fbd06f-4100-4779-a1e3-3e0fc8d0f50f 1 Other Other +a0fcd3de-69ab-48f6-9a96-59ce7b0ec1ff 1 Other Other +a0fcf406-df56-4dfb-a2c4-e8ac761f9f7e 1 Other Other +a0fd38d0-7b43-47d5-b4cf-7abe4fd715c9 1 Other Other +a0fd44bd-6a21-41ce-aafd-1f5186d2c96c 1 Other Other +a0fd78dc-bba0-46c4-ae10-5161ff6be7a2 1 Other Other +a0fd7923-8124-4200-b106-62fcb07ca645 1 Other Other +a0fd7b68-ef6b-4d88-8ee3-5cc4516d878c 1 Other Other +a0fd96b8-d157-4d70-bab4-18aecdcee183 1 Other Other +a0fd9b63-aea4-4aab-bb05-1c3d30154a00 1 Other Other +a0fdd68b-c723-4731-9187-d7597efa27f7 1 Other Other +a0fe546c-d6c5-4f35-b4f4-c9284793c964 1 Other Other +a0fea536-87e9-4378-bf1f-cabd60ef42b9 1 Other Other +a0feff18-471d-47b2-afc8-c5b26de66576 1 Other Other +a0ff08b5-550c-4549-b0a8-f605a4eb2785 1 Other Other +a0ff1d92-1d6c-11e8-b2a9-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +a0ff2292-7901-4629-985b-7c949205966a 1 Other Other +a0ff85ee-9567-430b-954a-896b21fca968 1 Other Other +a0ff9c24-9eb8-4317-bfed-6feae42a4057 1 Other Other +a0fff293-b348-4a22-9fa7-0d443cf522db 1 Other Other +a0fffe3a-3d3f-406e-9f5e-3846a8379559 1 Other Other +a0ffffbe-a455-4ddb-b733-4f420fdcd734 1 Other Other +a1008c90-a72b-4db4-8ca2-0821bc56b6d8 1 Other Other +a10090c4-4a9c-4329-9edb-cb02c73831dd 1 Other Other +a100d5aa-4880-4314-b756-804e4f52b521 1 Other Other +a100d9d4-eecc-40b0-954d-69e0a13181cb 1 Other Other +a1010ebc-4b69-4825-a46b-903beacaf7fa 1 Other Other +a1011301-da95-4904-b40a-a120d62ba526 1 Other Other +a10153ca-be40-4f50-a246-b9da13d9b842 1 Other Other +a1016023-053f-405a-8642-0fc36758b315 1 Other Other +a10161bb-729d-46bd-acee-a916034eaffc 1 Other Other +a1017b0e-a901-4f5c-803e-e6c6854d505c 1 Other Other +a101813d-37e6-4cf0-8950-9eeacb373028 1 Other Other +a101c347-647f-46e1-9b8d-ed96478afee6 1 Other Other +a101d8da-a924-47eb-9a22-56dfeb96f12b 1 Other Other +a102026f-4501-4b32-abaf-af2be77baa9b 1 Other Other +a102040e-26da-4879-ad07-bfd5f31e136c 1 Other Other +a10207fc-3323-4ff6-8ddf-bfe9a68380dd 1 Other Other +a10235dc-2460-4054-89bd-548894a3ad24 1 Other Other +a1025113-9734-433c-88f6-8b272acf8038 1 Other Other +a102938b-dff5-4e01-a0f4-1e157d0e47a1 1 Other Other +a102c13c-3386-403b-b139-d0096d7dfa9a 1 Other Other +a102e7a1-333e-4ced-840a-939a1f793f9e 1 Other Other +a1030e5b-ceec-47b7-a230-fc90f3be6ad7 1 Other Other +a1036ab2-f607-4cc2-a606-1cd2c96e7327 1 Other Other +a103714f-2e20-4249-b31d-74636f883b59 1 Other Other +a1046b8c-0f58-4520-b75e-4316ee926251 1 Other Other +a104971e-3f35-4ed1-807f-85596ea64ca3 1 Other Other +a104c3ef-a18d-4e54-be13-d202a30c1e20 1 Other Other +a1051624-764e-49a6-a4f3-55b6ff63528e 1 Other Other +a1054cc0-7f22-4dbf-ad2b-ebea15b42f29 1 Other Other +a1055178-4ff2-4c8f-8260-1812dc0591f4 1 Other Other +a1057bee-faf9-42c5-b85f-15a3df2eebb4 1 Other Other +a1058158-6d3c-4ac7-b714-62bbc262ad55 1 Other Other +a105bb28-eae5-47fa-9e0e-c17848c0ecca 1 Other Other +a105d31c-db9d-4c2c-b8c3-4234fffdab41 1 Other Other +a1065399-590b-453b-80d9-6d7607a4bad6 1 Other Other +a1068a0f-e9ce-476f-af8b-c50ed4c07a71 1 Other Other +a106b0e2-a35c-485e-ac5b-7f7a7439ab96 1 Other Other +a106c85b-2617-49f1-97dd-7e5d077d9118 1 Other Other +a106ce66-3fd3-4394-879f-218c7c663f10 1 Other Other +a10770d6-cd93-41d3-8677-7ada69c0215a 1 Other Other +a1078688-e0fb-4b6f-8407-5edf46170c3a 1 Other Other +a10798c8-54be-4496-97ed-fd42f50f2e26 1 Other Other +a107fba0-2c39-47eb-97a5-230da22d7305 1 Other Other +a1080c11-10c3-4ffd-ba7d-78a527d46d5a 1 Other Other +a1081ab8-8d7f-438d-8ae8-cc11093a6ab5 1 Other Other +a108221c-9f11-4f58-b1f4-a2eb5a2cec08 1 Other Other +a1082dac-a930-4582-bb6f-65c84ed4e5d0 1 Other Other +a1089634-a901-4c69-83c2-4b4cc1728534 1 Other Other +a108f270-9dba-46bd-b36c-93aed1f21b76 1 Other Other +a108f9cd-641a-4565-9582-039d4ce35ae0 1 Other Other +a109528b-8f51-428c-ac27-48a5df30c2a4 1 Other Other +a1097268-88dc-4c62-8a3d-efd8556d03cc 1 Other Other +a109a62c-8f27-49b9-9398-a1a5b1706edf 1 Other Other +a109e870-3aee-481c-b7f0-e33cd2a7e8cf 1 Other Other +a10a50f5-7dea-42fc-9e80-301a855d3bb1 1 Other Other +a10a7226-1221-4e26-bd62-96e3196c86dd 1 Other Other +a10a77f1-29a3-4d26-aea6-d4fa67af415c 1 Other Other +a10a9a4f-a2f9-433a-a387-f467a7ababa0 1 Other Other +a10aa559-8264-4ca4-8edf-5a6cb8647c2a 1 Other Other +a10ab41f-b8d1-44b5-8569-97aef50fca2e 1 Other Other +a10b0853-5704-4c35-991d-f33eba1d38d2 1 Other Other +a10b5a5d-7f9b-4dfe-85e0-410384eff2d0 1 Other Other +a10bab64-ac6a-4dea-b561-f7695e8c7d4d 1 James Other +a10c1330-70b9-4e6f-8ef2-4e69cc253d3d 1 Other Other +a10c2366-3cbd-4d2e-995e-580fc42aa80c 1 Other Other +a10c33b0-448f-44fd-ab8b-b73649ae7944 1 Other Other +a10c61ef-23a6-4cd0-958d-2711a2fa2d94 1 Other Other +a10c6d22-3f86-435c-b986-748b712c097a 1 Other Other +a10c7380-06ef-4a7e-aa83-adc877f6c152 1 Other Other +a10c9724-2ce6-42da-afa6-4626045b7bc1 1 Other Other +a10c9a34-d3e2-4765-94bf-dad578b1d352 1 Other Other +a10d0dba-f798-48e1-ad3b-d7fc9440a1ea 1 Other Other +a10d21f4-5f70-4897-b7e1-056fe1737812 1 Other Other +a10d3593-ea9d-43ea-ac79-89b8262d9efe 1 Other Other +a10d6bc6-b0d4-4279-a296-d3138eb3d646 1 \N Other +a10d7b6d-adc4-4c04-b33e-eda0c783ce34 1 Other Other +a10dc3c1-1d67-4194-a561-9f3691467851 1 Other Other +a10ded48-cb94-4d73-b654-7aab65bf4168 1 Other Other +a10deec8-8c71-4a5b-a2b6-a9fcb7741a06 1 Other Other +a10e5056-0cab-4955-b849-a2af384173c8 1 Other Other +a10e6072-2f27-4497-8a08-7bc4585f9b8e 1 Other Other +a10f0930-3782-4ba9-b643-71c4eeac2bd9 1 Other Other +a10f1d72-c952-444e-a3f2-dd304a336c26 1 Other Other +a10f26d3-a957-42fa-a96a-01f5679fb2b5 1 Other Other +a10f2a7d-10e3-44a5-827e-d2b5862633d2 1 Other Other +a10f2f5d-8c4b-4628-82df-8c75a7890478 1 Other Other +a10f67ae-6a4f-4519-85dd-518cef57f293 1 Other Other +a10f7e5d-4c3d-4a42-911c-afd0fe85f86e 1 Other Other +a10f9730-a331-4c4e-8566-80a93c3d0b2b 1 Other Other +a10fe974-740b-46f6-9fb6-fd74a41e3045 1 Other Other +a1101533-55ec-4a7c-a1ec-dc4a74c26ea2 1 Other Other +a1105156-09a0-4b89-b11d-a115f097194e 1 Other Other +a1106b59-6a8e-450d-ba68-162c787ada59 1 Other Other +a110788b-ba25-4489-8ab6-46e8b374f5f9 1 Other Other +a11102e1-2232-46e3-8657-290314abd68c 1 Other Other +a1110332-0237-4138-9a4d-e2607dab15d3 1 Other Other +a11124ed-7068-45e7-b376-d7744aa95178 1 Other Other +a111253b-dff9-4674-afc9-6d62b706a886 1 Other Other +a11143f0-0f27-4354-8a28-de03c0fd5a85 1 Other Other +a1117c62-b9de-425b-8487-3ee8bb8923b8 1 Other Other +a111ad64-cf02-4947-9b87-89c7e532575b 1 Other Other +a111dd45-1ce5-4fa7-a45f-97409eeb2ada 1 Other Other +a1120a4b-9281-481f-bb88-57601a437b8d 1 Other Other +a11224a4-1215-490a-b51f-575c389a22b1 1 Other Other +a112401b-ddec-4891-a7a7-3cead3420ab5 1 Other Other +a112c2ad-8672-4a5f-b748-f15f2af919c4 1 Other Other +a112ea8a-4b1c-4e1e-88bb-d9a59d9920e4 1 Other Other +a112f003-7a94-4d92-8684-82e7af6d86dd 1 Other Other +a1132ba4-9462-4cdb-aeb3-54e3375de3b0 1 Other Other +a1136624-4bd7-4497-ba49-10c82061a9d6 1 Other Other +a1139f94-d765-4f28-aff5-8aea44c356fd 1 Other Other +a113d0c4-9aa3-4943-a076-0b0994319d02 1 Other Other +a113d14d-e13a-4aca-adbe-9b2af2e469a2 1 Other Other +a113f93e-e71b-43d6-bf4c-7fec914aca1a 1 Other Other +a114247e-6c05-431d-bb9b-edb293720315 1 Other Other +a1143926-e514-41aa-b997-360c89b99924 1 Other Other +a1149de5-d98a-409c-bd9a-d79f9d71aebf 1 Other Other +a114a172-6e4c-481e-9bc4-a440c0d3cd31 1 Other Other +a114d6e4-f54f-4503-8124-53aed770a937 1 Other Other +a115192f-e270-4080-a7c6-93101bf77ffa 1 Other Other +a115273e-7d7e-4c8f-96e1-6cffb30c9496 1 Other Other +a1154377-e0ab-4473-8062-4b5f62b8bf53 1 Other Other +a1156788-77f8-4636-ac33-961eee81d3a0 1 Other Other +a11579e4-9f73-46c1-b1e2-d148cbca2bd4 1 Other Other +a1157b25-ac7d-43e3-b46f-37788b7f8f9b 1 Other Other +a11599ac-b708-4d7d-8cdb-676671b0de79 1 Other Other +a115ac1a-c98b-4dc9-b83d-87e383c76cb2 1 Other Other +a11607e4-e964-44ba-8f51-cbf0ad8a3805 1 Other Other +a11639cb-fb88-44a2-b5ba-d30c3409e2af 1 Other Other +a1163a16-574b-47b5-bfc0-99f738cb0deb 1 Other Other +a1167d11-3fe7-4830-889c-5f039c998af6 1 Other Other +a116bf61-6aed-4dcc-8305-003822935206 1 Other Other +a11717b4-7cd2-42ee-a5d9-d37a830bedc3 1 Other Other +a1172f5e-e1ed-4586-9207-c1ed97ba9da5 1 Other Other +a11737f8-a47a-4c40-8d93-fb23750d336c 1 Other Other +a1173839-29d3-4080-96ef-fb1071971e84 1 Other Other +a117750a-5ea1-4321-a27a-dcc3d19ee1db 1 Other Other +a117938e-ae8b-439c-9a82-ba1e13439295 1 James Other +a117bd5d-0e83-4f97-86cd-4cb63ee68ded 1 Other Other +a1189746-c678-41f3-8273-fae2bb4809d0 1 Other Other +a118e1f4-9932-45f2-82f0-07ee91d473e7 1 Other Other +a1192fdb-a5eb-4e30-bce5-75b83a505b6b 1 Other Other +a1193174-c374-491f-98f7-863e8768584a 1 Other Other +a1195720-207a-40e3-bd30-554bfb4fe202 1 Other Other +a119634c-a141-41cc-b1dc-060a56bf322c 1 Other Other +a1197850-ccdd-411d-a7e8-e9e626b6e92b 1 Other Other +a119ad9e-f18d-46b3-96d3-1b6dd90b6575 1 Other Other +a119e11d-e073-4158-a78f-f466f426fcc8 1 Other Other +a11a45b7-d64b-4700-88e7-26141e04f6c6 1 Other Other +a11a6cc9-4dcb-4437-ba5c-902b464269f0 1 \N Other +a11a82b1-e6bb-437e-b8d5-f1eeb3bfafa7 1 Other Other +a11a9913-111e-4524-b7f2-521c605b5f12 1 Other Other +a11ade87-1025-4c56-8ee4-5c90cc935cb5 1 Other Other +a11adfde-6eb8-42c6-9d90-365ce944cfca 1 Other Other +a11b0b0a-35aa-48be-a88b-537677101500 1 Other Other +a11b1183-f2c1-4619-83b2-0571dad5b510 1 Other Other +a11b1370-5571-435a-9459-3f70629861b4 1 Other Other +a11b1814-66a9-47be-a466-57849bcb88cc 1 \N Other +a11b49ae-bbd0-463f-a00b-6217d1a7f0e7 1 Other Other +a11b97d6-5a83-4aae-924f-8e379d170574 1 Other Other +a11c10c9-05ab-4c75-8219-92b27b20f92d 1 Other Other +a11c28f0-9e21-40ef-8f80-82d9e7fb093f 1 James Other +a11c2c33-a0e9-4573-9e6f-1a71c4b9a497 1 Other Other +a11c3c23-072e-48de-8f6f-44d7d15930e9 1 Other Other +a11c4278-49c0-4f10-aa99-0f241ce31254 1 Other Other +a11c9221-0886-475a-b126-27814762afcc 1 Other Other +a11cc32d-fc18-433e-874e-e84ce9f37e12 1 Other Other +a11cc967-3978-492d-a88c-716c4e9ee2ef 1 Other Other +a11d1f83-c17b-438b-bfdd-0f82268a0171 1 \N Other +a11d3d98-c761-4b50-a9f6-8dc6517b427d 1 James Other +a11d88c8-2ee0-4689-9b0f-67303b80d6b1 1 Other Other +a11da735-452a-4ecb-827a-1aced2ddce7e 1 \N Other +a11de004-b975-48ad-8d86-abc137d1078b 1 Other Other +a11ec366-deaa-46b5-96be-408daf487e7b 1 Other Other +a11f0d90-31a4-4a3d-8ec3-6aa9410ee113 1 Other Other +a11f183c-6b3b-4add-be5c-512c0e6c642a 1 Other Other +a11f60ce-6c8e-4846-8593-d00df02a21af 1 Other Other +a11fc130-34d5-46b3-9026-d401ddfbb3a8 1 Other Other +a1204d5d-96d5-4e3f-9129-e079fbe9976b 1 Other Other +a12064cb-5cab-44be-8f32-5eb6ea1efee4 1 Other Other +a12073f7-993f-4cfb-a471-7cd5a6357b77 1 Other Other +a120beca-0bdf-4f47-b858-344291afbf7b 1 Other Other +a120d8d3-1ea4-4016-b074-8f2a33c758ae 1 Other Other +a120f0ee-193b-47cf-a17d-68a5e11da3b4 1 Other Other +a1212bb2-d62a-4528-80f7-ae1d2a4da449 1 Other Other +a12194f9-841e-4b46-b69f-f0e6d50d0225 1 Other Other +a1220ec6-e615-4b5c-ba07-e8bbd22abf22 1 Other Other +a1221d24-c5c0-4ad3-8134-44a06eee4e19 1 Other Other +a1222e22-900a-4df4-a564-7818d611ebd9 1 Other Other +a122a06e-14a6-4086-8d79-84d2d77b3038 1 Other Other +a122c0ae-fdc1-436e-b093-1778efbc4d22 1 Other Other +a122c2fd-8393-45ca-aadb-505791d63731 1 Other Other +a122c3a7-3276-4a77-b9b9-60639ba9e3e7 1 Other Other +a122da09-4832-49eb-9e6f-bd76d5b6aae7 1 Other Other +a1230307-87bf-492c-bcf4-0554e446a25b 1 James Other +a12367ac-19b9-4997-baee-ed2eb437cc93 1 Other Other +a123cdbb-be92-4a6b-a30f-f6412c249127 1 Other Other +a123d8b9-db7a-4ae9-95f8-a759de9c98d0 1 Other Other +a123f969-67e3-4ca0-bff9-168ac7e77a5d 1 Other Other +a12405f0-60af-4197-ad0f-20f0e676b459 1 Other Other +a124269c-8b52-465b-bbe2-5f33312f0b47 1 Other Other +a1242c86-aa67-4d6a-a20d-b5638142b3fe 1 Other Other +a12454c8-6383-4b08-9179-35077b800122 1 Other Other +a124743a-cb1d-4554-972b-5298f642e0a5 1 Other Other +a12478f4-8698-4ad3-a9a3-3ceb3783e8b7 1 Other Other +a1247bd0-2d8b-4e48-a857-ba7fec784240 1 Other Other +a1247fb1-8287-466d-bb13-332eddcc431d 1 Other Other +a124aacc-8e70-4a70-a1d6-7c345c22f914 1 Other Other +a1256372-9d7b-4a81-a154-cc48da0a27cb 1 Other Other +a1257046-4f74-4d36-9d9e-31e64944da60 1 Other Other +a1258f11-4575-41ab-86ac-adf629698540 1 Other Other +a125b89f-1932-43bc-8383-3b775b05a99f 1 Other Other +a125bfb3-5296-4051-a974-6b304568bd94 1 Other Other +a125c5fa-62b9-4a84-b281-235ab5d6db78 1 Other Other +a1260151-b256-4fae-a233-1750e6335bb4 1 Other Other +a12638db-4b41-489c-8ea5-bafdf8fc3f2e 1 Other Other +a1269e90-d99c-4313-8690-9820fbc655fd 1 Other Other +a126a276-8c0c-4d60-aef3-be842b740dbd 1 Other Other +a126bb67-e083-4469-8aad-f126e5a6e74a 1 Other Other +a126c5ec-0fd5-4a75-ad3d-f0e4450506cd 1 \N Other +a126d3f8-6e99-482e-af26-69e2016a75d1 1 Other Other +a126f11e-edf0-4893-aba5-302b5d74a660 1 Other Other +a1270759-eb9f-4e15-8a41-67f95a9c4518 1 Other Other +a1275fe8-4180-4fb8-9316-4b138cef8135 1 Other Other +a127c922-cbc6-461b-89db-5daa77b539dc 1 Other Other +a127f76d-cc1d-4673-9ac5-7f60b499f150 1 Other Other +a127fe33-c367-4731-b98f-3a8c6ab85247 1 Other Other +a128032b-890e-4cc8-b6d5-7153a60b00a7 1 Other Other +a1281007-54d5-4ec7-9c0e-e814dbefd049 1 Other Other +a1288647-a3a1-4120-a9d5-0d29bd5c8725 1 Other Other +a1288e50-27a5-4e56-8747-36d3ff58e1a4 1 Other Other +a129238f-7e59-4b00-b2ad-ea84c9abb67d 1 Other Other +a129ab65-727c-45d4-ad93-a9e8e5162f57 1 Other Other +a12a54b6-d058-49b1-b0a0-589d772da240 1 Other Other +a12a5b03-1247-44fe-9d6f-32cffb3d7e99 1 Other Other +a12a8329-e527-4a2c-abb8-0d753c3d42b3 1 Other Other +a12abd73-d64b-4718-8551-1a91061775fb 1 Other Other +a12b1f99-738a-4b90-bc19-a8bdc9e53046 1 Other Other +a12b5031-a9f1-458c-85ea-b87911c2a391 1 Other Other +a12b5cb7-fbce-428e-9bc1-31a46d2f2eba 1 Other Other +a12b7b63-8b87-4b7d-9eea-50f685c43492 1 Other Other +a12b8856-7933-467c-8f7c-910fddc47c3d 1 Other Other +a12baef6-1183-4496-a5c4-e7e5a425c013 1 Other Other +a12bb407-76d6-4026-8443-208a4c03acb0 1 Other Other +a12bed05-5c0b-41fd-a948-de88d8a40686 1 Other Other +a12c0a28-2ba8-484d-8e47-303a8a2352f8 1 Other Other +a12c2140-101c-4a92-905d-6183de091016 1 Other Other +a12c68a5-9fc6-4f7c-8d78-0fb629081967 1 Other Other +a12c6b1c-d9f0-4f45-8308-4c250186d862 1 Other Other +a12ce9cf-de73-4a41-bc67-2fa62753b65f 1 Other Other +a12d103b-5a15-4396-aca6-ef7cd055a629 1 Other Other +a12d170f-0e37-43a5-bf14-8a10ebc5d7e4 1 Other Other +a12d2082-bc7b-4dd8-8964-863f580d00ce 1 Other Other +a12d76a6-4c0e-4d47-9cb3-ee3c0275868b 1 Other Other +a12d898a-a5df-465e-aab3-7478975238f8 1 Other Other +a12d9957-9bb9-4a8b-9824-2118849b5c8e 1 Other Other +a12dbfca-8fb6-4571-8d57-d71fdaa352d9 1 Other Other +a12dce49-611b-4cec-be94-5da4f03477c4 1 Other Other +a12df576-8716-4e19-aa86-0e4cfe67532e 1 Other Other +a12e09c7-90ca-4bd4-88cb-41df8d34c52d 1 Other Other +a12e8044-3830-45f2-8f48-7e23cbb40485 1 Other Other +a12e87e2-4149-4923-bc1c-c465679f864d 1 Other Other +a12f1801-2a71-4960-a527-9ae759ad64c7 1 Other Other +a12f2d7d-fb5e-451c-8c6a-7b88fd256b6c 1 Other Other +a12f3b05-13af-41b1-a845-313279536fa5 1 Other Other +a12f48ab-5d01-49ae-9f57-0c19939cb322 1 Other Other +a12f6b01-e457-49ae-9277-3d6f048c9651 1 Other Other +a12fab9f-f454-4223-9782-55e0f1366741 1 Other Other +a12faee0-8c1d-4071-bd4a-195174d41d5c 1 Other Other +a1302abc-13df-49a9-a46f-86db95e34e05 1 Other Other +a1304128-ca58-4d29-8e3a-cb6dc9f1e4cc 1 Other Other +a130467a-7462-4620-be17-d347ba7b3355 1 Other Other +a1304b3c-d8bd-45ad-a793-8b94f7ad7155 1 Other Other +a13106e0-07fa-4215-956d-dade0413229c 1 Other Other +a13108e1-d683-470f-8a05-bf93fc7f06f4 1 Other Other +a131907c-8d62-485b-a2b6-29980ec31f34 1 Other Other +a131a91e-cfcb-487d-a2ff-dc22624a979d 1 Other Other +a131b7aa-a8e3-481f-9191-6160f69143e3 1 Other Other +a131cc4d-a544-4195-8c14-231b52ab6c1e 1 Other Other +a131e476-f5f6-41f4-a583-e01ad806ee82 1 Other Other +a1320c0f-16f7-451e-aac6-d1774a9b7cd2 1 Other Other +a13212af-ebc8-4c1a-bcc8-9d751bbf1da0 1 Other Other +a132208f-069c-4646-9683-ae9d60cdb182 1 Other Other +a1327d1e-f07f-4da1-9703-3161e8ad82a8 1 Other Other +a132c2c0-5084-49f4-8d73-d3105cc8e6d7 1 Other Other +a1331868-9872-473a-82b2-ca17199d93a1 1 Other Other +a1331d19-5dec-40dd-b757-04c7d8fd04e4 1 Other Other +a1332549-0d25-40cc-8463-1b12e867a70f 1 Other Other +a13326a1-15d4-4216-9cea-cab9cb8edda6 1 Other Other +a13356ed-80ae-4d49-98d3-2af264e8e90f 1 Other Other +a1338ca3-e8be-49ab-8c81-b34d3becf22c 1 Other Other +a13391a9-6ba7-4242-a82c-d6cce4be2d5e 1 Other Other +a133e7fa-f346-4310-9ebd-837340e964c7 1 Other Other +a1341366-5bf9-4509-b15d-87a7b262b499 1 Other Other +a1346f36-3744-4ca3-bfc4-7c2be6058bc5 1 Other Other +a1348065-7101-42af-87e5-38c4b8414829 1 Other Other +a134bbaa-d185-479d-988e-a6b14c6933be 1 Other Other +a134d31b-596a-41bc-9bcb-4754c2a6df8b 1 Other Other +a134fda3-5c88-403e-b441-68c184df5708 1 Other Other +a1350a02-b10a-4c11-83b6-5a7d69792fd7 1 Other Other +a1353ad6-aaa4-47a8-82cc-cdf2cc1ba4fd 1 Other Other +a135534b-830c-445b-b1ad-56ec01791e36 1 Other Other +a135629f-633b-4228-955c-71dded46a9a6 1 Other Other +a135a10e-0603-47ab-9921-0cfc7a6c3372 1 Other Other +a135db65-3548-4631-ba7d-d7a7363bf594 1 Other Other +a1360124-3ee6-4e32-89cd-e63c76fa2d20 1 James Other +a1362f9a-ca51-46f9-84b7-4af98e02f41f 1 Other Other +a136a21e-99d4-4918-9ce9-753df538e635 1 Other Other +a136e150-6235-4a44-ac41-f5f134f5a135 1 Other Other +a1374f92-68ae-4821-8ceb-cffba4da2e3e 1 Other Other +a137a571-eae8-450c-84da-1a2e90fd0984 1 Other Other +a1388f32-628b-4600-bb2a-da5440d17f05 1 Other Other +a138ac2b-c7f6-4985-98d9-42720a5400e0 1 Other Other +a138b8f5-0eee-4900-b936-088f450450fc 1 Other Other +a13916e4-932e-463c-8fda-8ae241b3ecd6 1 James Other +a139295b-cfd3-4769-b0cc-f75e0c2d7f4b 1 \N Other +a1395693-9f76-4031-a74e-b1c1d0c7a554 1 Other Other +a139a02b-04b6-4341-bdbf-ad7dd0905924 1 Other Other +a139b14a-195d-4355-a9c7-31d9c55cfe8d 1 Other Other +a139e65d-c30a-4da2-b721-4319c269b8d6 1 Other Other +a13a4fad-afec-4bc1-85c7-11cff254f836 1 Other Other +a13a612b-41b3-4175-91f0-2d40b5e153ed 1 Other Other +a13a6fb5-8edf-4086-9311-a11f894f058e 1 Other Other +a13a9b21-fb27-4241-8393-5eec8985a982 1 Other Other +a13ab6f2-e217-4541-9563-5ff58dc91d38 1 Other Other +a13b19b4-20ac-4af2-9df2-cdfff1fd2f9c 1 Other Other +a13b993d-3049-48e2-9de4-95f2dd054ef2 1 Other Other +a13bb9b7-8eeb-4cce-95dd-052304401b80 1 Other Other +a13bdf70-addb-4a10-9723-170ee39faa3a 1 Other Other +a13bf16b-0cf7-42ff-a837-928c3f9f50de 1 Other Other +a13bf889-16f9-4382-b5ca-72fd5406d36d 1 Other Other +a13c4c69-3d72-4582-adfa-139e56e08e8e 1 Other Other +a13c8200-6b77-464c-935f-7945010dd9c0 1 Other Other +a13c8388-2e84-4288-b0af-2fd7e6e9d1ee 1 Other Other +a13cc23b-c7a1-488c-8548-059c4ea274b3 1 Other Other +a13cc3f0-c9d8-4d3c-8c2a-8fcc2e6e2c70 1 Other Other +a13cd482-285a-422e-ba81-1e61a98f0bd7 1 Other Other +a13cecfd-5dd6-4e13-a716-b73ad3662a70 1 \N Other +a13d0187-8d3f-4712-a7a9-510ebe27060e 1 Other Other +a13d0e17-6ccf-4541-8bdc-a75c5ef25585 1 Other Other +a13d1b33-3c10-437f-b56f-d168a567802c 1 Other Other +a13d2982-b1f2-4013-9637-1401d8d99eb4 1 Other Other +a13da787-2175-4480-9485-21fb725f5f78 1 Other Other +a13db2e8-7699-416f-becd-16f8934046c8 1 Other Other +a13db611-ff4e-42a8-b6f7-b11573ef36e9 1 Other Other +a13db847-6c21-43ec-99be-0a8ca03790c8 1 Other Other +a13e97db-a547-44e9-9cc1-83c1c19d82fd 1 Other Other +a13e9d64-c415-4e28-8115-37dc438ce840 1 \N Other +a13ea748-c957-4435-bbef-2cf75201e135 1 Other Other +a13ec0e7-90e7-4d25-adb0-fb6482a0b0a8 1 Other Other +a13f2189-d2a9-404e-92fb-861eee3fd3b1 1 Other Other +a13f2318-6a99-4a33-b391-caa565d63396 1 Other Other +a13f8951-5941-488c-83b8-a01aec728d07 1 Other Other +a13fca90-5c89-4ab2-9c5d-06e6f6d56986 1 Other Other +a13fd45a-b259-44a9-892e-e3fd0bf0687f 1 Other Other +a1402486-414c-453c-b0e5-fcd904bfe5be 1 Other Other +a1404993-baa9-44a5-ac36-f1a4a82f5cfe 1 Other Other +a1409a29-661c-4e5d-89cf-1fd8ebe119b9 1 Other Other +a1409d00-df4e-486b-bbe4-2b77be87a9f5 1 Other Other +a1409e7f-fcd7-46d4-9c7e-063696042aa1 1 Other Other +a140a706-f517-4bb5-a9d0-545999dc19b2 1 Other Other +a140bc68-243b-4a9c-afb1-19429dd5c108 1 Other Other +a140ca46-9d78-4a7d-b014-dceb4a9ba1ca 1 Other Other +a140e850-5cdb-453e-8df9-b04b71bea46a 1 Other Other +a140ebcd-a34d-41a2-b40b-9e0a050488d3 1 Other Other +a141276e-ccdf-4bd2-8315-5efdc99ae3f8 1 Other Other +a1416c33-7dc6-4bd8-9b2b-f3d6fefc0cde 1 Other Other +a1417c9a-f63c-42c9-ad09-ca2ff22d9e27 1 Other Other +a141a91a-c567-42fb-872f-091646888f5c 1 Other Other +a141da8b-42d6-4dfe-9777-4663495fca51 1 Other Other +a141fe6c-9500-4097-a422-09477b38c1dd 1 Other Other +a1421241-d41c-40d5-b6da-aaffa96872e7 1 Other Other +a14216f3-e922-4380-b0c1-3f69c0845121 1 Other Other +a1421791-70e7-489a-ae62-560e304e9499 1 Other Other +a1422e74-9507-48cc-9087-d24b5c849bbd 1 Other Other +a1424154-e58c-4289-a0b0-6a6325561e9c 1 Other Other +a14245f7-c39e-4bad-ad39-ee979ec30b3e 1 Other Other +a1426a90-4aee-4956-a751-1ce6a9c84724 1 Other Other +a14273ce-9e62-4d8b-b796-6eb80ed42f83 1 James Other +a1429f86-9ddb-43d6-85f1-3c500ae8873f 1 Other Other +a142be94-c2ec-4912-a035-42be9bf120f8 1 Other Other +a142d885-ead5-4ade-b8fc-f56cf456b8dd 1 Other Other +a14345f6-2ec9-4f48-86a6-0ab0a3a033f8 1 Other Other +a143608e-c517-4392-a9f4-2e4d617fa9e9 1 Other Other +a143c438-8931-4bfa-89ff-e4279d243f18 1 Other Other +a144a411-3f66-44cb-99df-36edef2c5869 1 Other Other +a144e6b1-8e99-4d1b-ab61-250090c08ee2 1 Other Other +a144efc9-2f8a-4787-b5d7-eb0411d8c459 1 Other Other +a144f7bc-7dbf-4bc7-8875-b09e0c7e90a9 1 Other Other +a14504b1-4028-46df-94b3-2ee7f6cd1a61 1 Other Other +a1454988-10d2-46c2-88ad-8a4d07e94043 1 Other Other +a1457bb4-94d5-427a-8ec3-c3af2d595de6 1 Other Other +a1458a72-dc53-4fab-b59e-602fa221c721 1 Other Other +a145f594-4f1a-478b-a0e5-7185df29e75d 1 Other Other +a146097a-fd87-4c3b-936d-11787fd72d36 1 Other Other +a146512f-13b6-49bf-be62-bea77594aaa8 1 Other Other +a146e9a4-c091-413e-b3a0-b95e05acd7d7 1 Other Other +a14722fd-23dd-48fb-ab58-b50599cac2a1 1 Other Other +a1472a5d-1d89-4acc-8b19-e66272ee4d47 1 Other Other +a147b944-3b3c-437e-8828-3f5a18879c11 1 Other Other +a147c5fb-8cf5-4c6d-b895-f96219bea42c 1 Other Other +a148135f-e7c9-44c2-b0f5-ee0dd8d1aae9 1 Other Other +a1481da8-fc27-4e52-93fb-9a530e1d9cfa 1 Other Other +a1489bbf-ca63-4235-93fa-2a5578b01451 1 Other Other +a148aeec-8830-4a56-8d67-b0b401b14e6e 1 Other Other +a148b22c-bd16-40d7-8990-2c761a510ff9 1 Other Other +a148bf55-181d-4bd0-a90f-1ecd530bdff8 1 Other Other +a148f8bb-c009-494a-a28e-a257e9404cfd 1 Other Other +a1496b47-b887-40fe-8336-924442eb16a6 1 Other Other +a149a6d0-5fa2-4f68-97df-4f53ff317bf0 1 Other Other +a149b533-2630-41ef-bd3d-95070a6b2487 1 Other Other +a149e1ed-7b8c-4191-b752-a5b7e8aa85b3 1 Other Other +a14a1233-8143-4aaa-ab08-b369219eaf19 1 Other Other +a14a90b4-0181-441a-a2a5-a1497a47532a 1 Other Other +a14abfc8-f31a-45b0-a615-06477b8b22c4 1 Other Other +a14b5644-bd24-4b2c-9e49-b7ed5ddb5ad8 1 Other Other +a14b81d7-6bb6-4877-9f48-ea1e1949ec2d 1 Other Other +a14bce22-8187-45e6-afa8-26c47e5a9d64 1 Other Other +a14c1355-7f54-45e2-a25d-5d46f65bbaa9 1 Other Other +a14c2ed0-1ca6-4179-ac53-b1f11df1d0bb 1 Other Other +a14c84e9-eb87-49e8-bdd2-809ce017246c 1 Other Other +a14cb5fe-f752-4b6f-ab5c-32bab6215d83 1 Other Other +a14cbb7f-bd0d-4f10-8892-350ee54c42d2 1 Other Other +a14cc732-72e9-4f4c-9503-e686b21aaff5 1 Other Other +a14cc8a4-5c63-421c-8801-6b0c8a6ab3f6 1 Other Other +a14cd440-d1c5-4adb-af97-56aeb04d80d1 1 Other Other +a14d0731-1bfa-4734-9b61-a8dfcd2ff791 1 Other Other +a14d0bcf-ff24-4041-a4a7-2429deff2d35 1 Other Other +a14d6d8e-9715-4aca-ac60-f5803c095df3 1 Other Other +a14d8705-fb24-47ed-89ec-c7c615f35c7c 1 Other Other +a14d9edd-4e49-48c1-aee4-25a614cc8ff9 1 Other Other +a14db075-12ec-4b14-8aeb-c2b4929578ba 1 Other Other +a14dd295-a4a3-41cb-980f-d72d1ed5fdc5 1 Other Other +a14e11cb-ee1a-440e-8f4e-d61b81666b23 1 Other Other +a14e7ba7-f147-4ee0-ac5e-3d94ec39f36e 1 Other Other +a14ec4e0-7242-471f-9840-e3f648d66a16 1 Other Other +a14eefb6-e0a5-4e37-834d-cb4e4cfb2ed3 1 Other Other +a14f01cf-4e0b-4c91-b9f0-27fab26b5a1f 1 Other Other +a14f8ba3-f882-4110-9bc6-fd8505e99308 1 Other Other +a14fdd1d-903a-41d6-9df6-325273a085cc 1 Other Other +a14fddab-fd49-44e3-a275-0bb43d904c2a 1 Other Other +a14fe7dd-0778-40f6-a83c-bc3e86f8d558 1 Other Other +a15072e9-2641-42cc-b141-6cb7c5c53eb5 1 Other Other +a1507785-bc26-48a2-8022-7e710ec73c8c 1 Other Other +a150911b-42ea-4cfc-a5c1-093db5847491 1 Other Other +a150d9e0-f3f4-4b91-a39d-c67866ca41d5 1 Other Other +a150e88e-264a-4c77-b209-ef2ef66a4f27 1 Other Other +a1510d14-abb4-4874-b104-20449b56fd20 1 Other Other +a15185d7-90e0-4cbf-a550-05424978ca9a 1 Other Other +a1522259-57a3-4a80-b1a1-a90ff38d82e9 1 Other Other +a1523256-8868-43bb-a8f5-3c1c604fcd81 1 Other Other +a15245a5-e5b6-459b-8a61-4b79d2bdc1d9 1 Other Other +a1525b92-46b7-4210-a0ac-a9d8c819ccde 1 Other Other +a1528218-8c15-4991-885a-faf761e7745a 1 Other Other +a152899a-86ac-4c3a-8612-16d05f18ca7c 1 Other Other +a152c5b9-78e3-4a7b-a04e-cd1c33b4c5e7 1 Other Other +a152d522-956b-440d-b31d-5c3ad49b6936 1 Other Other +a1530fd4-ab6f-4e9f-b933-b820ac1c5187 1 Other Other +a153aaa5-6b1b-4c8d-a7e7-600a0c496c24 1 Other Other +a153df74-9c86-11e7-9261-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +a153e0dc-c859-459a-976c-f35d252ab322 1 \N Other +a153fc28-c191-4006-a65b-7a540afec514 1 Other Other +a1546f08-5f76-4258-8bc2-7a2b35425836 1 Other Other +a1547413-1242-41a1-a8fc-0ebca7cc80e7 1 Other Other +a15592cd-7f13-405f-8a43-12896c18a6c3 1 Other Other +a155a48a-b9ce-4f5f-a526-da26bf8ae2e6 1 Other Other +a155b191-40f2-4abe-a6ae-26b726167e40 1 Other Other +a155bac2-23f3-49ad-be06-ff4e7d9f0b64 1 Other Other +a155c921-2f01-45af-ab1c-e0e602b382f7 1 James Other +a15604af-d306-441e-bac2-b6b5caaec49b 1 Other Other +a156179e-ad46-4793-a4dc-73ff37e1e308 1 Other Other +a1561915-ecfd-459f-b672-a542a9a27dd1 1 Other Other +a1565bf0-b28a-4e89-95db-4cfd58e9583c 1 Other Other +a15677b4-1df9-49e4-a7e7-00e5cb3c6cd8 1 Other Other +a156cdd0-fb06-4f0e-94d1-ba98d3add870 1 Other Other +a156eabc-ee60-43ab-9184-b6828313d794 1 \N Other +a156f771-854a-4d57-9a3d-bd36784388a5 1 Other Other +a1570d01-cb2b-43ce-803d-1655d48a41e6 1 Other Other +a1572111-4424-4b87-ab54-a8057d230254 1 Other Other +a1575360-0e05-4e1d-acaf-899cc4fb8706 1 \N Other +a15756dc-1f1f-4808-b73f-5fee468d8284 1 Other Other +a157bac7-5c1e-4347-b34e-7de0e90a3788 1 Other Other +a157d4b3-847a-462e-aa6c-f1eafefd298b 1 Other Other +a1587866-5882-4415-984e-b3ed554254d7 1 Other Other +a15908e0-9a77-462e-9782-d941f93de8f4 1 Other Other +a1591bee-e201-486b-9ff6-9b678cf9d65b 1 Other Other +a1592d45-34d9-44d8-9f45-1929543a3395 1 Other Other +a1594f62-ee98-462b-b243-3caaaaf91b04 1 James Other +a1595214-fbc4-46d5-8227-f5177e79222a 1 Other Other +a159586f-924d-4754-a41b-56a59dae1fa3 1 Other Other +a1598d30-26c8-488a-bf18-f0517e4c074f 1 Other Other +a159ab9a-8570-4f36-baed-3704c9b53879 1 Other Other +a159ae86-2c48-496f-914a-707d183f08e0 1 Other Other +a15ac9a1-214c-4fb6-8f4d-5b8be7e9d80c 1 Other Other +a15adca9-7eb8-4e4b-bc08-725c5c331b8a 1 Other Other +a15af65e-f96f-4caa-9317-4d61e2067aee 1 Other Other +a15b3ac7-a57d-4642-806f-db26f2e0c06c 1 \N Other +a15b3e16-043f-44ea-beef-f0d08e996f3d 1 Other Other +a15bc5e4-6e08-4794-afe8-59bdc21ace85 1 Other Other +a15beefc-34d8-46a2-87bc-5fabff8df745 1 Other Other +a15c2250-63bc-4c21-ae61-d9543b451c69 1 Other Other +a15c3e57-acd7-4ea8-96fb-c871f7295e94 1 Other Other +a15c70e8-93c8-4d6f-9271-2f2c03bd286b 1 Other Other +a15c86ff-8f98-4daa-8bc1-69415d822623 1 \N Other +a15ccd31-d8b4-4e47-8360-bff4588f826c 1 \N Other +a15cdb71-95f8-4219-aa64-fad05520f1c6 1 Other Other +a15d4833-7d14-4e3d-94f5-a4878e701839 1 Other Other +a15d9239-8209-41ab-ad16-9991231996f0 1 \N Other +a15d9d43-08bc-44d2-b6af-4b43c4ce8fd9 1 Other Other +a15dbf3c-251f-4f10-b215-3c7220c7aa7a 1 Other Other +a15dd654-e602-4a29-80d6-6746d86947e8 1 Other Other +a15de565-a44b-4c58-8369-ef508148901d 1 Other Other +a15e71cd-6eab-4449-9a95-0d0daf2966ff 1 Other Other +a15eafa0-f1af-4681-90ff-c8462d3a8ebe 1 Other Other +a15ed974-d7af-43bb-86f1-836a773679b4 1 Other Other +a15f14fb-477d-4aed-9c94-bc7d45b3b9a7 1 Other Other +a15f21fa-b9b6-42dc-a66e-65bf4d8fd349 1 Other Other +a15f7628-0590-4175-983b-d48be6cf4cf0 1 Other Other +a15fa091-8c60-4c48-9006-c88892442b21 1 Other Other +a15fef7e-fb7b-45a7-b1d4-6e0be6bd6961 1 Other Other +a16001c8-5f38-484e-9980-d9638d2069c5 1 Other Other +a16003eb-428a-4ab9-bc5d-305ed3a3717d 1 Other Other +a1602032-03a4-4e57-8ebf-c8b7ab0d2f0e 1 Other Other +a16031de-e262-4a2d-bfb1-185ae6366827 1 Other Other +a1603ea5-ca1e-4a01-8348-aea7c50869e9 1 Other Other +a16059a2-5c3d-45a3-a890-87b4b9bb44d8 1 Other Other +a16096e1-5c63-4292-9282-14a563b8418f 1 Other Other +a1614aa8-aaf0-4061-934b-61d0354f668f 1 Other Other +a1615293-1309-4a71-8870-75f74ba4ba9d 1 Other Other +a16165fe-93d2-4c20-bd64-433f91e47a23 1 Other Other +a161733d-3e5e-4c77-816f-16fe2ded746a 1 Other Other +a161948d-84a6-4417-9019-edc0b770f132 1 Other Other +a16194d5-b352-4cfa-98ed-4516b9c89dca 1 Other Other +a161b4d8-2499-4e25-b9e8-767b6a310c2c 1 Other Other +a161bd1c-63e4-45cb-9c14-c0f4f1e2744e 1 \N Other +a161ccc5-b05f-431a-8c57-7d2a3e412fd9 1 \N Other +a161ced0-1c22-42d3-a03d-ad39a5a74e22 1 James Other +a1625660-4321-4759-933c-baf6a92292b8 1 Other Other +a1630af7-239a-459a-b54c-5064d82102b6 1 Other Other +a1633761-b08c-482a-b59f-21184ca8d797 1 Other Other +a1637a06-eafb-4da1-a948-16145147af15 1 Other Other +a1641242-b93b-4fd5-83dd-3de7516f86c4 1 Other Other +a1644ca9-483a-4c0d-82b6-b4063ff65561 1 Other Other +a1645caf-53da-42e0-9697-3a26fa97b1c4 1 Other Other +a1646e54-8fe1-4342-8ccc-7729d46e70f0 1 Other Other +a1654b3f-81b7-4a03-ab9c-476071d61331 1 Other Other +a1654b7b-ab45-4557-acbf-9929c5a154c0 1 Other Other +a1656148-5514-49ce-977d-6b9c51be0daa 1 Other Other +a16578c4-93a5-49e2-96e8-c7cbad556ebd 1 Other Other +a165ba99-e6ca-43bc-86ac-5cfae4d70e80 1 Other Other +a165f65a-1584-4328-a3c9-f99618ceb706 1 Other Other +a1661aec-ef2a-44b4-a7cb-072a90b0fd5c 1 Other Other +a1663cfb-8223-42f6-a0eb-ab670213e899 1 Other Other +a1666e17-42aa-4b1f-8932-70354f791fec 1 Other Other +a166705c-7f0a-4c0f-95fb-87c545ffbd21 1 Other Other +a166b922-78ce-45e2-a2c3-fe72ee2c9464 1 Other Other +a166eebe-7b53-4227-b87e-7846c9a70700 1 Other Other +a16792f9-1cbc-40f3-bfcc-a01b5755b363 1 Other Other +a1680032-cd80-42d4-a958-d9e10183d5a6 1 Other Other +a1684b50-4532-45c8-bed0-10970f9d551f 1 Other Other +a1686d97-49dc-41fa-84f5-a95687751acb 1 Other Other +a168b302-5e99-4609-b550-eb994fc443bb 1 Other Other +a168c846-1f6d-4eca-b429-081cd0831d0b 1 Other Other +a168da79-3cee-485a-91ad-6fe40e5dce8e 1 Other Other +a168e3d8-11a3-49d9-9aef-740c4d201ae1 1 Other Other +a16908d0-9779-4328-9d23-5a1ccfd77dae 1 Other Other +a1698951-081d-4886-9ae2-bc51396279a4 1 Other Other +a1699a85-a078-4317-a349-e1b7f71fb753 1 Other Other +a169a817-d888-45a4-a788-485bbaaa3159 1 Other Other +a16a12ad-91ca-40e7-93b9-7ca1c4366f9e 1 Other Other +a16a3741-d516-4917-b321-b4262da4f92b 1 Other Other +a16b01d1-26f1-45f3-a1b5-181ac874c9cb 1 Other Other +a16b682c-f8e7-4e3d-9b93-8eb33b225c90 1 Other Other +a16be086-5640-4baf-b802-52702cdb896e 1 Other Other +a16bf5df-c734-4340-aa31-e3dd44c0664a 1 Other Other +a16c369b-662c-4cb9-a374-dff467e1a153 1 Other Other +a16c6ec2-5e55-4f8d-ba95-3ef25ea84525 1 Other Other +a16c6f33-3866-474d-8c02-23ee839d5b9f 1 Other Other +a16d3d39-ec10-4fbd-b800-2ec16ce46912 1 Other Other +a16d6064-a554-4758-872a-d14d6627b8fa 1 Other Other +a16da674-c1c9-436d-8d99-2d36f1aaa90f 1 Other Other +a16e18aa-8ad4-405b-a323-01e4d926bf38 1 Other Other +a16e9464-e61f-40e1-ae19-4c63ffb70935 1 Other Other +a16edfce-35b6-4071-8828-95884d7e17be 1 Other Other +a16f17f8-fc7a-4a9b-b7c9-603e191956dd 1 Other Other +a16f207a-8c08-4516-880a-a32ca11189cd 1 James Other +a16f382a-ee20-427e-a2d8-33e5d8c9211b 1 Other Other +a16f3b3e-89db-4bbd-b7ce-e0f65044a4e8 1 Other Other +a16f5ff2-b76e-481b-820d-fcc777e12c57 1 Other Other +a16f86ea-c350-4601-a069-f2b0b4de8ac5 1 Other Other +a1700496-83d4-4ddc-943e-75bb2c4affe6 1 Other Other +a1706c08-5584-4b87-87d2-78a20f0f6450 1 Other Other +a170ebcc-e98a-4e56-abe0-d74a4ec40dfa 1 Other Other +a1714d4f-8188-4cf3-89f2-0f5a2e3ed507 1 James Other +a1715170-e612-4edc-9a6e-19b2089d27a4 1 Other Other +a17159b8-6ab1-4cf1-ba1c-1650a02197e5 1 Other Other +a1716f6b-604b-41b1-9c77-6fc3c3b87570 1 Other Other +a171c253-8d70-4893-99b1-f66e3a1271ee 1 Other Other +a171c4d2-9456-4b79-90e2-53578d12e118 1 Other Other +a171e12c-4fa9-4140-9973-587a2c40a320 1 Other Other +a171f63d-cd9d-4f9e-bd35-944a564ef345 1 Other Other +a172731f-b406-4f28-88c6-7eb93680ab98 1 Other Other +a172ae09-1abc-4c54-8cf8-b62225cc131e 1 Other Other +a172ef8e-3b6a-49ef-ba9e-bf9f24a29fba 1 \N Other +a172f4c2-3449-4561-a073-a8142811071a 1 Other Other +a172f8c0-8aba-49aa-b4c2-96520d74ac70 1 Other Other +a173030f-4e8e-44e7-8262-07f6548ec1f2 1 Other Other +a17341ec-6ee4-4365-9574-e96ef3e1a996 1 \N Other +a1739ae0-5bea-48f4-aad6-64da0acc1801 1 Other Other +a173aee4-7cc6-409d-aeee-9523f6680cf8 1 Other Other +a173e3e1-7bfa-414d-93d5-3e12dd35b991 1 Other Other +a173f328-d177-4439-9fdf-3674167dcdef 1 Other Other +a17407e3-3779-4b98-a037-f08c5e87b9f0 1 Other Other +a17412da-3ffc-4bf6-abfe-f1be253548c3 1 Other Other +a1743608-bddc-4a96-bd67-0809353cc5e4 1 Other Other +a1746821-c1d6-490a-b196-2bdddb06931e 1 Other Other +a1747b7f-7fbc-4245-818d-3c2af0187895 1 Other Other +a174e8f5-dda2-48e8-9c85-31a20a7e6e3d 1 Other Other +a174ec56-2b91-4b6e-9cd7-a093d1b1f7d1 1 Other Other +a174fa22-6a8d-4041-abfe-1556d828eb1b 1 Other Other +a1752308-b218-46fd-b6f2-bcdaac5affad 1 Other Other +a1753f00-8cc9-4bd4-9513-6e6cc8eb94e8 1 James Other +a1755474-c980-47b2-8f56-8e7a06247dfd 1 Other Other +a175c433-99f3-4013-8fed-b4be7ea71a56 1 Other Other +a176303f-438a-44d2-9951-fa4713cb862a 1 Other Other +a1764191-85c0-4a27-a7e2-4b65f1d6e648 1 Other Other +a1767396-3fea-4169-a6d8-d5f36bf03f56 1 Other Other +a1767a2a-abb6-44fe-97cb-a139ffb94b71 1 Other Other +a176d712-87e8-4e47-9115-1cab89976b22 1 Other Other +a176f1c5-08b9-4e4f-8c03-f7249fb2181b 1 Other Other +a1776475-2ae8-433a-82f2-1bd4c6e86114 1 Other Other +a1776be0-0b97-428a-8ca2-ec046b87b6f6 1 Other Other +a177755a-8f6f-439a-a5de-e2d99a99a941 1 Other Other +a1779644-f5d5-486f-97f4-4ec9d3199ac6 1 Other Other +a177c589-002c-421b-beec-97d9dc86a0c3 1 Other Other +a1783daa-e130-48c9-a7d6-f35cffbdbb3a 1 Other Other +a1784627-8a12-4fa1-a092-f54c93593571 1 Other Other +a17863ea-6c1c-4728-954c-70ccb57870f0 1 Other Other +a1789ed9-280e-45bd-9950-8e89c9f65501 1 Other Other +a178c4e2-89ec-48cc-81bb-5d032365cbb1 1 Other Other +a178c893-071a-4337-847c-fa5a318e733c 1 Other Other +a1792cc4-6850-44a5-a05a-91f9ba4361e8 1 Other Other +a17941eb-45e5-44c7-b099-4160412ecfba 1 Other Other +a179c9c7-bc1e-4f04-8347-97b12fa780e6 1 Other Other +a179d6af-4f52-4373-bb16-d46ffecc4a14 1 Other Other +a17a3dfb-df4c-4c56-bc8b-896faf9f22e1 1 Other Other +a17a498e-6bc8-46d9-a462-16bcfea1e178 1 Other Other +a17a50cf-8a7b-4c1a-bd4e-f63c31822c4d 1 Other Other +a17a9757-1e52-440c-b5af-44a2f23e2ff2 1 Other Other +a17ab03f-11bc-4399-99ae-7cf935d5eefa 1 Other Other +a17aca29-4e84-457d-89a3-43d36d1fe1a9 1 Other Other +a17acb42-d196-4a10-98d9-10494e1fa860 1 Other Other +a17b0387-a7c7-4a3b-a13b-7570d66c1405 1 Other Other +a17b914c-2f46-40b7-ab98-981522f9edc8 1 Other Other +a17b9db9-fe6a-4756-9b4b-7116b4cda4c9 1 Other Other +a17bfcfe-dc80-4384-a330-ff7335aab3c0 1 Other Other +a17c0d7a-02c8-4b90-aa5e-1f52bf00dca4 1 Other Other +a17c1bc6-dfaf-4ece-afec-20bb6547a649 1 Other Other +a17c2e3f-6c89-438f-bf6e-e5fe53351403 1 Other Other +a17c4ce8-d0ee-4407-b259-00372a7439c0 1 Other Other +a17c62e1-5ee1-43e5-bd1d-3131c3f79395 1 Other Other +a17c7813-0fac-4b48-bcf5-0cacac11b448 1 Other Other +a17cc0bc-3f41-4765-81a5-6d5d9b2feff8 1 Other Other +a17cf569-478f-4fa5-bd7d-a1dd90b94ea2 1 Other Other +a17d35ee-ec3c-46f9-93b3-2406bc0f800e 1 Other Other +a17d3e83-9142-4e88-bb05-c89d1f82594f 1 Other Other +a17d8de6-b5f4-498c-8b96-a0670c5d32ae 1 Other Other +a17e3669-ac34-4e23-9bfc-ed9db1b99cec 1 Other Other +a17e43a6-5d68-4a1b-9140-4d215c5ade85 1 Other Other +a17e6188-0886-49b0-b9a3-06a75349b00d 1 Other Other +a17e654a-d1c2-4a85-b125-11f369650da5 1 Other Other +a17eec87-d35d-4283-b8f8-8f091db76bd2 1 Other Other +a17eed9c-6425-4719-9ef9-6b6f5352a6a2 1 Other Other +a17f0b78-3f19-4b86-a791-3c7335d3f405 1 Other Other +a17f2b68-1ef1-4c2f-b0f5-b7d75f6a6bd2 1 Other Other +a17f30a0-cba0-4823-8c3c-bc6aa4c1035a 1 Other Other +a17fab16-f2bc-4db2-b408-cbc9a67e2307 1 Other Other +a17fda5f-efe3-4a01-b456-96028b55a444 1 Other Other +a18026e7-d09c-4041-8a19-4464b1ddbd49 1 Other Other +a1802a59-3428-4d59-be7a-0f190d4e3ac5 1 Other Other +a180545f-e9c8-4103-a195-32825adc9e17 1 Other Other +a180bdcd-26d6-4e12-aac8-4e5f0ce866cc 1 Other Other +a180df1a-be83-4af3-abfc-cc01dcb0db79 1 Other Other +a180df35-d606-4c9f-86a9-cf832ea4429b 1 Other Other +a181751e-f8ab-4c3b-9213-740ecff633c9 1 Other Other +a1817ed1-b4f0-4f41-831a-15896cb6c4fa 1 Other Other +a181f358-d8fb-41a6-9dfd-a0193462c050 1 Other Other +a18204d9-c5a4-406f-ab93-60beed7eee38 1 Other Other +a1820518-5014-4c07-915a-86d6c439aad1 1 Other Other +a1821a0a-e809-4bda-b2aa-851d16fb3c13 1 Other Other +a1822542-7017-4bf0-bca5-e6530018a715 1 Other Other +a1827fd8-fc91-4432-9f87-c196a91b3197 1 Other Other +a182830f-52a4-4f55-8abc-8e4a1566870c 1 Other Other +a1828fbb-883f-42ee-82e4-2e58796754be 1 Other Other +a18298b2-0f64-4167-8c60-c862079a8ea3 1 \N Other +a182a78d-76f8-4a37-b69a-aaa1086838cf 1 \N Other +a182f9b0-f832-4b12-85c6-7ee8bede717d 1 Other Other +a18367db-75f9-4cb2-b285-69a795430485 1 Other Other +a1839e24-7274-4302-9535-911d2e181225 1 Other Other +a183a754-5493-4174-8e60-fab5dc2ed3c2 1 Other Other +a183badd-c21b-4641-9c01-037edb6481a5 1 Other Other +a183f725-6802-47c3-b611-5e9ae4ceefb3 1 Other Other +a183fbff-41a3-4ce6-bc30-985a5bfe1c79 1 Other Other +a18449fd-5cc6-44e3-91e1-f007d14eeb5a 1 Other Other +a184b7c2-8382-4a32-97fe-2fe1327b8a43 1 Other Other +a184bfda-74af-4cfb-8ba2-e65e0de64876 1 Other Other +a184e46a-d4a0-4c27-b4ca-3a4e1f307b9d 1 Other Other +a1852649-b1ef-40c0-88d5-2a9378f16214 1 Other Other +a1855658-e4cb-471e-bb6e-56c4bdd8341c 1 Other Other +a18558c3-285c-458c-a2ff-4650e937c9c9 1 Other Other +a185bcaa-9f5b-4269-bf24-1a06584a4fac 1 Other Other +a18607e2-856d-4abf-ad3c-23006c541b98 1 Other Other +a18608dc-53a2-4db5-9682-0d02634c68fa 1 Other Other +a1863549-78ab-49d6-a306-cdd77650ec6a 1 Other Other +a18662b6-6916-4307-abe7-e370348d3b51 1 Other Other +a1869218-71ea-4088-9330-c25c30bc9552 1 \N Other +a186af77-4754-4965-a80f-15e2317df108 1 Other Other +a187016f-bc95-47b7-b105-3fb5ef00eceb 1 Other Other +a1876ee2-5975-46f0-8c5a-e29ccc7f55f1 1 Other Other +a1877d5a-dd0b-4153-8b68-cb54d4418f5b 1 Other Other +a1879542-f60d-4b9d-9bd9-909ae15e7769 1 Other Other +a187a53b-1110-4b59-8605-9fa75cb51fe9 1 Other Other +a18846e5-2d63-426a-be5c-ce9ee7fdfff1 1 Other Other +a1887e43-6d9d-41ea-b5c9-4a93ad68844b 1 Other Other +a18880b2-c6f4-467a-b6eb-a82e3356d485 1 James Other +a188cd7e-d33b-4173-83c1-03effba33640 1 Other Other +a188d8c7-4bb0-4eb9-b4f1-38a0f0adc228 1 Other Other +a188da3d-ced8-49ff-acae-1f114fa3eae7 1 Other Other +a188f4bf-0a83-41d0-ae6d-f52665c02529 1 Other Other +a18934e5-ad13-4e36-ae7c-adf39e0bab41 1 \N Other +a1896d7a-f67b-4104-85c0-a85bf66c902d 1 Other Other +a189c30d-b0a7-4823-9b44-22b32b2f397a 1 Other Other +a189ffcc-51e1-4495-be03-ced88da57a17 1 Other Other +a18a38e7-f4cb-4c7b-a2dc-6aaf79edeea4 1 Other Other +a18aef30-9bd5-4e7c-b699-3928721b0ff1 1 Other Other +a18b16d0-782e-4a31-aa20-0522438cb606 1 \N Other +a18b6e15-eda0-4ee8-8342-babd29bff2eb 1 Other Other +a18c0548-0e65-47f3-ab56-411053bcc29c 1 Other Other +a18c0992-53df-4b3e-95c2-40d3918c30ee 1 Other Other +a18c13f4-86da-49f3-9197-6216963250f4 1 Other Other +a18c52f6-9b1f-486a-93a5-229b284a7448 1 Other Other +a18c95c1-a7f0-4d2b-8fdb-a37d16b20a74 1 Other Other +a18cbb9d-ceaa-43c1-a26c-30d7671a3c1e 1 Other Other +a18d118f-51fa-4eaa-8c58-eb32dc2a528a 1 Other Other +a18d4057-fe2b-4840-943f-e93f77164d4b 1 Other Other +a18d47d9-10a3-46fc-be18-893985688e04 1 Other Other +a18db218-2132-4c1a-b0bf-b474b77ed80e 1 Other Other +a18db839-9b19-400d-a1ad-c0b0a78ab80a 1 Other Other +a18e205a-8917-4741-9063-1e571f243a53 1 Other Other +a18e4d4e-d45f-4c58-93b3-903519828d02 1 Other Other +a18e7db3-195a-405c-ad0a-06ed450c5a1e 1 Other Other +a18ee844-f60d-4300-ae92-3ddfd115437c 1 Other Other +a18effcf-aad4-4b5d-936b-6503bdfafb39 1 Other Other +a18f074e-e0fe-476c-bc92-1e2aff47300d 1 James Other +a18f0e27-0781-49b2-a03a-3fdd30448270 1 Other Other +a18f2d01-82d2-4b67-baab-19e2f5f4fdb1 1 Other Other +a18f4af3-d6e7-4749-a1de-42e67624c9c5 1 \N Other +a18f4b44-ee3d-44ca-a865-9f5f254a1969 1 Other Other +a18f4ec7-0d5b-4be4-acae-8b43010467c6 1 Other Other +a18f72b1-d49b-44bf-a31f-0ff6d4a6c1e9 1 Other Other +a18f934c-2fa9-47b5-9684-fe93e780e8e8 1 Other Other +a18f9fb6-2b90-43b4-9ada-0d5cb84bbda1 1 Other Other +a18fa96f-5f79-4dd5-a4af-99eb48e0ca98 1 Other Other +a18fb941-2a8f-4c8d-a392-a57dcb2ac3a4 1 Other Other +a18fe783-b823-4158-ab2a-c4c4f0458c1a 1 Other Other +a18feda5-60f8-4b5b-8242-94f48c5f1a36 1 Other Other +a1900e33-9aa3-4509-901f-687ff84b0079 1 Other Other +a1900fca-b2ae-462f-880e-225085cf60cd 1 Other Other +a1907bf8-5ffc-4ea9-9782-aacb32f86cab 1 Other Other +a1909b81-9471-4db2-a0a6-5bfd6a8519a3 1 Other Other +a190f647-c50d-447f-9cb9-e677dc72ac51 1 Other Other +a1914e14-7e43-4c40-9480-29291b47c2c0 1 Other Other +a1917ad2-afab-46d4-a473-fbc178a1f83c 1 Other Other +a191c035-e93b-45ae-8e15-7b173c6e7790 1 Other Other +a1920841-4a7e-4623-aa7b-5ecc00b45bc0 1 Other Other +a192138f-71f1-4bf4-9575-265a310cf57f 1 Other Other +a19232f6-56cb-4210-9d2b-5009972dcff1 1 Other Other +a1924d64-abf5-4c8b-850f-ac889866da4b 1 Other Other +a1924e3d-9371-42ac-a706-02b5c2185bcf 1 Other Other +a1928999-dacf-42ec-abe4-42aedbd4d19d 1 Other Other +a1929416-f733-4cc8-854d-f67ec6c01187 1 Other Other +a192be24-24a7-41a7-b830-86c20c625bc9 1 Other Other +a19323ff-378c-46b0-9b4a-70765e71f488 1 Other Other +a19367c2-fc18-4a45-9582-34589638eafd 1 Other Other +a1936eeb-9c03-4a77-8e2d-72e82c3d4529 1 Other Other +a19384ed-ef26-47fa-afe1-eb5e68c5fe7d 1 Other Other +a193cb0c-95a5-4718-814b-f51156db7670 1 Other Other +a193d3de-e003-46f7-a357-eee5ddc809fb 1 Other Other +a193fdc5-2334-4b35-a57a-1f2d1fcb05af 1 Other Other +a193ff30-68ab-4cca-b2ef-179b73409121 1 Other Other +a1947a7b-f2ef-48d4-b767-15be4f87808c 1 Other Other +a194b46b-1a69-4ba0-9d46-bde0edd97f29 1 Other Other +a194efa9-833a-4719-9858-8e362a2fe645 1 Other Other +a1952299-1a9b-4cd4-bc43-ed3d09c9e890 1 Other Other +a195865f-13b0-41ab-bc73-1d7c563f1f0c 1 Other Other +a195bd69-6bd1-4a39-b7b6-eeb5e239b818 1 Other Other +a196ad50-73bc-43e4-b119-41e100a2e92e 1 Other Other +a196ca37-0156-4533-9bef-c43bc6cc66ac 1 Other Other +a196e3c2-a649-4a2f-b5bb-fcd29019ba38 1 Other Other +a1971763-2c5b-4fc8-83c1-1a7cd688870d 1 Other Other +a1978346-eaf4-4ec1-a104-91d0cbd6bdae 1 Other Other +a19811d1-34e2-4e53-b61b-d7eb9abc053f 1 Other Other +a1984aef-e3ec-4146-8827-95af0f32515d 1 Other Other +a198f484-852c-45f6-afd6-fbaf83383793 1 Other Other +a19988ed-a768-462a-adaa-d025684619cc 1 \N Other +a199e695-8b73-4c4c-8b22-b880358ca7af 1 Other Other +a199f001-c262-4133-ad40-1e55795b50f2 1 Other Other +a19a09ad-a719-4280-9a29-444b747908cc 1 Other Other +a19a4acc-1277-4280-a7e6-2754acd5abf7 1 \N Other +a19ac191-1f22-4d57-b2c7-8d4ec8cfac87 1 Other Other +a19b7107-a055-4a17-9b67-9d926c545742 1 James Other +a19b7b22-59f3-474f-a157-22b67e673e7e 1 Other Other +a19b9b6b-b6c6-40d5-a422-9f5622783491 1 Other Other +a19c0126-bf2d-4258-8550-c2efad090233 1 Other Other +a19c1d65-a377-4fc4-aa44-bfb4beba3d6f 1 \N Other +a19c3832-7c85-4c10-8801-6f4797f40aed 1 Other Other +a19c3b17-8bc2-41a7-bf66-bd392b7506bb 1 Other Other +a19c560e-ce43-4507-a614-a3af4e089be0 1 Other Other +a19c5b02-b4f4-47a7-bc2d-70a76f899656 1 Other Other +a19cd67a-474f-4f2c-8aab-8c9d5c80ad84 1 Other Other +a19ce0b2-c60b-4acc-8a77-eb54ff9d686a 1 Other Other +a19d41b6-711d-40f4-9c57-377f71b3a89d 1 Other Other +a19d913a-652b-42b2-8c13-ab8d040bf368 1 Other Other +a19dd8a4-fc74-47eb-a330-76ae221f0fdf 1 Other Other +a19e3f9e-e0a7-4f91-bc81-a9b9088651bd 1 Other Other +a19e6105-c0f0-430c-89db-d0837b7ff54b 1 Other Other +a19e6894-f7ba-4474-b670-59a447bfa258 1 Other Other +a19e8581-a547-4e3a-b035-870f61147135 1 Other Other +a19eaa45-651f-431c-b9bd-6618acea5029 1 Other Other +a19ef753-d96d-4b3a-b04c-9fb252d285c3 1 Other Other +a19f145c-7506-4bca-9dc3-49b53b8d7214 1 Other Other +a19f3ff4-9df3-43e9-b296-74980de60f50 1 Other Other +a19f6a66-2366-4f95-92ac-3a514e16ed20 1 Other Other +a1a00ec0-9235-433d-b3ad-6ee22cd1d968 1 Other Other +a1a045da-9652-44a1-9f70-ed9b1d3ca375 1 Other Other +a1a054f9-db6c-40cb-9b13-7303e0ebfc8f 1 Other Other +a1a09441-2dbe-4b51-a8dc-4d132ab78230 1 Other Other +a1a0b7ca-37df-4521-b5a4-68b7e90f6650 1 Other Other +a1a0c5bb-08fc-4db1-baeb-dc11ef9996e3 1 \N Other +a1a0e077-e6f6-449e-a4e5-252e65b79b99 1 Other Other +a1a10ab3-f5c5-4bd9-b412-be7dc988f2e0 1 Other Other +a1a18a2a-97f9-49b1-af3e-8030444d64da 1 Other Other +a1a21ae2-36f5-475e-814a-e20550f42f69 1 Other Other +a1a22315-9503-46cb-bebc-7eec9603dc6d 1 Other Other +a1a28a8c-82fe-4001-a42b-a900eb2b6e9b 1 Other Other +a1a2dfea-d716-468e-9c84-c9f3c74e63ea 1 Other Other +a1a2eab3-f540-4829-b6ca-a79bbb3e9b97 1 Other Other +a1a37d60-70ea-4288-baeb-cf5ef7e78e9b 1 Other Other +a1a37d6f-7921-4555-83e1-7921e609b407 1 Other Other +a1a38f4c-420c-4707-8522-6369f45b54cc 1 Other Other +a1a39651-dd66-4d86-8839-ecca386ce6cc 1 Other Other +a1a3bcb3-286a-4714-ba4b-a0dbef3f9f4e 1 Other Other +a1a3eec0-cf51-4a67-a176-510b76553f1f 1 Other Other +a1a3fd16-843f-403b-b148-1c8c73a9466b 1 Other Other +a1a44b11-9ecf-4f12-af21-178a69be3867 1 Other Other +a1a44cd6-1e0d-45ea-9689-e8868579c145 1 Other Other +a1a551ca-d6bb-4466-90a2-027d649402a3 1 Other Other +a1a5aa1d-d088-4e7b-96aa-88cf3564b17d 1 Other Other +a1a5af44-72f1-41da-bc65-862cca0fb21d 1 Other Other +a1a67ac7-2d3d-4595-9ddc-35e3448a7106 1 Other Other +a1a6823b-0f0f-4d69-ace3-42cd7c15533d 1 Other Other +a1a686fe-3476-4f12-8c77-4b615b8c906d 1 Other Other +a1a6a934-3834-4ee5-99aa-10d497195500 1 Other Other +a1a6ba9a-6a3c-4d35-93aa-307d9d81dd97 1 Other Other +a1a7085f-a202-4bc1-b1ae-662a59b6b35a 1 Other Other +a1a78ec0-14de-40c1-8c8f-f1cac97e5b9c 1 James Other +a1a85280-f6de-4a29-b1ea-5a392d013ec0 1 Other Other +a1a8b602-76d7-422e-bf55-db8209717a98 1 Other Other +a1aa247f-bf4a-4d65-9159-808daa41f82f 1 \N Other +a1aa4a49-0ccc-48aa-b394-17743b3dc06a 1 Other Other +a1aa5d07-9031-4b06-ac06-e63321405573 1 Other Other +a1aa673c-1ef7-4977-ac5f-994c3d792e9c 1 Other Other +a1aa6784-95e1-4482-899a-2f144882ff2a 1 Other Other +a1aa7b63-4781-4640-bec1-cf43e4e7e7a4 1 Other Other +a1aa92e5-45f9-4ab7-afbf-383b70cb193d 1 Other Other +a1aa9fba-4cce-4aa5-a526-b3acb85fcb9d 1 Other Other +a1ab4f4e-a6f3-4944-8a2d-910bfac5632d 1 Other Other +a1ab862a-328c-4405-8d63-fd9022b9a79c 1 Other Other +a1ab9580-a4df-48e3-ae81-5e28fb5e5138 1 Other Other +a1abaf23-3a44-453e-ad7d-964a9bb98707 1 Other Other +a1abb9f0-e680-4b3c-ae6c-a9b5e8eaa776 1 Other Other +a1abe2ae-830c-41f5-a2ef-dc98aba0316a 1 Other Other +a1ac027a-f0ff-4799-992c-ae33e59cafb1 1 Other Other +a1ac6626-ae52-41af-987a-d8116bcc7362 1 Other Other +a1ac92c3-5f86-4782-ba1c-dddff6dc523b 1 Other Other +a1ad42b2-9feb-4cff-bfc8-1f0d8158cd68 1 Other Other +a1ad4dc8-019c-4425-abcf-8353e0dbfd6d 1 Other Other +a1ad7954-6431-4ed5-bb8f-71648963a669 1 Other Other +a1ad9265-aba3-4c97-8dc0-36f46cdda1d6 1 Other Other +a1ae0b62-43b3-42bc-b2d9-b0209985b5f5 1 Other Other +a1ae348a-535d-46ee-b301-ea951f4eb20d 1 Other Other +a1ae376b-6d24-43b8-a4f2-9abdfbad39d4 1 Other Other +a1ae6355-5b7b-4e60-9c10-212714379b8a 1 Other Other +a1aed61f-8037-4cc4-bdd9-300f379041bf 1 Other Other +a1aef218-82d6-4646-8627-576463bf6fa5 1 \N Other +a1afa31f-0d94-4f0b-a2d0-f319fdcc3719 1 Other Other +a1aff6dc-673c-442c-a77e-cce6dc5863fa 1 Other Other +a1b00cac-26c1-467a-8456-0d5b2d2b5b72 1 Other Other +a1b02a7e-d842-4bbb-81a5-d95328d2b94a 1 Other Other +a1b07626-ae0c-49c3-8ee9-027fd19822f9 1 Other Other +a1b0eea3-9fa1-4b54-9e69-a01276df9fc4 1 Other Other +a1b0f690-a70b-40be-b49e-bc164c496379 1 \N Other +a1b10022-a4e7-4dd7-8740-91bd1edf7a79 1 Other Other +a1b10537-51b2-41a8-a50a-d2c0d6a0223b 1 Other Other +a1b19819-5d04-4636-8432-2ee68009f4d1 1 Other Other +a1b1a797-a919-4bca-beab-51e022e16408 1 Other Other +a1b1ea1f-2af3-4da6-a931-12c30d1340da 1 Other Other +a1b20661-11e9-492e-a22a-3baefed3c6fb 1 Other Other +a1b22f7f-1058-4cb7-90f4-8f4553cff92e 1 James Other +a1b23d11-f2f0-4057-ae05-d1ce18c7d011 1 Other Other +a1b2ca49-1bb3-458f-a62c-e5035b9f86fd 1 Other Other +a1b2d765-d73b-478f-9552-e71bca502fb4 1 Other Other +a1b2ded7-6c01-47bc-809b-e5f20da3189c 1 Other Other +a1b350e6-ec46-4e3a-a9cc-65889c4b4f5c 1 Other Other +a1b35982-dac6-4b08-9dc4-f73dba756c1c 1 Other Other +a1b37770-3262-44db-87b2-3cec2c50712a 1 Other Other +a1b37855-a7a4-4de9-8aed-e4bf7c229384 1 Other Other +a1b39ee8-91b3-4c7a-92e8-c3cd0846268d 1 \N Other +a1b3a074-db92-4977-bda5-e5f17e870964 1 Other Other +a1b3ad2f-f570-406c-af53-3b654128c21a 1 Other Other +a1b3b48f-5525-4721-8750-c08fad5edf95 1 Other Other +a1b3d0b0-b04d-456e-9b80-1d224476485f 1 Other Other +a1b42672-dacb-4492-b081-2484dcd25907 1 Other Other +a1b46286-4227-4c7c-abb9-70206adc3b66 1 Other Other +a1b47213-2d9a-49fd-a716-866237deb273 1 Other Other +a1b4a67b-7019-48a8-80a1-dc0683a777ef 1 Other Other +a1b4adc6-87c3-4684-8d76-31947d54e2af 1 Other Other +a1b4b893-d8e8-4354-b2d7-8b05901e161e 1 Other Other +a1b4bcfc-653c-400c-9ad4-b0377ecb675f 1 Other Other +a1b54f00-60a8-4b0c-ba74-c7a0ca852446 1 Other Other +a1b56875-4f76-4aeb-be2f-f03d6c801f08 1 Other Other +a1b59302-b94b-482f-8314-49c20efb372c 1 Other Other +a1b5aaf0-da4b-4061-9f73-e7968461d9db 1 \N Other +a1b62584-64d8-425a-b0c1-88bbb56faa2d 1 Other Other +a1b68f3a-db29-4add-aea8-556ca622a195 1 Other Other +a1b6a3ac-2283-41d9-abdd-ae88a995766f 1 Other Other +a1b6bc5f-6967-4d17-8a9d-fdb4c60482b6 1 Other Other +a1b73f66-c0ca-4b7e-a26a-79806eb93040 1 Other Other +a1b77882-b431-4307-85b4-087db9c294db 1 Other Other +a1b7ef70-9235-45df-9033-9da84a38897c 1 Other Other +a1b898ab-c12f-4cf9-bd4a-72eec9c70cc1 1 Other Other +a1b8ba47-7538-47e1-bdb4-67a8e6fd73dc 1 Other Other +a1b8e81d-f39d-4daf-a8b8-a7e145a8127d 1 Other Other +a1b91ef9-617d-4d6d-9465-60c743779999 1 Other Other +a1b93110-cb70-4677-8561-06a424ea152e 1 Other Other +a1b965cb-fff6-40ee-9054-a54733368b6f 1 Other Other +a1b99e04-4258-404c-8b13-9b9391717b26 1 Other Other +a1b9c13b-bb5d-471c-9a18-81d3e6850900 1 Other Other +a1b9c459-c318-4b96-9499-b7c58b05a5ac 1 Other Other +a1b9f9a7-13f7-4d31-ab00-f44e02b8296f 1 Other Other +a1ba1d50-6bbf-4f9b-ba27-21c8ce17a431 1 Other Other +a1ba43ea-6649-47af-ae47-bf72c1ca8fbd 1 Other Other +a1ba4856-915d-44e5-990d-db14922e7a19 1 Other Other +a1ba554c-21cd-45db-9874-1afd119431ba 1 Other Other +a1ba5a92-d798-44a4-a43b-014de0089d5d 1 Other Other +a1ba6311-28af-41f6-a7b0-5179a82b542c 1 Other Other +a1bab762-ebf8-4091-ab4b-17a0ea157af9 1 Other Other +a1bb47ca-d905-4f07-8fb6-c3e81e34ddd8 1 Other Other +a1bb60bd-2dc1-418a-9456-9e6d31e86d50 1 Other Other +a1bb90e1-c827-4195-b39e-8595f4d6f159 1 Other Other +a1bbc230-aa63-488a-b89c-3f3058bf39d3 1 Other Other +a1bbc8dd-c644-47bf-878e-1d5e50462ab4 1 Other Other +a1bbcf63-7924-4fc3-a925-00c24d68a464 1 Other Other +a1bbee3b-29a2-4d66-b769-fe011da183ed 1 Other Other +a1bc70a5-6fe1-48d8-9360-b517b0e0bd26 1 \N Other +a1bc921b-8c39-4fbf-a91f-6bb0684cba53 1 Other Other +a1bc97ce-209e-43f0-8ccd-bbc8a89d8b36 1 Other Other +a1bd1b9c-b246-46d7-900c-b2ab3df08344 1 Other Other +a1bd4237-6c17-4596-b7ca-567c3abd5332 1 Other Other +a1bd43de-d793-4ac8-b1f0-74b46c33be6d 1 Other Other +a1bdc38d-c659-428f-b946-0a2ec562e769 1 Other Other +a1bdd45f-86cb-4e19-8c3d-d38ced92649a 1 Other Other +a1bdd57c-c944-486a-9e20-96a99e125045 1 Other Other +a1bddfcf-6cba-4f6c-acb6-833e8b5a84fb 1 Other Other +a1be1838-a5d0-494a-8d13-3a923529bfcc 1 Other Other +a1be99fd-db14-4d3b-91bf-0457d078f522 1 Other Other +a1befcd8-d2d6-4a2e-bd2a-bbb2e76d46c9 1 Other Other +a1bf3a0e-db6c-4295-b51f-332df1ce5415 1 Other Other +a1bf636c-6c61-49c7-b912-b35875635128 1 Other Other +a1bf75a1-e685-473e-998a-bb110a429335 1 Other Other +a1bfc537-88f9-4347-add0-bed445d71d4f 1 Other Other +a1bff9b3-1a44-46ab-b7b2-edf3671e527b 1 Other Other +a1c01f47-83ad-4695-9987-fd7565d99006 1 \N Other +a1c076fd-ddf0-47f7-9c7d-539d51b2b76b 1 Other Other +a1c0a4b3-b0a4-4fe2-905b-8a6c98df1c5d 1 Other Other +a1c0b492-bf3c-44fc-8171-84fa6c6a4f3e 1 Other Other +a1c0bfcc-b8b6-46a8-b154-21317e6cb5df 1 Other Other +a1c0c940-d397-4bfd-95f3-643a3e03ae89 1 Other Other +a1c15425-bc2c-40bf-b8e2-6087f399a9f6 1 Other Other +a1c154fd-5232-4215-afb5-55ce7ac2d9eb 1 Other Other +a1c1603c-4cd2-4516-b5fa-17ed7bf96aef 1 Other Other +a1c193ac-6f7c-4475-9892-143c51f053fc 1 Other Other +a1c1a2df-0f58-445a-981f-ce54e5506211 1 Other Other +a1c1d36c-4bee-489a-a391-0dfc72fbbb7e 1 Other Other +a1c265f4-8a9a-4d8f-b12d-f49d3f7ba1ae 1 Other Other +a1c27a46-871f-4761-b4bf-ea670e06c5bb 1 Other Other +a1c27ac9-535d-42e7-8d59-c96ee573fac3 1 Other Other +a1c2938e-6436-49bc-8585-dcc0862a7600 1 Other Other +a1c29bb3-499c-465a-9685-7c5acb1ae26f 1 Other Other +a1c2c828-317b-4d68-9208-7f1b656f87cb 1 \N Other +a1c2c951-79cd-4447-9f6a-c0f6f755a794 1 Other Other +a1c2cb6b-1824-4b8e-a393-f9a1d1d5f2cd 1 Other Other +a1c2d708-6de4-4cfa-9602-42c506fd96e8 1 Other Other +a1c2dd88-68dc-4ee5-81d7-e89fb822d4dd 1 Other Other +a1c3097f-355f-47b8-9505-9edaea8dc0f8 1 Other Other +a1c30ce2-bf5a-4939-97de-a4275ff29846 1 Other Other +a1c321e7-32ea-46ea-b12e-5d1fd224f22b 1 Other Other +a1c3a068-006e-4ca5-a1b5-941e42905dc4 1 Other Other +a1c4114a-8c91-48ad-9032-29d4c398f96f 1 Other Other +a1c4284d-7309-4f11-a89c-100c72d10cbc 1 James Other +a1c44007-5a04-4a3a-8034-e24e78fa92f6 1 Other Other +a1c47e86-d555-499d-8ddf-24fed7829b99 1 Other Other +a1c4ad3c-411f-46ea-b069-1c2c2bac1623 1 James Other +a1c4adb0-2f95-4819-ac17-fda997f62a46 1 Other Other +a1c4b8a6-7fbf-4c26-b4b6-1f1fd5ea5ab6 1 Other Other +a1c4ebb6-87b8-4cc1-9c7a-921168d52074 1 Other Other +a1c519af-f521-4e4e-a7e3-1863bf0d1874 1 Other Other +a1c5259d-3daa-4926-b76a-df685f2dce56 1 Other Other +a1c53b9b-4b3f-4873-84e1-25bb99e5d252 1 Other Other +a1c53c01-bf9d-4f7a-8ec7-e6901dc0c2eb 1 Other Other +a1c5511b-181c-4321-97c5-a6611474defc 1 James Other +a1c55dd6-37f6-4d62-9227-c86ba5cb42c0 1 Other Other +a1c5894d-b871-48a7-8446-fe6745a4e846 1 Other Other +a1c5a7f1-43fd-4956-9f80-62510bd7c686 1 Other Other +a1c5acad-2587-46d2-909d-eda76649301a 1 Other Other +a1c5bb31-4f8f-4f08-bb76-f5446f3bddc7 1 Other Other +a1c5ede4-d21c-4ccc-917a-dbeef1d21063 1 Other Other +a1c61b83-44cf-444b-8c77-88524da39d45 1 Other Other +a1c630e6-789f-42c0-95c7-b3bf7e82c25a 1 Other Other +a1c670a7-3801-491c-9442-12832280bfcd 1 Other Other +a1c69fa6-9b1d-422f-8f84-73f3dd3b3505 1 Other Other +a1c6b5cd-f98b-42cc-8392-f24e7335ef25 1 Other Other +a1c6c780-c17e-4904-994c-1c135754c628 1 Other Other +a1c7523e-393b-4a35-9468-016952d338e2 1 Other Other +a1c78a43-85d6-4b97-b37f-5737c85f4839 1 Other Other +a1c7ce1f-4c3c-4eda-8003-0b9cbdc23ebc 1 Other Other +a1c7d393-e708-4da3-9f48-cf558023e10f 1 Other Other +a1c7f11e-158d-43e1-8ba7-b3e9583084af 1 Other Other +a1c7f254-f2f0-4210-a026-4be3a51e6751 1 \N Other +a1c87251-d619-4ff4-9838-4bf2ef841c57 1 Other Other +a1c8a012-11b1-4775-964f-cb1f37d846d3 1 Other Other +a1c8cec6-cab7-4346-b07e-da6938a1b90f 1 Other Other +a1c8d586-7624-4858-8717-87d38afc5661 1 Other Other +a1c8f5de-cb17-4553-8fcc-29be50137b3c 1 Other Other +a1c913cc-59d4-4224-8505-dc2a6ae6fe03 1 Other Other +a1c91ce1-b0e3-457d-b0bb-3a862badce5f 1 Other Other +a1c940b8-a3d4-457b-bf70-c0b088e58d9e 1 Other Other +a1c9c7a1-23e3-4c84-b7ee-657a15771e48 1 Other Other +a1c9d860-8bfa-438d-b75e-baa04c201910 1 Other Other +a1c9ea73-aab8-43f0-a2cd-55ac104780e7 1 Other Other +a1c9fc38-fbc5-4b50-adaf-780deec256e6 1 Other Other +a1ca0dd0-e57a-480d-b7f4-0f8934d11d67 1 Other Other +a1ca268b-9233-4aec-b61c-be2e44d569e3 1 Other Other +a1ca3ee3-bc3e-4226-99bf-74b4b91096fd 1 Other Other +a1ca5b52-5d53-4375-ad3f-f9f0c991042a 1 Other Other +a1caa256-5a15-4375-9f3d-e4ea6e63023b 1 Other Other +a1caf1f0-e53d-4a96-a9d1-660ff5616265 1 \N Other +a1cafa08-75d5-4ee5-900d-b287ff8948f1 1 Other Other +a1cb2baa-ff1b-432d-baa6-4b8c5c9707d1 1 Other Other +a1cb4a91-d751-4c0b-9893-ea5ea9c39e65 1 Other Other +a1cb4bcc-0c1f-4e21-81dd-339ff4b36bcc 1 Other Other +a1cbda59-febc-4bcd-b475-889a0959bd19 1 Other Other +a1cbfa75-7013-4d47-9f20-e0628757d08d 1 Other Other +a1cc026c-c331-42fa-a1ee-33676646e117 1 \N Other +a1cc07d9-dcef-4fbb-b86c-5b40c561af52 1 Other Other +a1cc6ca0-6fac-4938-8215-a2dff1e40f82 1 Other Other +a1ccaf73-f87c-4128-92aa-4201cd79cc47 1 Other Other +a1ccca8f-8272-4a52-b594-935a29dcbeba 1 Other Other +a1ccd2c6-e4a7-47b9-bdc8-e3de43975961 1 Other Other +a1ccd471-60de-4fe8-94a4-8a77f2d1d50b 1 Other Other +a1cd044b-f0eb-4d9d-8b6a-4a2e659c5c91 1 Other Other +a1cd4da3-db30-4e4c-a5cc-e20dfde86a3e 1 Other Other +a1cd5fcd-39c6-4c1a-b076-e7670493e73a 1 Other Other +a1cd77e8-825a-42ce-bb69-dd8b7d4e88c7 1 Other Other +a1cdeadc-20d7-49fb-864a-8259d2144bad 1 James Other +a1ce383d-b7e0-4716-98db-c9f04744e08d 1 Other Other +a1ce6f3b-150e-4776-aa3d-64f82e38fab9 1 Other Other +a1ceb8b0-28b7-4d97-9fc4-3173f8a2b7a5 1 Other Other +a1cf0dbc-2d19-4661-a34d-a1fff21e323c 1 Other Other +a1cf3ae9-d866-43e7-9094-a8b8e57e9090 1 Other Other +a1cf4345-e57d-4f20-a455-dda76853a274 1 Other Other +a1cf5eb9-5f04-42f8-9f5f-3715d97150da 1 Other Other +a1cf6670-ce2b-47c8-8901-ec23346f3f04 1 Other Other +a1cf9ead-0f41-4ecf-9a6c-48c3ce761ef4 1 Other Other +a1cfd6b7-3a44-4841-9c7c-5a243a0ebc3e 1 Other Other +a1cfefa9-1c00-48ea-b3d0-125bf172d96b 1 Other Other +a1cff321-19f7-4127-97ee-271841903594 1 Other Other +a1d0254b-1a10-4610-b07f-faec314d80e5 1 Other Other +a1d05d7d-b305-4fb4-86fd-0d592b347702 1 Other Other +a1d0afc5-f005-429d-9675-3a8b3d85d57e 1 Other Other +a1d152dc-731e-412a-855d-3b9bdad00d47 1 Other Other +a1d1bc20-7720-4c7d-8012-fcee5df4331d 1 Other Other +a1d1cdd0-de47-48f9-939f-c4fd4643cb28 1 Other Other +a1d1eefb-b36d-4a7d-9be3-cfa070177bc1 1 Other Other +a1d22a6a-bea8-4ffe-a847-cb5e5778383c 1 Other Other +a1d23ce6-f445-427a-8ca5-7a65620edb90 1 Other Other +a1d25448-3af0-4676-af04-9d0833063414 1 Other Other +a1d25d43-e0f4-44a1-97e2-31e1c71128d9 1 \N Other +a1d2a336-b531-47da-8fcc-7f9e144d87b7 1 Other Other +a1d2d7d9-cff1-4efb-8e1f-01171c138820 1 Other Other +a1d344e3-92f8-4dd4-8cbb-5a5144c21bb1 1 Other Other +a1d373e6-0a04-4627-9c3c-a94ee2c4aaef 1 Other Other +a1d37e73-f154-4dab-a331-dc008e4f0c87 1 Other Other +a1d39f4c-0f57-4e24-8152-39860f3a902d 1 Other Other +a1d3a371-9bf8-4adb-aceb-3a04c867513c 1 Other Other +a1d3cc5a-f19b-4593-802c-f791e823e22f 1 Other Other +a1d3cea5-d834-47a9-a999-b4ee0fee2201 1 Other Other +a1d3e779-5270-4567-96df-4f2ab8ddda4b 1 Other Other +a1d3f8b5-dae4-41d3-b811-92d04af50953 1 Other Other +a1d3fc22-2c29-4154-bee4-bd9629fd06b3 1 Other Other +a1d404b8-11da-4be9-a28b-4a9cea228037 1 Other Other +a1d413bf-8054-4fe9-a305-c7f9eccbc616 1 Other Other +a1d41beb-3111-4f9f-a007-ac25e8978fd3 1 Other Other +a1d425d0-d7fe-42a3-838b-7c4f4e8c98b0 1 Other Other +a1d44d81-a24a-49c8-803e-4672e2baecb6 1 Other Other +a1d45237-9d1e-41ec-82e3-99f760345aed 1 Other Other +a1d4ad1e-2fe6-491a-a1ea-4e2bd043f946 1 Other Other +a1d4d502-d18a-45d0-8ceb-d2f0d9fcaf5f 1 Other Other +a1d537ee-6f41-4c3b-9631-32f0fe6e2473 1 Other Other +a1d5548d-05b2-4839-863d-00368cc8fd0c 1 Other Other +a1d59c0d-2897-498e-a889-efd66f1ae068 1 Other Other +a1d5a885-4c89-419e-ad70-f4479eccf388 1 Other Other +a1d5d6f1-973d-4d15-951a-b6a7a40685f4 1 Other Other +a1d5e817-82dd-4ebf-a9e9-34180dbab3c2 1 Other Other +a1d5eee5-6246-43c5-ac50-9a9367fd47cf 1 Other Other +a1d604fd-eedf-4e2c-b6f8-ea04878719b6 1 Other Other +a1d62ad4-7d09-4a84-bc49-c13173f62c31 1 Other Other +a1d63748-34e2-4c0c-842d-0422ad598fcf 1 Other Other +a1d64311-ecbc-4514-890b-6ae1f6ddd4b5 1 Other Other +a1d68316-c3a3-45e8-aa4a-fac5e7238a04 1 Other Other +a1d6a412-bd6d-439e-ab5b-026a669285b2 1 Other Other +a1d6a72b-4987-423e-93e9-b1074836da7a 1 Other Other +a1d6c894-0729-4d4e-b422-7b42d15b0d82 1 Other Other +a1d6e621-7f86-40b4-897a-ecf4448b9b13 1 Other Other +a1d76aa5-ce49-40a4-9bd7-38532e1aba14 1 Other Other +a1d76add-8192-4a45-aef8-b2e95ff3a537 1 Other Other +a1d774cd-d0f4-4e41-94f2-10384b078584 1 Other Other +a1d79a7f-0c35-4e5a-bc3a-6b8ad9052fa3 1 Other Other +a1d85cb0-1316-4fac-90b8-f2ff04b345f1 1 Other Other +a1d8711a-dcc5-482f-abbb-1d76330fc2bc 1 Other Other +a1d88391-e8a5-48a4-a66e-686d1365f03b 1 Other Other +a1d8f61f-4014-4d0d-bd88-bfb72989cccf 1 Other Other +a1d8f685-2bc8-405e-85bb-5a03a16e8d74 1 Other Other +a1d9129a-8ba8-473d-960d-e9fc82aff348 1 \N Other +a1d94f1d-3ea0-4d14-8c38-e9ce900a6c40 1 Other Other +a1d95a88-b723-4a6b-a64f-235e0b394425 1 Other Other +a1d95aef-1641-4848-a997-1f9ce285b73b 1 Other Other +a1d96662-cfa1-41f2-bffb-09fdceaefdac 1 Other Other +a1d96de3-f982-4d02-93fd-d8f50e10984d 1 James Other +a1d995d5-b00d-45dd-bbbb-26dc9c567b07 1 Other Other +a1da53e8-4f2b-4079-b70e-1ba8402c1246 1 Other Other +a1da6a92-c1a5-48d0-9ff6-a535b4bcf065 1 Other Other +a1da6f29-7286-492d-9b8c-5fa5baf62fc7 1 Other Other +a1db19f6-e90d-44e6-bd89-77a7d4fabf19 1 Other Other +a1dbf723-90fe-4184-be1c-cc7bf3f1c706 1 Other Other +a1dc318d-50f5-4f18-b210-d1e65302ebd7 1 Other Other +a1dc5597-3589-4e5f-b69e-e708e8872d94 1 Other Other +a1dcacc4-9002-43f4-b64b-c7ad8832f51c 1 Other Other +a1dd06dc-d33e-4a06-9df5-2ff8f68d61ca 1 Other Other +a1dd2a04-7278-4542-a657-617942e69c77 1 Other Other +a1dd4b73-f958-446c-93ea-67d9853b6dfe 1 Other Other +a1dd5ff3-7200-4d9a-848d-adc717c887c8 1 Other Other +a1dd7020-6c0b-453f-8ade-b87b6f03c44b 1 Other Other +a1dd9631-a79a-4d92-aaf1-3beadae4efe8 1 Other Other +a1de2287-fa0b-4b3c-984e-bd47605d2d8c 1 Other Other +a1de22b2-45d7-4b18-b86d-2495ad110a8b 1 Other Other +a1de4841-30bd-4524-890d-8038ce6e4112 1 Other Other +a1de5a5c-6fd6-4451-852b-73c8423049c7 1 Other Other +a1de642c-2f3b-46e4-af7c-d060912317ba 1 Other Other +a1deaba0-fea6-4312-83b6-f4a30714430e 1 Other Other +a1dee602-8c96-43a9-8280-aeddd512e407 1 Other Other +a1df0d10-3dc6-4107-95cd-3ed60c16136d 1 Other Other +a1df70b7-6420-430f-89fd-dc6c2e4f30ed 1 Other Other +a1df9da7-613d-4c32-9ee4-58a216360476 1 Other Other +a1dfc6d3-621e-4069-bd58-b9caa9844628 1 Other Other +a1dfd284-f1d6-431b-8c4e-9c4548557450 1 Other Other +a1dff718-75de-4e7b-a280-cc6491855884 1 Other Other +a1dffad8-eda4-4590-aaad-d88e25ebf6a1 1 Other Other +a1e082b6-3c2d-460a-98f0-d7724364b85a 1 James Other +a1e0a85e-2cd8-48a7-8af0-9f426293300c 1 Other Other +a1e14fb1-da13-438d-b570-c5ab4fa579f1 1 \N Other +a1e1890c-0519-4136-a56c-1e785c628d17 1 Other Other +a1e1a1ef-38da-4b32-aff3-ad4462309b74 1 Other Other +a1e1a3ac-dac0-461e-af54-c98e85b2ce79 1 Other Other +a1e1c320-5c71-4976-8834-e1416fee3b27 1 Other Other +a1e1d139-a0be-4c2c-b09b-4cd60e6a61d3 1 Other Other +a1e1d1c9-2421-4095-93b4-103d2e92286f 1 Other Other +a1e1dd94-3e62-4b48-a38b-fdd263ea33dd 1 Other Other +a1e1fe1b-6c5c-4433-a99d-2235743dc712 1 Other Other +a1e23ba2-2bd9-4627-801c-cad14da536fe 1 Other Other +a1e2539a-68f3-4c01-875e-c327632563af 1 Other Other +a1e2e2e2-7b7b-4ac9-9780-4fb2f7854489 1 Other Other +a1e2fd81-8128-4972-b274-53e8b8757891 1 Other Other +a1e32f01-5c12-4eab-8d15-d7270bab47aa 1 Other Other +a1e37855-a5a4-4de4-a5ac-354375fdcde4 1 Other Other +a1e4790b-2ba8-422b-911b-dcd053b1684c 1 Other Other +a1e49b67-0499-4b3c-8c72-41f65d5ef17c 1 Other Other +a1e4b1e0-a46b-4a49-b765-81fe726f7aaf 1 Other Other +a1e4bebc-2b72-49d7-915c-44d720afb035 1 Other Other +a1e4cc79-b1db-43de-b618-09053ceaffe7 1 Other Other +a1e4d846-7423-492b-bf42-3cf79978423e 1 Other Other +a1e4e62c-d21b-434a-9676-68d04fdc37ba 1 Other Other +a1e4f5d9-9cfb-46ce-98eb-f2b5becdcf77 1 Other Other +a1e5071a-52d3-4911-a12c-14d92029adf3 1 Other Other +a1e5636c-3d20-46f1-add8-0b74da0efb65 1 Other Other +a1e5a7c4-99d8-4d59-82bd-3109c9fdbd77 1 Other Other +a1e5d6da-6de1-41e6-be19-787464030f6a 1 Other Other +a1e5e156-1407-40c7-8550-597ff74dd0bd 1 Other Other +a1e5f261-4cbb-4e77-9a3c-d4eed895b426 1 Other Other +a1e613af-868e-4b3b-9ce7-cd981ff24ba8 1 Other Other +a1e61c3f-22bd-407c-af44-f7d800f86c15 1 Other Other +a1e623be-bddf-49fb-a877-c939a0236be8 1 Other Other +a1e6da96-ef31-4d7c-bb6f-e776ba0e1ff6 1 Other Other +a1e74ffe-cb9f-4828-81aa-8d65961553f3 1 Other Other +a1e76c91-6fd9-4fd2-9534-3b938a93cfbe 1 Other Other +a1e78684-8db6-41c8-b252-fc912fef1362 1 \N Other +a1e7e826-e916-4a0a-8411-cb3e75c70f24 1 Other Other +a1e81f24-ef11-4599-9ce1-e4e83f85b949 1 Other Other +a1e82133-3a32-42f7-9857-54610a3ee3d5 1 Other Other +a1e8a241-c5aa-4522-9982-7791d1e27931 1 Other Other +a1e8b271-acbf-41b3-a634-87ac989a1f7d 1 Other Other +a1e8ce21-9ff4-45cb-af8b-cf19834c9c73 1 Other Other +a1e91326-919f-4463-b9fc-c4caaa94fff4 1 Other Other +a1e956c4-2632-4d5e-94e7-54ac510487d5 1 Other Other +a1e9571d-d6fb-43c7-8b7f-7b356bda7b8b 1 Other Other +a1e9a2db-5e78-4e9a-861f-2e0b902cfb46 1 Other Other +a1e9b380-80a4-425f-a5ee-1eded7511c56 1 Other Other +a1e9cd25-2737-441e-94fe-fb6cd7b004d5 1 Other Other +a1e9df1b-7280-48af-b6a2-fb08903f8df5 1 Other Other +a1e9fef9-29d4-453a-86ff-a6bd0c2aa280 1 Other Other +a1ea00db-a36a-4c2b-80d1-d9a1f81ed594 1 Other Other +a1ea5a62-47af-4cf8-aa91-6db0038f5dec 1 Other Other +a1ea71ac-7b61-4f95-a07f-3e635a0ec4ea 1 Other Other +a1ea7e2e-12e4-4f72-939c-c929538a070f 1 Other Other +a1eb4d29-ede2-4346-ba95-da8247aa158a 1 Other Other +a1eb9be7-7834-4992-84ff-ab707d59efb3 1 Other Other +a1ebcd9f-e12e-477a-ac33-8df2ce8e5c2b 1 Other Other +a1ebfb16-5283-484f-8e2f-25a430cc8dab 1 Other Other +a1ec024b-1073-4e4f-be77-9d9255097d9d 1 Other Other +a1ec3ec0-a0b1-43ee-8ae6-0683ffb79a7b 1 Other Other +a1ec5336-837f-4eec-ab86-eb82386b6df5 1 Other Other +a1ec5c15-0382-4b26-820f-99a23e8ddd3e 1 Other Other +a1ec7c99-e275-4898-bb61-a00b8aec87ab 1 \N Other +a1ecad90-0bec-4e20-90ff-099f1863282f 1 \N Other +a1ecbfe7-2134-4345-999c-97491f317e57 1 Other Other +a1ecd72b-a58b-4171-a531-61a231480fc2 1 Other Other +a1ecf538-f4fe-4faf-99d5-c80ea390cd02 1 Other Other +a1ed3d9e-1a07-4d23-bdb6-02a76a11d8ec 1 Other Other +a1ed6cc9-7e47-455d-985f-c66d7ee405c2 1 Other Other +a1edc4c4-d159-4473-85ce-6a8fb5bd62a7 1 Other Other +a1eddfc0-4267-4f39-a9d4-d93fb1bd2506 1 Other Other +a1edf658-1db3-47bc-bbee-703c48c22da6 1 \N Other +a1edf736-219f-4d3e-b01e-04b959ade532 1 Other Other +a1ee0be5-625e-46d0-a917-26d6fca34eaa 1 Other Other +a1ee3c58-4473-4847-bc58-957c95b1d522 1 Other Other +a1ee42e2-b660-4dab-a2dd-9f127cb01682 1 Other Other +a1ee5d54-82f6-4935-bf8f-3cabde6da251 1 Other Other +a1ee7a96-e75d-41b8-ae5c-1a2fb799816c 1 Other Other +a1eeb9e4-10c2-4b66-85be-51b01e11b219 1 Other Other +a1eefc02-b6bd-4d0d-a8e3-3e29d61648d1 1 Other Other +a1ef22c3-5f00-412f-8c0f-942ba4a62374 1 Other Other +a1ef23b2-c159-4d0e-8a00-bde981376c99 1 Other Other +a1ef32c1-061c-4915-80d0-c58226f51745 1 Other Other +a1ef499e-2e54-41a4-9124-6c17973dab0f 1 Other Other +a1ef4c37-7b33-44a1-b3e5-0da8d4e86dbf 1 Other Other +a1ef5570-24cc-4677-8a6d-70ac52d3ad88 1 Other Other +a1ef5e95-e29d-4de1-bfed-705d18c1f5e3 1 James Other +a1ef6f5c-8ce6-4215-a9fd-d123433900e2 1 Other Other +a1ef742b-b6a7-4f0e-b399-72cdfb063286 1 Other Other +a1efc715-4896-408f-ab70-4e14c144faae 1 Other Other +a1efc9db-9b10-4c18-a546-9b2b1dd1b819 1 Other Other +a1f05bc2-8799-4cde-be0d-2171e13c7d62 1 \N Other +a1f0614d-247a-46f7-9eae-8939e36a56ff 1 Other Other +a1f087b5-7bec-4cd7-811c-f41334ee701d 1 Other Other +a1f0992e-f7c2-4c03-b952-c97206d0692d 1 Other Other +a1f09d28-4337-423e-89da-c8afcbcf8e9e 1 James Other +a1f0b15a-c04d-4e7d-a310-8821dc31e20b 1 Other Other +a1f0c53b-f166-4be7-9783-c2252d53e1c4 1 Other Other +a1f0eb7b-8d1b-4984-95f4-9b4fc98afc2c 1 Other Other +a1f0ece1-a571-4e70-a600-fe3af62b541c 1 Other Other +a1f0f891-09fd-425b-9e99-f7497c59506e 1 Other Other +a1f1466a-996f-4f95-a99a-4a84484b5344 1 Other Other +a1f1a06e-dd65-468d-8c10-b94d7351d5d3 1 Other Other +a1f1b305-5631-40fd-baab-bb372405fb33 1 Other Other +a1f1e3d9-5667-4c57-aa10-5387c9ef88ba 1 Other Other +a1f1ff58-dc60-4f37-8713-72f576706185 1 Other Other +a1f212b9-9243-4afd-8662-e3e583da57fd 1 Other Other +a1f24a8f-871c-480a-9a7f-fdae27b89e2a 1 Other Other +a1f26fe9-9662-4ca4-88ab-3985c4ffde8b 1 Other Other +a1f27901-cf9c-4e7e-b8f6-65b0eed9aacb 1 Other Other +a1f27f0b-583d-4ca6-99e5-7f707f582749 1 Other Other +a1f27f84-d2ee-459d-b3be-1ed6fc5a336a 1 \N Other +a1f287f7-98a3-49ef-8f21-75214ec12932 1 Other Other +a1f2a2e4-0041-4fca-821e-4e6384e33fc9 1 Other Other +a1f3217a-5e76-4b78-a1ec-539fd5bc133d 1 Other Other +a1f32743-3dcd-4387-87f1-0387cb0ae5a5 1 Other Other +a1f3960d-50f6-446e-9044-4f05592af846 1 Other Other +a1f3e404-9156-46fe-b405-81e88726b772 1 \N Other +a1f43f67-d607-442f-9af7-0af8bab5c929 1 Other Other +a1f46953-2f79-4971-8deb-622b11b5555d 1 Other Other +a1f47372-cc11-4001-86f7-e70be1c4cd56 1 Other Other +a1f4ad30-9e1d-4240-b7e2-1dc9eedb693e 1 Other Other +a1f4aea3-6e77-47bc-9e7f-c91db7b5afe4 1 Other Other +a1f4b106-0aae-48f4-bf0f-d8a5c3493a65 1 Other Other +a1f4cf2f-f03e-416c-9284-0a6b168368e0 1 Other Other +a1f4edb4-e02b-4760-9bd3-f60184b22084 1 Other Other +a1f50a8e-12c7-4ede-9efe-45e90180d853 1 Other Other +a1f51287-fa55-4c6b-b703-57c534748b6b 1 Other Other +a1f53c22-9ce3-403b-add3-94ae351bce0a 1 Other Other +a1f53cdf-a025-4f79-aa89-f4ab3d8eccc8 1 Other Other +a1f53e7a-7cb0-42e3-8b91-400c83b079a3 1 Other Other +a1f56d42-eb85-46d2-a9f5-8a11ab6d0ad1 1 Other Other +a1f59169-6142-4c4a-9dfd-1f7c633a4def 1 Other Other +a1f5a3e9-3785-49e3-9f0f-9e6888792b61 1 \N Other +a1f5a647-8738-4018-aac5-97c6e2c64a23 1 Other Other +a1f5b6a7-1d11-4e5d-9c82-e10f0eec9636 1 Other Other +a1f6c591-cd82-4c9f-8aaf-e3e5f21369d9 1 Other Other +a1f6dc94-4023-481b-b573-31bfe6ae00fa 1 Other Other +a1f737ff-5907-488b-bd3b-ca1926adea2a 1 Other Other +a1f79896-5f21-4713-89df-fe8da0dedec0 1 Other Other +a1f7b0e1-9865-4de0-b6db-800efde42541 1 Other Other +a1f7d8a3-93ba-4553-a5d9-970aefaa3bb1 1 Other Other +a1f7dc03-3042-4507-918d-4bad6a244e16 1 Other Other +a1f7e80e-e891-41ab-83a9-1c748107a47f 1 Other Other +a1f85184-6faf-4150-ae0e-49e3c44c6bee 1 Other Other +a1f85eb8-14c9-44f1-8237-4c9b1d9a19f6 1 \N Other +a1f867c4-24c3-4748-bf9e-62f35885b006 1 Other Other +a1f8d35a-c269-4c9c-9211-813bd60b155d 1 Other Other +a1f8db31-f7da-43e8-b775-73583715d55b 1 Other Other +a1f8dcce-5b42-4dde-a481-4dfb75649198 1 Other Other +a1f8e579-ecfe-4c8a-8c2b-a5784ac0cea1 1 Other Other +a1f92fa2-0a1d-4fe0-8925-2c64f47ea704 1 Other Other +a1f9b501-8c7d-4b0a-86f3-666d126fedd9 1 Other Other +a1f9e5a3-b7c5-40df-ac35-89bab218f447 1 Other Other +a1faa429-ee49-4305-87b5-f768c9ed2edf 1 Other Other +a1faa594-8131-41b7-af89-3fa063b7bb34 1 Other Other +a1fac9fe-8f8a-4ccb-ab6e-5df9eb356f57 1 Other Other +a1fb2861-d3cb-4ca4-9f76-674e2c5be03c 1 Other Other +a1fb5e06-9fb0-4f9b-b3e6-279397585ac4 1 Other Other +a1fb7f24-7044-406f-a080-1d90a4f32b6a 1 Other Other +a1fb9148-98a2-49f1-b97c-fe772a6c40ca 1 Other Other +a1fbbb52-87fa-479b-af95-22558965f736 1 Other Other +a1fbc363-9fbf-4f4f-99a5-d1b7c98b6cc3 1 Other Other +a1fc381c-1795-425c-b0cf-21bfcd186a8a 1 Other Other +a1fc6447-0c24-4627-97de-ea8069ddf672 1 Other Other +a1fc699a-d6c3-4cd5-9a46-9e15bc14e565 1 Other Other +a1fc6bdb-ea55-4aee-923a-a2b81a72907a 1 Other Other +a1fc7a88-58d0-475c-b1f0-045589a198ac 1 Other Other +a1fc8be6-6237-4c86-8c06-47b13d61abdc 1 Other Other +a1fcce54-3b6f-48d5-8f5e-82d96519a46e 1 James Other +a1fcdfbf-edf0-495f-a3e0-e90f406c2b3c 1 Other Other +a1fd1ff5-73e5-495e-8235-5346f1485c97 1 Other Other +a1fd2336-bc62-4735-a092-c0e76948f5e2 1 Other Other +a1fd8738-8f91-4bd7-903b-6e28d8d131d6 1 Other Other +a1fe4c13-abff-407f-9f5d-042791f00c8b 1 Other Other +a1fe6bb4-e81e-460f-b870-5df7cccf81b0 1 Other Other +a1ff1ae9-dd20-4c8b-a73e-9e65b2c0dc54 1 Other Other +a1ff5fe7-4e0f-427d-8b5f-b2a2611c8a6c 1 Other Other +a1ff7fe9-3491-4f31-bd95-7c8289f43280 1 Other Other +a1ffa21d-c6d1-4e74-8a8c-e9f72db1c856 1 Other Other +a1ffec1a-e2f1-4fdc-a08c-c862bb47e31b 1 Other Other +a2002491-3ec6-4a0e-9bd8-7806f6462f15 1 James Other +a20039ca-e632-4874-9608-6702f369c1cb 1 Other Other +a2003de8-2d74-449b-b7cf-d47d1b1d5bc4 1 Other Other +a20043f5-4c80-4edf-9806-0ac0dfdc53eb 1 Other Other +a200a5df-e8df-44a1-8464-fa0c10e81255 1 \N Other +a200bac1-6f9f-420d-8e31-0294549a8ee2 1 Other Other +a200c1ac-675d-4a60-a4e9-7429fdffcde7 1 Other Other +a2013afa-1a67-4b2b-9f38-a80de5652b8e 1 Other Other +a2013b43-b7a5-4552-a022-eb38cb3121f1 1 \N Other +a201eb64-9849-4dd4-b074-53a57ebb2a03 1 Other Other +a2020ea7-003d-4127-bf40-1ed7f34a1f8b 1 Other Other +a20251e3-010e-4c21-9f2d-df9bdc27f969 1 James Other +a2027e70-1e3a-4969-9cf8-954421afc150 1 Other Other +a202caaa-47fb-4b66-8484-5adbefb1f0d8 1 Other Other +a202dc5c-f2d7-47ee-a4b4-d1904a418946 1 Other Other +a202ea77-b269-4c13-bf6b-1fc8ce41dfb5 1 Other Other +a2032375-dd07-407e-ae91-3e0f752dc0fb 1 Other Other +a203256b-10dd-46c0-b73a-3df18ac686f3 1 Other Other +a2032ce9-3c03-40ec-816c-4dd96ec8dd3c 1 Other Other +a2034e77-db4b-4179-bb9c-850106d3a9ec 1 Other Other +a2037b45-4575-4743-9143-0ea9c0f17a20 1 Other Other +a203b793-a5cb-4918-b595-9a0f70a8f67b 1 Other Other +a203f85e-156d-11e8-bef1-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +a2040703-049a-4873-807b-3d5314e43e9c 1 Other Other +a204d9e7-9884-4f5c-b5bd-6277732b50ef 1 Other Other +a20522cc-365c-4ff2-9ba6-f3b2c4bef353 1 Other Other +a20549b7-98e7-4df8-931d-dea488d0d10d 1 Other Other +a2054c33-b88e-497d-b3fe-a0e1c49c3940 1 Other Other +a20566a0-b234-4409-91d2-d657f3cf7eb2 1 Other Other +a205d5c3-f429-4f13-84b2-6db8b321f4d8 1 Other Other +a205f376-b534-4a4c-970f-a6e495500aa4 1 \N Other +a20601a2-a344-42e2-9007-bf79886818e4 1 Other Other +a2062315-f856-4386-b911-8e0a5e236fdf 1 Other Other +a20642bd-1149-4fb4-b757-0f5759faccd0 1 Other Other +a20660cb-96ad-424e-834e-d7110d8cffb9 1 Other Other +a2068184-572b-45f2-9b57-9fa1ed3697b3 1 Other Other +a20682f2-a4db-4989-beab-50daeffcf1b7 1 Other Other +a206909a-3a1b-4a6c-9684-09e80d21e33b 1 Other Other +a206b367-4e37-412f-939d-f5b7f5980886 1 Other Other +a206cd2d-c53d-497c-835d-6f45ddbb6e48 1 Other Other +a206e7b8-1148-4b42-9f7f-f7b8a0c74990 1 Other Other +a206fe93-9ec6-43c1-8959-aaa2839c183d 1 Other Other +a20717ce-c3c6-4b49-9aaa-828dc0fb88b2 1 Other Other +a20776e9-d268-494d-8aca-72fdfc49d3be 1 Other Other +a2077be3-e5c3-432a-ba62-6fb7512957d2 1 Other Other +a207a87f-54b1-457e-a055-4e53d7d357cc 1 Other Other +a207b6b0-c726-4ae3-bf5b-6137a34a985b 1 Other Other +a207c235-ce10-45b9-aa78-a3bb9ecb00fb 1 Other Other +a207de3c-c41d-43bc-851c-3931d11513aa 1 Other Other +a207dee8-4ec2-430e-8727-a05e4c399b76 1 Other Other +a2080dc7-bd60-420c-86c7-04669cbcc807 1 Other Other +a2080e69-5ec0-4524-a83e-c6df1eb7b1ff 1 Other Other +a208272c-714f-493a-ab68-7b1bbb0b0760 1 Other Other +a20858d6-4237-4960-8463-a2e802530e7f 1 \N Other +a208e6a2-3a6c-424b-b38d-f21e3b908bb0 1 Other Other +a208ed6d-753f-443b-91f1-72bdba76c8ce 1 Other Other +a2090e2c-7776-4255-939f-5ec01e1c005d 1 Other Other +a2096740-93f2-444c-8075-01311c6bcdc8 1 Other Other +a2097699-4170-452d-8cf3-1a551c0634b1 1 Other Other +a2098102-5813-4355-88f7-4e778b524b52 1 Other Other +a2098a24-7deb-49eb-9544-abc1b8345763 1 Other Other +a209d558-985e-46c3-a065-b63dbd85f4b8 1 Other Other +a209d5d1-b1a9-4ea3-a471-9a4b5e1f05ee 1 Other Other +a20a38b8-db21-49ee-ba95-28e078dc3ca5 1 Other Other +a20a3a76-39f3-41a2-b376-8fabb6650ee6 1 Other Other +a20a54ee-bfda-4dd0-8cac-5a4a19581ab6 1 Other Other +a20a895a-7608-4f65-aff6-9bb9365e0389 1 Other Other +a20ab7da-23d7-4360-b62a-fcf4cf470e57 1 Other Other +a20ad7cd-c02e-4baa-bf93-8fb5b8119765 1 Other Other +a20b45b9-02a4-4e26-b79f-ebc99a41ed0d 1 Other Other +a20b6c4c-fdf4-4ac7-b1ce-adc5fd5d266f 1 Other Other +a20b6c79-1b68-41c5-9a5d-d22448bda52a 1 Other Other +a20b902d-7a71-4e1b-ba6a-f2d3230b1ab7 1 Other Other +a20cba9a-e6ad-4dd5-ab0b-7785e13f9dc1 1 Other Other +a20cc3c1-0703-46c2-b47f-2ee884cfe1cd 1 Other Other +a20d4c2b-aaff-4a46-a1b5-a873c2ea8a03 1 Other Other +a20d6c0f-ff5f-426d-a96b-c04fb87b9110 1 Other Other +a20d90da-fdd5-46b7-bb98-5525ad4d0ad0 1 Other Other +a20da789-d28c-406e-879b-98752de2d78b 1 Other Other +a20de187-be65-4036-9a6e-d9271605f6d5 1 Other Other +a20e0aa4-50b0-47fb-a82d-eb149798f7ee 1 Other Other +a20e8075-1bf4-4cb8-94d8-4e62cc9d1a85 1 Other Other +a20ea493-cf60-4a7c-85dc-95769281896c 1 Other Other +a20ed641-e0ee-4322-a14c-9d2f1bc09af0 1 Other Other +a20ef9f4-5b7c-4adc-ae7c-60bd93b2390d 1 Other Other +a20f06aa-ca70-4aab-a22a-1921304295e9 1 Other Other +a20f0ab5-f74a-402f-9828-a240b133fd23 1 Other Other +a20f3374-b646-46a6-bf75-0097296cc85a 1 Other Other +a20f58a7-7179-4687-b008-367c7805bb76 1 Other Other +a20f7063-d12d-4785-84fe-88fa09300063 1 Other Other +a20ff446-ddcd-4945-b8a2-37642cac5e72 1 Other Other +a2101597-fa72-4f21-a67d-788728456201 1 Other Other +a2109487-6db3-403c-bcbf-58ec6e406cbd 1 \N Other +a210afe9-84e2-4294-b105-08cd6359ae6a 1 Other Other +a210dd89-3f20-487f-9c7f-ab7a90b4ef57 1 Other Other +a210f363-057b-4c6f-9e39-f8abdf409a89 1 Other Other +a2111a09-bb23-49e9-b1c2-5e35f414fe9c 1 Other Other +a2112c6d-64c9-4ca5-9b0f-068ccdf23546 1 Other Other +a211419b-ff4a-4aea-a882-33cb50e8af16 1 \N Other +a2121bd4-b85d-4575-a45e-74ca24c51ed1 1 Other Other +a2126936-91fc-4973-be8e-9a1e6a7736fb 1 Other Other +a2129110-8218-4810-93a5-847d09582ddd 1 Other Other +a2129c65-0ef2-4405-affc-f870f832e6e5 1 Other Other +a212a6a3-fb20-483c-ac21-2eb5233c30c3 1 Other Other +a212f440-fe5b-4be9-bbcf-2788a1bf6b5a 1 James Other +a21314da-417b-4ab5-a53c-1a09b6db1aad 1 Other Other +a2131990-2d27-4b23-92d1-ec921f33009c 1 Other Other +a2133e66-cd6e-4bd9-bccd-8364bbd9a43c 1 Other Other +a213d732-fca8-4bab-8d88-b354fa11b065 1 Other Other +a21442fd-c6fc-4212-a1c0-79dc73c4a5a7 1 Other Other +a2145a03-594d-4864-b50b-78eb17827c8c 1 Other Other +a214704a-0263-4134-939f-148e0cb8566d 1 Other Other +a214b35c-c583-4cbb-bcf6-a4ea0cd5c6e1 1 Other Other +a214c0b4-d40d-40dd-b31d-b032ba4a1c1d 1 Other Other +a214d98f-f993-4646-b584-46866fe61c8c 1 Other Other +a214f530-74e1-42be-937a-033c294e4d88 1 Other Other +a215285d-f0a1-4361-8526-f2da14c36d32 1 Other Other +a2155e8c-2ce9-4716-bda7-b7cb6aa59bf0 1 Other Other +a21569ce-c867-454e-b792-89e03b5a1794 1 Other Other +a2156a1f-0f22-490c-9a12-b9d0aa57456a 1 Other Other +a2156d06-3fed-4fe0-a2ea-f0519cc96eb4 1 Other Other +a2159c42-c6e4-4189-89a4-d2a96b14a9f4 1 Other Other +a215b9dd-e3a3-455d-ad29-48fc64cbf2ea 1 Other Other +a215da84-8ad2-481c-a65d-655eb62769dd 1 Other Other +a215faaa-58ba-42e2-9edb-7f06d357bfbd 1 Other Other +a21609c1-25fa-4de9-bb2a-b7101e87da4b 1 Other Other +a2165005-8f7f-447e-84cf-1a1834150225 1 Other Other +a2169ef7-677d-467e-9fa7-bd74bd74edf3 1 Other Other +a216a354-ac27-46ea-be36-3b5b4d4c3994 1 Other Other +a216c762-b57b-4c7d-a518-7725fb3f6834 1 Other Other +a216d696-99e1-4eb0-8987-1e1db9338a6e 1 Other Other +a216d713-395a-4cf6-a02a-0e569d6e89ba 1 Other Other +a2172b24-97dd-4923-a472-b60bedadacf0 1 Other Other +a2172c88-bce9-4389-bec1-97f5ac19eedb 1 Other Other +a2174661-36fe-49dd-8a64-5c003e168990 1 Other Other +a217585a-4024-4ee6-88ac-476a2e20f04d 1 Other Other +a217c696-4c2d-4b8a-8a83-d646dcc8d5e0 1 Other Other +a217d016-a58f-4230-9279-f6d0e2ef13aa 1 Other Other +a217f98d-47ca-4268-87ac-128b883dbd1d 1 Other Other +a21898a4-9890-44bb-abf5-25d70ec73400 1 Other Other +a218bf72-2e39-4669-9961-0b594d7c0ed6 1 Other Other +a218f99b-053f-426b-95b9-69073b8be3d8 1 Other Other +a2193edd-e69c-437e-bc29-8cf5b1249983 1 Other Other +a219472c-0931-4875-b802-bb38bfc01cf6 1 Other Other +a2197916-b593-4014-934a-7582f3518e8d 1 Other Other +a2197c35-de07-44bb-ae0e-fbf25c88c562 1 Other Other +a21a0240-0f78-4603-a263-e922a6520898 1 Other Other +a21a0f0f-7377-43d5-b709-2037c36c3db7 1 Other Other +a21abb34-3864-479d-8aac-a3296cfda0bd 1 Other Other +a21af4e9-d8af-4537-b8ac-d0340e5fb609 1 Other Other +a21afd3e-827d-4885-8ebc-0dd1043e97bc 1 Other Other +a21b0179-ab55-4594-b216-3f709426275d 1 Other Other +a21b040b-ca76-47ec-a79f-91150b7b878b 1 Other Other +a21b2792-e46a-44c0-833b-41a9592c53fd 1 Other Other +a21b6c36-9e31-4571-a2f1-1bf0f28ce216 1 Other Other +a21bba15-7555-496e-963e-bf0bd8d2849a 1 Other Other +a21bd76b-c715-49ae-a49d-1516a32989ef 1 Other Other +a21beb2f-54ea-4ac7-8138-84f57dbb626e 1 Other Other +a21c0689-8ca6-45ef-b954-21d73d3197ff 1 Other Other +a21c1e9b-c73c-4126-912d-73db21e2b6d9 1 Other Other +a21c3b4a-4df5-4ab3-b809-38f73d1a4652 1 Other Other +a21c44bb-e98f-4760-87e0-a010d7f45d0e 1 Other Other +a21c4a6f-d6f3-4ea7-a048-db9d1a91a0a4 1 Other Other +a21c5058-a410-4091-a5dd-ac0c1797b811 1 Other Other +a21c7522-da75-462d-b230-f9cca4e4347b 1 Other Other +a21c9df0-7cf0-4e14-82e7-5a7367472210 1 Other Other +a21d4639-4a73-44a6-ac7f-98e0ee0e7be4 1 Other Other +a21d491b-34d3-4030-a446-1f022e00db42 1 Other Other +a21db720-81c5-41c0-ae2e-207a8db63e29 1 Other Other +a21dc046-ef32-459c-a23d-ab86f5b1e165 1 Other Other +a21dc095-0a0d-4e9d-9103-7451d7deb9b3 1 Other Other +a21dddc6-ae01-48f4-aed1-191521952691 1 Other Other +a21eb9d0-2f26-4c31-982c-afeb595344e3 1 Other Other +a21ebaf0-0ba2-4696-b39a-02f0d4a343ea 1 Other Other +a21ef400-4ebc-11e8-964b-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +a21f22fa-7776-4ab2-8416-6c4a88d982a6 1 Other Other +a21f3f56-27a5-4c3d-974b-1056598e93b7 1 Other Other +a21f4dc2-804f-4644-b3e5-ad1ab1522db2 1 Other Other +a21f50ee-4fff-49cf-9572-12c750f7f586 1 Other Other +a21fb584-e9ba-48ab-916b-be41a63b8e49 1 Other Other +a21fbcdf-c733-430e-b89f-ad2157b31b03 1 Other Other +a21fcca7-d934-4d48-a13d-e4cc9d81759d 1 Other Other +a2201f5c-a61a-4594-aec2-e5903e00f561 1 Other Other +a22053dc-a9b2-43f4-a103-125b243dd775 1 Other Other +a220635f-3098-49ea-a393-1cbd91df1593 1 Other Other +a220f8a2-41d8-4e00-a253-862f128b9df6 1 Other Other +a2212a0d-68fd-447f-8a48-05b11323c5e2 1 Other Other +a2214ad6-ea17-4a95-9e35-4be8e4ef2c04 1 Other Other +a221df70-c9d6-43fd-8844-4432d220f7f8 1 Other Other +a221e017-387b-4de9-99d2-7a297a0da565 1 Other Other +a221fb41-6769-40a5-b003-4582d93bb189 1 Other Other +a221fea1-737d-4606-835d-0c06a1e6d5e8 1 Other Other +a22221ad-c42b-4ad1-9460-08af714ba762 1 Other Other +a2222360-cf21-4244-845d-44fcc9dddf28 1 Other Other +a2225bf8-168f-44dd-91ba-07059e8f6cb2 1 Other Other +a222a236-048a-4c6e-84e9-c5848becfb28 1 Other Other +a222b312-e0c2-4be4-b72f-d134e38eda41 1 Other Other +a2232221-adf0-4242-86fe-32388889fe43 1 Other Other +a2237c6a-6f65-49e2-b07f-e998ad7a4ab8 1 Other Other +a22383f4-0745-45d3-93c9-b78f22386429 1 Other Other +a22430fa-c4e9-405e-bf1b-89faf37aa733 1 Other Other +a22432c4-6696-452d-9d78-4af42742029a 1 Other Other +a2244ad7-a979-4f4b-975a-2b2251cefb87 1 Other Other +a224ed3c-d62d-49c7-a14c-89d456fda2fa 1 Other Other +a2251e39-02f8-495e-a049-666a16f8623b 1 Other Other +a22524a6-660f-4ca0-98d6-68f75c440f3e 1 Other Other +a2253d68-94b4-48a4-84dc-73d1d29fd7f8 1 Other Other +a22543b8-ef8a-4805-8f97-e37f948423df 1 Other Other +a225935c-c154-4e34-9bb6-c8da9279e3be 1 Other Other +a2263527-2504-4ba3-9c92-c63838c3fee0 1 Other Other +a22649aa-b4dd-4d4d-b1f3-f17663a2403f 1 Other Other +a2267628-3d48-4fd7-a622-f1c63f572b55 1 Other Other +a226974d-d322-4304-8118-97f97d69dbcb 1 Other Other +a226977f-a02c-4e20-8dc7-54917d54bdb8 1 Other Other +a226aa4c-413f-4255-a230-dbb7759f3d84 1 Other Other +a226ab19-0b67-4920-8834-a041c92283dd 1 Other Other +a226cf5e-a274-438b-9701-203c4ff7a318 1 Other Other +a226d2db-f359-4f99-8a2a-fbac9744bc46 1 Other Other +a2270eb5-bd3c-4a60-9ab4-01c484a54dba 1 Other Other +a22737c6-6363-40e4-963f-3c5b69ec4c60 1 Other Other +a227b4ea-d664-4093-8f8c-1f6aaa3875ad 1 Other Other +a227ec33-d87e-4de7-80de-00085aefbcc7 1 Other Other +a22801aa-186d-484d-81ea-9ef745b11072 1 Other Other +a228593b-5012-4e99-92f8-16ec18e9ed4a 1 Other Other +a2287908-87e8-4e06-b9b3-680f31098dc3 1 Other Other +a228a892-af07-4d48-bef4-e06ecd69b1fd 1 Other Other +a228e90b-2aaa-4c1f-bd33-da6697d547c5 1 Other Other +a228f2f2-be06-48ea-b302-01b8e02991d3 1 Other Other +a2294792-cd95-4fa9-9281-4af4c14205eb 1 Other Other +a22974fd-9f85-488f-b7f8-d4cf6ddab049 1 Other Other +a229763d-5ce7-4fe1-be66-f0b1be378c56 1 Other Other +a2297c91-ad00-4689-a464-de636ab411a5 1 Other Other +a229c902-e9a6-4914-95ea-734c395613d7 1 Other Other +a22ad7a9-8571-425f-9674-a24894fc803f 1 Other Other +a22b3ac4-fb7f-4e4a-b68d-0b367a4b14f1 1 Other Other +a22bb242-c9eb-43cb-9a0f-f29953fcc828 1 Other Other +a22be28e-28a6-4b1e-aa03-177c9e78ae84 1 Other Other +a22c05d1-8760-4b47-a33e-03d6b35d10b5 1 Other Other +a22c35ce-86c3-441e-868f-8b0a6bc9230e 1 Other Other +a22c66c4-85cf-4fa0-a601-111d7c7c9df3 1 Other Other +a22c9b7c-141d-4753-98b4-02b0d4a2ceb7 1 Other Other +a22ce78e-2d2e-4285-abb7-b00f1e56a151 1 Other Other +a22d0523-6f68-4bd9-8b00-58cba9569d55 1 Other Other +a22d250a-bdef-4201-abeb-a438456e3bab 1 Other Other +a22d6f0e-e421-4ad6-923f-037945872a90 1 Other Other +a22da68f-032e-49d0-ac5b-9fb5a93c5f32 1 Other Other +a22daab9-71f1-4aff-bf47-333908b825b9 1 Other Other +a22e0a83-1b0f-4d07-83af-944647c9ee10 1 Other Other +a22e390b-cf5e-4227-b2ef-aed2908823ee 1 Other Other +a22e6302-d3e1-4132-b819-62fea11d25e2 1 James Other +a22f07ea-e2af-4a2a-b4f7-feeea7c58393 1 Other Other +a22f178e-e83d-48ca-b3cc-5c5f12d18643 1 Other Other +a22f51e5-5543-481c-b188-2dfe4bac6083 1 Other Other +a22fd9ac-e469-465a-911e-b0f88f30086a 1 Other Other +a22ff445-1051-4eab-8103-33d50ad0ca64 1 Other Other +a230134e-5805-4457-9afe-0fc668502c4c 1 Other Other +a2302f2f-5e70-4bf3-8711-27562427e80f 1 Other Other +a23050a6-a28c-4392-89bf-4a2cbd9ab19e 1 Other Other +a2309327-791d-4fa9-b780-2cf3fcee6e64 1 Other Other +a230d6f5-52af-413a-9771-6231b80f1d62 1 Other Other +a2313ea0-290a-41de-83fb-38d5529713d3 1 Other Other +a2319220-6f98-4ff3-92d2-2937071b3407 1 Other Other +a231cd7f-a383-4c03-ac86-aeb8b1233a83 1 Other Other +a231dec9-4ab8-441c-93db-f1610506d25e 1 Other Other +a232059c-2518-4292-a8c9-a39136fc91c8 1 Other Other +a2321539-5a4c-4e88-88fd-318a30278938 1 Other Other +a2323fe8-7160-4cda-b358-e16ea04b49e9 1 Other Other +a2325cd9-5dd1-478c-8c75-2455a34c6e2b 1 Other Other +a232712a-78af-4e49-9e81-f78ac3f4d4f4 1 Other Other +a2329460-c83f-4d76-b64e-a0fcbbfe079b 1 Other Other +a232e454-3ced-42bb-91a9-8146e55e4913 1 Other Other +a23314af-0416-48f4-b633-4bc8762a0e48 1 Other Other +a23318f0-cb4a-41a6-b1c2-c09d86581049 1 Other Other +a23360c1-866b-41a0-934a-b12ad662b595 1 Other Other +a233ea41-2fa7-4f76-9f54-b6d65deeaecb 1 Other Other +a2342df2-7b42-42ae-8f2c-8fb5852e1449 1 Other Other +a2347347-8d98-488b-a6ff-589d369ee842 1 Other Other +a2348c86-546c-4826-af9b-b4b7911dd1f4 1 Other Other +a234a8f9-b389-4d3e-818d-919590419aa2 1 Other Other +a235066a-47ba-4a29-a7f5-f28334c709c7 1 \N Other +a2359d34-83d8-4aaf-ba62-9793089ec385 1 Other Other +a235c26d-16fb-493c-9be5-42cf2c948567 1 \N Other +a235df1c-e4aa-4bca-bd41-48875e40524c 1 Other Other +a235f5b8-d8d2-4655-b53c-c6631e1898a0 1 Other Other +a2363d64-726b-49cc-bbc2-36dac67edfd3 1 Other Other +a2365cf1-e6d8-4d20-ba03-b397502d42cd 1 Other Other +a236dd0e-5913-420c-96f1-4e18fdd695a0 1 Other Other +a236df4b-93aa-4c3e-bb6c-aa857c300e0c 1 Other Other +a23782cf-faff-4c11-8a31-3e6d68c042e1 1 Other Other +a2378c3a-e039-4967-8afc-2ad805c3f847 1 Other Other +a2379957-a1f7-4c18-93bd-39d7c74ee663 1 Other Other +a237aa45-390b-43a7-b9e9-788008486119 1 Other Other +a237d1d6-cec0-4b3f-9b51-1780ece60598 1 Other Other +a237e85d-42b3-443d-b218-07d5c1047bd2 1 Other Other +a2383f1e-543d-4bec-abf9-623020fa8c10 1 \N Other +a23886a9-b8bb-4de9-997f-7fa7d2b3abe8 1 Other Other +a2389707-a33a-4282-8762-1e10c4a00423 1 Other Other +a238aeb9-97c3-4a0c-b027-60f6c39045bc 1 Other Other +a238b030-4828-4562-b9ef-c5702104cb71 1 Other Other +a238b306-5305-4525-9641-0630892014cd 1 Other Other +a238de4e-541d-43de-8538-56dc9006b69a 1 Other Other +a238f871-756b-4e45-8636-6dd1813d0e62 1 Other Other +a2392625-554a-4e98-b053-bd15ce0c1ebc 1 Other Other +a2398251-ba27-48e7-b5a9-6142a3a34484 1 Other Other +a2399714-f55e-417a-8c2f-65c614497259 1 Other Other +a239be04-5ed6-4843-8a23-dbc399445141 1 Other Other +a239be9d-08d6-49a0-afdc-052c4d69ba95 1 Other Other +a239f07d-9166-4295-a2c2-9c27f50c3511 1 Other Other +a239fade-191e-4f23-95bb-50ae28b95731 1 Other Other +a239fd70-a7a1-4070-8566-9fdb07c46b94 1 Other Other +a23a7304-e4a0-4329-8431-29cef1cbb6fd 1 Other Other +a23ab736-663f-4ea3-ac96-7b151045ba38 1 Other Other +a23abceb-edf6-4e6d-b2de-6e79a628ceef 1 Other Other +a23ade74-b80c-4315-9aa6-e2b636a1e2bf 1 Other Other +a23af230-a0c3-48c6-a7a5-f2be10e59f42 1 Other Other +a23afe40-ded4-4e54-9a04-95df137c13f3 1 Other Other +a23b0efd-3535-4122-905b-f8fd88ac48e8 1 Other Other +a23b3d9e-5c29-4cb4-9342-93fe0c15f1ac 1 Other Other +a23bc68a-80d6-4ccc-8f47-d4710c31bd5e 1 Other Other +a23c2541-4644-46fb-b1ed-13bb39b37e90 1 Other Other +a23c4aff-d95c-4ff2-a23f-26783320ab4e 1 Other Other +a23cf675-16e2-44a5-bb84-fb02504e993e 1 Other Other +a23cf752-ae62-42f3-bc0d-89eb60abfc67 1 Other Other +a23d0ace-f16f-44e2-b03d-c78dd8724c75 1 Other Other +a23d13f9-aff2-4fbb-aa4d-e6a9c291bc43 1 Other Other +a23d3202-951d-4e65-bb09-2e3595e33901 1 Other Other +a23dc287-7471-4ed0-8d41-8d6093457022 1 Other Other +a23e0df6-181b-44ec-9822-0e4380db8ed7 1 Other Other +a23e56df-c72e-48e2-91a2-4401d3ab1c89 1 James Other +a23f0847-512e-44c0-a784-42a58115ff62 1 Other Other +a23f3f35-5d84-4ca4-8332-d59cc7931d0b 1 \N Other +a23f7555-f4ab-4bd4-823c-e00c15ad1497 1 Other Other +a23fb89c-ae60-441a-9108-fa12a657fcbb 1 Other Other +a23fbe3a-8132-4e38-bb71-896178cf3b86 1 Other Other +a2403065-53cd-40dc-ae61-7f8bd07e0187 1 Other Other +a24067b4-2883-41df-9ba4-3e44e9699e62 1 Other Other +a2406d84-bb5f-4474-9681-78460995cab9 1 \N Other +a2408572-6be2-4479-b451-b8e42ebe3187 1 Other Other +a2408cc2-85b0-45c7-b88c-6d9de48d3dd5 1 Other Other +a240a5ba-9ad1-42c9-8969-85d8551873c4 1 Other Other +a2412e5f-bb99-48fe-8cf2-40afeb110573 1 James Other +a24179d8-fa0c-44f8-8f07-0eca3443e7c8 1 Other Other +a241c63b-246a-4e84-8607-2edd95e142b3 1 Other Other +a242ef1d-6916-46d2-84f2-49d57d2e49e0 1 Other Other +a24317b9-15af-43e5-9496-f1736b5c77f9 1 Other Other +a24335d6-0763-4762-bb7f-692d2b1fc623 1 Other Other +a243440d-622a-43d1-9e13-1cccafccb401 1 Other Other +a243ca76-c312-401d-9330-d4bde0cacff3 1 Other Other +a24432fb-c7f7-4ff0-afda-5d7091e1f6fd 1 Other Other +a2443458-c469-4a09-8317-b3c74f2475d2 1 Other Other +a24463c7-fbfb-4fc7-ad02-d5cd6b711d0a 1 Other Other +a244bfba-09cb-46e6-bc02-7a2d3f2942ab 1 Other Other +a244c29d-5118-41b6-a627-de18b5e1defd 1 Other Other +a245816f-634e-4c47-b9c0-3c3be5893005 1 Other Other +a24585c0-93f7-4585-bbab-a78c55457abc 1 Other Other +a2458793-2dc5-467d-9eae-c6ddbb6387ce 1 Other Other +a245a4aa-9a46-484b-9b8e-f7f70e3c549d 1 Other Other +a245a5a0-2330-47cc-88e5-57e75a3b9304 1 Other Other +a2460908-38a0-4135-8a9c-14920625f4c4 1 Other Other +a2463899-8100-4629-b358-e5dc60916f08 1 Other Other +a2469d22-c75c-437f-9852-acc8660f70ff 1 \N Other +a2469e8b-b60a-4727-912b-ec42e82f3182 1 Other Other +a246ad3a-4d15-459e-853e-606493e8d1ab 1 Other Other +a246d9ae-0be2-45c7-a3c5-e4c6fd5f2b6e 1 Other Other +a2470277-e603-4227-a64d-bf8026bfde75 1 Other Other +a247302d-f877-4be8-bbd4-8d5f3bbe16ea 1 Other Other +a24759ee-d381-4e54-944c-44e7d64e4835 1 Other Other +a2476cd9-c138-4041-86c6-5ba369261de2 1 Other Other +a2478387-9d60-4302-bac8-5f89970ae580 1 Other Other +a2479e0c-3783-43e3-828f-308e14cd0421 1 Other Other +a247cebe-7cbf-4ad6-a5b3-1214aace7a5b 1 Other Other +a247e507-e0a9-4058-a9cc-66be5b690708 1 Other Other +a2488db6-5677-4e99-85b7-a076b335cbb9 1 Other Other +a248f0c7-8b42-4e1b-b3b0-ba3f1fb79385 1 Other Other +a2494bcf-c875-4325-91d0-f01d8a4504a4 1 Other Other +a2495231-0d94-49a8-bc6a-988e581554e5 1 Other Other +a24960ad-ce62-44a1-ac70-48ce02280f88 1 Other Other +a2496d78-340f-49a4-91c8-e18649fee405 1 Other Other +a249736b-0329-4da7-8602-bec52f3e94c1 1 Other Other +a24a0db6-f838-4fa9-b70b-c5e342f763f1 1 Other Other +a24a6401-4c5a-4f1c-b935-ab57db3800fd 1 Other Other +a24a8e3d-26ce-462a-8c06-85be6ee2440b 1 Other Other +a24ab2b9-5fef-40f4-89d1-ee94132817c4 1 Other Other +a24ad035-8df4-4565-aea4-4bdf0c63e923 1 Other Other +a24adc55-7fe9-433f-9c6c-3454f11dded6 1 Other Other +a24b0a72-9c33-4594-81bd-e86c7999b616 1 Other Other +a24b2231-742c-486f-a930-db9204ca507b 1 Other Other +a24bfc7f-9663-4aab-a839-bf0b4a07ad75 1 Other Other +a24c61fc-bc5b-4abe-8123-07531e322599 1 Other Other +a24cf999-168e-4ca7-a7e6-8ed3ecd08de4 1 Other Other +a24d11fb-ec3c-4757-b67d-aad918d1fc2b 1 Other Other +a24d1790-fa42-4e0d-ab8a-540ed04103ef 1 Other Other +a24d2b40-331a-4761-9010-1ec89500ed24 1 Other Other +a24d6804-c857-4fb9-ae58-a46297f9c8cb 1 Other Other +a24d8c6b-94de-4de8-acd1-7e1e9a86f715 1 Other Other +a24db172-49a6-470d-af8c-475278041da5 1 Other Other +a24dccb4-ad9a-46a8-8f86-e224999e7094 1 Other Other +a24de2e5-044a-4b9b-921f-b5b64342de17 1 Other Other +a24e12ec-8f3d-4fc4-a717-f6827f5e0d9c 1 Other Other +a24e27ba-5b8a-4707-9404-6058b135b54e 1 Other Other +a24e311a-3bc8-4e58-a86a-2f71b51624b6 1 Other Other +a24e98fd-1f13-4790-9441-3d9f25362b0b 1 Other Other +a24ea088-7da9-41c3-a88f-f3d137c24e05 1 Other Other +a24eb5e6-34a6-4846-bee1-6285cce07a49 1 Other Other +a24ed836-40f7-4e3d-be34-2f41102c2e44 1 Other Other +a24f70a4-77cf-44f0-b978-ea043922a7b5 1 \N Other +a24f843e-9fb9-47e5-8f1a-f8fe0e10d8fd 1 Other Other +a24fb0fc-281d-4356-935b-e19db0a069d5 1 Other Other +a24ff123-297a-4ccc-b57c-0bf8cdd6436c 1 Other Other +a25015e5-5d59-4afa-a23c-773dfa389eea 1 Other Other +a25081e1-11fe-4969-9a02-69f31645f1e6 1 Other Other +a2509769-36f1-472a-9e5e-b6e325d2bbdc 1 Other Other +a250b458-5016-458a-8655-07744d760140 1 Other Other +a251213d-d65b-46fa-ba5b-d40ddb3067b8 1 Other Other +a25148f5-23c9-4903-a05b-0edee06f974d 1 Other Other +a2517c0a-ba37-4e40-be79-38d89a2f7f7c 1 Other Other +a2518491-810d-45fa-b0c8-d6e66746dbf8 1 Other Other +a252300f-b745-42b6-b1a4-aaec37fb2a67 1 Other Other +a252361b-7418-48f9-840a-2950d9636403 1 Other Other +a2526318-37eb-4725-a228-f3e18a1c65c5 1 Other Other +a2529763-808a-4d10-995b-4f9a6bd4da3e 1 Other Other +a252ecca-444b-44d2-b3ba-671df763d798 1 Other Other +a2532ad7-8baa-4d63-b59e-cff00c4f4720 1 Other Other +a2537d70-d53b-439a-a8ba-5e02c6841b33 1 Other Other +a253ac64-a385-4a46-a4a2-696db8cee0f9 1 Other Other +a253b41e-0ff4-4475-80ec-0e0e12978a1a 1 Other Other +a253d7c9-0545-4b3d-a327-1c4d2f6642f6 1 Other Other +a253dcdd-12bf-4004-ad4a-82a572a28313 1 Other Other +a253ee59-dd01-41c0-8392-19ddc4cb5bfa 1 Other Other +a254baa7-096b-4312-b592-8d45f6472c2b 1 Other Other +a254f558-2c5c-4c67-b5b6-6abd55cf7a98 1 Other Other +a2550e6b-8cbd-4903-b2c2-775bd046caf9 1 Other Other +a2553b8c-d443-46e0-8d24-a7d32462aa87 1 Other Other +a255797b-3622-4fac-8f17-a4e315c6ca0b 1 Other Other +a25579be-fefb-441c-9481-6f00b0f1db71 1 Other Other +a2559474-e1f4-428d-bf3d-b4db84554b10 1 Other Other +a255a850-28b2-40dd-824e-a8a9459782d5 1 Other Other +a255b368-ca38-4daa-a853-b3d7a9ad74ae 1 Other Other +a255bc8f-2ba6-45ab-b307-77a119e27df5 1 Other Other +a255cd31-1781-475f-a2d4-2bf940699ece 1 Other Other +a2562a9b-22ef-4bc7-819d-2d1f7ad97550 1 Other Other +a25673f2-7653-4064-8009-bbe0bfbbb067 1 Other Other +a256e6c2-2e52-4b56-bd59-86f3df10076c 1 Other Other +a256f739-f5ad-4124-be64-d66a8a1ff0b4 1 Other Other +a256f9f0-83d2-4e56-bbee-4ce8df7c4197 1 Other Other +a2577842-f170-4123-afb6-9a5fae63395c 1 Other Other +a257a0a5-7095-425f-9f86-523b24b3f326 1 Other Other +a257a2d7-cf7a-42be-a75d-334a118816ec 1 Other Other +a257a673-9d3a-41d8-998f-a4030bc5ffc0 1 \N Other +a257da38-fda2-4c8e-9a9c-5e34fdeb7214 1 Other Other +a257ee91-d033-47a7-8b40-ba2f8158314f 1 Other Other +a257fd74-6950-466d-9152-10c77e880f2d 1 Other Other +a2582f15-8ab1-4c10-b2d9-8bfef3e56f34 1 Other Other +a2583483-2548-467b-a550-5043821d95f6 1 Other Other +a2586056-e5e0-49a8-ae3f-02281de93243 1 Other Other +a2587717-1dd8-4f14-b5c0-07607d8dc712 1 Other Other +a258a843-6b79-4fc3-8e2b-f3c8be58299a 1 Other Other +a2596a96-ee05-41d1-b37c-2e8a56ee37f9 1 Other Other +a259ab90-ebbf-45aa-a754-06c479d308d7 1 Other Other +a259cea6-ab15-46b9-b644-d033a0780e90 1 Other Other +a25a01ce-b6e4-4f7a-9063-d3616248aeeb 1 Other Other +a25a1459-cdc7-4a86-909c-5e54030aec90 1 Other Other +a25a46aa-25b2-4081-895f-c8526d9534d0 1 Other Other +a25b1841-f4aa-4909-b381-46454766c3f2 1 Other Other +a25b567b-16a6-4e0e-8989-72f30ffdf102 1 Other Other +a25b581b-d78f-442e-8dd5-fa68b70b6948 1 Other Other +a25b9fdb-c66e-416d-bb13-865bbe072d89 1 Other Other +a25bc0be-3d01-4ffb-a431-d3e01cc76c7d 1 Other Other +a25be1c7-ccff-4f5d-8c9f-fc4db996a55c 1 Other Other +a25c4422-3d9d-4e7a-a343-e3c16fe457e0 1 Other Other +a25c5f05-7075-4fd6-88da-3f6c3339de87 1 Other Other +a25ca313-5286-4ba9-b0ca-c70c496e0d15 1 Other Other +a25cc1dd-62de-4706-95b5-bfbc6319fcb7 1 Other Other +a25d0269-0404-4cbf-b625-723a6741699e 1 Other Other +a25d5a3f-9bd0-4581-802f-602cfa480bec 1 \N Other +a25d74ae-e985-4c3e-9470-d1f2991705eb 1 Other Other +a25d7f09-bf39-4bfc-8e39-3a3c2412fb60 1 Other Other +a25da87b-c587-4424-8288-6f051163dd0c 1 Other Other +a25e8952-fe98-46f4-914d-40b801059913 1 Other Other +a25eb35f-3861-451d-bf44-f28dcc573548 1 Other Other +a25f4bdf-843a-42ed-83bd-aeb2ed6975d7 1 Other Other +a25ff2c4-1a37-4b7c-b10d-06c41b03d3fe 1 \N Other +a26045a1-d67a-42d2-bfbb-19638cdcb7dc 1 Other Other +a2604f5a-b786-457a-9cbc-56cc6cc99209 1 James Other +a260d0e5-41fd-4bec-8608-73d7294136dc 1 Other Other +a260d871-ef84-4356-85a2-3f277240f41b 1 Other Other +a2612f19-e125-4297-89cb-10544045eae9 1 Other Other +a2613fa5-99d5-4cb8-977a-5195ca67efac 1 Other Other +a2615a5c-8551-4bc1-8d85-105a451a10b8 1 Other Other +a26199b9-f898-4e9e-86ed-267f44132c67 1 Other Other +a261cc52-b8ac-479f-8bdd-5f7f49ae49c6 1 Other Other +a262375a-297c-493d-a6dc-4a0968efcaaf 1 Other Other +a2625997-1247-4597-b4bb-7e2c8cd5b0da 1 Other Other +a262a138-6349-40cf-84c0-d45c664bb33e 1 Other Other +a262e56c-4d0a-46f5-aba2-7f91f70ea78b 1 Other Other +a2633b2c-3dad-496e-9def-e7b3e4b4981d 1 Other Other +a2634824-f5be-4041-ad01-fce00355ed15 1 Other Other +a2635abc-dc1b-42f5-9670-e3bfcf73c80e 1 Other Other +a26384e1-8b2b-4fa4-b63c-3ead21224e31 1 Other Other +a263bf6f-2e59-48b0-a3d6-1c3799569e85 1 Other Other +a263d019-0129-4edf-92f1-52121b19cb0d 1 Other Other +a264a201-f773-493e-8191-331b4e912535 1 Other Other +a264d282-316b-4fc6-a904-fb60b6ad0a4e 1 Other Other +a264de6a-6a88-4458-96d1-cd9b3d53a1ad 1 Other Other +a264e733-710d-4a8a-8c78-c47afc38470e 1 Other Other +a26523c5-d946-4bcc-b893-8238a3e11dbd 1 Other Other +a26533a2-6307-4d2e-a541-0ef6eb89dbc1 1 Other Other +a265a6cd-256c-4c56-be6f-d2f2151d127c 1 Other Other +a265ad3b-eaca-4b3c-8587-dc0ceabe8dc9 1 Other Other +a265cc70-1c4c-4737-a2b2-1f202285044e 1 Other Other +a265e0a4-66ec-411d-b6be-3cb9f10e60fd 1 Other Other +a265f078-00ef-11e8-9d5b-fa163e8624cc 1 Other Other +a2660dd9-c69b-4cfc-9b6a-8622274939a3 1 Other Other +a2667dbf-efdb-4c78-b769-166f8982985f 1 Other Other +a2669316-001f-4404-b8a9-cb203737e6d1 1 Other Other +a266af71-6a30-47f9-8f5e-d54ccc2da529 1 Other Other +a26700a8-2ce9-4a47-8e26-7e3a472be9b0 1 Other Other +a2670272-902a-495a-b0dc-c95780f0441c 1 Other Other +a2670f80-ea39-4f89-b64d-6bfc5bcf346b 1 Other Other +a2678209-011c-4b26-8ca8-5da73a317657 1 Other Other +a267b31b-59b6-49e3-907c-99be9545f1de 1 Other Other +a2686c34-fe32-442c-83eb-6b6fa9b79f97 1 Other Other +a268d67a-2608-44ea-a788-ce4bb0184383 1 Other Other +a268e699-be73-42e6-b4ad-3b1996440283 1 Other Other +a268e7a7-cc57-421c-9aa3-6220457c90fb 1 Other Other +a2695990-6902-43dc-a8c5-28b2f5575ae0 1 Other Other +a26974cf-c887-4768-901e-3a195b01a899 1 Other Other +a26985fc-3dd6-424c-8917-4f22dcd7bfc2 1 Other Other +a2698cd9-7baf-4512-bbbd-417e1ab5b317 1 Other Other +a269d790-8075-4870-a780-cb171860f6d7 1 Other Other +a269fd2f-78b6-47b5-8a6b-42d1a9788a02 1 Other Other +a26a0ec1-c560-4458-9eef-13fa55dc4e3f 1 Other Other +a26a207b-85c1-4c0e-b83d-110dea2a288e 1 Other Other +a26a9860-a0fb-4804-845e-4adb44856563 1 \N Other +a26ac068-f4a3-46f6-b915-df116ba53e64 1 Other Other +a26ae9df-443a-429b-9d3e-ab8870581670 1 Other Other +a26b1983-b802-469b-9721-a05b6034f0e2 1 Other Other +a26b26a6-5442-46fd-ac56-14117ba0104d 1 Other Other +a26b4739-545a-40a5-aacc-3a75ebad795c 1 Other Other +a26b567e-ebb3-429e-a30d-cc752b1aa48b 1 Other Other +a26b6f00-1433-4013-a026-a4a73eaa20fa 1 Other Other +a26b9a56-f227-4970-b6a3-13b34122de54 1 Other Other +a26bd0c3-3d00-4117-95c1-af3162a2bcad 1 Other Other +a26bfcbc-4c1b-45b6-9505-180093b67f5c 1 \N Other +a26bfdde-592b-47a2-b98a-ace8be91fa35 1 Other Other +a26c16fc-854f-440e-9908-1a8e607dd67a 1 Other Other +a26c8f19-99ea-42e8-abc3-f8cf8cfd1af1 1 Other Other +a26cb5ee-8c60-45a3-9533-c37954e100e0 1 Other Other +a26cc278-a431-4628-b937-ec53b3b2ddc3 1 Other Other +a26cd309-3476-493b-ac3e-141862744b37 1 \N Other +a26ce959-0eff-42c0-9ae4-6d68825e8c3e 1 Other Other +a26d1b00-f4b4-4734-96fa-2b91a14ddd2f 1 Other Other +a26d3c5b-3d12-40ca-9611-4408c938b9ae 1 Other Other +a26d6ec8-6875-4521-81c9-bfdcae01188c 1 Other Other +a26dc492-f692-4a58-b9b1-2be15738bba5 1 Other Other +a26e13db-2a6d-49f7-b5dd-1ffd8ed0fdc4 1 Other Other +a26e7a3d-5e22-4e54-b5cf-f105d5c1f2b8 1 Other Other +a26e8330-d8ff-4e6d-87cb-cdeacc1b8aef 1 Other Other +a26ed723-079a-48c4-937b-73d3378e41a1 1 Other Other +a26eda7d-9fb6-47de-b781-2eefe2ac6654 1 Other Other +a26ef867-4694-47a4-8224-3e4b4aa43332 1 Other Other +a26f7e1c-5c0a-4e60-b2dc-e94d65281136 1 Other Other +a26ffb91-e85a-46ed-946c-4d0dac848ff7 1 Other Other +a27023b3-60f4-41e9-9bac-7ba88e8f5874 1 Other Other +a2704c54-bacf-4c04-bea9-d635ab700f18 1 Other Other +a27067ad-1880-4d05-b15f-b976119d0c02 1 Other Other +a2708cbb-6d8d-41c9-890a-5417ee234e62 1 Other Other +a270bf8c-6dec-403b-9e51-503a18612d2e 1 Other Other +a270d85e-9be7-48fe-89f7-04e13cc0fb8b 1 Other Other +a2713571-fefd-4250-85be-7811d7313b7a 1 Other Other +a2718554-e81f-4fc1-90b7-e74079b57df2 1 Other Other +a271abd1-dbac-4c19-add8-b2a60b3dbfcf 1 Other Other +a271f839-00bb-48ce-93f5-7fcbdc20f8b7 1 Other Other +a27201c8-e1f8-4127-aeb8-d1690caf91f6 1 Other Other +a2725d25-ba46-4e3c-96e5-0a5c01a3468f 1 Other Other +a2727c0c-3298-4e28-a28a-009a154b2c96 1 Other Other +a2728b67-68c2-4db0-8737-ee76ed73f74f 1 \N Other +a272a317-98ee-46b7-8467-b7a56d858bd6 1 Other Other +a272be94-c065-4df6-a38c-ae2355850db5 1 Other Other +a272c5a5-e067-4792-974e-1126815b5cbf 1 Other Other +a272ca28-b6c5-4406-9857-f6610a4d5d1b 1 Other Other +a272ce64-f3b6-440f-b71a-f552d91648e9 1 Other Other +a272d1d1-8f4c-4e3f-b624-24da37b5815e 1 Other Other +a2730e11-fa5c-43e3-abe8-964fe73c409f 1 Other Other +a2732b38-6d6a-40f9-ae81-bc125b18453b 1 Other Other +a27393da-7f68-48c8-ab1c-96faa5029935 1 Other Other +a273b9cc-fdc3-4ec4-9487-2eee3a61030b 1 Other Other +a273ecf7-da3a-417c-bb81-ea186fd78f9d 1 Other Other +a27542f8-2229-4200-9c7c-a1d3e334a9ed 1 Other Other +a27543c2-6e9a-49fe-8ee6-0c3b827ef21c 1 Other Other +a27571ca-0645-46f0-ba04-8f14d155ed70 1 \N Other +a27590ef-15b3-4c90-a045-a69d19f41457 1 Other Other +a275abd6-8448-4ead-b101-4a9ac29c091f 1 Other Other +a2760cf5-9931-41c6-961b-7e4915a30cd9 1 Other Other +a276b64e-a347-4d38-a7d2-9e4ce4e63941 1 Other Other +a276bbd8-083f-4562-bf3a-4a712377c6ea 1 Other Other +a276be86-122b-479c-9837-71f57eba33be 1 Other Other +a276e11f-a592-4c1f-9bcc-41cd1858722f 1 Other Other +a276f78d-6f5c-484c-b776-6e12533dd233 1 Other Other +a2771139-11cb-48d8-b1a6-6c607f394632 1 Other Other +a2772e8f-ce5a-4b26-a710-b5e79ce3dd03 1 Other Other +a2777489-618b-47a2-83f9-b8e237276b4a 1 Other Other +a2778a73-e7a8-4774-ba78-e200b10917ea 1 Other Other +a277e00c-d94c-4587-a313-42c6dd26ce24 1 Other Other +a2785589-5173-497a-b38a-5529c31b2a51 1 \N Other +a278578c-9661-430b-bd6a-c528b689aee2 1 Other Other +a2788166-205d-4ead-9f52-40554c6ef4aa 1 Other Other +a278e483-d9b3-41a8-9a2b-7174ddeacedb 1 Other Other +a2793860-4edc-4dcf-96dc-8d9dcbab533d 1 Other Other +a279a2a7-8159-433a-bbb0-0f9b3a9c3bd4 1 Other Other +a279baa0-eecb-4753-858f-6cb0076581ed 1 Other Other +a279c4d8-efe5-4c7d-a5e7-521d5a74f82b 1 Other Other +a279f816-3ace-4fc0-bf13-4a99d193a7f9 1 Other Other +a279fb56-daee-4cf0-9d25-36075bcfb4ee 1 Other Other +a27a394d-493f-4c51-b213-71bed38b9462 1 Other Other +a27a3c02-67a2-44ca-bb7d-25db2c548051 1 Other Other +a27a7cf5-68e5-442d-9f6c-6bdf2a7884cf 1 Other Other +a27ab22b-7457-4892-8fa4-2ce1e2cc23a5 1 Other Other +a27acf49-7ca2-4cd0-abbd-ab13c829f4fa 1 Other Other +a27b2e25-7188-4b7b-8251-ef41241deec8 1 Other Other +a27b426a-0d42-49c7-8b6b-585405941f53 1 Other Other +a27b5172-cc0c-42a7-a645-f512705b856f 1 Other Other +a27baf81-18f1-4f8b-a2f0-fb5624f9e052 1 Other Other +a27c296f-2f22-47a2-a584-87e99f185464 1 Other Other +a27c32e6-40eb-47f4-ab86-e63032ce50fb 1 Other Other +a27c4a6e-3217-4e20-ab1c-28548fe0801b 1 Other Other +a27c6e82-f23f-476e-86f9-a453049d312c 1 Other Other +a27cdbda-c673-4c23-b5e2-d45fa208dfc7 1 Other Other +a27ce13b-2b30-476c-8e7a-d1216974d3c6 1 Other Other +a27d0015-bd6a-4809-8ed4-0ace389bfdc5 1 Other Other +a27d0c94-6dc8-469d-b1f9-06f359244437 1 Other Other +a27deb41-7a4e-47f9-83c6-8626d9a1178e 1 \N Other +a27e2305-450c-400d-8213-9a437f127ca5 1 Other Other +a27e4bee-07e8-4f54-a155-badce55864ab 1 Other Other +a27e7305-e529-4217-987b-7533c6fbfb1d 1 Other Other +a27ea408-410f-4f93-8cd3-dc7401cdf68d 1 Other Other +a27ec33c-e312-4a0d-ad75-7ec52e8abc9f 1 Other Other +a27f9bcc-48f1-4a93-92d8-c770c4015887 1 Other Other +a27fa0db-24cd-4570-85cf-f843fca0b91f 1 Other Other +a28043dc-e577-48dd-ae48-1da1bbc977b8 1 Other Other +a280d6fe-9a67-45cd-bc10-d64b54ba1c9b 1 Other Other +a280ed1f-df5a-42d2-9eec-23f448f927be 1 Other Other +a280fd60-871f-47bc-b2bf-77d07eaf205f 1 Other Other +a281060a-3e52-4cf2-b48b-2ac6d09b48d1 1 Other Other +a2812cba-d77b-4972-a5ee-19809dcf0ff6 1 \N Other +a28150f3-107d-43ae-bf9f-1a43d795ffe1 1 Other Other +a2815b36-546d-4521-8483-f20f94bff460 1 Other Other +a281f00e-f94e-46db-9d9d-df1c829f230a 1 Other Other +a2835aa2-dcb7-4149-8632-04ec21deb179 1 Other Other +a2836194-a218-492d-99fe-167fab78ec7e 1 Other Other +a283a60c-b7ae-471d-9fb9-25fe1b34ccc3 1 Other Other +a283db37-7268-4237-9e32-7cc1b186793b 1 Other Other +a2843dbf-2522-4b96-91d4-6a69a5eac308 1 Other Other +a28489d6-b878-4b6e-8f53-8166c67f23e8 1 Other Other +a284b775-86af-4cf3-b551-cba417063b85 1 Other Other +a2851019-ecfe-4465-a8ac-fcab6b74e544 1 Other Other +a2856194-64ff-4f6c-8c14-61fc49846b08 1 Other Other +a285c071-df1f-4c5a-98fd-597abcee0e30 1 Other Other +a286003b-1bc3-48db-b4b6-1cb65f5cd7bf 1 Other Other +a2862f72-0ca5-488a-8ea1-97491ce520a6 1 Other Other +a2868132-2dce-424c-a720-b2fce85c1679 1 Other Other +a2869281-9fe7-47c2-8d76-3e5853b1bd51 1 Other Other +a286b3f9-d0e0-45ef-962e-62dd4c906530 1 Other Other +a286feb7-131e-4d1d-bf66-11056f8b1bb9 1 Other Other +a2873552-5790-4460-bb8c-aaf047b15b6d 1 Other Other +a2874da4-f1a9-4e10-957f-4f7c4785ae08 1 Other Other +a28766fc-6b83-4b72-92b1-eae86e82c630 1 Other Other +a28768cc-4dfb-4ab5-b891-5ff2cb9427cc 1 Other Other +a28795b4-dc0e-4544-bb6c-a9c6ffa7ed0e 1 Other Other +a287f980-d9b5-4b86-bbae-5ab4e9f8322c 1 Other Other +a28847e3-ed5f-4258-a560-17b33417aa86 1 \N Other +a288501b-045a-421a-873c-ad3c5e162149 1 Other Other +a28891cc-1d99-402a-9b15-190157035c0f 1 Other Other +a288bfba-1c74-4bb0-8809-c990a950d5ae 1 Other Other +a289ca10-56b0-4ab5-9b2f-0370ef0796c5 1 Other Other +a289ffa5-6f56-4d7c-b531-da21fb609902 1 Other Other +a28a1392-c264-413b-8617-26c7275daf27 1 Other Other +a28a2434-ab9f-40d0-bf42-cc1ef18da325 1 Other Other +a28a32a2-cd7c-421c-ae17-7b185a2ba7c9 1 Other Other +a28a4733-2a4b-4cbd-b051-5c39587b3de2 1 Other Other +a28a7b84-5bb9-49f5-b383-a17486441e89 1 Other Other +a28aa96e-fb5c-492b-8c9c-6b9cb1bab18a 1 Other Other +a28ac006-cd23-4076-ac3f-8d59aac7bb12 1 Other Other +a28acb3e-1ae2-448c-8376-bc1960300552 1 Other Other +a28b04ee-ef54-420f-980b-70a5cf5631ff 1 Other Other +a28b1015-30c7-4a66-9c07-153dd5cf817e 1 Other Other +a28b1483-e5de-473b-ae00-89fe13e2dd32 1 Other Other +a28b17eb-2773-48cd-a938-4abcc1000867 1 Other Other +a28b7172-f017-4f40-9215-9a56ab4a09b3 1 Other Other +a28b738e-738f-4b9a-9ca8-9cfa5aeb6357 1 Other Other +a28b9d08-94d6-473f-8a8b-f69a104fe24a 1 Other Other +a28bc692-7733-4068-8f37-267d959ec502 1 Other Other +a28bdc55-fe48-44c2-a393-1531b7fe6dba 1 Other Other +a28c0779-7c5c-4793-8593-13a173e4a8a8 1 Other Other +a28c1bd9-220d-47bd-97ec-f01abf2ac50e 1 Other Other +a28c53db-4eab-44c1-bf6a-6fb359f48dc0 1 Other Other +a28c7386-3e5d-4416-80d4-fc381b335799 1 Other Other +a28c9d7a-eca1-4f0e-ab3f-97847f13c337 1 Other Other +a28ce137-cd3b-4fff-8523-53b677fee0ef 1 Other Other +a28d0546-be9a-498a-b5c0-c55e2951dacb 1 Other Other +a28d261a-0465-491e-bb55-71e0f9aad13c 1 Other Other +a28d549f-518b-4277-b6e8-b1e09f1fcce6 1 Other Other +a28d9779-86a1-483c-9715-eaf4c2e7b8a5 1 Other Other +a28dac3c-e517-44f7-ae04-4590b95850b1 1 Other Other +a28dffc7-bda2-4e6f-afd5-17c5b6e140bc 1 Other Other +a28e733f-bde9-43e8-920b-3b57aa0b89f6 1 Other Other +a28e78e1-87be-4c6f-b598-bb40876f3f74 1 Other Other +a28e89d3-2bc2-4691-ac34-d7511e2ca094 1 Other Other +a28eaba6-a1dd-40ff-91b5-ca67c3bb8103 1 Other Other +a28eadb9-cc56-4bfb-adef-af832fff6ab6 1 Other Other +a28ed9e8-8e4b-4ceb-a5f9-029709ff3f31 1 Other Other +a28ef120-6d68-48eb-bc86-6c6c7e98a070 1 Other Other +a28f87ba-b40c-4c32-b10c-e424391613de 1 Other Other +a28fbbcb-e836-4eea-8b3b-0cf5daa6abb3 1 Other Other +a2900c15-94d2-4a6a-88d4-4b5e7fa60d07 1 Other Other +a290318d-6a7b-48c1-8a14-ef6fe436d7f9 1 Other Other +a2908979-76b9-446e-b19e-05a449b2966e 1 Other Other +a2909614-9c9d-46de-bff1-ce8fd59d37e9 1 Other Other +a290a720-c20a-40e9-a425-d012389bc2e9 1 Other Other +a290b8e1-5be0-43f9-9cac-073cd7652c99 1 Other Other +a2911475-654b-42a7-a496-2fb0f5a11a6f 1 Other Other +a2911ae4-5cb2-4524-8a88-aca2b295bcd1 1 Other Other +a2915bf4-e9ee-41f8-ab00-7765bcaf6a7a 1 James Other +a2918763-4ea5-441f-baaa-45f1e4fb20ba 1 Other Other +a2918f88-f9fc-40b1-8a36-d6d9a5a161ae 1 Other Other +a291b481-a8e0-4eb1-a326-6419c175c89c 1 Other Other +a291c9fe-43a2-439a-bed0-036c328b9996 1 Other Other +a292245a-888b-43cc-9f85-fa9c2dc2ceac 1 \N Other +a2925a43-749d-458f-b3a4-5df7fa78624e 1 Other Other +a2925f42-c67f-4640-b64d-3bd4c7af36cd 1 Other Other +a29273ba-d3f0-4a57-ac13-745b78d992bf 1 Other Other +a292e0c0-ca52-4214-a443-715e0ec58eae 1 Other Other +a2933651-3bbc-457b-8aa2-1ff3d4a907e7 1 Other Other +a2933fd9-514d-41b0-8e4e-a70ff491289e 1 Other Other +a29356bb-6bd5-4420-90d4-b2a68e6d31ae 1 Other Other +a293af0d-de0d-4d2d-9ea5-53d0e842d48f 1 Other Other +a293e2d7-df70-4e15-a6cc-67fcb427b32a 1 Other Other +a293fae6-53c6-45f7-a213-766c48ab724c 1 Other Other +a29406d7-4171-4df4-bd7c-36a88a0e1b41 1 Other Other +a29418cf-2aba-49c6-a699-517aa8fba3ac 1 Other Other +a2942010-2c5c-4869-b20f-0075df1e848c 1 Other Other +a2945aa1-4647-46b9-9437-f5061c525bf2 1 Other Other +a2945b37-d0c1-4522-984b-2aaad640aa46 1 Other Other +a29496a3-9748-4f02-9857-5ba213c0ec1e 1 Other Other +a294bd24-3de8-47a6-9d5a-e18b7deef18c 1 Other Other +a294c8f3-65e1-4180-a3f2-ec4438b1a288 1 Other Other +a294e09f-4be0-400f-9155-11d3a1cb6e3f 1 Other Other +a2951ac5-e125-46d5-bcb4-e18218690fb2 1 Other Other +a29526a7-44e0-4c2e-9d5a-1815403e8f3a 1 Other Other +a29534d9-a421-486b-bfea-1d0dffdcc32e 1 Other Other +a2955c74-adf3-40ea-a68b-3d236683693a 1 Other Other +a2956b85-ffa8-44a7-aad3-42fb5fc49a81 1 Other Other +a295c184-4a9e-4d59-9349-f92efe9f604d 1 \N Other +a2963579-a59b-4aeb-898a-41f8c52777eb 1 Other Other +a296441d-aace-4457-8025-613c60e16dd8 1 Other Other +a2965b99-83a1-426a-991d-6ab848fb5849 1 Other Other +a296d58e-dc34-4880-9922-4870a9a5b285 1 Other Other +a296d9b7-0543-4b8b-8ab8-ce8712f36897 1 Other Other +a296ea82-e34c-4e95-9ee6-cf8b650dd362 1 Other Other +a296eabf-7694-4799-8523-dcf2e353b81b 1 Other Other +a296fb9b-82ca-4484-9f0a-527d9908222d 1 Other Other +a2972e27-cd27-45c8-9c64-a2f164c64996 1 Other Other +a297742d-eb17-40dd-a82a-2ffeadd7bc1b 1 Other Other +a297d235-758b-4773-8ee7-6a89d8f0bde0 1 Other Other +a297d378-b024-4581-9130-aa5408495a91 1 Other Other +a297e14b-06ea-4bb7-9b83-85aab6980b33 1 Other Other +a298089f-dd71-48ad-9280-55d7f22669e6 1 Other Other +a2980bf7-3d04-4de5-b799-c7bdf865bed3 1 Other Other +a2982364-1c8f-49ee-922e-4f9bd0f9d8df 1 James Other +a2982b08-7a95-41c2-bc36-604868871ba2 1 Other Other +a298a823-5697-42c4-a4c1-0d28e9147c8d 1 Other Other +a298b502-43c7-43b0-b477-caa2ac83d903 1 Other Other +a298e265-75cf-4304-a83c-1eddaa42ab1e 1 Other Other +a298fe70-66db-4f4f-98d2-bb8f1fae565e 1 Other Other +a298ff5d-4517-4209-b206-ce93544aacd3 1 Other Other +a299289c-e7b7-4008-9d51-cc7f486bfa44 1 Other Other +a299581c-4521-4634-9e93-8aaf2f167988 1 Other Other +a2997015-0559-461c-9e30-0538a1a16ce7 1 Other Other +a29972c2-1209-4958-b001-03a9cb970302 1 Other Other +a2999c08-3ad2-4ab5-8dc5-a1867f5743e5 1 Other Other +a299ecca-709f-4e24-afa8-707707f2d1fe 1 Other Other +a29a2680-c927-4032-9daf-f90ba46cbef1 1 Other Other +a29a7c3c-cf67-4913-b056-2ec07f340b63 1 Other Other +a29a81c7-66cf-41ea-b6d9-ed12f74ec989 1 Other Other +a29b0f56-3a4c-4456-8342-a72d7f04ecce 1 Other Other +a29b42ec-3ee5-4c3c-a054-dce897fb2156 1 Other Other +a29b5275-a75a-47a3-968a-b6814415a945 1 Other Other +a29b76b7-48c2-4a38-b017-3cea43a04320 1 Other Other +a29b8263-50a3-43dd-b89b-52a4f0bf378f 1 Other Other +a29bff05-f66a-4210-8df5-1c81c005f025 1 Other Other +a29c5628-ae12-405f-a91f-c116d6bbabad 1 Other Other +a29c6f8a-fe68-41c5-96f6-eb2da237535d 1 Other Other +a29ce6bd-3205-44da-b8e8-652d8ccb7202 1 Other Other +a29d8c60-50a0-476f-aa3a-104a552d4180 1 Other Other +a29d8e69-3cb3-46d0-a405-cc7e9e42795d 1 Other Other +a29d9d0c-1486-4417-88a6-256581c7a246 1 Other Other +a29dd940-28bd-4e13-8ca0-df277e733766 1 Other Other +a29e29ff-8fa1-43ea-ad02-107ff246e57d 1 Other Other +a29e3f4c-ae2f-4ec8-a232-18a1667440a9 1 Other Other +a29e8e6c-dabf-48f3-ba50-8a9252285566 1 Other Other +a29eae69-a1c4-4847-8eda-65e189c95cb7 1 Other Other +a29f5e3e-5a2a-47e6-9686-89a210c1637a 1 Other Other +a29f7314-122e-4e5c-9936-1c9840b56d1d 1 Other Other +a29fb793-a258-4fbf-a23c-ed4ec6f00bfe 1 Other Other +a2a0491e-4768-48ff-8122-28de7abdad40 1 Other Other +a2a09ef8-abdb-4a6d-86c3-8b0fbc715c52 1 Other Other +a2a11f5b-5440-45b5-aca7-1f23c5fa0737 1 Other Other +a2a13939-7997-41d6-b0e9-74edeaf6d0d7 1 Other Other +a2a1723f-2ecb-4d37-89b4-7fa98905a52c 1 Other Other +a2a1be18-ed1c-4de8-aeea-3f83e8aa4ef8 1 Other Other +a2a1db35-dc36-4a12-b448-8108583eed9c 1 Other Other +a2a1e075-e1ae-40fd-bfac-155cb82a2a87 1 Other Other +a2a26fb5-b93f-46ba-b4aa-667abeb97f6a 1 Other Other +a2a2b0d8-f97e-48e2-ac1e-e09a61ad132d 1 Other Other +a2a2d3d5-93c6-4bac-a702-d7c2f7055f8d 1 Other Other +a2a2ed5b-8d05-43e1-a377-cd10ba758fd6 1 Other Other +a2a31e30-66bc-466d-a039-fa234dfb43d4 1 Other Other +a2a32455-d645-49c7-9f07-a04b505b1869 1 Other Other +a2a33a5c-6168-42b0-941d-aca78bc94e65 1 Other Other +a2a363a6-4918-4eb3-9b2d-32ef061f82d9 1 Other Other +a2a3a2a2-3cc9-41ff-bd50-a7b2be3a07e4 1 Other Other +a2a3bd22-8c5a-454d-83f4-22fcdb212de4 1 Other Other +a2a3d80f-0210-46a7-87bd-dab2851f2e63 1 Other Other +a2a3e6a9-b6d5-474d-815d-bc54584d0383 1 Other Other +a2a44ce1-5774-467a-b1eb-05f8d43002b3 1 Other Other +a2a478aa-e907-4ac9-98f7-0a31cf7551e4 1 \N Other +a2a4d25e-91ba-49d7-89fd-ca02fbf7a5f6 1 Other Other +a2a4dd4a-eb99-4e32-b460-2202c59c8b0b 1 Other Other +a2a4e760-48fc-43f3-a032-2060d3d06083 1 Other Other +a2a4f474-38bb-4398-b46a-73189ea227a4 1 Other Other +a2a55342-4ed1-4e86-963b-6e75815a4cde 1 Other Other +a2a558d6-5dde-44ae-a8ea-09a3cf57a71e 1 Other Other +a2a5740f-c015-481f-b8be-40c1ff81c652 1 Other Other +a2a57ebd-6222-4425-9f21-745906c74395 1 Other Other +a2a58a3d-8fe3-44a2-b1ba-c7f19278e412 1 Other Other +a2a5b021-2d90-42bc-a63f-0c08f5108e52 1 Other Other +a2a5b94b-7729-4df9-924c-b481b430b5fa 1 Other Other +a2a5d607-2085-4b3b-a4d7-a74cafe7689c 1 Other Other +a2a618af-39d8-4a44-8363-071b6a2cd3bd 1 Other Other +a2a624de-7070-4a7a-a786-f8ee52d8ab72 1 Other Other +a2a65811-c4e9-4cfc-95cf-283700b7a96d 1 Other Other +a2a6b3ef-828b-4ddb-947a-66e2487a5128 1 Other Other +a2a707a1-30f5-4b77-96a6-70e92cb92c14 1 Other Other +a2a73094-946f-4e89-afbe-0e901828b427 1 Other Other +a2a7324a-6f58-403b-ace3-33c5849495e4 1 Other Other +a2a766d4-d59a-4a0e-a2a0-0570894b2e00 1 Other Other +a2a7892d-49c5-420e-ba34-80880f1cafb8 1 Other Other +a2a7b36a-316b-43d9-b2d8-8e6d48359f16 1 Other Other +a2a7e2e1-c72b-4d60-8b41-65106e19a95d 1 Other Other +a2a7f60b-9916-4d3d-b2f1-1c7de4302391 1 James Other +a2a7fc0e-9238-4268-b99c-0dad5583a68e 1 Other Other +a2a80bfa-faac-49bd-bc12-f5ce709444aa 1 Other Other +a2a819ce-f1ab-4f05-bacb-4b0620a62ca7 1 Other Other +a2a81d1c-6c98-4b91-8c51-8e568d5c3c7f 1 Other Other +a2a90b55-e23c-4589-b947-818b47cfbc75 1 Other Other +a2a94f75-97b2-4b1e-929d-e1212421ea13 1 Other Other +a2a9c56c-c2c6-4634-bde2-1d8ece796162 1 Other Other +a2aa24f3-fead-443d-bfee-ba53beb5c922 1 Other Other +a2aa3a56-87bd-4d4f-a161-ab6bc57cd2ca 1 Other Other +a2aa4eb6-bcef-415d-bae3-f332278a6ec0 1 Other Other +a2aa593f-0ec6-4568-b8d7-8a6213c518ef 1 Other Other +a2aa85aa-2cee-4ae7-980c-70f609a4ec6a 1 Other Other +a2aaad3d-2da8-4e3e-81f5-93802be9c60f 1 Other Other +a2aad216-c607-4b00-8715-d1fd7569eeb6 1 Other Other +a2aad6d6-1ccc-4f20-ab41-09f6ad65e7c3 1 Other Other +a2aada37-ab58-4ba3-bdd4-38b4122e0cd7 1 \N Other +a2aae778-b178-471d-94f5-10408bcb57d2 1 Other Other +a2aafe68-a0c1-4fea-b7a5-da8e53efa630 1 Other Other +a2ab050d-3108-4bbc-9022-576f4335f2b3 1 Other Other +a2ab16f4-5ab8-4430-aef8-b77ef00ce305 1 Other Other +a2ab321f-91a9-4d52-8047-8046f26e19b2 1 Other Other +a2ab3e90-4cce-42ca-baed-36e4e5a3103e 1 Other Other +a2ab7c98-75e2-4d21-bbfb-cda1ad2b226c 1 Other Other +a2ab9eda-ef4e-4f9b-bf7f-e3558bae10b2 1 \N Other +a2aba3ee-99b1-4c6a-84f2-f6dc56894f25 1 Other Other +a2abbf6a-0b55-477b-9f73-1dbd13775e86 1 Other Other +a2ac0907-ff22-47db-8b9e-8f6d3047e7ca 1 Other Other +a2ac0e6f-2d71-4aa5-8164-b3fe655cce74 1 Other Other +a2ac1e9c-a44c-4403-ad3f-e2c34027dbc2 1 Other Other +a2ac20e7-8f8d-4613-9b4a-0622b20c4e7b 1 Other Other +a2ac70c9-6895-4141-a9b5-915a2a158a39 1 Other Other +a2ac9d86-d96e-49cf-9762-3427a3d90735 1 Other Other +a2acb43a-3422-4ad6-a412-9eb49ae6516e 1 Other Other +a2accdd4-0735-4b88-adff-d9799b2919ee 1 Other Other +a2ace8e2-a315-4d8c-9e71-9bca5fd86eda 1 Other Other +a2ad045b-791c-44de-a50b-a4fa581dd44b 1 Other Other +a2ad1a29-c8c1-4f3f-95bd-f716ed26831e 1 Other Other +a2ad1faa-6dd2-48f0-90be-a81062f251da 1 Other Other +a2ad7727-46a7-4256-b199-13966e71e15d 1 Other Other +a2ad775c-889f-4345-9f03-004b3136ac6b 1 Other Other +a2ad81bc-8357-44a6-b6e5-f22292ee4a11 1 Other Other +a2adcad5-2ad8-40ef-bfe9-720913dbeb71 1 Other Other +a2ae0cd1-f3d4-4176-8f2b-61e547e45c24 1 Other Other +a2ae14c8-2459-49cd-bf55-5033c180790f 1 Other Other +a2ae3203-7d1f-4931-805d-fbfce57e3869 1 \N Other +a2ae4ad4-4d18-4426-ad11-ccc5d6a9cb11 1 Other Other +a2ae588f-e482-4a64-b34a-e77a35e25365 1 Other Other +a2ae59cc-5746-4fb1-a501-77ee06019abe 1 Other Other +a2ae6147-ceff-4858-8eb6-aaf19ab3ed11 1 Other Other +a2ae6cdd-047b-4052-9ec2-c16811fc3c7b 1 Other Other +a2aeab12-fcbe-488a-947e-e278c65e2a54 1 Other Other +a2aee70c-1c6f-4a7a-b73e-cc452c7418cc 1 Other Other +a2aee79d-1aae-4a39-b5cc-e153d4cdd20b 1 Other Other +a2af43ea-8c74-4148-b924-bc1fe1f07ea5 1 Other Other +a2af446d-eed0-483c-8310-dd0190f7db12 1 \N Other +a2af79b5-4560-45f3-9a4a-5f06bc8b5bf1 1 Other Other +a2afb5a0-69f2-45a5-8a8c-4efe0fe46905 1 Other Other +a2b0880f-d3cb-4f71-89ae-f9f5e1dac8f4 1 Other Other +a2b0a116-14dc-4fa9-83c2-262bdf0e6cb0 1 Other Other +a2b0a6b1-896c-4f58-a056-7ca0a8d35855 1 Other Other +a2b0abe3-33a2-4f0a-bd5e-f4d085716b97 1 \N Other +a2b13383-7500-4b3e-bc95-fdafff44228b 1 Other Other +a2b1479d-ca50-4164-9082-71474f878427 1 \N Other +a2b1a64b-e53e-4e3a-b427-1020b39f83e6 1 Other Other +a2b1cff7-cbef-445d-bfd4-d091df705ba6 1 Other Other +a2b23278-41c8-49f2-98ba-6c724b133f34 1 Other Other +a2b27f6b-05bd-461f-99b8-3edb3768a715 1 Other Other +a2b2adfa-f27a-414f-868a-7195f8d29ffe 1 Other Other +a2b33992-2727-48f1-8d86-11af8712423d 1 Other Other +a2b350e1-1fdb-44e7-a232-471373d99f02 1 \N Other +a2b35395-6bf1-4055-8536-bb3bcd1987fe 1 Other Other +a2b378b6-3988-4cad-9124-2653ee297942 1 Other Other +a2b39591-8de3-422e-9b0a-026d8df15047 1 Other Other +a2b3b4ca-aa6f-4690-8a39-9a2c2f2e79ec 1 Other Other +a2b3b5c0-2393-46a4-b2fa-bfb7d93a237d 1 Other Other +a2b42ccb-d6ae-4b9e-b607-55f10a6832e1 1 Other Other +a2b438b5-a1c9-4753-941d-f44222f0929c 1 Other Other +a2b46640-303e-4779-8ee2-542b9aa7615f 1 Other Other +a2b4aa38-f890-4b0d-be5e-19d47b5c1dfd 1 Other Other +a2b5575f-2505-4422-a086-49a6a1c4498e 1 James Other +a2b5645a-1372-49dd-b176-6556fafd6c4d 1 Other Other +a2b56ac2-e1ab-4fdb-bc25-a82e64b341d8 1 Other Other +a2b592f9-bf62-46e0-a384-aa427e2c0f1e 1 \N Other +a2b5e158-89fb-4bb5-b084-d7c8b525daa0 1 Other Other +a2b5e7b5-2dfb-4f01-bb84-62d8f8705da1 1 Other Other +a2b6022d-ba8a-4d21-b2fc-893f76c64826 1 Other Other +a2b63067-e2ea-4697-bcd2-397c75c97500 1 Other Other +a2b63a2d-dce0-4742-9695-85e2b7eac37e 1 Other Other +a2b63fee-2a69-4f00-9482-62a1389c6d3d 1 Other Other +a2b686ed-2fb4-4e19-954e-d7ddac5f994e 1 Other Other +a2b69042-5a20-4fe0-90cc-7a1590a8bb1d 1 \N Other +a2b6ac0f-68f1-4e46-8df0-48806547a214 1 Other Other +a2b6e7ab-070a-4615-a804-8d18923be333 1 Other Other +a2b719b0-dbeb-4ba1-bc52-5e56e59a5ae7 1 Other Other +a2b745ef-7818-4fcf-ae38-6c89952462b2 1 Other Other +a2b78aed-a81c-4a81-9ac5-19ba7453e32d 1 Other Other +a2b797e2-e5dd-448d-b72e-1aeeebf57dd4 1 Other Other +a2b7a596-f09c-421e-bce5-09a2be95cbd8 1 Other Other +a2b7c7e0-91c3-4762-a277-b532c8edfc93 1 Other Other +a2b84336-397a-4df2-8b7b-e0ca2217699b 1 Other Other +a2b8e82f-6c64-4fbc-a4cb-9621f33ad782 1 Other Other +a2b8ed17-a462-46fa-8b9f-b1f406b62353 1 Other Other +a2b923bb-a844-4d58-9a9b-8594d85ea62d 1 Other Other +a2b92747-0959-4985-a092-a89bd042abf2 1 Other Other +a2b95912-a7ed-4a15-b22e-5af320a1e229 1 Other Other +a2b9aeb7-d552-47e1-8022-509f8377d65b 1 Other Other +a2ba066a-6c57-4821-8921-cabde16e2a00 1 Other Other +a2ba3234-3a49-4147-ab1a-f3c5d0945933 1 Other Other +a2ba3b76-7dca-4de9-b9ea-13f10485554b 1 Other Other +a2ba5b70-f11e-4df0-a025-a94615bc9e02 1 Other Other +a2ba6be1-3750-4949-9f5d-d209f2fa9950 1 Other Other +a2baa07d-ecb6-442c-8761-87cded4a5b97 1 Other Other +a2bac803-e2f0-460d-aceb-69ffb72b15dc 1 Other Other +a2bacec3-de48-48c5-a67a-d1e6aad19303 1 Other Other +a2bad425-a4fe-47dd-86c3-013cc95f6f0c 1 Other Other +a2bb017e-5a8f-4f14-aa13-452bedef0561 1 Other Other +a2bb640f-9c23-4c18-a80c-b5dc6025a108 1 Other Other +a2bb8945-612b-43fc-8107-3854e537ad64 1 Other Other +a2bbd86f-49a6-40b2-8815-d9bac979d4ba 1 Other Other +a2bc0cab-7dd7-41f9-bb8f-56bcc918ae7f 1 \N Other +a2bc5d49-c1bb-4880-b038-98506bb05916 1 Other Other +a2bc7b13-b93c-4cc2-8789-82dbbb115b14 1 Other Other +a2bc84af-4300-4900-b5b9-a38a66c08082 1 Other Other +a2bc8dc2-bebe-4fef-8103-72e82f3420a2 1 Other Other +a2bc8e47-db9b-4013-a48b-8c732c800c52 1 Other Other +a2bc91d2-3756-4edc-8db5-61b123e68bb5 1 Other Other +a2bcc13a-18a3-45cc-b596-e5e8ffdc9c1d 1 Other Other +a2bcd4f5-694a-4e39-b873-7a272bac02d6 1 Other Other +a2bcd6b9-176b-493c-b904-4ad2f3a81ea7 1 Other Other +a2bcecb8-c830-4d7c-9948-85c0dd329a9c 1 Other Other +a2bcf433-bbb7-4cac-9acd-45e1ca3cf38f 1 Other Other +a2bd56cc-64a9-4cec-b491-5e142af38da1 1 Other Other +a2bea53d-8dac-406b-be6d-6e175b357e7e 1 Other Other +a2bf74a1-70b3-44bc-9ff0-e8a7a77ea09c 1 Other Other +a2bf8017-a457-4535-9441-b697298c8463 1 Other Other +a2bf9da4-0bd9-47ea-bd8d-5e9f2908680c 1 Other Other +a2bfb1ee-0e51-45e6-8964-93c099149865 1 Other Other +a2bfc0a3-a360-42e0-a4a7-900404dd2901 1 Other Other +a2bfc0bc-9e10-4221-a5ef-9d703bdea897 1 Other Other +a2c03b10-a93e-4696-b593-9b23c3ebfb36 1 \N Other +a2c05327-c6db-4379-b7a8-2ca1cfd98b21 1 Other Other +a2c05e74-130c-4934-aef1-349cbe191efe 1 Other Other +a2c084e9-e739-471b-a02d-41e467c20c85 1 Other Other +a2c0a88c-9baf-45f5-ba6d-bff888f2072e 1 Other Other +a2c0dd04-40ab-4d2c-87e9-d598b1d11bc1 1 Other Other +a2c1346f-f18a-4992-aefe-2bb0b0f7a174 1 Other Other +a2c13a19-d92c-4fcd-975e-8bcc656a96c8 1 \N Other +a2c1877d-57a8-4919-a088-66be1395dd3f 1 Other Other +a2c19f61-651d-4d70-9756-f3119e3c1232 1 Other Other +a2c1c659-3e40-4319-8ff9-23c0226a6029 1 Other Other +a2c1ddb9-fbc1-4ea3-b78c-e617eb7552bb 1 Other Other +a2c1de95-1781-4d09-bd13-a41937ac5f6c 1 Other Other +a2c1ee99-cf53-4813-bcca-1defc16c63e5 1 Other Other +a2c23900-5faa-4d37-851e-b77f51e7d69a 1 \N Other +a2c28a5b-b6cc-42d2-8bcf-68443a6bd7e8 1 Other Other +a2c2a7fa-00f2-41d7-8773-c564808a037b 1 Other Other +a2c2d3a3-d59c-4564-ba7a-a4ea076ad9fb 1 Other Other +a2c2da38-f998-4bc1-b311-c1ae9e6b57eb 1 Other Other +a2c2dff3-66f5-45b6-bcd5-71b6ed40a215 1 Other Other +a2c2ffed-4725-48c4-9c5d-ecc57bfd4495 1 Other Other +a2c3198f-a635-4726-ba4f-cf19753f8460 1 Other Other +a2c35742-94ba-4738-916b-a19d036f90d9 1 Other Other +a2c447b8-47f2-489a-89d3-6e80681d9ab5 1 Other Other +a2c4bc85-c291-4289-afbc-71ab9320d118 1 Other Other +a2c4ca5e-c253-43ea-b2f4-d876b698789a 1 Other Other +a2c4cc14-660f-47f4-b588-32439d571f8f 1 Other Other +a2c518c7-97bb-4dbf-baac-f56d1ef40872 1 Other Other +a2c51c77-8a9b-46f0-9a52-4a4e99144fed 1 Other Other +a2c54b47-cf3e-4bab-9bc2-5a3f7f7e4b65 1 Other Other +a2c58cdb-d9a1-4bbd-83ba-d2e19bdd07eb 1 Other Other +a2c5961c-754e-4b46-aac3-a3e15497f5cf 1 Other Other +a2c5c741-b174-4d2c-b002-d7df31069bcc 1 Other Other +a2c5e7c8-baa5-4c09-a441-7e2270e08b60 1 Other Other +a2c61abe-b43a-4bb2-bc67-20fa9f09e8bd 1 Other Other +a2c620c5-1bee-4cce-903e-841d6e614377 1 Other Other +a2c65316-ffca-458e-8f7b-b7fb4c788a5a 1 Other Other +a2c6725d-bf6a-4a74-8fa3-717f7cf692ce 1 \N Other +a2c675fd-eb00-41be-80bd-d70824967de5 1 Other Other +a2c67d48-38d4-4fe0-85de-27166af36b0e 1 Other Other +a2c68110-ff95-41ad-964f-e13dbb5fc15f 1 Other Other +a2c6fcc1-246e-4802-9211-a5a05f94a290 1 Other Other +a2c70695-a330-42bb-81f1-f21adf547bc4 1 James Other +a2c710ed-25b8-4716-8d4b-1b083c0ecefb 1 Other Other +a2c74bbc-00a1-4761-9869-e0fbe0d18147 1 Other Other +a2c78acf-61a1-4942-8e32-8824d132c5ff 1 Other Other +a2c7c6c2-8e75-40b0-bbae-1c515575173d 1 Other Other +a2c83ef7-0ab6-4cbe-9343-ec661072dca1 1 Other Other +a2c8634e-f2ca-4801-9e56-f97ebf84af8f 1 Other Other +a2c87177-a0fb-4ef2-b689-de82851732d1 1 Other Other +a2c8845f-26aa-4a9c-af67-0f55488f360f 1 Other Other +a2c8ed30-660a-423a-8756-0dd2087c03a5 1 Other Other +a2c906a6-6ebf-4e31-9cb7-4f1829aa6a76 1 Other Other +a2c94feb-9282-43f2-82fc-74266626881c 1 Other Other +a2c95464-4015-4868-8f6b-a3eb5979d409 1 Other Other +a2c997b0-28e8-4a38-b0eb-3ec04a5d7ee3 1 Other Other +a2c9dbca-3529-4494-b7ab-63a375f4f061 1 Other Other +a2c9fbc8-fcf3-4a4e-9e57-346b930c8c45 1 Other Other +a2ca1bbb-a5d3-4552-aeb2-6358e0915f76 1 Other Other +a2ca45a3-16be-4b1b-90b6-61f5bfe96118 1 Other Other +a2ca79dd-ee4a-4461-be3f-8675600da3bd 1 Other Other +a2ca9c3c-4665-458d-b250-ecf190bcdd1c 1 Other Other +a2cabb42-551b-4d14-a273-b54292388e10 1 Other Other +a2cace8f-df5d-4257-8296-095256317a8d 1 Other Other +a2cad653-6075-4c67-a154-afc0ca1edbe4 1 Other Other +a2cb0cff-9a83-4880-98e7-9b0e52e5702e 1 \N Other +a2cb34f4-7061-4e5b-bd8e-31ef1c02abf1 1 Other Other +a2cb3e33-c0c6-4ac5-b9ad-42a1144c8567 1 Other Other +a2cb76c3-3f81-43b8-813c-19f8593a41a1 1 Other Other +a2cb88a2-b1f7-4caa-9b02-2a7ff3e2eefe 1 Other Other +a2cb9237-684b-4b7a-a40b-d81af507f2e6 1 Other Other +a2cba497-b8aa-4792-9dc0-2ea6a904f824 1 Other Other +a2cbc897-9a5f-4b34-bddf-e200260d8c13 1 Other Other +a2cc38d7-c5d2-4fe5-bbe9-6b48edf762d2 1 Other Other +a2cc5e94-d37a-4ff1-bc4c-a2e0c5841fd2 1 Other Other +a2ccbb24-cf06-43d7-9cf1-9fcc1741f0bc 1 Other Other +a2ccbd82-7f08-4edc-8857-8bae585c28cb 1 Other Other +a2ccc424-883c-4c72-ae96-2ce6367cbf03 1 James Other +a2cceec0-654f-4d76-83fb-b49f41471d2d 1 Other Other +a2ccfcd1-e2b6-46ba-8440-7c6321551846 1 Other Other +a2cd0d18-50d7-4e49-92d1-27bd66fa949b 1 Other Other +a2cd0f45-b434-4c22-a2e6-0206bcfd5770 1 Other Other +a2cd4752-7c12-420a-b633-429adf9b4c8b 1 Other Other +a2cd4e60-f91c-491f-b863-f1d17af26907 1 Other Other +a2cdac26-5540-479c-bdfa-e6a6e08c6d46 1 Other Other +a2cdd284-2235-4c21-9802-dd2c640796e4 1 Other Other +a2cddeb8-7924-4d1b-b12b-caf288f2166a 1 James Other +a2ce28e0-c2a0-4a55-9f34-850b322037ee 1 Other Other +a2ce972d-1f3d-4787-a8a4-3e0631128051 1 Other Other +a2ce9966-227d-43c4-8a38-a68604199a15 1 Other Other +a2cf6f35-87d1-43d4-a180-7ebcd1568935 1 Other Other +a2cf7b5f-75b5-42fb-a6a0-b80f1bc31adc 1 Other Other +a2cfc038-a6d6-4918-9a78-85bb06510e0b 1 Other Other +a2cfe76e-7a26-41f9-86d9-a536157e3ff5 1 Other Other +a2d00cd2-0006-4361-896a-33e6f5789e5a 1 Other Other +a2d0ffd2-024e-4e9f-8675-1c58ff9caa52 1 Other Other +a2d100d1-0a99-4d0b-958f-e3694372ddf2 1 Other Other +a2d10145-14b7-44cb-b23e-53d4f7e2930c 1 Other Other +a2d161e0-55c3-404f-bef2-6b6e37c28231 1 Other Other +a2d169a1-f080-4ee6-84a5-39c7dee9940d 1 Other Other +a2d17257-2d58-4e84-8faa-9c1de854d7fe 1 Other Other +a2d1b0b5-723a-4a7b-ba3c-1bff871ffd8d 1 Other Other +a2d1cb01-a0ca-4545-8466-8300f085fbdf 1 Other Other +a2d1f778-188a-4e9a-94ec-41bc340bfa48 1 Other Other +a2d2416f-fdfb-4cfb-89a6-c06e9bd0cf29 1 Other Other +a2d25d42-b84f-45a3-af85-19452b20ef39 1 Other Other +a2d26f23-cfaf-42b9-9083-0acb48c3bfe1 1 Other Other +a2d2a30c-9919-4557-a4b1-697aa0626a80 1 Other Other +a2d2ae92-4bdd-4fcd-a445-43f92ed5411a 1 Other Other +a2d2ed17-8859-420f-aeb9-12e8cd0f2cad 1 Other Other +a2d32ad1-79e1-4c40-8779-bbff9f9771e3 1 Other Other +a2d355a4-e69b-4447-aef8-2f10e2dab359 1 Other Other +a2d359bc-c176-4c8b-9dce-c9f8024b6cfd 1 Other Other +a2d3aa57-2031-438f-be2f-b265c87eb757 1 Other Other +a2d3b685-8e62-4e52-b064-a882291c83f0 1 Other Other +a2d3c1ea-c696-4a28-96ad-222dacbe1ba4 1 Other Other +a2d3f5a4-9ad3-43d7-8af5-a58633a758ac 1 Other Other +a2d44dbe-ea72-44ff-acc4-f4dd58e4037b 1 James Other +a2d45522-17f2-4cfe-95d6-af928090d720 1 Other Other +a2d47461-112c-485c-8993-6ede57eb2bd3 1 Other Other +a2d47af6-e033-4148-847c-7894f6a2aa78 1 Other Other +a2d481f3-5f74-4a65-af4a-151b9f0c3bdf 1 \N Other +a2d4d714-151a-4f49-b834-12714eeb96c5 1 Other Other +a2d4de9b-1828-4c73-9340-14b95bc537cb 1 Other Other +a2d4fd08-2be6-44a7-98ba-d03052f15ada 1 Other Other +a2d5080b-14e5-4e4d-9239-c5081b5d5d6f 1 Other Other +a2d52b9f-0479-4f10-98f3-4d6e533f0b25 1 \N Other +a2d676a2-91b2-41f0-ba8c-06c48e7d4653 1 Other Other +a2d69698-6cbd-4c52-a787-ce881b262147 1 Other Other +a2d6a853-6a08-4585-bd17-905d85a68fee 1 Other Other +a2d72dd9-0139-46f8-afe0-9da2e6e3deaf 1 Other Other +a2d79b21-49ce-4dc8-9c20-c924f9f7b2ae 1 Other Other +a2d7e6e3-0bc1-4fbc-992d-c4a02770bb27 1 Other Other +a2d823cf-b755-4eeb-b1ae-bcd8a1926d4b 1 Other Other +a2d8861e-2c79-45bc-81e2-b1468304916c 1 Other Other +a2d89ad6-9c8d-11e7-87e1-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +a2d8b926-4804-4371-b042-321539219949 1 Other Other +a2d8cb28-153c-4d63-9626-c472a23d1630 1 Other Other +a2d8cdf0-4b58-42da-8482-c8254b90b626 1 Other Other +a2d8e104-7900-4628-8854-5546378fa053 1 Other Other +a2d8eb45-9303-468a-ac18-37d15303fb3d 1 Other Other +a2d929c7-798a-40b1-861d-b87aeaf26b48 1 Other Other +a2d94d0b-8149-4c48-87e4-41c28e0639ff 1 Other Other +a2d9cd7a-9391-4906-9e9f-886309fb3ec7 1 Other Other +a2d9dffa-437d-4435-9a0b-2742a02801f9 1 Other Other +a2d9f30e-e515-4190-b14c-61550604561c 1 Other Other +a2da26cd-7cbe-4676-985c-cf1962fedb6c 1 Other Other +a2da59cb-1f3f-4140-9e77-d26c40f48f65 1 Other Other +a2dac018-9c47-4a18-a912-0d91d3213318 1 Other Other +a2db07ce-00a8-4f67-9c94-a8c6c44d853c 1 Other Other +a2db27ed-5878-4b0e-90d5-6738893a774c 1 Other Other +a2db47db-8da1-4d00-9b94-3fdeb223db7c 1 Other Other +a2db5695-5f9a-4a0f-89ba-406ca7fb237e 1 Other Other +a2dba9fc-8bc0-42b3-b8df-d18b41832091 1 Other Other +a2dbad8b-0aa3-48a7-8616-981f9505ca1d 1 Other Other +a2dbad8f-4ddb-460c-a9b2-8b08800686a8 1 Other Other +a2dbbc9a-82fb-479b-aab1-a6373d85b260 1 James Other +a2dbbd74-bedc-49ac-86d8-7f34ad06b613 1 Other Other +a2dbebdd-fce9-431d-a4bc-35afc0a818a4 1 Other Other +a2dc30e0-f5fd-40fd-b50c-9db6c694eef5 1 Other Other +a2dc3bf4-3a80-448e-b7ba-bf4aacb35301 1 Other Other +a2dc43f6-5699-45d7-b45b-6a912474b9e0 1 Other Other +a2dc6523-d0bc-4a93-9478-7ca912caae4b 1 Other Other +a2dd38cb-0738-4352-8c06-0b001bbd560e 1 Other Other +a2dd3a02-8ea3-4ab1-b17a-00614ed77017 1 Other Other +a2ddaab0-213f-450d-89e7-5e3aa57e0e26 1 Other Other +a2ddd329-1400-405a-a035-2e3f6eb937d5 1 Other Other +a2ddd613-94b6-48dc-98d2-a4c9510fc345 1 Other Other +a2de1a11-bd2e-4bed-9d02-b3beee3dadf1 1 Other Other +a2de676b-6b0e-4862-98c7-4cff3a53565c 1 Other Other +a2de8a43-f030-4f31-b0cf-49fc21754d91 1 Other Other +a2de9f4e-431a-4c22-b4eb-f04cc29ab964 1 Other Other +a2dedd8e-fc06-49ca-89db-6c472cd84c08 1 Other Other +a2df9341-909e-4712-b966-b901f106d8bd 1 Other Other +a2df9ea1-34a2-43bf-85cc-d040960d2fbe 1 Other Other +a2dfc069-d0e2-4e2a-b36c-509e7aa43aa7 1 Other Other +a2dfd59d-24fc-4e97-9a65-e7dc93a320ef 1 Other Other +a2dfed22-76e1-455d-a39b-0266723afb57 1 Other Other +a2e00b18-cfb5-4b8f-a884-618d664ef823 1 Other Other +a2e03fe4-a892-44aa-aee1-a7670b7375e9 1 Other Other +a2e04133-7934-4dc8-8cae-1a3a0a7d2802 1 Other Other +a2e04f64-8d33-4003-8412-7967b4967408 1 Other Other +a2e06881-b0d0-4255-8c90-d78c57cbccfa 1 \N Other +a2e0981e-ab1c-4fbe-99c0-439c7eff335b 1 \N Other +a2e0d116-7ffb-41bb-bfdc-56b96efdf8e3 1 Other Other +a2e11fdf-9454-463f-b1ad-18ba1a9ff811 1 Other Other +a2e13eb5-7508-4483-aa57-53ce195e5f93 1 Other Other +a2e1a7e2-2af9-4818-b607-442c3c852790 1 Other Other +a2e1c931-a95e-47f6-a137-b1bc0efd25ce 1 \N Other +a2e1dc6d-92f2-4acd-8a48-9e44730bdecd 1 Other Other +a2e1fac6-0857-48bf-ae33-9bb37b5e7f80 1 Other Other +a2e20881-27cf-4313-b15e-55b7a61c483d 1 Other Other +a2e2861f-379c-42cb-a54c-f2377bcca6dc 1 Other Other +a2e299c0-979a-4369-a807-c635bcb909cd 1 Other Other +a2e2f3e3-e1b6-42a2-a38b-ab0935cc8470 1 Other Other +a2e33d89-b0eb-4af6-8542-01f21b7c4fd8 1 Other Other +a2e3695b-8281-49c4-a0be-7bd117c352cc 1 Other Other +a2e3c876-3648-4b7b-8db6-8d108259c026 1 Other Other +a2e3c8e4-a2f9-4f32-905f-21d2a7ff0756 1 James Other +a2e3ef4b-8565-4e7a-8129-80284ba57f50 1 Other Other +a2e400a8-be7b-42c6-81d7-6db98e1c95f2 1 Other Other +a2e41bab-a19b-4f2f-964f-69e5ee05c5f0 1 Other Other +a2e45aae-caf1-44b8-b9a2-f46d0b4e9414 1 Other Other +a2e47bb4-6059-4c86-a81f-c4b77dd53175 1 Other Other +a2e4b925-2516-4484-ad54-cf68093d8bc6 1 Other Other +a2e4d0fc-7ec4-4cf2-8e49-6560d7fea521 1 Other Other +a2e4e2f8-bbe1-41f4-9303-05736da564f5 1 \N Other +a2e56233-83bd-47b7-ae02-18621119066f 1 Other Other +a2e5997d-8bec-44f7-8b21-215c168d1e70 1 Other Other +a2e5a754-8d7e-4789-9966-54c642e2862a 1 Other Other +a2e5adbf-bce6-4301-b4a7-ac3313548d0f 1 Other Other +a2e5b591-9801-4a29-b580-2ca115d43cb4 1 Other Other +a2e5b6ef-a45f-4361-b3c8-9ad247395f69 1 Other Other +a2e5c66c-61af-4905-90cb-8f35f87d4841 1 Other Other +a2e5f375-b0e1-49d7-b621-7db72ccd53b5 1 Other Other +a2e62da3-8b89-40cf-8aae-e1e771b813f8 1 Other Other +a2e630c1-77e5-45d1-a33a-1b27a249b117 1 Other Other +a2e63d0c-75f4-4c7e-840c-de67b8ea924a 1 Other Other +a2e64477-4676-497b-ba42-73593c60a3c6 1 Other Other +a2e6453b-a564-431e-95bd-b0349e51d49a 1 Other Other +a2e66a14-c385-4c4f-a6cb-7788fb2cc872 1 Other Other +a2e6d485-3db5-4b64-9386-c0d7e2ab8d1f 1 Other Other +a2e6ee09-6fe8-481c-96b4-a86980c84738 1 Other Other +a2e728a4-6420-4672-9c3f-3d3d3cadac63 1 Other Other +a2e73f52-2f9a-414c-b320-a40535d795aa 1 Other Other +a2e78868-15c2-4faf-b3af-2f8deac47be7 1 Other Other +a2e79a59-88d1-4d55-b23b-10cf0da63cc3 1 Other Other +a2e7b5a4-b432-4a5d-9fb6-8b1492090f2f 1 Other Other +a2e7d030-4484-4f99-829f-fc9b1a0ee5f3 1 \N Other +a2e87ba5-c27f-498a-ba8b-833eed27b31a 1 Other Other +a2e8d54b-44bc-4f9d-a36f-09ecb8761b20 1 Other Other +a2e91580-1fb8-4c62-aa95-15f796333bba 1 Other Other +a2e94367-9adc-47c2-88b9-a4b3d8fb770e 1 Other Other +a2e95994-e81b-4e4e-9749-fd3f3552dfc7 1 Other Other +a2e98e79-a05d-4dbc-bd6e-cf5782a4f7ab 1 Other Other +a2e9e8a8-09a2-480f-9f10-5c89439d7e05 1 Other Other +a2ea045d-9eae-4993-9979-16b03329b7aa 1 Other Other +a2ea5f1e-6574-4e27-a001-e70410c61b80 1 Other Other +a2ea9bb7-1583-46f3-875f-aa176c4a1e45 1 Other Other +a2eb1e1e-4f04-4404-b680-55055e581eb8 1 Other Other +a2eb30bb-23df-448b-9c2b-ffe0a67a9c07 1 Other Other +a2eb39f4-f4bb-449c-8eb7-bfd45ce1e741 1 Other Other +a2ebd80c-c8d9-4590-ad3a-04e6b7b3ceba 1 Other Other +a2ec3d1d-4b3f-48da-a3ee-9baf57595662 1 Other Other +a2ec5e31-cf55-4dcf-a4ad-83eeb374aecc 1 Other Other +a2ecbeef-b621-4f28-9ce9-e43285e38734 1 Other Other +a2eccec6-8c04-40bb-ad0e-eaa7b6c4ec6f 1 Other Other +a2ecd8b1-6cea-4246-aee6-7df40c77a13a 1 Other Other +a2ecf107-8f83-4ee4-bca7-004533496a42 1 Other Other +a2ed012d-7a15-4672-9f91-b1d06b40928d 1 Other Other +a2ed245e-b017-433a-815f-4da15c0740dc 1 Other Other +a2ed5180-d235-4e4b-aee4-69f062cd6dc8 1 Other Other +a2ed83f3-9ed5-4b99-8407-743e66835682 1 Other Other +a2edb78a-8737-4fcb-bf1a-00dd93f52136 1 Other Other +a2edd5e0-cb8c-4cbc-8876-f3b444466424 1 Other Other +a2ee0610-bf06-4bb0-b2d0-c1614e57a607 1 James Other +a2ee2546-1aeb-46aa-bfd2-bd3ba78bb7a7 1 Other Other +a2ee3089-a5cf-4c9c-b66e-113c5803f434 1 James Other +a2eea8b8-b60d-4df5-a873-83c1c8a57928 1 Other Other +a2eed289-e69a-412c-b834-028473e8c0af 1 Other Other +a2eeedec-792c-48c1-a4a5-f8f810fc67b3 1 Other Other +a2eefba2-ed88-4cdf-8f6b-c04efc4c50c7 1 Other Other +a2ef0f21-3f06-4936-8fff-cbe13b5ed452 1 Other Other +a2efec6a-336d-4372-aa59-0335ba64ffbd 1 Other Other +a2efedba-8cb2-4e66-9b67-f0e88da140a4 1 Other Other +a2effba7-152b-44e2-b6ae-36bdde824909 1 Other Other +a2efffa4-f9c2-405e-9a7b-190ffcb6ecf9 1 Other Other +a2f029fa-1e70-40fd-9db9-8111fb0bdb73 1 Other Other +a2f02a6f-7542-4568-9ecb-589b5b824094 1 Other Other +a2f069eb-e2e9-48c0-9118-5c9c3009495b 1 Other Other +a2f0a61d-221a-4a19-8299-7ba5072086dc 1 Other Other +a2f0ab95-7ae7-4b3b-a151-c2a48d7d39aa 1 Other Other +a2f0c10b-3f0b-4317-813a-1ab09fee6b29 1 Other Other +a2f0de66-4833-4aaf-909b-3af9a740b580 1 \N Other +a2f0e293-ca9e-4b7a-b91a-f307e2ef47e6 1 Other Other +a2f139ea-2cef-4908-b226-9fc5eaba2240 1 Other Other +a2f16746-8afe-48bf-bbc0-f656f0c1e94b 1 Other Other +a2f18754-86d9-4e2f-873a-37fbf0a3a415 1 Other Other +a2f24d1c-0807-48f3-9c80-89a1832a4f0b 1 Other Other +a2f2578a-0a91-4f97-b8d1-d4365cbd1f94 1 Other Other +a2f2715a-116e-42fd-9928-7eb7985bc65e 1 Other Other +a2f29c0d-b603-4a35-945e-8ded7d27afa6 1 Other Other +a2f2bad0-597e-4534-9370-2e4903a53a84 1 Other Other +a2f2e9a2-f305-44a4-9c14-a1612332b34f 1 Other Other +a2f31a3f-c7bf-4fde-8ca8-bbf62a30ec23 1 Other Other +a2f328b2-6d38-456b-855b-dd3438ee98d3 1 Other Other +a2f351fe-d54d-4939-beb0-566a19c30979 1 Other Other +a2f3586d-a298-4071-8fb5-983b315a685d 1 Other Other +a2f38433-ef09-40c3-8cf1-f006c2eef108 1 Other Other +a2f399c6-1da3-42c5-91fa-3d6abb47c6fe 1 Other Other +a2f3fa1b-549d-46ea-92cf-46184d200514 1 Other Other +a2f422d6-e3e6-45cc-bf3e-c0a7c361109c 1 Other Other +a2f436c0-2de0-468b-8c4e-1ce689d6cfb4 1 Other Other +a2f4383a-bdec-4eda-afbb-b6fe091d782b 1 Other Other +a2f43d5c-49c5-4fe9-b1ae-c10fb98ab008 1 Other Other +a2f4451b-924c-4d8a-a0de-721454b00484 1 Other Other +a2f4791c-db93-4eba-b524-3e0ae9655e90 1 Other Other +a2f4932a-b715-4f43-bad6-73850dd09a38 1 \N Other +a2f49368-96ac-44e8-8130-1a983ff4b0fe 1 Other Other +a2f49b62-ca44-4d47-922f-c977f4923354 1 Other Other +a2f4df87-28fc-4ff8-bd55-f138d2493992 1 Other Other +a2f567ef-7e20-4435-9a73-cef09a768d52 1 Other Other +a2f58065-7756-4660-a0be-aca7ca12b74b 1 Other Other +a2f59828-476e-4e0b-a1ca-f874cff5b8b4 1 Other Other +a2f5ab2a-ea6d-41fa-9507-291170299063 1 Other Other +a2f5b40b-ac66-4f5e-8017-81fc1189c54e 1 Other Other +a2f64aae-4e70-45d0-b20d-d524495725e7 1 Other Other +a2f64ab4-9175-41f9-8c3e-172c3a67af74 1 Other Other +a2f64bec-325f-4cfd-9e0b-2943b8d2abd0 1 Other Other +a2f65463-e388-479a-8f12-be19699504a5 1 Other Other +a2f6b9af-d815-4aea-957a-ad28e3f3afa9 1 Other Other +a2f6ce58-321d-47f9-9352-0a2d17a574e3 1 Other Other +a2f6ede2-51c4-4efb-895e-23659238db1e 1 Other Other +a2f6f6d4-5166-4ef5-9954-f459ada357cf 1 Other Other +a2f7019c-3d73-4c0c-bf7d-ea74a2ec57be 1 Other Other +a2f70bbc-c076-429e-ade6-8dd8acef6845 1 Other Other +a2f72e7d-2d4e-45d0-9b8c-cb034d034ca0 1 Other Other +a2f738e2-bad3-4466-af64-f96d0083e521 1 Other Other +a2f7d9fb-d5ba-4694-a501-d3a010f0f023 1 Other Other +a2f7dd2a-30e0-4f72-b309-3d679dcd9077 1 Other Other +a2f7eaee-1078-40fc-89a3-8f07343fe18f 1 Other Other +a2f817df-e7f5-4c06-a993-f0251a2e5215 1 Other Other +a2f81af4-c1e6-40ca-97a3-31d4836e7992 1 Other Other +a2f8447b-1565-4cca-b015-5d055f6a7d21 1 Other Other +a2f86d02-7b66-4f35-b861-763a667a22ce 1 Other Other +a2f8af2f-0ab2-43f3-a298-3666755da45c 1 Other Other +a2f8b480-a346-4495-bdfd-6c11f1294905 1 Other Other +a2f8fb58-63ce-4ea2-a521-2b727b4ed7a5 1 Other Other +a2f91340-b452-48f6-b99e-e91d430f53de 1 Other Other +a2f9468e-5c01-4aaa-9d54-877913325578 1 Other Other +a2f95c53-e72c-4701-83fe-6cf978a44279 1 Other Other +a2f9653c-9d22-43ee-ae4c-c18dda6fba90 1 Other Other +a2f99f0c-573a-4bff-aaa7-72ae13286852 1 Other Other +a2f9e210-5d64-471f-80ea-31bdc35545f3 1 Other Other +a2f9ea01-c085-4337-81ed-21df949e64c9 1 Other Other +a2fa023b-3392-4f9d-a9db-b5ba27476027 1 Other Other +a2fa0b32-ac20-4efa-a80d-ee895c4d3577 1 \N Other +a2fa0bf3-be29-45e2-8319-62b2e265249a 1 Other Other +a2fa522f-826a-4d2e-9aee-3e6468d3bced 1 Other Other +a2fa67dd-5f05-4ca9-852c-6e9e000e3088 1 Other Other +a2fa6f3c-e928-47af-8058-471f38c32ec4 1 Other Other +a2fa836a-99fd-47be-a209-3877fee17213 1 Other Other +a2fa964f-5611-43c5-89ca-a8bd9f2406ae 1 Other Other +a2fab398-b8d4-4e82-a073-8c31151bf8bb 1 \N Other +a2facb4d-e9d6-46f8-8090-7564318858da 1 Other Other +a2fae2c1-55b3-46d0-a649-82c2a9a89fa4 1 Other Other +a2faeeb1-9f03-4180-b527-2f686557329f 1 Other Other +a2fb37ab-e438-4b6e-94f1-6da1492e7695 1 Other Other +a2fb38c1-f42a-4d63-a086-4610853be8fb 1 Other Other +a2fb47ae-11ec-4b16-872c-b1b56b0800b3 1 Other Other +a2fbebb5-a8bb-40f9-9c32-87a9bd058c39 1 Other Other +a2fc02fc-1814-4ec5-9060-8bcf8e9ee522 1 Other Other +a2fc40fd-068d-4c09-9125-684b082238a5 1 Other Other +a2fc4808-09ad-4291-a111-6752ff0e4f86 1 Other Other +a2fc7dc4-fe55-47f1-9edb-5812672e3612 1 Other Other +a2fcb600-076f-49a2-b8a8-e1ca488cc47a 1 Other Other +a2fd20be-7009-46a8-991e-1c7f237167d0 1 Other Other +a2fdba16-bc7a-467b-92fa-7a4fdb777e7e 1 Other Other +a2fdde07-b00e-4fd9-89de-27f41a250ecf 1 Other Other +a2fe01da-d7b2-4444-ae49-8b51373f2563 1 Other Other +a2fe13f7-1714-499e-9de1-823eb603cd54 1 Other Other +a2fe1b9b-b809-4fcf-9537-c8286242452f 1 Other Other +a2fe5b6d-e55f-4d94-9b8a-246fc9f31f15 1 Other Other +a2fe83b7-a172-4620-a51e-03c338032e4f 1 Other Other +a2fea49e-9416-4539-92cf-bda56401c59f 1 Other Other +a2ff6d68-4c26-4aaf-9362-b5fd8784d9f7 1 Other Other +a2ff8edc-4d28-44b5-ac62-3d2224620f6e 1 Other Other +a2fffd01-34dd-4c77-bb3d-cd9b19d98f4c 1 Other Other +a3000455-8514-4f97-9240-3d50c711618b 1 Other Other +a30053ae-ea5d-48c4-8bea-1f11b3ceaabf 1 Other Other +a3006d20-0f92-4689-9c36-2a55835379a0 1 Other Other +a300992e-68c5-4ef9-a4bc-5987bcdadd92 1 Other Other +a300d69e-9581-4929-89dd-be0ba496d392 1 Other Other +a3011629-f997-4abd-b174-fd21a4de67c0 1 Other Other +a30118d1-65d3-47ad-9619-939ae4fb5511 1 Other Other +a3017b78-7c24-4db0-953b-053fc0ada58a 1 Other Other +a3018452-cc0e-415a-bf8a-d3e13dc54109 1 Other Other +a3018537-1560-47f8-8c48-7c1d28a7e33d 1 Other Other +a30285d6-b287-441d-a983-7147c93ecac0 1 Other Other +a3028e73-8dc9-4dd4-8c81-5ee75bc829cc 1 Other Other +a302ad99-5115-446e-aa78-cb665caec0c9 1 Other Other +a302b746-cb40-4a92-aea2-f1a5a88229d8 1 Other Other +a3031187-899b-444e-b612-b17a2d064462 1 Other Other +a303172e-062f-4ac9-9760-3319351444bb 1 Other Other +a3033d4a-b8e3-4e19-9a03-61728dea4d70 1 Other Other +a3033f14-d1ac-4b91-a686-944e11ba1806 1 Other Other +a30398ae-bc57-4d44-b835-75a6b1734245 1 Other Other +a303a901-61b3-4253-8d24-22c4eea2b218 1 Other Other +a303b2fa-f638-419b-8c2a-05b63099f983 1 Other Other +a303fa77-7435-4925-a788-f4fd9cc3537b 1 \N Other +a304264a-fccc-47ab-b7a4-059f1f7e2074 1 Other Other +a304eefd-ded9-4137-959d-0edd3e9f68b6 1 Other Other +a304f3c6-69ca-4122-b487-54809db1933a 1 James Other +a3058010-a619-4ea6-b980-93fb645036b4 1 Other Other +a3058039-274e-4b99-b51e-ae6f6d3fe78b 1 Other Other +a305b172-5c7f-4bd2-8a90-92dd57faffd8 1 Other Other +a305b877-0d13-4b47-bdb7-b635b4f90a5f 1 Other Other +a305c8b1-85c0-4ec5-aee3-f69a9ca027b0 1 Other Other +a305d528-2c65-41c8-9c5e-c7d3e40fb21b 1 Other Other +a30622f0-07db-4461-98fc-6aa98d87e4de 1 Other Other +a3063a1b-9a75-4c8c-9eca-1917b4b84212 1 Other Other +a30661e5-337e-4bbe-abf9-178e15b9915e 1 Other Other +a3066a2b-f007-4ddd-bcc1-ce3ea2150124 1 Other Other +a3072f7c-8a94-4bb7-b4c5-124bf374124d 1 Other Other +a30747f4-74cb-4ea7-a7d2-341aa327b842 1 Other Other +a30754de-f2b8-496b-8b7b-7c0240c0fe44 1 Other Other +a30771ef-98cb-46ec-8d35-e440f776e8e5 1 Other Other +a3079b56-20ff-4c1e-b784-d50eefbdbd37 1 Other Other +a307a0a8-9eca-486e-bd2c-2bfbf3813664 1 Other Other +a307c7e6-4e1d-4686-9382-06f32f0d47cd 1 \N Other +a307d6c7-4663-4e0e-8034-4765b93c307a 1 Other Other +a307ec99-992e-43bf-aebe-db7390091a50 1 Other Other +a307efef-b886-4067-8108-40a2bb9603cc 1 Other Other +a307fde5-8925-4393-9d62-66ebd005fc4c 1 \N Other +a308163d-1e65-4ef1-9622-4e09924e0816 1 Other Other +a308166b-93e8-4ca8-b230-71237c1b504c 1 Other Other +a30855ba-fc9f-4240-b32e-354a3cd5deaf 1 Other Other +a308793e-55ca-4e3f-b883-6a30de0c33ef 1 \N Other +a3089ab2-bd4b-42d4-8543-39ac2256f91b 1 Other Other +a308abfd-540b-49cb-b487-0b6581c29f97 1 Other Other +a308bccf-690e-4dbc-9935-7be7f43bb773 1 \N Other +a3092b90-98dc-48f7-b28f-545dd675c4e4 1 Other Other +a309346a-ff80-441c-accf-4ba7a6b6468b 1 Other Other +a3099e4a-d6c8-46f6-bb07-64de6935be41 1 Other Other +a30a17a7-ecac-46d5-be26-2ac51868fc1f 1 Other Other +a30a273d-3db6-48a0-b93c-5ef6d76eb242 1 Other Other +a30a2d8e-b8c6-4bbd-a3c4-44413e46b1e7 1 James Other +a30a3067-15e9-4965-95c8-8dd97f7fb502 1 Other Other +a30a7124-fbd8-41c2-b357-4ef05781ee55 1 Other Other +a30a877c-de6e-4d8e-9a64-07085323882c 1 Other Other +a30a8e14-98c6-4bee-8640-e3bd248f023f 1 Other Other +a30aba34-1dee-49bd-8e67-268bcdd86bba 1 Other Other +a30acde5-80e3-4a4a-b693-d8616f73419e 1 Other Other +a30b5fbf-6ba6-4c4c-b544-16d2c30cc91b 1 Other Other +a30b6d1b-cf69-443d-be99-b0c9431b42ee 1 Other Other +a30bd6d3-d2bf-4823-9936-8da62a12e66b 1 Other Other +a30be0a8-128a-4a5d-8b38-de3222d618b1 1 Other Other +a30be26a-6b81-4093-aa48-b439e85e7824 1 Other Other +a30be9cc-3960-4e87-8d65-da5359b447f0 1 Other Other +a30c0727-5f52-43ae-8eef-f2c378831a30 1 Other Other +a30c1509-7d00-41b5-a01c-bf75da89c84f 1 Other Other +a30cb2f8-d357-48ae-af87-240361002411 1 Other Other +a30d2a66-772e-4f77-8d3f-956e56c82a5a 1 Other Other +a30d4588-a9fb-4bd9-84e4-268ef9b69e8a 1 Other Other +a30d8e11-4e4d-4f22-bc20-cd148c21d0be 1 James Other +a30d9d11-8271-42c6-9c2d-d9423906dded 1 Other Other +a30dc8a4-995f-4f4a-b6b8-aca80c7bba3a 1 Other Other +a30de17d-447a-4015-820b-2b5709846821 1 Other Other +a30e030b-b4cb-43e7-9949-286ee4ad68fd 1 Other Other +a30e06fb-1872-464f-832c-707bb40edd7c 1 Other Other +a30e145b-dbc0-43b5-81b5-464a8d753cfd 1 Other Other +a30e59a6-4bfb-4e4e-b378-ea83f6d0ba98 1 Other Other +a30e5be9-b8b6-4b16-bb9b-52d1616426ef 1 Other Other +a30e9411-7585-4c54-92e1-a9292047859f 1 Other Other +a30eda88-3990-408b-9aba-3974511c7373 1 \N Other +a30f2c1a-b9a6-42a3-bde4-ff884052722e 1 Other Other +a30f70b7-ce90-4cc4-a767-68db8a91a2e3 1 Other Other +a30f7e38-77c8-4bab-9bbb-30f8e274d12a 1 Other Other +a30f8491-41d4-4e7c-a460-81ac175cda0d 1 Other Other +a30fa6a4-dc7a-400f-a7fc-98d249036a42 1 Other Other +a30fa927-8aec-4dba-b1a1-c4d5cdc097a1 1 Other Other +a30fc381-6a09-4db2-b582-25cd404e3109 1 Other Other +a30fedae-49c6-4d65-9fe9-ace0fb9d16c0 1 Other Other +a3100960-39b3-4b33-8614-f9cb869b4c49 1 Other Other +a3105185-0a68-4d9e-8295-296b19b9d45c 1 Other Other +a3108a3a-d022-4479-813e-27ec4d7f3a69 1 Other Other +a310d67a-7ea7-4179-8455-b71278dd8d9c 1 Other Other +a310e4bb-0c50-4754-bac6-b0fc1fdbb3b2 1 Other Other +a31166ae-ed3a-4eee-ab07-30277a057229 1 Other Other +a311b42d-c7e3-4406-a5a5-c9f33a4f3c4e 1 Other Other +a311cde4-efe2-4f24-85f1-2efae295d685 1 Other Other +a311d6b3-3716-467a-829f-6cdc8c589763 1 Other Other +a3127161-d862-48fd-8174-d6e7d48e6451 1 Other Other +a31279ae-c849-40c5-b9a1-e78275b7647b 1 Other Other +a3127b53-82e5-4a1e-9d31-347382702788 1 James Other +a3127dfe-3938-42cd-bf56-e1da14184320 1 Other Other +a312827d-9612-4de8-8a05-b6981cade89c 1 Other Other +a3129b92-c66e-445a-a10b-6aae4253f6cc 1 Other Other +a312a1ef-7377-4877-ab5c-e44cc1327cf5 1 Other Other +a312b242-caeb-43ad-ab6e-2796661d6a48 1 Other Other +a312bd89-d917-4487-a986-5b3678c9eded 1 Other Other +a3130b81-5ca1-4b31-9422-071bd4fb8d37 1 Other Other +a313318c-2b5a-4119-957d-01ae53159a16 1 Other Other +a3136c7b-9abe-4b33-a3a0-635ecc383ef6 1 Other Other +a3146c5c-ab7a-4fa8-808a-1b801197209f 1 \N Other +a314b1fa-8b7b-45a6-91d9-d03204925129 1 Other Other +a314d69f-7246-414a-bf33-8aa38b3bd800 1 Other Other +a314f1f9-dcd2-4f9e-b9b8-7a2ca1609786 1 Other Other +a3153584-e259-49b1-a4b3-0346b51033dd 1 Other Other +a3154153-ff24-4a53-8a48-d2b3501b7b3c 1 Other Other +a31583a4-5b3b-420a-b87d-160e5517d2fc 1 Other Other +a315d721-78d6-4850-937f-c28a8b708c07 1 Other Other +a31604fb-2d0b-4b7c-bcec-a10d064caf7a 1 Other Other +a31614c6-ccb4-4142-bab5-a0e206f9ed5b 1 Other Other +a3163694-d02b-4088-a41d-88a21b018f08 1 Other Other +a3164d56-1162-40cc-82a6-b10dcca7c4c1 1 Other Other +a316e150-0e12-4a39-8921-c2680fa6456e 1 Other Other +a3177647-8b20-4f2c-8846-2b653126f15f 1 Other Other +a317a99e-19b7-42d0-a265-2b9fdabf56e2 1 Other Other +a317bf12-ec17-4975-89c3-41af65a9a7bb 1 Other Other +a317df0a-dfee-4972-a785-da340a0fc8ee 1 Other Other +a317f836-0a62-45fd-ac41-fc6c8a8756e5 1 Other Other +a31812dc-279b-4af1-a65e-34875ccd95bf 1 Other Other +a3184f55-18fe-4c0c-b67c-767deee68db3 1 Other Other +a318739c-ef44-42be-8fa8-6f860f52611e 1 Other Other +a318ca99-81c6-4020-8436-a49abff1f3d7 1 Other Other +a3191a21-e1e0-4a95-b5b9-088089a3e33e 1 Other Other +a3191ede-89a8-44fb-b700-f5773648a058 1 Other Other +a3193005-5728-4445-b2ac-f4dd410aa409 1 Other Other +a31964a0-32d6-4e70-aabb-220ecc8807ab 1 Other Other +a3198894-2453-498a-a646-31be94e9c214 1 Other Other +a319bead-cc1f-4649-9fd2-e0c76af21d81 1 Other Other +a31a71d0-01ef-4037-a0ae-171c33b3c234 1 Other Other +a31b10f9-2f75-48aa-854c-e9b295cd4b04 1 James Other +a31b52e1-74f3-43d6-b14c-6285c671ed69 1 Other Other +a31b948c-ebf7-4b44-9dad-9b9e86c729aa 1 Other Other +a31bc2aa-a61c-4a1b-bbb8-15d19b044276 1 Other Other +a31c11ff-df80-4ed2-b347-a2e4872730f5 1 Other Other +a31c1e8b-b7b2-42b2-a4a8-765346596e4e 1 Other Other +a31c7ee6-4bf0-4451-814d-ea95d15dfb03 1 James Other +a31c8d80-d6fd-42d1-879f-63dc97f6f518 1 Other Other +a31c8fa2-851c-4ecc-8088-104de68bea97 1 Other Other +a31ca919-3b86-4e74-b63e-6d3c475fb85c 1 Other Other +a31ccc8d-7cec-4b2d-9a23-e850c18eb41e 1 Other Other +a31d71a3-ebf6-463e-a63b-741a18f5e86d 1 Other Other +a31dd38e-905b-4522-b69e-5f8f4e78e434 1 Other Other +a31e0dbf-35f1-4595-99ac-1edaa4c5de92 1 Other Other +a31e1289-5ed2-45cb-a8be-1ce1f745b01a 1 Other Other +a31e521b-d9b7-4dab-8fa2-c8c971887472 1 \N Other +a31e5231-1fc7-4bb8-a586-d51d1278c800 1 Other Other +a31e8641-b0fb-4e2f-a39b-fa4481ab9e29 1 Other Other +a31ec594-7fbb-47b5-9596-6a8c0e24d079 1 Other Other +a31ec79d-8b36-49f1-9ece-116ab682a539 1 Other Other +a31f6966-1c43-40a7-835f-7e3370224083 1 Other Other +a31f816d-ae96-4323-9e90-982f2bcdd38b 1 Other Other +a31fb4cd-10f7-4607-a9d6-f37fbfa67f84 1 Other Other +a31fc725-02ba-4764-9a7f-ea9245742cd8 1 Other Other +a31fd46a-e6a8-4ed5-a258-cf95b03fd43d 1 Other Other +a320428d-dd68-40c4-b99c-11dcc89b3c79 1 Other Other +a320bb50-4a9c-43a5-bc51-58beac080c97 1 Other Other +a3211608-62a7-4e65-a9ee-14558dd11bf6 1 Other Other +a321b786-a340-49f7-a20b-de4b4229ff6c 1 Other Other +a321db21-10a8-4e55-a43e-3288b7e78d78 1 Other Other +a321ee07-40b6-4285-bb84-c385f21ec0c4 1 Other Other +a3222e31-7952-4009-8304-2fabf6c1c175 1 Other Other +a322569c-a448-4420-8a33-779b0c3033b4 1 Other Other +a322b238-b19c-4e5c-93a7-445c4128a25c 1 Other Other +a322b6a5-bb31-4e03-affd-f51629c8ca9f 1 \N Other +a322d9ca-9ed1-4944-a41c-b2a90c04ff98 1 Other Other +a323086a-441a-488f-8165-46ecff420b16 1 Other Other +a3230a25-0588-439a-ab2b-f3776693a622 1 Other Other +a323209d-70f2-44ea-a971-2e700baf7409 1 Other Other +a323464c-be3a-4012-8684-a9b45ce23046 1 Other Other +a323472b-d655-4798-806b-28fd624cc964 1 Other Other +a3236575-8c4f-4564-91c3-184cd554a9c0 1 Other Other +a323baaa-bb9e-4cbc-9ef2-05b16b83e739 1 Other Other +a323d87f-f373-44a6-a41f-f27737c0b054 1 Other Other +a3241916-c321-48ae-8864-e5aabdd60ebb 1 Other Other +a324c803-ba0e-44d9-a634-400f62ef7fbf 1 Other Other +a324d314-db43-4f1a-a450-bdcae7a27c19 1 Other Other +a324ff0f-892b-4385-9f74-10d849b4f89c 1 Other Other +a325619f-2f06-4e1e-bde2-dff37b492172 1 Other Other +a325a3a7-4cbf-4384-8367-1f275eaa4b91 1 Other Other +a325ed29-9b03-49e0-aa7c-0d9e5c7d692a 1 Other Other +a325fa2c-a243-477b-abbf-e85147234038 1 Other Other +a32615ee-e9e1-4dac-929b-8fd2ae7aa537 1 Other Other +a32626f2-41db-4d6d-962a-9a9035bd3828 1 \N Other +a3264f91-bb4b-4e2a-babe-3759a20e03e1 1 Other Other +a32688fa-0ceb-4aec-9ed8-ad4cf0c637b6 1 Other Other +a326d8f4-5817-418c-a857-7a41b213d901 1 Other Other +a326f261-05f1-46de-8664-b2a9d1b643ed 1 Other Other +a32729c2-a183-4998-95db-8456001a3a1b 1 Other Other +a32742a7-a975-4d97-9694-fd8f493ffa83 1 Other Other +a3276cd5-c92b-4b7a-ad2d-9a1f3e737c69 1 Other Other +a327ae10-8629-4b28-b956-f7027f7c1eb0 1 Other Other +a327b6aa-cf51-49e2-b11e-4d3d6ad14bf7 1 Other Other +a327c886-4a83-40d3-b5cd-783556436959 1 Other Other +a327f76d-a8b1-4825-9132-e8cd106a4c0b 1 Other Other +a327fa7b-7617-43b5-82e0-034e288a4336 1 Other Other +a328011b-6a96-436e-86f7-560f06491c64 1 Other Other +a3281004-6011-4d94-bd5a-e3b3d88f93e5 1 Other Other +a3282ffb-7683-4dd6-9d6b-6289e7537e8c 1 Other Other +a32877df-3517-4297-b0c9-f045e62f1d5b 1 Other Other +a3289bec-3de3-4fc2-b312-10a31617db82 1 Other Other +a328a725-009d-4bd9-90fe-9f6b9cfe8b5a 1 Other Other +a329210b-9cd7-4ab2-ad42-3adf85f10aad 1 Other Other +a3297921-ff21-4cad-ac1e-e3d05602a3eb 1 Other Other +a3299e39-0df5-4966-a30f-0bcd72dec852 1 Other Other +a329bac8-c646-4ca7-977d-35096b456767 1 Other Other +a329eae0-45d1-4261-ae0d-15b865f1a039 1 Other Other +a32a36ef-75d9-409c-83bb-21a75f117ba8 1 Other Other +a32a6ef9-aa13-4767-864b-ee0553f4e43f 1 Other Other +a32a7fd4-5b42-4e02-a7a7-71758d78a8b2 1 Other Other +a32a9086-721e-4bff-b839-00f2a2acf8fc 1 Other Other +a32a9c21-a0d0-45ed-a607-826f29392955 1 Other Other +a32a9fa9-7857-4406-bf38-1242eede4c2e 1 Other Other +a32aadb6-3e6a-4d4f-867a-10de8f742c19 1 Other Other +a32abd76-65f5-44fa-a339-2873781b7a90 1 Other Other +a32ad7ec-57de-4991-b9bc-35373871b81f 1 Other Other +a32addd5-f4de-4c11-bfc0-1216de8165f4 1 Other Other +a32b005c-475b-44b4-aa21-9fef24286a17 1 Other Other +a32b06f1-858b-4464-b2fa-35dfcc78bc59 1 Other Other +a32b133d-feaa-45c9-a81f-58db7b6f1a89 1 Other Other +a32b3432-940e-444d-83e3-62a8f343e63b 1 Other Other +a32b82c6-644b-4a16-9842-1878c76832db 1 Other Other +a32bb37a-f0e3-4bbf-acbf-a366d50201d0 1 Other Other +a32bb9ad-c9f3-4551-a80a-a9a6f22f03ff 1 Other Other +a32bbdae-ba84-4edd-b6ad-e2107b16bd72 1 Other Other +a32c78a2-08e0-4b07-b69a-a949eb1cbf15 1 Other Other +a32c990e-03af-4405-b0f1-16e7a1b91450 1 Other Other +a32c9d50-527b-4ed4-b6df-68284506e964 1 Other Other +a32d02b0-115c-4f43-9676-28facea873e2 1 Other Other +a32d48bf-fca8-46ea-b8e4-e963de27fcad 1 Other Other +a32d7d63-924c-4ae6-b275-4f31f921e912 1 Other Other +a32de7d0-019d-49bd-b878-840a79117cbf 1 Other Other +a32e6f4c-fe17-4d1f-b8a2-3b8d8c5776ae 1 Other Other +a32e971e-ff6c-4644-844d-c44231ebc803 1 Other Other +a32ea13b-9945-4c7c-9471-01ec3a358d8b 1 Other Other +a32ee19a-b81d-41c3-b118-76c183c817f2 1 Other Other +a32f0667-9d1f-4365-ad53-f9497406ff0f 1 Other Other +a32f663a-fec7-4258-903d-905824ce0811 1 Other Other +a32f8ee9-9fdf-444f-9e07-e69c5d7e5689 1 James Other +a32fed9d-9955-4305-b27c-229b53b08bfe 1 Other Other +a32ff0bf-a30a-4022-bb9e-9c3faf4a49a6 1 Other Other +a3300888-50a0-44ff-936a-582c9b6c6d63 1 Other Other +a33021a9-128d-4316-be96-69f88eb14241 1 Other Other +a330345a-ee5f-49fe-b539-03bb29f88951 1 Other Other +a330421f-dac3-439e-8277-3c1c54c3c0a0 1 Other Other +a3307f6d-cc38-491a-806e-41eb27ba0f36 1 Other Other +a330a3a0-1efd-4a00-8d6d-1c475331131e 1 Other Other +a330c9a7-6d42-46a0-a89e-cdde62ec553d 1 Other Other +a330d4f4-8953-43cd-a49d-134646d40132 1 Other Other +a3313d1c-2ac4-4d57-b47e-01102b36bcea 1 Other Other +a3314a41-ff5e-4da9-a81e-be0fb72b084e 1 Other Other +a33161c5-be44-4653-a8bf-021a7ddbf7d0 1 Other Other +a3319166-5d9b-46ca-8640-13b2876fb4cc 1 Other Other +a3320478-8b7f-41e6-a4d1-84da3a6f7767 1 Other Other +a3325b93-77d1-4606-9e12-5421d5bff0e1 1 Other Other +a3327633-a76c-42f3-8fb7-55738b982fab 1 Other Other +a332842c-7e66-4343-ba63-57443e5ed0be 1 \N Other +a3330258-ff59-4c5b-948a-0dc2f8b617cb 1 Other Other +a33314f7-d2c8-40ef-8369-fff8eb1f02c5 1 Other Other +a33386af-4905-4261-b209-54621861a8e6 1 Other Other +a3339a2d-2b85-4f2d-850e-b5a435857365 1 Other Other +a333f326-d70c-45e1-b71c-3f7b60b94846 1 Other Other +a33413e6-34f1-4963-9c30-88e691b6ac9e 1 Other Other +a3347ab4-74a8-469b-b784-befdc2d70c1f 1 Other Other +a334f5ba-5e66-4824-8ed7-d7611ffad68a 1 Other Other +a33512be-8132-48cc-9eef-e870807b54b6 1 Other Other +a33515d4-01fd-47d1-9394-f0a8ec1271f1 1 \N Other +a335737c-f59b-4d22-862a-88f4f4580836 1 Other Other +a335a7c8-c7f4-4c3c-84b1-73edfd2fcbc0 1 Other Other +a335b461-6b69-4861-b5c5-00743ceb3883 1 Other Other +a3360493-82e2-462a-a0b8-8e307625f4e9 1 Other Other +a336237a-abf2-42db-b0b8-cb37b22ddc50 1 Other Other +a336514f-2d76-4fb2-b660-e0e5423dbd87 1 Other Other +a336c3d7-4262-436c-8f01-2f311df3108e 1 Other Other +a336cb2a-9329-4281-8684-65120fd6cfb9 1 Other Other +a336cf90-d678-4bd7-98f0-058a4a82ef43 1 Other Other +a336e29b-a5a6-4b87-a3bf-3db4ef5136a9 1 Other Other +a336ff7a-78b5-4ea0-8583-c1c1dfd65ced 1 Other Other +a337274c-cac3-4c56-a190-3571ecb80768 1 Other Other +a3373cae-9210-4ef9-921d-775071132687 1 Other Other +a3374b0a-1c5b-42b6-95b8-992fa701aa5a 1 Other Other +a337653a-4cf4-4c2d-a547-8012ffeb320e 1 Other Other +a337974b-8896-4dc5-b9cf-1f3320a4872e 1 Other Other +a337a410-3583-42a6-8e8a-fb225e4190eb 1 Other Other +a337c5a6-1815-468d-bceb-d6763fcdcf1d 1 Other Other +a337df4a-0e27-4303-8653-8d26ef906c13 1 Other Other +a33804a3-31c0-4260-b08b-18f335c258b7 1 Other Other +a3380cb9-3f8e-4348-b51f-b51919240f01 1 Other Other +a3387a87-f46f-4a44-8635-2e096d6b5b0f 1 Other Other +a338ac9a-3106-464b-b5da-238d8308cd4f 1 Other Other +a338b010-32ff-4ede-8290-302d5b182292 1 Other Other +a338d568-97c6-431c-aed0-c9ed6d5f4fbe 1 Other Other +a3390e1e-ab62-406e-9480-555cfa307141 1 Other Other +a3392cbb-a54d-4531-a1f4-db44f56e7650 1 Other Other +a3395370-ad94-4bc9-8c5f-907b19856ae6 1 Other Other +a339731d-79f8-4ffa-94b4-2459681d4bf0 1 Other Other +a339743e-7e04-4c8b-b276-ea2c6badeb0f 1 Other Other +a33977df-5944-4745-baac-1d30c0f9fbd9 1 Other Other +a33a3506-f768-44f0-8d5e-99ecd6a47530 1 Other Other +a33a64af-bd12-4782-a738-63887ee7a12a 1 Other Other +a33ab2e3-8ab5-4a8b-9948-145d3cea6937 1 Other Other +a33ae8bf-4bc1-4a0b-be14-98acb82fedb0 1 Other Other +a33b0a59-6f48-4cbe-8a54-2123a389c0a6 1 Other Other +a33b5472-0647-4cf8-8196-ae333580caeb 1 Other Other +a33b5ec9-40f5-479b-aed7-8ab3feb7fca1 1 Other Other +a33b8e45-e2ff-4a90-b97d-1218b7b26bf5 1 Other Other +a33bb9a0-fd95-4c14-8620-59e96ff7326d 1 Other Other +a33c031a-b5cb-470a-976f-3d6df21b7dfc 1 Other Other +a33c1e74-fb9e-4cf2-8c24-e9b61a3c5da1 1 Other Other +a33c6588-1edf-4bcc-96da-be6a94dbd0d3 1 James Other +a33c66f9-c657-4d1d-a9e2-d0dd8eba21bc 1 Other Other +a33c935f-9aad-4b88-ab25-8c1ff02fa82f 1 Other Other +a33cb9bc-b074-4f8b-ae71-75f3d85995ea 1 Other Other +a33d18b7-6ebf-4d07-b085-ec6c407926e8 1 Other Other +a33d1fb2-2004-427f-9b09-14135a10a11d 1 Other Other +a33d8eb9-7fc8-4b97-b166-9cd0e0b76346 1 Other Other +a33db7c6-3310-4b04-b689-b288616aa70c 1 Other Other +a33dbb60-89f5-48ad-9f24-1ef26d10145b 1 Other Other +a33dd6b4-9743-48b8-838f-501965885a22 1 Other Other +a33eb013-cc19-42b2-839a-9cf7137555eb 1 Other Other +a33ec1ca-e530-48c3-89b1-6157e4fc8af5 1 \N Other +a33f1e3a-a63c-485b-93ef-3a893f24b84b 1 Other Other +a33f2dfb-e0f4-408b-b6f4-a9aa42d72e76 1 Other Other +a33f3e52-cb23-4758-b2a0-1733dec98c81 1 Other Other +a33f4beb-4ba8-46c9-938b-74f1d4db363b 1 Other Other +a33f8c8d-6077-415f-8d67-38175e2c7522 1 Other Other +a33f9959-1397-4bc3-a5f7-b547869ab17c 1 Other Other +a33fb5dd-eacd-4cb7-8c0b-9cada6dad973 1 Other Other +a33fc77b-2416-4ca3-8ef9-b260665ffb9f 1 Other Other +a33fd0c3-68b9-44ad-a7da-d63428e23c7b 1 Other Other +a33fe7b0-4933-11e8-88ed-fa163e8624cc 257f6774-64eb-11e7-954b-fa163e4dd901 Other Other +a33ff0bd-b2cd-4186-a62e-ce78475161a0 1 Other Other +a3400bed-92eb-466b-b71f-c101d8aedb38 1 Other Other +a34017fe-5bfc-409d-85cc-34d7c283034e 1 Other Other +a3401a64-868f-4ee9-9516-8e616c5f4506 1 Other Other +a34069ec-96fc-44fd-a9d9-4d5382962fd8 1 Other Other +a34077a2-72d3-4636-8fce-60e569a7240c 1 Other Other +a34081a1-1e97-45be-8636-accf5d57683f 1 Other Other +a340ae70-9ea0-44de-8c55-6a5c17703fc8 1 Other Other +a340b321-a781-493c-8da3-8a9b03b1fe01 1 Other Other +a340c748-59ba-4b3b-adfc-85e3a083d06d 1 Other Other +a340f559-a89a-4af2-8638-276228eddffd 1 Other Other +a3412261-c68f-413b-9ef3-59f6d00cb6cb 1 Other Other +a34146a1-cef0-4e15-a845-f4fd0d6719c2 1 Other Other +a341569c-91ed-49f0-b19b-e7cec9421799 1 Other Other +a3416345-1a73-4601-8d64-7ab33077d141 1 Other Other +a3416d3e-df3e-4e0e-a372-a3137e92f19c 1 Other Other +a3420978-2ed0-43f0-8df4-ecdd0c5542a1 1 Other Other +a34259fd-d913-490e-85ef-4de83f82394b 1 Other Other +a342831f-f944-4365-bda3-dd4fd3c92769 1 Other Other +a34286e3-2d54-4e21-bb68-8d24e082677f 1 Other Other +a342b89d-29a0-439e-8812-73bb2227fbd8 1 Other Other +a342e1f3-1ab6-4e09-b923-98958f1c4f80 1 \N Other +a3430550-f465-4483-b437-cbf51b1aa9a2 1 Other Other +a3431e10-09e7-46c8-84f8-b2d5759f1ce9 1 Other Other +a343a4a6-1fb9-4b70-9695-4f69735ec8fd 1 Other Other +a343a778-0f71-4425-8351-6250551273c5 1 Other Other +a343e4fd-432f-435e-96bc-7e94806949d0 1 Other Other +a343e611-e66e-45d8-bdec-cf943bdb9a42 1 Other Other +a344036d-bbe2-4c75-99a1-1df0757617b7 1 Other Other +a3441353-5a91-4dbb-8778-9564ccc1ef78 1 Other Other +a3449800-b8cb-4f3e-84f1-a989283c44d1 1 Other Other +a344a133-4318-4175-adf6-413fd231bf85 1 \N Other +a344ce22-a040-4acf-8b0b-d484af4cac47 1 Other Other +a3452297-816c-4fc0-8a9e-5b88fd4b7268 1 Other Other +a3457750-c635-4acc-9803-07e5061e1cdc 1 Other Other +a34589d9-0ad9-4957-ba53-1b7937839b37 1 Other Other +a345aa20-7e3d-41a3-b092-83a2d490c44c 1 Other Other +a345f430-d1bc-43ad-8718-6f1e0551f6ae 1 Other Other +a346003e-3737-417c-a456-1c018b1fd49d 1 Other Other +a346981f-38aa-40bd-be5e-6488d73b1a0f 1 Other Other +a346a97d-969f-42eb-a3a5-800565e1658c 1 Other Other +a346ab45-700a-4404-9dd3-07c581f9c441 1 Other Other +a346cdc3-ae6c-4ac2-9426-d5c7e16ad27d 1 Other Other +a346cdf8-3f1d-4798-ba5c-b6cd2476a5b4 1 Other Other +a3471a0a-fff8-4177-a83e-b326130dd703 1 James Other +a3472701-a1c1-468a-9347-b5f71ae235d6 1 Other Other +a3473968-2f06-4574-85ca-ba31d69e3a65 1 Other Other +a3477814-50de-4722-8696-8fd67ad84e48 1 Other Other +a347d5df-a22a-444d-8fab-6103ce830edf 1 Other Other +a347e4e6-3e1d-487e-b836-2dc95b01b26f 1 Other Other +a348493c-a946-4118-8a35-b364cb9676ac 1 Other Other +a34861fd-cb31-4012-80f5-db1678556c76 1 Other Other +a348943c-f5cc-406b-8f6e-75b804ab52a4 1 Other Other +a348baf0-373c-41cf-8c4b-818b09ab4a07 1 Other Other +a348ec0e-8c58-48b7-8a44-6e38b7784167 1 Other Other +a348f253-4157-40b2-bcea-267ebc99318f 1 Other Other +a349079e-b240-4fa3-ad44-47f3f42f10dd 1 Other Other +a349302a-8af3-4abe-b21a-98bf59e5b6bd 1 Other Other +a349394b-1874-4572-a6a4-e73a636b0731 1 Other Other +a3493f28-5e0e-4dab-9dd3-ba519250b8ea 1 Other Other +a34947f6-aebe-4c7a-bda2-07c9b6a23673 1 Other Other +a3497c19-a097-4c82-8988-f534a6ccfe86 1 Other Other +a3498077-77d2-4ae1-b3a0-2e40b16179bd 1 Other Other +a3498684-aef6-4df4-bc9f-dbfa21b19205 1 Other Other +a3499f21-9e6b-43f6-bc32-a3f76829880d 1 Other Other +a349d022-fa71-404d-b756-646262338ed6 1 Other Other +a349d44f-a38b-4d51-9f99-8757ce662296 1 Other Other +a349f1dc-de12-4b96-95a8-16c28ae71841 1 Other Other +a34a7c50-4b05-4b85-bc3d-9308027a631a 1 Other Other +a34ace2d-d2c3-4a4a-8ff3-c3eacb32fc93 1 Other Other +a34ad75a-c59d-419e-858a-bccdf550991f 1 Other Other +a34b2c3e-c6d2-4709-956c-4cceb01806b0 1 Other Other +a34b8278-9e14-4bdb-928d-b11a44828da3 1 Other Other +a34bae99-9d43-483e-bed4-a6618c2ed1f4 1 Other Other +a34be271-a0ad-49f7-a1f6-8d3bf3e3ccde 1 Other Other +a34c0a54-a301-4cc6-87f5-3b01f90d1067 1 Other Other +a34c12e4-15b8-4fc1-a65f-233977573f58 1 Other Other +a34c1b4d-747f-425b-9364-8a842a671db5 1 Other Other +a34c74f8-2f28-4d27-9cdb-f52b44c36ab1 1 Other Other +a34c8383-3657-417b-a671-2f1ed17f2ef0 1 Other Other +a34c8526-2739-4ac6-b3b3-41a620740102 1 Other Other +a34cc3de-cd47-4bdc-ad9b-d19aa50c00b9 1 Other Other +a34d0d59-fa62-4e44-ba79-f6fca2d99a51 1 Other Other +a34d162c-d946-4ac2-ac2b-10cb822911d6 1 Other Other +a34d2fc0-af61-4102-a63f-c35e58032832 1 Other Other +a34d460f-a330-430a-887b-5ff1ae47f6a3 1 Other Other +a34d911d-3121-4323-a7df-4db728290e25 1 Other Other +a34db38e-0b0c-4152-bd39-9eb1f35ded13 1 Other Other +a34dbeb9-1d32-49c0-884e-dd425c4f24a1 1 Other Other +a34e3dd3-f0d7-4c68-aaf9-2388ebdf7477 1 Other Other +a34e6a8c-3a56-4a30-8737-50e8b762034b 1 Other Other +a34e6e00-e0e9-45a8-96c6-943d1593f515 1 Other Other +a34ea38c-3d77-4a65-8507-6d38bfead0cf 1 \N Other +a34eab96-5faa-49e8-8c9c-f7f0ff387d35 1 Other Other +a34eb2e8-1c09-4400-9c30-3a7b06a2a185 1 Other Other +a34f30a7-1847-4cee-ba70-ec00776612f3 1 Other Other +a34f63c0-19c7-4c46-abe7-f57445be6a15 1 Other Other +a34f6f0f-646a-4431-8b82-2c75a9c999df 1 Other Other +a34fa4bf-f1f3-4d0d-b4d7-4acaede312c1 1 Other Other +a34faf94-a329-4c70-9907-392142f9b55b 1 Other Other +a34fb7f3-4961-44e5-bda1-6b09d5e42039 1 Other Other +a34fe521-b871-4883-bb40-9ad3689a14dc 1 Other Other +a350101a-882e-43a1-bdf1-22eac96505e2 1 Other Other +a35025ff-c0de-483c-b551-28a720831fed 1 Other Other +a350390d-7daf-44a7-9e05-c558c028cef2 1 Other Other +a35085af-ea7a-4fe3-b0aa-5fe31ed6a843 1 Other Other +a350b32d-72af-43e7-a5ae-5e24094b5e02 1 Other Other +a350ba9a-e88c-4615-a854-7cfdd0f82e4d 1 Other Other +a350dce7-ec17-4d78-99a5-b06fed62489b 1 Other Other +a3511ebf-4685-4dcb-9578-894fb731433c 1 \N Other +a35128c5-efb8-4898-b169-00787fad8634 1 Other Other +a3512e1a-9807-49ea-86dd-d830f62ae8e2 1 Other Other +a3514094-805e-4f5b-a683-100062b57e20 1 Other Other +a3518ed5-fc50-4b19-8e61-ee515528b6ea 1 Other Other +a35194d2-54bd-41d1-b8e1-c1b337a07d40 1 Other Other +a351b8fa-0185-4339-80f7-f238884e313a 1 Other Other +a351cb5c-2e48-4247-8d8a-c6a16091f8f3 1 Other Other +a351f34f-8bc3-4dff-8a49-56d8fac59111 1 Other Other +a3526875-5004-4ff4-9b2a-c6ee281a01be 1 Other Other +a3527bf6-243e-4032-b72e-a73000f3f5c4 1 Other Other +a352d4fe-1466-4273-a870-48975119fc2d 1 Other Other +a3535f9c-6638-4c4c-b04f-72405a1dca2c 1 Other Other +a3537a71-4ecc-4a6c-bc0e-5ac36f2a4aa9 1 Other Other +a35384ec-b6f0-48de-942d-f39bd450317c 1 Other Other +a353a36a-41d3-4b34-aa36-190d45977d09 1 Other Other +a3540730-7179-4d63-822e-37f1335f08ee 1 Other Other +a3542653-23b7-4c5b-95d5-665012f59e43 1 Other Other +a3542ed0-943a-4cae-944d-0f6ba4972549 1 Other Other +a3543c2c-6907-4218-84f0-1c01dbb2000d 1 \N Other +a354417a-e06c-4bef-8e80-2de663556c88 1 \N Other +a35449a9-2901-4707-83b6-fbce48a1e01f 1 Other Other +a354851a-deb4-4b74-bb94-d04e49555e2f 1 Other Other +a3548c9a-d081-4c48-af4a-fee44d662b62 1 Other Other +a354ca46-e03f-4341-ae3c-fd71e7fdfebd 1 Other Other +a354dc4b-7205-4c5e-b86b-e579513dc8a3 1 Other Other +a354e9b6-8c9e-4819-9547-3dc4832870c4 1 Other Other +a3555cf0-2977-40a8-a1da-73b3712d5614 1 Other Other +a35561c6-fc62-42fe-b52b-c29916b08afb 1 Other Other +a355ee3c-ba73-4010-8f78-93673933944d 1 Other Other +a356c51b-8f29-40d2-ad95-422fd9ac71a8 1 Other Other +a356d892-b69f-4340-928e-b475e750fcbb 1 Other Other +a356e1e6-7dae-4d85-ba97-68175b5cc176 1 Other Other +a356ee10-8a27-4145-8761-a4c67586c492 1 Other Other +a357324a-477a-46f6-ab51-43af5a4a5ef4 1 \N Other +a35740e4-3445-4228-893a-c751883d0953 1 Other Other +a3577718-1295-48fa-b144-fb8ef8d32882 1 Other Other +a3578396-73e9-4f3b-aa69-876a3d2645c5 1 Other Other +a357ea8a-5560-4085-b8df-da47e6360378 1 Other Other +a357ed5b-3c5e-4097-b443-16fe4c33aa8d 1 Other Other +a3586538-061e-45a7-99e4-ec3267e86111 1 Other Other +a3588835-a489-4036-9428-5837226a5eb6 1 Other Other +a358905e-e661-4174-a911-268af892693d 1 \N Other +a358b99a-f6ef-4f11-b7be-87edd193002a 1 Other Other +a35904ea-bcf2-4534-b8b8-37eab960d669 1 Other Other +a359124c-039a-419a-a277-844970fe1af0 1 \N Other +a3592178-5625-4fb4-9971-abb824ec6571 1 Other Other +a359225b-ebb0-4224-bfdf-7360f3dd9644 1 Other Other +a35947e8-84b9-458a-aba4-3db445b269e4 1 Other Other +a35948c1-6c97-4205-b597-7ae5dd5a894f 1 Other Other +a359499d-3e04-4ed3-8eab-afcb075b7493 1 Other Other +a3594ab0-2017-4a0b-a125-bd80ea22d53f 1 Other Other +a3595cce-4244-4db7-bf7c-ac04c0e7e403 1 Other Other +a3596f28-8b0d-419e-8514-fe90c0f48b41 1 Other Other +a3597647-0984-4095-96d6-0600e4455da4 1 Other Other +a359a46a-aba1-4299-87fa-030cd70df4ed 1 Other Other +a359b410-14f7-414b-a014-4f11bfd57259 1 Other Other +a359e2ad-3c56-4f3d-a159-e71feb925e7d 1 Other Other +a359e9b9-5285-4d7d-b3e5-8a5c6f5f0660 1 Other Other +a35a095d-8de3-4f07-955f-941c4be9cc21 1 Other Other +a35a14cb-908f-4e22-a23f-873b09e31419 1 Other Other +a35a247c-2994-4fbf-a2b5-df18d1170d59 1 Other Other +a35a3977-32f3-46f8-b9a2-dbca6265a26e 1 James Other +a35a6881-d811-4503-b1db-dc0b98f8430d 1 Other Other +a35a8a80-97bb-42a8-99ae-da7abc08bf85 1 Other Other +a35afbfe-9123-49a8-89d1-1074e6cce241 1 Other Other +a35b32c5-8622-473c-83e3-515835ad379a 1 \N Other +a35b40b6-342d-4a1e-92d8-51b38ade825b 1 Other Other +a35b4475-a401-40be-9575-e8efd2a1d9dc 1 Other Other +a35b6756-908d-4d9e-b485-7644bb605d10 1 Other Other +a35b8ba9-2f46-4827-9552-dace049a274e 1 Other Other +a35b8fb5-5cd6-44fc-b1d4-f733acd6ff5f 1 Other Other +a35ba6bb-a958-466b-8982-9af8ea7882a4 1 Other Other +a35bad52-db92-4ee9-8e04-1fc476a7d088 1 Other Other +a35bbcd4-6be5-4811-bcf7-741b380cdbf0 1 Other Other +a35bce32-2087-4ca9-9a9f-0fe34ba57f95 1 Other Other +a35bf061-7c94-422e-b436-2f4360c5aea4 1 \N Other +a35c484d-a87d-47dd-8ef7-88a9a5ad02cb 1 Other Other +a35c4a9e-4108-4051-9484-20681c097376 1 Other Other +a35c5424-c2ea-49a1-99d9-80ebc20fb509 1 \N Other +a35c5573-ac01-43e1-b823-87715486ef52 1 Other Other +a35c5606-6681-44f7-931e-4d54d9fc9df6 1 Other Other +a35c70c0-6674-40cd-a315-4ff19ad80ab2 1 Other Other +a35cbdc7-84ca-43d5-85ae-162497101a14 1 Other Other +a35ccd26-f572-4c4d-90a9-2c09fe58769e 1 Other Other +a35cd17a-363b-451d-86b4-59b840d70452 1 Other Other +a35cecbd-26b0-4fe5-bf88-c514e87dba7c 1 Other Other +a35d03b0-228c-4077-b1e5-7c8d625af3bf 1 Other Other +a35d206c-3ec0-45c3-b167-5f5f538d2be4 1 Other Other +a35d5bdd-0a7c-4fcd-aaf6-accc584cf977 1 Other Other +a35d638d-49ba-4d31-b14c-97e8e747997f 1 Other Other +a35d78ba-0bf2-425e-b6a2-5e9469f95186 1 Other Other +a35dda24-e26d-4228-a9c8-d1f18ffd3d76 1 Other Other +a35e0418-f6de-4bd9-b59a-adf64c948a72 1 Other Other +a35e96b5-6a35-43ff-97e1-d8e70932f5c8 1 Other Other +a35ea211-d08b-4228-9bb2-4ae5c026ab94 1 Other Other +a35eb764-3eb4-4c93-9ed7-ed6fff89cc71 1 Other Other +a35ef726-adbf-4609-b805-3b1c9f653a34 1 Other Other +a35efa5d-4c56-46f8-a317-1790d29bb923 1 Other Other +a35fe7f4-c0b5-4175-9cae-d689c1a777c2 1 Other Other +a3603083-1568-4103-af2c-343933d65f30 1 Other Other +a3605c58-cd04-4b45-bac3-effaa033890f 1 Other Other +a3608124-ec8f-4e85-96c9-4f46fac643b2 1 Other Other +a360a80f-8012-4786-b409-1392e9946630 1 Other Other +a360b57d-c6ad-444c-a2fc-83b007e158a4 1 Other Other +a360b8df-1810-4ddd-9e69-335a5fe3172d 1 Other Other +a360bb80-40e2-4b83-be0a-30898000fb5a 1 Other Other +a360d9cf-a679-4f6c-86b1-e0a7651c5b1d 1 Other Other +a3613120-db85-4bda-8ad3-b14b1f5d84d7 1 Other Other +a36189db-37d0-4315-bbc3-c8b83bd25ecf 1 Other Other +a361963d-4d84-4e30-9b3a-2928860c450b 1 Other Other +a3619d0a-381f-4485-a8e6-59659caf3a2c 1 Other Other +a361cce2-41ee-4397-a148-4d3801f8a334 1 Other Other +a362043d-8eb1-4e10-9c20-6220bf7a3e09 1 Other Other +a3627bba-8b7b-467b-be88-8d573f1d3474 1 Other Other +a362c97e-d8ec-4b1e-a3c1-e918ad87f8e1 1 Other Other +a363a860-f333-4fe4-a7c1-df2e7d021285 1 Other Other +a363bd00-6456-4a21-bfb2-4c36f779b6bd 1 Other Other +a36410c9-ab24-407e-aa69-4cc454b7cdbf 1 Other Other +a364602a-b9b3-41ab-82cb-fa086e3f582c 1 Other Other +a364744e-2155-40d3-b51e-5a4aa3967acd 1 Other Other +a364799d-ceda-46d7-901e-e5d6bdbb155c 1 Other Other +a36492ec-4772-43a1-b0ad-aa332a8b44f3 1 Other Other +a364bcf5-4b04-454b-80c6-b41336da6a3d 1 Other Other +a364fa2c-478c-4cdc-b26b-bf77e188f324 1 Other Other +a3655629-9c01-4510-b3bf-90290e8ab7e9 1 Other Other +a365973a-b693-4be8-9886-3b54858f09ce 1 Other Other +a365aafb-a59e-4b64-bd29-489ec8b4c51b 1 Other Other +a3660305-0ef8-4daa-885a-4fcad41f3ee0 1 Other Other +a366090c-924c-49a4-8573-466ce725a3c7 1 Other Other +a36616ec-d40b-4454-b881-da2fdc50f3a9 1 Other Other +a3661dc2-cf49-42eb-bddc-d38326f24576 1 Other Other +a3664512-5f9b-4598-a47f-4a08119575c4 1 Other Other +a3666a90-8217-4134-a0ae-7375072dcdb5 1 Other Other +a366dfb9-cbf8-4b52-8fab-323c7d412137 1 Other Other +a3670109-a601-4127-ba91-a46f5ad61aa0 1 Other Other +a3671332-c0e5-4061-8313-0d03b12b7f41 1 Other Other +a36715d7-fc1c-4af5-9382-f8045579d2c6 1 Other Other +a367cee8-7fec-46ca-8a44-e8d89b649f78 1 Other Other +a3680797-bae1-42e1-8b60-f1aba136030f 1 Other Other +a3680a39-74cc-41ec-adac-37142516fb82 1 Other Other +a368526a-50e1-4f74-9486-7cb451ec539b 1 Other Other +a36874e9-3aa9-4971-8eb8-48482d1de9d9 1 Other Other +a3688681-8d9f-493f-9ab1-e2330f106075 1 Other Other +a368c2a7-eaa0-4b15-8c76-bc11eec06dc8 1 Other Other +a3690437-aa12-4fcd-a4c2-834870f66d57 1 Other Other +a36930a1-c32a-4b5d-b33c-51b9bc0f0499 1 Other Other +a3694b29-b845-4316-ba75-66b0c1567c86 1 Other Other +a3694b31-4dff-45ec-9360-a1acaefd3a62 1 Other Other +a369600d-a352-4760-9469-c0f3d7b6772a 1 Other Other +a369a1e7-b928-4aba-93d1-03984bc07862 1 Other Other +a369a519-1371-4eca-bfc2-bf4d9fec684d 1 Other Other +a369bb88-7323-469d-9559-7130023d47b1 1 Other Other +a369d532-0cf3-46d0-b47f-da2b1d6280d6 1 Other Other +a369d921-056d-422e-9514-4afa96614b23 1 Other Other +a369e284-5842-4b97-9469-d9488d91b081 1 Other Other +a369e5b3-5165-4b84-ad03-39a7ce421c07 1 Other Other +a36a68b5-7984-4469-9054-001a3846daac 1 Other Other +a36a72c3-83f8-4a65-ad6c-ba7b0eb0aafa 1 Other Other +a36aba60-4e64-4e53-8cb5-ecea429214ee 1 \N Other +a36ac32f-a8ec-4bab-bc52-3c18f33d6085 1 Other Other +a36af027-e030-4c46-9540-ea50d9f045ff 1 Other Other +a36b06f2-75b9-4daf-80b2-b859d31dfa5b 1 Other Other +a36b14df-ae0f-46ed-9f59-bea6c149ba54 1 Other Other +a36b91cc-54a5-40a5-9e0a-0844fb842483 1 Other Other +a36ba377-666c-42bd-bac5-3a19acd4f035 1 Other Other +a36bbb6a-565e-4dfa-8dee-5bfe25cbad9d 1 Other Other +a36bc5e3-f488-4435-b5d8-0183e636c47d 1 Other Other +a36bfc14-73b1-4606-871b-bc66ca80f968 1 Other Other +a36bffcd-22a3-402a-a6a2-da8f9c63e2b5 1 Other Other +a36c0f16-16cd-4282-b74e-ea26e3dd394b 1 Other Other +a36c294e-d7ec-458b-b1c1-747d1aead4b1 1 Other Other +a36c5a59-7207-456d-af5a-b1afe9a39c6a 1 Other Other +a36ca7c7-aeaf-453c-bc2b-34d221464c10 1 Other Other +a36cedf4-7b76-4602-b040-d0be087370d2 1 Other Other +a36cfe18-6b18-46d4-9278-230d0aa7e9a5 1 Other Other +a36d4b6c-a446-4fd8-929b-1e669e500ab9 1 Other Other +a36d6676-c7ed-4a6e-82df-8714e8f9e16a 1 Other Other +a36d9228-8464-4824-aec6-4264b10ba920 1 Other Other +a36dfd3d-18e0-4e6e-8e07-f8d8952ea28a 1 Other Other +a36e3de0-af65-4bd3-9fb1-0e67a022b393 1 Other Other +a36e9166-6838-4ed0-b896-33db09c5b308 1 Other Other +a36ea819-d236-4362-b95f-7016d59844d8 1 Other Other +a36ece48-ae7b-4c8c-9fc3-fa20f20754ef 1 Other Other +a36efd75-c65d-4351-a8e7-47f6901561c5 1 Other Other +a36f16ad-e09c-4ea6-b940-50f48883b59f 1 Other Other +a36f8372-eca1-4df1-8b08-0aa40bef3056 1 Other Other +a36fac29-dee9-426b-9848-6635c0f164de 1 Other Other +a36fd777-7cdf-464a-96f0-593f87dd94ca 1 Other Other +a36fdc83-8f64-4cac-8a62-ce4ee30e96dd 1 Other Other +a3700bba-fe43-4436-b4b9-c92757b65fe5 1 Other Other +a3709ab3-5590-4955-85c3-2d37fbf3cb18 1 Other Other +a370a513-3ba9-4e4a-9bbc-5d7e43d2bdcc 1 Other Other +a370ac7c-e765-4fd3-8e3f-8e5be1e6162e 1 Other Other +a371438d-a7bc-4f9a-abc3-ae4f78fba9f4 1 Other Other +a3715b04-5292-42b2-9dc9-23bcd19c1a27 1 Other Other +a371627e-ed7b-4929-a93d-012657527adb 1 \N Other +a3718592-bca4-4f59-a222-8e06b0954cea 1 Other Other +a37193f3-5fef-4c9e-b9ad-57a474d67bf5 1 Other Other +a371959c-30a0-4c9b-9892-63df60b75cc3 1 Other Other +a371a26f-a47b-4d3a-80b5-360cfa6b5392 1 Other Other +a371ba59-4822-4946-be33-c02ba26ecfb5 1 James Other +a371ff2b-224c-4502-b308-05619a758202 1 Other Other +a37223d9-5b3c-4719-ac6d-7b2351e4d9aa 1 \N Other +a372a2bf-0b4b-4f93-8149-f8ba5d36f048 1 Other Other +a372bcb5-3444-4935-8907-662598f64d5d 1 Other Other +a3738943-4d94-4397-b956-71a7c4da8ce7 1 Other Other +a373a86d-b254-4ff4-90ee-5148855d38a0 1 Other Other +a373eb6b-2f2e-446f-915e-5ddb2524ac9f 1 Other Other +a373ed5a-2bbb-476b-a3fb-1f4dfa3aa766 1 \N Other +a3742274-125a-4451-ba09-6f980b33fb7d 1 Other Other +a3745e8d-41d0-4167-8023-3fb5d5597fc9 1 Other Other +a3747c9d-8ce4-4bed-9429-6eb0cf126d4a 1 Other Other +a374aab4-aab3-4418-8458-889f49799282 1 Other Other +a374b93f-f1b0-44ce-8817-f0f123dc9b38 1 Other Other +a374c3be-7af0-4c81-8265-2224809264a0 1 Other Other +a37508ff-8a61-4b3a-839a-7b5755909210 1 Other Other +a3751131-fb31-4bf8-99d5-64e7a3893230 1 Other Other +a3751c9a-3e42-4b17-96a3-2bd2d3dfb79d 1 \N Other +a3759380-24a3-41b6-9a14-9a475aa53191 1 Other Other +a375bd2c-5dd7-40cd-a5cb-ec7d96a69664 1 Other Other +a375e79b-8407-44c0-97ea-5ea2e463accb 1 Other Other +a375ea6b-4a19-46ad-b386-0008b3083ec1 1 Other Other +a375ffd4-b624-42a3-9254-9a474bf36d3d 1 Other Other +a3761884-8461-4029-a2d3-6ba8e0ad52ab 1 Other Other +a3761fc3-8389-4e8d-8e72-673d2f9b2665 1 Other Other +a3765764-5d69-47ec-9786-1cf0f2a59a19 1 \N Other +a3766162-6ae0-4441-90b9-ca7873413aff 1 Other Other +a3769a77-1b74-4c16-8d80-e9f999fd8a5e 1 Other Other +a376b44c-6e39-4f15-8474-af561b2db286 1 Other Other +a376d48b-97ed-4505-97bc-0ef8d179c4e5 1 James Other +a376f82c-9279-4771-9b42-d1cb3f4f76d8 1 Other Other +a376fe34-838c-4b37-8b80-1ee94c3e5118 1 Other Other +a3771f72-9f50-4b1c-9f94-c5ab0eec9960 1 James Other +a3772b30-dbba-4c4f-a24a-b4ad672b5cf6 1 Other Other +a37737a9-6fa3-4047-9694-1371d6c382de 1 Other Other +a3773d14-f26e-47c5-86b1-b99bae0a5e4e 1 \N Other +a3774a0e-bdb9-4449-9b4e-08b99ab89dc4 1 Other Other +a3774c3c-011a-4f50-bef5-7be5b9df343d 1 Other Other +a3777e98-99f3-43ce-8d6f-23242412ca12 1 Other Other +a377a3ee-c5cc-4156-973f-c72348f375dc 1 Other Other +a377dce4-434c-47d3-8cfd-83f3e30789b3 1 \N Other +a377e7f3-bc3a-4674-bb76-976706d2c70b 1 Other Other +a3780542-56fd-40cc-8a32-abbe9f3bc838 1 Other Other +a378458b-79fb-4c1a-a462-7e40d9153dbf 1 Other Other +a37888a2-0072-45c5-8474-118cf2fa9356 1 Other Other +a3788b57-e2e8-4a9c-b03a-e937c92e863c 1 Other Other +a378e375-cc83-489b-bb76-0a8108146a71 1 Other Other +a379076b-69a7-49b4-aaf0-d608c0372cc5 1 \N Other +a379460e-cd9f-424a-9326-8b3f55130524 1 Other Other +a37972b0-a98c-425f-84d8-04df06d68f29 1 Other Other +a379b5f2-813d-47f2-8a35-83313a4a1b14 1 Other Other +a379fcf3-c46b-4c44-994f-77577c0f29f9 1 Other Other +a37a0063-f18b-4931-91a3-b177aea456ef 1 Other Other +a37a088f-9f02-4537-8f58-53bdcfe71b62 1 Other Other +a37a105a-271c-41cb-bbc2-f473eb66fe80 1 Other Other +a37a44b5-60ff-4a4a-9168-e42fa827444a 1 Other Other +a37a5aaf-635f-476f-9a5c-be449107a573 1 Other Other +a37a758b-8b04-4bf9-a0f4-a5d4d928f9d2 1 Other Other +a37b031f-5748-481a-b1f0-6d4f974bea60 1 Other Other +a37b3d76-3035-4400-89b0-6f6448bc2571 1 Other Other +a37b6bce-693e-4a7f-9797-3aabdc7b7634 1 \N Other +a37b708b-1c12-41d8-9dd2-b0c9828423d6 1 Other Other +a37b8202-20c5-4ea2-8015-4ea5549a43cd 1 Other Other +a37c8360-fe97-45f2-bdc8-da9a99306f5d 1 Other Other +a37c9706-7a90-4760-8680-55b9cfeea16e 1 Other Other +a37cadc2-8930-4eef-a0e0-b77d819686fa 1 Other Other +a37d5152-e7e8-4920-bb89-6f915e24b8c8 1 Other Other +a37de359-7d3f-4365-ada3-f28f01b2c4d6 1 Other Other +a37de9ba-1e6d-4773-bcac-3624f1c3433e 1 Other Other +a37e3397-4283-48a9-87d2-b18aa54b2a5b 1 Other Other +a37eb01d-bde4-4a91-81ad-084cb02e7a32 1 Other Other +a37ecc86-5704-4fe1-b5a6-2a2e0a1e7b9a 1 Other Other +a37ed24d-36cf-4af4-96c5-80a70aef3c18 1 Other Other +a37efcb9-2433-49f4-b1fd-c478672ae97e 1 Other Other +a37f5da0-a39d-4bfa-9590-0e46d5da4958 1 Other Other +a37f925f-ee48-4cd2-9902-8fdb8c78e179 1 Other Other +a37fa354-7577-4fa5-b650-33d3b15650af 1 Other Other +a37fef08-1585-4a71-bf2c-dad693864583 1 Other Other +a380e2f1-b4d4-45ca-afde-30afd19c1934 1 Other Other +a38139da-9acd-43dc-964f-1839c863bb76 1 Other Other +a3814357-a476-448f-8b6b-1527eb3bfa4b 1 Other Other +a3816645-bdca-4e49-96e3-92861308bfcd 1 Other Other +a381772a-e140-44ff-8e2c-2b1dfa665da3 1 Other Other +a3819b43-f5c3-485a-8344-171592ca3486 1 Other Other +a381a555-9f2e-4be4-81f7-f39567166563 1 Other Other +a382988b-70b5-48cf-bc5b-7b2b299cda6b 1 Other Other +a382a4ef-289e-4d48-a720-dbed38fcb9a0 1 \N Other +a382ce2e-25c3-41de-b5a9-ba10c3d71323 1 Other Other +a382fae6-d2c9-44a7-8bf2-32249cc05a87 1 Other Other +a3833288-d2b2-4c9c-b684-c4c0742fd5a2 1 Other Other +a3836a0a-7f4b-4551-8f87-39e6eb54008d 1 Other Other +a383e8af-0709-439c-b404-ec9b48f8a6b4 1 Other Other +a3841988-fc57-470d-aa6b-c8cc745ec629 1 Other Other +a38431f5-5620-47a2-bbd6-72dc13167bbb 1 Other Other +a384794b-8b3c-4004-a5f4-0a6ff7c07007 1 Other Other +a3847fea-c713-439e-810d-033418bc8268 1 Other Other +a384848a-acf2-4b28-8dba-4e6caba19c8e 1 \N Other +a3849264-2a2e-4123-b50c-90a192814522 1 Other Other +a384f6ad-a159-49fb-b4bd-d79f43676b04 1 Other Other +a3853892-d6fc-468a-a1a4-42248f653e85 1 Other Other +a38548ed-7d63-4eb9-9f07-7b94c35d55ea 1 Other Other +a3855bec-44d3-4a64-a10f-207b00ae782c 1 Other Other +a385b608-b8cd-490c-bd3e-4b700abf68c3 1 \N Other +a386169f-aaf6-4b03-9789-6b1dad837d76 1 Other Other +a3865c4e-def4-4956-a01e-94b6664a54e3 1 Other Other +a38692b5-32c1-49fc-9c45-0b96a72179e8 1 Other Other +a386ed11-50b0-4f68-b988-2842c8638cd8 1 Other Other +a386f204-4d12-4e80-99ec-dbd580d7f800 1 Other Other +a386ff9f-5324-4a64-bb3e-567c796db6b5 1 Other Other +a3873ead-7ecc-4c3a-97f2-a86e9a7c6671 1 Other Other +a3874251-bdd6-4c65-8d84-6bd5078bde23 1 Other Other +a38755ba-a3b9-4666-a95e-45bbfeeb7e83 1 Other Other +a387bf23-178a-4318-ad28-92e1859d10d2 1 Other Other +a387d8b8-9adb-497b-af34-6a7bb8f89097 1 Other Other +a38809be-2630-41da-8e82-e6e374335dd7 1 Other Other +a388519f-f777-4d1b-a88b-0557fc8fc7d4 1 \N Other +a388fa9a-6fbf-49f2-8186-82a5a525462c 1 Other Other +a38900d1-659a-4d45-a442-361833b97d05 1 Other Other +a38924ee-ef62-4f72-9d75-8563627982a1 1 Other Other +a3895c67-6837-4813-8d2b-581d86828fb3 1 Other Other +a3897320-0b27-4a8d-9c64-dbe39d7d84b7 1 Other Other +a389aab2-1953-4f29-b4c4-7b77d4a1b6c4 1 Other Other +a389b914-ad3a-4dec-9cf2-8452de2f1135 1 Other Other +a38a341b-2e03-48d5-9d56-c3e55b7b9f39 1 Other Other +a38a3cea-dda4-486e-a4b3-b1e9b25afa1d 1 Other Other +a38a4478-6d53-432b-80b5-ec16a74f27c8 1 Other Other +a38a7672-de10-4cb2-b5cc-f28fb715f15e 1 Other Other +a38a7f0e-1d54-49b7-bff0-27d5128a3d44 1 Other Other +a38a8bb7-ba10-448e-b2fb-dbe2b89c4766 1 Other Other +a38abcf1-bd1b-41cc-b7d1-589343a1ee51 1 Other Other +a38ae0f4-1bcc-4179-88f6-a321fd982bed 1 Other Other +a38b0f20-e6d7-4195-b9d1-650a1b0d5ce4 1 Other Other +a38b55f0-9526-4dd5-8769-c9c980d85e8f 1 James Other +a38b73f7-2ec0-490b-bbe3-dc7de76cbc2e 1 Other Other +a38bc97d-03eb-422a-9b91-6fbdfd7beb8d 1 Other Other +a38bff01-8030-4327-b480-b4f208ebd692 1 Other Other +a38c388a-1582-4723-a6aa-a61fd3f38c49 1 Other Other +a38c8f3c-5117-4d80-8cb8-2e7e5f0b78e0 1 Other Other +a38ca393-d011-4807-861a-dc48c411d163 1 Other Other +a38d005f-4634-43fc-b692-bb558c766c3e 1 Other Other +a38d3107-aa3b-4138-bb98-8175033361da 1 Other Other +a38dc5c6-e37d-4a1c-80a0-b0eb598ea293 1 Other Other +a38dd543-d187-46a5-a517-7fed4257c0b4 1 \N Other +a38decad-c80a-44d1-9da4-e0cfe14b9f32 1 Other Other +a38e173e-a9b8-49bf-897f-6c728c0f24a3 1 Other Other +a38e5b92-2989-456b-8f5a-e95c1a3416ed 1 Other Other +a38e7a85-24dd-4b83-ab3f-4c9aba15a2db 1 Other Other +a38f11c9-1672-4dff-aef7-b3d67a877f2d 1 Other Other +a38f35f6-362b-4f2a-8c01-f45b4f8f89c2 1 Other Other +a38f3679-d252-419c-9c84-78ada5a8ade0 1 James Other +a38f6ea5-a25d-435c-b247-5f02e2a1a6ad 1 Other Other +a38f9d29-363b-44b8-b256-a059818e6811 1 Other Other +a38fb65c-04dc-49fa-846d-163a9d8945fa 1 Other Other +a38fefaf-673e-43ae-b9e2-b3b7e2f26d52 1 Other Other +a38ffd7d-bceb-480a-908e-784065e442ab 1 Other Other +a39026cd-50fa-4daa-a4ad-6026d1d1021d 1 Other Other +a3905aec-ac8c-4360-a336-60cf55efee3f 1 Other Other +a39081f2-3461-4eba-bde0-da6bd9293688 1 Other Other +a3908c0b-fa06-4035-bd01-24eb06362c4c 1 Other Other +a3908ebe-9e38-4476-b659-a763ded365e8 1 \N Other +a390cc1f-deec-4be8-b49c-01153be870b3 1 Other Other +a3910102-2f41-4567-b456-4b5b65ed8fad 1 Other Other +a39130f7-6d37-430e-b3ec-8c4af3eaa6ba 1 Other Other +a391b67f-6f0e-419b-9c75-2fd4ea39b9bd 1 Other Other +a3920152-1726-4b1b-a749-6195a37c6d91 1 Other Other +a3920cd6-3a95-4380-98ef-6835c19dcb5d 1 Other Other +a39261c0-e106-4014-9ac4-375df55b5f45 1 Other Other +a3927fe7-b979-4d28-bbf2-64138c52439f 1 Other Other +a3929fc4-dab7-487f-b253-f52ad799155a 1 Other Other +a392aa59-99ca-4558-8852-1f1e07b3a593 1 \N Other +a392c7c7-dccf-4fa1-9065-0f12bd2053be 1 Other Other +a392c8dd-e534-429c-90d2-2b262d1c07aa 1 Other Other +a392c985-195e-4c7e-be51-9dc0119a1fe7 1 Other Other +a392dd09-df48-4132-93b1-284d866fdd2a 1 Other Other +a3933cff-079e-4e6f-985e-24d0befc9cce 1 Other Other +a3933d8a-fa02-4eb7-a38e-60b13ad183be 1 James Other +a3936e0f-959b-40c3-91a1-57de47b3ebe2 1 Other Other +a39399d6-6370-41ed-a59f-2d6897fbebc8 1 \N Other +a393b078-9c15-4d97-800a-0258a9755bc4 1 Other Other +a393b8e5-a757-4166-addc-02fa0fc394f4 1 Other Other +a393d964-1c9c-45e9-9d4e-c66107e4c01d 1 Other Other +a3940b7f-a679-4b7c-8012-9b0b601246d9 1 Other Other +a39425ee-6ddd-47b1-ac52-6f2ddf3a6460 1 Other Other +a3946a08-5278-450a-bb85-353c4010ce1a 1 Other Other +a3949a28-3e6c-4d39-b4c2-f9ec96f0b1a4 1 Other Other +a3949c41-8edb-4ceb-b587-c650d1b0c5e1 1 Other Other +a394d8a3-9421-49f0-9312-b6ef14fd8729 1 Other Other +a394fdd8-64f1-4e0a-9580-33d8ddfd3281 1 Other Other +a395066b-6694-44de-8744-c6fd6d87a093 1 Other Other +a3954db3-1409-4fc0-b83a-17a05cbfa56a 1 Other Other +a395af52-72e4-4b09-b43c-3ba1be50dd1e 1 Other Other +a395cb73-0b68-408d-b830-6b0bfbcb096b 1 Other Other +a395d582-8167-4b40-8f45-e52098fff80f 1 Other Other +a396478a-efb6-4796-a3d7-e5c0c3d061fe 1 Other Other +a39655b1-9588-4a6f-a50a-21c8558c83cf 1 Other Other +a39672a3-a235-4bbe-bfcd-bd20a8a9b973 1 Other Other +a396c2bc-210e-40c8-9026-034c36040d30 1 Other Other +a396ff8d-d74b-48e6-849f-1ffcf05be6ee 1 Other Other +a3976551-a5d6-4f66-b245-a64331a08a87 1 Other Other +a3979686-cd82-4aec-8ad1-924c24a7da44 1 Other Other +a397b3cb-9e18-444f-9379-d4e818a18723 1 Other Other +a397b4b7-4435-47ef-83a5-666cae76eddd 1 Other Other +a397dde6-8329-4b2e-a32d-5b8e9c72b3e2 1 Other Other +a397fdbb-8e9c-41f2-941d-0c691472a4dc 1 Other Other +a39803d2-7136-432f-9d46-da447de30f5d 1 Other Other +a39861e9-4b36-4981-8bc9-de0bc96b2393 1 Other Other +a398c2d3-f527-4a14-9206-5b5bd391244f 1 Other Other +a398d4a5-d463-4f53-a7a4-b9fde474e9a7 1 Other Other +a39915c6-525e-4687-a5bd-895ce8e019d7 1 Other Other +a39935de-502f-4fe9-b0e5-878c8e490359 1 Other Other +a3995242-5fa1-4950-8055-c5072691c734 1 Other Other +a399dcfc-62d0-4e18-8807-1466b24741c2 1 Other Other +a39a2b4a-8bc2-444c-8e1f-ea8ade23b480 1 Other Other +a39a3895-7339-454e-8827-9faa16becd68 1 Other Other +a39a781f-0d92-479e-9903-986f2566e422 1 Other Other +a39a7844-e297-4384-95a4-c1465f257070 1 Other Other +a39ac014-c54b-44c4-a2cd-76d93f151aed 1 Other Other +a39afd03-6ace-4ae8-b4fb-d233bac69572 1 Other Other +a39b046a-e13e-4108-8c67-c26ba93b7893 1 Other Other +a39b1d6b-82cf-40a6-84d9-bc68f74a3f01 1 Other Other +a39b7f3a-5742-427a-b7ad-4183c3918a79 1 Other Other +a39c1204-bf7c-4dea-bfac-0cfdfba177d2 1 Other Other +a39c587b-28d0-41aa-8a7e-4fba9e17abd9 1 Other Other +a39cb64b-0410-49b7-b01f-e109bc78e4fc 1 Other Other +a39d0455-6920-417f-b450-db286a7938f1 1 Other Other +a39d068f-4c3c-44ec-8c23-b3b04061c90a 1 Other Other +a39d1943-416a-4ba5-8806-f869b0ff1a96 1 Other Other +a39d1e7d-877b-44e3-8277-1535e56a3e3e 1 Other Other +a39d27e0-157b-4be5-8d3f-2939e76bae2b 1 Other Other +a39d58d2-9d37-4642-892b-d6f65be3b8f1 1 Other Other +a39d7fab-8ec0-42e1-8a19-aaa2541f49b5 1 Other Other +a39dc9d1-8b25-4e8a-95b4-f85956259cac 1 Other Other +a39e0aa0-74e1-4d9c-ae09-78cae8c644ba 1 Other Other +a39e3fdb-8bb4-4c0f-83ba-707401bcbf98 1 Other Other +a39e4752-cf6f-42db-9484-f7df7c336065 1 Other Other +a39e4efd-c255-4593-9049-3b038ec1c082 1 Other Other +a39e909a-7136-48d6-9668-175e3bd83cef 1 Other Other +a39f16bc-c02a-464b-a255-f9d433a6a744 1 Other Other +a39f21c5-9428-4669-a2e0-608177a1feef 1 Other Other +a39f358c-d812-4ae1-b64f-626a2c491d2b 1 Other Other +a39f373a-f8e9-4cf5-9249-ae05ed37c164 1 Other Other +a39f6a22-107d-4c2e-80ef-1af15eab5c96 1 Other Other +a39f7441-c8da-4446-87b4-d248fd0a3717 1 Other Other +a39f8433-89da-4626-bd4f-91fcd0b141c5 1 Other Other +a39f9afc-f88c-4438-ad82-02e9c7f0c093 1 Other Other +a39f9fc4-8aa3-42d6-b8ca-020357e75806 1 Other Other +a39fa503-114c-49ca-80e2-938d3857f1fe 1 Other Other +a39fbad1-7f57-4559-a933-e8abf43d4701 1 Other Other +a39fd818-5ad1-4d71-98ee-a6a9c6ab31c5 1 Other Other +a3a0086f-7039-431e-a039-fe88e5956d25 1 Other Other +a3a01ee5-5299-4b01-8c30-b01f09177dd2 1 Other Other +a3a03070-c0f9-4a0f-bd34-0a7a98b89f3a 1 Other Other +a3a04e1d-7c22-4746-b680-8d36d7003f1d 1 Other Other +a3a073c3-fef6-446b-9c72-815cd67b3475 1 Other Other +a3a091f5-57e4-4d5e-bb47-5068b08b445a 1 Other Other +a3a0bf39-d31a-4b40-9487-85d5c0974900 1 Other Other +a3a0d820-5194-4322-8dd7-8bf2bf1d10f0 1 Other Other +a3a0fd7a-9754-4a12-b71f-811b940a3300 1 Other Other +a3a15041-01b7-4ab8-aafd-2b4505b5da3f 1 Other Other +a3a156d8-b5fd-4dd4-88d3-f1300f6f0d99 1 Other Other +a3a17c61-d5ed-4695-9e09-132606ab9c83 1 Other Other +a3a18dc7-34e5-4f06-999f-8f4ea6f4873f 1 Other Other +a3a1908c-98a1-4838-b7a7-afd46caa4c22 1 Other Other +a3a1b918-bb52-432d-af40-864c807defbe 1 Other Other +a3a1da5c-7a20-4847-a31a-24c22262847c 1 Other Other +a3a1de40-6c79-45bf-a369-c31d3972b940 1 \N Other +a3a220b5-e126-40d5-a9c3-9e70a3af0c92 1 Other Other +a3a2467d-7864-499f-94a0-559ce30dbc01 1 Other Other +a3a25aa6-08d6-470d-a147-fa88d8c92898 1 Other Other +a3a27fd3-d556-4847-85ce-404e549331c6 1 Other Other +a3a28a1d-0821-44c7-8a28-a49fcf5e813f 1 Other Other +a3a29305-45a9-4a75-852b-373c2902965c 1 Other Other +a3a31456-05ae-4ee2-a436-07cdbc4db029 1 Other Other +a3a34614-2b29-43b8-923a-20290e9a01a0 1 Other Other +a3a38688-03b2-451f-852b-86a9f753c9f4 1 Other Other +a3a3fc9d-3bed-4079-b4b8-0438b5b289fa 1 Other Other +a3a3fe22-f311-4d22-844c-41fcb08cdc4f 1 Other Other +a3a43db3-2ae4-4a10-837d-537671bdfa63 1 Other Other +a3a45a49-ed92-4957-a338-030e845f2354 1 Other Other +a3a47529-92bb-45e5-b7aa-d085f30a82d6 1 Other Other +a3a47827-1a76-42b8-a8d9-86c654f05e35 1 Other Other +a3a4c496-e80c-4d43-954c-9b8c81b6961d 1 \N Other +a3a4cf72-ccde-4bb4-8bfa-feed92c6eb83 1 Other Other +a3a50232-9de7-4aa6-b69d-a122ed05aaff 1 Other Other +a3a507eb-0772-4362-82f3-8cbc48ddbae3 1 Other Other +a3a52a86-9e5e-45aa-a2cb-1b3fc9e3c40c 1 Other Other +a3a59ea3-92a2-460e-a59e-2e178eb4c754 1 Other Other +a3a5ab3b-95dd-4b7a-9283-2ebfa6640f63 1 Other Other +a3a5af13-d664-425b-b856-441e84c94c92 1 Other Other +a3a5b267-13e7-4ef3-9ab9-f363a5cbea13 1 Other Other +a3a5c10e-b91d-47d5-8792-7e5d12be6b47 1 Other Other +a3a5f26d-74f6-4e58-8f00-638ac219613c 1 Other Other +a3a6422b-0a13-42c3-8dee-cf8703690db3 1 Other Other +a3a6a60c-0d11-417f-9269-dfca241cae3a 1 Other Other +a3a6fd1e-15be-40f1-922b-560b6ed271b4 1 Other Other +a3a7388b-b0e3-43bf-87a6-adf97f2cb362 1 Other Other +a3a7618d-1938-4e70-8223-5503693de90e 1 Other Other +a3a77f77-d186-43eb-b5b6-084e566c4f7c 1 Other Other +a3a796da-bb22-40af-b723-ee4f1209df93 1 Other Other +a3a7ae06-8f55-4276-8875-4ae0f4168998 1 Other Other +a3a7b241-752f-494b-8bcc-fb4b6f82dce7 1 Other Other +a3a7d4a5-385f-4ddc-a55b-fd3fd51ba4b4 1 Other Other +a3a829ec-41b1-487d-b369-4c38fbfee305 1 Other Other +a3a866e1-f640-4734-af67-d7ff246ac03c 1 Other Other +a3a8880c-2565-45ad-a185-fa3618cda196 1 Other Other +a3a8b91e-594b-4270-b4ca-f97622e5ed10 1 \N Other +a3a8b990-7bd0-4a9a-a0b6-4602a1a75185 1 Other Other +a3a90819-6d84-4adb-b384-03412df7a781 1 Other Other +a3a91a5e-eb63-4150-b64e-e6f19da2bfe8 1 \N Other +a3a926a7-13f2-4e30-b7cd-f99a059e9636 1 Other Other +a3a92864-ff67-4179-b0ba-34b50349c785 1 Other Other +a3a94e16-fb84-4a8b-bb43-a6fec7447a56 1 \N Other +a3a9c312-c68f-4785-bdf1-64c89732b801 1 Other Other +a3aa6f1c-80c3-4507-91d4-f90aabea0dee 1 Other Other +a3aa7e32-92f8-4f83-916d-1ef25c34a7ab 1 Other Other +a3aa9a8d-e764-4cb0-a518-a2a9e73ea8aa 1 Other Other +a3aa9d8c-13d4-4370-a679-8e017a4f7143 1 Other Other +a3aaaa33-b9cd-4b37-b13b-5c89c05c381b 1 Other Other +a3aae0c1-44d7-405d-a3c4-8ab286170377 1 Other Other +a3ab35c9-6a9b-4927-b972-5752a40a64c7 1 Other Other +a3ab5b8c-3a49-40c5-aebf-3b7455ba604f 1 Other Other +a3ab6148-5de3-4972-991a-1a42f9d99554 1 \N Other +a3abd846-7e17-4fd4-b5da-41aec0106db6 1 Other Other +a3abdbfb-13d5-42ad-8242-236c14b84487 1 Other Other +a3abf6d7-550b-4542-8068-3f1423824f38 1 Other Other +a3ac1a3c-6d8d-4078-8a6f-9b42da6cf957 1 Other Other +a3ac8530-5214-4ca3-8d70-55d346705a78 1 Other Other +a3acd260-4de2-44d5-8917-257b46e4f558 1 Other Other +a3acf394-7843-47b4-a231-a949a452f2a7 1 Other Other +a3ad08b5-7dba-482c-91a6-07530341b662 1 Other Other +a3ad1539-c576-4dd1-be6c-7335a8e8651a 1 Other Other +a3ad341d-f05e-4325-b941-429b670f88d6 1 Other Other +a3ad5a41-3182-47ba-b484-ad61ef91544c 1 Other Other +a3addff6-3ab1-4119-a94b-a820b4c21f13 1 Other Other +a3ae211e-0311-4a66-b6b8-a3f5e20fd74f 1 Other Other +a3ae386d-2ae2-41bd-af0e-9076c39fb28c 1 Other Other +a3ae9f62-975f-4313-94be-fc4632ceafdb 1 Other Other +a3aea8c5-b9a5-4511-81d5-22bb79745b94 1 Other Other +a3aed877-8e47-4889-9fd4-52882815b551 1 Other Other +a3af3588-2485-4541-aa0a-e3d45a2e92c0 1 Other Other +a3af51c6-e470-4d9d-8ea7-4ee83bac41ce 1 Other Other +a3af5d9e-1ec5-4882-b8c8-5455af06cfb0 1 Other Other +a3af78ac-87bb-446b-a649-631fecc920e0 1 Other Other +a3af81b1-97ab-4bff-bd9a-eef02a4cc145 1 Other Other +a3af911e-a8be-46c7-aaa3-dd7871360121 1 Other Other +a3afd38e-100f-45e9-9066-0d40289b212a 1 Other Other +a3affb34-0b8a-4845-940d-76c2f5a6d4e5 1 Other Other +a3b01310-d905-4bff-90a3-95ff81373edc 1 Other Other +a3b04644-d1f7-434e-b1ba-818b253bec55 1 Other Other +a3b05cdf-61de-4ce7-a3c7-4a796a64dd13 1 Other Other +a3b06648-b31c-4609-8a4d-dbf1f02057a3 1 Other Other +a3b070e4-bab3-4ecb-969b-6988302addfb 1 Other Other +a3b08435-21f1-42dd-b75b-e07952411202 1 Other Other +a3b103b9-a535-477c-b39b-ffa33f1f4780 1 Other Other +a3b14624-ce93-4efc-9fc6-53c74ea68e8c 1 Other Other +a3b14708-eeef-4bf7-ae6d-e615562f911b 1 Other Other +a3b19326-ed67-4bb3-85aa-f0a2d29b51a5 1 \N Other +a3b19b9c-2fd2-41cb-b852-7868450ddaf0 1 Other Other +a3b1a547-bcb9-4227-b4e5-43ff80108324 1 Other Other +a3b1ab61-2f2c-4483-ad36-d3f7e25411e0 1 \N Other +a3b1ccce-737d-4c32-ad1c-b64303a5273d 1 Other Other +a3b1ec1d-8c27-4289-93a0-3c8f6554bfb8 1 Other Other +a3b20f47-8bba-4e5f-9fbb-f9a33be2789f 1 Other Other +a3b210c6-14e9-4a0a-9608-874813470ff7 1 Other Other +a3b21447-040c-4fec-9349-1c1557ea7955 1 Other Other +a3b21863-beff-4def-9ee4-dbd1db7c9df2 1 \N Other +a3b24541-1f78-4135-92d1-ec5e6e6a12ec 1 Other Other +a3b24980-1169-4b1f-b3a6-e9ba6045e14c 1 Other Other +a3b25951-9510-446c-ae38-8ea1852cbec8 1 Other Other +a3b2a803-3096-47f3-8026-c8ef89648a1a 1 Other Other +a3b304d2-a012-4344-befc-49f6e47f4aa9 1 Other Other +a3b35e4f-0a29-4c13-b8c8-76a126247294 1 Other Other +a3b36709-6d16-4265-8230-d3eed87df19f 1 Other Other +a3b399e4-0a2a-45e2-b148-2452f1c82f1a 1 Other Other +a3b3c49f-e37b-4f6e-afc0-6852a1477332 1 Other Other +a3b3d2ed-11bf-4e2e-885a-1f101660c13e 1 Other Other +a3b3e654-7b41-4537-9be9-3d1f1854b003 1 \N Other +a3b40791-f1ec-4552-b394-cb55a744f742 1 Other Other +a3b42d17-f5de-4a1f-a5c2-822157c03bdc 1 Other Other +a3b432d4-2046-4fd8-926a-358d9907b21a 1 Other Other +a3b4623d-d2f0-4da9-8b72-30721eb9c9bf 1 Other Other +a3b4950a-ff10-4212-b89a-4cb36e722e10 1 Other Other +a3b4a874-a785-4293-979d-7655e834dc58 1 Other Other +a3b51b8a-e3ab-4d80-a355-294af146bf1f 1 Other Other +a3b54008-d37f-4667-8c5c-439732372727 1 Other Other +a3b540cf-cb5a-41f7-8e4a-db4588a0f4d0 1 Other Other +a3b5fa38-cb67-4055-8457-d4799601bd6e 1 Other Other +a3b61191-033c-48b2-8aa0-356fe329e2ec 1 Other Other +a3b62edf-708e-4997-8d5e-8095f726c1dd 1 Other Other +a3b69659-5783-4a2f-9c59-94c3a37cc27d 1 Other Other +a3b707ce-4e40-486e-914e-b9893aaa1518 1 Other Other +a3b748ad-af4e-4457-b15d-cf0c67b90b74 1 Other Other +a3b752aa-75a3-4cc0-a179-01f5c338da7c 1 Other Other +a3b77799-0cfc-4cdf-897d-e673be2e7989 1 Other Other +a3b86051-7240-4190-b713-8aca29f2fc72 1 Other Other +a3b88c53-f981-49c3-9bf0-081e0d121f83 1 Other Other +a3b896e0-c934-4642-81b3-8367e83aff61 1 Other Other +a3b94ff5-7f33-49c7-b810-2d01bb8b06bf 1 Other Other +a3b9617f-5203-46ac-b63e-671daf5aeb48 1 Other Other +a3b97b93-0a65-473a-b268-72c5ec80a60f 1 Other Other +a3b99d76-9950-4040-b9e9-dbdfa57080e0 1 Other Other +a3b9acbb-3767-4f0d-9c6d-2d14f54a508c 1 Other Other +a3ba1131-2850-4ba6-85cd-6da261258d9e 1 Other Other +a3ba4c73-528f-4f3d-85e1-90e18867b49d 1 Other Other +a3ba50fa-521a-4d59-9b1f-5eec5f520c02 1 Other Other +a3ba7572-92c2-4843-b5dc-2867e2eba2ea 1 Other Other +a3bac306-b5be-4f44-8719-35efd99e9463 1 Other Other +a3bac80b-f18a-4140-9aa4-c701763f598d 1 \N Other +a3bacff9-342e-4a18-8f6f-ef32d5ce7122 1 Other Other +a3bae4cc-7144-45ad-a61d-275bca8faa9b 1 Other Other +a3bb0481-13a6-4fe6-aac1-9a3153442df2 1 Other Other +a3bb9b05-1c9c-402a-9a5d-db3744b5f53c 1 Other Other +a3bc4e46-f426-4077-830a-5b284ebfaaed 1 Other Other +a3bc57eb-2eb0-49b2-bb2a-1e9d270832b6 1 Other Other +a3bc980e-f209-4c92-9a08-7df85a2c7228 1 Other Other +a3bc99c9-0745-4190-9365-39dc11a479df 1 Other Other +a3bca622-2a51-4aff-a628-90bfe851e4d2 1 Other Other +a3bcabed-b0b5-4aca-8792-e62c888ebacd 1 Other Other +a3bd6fa8-1e42-446f-96de-3a3b6d51407b 1 Other Other +a3bd9b46-a0c7-4dda-aace-9dc621f8885b 1 Other Other +a3be029e-60ba-4aa5-9712-d793cd0716df 1 Other Other +a3be6388-11bf-4b00-b7a9-47d94b23e898 1 Other Other +a3be7473-da74-4607-a884-2d63221eb844 1 Other Other +a3be7e3c-2441-4c80-a442-c89e076b3a95 1 Other Other +a3beda41-3bc6-4adf-8dab-caf5338a0f98 1 Other Other +a3bf0f89-5c1e-4d11-af5f-03a5b002ac4b 1 Other Other +a3bf1bde-04aa-4eea-92e2-56773699732a 1 Other Other +a3bf22e8-c9ba-49e3-bea9-53bd2828df1f 1 Other Other +a3bf39a5-9417-47fe-86e8-d6da573f3b07 1 Other Other +a3bf61a7-4b50-4e43-bcb2-88f4a49860cb 1 Other Other +a3c01de6-657e-4c99-9780-2f059907e4ae 1 Other Other +a3c02b76-623e-4ca7-873c-7c5ea9f71554 1 Other Other +a3c04cea-3449-4c46-9311-9e2f2fcb9ec2 1 Other Other +a3c074c4-3f5c-41d6-a4ae-b5e58bb6ff87 1 Other Other +a3c08057-301c-447e-a47b-7ca5f40cb809 1 Other Other +a3c098fe-a9d0-4290-82be-ff20115335f0 1 Other Other +a3c0b8e6-d7da-4416-9887-b28f9b407755 1 Other Other +a3c111fb-f090-41a0-b067-ad5ccc9b16e5 1 Other Other +a3c12262-b839-4399-a4bf-504ef7e09722 1 Other Other +a3c139c7-0414-44c2-ae2f-9ffd8518c4a4 1 Other Other +a3c18b92-4585-486e-a360-54d55251d730 1 Other Other +a3c197e4-8399-436f-abee-a36cd6129961 1 \N Other +a3c1bcf5-4c55-411d-bd09-a1406da156e9 1 Other Other +a3c1d0e6-3eb6-4919-af82-92a4ca118d5f 1 Other Other +a3c20fb8-a822-4393-baa5-f9f38d82d7ef 1 Other Other +a3c28a8c-0118-46b4-bdf8-9ba1577c741f 1 Other Other +a3c295f2-44ef-43ea-865b-71e17429fa63 1 Other Other +a3c2a420-b47d-49fb-a1c1-b1862b241be0 1 Other Other +a3c2b0aa-23af-44ab-9669-3d9bf2c25af3 1 Other Other +a3c2bab8-13b2-4ff2-967e-d91e3505828b 1 Other Other +a3c2c0ac-57f4-47d1-a611-bec532c1c097 1 Other Other +a3c2e7d7-a1ea-4bfe-a8cb-73f5f206c49a 1 \N Other +a3c2f15d-4c3a-4d5a-9558-4810b7d9f9f1 1 Other Other +a3c37fa6-d4b9-46cc-9557-ac60b5f0f3ab 1 Other Other +a3c3d4b4-5d5f-4650-ae8f-170ae6bd8bf4 1 Other Other +a3c404ca-f690-412c-9dbc-986d7814b3b4 1 Other Other +a3c49911-354a-4a7d-8a0d-f7a90859a4c3 1 Other Other +a3c4a06a-8f96-4c08-9987-91d7749512a9 1 Other Other +a3c56a4d-2166-463d-aeac-27fe35ba862a 1 Other Other +a3c577fc-a12c-4250-81b0-3c29912744bc 1 Other Other +a3c57a1e-ea3c-4753-bf4b-0fad5e6a9109 1 Other Other +a3c63756-7cc9-4407-923c-e139b9c8a9b1 1 Other Other +a3c64ebb-3cb9-4a58-bc07-d813b8fe65af 1 \N Other +a3c69f7e-e2f0-49d8-b0a0-51fbfbb4a12b 1 Other Other +a3c6c328-fe76-4b85-badd-c079eb8def12 1 Other Other +a3c6c519-65cd-49cf-b58b-0ed417a3ffc5 1 Other Other +a3c6f08a-507f-44bd-a56b-97c5d43bd440 1 Other Other +a3c6f0da-349f-4d93-b07b-ca9f1a9fe1c0 1 Other Other +a3c7094c-80e9-4717-a72e-c010cbe4a195 1 Other Other +a3c70bfb-da05-4ac9-ac33-d9dc738eaa3d 1 Other Other +a3c71d76-7e41-42a8-9a89-021a78e771ad 1 Other Other +a3c7613d-e369-4415-9282-d15392c7ee4c 1 Other Other +a3c81bee-d7cb-43df-83a3-65988bcf7b4d 1 Other Other +a3c84a06-77c1-4af7-b9b5-3c8e2d410217 1 Other Other +a3c875ce-940f-4a13-8ccc-77127f5763be 1 Other Other +a3c8a089-296e-420e-b3df-e6feef2a5f17 1 Other Other +a3c90a0a-16fc-4a0d-b897-3772c17ac587 1 Other Other +a3c93597-bf11-4a55-a76a-9e6f8c420183 1 Other Other +a3c96b79-306a-463c-b3f2-b4cdad7e4ddc 1 Other Other +a3c97552-5406-450c-a8b8-312ce6a1339e 1 Other Other +a3c98f5f-4c02-4305-951d-8364f7bf99d6 1 Other Other +a3c9abdc-dc55-428c-966d-abb56b21fd43 1 Other Other +a3c9ae2c-f7b1-4ba3-9798-55df036c1c5d 1 \N Other +a3ca07ed-ca3c-41b6-a855-c0cfd4496a92 1 Other Other +a3cb1896-685b-4fff-851c-ed88b2ae3620 1 Other Other +a3cb22a1-fdb5-435d-94e1-08722bbf1ed9 1 Other Other +a3cb3b6c-94d7-45b7-bab8-10d92d4a2e7a 1 Other Other +a3cb6fef-5ad4-4115-9dc3-7b96738bc865 1 Other Other +a3cb93f0-b153-4094-b966-7603564547f6 1 Other Other +a3cb9964-6355-4c52-880d-405903899136 1 Other Other +a3cbb643-8fad-4432-9d3e-c43196640fd9 1 Other Other +a3cbc625-b99b-4b64-b967-20c3ee0fb0c6 1 Other Other +a3cc1dc5-1baa-4bf5-b0ad-05816d8504ad 1 Other Other +a3cc72c8-02d6-4ab2-843f-6811ef00f7e7 1 Other Other +a3cc9a65-c6d3-4015-adbb-2d358f87ee0e 1 Other Other +a3cd06eb-99b1-49bb-b5a4-76c338c6aec0 1 Other Other +a3cd682a-8977-4c14-bd9e-03428b8d665e 1 Other Other +a3cd705f-a5ed-4881-90ca-dd396f55d2dd 1 Other Other +a3cd74ae-aadb-4741-88e9-5bfcec6d8a4b 1 Other Other +a3cdefc0-eb2d-4371-80c8-623b42fa7c94 1 \N Other +a3cdfd06-b392-4ca2-b415-6e92509ccd91 1 Other Other +a3ce1a9a-570e-4020-a572-1c70126ee88d 1 Other Other +a3ce8260-156e-4eec-a2aa-d5a0974f6d20 1 Other Other +a3ce85c9-93b7-438e-b592-1664cdd00b1b 1 Other Other +a3ce94e7-0d4e-4f49-928a-f133cfbe1ee6 1 Other Other +a3cea134-3610-4089-968c-52a70fb7c8a3 1 Other Other +a3cee711-daea-4608-9db6-efd382b198d9 1 Other Other +a3cefd6f-283c-4de5-a25a-55ab7b009417 1 Other Other +a3cf3434-1cb2-4771-83e6-5e1b1f0c453a 1 Other Other +a3cf3763-76cb-4ad2-b7c6-1e8bd564bcad 1 Other Other +a3cf5ed3-be73-49cf-bfc3-00ce52b9b969 1 Other Other +a3cf8f46-74ba-4cf9-8a34-0a10421ef17c 1 Other Other +a3cf98f9-935b-4727-bd8e-743ad4267c06 1 Other Other +a3cfcb22-a986-42a4-900e-5c7be2d4e944 1 \N Other +a3cfeb80-15d1-49a8-90ca-ba14431e8fb5 1 Other Other +a3cff0ae-64df-4c48-8634-bc6221d28f7e 1 Other Other +a3d01362-6b2a-4074-884b-a57d669f5e3d 1 Other Other +a3d028bf-2194-41d0-bd62-7c9d00d58a0d 1 Other Other +a3d02ce1-b03b-4a58-a9d7-d74e081bb8fe 1 \N Other +a3d0451c-64dc-4112-aa46-26a8e8952a39 1 Other Other +a3d05ed0-6bca-4d4d-b120-7c6d387bd98f 1 Other Other +a3d09a77-d366-4afc-9fe7-4135e11c56d0 1 Other Other +a3d0d91d-c904-49b9-94a1-503375dec66c 1 Other Other +a3d14215-19ef-484b-8189-e80fc699bfc9 1 Other Other +a3d15564-eb5f-47a8-8614-d7c9c8a9d9b7 1 \N Other +a3d1911f-7905-4f13-a559-04abd12e3776 1 Other Other +a3d1d20c-4c32-4a67-82c9-9a2f007518c7 1 Other Other +a3d1f618-5626-4aa1-81ae-3e9d67ea6020 1 Other Other +a3d29e62-d20a-45cb-a5ac-fc0320e15365 1 Other Other +a3d2b0a7-ace0-4272-90f4-8b2f7d698d13 1 Other Other +a3d2e2d8-61f0-44ad-bb01-c2efaf2a7787 1 Other Other +a3d3268d-2d11-47eb-8da0-7b7e0b201633 1 Other Other +a3d36c2c-6c8a-49df-a2af-3653131eb610 1 Other Other +a3d3e50c-e28f-4cfa-a304-64deb1c55cf5 1 Other Other +a3d469cc-90c2-4295-9230-b6d4ea58865e 1 Other Other +a3d4c4f7-d01f-4737-86c6-010c80525a60 1 Other Other +a3d4fe3f-d401-47b5-84ad-28140fb8d737 1 \N Other +a3d559af-9587-4958-8cf1-ad1484d68153 1 Other Other +a3d5dfb3-ea62-4c92-96d3-b6893aadc268 1 Other Other +a3d5e049-d00d-49d9-9a0b-d7ff5ec9d1bc 1 Other Other +a3d61415-5614-465a-883d-db8285d8030b 1 Other Other +a3d61bd1-9262-4240-bb54-be08be1ab82d 1 Other Other +a3d62a63-c821-4abb-9a0b-e9bcf52ec213 1 Other Other +a3d62f33-e169-4bac-b5ae-071e9fb8a8a2 1 Other Other +a3d6bb79-c587-4396-8fce-a7d037cbaec1 1 Other Other +a3d6d045-0951-4561-b859-a8fe17ccf095 1 Other Other +a3d77889-3dd9-4813-a9d0-5697cad9fca7 1 Other Other +a3d7b9de-709a-49b2-b075-bf4a412bcaaa 1 Other Other +a3d7dd85-4cbc-4bea-8658-1e50712c03a8 1 Other Other +a3d7e80f-15e9-4e1a-99b5-8c2049362e06 1 Other Other +a3d80ad4-7fe8-4232-a58b-460d7a56a4f5 1 Other Other +a3d8923b-ee93-43c0-86f9-5312c4101905 1 Other Other +a3d9a4b5-a264-438a-b371-f089ce432dd2 1 Other Other +a3d9b8b3-daee-4489-8e63-8b0ab7cbe972 1 \N Other +a3d9b8c4-e1d6-4659-888e-5ba5e0ad6435 1 Other Other +a3d9f81f-0e6c-4282-8984-c54817915689 1 Other Other +a3da71f7-4014-4a9f-b782-559683ee70cf 1 Other Other +a3da8461-a062-4f18-9bbf-93700aee849f 1 Other Other +a3dafec6-a86b-46e4-a3dd-67b78b9a26c5 1 Other Other +a3db10b4-7465-431b-8e31-11fad4557f18 1 Other Other +a3db2a37-5c39-4a79-8654-6f32f559df1e 1 \N Other +a3db8958-6111-4769-b593-11861e9e74b5 1 Other Other +a3db9462-2d34-4e88-9129-fe191063fed9 1 Other Other +a3dbacc4-f73e-4dca-bb1a-ad3767971ba1 1 Other Other +a3dbc69b-be43-430a-9aff-1470550ec30a 1 Other Other +a3dc0ff0-671e-4f77-b98f-0c806bcf879a 1 Other Other +a3dc120d-18ce-4d81-bc42-9fb95e2e17d4 1 Other Other +a3dc209c-af7d-4ae2-ad7b-211aefbe1b2d 1 Other Other +a3dd1e50-37dc-4ba3-8ee9-e9e47be5adc6 1 Other Other +a3dde83d-afdd-4aa8-82b3-c12b2b486636 1 Other Other +a3ddef4d-b378-4f3d-8c68-b7a0441246b2 1 Other Other +a3de70b9-86ea-4c41-b943-e533ffea862a 1 Other Other +a3de944b-cfae-494b-beb3-7200bd1f8406 1 Other Other +a3deab6e-8188-41ab-a85f-118851d781ca 1 Other Other +a3debf61-15d8-4a88-afb1-f71461db1135 1 \N Other +a3dec79d-b8b3-465d-8e76-eee6633befce 1 Other Other +a3ded4bd-3b83-44b7-9563-d9d165b3712e 1 Other Other +a3def625-368c-4b4a-bf0a-baa6ed9e235b 1 Other Other +a3df088b-4939-469d-bc11-8c117a113211 1 Other Other +a3df0a47-518c-47d7-939d-c57dee015654 1 Other Other +a3df0dbf-a516-434c-89ad-620d1689df99 1 Other Other +a3df24a0-05c4-471f-bb64-7fb1d1e03f09 1 Other Other +a3dfb0cf-200b-4830-8b27-b0cb74e78152 1 Other Other +a3e00729-89e2-48fa-9a8a-4be18538affa 1 Other Other +a3e01e06-9df1-4d5b-90cc-841bfbe1b9d0 1 Other Other +a3e08406-07df-46e2-9f0b-4faf308f35db 1 Other Other +a3e09579-1933-47b5-af62-cec52d54dbf8 1 Other Other +a3e0a3d9-276f-4856-a25e-8b388517ee6e 1 Other Other +a3e0bf39-0f2c-4adf-97c8-3696073c2fa1 1 Other Other +a3e0c60a-b4d2-4c8f-811f-9a0cc5762b13 1 Other Other +a3e1042e-7b85-47b9-8adc-5b12af10c3cd 1 \N Other +a3e13d39-418a-4c30-817c-942e745b058e 1 Other Other +a3e16627-f0d9-4ed7-819f-6600e26db3d3 1 James Other +a3e166b3-eab9-481e-962b-e2b4c692d12a 1 Other Other +a3e20352-f730-4bf9-9314-414ccc0856bb 1 Other Other +a3e21756-4ae7-445c-a94f-3b0e11ee4f1c 1 Other Other +a3e2461f-673d-43f7-95be-c72b7b0d0a44 1 Other Other +a3e25a73-0f2c-4d70-ae5d-39983f66f756 1 Other Other +a3e26ad3-bd3b-43da-af09-aeeadbd68e76 1 Other Other +a3e2749d-dc30-44f4-949d-62d4f156c60d 1 Other Other +a3e2f7a5-7385-4384-83b7-669073dfe1a1 1 Other Other +a3e3003e-5b07-45ba-b282-544bcd498144 1 Other Other +a3e3034b-8dfa-4b71-9585-5833692e06cd 1 Other Other +a3e3044a-c133-4e0a-83a4-e1f80e66a567 1 Other Other +a3e3090a-818a-4aa7-8695-671aaebbc153 1 Other Other +a3e3155e-a7a0-41a9-8b82-250022f40be0 1 Other Other +a3e34495-77cb-40c4-aa92-1ff169d4b8e0 1 Other Other +a3e38f5b-4677-4cb5-a27f-6b37b9857ab6 1 Other Other +a3e39587-2525-4e63-bbfc-d954abe2187e 1 Other Other +a3e3e383-6c11-48c9-9c8f-4fbd05cb3ab1 1 Other Other +a3e3e775-498e-458a-aee3-48e03290740b 1 Other Other +a3e42809-b682-4013-a8fb-286d40876dbd 1 Other Other +a3e45e42-8dfa-4688-adbc-d266da9a97e2 1 Other Other +a3e488ed-a6a1-4e0c-a37d-cd65d3ecb039 1 Other Other +a3e4c89e-ed92-42a4-997e-83a6d230ce45 1 Other Other +a3e4cdd4-ef08-466f-a1b3-ea5b19813298 1 Other Other +a3e4d004-d30a-44f1-8232-739a6ed358d7 1 Other Other +a3e53155-1641-4303-b84c-c30eb7b37e4d 1 Other Other +a3e5a662-69dc-479e-af57-56b9eaac80bd 1 Other Other +a3e5ed08-6788-4454-9f06-df9e570ee3d0 1 Other Other +a3e637c0-8a6a-4e9b-b2e4-bc618b65ac96 1 Other Other +a3e66248-64f2-4fb2-8be2-9c9eb6dad308 1 Other Other +a3e669e8-9afb-42b8-8eb0-16f9d701dd5c 1 Other Other +a3e6bb69-4245-4b1c-8dbb-2fd339a86d15 1 \N Other +a3e6c96c-50c0-4497-90da-a1eab7b1d39d 1 Other Other +a3e6e506-604d-4024-a7e5-894d9dc75e0f 1 Other Other +a3e715b4-5ec0-46dd-9706-0fe959ac2d42 1 Other Other +a3e751d0-7c21-4671-a969-8b9c40a96be8 1 Other Other +a3e761bd-0a89-462a-927a-c06ef8f17204 1 Other Other +a3e7b241-4216-4235-b715-6446eb963090 1 Other Other +a3e7be13-fba4-4758-b52a-b06b09512a2e 1 Other Other +a3e7c093-9a56-4f2a-9077-1d5c984d85d0 1 Other Other +a3e7c81c-cd65-408b-8699-e0a648103546 1 Other Other +a3e7d52f-ebc1-4c98-974b-554445499cb9 1 Other Other +a3e830c1-54da-478a-b2a0-f71533d15cd4 1 Other Other +a3e848b2-c561-488a-bea1-a591799eeb2b 1 Other Other +a3e8a11d-0afc-4c3d-aa47-7d3a5285d006 1 \N Other +a3e8b769-e569-4777-93c0-8a4972b41d4b 1 Other Other +a3e8c83a-6cd9-498f-b1b4-11d1783ea7bc 1 Other Other +a3e920ce-4cd3-4d0f-8cdf-2e3f33fd3405 1 Other Other +a3e9f5be-9d5d-4c1e-957d-4b7ed4bd2532 1 Other Other +a3ea217d-a522-4e81-b8bb-9e79966fe302 1 Other Other +a3ea8694-1c5b-4ce0-81d3-603a6c55de08 1 Other Other +a3eb0710-9c4c-4466-a25f-7306f384f77c 1 Other Other +a3eb72d3-8bc0-4666-8729-4e4e7656d158 1 Other Other +a3eb7948-2bf6-4c9a-acb2-a2caaec4f870 1 Other Other +a3ebf618-b812-4c3c-be17-b06b5db8e50a 1 Other Other +a3ec1e34-0bf3-4806-ae2b-0785eef6d523 1 Other Other +a3ec5224-5642-4bdd-9c67-f5b7b56aa1a5 1 Other Other +a3ec7449-4f6b-408b-ac85-0ccc5e373447 1 Other Other +a3eca847-945e-4ad3-9f42-920c6d84eac2 1 Other Other +a3eca999-a9f0-4d67-a1c3-9cb152c90aec 1 Other Other +a3ecc031-763e-45ca-a5b8-e0b8d80958f4 1 Other Other +a3ece96c-df5b-49f6-9a7a-7508e2560699 1 Other Other +a3ecf343-15cc-4a29-957a-c960dc1d1af7 1 Other Other +a3ed8fbe-1fbd-436f-a53d-6f2977242f11 1 Other Other +a3ed9029-0365-41b4-aa06-48ba88249a2b 1 Other Other +a3edb7da-ff94-44f2-8bff-26b96b3a41cb 1 Other Other +a3edef34-f1f6-11e7-973a-fa163e8624cc 1 Other Other +a3ee2f8d-3b0b-46e8-9aed-3459ad2c1bd5 1 Other Other +a3ee39aa-49c6-4629-9fde-645f3efdfcc3 1 Other Other +a3ee8b72-b514-4442-aeb5-2ccb1ae350df 1 Other Other +a3ee9734-796d-47d3-b023-2ce3ce9ebc06 1 \N Other +a3eebae4-70b1-4902-a311-feea1f8a17ae 1 Other Other +a3ef076e-f252-4c73-8128-3c3baf0226ce 1 Other Other +a3ef48d8-a5e4-484e-b768-270d13109120 1 Other Other +a3ef5bc4-8100-459b-88e6-2c5d44e9bd07 1 Other Other +a3ef8143-4007-4571-8594-122ed43b581b 1 Other Other +a3ef95bd-8638-4612-8db5-75885b0a2ce9 1 Other Other +a3efaebd-f4a6-46db-b5d9-ee85aef9e90a 1 Other Other +a3f00425-315b-4101-82e8-b9ec3361a546 1 Other Other +a3f02de9-fab3-4475-850c-b2fa4886de7b 1 Other Other +a3f037e9-5a54-4f24-9050-74a337dd59db 1 Other Other +a3f0f04e-e8e5-46d2-b2c2-87da0635fa80 1 Other Other +a3f11acb-eb00-44c4-8b58-fb1d3d79df29 1 \N Other +a3f125ed-e598-4bcf-abd5-d421af5fbaf7 1 Other Other +a3f16642-c492-4835-99cc-6eb7e6ca0043 1 \N Other +a3f1dc87-6306-4ba4-a6a2-01a47c2a39d5 1 Other Other +a3f1f11e-2736-4324-abb0-7999e5874f41 1 Other Other +a3f20ec1-b1c9-4df4-ab30-5ca862e77a7e 1 Other Other +a3f292df-310c-482d-b1d3-078d2f868e98 1 Other Other +a3f2c9b0-3c43-4452-9379-7cb00757331e 1 Other Other +a3f2d32c-cf1b-4ad5-9165-2c0b9f590769 1 Other Other +a3f2efdf-b2e8-4d6d-a59b-791ad1f70d5c 1 Other Other +a3f3159d-7097-475e-929d-f7b4b9cb132d 1 Other Other +a3f33654-ad9e-4898-954e-1111457114c5 1 \N Other +a3f34392-644b-40ee-bad2-ff1af14a84f8 1 Other Other +a3f344f3-6bfc-404b-bfb3-76d9f3f56b2b 1 Other Other +a3f373f3-9b99-47e2-ad89-1cd30a1cbbff 1 Other Other +a3f375f7-8110-4049-8059-1233f0b3915c 1 Other Other +a3f377a0-4270-45c5-9345-7f2a09e64c84 1 Other Other +a3f39890-788d-47e1-a0e2-c67ef48a7541 1 Other Other +a3f3c010-7ba4-4dea-8df2-9fdd969cc10b 1 Other Other +a3f3c402-e706-4305-9860-8ba27802f6fb 1 Other Other +a3f3f012-ef6d-465c-9907-3f5c9e6b1e41 1 James Other +a3f3fa7c-5b67-4592-957f-bf06d85e69fd 1 Other Other +a3f4ddca-ce2b-4afd-8660-618ea55de8bd 1 Other Other +a3f4eb27-8e57-43cf-b72e-efb00bd80c6c 1 Other Other +a3f51019-8d2b-4fda-b849-7bfee09b136d 1 Other Other +a3f54a7b-bc88-41fd-9cb9-b98ed85b47c0 1 Other Other +a3f55490-4724-40a1-bedf-52f863e73fb0 1 Other Other +a3f56d91-0122-4da9-a83b-2f24ffd81f94 1 Other Other +a3f5ad03-caa8-4d6a-b89a-87b56934a8d0 1 Other Other +a3f690a1-1198-4f8a-b7d9-fab6f75a142f 1 Other Other +a3f6d7f8-10ef-4865-b903-be48e7977602 1 Other Other +a3f74bdb-b515-447e-8023-e5ab7f325268 1 Other Other +a3f75f95-b7e2-4690-96fe-1cc0f67977a1 1 Other Other +a3f7c9b5-bcf7-4e5b-954a-299288ac3939 1 Other Other +a3f808d6-8fcf-4781-9a24-4a7658bd420c 1 \N Other +a3f81103-b8a2-46a3-93fc-243e1209b979 1 Other Other +a3f830d0-ab06-4f27-a400-412ce8727163 1 Other Other +a3f933a6-8b79-43b1-be0c-37f0ab2b0ee9 1 Other Other +a3f9571e-f9aa-4b62-a70b-62346fe850ef 1 Other Other +a3f9e10d-f637-4f85-a695-5953be93eef3 1 Other Other +a3fa5326-a521-4905-9e19-4850d14b09bc 1 Other Other +a3fa8fbf-ce48-45b9-87b2-eef3e0ab2bce 1 Other Other +a3fb2e5a-d321-4f8a-95a8-92e7953b5541 1 Other Other +a3fb9976-98a8-4570-b351-df2c29bd3435 1 Other Other +a3fbe753-46df-4882-ab34-df99047500e3 1 Other Other +a3fc7b6e-86ff-44c7-a6c7-672d3ff032a2 1 Other Other +a3fc9239-2af7-4b10-b96b-58868d6aed3b 1 Other Other +a3fc9317-3a90-412c-ad93-c2ba069409c0 1 Other Other +a3fca106-33c1-4114-b1be-b8bc2e803f32 1 Other Other +a3fca97e-11be-48d5-a68d-2d5d503fd91e 1 Other Other +a3fce35f-f3d9-43ee-aec8-2289c9efadea 1 Other Other +a3fd2194-9936-405c-8f21-33ae4027921f 1 Other Other +a3fd6183-1f90-41c6-891f-9face0e76b98 1 \N Other +a3fd6dfa-65e6-4af8-a041-2abc8083ae99 1 Other Other +a3fe1ae5-d02c-487a-94b3-915dd3680020 1 Other Other +a3fe1fbc-fe55-455d-9990-49011efe2d1c 1 Other Other +a3fe23c7-9bb6-4dae-b74f-64de2b09bbe8 1 Other Other +a3fe373e-4796-40c7-ae90-8b6611a99470 1 \N Other +a3fe3ba0-fa13-428e-ae72-4723c53666a6 1 Other Other +a3fe981f-7c15-4b86-9d61-589be5fc1bd9 1 Other Other +a3feaf3e-c5c0-43d6-88f6-2ef2e2479456 1 Other Other +a3fed1b7-be56-4bdf-91bf-bbfe9039b037 1 Other Other +a3fef412-e9c4-4c0a-a756-17ff50472f7e 1 Other Other +a3ff002b-8229-4c9a-aa8e-5a162be2b315 1 Other Other +a3ff656f-44d8-485e-b57d-bbef0c50c759 1 Other Other +a3ff7411-5999-4315-bd01-af6e1902dfa5 1 Other Other +a3ff7a9b-7903-4846-b9dd-11f6995de9cf 1 Other Other +a3ffacfc-881f-4d35-965d-1a5d30233acc 1 Other Other +a3ffbaa4-f718-48dd-876b-36b3653b12fe 1 Other Other +a3ffc5be-35aa-4658-9363-42a182440963 1 Other Other +a40055fd-a44c-4ea3-b843-b0b774c75834 1 Other Other +a4007b25-78a4-402f-b812-5ddc7efe9656 1 Other Other +a4009498-d230-440a-8eb9-311ac7a428a7 1 Other Other +a400e50f-07c7-437b-a3f9-8f154a2ca379 1 Other Other +a4014830-29e4-464a-a10f-0ec64e6a0c2d 1 Other Other +a4014fda-39ee-42fd-9d89-c522660a1be9 1 Other Other +a4015752-d584-4d03-a2b8-f97dfcb442cc 1 Other Other +a4016482-3bec-430d-a76c-3a3a2a6c40ad 1 Other Other +a40190fc-fe43-40f6-a7b5-1dac7ffe2f16 1 Other Other +a401996e-bc0b-42fd-ae5e-e268388c2f10 1 Other Other +a4027d75-eb2f-445f-b490-93699a0661fe 1 Other Other +a402a844-1fb0-4c43-9ed4-8322939b792f 1 Other Other +a402b213-5655-4d54-a097-4fdc89010bb7 1 Other Other +a402b8a2-eaa8-40c1-8933-d4eb38299caa 1 Other Other +a4043b66-8841-4c33-a554-bb69c290cbd1 1 James Other +a40450f7-459f-4bcc-89d8-2b751329d1fc 1 Other Other +a404fdac-21c9-4b01-8e03-61350d5cf25b 1 Other Other +a4053e03-d818-444a-bd90-0ca39fb20d9c 1 Other Other +a405487d-91a1-4c0a-a788-e87fc89248ed 1 James Other +a405869d-f442-4b20-beb4-06fef77f58c3 1 Other Other +a405ece6-2cbb-4f10-bf14-014e23e3fff8 1 Other Other +a4061c7b-9585-4159-8971-84adb4b93f59 1 Other Other +a406e58f-fb49-4a67-a4f0-7478a9911d3b 1 Other Other +a406e8a5-ec8d-48fe-8e03-44b94271cd2f 1 Other Other +a407420f-1162-4c7a-a2bc-838a429fa1a2 1 Other Other +a4074b85-5220-4c6a-83f9-aef0a3c506f7 1 Other Other +a40759a8-d125-4ab7-9a7b-315345ab173b 1 Other Other +a407791a-1a4c-4059-b254-6fe2730f78c3 1 Other Other +a407897c-6f0c-484c-be79-eff251bcea3f 1 Other Other +a407b21a-88d4-43f6-ab49-cafaf96419f6 1 James Other +a407c9d2-a49e-4d35-b5b0-e9347e91878e 1 Other Other +a4082ca4-4cdd-41a6-8385-dc314913b82d 1 Other Other +a4087cd9-695f-4f59-b630-4c65d5e30f0b 1 Other Other +a408bd3c-665b-4cd2-b8ea-ea95bffc06af 1 Other Other +a408c91d-571d-428f-856f-7c3a8e9e7b0e 1 Other Other +a408d54c-2752-479f-acd8-a8c2b93afd64 1 Other Other +a408eb19-0658-4795-a706-6d41995f2611 1 Other Other +a409274a-f2ef-434b-9c50-2782bbddfab5 1 Other Other +a4092d24-8138-4cb6-83c2-dab25f9bc5ff 1 Other Other +a409d7ea-37eb-4a9d-895e-c07e83c3bb21 1 Other Other +a40a0256-cc39-4cb5-9e99-863c1dfe9355 1 Other Other +a40a074b-5696-4db1-b7fb-b4275661f582 1 Other Other +a40a5f41-146b-4ebb-a44f-f1709af10b46 1 Other Other +a40afb06-41de-4d11-9789-da701a3e8998 1 Other Other +a40b0ae5-f86d-41b0-8c1f-d3a1681858c4 1 \N Other +a40b0f31-ddd2-4e8f-96f1-e542f5f7382a 1 Other Other +a40b6280-228d-445b-8363-5c4fb83aaec3 1 Other Other +a40bd231-ef43-476c-ad4b-47f537c05b9d 1 Other Other +a40bf062-3190-45e8-b11f-9d5c3b3ddc8f 1 Other Other +a40bf7bf-acf1-47a8-958d-d2706ec56088 1 Other Other +a40bf918-0ee0-4652-ab90-5ffee29d47f9 1 \N Other +a40c5993-862b-4003-b0ca-53c17b08b1cc 1 Other Other +a40ca0ee-79a6-46a7-b700-d31c250a73b2 1 Other Other +a40ca8a9-87ac-4e2b-9879-c3ffb3036fec 1 Other Other +a40cbbfc-cb56-42f8-bd39-6443452f4b07 1 Other Other +a40ccee5-186b-4a6d-b4ed-a91827d34efe 1 Other Other +a40d5fba-05cf-4ed8-b7fd-494ff9e36ac2 1 Other Other +a40d972e-f432-4411-8d49-9f1693c8bbb2 1 Other Other +a40d9759-0e5b-4664-bec1-31202623b026 1 Other Other +a40dab51-d0cb-47b0-94f9-1e9af19001b9 1 \N Other +a40dac58-f1ac-4e52-b102-8d1f652836f3 1 Other Other +a40db027-e3e9-4317-bbe3-dd17bb4bd74e 1 Other Other +a40dc005-dea1-4055-9b2f-c22725f84ec5 1 Other Other +a40e224d-74c5-4613-af33-8996adf60b9b 1 Other Other +a40e4415-57c7-4744-ac75-6751ba8e9e60 1 Other Other +a40e5a5e-05a2-4b00-aa48-193822fe7f7b 1 Other Other +a40ed6bd-9ae4-4436-be2d-b098dec19983 1 Other Other +a40f4f8f-b528-4c23-8eb5-9472a3fb9347 1 Other Other +a40f539a-281a-4e16-825a-b1c7d9833465 1 Other Other +a40f53f5-6ea9-4db6-a4c8-0f11d45bb587 1 Other Other +a40f62ad-3412-4b26-9ffd-e4b301042a8c 1 Other Other +a40fbb6d-79ff-4014-930b-014d7636d55d 1 Other Other +a40fe916-9717-442f-b0cf-2b439f32dcec 1 Other Other +a40fefa2-cf0c-4ebc-b6ea-10173e769771 1 Other Other +a40ffa2b-639e-4531-ac40-4347d292db5d 1 Other Other +a4102c9a-6553-4dc1-807e-914e424cf50d 1 Other Other +a4103e37-584f-4ae4-9cf6-a0e0d0236a2d 1 Other Other +a4105063-a6b1-47ca-b49a-f8315792ff3f 1 Other Other +a41052ee-9c10-4cb6-82f8-683cda36ad6f 1 Other Other +a4108692-078d-40ab-a97e-e8cd2f54c740 1 Other Other +a4110e89-5bc2-497e-8a03-de630b8047d5 1 Other Other +a41113b3-7716-4895-94d5-b00537d0582a 1 Other Other +a41113cc-5a3f-44b0-b056-bb4cfdbd7a9b 1 Other Other +a41116ba-60f6-4d5c-b54c-376aef2c002b 1 Other Other +a4113a8b-cd8d-43f9-bd09-8a9569a4ed51 1 Other Other +a411536c-89fd-47a7-b36a-cffb0e816e22 1 Other Other +a411b564-6f4e-4534-9c2d-344b24767d1e 1 Other Other +a411ea5d-7508-4d58-a9b7-3c4b50fe97f2 1 Other Other +a411ed4a-ce09-4ec3-9df2-226f70740bea 1 Other Other +a412107a-aafd-4451-9d90-fded83250948 1 Other Other +a41266ee-215f-4a21-8ce0-0b1078304836 1 Other Other +a4127ce6-8565-43a5-8879-280662a150a9 1 Other Other +a412ba03-a33d-4221-879c-4e390c0478ce 1 Other Other +a41310f5-fe0b-4b48-b9e3-9fc7e99d6efc 1 Other Other +a4135e87-432d-4954-a0f6-04a5b6380caa 1 Other Other +a4136919-04aa-4842-b5da-5243886c73fb 1 Other Other +a413ba16-df24-4d07-ac73-b156fcc87776 1 Other Other +a413bdb4-ff0d-497b-8fe6-efa5d9d2e5d9 1 Other Other +a413da7f-2f11-4086-88a4-7f7c1ab3f75f 1 Other Other +a413df94-1598-4d46-81e7-fdc02ccf62f8 1 Other Other +a413f183-d84f-40a9-9ab4-1d784773c23e 1 \N Other +a4141b93-f5ec-4fa5-af53-5108f0f42cf3 1 James Other +a414374b-6f92-4015-8bc2-0e8d29fe6722 1 Other Other +a4145951-e9c4-4b78-8d85-1391471312d4 1 Other Other +a41461df-09af-4024-8f23-04b62bf78d64 1 Other Other +a414676e-1975-4b0e-beb0-54a125c280da 1 Other Other +a4149d27-9958-43e7-b7ab-a1f322de71a5 1 Other Other +a414f033-ffb1-434c-9479-7eb3ebd80066 1 Other Other +a41541cd-9e89-45c3-afff-57954ca6ece1 1 Other Other +a4155598-6a7a-4e75-97ee-2b6c8c828c48 1 Other Other +a41559d1-c356-4492-81a6-59a5a74ff489 1 Other Other +a4155d95-9558-42e9-965f-e149074c5ac8 1 Other Other +a415a265-63cd-4613-a971-cbb321f59908 1 Other Other +a415e502-dfc6-41ac-bd22-be6aed46be54 1 Other Other +a415e703-9ad4-4960-85cb-b6fe7ae5690f 1 Other Other +a416564e-8945-451b-a1e1-a611d78abeb0 1 Other Other +a4165aab-16da-4108-97cb-3718a51cb4ab 1 Other Other +a416c7d8-1877-4b38-a011-582a011a9bc1 1 Other Other +a41709b6-fae5-4652-916e-791910768e99 1 Other Other +a417337c-9c95-4404-abef-84116fbf3a5e 1 Other Other +a417c6a2-02c1-4e1f-a923-0b0161ac0501 1 Other Other +a417d555-68cf-425a-a2c4-04416e035972 1 \N Other +a417f71c-fb90-43b8-a0f9-4e5c47051b14 1 Other Other +a4183b3f-f9ee-4ed8-b3bb-aff45cf86849 1 \N Other +a418e8dd-cf26-4557-933e-85a1898d6947 1 Other Other +a418f0bf-be93-4e48-8900-ea55d85c3151 1 Other Other +a418f980-eaa0-4b86-936e-0de6256bfa40 1 Other Other +a4193808-ae7a-4593-8952-a350a01e50ed 1 Other Other +a419c1ec-892d-4434-824d-c3a07ec34c26 1 Other Other +a41a1a4c-0dd1-403a-9ee0-22f2836bd6b5 1 Other Other +a41a2058-f9d6-11e7-ac05-fa163e8624cc 1 James Other +a41ab0f1-903a-435a-9120-77d21deabcb2 1 Other Other +a41b12f4-f1f3-416a-a475-c0a3b6e00b57 1 Other Other +a41b3aff-e530-4e24-aa3d-9101ca0b3d71 1 Other Other +a41b6100-3c50-4cf8-804b-cbb35be1204f 1 \N Other +a41bc0c8-6093-4652-a2d7-525622ddc061 1 Other Other +a41c7e0f-6dee-4c8f-a0f9-53b35b32e6ab 1 Other Other +a41c886d-5535-46ba-9c85-f99ceec43a85 1 Other Other +a41cc4b3-f881-45c1-939d-643a18cfb611 1 Other Other +a41cff01-d0e0-473a-936e-7d5c9dd210da 1 Other Other +a41d409b-f7e0-4f08-9337-6b09c5750fc5 1 Other Other +a41d6c47-7b14-4b88-b23e-263b75a5d709 1 Other Other +a41dc929-828b-4d6e-9a19-f2806052b9f8 1 Other Other +a41de2f5-eaa7-4d24-ad5a-0124c8e3fb52 1 Other Other +a41e0710-f57c-4c02-b880-0aed30083893 1 Other Other +a41e1028-a015-4e77-afa4-f3dad425deff 1 Other Other +a41e2ada-999e-4fad-bcfa-eaf02253f2cb 1 Other Other +a41e68d0-959d-403f-a863-15681f999764 1 Other Other +a41e7261-902d-4e7c-b9bb-b227130316cd 1 Other Other +a41ed1bc-6e36-4d20-97a3-ee02f1a27a55 1 Other Other +a41ee69c-b7f4-4535-890c-05c3401e0422 1 Other Other +a41f4af7-3a54-4b0f-8247-d038858942b9 1 Other Other +a41f994d-d850-4601-bcce-05ccd5bfab4c 1 Other Other +a41fc30f-2fde-4b99-a167-f32bb892c33e 1 Other Other +a4200767-b109-4063-b059-d2391a85157d 1 Other Other +a42094eb-aa61-461f-b847-053e7bae3c57 1 Other Other +a42109e5-2623-4b27-91ad-d662e766cb91 1 Other Other +a4213390-9e4c-4f47-bcb9-753a2d43beff 1 Other Other +a421518f-8064-40fa-b324-5fbdcf6c4d1d 1 Other Other +a4218292-4e04-4bbb-860d-e8a6f86f3b08 1 Other Other +a421a6f1-8519-4422-8d41-01d8f57f6de8 1 Other Other +a421a98a-a102-4067-b4c5-285699e34b5c 1 Other Other +a421e13d-67ce-4878-a8de-abe08556b470 1 Other Other +a42204f5-5dd0-4d04-bfa6-ace3d12bdd47 1 Other Other +a4223eb3-09a1-4ace-9e01-d47e69dcf81d 1 Other Other +a42257d4-d511-4ca7-b4f2-721c92abe71d 1 Other Other +a4229edd-7eaa-4d1b-8e47-02c2d163c10a 1 Other Other +a4229f26-f6de-47f9-b867-015dd0958e3a 1 Other Other +a422be58-51bf-4be2-83b5-4b42e7e00853 1 Other Other +a422dfb6-27b3-471a-aa8e-d1a4212897d1 1 Other Other +a4230b2f-55d1-4705-9b90-f96d94fd2384 1 Other Other +a42375ab-c709-437e-8011-8ad7e61c7aea 1 \N Other +a4239fc4-26af-4623-8259-d6afc2663a37 1 Other Other +a42416f4-5a77-4ad4-a532-8eb45c674d6e 1 Other Other +a4243b80-5fc3-4f56-91b1-f7587b7b9402 1 Other Other +a42448e3-f637-4440-9b7b-583999a3b50d 1 Other Other +a42508ec-5c5d-436b-9ce2-f51f20c728ad 1 Other Other +a425597c-a398-4821-98cb-748f1ad49f9e 1 \N Other +a4256908-7e0e-4b46-832b-92a794b39220 1 Other Other +a4257013-7cfe-4df1-9229-3cf881cb80ad 1 Other Other +a4258867-c988-4ab5-b517-36aba7847c0d 1 Other Other +a425aadd-2454-4848-b27d-a19d42df0727 1 Other Other +a425af34-f910-4955-b02c-98b3ceb2afe9 1 Other Other +a4269006-3528-4f42-b601-6988c356948b 1 Other Other +a4269381-9a4a-4b6e-acc7-d6eb22079bc2 1 Other Other +a4269dd3-4fe0-41af-aaa5-136b9f147d13 1 Other Other +a426ae3b-1816-477b-b6f0-43d754395dcc 1 Other Other +a4270188-4993-4aa6-9523-8a4c52df7957 1 Other Other +a42770ab-17c4-45de-82ff-b02f54dece78 1 Other Other +a427842c-0510-4e60-a01e-1c37fef185db 1 Other Other +a42784af-5cdd-49b8-8fe2-9a5b7fc42b60 1 Other Other +a4279e15-00ce-43cb-a0cd-8d50dca7d064 1 Other Other +a427abdd-b6f6-40da-b13a-4f26a152e113 1 Other Other +a427cc81-5350-48e2-b4d1-6235d29299bd 1 Other Other +a427f1bf-916a-4bc6-81c3-58d34a3e8342 1 Other Other +a4283bfc-e6b2-4d4c-83d7-7c30f4ec33e4 1 \N Other +a428624f-d674-4564-ad79-89185ca601d8 1 Other Other +a4286a9a-e037-451f-b538-2fecf09bf1d6 1 Other Other +a428a3aa-76ea-4ae7-9708-095b960bfb2f 1 Other Other +a428a97a-63df-4c94-9d91-fd54ec32694a 1 Other Other +a428be7a-8bc2-4c8b-961f-ef9c0fd4185f 1 Other Other +a428c495-ecf6-41db-8dfb-9d811529ca91 1 Other Other +a42901ab-d1c6-4368-97ce-62c9094f603c 1 Other Other +a4294291-ec88-499a-9069-d0d52343e7d6 1 Other Other +a4294e41-9f22-4ab9-8d81-600b1bbc26df 1 Other Other +a42978f8-9af9-409a-be97-6fb3c27308a1 1 Other Other +a429834b-255a-406f-81cb-c34e2fc6a07a 1 Other Other +a429ee22-8b12-43c4-b374-505b3aa7fcc9 1 Other Other +a42a8232-3969-4b7a-a010-bd96a03b618d 1 Other Other +a42a9593-f364-49b1-b98b-6bd06a427b62 1 Other Other +a42abc6f-c3f5-48a2-a891-55e323ac64b0 1 Other Other +a42ad4ba-2e6d-4a58-bbfa-4dd035d3e328 1 Other Other +a42adf24-2706-48b0-ae67-c060603ca070 1 Other Other +a42ae3fa-7f1f-4636-943c-d08e067a5edd 1 Other Other +a42af487-43bb-412d-945f-f0b229f14345 1 \N Other +a42afabe-f96c-46b9-a86a-8cb702a52d46 1 \N Other +a42b6fa0-bf1b-42a7-8988-e811af2d2ea5 1 Other Other +a42bd811-a032-4fff-97f6-15680bf2855b 1 \N Other +a42bdecd-5d75-4e28-8b6b-8c65e95d7a3c 1 Other Other +a42bf033-7520-4d79-87aa-30b1353c11f1 1 Other Other +a42c0910-f97b-4cb4-bcfe-f854e8bb1abb 1 Other Other +a42c1b2f-03b9-43c9-8269-b2d310516d54 1 Other Other +a42c1d8d-42d6-4f41-9325-843c0487f12f 1 Other Other +a42cc4fb-c40f-4a8a-827d-600f611ef543 1 Other Other +a42cd207-9d8d-4934-9cb5-548982b818b2 1 Other Other +a42cdeed-47d0-4591-a8d8-4aeffc42c630 1 Other Other +a42ce3d7-e824-4920-8492-4b9497dc4b0b 1 Other Other +a42cf9f5-6f8e-40b0-8a80-048a631bb6ac 1 Other Other +a42d33f6-10af-45f5-ac44-cb961d8f74e3 1 Other Other +a42d646c-a576-4456-b963-29a56fff9573 1 Other Other +a42d8f15-569a-49c5-b873-7af74ec75c28 1 Other Other +a42d98ae-2bf3-486f-9023-bd47b8ce711b 1 Other Other +a42da17d-0f0f-4b9e-b2d0-0a1ac812d9fb 1 Other Other +a42da970-ad75-4d40-8023-b9b53f3763a1 1 Other Other +a42daf4c-b97d-4d37-9e23-e3ce2f66b062 1 Other Other +a42dc54c-d7de-477a-aa7d-a6a26d61db9b 1 Other Other +a42dc60a-fa99-45c9-bc6a-1e241da381d1 1 Other Other +a42dd3d3-8bf3-4a9b-8a9d-1402e3481298 1 Other Other +a42e2591-6ee1-4151-9f93-4fd772b8e750 1 Other Other +a42e738a-bbe6-43b4-aedd-8253758952ee 1 Other Other +a42ed37d-fdda-4d1e-817b-112386f036d9 1 Other Other +a42f3682-ee57-45a3-9b0e-2abd0924bb64 1 Other Other +a42fe914-71e6-4c74-8944-1a52d4311927 1 Other Other +a4300eb3-00ea-4619-ac93-54c58086f3d0 1 Other Other +a4304112-5525-4c0f-a672-7b64fe39e41a 1 Other Other +a430df03-656d-4652-a169-40bd77088b24 1 Other Other +a430f11d-b3eb-4008-b2c2-d1716d311f40 1 Other Other +a431008c-0172-4810-9087-120858ab2f64 1 Other Other +a4310e8b-3893-497f-a963-2d666f15e60d 1 Other Other +a43145cf-cb64-4370-b1a2-6482c98c9e96 1 Other Other +a43171ea-9110-4601-903a-73c03a6f80f5 1 \N Other +a43182ae-c49e-4afc-a2f6-5cab31e4d1d7 1 Other Other +a4319d02-59bf-4b16-9fc1-fc90f38cd355 1 Other Other +a431d1dc-cb90-40e2-bdc3-87489c9db887 1 Other Other +a431f243-4e42-4979-9cdb-ba1d6e4e6afd 1 Other Other +a4323788-8a0a-4961-bc1b-bb997230936a 1 Other Other +a4334fee-49d1-46d5-9b9a-39275c49e7cf 1 Other Other +a433b284-e1d1-4b85-adc5-456841ba18dd 1 Other Other +a433e6ad-25b0-4f15-acbf-c0ca1786ebaa 1 Other Other +a433ee73-762e-44c2-b403-db2943bb327a 1 Other Other +a433f260-de40-4d78-9914-76b929643912 1 \N Other +a4343475-cc86-4468-8174-7a157fda6ff0 1 Other Other +a4343a03-9a57-4f58-bb5e-3433c0cd21da 1 Other Other +a434bc40-d966-4a57-abcb-2f8b5b930f7b 1 Other Other +a434d6b8-5aa0-4d0d-90bf-b16a49575a47 1 Other Other +a4352a6c-a2b1-4e9b-a745-5a92b685d359 1 \N Other +a4352c9e-f4c5-4f82-9702-d493e7008b4d 1 Other Other +a435302e-105d-477b-84ef-6dfc02dc2680 1 Other Other +a435342c-0be2-444c-8c77-0a858e00020c 1 Other Other +a435578d-0ef5-45ea-a2c4-825bb6803a99 1 Other Other +a435683c-7071-427c-909d-c3e3206eb12e 1 Other Other +a4356cab-a6c3-4b4c-b04a-154bbe9a2880 1 Other Other +a43583c7-c7e8-4302-b652-fbba4a460979 1 Other Other +a4359c3e-9be1-4783-8e1c-777f887e3270 1 Other Other +a4359ebc-1544-4472-9e2c-9c047c11a351 1 Other Other +a435cde4-0f13-4ee0-b167-b20da7da4db6 1 Other Other +a436296d-d8c9-40d7-beca-6c77ad2ca121 1 Other Other +a43634e4-c500-4441-9540-f26c4b228d02 1 Other Other +a4363e53-65d5-4c63-b098-f4a73a923bf8 1 Other Other +a436585a-1ff6-4035-aaa8-c63daeb8b345 1 Other Other +a436e826-6cbf-4e7f-b2f9-7c5b43403e4c 1 \N Other +a436ec46-0779-40de-be73-a1ca187d09d8 1 James Other +a436ec4d-9ef5-4def-8803-a503d12e473d 1 Other Other +a4370cbb-d09e-4c2d-90b3-97f0e3f7267a 1 Other Other +a4373ca0-642f-45cb-9a3a-fbe2b7335c7d 1 Other Other +a43740af-6635-4340-a62d-49b0ae09f124 1 Other Other +a437b226-37da-4324-b799-10defee2916f 1 Other Other +a437b8a4-202a-42c5-b4c5-9e79994feb00 1 Other Other +a437dfb3-087a-4c87-9a12-db22defee841 1 Other Other +a4384093-9d09-4c72-8f28-8b09f12bcb67 1 Other Other +a4384ae8-f10d-41b6-af5a-0650d3170c9b 1 Other Other +a4385a22-dd3b-481a-92f5-a104f6756db7 1 Other Other +a4389ede-9fee-4d33-8e0d-27bf6374ff44 1 \N Other +a438ce69-473a-4f6e-ac34-7e7dc10dbde7 1 \N Other +a438f357-f69f-4cae-af32-f201f7e2f77a 1 Other Other +a4392600-ac2d-47ee-a3cb-972a8923c900 1 Other Other +a43937ce-1cf1-420f-8719-63f53700fc44 1 \N Other +a4393b09-fa32-4d87-9308-d590d0239200 1 Other Other +a4394064-84c7-4f3d-9ad8-375ece6e80e1 1 Other Other +a4395945-cd15-4507-96c8-39d9c16842c5 1 Other Other +a439833f-c02a-4c19-a749-eec346b94101 1 Other Other +a439b185-9d26-474f-8de9-510bd984bdae 1 Other Other +a43a65da-5ac9-4fd3-953f-32cdcd88e12a 1 Other Other +a43a94ab-a536-4e38-b5c0-de366b09433f 1 Other Other +a43a9e0d-8c92-4a5d-a03e-6490502923fa 1 Other Other +a43adf19-3af7-42b1-958d-c153f21ef291 1 Other Other +a43ae730-8b2c-4381-bb4b-8a9b7ad60f02 1 Other Other +a43b02f3-c31c-4605-8a8f-dc49a4465ce9 1 Other Other +a43b2fd2-a9fd-4bbc-94a2-c11f505df7f7 1 Other Other +a43b3a56-df69-4fa5-870e-6ffd3d2c6b9b 1 Other Other +a43b606e-8ebd-417f-a51f-00c550866dca 1 Other Other +a43b8409-72c0-4be8-ac5c-f1bd3b4f4bb9 1 Other Other +a43bce09-34dd-45f1-b6f0-114cf3275806 1 Other Other +a43bcf05-ba7e-44a0-ae56-a6ebdd37a0e1 1 Other Other +a43bed20-c8e0-44b1-b807-5eb7be4a7769 1 Other Other +a43c2fe2-423b-4bfe-8344-76b61f8eadb3 1 Other Other +a43c3237-3b6b-4d96-8381-9befeada962f 1 Other Other +a43c52a3-697f-4f16-ad85-3d0f9cc1568a 1 Other Other +a43c54ee-563a-4619-82be-ce89d63453ea 1 Other Other +a43c5538-e971-4bf4-8486-6c579ed359e3 1 Other Other +a43cc6a1-8d1b-45c5-8e1d-a4539df90e30 1 \N Other +a43cd1ea-25ca-4095-b3dd-0f35f86a706a 1 Other Other +a43cf6f5-809e-467a-b26d-cd5d2b211b14 1 Other Other +a43d08f7-6b2d-4d9f-81fb-5ea25a5812c4 1 Other Other +a43d18c6-9b73-4b68-aea0-c1fc120a6709 1 \N Other +a43d5a8b-15e9-4668-add4-45fd658690b9 1 Other Other +a43d7047-0055-4623-beaf-80a548187913 1 Other Other +a43db030-a5a1-46f0-bcf8-e1dc44672205 1 Other Other +a43ddfa8-95be-44a8-9b13-a6f260ec473f 1 Other Other +a43e13c0-6c89-4d91-8ba7-aa7753085844 1 Other Other +a43e4114-30eb-451a-8547-01b5a46a5e2e 1 Other Other +a43e4a89-a1ec-4042-a49b-a0da7d9eaa76 1 Other Other +a43e4d4a-957c-4a11-8aac-23ad1dc1a8c6 1 Other Other +a43ea437-97dd-4cc1-bfac-6d716c098324 1 Other Other +a43ec159-3cd7-46b5-b65f-f94cb3176695 1 Other Other +a43ee0dd-9723-4723-b28b-789b30fb4ffe 1 Other Other +a43f150f-dda6-4b09-a52a-45fac07d1a76 1 Other Other +a43f5e72-fcff-4bc2-bf93-5b00705a015f 1 Other Other +a43f66e1-2405-4b38-88c1-7e62583ccc00 1 Other Other +a43f7ccf-f752-43fc-ac92-c86ff9344735 1 Other Other +a43f8d9a-d18e-4ee6-a058-a9b36d11d799 1 Other Other +a43fd7dd-cf47-44e4-b140-17bbfb8c0714 1 Other Other +a4400aaa-6ebb-4d38-9c4c-106dfd633d1b 1 Other Other +a4400b1d-dd5e-442b-8ce5-f51f7d01f12c 1 Other Other +a4401128-c9c8-4a79-8d0f-3a06a4afdd3e 1 Other Other +a4404563-6d82-4b47-a944-6f7cba70fe83 1 Other Other +a4404931-8385-4a45-b6c0-aec5f5ccb2fc 1 Other Other +a4404cc6-4e2c-4e8b-9ceb-f8ff269ae061 1 Other Other +a4409775-515a-46a9-8c98-a6c485860419 1 Other Other +a440a258-e292-4634-aae3-836d0518f290 1 Other Other +a440a579-ebc7-449c-96ef-5219968bdc33 1 Other Other +a441218c-292e-4fea-9b4b-4cbbc2ac363c 1 Other Other +a4412b88-907f-4582-961f-6775f25f39b5 1 Other Other +a44144b1-0bef-4f2f-8b81-05977dfe0eb6 1 Other Other +a441972b-c4bd-4332-9ae3-b8d31b3b11ca 1 Other Other +a441b71e-e13a-49a6-9e5b-c28698ae9ff9 1 Other Other +a441eda7-869a-468e-8d7a-6efa1ca02b31 1 Other Other +a441fe44-e824-4faf-958b-610ffe167a57 1 Other Other +a4420ddc-5ddb-42b4-af0c-5f98212449b5 1 Other Other +a44219d6-3c5c-4fff-a748-65bad3457232 1 Other Other +a442664b-2c62-4413-8dd2-d2b0f9b0973a 1 Other Other +a442eeda-ed40-4041-9279-2b9acd04fc48 1 Other Other +a4440774-2b18-11e8-bf1b-fa163e8624cc 1 \N Other +a4443fe0-9346-4196-a005-a1c94e381368 1 Other Other +a4447d8c-7328-4fcd-9316-84c370a05ab6 1 Other Other +a4448dbd-1682-491b-bd69-792660dfe190 1 Other Other +a44496a0-165c-4cc3-9f18-3a204e25e0d0 1 Other Other +a444d2fd-bedf-4e35-8a53-37319651febb 1 Other Other +a444d7a0-5f94-41d2-bd7a-3de32640d0d1 1 Other Other +a445044d-75e5-43ec-9df1-f4bef48917c3 1 Other Other +a4453fc8-aace-493c-a08f-1fc889be3527 1 Other Other +a4457c99-6264-44c5-88d2-5dbcd16fbf0a 1 Other Other +a44592dc-7dc1-4f2f-a526-96a6e39ae6cb 1 Other Other +a445b06f-a52f-43db-bf86-b64673c7863e 1 Other Other +a445dae1-633e-4963-8b27-fbe706ef33a5 1 Other Other +a445ec3b-bab2-4419-a3af-efd64851aec7 1 Other Other +a445fce3-f8ed-41bc-acfc-c25c0e615581 1 Other Other +a4461a45-c7b2-406a-a9ab-4a8bdd7c95d4 1 Other Other +a44663f9-243d-403e-be73-9a48b4e9bf96 1 Other Other +a4466f77-6554-4db3-be42-894f69754f3e 1 Other Other +a4469682-bd3d-42e9-8b79-f5b742f20379 1 James Other +a4469fd5-b14f-402e-b8a6-68a9b627d181 1 Other Other +a446b4f6-4d02-4ef6-bba7-8b810966d5ef 1 Other Other +a446b53f-2ced-4041-90ee-f032767c77c5 1 Other Other +a446d028-8800-4cb9-9b2d-d227a8e29811 1 Other Other +a446f26c-e253-49bf-97f9-7c6b12255e9c 1 Other Other +a447844b-d11a-451e-adb2-df158827b340 1 \N Other +a4479849-685c-4d3d-9d59-345c3ccdb613 1 Other Other +a447a9e8-59f6-4336-840b-c28fd9084ec0 1 Other Other +a4484f4d-aff8-4749-b335-a96396cb0a0d 1 Other Other +a44861c0-f6b7-439f-a8ad-382f35bda748 1 Other Other +a4487744-c5d1-40b8-831a-cfbee331864e 1 Other Other +a44897fc-49a2-45cc-a262-ea69a58c8ead 1 Other Other +a4490529-33cc-49a5-80e8-d5106549ea53 1 Other Other +a44906ab-dffb-483e-9d92-02da2f0fb8f0 1 Other Other +a449ed5d-d273-4db5-bfbd-1fe58f1a248f 1 Other Other +a449eded-3140-48be-9efd-27e2726d280b 1 Other Other +a449f2b4-d019-422f-9b1a-80cd57aaab2b 1 Other Other +a44a0d91-daf3-4d21-bd29-4a3a1cb289ea 1 Other Other +a44a0fc9-b4c3-4ea6-9991-6d45b237983c 1 Other Other +a44a2ebd-7842-4a7f-9dd4-908c92d4c729 1 Other Other +a44a4da7-392a-41b0-bbe3-7cb426c7c193 1 Other Other +a44a5104-0fe1-48f1-95f2-6fa2c3c5a9ca 1 Other Other +a44a6383-b267-4a53-b4a8-86a68845f8c7 1 Other Other +a44a6612-5f0d-49d7-829e-e84cd3296317 1 Other Other +a44a8e30-504b-4aaa-9732-3a278ddf8a8f 1 Other Other +a44b099a-34d7-4e64-96d4-aa9c9ef355b8 1 Other Other +a44b60a1-a129-4f04-81d2-64f7240b81c3 1 Other Other +a44bdb75-e09e-4b4b-954f-4a3eef4ff658 1 Other Other +a44be5fa-630a-44de-adbc-f84697f50a26 1 Other Other +a44c81ce-2140-409e-883b-f133c91ab805 1 Other Other +a44cc40a-12a9-4ad1-b27e-3c49cb2d91bb 1 Other Other +a44d1f7b-e0a3-454e-a62c-2fe25decd59e 1 Other Other +a44d21ef-1297-433b-916c-97ef8f63d717 1 Other Other +a44d6353-b590-4b82-8eca-80596f70d451 1 Other Other +a44d7995-5893-43c1-8cda-efb438dcc2bb 1 Other Other +a44d9e74-34ca-4e66-9c02-b666fb4f0890 1 Other Other +a44da1c9-0901-4a20-8da6-2dfcbd32ac75 1 \N Other +a44dd52f-cdaa-4084-b931-32bcb9961c79 1 Other Other +a44ddb0f-a89c-4ab5-9e05-1b0801cd3201 1 Other Other +a44df2bc-d88d-4152-a696-44a023eefaca 1 Other Other +a44e30f3-8a5b-449e-b7cd-9c86cbb120b3 1 Other Other +a44e7dfc-1749-4a5a-9cf5-6bb5461b704c 1 Other Other +a44e858c-45fe-45ff-8b25-f80d4518d3d9 1 Other Other +a44ea808-6d16-47f2-9ca1-1004aff73172 1 Other Other +a44ed8f8-4c24-420c-9c31-af67575b0cd6 1 Other Other +a44f04a1-a16f-4859-b6fe-437ca60edfec 1 Other Other +a44f80d3-1430-4211-9add-470e49b970c4 1 Other Other +a44f92f8-ed46-45a4-8229-0f55ecde5e77 1 Other Other +a44fa7e6-b509-446b-9f67-450b2fa13a57 1 \N Other +a44fc28b-1841-4284-9acb-aadf50fd1563 1 Other Other +a45017fd-e4d2-468f-96e5-207652eb5807 1 Other Other +a4503a17-73c4-447b-9fef-9e8c70461a7c 1 Other Other +a4504cf3-ddbd-4d02-b0da-38ca0ba8c659 1 Other Other +a4506d60-0190-4c45-8896-5d0b4b9c3313 1 Other Other +a450d734-5bc0-4a03-a0bd-22aaaa2aecfc 1 Other Other +a450e350-962f-4724-b6ef-ac3c0c16a520 1 Other Other +a450f029-f1c5-4ff5-88e0-5e455e37dcef 1 Other Other +a45127fb-6811-48da-a33f-02ed91f73450 1 James Other +a4513a2c-d8e5-4b53-9cb4-a0309b48a420 1 Other Other +a4514387-e45a-4ab7-84e2-6ddc630fd248 1 Other Other +a4514f87-a07c-48c7-a120-2209c460f3bf 1 Other Other +a451697c-0e06-46fb-a81e-db3f1fd53498 1 Other Other +a451c878-841d-4232-a532-c299e813803e 1 Other Other +a451f790-4139-4102-a06f-39cdc4bedebf 1 Other Other +a4521f52-091e-4693-8cd1-398bba2a7ce6 1 Other Other +a4524613-7c28-40eb-897f-22460fe60943 1 Other Other +a452e1d9-37c5-45a2-af3f-d4f6a74055fc 1 Other Other +a4535bb3-d077-47c5-84c3-173d008dcb9c 1 Other Other +a4536d5f-96b3-48a3-b9c4-ccbbc4eafd9a 1 Other Other +a45372c2-0a4a-4058-bacb-f72ef3d5e358 1 Other Other +a453d88e-1860-4a58-81e8-7945f148eb36 1 Other Other +a453f32d-b6bc-4170-93fb-8f0a0fe45aa3 1 Other Other +a454009c-0b56-4c67-ae96-27eed2858314 1 Other Other +a4545525-1bfe-4b91-ab7b-149d4b66f0b8 1 Other Other +a4547ab5-0752-47e2-8e31-c5ca00611403 1 Other Other +a454848b-f314-4c51-bc87-5740111d5624 1 Other Other +a45489f4-e54d-4181-bb17-8fb491ae12f4 1 Other Other +a454f411-8f9d-4cdb-acc2-a89f4d3ae306 1 Other Other +a454f519-ee35-4666-88d0-ab40b78b0356 1 Other Other +a455224a-b854-4208-a80d-e25729834aa1 1 Other Other +a4560e67-d064-4331-88fe-472e2e849ac7 1 Other Other +a4566a3f-2647-48bf-8417-0a1a0a00d07f 1 Other Other +a456fb04-7b44-4c9a-98ff-0bde989cf259 1 Other Other +a4578a2e-9c25-4f81-b85d-5973e2e1c899 1 Other Other +a457d5b5-e359-411d-b9dd-a05e96245b29 1 Other Other +a457de25-6fa7-4ef8-b595-0fd10ccedcec 1 Other Other +a4583591-942f-4296-9b5a-a624545ff7e3 1 James Other +a4584bca-ce56-4063-8ce9-2f27e42cad27 1 Other Other +a4588d0f-b984-4256-8ab9-534f6ec47fb1 1 Other Other +a458fb3d-e21f-4d4e-a235-3cd5268b95be 1 Other Other +a4590506-175a-439c-bd88-3c9c1ab347db 1 Other Other +a4591282-a93b-43f9-8d9c-38436d7dd3a0 1 Other Other +a459e450-ac03-4d9c-8a42-ad809f9fee63 1 Other Other +a459f5fe-caa9-11e7-9f82-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +a459f760-72c5-476a-a1f4-ef2b3dfee67a 1 Other Other +a45a09a2-901c-4992-9ede-f30dda1129bc 1 Other Other +a45af355-f42f-4245-8d24-0c50ef240e32 1 Other Other +a45b017a-7f77-47a6-8cc6-d52a2f5c4f22 1 Other Other +a45b0dc8-d5c9-4290-8a72-f6d000fdc627 1 James Other +a45b1e93-2581-41ef-8433-63a0730c7ac3 1 Other Other +a45b4342-b798-40c5-9c45-58108373c31f 1 Other Other +a45b69e1-13d2-40ea-8071-8073d169972f 1 Other Other +a45b6c10-55a8-4815-85a8-2cad73c7f01b 1 Other Other +a45b9c64-bb01-4f45-ae68-77f96cb4ee20 1 Other Other +a45bc209-e084-4cc3-ad5d-e56c9bd66335 1 Other Other +a45bd1da-7dbd-4d5c-9d02-f1be73211117 1 Other Other +a45bdc1a-6914-4029-a02f-e11497d83446 1 Other Other +a45c184c-2f0b-4ddf-a38b-410ecb77633f 1 Other Other +a45c1c9d-6e66-49f8-8f23-dd466692e44b 1 Other Other +a45c2ae3-532f-45b2-b082-62322494707f 1 Other Other +a45c68f4-6932-4ce6-b9f2-d136afbe870f 1 Other Other +a45c84fa-76ef-43c1-9830-c1e6a6e66480 1 Other Other +a45c9052-5956-4e5b-8913-61867fc982bd 1 Other Other +a45cc77d-d493-4a0c-83da-8e0b182fb4ec 1 Other Other +a45ce363-872a-404c-907a-494f32c04705 1 Other Other +a45cfc7e-3443-4d6a-9d7f-19ce180bb311 1 Other Other +a45d1f19-ad48-4743-b99f-0d6e14996be6 1 Other Other +a45d3726-ccc4-4edd-83d6-b7191e4e8a17 1 Other Other +a45d90fd-3720-4e9d-8104-46e97910b1a6 1 Other Other +a45da850-14bb-4191-8483-5a6431dff360 1 Other Other +a45dd386-78ec-4699-bfac-7574ac291168 1 Other Other +a45dffc8-96e3-42dc-aa90-ff296cb9f3e0 1 Other Other +a45e008c-80c5-4766-b003-2bc00d086620 1 Other Other +a45e5a62-0542-4d00-a3d2-33b00eb9f669 1 Other Other +a45e741d-7b94-4099-8fcb-5de612601dc1 1 Other Other +a45e85b5-16aa-43f0-81ae-668c98952533 1 Other Other +a45ebb20-9e68-4f24-a8ac-7387c4c819f2 1 Other Other +a45f9c51-7103-4c24-93ab-059b6b2eac2e 1 Other Other +a45ff07f-149c-4f25-9bf9-e188c5a9fffc 1 Other Other +a4603e13-72a9-479a-9917-7c06c0af9f09 1 Other Other +a460473d-ed13-4cd5-89a2-2fbcb0575c8d 1 Other Other +a46082cc-6555-4951-88e0-c35d8a03f209 1 Other Other +a461010a-c4d9-4ce7-82cc-5de39bbe1c17 1 Other Other +a4610e14-b817-45eb-a8ad-06cecc29c90c 1 Other Other +a4613d54-c932-47f3-8992-f7938b96f2a1 1 Other Other +a4614d3b-5be6-47dc-b44b-ca43981674d0 1 Other Other +a46169c3-dfbd-4217-99cf-526af6c3d587 1 Other Other +a46173c3-8343-4c82-a145-5886c09b2864 1 Other Other +a461b0c3-6a90-4c04-a021-35348a8aebfd 1 Other Other +a461c563-577a-4a1c-a21b-192c13e70e5d 1 Other Other +a4623893-6e97-4c29-aa77-9f661af55bd6 1 Other Other +a462780f-2a62-479c-a543-2ed931381350 1 Other Other +a46292f3-7e13-4e66-8330-44071f173b35 1 Other Other +a462b545-8ebf-42ca-a462-e2af29e63812 1 Other Other +a462c0d1-c1e8-4528-b931-8de7639cfe78 1 Other Other +a462f166-eb1b-4f12-9a21-51d8c3c204f3 1 Other Other +a4630372-67c1-4d70-96ca-dc3dc141d4fd 1 Other Other +a4632fde-6dbd-4fbf-86f4-24b982a510d1 1 Other Other +a46334d4-7b99-4685-8bdd-f75c8d18ed48 1 Other Other +a4635f40-3106-47bd-a444-686195ede43e 1 Other Other +a463ae88-bdfb-4549-bd76-9c52866bc83e 1 Other Other +a463f8dc-5acb-44d2-8603-ed78d5ac9bec 1 Other Other +a4641ed7-aa82-4096-b934-6430a8169e69 1 Other Other +a4642449-bbfe-429d-b804-ef5b34f8ff55 1 Other Other +a46427c4-8f23-4a38-82b8-a3d222b381d8 1 Other Other +a4642bf4-50cd-49c9-9800-4d8530025cbb 1 Other Other +a46462ab-5917-4512-a154-821cc0431a8e 1 Other Other +a464a6a1-6653-4333-9741-298a2046d394 1 Other Other +a464fd9a-2202-40c0-9de1-35b1ba1bb371 1 Other Other +a465073d-9d8a-40bb-99fc-4bfb1b56f36b 1 Other Other +a4657755-846c-48e3-a969-43c59c56bdb9 1 Other Other +a465b42a-3c9f-4dc9-bb9e-fe92c93e4f32 1 Other Other +a46615fd-6ac1-4c2d-b611-948eda72797c 1 Other Other +a4662c96-8bd1-450a-b137-03906fbd7983 1 Other Other +a4665e15-bbf3-4625-85a5-7ea0b99869ec 1 Other Other +a466ae1d-ee3b-4080-9991-c82736c85436 1 Other Other +a4671adf-2bd0-497e-892e-e23d4f0483cb 1 Other Other +a4672a2a-36ae-4ecd-9c18-f85e86c88a94 1 Other Other +a46760b6-9497-4fe3-a14d-d9659f13461b 1 Other Other +a4676885-6db3-4a37-b525-3d80840920a9 1 Other Other +a4677301-5ab7-4b73-94bc-9d8bbffcc42a 1 Other Other +a4678e2a-1f7d-4d64-9ea3-5e18dfc02705 1 Other Other +a4679e9e-707f-4871-921e-0c14246149b6 1 Other Other +a46820c3-a007-454d-bc8c-c6c1bf22e188 1 Other Other +a4684380-e939-4a85-bfc9-c46339e89b9c 1 Other Other +a46854e3-de7f-4cd0-bbb8-1d6e19657e35 1 Other Other +a46879b5-2824-4424-8e62-bdc4f67861d2 1 Other Other +a468d374-b047-4529-b1ad-3a3838ebcafa 1 Other Other +a468d45e-1843-4fd2-a342-30db71e64ef6 1 Other Other +a468e2fc-29c7-4dbd-a0c7-eddd60fc3b28 1 Other Other +a4692b91-b5d1-4199-915d-3273b5d4085d 1 Other Other +a46957a9-6e3b-4eba-b0ef-9b9abb6899af 1 Other Other +a4696397-b5be-4a0a-895a-69427490c200 1 Other Other +a469c5ed-86c2-4755-93f2-8bbefdf2eaf9 1 Other Other +a469f5db-cc38-4c92-ad47-a4736e708d56 1 Other Other +a46a7f05-a4b5-478c-888a-7bef8deccb04 1 Other Other +a46a8246-a563-4026-a9ff-3fb4baef4a66 1 Other Other +a46a8555-511e-4f32-93d7-3372431817a3 1 Other Other +a46a8580-9235-4e15-9ef2-a530229d4194 1 Other Other +a46a8d03-7754-42b5-9720-86736f11520a 1 Other Other +a46ae916-53a9-4fe4-aeae-26031fbbfd5a 1 Other Other +a46b2a34-fad5-4965-a36a-e1301759f987 1 Other Other +a46bb521-d248-4be4-aeea-07bef20c0aa2 1 Other Other +a46c3eba-1dfc-4efd-b018-e07bf4ec8673 1 Other Other +a46c9a5f-073e-4836-9d10-7105685693d2 1 Other Other +a46cde2c-23df-45fd-b6d7-ba15e1d65505 1 Other Other +a46ce0c5-d47b-49dc-bd03-5ccc06a8f219 1 Other Other +a46d7374-f934-4dcb-b180-9749e570c1d1 1 Other Other +a46d9c7f-3acd-403f-a862-41268e520fc6 1 Other Other +a46da5ef-8546-4151-9977-afad8ce025ae 1 Other Other +a46dbd3f-f29c-4ae6-b0c2-fe467dfece41 1 Other Other +a46e19e0-6bf1-443a-a07d-87ec737f7c5d 1 Other Other +a46eae7e-6275-48d6-aaf7-5c68899931cb 1 Other Other +a46ed7db-e107-4215-9f47-1f2c3ba95505 1 Other Other +a46f2724-ac44-4563-a889-c1c43923f368 1 Other Other +a46f6cc1-936f-45aa-9890-b44bf9ca6243 1 Other Other +a46f7e12-6d8b-4a6d-a5f4-2fe631569fec 1 Other Other +a46f7fcc-94ab-4a8e-a52c-546e495ab357 1 Other Other +a46f8575-1ecf-430a-ac7f-3ee7224fde0f 1 Other Other +a46fd81c-263f-46e2-ad34-b566a0e7adc8 1 Other Other +a46fde31-95eb-4507-9281-7fddbae6b87b 1 Other Other +a46ffb02-3276-4948-827f-52a6674b49c7 1 Other Other +a470352e-8108-402f-a983-fb6f943c6f6d 1 \N Other +a4706ed1-a4e3-43ac-9e51-88a84c698405 1 Other Other +a4707077-81c3-4219-884c-9df326f1b8d9 1 Other Other +a470c4b1-53c5-431c-98a3-5bcc9559f802 1 Other Other +a470cb9b-38b0-42a6-a21c-ec12029dfaeb 1 Other Other +a470fe65-685d-4fbb-ac81-3a375c8da961 1 Other Other +a47123a4-2a9a-48cc-8419-36a6025b4fd3 1 Other Other +a4719233-1c9f-49f0-a428-84cafe1459fa 1 Other Other +a4725542-7a88-4bda-b807-fc834175a3b4 1 Other Other +a4725b15-9ab9-41b5-91ce-3111102618ed 1 Other Other +a472bc19-4aa0-41ab-ac6a-4d30df68006e 1 Other Other +a472d546-6389-43a7-816b-02fb05f49255 1 Other Other +a472e131-220f-42a5-8bdb-999c852dedd4 1 Other Other +a4731f51-a7cd-421d-9546-1a82f67e224b 1 Other Other +a473896c-b279-4b2f-bf7a-b16c39018dfa 1 \N Other +a473f881-30f5-4f2b-9c5b-173b4eabcecf 1 Other Other +a474307e-cfc5-4227-b779-664cf1654227 1 James Other +a4743f41-a16e-4abc-9f74-63950d2e1380 1 Other Other +a4745fbb-1676-4a23-8d29-ecc3125f4237 1 Other Other +a47496bb-3b9f-4c42-adfc-4d4b229255e1 1 Other Other +a4749bd3-461b-4a86-b744-5ea562d8bddf 1 Other Other +a474c87f-5c0b-4d96-905f-fe2627277942 1 Other Other +a474ec93-1acf-4f23-be3a-9265e26bc750 1 Other Other +a4750790-454f-4748-8fb6-ca0e1e93ed42 1 Other Other +a475341d-0b70-4d62-a16d-4c73aec35100 1 Other Other +a4756c9e-0cea-4089-b5b2-43048571f205 1 Other Other +a4756f5d-9f80-454a-b4fa-76354a23111e 1 Other Other +a47579df-d8be-4825-8975-943448cdc03f 1 Other Other +a475870c-1eb0-449c-94fc-bed71f75a81f 1 Other Other +a4759206-1a57-4bef-bf5e-f3becf8bd15c 1 Other Other +a4763956-f027-49cf-9d4b-41392621613a 1 Other Other +a4765cdc-b17b-429f-8662-77fbd288367b 1 \N Other +a4768c87-cebb-41c3-900b-35a036b886ec 1 Other Other +a4768d28-bc86-44da-b0fb-66b57179af14 1 Other Other +a4769f38-bd47-4f78-a3c2-9f1fcc162518 1 Other Other +a47717ab-23c6-4491-bee8-ace919bca7f1 1 Other Other +a47734e7-e012-4069-8d1c-d516968e19fd 1 Other Other +a4774100-8497-4090-a3f7-c639757a59e4 1 Other Other +a4774f36-1d92-41a6-b308-7a3d6091eb4c 1 Other Other +a477adf4-508d-40cb-82ec-ed2998a21c1c 1 Other Other +a477cf6c-820b-459a-8f5f-91119fa2f7bc 1 Other Other +a477f758-25f4-4763-80d8-c369f245b439 1 Other Other +a477fa77-1b2f-4eb9-904f-b5c2c76811e7 1 Other Other +a47810d7-21b2-43e6-9e45-160b40e461b4 1 Other Other +a47866b6-855f-499f-9614-1dc725640160 1 Other Other +a4787a3f-101c-44fb-a015-976f68ed8d42 1 Other Other +a4787ac6-0f7d-46fd-937c-c82da064f0c5 1 Other Other +a4794924-3110-4b81-8ec9-df8c354f7f31 1 Other Other +a47961b6-ec57-4f5f-bfc3-4975fe12db49 1 Other Other +a47968e1-2aca-4d32-9464-04a320cd9c6a 1 Other Other +a4797671-cbbc-4c0f-9e54-3ab99e3b731c 1 \N Other +a4799b10-8e85-47f2-8b04-d5375d681efd 1 Other Other +a479bfd0-9a6a-4013-ae99-594116177205 1 Other Other +a479fd60-7a15-4f27-8ad8-48156d69c1fb 1 Other Other +a47a20e4-6e26-4f8b-9db3-2550f2c5af4b 1 Other Other +a47a3a35-5fc3-43a1-92ff-411a570e17d0 1 Other Other +a47a4efd-9ee6-402d-aad0-21377d910465 1 Other Other +a47ab89b-cb0c-4d22-a5be-cfe67a4ca83c 1 Other Other +a47b366c-5d8f-437a-9da2-d995f131b78d 1 Other Other +a47b5b59-b78f-49c9-a4c9-9ab9eb74c65d 1 Other Other +a47b724c-f344-4657-a817-a89bd273a0e2 1 Other Other +a47ba04c-08ac-488d-bb0b-ae5c59fcce4d 1 Other Other +a47bb002-bf46-4bd8-91f0-a6ba8fc2f995 1 Other Other +a47bc545-b335-48c7-b7eb-e5f795876e1c 1 Other Other +a47bccfb-401d-43c8-8d62-0f5050450745 1 Other Other +a47be709-b1db-4d8b-a741-0ee1a3609139 1 Other Other +a47bf558-73a4-447d-aa48-9c721318c733 1 Other Other +a47c289b-800b-4a72-9438-a0a840943357 1 Other Other +a47c538e-5ef5-4d54-a8ed-02a011eee456 1 Other Other +a47cad22-936e-4a10-b95f-160992b87cb2 1 Other Other +a47cadf9-fca8-4785-907a-ce0d43907736 1 Other Other +a47cfaf8-956f-49c0-9e60-2088a3f91046 1 Other Other +a47d0bb5-92cd-4422-aea6-5a657321cb19 1 Other Other +a47d4e58-f51d-4622-9ea9-9f4127351cc9 1 Other Other +a47d8c1c-cf56-4a5f-9689-6804c6ec30d5 1 Other Other +a47daa0b-f54f-4e70-aafb-e418f2fba3e4 1 \N Other +a47dd838-4cd0-4019-8dc3-f2cb441738ee 1 Other Other +a47dee81-b775-4ffc-8348-e8f4be98f00a 1 Other Other +a47df278-542d-4857-8fc3-2bdb58e5ef29 1 Other Other +a47e08c9-afa1-47fa-8eec-024ce69a0917 1 Other Other +a47e3d38-ad3b-4c52-838d-6d24212df937 1 Other Other +a47ea79c-b7ae-4426-99a7-6fbecf2f96ad 1 Other Other +a47eb271-e43a-41cd-8d1e-2da74126f049 1 Other Other +a47eb4b9-f04a-422c-913e-1c2a9429511d 1 Other Other +a47ed0fd-8099-4e40-a452-8e59c9249887 1 Other Other +a47ee418-3a48-4030-9844-bdb80d526fca 1 Other Other +a47f2798-975d-4c33-9248-c8fcca7d09c4 1 \N Other +a47f4f4c-4f1b-4100-8a0d-801ff2160e67 1 Other Other +a47f5d31-ccca-48b7-83f7-25d27fe6c207 1 Other Other +a4803b00-e3c9-4c66-9c61-9413cb45727e 1 \N Other +a4804efe-f45b-4dac-be71-008a099d4ac6 1 Other Other +a4808840-2cbf-4403-a268-6859568349a5 1 Other Other +a48126a4-8418-4224-8e90-919c36f6095c 1 Other Other +a4813901-e92d-4fdf-ad26-15f4822dc935 1 Other Other +a4813f6f-ffdc-4ded-ab07-85933913416a 1 Other Other +a481517a-8388-43f6-8f49-2bddc7d30a5b 1 Other Other +a4815b9f-7a2d-418e-a279-e47e2632b092 1 Other Other +a481d8e5-4a3f-4095-b3f7-31e0da03fa41 1 Other Other +a48225fb-bd10-4267-9870-1fa45311706f 1 Other Other +a482342f-044c-4b6f-bbcd-116796229a46 1 Other Other +a4823d06-e258-4165-9b94-b51d962b8f2c 1 Other Other +a4828ea4-10ff-4e5b-9812-c07d3a7e8aea 1 Other Other +a482fc91-b9c5-4af3-aad6-cd0081a7c90f 1 Other Other +a4833094-7c68-4356-8fc4-7f497a338b9b 1 James Other +a48335ae-7daf-4291-bdf8-97930ed363ee 1 Other Other +a4835716-8520-4762-b115-b496850557bf 1 Other Other +a4836ee8-533d-4615-aa6e-93bf6a52e19b 1 Other Other +a483d7e8-4d50-4d06-8e0c-448a938ea0a2 1 Other Other +a483dfe9-ada3-45eb-a046-07636026467a 1 Other Other +a48425c8-f270-4bef-9877-d9842cfdce08 1 Other Other +a48494f1-6ecf-4532-8f21-398aca842e24 1 Other Other +a4849a11-8a75-4be3-9b46-4247e02978be 1 Other Other +a484a775-0623-46c6-a10f-a7d8c036b2e8 1 Other Other +a484bb2a-7273-44d4-b229-3f999bbfa1cb 1 Other Other +a484c672-ce52-49c7-be4c-28199bd543be 1 Other Other +a4853958-98da-4881-a215-0f019c2f86d1 1 Other Other +a4859873-b4e8-492e-9a65-0274be228a8d 1 Other Other +a485b567-075b-4fdd-96cf-565bcf9bc840 1 Other Other +a485cfec-d123-42ac-97f2-0a0edfc7f887 1 Other Other +a48602dd-398f-47f1-9b22-eef0778d73a3 1 Other Other +a486beff-7f53-40c0-b28a-83cd163b95d0 1 Other Other +a486caf0-313f-484c-bf91-dd8f48b1512f 1 Other Other +a486d41c-8560-48a6-bda9-b2aa13d2b532 1 Other Other +a4874f0e-dded-4d9e-8e92-61872441aacb 1 Other Other +a48789ac-7896-4bc6-b92b-903dc834cd38 1 Other Other +a487a762-7dbc-4b92-8e4c-39b1dbee0c88 1 Other Other +a487bf58-b01f-4365-9e04-dd835a564510 1 Other Other +a487c4ab-330a-4d9f-8e22-dcc79f55cc17 1 Other Other +a4887352-2961-434f-be45-fcf9570b2509 1 Other Other +a488a5e8-4332-4ca2-9766-315f31d22f9a 1 Other Other +a488ec26-ca50-4eb5-ab9e-c051069559f8 1 Other Other +a4890626-513d-42a2-9c4c-408e96d6d1af 1 \N Other +a4891039-f40e-44d0-a205-19c60ea0d378 1 Other Other +a4891848-5ad9-4fed-ba1b-747df12896ce 1 Other Other +a4896ed5-3e2f-496f-814e-a6a650b02939 1 Other Other +a489c85c-3630-4315-8189-d4a60d80383d 1 Other Other +a489f837-c1a0-48a5-9a22-cef6b926f566 1 Other Other +a489fe9e-894a-4362-ae5d-68b783a2509d 1 Other Other +a48a2516-6400-4b32-a26c-94bee0b89ea7 1 Other Other +a48a29ac-0091-4bd1-8f04-0bb46a211370 1 Other Other +a48a3056-dec5-4188-8151-92bc0b514d91 1 Other Other +a48a3244-e8df-42ba-bad4-c46839a84207 1 Other Other +a48a543c-ac79-454b-a0d8-df002c67e863 1 Other Other +a48a7a3d-5ae3-4b0e-84a1-edf2d46b8e9d 1 Other Other +a48aa016-495a-402e-bd18-cdb575b3a969 1 Other Other +a48af1cd-dd7a-4051-a9da-b698b81401c0 1 Other Other +a48b2337-eeb4-489d-8e81-da22edcb419b 1 Other Other +a48b9281-d8cd-49c1-9da5-6e6c52b8de88 1 Other Other +a48c032e-1fc9-4e95-8042-1d4393154f4f 1 Other Other +a48c2162-710a-4982-9408-4c5f5051fb18 1 Other Other +a48c549b-87f9-4dff-a257-ecf19279ed86 1 Other Other +a48c639a-8af0-4256-a40f-69c19c09ddcc 1 Other Other +a48c6792-2de8-4439-b064-976686b7f7b6 1 Other Other +a48cc206-b365-473e-84f3-f71bca1b36cd 1 Other Other +a48d1a62-a55e-43fc-91e8-5f34d5baca3b 1 Other Other +a48d1d62-85c3-4b0e-8909-82c1323a1639 1 Other Other +a48d3c64-3eed-4085-8368-6dc6513e9433 1 Other Other +a48d4e45-50ff-4456-975c-231a15738252 1 Other Other +a48d84a8-9684-4a8a-89cb-8d16c01c1eb4 1 Other Other +a48d898a-01d8-42d3-8eb7-170b943f1538 1 Other Other +a48ded2e-5062-486e-8cbf-b996a9768c41 1 Other Other +a48df5e5-1b7f-4cde-be34-3ed8b7a977be 1 Other Other +a48edb62-3291-4067-bda4-a633bddeb370 1 Other Other +a48ee2d9-89a6-4ef5-9acb-906ee211a808 1 Other Other +a48ee314-f4e7-401f-90c2-1ccf0af0608b 1 Other Other +a48f01f4-1f3e-406d-9308-f9ba24b84418 1 Other Other +a48f0faa-5ce3-4ff9-b6ec-24ff687ab560 1 Other Other +a48f8cd2-3bc4-4511-930a-6d1abb7c9601 1 Other Other +a48f8e86-d09b-41b5-9751-cb7f749855cd 1 Other Other +a48f922b-39e1-4e85-bbca-1b44accb702a 1 Other Other +a49008f5-c27f-4a23-8cd1-59ab5c6b1ebf 1 Other Other +a4901ab9-2383-4580-834a-62b3a5220d4a 1 Other Other +a4903d7b-cb01-406d-9901-ff284ea01d55 1 Other Other +a490642b-8123-4e55-aef4-c2db1732d1a0 1 Other Other +a4906c61-b68a-4a75-bafb-d088d5bb0960 1 Other Other +a490f1a6-a539-4dcf-b712-98e358c2d63a 1 Other Other +a49184cc-3248-49af-8676-095f8ef1cb1d 1 Other Other +a491de56-abed-4b75-a80a-5e8a1f961954 1 Other Other +a491e232-5e3f-40a4-aae9-b0083c5aae2c 1 \N Other +a49200c8-7474-4cc9-8a48-cb461068a8b3 1 James Other +a4921f37-b7aa-47d5-89cd-5847519d3c9c 1 Other Other +a492474d-5b33-4b27-b98f-b2f4c70814e7 1 Other Other +a4924db0-8c11-44d6-aec0-6ecb78a6ab79 1 James Other +a49260e6-db59-4d2a-83ed-811c1de8d222 1 Other Other +a4929b98-d855-401d-906c-be7bfe835e05 1 Other Other +a492b399-db2b-46c8-8186-d68b0b16c3ff 1 Other Other +a492b7da-4687-4087-8eef-577f708087c4 1 Other Other +a492d6ba-9bd0-49d5-8e37-992663b23868 1 Other Other +a493203e-4b8b-4fde-9be7-c3254d5e61c0 1 Other Other +a4935c01-c757-4621-91c3-246531489c8a 1 Other Other +a493e451-87c1-4a97-a35d-341221213259 1 Other Other +a494326c-ad0e-4065-b48a-f944a40feb91 1 Other Other +a4943527-dc49-47a0-9971-89ebdcb281fe 1 Other Other +a49464e3-3bcc-4408-b6f5-424e19ae4ae2 1 Other Other +a494fd5b-d3cf-4af5-8a29-5aef443609bf 1 Other Other +a4951451-af43-4456-ba9d-d78c668a9636 1 Other Other +a49569e8-424e-4360-bbd1-bec29f8c95e0 1 Other Other +a4958db6-ae03-4021-86a2-6801417cacba 1 Other Other +a495a813-6fa2-490b-b33c-5c4a683a8573 1 Other Other +a495ac01-7f81-4caf-9232-912963bf1f63 1 Other Other +a495c24d-45ab-4730-b9da-b1523b7ea1ea 1 Other Other +a495d3fb-e78f-48ea-ae98-0065a70e0a18 1 Other Other +a4960c1f-cdbb-4e0b-90db-7c42bb52bd1a 1 Other Other +a496ac7f-232f-45a1-8884-d0bd34e8a373 1 Other Other +a496c3b1-2061-43c5-93ea-58e5bb9c1eb0 1 Other Other +a496c677-01e5-40fe-8600-548436a3b000 1 Other Other +a4970124-bb9c-49ae-8503-a7728b70be9c 1 Other Other +a49736bd-b5a8-4bfb-bf45-9c2c045033c0 1 Other Other +a497860f-548e-493a-94a2-0828bf07caf9 1 Other Other +a497b330-7d73-4a83-8d80-c754885f6f20 1 Other Other +a497ce7e-c73f-46e7-a8c8-b8e42746139c 1 Other Other +a497e734-3945-487d-8d94-5f6a0e1db768 1 \N Other +a497fa27-8efa-4e0b-a5ca-7988bc60c57c 1 Other Other +a4980d37-6d95-42a8-9804-83cb5aeb07f1 1 Other Other +a4986884-1d27-433c-874c-ed55665b6c83 1 Other Other +a498c35a-4b9d-4eb0-98ca-66c455d879bc 1 Other Other +a4991e41-bafb-4b88-8ca7-25cefcc31224 1 Other Other +a4995170-08af-40b1-bf5a-46aac69dacb8 1 Other Other +a499788d-4188-44c4-adf0-31713d68cfdb 1 Other Other +a499a393-300e-416d-8ece-bc3606ddd4b7 1 Other Other +a499d600-e5bd-4b9d-ba0c-3d5ab77c8be9 1 Other Other +a49a0caa-fd77-4c03-88fe-7ccb96f2d50f 1 Other Other +a49a2291-9f14-4655-8bed-b9ac71e3cfa7 1 Other Other +a49a4a43-4b85-433d-af68-e5b818db51f6 1 Other Other +a49a85af-aed5-4237-a930-d6c47163cde9 1 Other Other +a49ab172-909e-4833-9392-e584b4cc507b 1 Other Other +a49ab217-f117-4811-835b-54dc8c5f7710 1 Other Other +a49b057f-9bd8-4897-b370-7994c6608690 1 Other Other +a49b25bb-1822-475e-bc88-8d9850b170c2 1 Other Other +a49b3e57-d7cd-4037-89da-101219916108 1 Other Other +a49b7f6f-029a-47e7-bcf5-2f25bcd56f3d 1 Other Other +a49ba2ad-d142-4abe-8496-12a1db86ef98 1 Other Other +a49bccaa-8d11-48e7-a072-34f31ddf3f69 1 Other Other +a49c2ae4-e87a-46c8-8386-cf2bf9e2b8ba 1 Other Other +a49c3d18-411a-4490-ba6e-f6404c60f9f8 1 Other Other +a49c4585-6aa3-4c75-99f9-8c3553688d85 1 Other Other +a49d27f0-c550-4177-91a4-0754c0ac3d75 1 Other Other +a49d4b67-3bd1-4b2f-b751-ccbc7761393d 1 Other Other +a49d66ad-ea7e-4a9e-b354-cc25ee3ffaef 1 Other Other +a49d7614-9e58-4235-aeb9-336f2892052e 1 Other Other +a49d7658-e21f-4a0d-8317-120b2a2af00d 1 \N Other +a49d7cb5-9a94-43ab-99c7-11f64794bdaf 1 Other Other +a49da3d8-5547-4669-a7d4-b7014c62f432 1 Other Other +a49deff0-ad06-49a5-971f-53ae6fbbce07 1 Other Other +a49e48c2-8d45-44f6-8fb0-b8a7911c8791 1 Other Other +a49e6a72-272b-4331-8314-c0e4220727ae 1 Other Other +a49e7cb8-fb4f-4230-a49b-943d6ffa972f 1 Other Other +a49e9775-e037-4d29-8f5c-32c81c6e9ffb 1 Other Other +a49ec1a3-688c-4c64-812b-2be225ca094f 1 Other Other +a49ed09b-11fe-4955-afc9-4a9a8c82ddcb 1 Other Other +a4a005f0-a97b-4953-87f0-01e99270de52 1 Other Other +a4a0415f-32e9-4615-b95a-d10173fc252a 1 Other Other +a4a08670-fbfc-4083-9591-0279645a1449 1 Other Other +a4a088f4-8ae0-48c9-96a2-82dc3eb0900b 1 Other Other +a4a08cb9-1c02-4c8e-8559-a978e1f74829 1 Other Other +a4a0b20a-8941-4af5-86cf-216e64d3b0ab 1 Other Other +a4a0f631-0819-4a23-bd87-25f33de03a10 1 \N Other +a4a12198-26b8-4922-a115-0cde7d733f56 1 Other Other +a4a1993d-e621-42d2-a16e-722ce14f199c 1 Other Other +a4a1e67d-f38b-4222-a4fb-432a80a2d4ea 1 Other Other +a4a23460-ce3f-48a3-99c4-a1b0f3c05178 1 Other Other +a4a254b9-184a-421c-87dc-1389e644452f 1 Other Other +a4a259bc-e007-48f9-a885-864e9eb6f3de 1 Other Other +a4a27033-86dd-4468-9413-8aa6e43a063a 1 Other Other +a4a2907a-81b0-4d59-a484-b2610755c1d1 1 Other Other +a4a2a710-f268-4383-8ca2-aa4584997114 1 Other Other +a4a2a8c4-0c0d-49fb-8514-e227dc1129c6 1 Other Other +a4a2ade9-8079-4477-bd0f-2321b518c723 1 Other Other +a4a2ffcc-3c95-492b-8e84-30d8e48ddfdc 1 Other Other +a4a3007b-d98e-45c1-a423-7866c563aa1c 1 Other Other +a4a33ed9-a6b0-40b2-84bb-cab02d1dcf86 1 Other Other +a4a3558e-ef55-45b5-b784-e615cd01c2a2 1 Other Other +a4a3994f-404e-451f-9351-eae7d4a241e1 1 Other Other +a4a39fbf-cfb3-44da-8436-cf8a9aa07ba1 1 Other Other +a4a3ef50-e0a9-48f3-9bfc-6136cbfdb535 1 Other Other +a4a407f3-cf80-47ce-a354-6c18037fd6d5 1 Other Other +a4a46003-6d96-4983-a8aa-c4d01c29f963 1 Other Other +a4a48260-465a-4d8a-8fe5-397a8e5edddf 1 Other Other +a4a4abab-5b4f-437b-a7d0-c007377a8c36 1 Other Other +a4a4da27-526b-40b8-a946-337ad1984df9 1 Other Other +a4a4e077-8464-4b7c-a507-e26338264626 1 Other Other +a4a4ea61-92ee-47cc-90b9-c6edcc00df30 1 Other Other +a4a51728-0fc7-4ba8-b595-f0be32b2aad2 1 Other Other +a4a52bfc-bb91-478a-ac6b-19e393e3e599 1 Other Other +a4a53283-4688-40b4-87e8-ea78922c5db6 1 Other Other +a4a55f60-8ec5-445c-9ba9-2cd7e428e690 1 Other Other +a4a5664b-79f1-4bb1-89f2-7681876d2542 1 Other Other +a4a5ceeb-fb98-4bbf-b54a-c63b88136f89 1 Other Other +a4a5cfab-979c-499f-ae69-84da7ebc7da6 1 Other Other +a4a61ba1-c65a-4158-bd31-8fbb996f4a5e 1 Other Other +a4a64e24-8368-40dc-8261-c293e955e37e 1 Other Other +a4a66dce-90ae-4842-bd77-be78beb2e083 1 Other Other +a4a66ea5-a973-4245-bf96-056e55591b30 1 Other Other +a4a684cd-dd9c-4631-aec1-518cbaa5a480 1 Other Other +a4a685f2-8b9e-4555-a501-971d5b48f418 1 Other Other +a4a68fa4-7766-4820-865e-02932406667f 1 Other Other +a4a698f9-171d-4acf-9fc3-2819b6bfbf97 1 Other Other +a4a6a34b-d5fb-4b12-92d0-5c3d43801e9d 1 Other Other +a4a6e77b-6b37-47f2-950b-c291a3342d63 1 Other Other +a4a723a4-150a-492b-95c1-0c4099a8feb6 1 Other Other +a4a7323c-54a3-4935-9897-7432d49926e1 1 Other Other +a4a753c6-5013-41ee-b4c1-898fc84016d5 1 Other Other +a4a7a1b1-00a4-492a-ac2d-985d2039760f 1 James Other +a4a7addf-f403-41c4-bbb3-aea117ce6634 1 Other Other +a4a7f785-e9d2-4c9e-bada-4f7ef1c9d98f 1 Other Other +a4a7fef3-12e5-4f32-9fdc-7d0e3a8a410b 1 Other Other +a4a8095c-cda3-46af-b9cf-45da200db21e 1 Other Other +a4a838c3-0683-462b-af84-34c49ee3a76a 1 Other Other +a4a86c60-bb06-46f0-a85b-7905473c4e5a 1 Other Other +a4a89c54-3751-427b-9230-04439fc854c9 1 Other Other +a4a94961-41cf-410f-a2da-9170bf0b4a9b 1 Other Other +a4a94c0e-64cc-42b5-bd51-169744f18f6b 1 Other Other +a4a95190-ab56-4c3b-aeb9-cce4e40e09cc 1 Other Other +a4a98e36-eabc-40e0-85fa-8262ede66149 1 Other Other +a4aa4019-f145-4097-a56a-f124352530da 1 Other Other +a4aaa359-76cc-4f36-a297-1175df5a121c 1 Other Other +a4ab01df-b2b8-48ea-bf73-db39549f87dc 1 Other Other +a4ab2c5d-cbcd-42f1-8f04-6beebabf6c90 1 Other Other +a4abb4c6-455a-4839-a786-b0f70172c217 1 Other Other +a4abecb1-73a7-4585-b91e-3d463aa95999 1 \N Other +a4ac691d-47f5-4caf-8de9-42b152b7a17e 1 Other Other +a4ac920d-bdad-48f9-9f46-9f77610ae441 1 Other Other +a4ac9dfc-5868-4355-a60c-2bf9fef0938c 1 Other Other +a4acb49c-2dda-41ff-b813-4cf2aa356a77 1 Other Other +a4acd99b-392a-4638-bdd8-4ac453c1bdb1 1 Other Other +a4acf652-8d99-46bd-9871-b540347c0a18 1 Other Other +a4ad289b-4bc9-46b8-a626-734ce8bf8c64 1 Other Other +a4ad5062-a2fb-4727-bd24-b6eadc1ddc55 1 Other Other +a4add551-7e12-4f95-858b-8a90de2aeced 1 Other Other +a4adeaef-7bb5-4c09-be88-b79900884cb7 1 Other Other +a4adf75b-dba3-4867-9dac-5832a658928b 1 Other Other +a4ae2862-1ffe-48f7-a6d6-103bea10ada7 1 Other Other +a4ae320a-cc92-4d73-8208-343052e470cb 1 Other Other +a4ae3480-79c1-4643-b799-dc2f8101bc76 1 Other Other +a4ae54ac-d9b5-4546-b041-de4dfec4cf35 1 Other Other +a4ae692f-f455-4ea0-b33a-7f7ce8ad880e 1 Other Other +a4aea8f2-3810-4c63-9779-5d46325121ac 1 Other Other +a4aeaa46-d70f-42be-860c-086c8a45a445 1 Other Other +a4af2391-88e2-4399-a23c-9ef63342d14f 1 Other Other +a4af4689-2d86-46fd-915a-4e17f13e8286 1 Other Other +a4af5971-488c-4318-a098-3895e9482a49 1 Other Other +a4af6e3d-1fa1-4b7d-8f67-eb43670b98db 1 Other Other +a4af7504-755d-40f9-b8d1-b73cf9e62c26 1 Other Other +a4afff2d-b3d0-4816-b6d6-a04447ab98a8 1 Other Other +a4b044c4-8bcd-4db0-9b21-3cb00a2cb640 1 James Other +a4b0838c-4de9-4f2a-8b14-19e38ee9c5b3 1 Other Other +a4b08755-6239-454a-a3c1-102ed4d5b24d 1 Other Other +a4b0b637-d430-4527-a121-52ca910966a6 1 Other Other +a4b0d64f-152c-4a74-a6a4-5a6d0cda1c7c 1 Other Other +a4b0fd42-0587-4881-9dc7-f45ab715c3b1 1 Other Other +a4b10d4a-3306-4cfc-aab6-fcba91ae2e09 1 Other Other +a4b11c61-26dd-4b3d-9ae6-a7f9c96f78d2 1 \N Other +a4b120b6-33e4-484d-9b80-726b45a7459a 1 Other Other +a4b12d0d-8a10-4031-8d2b-444c9c57714e 1 Other Other +a4b1e80f-28e3-4066-b10b-541f6d63fd7b 1 Other Other +a4b228d3-279d-488f-bda2-9ecaa0c88e3c 1 Other Other +a4b22cc2-0254-4bc1-a4d4-ac56b6dbf052 1 Other Other +a4b2471f-4ff1-4db6-9a8b-07abf1c564ce 1 Other Other +a4b27836-7d2b-48b3-adb6-8fc4e43cf6d9 1 Other Other +a4b29a95-fa03-4248-bb92-109728ae06b4 1 Other Other +a4b2ceb7-1126-4919-bac0-41d4c4efc3fc 1 Other Other +a4b2e493-43e8-42c5-9305-e80c71902540 1 Other Other +a4b2e6aa-dacd-4f0e-9585-1cfb6950611b 1 Other Other +a4b34ce9-ac33-4a3c-a4e4-47c9babcabf6 1 Other Other +a4b36a9e-9fd8-467d-9bdf-8ae2229cc3f2 1 Other Other +a4b38a0c-0078-4f64-9dce-e8409c520c51 1 Other Other +a4b39492-2bb2-4ae4-9fe4-83a71b3f7a55 1 Other Other +a4b443cc-7a38-48f1-bf59-bdcae789ef25 1 Other Other +a4b490a0-2aba-4371-8756-44ec80736e1d 1 Other Other +a4b4b176-d3f3-4e99-983f-70b069ac8ea0 1 Other Other +a4b4fac3-1c88-4262-bdf1-772762f9a9c2 1 Other Other +a4b59cf5-99af-4601-ad2b-e7b3e1e9b2b9 1 Other Other +a4b5dc8f-643c-4de7-92eb-7b1a5e59374c 1 Other Other +a4b5fc96-d364-4b12-956f-cb29f994fe01 1 Other Other +a4b61b4c-c976-4e39-a49c-6f84b2e1b3a4 1 Other Other +a4b62a56-8c8f-44b9-b72f-bf44b9eb3131 1 Other Other +a4b62f17-8a1c-4986-ae5c-debb16fff7a4 1 Other Other +a4b71a46-9392-4df9-9779-61df545a7e07 1 \N Other +a4b720d6-9edc-43bd-a548-f7e225b3768b 1 Other Other +a4b74732-ac5a-48d3-8842-d04fdd48f55f 1 Other Other +a4b7a677-4648-4c0c-ac3e-f25d1d1d3855 1 Other Other +a4b7cd38-b18d-443a-852d-1f011a5d2c79 1 Other Other +a4b86ceb-be5e-4c70-b2f2-0461eedc5e0c 1 Other Other +a4b8d321-d949-4932-95b6-4dc3509dbf49 1 Other Other +a4b8e694-42f0-44b5-9419-bc2a2e31cb51 1 Other Other +a4b8e955-8ec3-4150-bd21-fab425f7b54a 1 Other Other +a4b938df-a4cf-4369-b8b2-d1109b3f046b 1 Other Other +a4b940cb-1c2e-4d32-a2ce-ba5beddf1b80 1 \N Other +a4b94953-9585-4da8-9813-3d4eb544c1a0 1 Other Other +a4b97a7c-f07b-4b39-a338-787e01137287 1 Other Other +a4b9ae34-7f00-4c7c-91cf-e9f9ebde210d 1 Other Other +a4b9b9b5-06fd-48ce-88e8-1582afe63354 1 \N Other +a4b9c11b-c610-4de4-afef-a95b87d5dc94 1 Other Other +a4b9e4e5-7f90-46a0-967e-e8edf39bbcca 1 Other Other +a4ba020a-3a58-4847-9668-6bc60c821c5f 1 James Other +a4ba1229-7b43-484b-8f5f-3990482064ff 1 Other Other +a4ba15e1-fb33-48a8-9c8c-3588f844fa1b 1 Other Other +a4ba540c-3dcd-41a4-9e46-f2787534cc57 1 Other Other +a4ba6760-5152-4f83-b6b5-39450ca36093 1 Other Other +a4ba8671-e9bd-4d1f-9da7-a9b87f35b769 1 Other Other +a4ba8fc0-3010-46a1-8548-80d1864adae2 1 Other Other +a4bacd89-896c-48d7-adec-549638c3266e 1 Other Other +a4bb0adf-02c5-4b88-a195-6999a95df16a 1 Other Other +a4bb0d08-8fd5-42dd-b7ff-52afc31ca325 1 Other Other +a4bb5704-eedd-469f-bc2b-66bd6f609ee5 1 Other Other +a4bb6bc4-25b9-4d1c-8d57-e446aac84526 1 Other Other +a4bc3a13-e09e-4621-ba69-d0bd546e9a34 1 \N Other +a4bcd97f-9254-48d7-8ec7-6dfb141480ce 1 Other Other +a4bd71cd-57a9-449d-8219-023e0df67267 1 Other Other +a4bd7e3c-e07b-42a4-b4ef-428680a84f9e 1 Other Other +a4bda143-05e1-4688-b0f7-1abdf210ef82 1 \N Other +a4bdafcb-1b9c-4b81-9458-e9486661c752 1 Other Other +a4bdbb81-13f6-4710-9a53-64dba86c960f 1 \N Other +a4be4068-c73e-47f9-b3e1-f2ef4c9f3e9c 1 Other Other +a4be411c-d080-44de-ac95-3b570d86b217 1 Other Other +a4be6a80-9c0b-46f0-9c7c-d5559ac398a9 1 Other Other +a4be73c9-dad3-4671-9806-039af22f8f16 1 Other Other +a4be855c-0f1e-43d3-8116-61cd4f15e932 1 Other Other +a4bed3fb-b84b-4fbd-9e0e-9db58aaeafa7 1 Other Other +a4bef812-7fdc-476e-adc3-c5556293e259 1 Other Other +a4bf3c5f-85d0-4a1b-be43-161b1364ebe6 1 Other Other +a4bf66a5-3242-4bc3-9c78-8b2ecd6f431d 1 Other Other +a4bf8a6b-6dde-4c7c-9779-0932d2708662 1 Other Other +a4bfbb33-5829-46a4-8e6c-2d34a1dd40bd 1 Other Other +a4bfe0fa-5f06-4a0b-ac01-94c4fb5ddee6 1 Other Other +a4bffe32-93a5-4932-a852-1bf959390a6b 1 Other Other +a4bffe8c-84c1-40e6-b854-60d0f829d2f7 1 Other Other +a4c0145f-b33e-4fa6-ba69-99c984714b08 1 Other Other +a4c06637-3ead-4163-8e46-ad21caae3c9a 1 Other Other +a4c0736b-93f1-471f-95b2-5fb35655e483 1 James Other +a4c0b6e7-0a77-4d43-942f-dfefc50a8b9e 1 Other Other +a4c0c7bc-0e22-48fe-8c9d-908b13396a03 1 Other Other +a4c0f137-00b5-4e6d-8ae8-9e985d9fc4f2 1 Other Other +a4c0fe7f-00d9-4be5-b840-22ee4145f200 1 Other Other +a4c11d70-676d-4724-a283-11b5948bf20c 1 Other Other +a4c14582-b2f4-4d09-a3ab-19b16b572087 1 Other Other +a4c18ae9-d2e3-47bb-b5d8-940e0d09a688 1 Other Other +a4c196c0-737d-4200-bf3d-3609eb590bc0 1 Other Other +a4c1bd5f-3106-4466-ad71-f56305540f3b 1 Other Other +a4c20667-63c1-4b11-b3ba-a71da372119d 1 Other Other +a4c243ff-5a6e-4bb7-a135-c61161f31479 1 Other Other +a4c2c911-3992-4f9b-8f52-d294e81eb154 1 Other Other +a4c2d60e-0705-444c-849c-182f83836c31 1 Other Other +a4c2e087-a5d1-4193-9635-52e5ade057e2 1 Other Other +a4c35f0b-c8ce-4b96-94ab-a80cc583d1b8 1 Other Other +a4c38fe9-ce3c-4ae1-9726-b8afa5b48999 1 Other Other +a4c393a0-1cf2-4cad-98e0-5f31a7486c35 1 Other Other +a4c40a2f-7bfe-450b-9030-c5a798e3b93f 1 Other Other +a4c40aa0-d742-4969-8d56-f60f9f45a969 1 \N Other +a4c413f4-4f55-4aa3-9b86-d2a9bb31078a 1 Other Other +a4c4357c-0ea1-476d-bf21-4a9242555eef 1 Other Other +a4c44ed7-da24-4508-8f06-2bf77f9e4aaa 1 James Other +a4c467c5-b7a5-4b4c-8a2a-30cc07973e82 1 Other Other +a4c48a63-0996-4f4b-bd0f-2ac5814cddb4 1 Other Other +a4c4b01d-58d8-4b55-a6f1-7c015b093c35 1 Other Other +a4c4e3bc-1818-4bec-a04a-ce6db16907f5 1 Other Other +a4c5b7e3-f2b3-49de-b902-85f62c851a4e 1 Other Other +a4c5cae1-a673-4368-9aef-456456f3aafb 1 Other Other +a4c5d5d9-9a0e-4ae2-814d-9b7a4814a267 1 Other Other +a4c5ec3d-aa24-4edf-ba4f-f9d012f3eb25 1 \N Other +a4c5fb20-5128-4aed-bfe3-9661384f3399 1 Other Other +a4c600ae-d9f5-4d2e-9bc6-cbeae7306108 1 Other Other +a4c64a90-169e-4fd1-9021-aecaf5366c2d 1 Other Other +a4c680f2-7320-48d2-b446-61c755722691 1 Other Other +a4c6bc3d-d4de-49f1-aafb-9889ed4939ca 1 Other Other +a4c6c9ee-30ae-4dee-abaf-062d3db3e926 1 Other Other +a4c6d1ca-d8bd-4f2f-8662-b893e83745b3 1 Other Other +a4c6d1da-c9b1-4c5e-bc6b-eb1d7875918f 1 Other Other +a4c6e288-410b-4889-adcc-81a16105d936 1 Other Other +a4c6e33e-b47e-4fa0-be0d-0b06d97cc26d 1 Other Other +a4c6f66c-30fd-4339-9a62-40dbd8e29403 1 Other Other +a4c70676-58a3-487c-93ff-07381c7ca0e0 1 Other Other +a4c7185d-54e2-4bee-9826-32df75fb65b7 1 Other Other +a4c739a6-1762-415c-8b0b-20af32d97462 1 \N Other +a4c75e2f-48e9-4487-b161-094a23b89711 1 Other Other +a4c79268-4f94-48dc-9250-9227f1fe6c33 1 Other Other +a4c79df6-e4d7-46a1-807d-2e341a10cee5 1 Other Other +a4c7d344-db21-44e9-8463-6a60ee22ae7f 1 Other Other +a4c80982-1683-4154-a8ac-fa06b8075ff9 1 \N Other +a4c82dd1-08f5-4cd9-844a-4e06d0e5a887 1 Other Other +a4c8517f-8590-4ce1-897b-8fae216f624c 1 Other Other +a4c851c4-9afa-45fc-b40c-79921905fa9b 1 Other Other +a4c93c7e-3692-4815-960a-ffb92c25ae23 1 Other Other +a4c96134-b74b-44ae-a035-5c4d1ffc99f1 1 Other Other +a4c9d24a-aec7-4823-974c-e4f86d481b76 1 Other Other +a4ca62a6-9a9c-4e8c-bdcc-fe382979d7b6 1 Other Other +a4ca6360-ffcc-4612-b217-3b37e194470b 1 Other Other +a4ca66db-1a83-4ee5-a3b9-a601b932a8b8 1 Other Other +a4ca6c8c-1660-4e08-8062-df368f0a42b0 1 Other Other +a4ca8d2d-1909-4ec9-ad65-2879080f2af0 1 Other Other +a4ca995c-ab0f-44fc-b4ce-e9528443ef19 1 \N Other +a4caaa72-aefe-48b4-8067-2f9ffc31bd3c 1 Other Other +a4cb1016-ab85-45e6-b3c7-34f9195c38a4 1 Other Other +a4cb3285-f1aa-4cbe-8de1-3ea95046ce60 1 Other Other +a4cb42da-00c2-489f-b3ab-c824bb5b1948 1 Other Other +a4cb87fe-7cfb-4f5d-8534-e6c48bceacea 1 Other Other +a4cbf54d-892b-4195-8aae-89ad5d9feed2 1 \N Other +a4cc501a-a478-4ebd-8bd7-00a9c3a53c7f 1 Other Other +a4cca99b-8c0d-4fb6-89a9-b3c2c6145b71 1 Other Other +a4ccfe97-553c-4bae-bd00-219cb48462db 1 Other Other +a4cd1664-4308-426a-9167-046e66c22b85 1 Other Other +a4cd3b0a-d773-4b81-8925-c9651562eb33 1 Other Other +a4cd66d6-d6e0-4108-994d-02d70653c2c3 1 Other Other +a4cd98cd-78a4-4e77-a2b2-bc97fe3771bc 1 Other Other +a4cdb3d7-48a7-4851-87bd-ee4bca64255a 1 Other Other +a4cddaf9-a0af-4cc2-a3cf-1fb337acbccc 1 Other Other +a4cdebc8-6ed0-45c0-8134-cc40ed1040f3 1 Other Other +a4ce115e-012f-4d76-ae9b-ad9c6b968f61 1 Other Other +a4ceacfd-87d2-46ec-98ce-36a8385cc48c 1 Other Other +a4cf12ba-9dfa-4a77-9900-2473ba1df726 1 Other Other +a4cf4432-70ba-450a-b69a-90f7cc612c30 1 Other Other +a4cf5848-0e13-4384-9e74-7e749a27c228 1 Other Other +a4cf5a78-95e8-4719-8fe2-816f46b4495f 1 Other Other +a4cf9219-fc40-45b0-a8a0-431b457b2ebe 1 Other Other +a4cf955a-5ea2-425d-96d8-f7929ad682d3 1 Other Other +a4cfb54e-8d2e-4fb7-80ac-88cdf79593ea 1 Other Other +a4d0533b-c494-415a-95ec-0e647a571eee 1 Other Other +a4d06412-eed4-4b81-a861-2861196fbdd2 1 Other Other +a4d0a657-db1c-4980-8bbc-b4dc81dee444 1 Other Other +a4d0c752-f2b0-4d30-85dc-03243fb6572c 1 Other Other +a4d0d9de-78ac-4ba2-8e98-4787de3a2d12 1 Other Other +a4d0f2f0-e6f1-4cf3-a0ce-3d6cc7087358 1 Other Other +a4d1559e-7d5a-4db7-a96b-1349b1212123 1 Other Other +a4d16ddb-86a0-4f25-98f1-e7514bb86334 1 Other Other +a4d18a52-06e4-42c6-b199-6dc734eb90d5 1 Other Other +a4d19411-d9dc-4cdc-aaa2-da9de6f50cca 1 Other Other +a4d1bc3c-d3a4-4b42-bef0-5aa0b4f88492 1 Other Other +a4d1bebd-6c17-4d0c-885d-9f291182655c 1 Other Other +a4d2242f-b04f-44bf-8518-d3ac9d299c7b 1 Other Other +a4d293bb-9ffd-46b4-9350-368750949b66 1 Other Other +a4d2982a-2b1d-4fa9-acf1-b9823a183092 1 Other Other +a4d29888-9c6d-4ce3-8f1d-b9ee830ac254 1 Other Other +a4d2c9ad-10de-46df-92d8-1367dd000b5c 1 Other Other +a4d2c9be-973c-46a8-9a34-93cb004c04f2 1 Other Other +a4d2e672-93a8-41ba-93d6-a6c0a25780ce 1 Other Other +a4d32711-5f05-44cc-8e24-b988f8e6b13a 1 Other Other +a4d33baa-6c71-42a6-9ace-87d39004bb8a 1 Other Other +a4d3521f-fa40-444c-94e4-bb723cc91b17 1 Other Other +a4d3a084-ae46-4cd4-92ab-488e249800a0 1 Other Other +a4d3a33c-046b-49a0-842d-34bad2a861dc 1 Other Other +a4d3a5f8-b425-475f-90c0-38bea8dd3574 1 Other Other +a4d419f0-eeda-4f7b-ba82-a9d4956dc426 1 Other Other +a4d42279-2dcb-4911-ab94-b395a7117a01 1 Other Other +a4d43a81-2430-48f7-b2cf-09732bee145c 1 Other Other +a4d43cbc-39f5-4bc0-ad13-378d46a7fcdf 1 Other Other +a4d47d54-c1c6-42b3-8eff-d650f4dc81a0 1 Other Other +a4d4e18b-9a23-43ff-94ef-e602a7f7e70c 1 Other Other +a4d4e76e-0036-4176-80cf-c917a08ead43 1 Other Other +a4d4fcca-aa79-4a98-af4c-50c7cf945d6f 1 Other Other +a4d5478a-e00b-4ce0-9675-fd802e7844ef 1 Other Other +a4d57218-2087-426a-a61a-a95f4fb81841 1 Other Other +a4d5e446-29d9-463a-851a-a5fad88e227f 1 Other Other +a4d60023-e9b8-49ed-af67-e6a3f3441184 1 Other Other +a4d62aea-3103-4a46-8d72-c7995de2b8f4 1 Other Other +a4d645e5-e629-41ab-a017-22c348637bc7 1 \N Other +a4d6c86b-1819-448d-a67a-5d4cc1493527 1 Other Other +a4d6f2ed-0bdf-41ba-bf1e-c586b6b0ab2b 1 Other Other +a4d6fecf-4026-42be-a745-40f84c1e89eb 1 Other Other +a4d72737-4939-49c7-b5cb-730c23dfc420 1 Other Other +a4d72a91-f2d3-4082-bb2b-e231eafa6bbf 1 Other Other +a4d79ae1-8911-4f2f-ac3a-46cc06c665ce 1 Other Other +a4d7ae9a-29a7-40fc-99ce-20718e6ef3f3 1 Other Other +a4d7d914-d053-4f2e-b0ae-e2ec25262cec 1 Other Other +a4d842bc-2739-4cee-965b-84fffc271aaf 1 Other Other +a4d85bc2-967a-4f58-9c9a-054575306f9d 1 Other Other +a4d948f0-fc9e-4dd9-9055-f5099a911f9a 1 Other Other +a4d99e36-c54f-4964-a03d-75eb1ab99323 1 Other Other +a4d9a095-d48b-4c7f-98d8-4401aef9dce2 1 Other Other +a4d9cb80-9755-4b43-94a3-e634f65f6bb3 1 Other Other +a4d9ee6e-0c26-4eb0-9c5d-401730ecde03 1 Other Other +a4da061c-6a29-46aa-a471-6dda2731c515 1 Other Other +a4da4052-0376-468a-bbb4-1e75c4947fda 1 Other Other +a4dacfc4-9693-4604-ae1b-d900e48cda19 1 \N Other +a4dad23a-177c-4964-9182-9136252bb668 1 Other Other +a4daff9d-ae7a-49b2-9086-82cb7c70fa89 1 Other Other +a4db8a84-39ad-40a1-aa59-529b3ee84218 1 Other Other +a4dbffec-8f74-459e-8eda-d975dc927617 1 Other Other +a4dc1b10-4e0b-42be-8009-b1ba6dba86e5 1 Other Other +a4dc2a5f-4a78-4e52-83a1-38bad21cccb9 1 Other Other +a4dd1cc5-1f61-48fd-84bc-33f22965677b 1 Other Other +a4dd60d7-c7d8-4425-b734-927733d3c819 1 Other Other +a4dde9bc-3b2a-4621-bc28-ec27e9badf0e 1 Other Other +a4ddeb72-72a0-48b8-aee2-9e0ba6f62c6d 1 Other Other +a4de21fd-91a1-4f5e-9f53-468fb7f239bd 1 Other Other +a4deb408-66e1-45e9-bc43-b078ecdbfa3a 1 Other Other +a4dec391-dfb6-4f39-8f8f-5374f6cce158 1 Other Other +a4df04e6-994e-49f3-b05a-a7eba187d65f 1 Other Other +a4df0e83-9a06-41b6-909a-76bf7f09d017 1 Other Other +a4df4843-88c5-41a3-861c-92ff7710391a 1 Other Other +a4e008c7-863e-4e14-b3e7-5428776e17db 1 Other Other +a4e054f4-01aa-11e8-81fd-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +a4e07f4c-157d-11e8-937c-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +a4e0e7a7-21bc-4202-990f-543f39eb11ed 1 Other Other +a4e1148a-4dd4-4e1a-a38b-29dc7da325e0 1 Other Other +a4e12711-d757-427b-8c6d-dcac93bccfb7 1 Other Other +a4e12da0-6573-43c2-bd2e-0a25045ec841 1 Other Other +a4e15b36-0d77-4557-92d0-c6b8f1dd19b7 1 Other Other +a4e16769-39ce-4824-8a73-81f56a984685 1 Other Other +a4e19b7b-16fd-49a0-ab79-ecccbe21a389 1 Other Other +a4e1abeb-e068-45e4-9264-022b04ddb736 1 Other Other +a4e2399d-0d71-4656-85b0-4c0febff9ea6 1 Other Other +a4e23bfa-7518-439d-b498-59288bb4339b 1 Other Other +a4e248e9-7135-4dbf-8597-3c6e8e856d71 1 Other Other +a4e2f3a5-d162-461e-917c-acac546347ce 1 Other Other +a4e30e41-bced-4e89-adc4-4f0cdc4465df 1 Other Other +a4e32f81-d19f-4e99-9f31-673a736602da 1 Other Other +a4e3a4c1-5d6f-4ac9-a11e-d676ea8c1504 1 Other Other +a4e3be8f-3781-4554-99b4-f4baae6fb1f5 1 \N Other +a4e3ccca-9c18-460d-aa0a-4bd05ee3dc5e 1 Other Other +a4e3e375-4bf5-43d0-800b-852108fe08a8 1 \N Other +a4e3e7b8-f958-4ee3-905d-def8055d5ab7 1 Other Other +a4e45507-1b1d-4590-b03f-e958f152aa4c 1 Other Other +a4e4c133-a82b-497a-898c-6972bbdad8d4 1 Other Other +a4e4e379-1952-44d0-90cb-37d44d2d456c 1 Other Other +a4e52e4f-ecd4-480e-a5fe-5fad9897b306 1 Other Other +a4e5434d-a44a-45af-bcbb-deed1f382e92 1 Other Other +a4e589eb-5b52-4773-b695-df0a7b910c72 1 Other Other +a4e59bf0-63d7-477b-abb6-880dfb9158d6 1 \N Other +a4e605fb-bd73-4780-89cb-4797143bc47b 1 Other Other +a4e60b4a-d9cd-4760-a37c-22736d6dd969 1 Other Other +a4e6616b-6fc5-4195-b984-d0fb2340bd81 1 Other Other +a4e666b4-3d43-45bc-a7ff-719a834d2d6b 1 Other Other +a4e6cce3-b1af-46d3-b26c-9f394a02197d 1 Other Other +a4e717e9-d219-4f5b-8bd0-6cd03cbe3ff6 1 Other Other +a4e79c6a-e31b-42fa-be33-377521af5b79 1 Other Other +a4e7cd54-1545-4a60-8e4a-e677f8bbf5cd 1 Other Other +a4e7efa2-1640-47b8-b7ae-6d53bc7137a3 1 Other Other +a4e81f93-191f-4ba1-ad8a-f21c833ec5f3 1 Other Other +a4e82e41-0cdd-401f-a8f0-0a11ad6e6559 1 Other Other +a4e84df2-d35e-4fc9-875f-9c0021a2bfea 1 Other Other +a4e85c8e-b7c7-4cc6-a62e-0e5a1f8afbde 1 Other Other +a4e86b82-95ec-47c1-be2e-13d53ab12b5b 1 Other Other +a4e86e09-fd69-471d-9eef-79cc1dbdefdc 1 Other Other +a4e8adc3-100a-402c-9929-c21cb5dabd68 1 Other Other +a4e8ca48-058f-448d-9b6f-55a337df1b13 1 James Other +a4e9717f-b5f0-4c98-91f0-7d13b2a9807a 1 Other Other +a4e9b145-7b4d-40e6-ac09-294eef59ee18 1 \N Other +a4e9f93b-c34a-4068-b9e5-7914c015cce8 1 Other Other +a4e9fa66-1fa6-41dd-92bb-a70a76f41b1b 1 Other Other +a4ea476c-6b10-4d9e-88dd-646b25a1fe06 1 Other Other +a4eaa4fb-0762-41d2-9b2b-7ff4976bff18 1 James Other +a4eaff0a-a173-4223-ade7-61daff67fa8e 1 Other Other +a4eb285d-f9bb-4411-8cb1-42fe4b40c15b 1 Other Other +a4eb3046-ce4d-45b1-aadd-f13521c8f629 1 Other Other +a4eb36d9-3ac3-479e-bc95-09564055bb5a 1 Other Other +a4eb4fc7-98a9-467a-8217-2dda96007b94 1 Other Other +a4ebede2-ff01-45d9-8d43-3f6ee1698e5a 1 Other Other +a4ebf212-f1d1-4753-b61a-aeaa8b3bacf0 1 Other Other +a4ec02bd-b0e0-4a75-857a-bf09e792d14b 1 \N Other +a4ec0aff-644e-4df3-b2c7-9e08a200f506 1 Other Other +a4ec2d9c-678b-4e05-870a-078156cb2a27 1 Other Other +a4ec3f6e-cbd2-4a72-8f6e-95842e6f95c4 1 Other Other +a4ec564a-b3bc-4a45-bf31-c5a088a8f27d 1 Other Other +a4ec78b6-0586-44c3-8454-e09a1061db3a 1 Other Other +a4ec8c80-50be-4e76-9506-0623873a52fc 1 Other Other +a4ec99c9-b6d7-4b2e-9bee-d460ee8f4d02 1 Other Other +a4ecb31b-9ca3-4162-9138-229f87450b9c 1 Other Other +a4ecd78e-a06d-4ffd-8f57-5ae594f69ac0 1 Other Other +a4ed2ceb-3009-4da3-b04c-26c26b3b578c 1 Other Other +a4ed3a8a-de2f-4769-a2af-df4fbd952930 1 Other Other +a4edb014-c643-4f10-8479-bf12c7d86f16 1 Other Other +a4ee163b-3cbb-427e-ae6a-af7b1623b756 1 Other Other +a4ee3aff-bdb3-41b0-ab5c-48481fca8922 1 Other Other +a4ee3b5d-0526-4e6a-954f-73d4a47098bd 1 Other Other +a4ee5edf-7dd4-434b-8989-711d8106abf6 1 Other Other +a4ee7517-6dfb-4f56-92dc-124f2c96b1ed 1 Other Other +a4eebdce-ca34-4182-8470-b7beabf7fbcd 1 \N Other +a4eee14e-26cf-4362-8903-4ffd6cbb7aa1 1 Other Other +a4ef1114-ece0-46a4-91ba-674431ac4a8d 1 Other Other +a4ef2d96-f81d-4b3a-9234-5b1b9bc580ac 1 Other Other +a4ef3b93-7524-4e97-b7b8-fe84ddc25596 1 Other Other +a4ef3ca8-0a3e-4582-9672-f3befb16369b 1 Other Other +a4ef6ec1-13ff-4cd8-9283-b141e505b626 1 Other Other +a4ef7908-c27c-4c99-b007-877b588c830a 1 Other Other +a4ef9027-5527-44a0-9dab-3261a033b8f3 1 Other Other +a4efb3ce-23b7-426e-b471-539fa118f64e 1 Other Other +a4efbc58-dbc0-4636-b8aa-4f5271114390 1 Other Other +a4efd737-05b6-43e6-b7a1-d746f1b025e6 1 Other Other +a4f06473-3969-47fa-a944-a78dcbdbe3a8 1 Other Other +a4f08c42-29b7-42ac-bd00-c21ae4932718 1 Other Other +a4f0c09d-761d-405b-b8c9-0f30004cbf9c 1 Other Other +a4f18653-1e8a-4966-ba9c-1d403510b0bf 1 Other Other +a4f1a44d-3d10-4dea-b9d2-8a2a128715a1 1 Other Other +a4f1afb4-c9cc-405b-b080-e3d95768b2e2 1 Other Other +a4f1f3c3-c145-46a6-a598-f712e9388a02 1 Other Other +a4f1f51d-5a52-42fc-a557-b43a41725b04 1 Other Other +a4f1fc3a-c59f-4a2e-aad6-77eac18e5588 1 Other Other +a4f20fa0-5106-429d-9e97-35d6ef182ee0 1 Other Other +a4f2496b-e823-48f9-9ac2-6bf098561deb 1 Other Other +a4f25f9d-b76e-45ef-a247-138c028606c8 1 Other Other +a4f2866c-68d7-445e-bc69-c64c6478033b 1 Other Other +a4f293c9-a8c4-421d-8e78-72b826c5ee8f 1 Other Other +a4f2b2d7-e6d6-420d-93a3-ef5a8286ec0a 1 Other Other +a4f30b65-fb3b-40b2-9a4a-5fa776f6ac66 1 Other Other +a4f30f66-c2b5-44ec-bd71-0b69e555ffef 1 Other Other +a4f36268-6ebd-45a9-ac96-e4f364a9dcca 1 Other Other +a4f3c363-50a2-4f3f-bf14-6a925b498be2 1 Other Other +a4f42895-9e06-4b5a-95db-ee2905e3b3e1 1 Other Other +a4f4499c-d013-48ff-be94-aa3ddc07539d 1 Other Other +a4f456fa-b7b3-445d-ad86-f04d1274a15c 1 Other Other +a4f4705d-e087-4163-8cd2-b87bbe167e32 1 Other Other +a4f49d83-33ec-4d45-9978-e37382a89687 1 Other Other +a4f4b586-1b74-452e-841c-6eb02ac1acf1 1 Other Other +a4f4b7ea-d781-42f6-831e-cf22cf92202f 1 Other Other +a4f4ee6f-3f7a-4b3d-9ae1-8d6b03a47a7b 1 Other Other +a4f5d9fc-ac57-436f-8c72-5a237b2c5070 1 Other Other +a4f60516-0aab-457d-a02c-c997046b58b4 1 James Other +a4f66fce-673d-4ac0-89c8-96b7736743d2 1 Other Other +a4f68b33-4db6-4da1-a314-3261a69388fc 1 Other Other +a4f69c06-9ef7-428b-92ac-d72ce0033eae 1 Other Other +a4f6ff71-ffc7-4a3e-98d7-75f65089c04e 1 Other Other +a4f7085c-11be-48fe-8dc3-648caa0c1139 1 Other Other +a4f79940-f54e-4e36-8bf3-15c0628230e9 1 Other Other +a4f7ea8b-5391-44ae-897c-bc0209f6a482 1 Other Other +a4f7fa44-4846-413a-9dd7-747b279b4de7 1 Other Other +a4f8251f-cb0a-4b26-867b-08bdb1927313 1 Other Other +a4f8334a-681a-430d-b2aa-603416206651 1 Other Other +a4f83441-38c3-4aa1-89ab-8504519973f3 1 Other Other +a4f83b72-d2b2-4ddc-8a1b-99bcb5898124 1 \N Other +a4f842c2-dcf8-4b75-bc77-d50eb808228f 1 Other Other +a4f85647-8145-4006-8d6d-0b8830a40563 1 Other Other +a4f863bb-15a0-4d25-ae3a-9bdc6b0ea926 1 Other Other +a4f871bb-10a4-433b-8358-b364e4cf4f6c 1 Other Other +a4f8a222-936e-4c78-abec-108b0e4a318b 1 Other Other +a4f8e5cc-68e0-40e4-966c-be88dde0c5b2 1 Other Other +a4f901fa-8a1a-4fc8-840c-74d6781c2197 1 \N Other +a4f9084a-8659-4eb7-9feb-a47767a9201e 1 Other Other +a4f9235d-fd9d-44d2-91c0-d4971e7f01b7 1 Other Other +a4f95bb2-2fed-4d8f-90da-c79db0c65610 1 Other Other +a4f97f2f-84a1-4f0a-9c9c-be309ea18891 1 Other Other +a4f99dd5-5540-4daf-9617-3ca8be2317b4 1 Other Other +a4f9b50e-88b1-4fa2-b55c-a1d2bdf6d7d2 1 Other Other +a4f9b51b-eaa1-4e9a-9151-c9ecd64eb06d 1 Other Other +a4f9ef98-e15c-49fc-b5af-4360d0befdd3 1 Other Other +a4fa040e-b1e8-4ae1-b103-fbe3dc259e17 1 Other Other +a4fa0a65-9c75-4879-b359-78806b44025b 1 Other Other +a4fa1382-e312-47d1-87e1-2547be7b9d69 1 Other Other +a4fa333f-51a4-4ee9-8c5b-d3b3da5b9e70 1 Other Other +a4fa61c7-05c0-4544-a6b6-9db800b984d5 1 Other Other +a4fa6cb8-e10d-419f-a2e5-5066180b30b6 1 Other Other +a4fac8a9-0b81-40bb-9332-e0bea7120eed 1 Other Other +a4fada18-4fed-4c31-a9fe-88d71277c397 1 Other Other +a4fae750-4970-4cbf-a931-2aa7e465e568 1 Other Other +a4fb0491-663d-494c-b1ab-3b8f2f2eedf3 1 Other Other +a4fb1158-0a50-491c-918f-d5da4e2f7596 1 \N Other +a4fb4248-36b4-4eae-9468-56161567060e 1 Other Other +a4fb48b4-4ae2-4306-8e41-0155eb444e10 1 Other Other +a4fb5018-02a5-4a35-81a1-39e3d4e4284e 1 Other Other +a4fb6fc8-bc3a-4dee-aa8c-6d404d3aac29 1 Other Other +a4fb7cf2-8938-4e89-92b2-64e01b673f4e 1 Other Other +a4fb7fec-7492-4913-93c8-f7623b632871 1 Other Other +a4fbb865-98e3-4178-a270-be0b1b3224d2 1 Other Other +a4fc2a8c-f18c-4422-a166-9df656a24b3d 1 Other Other +a4fc3308-aa7b-4d6d-b3c7-ac644d49b803 1 Other Other +a4fca1cc-733f-4fdc-b5bb-e623b294d482 1 Other Other +a4fd0b00-2fd3-47ff-a5ff-e8c23357ae9c 1 Other Other +a4fd6a6d-0762-49ee-a3ea-fda91f61a20e 1 Other Other +a4fdeda8-4b54-400a-b6a7-256aa8a45c91 1 Other Other +a4fdf215-0570-464a-984e-8b3f25e78d14 1 Other Other +a4fdf279-5504-4aaa-b8ef-f245e4a57e54 1 Other Other +a4feb44e-5d57-41bf-a37c-5a8b5d3e8705 1 Other Other +a4fedc06-eafa-473a-9113-7744901f2634 1 Other Other +a4ff3058-8b1c-40f1-8791-867ea751a2cd 1 Other Other +a4ff6430-b5f0-4321-aae2-a2dbc125ea56 1 Other Other +a4ff699e-8c4b-4174-bf6d-ecb84bbcf3cb 1 Other Other +a4ff84fc-d401-4a1f-8ce7-6e860f138972 1 Other Other +a4ff89e3-4149-405d-b760-f0138b76deb8 1 Other Other +a4ff9800-80ad-4f63-a8b9-e1513494c78e 1 Other Other +a4fff2b6-ce59-4c9f-9ae8-ebe2a55ace91 1 Other Other +a4fffcb1-8ba6-45bd-9371-7e0b0dec3a8e 1 Other Other +a5001379-940a-46ec-aa6b-0b09a2897ed6 1 Other Other +a5001e38-60b1-404b-87d7-42fed7d5f4d1 1 Other Other +a500221f-89a6-4547-b58d-3a8657afc250 1 Other Other +a5009239-12bc-47ff-a54c-fe64fc1a3c42 1 Other Other +a5013faf-c822-4571-8a4a-9ba065606129 1 Other Other +a50155be-0968-40eb-868b-183b14e9705f 1 Other Other +a501690a-5b9b-4db7-bf72-707bdb977cfd 1 Other Other +a501701e-4f0b-461b-84c2-ce58e12e4c54 1 Other Other +a501a30b-aa94-4c88-a6cd-6e12b2d5facd 1 Other Other +a501ed7c-796e-46cf-8dd2-2cf5c9602584 1 Other Other +a501f3e2-4213-49ba-8864-5be7b5970802 1 Other Other +a501f7ad-751d-4a28-a1c4-4fa41c4afc0e 1 Other Other +a5021272-f7f2-40f4-b605-76cf1db90d2c 1 Other Other +a5021fea-0323-4f28-afd7-da5e21f0dcf1 1 Other Other +a5027b3e-6690-4f43-a1a7-ffd15362d124 1 Other Other +a502a854-b3f6-4001-85c7-6ead765de168 1 \N Other +a5030469-e824-4acf-947f-3c3e0219a8a9 1 Other Other +a5030db7-1562-4a08-a160-2f818f79cae0 1 Other Other +a5030e0d-052b-4635-97fb-fefc2b8687c0 1 Other Other +a5031262-2414-495f-a342-cda3e9cb7e6e 1 Other Other +a5032492-355b-4b19-9adf-a5246979b513 1 Other Other +a5037d3e-582d-41a6-9833-b18723f5a16c 1 Other Other +a503875b-18e0-45c8-a0c6-714f9eb47614 1 Other Other +a503edf0-5398-4703-ba00-9561ea90daff 1 Other Other +a503f63b-2d9d-42e4-9300-920dbdd8d278 1 Other Other +a5040c29-69a9-4e67-a6ca-de722553a5c7 1 Other Other +a50411fa-b2b1-466d-b171-c6c60c9a4316 1 Other Other +a5041655-58be-440d-8def-0414b93667d9 1 Other Other +a5042ca0-78ab-4388-a1fb-c1d43c068bc7 1 Other Other +a5044002-825c-43a5-9d2b-faee7b7b6c9b 1 Other Other +a504c11c-3bb0-41c9-a3e6-2fbaf121b2d0 1 \N Other +a504e5e6-2dc2-4d66-822f-9a2953cf8769 1 Other Other +a504e88e-abbc-4235-99b8-b7d0f0861b3c 1 Other Other +a504f347-b12e-453c-a68f-417430780217 1 Other Other +a50507b6-6d2f-416e-a95d-d4f50c7a5496 1 Other Other +a50512d0-d3b3-455a-aebb-0c77823966c5 1 Other Other +a505a38a-62d2-42af-8ef6-0405f9446cc0 1 Other Other +a505bfff-3f72-40f2-82b8-e4dc7d84d387 1 Other Other +a505c53b-cafd-49eb-8450-fe74ac42e189 1 Other Other +a505c9f1-a225-4d0e-98e5-53b36cc81f15 1 Other Other +a505d985-4c91-4799-ab7e-a4b1716248c5 1 Other Other +a505dcf6-199a-4160-8679-d17af0ddc19b 1 Other Other +a505ec9d-4e3a-4dd5-8e9e-84d0eb7048c6 1 Other Other +a5069d5d-a650-4116-861b-371eda813cf3 1 James Other +a506b4cd-944d-48c8-96d9-12533607f35f 1 Other Other +a506dcf8-9465-4b89-a63a-1dee04a3e0d6 1 Other Other +a5074eb6-a0ec-450f-9136-05c8ac49f4ae 1 Other Other +a5077aa0-1228-11e8-a253-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +a507800c-411d-4a46-99c0-943185dee2e0 1 Other Other +a50795fb-e747-460e-9f59-d2b363d23b74 1 Other Other +a5079d50-1ea3-4c5e-84dc-0126d511833c 1 Other Other +a507b03d-768a-4137-946d-75e0206627b1 1 Other Other +a507b0bf-d816-4911-8064-fe96e03b515e 1 Other Other +a507b2e9-5b28-436a-b306-4c57c441f50c 1 Other Other +a507dcd8-a8c9-411f-be3f-602d1de1f9c7 1 Other Other +a5080624-f09a-43cc-84a2-df55f00c9eba 1 Other Other +a508123a-fb95-420f-9d1d-c27403a9ad52 1 \N Other +a50870db-2f62-4a1a-b872-6ad617a4044a 1 Other Other +a5087f24-ac21-4669-a5e7-507ae2ca1f52 1 Other Other +a508821c-1990-48e8-8b92-080505a159e3 1 Other Other +a5089b71-874b-4797-94be-fdcb6ac51329 1 Other Other +a508db9f-b200-426d-a571-1e170619a73c 1 Other Other +a508f684-865d-4431-9b5c-0572b799645a 1 Other Other +a508fdb3-bec0-454f-ab3b-d7979c9ceb1a 1 Other Other +a509128a-03ad-4a79-a931-295ddbf4af52 1 Other Other +a509209b-a0c1-47db-9798-4228d6c4ec50 1 Other Other +a5093794-73e0-4aec-8749-3377a87ebf65 1 Other Other +a5096a1d-fba6-4676-9795-aa25d651bfb6 1 Other Other +a5096b34-32ef-4931-ae36-d167305e3b8e 1 Other Other +a5096fff-0cd4-4de6-abaa-eb9f58e1c985 1 Other Other +a5097217-bff4-47b9-83f6-fd33e9fe36e2 1 Other Other +a509d1b5-1b16-4359-894d-2443ab51cbbf 1 Other Other +a509ef7f-d71e-41b8-aca1-a308a6213df3 1 Other Other +a50a118e-8d09-4768-b5b6-2d2d9cb2fa65 1 Other Other +a50a5d11-18f0-46d3-97c3-a41f6ed2a0f8 1 Other Other +a50aa8c3-cde2-42e1-bed8-2eeaafc69a95 1 Other Other +a50b4562-e031-45f3-a4ea-dfcdbfe98b43 1 Other Other +a50b4bc9-dec4-4fb7-97da-975634f6e345 1 Other Other +a50b7328-767f-4e4e-92fc-a0ce933015df 1 Other Other +a50bcfc5-8f02-496e-8460-7f9894e7b407 1 Other Other +a50bd5be-a13d-4def-9427-7770b7da2dd3 1 Other Other +a50be6c0-93cb-41d4-a67c-fa3e0a2d558c 1 Other Other +a50bfe9d-30db-448d-b92d-9587404a2d1a 1 Other Other +a50c0749-ecf3-4fa9-9bac-e9adfa64d995 1 Other Other +a50c0ab9-7449-4c61-8bac-1b45ef9f9a1e 1 Other Other +a50c1c70-365f-4d20-81d3-38a1a239cd4c 1 Other Other +a50cb7ac-5077-401a-a78f-b7eb104bf5a1 1 Other Other +a50cce4f-a1a2-47b4-a495-e83ff6e67359 1 Other Other +a50d53c7-438a-47bd-8bd7-ec794d94338c 1 Other Other +a50d9f8b-3a0a-42d0-a737-9dd50839b882 1 Other Other +a50dc99f-1af4-48c5-a828-6f02a3d13fbb 1 Other Other +a50e34a8-4398-49ca-9351-ecaf82fe3ea3 1 Other Other +a50e38f8-f252-47b2-ac07-536ba97000b5 1 Other Other +a50e3fba-39c9-46b1-a347-e86869adb0d7 1 Other Other +a50e7f29-541c-4a9a-aa2d-f399c168d371 1 Other Other +a50e8dde-6ba0-43f6-bea2-b076906be949 1 Other Other +a50e91c0-1a30-412d-8f8f-7a2f8bf8bf8f 1 Other Other +a50ee57a-6e5c-4f58-82fb-f82e175491c9 1 James Other +a50f0186-00cc-42c8-904a-4a9ab3393593 1 Other Other +a50f0561-615c-49f5-a4cd-5f4b67019ab1 1 Other Other +a50f27ab-2dfb-4e63-bbf4-c479b777661c 1 Other Other +a50f964e-d815-4cdc-89cf-3f569cebd2a7 1 Other Other +a50fa2a8-8fe5-43d5-bf66-678deabe748d 1 Other Other +a50fc389-ae9d-4c7c-ad2b-2c5cf3250e9a 1 Other Other +a50fdebf-b7a1-4c44-b933-4d4c7c9e13c2 1 Other Other +a5106abe-e8f1-440b-98ee-97c6d0d3d355 1 Other Other +a5107486-d217-49f8-8df7-889acd69ca99 1 Other Other +a510f2ea-d928-4435-b458-1270797ef0c9 1 Other Other +a5110b08-17aa-4199-a7e8-e9f9ff0ce4c0 1 Other Other +a5111f75-c99e-47f7-a310-434396a4031d 1 Other Other +a5113dd1-25d0-49f8-9bb0-dc7dbebfbda5 1 Other Other +a5114a17-675e-4cd2-b3a6-210385a41984 1 Other Other +a511718a-d7ff-4cef-a12f-b812a2278a8e 1 Other Other +a511f4a3-1b52-4edc-a95e-85f4e764264c 1 Other Other +a5121e0a-bf9d-496a-83b8-5ecae98c0592 1 Other Other +a5124ba2-40a2-4023-9d27-8495af2eaa42 1 Other Other +a512899e-b78f-4f7a-8b6a-3c945b9d8dbc 1 Other Other +a51296e7-2c26-48fc-937d-81a12ddd3bbc 1 Other Other +a512e638-4014-4d70-bfba-20219b70b83c 1 Other Other +a5132b68-38ec-4d66-8443-1ead5163a248 1 \N Other +a5136503-b178-4efd-ac33-32d9a0de0c2a 1 Other Other +a5136f20-b6be-4a89-8ad0-608b7ad6fccf 1 Other Other +a513a190-f741-4a58-8bdc-34b5abd2d324 1 Other Other +a514ddde-95ac-4753-89bf-6466b6911461 1 Other Other +a514de3d-ef7e-4587-833c-e873d0781bf6 1 Other Other +a515269c-4d6e-4def-a3d9-931063f1c393 1 Other Other +a5154de3-36b2-4fbc-b472-85bb8c5093d5 1 Other Other +a5155dac-3acd-4ddd-bbda-0815a5813f40 1 Other Other +a5158b04-5e32-4638-899a-ac7354b90b4a 1 Other Other +a5160ed7-3c44-409a-9a81-9d3fe0707e4c 1 Other Other +a5164c96-fa57-4ddc-a582-8124f9649708 1 Other Other +a516673c-63ba-4036-b286-0c3120dc45f6 1 Other Other +a5166c7b-d6e9-4509-b531-5f9aac038ce9 1 Other Other +a5166cc9-36b3-4880-9a00-eb81cc61d2a0 1 Other Other +a5168bf3-9f66-44fe-ab5e-be9970d9c5d9 1 \N Other +a5169a92-ea74-492d-ab3f-d0f362979264 1 Other Other +a516be3a-7a6c-4f22-bcb6-959f07f05e54 1 Other Other +a516e7dc-3793-4a2f-8eb0-496157dd0a72 1 Other Other +a51721ab-82f6-4d5d-9a82-a1524e0895a0 1 Other Other +a5175b14-e9c2-4508-a745-588d23cc8616 1 Other Other +a5178e5f-0b16-4e32-acda-468dd5fcbf61 1 Other Other +a517d291-1fbd-4440-abf5-1aaad81e74d7 1 Other Other +a517f0ba-d6ba-4404-9e72-9a797f27ba6a 1 Other Other +a51807b9-0049-4f6d-9418-2aa266e79802 1 Other Other +a5183703-ea62-4997-b698-3f7197d8607e 1 Other Other +a51887c9-10b3-432c-9dbd-eed3d38f2c67 1 Other Other +a5189c1e-eea2-468a-bff5-8b9bfc75a0eb 1 Other Other +a518b961-4906-4105-9a7c-680307cd1418 1 Other Other +a518e462-5610-498f-849f-d155f5726d05 1 Other Other +a5190ba0-2e69-47c2-9de0-3514c518cc21 1 Other Other +a5191749-df94-4a37-9941-28b29e66c21a 1 Other Other +a519b26f-bb80-4806-a8e5-3bd6ac13cf94 1 Other Other +a51a13ac-3173-489f-b2a8-3096e6c0b2d3 1 Other Other +a51a35b5-cacb-4795-a8c7-d105fa9d4702 1 Other Other +a51a4b82-4ade-4c7d-b524-bead261c7bda 1 Other Other +a51a9cf6-ca38-4210-8777-9628375e3f5a 1 Other Other +a51aa039-a616-47ad-8eaa-a7d4f1dfb43e 1 Other Other +a51ab744-c370-4baf-b2c6-97d6047146f3 1 Other Other +a51aed1f-5c32-4d3d-b96a-74ff8019f42a 1 Other Other +a51b6e4b-9ed3-4ffb-ad84-d2570970445b 1 Other Other +a51b943c-291a-4462-91fb-cbc5b0095feb 1 Other Other +a51c1465-3372-4d49-92fd-cfc6205ecdc7 1 Other Other +a51c212a-45ca-4d5e-9c09-4c5ad6155c4f 1 Other Other +a51c2170-8007-42d5-bd2b-6ded1b85936c 1 Other Other +a51c683b-5bda-4c48-a646-ea88c095adef 1 Other Other +a51c7c6e-9408-4220-b3f2-399d86f7c06d 1 Other Other +a51ccaf9-dfb5-4bd1-9a77-56a73e1d6b90 1 Other Other +a51ce386-638a-455a-8c19-b8e993ea7b63 1 Other Other +a51cf272-0c58-47d8-8d30-8e23eacb27db 1 Other Other +a51d2180-8f3e-488c-bd51-cde265136e2c 1 Other Other +a51d3c0b-183c-4b2d-b508-9805efa0083c 1 Other Other +a51d60b8-9b7c-4744-abbb-b4ce69578dac 1 Other Other +a51d94c3-208d-4ad7-894c-cb13fee3d80c 1 Other Other +a51dcada-e808-4d58-a2ac-b4f3c4fd1016 1 Other Other +a51e14ac-a289-40ae-bd44-9691a15d7c3b 1 Other Other +a51ef8c6-5462-4e02-b26a-0b253e545f71 1 James Other +a51f2a37-2986-4fd9-8b0b-2da82055cf8a 1 Other Other +a51f3e50-d6d3-4d77-89bc-392d26844710 1 Other Other +a51f962f-debe-403d-98d6-592a8f9a27f1 1 Other Other +a51fe078-47ac-4a57-9607-0482475318ee 1 Other Other +a5200be6-9c37-4b66-829f-74657e4bd6c0 1 Other Other +a520570e-80f9-4d35-967b-1f10e9eb6ee2 1 Other Other +a520b7c7-d451-4f21-8e08-c1427389e2ac 1 James Other +a520eb2e-b6eb-4baf-80f0-4faba3640b79 1 \N Other +a52137b3-2e2a-4119-8650-218aef5bf8e6 1 James Other +a521658e-4dc4-4cad-aca3-4a15c177e24b 1 Other Other +a521b13b-dfc3-44e4-a9b1-4f3be89e8700 1 Other Other +a521d395-8049-470e-8b8c-fe2f0d642375 1 Other Other +a5222671-1412-4f04-aea0-75732331ccb7 1 Other Other +a52251f0-4f2c-41c3-b624-6d5644d24a27 1 Other Other +a5226682-86c5-4aa0-94fd-6e109d3113df 1 Other Other +a5229513-2261-47f3-82be-e322417632f4 1 Other Other +a5229ecd-6844-419c-85d7-fd994d3d3c27 1 Other Other +a522e31e-ab05-45ab-88fc-941abb9aa67e 1 Other Other +a5237e2e-4fee-4b0e-b0c9-c86a3ef2f849 1 Other Other +a5238e64-2f2c-44f5-aa01-75612be72e1d 1 Other Other +a523a8a6-1307-4c4d-8206-c1a3bd7923dc 1 Other Other +a524792a-4eb5-489d-9e11-4ff51698a315 1 Other Other +a524930f-785f-4152-89df-4b421fc225d5 1 Other Other +a52494a8-4198-4144-ba06-f49635929fb8 1 Other Other +a524a6fb-f382-4096-86c6-4c0f12f425db 1 Other Other +a524adff-152e-425d-ac52-b9c7df18befc 1 Other Other +a5250006-5cdb-4a0b-9104-42a34fe0e796 1 Other Other +a52553ce-1581-4b1e-bb76-c3eec72d07c6 1 James Other +a5256c10-849f-4845-afc6-995d8e9ee994 1 Other Other +a5257f3d-0807-46a4-8ac5-ed89270f5966 1 Other Other +a5259b2d-8982-4a7a-97f0-980be0ddb068 1 Other Other +a525ba8a-e28b-47bc-ab28-4d3647ac2672 1 Other Other +a525fbc9-b2e1-458b-bb4d-671719cbdbb5 1 Other Other +a5261605-432e-4c28-9c41-bd5b9968bd43 1 Other Other +a5266319-f307-4cc1-a409-da39504bdefd 1 Other Other +a5269c76-ae0f-44f0-a75c-6546736785a9 1 Other Other +a5269cb8-1b98-4a58-a0ba-f42d9809441c 1 Other Other +a526c732-3935-4b25-a564-5ca7039a896e 1 Other Other +a526e285-9b45-496f-8483-2a796865eed2 1 Other Other +a526e40d-5612-4be0-b96d-8fd3063c2ea5 1 Other Other +a526e896-fa1b-4911-b2c4-4eff07a21610 1 Other Other +a5270535-8563-41a0-8616-34fcab36b4f1 1 Other Other +a5271618-3cd2-4e5c-a721-c2e74e871650 1 Other Other +a5272bc0-e08e-4ef2-9a28-851b2c62bbb4 1 Other Other +a527a46f-3435-4212-ad7f-e6fd7ad31503 1 Other Other +a527a934-a81d-4f8b-bd5b-9120f341d885 1 Other Other +a527abc1-33a3-4fe9-8a86-0c71de9ef333 1 Other Other +a527e1cc-66ba-42b2-bfb1-f56277b175ee 1 Other Other +a528203d-d8f3-4059-951b-fbc4d2f5f7fa 1 Other Other +a528329c-30b8-4f78-b362-db5a4db12c37 1 Other Other +a5284c1e-87bc-4864-bd31-a57cc91dd79c 1 Other Other +a5289ddf-cf81-4165-930a-0d3382071504 1 Other Other +a5293b32-e99f-48a3-adb6-0e887132b36c 1 Other Other +a5296457-386e-4dce-9885-0d43ae7ffe5b 1 Other Other +a529ae5b-d74c-4785-8905-53229639220d 1 Other Other +a52a18cb-2c75-4ece-babd-8a4692afd8ac 1 Other Other +a52a5512-ac9a-4197-b2a2-6d0b30778dce 1 Other Other +a52a9e10-630c-461a-a7ef-1fd8b540a010 1 Other Other +a52aa225-b22f-45b1-bcae-c378096248c6 1 Other Other +a52ab17c-4551-4a94-b24d-0cac0de8e505 1 Other Other +a52abaec-a7dc-49fe-a33b-897ef23150f5 1 Other Other +a52af76f-af91-475d-b52d-94aea1bdfd5c 1 Other Other +a52b17d2-df94-40f9-bbef-ebd5cbe8d9aa 1 Other Other +a52b59b8-a3fa-41ff-9e86-3e874799665f 1 Other Other +a52b670b-09fa-4020-995e-b5ba325a367f 1 Other Other +a52bd9c2-7b0d-4bbc-897a-a13ad0b4f80d 1 Other Other +a52c05fd-efe8-4d44-8143-5d7467ead5f3 1 \N Other +a52c47b0-401f-4640-a223-3444256cf953 1 Other Other +a52c9a38-1e44-4a16-864d-596c6304a10f 1 Other Other +a52c9c07-7ca0-4c14-b569-8f0c9fe15668 1 Other Other +a52cc8b8-c409-45e4-a184-c433c308150e 1 Other Other +a52d467f-609f-484d-ba75-926eea25a2cd 1 Other Other +a52d8461-38ad-4b78-bb32-dd967a919ef9 1 Other Other +a52ddc88-1380-4601-aa2b-751f2c9063f5 1 Other Other +a52e0a18-f95f-45bd-a380-c49000974786 1 Other Other +a52e100a-7e4b-45db-93a4-84f9c29dab94 1 Other Other +a52e9108-83dd-4292-97ac-1b847e2a9fb9 1 Other Other +a52ea594-736e-40f2-986c-f658b5bddab9 1 Other Other +a52ed70d-3601-439f-82bd-1446bdba189f 1 Other Other +a52f0103-e1e5-4749-b43f-b963e7977663 1 Other Other +a52f53f1-3412-4df6-b283-8ee161172f2d 1 Other Other +a52f562f-16a2-4762-a94c-89246d463f66 1 Other Other +a52f71fc-7245-4c36-b7cf-a8af1f877c44 1 \N Other +a52fc939-dcd9-4115-8d3b-4048bae18df7 1 Other Other +a52fe3c5-a18a-4ed6-98b7-8f886ce8f289 1 Other Other +a52ffdec-5406-419c-86c0-71875683a53d 1 Other Other +a5306879-dff3-49fe-b8d6-66166dd80579 1 Other Other +a530a3df-10f5-48ad-9968-cf4abe8c36fe 1 Other Other +a53141db-782d-4d6b-8d01-08642d0a8362 1 Other Other +a531711e-7766-48ab-ad51-d344e668ea7c 1 Other Other +a531763c-3c12-4dda-bf56-c92f47504dcc 1 Other Other +a531b540-0753-4e09-98ed-a5b8d3af9f24 1 Other Other +a531df16-a713-482e-8fda-5b5813d271a6 1 Other Other +a531f403-dba6-40e8-ae24-bdb046dab9aa 1 Other Other +a5329c37-9c08-4f1f-8cac-9e61c587ce7b 1 Other Other +a532b8cc-c9a9-468a-abb4-0faf6b38ede3 1 Other Other +a532f8ee-4d19-4b6b-810c-99dee74734b5 1 Other Other +a53333eb-f455-41b0-8d11-5a2c808512ad 1 Other Other +a53350e8-4228-4f36-8a14-3bf3790ed37b 1 Other Other +a5335d45-7a5f-4ee1-8e9c-3f854d20c2a0 1 Other Other +a53364ad-3848-4bec-ad81-7c3291990236 1 Other Other +a5336d19-e4d2-4cb9-9ac7-3a5956ef927f 1 Other Other +a533a186-d59a-431c-8dda-83597fe5ea7a 1 Other Other +a533c6f8-db94-47f3-b987-a71c6dce84c4 1 Other Other +a5340a0d-c56b-4055-838d-3c679700be6a 1 Other Other +a5340a13-c7ce-4afe-8519-e03e393a7e85 1 Other Other +a5340a5d-6db9-4757-bae4-c8bbcafdcbf9 1 Other Other +a534903c-956c-4db5-ae82-bc4d98081459 1 Other Other +a534d631-d76f-41c7-bd3d-1336e6101008 1 Other Other +a535124f-0fdb-4d4e-bbcf-036993e139b6 1 Other Other +a5354447-5bab-4e07-a3dd-cbd02cdfa452 1 Other Other +a535a52d-9a5b-4ec7-b526-400328439657 1 Other Other +a535dfee-6530-41d0-87f3-b21c8e588ec7 1 Other Other +a53604c3-e665-4652-b7a5-5c3f975861b4 1 Other Other +a53605c1-6b8a-4c54-9ca2-80657e64e4d0 1 \N Other +a536213f-31b9-437f-8a01-f183c8a9f5a5 1 Other Other +a5362476-f937-4ae1-a129-6b237a223893 1 Other Other +a5368c68-5300-4f94-acaa-625c4cccff9f 1 Other Other +a536e74c-6f02-4063-9600-a4ca7c5d7b82 1 Other Other +a5376749-4b7d-475b-b242-9bfc71eeb951 1 Other Other +a5378862-0443-41a4-94d1-7fa1dfdcd9ac 1 Other Other +a537f1ed-9592-446b-836a-e93fe0ada17a 1 \N Other +a53803f0-0c79-40a1-8eed-259b314de4b1 1 Other Other +a5382002-c1ff-43e9-8d56-f1a3197af1c9 1 James Other +a5383787-78d8-45b6-a23c-cdd5f4a7d1d1 1 Other Other +a5387604-67a3-479e-9a0d-d8e6ffffd2e1 1 Other Other +a538b21c-1d3c-4f9b-80b0-dd13ae299163 1 Other Other +a5393012-1b85-4427-a764-1b097145889e 1 Other Other +a5399f4c-6b42-4b83-90de-effcc9eae962 1 Other Other +a539f0ab-aab6-432b-b913-80215147c88a 1 Other Other +a53a1ee2-4f7d-421a-b8f4-ff0a785df297 1 James Other +a53a2a5b-f008-443e-8960-db49dac004aa 1 Other Other +a53a2c9e-08bb-4a44-9f6d-b1b5cd1387ef 1 Other Other +a53a3eeb-46e5-4608-8373-37a13c5da0cb 1 Other Other +a53a7e85-54b5-4a58-99fe-e8a85ae8d702 1 Other Other +a53a83da-f173-4eca-98e8-4dc532a90c03 1 Other Other +a53ac628-af73-4d41-8bf6-d80c77630f41 1 Other Other +a53acfd4-07e3-4e17-b073-9363cc211971 1 Other Other +a53ae4f8-0479-4deb-9296-943326431403 1 Other Other +a53b44e6-b861-4159-898d-f60e7c8e7437 1 Other Other +a53b76f9-e88e-4fa1-acc0-b7d613821fa5 1 Other Other +a53b868b-4a03-4e56-9d25-e2c3a38eb49d 1 Other Other +a53bf6c2-e69b-4a66-abe3-bee71f06be4e 1 Other Other +a53c061b-450a-4eea-82c9-5fcac5e8b8d1 1 Other Other +a53d1017-3c29-414f-a7f6-0d38fe7c774b 1 Other Other +a53d1a22-7572-42ac-a57f-a20181f37774 1 Other Other +a53d2819-5728-4c7a-ba48-0a92f46d68fc 1 Other Other +a53d911d-5fea-47e0-8ac4-db7e2cbe9346 1 Other Other +a53e571e-f21d-42b4-9aa5-e2464008ba1b 1 Other Other +a53f8938-6e1a-4f11-9115-f9572f75825a 1 Other Other +a53fbb2b-2a2a-49b0-8aae-a2e92550791a 1 Other Other +a53fff16-ef25-4200-9204-950f7261b6c3 1 Other Other +a53ffffa-ef5b-421e-ae1d-3b66bd63c139 1 Other Other +a540526b-9680-4993-97ce-d4c6695209d8 1 Other Other +a5408b35-59c8-4e6b-aef0-cb6e5cfee4c2 1 Other Other +a540c30e-4fba-425b-be97-c56966f6e27c 1 Other Other +a54196c2-8b1a-4066-ac53-5043378da7d3 1 Other Other +a541be27-65b2-4e37-92db-ab3fe47c0dfc 1 Other Other +a541bf0b-2716-4702-a3ac-47ba0527cb1a 1 Other Other +a541f058-8c33-4f03-a534-623c1601880d 1 Other Other +a5420d9b-e869-4d76-8453-191fba3a32d0 1 Other Other +a5425b10-f6ac-40cd-b651-2a6e05fb0127 1 Other Other +a542910f-dd50-4266-836b-6ef05c25ecb7 1 Other Other +a54298cb-36ce-4dc4-8fa8-4ca8cd47257f 1 Other Other +a5430822-5d86-4aa2-a3cd-92de9abf37c3 1 Other Other +a5431121-cf65-46b1-ad16-7f5b8855f483 1 Other Other +a5434380-fae7-41e2-b248-11de2364ce15 1 Other Other +a5438c2b-9fb2-4c09-aa2e-6479037990a8 1 Other Other +a543a5b7-d265-4e3f-a96a-011ba4ca8863 1 Other Other +a543a974-95db-43d4-9e58-796d4410f344 1 Other Other +a544196a-85fc-4963-ab06-c0182d1f4722 1 Other Other +a54419d4-bcfc-4219-9cad-992c6092b232 1 Other Other +a544217c-87e5-4164-93be-b8ab267cd56e 1 Other Other +a5443b96-7369-4b57-ac54-d22941d4d830 1 \N Other +a54444e6-eaeb-4ec8-a81b-bc61c0569c6c 1 Other Other +a54484bb-3ff5-434b-891b-af460f2979d3 1 Other Other +a544ec62-5b7c-406f-8a3f-eb83b0061807 1 \N Other +a5453166-3664-4af3-b625-19deea7fdc65 1 Other Other +a5454bd7-8553-405f-925c-b40e7de32406 1 Other Other +a54559eb-f2c0-4f32-8e82-ace62c2540ff 1 Other Other +a545bcb4-9fab-44dc-895f-3dbdb3cda59a 1 Other Other +a545c339-7ae5-4cae-a21e-3a0bee726fb7 1 Other Other +a546252f-384f-479c-94bf-d2c38b15bc5e 1 \N Other +a5463a97-e4f4-47e5-b2f9-20f6ee685652 1 Other Other +a5465ab8-2579-4d2c-afde-7fe4aca4cc74 1 Other Other +a5466abc-910a-4825-af62-0aaaf8470a24 1 Other Other +a546c5a0-395f-4eb8-8082-17feefe29b2e 1 \N Other +a546ce39-fd7d-4441-bbba-c9dcb9c575e5 1 Other Other +a5470678-acfb-4de9-8cd0-4b170870dd59 1 Other Other +a54725dc-393b-4925-9c60-3fcd7b75bd35 1 Other Other +a5472aa7-16cb-4e12-b416-c90a92ed3b4b 1 Other Other +a5474c97-6b73-4ef3-9862-2eff2b0a5dda 1 Other Other +a547d63b-df72-40cd-8a6b-5d318749a6c3 1 Other Other +a54821a9-1808-4b12-85ca-3440567037a7 1 Other Other +a548b92e-8ca0-4aba-ad25-4b8502283965 1 Other Other +a548bea9-2695-40d4-87ea-fee3e12c7be2 1 Other Other +a548c291-01df-4880-8009-ab3af27eaee3 1 Other Other +a548cdc6-0b92-4394-a52d-e74f99450cab 1 Other Other +a548e71f-b387-4d64-8163-68b102dcbef3 1 Other Other +a5494717-8051-448a-a781-a105b2e41e48 1 Other Other +a549c370-599d-43b4-a8af-4c765e25c4c8 1 Other Other +a549f9ed-b822-4e70-abab-5e9600b09d04 1 James Other +a54a253b-368e-4f08-b1ab-fb4bdd883bc4 1 Other Other +a54a3757-5935-4ae6-8973-3c34dd271b4c 1 Other Other +a54a538a-dba0-471a-bf84-77aafe08f743 1 Other Other +a54a7390-a9af-4e88-bef1-754168c59ab1 1 Other Other +a54aca62-e482-4caf-8f8f-1c44677f670b 1 Other Other +a54ad54a-ed2a-4e97-8def-0c181215ab30 1 Other Other +a54afcbe-b858-4033-943c-3d273331347b 1 Other Other +a54b6ef0-681b-4fb6-89c1-6876cdbf21f0 1 Other Other +a54b9fc6-cd54-439a-8a36-91923a4fbb80 1 Other Other +a54bb1a2-5baa-441d-a470-e5c0881f773d 1 Other Other +a54bbfb4-c6aa-4e4f-90a9-287a57800907 1 Other Other +a54c44e8-d8fe-49d5-ab36-a34ee87bca9f 1 Other Other +a54c4ce1-7db6-4f4b-8010-15f2403da80d 1 Other Other +a54ca554-4d0a-4bf2-ab15-86474849b9be 1 James Other +a54ccaf0-5f59-47db-8c40-ff69df85e9d6 1 Other Other +a54cfa5d-c36d-478f-8b1d-d226d7963fbf 1 Other Other +a54d128b-2c78-4e51-896d-6b59d20760ca 1 Other Other +a54d3929-e171-4d4a-84dc-287904d8bbdc 1 Other Other +a54d9369-695b-4fd2-87fa-69cd7ea3647d 1 \N Other +a54dc94e-d648-4a5c-bf24-bc5e12f6fa3a 1 Other Other +a54dec44-cffb-4829-8fcb-1ecc2c90793f 1 Other Other +a54e0957-e01a-4e9e-a8fc-186cb020d4ea 1 Other Other +a54e1fa4-c591-435d-8cc0-6d24f3aba775 1 Other Other +a54e616a-a002-473d-9644-55451dce8be2 1 \N Other +a54e669e-5346-4d19-b9c7-5855208412b8 1 Other Other +a54e675b-822c-4896-9cc1-ef3751e4569d 1 Other Other +a54ef074-e6fa-48f5-9b7f-53dd6b2a66c1 1 Other Other +a54f0ec5-8e6a-43f3-b891-352442861fc3 1 Other Other +a54f126f-1edd-4ff6-8594-b21b670d003d 1 Other Other +a54f31ea-1813-4f23-a168-d899c7f96deb 1 Other Other +a54f698a-e8f1-4745-ac50-3e92407e731a 1 Other Other +a54f956f-2f9a-4d76-97e0-17fcee71cb51 1 \N Other +a54fa81e-1487-41d0-ab81-76980cfe2eb8 1 Other Other +a54fab99-42ab-4665-9eba-90dff50fbdea 1 Other Other +a54fed68-a245-4ae6-b53a-1c06e6f07582 1 Other Other +a54ff84b-801f-49d4-a0de-df3e86f94bba 1 Other Other +a54ffcb4-8069-4da3-9e3b-1826e9320a75 1 Other Other +a5509c43-f862-4bc7-9ba5-49894aa26914 1 Other Other +a550e2f5-3417-4137-9490-bbf4be24e7d9 1 Other Other +a5515193-b605-4075-adb4-315442807684 1 Other Other +a551a2d2-dac8-441c-b0ea-74c824e925ba 1 Other Other +a5524861-36a5-47a5-a65f-6d57c81829aa 1 Other Other +a5526677-5d1c-4fac-b8a2-068369086876 1 Other Other +a552b7ce-27c1-434c-b1c4-87d83e9f83ff 1 Other Other +a552cfce-4cd1-4192-b393-5dc1d487597f 1 Other Other +a552d801-0596-4d12-b020-31db08883ab8 1 \N Other +a552e2b7-2868-408b-a650-7f517d1b00ce 1 Other Other +a552f661-5f5c-486c-b78f-2cd5aaf9a850 1 Other Other +a5534156-43dc-4582-af4c-d2b4ff04505b 1 Other Other +a553790d-724e-4976-8a40-6ec17a56159c 1 Other Other +a5537f16-409c-476a-ad11-eccfbab935cf 1 Other Other +a5539b95-0487-4ad4-85d9-abf56ca8c483 1 Other Other +a553a496-6817-4bef-9a38-4fcff0f02f74 1 Other Other +a553cc05-9be6-49ff-9f2a-af52557825ac 1 Other Other +a553cc1f-f75d-42e5-a665-c16a5e45a0c9 1 Other Other +a553d8bd-5c55-436d-9643-c72a4e03c31a 1 Other Other +a553e203-40ee-40a2-8d17-2ed76cc373e9 1 Other Other +a553e3bc-2eb4-49bc-bf05-ed526ea5e014 1 Other Other +a55412fc-a865-4448-9027-4d73871e1d3d 1 Other Other +a55443d0-3a91-4bb0-b7fe-7ab78f11f6e5 1 Other Other +a554ef38-e3eb-490f-892f-222a73aac6ab 1 Other Other +a555002e-1759-41bd-9645-40e34faa15f5 1 Other Other +a5551a4e-c776-4551-b162-65b9fb7fd0e2 1 Other Other +a5552845-f814-42af-9e6d-2983045665bc 1 \N Other +a5552a1d-f911-4109-927f-e343d22c0745 1 Other Other +a55540a6-c93d-45e0-a936-3a3a58ae5506 1 Other Other +a555548c-3021-4cbc-aff5-171d04d43e19 1 Other Other +a555e607-98b5-4b20-84be-c102aaf27161 1 Other Other +a555f588-7823-42a1-ad05-080def6f3eb9 1 Other Other +a556118e-89f0-41de-8049-952ddd40e1ab 1 Other Other +a55614c0-a5c0-482f-b2b2-cf80fc5bf014 1 Other Other +a556645b-4e13-4ba8-ae22-a2f833fe7310 1 Other Other +a5568b5a-fe54-4f18-8a6c-ab4f8f9654d0 1 Other Other +a556c649-65b4-4542-8fb3-4864db7ebc47 1 Other Other +a556dd3a-b771-4aa6-9bcd-f9d502cfb712 1 Other Other +a5570750-ee3d-43d0-bc22-02c6037478f6 1 Other Other +a55707ce-6d5c-4bc3-a8ff-90b5570924f3 1 Other Other +a5570b4a-a288-49b4-b80a-fd705ff04ade 1 \N Other +a5578866-1c17-49af-8e2b-845aced42aef 1 Other Other +a557a9de-5eae-4d9e-808f-d1219faf5655 1 Other Other +a557eb18-58b3-46f0-8b25-9271af815be9 1 Other Other +a557fbdb-3a50-4b57-8b4f-41c5824e4901 1 Other Other +a557fbe3-fa5e-4748-850e-0186f611bcc3 1 Other Other +a558142a-a885-408c-a5f2-521f169bd9f0 1 Other Other +a55815d7-3e3c-4854-ac91-addc6d628f29 1 Other Other +a5589f7c-b9b3-459f-8f6c-c1651643aabc 1 Other Other +a558da3a-acca-4d8c-b96a-14eff2133423 1 Other Other +a558e530-5ecd-4082-a9cf-e7fbeea99f3e 1 Other Other +a558e894-10fd-4507-aa7f-a152fe0728cb 1 Other Other +a55907ac-9040-4dea-b6d7-3406e41f3585 1 Other Other +a55933e3-3187-40ba-8b3a-ae934934a583 1 Other Other +a55941ef-bf4e-44ed-bc4c-80766b7ea934 1 Other Other +a559a807-0d09-4f81-bd58-06dbf7cc8d0e 1 James Other +a559cfb6-b238-42a5-a4a5-4d1f04bafcab 1 Other Other +a559f0af-ca14-4d19-bbce-9b99972e0829 1 Other Other +a559f7e2-c156-4a0d-b1f4-fea9eb7f3c0a 1 Other Other +a559ffa0-c057-4cd8-8bef-8081808d736f 1 Other Other +a55a231d-9ba0-462d-bd83-6f7104be1be2 1 Other Other +a55a6f15-a3b6-4882-a9bf-bf83187bfbc2 1 Other Other +a55a8bac-5864-4733-9c2b-6a77d8b5b657 1 Other Other +a55aa6f3-c9ee-4e69-acea-d0c7800f82a4 1 Other Other +a55b21ce-eaa9-4552-b27f-b86f352990a8 1 Other Other +a55b4125-1d13-48ee-ba25-507c7faa2eb1 1 Other Other +a55b6da0-9443-4e3a-be70-d54161c2d700 1 \N Other +a55b8555-8455-4f9a-a66b-951478c3a6c8 1 \N Other +a55b8b0e-4a58-4a25-af44-781cd3c1f2d2 1 Other Other +a55b8c4a-cf0a-4699-8155-b3bff5a4a700 1 Other Other +a55b9e58-2d90-4132-bd2c-12f77cf242c0 1 \N Other +a55c8028-8fb8-4261-affc-0bf2f91d08cc 1 Other Other +a55c8e61-8427-44f7-afdc-ee0bac8fd796 1 Other Other +a55c9a32-bdd8-45c9-b499-255c53fc3a86 1 James Other +a55cc2b0-98a6-497f-8831-c999e6828f18 1 Other Other +a55cf00e-43af-4525-b9b0-bcee8245a857 1 Other Other +a55d5699-f806-4c21-a783-e095f284d62f 1 Other Other +a55d835f-cc58-4212-8c57-a6e40500f9b3 1 Other Other +a55d857e-70aa-4dde-97cd-37f5d2da1637 1 Other Other +a55d9430-8767-453b-8d3f-24c0d6f0e030 1 Other Other +a55df528-bd3a-403e-845a-e13110b911f6 1 Other Other +a55e0642-238a-4e49-ae6f-919f804dc12f 1 Other Other +a55e2b84-0cb0-4c87-bd6c-b33891dbd9f6 1 Other Other +a55e2dd2-4d2f-4427-aad7-a1cd70dd6723 1 Other Other +a55e3d0f-1b18-4b61-87ac-52e505f5f883 1 Other Other +a55e7e32-fa1c-437f-bfe2-78eec7f997b2 1 \N Other +a55e98f5-ad92-4a07-8628-e750006a1be8 1 Other Other +a55f1da1-6f8b-4bfb-8d0c-c2cb854bc9f0 1 Other Other +a55f54f1-1545-4c01-86b9-062e48625335 1 Other Other +a55f5645-d4ac-4795-aa83-87b1c5deb56c 1 Other Other +a55f8a7a-2254-47e4-b67f-a01238c6f306 1 Other Other +a55fd127-fa94-4622-8214-a57e11cbd182 1 Other Other +a5604cbc-b1f7-46a6-ab37-ebedef4a2d36 1 Other Other +a56052c2-22b9-4a83-9740-e802f5835e35 1 Other Other +a5606076-4bd3-4ae6-bb66-0942135ec33a 1 Other Other +a56060b3-5e56-4642-b218-27e13d283313 1 Other Other +a5606576-271f-4d35-a68d-d8e200f031fd 1 James Other +a560c657-3601-46ec-aa6a-7976a1968f8f 1 Other Other +a56102fa-33fa-4aad-ae85-35d8f974bff2 1 Other Other +a5612778-f5ea-43bf-ae59-168ccb4a0148 1 \N Other +a56161cd-aff9-491d-a5eb-a5f2814577d7 1 Other Other +a561871f-76e6-4879-927c-9c35e21c32e4 1 Other Other +a561e7c8-7aa7-409d-9f0a-8b550823f846 1 Other Other +a562239c-c6ad-4e33-b69b-3da69e243638 1 Other Other +a5627410-be56-4fdf-8496-8f24da37b06b 1 Other Other +a5629252-2628-4dcb-ae44-504b97e55752 1 Other Other +a562a90a-ed58-49b7-98b5-719760bb28c6 1 Other Other +a562b96e-c3b7-4058-898a-a64cc54b433b 1 Other Other +a562f336-db2d-432d-b9e9-a2efdcad00ad 1 Other Other +a5630d58-aa47-438d-941d-3bbec6675ece 1 Other Other +a5636bf2-ed5f-4d0c-88d8-26f446af01e7 1 Other Other +a563f352-7b0f-4fac-acc7-062f98af38dd 1 Other Other +a5646449-a886-4723-8860-b3d05acaee87 1 Other Other +a564c400-6baf-4cb8-9ff3-eb85065551ba 1 Other Other +a564e09a-676b-4267-a0be-fcf654849cec 1 Other Other +a564e833-2c9f-4916-b432-346a908ef916 1 Other Other +a5651a47-0117-4314-8856-0ecfd5939d5b 1 Other Other +a5657d33-faed-4407-baa8-4e53bdd87af1 1 Other Other +a56594ed-56cf-4d13-a06e-f1905ff4ca98 1 \N Other +a565a36b-c45c-4aea-9d13-16f99333dea9 1 Other Other +a565f23d-d501-4d4b-b070-36b7737892ce 1 Other Other +a5660d00-8ffa-4007-bc5a-a8e902554b82 1 Other Other +a5667d8f-9574-456f-b138-1f4da85eec94 1 Other Other +a5668f4d-8229-47bc-8e3d-3ec3ea1aa9f9 1 Other Other +a5672f75-07eb-4900-9603-8d8fc105c688 1 Other Other +a5675173-4f8e-4dba-8d8b-b8919b3931b6 1 Other Other +a567607f-8c1f-4e5a-8f3b-5efba013dbdf 1 Other Other +a567618f-c3c6-4087-99b3-92e82f5f58d6 1 Other Other +a56784ff-8928-487a-931f-d455d869f518 1 Other Other +a5679a8a-371b-46c8-aa84-9576ef17d9a5 1 Other Other +a567cf5a-bf73-4135-a793-494fa7cfc7c9 1 Other Other +a567e93e-caf1-437b-954a-dc12bfc89c4f 1 Other Other +a5681b20-8128-43d3-ac55-f8ba27ba1a6f 1 Other Other +a56828c5-e877-4119-98ca-127d1ca5f9bc 1 Other Other +a5687da7-8115-443f-96df-0a319a3afbaa 1 Other Other +a568a9c7-4ce2-42f7-8d79-6f409fcc4de0 1 Other Other +a568dae8-a60e-490f-a32f-ad7faccef1bf 1 Other Other +a5692360-079f-4540-b0a4-16f370b0b222 1 Other Other +a56929a4-6e52-4f9d-8170-0e011bd4f393 1 \N Other +a5692e48-43b1-480d-aade-2301d14ad3e0 1 Other Other +a569307a-d1e4-4064-8374-bf02a542b506 1 Other Other +a5696ea4-1785-477e-8237-b7221660bcfa 1 Other Other +a5696f84-6e73-40c6-8fca-4b23c7ac4c8a 1 Other Other +a5697a63-6a3c-4121-b0c3-b6d716b365cb 1 Other Other +a56998aa-e1b1-4019-8dfe-c06ab5f6c773 1 Other Other +a569b211-52e3-42ea-9967-e2cd13372cb1 1 Other Other +a569c4f4-6031-4b84-929b-a434375df670 1 Other Other +a569ec35-e9b1-4286-acf9-b348086ec5cb 1 Other Other +a569ee19-933b-4fc5-a105-75ef2a55041c 1 Other Other +a569fe22-4c45-444b-9a52-fdff1b2e36c9 1 Other Other +a56a0546-2cc7-4927-87e8-3010debb74c7 1 Other Other +a56a28d4-aaf0-4416-8c5d-786a67df6a45 1 Other Other +a56a4714-f539-478a-9339-d91593180b28 1 Other Other +a56ab05a-e081-4e38-9d9e-bda8a11c12ed 1 Other Other +a56abeb2-d19e-4d1d-99bc-7d7e31fcc0cb 1 Other Other +a56ae284-83bb-446b-9589-ea793b193bdf 1 Other Other +a56b3f01-fb90-42cb-b116-02eb3fe2991d 1 Other Other +a56b7e5d-ebf2-4cc7-9b16-f088817b8466 1 Other Other +a56bca9a-18eb-4d9e-acd5-0784c4c093a9 1 Other Other +a56c119e-9f6f-11e7-b7a7-fa163e8624cc 1 Other Other +a56c2bb6-5787-46fd-a225-1397d38a15a4 1 Other Other +a56c63a7-46f6-408e-9aa2-9af9afbf8fc8 1 Other Other +a56ca017-aa27-4473-b13a-c9d7e16e0a29 1 Other Other +a56cd69f-f223-4c5c-9f62-b738adeba080 1 Other Other +a56d954d-1b0c-4038-b373-d4847c7990b4 1 Other Other +a56da1c3-a0e1-4fe8-9b26-9c0447abcf39 1 Other Other +a56db379-175d-4097-9739-60a042617084 1 Other Other +a56e8a2f-c4b9-4874-b773-c78b57908cde 1 Other Other +a56ed533-09f8-4814-8d7b-7f2fdda4a0e3 1 Other Other +a56ee954-fe73-45d3-a99e-f5b1e8f50231 1 Other Other +a56f0e24-308a-4886-8ced-522977125e1a 1 Other Other +a56f119d-1453-41fa-b1f8-c72695040d73 1 Other Other +a56f3b71-9d71-4527-9621-7f82f9724731 1 Other Other +a56f3bfb-55df-41a2-ae63-fe6af128f0cc 1 Other Other +a56faefa-96b6-4348-9b45-814cd3b1a89f 1 Other Other +a56fd7a3-098c-4b65-aa6e-d69c55ca371e 1 Other Other +a56fe3f5-9985-4d7c-81a9-1e0e58dedf0b 1 Other Other +a56ff612-88cb-42aa-b60b-29465ebee1eb 1 Other Other +a5700de5-b46e-4f18-9664-0ebd7333a3eb 1 Other Other +a5701b02-f230-428e-8484-8198a45c31f9 1 Other Other +a570434b-dd9f-44f3-82ec-5b6196cedbe7 1 James Other +a5705201-b64e-41f2-bbcd-c4c5b8d8d6de 1 Other Other +a5705ee7-3549-4469-ada2-e425372740b9 1 Other Other +a570658e-f1de-45fa-9fdd-a07102269012 1 Other Other +a5709bfa-b7ba-486a-8b68-09c546aa15ee 1 Other Other +a570bd58-b944-44f5-8d0b-6305879a90ac 1 Other Other +a570eae0-db51-4472-b1cf-86e9e3870e0e 1 Other Other +a570f636-7838-419f-bbdc-3eed9ad9c0ac 1 Other Other +a5711859-7b2a-4bea-a9c6-d45a8e160942 1 Other Other +a57135b3-db54-4a46-9928-b2583e90dc4f 1 Other Other +a5716048-e0fb-4617-ba2a-d07e88c31448 1 Other Other +a57223dd-d4a5-48e4-8a33-99216a87ca38 1 Other Other +a5725195-9d1d-4f0f-9fad-bb67714e49a2 1 Other Other +a572578e-36db-44a3-b516-970c644fe5c7 1 Other Other +a572824c-9ffe-43d7-9c94-9ad728dddf4a 1 \N Other +a5728a21-3eab-48af-92ad-4f6361dd6dcf 1 Other Other +a5733a35-fe4a-4c7d-9343-d3d51c164298 1 Other Other +a5735b94-8b68-4a76-9d41-b1a1ecd964f3 1 Other Other +a5736f5b-6506-4d38-a12a-6a4fdfa8b4eb 1 Other Other +a5738925-738b-49ae-a047-0d5e01939e50 1 Other Other +a5738b65-dd7c-4a46-bba1-74649d006e75 1 Other Other +a5738c78-f484-46df-ab3c-ab484fefc342 1 Other Other +a5738d6b-8c33-478d-9bae-bb282d1cbf9f 1 Other Other +a573a74c-5407-47ff-b1c9-dbcbb68bac70 1 Other Other +a573c2b8-04e8-4e19-a042-18ec12099383 1 \N Other +a573c320-0ed9-4831-bf77-c29468fca561 1 Other Other +a573cd7b-b4d5-41d6-af96-28e05c92d5b7 1 Other Other +a5740a37-c8d8-44ce-9d83-4a1cc7c23747 1 Other Other +a5744815-bc27-4f74-b923-9b4268621f6d 1 Other Other +a5746d7a-c4b8-4023-a0f7-8d0940426b32 1 Other Other +a5747c27-dd07-4977-88a5-17dfdc236fbb 1 Other Other +a574bea9-77d6-457d-9293-b94e28416edd 1 Other Other +a574c7ad-ae41-40e8-a0e2-20af7d92a958 1 Other Other +a574ed0d-fb94-4dda-b4bf-d0b780350eeb 1 Other Other +a57528cf-373d-4ef1-9423-1f153c216c66 1 Other Other +a5756f16-a261-4391-ba5f-65deb90874ea 1 Other Other +a575b4a1-11a8-4c46-ac43-1e85592c0780 1 Other Other +a575d09b-b379-4bbe-918e-c99dad0ef355 1 Other Other +a5763c9b-b2b9-4061-8cc7-30e418dca807 1 Other Other +a5764367-e89b-4891-b617-d6b1594b168b 1 Other Other +a576c128-68ae-43c6-a25a-fc9487913387 1 Other Other +a57717ea-fef9-4039-b0c6-c4c8f21004ea 1 \N Other +a57743b8-d765-4875-9dd8-6fd14e54073d 1 \N Other +a577cd19-83cc-4625-a910-37d1799f56b4 1 Other Other +a5781124-bef3-41ec-bcae-47921cbf0719 1 Other Other +a57850b9-010c-4c58-bf94-c1c8475fbb29 1 Other Other +a578a86d-249a-454c-838c-5b3b0df85988 1 Other Other +a578b0a7-283f-4c7a-8a49-5cf5fb37cb86 1 Other Other +a5793fd1-8ff4-4ce1-95c0-8fd6e1cfc2e1 1 Other Other +a5798db9-43ee-4005-8303-8c4f7acc6505 1 Other Other +a579adab-7a59-4fa2-b327-03632c731e71 1 Other Other +a579afbf-7384-4a36-873c-435f7dd44ae0 1 Other Other +a57a62d6-0f07-4638-bad8-fc0903620d65 1 Other Other +a57a7eea-4093-4858-90da-da1d115fbf42 1 Other Other +a57adce0-60d7-4380-b4b9-fda4be32199a 1 Other Other +a57b4140-c5ef-4bf8-81cb-4bf2cad30f77 1 Other Other +a57c6bc1-5af8-4e02-864a-c03fa3de665a 1 Other Other +a57c93a4-a4f4-4d3c-979b-600359ed73fb 1 Other Other +a57d050a-2bf0-4c39-9ccc-e66368136ad6 1 Other Other +a57d6996-6cfa-4243-820f-21694df92460 1 Other Other +a57d9c3a-69d7-454c-b328-b97dbc009675 1 Other Other +a57db4f9-bc86-4b54-8734-56d7d336a665 1 Other Other +a57de415-a405-4826-a807-9cc06e8c0842 1 Other Other +a57e11bb-e579-4c2c-bf89-cb9c8900ccc8 1 Other Other +a57e2d42-5b3e-452d-9913-48f6fb5e9412 1 Other Other +a57e4873-2fd4-4c7f-8ac9-fa40a1a6e4dd 1 \N Other +a57e98c8-e55e-47ff-8709-7feeec20db9b 1 Other Other +a57f0868-422a-4d80-88b4-d922d671fa75 1 Other Other +a57f3cfe-de50-11e7-aba2-fa163e8624cc 1 Other Other +a57f4c1f-5820-4a5d-bb8e-b5b31697f0e1 1 Other Other +a57f73d3-816d-446f-b370-fda1760eedba 1 Other Other +a57f9734-f0aa-4efd-8324-055c97b0a657 1 Other Other +a5801d86-be30-459b-8696-b88f19f0e374 1 Other Other +a580338c-021b-4cef-92e6-e18070730988 1 Other Other +a5804c45-984f-45c3-aae7-6a681d8c59a0 1 Other Other +a5808203-7563-4d11-b795-3b29338ae7b4 1 Other Other +a580a748-6eba-4c56-b931-cbb23785e0ab 1 Other Other +a580ef32-865a-4a37-bedc-a975277eaf99 1 Other Other +a58135a7-6b09-4536-b907-2e4f79a160cf 1 Other Other +a5813dfe-2937-4556-95d9-4bd96fa51c48 1 Other Other +a5817449-e496-40c0-b9be-4d8a210c468e 1 Other Other +a582657e-c6cd-4656-91e6-1b9c3aa4189a 1 Other Other +a582820c-0411-4653-af9d-29bd2c0963e2 1 Other Other +a582980d-2c4a-47be-84eb-b19e67f3625e 1 Other Other +a582bece-741f-4c70-8f8a-0ad7077d98ca 1 Other Other +a582db27-5244-479f-861d-8ecf138f0ed2 1 Other Other +a582edb2-0494-4874-bf98-e0887495105e 1 Other Other +a583101c-d9ea-4a82-a90a-ee11f0c48885 1 Other Other +a5832f1c-2939-4ef8-842b-07592b983cfa 1 Other Other +a583bb12-ceab-4000-badf-f53fc08ef830 1 Other Other +a583cb68-0108-435b-bf7a-9b3f91a0ef43 1 Other Other +a583eb0f-ed4c-47f5-a6f3-b1f43e4cad00 1 Other Other +a584485d-0687-4f4c-82ee-6805948b9ec1 1 Other Other +a584b1fd-4918-49dd-a9a2-468837d827c2 1 Other Other +a584d508-3920-44a0-b07b-fd1b35033f80 1 Other Other +a584d857-dcd7-42e7-a8d9-5c5de3529145 1 Other Other +a5853585-7d39-460a-8e55-3796775fdc8a 1 Other Other +a5854b32-512e-40b4-ab6f-6d1e84e5060a 1 Other Other +a585523e-b99d-419a-9ada-884392977a59 1 Other Other +a5858ed3-f865-4663-8804-aad2e4829a4a 1 Other Other +a5859bb2-4653-4e8c-9c32-028127006914 1 Other Other +a585abd5-c9b3-4160-9a46-56226cfaba8b 1 Other Other +a585b0be-693b-47c1-9e60-8d27ddd47d67 1 Other Other +a58617f3-251e-418f-9f27-995a5ec4b17e 1 Other Other +a5861efe-2694-4cb4-9bfc-08309553ca4b 1 Other Other +a586424b-fcca-46d1-85ca-ebb7ca52590d 1 Other Other +a5864ca1-7b35-4156-95a9-b8a45d7bc5be 1 Other Other +a586ed7a-8f94-4110-8e20-e0977560dbe1 1 Other Other +a5871fcc-3f23-4fea-a061-ea75cd23b191 1 Other Other +a5872177-9129-4af9-a402-01f168c824cd 1 Other Other +a5872409-9f4c-4b5a-9801-bf2cd27f8794 1 Other Other +a587c0a7-0793-4e69-afdf-829dbde3a606 1 Other Other +a587d15d-ab54-4eaa-bd9d-f95e547e9eb0 1 Other Other +a587d2ac-3f8f-41f8-8183-a7caa8a6b074 1 Other Other +a587ec30-f9af-4020-8001-70e24888102f 1 Other Other +a587ff6b-5832-44a4-8817-9b908f10a28f 1 Other Other +a5881a44-aa07-4c45-924d-cbbbc15641e9 1 Other Other +a5886e3e-e38f-445f-accf-38ba5ed68ea7 1 Other Other +a5889428-c59b-4d8c-832b-16076ac80850 1 Other Other +a58896a5-ea64-40b1-afe5-d5b531a90350 1 Other Other +a588a31b-c7ad-4b00-96a6-e118a933b0ce 1 Other Other +a588a77a-bcc8-4cac-8b6a-f77666362cff 1 Other Other +a588acaf-e4c8-4d76-b701-f88781b1e319 1 Other Other +a5893c6a-2185-4b6e-b324-3bc6bf0d8b1d 1 Other Other +a58941d8-b373-4dc6-8aeb-432e7c4a2c14 1 Other Other +a5894f18-a475-4e9f-9699-680dd7c91ae7 1 Other Other +a58953a6-5766-4512-be33-2bbdc6fb3d46 1 Other Other +a5897306-88c4-4687-8178-4b3755c6e164 1 Other Other +a5898fcf-fa43-4474-99ee-44a9a5c168e5 1 Other Other +a5899aaa-3048-4814-914a-dfdd9585d984 1 Other Other +a589d0ea-1cec-4f61-b83a-f3b86e22ab20 1 Other Other +a58a054a-bb96-4a97-823c-3449c084f21c 1 James Other +a58a2e08-aedf-4194-af7a-600f533f09aa 1 Other Other +a58a3113-59b6-444e-90a3-3881aac66c71 1 Other Other +a58a3809-8b27-423c-8f63-54d1e5aa02d1 1 Other Other +a58a428d-3ac3-4247-99f0-0f8ec2aa3187 1 Other Other +a58a5599-7640-4255-b25e-383a575a5c72 1 Other Other +a58a64a3-eded-4d94-a980-342bcc1cbfa9 1 Other Other +a58a7b7b-3f69-40c7-aef1-50503f85125d 1 Other Other +a58a9b11-db42-4606-b227-f74245660e3a 1 Other Other +a58ab7a8-e5e7-4434-9efe-0f6793d3c0df 1 Other Other +a58adaa4-71f8-4fee-ae80-da567744b367 1 Other Other +a58adb46-3805-460e-b82c-cc3989c7dd0d 1 Other Other +a58b2eab-5817-4fe0-9e97-497dbd5c3e5a 1 Other Other +a58b3eb6-b72c-4f77-8ffc-09a8a5946c6a 1 Other Other +a58b3eff-d666-4174-8632-2b768d5e886f 1 Other Other +a58bf1ee-3c42-462b-8311-06e7277770c3 1 Other Other +a58c3394-1d33-4a8a-a035-4ba47c761d37 1 Other Other +a58d2455-9369-4e27-a1e2-d7a0b2506239 1 Other Other +a58d5b98-cc37-40c1-8ef7-2f8a5a2f711c 1 Other Other +a58da1cb-20ca-4a40-88f8-6f87920351f7 1 Other Other +a58da7df-c72e-42d3-9d40-1173582ccaa6 1 Other Other +a58dc3a3-a6d3-4977-86de-226747931164 1 Other Other +a58decfa-a627-4885-9a5b-281b4dcd045b 1 Other Other +a58e3c56-e0f8-443f-8986-985e5db04710 1 Other Other +a58e50a6-ef12-4894-9535-3e7a7f3e17ae 1 Other Other +a58e6cbe-2261-4be9-9f19-9ad5080a95c0 1 Other Other +a58eb647-61c2-46cc-b668-f60a6d7edfb6 1 Other Other +a58f14ca-bcab-4755-833d-be688f81b03a 1 Other Other +a58f2ca0-c68c-44cc-9522-5d9235921a36 1 Other Other +a58f5c2e-2b9c-414c-bdcc-cfecda4ee0d5 1 Other Other +a58f778e-523e-4832-bced-3ba965eec5d7 1 Other Other +a58fb6e2-a81a-47a3-8030-686f47c28814 1 Other Other +a58fd3de-770e-4ca9-8e66-6f48495120e3 1 Other Other +a59023b1-f9bc-4860-81a3-a8ff9ee8fe06 1 Other Other +a5902ae6-32b7-4030-bbea-d21ef3ad124d 1 Other Other +a590445c-77d8-4d63-91b5-684d58a90ab9 1 Other Other +a590a95a-6eb6-4967-992e-1fbb79a263b4 1 Other Other +a590c774-d128-4c1c-a3f1-6b83753a3e29 1 Other Other +a5910a8d-8daa-41e4-9cd5-ee163fc8922a 1 Other Other +a59116d7-74c2-421d-8628-bde6ae71ea30 1 Other Other +a5916d8d-6664-4778-8a59-8a81f2457f68 1 Other Other +a5917c13-7364-49ac-8cb1-7c42a3ad15b2 1 Other Other +a5917e87-b797-4909-bbd5-49001ffe945a 1 Other Other +a59189ee-2e79-4ba7-88e2-e1041dc201b8 1 Other Other +a591b048-1e78-4728-b113-13f7126ecbcf 1 Other Other +a591bc28-e3d0-49e3-8388-69267aecaddf 1 Other Other +a591c6e8-e472-456a-8c69-e3374e1a93a6 1 Other Other +a591e989-c648-4a06-81df-c2f816c40424 1 Other Other +a592565f-6f51-46aa-aaa8-8ced5e4d6e24 1 \N Other +a59299e1-eab8-43f7-8394-38ae0c106ea9 1 Other Other +a592c512-d6fd-4bfb-b65c-dc0ffe28c34c 1 Other Other +a592ee42-3faf-49de-87b3-b4eb2e245d7f 1 James Other +a5934def-260e-441a-80fa-5ae9ceb7ddb6 1 Other Other +a5935bd7-454f-4b55-b7cd-6996d33397d9 1 Other Other +a5937e34-47ea-4ecb-aaa1-f10236a66c0a 1 Other Other +a59395bd-fe40-4bc9-880d-ea875e323ce2 1 Other Other +a593fa52-5f92-4e57-8abd-f70064416ccd 1 Other Other +a5945fc1-c83d-4616-9382-aee660ee3d5e 1 Other Other +a5948ed3-7750-40be-b8c7-14df36a438e4 1 Other Other +a594b821-02db-4f21-89f3-502dd9449ef1 1 Other Other +a594debb-ffa4-45fa-8cec-5fe5b04ebd81 1 Other Other +a594f0e2-a475-4600-8ab0-d6b8d0676ada 1 Other Other +a59505b6-99a2-4972-95b1-80d29174cfde 1 Other Other +a59538ee-6e3c-407e-95e7-2ccb5e181520 1 \N Other +a5954d93-6687-4977-a5ac-69139bae5e14 1 \N Other +a595d781-5a35-40f1-8cae-9102721814b8 1 Other Other +a595e322-a7c2-4523-b697-bb835989ce5c 1 Other Other +a5960383-5c3b-4012-9ca7-0ce2791f42c1 1 Other Other +a5963312-89c0-4e37-bd3a-dca07db1bbcc 1 Other Other +a5966974-fb00-4903-8dd1-a8abf0240d05 1 Other Other +a596b114-7be1-4f61-aa84-641490990dab 1 Other Other +a59722ec-d7cd-4aba-96e4-09ef4d4f8983 1 Other Other +a59727f9-e900-4760-9450-3e096d6638ed 1 Other Other +a5974288-a634-47f8-81eb-4850e21c0504 1 Other Other +a5975d3b-78bc-4e76-a572-25d175af44ee 1 Other Other +a5979d0d-4e40-474d-9ad7-e29849b58e7f 1 Other Other +a597f066-321f-4b27-9874-8fc28fedbe94 1 Other Other +a5984344-bc0b-4143-a33a-be0b3b88f447 1 \N Other +a598762a-a832-4f05-be82-fd4c8ec421b4 1 Other Other +a598da1b-124f-421c-9d3d-06e71a3a2330 1 Other Other +a5991de0-64ec-480d-b4ab-8e5c13f3278c 1 Other Other +a5995697-c23b-480b-bb17-00ffbd8d39b3 1 Other Other +a59a068d-6aca-4b55-9113-ea6dd2bd01ef 1 Other Other +a59a5b92-eccc-406f-b5c6-0d31421f8be5 1 Other Other +a59a6243-7c30-4610-b833-f1c510852e67 1 Other Other +a59a648e-83d7-4ebe-ac08-5c2ad67cbbb2 1 Other Other +a59aa802-f624-4253-98d0-b670e063506f 1 Other Other +a59aba2d-e548-4dd1-9c60-d44ce4f7dc56 1 Other Other +a59abebb-292c-436e-a0a4-c734df09169c 1 Other Other +a59adab4-6401-4ad8-be7d-15d582cafdd2 1 Other Other +a59adfa3-8654-4311-9ff6-8efbf6d492f8 1 Other Other +a59aea09-063b-453c-8add-b10aa8afaa37 1 Other Other +a59b08b5-484a-4486-825e-6d4c0c3004ab 1 Other Other +a59b176d-3aad-4d84-97ac-54931e8ccba8 1 Other Other +a59b35a7-3a8a-4c2c-b36c-3e1bfb5d6cca 1 Other Other +a59b5b63-4270-47d6-870b-d45ad7dd4e93 1 Other Other +a59b8736-2ea7-4dc2-8de9-0e8c3f485fff 1 Other Other +a59b911e-4d06-4965-a4a8-189a8a6e4b55 1 Other Other +a59bb780-2fe9-4b92-8062-47e208d9d76a 1 Other Other +a59bc950-7e90-4141-a754-d22e4af6819c 1 Other Other +a59c4e9f-8491-4a61-921b-0c375ee28ccb 1 Other Other +a59c7cfb-45fe-42da-90f0-081f329c2d86 1 Other Other +a59c88fd-5b20-4df0-8626-64087379b1d6 1 Other Other +a59c9493-24cd-4580-88a6-76a23edbcdad 1 Other Other +a59ca3f1-0dea-4b03-935e-add0c5d2600b 1 Other Other +a59cbd40-e98a-4f26-91a2-8ed5ed72978b 1 Other Other +a59ccae4-9f9e-461f-a6a8-d128cfb77322 1 Other Other +a59d048b-ac40-4819-8db0-59cd19ae5818 1 Other Other +a59d4b31-bd2d-40a7-aa27-bfbbce16bbfe 1 Other Other +a59dcc54-a332-4fee-bdaf-10ff7f44a45c 1 Other Other +a59dcdf8-484e-41a2-a45e-902827647b5a 1 Other Other +a59e4fd8-480d-41fc-a499-a5613b8ccaa8 1 Other Other +a59ecc96-defa-4067-b3af-7624ce0f0418 1 Other Other +a59f1488-ee1c-479e-82e6-fab3376748a9 1 James Other +a59f1e3b-fe01-41d5-b85f-fa252da8d775 1 Other Other +a59f7550-0814-4950-bf60-40f5efcda04c 1 Other Other +a59f9124-0b11-4f88-ab2a-a2d1018304a8 1 Other Other +a59f99f3-2018-4288-9748-17d347185e39 1 Other Other +a59fb7ad-f664-415d-96c4-bb958a46b1c4 1 Other Other +a59febaa-319b-4a46-8d14-c3cd90ad802b 1 Other Other +a59fed5b-a5bd-4e57-ba48-5024bc8bcf54 1 Other Other +a5a0102a-9feb-4053-a6a8-344f1f89a45f 1 Other Other +a5a025f4-50bf-4b61-b4ca-6f95e7d900e2 1 Other Other +a5a0627b-4d00-424c-b311-a5e63c183fc9 1 Other Other +a5a09ba5-7657-4fee-8d54-6d7f499db9f4 1 Other Other +a5a0a589-8d2d-41c7-8943-768e94b516d9 1 Other Other +a5a11e4c-0690-11e8-af05-fa163e8624cc 1 Other Other +a5a1488b-022d-42d6-82a6-9a6c33ae005e 1 Other Other +a5a14f91-f760-4585-b844-606e2a62ef60 1 Other Other +a5a15fe6-5603-4826-ace2-49bd80ef95a8 1 Other Other +a5a216ea-52d8-4e71-8be4-7e49d1a7f169 1 Other Other +a5a22966-00e5-4887-838c-61c9e7cde3b3 1 Other Other +a5a262f2-e873-438e-bece-0052d8788a1f 1 Other Other +a5a26b54-270a-4213-ba36-81ade8a7b725 1 Other Other +a5a2b7a5-c477-4efb-8fa6-d8e724c7794a 1 Other Other +a5a2e435-ce4d-4463-a80a-3a92ce4f9e64 1 Other Other +a5a30470-fff1-42f5-90eb-dabc1b017d4f 1 Other Other +a5a34412-7b84-4bf9-ac50-0a4eedc6b65e 1 Other Other +a5a3723c-9d46-40bb-9cbd-89587e9aa2e3 1 Other Other +a5a392cf-5ff8-4db6-9883-9774c27532bb 1 Other Other +a5a3a592-c0f6-46ec-9bfb-595125ac2486 1 Other Other +a5a3e0ec-0bd7-4cad-9488-b2f12c4c2c52 1 Other Other +a5a3e25c-f698-47d3-bfe7-35756540b647 1 Other Other +a5a42411-9f3f-4a57-8b39-d4e8daa93360 1 Other Other +a5a441ea-c16c-481c-95fa-8595076a1118 1 Other Other +a5a451c0-9c74-479e-8601-02884f03a983 1 Other Other +a5a4de63-117b-435e-ba4e-9c72fbf1ddfa 1 Other Other +a5a50fb2-e996-40af-88ba-58494c05b515 1 Other Other +a5a51512-cd46-405f-93de-cf34f64c1043 1 Other Other +a5a577a8-8e46-4eb8-9c4a-dc960123b127 1 Other Other +a5a5dea9-cf25-42b3-972b-d4b1f6dc6971 1 Other Other +a5a60562-c916-4571-a7c2-76da4749f5da 1 Other Other +a5a6a3b7-9cd5-4f73-97ad-ae76a3aa5ee4 1 Other Other +a5a6a6bc-6113-44f4-a9ff-debafb095e98 1 Other Other +a5a6a976-da75-4465-8f7e-be4faa740256 1 Other Other +a5a6de8b-af75-4890-a4dd-dcabead0fe69 1 Other Other +a5a71df1-963b-4c11-bd4f-510fe160e9ec 1 Other Other +a5a7588a-edae-492b-b4e9-61f0dbf3deb4 1 Other Other +a5a75e5d-0c83-42fb-8711-8f853ad50ba2 1 Other Other +a5a77894-f0da-4ea2-b4bd-f378fca0c5fd 1 Other Other +a5a789a5-009b-4d97-8bba-a1cc5e1b0d58 1 \N Other +a5a7c525-68ca-4ae0-80be-01c1b3295211 1 Other Other +a5a7f958-3d4a-4d27-b60b-83355e6ac500 1 Other Other +a5a7fc97-ca97-491c-b6cc-2562d2d13657 1 Other Other +a5a87c00-4646-49ac-842f-97b2807912a7 1 Other Other +a5a89e56-ac05-46c8-bfbf-ba6328d81f9d 1 Other Other +a5a8b6c3-a1e2-4835-be01-7b841c14f42d 1 Other Other +a5a8bcc1-10ab-494a-a7ea-b1118824a505 1 Other Other +a5a8c886-9e59-4cfd-b5dc-e26cb4967bf8 1 Other Other +a5a8cf45-971b-4420-929c-b0678437631e 1 Other Other +a5a8dec0-bd89-4790-bc37-19e304fb24db 1 Other Other +a5a90db0-39b8-4c3a-aef3-13c66476a4f1 1 Other Other +a5a9152f-733f-40aa-9308-2d7c4d12a972 1 Other Other +a5a92110-5d47-4bf5-ad50-6e6b9f2b918b 1 Other Other +a5a9a20e-26ae-4c5d-b90c-a74a26ecb0aa 1 Other Other +a5aa8aaa-8610-40ec-ba55-9856d96e3e44 1 Other Other +a5aab653-8252-4fe9-8349-d081f396fe26 1 Other Other +a5aad261-f42e-4f00-98f0-5dcd663010b5 1 Other Other +a5ab21bc-ffab-4c9e-8ffd-acbf29448ac0 1 Other Other +a5ac2464-c28f-4c88-8eda-8c289ef9a928 1 Other Other +a5ac2d2d-d17f-4607-b2ac-522edb574216 1 Other Other +a5ac43f2-b8e5-4ab6-9b95-1af6e287e728 1 Other Other +a5ac9e4a-ff9b-4a54-a47c-d6dc157cd0c5 1 Other Other +a5acc97a-dd91-456d-bef1-283f8e3c44b6 1 \N Other +a5ace2f2-3ea5-41f1-91a5-c5730f312fb7 1 Other Other +a5ad199e-db1a-4631-983f-cb0d09ee561f 1 Other Other +a5ad4571-a71e-4c9c-98c7-9756b63ffc43 1 Other Other +a5ad4a07-ccb7-4c39-b79b-7a6770186685 1 Other Other +a5ad524f-6892-420e-9cea-e490cdd59ebc 1 Other Other +a5ad9153-c712-4f26-ab3c-57a71291b1dd 1 Other Other +a5add117-d78a-43df-af43-6fae720761a3 1 Other Other +a5ae32cf-cb3f-4ec6-8a71-e9a76114160f 1 Other Other +a5ae8475-4f31-4a36-b387-11649bc9a0a3 1 Other Other +a5ae8562-0ab2-46d8-ac11-316cdbb0c749 1 Other Other +a5ae95ca-9cc1-4ed8-8da9-34273a19c87f 1 Other Other +a5aee2d5-bf8a-4647-a65d-5a8a2797a42f 1 Other Other +a5af00e1-8e30-448f-957f-613adc087d40 1 Other Other +a5af3d89-d97b-48f4-ad28-aa435d6bea8b 1 Other Other +a5afb969-5b49-4a50-abbd-e4a798539b51 1 Other Other +a5aff03e-6de9-4af1-be3f-30bda282b6e6 1 Other Other +a5b051cd-1379-4623-a615-e8c6e7ce7c50 1 Other Other +a5b0ca57-b02e-447f-9bc0-2bc2654018e6 1 Other Other +a5b0cc86-b140-4ba5-9186-7cd4df814b6c 1 Other Other +a5b0d900-b423-40ec-b22a-74a92b6a78bb 1 Other Other +a5b0f1b7-e428-4428-b694-c647a7253fdf 1 Other Other +a5b0f90d-9503-4e06-8253-697ba408f734 1 Other Other +a5b1b469-2663-48eb-bd4a-1b15c69c7481 1 Other Other +a5b20d27-b9d0-4ad1-a27b-0970742c9b2c 1 Other Other +a5b22d60-52c7-4528-a8e2-8a6d2db4a4fd 1 Other Other +a5b25359-dcc3-4d63-8bf2-600c759a6592 1 Other Other +a5b25e0c-6324-448f-8db9-06ab747f481d 1 Other Other +a5b2ae84-86a3-4ba5-937d-839b04b02b2f 1 Other Other +a5b2d429-540a-40c6-ac20-747b99752cbf 1 Other Other +a5b2fa27-7c13-4ba9-b581-210311e0f826 1 Other Other +a5b30aad-4e7b-44f5-b931-e1b2c02abd82 1 Other Other +a5b32bf6-e470-4825-a139-fbb4389df0e2 1 Other Other +a5b3a4d7-f535-4b16-bd95-04433528bcba 1 Other Other +a5b3c137-1a20-47ec-9734-548ef2557df6 1 Other Other +a5b3e433-15a6-4322-b3ee-ebfc739aa925 1 Other Other +a5b43d73-89e3-42de-b252-5d98dd2330ff 1 Other Other +a5b4e515-d918-49cb-807f-84772f969c61 1 Other Other +a5b4e5b7-0b88-4b52-875f-ff99a10b197a 1 Other Other +a5b4fb89-6361-4405-b6b4-1d1430ec4d98 1 Other Other +a5b539d0-538b-4e9c-925a-37e1385cdec3 1 Other Other +a5b553a8-48a1-4a7a-93e6-59d8451a63d6 1 James Other +a5b59e23-fcaa-4cad-9326-20d7a250a72d 1 Other Other +a5b5a59d-4fc6-4364-a9f0-0a6215887637 1 Other Other +a5b5d4e4-8fdc-45c9-85d1-a0133000ec71 1 Other Other +a5b6027b-3721-46e3-8031-2a6089e0bd8d 1 Other Other +a5b60766-e575-4eb8-8615-ca17921a02cb 1 \N Other +a5b64c90-d95f-40dd-abe2-8c4e71bef469 1 Other Other +a5b6662a-d601-490e-8e7e-b722a852e1d1 1 Other Other +a5b670cb-af96-4dc2-a051-d52bf8666fe9 1 Other Other +a5b69454-7499-45d8-9b26-02253c9a4f78 1 Other Other +a5b6ace5-4c55-41d4-adcc-9a7409d4ae89 1 Other Other +a5b6b4be-a554-4615-a1bb-bf206870d902 1 Other Other +a5b6e687-8a8e-44ac-89a4-d766aa417a06 1 Other Other +a5b6f651-3c36-49bb-b953-c6018fe7944d 1 Other Other +a5b717ab-53b2-44ad-8ab9-fc995080dea5 1 Other Other +a5b736c9-034a-4311-a832-72d38b2672a3 1 Other Other +a5b75f16-80a6-4f4d-a1e9-7014f8ef7e64 1 Other Other +a5b76fe2-fcc8-45b6-a554-6ab5b34bcdd0 1 Other Other +a5b7a09a-7b4b-4b41-828e-3183a24c739c 1 Other Other +a5b7c305-9d81-4622-a745-08abf194f057 1 Other Other +a5b7f989-995f-4f5c-ac26-7fd3dcf4819a 1 James Other +a5b81117-8679-458c-a279-0d3f156628ca 1 Other Other +a5b81370-39d5-47f6-ac9f-39839e6d414e 1 Other Other +a5b8853c-ccbe-4e89-a235-b818efad99c9 1 \N Other +a5b8c104-80b2-4a4e-9c0e-8ea493716654 1 Other Other +a5b8ce54-2c35-4219-bef3-9d85dd1a7cb3 1 Other Other +a5b8d32c-dde0-4f0d-a53d-f8da44519565 1 Other Other +a5b92718-521e-45de-b59d-10f9785e7bb6 1 Other Other +a5b97eff-2802-44f2-ac0d-9fca4a909b85 1 Other Other +a5b97fa3-0a3a-4d75-91ab-8064d0cf80fa 1 Other Other +a5b9a3fb-64b2-434f-81c5-862ef4550960 1 Other Other +a5ba1e9b-0fc1-4577-a91d-0bd6e1bfbb78 1 Other Other +a5ba8a4b-7aac-4d13-8fa2-65bd2adb936f 1 Other Other +a5ba8c3e-2e4e-4c78-b28c-c3d4267880d9 1 Other Other +a5baabfe-c16e-4366-9e38-4df7f7d204e9 1 Other Other +a5bac245-b42d-4fa3-b2fd-6e85e94768fd 1 Other Other +a5baf7ea-39ac-406f-ac65-93f51dabe08c 1 Other Other +a5bb11ab-3eab-4531-a790-ba2e6e853670 1 Other Other +a5bb1cf7-52c9-40f3-bb66-93af65ec03cd 1 Other Other +a5bb3497-5ced-4af0-b87d-5764b9c77760 1 Other Other +a5bb9d15-fe23-4596-b8c8-9f62d54f9cb8 1 Other Other +a5bbebdf-7cb9-43be-9ccb-737ff408bd2c 1 Other Other +a5bc03b9-8798-4e55-884d-82d81b5f8c93 1 Other Other +a5bc2ff2-5eef-4aaa-93ad-d1a9b6ed5559 1 Other Other +a5bc3822-f32f-489c-96ad-16e1ab52b510 1 Other Other +a5bc5dca-8d52-4000-9399-7273a42cab83 1 Other Other +a5bc744c-3a29-4317-ba68-082441c9b943 1 \N Other +a5bc8761-72a1-43c0-a4e6-b57b43de8f57 1 \N Other +a5bcab94-c93f-4fb9-a73c-a17e2a8e9df4 1 Other Other +a5bcb292-ef2d-41f9-bba1-b804d1e41efc 1 Other Other +a5bcdddf-5ca3-46cf-9b6b-d2d7e685493f 1 Other Other +a5bce8fb-4cb4-4b9c-ab41-d47f28ec40db 1 Other Other +a5bcfe89-b3ff-4db4-96e9-e4f6c53e94f4 1 Other Other +a5bd65aa-7a85-415d-8ec1-afb833c38812 1 Other Other +a5bd6dbd-3258-46e6-83e5-01825e93f27b 1 Other Other +a5bd8045-602f-426b-a9eb-f32705f0b1a0 1 Other Other +a5be1c95-8cf8-4e05-88d2-d620adf72b84 1 Other Other +a5be285a-3ad8-436a-9fc4-ef31db5003f2 1 Other Other +a5be46c1-c87b-4cf7-8d66-1aaaedf6e239 1 Other Other +a5be9294-8bec-46d2-8314-6c489473b0d7 1 Other Other +a5bedf7c-b6e2-488e-8dbc-98ef7999c468 1 Other Other +a5bf073e-01bc-4381-8b1a-256cd1b14a24 1 Other Other +a5bf5f95-bb2e-4773-b6dc-6e43d37e0e7b 1 Other Other +a5bf6223-69d4-48f3-9079-bd1183fda247 1 Other Other +a5bf6777-541a-4c7d-97b6-10328386df36 1 Other Other +a5bfa99e-5eaf-4642-83fe-9abfdf27738c 1 Other Other +a5bfaa0d-bcfe-4f07-aa58-cf535894a816 1 Other Other +a5c01731-b2ad-45eb-9761-195a1c77229c 1 Other Other +a5c026d8-b1c1-4fa7-83c3-ef9c8cc87ad5 1 Other Other +a5c03c0c-221a-4e2f-9d2d-32902afba205 1 Other Other +a5c088ee-a74b-11e7-b7e8-fa163e8624cc 257f6774-64eb-11e7-954b-fa163e4dd901 Other Other +a5c09e9f-64e1-48d4-a016-cf0b50af11b4 1 Other Other +a5c0a3cb-8e8f-4e11-ace4-25d0399a39f4 1 \N Other +a5c0d203-0f14-4188-8335-bbb45d5a5332 1 Other Other +a5c0f874-fccf-4f59-8688-49481bf573bf 1 Other Other +a5c14a43-1924-415d-9987-507b352f7da1 1 Other Other +a5c181bf-9c4a-4c77-8ffa-d5efa5493484 1 Other Other +a5c1a85f-afbb-4181-9fd9-19a45ef21f8a 1 Other Other +a5c1dd3f-8c80-41b2-abf4-1c4d6e421b42 1 Other Other +a5c1e1b8-3bf0-479a-9f76-452679a3a913 1 Other Other +a5c2143e-42e9-48f8-88d3-110625f0ee8b 1 Other Other +a5c244fc-7418-4d46-9fb3-462a4aa7a1d2 1 Other Other +a5c2b0a6-64fc-465b-bb62-0c87e72696ee 1 Other Other +a5c2b196-f7a0-4d82-9cb5-84b186f712c3 1 Other Other +a5c2da02-89ab-4789-9a8e-a650a6384567 1 Other Other +a5c388b7-c5b6-4392-902e-bda02f35def4 1 Other Other +a5c39c04-4650-4caa-ab50-ea2ef2694758 1 Other Other +a5c3fc65-6691-4b65-bae0-15bae9bdd798 1 Other Other +a5c4085b-3683-4016-b884-b6080e787919 1 Other Other +a5c40a4b-1f42-441b-8174-db661b8a9381 1 Other Other +a5c40ef4-4914-4977-ab44-6810bc8794a5 1 Other Other +a5c412ae-71fd-448e-9bc1-6e9f1662a4a9 1 Other Other +a5c44278-83fe-4772-8387-70285f0671d3 1 Other Other +a5c4aee7-3b16-40fb-b5a7-fb9c2bd00c53 1 Other Other +a5c50927-c53f-4632-a993-fa9bf6ac107b 1 Other Other +a5c51839-17af-4b3d-9f6d-a972069ec9ab 1 Other Other +a5c5227e-c54a-476c-9ac0-a5cdb0e7012d 1 Other Other +a5c5354b-5b26-4ceb-8e72-8a1511cea788 1 Other Other +a5c53a12-e7a1-40fd-b103-3cdd3f3f8f3e 1 Other Other +a5c569fa-eb21-4e0e-b378-2354c225e021 1 Other Other +a5c58339-5bcd-48fb-be7c-f4c7d1ffe676 1 Other Other +a5c59595-2608-4a9c-b25f-ec0f90ad8e69 1 Other Other +a5c5a7f0-90a8-4593-9abc-776544bf780e 1 Other Other +a5c5f68f-7ab0-435d-843a-45a6161282dd 1 Other Other +a5c5fda6-f52a-11e7-9a7c-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +a5c60fcf-5007-4ba0-9fce-c22b3743c32a 1 Other Other +a5c63e11-66cb-466e-a195-406a1a68e504 1 Other Other +a5c76819-86f8-4d43-9a5c-d4781d6e7df7 1 Other Other +a5c76d9f-adee-4f10-a6c2-0129df7c106e 1 Other Other +a5c78805-2e07-45d9-a77a-6ef91570f6a3 1 Other Other +a5c79687-d908-4759-b026-a403c77f0eb8 1 Other Other +a5c815b9-75bc-42b9-a3fe-b078aab341b7 1 Other Other +a5c90772-e34b-4546-a8a8-18f8d6a6d6f3 1 Other Other +a5c9617a-dd32-488f-9037-5e4dcb32f267 1 Other Other +a5c96c4c-03d9-4d7f-a5e9-1aa404efe8b0 1 Other Other +a5c97031-54c3-401a-909f-c6976a997d94 1 Other Other +a5c99708-54ba-4c01-9c28-e0cc94e6cdfd 1 Other Other +a5c9b8de-2489-4d6b-9ae8-5bc75314ac24 1 Other Other +a5c9bc17-0faa-4d13-84ce-be8a0f7683f7 1 Other Other +a5c9fb0d-8487-4d55-ad6f-d487ea4760e9 1 Other Other +a5ca0b1b-b9c2-4af4-b6db-9d065da1b287 1 Other Other +a5cab743-e427-4325-909e-8d6824b8adf3 1 Other Other +a5cae4ab-f3cc-4936-890b-f6cc424bdeb0 1 Other Other +a5caeb11-3639-45d6-811c-bdd58248e0b7 1 Other Other +a5cafccb-f3e8-4f98-8b8b-56b285be2f89 1 Other Other +a5cb10ca-3017-4be1-9d20-3d8e93ae4420 1 Other Other +a5cb24c2-428c-4c42-844f-e6b64f07ba9d 1 Other Other +a5cb27c2-7a35-468f-bb92-bfb1299a3bf3 1 Other Other +a5cb27f0-5b8c-4db8-8ffe-61536d7a13f5 1 Other Other +a5cb3f7b-017f-47f1-871e-57e6c633fff6 1 Other Other +a5cbcc15-b751-43be-82ef-105ae0462ad4 1 Other Other +a5cc102b-062d-4794-8c3b-7a05c045f59e 1 Other Other +a5cc3ee6-825e-4a6d-b432-242dfef5b136 1 Other Other +a5cc4ff4-bf74-4287-a45e-cb8c36522050 1 Other Other +a5cc9771-5032-4667-a16d-a5ab611012ff 1 Other Other +a5ccb356-d68e-4545-a9fd-8d24a70445d2 1 Other Other +a5ccc385-4673-4de1-aada-6ac27835a8e9 1 Other Other +a5ccea54-7b7d-4467-97e0-47b1eb458b9b 1 Other Other +a5ccf483-72cb-47e1-b57b-b116271eb93f 1 Other Other +a5cd102e-5326-42db-b32c-24bdf73c7404 1 Other Other +a5cd5d43-3b60-42b4-8e44-3818e008869e 1 Other Other +a5cd68d5-6c76-4fce-a2ab-c544ac68d4d8 1 Other Other +a5cdb356-e8c8-480a-8064-2cf830a82f32 1 Other Other +a5cdf495-bd01-47a7-afb8-e82cd4fbc86f 1 Other Other +a5ce33dc-a9a1-46bf-a02c-696ef3de78ad 1 Other Other +a5ceaaf8-fe52-4966-a3a1-a1aa907933ae 1 James Other +a5cf2dba-db76-4545-8107-62cfb10afaae 1 Other Other +a5cf8d40-d4e1-4b88-938e-34e0cb820b41 1 Other Other +a5cf8f02-0064-49c1-907d-75e26da8eb8e 1 Other Other +a5cfdf2f-a09c-4826-b811-1914d92c7ccb 1 Other Other +a5d00230-9831-4643-b500-ba8ed9506a82 1 Other Other +a5d00481-ed49-4d57-9f20-1236b79c3eab 1 Other Other +a5d03e00-fcad-4dd0-a4a9-ba843d3fc2bd 1 Other Other +a5d0ac74-a4b6-4c8c-8d07-c3b244beca98 1 Other Other +a5d0b586-e3a1-4a14-8d67-bd8c72819293 1 Other Other +a5d0bbc4-1157-4226-b22c-3a118181583b 1 Other Other +a5d0d8c7-5436-4ab9-8d11-c9090be32142 1 Other Other +a5d11c08-80c4-4336-a2a7-b399cd05a2e0 1 Other Other +a5d11c0e-d23a-4e9a-ab6a-5bf5ece3de19 1 Other Other +a5d14537-066a-4473-9c3e-1270a9aebf6d 1 Other Other +a5d17453-1af4-4b4d-8ef8-a54e69f8366c 1 \N Other +a5d1bcb3-74bc-4648-bb10-ee68e1874176 1 Other Other +a5d1e7a2-18c3-492e-9a8f-ceb7751b6c03 1 Other Other +a5d1f24c-6398-4193-bded-201c74d089ba 1 Other Other +a5d205d7-0ddf-4f92-85a3-9bb0dc0a7bca 1 Other Other +a5d20c82-30b3-472a-bdc6-8537cc38b0fe 1 Other Other +a5d2f7e5-b514-4b38-b6d3-e15e2ba08910 1 Other Other +a5d32721-fd6d-407a-b360-ba3226ef5ac4 1 Other Other +a5d3600c-dbd3-4c3f-b9e8-6436ff1121d0 1 Other Other +a5d3be2b-6074-4934-b060-64ef64634353 1 Other Other +a5d40809-bcff-4aea-a116-f94e28fa50cc 1 Other Other +a5d40e75-886b-4037-9650-ed4005800931 1 Other Other +a5d40f9a-3c60-4a9b-819d-92e126a0d719 1 Other Other +a5d41921-523a-4ec6-a671-cc7b484988b3 1 Other Other +a5d45732-3d1d-4976-bbba-b420897c2280 1 Other Other +a5d49dcc-3e1f-4306-b9a7-d8e7fb47235c 1 Other Other +a5d4c1ce-0235-4793-9ab4-f96b2424fc4d 1 Other Other +a5d503ea-be43-479f-b205-197ed063aa83 1 \N Other +a5d5444f-ecdf-4a69-ab0f-bdd450358b73 1 Other Other +a5d59800-3aa1-4ed3-8ff7-dff867521583 1 Other Other +a5d5aa8d-9619-4d43-956a-794cd1d75ca7 1 James Other +a5d5e6a4-b49c-4f03-8b37-780431a66acc 1 Other Other +a5d647f3-61de-4c9f-aad2-01f8ed813bb2 1 Other Other +a5d68191-059d-42be-b19a-d2a4d0d70ecf 1 Other Other +a5d69ed8-4bbe-48de-82c4-35a218c99698 1 Other Other +a5d6a0b7-de5e-47c4-93e2-a49e72beb0e3 1 Other Other +a5d6d4c8-5c72-4249-a1b7-7b0d01d1947e 1 Other Other +a5d6e5b9-4658-4f2a-a35f-8a11e1714705 1 Other Other +a5d77939-e2e4-4a97-a054-433b30e29854 1 Other Other +a5d82a2b-acce-41b5-802e-6767645b77e7 1 Other Other +a5d82c49-f40e-48f3-82af-df825d55e1b3 1 \N Other +a5d8434c-bb0d-46c6-9d07-7f72dc6ac230 1 Other Other +a5d8b80c-6931-45ee-af99-62190df33bc5 1 Other Other +a5d8da36-66d3-4c72-af4b-a3d83ae40377 1 Other Other +a5d90778-4374-4e16-b343-61ac90a19f84 1 Other Other +a5d92c08-17f1-4a4b-9fcf-9a3bac78cb8c 1 Other Other +a5d985bc-f059-43d4-9489-5546672e7069 1 Other Other +a5d9e30c-a5f8-4280-84ca-ab09d81621e4 1 Other Other +a5da5392-8495-4f98-b7cc-cf2db2fe1adf 1 Other Other +a5da5670-3864-40db-b016-f8d40a947260 1 Other Other +a5db2b78-cf5a-4177-b87b-fe92e45b633d 1 Other Other +a5db7b22-0304-4491-92db-5877d818fa86 1 James Other +a5db9474-a3e7-4646-91af-3bd0c6d4f767 1 Other Other +a5dbc380-1425-47af-8bfe-1b0b87a48249 1 James Other +a5dbc961-7d5f-4ddd-95da-0c2dad4e24ef 1 Other Other +a5dbd051-8acf-42bc-815c-9a272b0a498a 1 Other Other +a5dbd075-4741-46e9-ba4c-a541c2c88a69 1 Other Other +a5dbe354-b6d8-40fe-99a6-191eecc399f4 1 Other Other +a5dc32a1-ab88-452a-96a4-4cf0572877aa 1 Other Other +a5dc44a3-31e4-4cbe-852c-6736887325c7 1 Other Other +a5dce01e-254f-44be-b3ab-8b271e31756d 1 \N Other +a5dd00e2-5b81-445b-b8e1-4e684532afe7 1 Other Other +a5dd8f4d-1479-43ea-bf9c-d992e8269fc3 1 Other Other +a5ddaede-e469-476b-8c5f-234b72fe90f7 1 Other Other +a5ddee8e-e8b2-477e-addf-125f20e729a3 1 Other Other +a5de0bbc-f1cf-481e-879b-d158e96bfbce 1 Other Other +a5de786e-e8f6-4019-9b05-a46992507cf3 1 Other Other +a5ded9b8-efce-4636-b2e5-adf9ee40d4eb 1 Other Other +a5deddcd-5a4e-4d7a-a764-c3c4bd98c625 1 Other Other +a5df0183-daad-488a-911e-8d20870ab342 1 Other Other +a5df34c1-49ec-4f2c-b484-3e8be35f8b85 1 Other Other +a5df6339-4d12-42dc-be2c-5d410cfef147 1 Other Other +a5df6bd3-2125-491f-b695-fb58cddc1532 1 Other Other +a5df8fd4-68cf-47a1-a08d-8904e4547f43 1 Other Other +a5dfaa7f-7f85-45fb-b707-9814291073c3 1 Other Other +a5dfb166-536b-4515-838a-a35c944f1e42 1 Other Other +a5dfcec0-3fc4-4063-9856-9d8fb28dcd8f 1 Other Other +a5e02b26-ce51-4ebd-926e-cb7146ea2dd7 1 Other Other +a5e04ad2-2401-4327-a3b6-d44791eec268 1 Other Other +a5e05249-f198-4810-8c26-21ae1ffd4147 1 Other Other +a5e067be-123b-4032-a2df-7c200e0c4faf 1 Other Other +a5e0817e-3067-4a7a-90ea-02051787f2d2 1 Other Other +a5e0b2df-bd9b-43e6-ae10-fc9fa98abcfb 1 Other Other +a5e0b434-3913-4b74-bdd9-a7baa3d0bc15 1 Other Other +a5e0fb2d-5ac2-4ae5-9efe-1babee8cfa16 1 Other Other +a5e11bf7-d71c-4da1-a1fa-93c8e7c4404d 1 Other Other +a5e162d8-b0db-4409-81fc-f1cbe4abe2df 1 Other Other +a5e17625-ff5c-4bc7-9e3c-2d8c189f6556 1 Other Other +a5e1a036-60e1-4a9f-9d81-203a3e3665a1 1 Other Other +a5e1fe8d-3fa1-45f1-95cd-1de18eb3081d 1 Other Other +a5e2086e-1713-43a1-be20-0582a6bb5b94 1 Other Other +a5e21e50-3359-45a5-8178-4a5de27e27eb 1 Other Other +a5e2661e-a9cb-4017-afcf-5cc0c443b6a9 1 Other Other +a5e295ad-87f3-476d-88df-5e88b8dd04c1 1 Other Other +a5e2bf87-5acf-4971-8a86-72c1cf512eca 1 Other Other +a5e2c4f1-3fd7-44a2-8763-45be9ac9b779 1 Other Other +a5e3563c-c1ab-489e-9999-9b2f12c62728 1 Other Other +a5e36514-ba3f-4afb-bb95-6787ea32eb12 1 Other Other +a5e395a2-b5f7-4955-a9e2-f56bcfd96380 1 Other Other +a5e3bc29-d16e-4e42-a35d-f2f42b6fb3cf 1 Other Other +a5e3f312-7c59-4c8d-9320-c91e7851efbc 1 Other Other +a5e44e65-c33a-46b8-88c6-f149879eea96 1 Other Other +a5e470cc-54cb-4fca-8d65-3b798490cef7 1 Other Other +a5e4d346-9617-4522-acf9-d71854bd6342 1 \N Other +a5e4f7ae-a595-4de9-9932-caacbe5bbe19 1 Other Other +a5e50507-bde7-4a86-a775-fc5948de9851 1 Other Other +a5e50f04-8a05-4225-84d9-a7e78e1e997c 1 Other Other +a5e520af-c003-45ad-a95a-577c6c41f1a7 1 Other Other +a5e55b91-7445-4f56-8d0f-390006208394 1 Other Other +a5e57013-4f17-41c8-8cf2-68490de4a1a9 1 Other Other +a5e57fbb-5c19-4c2a-b295-f45fb6074c03 1 Other Other +a5e5d2f8-b9e9-4deb-bb58-75ad1b0f7683 1 \N Other +a5e5d961-4864-4abb-a4a9-3a3289b0b19b 1 Other Other +a5e69b64-0fc7-42ba-b4a8-8c1005d7ac82 1 Other Other +a5e6cc50-916b-4e5e-ad22-81394a73dfe9 1 Other Other +a5e6d6c6-d875-4722-ae41-e2aa7f56e7a2 1 Other Other +a5e7f429-5c92-4e66-a4e8-d22b6929d606 1 Other Other +a5e83492-b8c8-4948-bdd7-762d6c3edf31 1 Other Other +a5e849bf-7947-490e-8bad-13d2ea13ff90 1 Other Other +a5e8de27-0ce1-438e-b513-0c73dbf0eb74 1 Other Other +a5e907be-dd13-40fd-9393-dae78c72289a 1 Other Other +a5e97f57-5f27-4ecf-8f28-8afe371fe319 1 Other Other +a5e9851f-f70f-41c5-8838-93afd214e24b 1 Other Other +a5e99386-7cbf-4c87-a2b6-ba1ee7ad9041 1 Other Other +a5e9b050-5c17-4b52-9e47-e4a31c1f37b9 1 Other Other +a5e9baf9-e240-45d2-b5dc-9046c81d1d82 1 Other Other +a5e9be82-2361-4f46-811b-eefc0ffbc748 1 Other Other +a5e9fde1-fe3b-4be6-bbba-5619cef563d8 1 \N Other +a5ea0ef2-03b7-4658-8b49-08415d3c50a8 1 \N Other +a5ea4985-d075-41b4-bfa3-50d4df2a70db 1 Other Other +a5ea7c4f-881b-408c-91d1-b0fedfb70ff9 1 \N Other +a5eaab76-86d3-4ded-915a-c1815a8c6c17 1 Other Other +a5eae19f-21a2-4c6e-83c1-edb2abc29a05 1 Other Other +a5eae209-969f-45c5-8eea-4c183fdc5583 1 Other Other +a5eaf8f7-d983-4a36-a8b2-7ccd74c4c1b4 1 Other Other +a5eb2014-27c8-49cc-a577-0cb8b4552338 1 Other Other +a5eb2263-6686-47ce-a626-942a6cbbd8c0 1 Other Other +a5eb393e-9c40-4b15-ae60-56279d7239ae 1 Other Other +a5eb7e63-a83a-4988-a8d6-29af16e68f7e 1 Other Other +a5eb85e7-f838-4fa7-b71f-64011843e5ba 1 Other Other +a5eb8af7-7911-4bd0-afd1-e57786fb5399 1 Other Other +a5ebb1e9-39dc-4617-b4f4-e956d728e581 1 Other Other +a5ebcec4-9ac0-4853-b61c-71f6f99ad876 1 Other Other +a5ebdb52-6349-446b-b95d-671a8739a87b 1 Other Other +a5ebee0d-44e3-4cef-b9fe-f6ee354522e3 1 Other Other +a5ec21b0-4a02-4885-9ed3-94a3ca91cc31 1 Other Other +a5ec25d0-7e27-48d6-b6eb-327e8f38c800 1 Other Other +a5ec4341-892f-4c41-a4a8-6c936ba61e7f 1 Other Other +a5ec575a-772e-4b59-a482-e5011ae8c20c 1 Other Other +a5ec806d-014b-45fa-9824-c03807a8b048 1 \N Other +a5ed2bcb-da77-48c8-852c-bf8c213edeb4 1 Other Other +a5ed650a-c992-488d-b3b8-f23ba4c0a62a 1 Other Other +a5ed7bb8-a1cf-4169-9222-4a51d86ab1ad 1 Other Other +a5eddc00-121c-4094-a41c-efe9d9258844 1 \N Other +a5eddf2e-3e83-40cd-97ee-36db58f90394 1 Other Other +a5ee38c1-6afa-4426-823a-02e64e893676 1 Other Other +a5ee53c8-6ae2-4cbd-9d64-b0244e779014 1 Other Other +a5ee661d-118a-4b43-82b0-2a46b078aa67 1 Other Other +a5ee69b8-529e-4d48-b637-7c3e573f2171 1 Other Other +a5eeb29c-214a-4678-9fe3-f410c95513f7 1 Other Other +a5eec94f-3637-43af-bdd0-de0662501dbd 1 Other Other +a5ef05c2-58a8-4b99-a5d5-63174bc6d019 1 Other Other +a5ef1756-ec28-4934-9739-e9baaac239d5 1 Other Other +a5ef25fc-de36-40aa-915e-acddf73ab9c6 1 Other Other +a5ef2e36-4e6a-478f-bd5c-87796f5ef7fc 1 Other Other +a5efa48e-8700-4e8c-8908-5d06e20d2dfc 1 Other Other +a5efd91f-229a-4d60-a165-1e75e8a43bbe 1 Other Other +a5f04108-c827-46d6-83f5-c14f521f59de 1 Other Other +a5f08df5-4dd6-4df1-8431-3463a4b379ec 1 Other Other +a5f0e684-32c4-4c00-abb4-e0aeaa5491d3 1 Other Other +a5f107ab-b4b9-449c-92b3-57a98364f174 1 Other Other +a5f1169d-c8ff-445f-a995-ae34a8b29662 1 \N Other +a5f13315-cf3a-4518-86c3-1d1d644d73b2 1 Other Other +a5f16292-9ef0-4ee4-a891-8c23e29b2dd6 1 Other Other +a5f1caa3-7d45-4da1-9f35-331fbbd8d798 1 Other Other +a5f1d104-8ae4-4045-a947-42ec6441a38f 1 Other Other +a5f1f375-bb7d-4f8e-ac20-9cc7f9a494a6 1 Other Other +a5f20c3a-a821-4a41-bd26-9d88079ecb1b 1 Other Other +a5f21ea5-67c6-44f1-a000-16d85873d3b9 1 Other Other +a5f27f79-a76a-4ff8-b3ec-6ed32e1a1d07 1 Other Other +a5f30402-7067-4baf-b2c3-29dfe1e5a1f2 1 Other Other +a5f316d5-8242-4564-8c7a-ff0ef2c70014 1 Other Other +a5f3943f-712a-4b32-a589-ecefd89ef224 1 Other Other +a5f3afce-d9c0-43e5-832c-256c911f1f56 1 Other Other +a5f3b0e8-c272-457a-9f10-1ccdb7179c94 1 Other Other +a5f3b8d0-8829-426b-a9db-3a5acda9dcc8 1 Other Other +a5f3d29c-10fa-47d7-a817-f445df67727b 1 Other Other +a5f3e2bb-310b-430c-a52c-2fad1d7cc3fb 1 Other Other +a5f44dcf-b866-445f-b533-bedd44369143 1 Other Other +a5f456ca-8c68-47e6-9c4e-dfd0e3c65253 1 Other Other +a5f4a6fd-512c-423b-8da4-05396d592c7d 1 Other Other +a5f4b15c-1932-4117-bd16-3bf33d4203f7 1 Other Other +a5f4de90-d9e2-47f6-8a8c-a2af47ef880e 1 Other Other +a5f4e73d-af1d-4f1a-b4fe-4d19880a4247 1 Other Other +a5f4fc27-a718-4190-9b00-b8ef6c3bd88d 1 Other Other +a5f515b6-580d-4102-be96-815172cf8546 1 Other Other +a5f542a3-ad3b-4816-97b8-68d3cb589e96 1 Other Other +a5f553d2-4715-4d1c-90b7-632eaff631cb 1 Other Other +a5f59bad-00fe-434e-82e2-1c317741200a 1 Other Other +a5f5cf41-4ec7-4f3a-b294-b21214e4df74 1 Other Other +a5f632d5-c17a-4676-afe8-fb398046972c 1 Other Other +a5f67899-de65-46f9-a458-387d3461f001 1 Other Other +a5f69191-5def-4924-8595-3aca9a98f112 1 Other Other +a5f6a566-69f8-4bec-9124-ff7587cf2995 1 Other Other +a5f6d7b6-73fd-4b91-8103-07b60164a42b 1 Other Other +a5f77658-5bc9-471f-a3a0-0412ab88198b 1 Other Other +a5f7ad42-9c6e-4702-9591-799ebb496bd1 1 Other Other +a5f7dde0-23e8-43ea-b352-25155654549d 1 Other Other +a5f8815a-56f1-482f-95e1-fb6b190a32b0 1 Other Other +a5f8a694-6cd4-405b-9ef3-37e30e8186a1 1 Other Other +a5f91e14-521f-48ec-b0ba-ae8972c41107 1 Other Other +a5f95650-d7df-49b0-8460-19669613b96c 1 Other Other +a5f98cac-effa-4c92-b376-0d0f00ecafd4 1 Other Other +a5f99a62-07fe-4597-ba59-06916cd58a03 1 Other Other +a5f9ad9c-76ff-4bf9-930e-5ed9a32622a7 1 \N Other +a5fa35f5-e6fd-43af-b0ae-1b44e9ef8541 1 Other Other +a5fa3831-97e6-4156-8c8f-aca9d9c9d061 1 Other Other +a5fa4180-19fb-4933-8637-dd9468c5e2ba 1 Other Other +a5fa7179-4922-42ec-9bd0-da6dfe74020b 1 Other Other +a5fa738a-4112-4afe-b38d-2b0b963fee84 1 Other Other +a5fafd57-d98c-40c9-9468-5754f671f11a 1 Other Other +a5fb1d71-1fcf-478e-ae60-cfb28ca6dd1f 1 Other Other +a5fb35b4-2ffb-47d5-a363-43a11a95aaf5 1 Other Other +a5fbb29d-24ae-4761-b204-11267700399f 1 Other Other +a5fbe378-ecc0-4a65-9f1f-1e7c1f40daa2 1 Other Other +a5fc2967-92ac-4cdb-9b96-11ccfec1ba64 1 Other Other +a5fc7758-d73a-411a-8526-46ef4accf3e8 1 Other Other +a5fc86a1-fce8-4b18-beff-2ebf84ae63f7 1 Other Other +a5fc9126-4655-4556-bcec-289a4951d6ab 1 Other Other +a5fcc0a3-07ca-4650-b21f-caf2b17c7a5e 1 Other Other +a5fcf05e-5339-4b2b-b033-14abec15136f 1 Other Other +a5fd1bb6-c3f0-49ff-b3e2-39659e5f0809 1 Other Other +a5fd1fbf-dd46-4dab-ad7d-f99b4e80f451 1 Other Other +a5fd21c2-88fa-4d71-af93-b0952b64b806 1 Other Other +a5fd6345-3364-49ba-b36d-6a134cc71354 1 Other Other +a5fda560-5caf-4b72-87c9-972487624833 1 Other Other +a5fdca68-c97f-4754-8635-38a27cfc183f 1 Other Other +a5fdec23-9034-42d1-a963-f72a117996d8 1 Other Other +a5fe055e-1269-4d6e-a297-7dac4b7589ff 1 Other Other +a5fe0f07-3429-49da-ac85-3ee4aa45a3a8 1 Other Other +a5fe27e2-62f9-4290-8fdb-1b3ad803c0c6 1 Other Other +a5fe73ba-a6d9-4298-8a0f-2221dcb98785 1 Other Other +a5fea1a3-d150-4988-a8e5-9fc59af27650 1 Other Other +a5fea9f0-21b5-40d9-9145-1ebe0db35ebd 1 \N Other +a5fec182-372a-4f64-ae57-c9b28dcaaf54 1 \N Other +a5fec1be-cae8-4d19-b555-b8925ddd1f1c 1 Other Other +a5fefd7e-2a08-4423-9917-8e1d54e8c83f 1 Other Other +a5ff003a-323c-4641-a9a8-2dbab2d7bc7c 1 Other Other +a5ff2585-3159-4f61-956f-a6245ad68ef2 1 Other Other +a5ff54bc-5180-4ff8-950b-ff00ea60193e 1 Other Other +a5ff6793-e739-4d48-9d3a-9bfde23fd235 1 Other Other +a5ff7a09-f7ad-4b12-9e56-dc2c1c734022 1 Other Other +a5ffe5cd-6ff5-4d4b-9956-3011174c14be 1 Other Other +a5ffe7ac-5301-4526-aaf1-0c61ae8de1d4 1 Other Other +a5fff44b-7d17-487b-8702-0979cf57f0b7 1 Other Other +a6003127-caab-4ad5-ad3c-942a94096c33 1 Other Other +a600a94d-f591-4a07-a1e1-cca511fcf6d7 1 Other Other +a600b7ff-fd89-4179-a074-aa964bba68a1 1 Other Other +a600bace-5099-45a9-83e3-4a9bc4ea4392 1 Other Other +a600e64a-2acf-4f1e-b73b-a99ec456b529 1 Other Other +a6014c01-26d9-4c3c-92a1-c2f2ff0d73c6 1 Other Other +a60161dc-24ae-4625-9170-31f5c6611d62 1 Other Other +a601631a-cb07-43bc-b8b8-7fc21d34c2f8 1 Other Other +a6019638-a98e-4e46-800f-c3c2385b6cae 1 Other Other +a601c4fb-7104-4152-8204-9da12c9fb62f 1 Other Other +a601d3ea-853e-476b-a6bb-d4d53f4b17eb 1 Other Other +a601da36-4d99-4f01-9059-2223ab667ec5 1 Other Other +a601f883-686c-4a33-bb04-4a9fdbf1bca0 1 Other Other +a6020464-346b-43e0-aaf9-3b8cc7f031f5 1 Other Other +a60222ae-0409-48eb-96df-454920647308 1 Other Other +a6022ed6-6345-4609-9733-0a7031f3dfd7 1 Other Other +a6027390-0f6a-47d0-a593-d38e48a970ca 1 Other Other +a602897b-3bf3-44f0-93fb-29bff3256e23 1 Other Other +a6029a5b-2c22-43ae-a9b3-e09f95fca61d 1 Other Other +a602d217-57c0-45aa-9532-eda53d170b41 1 Other Other +a602f649-ed61-480d-a610-8a88279224a5 1 Other Other +a6032d35-50be-4040-a7f1-ab3d606a8be7 1 Other Other +a6037744-d747-4871-898e-c87851294c74 1 Other Other +a603c1a7-e30d-4ab3-8894-18dd4d6c304c 1 Other Other +a6045389-583e-4a06-bd29-f834d47d54ba 1 Other Other +a604a642-0a3a-4c2d-a07a-0ba03baf3424 1 Other Other +a6053891-9168-4c59-a700-9274d6661a33 1 \N Other +a6053eae-c1fb-487d-8f45-336f69d3e3a5 1 Other Other +a6054087-5244-47a1-a5fb-b17d2659974d 1 Other Other +a60566c7-1669-4a0c-9c8b-d2dfab177229 1 \N Other +a6059591-fa93-4c31-8045-27d9d84be9ba 1 Other Other +a6059e73-384c-4479-bb38-94fdbad24340 1 Other Other +a605ad9f-62a3-43e9-a33f-665e0842b983 1 Other Other +a605e48a-fb72-406f-8b6c-0a08554f1c69 1 Other Other +a6061134-7496-47af-832e-35e7349d0f36 1 Other Other +a606380a-d30b-4a38-817b-222435b73d6b 1 \N Other +a606425d-0635-498c-ae8a-32e18143612e 1 Other Other +a60644ee-bf53-4a7e-b76c-95feb6f858a7 1 Other Other +a6064a33-03e0-4bf3-a9d1-e8900c980ce8 1 Other Other +a60661de-05c2-417b-8242-8e92d8ed9719 1 Other Other +a60672d3-2476-4264-87b1-24e4df295a36 1 Other Other +a60682e3-d1c6-42b7-9102-40a6b88fb2c4 1 Other Other +a606875f-e027-4bb9-817a-cd119059aaab 1 Other Other +a606a177-fb6c-4560-9021-fab074314f49 1 Other Other +a606d941-7c29-445b-9237-dffb5ad47060 1 Other Other +a606d9b9-2463-446a-872e-2e01c762c2c6 1 Other Other +a6071850-0621-442d-b725-e91fcab7ab17 1 Other Other +a6076839-d8cc-40fd-b0c9-60dab65fa019 1 Other Other +a6078e47-7d87-4d54-b809-19f2dc6a26f8 1 Other Other +a607dfbe-57b6-40fe-9e10-925c0ac865ab 1 Other Other +a6080093-b9d2-4f0b-a30b-40f516f48d23 1 Other Other +a6080573-b421-41d1-80f5-b45a85396e3f 1 Other Other +a608500b-f20a-446f-9041-a729e0cb7ec4 1 Other Other +a6086327-7ea0-43b8-850a-fcaf927447aa 1 Other Other +a6087f93-2955-4b52-9bd6-e0f082c69113 1 Other Other +a608828b-fd4b-443b-a98e-ed8abb25c4ad 1 Other Other +a608850e-6168-4be8-a4cd-3b0179aaa132 1 Other Other +a608a3f2-fd8e-4bcf-9417-242cdbdac006 1 Other Other +a608e89e-86f6-45c0-af1c-291f995412b4 1 Other Other +a609118c-2f1c-4df3-852b-718bd6cf7e1e 1 \N Other +a6093372-ba6b-453e-8e0b-0b316e2bb478 1 Other Other +a60967a6-eb50-4798-9190-23011691aced 1 Other Other +a60993d1-9529-469d-b948-4bff2b91969b 1 Other Other +a609b49a-333c-4299-913c-0f3d8da92542 1 Other Other +a60a2de7-f8c0-49d4-bde8-7d28a312245f 1 Other Other +a60ae246-3986-4929-a868-f03031cdb823 1 Other Other +a60b0c6d-f707-41bd-92b3-30a55c18f7d6 1 Other Other +a60b4a55-8473-4f18-8dba-5382adf5249f 1 Other Other +a60bae91-8460-4a34-8eb7-6b83bf24db93 1 Other Other +a60bb568-70b8-45f8-9aec-2aa958095dfc 1 Other Other +a60bc3a3-da3e-4514-b05e-0117ffeb125f 1 Other Other +a60bc758-c3ae-4df7-9dc4-78d5dbd2db32 1 Other Other +a60bd7c5-0b52-4fe6-92a9-04a80885ab8d 1 Other Other +a60c35da-dab4-44e3-b182-c164c4e7e68f 1 Other Other +a60c4cd2-8435-4a73-ba34-aed726e2c17d 1 Other Other +a60c79ce-f104-4bd9-8fff-fe94614095fd 1 Other Other +a60c9a1b-7bcf-4264-b2e6-1fd5395de9f9 1 Other Other +a60ccffb-81ac-41b3-a608-497df6b3cd2c 1 Other Other +a60cf824-34cc-4b09-8e91-4c1d659f21da 1 Other Other +a60d8124-b0b2-4e5a-a7da-e07befe57610 1 Other Other +a60d8b5e-8228-44a0-b3df-4e55922f974a 1 Other Other +a60d9c75-4a5a-47ac-8f3e-c14f3bb08f80 1 Other Other +a60dbf6b-d398-40b1-a977-5ea2a3e4cb07 1 Other Other +a60df234-aa93-4d5e-bc8f-18f5f6e43c91 1 Other Other +a60df9db-1380-43f1-b692-c7c701461471 1 Other Other +a60e0368-2754-4d81-a84a-0500e833e81f 1 Other Other +a60e1ce2-2856-4382-8520-684e1d95603a 1 Other Other +a60e3742-5b98-44b5-918d-99c24b44887a 1 Other Other +a60ea3a8-a447-4e94-8dce-a7064174277c 1 Other Other +a60f0a86-4f11-44a8-b938-47df358c80cd 1 Other Other +a60f3f84-a810-405d-be51-caecc67ba738 1 Other Other +a60f89e4-d7e4-40ed-a52b-615da0dcae5f 1 Other Other +a60fb4e4-6eb2-4414-a0fd-431ac1eace64 1 Other Other +a60fc393-add1-42ba-9438-e0c0df6245a9 1 Other Other +a610015a-aed1-4866-ae30-146c15eb970f 1 Other Other +a6104a64-ee1a-4e84-ad79-7de7d04b2fd3 1 Other Other +a610790f-2063-4293-a624-ba9d32284114 1 Other Other +a6108f22-01c9-4318-97ef-9af252380b2c 1 Other Other +a6110800-b2fe-4ab2-a44b-6cb624246728 1 \N Other +a6111576-0b80-4bff-ab9e-b5d508b3cbe5 1 Other Other +a6115457-1fec-427d-b722-e08fc61abd33 1 Other Other +a611751d-efd7-4c86-8e1f-9b4cb43bfee1 1 Other Other +a611bf71-b077-41fa-878d-047b33e40fea 1 Other Other +a611e5e5-7a68-41fd-9ea7-1aefcb8a8584 1 Other Other +a6121b7d-16d4-4852-9937-b75533a1e8e0 1 Other Other +a6122107-04db-4977-8079-9260e5118813 1 Other Other +a612704e-d858-4528-9476-0304f56393e1 1 Other Other +a6127f64-afbd-4f8b-a477-da30b25419fe 1 Other Other +a61298fa-74db-4de5-b85f-be343c4653dd 1 Other Other +a612a56a-c337-4310-b22a-76a099566e74 1 Other Other +a612b437-e1a9-4b54-b650-b77603ebfcb0 1 Other Other +a612ce27-e83a-4da7-b229-d01e1ec36f58 1 Other Other +a612db42-02ac-4762-a366-e059784c0d6e 1 Other Other +a613080c-34c6-4550-9cac-cd8ab08ad9d8 1 Other Other +a613183f-f798-4111-8ca3-312b72ed4fa7 1 Other Other +a6131a1c-6aa4-4122-90ff-b781521d3cb4 1 Other Other +a6135f5a-1a14-40d7-b897-cdfc648223a9 1 Other Other +a6138114-7dd1-4d19-862b-3913a51a0e6d 1 Other Other +a6138885-098d-45b3-9700-397079826fac 1 Other Other +a6138c2b-2cb5-4b76-ba03-e0d14cad9249 1 Other Other +a613a025-bcdb-4caf-843d-7ada0255c507 1 Other Other +a613a866-553c-4d64-b854-9a6cf624bbc5 1 Other Other +a613b38a-e76b-42b4-a09c-5979a4f17ae0 1 Other Other +a613b6f4-abc3-42eb-bff7-960cdc8a79bb 1 Other Other +a613ead2-070d-4517-9d7d-c1ce425ebb7e 1 Other Other +a6141dff-f24c-488b-90ae-99657453ddd6 1 \N Other +a6149b52-2e44-4ed0-8984-3a056c83bd14 1 Other Other +a614ca99-ca5a-4fcf-b8eb-ec06e622c65e 1 Other Other +a614da92-034c-44bf-a0e2-e29681c616a4 1 Other Other +a614f914-03ce-407c-811e-88782a2855e9 1 Other Other +a61512b7-783d-4d48-85ca-1a7c14b5aaa7 1 Other Other +a6153d15-11b7-47e4-82bd-959bc493fd5a 1 Other Other +a6155354-d925-403f-859d-a5e9b9ba9993 1 Other Other +a61562de-2976-4677-b731-64fc2f6490c5 1 Other Other +a6156c8c-c2e9-4d41-8c5c-421dec05a5e9 1 Other Other +a615a9d8-4dd9-4ca8-adb7-81fe180b4179 1 Other Other +a6165224-684d-4126-8b80-0eba9108a9e6 1 Other Other +a61654c6-f9a4-4a13-b106-bbc918dadaa9 1 Other Other +a6169c4c-eeb7-4c19-afd1-648950851f0c 1 Other Other +a616b6a7-a8fa-4c58-b7cd-7ad266e3823e 1 Other Other +a616d85c-d861-4b54-9dd7-6b42e2046ef6 1 Other Other +a616fdab-4bc4-4a47-b91a-1c14cfded68c 1 Other Other +a617250e-2ab7-4a91-876f-59b43465e3e9 1 Other Other +a6172f0c-9ed5-4bb2-bd57-775486c3af0e 1 Other Other +a61734e5-880d-4c93-8a38-345e1227a032 1 Other Other +a6176543-4f8e-440e-a7e0-77a96ea2443a 1 James Other +a61792e8-cc5d-419b-a2db-22a6e6267a0b 1 Other Other +a617b7cc-9d60-435d-897a-16ce0a588991 1 Other Other +a617dd34-221c-48b9-97dd-2b9d62fc4e0a 1 Other Other +a617e4b1-cd6e-4ce1-a779-583dcad5fe47 1 Other Other +a61866e4-16a1-40a1-bb75-88bf38f07a7a 1 Other Other +a6188615-a68a-419f-9dbc-114a29955b41 1 Other Other +a6188a5b-e417-4f05-9907-26cdb3b2b307 1 Other Other +a618997f-8e00-40da-9b4f-0a3b256bf8c1 1 Other Other +a618c149-1cff-45b1-bfd5-81bb6de3f608 1 Other Other +a618eeb7-e129-408b-9f97-06401acd89d2 1 Other Other +a61907f2-7b9d-41e7-8161-1d86461f3d3c 1 Other Other +a6192f96-a14b-4f07-bcc5-8b176b8c382c 1 Other Other +a619372d-b155-4f2b-af9a-d574bda5d73e 1 Other Other +a619650a-2ae7-4376-9e7c-4dd06f5cd4e1 1 Other Other +a61982ed-7ad0-4fe8-9d16-8550a3dbc048 1 Other Other +a619b4a2-46b0-4a5e-8038-09a25e3e17e2 1 Other Other +a619fc49-f203-41f0-a2fd-b6a9dd1c2bc5 1 Other Other +a61a009a-4ae9-4bd5-93d0-57e0fdbaef5f 1 Other Other +a61a075e-8c36-4934-9f15-c9a84983bffd 1 Other Other +a61a7352-38cf-4214-a98e-836edd247a0c 1 Other Other +a61a9ccb-a451-4912-bb8f-16054c53c7e5 1 \N Other +a61ac3b4-b6e0-4992-994d-06f099c30c9b 1 Other Other +a61ae341-682d-4f7a-8913-00f56f5ca8fc 1 Other Other +a61b033e-8731-4c78-91a1-3d684010cdff 1 Other Other +a61b25b1-c9e2-48d4-b3f0-8cf862a680f5 1 Other Other +a61b2f6e-2f0a-40c7-9fd3-ff4ba60afd21 1 Other Other +a61b4058-1df6-4c46-9ab0-70fb33c42324 1 Other Other +a61b5f7e-afd7-4a9a-af8b-8ce792d7cdab 1 Other Other +a61ba95f-eea9-4660-bc03-936f1bcbf5da 1 Other Other +a61c0a3b-b39b-4899-bb08-5c41bb020d7f 1 Other Other +a61c199d-fcd0-4827-ac79-94ded18b9abd 1 Other Other +a61c2a9e-26f2-47e5-9bcc-a8f98e154f44 1 Other Other +a61c3615-9bac-4fa7-84a0-deab7f4dff0b 1 Other Other +a61c4184-01fe-42f5-949e-7c2abb4b565a 1 Other Other +a61ddf2f-23d1-4b99-a58e-203094febfd9 1 Other Other +a61e2562-0acb-4d08-8a8e-d792848f0cd2 1 Other Other +a61e34c7-9542-46e7-a23a-985ecaaf10f7 1 Other Other +a61e8df9-bca1-4081-83fa-2f369a48d05e 1 Other Other +a61ebfd2-5c9a-4391-99f2-48ad762aa818 1 Other Other +a61ecd0f-b72d-4dbb-9baf-b3ba4aa324ea 1 Other Other +a61f62e2-5fe1-446b-ba11-505c2b702e00 1 Other Other +a61fdce5-443f-4d06-ad80-17efd27b8a20 1 Other Other +a6205a9d-05fe-47a6-a80d-fea486034321 1 Other Other +a620635c-47f5-41ec-a247-a880f935662c 1 Other Other +a62083fe-fbd5-4de9-86aa-5b91e656e03f 1 \N Other +a620b9d0-20cd-4297-9e27-5f98c8382178 1 Other Other +a620e473-616a-4b4e-8c9d-38b5f623c6ba 1 Other Other +a6211683-e3e6-4df4-b851-7a6a1e340561 1 Other Other +a621fb01-9477-4cd5-94e1-11cd86f5263a 1 Other Other +a6221211-b81d-4e69-9768-ad9673ad5c27 1 Other Other +a6221926-374a-4b46-bc71-2f674a01ea7e 1 Other Other +a6221a19-6e74-4e39-814f-cc4a8792f3dc 1 Other Other +a6224cf4-13eb-4cb0-bfd7-f4a6bae96fa3 1 \N Other +a6226705-8828-4b11-943a-41b74a32010b 1 Other Other +a622aee2-0ecb-4482-9fc6-3a1d31d52885 1 Other Other +a622e122-2b21-45f9-b20f-de484d550118 1 Other Other +a622e62d-5d31-4a8d-8038-2b8c68334e34 1 Other Other +a6230220-c27f-4c45-b16d-d48101f49680 1 \N Other +a623274d-7118-43df-97a4-42544bdce877 1 Other Other +a6234581-cdd6-4cec-9b2b-a8bc140d2b72 1 Other Other +a62351d8-5692-4218-8bbb-cb5ee55762dc 1 Other Other +a623bc99-b060-4bbf-b74c-7f14bea097cd 1 \N Other +a623e19a-d2e2-4d89-b21c-5d69c111abd9 1 Other Other +a6242f7f-b918-44ed-92c9-720837af2739 1 Other Other +a6244332-a7f9-4778-bfdc-d3066afc1de9 1 Other Other +a62472a0-45a9-407b-9ff9-8d04d825a818 1 Other Other +a6249018-ca79-4919-b812-38b8be7b336b 1 Other Other +a6251f24-cdf9-4f23-8d15-0e453dd4adbf 1 Other Other +a6255469-b73e-4577-8594-4709cda279eb 1 Other Other +a62568a5-649d-48a2-a0dd-06042465d944 1 Other Other +a6258169-cdba-4ce5-ac4d-e9fb0e73110a 1 Other Other +a62648b7-6bf4-4589-a7c2-57260489b59d 1 Other Other +a62666a1-9593-4bf5-bcec-f78ddfb2b1e8 1 Other Other +a626a3a7-079a-457b-bab1-0240fa74a90a 1 Other Other +a626b92e-fd6c-4305-a4c3-bb619b2a950a 1 Other Other +a626e144-76ef-49d0-b840-488e784b236b 1 Other Other +a626e9ac-6b64-4c19-b55f-4bbf681d264b 1 Other Other +a6270a8f-21f3-47cc-924f-e5e502f54861 1 Other Other +a627430b-e709-4175-905b-ea06554bedb9 1 Other Other +a6277540-2ce7-4256-b615-b8d8a8289412 1 Other Other +a6278426-8b17-4307-ad20-ca3476ef8f06 1 \N Other +a6278f9f-d5c9-4eb3-b221-f8fea4818ce1 1 Other Other +a627a802-0931-453a-81f3-ad8dbee22c7d 1 Other Other +a627c4a0-e977-4077-b92f-f39871c1fbb9 1 Other Other +a627e9ca-d9e3-41fb-9475-fba7056cc2ed 1 Other Other +a6289a26-d4b8-4617-a9cc-0aae198df895 1 Other Other +a628c3b6-ecda-43c1-aeae-57764b6ba4b4 1 Other Other +a628c4b3-1443-4ac8-b995-8a730ac76b75 1 Other Other +a6295615-3fe8-436d-81cd-535f9e3c5f12 1 Other Other +a629c807-be7c-432f-b2e6-bb1057825a2f 1 Other Other +a62a0fa6-0077-4a00-95d5-0ec2aed09646 1 Other Other +a62a1086-dc50-4def-bd74-a31b283058a7 1 Other Other +a62a4bf4-57a7-478a-bdf4-c7018719e48f 1 Other Other +a62a592d-33bb-4ecb-bf76-71d98a61c4a3 1 Other Other +a62a8eb3-f9ce-44dc-b966-d50559b2db4b 1 Other Other +a62a9606-9dc3-43fb-9a78-160996770109 1 Other Other +a62aad31-7b40-43f2-b52e-9ada9e1893fb 1 Other Other +a62b0178-bd97-44db-b0c9-45bbadcc678b 1 Other Other +a62b0255-b268-4a17-b21c-597d191bfb4a 1 Other Other +a62b0373-385e-47be-88d2-35f4cdc31cb7 1 Other Other +a62b0aa4-19d1-48a4-b923-2ab60ad98e14 1 Other Other +a62b20c2-7562-496c-a848-129ab8b74c08 1 Other Other +a62b2619-68b6-45ec-95f4-2572537284dd 1 Other Other +a62b34e5-f2ce-4d26-9a36-30c58641683a 1 Other Other +a62b363c-bdc4-4866-b2e7-7276b5168306 1 Other Other +a62b5780-8588-4a4e-b627-0658c814649a 1 Other Other +a62b7057-81dd-4343-ae4a-a9923611bf37 1 Other Other +a62b9d64-deb0-471b-a06b-243f05330567 1 Other Other +a62bf598-d5b3-490a-b60e-911b60396bf8 1 Other Other +a62c06d5-99bf-44ed-ae90-1a0ff73f8b02 1 Other Other +a62c08e5-e6c8-402a-982e-89e80933c04b 1 Other Other +a62c40d3-d3b5-4b45-8b64-e36805526387 1 \N Other +a62c6ac0-87bb-4208-9e43-93af500a96a7 1 Other Other +a62c8f37-81a1-40b0-9ffc-49f51850de22 1 Other Other +a62cbdc4-127a-4d25-a634-3a9b1e22413e 1 Other Other +a62cce04-ce87-4e68-81be-9c876721a5fb 1 Other Other +a62ce4c3-8256-43d7-aa97-c29e4cc34956 1 Other Other +a62d429c-7d97-4565-ae72-7181a00a1cba 1 Other Other +a62d5562-c482-450e-8e74-fee4ac7d8911 1 Other Other +a62db9ab-ee69-42c3-b096-0e2b6244d8f5 1 Other Other +a62dc11e-c0e3-4b70-a512-3d4ef27b6767 1 Other Other +a62e24cf-8d3b-4ebf-9058-46523eedce33 1 Other Other +a62e487d-df50-4685-a2f7-16ef2ebc116e 1 Other Other +a62e6c3f-7f9a-4620-9878-a12924c90f68 1 Other Other +a62e8601-6fd4-400f-a618-4502b6fa7975 1 Other Other +a62f6e0f-b050-4837-9b28-810fe0b2fa47 1 Other Other +a62f7e61-6bcb-45c7-9468-ac3e698b39f1 1 Other Other +a62fd212-b62d-4ce1-9485-74135edced2f 1 Other Other +a6300f04-bc69-40e5-a577-e57149d763fe 1 \N Other +a63088fb-8246-4927-b6fd-f9e4ca7eabd2 1 Other Other +a6309769-1d6e-4c31-ab56-596fa0fe765f 1 Other Other +a630b9e7-cac4-4cbf-86f7-6031fb0f1926 1 Other Other +a63105fe-b857-4869-bee8-53707242934a 1 Other Other +a63112e7-c8c6-46ed-a183-5f80f63daac6 1 Other Other +a631bff1-7f96-4abd-8248-76572b90a618 1 Other Other +a631dda2-ed4e-4cbe-bac4-7fe07cbaafb7 1 Other Other +a6329df2-8733-4697-9ed6-018ded257fdf 1 Other Other +a632fc3d-bea1-4c47-b804-47ba9b741a84 1 Other Other +a633038f-d793-456e-bae5-add222d95909 1 James Other +a633580b-4040-4bc7-9421-a81d320ea6fb 1 Other Other +a633d720-cd38-470f-837f-13dea105481f 1 Other Other +a633df76-c969-4965-a80e-b829052d7298 1 Other Other +a6341a58-868f-4186-97a5-d80477beb9be 1 Other Other +a634249c-18a6-444c-a996-13b1d63c7214 1 Other Other +a63475fa-029a-45f7-b7ef-73a75aff3232 1 \N Other +a6347e25-0b72-41fb-8791-b635d3d92dd0 1 Other Other +a634e694-5386-4459-914e-88822a958b4a 1 \N Other +a6350839-ad09-4842-afbe-499b80d8d239 1 Other Other +a6351898-b079-4c45-a2d3-38cc588de11c 1 Other Other +a63549df-ce6e-424f-b642-e9843eaf076b 1 Other Other +a6354d85-ddad-450a-be33-6a737bf77ad1 1 Other Other +a63567c6-ae1e-40fb-985b-a9bd2a83d1a2 1 Other Other +a63577ea-66fb-4296-9dbb-4b7215a6d1b8 1 Other Other +a6359de7-ccc2-402d-a83f-b092c6510bf4 1 Other Other +a635afe0-d76b-4ff2-a542-a14ae42bd8f5 1 Other Other +a636000c-b743-4c97-a9a4-983f62b51c87 1 Other Other +a63638ce-ed7c-4aa9-91a3-ab65be87206f 1 Other Other +a636609c-6fa4-45ff-8c40-0a2b9e810af5 1 Other Other +a636e297-88db-46de-9f18-400aca9f66d7 1 Other Other +a6373075-1288-4d52-85c6-a864e7390d11 1 Other Other +a6373924-6217-4f0e-a1d8-a648364268df 1 Other Other +a6375518-aac2-4d42-b9f9-f259759da49f 1 Other Other +a63771e0-b163-4900-ae19-d5446e4229be 1 Other Other +a637abdc-b433-49ad-9f22-76fa7c25b4da 1 Other Other +a637ad7d-528d-4512-bf0f-02c0635dfd98 1 Other Other +a637b5a5-e8ef-46af-92db-fa1960e515c9 1 Other Other +a637c69d-94f2-4543-aaf6-880b95602353 1 Other Other +a637d618-6d91-41a8-9bf1-d83f14737c48 1 Other Other +a637d6d6-1a16-4ee8-8c5b-5af57fd3e6e6 1 Other Other +a6380e96-e7e4-423d-a689-c5a31164e5e8 1 Other Other +a6381f21-8b2d-4cc7-a779-9dcce16877ab 1 Other Other +a63834fb-054e-406d-a18a-53bbcabf062b 1 Other Other +a6384363-1d6c-4a09-b1a1-84f3b83fe17c 1 Other Other +a638ccb8-26b1-43a2-9cb4-7a51d7c3d809 1 Other Other +a638d5b9-62d0-43fb-a1a4-4ab55df7d584 1 Other Other +a63917dc-e0f5-49a8-b0ee-5323280b5b1d 1 Other Other +a6393aef-3ed0-417d-a0dc-63f13aa7aeeb 1 Other Other +a6395521-5a1a-4293-9a93-e6a0535c925f 1 Other Other +a6397668-13e1-4130-b11b-35144192fff8 1 \N Other +a63983de-982e-46d4-af08-e344ef0057a9 1 Other Other +a63a1306-e8f5-4968-a041-99e3729720b2 1 Other Other +a63a1907-e8e9-40af-95f5-6ba8ff5fedf5 1 Other Other +a63a70e2-ba6a-4725-8262-a1af2d2d3146 1 Other Other +a63ad85a-5eb8-4a00-9e58-1936e77a7a5c 1 Other Other +a63b54ac-a40e-4986-bb62-8cbd5f7ace55 1 Other Other +a63b8c77-c6ec-4c4e-8f87-3b3fa39a789e 1 Other Other +a63c3048-9047-47b5-b7dc-aec08c4a2e4a 1 Other Other +a63c6796-58dd-4576-b5ab-c87c6036dd29 1 Other Other +a63c7800-4198-41c1-a55e-6b7697ed5944 1 Other Other +a63c7df0-3ab9-4642-ad33-ebc6d6b164b7 1 Other Other +a63c8f1c-60c0-4c9d-9228-f372866fbd5f 1 Other Other +a63ca146-ecbf-497a-804b-a71fb81c3f37 1 Other Other +a63cae90-8f04-4e7a-ad67-56024433f4b9 1 Other Other +a63cc1eb-ce35-4795-b33e-99e16cd38534 1 Other Other +a63cc325-56af-4b07-8a32-842e508430e6 1 Other Other +a63cc7b3-3746-4a5c-b0be-f3b2faa144a7 1 Other Other +a63ce16c-12da-4d96-9593-5bf71a83cb10 1 Other Other +a63cf7c2-d05b-4f13-81f5-e22b8d3f3a0e 1 Other Other +a63cf962-d105-4144-a56f-57cf4e5999b9 1 Other Other +a63d222e-e695-4489-a286-cc2b4ad49eed 1 Other Other +a63d5329-6c7f-4468-97f4-9f2c02e4c1e2 1 Other Other +a63d79b1-5fbb-4223-9a0f-05869dc7a34b 1 Other Other +a63d8e68-d839-4e36-b0ff-58a24af116c0 1 James Other +a63da049-b3de-4aa2-8a97-831ecffdf138 1 Other Other +a63e471a-f2da-49b4-9f7d-9a8c0503774c 1 Other Other +a63e5188-f835-4e5c-a373-ee15ed87e876 1 Other Other +a63e70d0-2e31-49f7-8e7e-34ea8ace0d1c 1 Other Other +a63f1377-d3c2-499c-8196-7f1a19cb29e3 1 Other Other +a63f7a5a-3bbe-4534-9164-898c838ff13a 1 Other Other +a63f9daa-ab46-4fec-a911-0d5fe8c886d2 1 Other Other +a63fd11f-fc82-4d2e-a0df-b18d3b2347c0 1 Other Other +a64019e8-1caf-425b-8ade-072c0ad44b72 1 Other Other +a6406bcf-102c-4ae7-bced-3a57471baf4b 1 Other Other +a6406edb-c805-48ac-8532-bbc4508ae244 1 James Other +a640dab9-ba67-4c6d-aa02-cc2eb3e06107 1 Other Other +a640e0a3-e98c-4ab9-abcf-1019d170653b 1 James Other +a640f5a3-172e-4bd0-8c6c-e6e9acb763e8 1 Other Other +a641504f-9e36-40da-a472-3b5422d8e421 1 Other Other +a6417078-d4f6-4301-a53d-0b6e333bd51c 1 Other Other +a641aace-c488-4677-954a-7a291bbf74a2 1 \N Other +a641b4cf-2652-465a-bc13-747661ae78a7 1 Other Other +a641bb0a-4751-4419-9307-feb33de4f30a 1 Other Other +a641bdab-4f42-409c-aa37-336796309309 1 Other Other +a641dbbd-809b-4589-998d-90f05463fe5b 1 Other Other +a642011e-3232-4c91-a1dd-f0b459c199cc 1 Other Other +a6426626-16d1-41dc-ae3a-a7c7b54db9db 1 Other Other +a6434de2-ca0b-4d6a-ab4f-631a8aa72e6e 1 James Other +a6435ae4-d831-4fb1-8dc4-135bc5c99b41 1 Other Other +a643feac-f643-4f22-a7db-348826e96119 1 Other Other +a6440892-ed00-4a73-879a-f95b433579b5 1 Other Other +a64427b6-b51c-45c1-b882-447b868c6e1b 1 Other Other +a6444108-46cc-4438-9353-7921101547c6 1 Other Other +a6444901-eb05-47f3-8caa-b5b8395ea45f 1 Other Other +a644c3ce-8136-45a9-a0db-2f02713fd244 1 Other Other +a644c553-2af9-4c75-8c5e-02b0b6a1a03f 1 Other Other +a644d314-89eb-4745-957e-f0d7935c737b 1 Other Other +a6455fc7-17bf-41d6-9f91-b5c967285cc1 1 James Other +a6457e11-e7f2-49da-bef4-f1c4fd7328fc 1 Other Other +a64587d1-8ecc-4525-99e9-c50fcd5489be 1 Other Other +a645a994-c880-4a49-83b8-e2a5347eab9c 1 Other Other +a645b423-e2f2-4e62-8ab7-99a925b9c7ce 1 Other Other +a645b94f-7b4a-4406-afe2-1b6e7ee1e956 1 Other Other +a645b984-f2b4-4728-8265-d91a068255a4 1 Other Other +a645d5e5-90c9-457c-9fc3-4436799e073f 1 Other Other +a645d97e-3f16-42a7-a413-b6c8c0239304 1 Other Other +a6460563-899d-44e9-a5dc-9afd3abbf2de 1 Other Other +a6464817-0383-42ed-9ccd-70829af6db76 1 Other Other +a64690ee-6624-4ae2-8204-be067a4c43f1 1 Other Other +a646cf2e-5b14-4dae-a15e-5e2b4b9e93f7 1 Other Other +a646f901-2516-4d29-8f65-86c2e7769ff9 1 Other Other +a64718cf-0575-43f9-a084-12dd643d4941 1 Other Other +a647301a-6cf4-4ab6-a867-05986f43d44b 1 Other Other +a6475325-e553-4432-afb9-d92d4fc95231 1 Other Other +a647718b-1aa8-4181-b575-bc1b9f553c9c 1 Other Other +a6479d9d-8751-410b-9639-ce87a8075160 1 Other Other +a647a9a3-da07-4210-bb8b-349c288e96cc 1 Other Other +a6482047-359a-419d-86a8-34820a173a12 1 Other Other +a64864a8-7306-4325-b564-8b08c5cd679f 1 Other Other +a6488f0a-79b0-415b-bb11-daae2b555bff 1 Other Other +a648e30c-2415-4161-b062-d38812237c6f 1 Other Other +a6490b10-692f-4359-95a4-735b40f5debe 1 Other Other +a6494cf5-b2ca-405a-971b-862f305e8a53 1 Other Other +a649eae5-a610-4587-9f9f-1beaa3e1ec34 1 Other Other +a649ee7c-40ff-4204-a84d-303731cce7bb 1 Other Other +a64a01ee-94ba-4123-925c-d93a3fbaf6f3 1 Other Other +a64a3a07-93e9-4317-bf46-6f561f7b0dca 1 Other Other +a64a5e2e-5b70-4524-8887-a68828e443f9 1 Other Other +a64a784e-64f0-4767-aea6-7dc113c59c76 1 Other Other +a64aaeaa-2c86-41a7-99aa-822eeadeb6f5 1 Other Other +a64b067e-d6cc-47de-8e35-303ce57132b5 1 James Other +a64b085e-963d-454a-91b9-2b6350c77e7a 1 Other Other +a64b4668-4c54-4f2e-9362-4edc39403603 1 Other Other +a64b5ac4-27cb-453f-90e6-476206f1724f 1 Other Other +a64bcf5e-05f9-4412-b8e9-9b78f63d0604 1 Other Other +a64bd394-fd3e-4552-bf14-39c2df96e52e 1 Other Other +a64be46b-0f34-4d84-9839-ccc40d6d57ca 1 Other Other +a64bf42d-a70c-46a7-98ad-b70125ec81af 1 Other Other +a64c153b-7b57-425a-bba1-a585c8210149 1 James Other +a64c208b-e409-4415-8c42-d792136bb0ee 1 Other Other +a64c244f-bff0-4f17-8c76-2243a0dd770f 1 Other Other +a64c517d-bb98-4aab-ae33-084fe30d1453 1 Other Other +a64c70f3-9c7d-4aee-95df-80c2c5fb4eb7 1 Other Other +a64c7a4a-cce1-4d25-ad52-de4b2bd51a5c 1 Other Other +a64c7ead-8dea-4f4f-ba92-0790ff0a6603 1 \N Other +a64cb60b-2632-446d-8ea8-3378b9b2a807 1 Other Other +a64cd224-791c-4760-9df3-fa4ad0a9fcee 1 Other Other +a64cd6ab-24fd-4a28-8e16-55f31d5cad47 1 Other Other +a64da549-6116-499d-97ce-676a74d17817 1 Other Other +a64e11ce-35ee-4803-8d52-66b97f7edc14 1 Other Other +a64e2953-a667-4ff1-a49c-1088e19c5ea7 1 Other Other +a64e2b79-4f02-48fd-9d0f-75da8230b08f 1 Other Other +a64e57d1-3cee-41ca-acb5-cc0690b91c4b 1 Other Other +a64e6069-b39d-42bd-9bc4-53f5d060e3ac 1 Other Other +a64e9692-19a8-4e10-91e5-4337af0690f7 1 Other Other +a64f2342-defc-44a8-beb9-90c5171a410f 1 Other Other +a64f44e7-0aae-41bc-9ee0-aef80f1f8c29 1 Other Other +a64f6cfd-1dad-422f-88ea-2e892eb29579 1 Other Other +a64f7abb-1221-40b1-b08a-a8785a8fd531 1 Other Other +a64f8ead-6d40-41d7-8ade-7471667ddeef 1 Other Other +a64f968f-1a09-4638-83e8-0f929b8e3e16 1 Other Other +a64f9f54-dd34-4192-b6e1-0e0650d8bc5b 1 Other Other +a64fbbf5-49d7-469d-9965-54fa92faf8d8 1 Other Other +a64fc999-eb48-4d8d-bfe0-eaae7d9d146a 1 Other Other +a64ff71c-7c6e-45e8-9e3f-c069cf61319a 1 Other Other +a6500141-ad02-4af4-bf80-e4edd7645fbc 1 Other Other +a6509808-c267-4ed5-8249-0eb72b98c624 1 Other Other +a650f8b0-6cd7-47f7-a3ce-3b13c97ca581 1 Other Other +a6517815-85b1-4f41-a2b2-bcd5dcf12456 1 Other Other +a65193e2-4e14-4281-a072-872886d83498 1 Other Other +a6519796-6e23-45ba-be3b-129ee00523b4 1 Other Other +a651ccd7-d96f-4100-9993-e56c6e372e50 1 Other Other +a6523216-deca-4855-abc3-4035b7d55a7c 1 Other Other +a652474e-81a7-4dc3-ab53-7d248ca351d0 1 \N Other +a6525ff3-97fc-4a79-bd2e-402b37c06881 1 Other Other +a6526fc4-da83-4a93-8c74-8b5041cdbcf9 1 Other Other +a652a136-5bfc-4a7f-b79d-726f13aadf4a 1 Other Other +a652a296-8734-431e-af81-977f770cf62d 1 Other Other +a652a4df-778d-48c8-a3d9-f549e48da1c8 1 Other Other +a652a9c0-0042-40b3-a273-62e2ee6fe35c 1 Other Other +a652c6eb-0fff-48a8-9e04-4275bde8c5ca 1 Other Other +a652fe12-3ddc-4468-8b54-17d156710fca 1 Other Other +a65338af-5abc-41e4-855a-b4320bdcb488 1 Other Other +a6534d81-ccb2-413a-9ca3-e5d596577017 1 Other Other +a6534fac-187c-42b9-8eec-571cc8fb27ec 1 Other Other +a6535d65-cf2b-4754-8f29-8fb3cb97313a 1 Other Other +a6537373-bdf6-4b51-b13d-a118188fb604 1 Other Other +a653fdd1-a413-449c-a95a-6eee5ad095a6 1 Other Other +a65400a8-3ddc-4df6-beca-7683a413513a 1 Other Other +a65406ce-b504-4e28-a615-e7ad41d78a61 1 Other Other +a654249a-a9d3-49cf-beab-eeb158d5b980 1 Other Other +a654300a-adec-4edd-b88f-81297f72cb0a 1 Other Other +a654630e-35f4-4c89-b376-8b214bfa99fd 1 Other Other +a6547f4b-0a5b-4cfb-abaa-4396de4f8011 1 Other Other +a6548354-6516-4d29-ba63-41a2d04be357 1 Other Other +a65489ed-cefb-4be1-8961-4947a5c67350 1 Other Other +a65497e0-eb2e-4447-9d75-974d2753b76f 1 Other Other +a654a21f-baa2-4dab-87ff-ec72eaaab83c 1 Other Other +a654f2b7-1c50-42f5-ad9b-caa55fa6cdd2 1 Other Other +a6552fe4-a26c-4dc1-9cff-01ebb1f8fc59 1 Other Other +a6557b4b-7333-4cbd-8a8a-4d8c74685036 1 Other Other +a6557fea-3158-4d1f-8946-9ca67698e694 1 \N Other +a6559c33-e930-41d2-9799-4dabf16d1f94 1 Other Other +a655ae8e-45b4-4d6a-a0a3-57244d02fa93 1 Other Other +a655dd46-d167-4418-b19f-c794dfc40d3f 1 Other Other +a655f93c-3902-4a60-b014-2d9a951e0cc5 1 Other Other +a655fda3-fdd8-447b-bcf2-47e585068df2 1 Other Other +a6561b87-511a-4e81-bad2-fa592a27c2be 1 Other Other +a656e7f2-6b59-4f9d-b949-ac163e4efd15 1 Other Other +a656e93a-56e8-4c47-a43b-5e8275aa925a 1 Other Other +a656eb9b-6a6a-472e-bd7d-b2d5a61021dc 1 Other Other +a656ebc1-8d00-4faa-a04c-4bd15311c17c 1 \N Other +a656ef43-46ba-4f93-8c1d-9365b8e8433e 1 Other Other +a6573b41-d93f-450f-93c5-bb0e1fe92a92 1 Other Other +a657699a-ac8b-447e-89c7-4db8cf66796b 1 Other Other +a657f385-880b-4b41-96ee-37a7ffee4e46 1 Other Other +a6581d85-dc7b-4d67-aace-57e97b320cfd 1 Other Other +a658429b-971d-4c4e-b163-531ed29b4a91 1 Other Other +a65844a8-9c8b-43e9-8ea0-7eac5e726514 1 Other Other +a6588d52-5c38-497a-ae6e-d2807ff0fde8 1 Other Other +a65898e7-07d6-4bb6-9158-aebf12493797 1 Other Other +a658d390-bb84-489a-88c5-87359fbbd660 1 Other Other +a658e5be-c5c5-43f7-ac36-2dbc6c1e7113 1 Other Other +a658fbe5-8ff0-4c03-9d97-ca800b0766a6 1 Other Other +a6591165-c613-40d8-9c11-ea662ff838e3 1 Other Other +a65943ae-05e8-43c2-bae4-347ca38dce67 1 Other Other +a6594a02-81cd-4e3a-8039-2ec1c49a325f 1 Other Other +a659a118-ddef-4d81-917b-9643781186bc 1 Other Other +a65a22d0-829b-4680-98ea-70025530d16d 1 Other Other +a65a83e3-50ff-4439-9ffd-dea58f0fce67 1 Other Other +a65aa136-5462-4d16-a0c3-adb3bebb31e0 1 Other Other +a65ab94f-f647-4287-8ba0-b5a769c5ced6 1 Other Other +a65acd60-65ca-4daf-8eb7-3c5fe4f796b7 1 Other Other +a65adb67-65d5-493c-8661-baafc026ba9b 1 Other Other +a65af825-7fe7-4523-8c3d-d049d20305b9 1 Other Other +a65b8027-ba07-4d4a-81eb-4f6870c6495e 1 Other Other +a65b8d7c-a8c0-4dbb-9286-ceae9dc62147 1 Other Other +a65ba4c3-95f0-40f4-a35c-06f690e095fa 1 Other Other +a65bc446-0df1-4108-b41d-9a6683229855 1 Other Other +a65bf132-edf3-43de-b9e4-baa48a26f1da 1 Other Other +a65c1472-1fd3-4385-970a-0bfa9a549cd5 1 James Other +a65c34cf-3030-44d4-94ac-05739497ef29 1 Other Other +a65cbd74-b6cb-4a7d-b25c-3e3398a25231 1 Other Other +a65ce058-60b9-43f7-b379-504028126565 1 Other Other +a65d339c-7baf-47c3-a7da-a2bf608ca821 1 Other Other +a65d5f8a-c48f-4f19-a039-4ca75a1e6103 1 Other Other +a65db3b6-07a5-4264-944e-aea7c73c787c 1 Other Other +a65e9171-22e2-4d85-9eac-4c38a1380bed 1 Other Other +a65eb67b-5845-4349-94f7-697f6792f1f9 1 Other Other +a65eca87-3bae-4612-afb5-550fc09bc1df 1 Other Other +a65efc79-d1e9-4de0-84c6-d9899db427ea 1 Other Other +a65f3445-9d45-47ab-b69a-4baf9e47bdce 1 Other Other +a65f7704-0d48-4494-8baa-1f4d84a0a3c1 1 \N Other +a65f8990-691a-48bb-974a-d299943043c4 1 Other Other +a65fe184-5fdc-4f30-af46-6fe96816ed78 1 Other Other +a6601aa5-dc71-48ed-a255-f15320bc88b3 1 Other Other +a6603df2-f87d-464f-b60c-df72bf4b8fcb 1 Other Other +a6605aa6-06ba-41a7-a1b4-5ced00735f4a 1 Other Other +a6607408-8a82-488d-be2f-c213fda031a9 1 James Other +a660e8f6-e357-4683-8842-cfbaa58e7e1d 1 Other Other +a660e908-3e5f-4b8d-a30e-40a746470b49 1 Other Other +a660ed46-8343-4e6a-b4d2-7cd350c29025 1 Other Other +a66144e0-5215-4cf1-89b5-459d8443de8f 1 Other Other +a661b0c5-f627-46a4-900a-448936dafca1 1 Other Other +a661b376-25e7-4d36-b00e-eb3a9b0093c4 1 Other Other +a66242d2-482f-403b-a180-b115649fcb26 1 Other Other +a6626c2f-ab23-4707-a1a8-95fca113a586 1 Other Other +a6627bab-c349-4bf8-9ea4-2eaf7ec6d720 1 \N Other +a662db38-4ca5-4834-bdcf-e57f19cb6952 1 Other Other +a662df86-4436-405e-a411-63908e7b2aab 1 Other Other +a662e741-1107-4509-b683-3e3f13277721 1 Other Other +a662e936-a320-476e-b00a-cce78459405e 1 Other Other +a662f719-2b79-43ab-8099-f3d33a176831 1 Other Other +a6631146-e15b-4877-ad18-3f9fb4fc8e8b 1 Other Other +a6633db0-8eeb-4c96-8c15-a358344aaf79 1 Other Other +a6634d85-f08c-4051-9dc0-e8e3257b7368 1 Other Other +a663634c-1ff2-4bae-8603-a63c03d49fbb 1 Other Other +a6638b1d-1c33-4b82-b80b-0495b91ecf02 1 Other Other +a663aeb1-d38c-41ac-9457-2d0ade8d1bd1 1 Other Other +a663baf2-05e0-468a-8628-0d98af46d8eb 1 Other Other +a663d5b0-772d-49d2-a671-8570b900677c 1 \N Other +a663f442-9dad-48e3-bfdb-d1e56a579526 1 Other Other +a664097b-74b2-40b2-bc82-9aa3e75c5bde 1 Other Other +a6645c89-7f3c-4b06-9a53-9cd08142dc3b 1 Other Other +a665b4f6-31ef-4665-a343-87a16a41b7eb 1 Other Other +a665b9a0-dd6b-4459-a962-bca44b71a377 1 Other Other +a665c722-081a-4764-87cb-45cf1b679d8e 1 Other Other +a665d862-4f3f-4446-9cb0-71248e92bdc0 1 \N Other +a665fffd-55b7-4438-b56f-f57127b9509e 1 Other Other +a6660f5b-fee4-472b-be62-24c52989d390 1 Other Other +a6664e2b-01fc-4ae9-b67e-bcb8ebca3873 1 Other Other +a66680ba-5bbe-4e0d-9160-d8ef083781fc 1 Other Other +a666db74-dc39-44b2-b820-5939e2a1da40 1 Other Other +a66718c8-389b-4ad6-9306-61a925490f3d 1 Other Other +a6672713-c69b-4a94-aff7-6f1dcb594694 1 Other Other +a6678128-0092-410c-b4c3-d4c9a599a572 1 Other Other +a667b621-484c-4865-9dd1-f24b61485616 1 Other Other +a667c2c4-2ea8-48ca-ada0-51050996a098 1 Other Other +a667f91e-2858-46bf-8b33-5a29db78c215 1 Other Other +a667f9a6-d1ba-4d1c-8951-78b0aa69ae4a 1 Other Other +a66812f5-a0e5-4350-8c54-ff893f360f4f 1 \N Other +a6681494-e27b-4794-9b35-c8b3de4a5100 1 Other Other +a668179d-ee3f-4c06-9605-9990fd710c5e 1 \N Other +a6682c58-3ce9-4223-862c-b7bfa4b7f10e 1 Other Other +a668dcd8-4cfa-424b-b2ba-faa13179b277 1 Other Other +a668ed06-9b7d-412f-87f3-5836151b5a9e 1 Other Other +a668f98b-0eda-4854-bfa6-cf0646a9686a 1 Other Other +a6691e1a-463b-4d0a-919a-722af698e6d3 1 Other Other +a6695524-40c7-4bc8-95a3-67c48e52e7b0 1 Other Other +a6696598-4eff-4331-976c-0d7e828c1a03 1 Other Other +a66965f0-813a-4a33-9ec2-cd8785f28064 1 Other Other +a6696e44-5a94-4a51-8de6-6d567ee85536 1 Other Other +a669b422-274c-4030-a377-f68cc98863a9 1 Other Other +a669e032-f6da-48a2-8093-c28dc97a3e0f 1 Other Other +a66a439e-47db-4421-bc65-932d6de03f93 1 Other Other +a66b2068-3963-4557-824f-5fb49c6e78c9 1 \N Other +a66b721a-ccb9-493d-8daf-9ca1f81b7c11 1 Other Other +a66bbde0-f27d-4685-abef-40bd152523de 1 Other Other +a66bd902-57f6-4525-9b66-8b5bd885c59b 1 Other Other +a66bda17-2c9d-4902-8cb4-f536b01f6db8 1 Other Other +a66be9f8-528d-4113-bbd4-ddcd74202659 1 Other Other +a66bfb1a-41df-4fbe-a322-ca6b568feb36 1 Other Other +a66c75ac-83e3-4f17-af6f-5c06fc4e473f 1 Other Other +a66cb200-e551-4e35-a356-374669da9919 1 Other Other +a66cb80e-b2f7-498d-8d76-640cc03ba9d4 1 Other Other +a66cf39b-2b27-486c-9d07-2e3d70df584f 1 Other Other +a66d07bb-0eea-4a34-aaf9-5cd73cd4b727 1 Other Other +a66d1cd6-2233-488c-8d88-3ed0650e947d 1 Other Other +a66d1e54-7c9f-40d6-a3df-675e69db7809 1 Other Other +a66d53c1-f96a-4638-9316-37a9e75b5f87 1 James Other +a66dadeb-12b0-4338-a22a-b95812424bd5 1 Other Other +a66e1975-bb04-4dd7-b0e7-b6bfe271efa7 1 \N Other +a66e64a8-2034-445f-9630-5e77c0e91afe 1 Other Other +a66eb2a8-e62a-4119-96cc-a4ad80c06d88 1 Other Other +a66f030c-7ff2-4c31-a6d6-e4242fd6983d 1 Other Other +a66f2632-e5b0-42b3-9d01-b5317ab626d2 1 Other Other +a66f30b7-5aa2-459a-8f99-eab37e9c527a 1 Other Other +a66f3720-22b7-4de4-962e-82b2e56d49b0 1 Other Other +a66fcd2c-f520-4481-81ed-595278271de9 1 Other Other +a6700bb3-1029-4a3c-a3c3-9d78756f1f76 1 Other Other +a6700fa4-50f0-498d-90a5-40b450206a61 1 Other Other +a670fda7-aa2e-4b7c-b8eb-484e6a3bf2fc 1 Other Other +a6710b31-30f4-4e7d-93f8-5dda0b419c64 1 Other Other +a6715837-cdac-4deb-9506-2601a0356971 1 Other Other +a671a388-522e-45b3-9ef7-c420dbb4f745 1 Other Other +a671d868-c2d7-4283-974d-30934172de8b 1 James Other +a671f414-54d2-4356-b0df-ca00be02577a 1 Other Other +a671fb39-2b95-4ade-8c84-6d2cd9c6d7bf 1 Other Other +a6725c20-4406-4555-8b96-866b4eaa051d 1 Other Other +a6728898-6e5c-49c1-8389-48f1dbb5ae93 1 Other Other +a6729e14-5ac3-45c0-b03c-eeabb4baa03a 1 Other Other +a672f11b-c085-4bc3-a69d-5a6671c16b9f 1 Other Other +a672f1b7-777f-4c09-8131-4c898a625620 1 Other Other +a672f211-c72f-47c0-aa2f-d9f26ac6efc6 1 Other Other +a6732250-7a63-4b8a-9e10-8f09424c2d38 1 Other Other +a67351a4-059a-4c00-a3c1-cc204247285b 1 Other Other +a6735489-2d24-4f60-b743-3e70c9a26aab 1 Other Other +a673747b-423c-4e91-a61f-ea9fd77d764a 1 Other Other +a673ea14-7cf0-4bde-a0f2-05dbb539cffc 1 Other Other +a6742913-19a0-45e5-ab7e-5c962bd7b833 1 James Other +a67432eb-b30c-425f-9197-47fb3088001a 1 Other Other +a67433fe-cc9b-467f-8733-a8c8af5cf06b 1 Other Other +a6744ef3-9dfe-48b7-97d3-32d1b94d45be 1 Other Other +a674ad2a-b4d4-4cbf-9066-735cfadbe3b8 1 Other Other +a675049c-7405-4d53-90b1-9394cee47a74 1 \N Other +a6754ebc-f17e-4b1c-8e19-dc1f74ed06e4 1 Other Other +a67559eb-40e7-4156-bfe8-7488c6e4b244 1 Other Other +a6758bd0-48f0-4a61-8acc-18c30fc4ced4 1 Other Other +a67615f1-2e39-4f5f-8e62-07fc732e8ab9 1 Other Other +a6767c08-031a-49e1-aad9-93ac4dcc4b1a 1 Other Other +a6769f0f-57e5-46eb-aac4-a0e0a79673bb 1 Other Other +a676a8ba-1f8d-416c-bc78-8f7e89b0d50d 1 Other Other +a676e721-a4ec-4f45-929b-f85c11527650 1 Other Other +a676f732-bcff-4891-b490-f9407a045e9b 1 Other Other +a6770c3d-8604-4f66-8734-98b1cacad8c4 1 Other Other +a6771618-df87-4b64-af99-141b34f5ae2f 1 Other Other +a67741e8-1456-4049-a19b-c42000c416fa 1 Other Other +a67758b5-459c-41bf-bdac-452ca7b5fd67 1 Other Other +a67760e9-1e88-44d9-b323-2896d53d2c87 1 Other Other +a677a11a-bb82-4965-af77-3093414f4e24 1 Other Other +a677f1a8-66e9-495c-b854-b68b2fc90aea 1 James Other +a677fd73-cf4f-4793-9020-ea3e26e6dc36 1 Other Other +a6786b31-0f79-47bd-807c-dab6f2b680de 1 Other Other +a6789d69-77a8-4ebb-a58b-cb48ec6f343f 1 Other Other +a678a8fa-6ae4-4638-93d3-7b0bbda222ca 1 Other Other +a678edb6-1944-43e3-b3eb-b9d67f8acb57 1 Other Other +a6794141-8a1a-4f68-b62d-297043e478cd 1 Other Other +a6794a43-5249-4863-a8ff-71d793b99067 1 \N Other +a6799130-f9f4-4fcd-9c6e-e07d2edc46f7 1 \N Other +a6799663-a0a1-4a01-bacf-7525e5d6c785 1 Other Other +a679b2a0-a985-4310-a236-944b6fcd5044 1 Other Other +a679ff71-03e8-499d-aedc-baecc25cbb28 1 Other Other +a67a1ae7-9d21-47eb-a1f5-249de4293361 1 \N Other +a67a67ad-6001-467b-aa93-9c28723fffba 1 Other Other +a67a8ee6-7fca-4ae6-8879-cc706c378109 1 Other Other +a67a98b3-b5a8-43c3-bc00-5e7c63f71bde 1 Other Other +a67ac6c3-2c8a-4704-9ed9-286779a47e56 1 Other Other +a67af771-d3ed-409b-bf43-91e4bc546322 1 Other Other +a67af793-009b-42f8-b495-90e0fdf41239 1 Other Other +a67afab6-6454-4c6c-b945-e3157a3e5a22 1 Other Other +a67b0651-7e2d-41a1-8c1b-3feebabd1f59 1 Other Other +a67b0f03-1534-45eb-9bba-81a8ba938a71 1 Other Other +a67b499f-eb07-4b0f-9814-d73ca5c2fef9 1 Other Other +a67ba506-33a1-445d-8ff9-0c6fe95523cd 1 Other Other +a67bac64-9785-4361-b8b7-33e7be157502 1 \N Other +a67bd7bb-27d5-43b7-9dfd-a536df0cd260 1 Other Other +a67c0f21-0c5c-4468-acb9-95d5d823fa0e 1 Other Other +a67c23fa-200f-43d9-be44-da20f6a71efb 1 Other Other +a67c5268-1097-47a1-98b1-2246dc15daef 1 Other Other +a67cc57a-0a81-4c98-8f48-db5c1cad5fa3 1 Other Other +a67cd44f-1fac-4511-8548-c0b6b265a87f 1 Other Other +a67d0098-7bd6-4ed3-baf8-73b6ca2fd35b 1 Other Other +a67d1590-9f0c-4a87-8787-e68e3ed090c6 1 Other Other +a67d362f-9d05-4cd7-a37b-206cd9a70e83 1 Other Other +a67d6a64-42cb-4ee6-b072-b3e59a0c898b 1 Other Other +a67dec40-3777-4526-8f25-905f77910a61 1 Other Other +a67e006d-e17b-48b0-bee2-569d3109c748 1 Other Other +a67e6583-4a35-4020-a2ad-1233908742f5 1 Other Other +a67e69a6-e0f7-4c09-8081-06d4039f9644 1 Other Other +a67e736d-3aad-4c85-8a03-92c215c029b3 1 Other Other +a67e9f5b-4553-4478-86b0-7ba2c4fa9d17 1 Other Other +a67ec46f-10d7-4174-957a-9e629bb6f64e 1 Other Other +a67ee447-7f6a-402d-ba87-10d5007f7992 1 Other Other +a67ef36d-f67b-420f-bbd2-578ec77891eb 1 Other Other +a67f3dd5-3cfb-4894-ae38-e53a84f1ffad 1 Other Other +a67f4831-391b-4d7e-a84e-9c3c81c8f6a0 1 Other Other +a67f58cd-80e0-489d-abb9-3bd2807027c0 1 Other Other +a67fde28-da28-40a5-8386-5213f93bea85 1 Other Other +a680219b-275e-4c74-9693-0337c5efadde 1 Other Other +a68081c9-e2cc-4111-bb09-a4174fa6f344 1 Other Other +a680892d-7d85-4309-b8e0-aeae7d3c4023 1 Other Other +a6815af5-a041-4729-94ea-776d1e4daaff 1 Other Other +a6817cfd-8d0c-4534-a385-77977b0c50ba 1 Other Other +a6818057-76cb-4d90-a910-07d67a9d8d04 1 Other Other +a68195c5-d4d4-4e8d-bcfe-62af0de27b60 1 \N Other +a681d623-d6f6-4215-8658-21862e0d160a 1 Other Other +a6820e3b-4eb8-4386-a8e2-459357fee9f9 1 Other Other +a6823491-c16f-477f-9e5f-68a1135eb8a0 1 Other Other +a6827f65-8c29-4e4d-b8ed-cedf9c8d7204 1 Other Other +a682af4a-bd01-4fa0-aa0f-b11021cd7c18 1 \N Other +a682f5e5-1d89-4686-9b0f-2ed46ff64d42 1 Other Other +a682fc0c-fc71-4e88-8eb3-faacd57d8248 1 Other Other +a683809a-75a6-4515-97b8-ebc2b7e9cf68 1 Other Other +a68398df-8901-4d95-89c0-0feb7bbfdd0a 1 Other Other +a683d05b-f8cb-4ede-b5bf-2de1f6b533d8 1 Other Other +a683e582-c16f-41f8-9081-c753de9d254e 1 Other Other +a683fdf8-98dc-4173-8177-5de3b45f55a6 1 Other Other +a683fecf-eefc-4a9f-9f5f-b9c37a5e6893 1 Other Other +a6841258-0cf0-481b-bf9f-cdd40c9b8cf2 1 Other Other +a6841892-d5c9-4002-acca-67f0bbacab36 1 Other Other +a68428c3-27f4-47a1-b36c-f71ce34489c2 1 Other Other +a684520b-fa86-424c-93b1-bd324b96a096 1 Other Other +a6845460-9344-491a-8701-6b825563351d 1 Other Other +a68462f5-cf26-4fc0-ac16-b6891598d4d2 1 James Other +a6847409-559d-429e-a794-a97ea147b50e 1 Other Other +a684ad9c-2a1a-4774-aafa-4c3cd04ce374 1 Other Other +a684ae6d-a773-4156-82e4-aa1c0aaca336 1 Other Other +a685038f-5535-4320-aa4c-98a404a95699 1 Other Other +a68527e9-5401-48e8-94d8-aad01c1584b7 1 Other Other +a685673b-3cdc-488f-b945-a3034accb5a2 1 Other Other +a68585a6-9e06-4d11-914f-6c26b2f08476 1 Other Other +a685ad57-26fc-462a-a19e-fe86fefcc66a 1 Other Other +a685b1ef-e493-490d-b539-3332d1174689 1 Other Other +a685f0a0-d93d-469c-a404-3e8dbd1834de 1 Other Other +a68659c8-7825-4fe3-bf3e-743a4c0dd892 1 Other Other +a686aa7e-7da4-48ed-bace-2c2a071623e4 1 Other Other +a686e2e1-79bc-4bbd-9eeb-efe0e5fb921d 1 Other Other +a686f7ac-5b36-4c7b-8299-0e2f72ecb0b4 1 Other Other +a6872a63-a4d9-45c8-93bd-bec65e0f5218 1 Other Other +a687440d-69da-41b6-bac5-eaffd1bc9723 1 Other Other +a68756ae-c747-44a2-9dfc-92d593379c70 1 Other Other +a6875f26-4cef-47d6-b488-c2e29ff6b7a4 1 Other Other +a68763d9-39ff-4b3f-9abc-2dc20cf1f36d 1 Other Other +a68784c3-2914-4623-ac7b-c7a983d3b339 1 Other Other +a687e879-8e9c-4a44-a259-b544996a8185 1 \N Other +a68827df-d123-40e1-91f3-95f88706f3e0 1 Other Other +a6882d63-7a13-4724-85c8-2e6f3aaf2465 1 Other Other +a6883064-3c92-45d9-af47-5314d5655a49 1 Other Other +a6886972-478c-4398-9d23-1ecbf48932e5 1 Other Other +a68890bc-63c7-435e-a18c-5aa578099fb7 1 Other Other +a688e6dd-c71b-418f-94be-eb4135555e7c 1 Other Other +a6892864-a62a-44dc-a2ff-179fdaa90883 1 Other Other +a6893f58-ee65-49b8-b5e2-082d512486ec 1 Other Other +a6896ad0-4a90-4194-acf9-64a8d8fdab26 1 Other Other +a689924c-d397-4dc6-b4e1-385d9c397b71 1 Other Other +a68a12bc-5091-4594-9504-b399cef27662 1 Other Other +a68a65e8-ed44-43fc-81de-6114c06f4e61 1 Other Other +a68a87b4-f410-4d87-96bc-d2940001b2f3 1 Other Other +a68a8b68-10d1-42d9-a68e-e409ec75b4e1 1 Other Other +a68a922c-bca0-4ee4-9568-a6b7d39874db 1 Other Other +a68ac6c8-0bff-4052-84dc-6b7675394510 1 Other Other +a68aef54-1397-488c-8a20-933dc75e732e 1 Other Other +a68b3420-1cb7-4e59-8e48-fb464461d27b 1 Other Other +a68b34fc-67dd-48b9-a93b-fb7c67bfe7b1 1 Other Other +a68b4bb6-817f-4567-a560-b389e9fcb1f3 1 Other Other +a68bd540-196e-4c14-847d-fa6c2fd8badc 1 Other Other +a68ca034-093a-4cd2-b8b5-59efd6919ece 1 \N Other +a68cb8f4-7519-49f1-a392-d19b90521b01 1 Other Other +a68ceaad-9ae1-4750-829d-61ca67f7e1d8 1 Other Other +a68cee08-ecf6-40d0-83dd-44c2322ebfd3 1 \N Other +a68cf5ac-2987-4e10-ba4d-b44c5b729052 1 Other Other +a68d773d-d466-4d0b-8b40-e3b8ca74f1c4 1 Other Other +a68d90b9-ef9c-4a98-bc66-d22fdedac99b 1 Other Other +a68da773-b7c4-41ef-8887-82db036349c7 1 Other Other +a68dd818-fd99-424b-8848-9570cb336298 1 Other Other +a68e09dd-bc8a-4881-8c49-dc5a49eb5e18 1 Other Other +a68e0da7-eedb-4407-9dd3-858542fb2a34 1 Other Other +a68e13ff-8ff5-4e4a-aa11-2b26f5263259 1 Other Other +a68e4a75-a437-4e9c-af09-c7adaa3cc00e 1 Other Other +a68e5955-4710-4b5d-bf61-0fb53c6411ba 1 Other Other +a68e84e9-3d2f-4140-a900-de637eea8a4e 1 Other Other +a68e911c-f3c9-482f-b6d2-d2b43c20cace 1 Other Other +a68eaf7d-0f1e-427c-b983-003b3978d2d3 1 Other Other +a68eb005-7fa0-4ad3-ba5b-55802aa35a31 1 Other Other +a68ec0d7-cf95-4827-bb62-42f97ac4f49d 1 Other Other +a68efc7c-dd95-470b-8465-9f5e5e3fec8b 1 Other Other +a68f6186-a3e0-49e4-8649-d26276ddd7b4 1 Other Other +a68f69f2-d243-48c6-b8a4-8ebb595c6f25 1 Other Other +a68f850c-9de8-4a01-b1f3-f466de2ce08b 1 Other Other +a68fe00f-cbe4-4481-bce9-4c27a1f74f63 1 Other Other +a68ff97d-942f-41b8-be91-35f05c66b9a2 1 Other Other +a68ffa91-9b1f-4747-b14c-926329fabefe 1 Other Other +a690764e-b9f3-4b04-b9e0-9db31c4390c4 1 Other Other +a6907e1a-75df-4893-87f2-549dbd033abb 1 Other Other +a690b56f-64c1-40af-a168-71539d134ed8 1 Other Other +a690d4d0-3927-41aa-b9bf-206c9950b8b6 1 Other Other +a690dbb6-f9ab-45b3-84ba-6d6296b56d33 1 Other Other +a690edc0-1fbd-4e9e-9776-e247f61adc0b 1 Other Other +a6911b40-47c5-4776-b0a0-b9fce0975c06 1 Other Other +a69186d8-4024-480e-bb1d-fe4acaffc646 1 Other Other +a69186d9-0958-42fd-876d-0fd64efa78a5 1 Other Other +a691b98d-417c-4c31-a347-603af5835ee4 1 Other Other +a691c9b1-1c97-4206-a512-c69bbfcbffc8 1 Other Other +a691cce6-2f49-48e9-82c1-b9644796c835 1 Other Other +a6920a74-e4e0-4ced-a524-4af5131a45b9 1 Other Other +a692c0c1-5f52-4c95-b9b0-500830713a8d 1 Other Other +a692dd9d-49f9-40c4-8784-299e79fdf875 1 Other Other +a6930730-5a42-40aa-98c5-8edae1ad1b23 1 Other Other +a6934f6e-fa1f-4013-8f77-800cae8281f7 1 \N Other +a6936553-d9e2-4d59-89cc-29a739509e1c 1 Other Other +a69370b2-a2c7-4d4a-807f-e008b4f4c2da 1 Other Other +a69376ff-dd2f-4638-a855-ba78915495ee 1 Other Other +a693e2bb-95ef-43cf-a91d-05ad84362893 1 Other Other +a693e343-8111-4ae3-a108-2613ee074fdc 1 Other Other +a693e9ee-6797-4215-a299-185e2508ac90 1 Other Other +a694196b-c8c0-485c-a1b8-66e6716580e5 1 Other Other +a6943dce-b290-48ea-92e6-e3ecf6a807e5 1 Other Other +a6944835-899d-4730-8d11-6b44aa0d9b3e 1 \N Other +a69482ba-8640-4f67-bb0e-5cd14c887e35 1 Other Other +a6948cc8-8aeb-4370-a7a7-dadf78f91c08 1 Other Other +a694a7fc-d78f-4ea7-a22d-e30348dd31b8 1 Other Other +a695131b-92ce-4f2f-8671-b4ae42a19a1e 1 Other Other +a695436d-2e2d-4f58-8431-68855c862dac 1 Other Other +a6958601-a156-4a09-84b1-8fcbdae63050 1 Other Other +a696080f-0e9b-4a53-8cfa-2b364aae8edc 1 Other Other +a6963d33-4df2-445e-9d35-8147fbeef4ea 1 Other Other +a69658ac-95c6-43e1-bb11-aad646871a82 1 Other Other +a696a1d1-c66f-415b-9a5e-a8f40c340692 1 Other Other +a696b34e-e6fc-4950-b3ae-e7a95edd01a2 1 James Other +a696d7d0-9e31-417e-b48e-fb0ed64cfb8f 1 Other Other +a6970175-a240-4db4-a63e-d512d3f8585d 1 Other Other +a6970b53-bf24-47a7-8ea1-25df43cff11e 1 Other Other +a69738c4-d4b5-48aa-944e-ec767965911b 1 Other Other +a6979454-d498-4e2e-9147-088211861fab 1 Other Other +a697e801-1221-40e7-b244-d53598abeb8b 1 James Other +a6981aec-8a67-4a8a-8fa2-265e882a4c2c 1 Other Other +a6987744-f49c-4911-bbbc-a27be45c7a59 1 Other Other +a698b6c1-1f58-46a1-9c2a-2aae80a28b1e 1 James Other +a69900ba-fa1a-49d3-a1cf-ed0dc1b34858 1 Other Other +a6990724-d803-44df-a22c-95715167c2ae 1 Other Other +a699bfd0-8a48-4038-88f2-0a2b280ea31c 1 Other Other +a699d0d6-b63f-4330-9045-0051f56e6bfe 1 Other Other +a699daf5-96e5-48c9-b9e1-4eadb2bf5a38 1 Other Other +a699e5f6-310d-43d1-a721-e27b2456c51a 1 Other Other +a69a1334-568f-4f89-a927-7cd19575ef6e 1 Other Other +a69a7193-51cd-4cb3-b53d-5f892d86cbe1 1 Other Other +a69a73d0-f1e0-44e0-8ca7-bf852ff32612 1 Other Other +a69a8f0f-fe10-48d1-895c-c71516eaf628 1 Other Other +a69ac2ec-6afc-47ee-820b-d17ece51cf5f 1 Other Other +a69ae72c-0171-4c9f-9f54-5534124a0440 1 Other Other +a69b06a5-c4fc-40e2-accf-f9c395b3068a 1 Other Other +a69b2024-3017-413d-80ec-180ebb7b12f9 1 \N Other +a69b4124-052e-49d5-8a03-f0b6481ea4cc 1 Other Other +a69b4a98-72bf-4a57-af15-28c383d81057 1 Other Other +a69b8979-333e-4c97-865e-2978835213c1 1 Other Other +a69bdf8c-cc06-465f-affe-0345d1ce12e9 1 Other Other +a69c367f-2a6a-4140-b7d7-66ea87cbb94c 1 Other Other +a69c79e2-a258-4880-a06c-c08906d22405 1 Other Other +a69cd4c8-2cf4-4d76-ac11-5bfd02b485c8 1 Other Other +a69cd84d-f473-483c-a33d-583004c372ec 1 Other Other +a69cef96-52c6-4a48-879e-f5ea27abd440 1 Other Other +a69d0353-9dc3-41be-b9dc-ad0cdd8cb9dc 1 Other Other +a69d1806-0fc8-45f5-ab3f-9e3cccf41e81 1 Other Other +a69d6d33-f5b5-49d5-9c6b-c94187592c57 1 Other Other +a69da7b2-3787-43b3-8240-dacb3755d21e 1 Other Other +a69de1cf-781e-4cfe-b6f6-725fcc9d444e 1 Other Other +a69de219-0922-4ab6-b9c0-e36ade32d9c8 1 Other Other +a69df079-34e3-4e00-96a0-0d9412a5276c 1 Other Other +a69df9ad-90d8-4e93-b81e-ccbd35e6db87 1 Other Other +a69e2176-b9cd-4434-b696-6e45f7548ef0 1 Other Other +a69e5192-25b8-4c57-b824-c05b29fae22b 1 Other Other +a69e5597-1645-458c-95cb-72691a1d5715 1 Other Other +a69e5ea4-42f8-4d4b-8488-244240393e03 1 Other Other +a69e8628-7a2c-4021-8bc3-8020ec7ac119 1 Other Other +a69eabd7-f51e-49f1-a8dc-c20eb5e3f853 1 Other Other +a69f0a28-804e-474d-9b02-b27d5f10d4ac 1 Other Other +a69f1261-e9a9-4d9e-9bb8-536180893795 1 Other Other +a69f3cd4-867c-4bdc-aeeb-9b262b2e194a 1 Other Other +a69f9088-ba11-4d9e-b660-0f9b97f1330e 1 Other Other +a69fd426-84c6-4575-986d-137453aecd6a 1 Other Other +a69fe60c-3294-49fe-8bf9-c6c5a62d1686 1 Other Other +a69ff17f-ce35-4c13-b653-e4f22af22532 1 Other Other +a69ffee0-c9bc-4118-8044-69b298bb1dc3 1 Other Other +a6a0043d-6553-4cdd-aa53-634c9e8d3c38 1 Other Other +a6a01778-b9b1-4aa5-89f6-1adf330a32a7 1 Other Other +a6a093e2-457b-4447-a659-d23077ec1128 1 Other Other +a6a0c1ee-6cdc-4d7e-880e-7d6aa3163942 1 Other Other +a6a0df26-bbdc-4767-87cc-89cf7afe8824 1 \N Other +a6a10a84-3315-4692-8bc8-05268ced4c02 1 Other Other +a6a167d3-b301-43a9-9fe0-f6f02c992ac7 1 Other Other +a6a1929e-4b4a-4204-a339-83a5e77a9164 1 Other Other +a6a1b17b-31b0-4a9c-8d06-8a281ab96795 1 Other Other +a6a1fac2-5d30-4001-9ea6-be08ab491fcf 1 Other Other +a6a23733-8db6-44c4-8d33-566b221a0a18 1 Other Other +a6a2741b-c987-4b30-8415-1a4f8c4dd211 1 Other Other +a6a28eb6-da0b-4e06-bf11-b7c62f7d92da 1 Other Other +a6a2aa53-d464-436e-90da-790131a1ca8c 1 Other Other +a6a2d3ca-bfbe-4f4e-8785-1e1ded876166 1 James Other +a6a305b7-30bc-4190-bf17-87135fcba74e 1 Other Other +a6a30f46-e3f8-4a03-8cf1-24ccaa3cfc49 1 Other Other +a6a359fa-c285-472c-94d9-1a846d6a760b 1 \N Other +a6a40108-4f87-4ec8-aa98-e0acd0111a46 1 Other Other +a6a46c4f-6037-4964-8fbe-b79d8076b764 1 Other Other +a6a4b46f-93d1-4d42-aea6-edf60543f720 1 Other Other +a6a4b977-7724-40d0-9b88-af2e035e81f4 1 Other Other +a6a54c76-abd6-4aa7-a6a5-5c085040e134 1 Other Other +a6a5ced7-269d-49c1-acb5-cb671b74429d 1 Other Other +a6a624ea-226b-4375-b37e-3412e13d38b7 1 Other Other +a6a625ea-81f3-4bea-a36a-da04751fadca 1 Other Other +a6a633d3-7ffe-47b5-b5bb-859e6798ca0b 1 Other Other +a6a6479e-e05a-4fb0-b282-f54c97c31a36 1 Other Other +a6a64da7-b8ed-4a5c-b47a-5437f23d121d 1 Other Other +a6a6590b-a56a-4b28-815a-5c28b0a5b7b7 1 \N Other +a6a68183-d337-4839-afae-2a1b5b78066a 1 Other Other +a6a6cfb8-178d-4080-b096-8e14d36e8b7e 1 Other Other +a6a6d187-78e8-45b1-bb39-f73ca5923b52 1 Other Other +a6a6dda5-2790-43e0-b00c-e9e272545dc9 1 Other Other +a6a6ebaf-7f66-475e-9db1-14958f124b6b 1 Other Other +a6a709a0-12ce-4f90-9f79-15772836bbeb 1 Other Other +a6a73ed8-f645-4b2a-9e75-0c67b2554685 1 Other Other +a6a82e7b-a210-4c72-9c42-0a4459c09550 1 Other Other +a6a84e00-ff69-487e-a154-f1e1b25735c9 1 Other Other +a6a86f30-703d-4e3d-afd5-0a47f7731780 1 Other Other +a6a89298-c192-4f01-9004-79ad623e579f 1 Other Other +a6a89e3f-5133-47e2-a625-03bfeacb3f39 1 Other Other +a6a8b4d0-0276-11e8-9928-fa163e8624cc 1 Other Other +a6a8bfdd-1137-4729-b5c0-39576b46811c 1 Other Other +a6a8d253-9b61-4991-814a-c504368e2010 1 Other Other +a6a8db72-cbf6-4c41-bc8e-5b5f442316bf 1 \N Other +a6a91854-3541-4532-8f46-7fe1d699d5a5 1 Other Other +a6a92763-bce3-4cf8-83b6-dc6542c61ece 1 Other Other +a6a9338e-fa8f-4189-a7a2-0668a65c01af 1 Other Other +a6a94751-869f-412b-8053-24d0914a682d 1 Other Other +a6a948bf-e4d8-4fab-9b4c-289a8c8e29ab 1 Other Other +a6a95d13-a64c-4c6c-8111-068d3682be65 1 Other Other +a6a96075-0f52-4a2b-8a7d-1b6ca8a0fe06 1 Other Other +a6a96c01-08c7-444b-9da0-cea7104dcef6 1 Other Other +a6a9812c-920a-4bcd-a3bd-3876bc90faa8 1 Other Other +a6a9a90f-45b8-4998-8a8f-228ada42fff7 1 Other Other +a6a9b663-40f1-40b8-9c26-080c8a55e788 1 Other Other +a6a9f1ab-7514-4272-b56b-94b0dfbd7527 1 \N Other +a6aa05de-4664-45d3-920f-76d43fd9be50 1 Other Other +a6aa90dc-a316-49fc-a65e-6582a351364a 1 Other Other +a6aac3a8-cd7c-40c5-a82e-f37c7b26b6fe 1 Other Other +a6aacb77-600d-4b7f-851b-68d20648a753 1 Other Other +a6aaeb86-e162-4df9-8bdf-82d5ca4eda62 1 Other Other +a6ab5d18-2c32-4d41-a6fc-e23bde045316 1 Other Other +a6ac3dcb-a2e5-45ee-a1ef-350fa96e9a88 1 Other Other +a6ac4707-3209-4ba2-9014-b26ceb6aa689 1 Other Other +a6ac6d73-c3d6-4950-9636-3b16e9df21ea 1 Other Other +a6ac7358-bb79-4334-a775-b9c5d09f1f35 1 Other Other +a6ac8198-041b-4731-9674-9dd617b72aa7 1 Other Other +a6acc4d9-4788-4f0e-aa26-0c23c884a3b6 1 Other Other +a6ad1ac5-4543-427c-ab9f-723b22e4e234 1 Other Other +a6ad35ec-df07-4ba0-828c-bf64496c9e91 1 Other Other +a6ad3d66-e86b-4cf5-8d4f-a0d2a9d7cb73 1 Other Other +a6ad5fb5-9fd8-43ca-afdb-082dfa2d0093 1 Other Other +a6ae1fc8-7b6e-45a4-8517-c72f934f0411 1 Other Other +a6ae321c-d02c-4a5f-b2e2-79eb29cfe1d3 1 Other Other +a6ae37ea-b17b-486d-8739-2d57f995bc84 1 Other Other +a6ae43ca-01aa-4c9d-a379-020b42ad21ac 1 Other Other +a6ae9e7a-272a-4e98-9cc1-cdb3ed4fa575 1 Other Other +a6aed704-6eb5-4f9f-9cfd-256cdd6406a1 1 Other Other +a6af1ef4-5e67-4113-b0c8-ad56ad7051a8 1 Other Other +a6af39d6-50d3-4734-a443-8956e272f90d 1 Other Other +a6af97b3-7594-4b94-9363-5f0bab330f7e 1 Other Other +a6afd93e-2bd8-46a9-9835-a39acbe3aa5c 1 Other Other +a6b074c8-4045-473d-bd3e-8801dee23a46 1 Other Other +a6b0752a-b832-44da-b376-aa021c17e9d0 1 Other Other +a6b0f698-cb21-4a05-be02-aac6429a76af 1 Other Other +a6b11782-91bc-482a-b03a-4503faee000a 1 Other Other +a6b1566a-54c6-44d0-974f-95673f9691b0 1 Other Other +a6b167c0-47c3-4597-8da0-5ba5b6fe944a 1 Other Other +a6b17533-2353-4bcc-b219-1c7653efd8f4 1 Other Other +a6b184fb-ddc9-456d-9987-f4d797c48af1 1 Other Other +a6b1f3d2-dbcf-4289-9278-1c4a61b3f98d 1 Other Other +a6b22762-8714-48b2-911b-4a381e7e3731 1 Other Other +a6b22d2b-0a1c-4140-a545-c397d84387f3 1 James Other +a6b23fa7-e255-4b01-8a75-d2a3ad8f3fdb 1 Other Other +a6b2ab39-6677-4bcd-8a4c-54f6918f8965 1 Other Other +a6b2d18d-6fcc-41ec-bf90-0872f3d94033 1 James Other +a6b32dec-c39e-46af-8b05-01c2f034cc17 1 Other Other +a6b34b8c-a9b1-4b2f-9a9f-8a83ca4ea250 1 Other Other +a6b37cfd-2c3a-422b-af76-cd225ba0f6bf 1 \N Other +a6b385ca-4a43-45cf-a1a6-ca139b1e42ed 1 Other Other +a6b3b6f1-ed1c-4045-8eb5-a80dd50df34a 1 Other Other +a6b3f0e8-75c1-43a0-9177-2e8b1a747ec5 1 Other Other +a6b414d4-060e-4904-93e5-bba6cb02176f 1 Other Other +a6b42fca-5133-49bb-bf11-46a47c08d4aa 1 Other Other +a6b45334-ab71-4ae5-b612-0d4d11817a95 1 Other Other +a6b469cd-33a5-4c43-bdde-a88982ca344b 1 Other Other +a6b48b92-14f5-4e0d-810e-f7cb652ffb0b 1 Other Other +a6b49494-001e-494a-888a-519e010f6b79 1 Other Other +a6b4a9a0-f8b3-4718-b49c-664dd3840f93 1 Other Other +a6b51fee-9021-48b8-9bbb-942aeea31b30 1 Other Other +a6b56343-3712-404b-a40b-9ff151baab85 1 Other Other +a6b583a0-ab80-4293-a8e2-795aa35b9444 1 Other Other +a6b5a112-7085-46b3-aa8d-7c37613eda5f 1 Other Other +a6b5c92d-9a38-458f-b69c-33d9c30c1f01 1 Other Other +a6b606e1-844e-4eb0-8d69-b5d3e4d2421c 1 Other Other +a6b68239-8d77-4e51-8132-809c268bec6e 1 Other Other +a6b6cfde-637d-45b2-bd05-c142302663c6 1 Other Other +a6b6d691-4c57-4c8c-9242-5fe44e832f30 1 Other Other +a6b70580-b6ce-4d54-8b59-ba02c0687370 1 Other Other +a6b715ad-992e-4f77-9a19-9d9a173b6489 1 Other Other +a6b73da3-b913-4b2f-a1ba-af76a4079d5b 1 Other Other +a6b74af6-9f33-46a0-b66f-7019eceb7926 1 Other Other +a6b7805f-3605-424f-b879-ae255f17a9c0 1 Other Other +a6b78afd-41ad-460f-88f1-b599a26aa26c 1 Other Other +a6b7ecbb-42f8-4942-a82b-9d1ddb93cf80 1 Other Other +a6b81584-a8dc-44d8-9d7a-f80d96cfcdc9 1 Other Other +a6b82483-7c8c-4d74-be3a-e73a640050ae 1 Other Other +a6b829f9-1cbc-4f65-87d6-91d292f08022 1 Other Other +a6b88fde-10d4-4c3c-9f43-a9b94bf6796d 1 Other Other +a6b8c067-3fae-434c-9030-d460534e44b4 1 Other Other +a6b8d8f5-c55e-455c-a919-a1f491a4e795 1 Other Other +a6b91810-eb24-489e-9c3e-219ce752f3d3 1 Other Other +a6b95585-d3fe-4589-9710-689fe9096ce8 1 Other Other +a6b996fc-4a30-4ecd-8ad0-939c542d1925 1 Other Other +a6b9a6d3-830b-4a22-820f-5062661a1df1 1 Other Other +a6b9aba4-cf97-4226-8a2c-1bec69a60fb6 1 Other Other +a6ba0ff9-32cd-485a-ad62-78bc1083134c 1 Other Other +a6bad4ae-7c11-495b-866f-dc45a7ef6b26 1 Other Other +a6baf65e-8acf-443d-89dd-79e841c8ff15 1 Other Other +a6bb6d76-678f-47d4-a722-d86063288b8b 1 \N Other +a6bb71cb-79a0-424a-86b0-a8a9a1c5da4c 1 Other Other +a6bb7733-64e3-4600-a443-4ae57ad77bde 1 Other Other +a6bb861a-81ed-4bf3-ab87-9bf517393b3d 1 Other Other +a6bc337c-eef3-4086-b7e7-b95b7698e310 1 Other Other +a6bc3f7b-3bce-489d-84a1-07c2c50085c3 1 Other Other +a6bce1d0-b7e0-4d54-a3a4-2a50e542a480 1 Other Other +a6bd0b82-ec09-42f3-8bc9-cea70371585c 1 Other Other +a6bd2af9-a418-420b-897b-93864d46072f 1 Other Other +a6bd5fe9-9153-4fca-9e35-82553669e78d 1 Other Other +a6bd8683-9798-42f4-bd47-0f3a8700936e 1 Other Other +a6be3704-b623-4225-add6-dc848fe04d08 1 Other Other +a6be411d-413a-42e4-a60b-4fc2f6ced34b 1 Other Other +a6be964e-487d-474c-83ce-67da64656e05 1 Other Other +a6be98f6-c0d1-4bf7-9b2e-46cb2a54607a 1 Other Other +a6beb0c2-51ef-43b5-895d-77934de00a85 1 Other Other +a6bebf5f-6ecd-4ee2-afd4-e4031048e809 1 Other Other +a6bedf56-6baa-40e9-936a-90010fced167 1 Other Other +a6beff9a-eb4c-43b7-8322-6ecc28bb9ea8 1 Other Other +a6bf01a9-969a-4178-b6cb-0e8b3776fbc6 1 Other Other +a6bf04cf-10fb-40fa-a8a2-50370103d203 1 Other Other +a6bf394b-f983-43dd-adf5-d550b27b990b 1 \N Other +a6bf8234-d9f6-4822-9bdc-6b5baeb2fbef 1 Other Other +a6bf8fe0-7eb8-4848-9a83-d7fdde1e7955 1 Other Other +a6bfb0f0-742f-44a9-938c-358682ca97ef 1 Other Other +a6bfb60b-94aa-40ce-bc0f-1d0937631bd7 1 \N Other +a6bfb9e8-05bd-4b2e-9317-9569b5f2d68d 1 Other Other +a6bfea54-98f2-404b-a71e-6c121e9751a8 1 Other Other +a6bffc39-9c96-4551-a95b-cce2f2762791 1 \N Other +a6c01e93-40e8-4ee4-93f7-d0434dff3f68 1 Other Other +a6c04820-2ebf-48e0-8b05-ed32a07d01dd 1 Other Other +a6c0750a-33de-4874-8f46-6c01e94f9b49 1 Other Other +a6c17e1a-64a3-4531-bcfe-7878cee12a6c 1 Other Other +a6c1880e-bb89-420f-8b67-d7e85ad25c09 1 Other Other +a6c19ed9-7938-44c3-9ead-91f92f4ff876 1 Other Other +a6c1cd51-edea-4019-85bb-bc7ddadd181c 1 Other Other +a6c1e089-650c-4bda-8d06-9c4401df1e4a 1 Other Other +a6c1fe7a-8902-4b8c-80b7-ac5812bd1bb7 1 Other Other +a6c26ecb-58bc-4c23-b497-091704b387c9 1 Other Other +a6c294d3-e066-4083-a8e5-b0ea9f6dbd5b 1 Other Other +a6c2cf7d-9f6e-4232-af07-7b4b5ea722ad 1 Other Other +a6c2d3ec-cb19-468f-9a2f-61a7bf3241e7 1 Other Other +a6c33539-10bc-4d9b-9ffa-b9d0e7f75272 1 Other Other +a6c38c0c-749f-466b-b97b-c83ac2511655 1 Other Other +a6c39a22-f284-4c5e-9b6c-afb4d45aeb74 1 \N Other +a6c3a827-68ea-48c5-a3d2-7136febdaccc 1 Other Other +a6c3b42d-c881-4870-8297-24b864d28aa4 1 Other Other +a6c3bda6-6fc2-4b2f-b914-cebd75bcdb8d 1 Other Other +a6c3c8c6-e2d3-4ab8-902d-305c6c970138 1 Other Other +a6c4032f-1678-4f2a-9d50-d0472894492c 1 Other Other +a6c4090e-b7b4-4b3c-904c-1b77629f3ad2 1 Other Other +a6c423d4-7204-4292-883d-20d13ad012d6 1 Other Other +a6c4248c-820d-4c94-945c-84a210bdd20e 1 Other Other +a6c43369-8889-4ca6-b8aa-37d34f301225 1 Other Other +a6c43415-b96e-4f74-8f18-21dd68f505e0 1 Other Other +a6c4747a-6b95-4dc4-bceb-1a37b2fee187 1 Other Other +a6c48a92-4c01-4678-b2e2-f7309370b886 1 Other Other +a6c49299-5fd4-47c5-9096-cc7dfa8a0661 1 Other Other +a6c4c54c-8cf3-491f-b05a-9e0cbb146d69 1 Other Other +a6c50050-c062-48d2-8830-91a4eecffa2d 1 Other Other +a6c5522f-3b84-42a6-9bbf-bfb5d83e80e7 1 Other Other +a6c55dee-5662-4e15-92a5-91634f1fd680 1 \N Other +a6c5704b-ab18-415f-8808-06debd3dda96 1 \N Other +a6c580ba-69b5-44a1-9f3b-7c8eac20dc80 1 Other Other +a6c597e9-af88-4c3e-8286-2ffc1fb604a8 1 Other Other +a6c599a2-6834-4041-932c-4ae8762d5662 1 Other Other +a6c5ead9-e13d-4eeb-80cd-2cc13b752d17 1 Other Other +a6c60c44-af2e-4054-afc3-c65e850604b5 1 Other Other +a6c6133f-ce48-481e-a788-2b67c15abc96 1 Other Other +a6c64eb9-f839-4f66-8f30-6acb0a99aa18 1 Other Other +a6c65566-aefc-4851-a6e9-b4c4aa345b2f 1 Other Other +a6c66095-9877-48c4-9bdf-fb196894beb8 1 James Other +a6c6c8a8-9428-4b3e-b855-7e6171fe5148 1 Other Other +a6c7714c-c625-4c89-b9da-9f595dfb2ccd 1 Other Other +a6c78d37-31c5-4ce4-b353-a6cd8e4eabe9 1 Other Other +a6c79712-b058-4b6f-a321-56055ac26ab5 1 Other Other +a6c7b911-7718-4933-aa85-152fd696d2ab 1 Other Other +a6c7e6e1-d1fa-4da8-956c-9c54120aa44e 1 Other Other +a6c84846-ef53-47c3-bfd1-e341af321e2a 1 Other Other +a6c85f38-5bac-4841-9a61-aac3f91b0190 1 Other Other +a6c8ae8c-f26c-44ba-a0fd-fbea5c6e7e51 1 Other Other +a6c8c0c7-adc7-4d0b-814f-ba9a9e4c3d8e 1 Other Other +a6c9140b-6024-4f31-a452-e07c15281031 1 Other Other +a6c93a22-81fd-4a7d-b2dc-e279db8090cf 1 Other Other +a6c98c62-c8ba-40f2-8011-053dc04ff8fe 1 Other Other +a6c98e89-d28f-4079-8c82-1a9de4d1e8fb 1 Other Other +a6c9bd99-db2e-4418-b6ff-97a916a3f730 1 Other Other +a6c9bf73-f72e-4518-b638-6a0068a886bc 1 Other Other +a6ca69dc-fc6d-42ee-a5e1-4260a59d8b4c 1 Other Other +a6ca9dd5-d9fc-4da2-8668-c13713c9af2f 1 Other Other +a6cae2ab-c760-46f8-909c-da8d1fdffec8 1 Other Other +a6cb684c-bb69-4f00-a9b5-63f7421c09dd 1 Other Other +a6cb75aa-e071-450e-9638-ec97ab81d2fb 1 Other Other +a6cb8a54-f9c6-4a31-9d8e-d1408ca2ed08 1 Other Other +a6cbe8c8-8afe-4bd0-81e7-bc1dcb75dbed 1 Other Other +a6cc0fde-1c7a-4f08-861e-a90e3995233e 1 Other Other +a6cc8e12-c949-46c8-998f-520250dfffac 1 Other Other +a6cd5449-1000-4ea6-a2e2-436f52dc6ed2 1 Other Other +a6cd67d7-6ed0-4add-b8ac-0b900335bb2d 1 Other Other +a6cdb608-707a-48be-890c-a0bff411346a 1 James Other +a6cdd4a1-e887-4c90-b4f8-1bedd7839e68 1 Other Other +a6cdf520-c0f4-42bc-9192-3e3d804b6a3a 1 Other Other +a6cdf6e1-619f-406d-bd44-62c8525d588e 1 Other Other +a6ce0d65-dcd1-4ba8-8bfb-685ab8e0e3c1 1 Other Other +a6ce38b2-a702-4fe8-ada7-5b90d10b0f0b 1 Other Other +a6ced057-000b-45f9-927b-fd92d7ab3af7 1 Other Other +a6cefd00-a57c-4424-aa86-d59607f1968f 1 Other Other +a6cf1e8a-ebdf-4e44-ba93-c590fc25fa50 1 Other Other +a6cf58b4-6a19-42ee-bc3a-4dabf955a2a3 1 Other Other +a6cf66c8-e48e-47c2-8ef3-546578e0b073 1 Other Other +a6cff186-54b7-4e16-8c22-4caffdf48bb7 1 Other Other +a6d01e80-ba8a-4bd1-befe-c82c92f80d11 1 Other Other +a6d07345-ccdf-4f8c-9a1d-ddcf6c770ab1 1 Other Other +a6d0a412-78e8-4758-a948-32a0961e30c9 1 Other Other +a6d0cd40-8f00-4fa2-8d14-8f4ad8b3512e 1 Other Other +a6d11982-99e5-4fbe-b1a8-20898ff17a62 1 Other Other +a6d11e6c-6ca5-46dd-8e3f-c84e4a8a39dc 1 Other Other +a6d13019-a3f5-4e29-90fb-dfadbcfaa868 1 Other Other +a6d14cc2-26b7-48cb-b231-531241562bcf 1 Other Other +a6d160bb-140f-4b3e-9a57-cbb7355db8e9 1 Other Other +a6d176d1-f0b4-435f-9a5b-a74f0e63218b 1 Other Other +a6d18d6b-482b-41be-9dc9-cb1e75776e4e 1 Other Other +a6d1bde6-8d30-4984-bb4b-0469fe2c4990 1 Other Other +a6d1cc68-29b0-4ce5-a6a4-8c477fbee9dd 1 Other Other +a6d2046a-3be0-4365-9201-7b38e38af8d3 1 Other Other +a6d205ee-bb7f-412f-9462-b1114d0121cb 1 Other Other +a6d22f58-120e-4a1a-997c-ba67a8bc2b10 1 Other Other +a6d23c89-0941-49e0-9dc0-1037934fd836 1 Other Other +a6d2ad81-4e7a-472b-a856-dc9a409e4fbf 1 Other Other +a6d2c4dd-bccf-4393-9585-0a6b32bca363 1 Other Other +a6d2ec0c-d1ea-4dee-b536-c65ad090f9af 1 Other Other +a6d36090-6dd1-4da4-9d59-01698f8f2581 1 Other Other +a6d37bb7-c5eb-4443-9727-96ef2c094af4 1 Other Other +a6d38acb-c71a-4e23-aca3-2faafdd5694a 1 Other Other +a6d3a733-f459-4898-862e-681b669f6747 1 Other Other +a6d3ec69-30b0-473e-9a10-2ac4917c8a39 1 Other Other +a6d3ff81-7cd1-452f-9c97-7add6c4f502b 1 Other Other +a6d450c7-a9f4-403d-ae06-4ff2452793ca 1 Other Other +a6d455c1-0f0f-4198-9861-a4e8d6c6dab7 1 Other Other +a6d45689-6a02-4587-a5e3-26ddd9faab65 1 Other Other +a6d47123-476b-4a12-8217-5ffc041cd9d2 1 Other Other +a6d47eb8-f968-43cc-bfc1-26732260e701 1 \N Other +a6d4dc05-4a7f-4e6f-87c7-07853e783192 1 Other Other +a6d502a9-d8e1-47da-89aa-22567e0a2aed 1 Other Other +a6d51079-d3e4-45ec-bea6-4b5c911d6997 1 Other Other +a6d543f4-7f5f-4125-9d61-f02418d20232 1 Other Other +a6d5717f-e744-42b4-b9b0-ef79ee2e37ef 1 Other Other +a6d58292-bc9a-4aa6-af15-ef3b037429b3 1 Other Other +a6d58805-7dcb-49c4-8b9c-5891abc0168d 1 Other Other +a6d5af9f-d7a1-423f-a94c-eb1c313765b6 1 Other Other +a6d5b98b-f486-41f0-8f09-ed4455b3524c 1 Other Other +a6d61f8d-15a9-4bcd-b10d-4916c52bc1f7 1 Other Other +a6d62b3d-89e4-48be-b7ed-4fa6b1d8e9d8 1 Other Other +a6d630b8-e93e-4385-a736-2f6382fe6144 1 Other Other +a6d6c191-ad4d-4f5b-b32c-5de32385b6ce 1 Other Other +a6d6dd36-2923-49a1-8d06-00936d48dd59 1 Other Other +a6d71cbd-1768-4037-81b8-684924931fcf 1 Other Other +a6d73b40-59f0-4ef0-ad99-a45103555d67 1 Other Other +a6d7631b-11a3-47a2-bb6d-60fbd9315f87 1 Other Other +a6d7c130-cc41-49a6-8580-190ef149f34a 1 Other Other +a6d7e862-fd9f-4717-bf61-10f5055e56f2 1 Other Other +a6d7f70e-ea08-4a1c-b1b5-e2ce45c4b9f7 1 Other Other +a6d7fa92-c244-45b8-b5d4-0206b43329cf 1 Other Other +a6d8001d-a412-4b48-b433-d3a615841a81 1 Other Other +a6d81034-9064-40fe-a91e-dbfa065301ca 1 Other Other +a6d8200a-c3ad-42c2-96e1-d241c7b67de5 1 Other Other +a6d8316a-b6fb-4f16-ad62-6488934c5112 1 \N Other +a6d8322a-ad0d-4a32-9a3b-42dc9af43a8b 1 Other Other +a6d86626-5cb6-4f46-a35c-43cdd2849d08 1 \N Other +a6d86722-b4da-4306-b0c4-421f55411463 1 Other Other +a6d8f7f3-621c-473f-a7c6-326042b33318 1 Other Other +a6d912ec-896d-4f1e-a619-fb1de0dba7fb 1 Other Other +a6d91e16-4e78-467d-9ca5-58dc1e018940 1 Other Other +a6d92b80-65d6-434b-ac87-172be07cf3d0 1 Other Other +a6d976a8-3655-4cf6-9ade-5e3ed643ec01 1 Other Other +a6d9d9cc-124b-4125-9e34-ba3f2d12d818 1 Other Other +a6da05c5-bd2d-4219-b98e-5b73f11ed3a3 1 Other Other +a6da4290-6cd0-4817-bbc7-0733bcf1d37c 1 Other Other +a6da75ed-f799-49c3-90aa-7d4b5278b9d3 1 Other Other +a6daa828-6c76-496f-abb0-4f5f7fb9772e 1 Other Other +a6dad022-d4a1-402e-9e65-91702bb09923 1 Other Other +a6db0d4e-1dc4-4443-a751-d26e74f8538c 1 Other Other +a6db1ab5-14d4-4e18-8710-bac8d9e68996 1 Other Other +a6db5cb0-2944-41b2-bec3-4f12696950be 1 Other Other +a6db9865-d970-4dc8-b0b5-601432f9e939 1 Other Other +a6dc0a71-0fc3-45f9-abd1-7dcff7afc9b1 1 Other Other +a6dc0d0d-9f74-4d5e-8925-ab099c22f198 1 Other Other +a6dc7950-b008-478b-9adc-3d2e88e343a2 1 Other Other +a6dcc815-4dbc-48c3-85cd-714b33b1cd9a 1 Other Other +a6dcc90b-d4c6-4e91-b04e-731ceba87ab3 1 Other Other +a6dcd7e4-4e4f-46d1-9eee-0330257f1dc7 1 Other Other +a6dcdec6-b7b7-46d1-845e-a9e5d1d288a7 1 Other Other +a6dd5c68-f78b-45be-9853-6a72f7b6c26d 1 Other Other +a6dd64d0-00e6-45c3-9adb-2d3e0c2969c5 1 Other Other +a6ddb596-f8a7-44ad-8f04-79a4a9f46d65 1 Other Other +a6ddd7ec-7e13-42d5-8364-d732c9912124 1 \N Other +a6de2802-2fc2-4c34-b660-d6a4020367af 1 Other Other +a6de8a20-907b-47a9-bc60-a5c7e689b067 1 Other Other +a6ded462-e686-4f9a-a32c-5986e5f5360d 1 Other Other +a6df150a-a67a-4606-afc6-a43660329564 1 Other Other +a6df3ee2-416f-4739-948f-775a795ba368 1 Other Other +a6df98c5-c731-4a43-afbd-16e844ed2e74 1 Other Other +a6dfa996-8ade-4e73-abab-ca4fc4a2ea72 1 Other Other +a6dfaafa-cdb1-4a9b-9b63-319cd16ebf9f 1 Other Other +a6e07bc2-3601-4afa-8359-e41ddc27c9f2 1 Other Other +a6e0816b-6074-4df0-bf9a-5e2cef3048ab 1 Other Other +a6e0f044-0a14-4b03-a753-acd31752a6cf 1 Other Other +a6e17ec4-03ca-4b6e-9572-f837c8a6090d 1 Other Other +a6e19ef1-665d-4ef8-b788-b57ef5ad752e 1 Other Other +a6e1d27e-1de9-4b88-a9d3-8453d0459f8c 1 Other Other +a6e1e62f-9415-4821-87d4-1988e8fe536d 1 Other Other +a6e1e88f-c5a7-4749-9a76-8e35cab70dd9 1 Other Other +a6e220a1-f7e4-4499-b2af-18e0ac36ada6 1 Other Other +a6e2462b-f076-4fbc-a55c-724cec3ce2ea 1 Other Other +a6e2551d-7004-492b-9f7a-ced89f20598a 1 Other Other +a6e25fdd-21fc-478b-8ac1-b1c34df8c4e6 1 Other Other +a6e26438-202a-49ce-ad07-86b8c0051ccc 1 Other Other +a6e2c1f2-a6f5-4b7f-ae2e-328c1fe35e4f 1 Other Other +a6e2ca3b-4c7c-4e20-bf66-dda58a5a5ee0 1 Other Other +a6e2cea8-09ab-4ee6-8b22-6a0fb6922f6c 1 Other Other +a6e2da5e-2b29-4655-bd88-5baef12d1fd0 1 Other Other +a6e3310d-1a1e-4db1-85a5-e044753d705c 1 Other Other +a6e333bf-e25a-4726-84ba-43cdd0aa59cf 1 Other Other +a6e3684a-4fa9-458c-b051-c90a025c653a 1 Other Other +a6e40abd-4274-4854-97f2-cae7888b6669 1 Other Other +a6e40f3b-371b-4a1c-bd31-ddd99eb0ded0 1 Other Other +a6e42191-e386-43a2-8968-f32e836aeef2 1 Other Other +a6e438f5-2fb2-4709-88cd-65b08edf9f89 1 Other Other +a6e45735-9ecc-4ece-80ab-d698e8adc69c 1 Other Other +a6e4615b-cd39-46b9-bee7-bb6eac099c2e 1 Other Other +a6e46510-d7c7-4b06-80dc-b3aa5ac28da6 1 Other Other +a6e476d3-efe7-44f4-95ae-9eaa9641ebc2 1 Other Other +a6e49c2b-f361-4245-8536-7f47174c042d 1 Other Other +a6e4b0bb-a65f-4c22-806b-a13907af1350 1 Other Other +a6e50aa9-b400-4a0f-8bdb-262ae16cd2d3 1 Other Other +a6e522ea-9fb7-4c84-b569-71402065a39d 1 Other Other +a6e55826-11e2-4586-8294-eb1746ba16f5 1 Other Other +a6e56181-d2ba-4189-8796-91d5d8a7ff57 1 Other Other +a6e577ac-946f-4d43-b0c4-e608cd057d5c 1 Other Other +a6e5b1a1-96e0-478f-9613-ba52303cbdfb 1 \N Other +a6e5e227-f876-4c8a-9d5e-4ab9833f7660 1 Other Other +a6e619ec-65a4-49b1-9ac1-f6129b8a2d04 1 Other Other +a6e642f3-e85d-4e1b-8233-b019cb2506f4 1 Other Other +a6e719cd-f021-4b87-9daa-3e5a1fda42c1 1 Other Other +a6e73117-eb81-49cd-91c9-b4d1cc4ae567 1 Other Other +a6e738b2-8376-480e-b03a-110069152abc 1 Other Other +a6e7df56-97e3-4ce6-ab6b-b0c8ac02c0c0 1 \N Other +a6e7e102-29fd-4ffc-9413-27b2ab59b5cb 1 Other Other +a6e81498-aa11-41bd-b35d-efdc05b299b3 1 Other Other +a6e85352-7cfb-4209-8ceb-ca96949d6e28 1 Other Other +a6e8564b-716b-4481-a31b-23e414596c4e 1 Other Other +a6e88a87-df39-4b25-9117-43bcedd97d49 1 Other Other +a6e8d437-9df0-4adb-b86d-1e76d40c2c4f 1 Other Other +a6e8e849-49cf-4afe-bb49-8c96ac30ba2b 1 Other Other +a6e8ff97-787a-4cd6-9f69-f9895b76f4f9 1 Other Other +a6e9035c-730c-422a-888a-631705f43017 1 Other Other +a6e96b52-fe69-4fd4-9cfb-7facb685a091 1 Other Other +a6e9d692-37cc-4fb4-b4b5-ae7c5dc4776d 1 Other Other +a6ea471f-1566-49ed-97c0-37dae0c3539b 1 Other Other +a6ea9b23-9b29-4e84-880b-e5a606a09c2e 1 Other Other +a6eb161f-67bd-4574-a506-f7f720f8a831 1 Other Other +a6eb8f19-752f-4683-a823-685831b64d40 1 Other Other +a6ebacee-4402-4623-a44f-091147835e2c 1 Other Other +a6ebc447-b6cb-4734-a0f5-71bd37c705e0 1 Other Other +a6ebc4c1-9856-4c5d-b638-089a36f554d1 1 Other Other +a6ebdf5b-238f-456b-954a-660bb466c8ab 1 Other Other +a6ebec0b-ed35-43fe-8c0d-74545021a4c7 1 James Other +a6ec1867-1d84-4929-a256-85153b3b64ec 1 James Other +a6ec69cb-7088-4742-9cc3-36305c0f7f2c 1 Other Other +a6ec69de-7d6a-4371-b60d-7fa094dd3715 1 Other Other +a6ec7c81-bdb0-407f-aec9-e76e466dc823 1 Other Other +a6ec8f63-68c1-46a4-9af6-2563b336c25e 1 Other Other +a6eca40a-e968-4abd-8d1c-c55f59635987 1 Other Other +a6ed437a-6f01-4911-924c-9c4b2d8aa3ef 1 Other Other +a6ed77be-3ecb-4c50-8499-0c7822d05185 1 Other Other +a6edae4a-0c01-4787-ab25-47bdc171c927 1 Other Other +a6edd811-e254-40ff-9aed-cf6d7b01563c 1 Other Other +a6ee0319-9dbb-4bea-8d06-0a375962dc91 1 Other Other +a6ee0ec5-aea7-465e-bd4a-48127952b3c1 1 Other Other +a6ee112a-b02f-465c-a359-ba145a1086b4 1 Other Other +a6ee2483-5274-4292-86aa-425f4c2d511a 1 Other Other +a6ee2916-41d4-4ad5-a8df-9c511c197104 1 Other Other +a6ee2ce2-1642-4142-a86c-d033f64e12e6 1 \N Other +a6ee3474-5f9b-407c-bf29-4325e75f475a 1 Other Other +a6ee3496-b8ae-4ec7-9e59-278702a33878 1 Other Other +a6ee5c00-6770-4e3e-967d-626e43c5f157 1 Other Other +a6ee62e0-d0d6-4f11-93b4-7503e69d1023 1 Other Other +a6ee7131-32c0-4d10-8dfc-2c3d4131adfb 1 Other Other +a6ee75c9-da8e-4433-9066-ccf66c81adfe 1 Other Other +a6eea493-a499-4e89-a338-8d25d67c8f00 1 \N Other +a6eea639-406d-4303-b238-fea318b29c02 1 Other Other +a6eeca7b-951b-4505-ae46-076748edfd86 1 Other Other +a6eee58a-f723-4809-8309-f1e53b886672 1 Other Other +a6ef0e57-900c-4a74-aae8-1d691a534b68 1 Other Other +a6ef3254-bb30-476e-abda-22d52b2d5afe 1 Other Other +a6efbb46-aa17-4167-8d3a-4724724d695e 1 Other Other +a6efc5ed-63b0-41f0-9c71-dd12c37c068a 1 Other Other +a6efe647-a34c-465f-aa82-65e9758bc48b 1 James Other +a6f029c3-5994-4c12-8945-cb8725be4cc6 1 Other Other +a6f0bad8-e391-4199-82f4-ab0e3abd4f0b 1 \N Other +a6f0d71b-ad01-4a6c-b573-56905bd8d38a 1 Other Other +a6f11c58-b24f-4534-b812-c6e9c281fbf3 1 Other Other +a6f14508-96f4-4262-bc98-a175ffcab7fa 1 Other Other +a6f1fd9c-65a0-4c0f-9084-c7f70550c4c8 1 Other Other +a6f22457-c6aa-490d-9392-34804511c914 1 Other Other +a6f29a7d-5e14-49a6-b1fc-ea1b072dbab6 1 Other Other +a6f29e1c-e61e-406e-9c65-9a86de1893f0 1 Other Other +a6f317a0-034d-452f-af13-7fb010a8b3f5 1 Other Other +a6f3204b-14ee-4f3b-bc02-e3e239194ab7 1 Other Other +a6f37d0a-a891-4289-b184-762712a5eda6 1 Other Other +a6f3b3e3-780d-4212-8729-21967f755b40 1 Other Other +a6f414aa-bc32-4285-ba95-5e647ad8f54c 1 Other Other +a6f490eb-7f82-424b-8dfa-87e4c3b8916e 1 Other Other +a6f4b013-3ee2-4021-ba94-0b6378958266 1 Other Other +a6f4d455-f912-41a4-b394-4f8354b9339d 1 Other Other +a6f4e0a0-e629-47af-96a8-70fb98a86239 1 Other Other +a6f4f162-7b23-4107-babf-d83340cbfdb0 1 Other Other +a6f50442-2e6d-440a-8a4c-9f58f28a3729 1 Other Other +a6f56475-77cf-4194-aa61-ef1ceb79d26d 1 Other Other +a6f5ab57-48f5-4c13-81ed-3945bdc0bdff 1 Other Other +a6f5ab5d-9b48-4897-94cf-b1f4c832f473 1 Other Other +a6f5e68a-07af-4615-a838-e6f3151c440a 1 Other Other +a6f5f7c0-fd84-4581-9331-72813e061669 1 Other Other +a6f60c37-bd34-4624-8eea-57c2b1b55bbc 1 Other Other +a6f64299-ba2c-49f9-ba66-ce952ec90740 1 Other Other +a6f642b4-d265-4ec7-afe4-5e552f960639 1 Other Other +a6f65bea-f9b4-404d-8ad6-35eccb9aa53e 1 Other Other +a6f66630-2a83-49fc-bfe1-18bae99f22d0 1 Other Other +a6f6be9d-6885-46a3-884c-a02af63a1a29 1 James Other +a6f6ebb6-9fea-46bc-97c6-dbbaf773c6b2 1 Other Other +a6f7ce39-f8b0-4938-97a0-b9e3800a0711 1 Other Other +a6f8002b-ce34-458e-a069-8c09f7177b17 1 Other Other +a6f81002-7863-4b5a-806d-dd37cfc374fa 1 Other Other +a6f818b2-d1a1-4c3f-b74a-0c9794663081 1 Other Other +a6f833ae-fa42-4338-8c76-6bea8884b5ab 1 Other Other +a6f89b8e-6719-4716-8cf2-af04f8995a48 1 Other Other +a6f8f6b4-c32d-4196-99c5-e4f3c86faf2b 1 Other Other +a6fa1315-10a3-489e-8a1c-2c14f6d660da 1 Other Other +a6fa6be6-ab52-45d4-964f-6cd144069085 1 Other Other +a6fa9515-7c6c-4785-8ee2-1649805ea9a3 1 Other Other +a6fa9f0a-b31f-4399-bb42-1f1f51faa366 1 Other Other +a6faccca-b6e2-4875-a517-cc3bc43295d6 1 Other Other +a6fae950-b365-4fe5-850f-52fe42c2390f 1 Other Other +a6fafbd9-fbd5-4fb6-b683-819a7459a8df 1 Other Other +a6fb3f39-65a1-4429-b03b-84583d94f94d 1 Other Other +a6fb64ba-60ec-475e-8e28-2b8045eedbd5 1 Other Other +a6fb6fdd-86cc-400a-ba25-b656b630df12 1 Other Other +a6fb8363-5a23-4e99-b9a2-4142a2360246 1 \N Other +a6fbb0aa-3415-4e1a-b9f6-76675a468663 1 Other Other +a6fbc673-df53-4c75-a9e9-17f027f9dc69 1 Other Other +a6fc7a07-9aeb-4d26-ba21-016f4d1befd9 1 Other Other +a6fc8c14-d7d5-419a-938b-09033ab89038 1 Other Other +a6fc9aec-002f-4a0f-b4aa-62547669b5b0 1 Other Other +a6fcea18-4f15-46f1-b8e8-bb74f83e395a 1 Other Other +a6fcfc94-bab9-43ad-a91b-08a6e8acdf92 1 Other Other +a6fd3132-2a2d-461e-bdbe-92d8778d3f6f 1 Other Other +a6fdac67-dbec-4fbe-9db1-d1b54de60846 1 Other Other +a6fdf963-4da6-4c5f-8c05-82ec3a3f3253 1 Other Other +a6fe2084-31e1-414d-8bac-98c521d6ec09 1 Other Other +a6fe3a4a-b03f-4a57-b856-3ce184c934e6 1 James Other +a6fe89d9-6b6d-4fa1-83da-9051186f6370 1 Other Other +a6febdd6-68aa-439e-b244-dc43a8e18e9f 1 Other Other +a6fedb48-d052-42be-863b-3ae50a80073d 1 Other Other +a6fef349-315b-4210-8c02-6bb1311d6819 1 Other Other +a6ff72ea-26a7-4669-bf9b-eca857268ead 1 Other Other +a6ff950a-cec4-42b1-89a5-50d16787823c 1 Other Other +a6ffbe20-cb4b-4f86-b3ad-6e753f3b1490 1 Other Other +a6ffdf95-081f-4c0d-95cf-48f6f0187748 1 Other Other +a6ffe2b4-a898-4f91-8dde-c3378376e6e2 1 Other Other +a7000001-e052-4ad6-9e5d-8d8e4653c1ea 1 Other Other +a7002549-642d-4c7c-a06e-e937c0fcc2fb 1 Other Other +a70027d5-8048-4a92-9635-428c5d005456 1 Other Other +a70108ee-0893-45f8-8c8e-5afefca18396 1 Other Other +a7010b6d-0a26-4923-a5a4-9e228075257e 1 Other Other +a701369c-c729-4b76-b031-baeb5f08864b 1 Other Other +a70187d0-02d8-4021-ab70-7fce35bf86e7 1 Other Other +a70187de-8771-4c68-a787-8d4ba0b475ba 1 Other Other +a7019805-d69d-4dff-bf75-6ef46107e25b 1 Other Other +a701ba10-f5b0-49bf-953a-87e0085e42e9 1 Other Other +a701c38a-3e68-4424-9b93-961e4d38e377 1 Other Other +a7022669-c6c3-4cb8-8849-8eb1715127d4 1 Other Other +a7027e51-644d-49a9-b111-12b8cde66b2f 1 Other Other +a702a832-584d-11e8-8c86-fa163e8624cc dcda6718-143a-11e7-82e5-fa163e4dd901 Other Other +a702d89d-6d2d-4a5e-bb44-6ec595ae5408 1 Other Other +a702ed72-a8f7-4eed-b720-5b2a3859e6b5 1 Other Other +a7033885-3e4b-4df8-9594-8ce0b4145d16 1 Other Other +a7039d43-1a8d-4780-a171-301dc3e34e66 1 Other Other +a703a33b-2e41-4bda-b3c5-474838baffbd 1 Other Other +a7041a03-d3bd-499d-bba8-9411d1859717 1 Other Other +a7045426-c4e0-4eb1-8708-510ab3be42ea 1 Other Other +a7046583-32f1-4bb6-83fe-e28d02ab38e8 1 Other Other +a704ecef-4e84-4280-814e-ff170e939f1a 1 Other Other +a7057889-94d6-4787-b324-cbb3f99154e6 1 Other Other +a70587f4-8cae-4024-8859-03e74c13fa78 1 Other Other +a7058837-49d3-4745-b5a5-866a17b35f3a 1 Other Other +a7062196-e8fb-47f5-905f-6d0c6362032f 1 Other Other +a70623f4-acc7-4a88-a84d-af6e572ad69b 1 Other Other +a706424c-02fb-40b3-9675-13a126bd4db3 1 \N Other +a706475d-c45d-485a-8cff-ea37b137255c 1 Other Other +a706603a-4230-4baf-a18e-d348dd873b53 1 Other Other +a706a9d1-f75e-4077-8c56-1dd0b4365c67 1 Other Other +a7070078-6255-4b30-b174-ae208a1df2bd 1 Other Other +a70739b1-2f76-4cae-8ae4-f6fb35d0dade 1 Other Other +a7078943-0863-42f7-a696-3d9b43f9f1f2 1 \N Other +a70797df-c405-432d-81e6-886afe0ea1cb 1 Other Other +a707af9e-ad46-419f-be8f-c420fa686a3f 1 Other Other +a707e23a-b193-4dfc-8be4-8c235cb9b538 1 Other Other +a707fdee-bf17-4ee5-a5cb-0e7b145a885e 1 Other Other +a708194c-3ea5-4f86-976e-13b925edfc3e 1 Other Other +a7085ad4-1fb3-422c-8ad9-a81785ad5be1 1 Other Other +a7086a54-6394-4c6b-bdb8-b735decd4849 1 Other Other +a708d9c5-9b43-4d51-97ce-f1c2511b215c 1 Other Other +a7095e12-3f8f-4d53-8bd1-58ab54f8013c 1 Other Other +a7098062-79f6-481a-9ce2-b0ceccacbb24 1 Other Other +a7099a73-3111-4017-9678-4547f65ee2ad 1 Other Other +a709af6d-1a2c-42c9-af2a-b164056b4bf9 1 James Other +a709e7a2-b3a5-4016-9c5f-c591d24bf058 1 \N Other +a70a044d-d6a1-4dbe-ba12-ea7ab3be4239 1 James Other +a70a3126-c224-454a-b8e2-ec793f74c464 1 \N Other +a70a45e7-9a35-4322-8381-fe266ebe240c 1 Other Other +a70a8c7c-df79-4491-b010-8d64dee61baf 1 Other Other +a70ac29e-f42b-4831-92e9-ee9efd7de1e2 1 Other Other +a70ac4e2-a024-440b-9f0c-b39604d6ebf9 1 Other Other +a70ac9fa-dd95-42fb-8579-ec3207df8c6e 1 Other Other +a70aeaf8-80ff-4bed-aa4b-e4db06a35485 1 Other Other +a70b1fb6-3d16-4f02-b1b7-8882b28e61dd 1 Other Other +a70b2833-ff25-4fe1-8d12-8f4dcc7bde36 1 Other Other +a70b494a-0c01-43a7-8172-95bac030a48d 1 Other Other +a70bb9fe-b515-46e8-b62c-a5f101bed28e 1 Other Other +a70bd0e2-50e9-42cc-8c43-936ef453c7ad 1 Other Other +a70be489-9f00-4ce5-8df7-d0a1f5318e8e 1 Other Other +a70bf47b-620b-440f-8c11-03631daebfb1 1 Other Other +a70c1b70-5a83-4c02-acaa-7d7ac12f2f8d 1 Other Other +a70c4cb0-f2e7-4ae0-879f-5e84da01bf67 1 Other Other +a70cb211-cd47-4840-91e3-54783a357946 1 Other Other +a70d00e6-2343-4f1d-834a-a77af723e124 1 Other Other +a70d0ae5-4547-49ec-94d0-0aaec4ebcee7 1 Other Other +a70d1ae6-9067-4ec3-9033-7a32cc1242e4 1 Other Other +a70d2966-1a6c-4551-a4bc-5ae7bb7dd4b6 1 Other Other +a70d625f-918c-43d2-9a6b-11683b937484 1 Other Other +a70d6380-275a-49fa-bc2d-9d19b40c00b5 1 \N Other +a70d892c-326e-400f-aab2-ae5d264e68c5 1 Other Other +a70dbb60-2e46-43a0-9fe4-dc813afd4710 1 \N Other +a70dccb2-7687-40b3-9b82-5c623f73ab39 1 Other Other +a70dff89-2e21-4159-b5c0-31f9550d9b0f 1 Other Other +a70e1295-a3ae-41af-9461-e48e1ecc4279 1 Other Other +a70e6639-fe98-44c2-8e42-c14014ef0292 1 Other Other +a70e67b6-beaf-441e-868e-a46af4d392c8 1 Other Other +a70efc70-a911-4e48-b53d-eb2947520f52 1 Other Other +a70f349b-23af-47e0-9fd7-64d17232b5fa 1 Other Other +a70f6f9e-685e-4a10-80a7-236a1d341f1c 1 Other Other +a70f7432-5cb6-4bef-b622-4d0abb1df9de 1 Other Other +a70f9363-2472-4a80-aa33-152434c55473 1 Other Other +a70fb06b-b4a3-44d0-aa62-a5fdbb5aeb54 1 Other Other +a7100383-cf3c-48fc-9ae5-95aa71eb045a 1 Other Other +a710886c-4316-404c-96b2-9cf69d4dcc3b 1 Other Other +a7108dc6-9dc8-4e89-907a-04580cf48710 1 Other Other +a711516b-ffdd-4fa4-a0e1-3ecff3ce5719 1 Other Other +a7116052-3414-4e4d-9937-5ed85e79f32e 1 Other Other +a711a4bc-2366-44ac-a800-fb00af18e7a7 1 Other Other +a71212a7-73e3-47b1-82be-875d7cb10481 1 Other Other +a7122279-f5a2-45df-8a06-891faa9681b6 1 Other Other +a7124546-8b13-4514-b7aa-7b8db0178438 1 Other Other +a7124fe1-96b4-478b-aa39-cfa58fbb2f3e 1 Other Other +a71253bf-5951-4194-8ef7-e48c5ff25886 1 Other Other +a7128396-63b8-498e-bb5a-b6dfca371538 1 Other Other +a71301ef-5138-4ba0-a9a6-f99205030b16 1 Other Other +a7130661-4b46-4dd2-8188-3500079e6964 1 Other Other +a71308c2-8dc8-452b-814e-a1226314dd7f 1 Other Other +a71310d9-01a9-45be-9a1d-6f30e888e759 1 Other Other +a7134c1f-7fb1-4fa4-83a0-b94d4b75e063 1 Other Other +a713aa01-341e-45ce-99cd-1584a7a82574 1 Other Other +a713d518-67be-4d43-953c-06eb614d71cb 1 Other Other +a71430d6-6fbd-41c2-8ebc-b60913012dbf 1 Other Other +a71440b9-9bae-44b1-8998-39fddecaece6 1 Other Other +a714503f-8f61-4dea-9e2a-b30adfbd25d9 1 Other Other +a7146d0c-8d29-42ad-a418-64a8a02a4f89 1 Other Other +a7150815-57f6-4858-92ff-0becc4db6edb 1 Other Other +a71531df-5fd8-4a85-aacb-730ce7f0374f 1 Other Other +a71573fd-9ac2-4aae-a6d5-62efcb0af3af 1 Other Other +a7159dd3-00d2-43ab-b4d6-0f3078d09618 1 Other Other +a7163ae7-629d-43e2-9aaa-8e8a4ab8fd23 1 Other Other +a7165de8-763b-4bca-85f3-c370d5beff1c 1 Other Other +a7167901-ceaf-40e9-acb9-ba2b525cde38 1 Other Other +a716bb17-9866-4897-aa7b-0dd344403615 1 Other Other +a716f1fd-12d7-47c8-af8a-1d555ba151f3 1 Other Other +a716f89e-651b-4790-a917-b112212539da 1 Other Other +a7171a9a-25de-4460-89e4-960d10c3b2ec 1 Other Other +a7172083-debb-492f-b8ba-200cd3df72d1 1 Other Other +a71744ad-fcf0-4a70-b675-7cf400e46e74 1 \N Other +a717a774-7ab1-4567-a22e-e3afb8a8b7c3 1 Other Other +a717f110-0f48-4d1f-b678-b5147bb1e58f 1 Other Other +a7180753-f55a-4c5a-be6d-540b1af32e81 1 Other Other +a7189d44-bb07-461d-ae2c-1616cc9193e8 1 Other Other +a7191f0a-f0d4-4e72-8023-0660c6371993 1 Other Other +a7193cf1-2708-4e0f-b58e-a433100c627a 1 Other Other +a719fbb4-c6c0-4e38-8c00-2aa42fb01948 1 Other Other +a71a0f5f-ef29-4813-b8dc-03e24da646a7 1 Other Other +a71a550e-4f26-42a4-9aec-c8f19d10b7d6 1 Other Other +a71a8d85-2b8b-4860-8340-39485a5aab50 1 Other Other +a71a98f1-4f5d-4556-8e9c-64c0908daec0 1 Other Other +a71a9bcf-82e0-4a27-9b97-c7be6aa9a579 1 Other Other +a71a9d2f-aa92-4bac-b10d-898a443e9b54 1 Other Other +a71aa39c-92c9-4b3d-af49-56284c3f5b97 1 Other Other +a71aab1f-f386-47b0-9137-b7c921367f21 1 \N Other +a71ac522-9c82-4e25-9902-9c1220d88bed 1 Other Other +a71b48c7-c5d2-4179-9a7a-826bec65e7c7 1 Other Other +a71bcfbf-1349-4656-a10e-4d19323e1bf7 1 \N Other +a71bf7bb-70f7-4761-b837-14863715146f 1 Other Other +a71c08bd-650a-490c-865f-0e137e01f13e 1 Other Other +a71cf1a9-3839-4379-b7ef-ee19ecc47783 1 Other Other +a71cf746-368a-464c-96af-4e894b317d46 1 James Other +a71d1967-ecfb-4979-bf6e-9138786fda3d 1 Other Other +a71d1a33-c339-427f-9006-637a3a1bde59 1 Other Other +a71d2454-4268-40bb-bb11-f8a8f5ef2f66 1 Other Other +a71d3cea-acb5-4200-a958-f036f74c06c0 1 Other Other +a71d734c-6b0a-40fd-a512-0098898a02c1 1 Other Other +a71d842d-a4c0-48f2-add3-7fca653d9111 1 \N Other +a71d88ce-5d9a-46d9-9d12-3f9051755e68 1 Other Other +a71d8ea4-8bf5-45b8-93d1-6e11a2799d42 1 Other Other +a71d937b-8156-49a3-a3d6-903f3f1a2507 1 Other Other +a71dc9c7-b35f-4fff-9e3a-504742d6b4e7 1 Other Other +a71dcae0-6e45-47c1-81f0-e3deb829c648 1 Other Other +a71df247-e2c5-4919-9724-98e6e40b4bad 1 Other Other +a71df4a4-16c1-46cf-8728-c0a7d18a2af4 1 Other Other +a71e0cd4-bad7-47c2-8f61-c0ac58e1933e 1 Other Other +a71e19a7-652b-4066-8c84-2d8d2cbe1654 1 Other Other +a71e7c69-36ac-44c8-9eea-394a9f4a0faf 1 Other Other +a71e8646-14a3-42d1-9898-6ecb09481629 1 Other Other +a71eca9b-4ddc-442b-8f6f-f9cd5d9a2c82 1 Other Other +a71f0a31-894e-4f7b-af36-da66ab3eb6ad 1 Other Other +a71f1a62-f22e-4b85-ad5a-7e3c8c605967 1 Other Other +a71f55ab-42ec-425f-b484-285c37d005ed 1 Other Other +a71f6f45-d393-4cfc-beb0-950d8a6b8862 1 Other Other +a71f7928-28ff-4582-a503-4072b0e9f1d5 1 Other Other +a71f7b4a-ae53-403e-9d01-0583a204ceb8 1 Other Other +a71f8040-24da-4ab4-b7c2-e58cf6bbaa1a 1 \N Other +a71f9490-7b9e-4e77-9f93-0f940dcf9e59 1 Other Other +a71fa47f-7374-4e8e-97ae-953b06c20697 1 Other Other +a71fd6ee-1e28-450d-a939-412794ed3060 1 Other Other +a71fda08-2b3c-4c6d-9d03-3449db0bb3c2 1 Other Other +a71fe051-b590-4ef6-b829-545f5c8e9635 1 \N Other +a71fec01-399c-4b61-9aa0-94214d880498 1 Other Other +a720309d-c4a0-4342-bd36-c4e358aab96d 1 Other Other +a7204d69-86f5-4278-b124-983309add811 1 Other Other +a72090e1-54cc-4a30-a749-865233adbfc5 1 Other Other +a720a627-00fe-4108-a725-1b5bdd7fbfab 1 Other Other +a7212d28-c4ae-4fa4-a1da-6caf632da530 1 Other Other +a7216208-2748-4056-9c27-a31b8d996f40 1 Other Other +a72194b9-0e3e-44db-abea-4c2d07a7adf4 1 Other Other +a721a6ce-bece-4b81-93a1-b2ef1e0adca1 1 Other Other +a721a917-35ff-4209-99a9-d19c7c35b2ef 1 Other Other +a721d928-a1ba-4a5b-b8f2-897d5c7c2368 1 Other Other +a721df2b-6fbb-42ed-8176-38493f0e5b68 1 Other Other +a721e5b9-ec7e-4db5-aabe-40c42aaeceed 1 Other Other +a7221d93-a45d-43b8-bba7-d3a64f0ce0b0 1 Other Other +a7222fcb-451e-4194-b312-59a12bac93fd 1 Other Other +a7223e9e-c711-4fea-a072-274b2f02c1a5 1 Other Other +a72241e7-efa9-4009-812e-b640360d9385 1 Other Other +a722de52-b068-4c23-bb56-538b4273bafb 1 Other Other +a722e773-c090-49c4-9984-de5a96af961f 1 Other Other +a722ff4c-e00f-4a60-8ef8-c607062f7de3 1 Other Other +a7230296-9ec2-4298-a060-b926ac851908 1 Other Other +a7233b5b-5e94-429b-9bb7-0c8ec57c37f9 1 Other Other +a7238fdc-2ced-4498-bb33-e9683439055e 1 Other Other +a723a040-9e9c-43df-9395-3485d1976ed6 1 Other Other +a723a8c8-ad0c-4179-9d4b-c8a7e7414ec9 1 Other Other +a7241d97-d03a-47cc-828e-c2718eb5e9a2 1 Other Other +a72443bd-7c09-4c0a-b3e5-e110fa68a776 1 Other Other +a7246615-7a15-432e-b2aa-ac9ac4d180bd 1 Other Other +a7248145-8f52-419b-8fed-2f3c353a3106 1 Other Other +a72491dd-f22f-4f12-b6e7-9463d45cfe2f 1 Other Other +a724c55c-fd7a-4817-a804-86e8611f8320 1 Other Other +a724de82-1687-47bc-87e1-a13f34a333fd 1 \N Other +a7250561-dda1-4c67-a3e6-8da77cfeaf1d 1 Other Other +a7252033-ab67-4d8b-9ed8-fae3097b4532 1 Other Other +a7256d0a-a909-494a-a5a5-7bba3b6d0f49 1 Other Other +a7258964-77a4-4daa-9bb8-0ac17dfe0e4f 1 Other Other +a725c27a-af6b-40b4-960b-a0b7bc2ff515 1 Other Other +a725c3d5-684f-422e-a30f-4479dd55bfc8 1 Other Other +a726434f-c99a-448b-ba6b-b81dbf574e71 1 Other Other +a7265d7c-cdb4-4112-95b6-13d76f697dee 1 Other Other +a7266b51-8bcf-46c2-aa85-3f67027f0fb7 1 Other Other +a726a339-3c4f-400c-87d0-c0f8db412a4d 1 Other Other +a726c7f7-a0fe-46f9-a844-e5e55fa8766b 1 Other Other +a726cab5-b94c-4535-a6c0-87b81ab45729 1 Other Other +a726de42-7f29-4ba7-b4f1-8d40cf9570b2 1 James Other +a726e601-6d6e-4976-9ae3-1855f9e9d7b0 1 Other Other +a7272258-2113-4955-9a47-9237fcbf429c 1 Other Other +a727b0bd-9700-46d7-a07a-a69398eb6ae7 1 Other Other +a727ca59-4df6-4c65-93f5-f7365a68d68d 1 \N Other +a7280251-8863-4d5c-a43b-413cf9a37ae9 1 Other Other +a7282664-2b18-11e8-8d8e-fa163e8624cc 1 \N Other +a7283357-61d1-4c23-a0de-853e123a5f37 1 \N Other +a7284dcd-24a3-43d4-a573-48af55f461b7 1 Other Other +a7288347-d849-43fc-8722-435601509de3 1 Other Other +a728a7fe-a9c5-43ec-af9f-e726ddb1805b 1 Other Other +a728f41c-9810-4c13-a5ba-dae9617175b8 1 Other Other +a7290c5c-7ca7-4fe1-a458-ee24187a4ada 1 Other Other +a729673b-f66f-4f10-8877-cd91bac228b1 1 Other Other +a72979be-8600-427a-aae2-f609bdce7765 1 Other Other +a72980f6-e967-45f8-a0d2-f6c672cfc65f 1 Other Other +a729c540-253c-4e35-8aee-7df80f8b6e87 1 Other Other +a729de1b-1841-4b65-9059-567b1884d355 1 Other Other +a729e86e-ce6a-4908-8020-0e63bbc9690d 1 Other Other +a729f1ec-b427-4fbc-84f2-2248daad8054 1 Other Other +a72a14d2-970a-4c49-bf27-236832b4df56 1 Other Other +a72af2ef-0f2b-4110-83af-cdf783bc4087 1 Other Other +a72af628-4ebd-4604-8597-095ffeada963 1 Other Other +a72afcc1-d82f-40ef-a115-d2a214afd4ea 1 Other Other +a72b4679-c919-46df-a42f-0078a19d541f 1 Other Other +a72bb7f0-c96e-4d00-977d-77b4d543ac37 1 Other Other +a72c4611-5113-4dd5-90b6-8278295f41ad 1 Other Other +a72c57b5-c080-4dce-ab2a-97c8b5273165 1 Other Other +a72c5866-c75b-4875-a89a-95e5862f126d 1 Other Other +a72c6191-ed07-4a47-9eae-910bfd32a0fd 1 Other Other +a72c8d30-9d47-4850-9e00-52cc587419e3 1 Other Other +a72cbf40-2e40-4870-94e8-94757c0049aa 1 \N Other +a72ccd25-6493-4b74-a27d-b89faa4cd11c 1 Other Other +a72cebe3-9e12-4be8-9430-c3ba4990dc78 1 Other Other +a72d01b6-7a0f-4fee-b24d-c575ed2c62ca 1 Other Other +a72e1ec3-4ae4-42f1-8291-97b11ecee504 1 Other Other +a72e3791-6fef-4c70-9164-17781fc40544 1 Other Other +a72e3fce-3c73-4dc7-9934-50f7f54bb6ad 1 Other Other +a72ee02a-a5fe-4856-92c3-2af91ac6b6e8 1 Other Other +a72f1c4a-58b6-4be0-9113-551b61732317 1 Other Other +a72f1c82-b540-46d8-8b53-2581241f9ea2 1 Other Other +a72f64af-d2d8-4d96-868a-e2c604abd0af 1 \N Other +a730496e-a441-4111-a9dd-8d17e27e6ffb 1 Other Other +a7309b45-fb60-4785-90e8-6284e66bbb43 1 Other Other +a730ad03-29fc-4484-b567-aef4baa50284 1 \N Other +a730afcd-4dc1-4606-94f5-dda581f71997 1 Other Other +a730e232-3913-4323-bb9f-63653276ebd3 1 Other Other +a73126c8-b636-49d2-bb7d-2f64f02103ab 1 Other Other +a7313366-6c0f-4442-96ed-ae6751e19410 1 Other Other +a7313735-4c56-42cd-a420-3a0f30dd3df8 1 Other Other +a731ac7c-cae7-42d5-ac58-f08711d804df 1 Other Other +a731dbd7-f504-4b41-ad4d-5c1619066ebc 1 Other Other +a732def8-5631-4f9e-91c7-b7f3af7cc313 1 Other Other +a733045e-b0d2-4d18-a92a-52da99986965 1 Other Other +a7334511-6166-4619-bd1b-2a1d47600f57 1 Other Other +a733608e-a6f2-4396-9509-90c2f643fe3f 1 Other Other +a7338509-1ee0-408a-82e3-da6e4fa27bec 1 Other Other +a73394ef-5b39-43d6-8098-36135c39354b 1 Other Other +a733bcf7-dad3-41cc-908b-07a0822dcd1b 1 Other Other +a733fa9b-a333-4143-ba96-cdf0d56acb5f 1 Other Other +a733ffa5-b272-494c-bced-eecf4b168672 1 Other Other +a7342720-bd3c-4b09-819e-458c5afbc861 1 Other Other +a7342efa-f172-4782-8c5e-c990baf526c3 1 Other Other +a734307e-0880-4def-85f7-ca75cd2c5391 1 Other Other +a734c99a-b6b7-4583-8eeb-70aa417d93ff 1 Other Other +a734e0a8-2cdb-48f6-8708-71c2db7250cb 1 Other Other +a7351775-2dce-4a15-820f-157dfb160d20 1 Other Other +a7353d75-3237-403c-81e0-b020a0c21ccf 1 Other Other +a7353dae-3d2b-4700-926a-b70d922702e1 1 Other Other +a7362a4b-495e-439b-b30b-d40e78dbac77 1 Other Other +a736497f-29dc-4fb2-8882-2450d5f1ac25 1 Other Other +a736557d-5adf-49f9-8163-450e018a3cb0 1 Other Other +a7365ed4-0980-4613-afac-763b69d84261 1 Other Other +a7366624-137e-497f-ac71-4c42fc15f5e8 1 Other Other +a73688af-4e35-4ede-bb88-a97d80dc4d56 1 Other Other +a7369910-59cb-4d12-ba14-02f84c498255 1 Other Other +a736aae9-4fd4-4418-884e-e6f10437a931 1 Other Other +a736bb0d-7bcf-48bb-8b44-8f9a81b776d7 1 Other Other +a736cf4d-e467-4bde-8dc3-9bbedccbc5fd 1 Other Other +a7371e04-aaf7-44e8-a2f2-52ce25df45fa 1 Other Other +a737520b-7a8a-404d-82d7-b073afc53af6 1 Other Other +a7377470-1dbb-4a6e-ae62-d3454d3e7853 1 Other Other +a737eedb-df6d-4f53-acc6-4ebcb42cf585 1 Other Other +a737fe09-ccfb-4960-9160-81ca6c6de5db 1 Other Other +a73826b6-d8f2-4b15-9985-23b128a54945 1 Other Other +a7383364-0167-41f5-ac5b-73b890690b0d 1 Other Other +a7387ff0-fc58-48db-b53c-0b1d5118bca3 1 Other Other +a7388323-5002-4887-bbbc-b30df1503854 1 Other Other +a73889ee-43db-42c2-8c04-c20929d8b19c 1 Other Other +a73898eb-cd85-4349-931c-68f223d78524 1 Other Other +a738cf28-1c54-4f07-8d29-23ca2a505fbb 1 Other Other +a738f064-8d6d-4249-b165-a2a6598227dd 1 \N Other +a739385b-a8b2-4777-a58b-9cb378938162 1 Other Other +a7393ac5-ea37-48df-8893-2d089e38722e 1 Other Other +a7394ce2-6813-4d3c-9d27-6bfc5d196409 1 Other Other +a7397868-e6c5-4bf7-907b-4e0454e686ea 1 Other Other +a739cd3a-769a-464f-ae96-1901af654ed9 1 Other Other +a739db47-e67b-4914-9943-9941a1d4031e 1 Other Other +a73a0953-3b75-4e9e-8c56-9d8eaaaf55a8 1 Other Other +a73a22e3-8b5b-4fd8-9094-255ce391b4ee 1 Other Other +a73a8510-e76a-4c2d-ae14-459c619ad6f6 1 Other Other +a73ab3ac-5f35-4049-a5eb-9031289ba2a2 1 Other Other +a73b148b-3a87-46d6-bae3-b1ac41066947 1 Other Other +a73b2a65-b6dd-4f68-a97a-5c45cc5ec9d9 1 Other Other +a73b317e-d89d-4fc0-b244-fa6732de2c74 1 Other Other +a73b4d30-f222-46bc-b70d-ef8749ef372e 1 Other Other +a73bb724-7312-4f1b-9cb2-d5fd40ede398 1 Other Other +a73bbae3-0f78-4442-bcab-2e4948cb7c09 1 Other Other +a73c2569-1fc9-48e0-9626-459d92707f97 1 Other Other +a73c7ac4-079d-4bcd-b899-ea6a0dcf8ea9 1 Other Other +a73ccdda-23e2-41ae-b025-7e7c53953f42 1 Other Other +a73cff75-8c3a-4b0b-a2d4-06b5ca348528 1 Other Other +a73d1669-7630-4755-b9e7-e3f704da4aff 1 James Other +a73d4457-1300-4bf5-acba-c4131963e399 1 Other Other +a73d5631-5b5f-435f-96dd-38c56c6c8400 1 Other Other +a73d8246-5933-492b-83f7-3565458cee46 1 Other Other +a73d86c6-c6c2-4360-8aa2-eb2464f0d106 1 Other Other +a73da66c-3db1-4c23-ac99-6d1cd0daea86 1 Other Other +a73dfb40-f17d-4a90-b99d-169a9e4d95a6 1 Other Other +a73e487b-a43c-4b08-adc8-9631602a4dbf 1 Other Other +a73e9d5b-9951-4fbf-acaa-f1f5ced02343 1 Other Other +a73ec1f4-1d31-4ab9-bc5c-27440fd19b65 1 Other Other +a73ecfa2-9b7a-4e71-85d3-2a6b379177ba 1 Other Other +a73f191a-a07f-41e8-aba6-a39cf489653a 1 Other Other +a73f2aad-56e8-4df7-8b5f-0e92b4137a4a 1 Other Other +a73f5b66-3c2d-4ba2-81f3-dede04e21bcf 1 Other Other +a7407a71-55b4-4633-8beb-f0529445bdc8 1 Other Other +a740e0d4-f077-4c3e-9f6f-0a658d0d2ba0 1 Other Other +a7411b2f-898e-4fcf-b706-d1c5307afd1c 1 Other Other +a7414994-c903-470a-a824-9c9884eb5381 1 \N Other +a7415509-dc92-4272-8453-3acd613622e2 1 Other Other +a7416c07-6a86-4311-ad9e-703ba9f0001e 1 Other Other +a741c5a3-bff9-4ed7-97c5-92a211453d84 1 Other Other +a741c7c6-c8eb-440e-ae4a-1a141eac43c3 1 Other Other +a7424f2f-315d-444a-845b-40e47fc32e61 1 Other Other +a7429c65-4186-4a4a-a496-71d2e6c04ddb 1 Other Other +a742c4df-9324-4536-aca6-71468c55f92e 1 Other Other +a742cd65-c54a-4dd4-b024-9f9a8db3cca8 1 Other Other +a742f452-890e-4bca-9734-a2d58d20700f 1 Other Other +a743490a-d3c1-439d-8751-ccf38e4f4aba 1 Other Other +a74363b4-a415-4066-946e-b4a6f37b8763 1 Other Other +a74390b3-6a03-4662-bce6-27155799e9cb 1 Other Other +a743ba3a-bd5d-473a-80f3-fe0139b14b59 1 Other Other +a743ce2c-83c3-4456-ac96-fac2a595a288 1 Other Other +a743dd2b-5146-4e0d-af0d-2287fbf6e8be 1 Other Other +a7440070-5df8-4124-bcbd-a849c2789f41 1 Other Other +a7448338-f36c-4319-8786-b01453826d57 1 Other Other +a744a198-f23e-40a5-a745-aedaffdfbd2d 1 Other Other +a744d66d-dbe2-4f59-a1d5-af1add7d6600 1 Other Other +a74550e8-50a4-4f4f-8ced-ac9a5d0a0a7e 1 Other Other +a7456ddc-7446-4364-bedf-ea13895b848d 1 Other Other +a745bbac-14c5-4023-9e28-8ae6938253d9 1 Other Other +a745cfc9-841a-4ccd-a3ec-8efee61a301c 1 Other Other +a745fbe1-7ecb-46fb-9802-e591cfed0fb9 1 Other Other +a746705f-4dd0-402a-910f-d5b5c8ba070d 1 Other Other +a7468951-d7d3-4130-8bf1-6e8514dfa8a3 1 Other Other +a746e0ad-553f-443b-a361-c38c17077326 1 Other Other +a746e69c-e7e1-4bbb-803c-24cabf6a9af3 1 Other Other +a746ff15-ab18-462e-93b6-3dfcef3ec7cf 1 Other Other +a74755d5-1df0-42e1-8110-cb93e2f58896 1 Other Other +a7478fe4-e131-4d7e-87f9-00cfd6231c0c 1 Other Other +a747eb71-b575-4516-b3d2-1b9ca8630143 1 Other Other +a7482e8c-719b-4f4c-9af5-95dac3d1cb02 1 Other Other +a7484124-b508-48ac-8e68-307f55270213 1 Other Other +a748537b-3d40-48f1-bdc0-df07f6a318be 1 Other Other +a74858e7-3028-412f-9201-934b09740426 1 Other Other +a7486c98-a716-4a69-8c6e-45dfa5d4205f 1 Other Other +a748869d-12a9-425b-8652-c91bd22411af 1 Other Other +a74889c1-700d-49ad-b8a8-fb391ae86926 1 Other Other +a748926b-14b5-421e-847e-4eb3efd1728a 1 Other Other +a748a05f-0ee2-4d71-b655-9cb24461c955 1 Other Other +a748e9d2-c6ee-405e-97e8-d17680e9fc95 1 Other Other +a748ea04-7621-4403-8475-0fbc112e7954 1 Other Other +a749242f-cc0e-41a5-a78a-828bbe9bd73f 1 Other Other +a74950b4-8025-490f-99ab-5cd77a94b03a 1 Other Other +a7495b5b-8259-4039-a4c1-c095daee259e 1 Other Other +a74970de-e0ad-4285-a438-2fcbbb49ed25 1 \N Other +a7497a1b-08f7-49ca-a069-f8b9b028e9b5 1 Other Other +a749cd21-5bc8-4432-8b6d-99542ba3185a 1 Other Other +a74a27c6-141d-4401-a1ab-b67de9771959 1 \N Other +a74a6877-b538-4952-b603-59985a4d52ab 1 Other Other +a74ad6ab-1dd4-4586-b38c-465fd3724775 1 Other Other +a74b1770-69f4-4435-9e50-8d28daaef405 1 Other Other +a74b45b5-e394-4de6-b988-175e7f029dd0 1 Other Other +a74b503d-58de-45d5-99e8-5e8da1580a84 1 Other Other +a74b5358-a306-45da-baa1-7a9cdd9b1e9f 1 Other Other +a74b5359-463c-4aed-a008-8ece322604a6 1 Other Other +a74c023f-5cf5-441f-b99d-eae235db3538 1 Other Other +a74cf17d-72bb-493b-be17-5cb002008863 1 Other Other +a74d0e22-0dcf-405a-88b3-8732451059a6 1 Other Other +a74d5f6b-9ffe-4294-9d5e-7f364421e062 1 Other Other +a74d917b-da1d-45aa-8510-55ace2ad7888 1 Other Other +a74d9b0d-1f40-4df1-b73f-af7da41c5ced 1 Other Other +a74daeb4-b3b0-4a0e-a297-765058f5b60a 1 Other Other +a74de20d-fe77-470f-b05e-fbada90e25d1 1 Other Other +a74e289c-3aa7-4b97-a411-98bf7d399c24 1 Other Other +a74e3809-4909-41cb-883d-7b55dd4d615d 1 Other Other +a74e53e8-9434-4286-8d1c-7f72dfa97780 1 Other Other +a74e54e3-0bfc-4cff-a632-e8ae4666f299 1 Other Other +a74edfc5-4044-41b3-98a8-6c6494434165 1 Other Other +a74f457b-d84e-4250-94f9-03e6bb8a52d5 1 Other Other +a74f61fb-811b-48f1-8d1f-3a183416211c 1 Other Other +a74f9af5-1c26-44ce-b6ac-7305ade98e36 1 Other Other +a74fc3d9-ae9c-42d5-86d3-aedb3a392edb 1 Other Other +a75032a1-9b0f-443a-86c1-b15fad6f3bb0 1 Other Other +a75035e9-4d22-4b7b-a9c4-47911a0b04c0 1 Other Other +a75039b8-c12b-468e-9014-7f1d4eebd81f 1 \N Other +a75050fc-9286-497c-8fc3-500f904ba329 1 Other Other +a750c648-98de-481e-85b5-bb227ddd45dc 1 Other Other +a750c74f-612c-42a6-8732-b42c27924a8d 1 Other Other +a750e1c6-2c2d-46c6-ab9f-6a5ad3bb80a6 1 Other Other +a75108b6-67cf-40be-8f44-21206d3635d1 1 Other Other +a751246e-c7c2-445c-ae10-2e3d8317f7a7 1 Other Other +a751424b-6081-492f-9b96-79487f1e4ccd 1 Other Other +a7515a3f-f1d3-4f26-9a37-12f71e18602b 1 Other Other +a751b8ac-c4c8-4c96-98c7-8abde457d4f0 1 Other Other +a751c342-3fdc-4574-94c5-0f0fe0536407 1 Other Other +a751ec54-6b9b-4c3d-8f6a-2707ee421778 1 Other Other +a751fb0e-d247-457d-8044-872c3340a55c 1 Other Other +a751fce3-bed4-4ae4-976c-a07256403024 1 Other Other +a752281c-3535-4948-8b0b-93e722ca0c56 1 Other Other +a75241b4-c74d-42ef-b914-d9247cf9c470 1 Other Other +a7528e4e-5950-48b3-b9e1-d127207b1be2 1 Other Other +a752b22b-8689-478f-a9d1-b689587a5b88 1 Other Other +a7533f30-8002-4ad4-a112-f580804b6d96 1 Other Other +a75389f3-1367-45b6-a28d-693aab9f86b0 1 Other Other +a753b0df-72b1-4287-bda0-e8e16e8b6569 1 Other Other +a754141c-7da7-4e91-8e42-fee75e5d50ed 1 Other Other +a75483de-12b6-4e6e-a2d8-c9e400a9d1c3 1 Other Other +a754e64c-4c30-4612-b76c-7b299403c5ac 1 Other Other +a7550e7b-0bdd-475b-a0b4-137f4dfb93f3 1 Other Other +a75519c6-67fb-41bd-b57a-aa6b05e61b44 1 Other Other +a755297c-1263-474f-a42a-f01a626dfdf4 1 \N Other +a7554a90-e54c-400f-bb4e-b53fd35a4a11 1 Other Other +a7559b26-49fc-4fe4-833a-6a1c5720070f 1 Other Other +a7559cf3-6e90-48fa-96ac-4a99a4a37da8 1 Other Other +a7564876-0498-4466-82e0-088ab1470b80 1 Other Other +a7568ca8-cd27-499d-8a84-919100a6b086 1 Other Other +a756db1f-287a-4b8f-abe8-6ecdc239c912 1 Other Other +a756fac1-5905-4d8e-84f7-59127f4044ae 1 Other Other +a756fde5-9a51-44ce-b772-2b74ae6b4512 1 Other Other +a757399c-52ea-40e2-bd63-a571f5b2387f 1 Other Other +a7576837-cb80-49aa-b785-d6ba4f083ad1 1 Other Other +a7576d78-39f6-4ac2-be74-b44d2649c7bc 1 \N Other +a7577526-1212-419e-847a-4c7f874ec846 1 Other Other +a757bf7c-8f8b-4cba-83e6-84569dc76ff2 1 Other Other +a757c45c-6c7b-4005-a453-3efa5791be46 1 Other Other +a757f246-4069-4291-9bd1-ee06ff8cf194 1 Other Other +a75802da-0bd9-4e45-a49b-c8e449c2226b 1 \N Other +a7580e04-44a6-45bb-8b32-7880d72a5681 1 Other Other +a758268d-02e8-4afd-be1d-26d9f42e76e3 1 James Other +a75841b7-ce49-4c51-9d1d-a269773c9eab 1 Other Other +a75853f7-65d5-4868-b047-0d277d39b6dd 1 Other Other +a75886dd-2692-4a64-8fcd-04f2d0446fce 1 Other Other +a758c7af-c5d5-4b31-82ac-70f8e8e8ea73 1 Other Other +a758d7ad-5c51-4c14-8efc-302e07d7e54d 1 Other Other +a758eca9-ac49-45e1-99ba-c522941f892f 1 Other Other +a7591c3a-50d3-4250-9016-e1decf9eb229 1 Other Other +a7591d03-9731-4b76-a106-8926fe8ef4eb 1 Other Other +a7597405-f055-47c0-8235-ce9c4b876ad4 1 Other Other +a7597fc6-fc47-4d46-8150-9f77839c823a 1 Other Other +a759aa56-7ac7-406c-98e0-aeeca460465b 1 Other Other +a759bef5-a7cc-497e-9a2c-7400e7b524c2 1 Other Other +a759db2c-b4fd-40da-abec-76278754adf7 1 Other Other +a759ea06-a82b-4439-a370-9a4f3480acc4 1 Other Other +a75a1c9b-3bc0-4a2d-805b-bb6d96257672 1 Other Other +a75a1e41-ec8d-450e-b25f-cc3917dae275 1 Other Other +a75a20fb-c603-47fb-b2f9-c5e0a3f57153 1 Other Other +a75a6b35-6b5e-4db9-8c6b-63d2eb84bace 1 Other Other +a75a7c75-255f-424f-9079-9bb843c32724 1 Other Other +a75a9461-c52d-4597-87b2-167f42588375 1 Other Other +a75abdf8-d021-4269-a0e2-d66faae0ae67 1 Other Other +a75ad94a-5a57-4610-a0ba-0a3f3d4b6d4f 1 Other Other +a75af84e-d4c7-44e0-a360-fcd6372a5a07 1 Other Other +a75b9229-88a7-4ec1-83ff-c4a8c8579fef 1 Other Other +a75ba530-844a-4e5f-a3dc-fbab1e18dd79 1 Other Other +a75bc854-f786-4d9b-a6dd-6c483bc127ac 1 Other Other +a75bdbd7-9c71-40a6-b0dd-a046338e8f38 1 Other Other +a75c097f-7586-4670-a290-a67ba9c6e2c8 1 Other Other +a75c1642-ab6a-4ed7-99bb-b8efb00e0265 1 Other Other +a75c1ba9-b5d6-4620-88c9-381462b14efe 1 Other Other +a75cc571-71e7-41f0-b42c-5eb91e6dfc3b 1 Other Other +a75d4d6b-26a7-46f0-81c4-64c4a524d8cb 1 \N Other +a75e4138-f92c-443a-9145-64e3daf92507 1 Other Other +a75eab5d-1b30-4210-b0ed-603db3421041 1 Other Other +a75eed62-2edf-4639-96cb-2d0efbbe5aeb 1 Other Other +a75f52dd-7983-41c0-8c4f-6c7db005b696 1 Other Other +a75f5713-ffc0-4728-aab3-19f8bb13bf72 1 Other Other +a75f7299-ba2e-44e8-a3d5-d29398a369fb 1 Other Other +a75fa0fa-0b1e-4e5e-bf1d-3447fd69fbd7 1 Other Other +a75fa676-45d8-493a-ba2b-692d0dc6f546 1 Other Other +a76043a4-4eb4-4c79-8b8d-511d24367c40 1 Other Other +a760b824-1c56-4137-9049-d77fbe005cca 1 Other Other +a760cc71-e9b6-4ddc-95cb-1e8d8b4b5223 1 Other Other +a760cfdf-2aa9-437a-b242-b10147416efc 1 Other Other +a760ef1c-8c1b-443e-bee5-6ed78a3d8d91 1 Other Other +a760f0f2-8691-4e7d-99b9-b88fdf796eb0 1 Other Other +a761fffd-1f1a-4c10-a6cc-a9adb1b10163 1 Other Other +a7621eba-90e8-42d0-9d86-24bb7bca9990 1 Other Other +a762a77f-cf7b-4557-a9a2-cfc6a8a81ae6 1 Other Other +a762b26c-10c5-4cd0-beab-3be4c3680296 1 Other Other +a762c0e3-414c-4a6b-a453-dc4be8c68f67 1 Other Other +a762caef-ce83-434c-8d11-2f96d1ebf8bd 1 Other Other +a762dc4b-42dc-41fb-8115-ce2bdee7697b 1 Other Other +a762ec42-fbd4-4263-9a49-a0842640ad13 1 Other Other +a762ec73-09f3-4ddc-8fc1-7e5f3244b9a9 1 Other Other +a763104b-c14c-46f7-bdbe-f9085366e9f6 1 Other Other +a7632ed6-c7d7-4ed7-a97a-e17d0af9a394 1 Other Other +a7634da6-0035-11e8-b694-fa163e8624cc 1 Other Other +a7635f92-f244-4cdd-a6de-7bca99b92734 1 Other Other +a76393cb-4751-4478-8d62-6d8552b19cd2 1 Other Other +a7639fbc-4ba6-43ae-8167-08c235438542 1 Other Other +a763e408-c907-421c-bc7d-8505aea4a8d2 1 Other Other +a763f12c-b7bf-4650-837b-b12d4b9c9754 1 Other Other +a763fc41-d3cd-4102-86cf-07ddfc6b162f 1 Other Other +a7640c81-cc5e-43ac-a3d7-762934c52d25 1 Other Other +a7641a26-94b1-43a7-90f7-a122f7524bfe 1 Other Other +a76451bd-3376-4838-a4b7-d2c4349a20af 1 Other Other +a764bed1-619f-4924-b1ae-d487b6af170c 1 Other Other +a764cd34-def9-4b53-bd4d-fc6f72b818b7 1 Other Other +a764ebee-8a8f-45e6-a5ff-35d4903ea0bc 1 Other Other +a7650cc3-9e5e-44fe-9cc6-604c54b712c4 1 \N Other +a7657869-a05b-4222-ab32-0a973ac52eca 1 Other Other +a7659dd4-15a8-4cc3-8629-380a27f473cb 1 Other Other +a765a52d-3c0c-4ba2-a5c9-92dde7efe640 1 Other Other +a765cc49-b601-40f2-8304-38d2f05b0cb9 1 Other Other +a7661531-280a-470b-bc14-d3c692c3d181 1 Other Other +a766273b-99eb-4708-a99c-3cf7d88a8d3b 1 Other Other +a7663a6d-0b49-4be5-82dc-dc47bbaa22fa 1 Other Other +a76644cb-486f-4ec2-a94e-ac8eef3be16c 1 Other Other +a766580d-62df-47c3-a95c-def4d8fa8068 1 Other Other +a7668a2b-7d16-49d8-9f70-254b66f86ebb 1 Other Other +a76699e5-9e33-4300-a8a4-3ba9872f6759 1 Other Other +a766a1c2-3fde-4006-a44e-3015ddb6f385 1 Other Other +a766c0f7-3ec0-4064-b65a-0250ba1e68ec 1 \N Other +a766d856-79e0-4502-8210-2480905e77ef 1 Other Other +a766e42a-28e8-48d6-ac62-4cb43a0bced8 1 Other Other +a7671cf4-80ad-4e4e-bd1e-f8839615be0f 1 Other Other +a7675e88-6073-410f-bc9c-87b71620a5ac 1 Other Other +a7675fab-f576-4459-902d-3bf3fff77dc8 1 Other Other +a767d66a-dba2-403b-9160-6f922ba59e4f 1 \N Other +a768082c-b740-4ee2-a278-951611f9a585 1 Other Other +a7681244-1ef5-44bf-95e8-ba67da0f23be 1 Other Other +a7681c5f-cec8-4eab-9b7d-df0896f7faf1 1 Other Other +a76844ec-bde5-4a56-8e25-0b510016cd35 1 Other Other +a768a0a0-b623-4896-8ac0-ac367e77f3f7 1 Other Other +a7691dc0-bbec-4941-9e7f-2740b9c25e06 1 Other Other +a769280c-3a90-47a8-8cc6-a8856f5b1387 1 Other Other +a769542c-363c-4b9b-862e-0c279128712c 1 Other Other +a7697aa7-c5f3-4ea6-ba37-37a8c2803c6a 1 Other Other +a7699abd-f246-4218-9c20-0b7961e0e0cf 1 Other Other +a769eb99-9097-48f1-935e-515798752c82 1 James Other +a76a22d7-f934-4b19-bdba-c0b45433e20a 1 Other Other +a76a5c62-1054-4912-b9bd-0157f2af9dfd 1 Other Other +a76aa883-4ad5-429f-80a9-c394b92cecf0 1 Other Other +a76aaab6-927b-4805-817d-aab3a94ce6c9 1 Other Other +a76af88f-ddd3-4ce7-83e6-0f18418afcec 1 Other Other +a76bab70-5238-4096-8bed-92f3b9281293 1 Other Other +a76bab81-a4cb-493c-ac98-a94fb3a4f284 1 Other Other +a76bb474-0caf-463a-b038-8c99dd917813 1 Other Other +a76be0c4-3939-4997-a9ef-93dc77812a7d 1 Other Other +a76bf51b-90e3-4aff-a1a6-44403e532b6e 1 Other Other +a76c0beb-0b05-401a-adc5-4e2684d97791 1 Other Other +a76c0f89-1522-4545-8a0b-8d9020685722 1 Other Other +a76c1dae-6796-47d6-840e-5971e268890d 1 Other Other +a76d219b-21a7-4c1a-9bd2-cdd820f08155 1 Other Other +a76d25c7-01fa-406b-b9ec-5ca9f30d8626 1 Other Other +a76d2731-ebc5-49cd-884f-f5c44c199a2b 1 Other Other +a76d2943-7aa4-4d2a-a306-ff1da3938b1b 1 Other Other +a76d4274-3e52-4463-8da2-a67f8f983908 1 Other Other +a76dcd9f-46e4-4b9d-aa7c-a48049575184 1 Other Other +a76dd7af-0a94-401a-964b-a0e55f52135f 1 Other Other +a76e6293-a72e-4aa3-ae38-59e9f7047b8c 1 Other Other +a76e9f64-2600-4166-8e22-858c593930c1 1 Other Other +a76efb58-7612-4f18-935f-570dfc195e13 1 Other Other +a76f528f-540c-4ed8-a5d0-bcdcf8625ffd 1 Other Other +a76f764d-5f12-4dbc-91cb-8cf4a78530df 1 Other Other +a76f889c-c2ef-4420-920e-e09bbb60025c 1 Other Other +a76f98ad-8860-456c-910d-266b6227cdc9 1 Other Other +a76fb9db-4eb2-47a0-b613-2cdbdb1dc690 1 Other Other +a76ff74a-f503-4775-af1c-8c735571b8b4 1 Other Other +a7701006-e0d5-4581-b8bb-ac58d99dfd74 1 Other Other +a7706cce-f42c-41a5-95ee-c3234fc4bc46 1 Other Other +a77078f6-eac6-4147-aeb1-c24cc21a11f7 1 Other Other +a770a2f8-8b65-4dc0-bb70-6d30375c0a3b 1 Other Other +a770ac78-7991-409c-96ec-d50fa506d5df 1 Other Other +a77136bc-623d-47d3-84ce-5c46005b0d9a 1 Other Other +a771b7e4-0c48-435f-b30a-644a9001a79c 1 Other Other +a771c367-9414-4f9c-ad08-ff18433ff928 1 Other Other +a77200c9-915f-4ecd-843d-2e1b294ca032 1 Other Other +a7721b15-30f0-495d-923a-d0b2e4deb9a9 1 Other Other +a77222b0-e1c0-4b7b-b488-68cafc8c0ba8 1 \N Other +a7725aa9-3f82-4d24-8015-e559db35a00b 1 Other Other +a772cdf2-ca02-4ddf-af74-d9c668011aa3 1 Other Other +a772da1b-0f5e-452c-811d-07f87871251f 1 Other Other +a7733314-4b1b-438d-ad2c-935e6a646e47 1 Other Other +a773523e-c5ab-4bf3-959b-441cee434afc 1 Other Other +a7735b40-6c50-44b4-858a-42744cdb5d5b 1 Other Other +a773780e-20e1-47b3-9f2c-af8fa710f1d2 1 Other Other +a773bee6-1c3c-41ee-a37c-8daa425be9e3 1 Other Other +a773e745-6b1f-4c08-93f5-02b7801b9c83 1 Other Other +a773e754-95c3-4d88-a4f8-1edf568dd5da 1 Other Other +a7750bfb-d61a-43b1-b292-62d9d082f105 1 Other Other +a775119f-6578-4c1c-bfd2-b059d5bbc3c8 1 Other Other +a7751fd8-4ae8-4bb2-a4f3-2b428354dfeb 1 Other Other +a7752075-eb38-435c-b46b-28370ca113f7 1 Other Other +a77572ff-ed6d-4a16-bb11-1e5a91824dae 1 Other Other +a775bc6b-570d-481b-94f4-7e896c116760 1 Other Other +a775c678-8fff-4a99-8bda-662432919525 1 Other Other +a7762389-1338-4111-86f9-dd3c916d0257 1 Other Other +a7766677-d789-4991-87e5-c7ca0244a604 1 Other Other +a7767fa6-5a75-48c5-b033-ec1e0fca2483 1 Other Other +a776e462-45d9-4d14-acc1-468701f2647f 1 Other Other +a777011d-5f00-49c3-8689-9247cf3799ee 1 Other Other +a77723b0-9f9c-44b7-866c-a0ed1d2715f6 1 Other Other +a77799b8-6cc6-4777-a991-730d10179765 1 Other Other +a777f954-9c5a-4f51-a595-aed872d1f3c7 1 Other Other +a7787338-f250-488a-91f6-02e6425cdf24 1 Other Other +a7788add-8115-4493-a58e-5183c02a9f19 1 Other Other +a7789825-f140-4fd1-ba38-9c0c1f8f72a2 1 Other Other +a778acbb-9811-4e6b-bb37-e85a6216b193 1 Other Other +a778eb44-acc7-4710-956a-62eb94d03ce9 1 \N Other +a778f242-bdda-443c-be08-bb5b357aa9a8 1 Other Other +a7790d4c-0cdd-4473-ae75-b165506b7a03 1 Other Other +a779175b-834f-43f6-b05b-5d6007fe0660 1 Other Other +a7792d9a-c3b3-454c-bc93-8b0cb1b3a19e 1 Other Other +a77963aa-6eee-4b21-90f5-49916db66f81 1 Other Other +a779748d-b2f7-40eb-9651-a1a1b4e131ac 1 Other Other +a77a0fca-9700-420e-a266-696a40f61cf2 1 Other Other +a77a236e-eb8e-4c3b-8dc6-1742fe502d53 1 Other Other +a77a651d-93a3-4874-b0bd-54a150e9e72d 1 James Other +a77a886a-cadf-4be7-9cf1-40ccaae57a85 1 Other Other +a77a9449-f706-40cb-ab61-c4639aa1aefd 1 \N Other +a77a9ac8-edce-4b49-a0c4-1f88245d26f5 1 Other Other +a77ab644-9644-40b9-8b33-708634c089c4 1 Other Other +a77abc5e-deae-4a27-97df-c668b8b0b474 1 Other Other +a77ad5d1-a34d-4050-962e-4c468568cc08 1 Other Other +a77ae4c7-1753-4c37-85b0-8e913ef85585 1 Other Other +a77ae7c9-457b-47d5-9c28-a1d4cb34479c 1 Other Other +a77b063b-0440-486b-bb21-f33205f192a3 1 \N Other +a77b06d2-140c-4d62-9f70-c982d6de4ac9 1 Other Other +a77b7d3b-6ddd-4cae-a4c5-fd3d551f4a18 1 Other Other +a77b838f-90d5-425b-95ed-13bb049695cc 1 Other Other +a77b86be-c164-4674-b0d1-cab2ec0267f7 1 Other Other +a77b96e6-8b07-4dee-9fab-0e80343b9c79 1 Other Other +a77b9dbe-d679-4192-8094-48d2ceedc407 1 Other Other +a77bb3e4-080a-4d0b-85cc-7b27476fcdd0 1 \N Other +a77bcbfa-3333-412b-a4be-054d757e3422 1 Other Other +a77be906-0271-402e-86d5-e209591ce724 1 Other Other +a77c0481-fbe1-43b7-ac2f-d6347d9fcb25 1 Other Other +a77c11e6-e6ff-4ec7-a56c-94f407916f2f 1 Other Other +a77c1de4-4a00-4ddc-aeed-2d3a3754ab98 1 Other Other +a77c3a13-75eb-4bd5-856a-c0a4252f65c7 1 Other Other +a77c4860-3cb9-4bec-8473-e6cded21e9cc 1 Other Other +a77d0c3b-f27a-47ef-ac58-b11d2ee148e3 1 Other Other +a77d1b1a-64aa-4ef8-bf6d-c4001404a5fc 1 Other Other +a77d376e-d836-4ee4-922e-8026de16efa8 1 James Other +a77dcf95-7859-4352-b77f-3ffc1ac183b4 1 Other Other +a77e77e3-30da-4757-9173-ebf8c0c4d512 1 \N Other +a77e860f-765f-4008-a804-f19548c5f440 1 Other Other +a77e8c21-cb2a-4c79-a88a-3f917be289b2 1 Other Other +a77e8f62-1567-40c9-b5e5-aee28fe25b1d 1 Other Other +a77f0316-41d0-485c-86cd-d8fbe59451ad 1 Other Other +a77f61c1-f635-47b4-96d9-4b213f0db1e1 1 \N Other +a77f9608-af9a-4876-afc7-383308ff7633 1 Other Other +a77fbe88-223d-4982-a8a4-591e7a4af374 1 \N Other +a77fd87f-a93e-4a21-ab63-a920da27e194 1 Other Other +a77ffe7b-02a0-4acc-a8ed-49fe8986d785 1 Other Other +a7808de4-50fe-49fa-bce7-d03eb9346c97 1 Other Other +a780af4b-9e9b-4394-b756-d74891f49200 1 James Other +a780fda6-459d-48fe-95b8-50e6508a87c9 1 Other Other +a78101fa-44bf-433d-aae6-950a5ea6893f 1 Other Other +a78118bc-c0af-48aa-9b12-dcb5e3c0330b 1 Other Other +a7811d8b-ca21-4686-b89c-960340c5f0ba 1 Other Other +a781916b-d12c-44ee-9bcd-79a2719cac9c 1 Other Other +a781d9cb-592c-404e-af69-9493a977dca4 1 Other Other +a781efdc-5414-4096-ac6c-6bc712e9746c 1 Other Other +a781fa12-8a02-4ee3-997a-513c35ed977e 1 Other Other +a7820116-861e-41b1-bf0c-4933a3132371 1 Other Other +a7820708-429f-47e6-91b9-0fc546da3982 1 \N Other +a78209ca-1249-49ff-9de8-b648defcacf3 1 Other Other +a78230a4-40a2-4225-8ec7-29cd7c76a8b9 1 Other Other +a7823882-afd6-43f8-848c-ce02b921d299 1 Other Other +a7823a46-b1fa-4496-89d4-bd4c2798ab5a 1 Other Other +a7824dd0-a11f-4cb8-8b8a-b45f80109fa5 1 Other Other +a7827def-7ac5-4a5e-8b63-c4674b03410f 1 Other Other +a782ee60-5d0e-4cdb-b09b-519ddd5adab7 1 Other Other +a7833dcc-4b7e-4ba4-a449-dee0f1c0daf5 1 Other Other +a7835989-dd16-4a92-bdc5-bf34e5e9a233 1 Other Other +a784294a-dcbc-491e-a4af-6a59708d2b35 1 Other Other +a78461d4-5eec-4988-b0de-1ad392ced74f 1 Other Other +a784f096-97cd-4242-9d75-ccf42202cc3b 1 Other Other +a78555b0-c48b-4fa9-8421-89398ff1ec56 1 Other Other +a7856878-3794-4fa7-9764-dce1cf4e1863 1 Other Other +a7856dec-5821-41ec-991c-891e16e26d05 1 Other Other +a785bdd9-be78-4728-a44b-cef10fd5f08b 1 Other Other +a785c2fc-022b-46d4-805f-9ef206d43162 1 Other Other +a785d46f-c125-4dc5-b122-56b7374866c3 1 Other Other +a785de41-d755-40bb-bd15-aabeecebd195 1 Other Other +a785e1b2-948e-4ffe-867d-f4e8012a9f48 1 Other Other +a785f32e-49aa-4678-bc9a-b83cf629a3ed 1 Other Other +a7867e78-7373-472f-82b8-1d2ba30bd983 1 Other Other +a786a600-6fdb-4cc6-980a-ef4ba797de51 1 Other Other +a786c989-02a2-480a-838b-ddcf6be6ef00 1 Other Other +a786db5e-6805-4518-9943-3358287248db 1 Other Other +a7870b12-7a8f-400a-801e-9a63e8c294d8 1 Other Other +a78792a6-b8f3-4842-8044-6a68a0821ff1 1 Other Other +a787dd99-eaa5-4099-884c-eacb9896a43f 1 Other Other +a7881404-9d01-4f62-8deb-12ed4d529a88 1 Other Other +a7884dfb-1004-441e-b536-3f17a512faf9 1 Other Other +a788604c-68da-462f-9c35-18d2c2303560 1 Other Other +a78884d0-00dd-4ceb-9d04-876105a025ee 1 Other Other +a788a66c-784b-4ae2-9fe7-b8a99f62c22d 1 Other Other +a788d588-d87f-4ac1-9009-1123289dc12f 1 Other Other +a788fb5c-771e-4aad-8705-2e09f776b2f3 1 Other Other +a78938d2-f55a-438b-a3cc-0ab35b7b2b35 1 Other Other +a78979af-4d49-4d6d-abad-bb5d724ffe74 1 Other Other +a7897f1f-8ff7-4610-8227-e384963b42a3 1 Other Other +a789872b-ed1e-47fe-b5d5-79d76e429b7a 1 Other Other +a7899f55-951b-4677-8f82-f0833b935dbc 1 Other Other +a78a1a34-2b43-4d6a-8d49-0ea5c7bbe1c3 1 Other Other +a78a692b-aa12-41b9-b6eb-31d5948af3bd 1 James Other +a78a8495-3cb3-4f83-97a0-cce405b4ea41 1 \N Other +a78a9d49-9eac-453d-ab48-0adb4de89b9d 1 Other Other +a78ab60b-3f94-43a7-a91c-ef06275acc6a 1 Other Other +a78abb58-62d8-42da-862c-af50b6cb1115 1 Other Other +a78ad990-a2d7-40b0-9350-355613d0d2bf 1 Other Other +a78b0692-7ac9-4aae-8b1d-bc15809fcd4f 1 Other Other +a78b3dad-aeed-4482-adf5-29bde962583d 1 Other Other +a78b987d-499c-4614-b13d-3479ab752e76 1 Other Other +a78ba554-d20b-422e-9723-1136de0ed9b6 1 Other Other +a78c21e5-4c23-46fb-8db9-c2515ce5c2ae 1 Other Other +a78c3dcd-7fa3-4d9e-81e4-50891c005d4a 1 Other Other +a78c5291-b689-49a4-9ed4-cdea1b835535 1 Other Other +a78c60c3-9c33-4803-8765-6e560a2b2399 1 Other Other +a78ca15d-8a11-412c-9147-72d4ecc24511 1 Other Other +a78d165c-dc29-4bd8-8db6-1438eb5fa6df 1 Other Other +a78d431a-9ace-4f6b-8d12-7d2b49a4c7ea 1 James Other +a78d6297-12fc-4c5b-aa8f-f2cd3235ed5f 1 Other Other +a78d9d37-a3a8-49e2-ab54-28ddba5f63f2 1 Other Other +a78db407-75ce-46a5-8f3d-05858d751e14 1 Other Other +a78dc712-0b8d-45b2-9440-c5d2b4b43890 1 \N Other +a78e1a7d-af31-4329-afaf-8232791854a4 1 Other Other +a78e4424-2760-445b-9966-35ec93571c95 1 Other Other +a78e67b4-99f7-4855-8cc3-1516784854fe 1 Other Other +a78ec3b5-98e2-442b-ab73-fc78f7428ba8 1 Other Other +a78f50aa-82ae-413a-8dfa-0096f010389e 1 Other Other +a78f8cbe-498b-4737-b4f2-ca24c4857d0e 1 Other Other +a790195c-1b95-4b39-a51f-854a256426e2 1 Other Other +a79092af-48b4-450d-9b24-c3a838285e5d 1 Other Other +a790961a-cb07-4f04-9114-57e23c0bd4cd 1 Other Other +a790cd0b-fae9-4a74-b2a6-f058113d723d 1 Other Other +a7914fbb-689b-4bbb-ba5c-80e9a7b0801e 1 Other Other +a7915fb8-cb37-4eb5-84eb-598f06e070f9 1 Other Other +a79173ab-043e-42d0-ae58-c857db6f2a02 1 Other Other +a791a177-0002-43d2-8031-cb1f6be0229b 1 Other Other +a791b593-54c9-47a2-a555-01d3ebb8531f 1 Other Other +a791d481-b357-4231-aef5-af8fede9cb0b 1 Other Other +a791f1c5-46e3-45c2-99e7-69f067037fe6 1 Other Other +a7922d0c-cabc-4847-a892-bc2ea8ed7073 1 Other Other +a7924a8f-7d2f-403c-8c43-9f408e3f0bc5 1 Other Other +a7927b03-1541-4298-9a4a-f8b935c411de 1 Other Other +a79287ae-f84d-4a8c-95c9-83b5bf810cc3 1 Other Other +a7928bbb-ee9e-47e8-bc43-b67563da7de6 1 Other Other +a792af1c-85fd-4f78-b97e-338c7622684d 1 Other Other +a79364a1-147b-49b0-adbf-73cda248b6a1 1 Other Other +a79394ab-3391-439f-827f-28b712dafed3 1 Other Other +a793bcba-22f4-41ec-8b3f-b662ff3dd4ea 1 Other Other +a793d638-a9af-4ca4-aa5b-20b720b600e6 1 Other Other +a793dabc-1a7a-42c6-a5cc-f09a069ae87a 1 Other Other +a7940981-ec72-40e4-b4fc-4181a4d94bbc 1 Other Other +a7951dcb-7b5f-4ac2-8731-588a76fd6bbe 1 \N Other +a79523c7-bfe4-4c57-a4e8-3dcf288c88a6 1 Other Other +a7954b4e-7155-46ec-8cbf-682edf8b8c55 1 Other Other +a7955029-94e6-4333-8b35-819ec81abdc7 1 Other Other +a79563a7-f6ce-44d4-b7bd-142e5fe7f6cc 1 Other Other +a7959d0f-b978-4db7-a22f-b16398d33296 1 Other Other +a7961ce2-84b3-4ca9-9b3b-b0e68ab4b10e 1 Other Other +a79667c8-1ed7-400d-ae0e-cb386806b4c5 1 Other Other +a79692f3-4b41-4bac-8264-8e9997fc71c5 1 Other Other +a7970ea0-2333-44e4-8d58-f2b0b5a07b9e 1 Other Other +a79711ff-785a-47c2-8c7e-f160697bc536 1 Other Other +a7972c05-01e3-495d-b6ea-c11d0c9c5de4 1 Other Other +a7974930-d95a-4045-86c9-7976ca688801 1 \N Other +a79795ea-e475-4198-afcc-910ec863bf5f 1 Other Other +a797a36e-0994-4813-a8c9-ae3563a8f376 1 Other Other +a797b2cc-2e8e-4092-a01c-5364c1917aeb 1 Other Other +a797d58e-e412-4f6e-80e2-57388561216f 1 Other Other +a797e647-55a0-4b64-b08f-1fbce76b5c63 1 Other Other +a797f87f-4b72-46ad-9722-314d70a9f047 1 Other Other +a7982212-4e18-4476-9fd8-cc68ff1ec555 1 Other Other +a798545c-c2b4-4718-a9c5-4e165d659f4d 1 Other Other +a7985903-2171-40bc-acb6-f5c630d7b328 1 Other Other +a7985daa-ab9c-48bf-8909-8273b0637bb3 1 Other Other +a798670f-e968-4c5a-bc1c-f4bec3083402 1 Other Other +a79880b7-42d5-4ab5-8aab-dcd4fb404f90 1 Other Other +a7989b07-7b6e-4d3b-9885-56a4a305fec1 1 Other Other +a798d0a0-238c-4353-af3a-f0e1cb8d9f61 1 Other Other +a798d80b-a1be-4d5f-87bd-77182c77e852 1 Other Other +a798dd65-560c-48ff-ac59-87d638d25976 1 Other Other +a798e58b-76c7-4929-a6c2-b001674584bb 1 Other Other +a7991328-0901-4833-9033-2d0c883fcf88 1 Other Other +a7995040-dade-4638-95c4-9e774642fead 1 Other Other +a7995c92-e34a-43d2-a8a7-bfc1dd2f9c59 1 Other Other +a79977af-2a7c-4e5b-add5-3fb0ad02e25b 1 Other Other +a799fd84-4b7d-4e8d-9c40-9e6dba909776 1 Other Other +a79a0186-9999-4a4f-8d3e-e4caef23852a 1 Other Other +a79a431e-5ebe-4326-999d-bec8b00e3b78 1 Other Other +a79a571d-6e47-43c6-bad7-162dc8057998 1 Other Other +a79a6ae1-a377-41c9-b9a4-0b6819b0dabb 1 Other Other +a79a6c8c-4bf7-4741-9076-bb2be9e1e231 1 Other Other +a79a8ae5-d1f6-4acc-93b2-26f337284c9b 1 Other Other +a79ac9e9-d5c9-4790-b5ed-1dc9aff23bbc 1 Other Other +a79acdc5-2da3-4ebc-946e-d1b5765f4cdb 1 Other Other +a79b50bc-636a-4da6-8c1e-42b81f9af918 1 Other Other +a79b51c1-cb24-46e6-9ba7-e203642409ff 1 Other Other +a79b5a58-f175-428e-b8bf-bc3c0c788029 1 Other Other +a79b9a55-435e-4bc8-bc4a-ce5403803708 1 Other Other +a79bc317-688c-4f22-9a38-48d02a03d2b4 1 Other Other +a79bee9a-f683-4fa3-b8d0-1556da93aa4c 1 Other Other +a79c02ba-35f9-45cc-b06e-6cf338195bc4 1 Other Other +a79c3678-a7b2-4b18-aff7-692f6b56984b 1 Other Other +a79c6011-47da-4eab-a0e0-68ea44e971e3 1 Other Other +a79c71d3-fb55-441b-a7c0-d78fd8fe5ece 1 Other Other +a79cc947-48ad-403b-b7d7-97055b27443a 1 Other Other +a79cd462-d267-48ac-afa8-37bc96965a2e 1 Other Other +a79cf084-3bfe-4ccc-854e-f557d5c1ed44 1 Other Other +a79cff93-22ed-4e32-8f4e-eeba19feb90d 1 Other Other +a79d1751-8048-4bd9-84cd-cbcd3e12b9bf 1 Other Other +a79d2b53-8b33-493a-a67b-6277741285d5 1 Other Other +a79d75b2-932a-4b00-8674-ebd0fd68c900 1 Other Other +a79d81dc-fd57-4ebe-856c-7bac12e6eec2 1 Other Other +a79da5cb-f4bb-4ec1-aea7-b94e2c6fdd08 1 Other Other +a79dabbd-70ae-4f24-a2fe-dbb7db78754e 1 Other Other +a79de8c8-8cb9-409a-a501-572a9035b012 1 Other Other +a79e6503-11c3-4ab0-b3fe-0b3e5bd1f753 1 Other Other +a79e66c5-d110-4c32-9774-54bea6c3050d 1 Other Other +a79e7cb1-df33-4ce5-bd76-7eb75bd075a3 1 Other Other +a79efbd2-2d3c-4409-af88-f1fc1936e033 1 Other Other +a79fb605-6b71-42c0-912e-f74c8cd4b8b0 1 Other Other +a7a0942e-6c11-4796-9372-beaf55769d22 1 Other Other +a7a0c0f3-ac8a-4f22-a9e3-bcda4fc259f3 1 Other Other +a7a0d82e-8797-40ff-bee0-9df62a6b3774 1 Other Other +a7a0f1f1-0ff9-49e1-9f51-2d75a190960d 1 Other Other +a7a14521-11dc-478a-b956-1ce9b757acc1 1 Other Other +a7a1508e-4e71-45cc-ad93-b0e1af448bef 1 Other Other +a7a1b577-8c71-425d-af8e-08aee710ac9b 1 Other Other +a7a1c3aa-237b-4989-8a00-9c5659c4a143 1 Other Other +a7a222ec-4395-47af-80cf-70d5abf17eec 1 Other Other +a7a24c88-1800-429a-a4fa-ed5af37017a6 1 Other Other +a7a26ba4-baac-4334-aa24-86bfcf01e849 1 Other Other +a7a2a271-bd05-409f-bf37-5a2118ffaa20 1 Other Other +a7a2a91b-4928-4f99-989c-c157381cbdb6 1 Other Other +a7a2eb70-c1e0-4c91-94ef-968f752b2f99 1 Other Other +a7a2f918-9cab-486e-9ad2-cbcebfc70672 1 Other Other +a7a2fabb-6e90-4c23-888e-ca3411795813 1 Other Other +a7a2fbc9-2a2c-4297-9f3a-d88f4ce75601 1 Other Other +a7a30109-ab9f-4e15-8b7e-c280fba98a66 1 Other Other +a7a3319b-d1f5-441f-b691-75d6f947a5b8 1 Other Other +a7a37f7d-7ead-41d5-93af-297bcb1cb681 1 Other Other +a7a3af2a-42ed-4945-9420-bc21534cccb1 1 Other Other +a7a3f27b-4e7f-4f16-a804-d99e60f32f59 1 Other Other +a7a42209-d7e1-4618-ba1a-b0d5a608f5b1 1 Other Other +a7a42a8f-694e-4fb5-b7f0-cb130c98d7b0 1 Other Other +a7a46390-15b5-449c-bca9-7a335555066c 1 Other Other +a7a464d4-b530-4c48-bc6f-5721ef43c29e 1 Other Other +a7a47e6e-43c4-4aac-9ecf-38a296a01380 1 Other Other +a7a481c7-d158-4945-b0ad-c67ace622413 1 Other Other +a7a4843e-9ce8-40e7-9bf7-9659fc3cdfc5 1 Other Other +a7a48d64-1a95-428b-959c-42c096874025 1 Other Other +a7a4bbc9-21b8-461f-b985-a82b160488e8 1 Other Other +a7a4d162-04ae-4350-a536-36d2461517d3 1 Other Other +a7a4ec36-b177-4bdc-867a-753f33e55518 1 Other Other +a7a546a2-d2f4-4fba-9a35-6de2cfccb45a 1 Other Other +a7a562bd-f2a4-4225-911b-8285b032aa61 1 Other Other +a7a58198-f17d-4145-985a-32e6eb2f9107 1 Other Other +a7a594a6-7563-4d4a-9294-c550013b5490 1 Other Other +a7a59827-cf1e-4294-9f3d-04c8a5b4eed1 1 Other Other +a7a5a6ba-e1bc-4594-b93a-7e7ee3069dbc 1 Other Other +a7a5aefc-6365-4cfe-8319-29e9b40519e3 1 Other Other +a7a5eddd-5203-48f1-bc71-0dd0ef7ecf24 1 \N Other +a7a5f820-85e9-4090-9056-c2bb2484a040 1 Other Other +a7a632c0-068f-45ca-bbcb-a0ed979ab641 1 Other Other +a7a657b6-d82e-4c62-a3a1-45e5ec706068 1 Other Other +a7a695e8-5eb9-491f-a03f-afe6cb8286be 1 Other Other +a7a6b51b-0a32-4ed4-8c6a-23c3e8f37d8e 1 Other Other +a7a6cd94-72db-472a-b7fe-6defd47ffc52 1 Other Other +a7a73903-1210-4663-a00e-610b54189242 1 Other Other +a7a73c83-ffe0-4d14-9d3a-9156f9c50eb7 1 Other Other +a7a74fcf-b824-4ffa-99d4-c073a1d92d3f 1 Other Other +a7a7bbb3-62d3-4494-9387-a363845c0fe4 1 Other Other +a7a84af1-a574-4186-8be6-edeb1edc4036 1 Other Other +a7a885c3-3657-442a-8587-7a9a3bb917bd 1 Other Other +a7a8bb82-0adb-4942-becc-adc03777a065 1 Other Other +a7a8d720-ef6b-4db4-ae16-2ae7946d234f 1 Other Other +a7a97ac4-f1b3-45ea-a4c7-084325d3b1d8 1 Other Other +a7a98378-bc12-43f9-b39f-d7a0bf21bf8f 1 Other Other +a7aa138a-629f-42b3-b692-f955f362f84e 1 Other Other +a7aa1615-9e0f-484e-b012-cbe8d1843a53 1 Other Other +a7aa4a06-ab77-4792-b44b-6273f062770d 1 Other Other +a7aa5537-7aa8-455d-a80b-3f24cca6952e 1 Other Other +a7aa5e4f-6a9d-4a22-8f0b-4cee02fb82d4 1 Other Other +a7aa734e-7126-4fe4-9eab-a1c0cab1cbee 1 Other Other +a7aab10d-98f2-4028-8f28-f83c0a2fac84 1 Other Other +a7aad91c-45de-4d4b-af96-77b7dbb6b99a 1 Other Other +a7aaeba7-91eb-4e81-bb31-a99e8cfe5e6f 1 Other Other +a7ab4ae0-84fc-4d65-bf87-b1efcf794f91 1 Other Other +a7ab93e7-2a32-4026-bfa6-a6d4d4d412ba 1 Other Other +a7abb4b6-7203-4fd8-8d3d-4b29e681e9ac 1 Other Other +a7abbf7c-2901-461d-b6a1-abf5c2ef812b 1 \N Other +a7ac0778-1ab8-41ad-82ad-1a48e2275d48 1 Other Other +a7ac29bf-520e-4142-b2cf-9ef199f7d909 1 Other Other +a7ac57b4-57cf-4ba6-83fd-af83b433f730 1 \N Other +a7ac756e-400a-4677-8356-96fe772d7293 1 Other Other +a7ac7b46-fb50-4cd3-8388-b998797fc490 1 Other Other +a7ac89c7-5dd8-44dd-95fe-7e30344ab47e 1 Other Other +a7acc167-9636-42ee-8267-7ff4ffa7cde4 1 Other Other +a7ace94b-a829-4128-923a-857d84b68be7 1 Other Other +a7acea63-af25-44a8-ac61-2187f056a0fc 1 Other Other +a7ad2034-a084-4213-9dbd-2aeb63e68dba 1 Other Other +a7ad2053-69d4-46e6-a3e0-7c73e9a35d2f 1 James Other +a7ad8cd0-528e-41c9-ad2e-6bba805bcf85 1 Other Other +a7ad93ab-a112-4bc9-9150-f3bbd2a83771 1 Other Other +a7ad9bd5-9cba-48ef-bfac-80401bc29bc8 1 Other Other +a7adad39-4c07-4e75-909f-ad30d24fa1d6 1 Other Other +a7ae01af-3dd0-4380-bbb1-97807b95dba0 1 Other Other +a7ae038a-7673-40bb-8cf2-fccdd590cd32 1 Other Other +a7ae0f85-1504-443c-85a6-8661cc53157b 1 Other Other +a7ae491a-98ce-4739-9544-90ad6e449ac9 1 Other Other +a7ae72fd-0c07-4db1-974b-1c7e7c00bd3e 1 \N Other +a7aedb83-f171-4cc5-b910-3ec713cf7d52 1 Other Other +a7af1188-644b-430b-aeb5-435edbdc48c7 1 Other Other +a7af5271-053c-4c34-9533-00bdeb8641e4 1 Other Other +a7af63ac-a3f2-4087-92bd-03ea9789077c 1 Other Other +a7af9a70-bc16-400d-9e7a-549adee88e15 1 Other Other +a7afec89-817e-4671-bc62-d56ef7765ebe 1 Other Other +a7b01c96-b0c4-44d0-a2f6-79248bb66e74 1 Other Other +a7b06dad-b7ce-4dd7-8dd0-53861f26af08 1 Other Other +a7b07e2c-0812-4d90-a259-21ba70f6d994 1 Other Other +a7b0a543-11e4-4bf1-9554-772628a549ed 1 Other Other +a7b0c10c-8382-4ee4-ad38-0d394b287d72 1 Other Other +a7b0f493-d067-42cb-817b-00d5a8d6c700 1 Other Other +a7b0f552-84ae-4515-8ad6-857cc0f0ad7b 1 Other Other +a7b0f909-5044-48a9-9d92-6ae76492288c 1 Other Other +a7b174ef-012e-41fa-8d95-ee11ec1128bf 1 Other Other +a7b17cdc-5da6-4602-8ea8-3af419ba0dbf 1 Other Other +a7b1909b-0c13-40f6-ac1e-5e7753a4709b 1 Other Other +a7b1a637-f957-4c92-b276-276a16275a4e 1 Other Other +a7b21d4a-217d-444b-98cb-29094ab26166 1 Other Other +a7b2629a-8857-43af-ba43-8a6945538a9d 1 Other Other +a7b26aa2-acd4-41d8-a743-3d9c18d2d422 1 Other Other +a7b2f648-8759-4ebb-998c-874381a69463 1 Other Other +a7b2f80e-cbc1-406d-9180-95f0625dbb6f 1 Other Other +a7b30a3f-af23-4275-9619-87c0f0c50d74 1 \N Other +a7b33f1a-fb8a-4a55-9a66-fa555be9c258 1 Other Other +a7b34808-abac-447a-ae5d-f4c2aa2a51cb 1 Other Other +a7b36c0f-f3f3-45eb-9833-fb09f57f75fb 1 Other Other +a7b3781d-7bce-49cf-8e55-045c1be02901 1 Other Other +a7b38d78-1427-49fa-85c0-949b765e3087 1 Other Other +a7b3928c-7f12-4847-a643-be133f17aaaf 1 Other Other +a7b40e97-24c9-4346-ac61-4a5c1edfa823 1 Other Other +a7b4181e-a080-47af-a374-bae1127c014f 1 Other Other +a7b41bd6-2f8e-4385-b279-7e56cb14238b 1 Other Other +a7b4275a-8c9d-4ff7-84d9-307693a7aa27 1 Other Other +a7b4377e-7ffe-4a15-9272-663aeb816b8e 1 Other Other +a7b44370-64d4-4521-9f67-779e5c83d29e 1 Other Other +a7b4603d-0a06-45e8-b0fa-ee5a3c9d5b2c 1 Other Other +a7b4a1ae-1a22-4ab0-85a2-0fca7d7fa4c1 1 Other Other +a7b50fbf-f9e9-4aab-898b-6f5ebabab21f 1 Other Other +a7b5c978-183a-410e-bb6c-f56cfb18dead 1 \N Other +a7b5e5a2-420c-4c64-94a1-d9938aabb4a1 1 Other Other +a7b5f4f6-e554-45c4-a174-408155ed9a20 1 Other Other +a7b5fde3-63b6-4b63-809b-e8f667a1858c 1 Other Other +a7b62e3e-76c4-4194-8361-71b5071bc801 1 Other Other +a7b66b5e-06d9-45cb-8713-4b62704f82b6 1 Other Other +a7b6a743-a251-4131-b3cc-fdb7373d897c 1 Other Other +a7b6b249-a362-4765-8b7c-b52d275c2bf8 1 Other Other +a7b6bdc1-181b-4d6e-b5fb-c5db08526e44 1 Other Other +a7b6ecf0-96c7-449a-b442-6210420a23e8 1 Other Other +a7b7bba9-e7f6-412a-9897-40305983138d 1 Other Other +a7b7e197-0bd1-4b7d-a078-32badc0a5185 1 Other Other +a7b7e1d1-32d9-4da1-b058-4e73e6ba9f2b 1 Other Other +a7b88eef-07d8-4eae-b60d-dbee4e6b0104 1 Other Other +a7b8ca8a-b33c-4e68-9d0f-ef157073611e 1 Other Other +a7b8e5d7-58dd-4fb7-adcf-94186793a26b 1 Other Other +a7b91a1e-1100-42c2-bd22-857305ca6a14 1 Other Other +a7b9200a-78ca-4f94-b51a-0a51dbb75b9a 1 Other Other +a7b9ba14-ddeb-42f0-9445-87de7d5cb586 1 Other Other +a7b9dc33-8944-4a7c-ad7e-15f1fd766e89 1 Other Other +a7b9e929-d546-4bd9-a73c-69e6541940db 1 Other Other +a7ba2cb0-4a44-493a-aeeb-b215afbad2da 1 Other Other +a7ba4f4f-e924-4281-9095-c3ad4148a3c6 1 James Other +a7baebfc-5a2d-40db-9da1-53f68e966781 1 \N Other +a7baf50b-146c-408e-846b-f3a2c9bed6d6 1 Other Other +a7bb0fe5-5c2e-4e58-bf64-cd46859f20ba 1 Other Other +a7bb23ba-41f5-4428-b2ef-1cda40624ba8 1 Other Other +a7bb4e94-e3a2-41fa-acce-df95b10021cb 1 Other Other +a7bb52b9-735e-474c-a3ab-17a551aef319 1 Other Other +a7bb5d63-b380-45a1-8d88-e58208ee2bb0 1 Other Other +a7bb5e31-dad2-452a-a56b-3236b1211427 1 Other Other +a7bc02d6-e9fa-41b8-94db-dbfd904b46bf 1 Other Other +a7bc1ca6-3528-46e0-91c7-0d011a97e2b2 1 Other Other +a7bc23e5-62d3-4082-ae4a-4b560c2b3247 1 Other Other +a7bc46f8-1055-463f-900b-949dccba0a48 1 Other Other +a7bc8a70-f81c-4a5f-82a6-8a1d7bbebd07 1 Other Other +a7bc8c00-a444-4ba2-b4cb-cf455f38219a 1 Other Other +a7bceff9-be19-4299-a49f-bf3371b63e7b 1 Other Other +a7bd12fb-e105-40ea-a216-196b2b63d369 1 Other Other +a7bd302f-7560-43ef-9abf-d00a74f064bc 1 \N Other +a7bd71d2-fd2f-4733-90ba-faa3e9fe8695 1 Other Other +a7bda4b9-e6c2-4228-86bb-dc286b05d550 1 Other Other +a7bdab90-6325-47f2-8b44-383a116bbef6 1 Other Other +a7bde4ef-ceb1-4f69-8ad8-7d39218a7ec5 1 Other Other +a7be5a3e-1a8f-43d6-a035-949d63c346c2 1 Other Other +a7be5f7e-3dcb-4e1b-b644-532bdfcc4379 1 Other Other +a7be838d-d911-4eb3-9e4a-20b5e961e39d 1 Other Other +a7be929b-0dee-4f59-9564-f44a6dd9bcaa 1 Other Other +a7bec640-4f4a-4340-8b17-e3a8b5f2ef0a 1 Other Other +a7becc54-fa96-4ae2-8ae8-1b623881bf06 1 Other Other +a7becf35-2776-4527-b68a-d0571c4c5e46 1 Other Other +a7bf05e0-52c6-456a-b109-3aef9ae44d2f 1 Other Other +a7bf0d93-d53c-410f-8b3c-94d20aa91116 1 Other Other +a7bf10da-1292-4cd6-a372-e384ce0427f7 1 Other Other +a7bf1345-b41f-4c54-a436-af02b8345564 1 Other Other +a7bf1a79-259e-45cb-9b98-1876a14817e2 1 Other Other +a7bf4735-6fa9-4742-a1a9-fac7bb9a799e 1 Other Other +a7bf481c-40d5-4fad-9f0b-c636670bca38 1 Other Other +a7bf66e9-3ea0-4b19-acfe-bca3335e76d4 1 Other Other +a7bf9071-100a-45cc-a347-e1b327736edb 1 Other Other +a7c0038d-8707-48e7-9499-e549d6824c18 1 Other Other +a7c004ac-92fa-4d76-80d0-5cfed4ded843 1 Other Other +a7c02065-1298-4c41-8c3f-b35d734a1700 1 Other Other +a7c04ca2-e29f-42d2-b1b4-bc71281569c4 1 Other Other +a7c06fac-c6f4-4c8d-ae82-93794be9b304 1 Other Other +a7c07435-8fcd-485a-9328-149b179403fe 1 Other Other +a7c082db-3379-4699-bf85-7abc0246cf53 1 Other Other +a7c09b99-5a25-47f3-b2fa-f265e81bae31 1 Other Other +a7c0af9a-097d-4cc9-969a-bbd9a7ec1c3c 1 Other Other +a7c11a1e-f5c3-4f6b-b0c7-5ff12535e87a 1 \N Other +a7c147e1-abd4-49c4-a77c-8e2f84acdc5a 1 Other Other +a7c14b25-a897-4686-a850-9e3b1425e527 1 Other Other +a7c18aae-f520-44f1-89d8-87de4f0836f8 1 Other Other +a7c22bb4-ef1a-429d-8184-8fb22572933e 1 Other Other +a7c23a3b-877d-4148-876c-451de52ebf75 1 Other Other +a7c28c68-351a-44dd-8ca5-966ddba970de 1 Other Other +a7c2a261-278f-4a1e-af17-d58ee9e6a967 1 Other Other +a7c2bf4c-8e3b-4646-ac30-7e16082687e9 1 Other Other +a7c2f657-cebe-4ff9-a849-00cd88f33fe1 1 Other Other +a7c31d0d-285c-46eb-8e66-66d0494c4c17 1 Other Other +a7c3335c-a033-45d9-acae-f0cb93047740 1 Other Other +a7c35c90-c186-4894-8fd1-1bff4000914d 1 Other Other +a7c37ead-daa1-4b9f-ab79-fa3654f213dc 1 Other Other +a7c3bc20-135c-4885-a91b-d21634029145 1 Other Other +a7c3e5a0-e58b-44ca-81fb-e8fb0c2c9b81 1 Other Other +a7c462a4-a3da-47cf-8607-f3711b32e6b1 1 Other Other +a7c46a01-59ea-4f97-a10f-f9dde70989fa 1 Other Other +a7c4e3ce-1bdc-4958-8ffc-b674387a1871 1 Other Other +a7c51c18-f42d-4554-bffd-fc176bab87ba 1 Other Other +a7c52565-b938-43eb-bfec-ab9462e485a5 1 Other Other +a7c52b35-dcf0-4b8e-af72-c24721178e13 1 Other Other +a7c52ff3-b72c-4a80-8e42-bd26f5eb9084 1 Other Other +a7c550c9-4f51-43ae-bb21-3b2e593cd4f6 1 James Other diff -Nru mysql-5.7-5.7.25/mysql-test/suite/auth_sec/r/keyring_file_data_qa.result mysql-5.7-5.7.26/mysql-test/suite/auth_sec/r/keyring_file_data_qa.result --- mysql-5.7-5.7.25/mysql-test/suite/auth_sec/r/keyring_file_data_qa.result 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/suite/auth_sec/r/keyring_file_data_qa.result 2019-04-13 13:32:15.000000000 +0000 @@ -6,7 +6,7 @@ call mtr.add_suppression("Error while loading keyring content. The keyring might be malformed"); call mtr.add_suppression("\\[ERROR\\] Plugin keyring_file reported: 'File .*keyring' not found .*"); call mtr.add_suppression("\\[ERROR\\] Plugin keyring_file reported: 'File 'MYSQL_test_invalid/dir/' not found .*"); -call mtr.add_suppression("\\[ERROR\\] Plugin keyring_file reported: 'File '/' not found .*"); +call mtr.add_suppression("\\[ERROR\\] Plugin keyring_file reported: 'Error reading file '/' .*"); INSTALL PLUGIN keyring_file SONAME 'keyring_file.so'; SELECT PLUGIN_NAME,PLUGIN_VERSION,PLUGIN_STATUS FROM INFORMATION_SCHEMA.PLUGINS WHERE plugin_name='keyring_file'; diff -Nru mysql-5.7-5.7.25/mysql-test/suite/auth_sec/t/install_keyring_file-master.opt mysql-5.7-5.7.26/mysql-test/suite/auth_sec/t/install_keyring_file-master.opt --- mysql-5.7-5.7.25/mysql-test/suite/auth_sec/t/install_keyring_file-master.opt 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/suite/auth_sec/t/install_keyring_file-master.opt 2019-04-13 13:32:15.000000000 +0000 @@ -1 +1 @@ -$KEYRING_PLUGIN_OPT +$KEYRING_PLUGIN_OPT --loose-keyring-file-data=$MYSQL_TMP_DIR/mydummy_key diff -Nru mysql-5.7-5.7.25/mysql-test/suite/auth_sec/t/keyring_file_data_qa-master.opt mysql-5.7-5.7.26/mysql-test/suite/auth_sec/t/keyring_file_data_qa-master.opt --- mysql-5.7-5.7.25/mysql-test/suite/auth_sec/t/keyring_file_data_qa-master.opt 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/suite/auth_sec/t/keyring_file_data_qa-master.opt 2019-04-13 13:32:15.000000000 +0000 @@ -1 +1 @@ -$KEYRING_PLUGIN_OPT +$KEYRING_PLUGIN_OPT --loose-keyring-file-data=$MYSQL_TMP_DIR/mydummy_key diff -Nru mysql-5.7-5.7.25/mysql-test/suite/auth_sec/t/keyring_file_data_qa.test mysql-5.7-5.7.26/mysql-test/suite/auth_sec/t/keyring_file_data_qa.test --- mysql-5.7-5.7.25/mysql-test/suite/auth_sec/t/keyring_file_data_qa.test 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/suite/auth_sec/t/keyring_file_data_qa.test 2019-04-13 13:32:15.000000000 +0000 @@ -12,7 +12,7 @@ call mtr.add_suppression("Error while loading keyring content. The keyring might be malformed"); call mtr.add_suppression("\\[ERROR\\] Plugin keyring_file reported: 'File .*keyring' not found .*"); call mtr.add_suppression("\\[ERROR\\] Plugin keyring_file reported: 'File 'MYSQL_test_invalid/dir/' not found .*"); -call mtr.add_suppression("\\[ERROR\\] Plugin keyring_file reported: 'File '/' not found .*"); +call mtr.add_suppression("\\[ERROR\\] Plugin keyring_file reported: 'Error reading file '/' .*"); # Installing keyring plugin. --replace_regex /\.dll/.so/ diff -Nru mysql-5.7-5.7.25/mysql-test/suite/binlog/r/binlog_unsafe_stmt_capable_engine.result mysql-5.7-5.7.26/mysql-test/suite/binlog/r/binlog_unsafe_stmt_capable_engine.result --- mysql-5.7-5.7.25/mysql-test/suite/binlog/r/binlog_unsafe_stmt_capable_engine.result 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/suite/binlog/r/binlog_unsafe_stmt_capable_engine.result 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,2609 @@ +#### Setup tables #### +CREATE TABLE t0 (a CHAR(100)); +CREATE TABLE t1 (a CHAR(100)); +CREATE TABLE t2 (a CHAR(100)); +CREATE TABLE ta0 (a CHAR(100)); +CREATE TABLE ta1 (a CHAR(100)); +CREATE TABLE ta2 (a CHAR(100)); +CREATE TABLE autoinc_table (a INT PRIMARY KEY AUTO_INCREMENT); +CREATE TABLE data_table (a CHAR(100)); +INSERT INTO data_table VALUES ('foo'); +CREATE TABLE trigger_table_1 (a INT); +CREATE TABLE trigger_table_2 (a INT); +CREATE TABLE trigger_table_3 (a INT); +CREATE TABLE double_autoinc_table (a INT PRIMARY KEY AUTO_INCREMENT); +SET @old_debug= @@global.debug; +SET GLOBAL debug='+d,make_stmt_only_engines'; +CREATE TRIGGER double_autoinc_trig +BEFORE INSERT ON double_autoinc_table FOR EACH ROW +BEGIN +INSERT INTO autoinc_table VALUES (NULL); +END| +CREATE FUNCTION multi_unsafe_func() RETURNS INT +BEGIN +INSERT INTO t0 VALUES(CONCAT(@@hostname, @@hostname)); +INSERT INTO t0 VALUES(0); +INSERT INTO t0 VALUES(CONCAT(UUID(), @@hostname)); +RETURN 1; +END| +CREATE FUNCTION myfunc_int RETURNS INTEGER SONAME "UDF_EXAMPLE_LIB"; + +==== Testing UUID() unsafeness ==== + +Invoking function func_retval_1 returning value from unsafe UUID() function. +CREATE FUNCTION func_retval_1() RETURNS VARCHAR(100) BEGIN INSERT INTO ta1 VALUES (47); RETURN UUID(); END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t1 VALUES (func_retval_1()); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system function that may return a different value on the slave. +* Invoke statement so that return value is discarded: expect no warning. +SELECT func_retval_1(); + +Invoking function func_retval_2 returning value from function func_retval_1 returning value from unsafe UUID() function. +CREATE FUNCTION func_retval_2() RETURNS VARCHAR(100) BEGIN INSERT INTO ta2 VALUES (47); RETURN func_retval_1(); END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t2 VALUES (func_retval_2()); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system function that may return a different value on the slave. +* Invoke statement so that return value is discarded: expect no warning. +SELECT func_retval_2(); +DROP FUNCTION func_retval_2; + +Invoking function func_sidef_2 invoking function func_retval_1 returning value from unsafe UUID() function. +CREATE FUNCTION func_sidef_2() RETURNS VARCHAR(100) BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO t1 VALUES (func_retval_1()); RETURN 0; END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t2 SELECT func_sidef_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system function that may return a different value on the slave. +DROP FUNCTION func_sidef_2; + +Invoking procedure proc_2 invoking function func_retval_1 returning value from unsafe UUID() function. +CREATE PROCEDURE proc_2() BEGIN INSERT INTO t1 VALUES (func_retval_1()); INSERT INTO ta2 VALUES (47); END; +* binlog_format = STATEMENT: expect 1 warnings. +CALL proc_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system function that may return a different value on the slave. +DROP PROCEDURE proc_2; + +Invoking trigger trig_2 invoking function func_retval_1 returning value from unsafe UUID() function. +CREATE TRIGGER trig_2 BEFORE INSERT ON trigger_table_2 FOR EACH ROW BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO t1 VALUES (func_retval_1()); END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO trigger_table_2 VALUES (1); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system function that may return a different value on the slave. +DROP TRIGGER trig_2; + +Invoking view view_retval_2 returning value from function func_retval_1 returning value from unsafe UUID() function. +CREATE VIEW view_retval_2 AS SELECT func_retval_1(); +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t2 SELECT * FROM view_retval_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system function that may return a different value on the slave. +* Invoke statement so that return value is discarded: expect no warning. +SELECT * FROM view_retval_2; +DROP VIEW view_retval_2; + +Invoking prepared statement prep_2 invoking function func_retval_1 returning value from unsafe UUID() function. +PREPARE prep_2 FROM "INSERT INTO t1 VALUES (func_retval_1())"; +* binlog_format = STATEMENT: expect 1 warnings. +EXECUTE prep_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system function that may return a different value on the slave. +DROP PREPARE prep_2; +DROP FUNCTION func_retval_1; + +Invoking function func_sidef_1 invoking unsafe UUID() function. +CREATE FUNCTION func_sidef_1() RETURNS VARCHAR(100) BEGIN INSERT INTO ta1 VALUES (47); INSERT INTO t0 VALUES (UUID()); RETURN 0; END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t1 SELECT func_sidef_1(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system function that may return a different value on the slave. + +Invoking function func_sidef_2 invoking function func_sidef_1 invoking unsafe UUID() function. +CREATE FUNCTION func_sidef_2() RETURNS VARCHAR(100) BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO t1 SELECT func_sidef_1(); RETURN 0; END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t2 SELECT func_sidef_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system function that may return a different value on the slave. +DROP FUNCTION func_sidef_2; + +Invoking procedure proc_2 invoking function func_sidef_1 invoking unsafe UUID() function. +CREATE PROCEDURE proc_2() BEGIN INSERT INTO t1 SELECT func_sidef_1(); INSERT INTO ta2 VALUES (47); END; +* binlog_format = STATEMENT: expect 1 warnings. +CALL proc_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system function that may return a different value on the slave. +DROP PROCEDURE proc_2; + +Invoking trigger trig_2 invoking function func_sidef_1 invoking unsafe UUID() function. +CREATE TRIGGER trig_2 BEFORE INSERT ON trigger_table_2 FOR EACH ROW BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO t1 SELECT func_sidef_1(); END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO trigger_table_2 VALUES (1); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system function that may return a different value on the slave. +DROP TRIGGER trig_2; + +Invoking view view_sidef_2 invoking function func_sidef_1 invoking unsafe UUID() function. +CREATE VIEW view_sidef_2 AS SELECT func_sidef_1(); +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t2 SELECT * FROM view_sidef_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system function that may return a different value on the slave. +DROP VIEW view_sidef_2; + +Invoking prepared statement prep_2 invoking function func_sidef_1 invoking unsafe UUID() function. +PREPARE prep_2 FROM "INSERT INTO t1 SELECT func_sidef_1()"; +* binlog_format = STATEMENT: expect 1 warnings. +EXECUTE prep_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system function that may return a different value on the slave. +DROP PREPARE prep_2; +DROP FUNCTION func_sidef_1; + +Invoking procedure proc_1 invoking unsafe UUID() function. +CREATE PROCEDURE proc_1() BEGIN INSERT INTO t0 VALUES (UUID()); INSERT INTO ta1 VALUES (47); END; +* binlog_format = STATEMENT: expect 1 warnings. +CALL proc_1(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system function that may return a different value on the slave. + +Invoking function func_sidef_2 invoking procedure proc_1 invoking unsafe UUID() function. +CREATE FUNCTION func_sidef_2() RETURNS VARCHAR(100) BEGIN INSERT INTO ta2 VALUES (47); CALL proc_1(); RETURN 0; END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t2 SELECT func_sidef_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system function that may return a different value on the slave. +DROP FUNCTION func_sidef_2; + +Invoking procedure proc_2 invoking procedure proc_1 invoking unsafe UUID() function. +CREATE PROCEDURE proc_2() BEGIN CALL proc_1(); INSERT INTO ta2 VALUES (47); END; +* binlog_format = STATEMENT: expect 1 warnings. +CALL proc_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system function that may return a different value on the slave. +DROP PROCEDURE proc_2; + +Invoking trigger trig_2 invoking procedure proc_1 invoking unsafe UUID() function. +CREATE TRIGGER trig_2 BEFORE INSERT ON trigger_table_2 FOR EACH ROW BEGIN INSERT INTO ta2 VALUES (47); CALL proc_1(); END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO trigger_table_2 VALUES (1); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system function that may return a different value on the slave. +DROP TRIGGER trig_2; + +Invoking prepared statement prep_2 invoking procedure proc_1 invoking unsafe UUID() function. +PREPARE prep_2 FROM "CALL proc_1()"; +* binlog_format = STATEMENT: expect 1 warnings. +EXECUTE prep_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system function that may return a different value on the slave. +DROP PREPARE prep_2; +DROP PROCEDURE proc_1; + +Invoking trigger trig_1 invoking unsafe UUID() function. +CREATE TRIGGER trig_1 BEFORE INSERT ON trigger_table_1 FOR EACH ROW BEGIN INSERT INTO ta1 VALUES (47); INSERT INTO t0 VALUES (UUID()); END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO trigger_table_1 VALUES (1); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system function that may return a different value on the slave. + +Invoking function func_sidef_2 invoking trigger trig_1 invoking unsafe UUID() function. +CREATE FUNCTION func_sidef_2() RETURNS VARCHAR(100) BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO trigger_table_1 VALUES (1); RETURN 0; END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t2 SELECT func_sidef_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system function that may return a different value on the slave. +DROP FUNCTION func_sidef_2; + +Invoking procedure proc_2 invoking trigger trig_1 invoking unsafe UUID() function. +CREATE PROCEDURE proc_2() BEGIN INSERT INTO trigger_table_1 VALUES (1); INSERT INTO ta2 VALUES (47); END; +* binlog_format = STATEMENT: expect 1 warnings. +CALL proc_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system function that may return a different value on the slave. +DROP PROCEDURE proc_2; + +Invoking trigger trig_2 invoking trigger trig_1 invoking unsafe UUID() function. +CREATE TRIGGER trig_2 BEFORE INSERT ON trigger_table_2 FOR EACH ROW BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO trigger_table_1 VALUES (1); END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO trigger_table_2 VALUES (1); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system function that may return a different value on the slave. +DROP TRIGGER trig_2; + +Invoking prepared statement prep_2 invoking trigger trig_1 invoking unsafe UUID() function. +PREPARE prep_2 FROM "INSERT INTO trigger_table_1 VALUES (1)"; +* binlog_format = STATEMENT: expect 1 warnings. +EXECUTE prep_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system function that may return a different value on the slave. +DROP PREPARE prep_2; +DROP TRIGGER trig_1; + +Invoking view view_retval_1 returning value from unsafe UUID() function. +CREATE VIEW view_retval_1 AS SELECT UUID(); +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t1 SELECT * FROM view_retval_1; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system function that may return a different value on the slave. +* Invoke statement so that return value is discarded: expect no warning. +SELECT * FROM view_retval_1; + +Invoking function func_sidef_2 invoking view view_retval_1 returning value from unsafe UUID() function. +CREATE FUNCTION func_sidef_2() RETURNS VARCHAR(100) BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO t1 SELECT * FROM view_retval_1; RETURN 0; END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t2 SELECT func_sidef_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system function that may return a different value on the slave. +DROP FUNCTION func_sidef_2; + +Invoking procedure proc_2 invoking view view_retval_1 returning value from unsafe UUID() function. +CREATE PROCEDURE proc_2() BEGIN INSERT INTO t1 SELECT * FROM view_retval_1; INSERT INTO ta2 VALUES (47); END; +* binlog_format = STATEMENT: expect 1 warnings. +CALL proc_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system function that may return a different value on the slave. +DROP PROCEDURE proc_2; + +Invoking trigger trig_2 invoking view view_retval_1 returning value from unsafe UUID() function. +CREATE TRIGGER trig_2 BEFORE INSERT ON trigger_table_2 FOR EACH ROW BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO t1 SELECT * FROM view_retval_1; END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO trigger_table_2 VALUES (1); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system function that may return a different value on the slave. +DROP TRIGGER trig_2; + +Invoking view view_retval_2 returning value from view view_retval_1 returning value from unsafe UUID() function. +CREATE VIEW view_retval_2 AS SELECT * FROM view_retval_1; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t2 SELECT * FROM view_retval_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system function that may return a different value on the slave. +* Invoke statement so that return value is discarded: expect no warning. +SELECT * FROM view_retval_2; +DROP VIEW view_retval_2; + +Invoking prepared statement prep_2 invoking view view_retval_1 returning value from unsafe UUID() function. +PREPARE prep_2 FROM "INSERT INTO t1 SELECT * FROM view_retval_1"; +* binlog_format = STATEMENT: expect 1 warnings. +EXECUTE prep_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system function that may return a different value on the slave. +DROP PREPARE prep_2; +DROP VIEW view_retval_1; + +Invoking prepared statement prep_1 invoking unsafe UUID() function. +PREPARE prep_1 FROM "INSERT INTO t0 VALUES (UUID())"; +* binlog_format = STATEMENT: expect 1 warnings. +EXECUTE prep_1; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system function that may return a different value on the slave. +DROP PREPARE prep_1; + +Invoking unsafe UUID() function. +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t0 VALUES (UUID()); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system function that may return a different value on the slave. +* Invoke statement so that return value is discarded: expect no warning. +SELECT UUID(); + +==== Testing @@hostname unsafeness ==== + +Invoking function func_retval_1 returning value from unsafe @@hostname variable. +CREATE FUNCTION func_retval_1() RETURNS VARCHAR(100) BEGIN INSERT INTO ta1 VALUES (47); RETURN @@hostname; END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t1 VALUES (func_retval_1()); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. +* Invoke statement so that return value is discarded: expect no warning. +SELECT func_retval_1(); + +Invoking function func_retval_2 returning value from function func_retval_1 returning value from unsafe @@hostname variable. +CREATE FUNCTION func_retval_2() RETURNS VARCHAR(100) BEGIN INSERT INTO ta2 VALUES (47); RETURN func_retval_1(); END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t2 VALUES (func_retval_2()); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. +* Invoke statement so that return value is discarded: expect no warning. +SELECT func_retval_2(); +DROP FUNCTION func_retval_2; + +Invoking function func_sidef_2 invoking function func_retval_1 returning value from unsafe @@hostname variable. +CREATE FUNCTION func_sidef_2() RETURNS VARCHAR(100) BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO t1 VALUES (func_retval_1()); RETURN 0; END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t2 SELECT func_sidef_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. +DROP FUNCTION func_sidef_2; + +Invoking procedure proc_2 invoking function func_retval_1 returning value from unsafe @@hostname variable. +CREATE PROCEDURE proc_2() BEGIN INSERT INTO t1 VALUES (func_retval_1()); INSERT INTO ta2 VALUES (47); END; +* binlog_format = STATEMENT: expect 1 warnings. +CALL proc_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. +DROP PROCEDURE proc_2; + +Invoking trigger trig_2 invoking function func_retval_1 returning value from unsafe @@hostname variable. +CREATE TRIGGER trig_2 BEFORE INSERT ON trigger_table_2 FOR EACH ROW BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO t1 VALUES (func_retval_1()); END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO trigger_table_2 VALUES (1); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. +DROP TRIGGER trig_2; + +Invoking view view_retval_2 returning value from function func_retval_1 returning value from unsafe @@hostname variable. +CREATE VIEW view_retval_2 AS SELECT func_retval_1(); +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t2 SELECT * FROM view_retval_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. +* Invoke statement so that return value is discarded: expect no warning. +SELECT * FROM view_retval_2; +DROP VIEW view_retval_2; + +Invoking prepared statement prep_2 invoking function func_retval_1 returning value from unsafe @@hostname variable. +PREPARE prep_2 FROM "INSERT INTO t1 VALUES (func_retval_1())"; +* binlog_format = STATEMENT: expect 1 warnings. +EXECUTE prep_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. +DROP PREPARE prep_2; +DROP FUNCTION func_retval_1; + +Invoking function func_sidef_1 invoking unsafe @@hostname variable. +CREATE FUNCTION func_sidef_1() RETURNS VARCHAR(100) BEGIN INSERT INTO ta1 VALUES (47); INSERT INTO t0 VALUES (@@hostname); RETURN 0; END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t1 SELECT func_sidef_1(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. + +Invoking function func_sidef_2 invoking function func_sidef_1 invoking unsafe @@hostname variable. +CREATE FUNCTION func_sidef_2() RETURNS VARCHAR(100) BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO t1 SELECT func_sidef_1(); RETURN 0; END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t2 SELECT func_sidef_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. +DROP FUNCTION func_sidef_2; + +Invoking procedure proc_2 invoking function func_sidef_1 invoking unsafe @@hostname variable. +CREATE PROCEDURE proc_2() BEGIN INSERT INTO t1 SELECT func_sidef_1(); INSERT INTO ta2 VALUES (47); END; +* binlog_format = STATEMENT: expect 1 warnings. +CALL proc_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. +DROP PROCEDURE proc_2; + +Invoking trigger trig_2 invoking function func_sidef_1 invoking unsafe @@hostname variable. +CREATE TRIGGER trig_2 BEFORE INSERT ON trigger_table_2 FOR EACH ROW BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO t1 SELECT func_sidef_1(); END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO trigger_table_2 VALUES (1); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. +DROP TRIGGER trig_2; + +Invoking view view_sidef_2 invoking function func_sidef_1 invoking unsafe @@hostname variable. +CREATE VIEW view_sidef_2 AS SELECT func_sidef_1(); +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t2 SELECT * FROM view_sidef_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. +DROP VIEW view_sidef_2; + +Invoking prepared statement prep_2 invoking function func_sidef_1 invoking unsafe @@hostname variable. +PREPARE prep_2 FROM "INSERT INTO t1 SELECT func_sidef_1()"; +* binlog_format = STATEMENT: expect 1 warnings. +EXECUTE prep_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. +DROP PREPARE prep_2; +DROP FUNCTION func_sidef_1; + +Invoking procedure proc_1 invoking unsafe @@hostname variable. +CREATE PROCEDURE proc_1() BEGIN INSERT INTO t0 VALUES (@@hostname); INSERT INTO ta1 VALUES (47); END; +* binlog_format = STATEMENT: expect 1 warnings. +CALL proc_1(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. + +Invoking function func_sidef_2 invoking procedure proc_1 invoking unsafe @@hostname variable. +CREATE FUNCTION func_sidef_2() RETURNS VARCHAR(100) BEGIN INSERT INTO ta2 VALUES (47); CALL proc_1(); RETURN 0; END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t2 SELECT func_sidef_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. +DROP FUNCTION func_sidef_2; + +Invoking procedure proc_2 invoking procedure proc_1 invoking unsafe @@hostname variable. +CREATE PROCEDURE proc_2() BEGIN CALL proc_1(); INSERT INTO ta2 VALUES (47); END; +* binlog_format = STATEMENT: expect 1 warnings. +CALL proc_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. +DROP PROCEDURE proc_2; + +Invoking trigger trig_2 invoking procedure proc_1 invoking unsafe @@hostname variable. +CREATE TRIGGER trig_2 BEFORE INSERT ON trigger_table_2 FOR EACH ROW BEGIN INSERT INTO ta2 VALUES (47); CALL proc_1(); END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO trigger_table_2 VALUES (1); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. +DROP TRIGGER trig_2; + +Invoking prepared statement prep_2 invoking procedure proc_1 invoking unsafe @@hostname variable. +PREPARE prep_2 FROM "CALL proc_1()"; +* binlog_format = STATEMENT: expect 1 warnings. +EXECUTE prep_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. +DROP PREPARE prep_2; +DROP PROCEDURE proc_1; + +Invoking trigger trig_1 invoking unsafe @@hostname variable. +CREATE TRIGGER trig_1 BEFORE INSERT ON trigger_table_1 FOR EACH ROW BEGIN INSERT INTO ta1 VALUES (47); INSERT INTO t0 VALUES (@@hostname); END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO trigger_table_1 VALUES (1); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. + +Invoking function func_sidef_2 invoking trigger trig_1 invoking unsafe @@hostname variable. +CREATE FUNCTION func_sidef_2() RETURNS VARCHAR(100) BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO trigger_table_1 VALUES (1); RETURN 0; END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t2 SELECT func_sidef_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. +DROP FUNCTION func_sidef_2; + +Invoking procedure proc_2 invoking trigger trig_1 invoking unsafe @@hostname variable. +CREATE PROCEDURE proc_2() BEGIN INSERT INTO trigger_table_1 VALUES (1); INSERT INTO ta2 VALUES (47); END; +* binlog_format = STATEMENT: expect 1 warnings. +CALL proc_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. +DROP PROCEDURE proc_2; + +Invoking trigger trig_2 invoking trigger trig_1 invoking unsafe @@hostname variable. +CREATE TRIGGER trig_2 BEFORE INSERT ON trigger_table_2 FOR EACH ROW BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO trigger_table_1 VALUES (1); END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO trigger_table_2 VALUES (1); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. +DROP TRIGGER trig_2; + +Invoking prepared statement prep_2 invoking trigger trig_1 invoking unsafe @@hostname variable. +PREPARE prep_2 FROM "INSERT INTO trigger_table_1 VALUES (1)"; +* binlog_format = STATEMENT: expect 1 warnings. +EXECUTE prep_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. +DROP PREPARE prep_2; +DROP TRIGGER trig_1; + +Invoking prepared statement prep_1 invoking unsafe @@hostname variable. +PREPARE prep_1 FROM "INSERT INTO t0 VALUES (@@hostname)"; +* binlog_format = STATEMENT: expect 1 warnings. +EXECUTE prep_1; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. +DROP PREPARE prep_1; + +Invoking unsafe @@hostname variable. +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t0 VALUES (@@hostname); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. + +==== Testing SELECT...LIMIT unsafeness ==== + +Invoking function func_sidef_1 invoking unsafe SELECT...LIMIT statement. +CREATE FUNCTION func_sidef_1() RETURNS VARCHAR(100) BEGIN INSERT INTO ta1 VALUES (47); INSERT INTO t0 SELECT * FROM data_table LIMIT 1; RETURN 0; END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t1 SELECT func_sidef_1(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. + +Invoking function func_sidef_2 invoking function func_sidef_1 invoking unsafe SELECT...LIMIT statement. +CREATE FUNCTION func_sidef_2() RETURNS VARCHAR(100) BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO t1 SELECT func_sidef_1(); RETURN 0; END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t2 SELECT func_sidef_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +DROP FUNCTION func_sidef_2; + +Invoking procedure proc_2 invoking function func_sidef_1 invoking unsafe SELECT...LIMIT statement. +CREATE PROCEDURE proc_2() BEGIN INSERT INTO t1 SELECT func_sidef_1(); INSERT INTO ta2 VALUES (47); END; +* binlog_format = STATEMENT: expect 1 warnings. +CALL proc_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +DROP PROCEDURE proc_2; + +Invoking trigger trig_2 invoking function func_sidef_1 invoking unsafe SELECT...LIMIT statement. +CREATE TRIGGER trig_2 BEFORE INSERT ON trigger_table_2 FOR EACH ROW BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO t1 SELECT func_sidef_1(); END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO trigger_table_2 VALUES (1); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +DROP TRIGGER trig_2; + +Invoking view view_sidef_2 invoking function func_sidef_1 invoking unsafe SELECT...LIMIT statement. +CREATE VIEW view_sidef_2 AS SELECT func_sidef_1(); +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t2 SELECT * FROM view_sidef_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +DROP VIEW view_sidef_2; + +Invoking prepared statement prep_2 invoking function func_sidef_1 invoking unsafe SELECT...LIMIT statement. +PREPARE prep_2 FROM "INSERT INTO t1 SELECT func_sidef_1()"; +* binlog_format = STATEMENT: expect 1 warnings. +EXECUTE prep_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +DROP PREPARE prep_2; +DROP FUNCTION func_sidef_1; + +Invoking procedure proc_1 invoking unsafe SELECT...LIMIT statement. +CREATE PROCEDURE proc_1() BEGIN INSERT INTO t0 SELECT * FROM data_table LIMIT 1; INSERT INTO ta1 VALUES (47); END; +* binlog_format = STATEMENT: expect 1 warnings. +CALL proc_1(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. + +Invoking function func_sidef_2 invoking procedure proc_1 invoking unsafe SELECT...LIMIT statement. +CREATE FUNCTION func_sidef_2() RETURNS VARCHAR(100) BEGIN INSERT INTO ta2 VALUES (47); CALL proc_1(); RETURN 0; END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t2 SELECT func_sidef_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +DROP FUNCTION func_sidef_2; + +Invoking procedure proc_2 invoking procedure proc_1 invoking unsafe SELECT...LIMIT statement. +CREATE PROCEDURE proc_2() BEGIN CALL proc_1(); INSERT INTO ta2 VALUES (47); END; +* binlog_format = STATEMENT: expect 1 warnings. +CALL proc_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +DROP PROCEDURE proc_2; + +Invoking trigger trig_2 invoking procedure proc_1 invoking unsafe SELECT...LIMIT statement. +CREATE TRIGGER trig_2 BEFORE INSERT ON trigger_table_2 FOR EACH ROW BEGIN INSERT INTO ta2 VALUES (47); CALL proc_1(); END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO trigger_table_2 VALUES (1); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +DROP TRIGGER trig_2; + +Invoking prepared statement prep_2 invoking procedure proc_1 invoking unsafe SELECT...LIMIT statement. +PREPARE prep_2 FROM "CALL proc_1()"; +* binlog_format = STATEMENT: expect 1 warnings. +EXECUTE prep_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +DROP PREPARE prep_2; +DROP PROCEDURE proc_1; + +Invoking trigger trig_1 invoking unsafe SELECT...LIMIT statement. +CREATE TRIGGER trig_1 BEFORE INSERT ON trigger_table_1 FOR EACH ROW BEGIN INSERT INTO ta1 VALUES (47); INSERT INTO t0 SELECT * FROM data_table LIMIT 1; END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO trigger_table_1 VALUES (1); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. + +Invoking function func_sidef_2 invoking trigger trig_1 invoking unsafe SELECT...LIMIT statement. +CREATE FUNCTION func_sidef_2() RETURNS VARCHAR(100) BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO trigger_table_1 VALUES (1); RETURN 0; END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t2 SELECT func_sidef_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +DROP FUNCTION func_sidef_2; + +Invoking procedure proc_2 invoking trigger trig_1 invoking unsafe SELECT...LIMIT statement. +CREATE PROCEDURE proc_2() BEGIN INSERT INTO trigger_table_1 VALUES (1); INSERT INTO ta2 VALUES (47); END; +* binlog_format = STATEMENT: expect 1 warnings. +CALL proc_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +DROP PROCEDURE proc_2; + +Invoking trigger trig_2 invoking trigger trig_1 invoking unsafe SELECT...LIMIT statement. +CREATE TRIGGER trig_2 BEFORE INSERT ON trigger_table_2 FOR EACH ROW BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO trigger_table_1 VALUES (1); END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO trigger_table_2 VALUES (1); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +DROP TRIGGER trig_2; + +Invoking prepared statement prep_2 invoking trigger trig_1 invoking unsafe SELECT...LIMIT statement. +PREPARE prep_2 FROM "INSERT INTO trigger_table_1 VALUES (1)"; +* binlog_format = STATEMENT: expect 1 warnings. +EXECUTE prep_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +DROP PREPARE prep_2; +DROP TRIGGER trig_1; + +Invoking view view_retval_1 returning value from unsafe SELECT...LIMIT statement. +CREATE VIEW view_retval_1 AS SELECT * FROM data_table LIMIT 1; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t1 SELECT * FROM view_retval_1; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +* Invoke statement so that return value is discarded: expect no warning. +SELECT * FROM view_retval_1; + +Invoking function func_sidef_2 invoking view view_retval_1 returning value from unsafe SELECT...LIMIT statement. +CREATE FUNCTION func_sidef_2() RETURNS VARCHAR(100) BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO t1 SELECT * FROM view_retval_1; RETURN 0; END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t2 SELECT func_sidef_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +DROP FUNCTION func_sidef_2; + +Invoking procedure proc_2 invoking view view_retval_1 returning value from unsafe SELECT...LIMIT statement. +CREATE PROCEDURE proc_2() BEGIN INSERT INTO t1 SELECT * FROM view_retval_1; INSERT INTO ta2 VALUES (47); END; +* binlog_format = STATEMENT: expect 1 warnings. +CALL proc_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +DROP PROCEDURE proc_2; + +Invoking trigger trig_2 invoking view view_retval_1 returning value from unsafe SELECT...LIMIT statement. +CREATE TRIGGER trig_2 BEFORE INSERT ON trigger_table_2 FOR EACH ROW BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO t1 SELECT * FROM view_retval_1; END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO trigger_table_2 VALUES (1); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +DROP TRIGGER trig_2; + +Invoking view view_retval_2 returning value from view view_retval_1 returning value from unsafe SELECT...LIMIT statement. +CREATE VIEW view_retval_2 AS SELECT * FROM view_retval_1; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t2 SELECT * FROM view_retval_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +* Invoke statement so that return value is discarded: expect no warning. +SELECT * FROM view_retval_2; +DROP VIEW view_retval_2; + +Invoking prepared statement prep_2 invoking view view_retval_1 returning value from unsafe SELECT...LIMIT statement. +PREPARE prep_2 FROM "INSERT INTO t1 SELECT * FROM view_retval_1"; +* binlog_format = STATEMENT: expect 1 warnings. +EXECUTE prep_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +DROP PREPARE prep_2; +DROP VIEW view_retval_1; + +Invoking prepared statement prep_1 invoking unsafe SELECT...LIMIT statement. +PREPARE prep_1 FROM "INSERT INTO t0 SELECT * FROM data_table LIMIT 1"; +* binlog_format = STATEMENT: expect 1 warnings. +EXECUTE prep_1; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +DROP PREPARE prep_1; + +Invoking unsafe SELECT...LIMIT statement. +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t0 SELECT * FROM data_table LIMIT 1; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses a LIMIT clause. This is unsafe because the set of rows included cannot be predicted. +* Invoke statement so that return value is discarded: expect no warning. +SELECT * FROM data_table LIMIT 1; + +==== Testing unsafeness of insert of two autoinc values ==== + +Invoking function func_sidef_1 invoking unsafe update of two autoinc columns. +CREATE FUNCTION func_sidef_1() RETURNS VARCHAR(100) BEGIN INSERT INTO ta1 VALUES (47); INSERT INTO double_autoinc_table VALUES (NULL); RETURN 0; END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t1 SELECT func_sidef_1(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it invokes a trigger or a stored function that inserts into an AUTO_INCREMENT column. Inserted values cannot be logged correctly. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it invokes a trigger or a stored function that inserts into an AUTO_INCREMENT column. Inserted values cannot be logged correctly. + +Invoking function func_sidef_2 invoking function func_sidef_1 invoking unsafe update of two autoinc columns. +CREATE FUNCTION func_sidef_2() RETURNS VARCHAR(100) BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO t1 SELECT func_sidef_1(); RETURN 0; END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t2 SELECT func_sidef_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it invokes a trigger or a stored function that inserts into an AUTO_INCREMENT column. Inserted values cannot be logged correctly. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it invokes a trigger or a stored function that inserts into an AUTO_INCREMENT column. Inserted values cannot be logged correctly. +DROP FUNCTION func_sidef_2; + +Invoking procedure proc_2 invoking function func_sidef_1 invoking unsafe update of two autoinc columns. +CREATE PROCEDURE proc_2() BEGIN INSERT INTO t1 SELECT func_sidef_1(); INSERT INTO ta2 VALUES (47); END; +* binlog_format = STATEMENT: expect 1 warnings. +CALL proc_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it invokes a trigger or a stored function that inserts into an AUTO_INCREMENT column. Inserted values cannot be logged correctly. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it invokes a trigger or a stored function that inserts into an AUTO_INCREMENT column. Inserted values cannot be logged correctly. +DROP PROCEDURE proc_2; + +Invoking trigger trig_2 invoking function func_sidef_1 invoking unsafe update of two autoinc columns. +CREATE TRIGGER trig_2 BEFORE INSERT ON trigger_table_2 FOR EACH ROW BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO t1 SELECT func_sidef_1(); END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO trigger_table_2 VALUES (1); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it invokes a trigger or a stored function that inserts into an AUTO_INCREMENT column. Inserted values cannot be logged correctly. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it invokes a trigger or a stored function that inserts into an AUTO_INCREMENT column. Inserted values cannot be logged correctly. +DROP TRIGGER trig_2; + +Invoking view view_sidef_2 invoking function func_sidef_1 invoking unsafe update of two autoinc columns. +CREATE VIEW view_sidef_2 AS SELECT func_sidef_1(); +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t2 SELECT * FROM view_sidef_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it invokes a trigger or a stored function that inserts into an AUTO_INCREMENT column. Inserted values cannot be logged correctly. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it invokes a trigger or a stored function that inserts into an AUTO_INCREMENT column. Inserted values cannot be logged correctly. +DROP VIEW view_sidef_2; + +Invoking prepared statement prep_2 invoking function func_sidef_1 invoking unsafe update of two autoinc columns. +PREPARE prep_2 FROM "INSERT INTO t1 SELECT func_sidef_1()"; +* binlog_format = STATEMENT: expect 1 warnings. +EXECUTE prep_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it invokes a trigger or a stored function that inserts into an AUTO_INCREMENT column. Inserted values cannot be logged correctly. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it invokes a trigger or a stored function that inserts into an AUTO_INCREMENT column. Inserted values cannot be logged correctly. +DROP PREPARE prep_2; +DROP FUNCTION func_sidef_1; + +Invoking procedure proc_1 invoking unsafe update of two autoinc columns. +CREATE PROCEDURE proc_1() BEGIN INSERT INTO double_autoinc_table VALUES (NULL); INSERT INTO ta1 VALUES (47); END; +* binlog_format = STATEMENT: expect 1 warnings. +CALL proc_1(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it invokes a trigger or a stored function that inserts into an AUTO_INCREMENT column. Inserted values cannot be logged correctly. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it invokes a trigger or a stored function that inserts into an AUTO_INCREMENT column. Inserted values cannot be logged correctly. + +Invoking function func_sidef_2 invoking procedure proc_1 invoking unsafe update of two autoinc columns. +CREATE FUNCTION func_sidef_2() RETURNS VARCHAR(100) BEGIN INSERT INTO ta2 VALUES (47); CALL proc_1(); RETURN 0; END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t2 SELECT func_sidef_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it invokes a trigger or a stored function that inserts into an AUTO_INCREMENT column. Inserted values cannot be logged correctly. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it invokes a trigger or a stored function that inserts into an AUTO_INCREMENT column. Inserted values cannot be logged correctly. +DROP FUNCTION func_sidef_2; + +Invoking procedure proc_2 invoking procedure proc_1 invoking unsafe update of two autoinc columns. +CREATE PROCEDURE proc_2() BEGIN CALL proc_1(); INSERT INTO ta2 VALUES (47); END; +* binlog_format = STATEMENT: expect 1 warnings. +CALL proc_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it invokes a trigger or a stored function that inserts into an AUTO_INCREMENT column. Inserted values cannot be logged correctly. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it invokes a trigger or a stored function that inserts into an AUTO_INCREMENT column. Inserted values cannot be logged correctly. +DROP PROCEDURE proc_2; + +Invoking trigger trig_2 invoking procedure proc_1 invoking unsafe update of two autoinc columns. +CREATE TRIGGER trig_2 BEFORE INSERT ON trigger_table_2 FOR EACH ROW BEGIN INSERT INTO ta2 VALUES (47); CALL proc_1(); END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO trigger_table_2 VALUES (1); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it invokes a trigger or a stored function that inserts into an AUTO_INCREMENT column. Inserted values cannot be logged correctly. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it invokes a trigger or a stored function that inserts into an AUTO_INCREMENT column. Inserted values cannot be logged correctly. +DROP TRIGGER trig_2; + +Invoking prepared statement prep_2 invoking procedure proc_1 invoking unsafe update of two autoinc columns. +PREPARE prep_2 FROM "CALL proc_1()"; +* binlog_format = STATEMENT: expect 1 warnings. +EXECUTE prep_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it invokes a trigger or a stored function that inserts into an AUTO_INCREMENT column. Inserted values cannot be logged correctly. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it invokes a trigger or a stored function that inserts into an AUTO_INCREMENT column. Inserted values cannot be logged correctly. +DROP PREPARE prep_2; +DROP PROCEDURE proc_1; + +Invoking trigger trig_1 invoking unsafe update of two autoinc columns. +CREATE TRIGGER trig_1 BEFORE INSERT ON trigger_table_1 FOR EACH ROW BEGIN INSERT INTO ta1 VALUES (47); INSERT INTO double_autoinc_table VALUES (NULL); END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO trigger_table_1 VALUES (1); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it invokes a trigger or a stored function that inserts into an AUTO_INCREMENT column. Inserted values cannot be logged correctly. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it invokes a trigger or a stored function that inserts into an AUTO_INCREMENT column. Inserted values cannot be logged correctly. + +Invoking function func_sidef_2 invoking trigger trig_1 invoking unsafe update of two autoinc columns. +CREATE FUNCTION func_sidef_2() RETURNS VARCHAR(100) BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO trigger_table_1 VALUES (1); RETURN 0; END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t2 SELECT func_sidef_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it invokes a trigger or a stored function that inserts into an AUTO_INCREMENT column. Inserted values cannot be logged correctly. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it invokes a trigger or a stored function that inserts into an AUTO_INCREMENT column. Inserted values cannot be logged correctly. +DROP FUNCTION func_sidef_2; + +Invoking procedure proc_2 invoking trigger trig_1 invoking unsafe update of two autoinc columns. +CREATE PROCEDURE proc_2() BEGIN INSERT INTO trigger_table_1 VALUES (1); INSERT INTO ta2 VALUES (47); END; +* binlog_format = STATEMENT: expect 1 warnings. +CALL proc_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it invokes a trigger or a stored function that inserts into an AUTO_INCREMENT column. Inserted values cannot be logged correctly. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it invokes a trigger or a stored function that inserts into an AUTO_INCREMENT column. Inserted values cannot be logged correctly. +DROP PROCEDURE proc_2; + +Invoking trigger trig_2 invoking trigger trig_1 invoking unsafe update of two autoinc columns. +CREATE TRIGGER trig_2 BEFORE INSERT ON trigger_table_2 FOR EACH ROW BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO trigger_table_1 VALUES (1); END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO trigger_table_2 VALUES (1); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it invokes a trigger or a stored function that inserts into an AUTO_INCREMENT column. Inserted values cannot be logged correctly. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it invokes a trigger or a stored function that inserts into an AUTO_INCREMENT column. Inserted values cannot be logged correctly. +DROP TRIGGER trig_2; + +Invoking prepared statement prep_2 invoking trigger trig_1 invoking unsafe update of two autoinc columns. +PREPARE prep_2 FROM "INSERT INTO trigger_table_1 VALUES (1)"; +* binlog_format = STATEMENT: expect 1 warnings. +EXECUTE prep_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it invokes a trigger or a stored function that inserts into an AUTO_INCREMENT column. Inserted values cannot be logged correctly. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it invokes a trigger or a stored function that inserts into an AUTO_INCREMENT column. Inserted values cannot be logged correctly. +DROP PREPARE prep_2; +DROP TRIGGER trig_1; + +Invoking prepared statement prep_1 invoking unsafe update of two autoinc columns. +PREPARE prep_1 FROM "INSERT INTO double_autoinc_table VALUES (NULL)"; +* binlog_format = STATEMENT: expect 1 warnings. +EXECUTE prep_1; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it invokes a trigger or a stored function that inserts into an AUTO_INCREMENT column. Inserted values cannot be logged correctly. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it invokes a trigger or a stored function that inserts into an AUTO_INCREMENT column. Inserted values cannot be logged correctly. +DROP PREPARE prep_1; + +Invoking unsafe update of two autoinc columns. +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO double_autoinc_table VALUES (NULL); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it invokes a trigger or a stored function that inserts into an AUTO_INCREMENT column. Inserted values cannot be logged correctly. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it invokes a trigger or a stored function that inserts into an AUTO_INCREMENT column. Inserted values cannot be logged correctly. + +==== Testing unsafeness of UDF's ==== + +Invoking function func_retval_1 returning value from unsafe UDF. +CREATE FUNCTION func_retval_1() RETURNS VARCHAR(100) BEGIN INSERT INTO ta1 VALUES (47); RETURN myfunc_int(10); END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t1 VALUES (func_retval_1()); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +* Invoke statement so that return value is discarded: expect no warning. +SELECT func_retval_1(); + +Invoking function func_retval_2 returning value from function func_retval_1 returning value from unsafe UDF. +CREATE FUNCTION func_retval_2() RETURNS VARCHAR(100) BEGIN INSERT INTO ta2 VALUES (47); RETURN func_retval_1(); END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t2 VALUES (func_retval_2()); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +* Invoke statement so that return value is discarded: expect no warning. +SELECT func_retval_2(); +DROP FUNCTION func_retval_2; + +Invoking function func_sidef_2 invoking function func_retval_1 returning value from unsafe UDF. +CREATE FUNCTION func_sidef_2() RETURNS VARCHAR(100) BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO t1 VALUES (func_retval_1()); RETURN 0; END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t2 SELECT func_sidef_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +DROP FUNCTION func_sidef_2; + +Invoking procedure proc_2 invoking function func_retval_1 returning value from unsafe UDF. +CREATE PROCEDURE proc_2() BEGIN INSERT INTO t1 VALUES (func_retval_1()); INSERT INTO ta2 VALUES (47); END; +* binlog_format = STATEMENT: expect 1 warnings. +CALL proc_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +DROP PROCEDURE proc_2; + +Invoking trigger trig_2 invoking function func_retval_1 returning value from unsafe UDF. +CREATE TRIGGER trig_2 BEFORE INSERT ON trigger_table_2 FOR EACH ROW BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO t1 VALUES (func_retval_1()); END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO trigger_table_2 VALUES (1); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +DROP TRIGGER trig_2; + +Invoking view view_retval_2 returning value from function func_retval_1 returning value from unsafe UDF. +CREATE VIEW view_retval_2 AS SELECT func_retval_1(); +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t2 SELECT * FROM view_retval_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +* Invoke statement so that return value is discarded: expect no warning. +SELECT * FROM view_retval_2; +DROP VIEW view_retval_2; + +Invoking prepared statement prep_2 invoking function func_retval_1 returning value from unsafe UDF. +PREPARE prep_2 FROM "INSERT INTO t1 VALUES (func_retval_1())"; +* binlog_format = STATEMENT: expect 1 warnings. +EXECUTE prep_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +DROP PREPARE prep_2; +DROP FUNCTION func_retval_1; + +Invoking function func_sidef_1 invoking unsafe UDF. +CREATE FUNCTION func_sidef_1() RETURNS VARCHAR(100) BEGIN INSERT INTO ta1 VALUES (47); INSERT INTO t0 VALUES (myfunc_int(10)); RETURN 0; END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t1 SELECT func_sidef_1(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a UDF which may not return the same value on the slave. + +Invoking function func_sidef_2 invoking function func_sidef_1 invoking unsafe UDF. +CREATE FUNCTION func_sidef_2() RETURNS VARCHAR(100) BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO t1 SELECT func_sidef_1(); RETURN 0; END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t2 SELECT func_sidef_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +DROP FUNCTION func_sidef_2; + +Invoking procedure proc_2 invoking function func_sidef_1 invoking unsafe UDF. +CREATE PROCEDURE proc_2() BEGIN INSERT INTO t1 SELECT func_sidef_1(); INSERT INTO ta2 VALUES (47); END; +* binlog_format = STATEMENT: expect 1 warnings. +CALL proc_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +DROP PROCEDURE proc_2; + +Invoking trigger trig_2 invoking function func_sidef_1 invoking unsafe UDF. +CREATE TRIGGER trig_2 BEFORE INSERT ON trigger_table_2 FOR EACH ROW BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO t1 SELECT func_sidef_1(); END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO trigger_table_2 VALUES (1); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +DROP TRIGGER trig_2; + +Invoking view view_sidef_2 invoking function func_sidef_1 invoking unsafe UDF. +CREATE VIEW view_sidef_2 AS SELECT func_sidef_1(); +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t2 SELECT * FROM view_sidef_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +DROP VIEW view_sidef_2; + +Invoking prepared statement prep_2 invoking function func_sidef_1 invoking unsafe UDF. +PREPARE prep_2 FROM "INSERT INTO t1 SELECT func_sidef_1()"; +* binlog_format = STATEMENT: expect 1 warnings. +EXECUTE prep_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +DROP PREPARE prep_2; +DROP FUNCTION func_sidef_1; + +Invoking procedure proc_1 invoking unsafe UDF. +CREATE PROCEDURE proc_1() BEGIN INSERT INTO t0 VALUES (myfunc_int(10)); INSERT INTO ta1 VALUES (47); END; +* binlog_format = STATEMENT: expect 1 warnings. +CALL proc_1(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a UDF which may not return the same value on the slave. + +Invoking function func_sidef_2 invoking procedure proc_1 invoking unsafe UDF. +CREATE FUNCTION func_sidef_2() RETURNS VARCHAR(100) BEGIN INSERT INTO ta2 VALUES (47); CALL proc_1(); RETURN 0; END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t2 SELECT func_sidef_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +DROP FUNCTION func_sidef_2; + +Invoking procedure proc_2 invoking procedure proc_1 invoking unsafe UDF. +CREATE PROCEDURE proc_2() BEGIN CALL proc_1(); INSERT INTO ta2 VALUES (47); END; +* binlog_format = STATEMENT: expect 1 warnings. +CALL proc_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +DROP PROCEDURE proc_2; + +Invoking trigger trig_2 invoking procedure proc_1 invoking unsafe UDF. +CREATE TRIGGER trig_2 BEFORE INSERT ON trigger_table_2 FOR EACH ROW BEGIN INSERT INTO ta2 VALUES (47); CALL proc_1(); END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO trigger_table_2 VALUES (1); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +DROP TRIGGER trig_2; + +Invoking prepared statement prep_2 invoking procedure proc_1 invoking unsafe UDF. +PREPARE prep_2 FROM "CALL proc_1()"; +* binlog_format = STATEMENT: expect 1 warnings. +EXECUTE prep_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +DROP PREPARE prep_2; +DROP PROCEDURE proc_1; + +Invoking trigger trig_1 invoking unsafe UDF. +CREATE TRIGGER trig_1 BEFORE INSERT ON trigger_table_1 FOR EACH ROW BEGIN INSERT INTO ta1 VALUES (47); INSERT INTO t0 VALUES (myfunc_int(10)); END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO trigger_table_1 VALUES (1); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a UDF which may not return the same value on the slave. + +Invoking function func_sidef_2 invoking trigger trig_1 invoking unsafe UDF. +CREATE FUNCTION func_sidef_2() RETURNS VARCHAR(100) BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO trigger_table_1 VALUES (1); RETURN 0; END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t2 SELECT func_sidef_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +DROP FUNCTION func_sidef_2; + +Invoking procedure proc_2 invoking trigger trig_1 invoking unsafe UDF. +CREATE PROCEDURE proc_2() BEGIN INSERT INTO trigger_table_1 VALUES (1); INSERT INTO ta2 VALUES (47); END; +* binlog_format = STATEMENT: expect 1 warnings. +CALL proc_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +DROP PROCEDURE proc_2; + +Invoking trigger trig_2 invoking trigger trig_1 invoking unsafe UDF. +CREATE TRIGGER trig_2 BEFORE INSERT ON trigger_table_2 FOR EACH ROW BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO trigger_table_1 VALUES (1); END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO trigger_table_2 VALUES (1); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +DROP TRIGGER trig_2; + +Invoking prepared statement prep_2 invoking trigger trig_1 invoking unsafe UDF. +PREPARE prep_2 FROM "INSERT INTO trigger_table_1 VALUES (1)"; +* binlog_format = STATEMENT: expect 1 warnings. +EXECUTE prep_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +DROP PREPARE prep_2; +DROP TRIGGER trig_1; + +Invoking view view_sidef_1 invoking unsafe UDF. +CREATE VIEW view_sidef_1 AS SELECT myfunc_int(10); +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t1 SELECT * FROM view_sidef_1; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a UDF which may not return the same value on the slave. + +Invoking function func_sidef_2 invoking view view_sidef_1 invoking unsafe UDF. +CREATE FUNCTION func_sidef_2() RETURNS VARCHAR(100) BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO t1 SELECT * FROM view_sidef_1; RETURN 0; END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t2 SELECT func_sidef_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +DROP FUNCTION func_sidef_2; + +Invoking procedure proc_2 invoking view view_sidef_1 invoking unsafe UDF. +CREATE PROCEDURE proc_2() BEGIN INSERT INTO t1 SELECT * FROM view_sidef_1; INSERT INTO ta2 VALUES (47); END; +* binlog_format = STATEMENT: expect 1 warnings. +CALL proc_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +DROP PROCEDURE proc_2; + +Invoking trigger trig_2 invoking view view_sidef_1 invoking unsafe UDF. +CREATE TRIGGER trig_2 BEFORE INSERT ON trigger_table_2 FOR EACH ROW BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO t1 SELECT * FROM view_sidef_1; END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO trigger_table_2 VALUES (1); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +DROP TRIGGER trig_2; + +Invoking view view_sidef_2 invoking view view_sidef_1 invoking unsafe UDF. +CREATE VIEW view_sidef_2 AS SELECT * FROM view_sidef_1; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t2 SELECT * FROM view_sidef_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +DROP VIEW view_sidef_2; + +Invoking prepared statement prep_2 invoking view view_sidef_1 invoking unsafe UDF. +PREPARE prep_2 FROM "INSERT INTO t1 SELECT * FROM view_sidef_1"; +* binlog_format = STATEMENT: expect 1 warnings. +EXECUTE prep_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +DROP PREPARE prep_2; +DROP VIEW view_sidef_1; + +Invoking prepared statement prep_1 invoking unsafe UDF. +PREPARE prep_1 FROM "INSERT INTO t0 VALUES (myfunc_int(10))"; +* binlog_format = STATEMENT: expect 1 warnings. +EXECUTE prep_1; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +DROP PREPARE prep_1; + +Invoking unsafe UDF. +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t0 VALUES (myfunc_int(10)); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a UDF which may not return the same value on the slave. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a UDF which may not return the same value on the slave. + +==== Testing unsafeness of access to mysql.general_log ==== + +Invoking function func_sidef_1 invoking unsafe use of mysql.general_log. +CREATE FUNCTION func_sidef_1() RETURNS VARCHAR(100) BEGIN INSERT INTO ta1 VALUES (47); INSERT INTO t0 SELECT COUNT(*) FROM mysql.general_log; RETURN 0; END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t1 SELECT func_sidef_1(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. + +Invoking function func_sidef_2 invoking function func_sidef_1 invoking unsafe use of mysql.general_log. +CREATE FUNCTION func_sidef_2() RETURNS VARCHAR(100) BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO t1 SELECT func_sidef_1(); RETURN 0; END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t2 SELECT func_sidef_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +DROP FUNCTION func_sidef_2; + +Invoking procedure proc_2 invoking function func_sidef_1 invoking unsafe use of mysql.general_log. +CREATE PROCEDURE proc_2() BEGIN INSERT INTO t1 SELECT func_sidef_1(); INSERT INTO ta2 VALUES (47); END; +* binlog_format = STATEMENT: expect 1 warnings. +CALL proc_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +DROP PROCEDURE proc_2; + +Invoking trigger trig_2 invoking function func_sidef_1 invoking unsafe use of mysql.general_log. +CREATE TRIGGER trig_2 BEFORE INSERT ON trigger_table_2 FOR EACH ROW BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO t1 SELECT func_sidef_1(); END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO trigger_table_2 VALUES (1); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +DROP TRIGGER trig_2; + +Invoking view view_sidef_2 invoking function func_sidef_1 invoking unsafe use of mysql.general_log. +CREATE VIEW view_sidef_2 AS SELECT func_sidef_1(); +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t2 SELECT * FROM view_sidef_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +DROP VIEW view_sidef_2; + +Invoking prepared statement prep_2 invoking function func_sidef_1 invoking unsafe use of mysql.general_log. +PREPARE prep_2 FROM "INSERT INTO t1 SELECT func_sidef_1()"; +* binlog_format = STATEMENT: expect 1 warnings. +EXECUTE prep_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +DROP PREPARE prep_2; +DROP FUNCTION func_sidef_1; + +Invoking procedure proc_1 invoking unsafe use of mysql.general_log. +CREATE PROCEDURE proc_1() BEGIN INSERT INTO t0 SELECT COUNT(*) FROM mysql.general_log; INSERT INTO ta1 VALUES (47); END; +* binlog_format = STATEMENT: expect 1 warnings. +CALL proc_1(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. + +Invoking function func_sidef_2 invoking procedure proc_1 invoking unsafe use of mysql.general_log. +CREATE FUNCTION func_sidef_2() RETURNS VARCHAR(100) BEGIN INSERT INTO ta2 VALUES (47); CALL proc_1(); RETURN 0; END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t2 SELECT func_sidef_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +DROP FUNCTION func_sidef_2; + +Invoking procedure proc_2 invoking procedure proc_1 invoking unsafe use of mysql.general_log. +CREATE PROCEDURE proc_2() BEGIN CALL proc_1(); INSERT INTO ta2 VALUES (47); END; +* binlog_format = STATEMENT: expect 1 warnings. +CALL proc_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +DROP PROCEDURE proc_2; + +Invoking trigger trig_2 invoking procedure proc_1 invoking unsafe use of mysql.general_log. +CREATE TRIGGER trig_2 BEFORE INSERT ON trigger_table_2 FOR EACH ROW BEGIN INSERT INTO ta2 VALUES (47); CALL proc_1(); END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO trigger_table_2 VALUES (1); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +DROP TRIGGER trig_2; + +Invoking prepared statement prep_2 invoking procedure proc_1 invoking unsafe use of mysql.general_log. +PREPARE prep_2 FROM "CALL proc_1()"; +* binlog_format = STATEMENT: expect 1 warnings. +EXECUTE prep_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +DROP PREPARE prep_2; +DROP PROCEDURE proc_1; + +Invoking trigger trig_1 invoking unsafe use of mysql.general_log. +CREATE TRIGGER trig_1 BEFORE INSERT ON trigger_table_1 FOR EACH ROW BEGIN INSERT INTO ta1 VALUES (47); INSERT INTO t0 SELECT COUNT(*) FROM mysql.general_log; END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO trigger_table_1 VALUES (1); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. + +Invoking function func_sidef_2 invoking trigger trig_1 invoking unsafe use of mysql.general_log. +CREATE FUNCTION func_sidef_2() RETURNS VARCHAR(100) BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO trigger_table_1 VALUES (1); RETURN 0; END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t2 SELECT func_sidef_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +DROP FUNCTION func_sidef_2; + +Invoking procedure proc_2 invoking trigger trig_1 invoking unsafe use of mysql.general_log. +CREATE PROCEDURE proc_2() BEGIN INSERT INTO trigger_table_1 VALUES (1); INSERT INTO ta2 VALUES (47); END; +* binlog_format = STATEMENT: expect 1 warnings. +CALL proc_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +DROP PROCEDURE proc_2; + +Invoking trigger trig_2 invoking trigger trig_1 invoking unsafe use of mysql.general_log. +CREATE TRIGGER trig_2 BEFORE INSERT ON trigger_table_2 FOR EACH ROW BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO trigger_table_1 VALUES (1); END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO trigger_table_2 VALUES (1); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +DROP TRIGGER trig_2; + +Invoking prepared statement prep_2 invoking trigger trig_1 invoking unsafe use of mysql.general_log. +PREPARE prep_2 FROM "INSERT INTO trigger_table_1 VALUES (1)"; +* binlog_format = STATEMENT: expect 1 warnings. +EXECUTE prep_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +DROP PREPARE prep_2; +DROP TRIGGER trig_1; + +Invoking view view_retval_1 returning value from unsafe use of mysql.general_log. +CREATE VIEW view_retval_1 AS SELECT COUNT(*) FROM mysql.general_log; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t1 SELECT * FROM view_retval_1; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +* Invoke statement so that return value is discarded: expect no warning. +SELECT * FROM view_retval_1; + +Invoking function func_sidef_2 invoking view view_retval_1 returning value from unsafe use of mysql.general_log. +CREATE FUNCTION func_sidef_2() RETURNS VARCHAR(100) BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO t1 SELECT * FROM view_retval_1; RETURN 0; END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t2 SELECT func_sidef_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +DROP FUNCTION func_sidef_2; + +Invoking procedure proc_2 invoking view view_retval_1 returning value from unsafe use of mysql.general_log. +CREATE PROCEDURE proc_2() BEGIN INSERT INTO t1 SELECT * FROM view_retval_1; INSERT INTO ta2 VALUES (47); END; +* binlog_format = STATEMENT: expect 1 warnings. +CALL proc_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +DROP PROCEDURE proc_2; + +Invoking trigger trig_2 invoking view view_retval_1 returning value from unsafe use of mysql.general_log. +CREATE TRIGGER trig_2 BEFORE INSERT ON trigger_table_2 FOR EACH ROW BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO t1 SELECT * FROM view_retval_1; END; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO trigger_table_2 VALUES (1); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +DROP TRIGGER trig_2; + +Invoking view view_retval_2 returning value from view view_retval_1 returning value from unsafe use of mysql.general_log. +CREATE VIEW view_retval_2 AS SELECT * FROM view_retval_1; +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t2 SELECT * FROM view_retval_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +* Invoke statement so that return value is discarded: expect no warning. +SELECT * FROM view_retval_2; +DROP VIEW view_retval_2; + +Invoking prepared statement prep_2 invoking view view_retval_1 returning value from unsafe use of mysql.general_log. +PREPARE prep_2 FROM "INSERT INTO t1 SELECT * FROM view_retval_1"; +* binlog_format = STATEMENT: expect 1 warnings. +EXECUTE prep_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +DROP PREPARE prep_2; +DROP VIEW view_retval_1; + +Invoking prepared statement prep_1 invoking unsafe use of mysql.general_log. +PREPARE prep_1 FROM "INSERT INTO t0 SELECT COUNT(*) FROM mysql.general_log"; +* binlog_format = STATEMENT: expect 1 warnings. +EXECUTE prep_1; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +DROP PREPARE prep_1; + +Invoking unsafe use of mysql.general_log. +* binlog_format = STATEMENT: expect 1 warnings. +INSERT INTO t0 SELECT COUNT(*) FROM mysql.general_log; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +include/assert.inc [There should be 1 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves. +* Invoke statement so that return value is discarded: expect no warning. +SELECT COUNT(*) FROM mysql.general_log; + +==== Testing a statement that is unsafe several times ==== + +Invoking function func_sidef_1 invoking statement that is unsafe several times. +CREATE FUNCTION func_sidef_1() RETURNS VARCHAR(100) BEGIN INSERT INTO ta1 VALUES (47); INSERT INTO ta0 VALUES (multi_unsafe_func()); RETURN 0; END; +* binlog_format = STATEMENT: expect 2 warnings. +INSERT INTO t1 SELECT func_sidef_1(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 2 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. + +Invoking function func_sidef_2 invoking function func_sidef_1 invoking statement that is unsafe several times. +CREATE FUNCTION func_sidef_2() RETURNS VARCHAR(100) BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO t1 SELECT func_sidef_1(); RETURN 0; END; +* binlog_format = STATEMENT: expect 2 warnings. +INSERT INTO t2 SELECT func_sidef_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 2 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. +DROP FUNCTION func_sidef_2; + +Invoking procedure proc_2 invoking function func_sidef_1 invoking statement that is unsafe several times. +CREATE PROCEDURE proc_2() BEGIN INSERT INTO t1 SELECT func_sidef_1(); INSERT INTO ta2 VALUES (47); END; +* binlog_format = STATEMENT: expect 2 warnings. +CALL proc_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 2 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. +DROP PROCEDURE proc_2; + +Invoking trigger trig_2 invoking function func_sidef_1 invoking statement that is unsafe several times. +CREATE TRIGGER trig_2 BEFORE INSERT ON trigger_table_2 FOR EACH ROW BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO t1 SELECT func_sidef_1(); END; +* binlog_format = STATEMENT: expect 2 warnings. +INSERT INTO trigger_table_2 VALUES (1); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 2 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. +DROP TRIGGER trig_2; + +Invoking view view_sidef_2 invoking function func_sidef_1 invoking statement that is unsafe several times. +CREATE VIEW view_sidef_2 AS SELECT func_sidef_1(); +* binlog_format = STATEMENT: expect 2 warnings. +INSERT INTO t2 SELECT * FROM view_sidef_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 2 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. +DROP VIEW view_sidef_2; + +Invoking prepared statement prep_2 invoking function func_sidef_1 invoking statement that is unsafe several times. +PREPARE prep_2 FROM "INSERT INTO t1 SELECT func_sidef_1()"; +* binlog_format = STATEMENT: expect 2 warnings. +EXECUTE prep_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 2 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. +DROP PREPARE prep_2; +DROP FUNCTION func_sidef_1; + +Invoking procedure proc_1 invoking statement that is unsafe several times. +CREATE PROCEDURE proc_1() BEGIN INSERT INTO ta0 VALUES (multi_unsafe_func()); INSERT INTO ta1 VALUES (47); END; +* binlog_format = STATEMENT: expect 2 warnings. +CALL proc_1(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 2 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. + +Invoking function func_sidef_2 invoking procedure proc_1 invoking statement that is unsafe several times. +CREATE FUNCTION func_sidef_2() RETURNS VARCHAR(100) BEGIN INSERT INTO ta2 VALUES (47); CALL proc_1(); RETURN 0; END; +* binlog_format = STATEMENT: expect 2 warnings. +INSERT INTO t2 SELECT func_sidef_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 2 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. +DROP FUNCTION func_sidef_2; + +Invoking procedure proc_2 invoking procedure proc_1 invoking statement that is unsafe several times. +CREATE PROCEDURE proc_2() BEGIN CALL proc_1(); INSERT INTO ta2 VALUES (47); END; +* binlog_format = STATEMENT: expect 2 warnings. +CALL proc_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 2 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. +DROP PROCEDURE proc_2; + +Invoking trigger trig_2 invoking procedure proc_1 invoking statement that is unsafe several times. +CREATE TRIGGER trig_2 BEFORE INSERT ON trigger_table_2 FOR EACH ROW BEGIN INSERT INTO ta2 VALUES (47); CALL proc_1(); END; +* binlog_format = STATEMENT: expect 2 warnings. +INSERT INTO trigger_table_2 VALUES (1); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 2 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. +DROP TRIGGER trig_2; + +Invoking prepared statement prep_2 invoking procedure proc_1 invoking statement that is unsafe several times. +PREPARE prep_2 FROM "CALL proc_1()"; +* binlog_format = STATEMENT: expect 2 warnings. +EXECUTE prep_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 2 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. +DROP PREPARE prep_2; +DROP PROCEDURE proc_1; + +Invoking trigger trig_1 invoking statement that is unsafe several times. +CREATE TRIGGER trig_1 BEFORE INSERT ON trigger_table_1 FOR EACH ROW BEGIN INSERT INTO ta1 VALUES (47); INSERT INTO ta0 VALUES (multi_unsafe_func()); END; +* binlog_format = STATEMENT: expect 2 warnings. +INSERT INTO trigger_table_1 VALUES (1); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 2 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. + +Invoking function func_sidef_2 invoking trigger trig_1 invoking statement that is unsafe several times. +CREATE FUNCTION func_sidef_2() RETURNS VARCHAR(100) BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO trigger_table_1 VALUES (1); RETURN 0; END; +* binlog_format = STATEMENT: expect 2 warnings. +INSERT INTO t2 SELECT func_sidef_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 2 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. +DROP FUNCTION func_sidef_2; + +Invoking procedure proc_2 invoking trigger trig_1 invoking statement that is unsafe several times. +CREATE PROCEDURE proc_2() BEGIN INSERT INTO trigger_table_1 VALUES (1); INSERT INTO ta2 VALUES (47); END; +* binlog_format = STATEMENT: expect 2 warnings. +CALL proc_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 2 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. +DROP PROCEDURE proc_2; + +Invoking trigger trig_2 invoking trigger trig_1 invoking statement that is unsafe several times. +CREATE TRIGGER trig_2 BEFORE INSERT ON trigger_table_2 FOR EACH ROW BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO trigger_table_1 VALUES (1); END; +* binlog_format = STATEMENT: expect 2 warnings. +INSERT INTO trigger_table_2 VALUES (1); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 2 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. +DROP TRIGGER trig_2; + +Invoking prepared statement prep_2 invoking trigger trig_1 invoking statement that is unsafe several times. +PREPARE prep_2 FROM "INSERT INTO trigger_table_1 VALUES (1)"; +* binlog_format = STATEMENT: expect 2 warnings. +EXECUTE prep_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 2 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. +DROP PREPARE prep_2; +DROP TRIGGER trig_1; + +Invoking view view_sidef_1 invoking statement that is unsafe several times. +CREATE VIEW view_sidef_1 AS SELECT multi_unsafe_func(); +* binlog_format = STATEMENT: expect 2 warnings. +INSERT INTO t1 SELECT * FROM view_sidef_1; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 2 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. + +Invoking function func_sidef_2 invoking view view_sidef_1 invoking statement that is unsafe several times. +CREATE FUNCTION func_sidef_2() RETURNS VARCHAR(100) BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO t1 SELECT * FROM view_sidef_1; RETURN 0; END; +* binlog_format = STATEMENT: expect 2 warnings. +INSERT INTO t2 SELECT func_sidef_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 2 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. +DROP FUNCTION func_sidef_2; + +Invoking procedure proc_2 invoking view view_sidef_1 invoking statement that is unsafe several times. +CREATE PROCEDURE proc_2() BEGIN INSERT INTO t1 SELECT * FROM view_sidef_1; INSERT INTO ta2 VALUES (47); END; +* binlog_format = STATEMENT: expect 2 warnings. +CALL proc_2(); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 2 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. +DROP PROCEDURE proc_2; + +Invoking trigger trig_2 invoking view view_sidef_1 invoking statement that is unsafe several times. +CREATE TRIGGER trig_2 BEFORE INSERT ON trigger_table_2 FOR EACH ROW BEGIN INSERT INTO ta2 VALUES (47); INSERT INTO t1 SELECT * FROM view_sidef_1; END; +* binlog_format = STATEMENT: expect 2 warnings. +INSERT INTO trigger_table_2 VALUES (1); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 2 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. +DROP TRIGGER trig_2; + +Invoking view view_sidef_2 invoking view view_sidef_1 invoking statement that is unsafe several times. +CREATE VIEW view_sidef_2 AS SELECT * FROM view_sidef_1; +* binlog_format = STATEMENT: expect 2 warnings. +INSERT INTO t2 SELECT * FROM view_sidef_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 2 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. +DROP VIEW view_sidef_2; + +Invoking prepared statement prep_2 invoking view view_sidef_1 invoking statement that is unsafe several times. +PREPARE prep_2 FROM "INSERT INTO t1 SELECT * FROM view_sidef_1"; +* binlog_format = STATEMENT: expect 2 warnings. +EXECUTE prep_2; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 2 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. +DROP PREPARE prep_2; +DROP VIEW view_sidef_1; + +Invoking prepared statement prep_1 invoking statement that is unsafe several times. +PREPARE prep_1 FROM "INSERT INTO ta0 VALUES (multi_unsafe_func())"; +* binlog_format = STATEMENT: expect 2 warnings. +EXECUTE prep_1; +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 2 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. +DROP PREPARE prep_1; + +Invoking statement that is unsafe several times. +* binlog_format = STATEMENT: expect 2 warnings. +INSERT INTO ta0 VALUES (multi_unsafe_func()); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave. +include/assert.inc [There should be 2 warning(s)] +* SQL_LOG_BIN = 0: expect nothing logged and only deprecation warnings. +include/assert.inc [There should be 0 warning(s)] +include/assert.inc [Only two events should exist in the binary log] +* binlog_format = MIXED: expect error since the engine is only statement capable and doesn't have row logging capability. +ERROR HY000: Cannot execute statement: impossible to write to binary log since statement is unsafe, storage engine is limited to statement-based logging, and BINLOG_FORMAT = MIXED. Statement is unsafe because it uses a system variable that may have a different value on the slave. +DROP TRIGGER double_autoinc_trig; +DROP TABLE t0, t1, t2, ta0, ta1, ta2, +autoinc_table, double_autoinc_table, +data_table, +trigger_table_1, trigger_table_2, trigger_table_3; +DROP FUNCTION myfunc_int; +DROP FUNCTION multi_unsafe_func; +==== Special system variables that should *not* be unsafe ==== +CREATE TABLE t1 (a VARCHAR(1000)); +CREATE TABLE autoinc_table (a INT PRIMARY KEY AUTO_INCREMENT); +INSERT INTO t1 VALUES (@@session.auto_increment_increment); +INSERT INTO t1 VALUES (@@session.auto_increment_offset); +INSERT INTO t1 VALUES (@@session.character_set_client); +INSERT INTO t1 VALUES (@@session.character_set_connection); +INSERT INTO t1 VALUES (@@session.character_set_database); +INSERT INTO t1 VALUES (@@session.character_set_server); +INSERT INTO t1 VALUES (@@session.collation_connection); +INSERT INTO t1 VALUES (@@session.collation_database); +INSERT INTO t1 VALUES (@@session.collation_server); +INSERT INTO t1 VALUES (@@session.foreign_key_checks); +INSERT INTO t1 VALUES (@@session.identity); +INSERT INTO t1 VALUES (@@session.last_insert_id); +INSERT INTO t1 VALUES (@@session.lc_time_names); +INSERT INTO t1 VALUES (@@session.pseudo_thread_id); +INSERT INTO t1 VALUES (@@session.sql_auto_is_null); +INSERT INTO t1 VALUES (@@session.timestamp); +INSERT INTO t1 VALUES (@@session.time_zone); +INSERT INTO t1 VALUES (@@session.unique_checks); +SET @my_var= 4711; +INSERT INTO t1 VALUES (@my_var); +SET insert_id= 12; +INSERT INTO autoinc_table VALUES (NULL); +The following variables *should* give a warning, despite they are replicated. +INSERT INTO t1 VALUES (@@session.sql_mode); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +INSERT INTO t1 VALUES (@@session.insert_id); +Warnings: +Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system variable that may have a different value on the slave. +DROP TABLE t1, autoinc_table; +SET GLOBAL debug= @old_debug; +"End of tests" diff -Nru mysql-5.7-5.7.25/mysql-test/suite/binlog/t/binlog_gtid_unknown_xid.test mysql-5.7-5.7.26/mysql-test/suite/binlog/t/binlog_gtid_unknown_xid.test --- mysql-5.7-5.7.25/mysql-test/suite/binlog/t/binlog_gtid_unknown_xid.test 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/suite/binlog/t/binlog_gtid_unknown_xid.test 2019-04-13 13:32:15.000000000 +0000 @@ -96,6 +96,7 @@ XA START 'xa1'; XA END 'xa1'; XA PREPARE 'xa1'; +--let $connection_id= `SELECT CONNECTION_ID()` --disconnect other_conn # Wait for the `other_conn` to be cleared from the server --connection default diff -Nru mysql-5.7-5.7.25/mysql-test/suite/binlog/t/binlog_unsafe-master.opt mysql-5.7-5.7.26/mysql-test/suite/binlog/t/binlog_unsafe-master.opt --- mysql-5.7-5.7.25/mysql-test/suite/binlog/t/binlog_unsafe-master.opt 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/suite/binlog/t/binlog_unsafe-master.opt 2019-04-13 13:32:15.000000000 +0000 @@ -1 +1 @@ -$UDF_EXAMPLE_LIB_OPT --log-output=file,table +$UDF_EXAMPLE_LIB_OPT --log-output=file,table --thread-stack=512K diff -Nru mysql-5.7-5.7.25/mysql-test/suite/binlog/t/binlog_unsafe_stmt_capable_engine-master.opt mysql-5.7-5.7.26/mysql-test/suite/binlog/t/binlog_unsafe_stmt_capable_engine-master.opt --- mysql-5.7-5.7.25/mysql-test/suite/binlog/t/binlog_unsafe_stmt_capable_engine-master.opt 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/suite/binlog/t/binlog_unsafe_stmt_capable_engine-master.opt 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1 @@ +$UDF_EXAMPLE_LIB_OPT --thread-stack=512K diff -Nru mysql-5.7-5.7.25/mysql-test/suite/binlog/t/binlog_unsafe_stmt_capable_engine.test mysql-5.7-5.7.26/mysql-test/suite/binlog/t/binlog_unsafe_stmt_capable_engine.test --- mysql-5.7-5.7.25/mysql-test/suite/binlog/t/binlog_unsafe_stmt_capable_engine.test 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/suite/binlog/t/binlog_unsafe_stmt_capable_engine.test 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,351 @@ +# ==== Background ==== +# +# Some statements may execute differently on master and slave when +# logged in statement format. Such statements are called unsafe. +# Unsafe statements include: +# +# - statements using @@variables (with a small number of exceptions; +# see below); +# - statements using certain functions, e.g., UUID(); +# - statements using LIMIT; +# - insert into two autoinc columns; +# - statements using UDF's. +# - statements reading from log tables in the mysql database. +# - INSERT ... SELECT ... ON DUPLICATE KEY UPDATE +# - REPLACE ... SELECT +# - CREATE TABLE [IGNORE/REPLACE] SELECT +# - INSERT IGNORE...SELECT +# - UPDATE IGNORE +# - INSERT... ON DUPLICATE KEY UPDATE on a table with two UNIQUE KEYS +# +# Note that statements that use stored functions, stored procedures, +# triggers, views, or prepared statements that invoke unsafe +# statements shall also be unsafe. +# +# Unsafeness of a statement shall have the following consequences: +# +# 1. If the binlogging is on, for any unsafe statement, +# - If binlog_format=STATEMENT, the statement shall give a warning. +# - If binlog_format=MIXED or binlog_format=ROW, the statement shall +# be logged in row format if the engine is capable of logging in row format. +# +# 2. If the binlogging is on, for any unsafe statement, +# - If binlog_format=STATEMENT, the statement shall give a warning. +# - If binlog_format=MIXED or binlog_format=ROW, the statement shall +# error out if the engine is only statement capable. +# +# 3. If binlogging is off or the statement is not logged (e.g. SELECT +# UUID()), no warning shall be issued and the statement shall not +# be logged. +# +# Moreover, when a sub-statement of a recursive construct (i.e., +# stored function, stored procedure, trigger, view, or prepared +# statement) is unsafe and binlog_format=STATEMENT, then a warning +# shall be issued for every recursive construct. In effect, this +# creates a stack trace from the top-level statement to the unsafe +# statement. +# +# ==== Purpose ==== +# +# Most of this test is copied from the test binlog_unsafe, +# but here we test the logging of unsafe statements when +# storage engine is only capable of logging in statement format. +# +# This test verifies that warning/error is generated when it should, +# according to the above rules when storage engine is only statement capable. +# +# All @@variables should be unsafe, with some exceptions. Therefore, +# this test also verifies that the exceptions do *not* generate a +# warning. +# +# ==== Method ==== +# +# 1. Each type of statements listed above is executed. +# +# 2. Each unsafe statement is wrapped in each type of recursive +# construct (stored function, stored procedure, trigger, view, or +# prepared statement). +# +# 3. Each unsafe statement is wrapped in two levels of recursive +# constructs (function invoking trigger invoking UUID(), etc). +# +# We try to insert the variables that should not be unsafe into a +# table, and verify that *no* warning is issued. +# +# Execute a unsafe statement calling a trigger or stored function +# or neither when SQL_LOG_BIN is turned ON, a warning/error should be issued +# Execute a unsafe statement calling a trigger or stored function +# or neither when @@SQL_LOG_BIN is turned OFF, +# no warning/error is issued +# +# ==== References ==== +# +# https://dev.mysql.com/doc/refman/5.6/en/binary-log-mixed.html +# +# ==== Related bugs ==== +# +# Bug#28429993: IF THE STORAGE ENGINE SUPPORTS RBR, UNSAFE SQL STATEMENTES END UP IN BINLOG + +--source include/have_udf.inc +--source include/have_debug.inc +--source include/have_log_bin.inc +--source include/have_binlog_format_statement.inc +--source include/not_gtid_enabled.inc + +--disable_query_log +call mtr.add_suppression("Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT"); +--enable_query_log + +--echo #### Setup tables #### + +CREATE TABLE t0 (a CHAR(100)); +CREATE TABLE t1 (a CHAR(100)); +CREATE TABLE t2 (a CHAR(100)); +CREATE TABLE ta0 (a CHAR(100)); +CREATE TABLE ta1 (a CHAR(100)); +CREATE TABLE ta2 (a CHAR(100)); +CREATE TABLE autoinc_table (a INT PRIMARY KEY AUTO_INCREMENT); +CREATE TABLE data_table (a CHAR(100)); +INSERT INTO data_table VALUES ('foo'); +CREATE TABLE trigger_table_1 (a INT); +CREATE TABLE trigger_table_2 (a INT); +CREATE TABLE trigger_table_3 (a INT); +CREATE TABLE double_autoinc_table (a INT PRIMARY KEY AUTO_INCREMENT); + +# Make the storage engine log only in statement format. +SET @old_debug= @@global.debug; +SET GLOBAL debug='+d,make_stmt_only_engines'; + +--DELIMITER | +CREATE TRIGGER double_autoinc_trig +BEFORE INSERT ON double_autoinc_table FOR EACH ROW +BEGIN + INSERT INTO autoinc_table VALUES (NULL); +END| + +CREATE FUNCTION multi_unsafe_func() RETURNS INT +BEGIN + INSERT INTO t0 VALUES(CONCAT(@@hostname, @@hostname)); + INSERT INTO t0 VALUES(0); + INSERT INTO t0 VALUES(CONCAT(UUID(), @@hostname)); + RETURN 1; +END| +--DELIMITER ; + +--replace_result $UDF_EXAMPLE_LIB UDF_EXAMPLE_LIB +--eval CREATE FUNCTION myfunc_int RETURNS INTEGER SONAME "$UDF_EXAMPLE_LIB" + +# In each iteration of this loop, we select one method to make the +# statement unsafe. +--let $unsafe_type= 0 +while ($unsafe_type < 7) { + + --echo + + if ($unsafe_type == 0) { + --echo ==== Testing UUID() unsafeness ==== + --let $desc_0= unsafe UUID() function + --let $stmt_sidef_0= INSERT INTO t0 VALUES (UUID()) + --let $value_0= UUID() + --let $sel_sidef_0= + --let $sel_retval_0= SELECT UUID() + --let $CRC_ARG_expected_number_of_warnings= 1 + --let $CRC_ARG_expected_number_of_deprecation_warnings= 0 + } + + if ($unsafe_type == 1) { + --echo ==== Testing @@hostname unsafeness ==== + --let $desc_0= unsafe @@hostname variable + --let $stmt_sidef_0= INSERT INTO t0 VALUES (@@hostname) + --let $value_0= @@hostname + --let $sel_sidef_0= + # $sel_retval is going to be used in views. Views cannot execute + # statements that refer to @@variables. Hence, we set $set_retval + # to empty instead of SELECT @@hostname. + --let $sel_retval_0= + --let $CRC_ARG_expected_number_of_warnings= 1 + --let $CRC_ARG_expected_number_of_deprecation_warnings= 0 + } + + if ($unsafe_type == 2) { + --echo ==== Testing SELECT...LIMIT unsafeness ==== + --let $desc_0= unsafe SELECT...LIMIT statement + --let $stmt_sidef_0= INSERT INTO t0 SELECT * FROM data_table LIMIT 1 + --let $value_0= + --let $sel_sidef_0= + --let $sel_retval_0= SELECT * FROM data_table LIMIT 1 + --let $CRC_ARG_expected_number_of_warnings= 1 + --let $CRC_ARG_expected_number_of_deprecation_warnings= 0 + } + + if ($unsafe_type == 3) { + --echo ==== Testing unsafeness of insert of two autoinc values ==== + --let $desc_0= unsafe update of two autoinc columns + --let $stmt_sidef_0= INSERT INTO double_autoinc_table VALUES (NULL) + --let $value_0= + --let $sel_sidef_0= + --let $sel_retval_0= + --let $CRC_ARG_expected_number_of_warnings= 1 + --let $CRC_ARG_expected_number_of_deprecation_warnings= 0 + } + + if ($unsafe_type == 4) { + --echo ==== Testing unsafeness of UDF's ==== + --let $desc_0= unsafe UDF + --let $stmt_sidef_0= INSERT INTO t0 VALUES (myfunc_int(10)) + --let $value_0= myfunc_int(10) + --let $sel_sidef_0= SELECT myfunc_int(10) + --let $sel_retval_0= + --let $CRC_ARG_expected_number_of_warnings= 1 + --let $CRC_ARG_expected_number_of_deprecation_warnings= 0 + } + + if ($unsafe_type == 5) { + --echo ==== Testing unsafeness of access to mysql.general_log ==== + --let $desc_0= unsafe use of mysql.general_log + --let $stmt_sidef_0= INSERT INTO t0 SELECT COUNT(*) FROM mysql.general_log + --let $value_0= + --let $sel_sidef_0= + --let $sel_retval_0= SELECT COUNT(*) FROM mysql.general_log + --let $CRC_ARG_expected_number_of_warnings= 1 + --let $CRC_ARG_expected_number_of_deprecation_warnings= 0 + } + + if ($unsafe_type == 6) { + --echo ==== Testing a statement that is unsafe several times ==== + --let $desc_0= statement that is unsafe several times + --let $stmt_sidef_0= INSERT INTO ta0 VALUES (multi_unsafe_func()) + --let $value_0= + --let $sel_sidef_0= SELECT multi_unsafe_func() + --let $sel_retval_0= + --let $CRC_ARG_expected_number_of_warnings= 2 + --let $CRC_ARG_expected_number_of_deprecation_warnings= 0 + } + + # In each iteration of the following loop, we select one way to + # enclose the unsafe statement as a sub-statement of a recursive + # construct (i.e., a function, procedure, trigger, view, or prepared + # statement). + # + # In the last iteration, $call_type_1=7, we don't create a recursive + # construct. Instead, we just invoke the unsafe statement directly. + + --let $call_type_1= 0 + while ($call_type_1 < 8) { + #--echo debug: level 1, types $call_type_1 -> $unsafe_type + --let $CRC_ARG_level= 1 + --let $CRC_ARG_type= $call_type_1 + --let $CRC_ARG_stmt_sidef= $stmt_sidef_0 + --let $CRC_ARG_value= $value_0 + --let $CRC_ARG_sel_sidef= $sel_sidef_0 + --let $CRC_ARG_sel_retval= $sel_retval_0 + --let $CRC_ARG_desc= $desc_0 + --source extra/rpl_tests/create_recursive_construct_stmt_capable_engine.inc + --let $stmt_sidef_1= $CRC_RET_stmt_sidef + --let $value_1= $CRC_RET_value + --let $sel_sidef_1= $CRC_RET_sel_sidef + --let $sel_retval_1= $CRC_RET_sel_retval + --let $is_toplevel_1= $CRC_RET_is_toplevel + --let $drop_1= $CRC_RET_drop + --let $desc_1= $CRC_RET_desc + + # Some statements must be top-level statements, i.e., cannot be + # called as a sub-statement of any recursive construct. (One + # example is 'EXECUTE prepared_stmt'). When + # create_recursive_construct_stmt_capable_engine.inc creates a top-level statement, it + # sets $CRC_RET_is_toplevel=1. + + if (!$is_toplevel_1) { + + # In each iteration of this loop, we select one way to enclose + # the previous recursive construct in another recursive + # construct. + + --let $call_type_2= 0 + while ($call_type_2 < 7) { + #--echo debug: level 2, types $call_type_2 -> $call_type_1 -> $unsafe_type + --let $CRC_ARG_level= 2 + --let $CRC_ARG_type= $call_type_2 + --let $CRC_ARG_stmt_sidef= $stmt_sidef_1 + --let $CRC_ARG_value= $value_1 + --let $CRC_ARG_sel_sidef= $sel_sidef_1 + --let $CRC_ARG_sel_retval= $sel_retval_1 + --let $CRC_ARG_desc= $desc_1 + --source extra/rpl_tests/create_recursive_construct_stmt_capable_engine.inc + --let $stmt_sidef_2= $CRC_RET_stmt_sidef + --let $value_2= $CRC_RET_value + --let $sel_sidef_2= $CRC_RET_sel_sidef + --let $sel_retval_2= $CRC_RET_sel_retval + --let $is_toplevel_2= $CRC_RET_is_toplevel + --let $drop_2= $CRC_RET_drop + --let $desc_2= $CRC_RET_desc + + # Drop created object. + if ($drop_2) { + --eval $drop_2 + } + --inc $call_type_2 + } # while (call_type_2) + } # if (!is_toplevel_1) + + # Drop created object. + if ($drop_1) { + --eval $drop_1 + } + --inc $call_type_1 + } # while (call_type_1) + + --inc $unsafe_type +} # while (unsafe_type) + +DROP TRIGGER double_autoinc_trig; +DROP TABLE t0, t1, t2, ta0, ta1, ta2, + autoinc_table, double_autoinc_table, + data_table, + trigger_table_1, trigger_table_2, trigger_table_3; +DROP FUNCTION myfunc_int; +DROP FUNCTION multi_unsafe_func; + + +--echo ==== Special system variables that should *not* be unsafe ==== + +CREATE TABLE t1 (a VARCHAR(1000)); +CREATE TABLE autoinc_table (a INT PRIMARY KEY AUTO_INCREMENT); + +INSERT INTO t1 VALUES (@@session.auto_increment_increment); +INSERT INTO t1 VALUES (@@session.auto_increment_offset); +INSERT INTO t1 VALUES (@@session.character_set_client); +INSERT INTO t1 VALUES (@@session.character_set_connection); +INSERT INTO t1 VALUES (@@session.character_set_database); +INSERT INTO t1 VALUES (@@session.character_set_server); +INSERT INTO t1 VALUES (@@session.collation_connection); +INSERT INTO t1 VALUES (@@session.collation_database); +INSERT INTO t1 VALUES (@@session.collation_server); +INSERT INTO t1 VALUES (@@session.foreign_key_checks); +INSERT INTO t1 VALUES (@@session.identity); +INSERT INTO t1 VALUES (@@session.last_insert_id); +INSERT INTO t1 VALUES (@@session.lc_time_names); +INSERT INTO t1 VALUES (@@session.pseudo_thread_id); +INSERT INTO t1 VALUES (@@session.sql_auto_is_null); +INSERT INTO t1 VALUES (@@session.timestamp); +INSERT INTO t1 VALUES (@@session.time_zone); +INSERT INTO t1 VALUES (@@session.unique_checks); + +SET @my_var= 4711; +INSERT INTO t1 VALUES (@my_var); + +# using insert_id implicitly should be ok. +SET insert_id= 12; +INSERT INTO autoinc_table VALUES (NULL); + +# See set_var.cc for explanation. +--echo The following variables *should* give a warning, despite they are replicated. +INSERT INTO t1 VALUES (@@session.sql_mode); +INSERT INTO t1 VALUES (@@session.insert_id); + + +DROP TABLE t1, autoinc_table; + +# Clean up +SET GLOBAL debug= @old_debug; +--echo "End of tests" diff -Nru mysql-5.7-5.7.25/mysql-test/suite/innodb/r/index_length.result mysql-5.7-5.7.26/mysql-test/suite/innodb/r/index_length.result --- mysql-5.7-5.7.25/mysql-test/suite/innodb/r/index_length.result 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/suite/innodb/r/index_length.result 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,32 @@ +CREATE TABLE abc(a int auto_increment PRIMARY KEY, b varchar(1024), c +varchar(1024))ENGINE=INNODB; +INSERT INTO abc (b,c) VALUES (repeat('b', 1024), repeat('c', 1024)); +INSERT INTO abc (b,c) SELECT b,c FROM abc; +INSERT INTO abc (b,c) SELECT b,c FROM abc; +INSERT INTO abc (b,c) SELECT b,c FROM abc; +INSERT INTO abc (b,c) SELECT b,c FROM abc; +INSERT INTO abc (b,c) SELECT b,c FROM abc; +INSERT INTO abc (b,c) SELECT b,c FROM abc; +INSERT INTO abc (b,c) SELECT b,c FROM abc; +INSERT INTO abc (b,c) SELECT b,c FROM abc; +INSERT INTO abc (b,c) SELECT b,c FROM abc; +INSERT INTO abc (b,c) SELECT b,c FROM abc; +INSERT INTO abc (b,c) SELECT b,c FROM abc; +INSERT INTO abc (b,c) SELECT b,c FROM abc; +INSERT INTO abc (b,c) SELECT b,c FROM abc; +INSERT INTO abc (b,c) SELECT b,c FROM abc; +SELECT DATA_LENGTH, INDEX_LENGTH from information_schema.TABLES WHERE +TABLE_SCHEMA = 'test' AND TABLE_NAME = 'abc'; +DATA_LENGTH INDEX_LENGTH +# 0 +ALTER TABLE abc add INDEX cc (c(800)); +SELECT DATA_LENGTH, INDEX_LENGTH from information_schema.TABLES WHERE +TABLE_SCHEMA = 'test' AND TABLE_NAME = 'abc'; +DATA_LENGTH INDEX_LENGTH +# 17809408 +ALTER TABLE abc add INDEX bb (b(800)); +SELECT DATA_LENGTH, INDEX_LENGTH from information_schema.TABLES WHERE +TABLE_SCHEMA = 'test' AND TABLE_NAME = 'abc'; +DATA_LENGTH INDEX_LENGTH +# 35618816 +DROP TABLE abc; diff -Nru mysql-5.7-5.7.25/mysql-test/suite/innodb/r/iodku_debug.result mysql-5.7-5.7.26/mysql-test/suite/innodb/r/iodku_debug.result --- mysql-5.7-5.7.25/mysql-test/suite/innodb/r/iodku_debug.result 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/suite/innodb/r/iodku_debug.result 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,34 @@ +# +# Bug#25966845 INSERT ON DUPLICATE KEY GENERATE A DEADLOCK +# +CREATE TABLE t1(f1 int primary key, +f2 int, f3 int, unique key(f2))engine=innodb; +SHOW CREATE TABLE t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `f1` int(11) NOT NULL, + `f2` int(11) DEFAULT NULL, + `f3` int(11) DEFAULT NULL, + PRIMARY KEY (`f1`), + UNIQUE KEY `f2` (`f2`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 +INSERT INTO t1(f1, f2, f3) VALUES(1, 10, 100); +# Connection default +BEGIN; +INSERT INTO t1 VALUES(2, 20, 300) ON DUPLICATE KEY UPDATE f3 = 500; +# Connection other: +BEGIN; +SET DEBUG_SYNC = 'ib_after_row_insert_step SIGNAL default_commit'; +INSERT INTO t1 VALUES(2, 10, 200) ON DUPLICATE KEY UPDATE f3 = 120; +# Connection default +SET DEBUG_SYNC = 'now WAIT_FOR default_commit'; +COMMIT; +# Connection other +COMMIT; +# Verify Results: +SELECT * FROM t1; +f1 f2 f3 +1 10 100 +2 20 120 +SET DEBUG_SYNC ='RESET'; +DROP TABLE t1; diff -Nru mysql-5.7-5.7.25/mysql-test/suite/innodb/r/iodku.result mysql-5.7-5.7.26/mysql-test/suite/innodb/r/iodku.result --- mysql-5.7-5.7.25/mysql-test/suite/innodb/r/iodku.result 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/suite/innodb/r/iodku.result 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,254 @@ +# +# Bug #28799261 IODKU UNNECESSARILY GAP-LOCKS SECONDARY INDEXES +# AFTER DUPLICATE IS ALREADY FOUND +# +CREATE TABLE t1 (a INT UNIQUE KEY, b INT UNIQUE KEY, c INT) ENGINE = InnoDB; +SHOW CREATE TABLE t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `a` int(11) DEFAULT NULL, + `b` int(11) DEFAULT NULL, + `c` int(11) DEFAULT NULL, + UNIQUE KEY `a` (`a`), + UNIQUE KEY `b` (`b`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 +# Scenario 1: Serialized transactions (trx1, trx2) +INSERT INTO t1 VALUES (1, 1, 1); +SELECT * FROM t1; +a b c +1 1 1 +# Transaction trx1 +START TRANSACTION; +INSERT INTO t1 VALUES (2, 2, 3) ON DUPLICATE KEY UPDATE c=VALUES(c); +COMMIT; +# Transaction trx2 +START TRANSACTION; +INSERT INTO t1 VALUES (2, 1, 2) ON DUPLICATE KEY UPDATE c=VALUES(c); +INSERT INTO t1 VALUES (2, 3, 4) ON DUPLICATE KEY UPDATE c=VALUES(c); +COMMIT; +# Result: +SELECT * FROM t1; +a b c +1 1 1 +2 2 4 +# Cleanup +DROP TABLE t1; +CREATE TABLE t1 (a INT UNIQUE KEY, b INT UNIQUE KEY, c INT) ENGINE = InnoDB; +SHOW CREATE TABLE t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `a` int(11) DEFAULT NULL, + `b` int(11) DEFAULT NULL, + `c` int(11) DEFAULT NULL, + UNIQUE KEY `a` (`a`), + UNIQUE KEY `b` (`b`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 +# Scenario 2: Serialized transactions (trx2, trx1) +INSERT INTO t1 VALUES (1, 1, 1); +SELECT * FROM t1; +a b c +1 1 1 +# Transaction trx2 +START TRANSACTION; +INSERT INTO t1 VALUES (2, 1, 2) ON DUPLICATE KEY UPDATE c=VALUES(c); +INSERT INTO t1 VALUES (2, 3, 4) ON DUPLICATE KEY UPDATE c=VALUES(c); +COMMIT; +# Transaction trx1 +START TRANSACTION; +INSERT INTO t1 VALUES (2, 2, 3) ON DUPLICATE KEY UPDATE c=VALUES(c); +COMMIT; +# Result: +SELECT * FROM t1; +a b c +1 1 2 +2 3 3 +# Cleanup +DROP TABLE t1; +# +# Bug #11758237 INSERT ON DUPLICATE KEY UPDATE SOMETIMES +# WRITES BINLOG POSITION INCORRECT +# +CREATE TABLE t1 (a INT UNIQUE KEY, b INT UNIQUE KEY, c INT) ENGINE = InnoDB; +SHOW CREATE TABLE t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `a` int(11) DEFAULT NULL, + `b` int(11) DEFAULT NULL, + `c` int(11) DEFAULT NULL, + UNIQUE KEY `a` (`a`), + UNIQUE KEY `b` (`b`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 +# Scenario 3: Interleaved transactions (trx1 conflicts on index b) +INSERT INTO t1 VALUES (1, 1, 1); +SELECT * FROM t1; +a b c +1 1 1 +# Connection default: +# Transaction trx1: +START TRANSACTION; +INSERT INTO t1 VALUES (2, 1, 2) ON DUPLICATE KEY UPDATE c=VALUES(c); +SELECT * FROM t1; +a b c +1 1 2 +# Connection other: +INSERT INTO t1 VALUES (2, 2, 3) ON DUPLICATE KEY UPDATE c=VALUES(c); +# Connection default: +INSERT INTO t1 VALUES (2, 3, 4) ON DUPLICATE KEY UPDATE c=VALUES(c); +SELECT * FROM t1; +a b c +1 1 2 +2 3 4 +COMMIT; +# Connection other: +# Connection default: +# Result: +SELECT * FROM t1; +a b c +1 1 2 +2 3 3 +# Cleanup +DROP TABLE t1; +CREATE TABLE t1 (a INT UNIQUE KEY, b INT UNIQUE KEY, c INT) ENGINE = InnoDB; +SHOW CREATE TABLE t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `a` int(11) DEFAULT NULL, + `b` int(11) DEFAULT NULL, + `c` int(11) DEFAULT NULL, + UNIQUE KEY `a` (`a`), + UNIQUE KEY `b` (`b`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 +# Scenario 4: Serialized transactions (trx1, trx2) +INSERT INTO t1 VALUES (1, 1, 1); +SELECT * FROM t1; +a b c +1 1 1 +# Transaction trx1 +START TRANSACTION; +INSERT INTO t1 VALUES (2, 2, 3) ON DUPLICATE KEY UPDATE c=VALUES(c); +COMMIT; +# Transaction trx2 +START TRANSACTION; +INSERT INTO t1 VALUES (1, 2, 2) ON DUPLICATE KEY UPDATE c=VALUES(c); +INSERT INTO t1 VALUES (3, 2, 4) ON DUPLICATE KEY UPDATE c=VALUES(c); +COMMIT; +# Result: +SELECT * FROM t1; +a b c +1 1 2 +2 2 4 +# Cleanup +DROP TABLE t1; +CREATE TABLE t1 (a INT UNIQUE KEY, b INT UNIQUE KEY, c INT) ENGINE = InnoDB; +SHOW CREATE TABLE t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `a` int(11) DEFAULT NULL, + `b` int(11) DEFAULT NULL, + `c` int(11) DEFAULT NULL, + UNIQUE KEY `a` (`a`), + UNIQUE KEY `b` (`b`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 +# Scenario 5: Serialized transactions (trx2, trx1) +INSERT INTO t1 VALUES (1, 1, 1); +SELECT * FROM t1; +a b c +1 1 1 +# Transaction trx2 +START TRANSACTION; +INSERT INTO t1 VALUES (1, 2, 2) ON DUPLICATE KEY UPDATE c=VALUES(c); +INSERT INTO t1 VALUES (3, 2, 4) ON DUPLICATE KEY UPDATE c=VALUES(c); +COMMIT; +# Transaction trx1 +START TRANSACTION; +INSERT INTO t1 VALUES (2, 2, 3) ON DUPLICATE KEY UPDATE c=VALUES(c); +COMMIT; +# Result: +SELECT * FROM t1; +a b c +1 1 2 +3 2 3 +# Cleanup +DROP TABLE t1; +CREATE TABLE t1 (a INT UNIQUE KEY, b INT UNIQUE KEY, c INT) ENGINE = InnoDB; +SHOW CREATE TABLE t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `a` int(11) DEFAULT NULL, + `b` int(11) DEFAULT NULL, + `c` int(11) DEFAULT NULL, + UNIQUE KEY `a` (`a`), + UNIQUE KEY `b` (`b`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 +# Scenario 6: Interleaved transactions (trx1 conflicts on index a) +INSERT INTO t1 VALUES (1, 1, 1); +SELECT * FROM t1; +a b c +1 1 1 +# Connection default: +# Transaction trx1: +START TRANSACTION; +INSERT INTO t1 VALUES (1, 2, 2) ON DUPLICATE KEY UPDATE c=VALUES(c); +SELECT * FROM t1; +a b c +1 1 2 +# Connection other: +START TRANSACTION; +SET innodb_lock_wait_timeout = 1; +INSERT INTO t1 VALUES (2, 2, 3) ON DUPLICATE KEY UPDATE c=VALUES(c); +ERROR HY000: Lock wait timeout exceeded; try restarting transaction +COMMIT; +# Connection default: +INSERT INTO t1 VALUES (3, 2, 4) ON DUPLICATE KEY UPDATE c=VALUES(c); +COMMIT; +# Result: +SELECT * FROM t1; +a b c +1 1 2 +3 2 4 +# Cleanup +DROP TABLE t1; +CREATE TABLE t1(f1 INT PRIMARY KEY, +f2 INT, f3 INT, UNIQUE KEY(f2))ENGINE=INNODB; +SHOW CREATE TABLE t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `f1` int(11) NOT NULL, + `f2` int(11) DEFAULT NULL, + `f3` int(11) DEFAULT NULL, + PRIMARY KEY (`f1`), + UNIQUE KEY `f2` (`f2`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 +INSERT INTO t1(f1, f2, f3) VALUES(1, 10, 100); +SELECT * FROM t1; +f1 f2 f3 +1 10 100 +# Connection other: +START TRANSACTION; +INSERT INTO t1 VALUES(2, 10, 200) ON DUPLICATE KEY UPDATE f3 = 120; +# Connection default +START TRANSACTION; +SET innodb_lock_wait_timeout = 1; +INSERT INTO t1 VALUES(2, 20, 300) ON DUPLICATE KEY UPDATE f3 = 500; +ERROR HY000: Lock wait timeout exceeded; try restarting transaction +COMMIT; +# Connection other: +COMMIT; +# Connection default +# Verify Results: +SELECT * FROM t1; +f1 f2 f3 +1 10 120 +DROP TABLE t1; +CREATE TABLE t1(f1 INT AUTO_INCREMENT PRIMARY KEY, f2 INT, f3 INT, +UNIQUE KEY(f2),UNIQUE KEY(f3))ENGINE=INNODB; +INSERT INTO t1(f2,f3) VALUES(10, 100); +INSERT INTO t1(f2,f3) VALUES(20, 200); +UPDATE t1 SET f2=30,f3=100 WHERE f2 = 20; +ERROR 23000: Duplicate entry '100' for key 'f3' +SELECT * FROM t1; +f1 f2 f3 +1 10 100 +2 20 200 +COMMIT; +DROP TABLE t1; diff -Nru mysql-5.7-5.7.25/mysql-test/suite/innodb/r/table_encrypt_5.result mysql-5.7-5.7.26/mysql-test/suite/innodb/r/table_encrypt_5.result --- mysql-5.7-5.7.25/mysql-test/suite/innodb/r/table_encrypt_5.result 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/suite/innodb/r/table_encrypt_5.result 2019-04-13 13:32:15.000000000 +0000 @@ -709,9 +709,10 @@ 9 aaaaaaaaaaaaaaaa0001 {"key_a": 1, "key_b": 2, "key_c": 3} 1 2 POINT(383293632 1754448) 13 aaaaaaaaaaaaaaaa0001 {"key_a": 1, "key_b": 2, "key_c": 3} 1 2 POINT(383293632 1754448) 14 aaaaaaaaaaaaaaaa0001 {"key_a": 1, "key_b": 2, "key_c": 3} 1 2 POINT(383293632 1754448) -# restart without --early-plugin-load and keyring_file_data -# AND explicitly install plugin to access old table -# restart: +# restart without --early-plugin-load (still need to provide with +# keyring_file_data otherwise it would point to default location which might be +# non-writable to mtr). Instead explicitly install plugin to access old table +# restart: --loose-keyring_file_data=MYSQL_TMP_DIR/mydummy_keyring # Install keyring plugin INSTALL PLUGIN keyring_file SONAME 'keyring_file.so'; # Set keyring_file_data as old file so as to access old tables diff -Nru mysql-5.7-5.7.25/mysql-test/suite/innodb/r/tinytext-groupby.result mysql-5.7-5.7.26/mysql-test/suite/innodb/r/tinytext-groupby.result --- mysql-5.7-5.7.25/mysql-test/suite/innodb/r/tinytext-groupby.result 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/suite/innodb/r/tinytext-groupby.result 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,33 @@ +# +# Bug #29207450 TINYTEXT COLUMN TAKES LONG TIME IN THE GROUP BY OPERATION. +# +create table t1 (id serial primary key auto_increment,a varchar(100),b varchar(100)); +create table t2 (id serial primary key auto_increment,a varchar(100),b tinytext); +insert into t1 (a, b) values('a', '746d847beb7e'),('a','746d847beb7e'),('a', '746d847beb7e'),('a','746d847beb7e'),('a','746d847beb7e'); +insert into t1 (a, b) select 'a', '746d847beb7e' from t1 t1,t1 t2,t1 t3,t1 t4; +insert into t1 (a, b) select 'a', '746d847beb7e' from t1 t1,t1 t2; +insert into t2 (a, b) values('a', '746d847beb7e'),('a','746d847beb7e'),('a', '746d847beb7e'),('a','746d847beb7e'),('a','746d847beb7e'); +insert into t2 (a, b) select 'a', '746d847beb7e' from t2 t1,t2 t2,t2 t3,t2 t4; +insert into t2 (a, b) select 'a', '746d847beb7e' from t2 t1,t2 t2; +select count(*) from t1; +count(*) +397530 +select count(*) from t2; +count(*) +397530 +set global internal_tmp_disk_storage_engine = 'innodb'; +select b, count(*) from t1 group by b; +b count(*) +746d847beb7e 397530 +select b, count(*) from t2 group by b; +b count(*) +746d847beb7e 397530 +set global internal_tmp_disk_storage_engine = 'myisam'; +select b, count(*) from t1 group by b; +b count(*) +746d847beb7e 397530 +select b, count(*) from t2 group by b; +b count(*) +746d847beb7e 397530 +set global internal_tmp_disk_storage_engine = default; +drop table t1, t2; diff -Nru mysql-5.7-5.7.25/mysql-test/suite/innodb/r/virtual_debug.result mysql-5.7-5.7.26/mysql-test/suite/innodb/r/virtual_debug.result --- mysql-5.7-5.7.25/mysql-test/suite/innodb/r/virtual_debug.result 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/suite/innodb/r/virtual_debug.result 2019-04-13 13:32:15.000000000 +0000 @@ -284,3 +284,28 @@ a d b c vbcol 200 300 1.3.1415926535 hello world .3 DROP TABLE t1; +# +# Bug#28825718 - ASSERTION FAILURE: TRX0REC.CC:NNN:N_IDX > 0 WHILE DOING REPLACE/INSERT +# +CREATE TABLE t1(a INT PRIMARY KEY, b INT, c INT GENERATED ALWAYS AS(b+1) VIRTUAL) ENGINE=InnoDB; +INSERT INTO t1(a, b) VALUES(1, 1); +SET DEBUG_SYNC = 'row_log_apply_after SIGNAL s1 WAIT_FOR s2'; +SET lock_wait_timeout = 1; +ALTER TABLE t1 ADD UNIQUE INDEX(c, b); +SET DEBUG_SYNC = 'now WAIT_FOR s1'; +SET DEBUG_SYNC = 'row_ins_sec_index_enter SIGNAL s2 WAIT_FOR s3'; +INSERT INTO t1(a, b) VALUES(2, 2); +/* con1 reap */ ALTER TABLE t1 ADD UNIQUE INDEX(c, b); +ERROR HY000: Lock wait timeout exceeded; try restarting transaction +SET DEBUG_SYNC ='now SIGNAL s3'; +ALTER TABLE t1 ADD KEY(b); +INSERT INTO t1(a, b) VALUES(3, 3); +SELECT * FROM t1; +a b c +1 1 2 +2 2 3 +3 3 4 +CHECK TABLE t1; +Table Op Msg_type Msg_text +test.t1 check status OK +DROP TABLE t1; diff -Nru mysql-5.7-5.7.25/mysql-test/suite/innodb/t/check_sector_size-master.opt mysql-5.7-5.7.26/mysql-test/suite/innodb/t/check_sector_size-master.opt --- mysql-5.7-5.7.25/mysql-test/suite/innodb/t/check_sector_size-master.opt 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/suite/innodb/t/check_sector_size-master.opt 2019-04-13 13:32:15.000000000 +0000 @@ -1,3 +1,4 @@ --innodb_flush_method=O_DIRECT $KEYRING_PLUGIN_OPT $KEYRING_PLUGIN_LOAD +--loose-keyring-file-data=$MYSQL_TMP_DIR/mydummy_key diff -Nru mysql-5.7-5.7.25/mysql-test/suite/innodb/t/index_length.test mysql-5.7-5.7.26/mysql-test/suite/innodb/t/index_length.test --- mysql-5.7-5.7.25/mysql-test/suite/innodb/t/index_length.test 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/suite/innodb/t/index_length.test 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,31 @@ +--source include/have_innodb_16k.inc +CREATE TABLE abc(a int auto_increment PRIMARY KEY, b varchar(1024), c +varchar(1024))ENGINE=INNODB; +INSERT INTO abc (b,c) VALUES (repeat('b', 1024), repeat('c', 1024)); +INSERT INTO abc (b,c) SELECT b,c FROM abc; +INSERT INTO abc (b,c) SELECT b,c FROM abc; +INSERT INTO abc (b,c) SELECT b,c FROM abc; +INSERT INTO abc (b,c) SELECT b,c FROM abc; +INSERT INTO abc (b,c) SELECT b,c FROM abc; +INSERT INTO abc (b,c) SELECT b,c FROM abc; +INSERT INTO abc (b,c) SELECT b,c FROM abc; +INSERT INTO abc (b,c) SELECT b,c FROM abc; +INSERT INTO abc (b,c) SELECT b,c FROM abc; +INSERT INTO abc (b,c) SELECT b,c FROM abc; +INSERT INTO abc (b,c) SELECT b,c FROM abc; +INSERT INTO abc (b,c) SELECT b,c FROM abc; +INSERT INTO abc (b,c) SELECT b,c FROM abc; +INSERT INTO abc (b,c) SELECT b,c FROM abc; + +--replace_column 1 # +SELECT DATA_LENGTH, INDEX_LENGTH from information_schema.TABLES WHERE +TABLE_SCHEMA = 'test' AND TABLE_NAME = 'abc'; +ALTER TABLE abc add INDEX cc (c(800)); +--replace_column 1 # +SELECT DATA_LENGTH, INDEX_LENGTH from information_schema.TABLES WHERE +TABLE_SCHEMA = 'test' AND TABLE_NAME = 'abc'; +ALTER TABLE abc add INDEX bb (b(800)); +--replace_column 1 # +SELECT DATA_LENGTH, INDEX_LENGTH from information_schema.TABLES WHERE +TABLE_SCHEMA = 'test' AND TABLE_NAME = 'abc'; +DROP TABLE abc; diff -Nru mysql-5.7-5.7.25/mysql-test/suite/innodb/t/innodb-wl6045-linux.test mysql-5.7-5.7.26/mysql-test/suite/innodb/t/innodb-wl6045-linux.test --- mysql-5.7-5.7.25/mysql-test/suite/innodb/t/innodb-wl6045-linux.test 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/suite/innodb/t/innodb-wl6045-linux.test 2019-04-13 13:32:15.000000000 +0000 @@ -390,7 +390,7 @@ --echo # Test[5] for lock. --echo # Test Scenario: As mysqld is running, & then start the innochecksum which must fail. ---error 1,42 +--error 1 --exec $INNOCHECKSUM $MYSQLD_DATADIR/test/t1.ibd 2> $SEARCH_FILE let SEARCH_PATTERN=Error: Unable to lock file:: $MYSQLD_DATADIR/test/t1.ibd; --source include/search_pattern_in_file.inc diff -Nru mysql-5.7-5.7.25/mysql-test/suite/innodb/t/iodku_debug.test mysql-5.7-5.7.26/mysql-test/suite/innodb/t/iodku_debug.test --- mysql-5.7-5.7.25/mysql-test/suite/innodb/t/iodku_debug.test 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/suite/innodb/t/iodku_debug.test 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,44 @@ +--source include/have_innodb.inc +--source include/count_sessions.inc +--source include/have_debug.inc + +--echo # +--echo # Bug#25966845 INSERT ON DUPLICATE KEY GENERATE A DEADLOCK +--echo # + +CREATE TABLE t1(f1 int primary key, + f2 int, f3 int, unique key(f2))engine=innodb; + +SHOW CREATE TABLE t1; + +INSERT INTO t1(f1, f2, f3) VALUES(1, 10, 100); + +--echo # Connection default +BEGIN; +INSERT INTO t1 VALUES(2, 20, 300) ON DUPLICATE KEY UPDATE f3 = 500; + +--echo # Connection other: +--connect (other,localhost,root,,test,,) +BEGIN; +SET DEBUG_SYNC = 'ib_after_row_insert_step SIGNAL default_commit'; +--send INSERT INTO t1 VALUES(2, 10, 200) ON DUPLICATE KEY UPDATE f3 = 120 + +--echo # Connection default +connection default; +SET DEBUG_SYNC = 'now WAIT_FOR default_commit'; +COMMIT; + +--echo # Connection other +connection other; +--reap +COMMIT; + +connection default; +disconnect other; + +--echo # Verify Results: +SELECT * FROM t1; + +SET DEBUG_SYNC ='RESET'; +DROP TABLE t1; +--source include/wait_until_count_sessions.inc diff -Nru mysql-5.7-5.7.25/mysql-test/suite/innodb/t/iodku.test mysql-5.7-5.7.26/mysql-test/suite/innodb/t/iodku.test --- mysql-5.7-5.7.25/mysql-test/suite/innodb/t/iodku.test 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/suite/innodb/t/iodku.test 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,245 @@ +--echo # +--echo # Bug #28799261 IODKU UNNECESSARILY GAP-LOCKS SECONDARY INDEXES +--echo # AFTER DUPLICATE IS ALREADY FOUND +--echo # + +--source include/have_innodb.inc +--source include/count_sessions.inc + +#Test 1 +CREATE TABLE t1 (a INT UNIQUE KEY, b INT UNIQUE KEY, c INT) ENGINE = InnoDB; +SHOW CREATE TABLE t1; + +--echo # Scenario 1: Serialized transactions (trx1, trx2) +INSERT INTO t1 VALUES (1, 1, 1); +SELECT * FROM t1; + +--echo # Transaction trx1 +START TRANSACTION; +INSERT INTO t1 VALUES (2, 2, 3) ON DUPLICATE KEY UPDATE c=VALUES(c); +COMMIT; + +--echo # Transaction trx2 +START TRANSACTION; +INSERT INTO t1 VALUES (2, 1, 2) ON DUPLICATE KEY UPDATE c=VALUES(c); +INSERT INTO t1 VALUES (2, 3, 4) ON DUPLICATE KEY UPDATE c=VALUES(c); +COMMIT; + +--echo # Result: +SELECT * FROM t1; + +--echo # Cleanup +DROP TABLE t1; + +#Test 2 + +CREATE TABLE t1 (a INT UNIQUE KEY, b INT UNIQUE KEY, c INT) ENGINE = InnoDB; +SHOW CREATE TABLE t1; + +--echo # Scenario 2: Serialized transactions (trx2, trx1) +INSERT INTO t1 VALUES (1, 1, 1); +SELECT * FROM t1; + +--echo # Transaction trx2 +START TRANSACTION; +INSERT INTO t1 VALUES (2, 1, 2) ON DUPLICATE KEY UPDATE c=VALUES(c); +INSERT INTO t1 VALUES (2, 3, 4) ON DUPLICATE KEY UPDATE c=VALUES(c); +COMMIT; + +--echo # Transaction trx1 +START TRANSACTION; +INSERT INTO t1 VALUES (2, 2, 3) ON DUPLICATE KEY UPDATE c=VALUES(c); +COMMIT; + +--echo # Result: +SELECT * FROM t1; + +--echo # Cleanup +DROP TABLE t1; + +--echo # +--echo # Bug #11758237 INSERT ON DUPLICATE KEY UPDATE SOMETIMES +--echo # WRITES BINLOG POSITION INCORRECT +--echo # + +CREATE TABLE t1 (a INT UNIQUE KEY, b INT UNIQUE KEY, c INT) ENGINE = InnoDB; +SHOW CREATE TABLE t1; + +--echo # Scenario 3: Interleaved transactions (trx1 conflicts on index b) +INSERT INTO t1 VALUES (1, 1, 1); +SELECT * FROM t1; + +--echo # Connection default: + +--echo # Transaction trx1: +START TRANSACTION; +INSERT INTO t1 VALUES (2, 1, 2) ON DUPLICATE KEY UPDATE c=VALUES(c); +SELECT * FROM t1; + +--echo # Connection other: +--connect (other,localhost,root,,test,,) +--send +INSERT INTO t1 VALUES (2, 2, 3) ON DUPLICATE KEY UPDATE c=VALUES(c); + +--echo # Connection default: +--connection default +let $wait_condition= + SELECT COUNT(*) = 1 FROM information_schema.innodb_trx + WHERE trx_query = + 'INSERT INTO t1 VALUES (2, 2, 3) ON DUPLICATE KEY UPDATE c=VALUES(c)' AND + trx_operation_state = 'inserting' AND + trx_state = 'LOCK WAIT'; + +--source include/wait_condition.inc + +INSERT INTO t1 VALUES (2, 3, 4) ON DUPLICATE KEY UPDATE c=VALUES(c); +SELECT * FROM t1; +COMMIT; + +--echo # Connection other: +--connection other +reap; + +--echo # Connection default: +connection default; + +--echo # Result: +SELECT * FROM t1; + +--echo # Cleanup +DROP TABLE t1; + +#Test 4 +CREATE TABLE t1 (a INT UNIQUE KEY, b INT UNIQUE KEY, c INT) ENGINE = InnoDB; +SHOW CREATE TABLE t1; + +--echo # Scenario 4: Serialized transactions (trx1, trx2) +INSERT INTO t1 VALUES (1, 1, 1); +SELECT * FROM t1; + +--echo # Transaction trx1 +START TRANSACTION; +INSERT INTO t1 VALUES (2, 2, 3) ON DUPLICATE KEY UPDATE c=VALUES(c); +COMMIT; + +--echo # Transaction trx2 +START TRANSACTION; +INSERT INTO t1 VALUES (1, 2, 2) ON DUPLICATE KEY UPDATE c=VALUES(c); +INSERT INTO t1 VALUES (3, 2, 4) ON DUPLICATE KEY UPDATE c=VALUES(c); +COMMIT; + +--echo # Result: +SELECT * FROM t1; + +--echo # Cleanup +DROP TABLE t1; + +#Test 5 +CREATE TABLE t1 (a INT UNIQUE KEY, b INT UNIQUE KEY, c INT) ENGINE = InnoDB; +SHOW CREATE TABLE t1; + +--echo # Scenario 5: Serialized transactions (trx2, trx1) +INSERT INTO t1 VALUES (1, 1, 1); +SELECT * FROM t1; + +--echo # Transaction trx2 +START TRANSACTION; +INSERT INTO t1 VALUES (1, 2, 2) ON DUPLICATE KEY UPDATE c=VALUES(c); +INSERT INTO t1 VALUES (3, 2, 4) ON DUPLICATE KEY UPDATE c=VALUES(c); +COMMIT; + +--echo # Transaction trx1 +START TRANSACTION; +INSERT INTO t1 VALUES (2, 2, 3) ON DUPLICATE KEY UPDATE c=VALUES(c); +COMMIT; + +--echo # Result: +SELECT * FROM t1; + +--echo # Cleanup +DROP TABLE t1; +#Test 6 +CREATE TABLE t1 (a INT UNIQUE KEY, b INT UNIQUE KEY, c INT) ENGINE = InnoDB; +SHOW CREATE TABLE t1; + +--echo # Scenario 6: Interleaved transactions (trx1 conflicts on index a) +INSERT INTO t1 VALUES (1, 1, 1); +SELECT * FROM t1; + +--echo # Connection default: + +--echo # Transaction trx1: +START TRANSACTION; +INSERT INTO t1 VALUES (1, 2, 2) ON DUPLICATE KEY UPDATE c=VALUES(c); +SELECT * FROM t1; + +--echo # Connection other: +connection other; +START TRANSACTION; +SET innodb_lock_wait_timeout = 1; +--error ER_LOCK_WAIT_TIMEOUT +INSERT INTO t1 VALUES (2, 2, 3) ON DUPLICATE KEY UPDATE c=VALUES(c); +COMMIT; + +--echo # Connection default: +--connection default +INSERT INTO t1 VALUES (3, 2, 4) ON DUPLICATE KEY UPDATE c=VALUES(c); +COMMIT; + +--echo # Result: +SELECT * FROM t1; + +--echo # Cleanup +DROP TABLE t1; + +#test 7 +CREATE TABLE t1(f1 INT PRIMARY KEY, + f2 INT, f3 INT, UNIQUE KEY(f2))ENGINE=INNODB; + +SHOW CREATE TABLE t1; + +INSERT INTO t1(f1, f2, f3) VALUES(1, 10, 100); +SELECT * FROM t1; + +--echo # Connection other: +connection other; +START TRANSACTION; +INSERT INTO t1 VALUES(2, 10, 200) ON DUPLICATE KEY UPDATE f3 = 120; + +--echo # Connection default +connection default; +START TRANSACTION; +SET innodb_lock_wait_timeout = 1; +--error ER_LOCK_WAIT_TIMEOUT +INSERT INTO t1 VALUES(2, 20, 300) ON DUPLICATE KEY UPDATE f3 = 500; +COMMIT; + +--echo # Connection other: +--connection other +COMMIT; + +--echo # Connection default +connection default; + +--echo # Verify Results: +SELECT * FROM t1; + +disconnect other; + +DROP TABLE t1; + + +#Test 8 +#Test added to cover the undo update path +CREATE TABLE t1(f1 INT AUTO_INCREMENT PRIMARY KEY, f2 INT, f3 INT, +UNIQUE KEY(f2),UNIQUE KEY(f3))ENGINE=INNODB; +INSERT INTO t1(f2,f3) VALUES(10, 100); +INSERT INTO t1(f2,f3) VALUES(20, 200); + +--error ER_DUP_ENTRY +UPDATE t1 SET f2=30,f3=100 WHERE f2 = 20; +SELECT * FROM t1; +COMMIT; +DROP TABLE t1; + +--source include/wait_until_count_sessions.inc diff -Nru mysql-5.7-5.7.25/mysql-test/suite/innodb/t/table_encrypt_2-master.opt mysql-5.7-5.7.26/mysql-test/suite/innodb/t/table_encrypt_2-master.opt --- mysql-5.7-5.7.25/mysql-test/suite/innodb/t/table_encrypt_2-master.opt 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/suite/innodb/t/table_encrypt_2-master.opt 2019-04-13 13:32:15.000000000 +0000 @@ -1,2 +1,3 @@ $KEYRING_PLUGIN_OPT $KEYRING_PLUGIN_LOAD +--loose-keyring-file-data=$MYSQL_TMP_DIR/mydummy_key diff -Nru mysql-5.7-5.7.25/mysql-test/suite/innodb/t/table_encrypt_5.test mysql-5.7-5.7.26/mysql-test/suite/innodb/t/table_encrypt_5.test --- mysql-5.7-5.7.25/mysql-test/suite/innodb/t/table_encrypt_5.test 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/suite/innodb/t/table_encrypt_5.test 2019-04-13 13:32:15.000000000 +0000 @@ -425,9 +425,10 @@ SELECT @@global.keyring_file_data; --echo # init tables call tde_db.init_setup(); ---echo # restart without --early-plugin-load and keyring_file_data ---echo # AND explicitly install plugin to access old table -let $restart_parameters = restart: ; +--echo # restart without --early-plugin-load (still need to provide with +--echo # keyring_file_data otherwise it would point to default location which might be +--echo # non-writable to mtr). Instead explicitly install plugin to access old table +let $restart_parameters = restart: --loose-keyring_file_data=$MYSQL_TMP_DIR/mydummy_keyring; --replace_result $MYSQL_TMP_DIR MYSQL_TMP_DIR $KEYRING_PLUGIN_OPT --plugin-dir=KEYRING_PLUGIN_PATH $KEYRING_PLUGIN keyring_file.so --source include/restart_mysqld.inc diff -Nru mysql-5.7-5.7.25/mysql-test/suite/innodb/t/tinytext-groupby.test mysql-5.7-5.7.26/mysql-test/suite/innodb/t/tinytext-groupby.test --- mysql-5.7-5.7.25/mysql-test/suite/innodb/t/tinytext-groupby.test 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/suite/innodb/t/tinytext-groupby.test 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,26 @@ +--source include/big_test.inc + +--echo # +--echo # Bug #29207450 TINYTEXT COLUMN TAKES LONG TIME IN THE GROUP BY OPERATION. +--echo # + +create table t1 (id serial primary key auto_increment,a varchar(100),b varchar(100)); +create table t2 (id serial primary key auto_increment,a varchar(100),b tinytext); + +insert into t1 (a, b) values('a', '746d847beb7e'),('a','746d847beb7e'),('a', '746d847beb7e'),('a','746d847beb7e'),('a','746d847beb7e'); +insert into t1 (a, b) select 'a', '746d847beb7e' from t1 t1,t1 t2,t1 t3,t1 t4; +insert into t1 (a, b) select 'a', '746d847beb7e' from t1 t1,t1 t2; +insert into t2 (a, b) values('a', '746d847beb7e'),('a','746d847beb7e'),('a', '746d847beb7e'),('a','746d847beb7e'),('a','746d847beb7e'); +insert into t2 (a, b) select 'a', '746d847beb7e' from t2 t1,t2 t2,t2 t3,t2 t4; +insert into t2 (a, b) select 'a', '746d847beb7e' from t2 t1,t2 t2; +select count(*) from t1; +select count(*) from t2; + +set global internal_tmp_disk_storage_engine = 'innodb'; +select b, count(*) from t1 group by b; +select b, count(*) from t2 group by b; +set global internal_tmp_disk_storage_engine = 'myisam'; +select b, count(*) from t1 group by b; +select b, count(*) from t2 group by b; +set global internal_tmp_disk_storage_engine = default; +drop table t1, t2; diff -Nru mysql-5.7-5.7.25/mysql-test/suite/innodb/t/virtual_debug.test mysql-5.7-5.7.26/mysql-test/suite/innodb/t/virtual_debug.test --- mysql-5.7-5.7.25/mysql-test/suite/innodb/t/virtual_debug.test 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/suite/innodb/t/virtual_debug.test 2019-04-13 13:32:15.000000000 +0000 @@ -360,4 +360,49 @@ DROP TABLE t1; + +--echo # +--echo # Bug#28825718 - ASSERTION FAILURE: TRX0REC.CC:NNN:N_IDX > 0 WHILE DOING REPLACE/INSERT +--echo # + +CREATE TABLE t1(a INT PRIMARY KEY, b INT, c INT GENERATED ALWAYS AS(b+1) VIRTUAL) ENGINE=InnoDB; + +INSERT INTO t1(a, b) VALUES(1, 1); + +connect (con1,localhost,root,,); +connection con1; +SET DEBUG_SYNC = 'row_log_apply_after SIGNAL s1 WAIT_FOR s2'; +SET lock_wait_timeout = 1; +--send ALTER TABLE t1 ADD UNIQUE INDEX(c, b) + +connection default; + +SET DEBUG_SYNC = 'now WAIT_FOR s1'; +SET DEBUG_SYNC = 'row_ins_sec_index_enter SIGNAL s2 WAIT_FOR s3'; +--send INSERT INTO t1(a, b) VALUES(2, 2) + +connection con1; +--echo /* con1 reap */ ALTER TABLE t1 ADD UNIQUE INDEX(c, b); +--error ER_LOCK_WAIT_TIMEOUT +reap; + +SET DEBUG_SYNC ='now SIGNAL s3'; + +disconnect con1; + +connection default; +reap; + +ALTER TABLE t1 ADD KEY(b); + +INSERT INTO t1(a, b) VALUES(3, 3); + +SELECT * FROM t1; + +CHECK TABLE t1; + +DROP TABLE t1; + + + --source include/wait_until_count_sessions.inc diff -Nru mysql-5.7-5.7.25/mysql-test/suite/innodb_zip/t/innochecksum.test mysql-5.7-5.7.26/mysql-test/suite/innodb_zip/t/innochecksum.test --- mysql-5.7-5.7.25/mysql-test/suite/innodb_zip/t/innochecksum.test 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/suite/innodb_zip/t/innochecksum.test 2019-04-13 13:32:15.000000000 +0000 @@ -32,7 +32,7 @@ --echo # Server Default checksum = innodb --echo [1a]: check the innochecksum when file doesn't exists ---error 1,42 +--error 1 --exec $INNOCHECKSUM $MYSQLD_DATADIR/test/aa.ibd 2> $SEARCH_FILE let SEARCH_PATTERN= Error: $MYSQLD_DATADIR/test/aa.ibd cannot be found; --source include/search_pattern_in_file.inc diff -Nru mysql-5.7-5.7.25/mysql-test/suite/perfschema/r/show_aggregate.result mysql-5.7-5.7.26/mysql-test/suite/perfschema/r/show_aggregate.result --- mysql-5.7-5.7.25/mysql-test/suite/perfschema/r/show_aggregate.result 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/suite/perfschema/r/show_aggregate.result 2019-04-13 13:32:15.000000000 +0000 @@ -510,6 +510,27 @@ Handler_delete 6 0 0 6 6 OK Handler_rollback 6 0 0 6 6 OK ================================================================================ +TEST 8: FLUSH STATUS should clear account, host and user status +================================================================================ + +FLUSH STATUS; + +SELECT * FROM status_by_account WHERE user LIKE 'user%' AND variable_name IN ('handler_delete'); +USER HOST VARIABLE_NAME VARIABLE_VALUE +user1 localhost Handler_delete 0 +user2 localhost Handler_delete 0 +user3 localhost Handler_delete 0 + +SELECT * FROM status_by_host WHERE host IN ('localhost') AND variable_name IN ('handler_delete'); +HOST VARIABLE_NAME VARIABLE_VALUE +localhost Handler_delete 0 + +SELECT * FROM status_by_user WHERE user LIKE 'user%' AND variable_name IN ('handler_delete'); +USER VARIABLE_NAME VARIABLE_VALUE +user1 Handler_delete 0 +user2 Handler_delete 0 +user3 Handler_delete 0 +================================================================================ CLEANUP ================================================================================ DROP TABLE test.t1; diff -Nru mysql-5.7-5.7.25/mysql-test/suite/perfschema/r/show_coverage.result mysql-5.7-5.7.26/mysql-test/suite/perfschema/r/show_coverage.result --- mysql-5.7-5.7.25/mysql-test/suite/perfschema/r/show_coverage.result 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/suite/perfschema/r/show_coverage.result 2019-04-13 13:32:15.000000000 +0000 @@ -102,14 +102,43 @@ WHERE variable_name = "bytes_received" and thread_id = @thread_id INTO @bytes_after; # Expect bytes_before > bytes_after -SELECT @bytes_before > @bytes_after; -@bytes_before > @bytes_after +SELECT @bytes_before > @bytes_after AS 'Expect 1'; +Expect 1 1 # Expect bytes_after is zero -SELECT @bytes_after; -@bytes_after +SELECT @bytes_after AS 'Expect 0'; +Expect 0 0 +# TEST 6 +# +# Bug#28291258 FLUSH STATUS ADDS TWICE TO GLOBAL VALUES +# + +# Default connection + +# First connection +include/assert.inc [Global value requested from the first session must not change] + +# Generate a slow query + +SET long_query_time = 2; +SELECT SLEEP(4); +SLEEP(4) +0 +SET long_query_time = @@global.long_query_time; + +include/assert.inc [Global value requested from the first session after SLEEP() must increase by 1] +include/assert.inc [First session value must increase by 1] + +# Default connection +include/assert.inc [Global value requested from the default session after DISCONNECT must remain the same] +include/assert.inc [Default session value must remain zero] + +FLUSH STATUS; + +include/assert.inc [Global value requested from the default session after FLUSH must remain the same] +include/assert.inc [Default session value after FLUSH must remain zero] # CLEANUP set @@global.show_compatibility_56 = @show_compatibility_56_save; diff -Nru mysql-5.7-5.7.25/mysql-test/suite/perfschema/t/show_aggregate.test mysql-5.7-5.7.26/mysql-test/suite/perfschema/t/show_aggregate.test --- mysql-5.7-5.7.25/mysql-test/suite/perfschema/t/show_aggregate.test 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/suite/perfschema/t/show_aggregate.test 2019-04-13 13:32:15.000000000 +0000 @@ -280,6 +280,20 @@ FROM test.status_results ORDER BY variable_name; + +--echo ================================================================================ +--echo TEST 8: FLUSH STATUS should clear account, host and user status +--echo ================================================================================ +--echo +FLUSH STATUS; +--echo +SELECT * FROM status_by_account WHERE user LIKE 'user%' AND variable_name IN ('handler_delete'); +--echo +SELECT * FROM status_by_host WHERE host IN ('localhost') AND variable_name IN ('handler_delete'); +--echo +SELECT * FROM status_by_user WHERE user LIKE 'user%' AND variable_name IN ('handler_delete'); + + --echo ================================================================================ --echo CLEANUP --echo ================================================================================ diff -Nru mysql-5.7-5.7.25/mysql-test/suite/perfschema/t/show_coverage.test mysql-5.7-5.7.26/mysql-test/suite/perfschema/t/show_coverage.test --- mysql-5.7-5.7.25/mysql-test/suite/perfschema/t/show_coverage.test 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/suite/perfschema/t/show_coverage.test 2019-04-13 13:32:15.000000000 +0000 @@ -7,6 +7,7 @@ --source include/have_perfschema.inc --source include/not_embedded.inc --source include/no_protocol.inc +--source include/count_sessions.inc select @@global.show_compatibility_56 into @show_compatibility_56_save; --echo @@ -111,14 +112,90 @@ WHERE variable_name = "bytes_received" and thread_id = @thread_id INTO @bytes_after; --echo --echo # Expect bytes_before > bytes_after -SELECT @bytes_before > @bytes_after; +SELECT @bytes_before > @bytes_after AS 'Expect 1'; --echo --echo # Expect bytes_after is zero -SELECT @bytes_after; +SELECT @bytes_after AS 'Expect 0'; disconnect con1; +--source include/wait_until_count_sessions.inc + + +--echo +--echo # TEST 6 +--echo # +--echo # Bug#28291258 FLUSH STATUS ADDS TWICE TO GLOBAL VALUES +--echo # + +--echo +--echo # Default connection +--let $initial_global_value = query_get_value(SHOW GLOBAL STATUS LIKE 'Slow_queries', Value, 1) + +--source include/count_sessions.inc + +--echo +--echo # First connection +--connect (con1, localhost, root,,) + +## Global value requested from the first session must not change +--let $current_global_value = query_get_value(SHOW GLOBAL STATUS LIKE 'Slow_queries', Value, 1) +--let $assert_cond = $current_global_value - $initial_global_value = 0 +--let $assert_text = Global value requested from the first session must not change +--source include/assert.inc --echo +--echo # Generate a slow query +--echo +SET long_query_time = 2; +SELECT SLEEP(4); +SET long_query_time = @@global.long_query_time; +--echo + +## Global value requested from the first session after SLEEP() must increase by 1 +--let $current_global_value = query_get_value(SHOW GLOBAL STATUS LIKE 'Slow_queries', Value, 1) +--let $first_session_value = query_get_value(SHOW SESSION STATUS LIKE 'Slow_queries', Value, 1) +--let $assert_cond = $current_global_value - $initial_global_value = 1 +--let $assert_text = Global value requested from the first session after SLEEP() must increase by 1 +--source include/assert.inc +--let $assert_cond = $first_session_value = 1 +--let $assert_text = First session value must increase by 1 +--source include/assert.inc + +--connection default +--disconnect con1 +--source include/wait_until_count_sessions.inc + +--echo +--echo # Default connection +--connection default + +## Global value requested from the default session after DISCONNECT must remain the same +--let $current_global_value = query_get_value(SHOW GLOBAL STATUS LIKE 'Slow_queries', Value, 1) +--let $default_session_value = query_get_value(SHOW SESSION STATUS LIKE 'Slow_queries', Value, 1) +--let $assert_cond = $current_global_value - $initial_global_value = 1 +--let $assert_text = Global value requested from the default session after DISCONNECT must remain the same +--source include/assert.inc + +## Default session value must remain zero +--let $assert_cond = $default_session_value = 0 +--let $assert_text = Default session value must remain zero +--source include/assert.inc + +--echo +FLUSH STATUS; +--echo + +## Global value requested from the default session after FLUSH must remain the same +--let $current_global_value = query_get_value(SHOW GLOBAL STATUS LIKE 'Slow_queries', Value, 1) +--let $default_session_value = query_get_value(SHOW SESSION STATUS LIKE 'Slow_queries', Value, 1) +--let $assert_cond = $current_global_value - $initial_global_value = 1 +--let $assert_text = Global value requested from the default session after FLUSH must remain the same +--source include/assert.inc + +## Default session value after FLUSH must remain zero +--let $assert_cond = $default_session_value = 0 +--let $assert_text = Default session value after FLUSH must remain zero +--source include/assert.inc + --echo # CLEANUP set @@global.show_compatibility_56 = @show_compatibility_56_save; - diff -Nru mysql-5.7-5.7.25/mysql-test/suite/rpl/r/rpl_grant_select_columns.result mysql-5.7-5.7.26/mysql-test/suite/rpl/r/rpl_grant_select_columns.result --- mysql-5.7-5.7.25/mysql-test/suite/rpl/r/rpl_grant_select_columns.result 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/suite/rpl/r/rpl_grant_select_columns.result 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,70 @@ +include/master-slave.inc +Warnings: +Note #### Sending passwords in plain text without SSL/TLS is extremely insecure. +Note #### Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information. +[connection master] + +# 1. Initial setup on master. +# 1.1 Create tables with reserved words as column names. +CREATE DATABASE `order`; +CREATE TABLE `order`.`order` (`order` INT); +CREATE DATABASE `column`; +CREATE TABLE `column`.`column` (`column` INT); +CREATE DATABASE `all`; +CREATE TABLE `all`.`all`( +id int NOT NULL PRIMARY KEY, +item int, +`table` varchar(10), +`regexp` varchar(10)); + +# 1.2 Create users for granting column privileges. +CREATE USER `order` IDENTIFIED BY 'password1'; +CREATE USER `column` IDENTIFIED BY 'password2'; +CREATE USER `all` IDENTIFIED BY 'password3'; + +# 2. With sql_mode='ANSI_QUOTES', execute GRANT SELECT commands on master. +SET @saved_sql_mode= @@session.sql_mode; +SET SESSION sql_mode= 'ANSI_QUOTES'; +Warnings: +Warning 3090 Changing sql mode 'NO_AUTO_CREATE_USER' is deprecated. It will be removed in a future release. + +# Execute GRANT SELECT commands on master. +GRANT SELECT(`order`) ON `order`.`order` TO `order`; +GRANT SELECT(id,`table`) ON `all`.`all` TO `all`; + +# Verify the correctness of 'GRANT SELECT' statement by printing +# the binlog entry for the statement. +include/show_binlog_events.inc +Log_name Pos Event_type Server_id End_log_pos Info +master-bin.000001 # Query # # use `test`; GRANT SELECT ("order") ON "order"."order" TO 'order'@'%' +master-bin.000001 # Query # # use `test`; GRANT SELECT ("id", "table") ON "all"."all" TO 'all'@'%' + +# 3. With sql_mode='', execute GRANT SELECT commands on master. +SET SESSION sql_mode= ''; + +# Execute GRANT SELECT commands on master. +GRANT SELECT(`column`) ON `column`.`column` TO `column`; +GRANT SELECT(item,`regexp`) ON `all`.`all` TO `all`; + +# 4. Verify the correctness of 'GRANT SELECT' statement by printing +# the binlog entry for the statement. +include/show_binlog_events.inc +Log_name Pos Event_type Server_id End_log_pos Info +master-bin.000001 # Query # # use `test`; GRANT SELECT (`column`) ON `column`.`column` TO 'column'@'%' +master-bin.000001 # Query # # use `test`; GRANT SELECT (`item`, `regexp`) ON `all`.`all` TO 'all'@'%' + +# 5. Sync the slave with master. +include/sync_slave_sql_with_master.inc + +# 6. Verify that there is no difference in the column privileges +# tables of master and slave. +[connection master] +include/diff_tables.inc [master:mysql.columns_priv, slave:mysql.columns_priv] +SET SESSION sql_mode= @saved_sql_mode; +Warnings: +Warning 3090 Changing sql mode 'NO_AUTO_CREATE_USER' is deprecated. It will be removed in a future release. +DROP USER `order`,`column`,`all`; +DROP DATABASE `order`; +DROP DATABASE `column`; +DROP DATABASE `all`; +include/rpl_end.inc diff -Nru mysql-5.7-5.7.25/mysql-test/suite/rpl/r/rpl_gtid_skips_no_sync_master_info.result mysql-5.7-5.7.26/mysql-test/suite/rpl/r/rpl_gtid_skips_no_sync_master_info.result --- mysql-5.7-5.7.25/mysql-test/suite/rpl/r/rpl_gtid_skips_no_sync_master_info.result 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/suite/rpl/r/rpl_gtid_skips_no_sync_master_info.result 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,31 @@ +include/master-slave.inc +Warnings: +Note #### Sending passwords in plain text without SSL/TLS is extremely insecure. +Note #### Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information. +[connection master] +[connection slave] +include/stop_slave.inc +UPDATE performance_schema.setup_objects SET ENABLED='yes', TIMED='yes' WHERE OBJECT_TYPE='TABLE' and OBJECT_SCHEMA='mysql'; +include/start_slave.inc +[connection master] +CREATE TABLE t1 (f INT PRIMARY KEY) ENGINE=InnoDB; +INSERT INTO t1 VALUES (10); +INSERT INTO t1 VALUES (20); +INSERT INTO t1 VALUES (30); +include/sync_slave_sql_with_master.inc +include/stop_slave.inc +SET GLOBAL debug="+d,reached_heart_beat_queue_event"; +START SLAVE; +SET DEBUG_SYNC="now WAIT_FOR check_slave_master_info"; +SET DEBUG_SYNC="now SIGNAL proceed_write_rotate"; +SET GLOBAL debug="-d,reached_heart_beat_queue_event"; +[connection master] +include/sync_slave_sql_with_master.inc +include/assert.inc [Assert that sync_master_info io_requests are the same] +include/diff_tables.inc [master:t1, slave:t1] +include/stop_slave.inc +UPDATE performance_schema.setup_objects SET ENABLED='no', TIMED='no' WHERE OBJECT_TYPE='TABLE' and OBJECT_SCHEMA='mysql'; +include/start_slave.inc +[connection master] +DROP TABLE t1; +include/rpl_end.inc diff -Nru mysql-5.7-5.7.25/mysql-test/suite/rpl/t/rpl_grant_select_columns.test mysql-5.7-5.7.26/mysql-test/suite/rpl/t/rpl_grant_select_columns.test --- mysql-5.7-5.7.25/mysql-test/suite/rpl/t/rpl_grant_select_columns.test 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/suite/rpl/t/rpl_grant_select_columns.test 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,118 @@ +# ==== Purpose ==== +# +# Verify that columns in the 'GRANT SELECT' statements +# are properly quoted before writing to the binary log. +# +# ==== Implementation ==== +# +# 1. Initial setup on master. +# 1.1 Create tables with reserved words as column names. +# 1.2 Create users for granting column privileges. +# 2. With sql_mode='ANSI_QUOTES', execute GRANT SELECT commands on master. +# 3. With sql_mode='', execute GRANT SELECT commands on master. +# 4. Verify the correctness of 'GRANT SELECT' statement by printing +# the binlog entry for the statement. +# 5. Sync the slave with master. +# 6. Verify that there is no difference in the column privileges +# tables of master and slave. +# +# ==== References ==== +# +# Bug#28643405: LAST_ERROR_NUMBER: 1064 DURING GRANT SELECT +# + +--source include/have_binlog_format_statement.inc +--source include/master-slave.inc + +--echo +--echo # 1. Initial setup on master. +--echo # 1.1 Create tables with reserved words as column names. +CREATE DATABASE `order`; +CREATE TABLE `order`.`order` (`order` INT); + +CREATE DATABASE `column`; +CREATE TABLE `column`.`column` (`column` INT); + +CREATE DATABASE `all`; +CREATE TABLE `all`.`all`( + id int NOT NULL PRIMARY KEY, + item int, + `table` varchar(10), + `regexp` varchar(10)); + +--echo +--echo # 1.2 Create users for granting column privileges. +CREATE USER `order` IDENTIFIED BY 'password1'; +CREATE USER `column` IDENTIFIED BY 'password2'; +CREATE USER `all` IDENTIFIED BY 'password3'; + +--echo +--echo # 2. With sql_mode='ANSI_QUOTES', execute GRANT SELECT commands on master. + +# Setting sql_mode to ANSI_QUOTES before executing GRANT. +# ANSI_QUOTES mode will make sure the "(double quote) is used +# as the identifier quote character while writing to the binlog. +# This mode treats "(double quotes) as an identifier quote character +# and not as a string quote character. +SET @saved_sql_mode= @@session.sql_mode; +SET SESSION sql_mode= 'ANSI_QUOTES'; + +# Save master position +--let $binlog_start= query_get_value('SHOW MASTER STATUS', Position, 1) + +--echo +--echo # Execute GRANT SELECT commands on master. + +# Columns having reserved words +GRANT SELECT(`order`) ON `order`.`order` TO `order`; + +# Column names having both reserved words and non-reserved words +GRANT SELECT(id,`table`) ON `all`.`all` TO `all`; + +--echo +--echo # Verify the correctness of 'GRANT SELECT' statement by printing +--echo # the binlog entry for the statement. +--source include/show_binlog_events.inc + +--echo +--echo # 3. With sql_mode='', execute GRANT SELECT commands on master. + +# Reseting sql_mode. This will make sure `(backtick) is used as +# the identifier quote character while writing to the binlog. +SET SESSION sql_mode= ''; + +# Update master position +--let $binlog_start= query_get_value('SHOW MASTER STATUS', Position, 1) + +--echo +--echo # Execute GRANT SELECT commands on master. + +# Columns having reserved words +GRANT SELECT(`column`) ON `column`.`column` TO `column`; + +# Column names having both reserved words and non-reserved words +GRANT SELECT(item,`regexp`) ON `all`.`all` TO `all`; + +--echo +--echo # 4. Verify the correctness of 'GRANT SELECT' statement by printing +--echo # the binlog entry for the statement. +--source include/show_binlog_events.inc + +--echo +--echo # 5. Sync the slave with master. +--source include/sync_slave_sql_with_master.inc + +--echo +--echo # 6. Verify that there is no difference in the column privileges +--echo # tables of master and slave. +--source include/rpl_connection_master.inc +--let diff_tables=master:mysql.columns_priv, slave:mysql.columns_priv +--source include/diff_tables.inc + +# Cleanup +SET SESSION sql_mode= @saved_sql_mode; +DROP USER `order`,`column`,`all`; +DROP DATABASE `order`; +DROP DATABASE `column`; +DROP DATABASE `all`; +--source include/rpl_end.inc diff -Nru mysql-5.7-5.7.25/mysql-test/suite/rpl/t/rpl_gtid_skips_no_sync_master_info-slave.opt mysql-5.7-5.7.26/mysql-test/suite/rpl/t/rpl_gtid_skips_no_sync_master_info-slave.opt --- mysql-5.7-5.7.25/mysql-test/suite/rpl/t/rpl_gtid_skips_no_sync_master_info-slave.opt 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/suite/rpl/t/rpl_gtid_skips_no_sync_master_info-slave.opt 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1 @@ +--master-info-repository=TABLE --relay-log-info-repository=TABLE diff -Nru mysql-5.7-5.7.25/mysql-test/suite/rpl/t/rpl_gtid_skips_no_sync_master_info.test mysql-5.7-5.7.26/mysql-test/suite/rpl/t/rpl_gtid_skips_no_sync_master_info.test --- mysql-5.7-5.7.25/mysql-test/suite/rpl/t/rpl_gtid_skips_no_sync_master_info.test 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/suite/rpl/t/rpl_gtid_skips_no_sync_master_info.test 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,78 @@ +# ==== Purpose ==== +# +# Test verifies that forced sync master info doesn't happen on a +# heartbeat/fakerotate event. +# +# ==== Implementation ==== +# +# Generate some transactions on master so that they are replicated and applied +# on slave. This will ensure that GITD_EXECUTED set is updated on slave. +# +# Stop and restart the slave. Receiver thread will invoke 'com_binlog_dump_gtid' +# function call which provides existing GTID specific information on slave to +# master. +# +# Master will skip all the GTID events that are present on slave and will +# generate a HEARTBEAT event which contains the master_log_file and +# master_log_pos at which the skipped events end. +# +# Upon receiving the HEARTBEAT event store the write requests that are made to +# 'slave_master_info' table, in a variable. This value is used to verify the +# write request to 'slave_master_info' after the HEARTBEAT event is processed. +# +# Apply the HEARTBEAT event and verify that no additional write request is +# made during HEARTBEAT event processing. +# +# ==== References ==== +# +# Bug#28815555: HEARTBEATS/FAKEROTATE CAUSE A FORCED SYNC_MASTER_INFO +# + +--source include/have_debug.inc +--source include/have_debug_sync.inc +# Gtids are mandatory for the test. +--source include/have_gtid.inc +--source include/master-slave.inc + +--source include/rpl_connection_slave.inc +# Enable performance schema monitoring for mysql schema +--source include/stop_slave.inc +UPDATE performance_schema.setup_objects SET ENABLED='yes', TIMED='yes' WHERE OBJECT_TYPE='TABLE' and OBJECT_SCHEMA='mysql'; +--source include/start_slave.inc + +--source include/rpl_connection_master.inc +CREATE TABLE t1 (f INT PRIMARY KEY) ENGINE=InnoDB; +INSERT INTO t1 VALUES (10); +INSERT INTO t1 VALUES (20); +INSERT INTO t1 VALUES (30); +--source include/sync_slave_sql_with_master.inc + +--source include/stop_slave.inc +SET GLOBAL debug="+d,reached_heart_beat_queue_event"; +START SLAVE; +SET DEBUG_SYNC="now WAIT_FOR check_slave_master_info"; +let $sync_master_info_before= query_get_value(SELECT count_star FROM performance_schema.table_io_waits_summary_by_table WHERE object_schema='mysql' AND object_type='table' AND object_name='slave_master_info', count_star, 1); +SET DEBUG_SYNC="now SIGNAL proceed_write_rotate"; +SET GLOBAL debug="-d,reached_heart_beat_queue_event"; + +--source include/rpl_connection_master.inc +--source include/sync_slave_sql_with_master.inc + +let $sync_master_info_after= query_get_value(SELECT count_star FROM performance_schema.table_io_waits_summary_by_table WHERE object_schema='mysql' AND object_type='table' AND object_name='slave_master_info', count_star, 1); + +--let $assert_text= Assert that sync_master_info io_requests are the same +--let $assert_cond= $sync_master_info_before = $sync_master_info_after +--source include/assert.inc + +--let $diff_tables=master:t1, slave:t1 +--source include/diff_tables.inc + +# Clean up +--source include/stop_slave.inc +UPDATE performance_schema.setup_objects SET ENABLED='no', TIMED='no' WHERE OBJECT_TYPE='TABLE' and OBJECT_SCHEMA='mysql'; +--source include/start_slave.inc + +--source include/rpl_connection_master.inc +DROP TABLE t1; + +--source include/rpl_end.inc diff -Nru mysql-5.7-5.7.25/mysql-test/suite/sys_vars/r/named_pipe_full_access_group_basic.result mysql-5.7-5.7.26/mysql-test/suite/sys_vars/r/named_pipe_full_access_group_basic.result --- mysql-5.7-5.7.25/mysql-test/suite/sys_vars/r/named_pipe_full_access_group_basic.result 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/suite/sys_vars/r/named_pipe_full_access_group_basic.result 2019-04-13 13:32:15.000000000 +0000 @@ -9,6 +9,11 @@ show session variables like 'named_pipe_full_access_group'; Variable_name Value named_pipe_full_access_group *everyone* +set global named_pipe_full_access_group = NULL; +show session variables like 'named_pipe_full_access_group'; +Variable_name Value +named_pipe_full_access_group +set global named_pipe_full_access_group = '*everyone*'; select * from performance_schema.global_variables where variable_name='named_pipe_full_access_group'; VARIABLE_NAME VARIABLE_VALUE named_pipe_full_access_group *everyone* diff -Nru mysql-5.7-5.7.25/mysql-test/suite/sys_vars/t/named_pipe_full_access_group_basic-master.opt mysql-5.7-5.7.26/mysql-test/suite/sys_vars/t/named_pipe_full_access_group_basic-master.opt --- mysql-5.7-5.7.25/mysql-test/suite/sys_vars/t/named_pipe_full_access_group_basic-master.opt 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/suite/sys_vars/t/named_pipe_full_access_group_basic-master.opt 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1 @@ +--loose-enable-named-pipe diff -Nru mysql-5.7-5.7.25/mysql-test/suite/sys_vars/t/named_pipe_full_access_group_basic.test mysql-5.7-5.7.26/mysql-test/suite/sys_vars/t/named_pipe_full_access_group_basic.test --- mysql-5.7-5.7.25/mysql-test/suite/sys_vars/t/named_pipe_full_access_group_basic.test 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/suite/sys_vars/t/named_pipe_full_access_group_basic.test 2019-04-13 13:32:15.000000000 +0000 @@ -8,6 +8,9 @@ select @@session.named_pipe_full_access_group; show global variables like 'named_pipe_full_access_group'; show session variables like 'named_pipe_full_access_group'; +set global named_pipe_full_access_group = NULL; +show session variables like 'named_pipe_full_access_group'; +set global named_pipe_full_access_group = '*everyone*'; --disable_warnings select * from performance_schema.global_variables where variable_name='named_pipe_full_access_group'; select * from performance_schema.session_variables where variable_name='named_pipe_full_access_group'; diff -Nru mysql-5.7-5.7.25/mysql-test/t/connect.test mysql-5.7-5.7.26/mysql-test/t/connect.test --- mysql-5.7-5.7.25/mysql-test/t/connect.test 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/t/connect.test 2019-04-13 13:32:15.000000000 +0000 @@ -504,8 +504,7 @@ --let SEARCH_PATTERN= Got an error reading communication packets --source include/search_pattern_in_file.inc -# Uncomment the below statement when BUG#28490126 is fixed. -# SHOW STATUS LIKE 'Aborted_connects'; +SHOW STATUS LIKE 'Aborted_connects'; # Cleanup DROP USER 'new1'@'localhost'; diff -Nru mysql-5.7-5.7.25/mysql-test/t/join_file_handler.test mysql-5.7-5.7.26/mysql-test/t/join_file_handler.test --- mysql-5.7-5.7.25/mysql-test/t/join_file_handler.test 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/t/join_file_handler.test 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,33 @@ +--echo # +--echo # Bug#28039829: SELECT QUERY WITH COMPLEX JOINS LEAKS FILE HANDLES +--echo # + +CREATE DATABASE db_28039829; +USE db_28039829; + +CREATE TABLE t1 (c1 CHAR(36) NOT NULL, + c2 CHAR(36) DEFAULT NULL, + c3 VARCHAR(100) DEFAULT NULL, + c4 VARCHAR(100) DEFAULT NULL, + PRIMARY KEY (c1), + KEY idx_1 (c2), + KEY idx_2 (c3, c4), + KEY idx_3 (c4, c3)) + ENGINE=InnoDB; + +CREATE TABLE t2 (c1 CHAR(36) DEFAULT NULL) + ENGINE=InnoDB DEFAULT CHARSET=utf8; + +LOAD DATA INFILE '../../std_data/bug28039829.dat' INTO TABLE t1; +INSERT INTO t2 VALUES ('63dfcd94-143a-11e7-bec8-fa163e4dd901'), + ('dcda6718-143a-11e7-82e5-fa163e4dd901'); + +SET optimizer_switch="block_nested_loop=OFF"; + +SELECT t1.c1 FROM t1 INNER JOIN t2 ON t1.c2 = t2.c1 + WHERE (t1.c3 LIKE 'James' OR t1.c4 LIKE 'abc'); + +#Cleanup +DROP TABLE t1, t2; +DROP DATABASE db_28039829; +SET optimizer_switch=DEFAULT; diff -Nru mysql-5.7-5.7.25/mysql-test/t/join_outer_innodb.test mysql-5.7-5.7.26/mysql-test/t/join_outer_innodb.test --- mysql-5.7-5.7.25/mysql-test/t/join_outer_innodb.test 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/t/join_outer_innodb.test 2019-04-13 13:32:15.000000000 +0000 @@ -70,3 +70,20 @@ DROP TABLE t1,t2; --echo # End BUG#58456 + +--echo # +--echo # Bug #20939184:INNODB: UNLOCK ROW COULD NOT FIND A 2 MODE LOCK ON THE +--echo # RECORD +--echo # +CREATE TABLE t1 (c1 INT, c2 INT, c3 INT, PRIMARY KEY (c1,c2) ); +CREATE TABLE t2 (c1 INT, c2 INT, c3 INT, PRIMARY KEY (c1), KEY (c2)); +INSERT INTO t1 VALUES (1,2,3),(2,3,4),(3,4,5); +INSERT INTO t2 SELECT * FROM t1; +SET TRANSACTION ISOLATION LEVEL READ COMMITTED; +START TRANSACTION; +#unlocks rows in table t2 where c1 = 1 +SELECT * FROM t1 LEFT JOIN t2 ON t1.c2=t2.c2 AND t2.c1=1 FOR UPDATE; +UPDATE t1 LEFT JOIN t2 ON t1.c1 = t2.c2 AND t2.c1 = 3 SET t1.c3 = RAND()*10; +COMMIT; +SET TRANSACTION ISOLATION LEVEL REPEATABLE READ; +DROP TABLE t1,t2; diff -Nru mysql-5.7-5.7.25/mysql-test/t/mysqladmin_shutdown.test mysql-5.7-5.7.26/mysql-test/t/mysqladmin_shutdown.test --- mysql-5.7-5.7.25/mysql-test/t/mysqladmin_shutdown.test 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/t/mysqladmin_shutdown.test 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,28 @@ +# Embedded server doesn't support external clients +--source include/not_embedded.inc + +# Supported on platforms with UNIX sockets only +--source include/not_windows.inc + +--echo # +--echo # Bug#28466137 MYSQLADMIN SHUTDOWN DOES NOT WAIT FOR MYSQL TO SHUT DOWN ANYMORE +--echo # + +--let $_pid_file_location= `SELECT @@pid_file` + +# Write file to make mtr expect the shutdown and avoid implicit restart +--let $_server_id= `SELECT @@server_id` +--let $_expect_file_name= $MYSQLTEST_VARDIR/tmp/mysqld.$_server_id.expect +--exec echo "wait" > $_expect_file_name + +--exec $MYSQLADMIN -uroot --password="" -S $MASTER_MYSOCK shutdown 2>&1 + +# pid file should be gone +--error 1 +--file_exists $_pid_file_location + +--source include/wait_until_disconnected.inc + +--exec echo "restart" > $MYSQLTEST_VARDIR/tmp/mysqld.1.expect +--enable_reconnect +--source include/wait_until_connected_again.inc diff -Nru mysql-5.7-5.7.25/mysql-test/t/mysqldump.test mysql-5.7-5.7.26/mysql-test/t/mysqldump.test --- mysql-5.7-5.7.25/mysql-test/t/mysqldump.test 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/t/mysqldump.test 2019-04-13 13:32:15.000000000 +0000 @@ -1782,7 +1782,7 @@ ## prove three works (with spaces and tabs on the end) # start with one from the previous restore -create event ee2 on schedule at '2018-12-31 21:01:23' do set @a=5; +create event ee2 on schedule at '2029-12-31 21:01:23' do set @a=5; create event ee3 on schedule at '2030-12-31 22:01:23' do set @a=5; show events; --exec $MYSQL_DUMP --events second > $MYSQLTEST_VARDIR/tmp/bug16853-2.sql diff -Nru mysql-5.7-5.7.25/mysql-test/t/mysqlpump_basic.test mysql-5.7-5.7.26/mysql-test/t/mysqlpump_basic.test --- mysql-5.7-5.7.25/mysql-test/t/mysqlpump_basic.test 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/t/mysqlpump_basic.test 2019-04-13 13:32:15.000000000 +0000 @@ -667,3 +667,49 @@ DROP TABLE `test`.`t1`; DROP TABLESPACE `mytbsp`; +-- echo # +-- echo # Bug#29023216: MYSQLPUMP SHOULD WRITE USERS AND GRANTS BEFORE VIEWS AND STORED PROGRAMS +-- echo # + +CREATE DATABASE DB29023216; +CREATE USER 'VIEWUSER'@'LOCALHOST'; +GRANT ALL ON *.* TO 'VIEWUSER'@'LOCALHOST'; + +USE DB29023216; +#case1: view defined on another view with definer set to non existing user +CREATE TABLE T1 (ID INT UNSIGNED NOT NULL PRIMARY KEY, VAL VARCHAR(10)); +CREATE DEFINER=VIEWUSER@LOCALHOST SQL SECURITY INVOKER VIEW V_T1_A AS SELECT * FROM T1; +CREATE DEFINER=VIEWUSER@LOCALHOST SQL SECURITY DEFINER VIEW V_T1_B AS SELECT * FROM T1; +CREATE SQL SECURITY DEFINER VIEW V_T1_A2 AS SELECT * FROM V_T1_A; +CREATE SQL SECURITY DEFINER VIEW V_T1_B2 AS SELECT * FROM V_T1_B; + +--exec $MYSQL_PUMP --exclude-databases=mtr --include-users=VIEWUSER@localhost --all-databases --add-drop-table --users > $MYSQLTEST_VARDIR/tmp/bug29023216.sql +DROP DATABASE DB29023216; +DROP USER 'VIEWUSER'@'LOCALHOST'; +# restore should succeed +--exec $MYSQL < $MYSQLTEST_VARDIR/tmp/bug29023216.sql +--remove_file $MYSQLTEST_VARDIR/tmp/bug29023216.sql + +USE DB29023216; +SELECT * FROM V_T1_A; +SELECT * FROM V_T1_B; +SELECT * FROM V_T1_A2; +SELECT * FROM V_T1_B2; + +#case2: view defined on function with definer set to non existing user +CREATE DEFINER=VIEWUSER@LOCALHOST FUNCTION TESTFUNC() RETURNS BOOL RETURN TRUE; +CREATE VIEW V_T1_C AS SELECT DB29023216.TESTFUNC(); + +--exec $MYSQL_PUMP --exclude-databases=mtr --include-users=VIEWUSER@localhost --all-databases --add-drop-table --users > $MYSQLTEST_VARDIR/tmp/bug29023216.sql +DROP DATABASE DB29023216; +DROP USER 'VIEWUSER'@'LOCALHOST'; +# restore should succeed +--exec $MYSQL < $MYSQLTEST_VARDIR/tmp/bug29023216.sql +--remove_file $MYSQLTEST_VARDIR/tmp/bug29023216.sql + +USE DB29023216; +SELECT * FROM V_T1_C; + +#cleanup +DROP DATABASE DB29023216; +DROP USER 'VIEWUSER'@'LOCALHOST'; diff -Nru mysql-5.7-5.7.25/mysql-test/t/partition.test mysql-5.7-5.7.26/mysql-test/t/partition.test --- mysql-5.7-5.7.25/mysql-test/t/partition.test 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/t/partition.test 2019-04-13 13:32:15.000000000 +0000 @@ -2550,3 +2550,21 @@ --error ER_DATA_OUT_OF_RANGE SELECT 1 FROM t1 WHERE EXP(10000); DROP TABLE t1; + +--echo # +--echo # Bug#28573894 ALTER PARTITIONED TABLE ADD AUTO_INCREMENT DIFF RESULT +--echo # +CREATE TABLE t (a VARCHAR(10) NOT NULL,b INT,PRIMARY KEY (b)) ENGINE=INNODB +PARTITION BY RANGE (b) +(PARTITION pa VALUES LESS THAN (2), + PARTITION pb VALUES LESS THAN (20), + PARTITION pc VALUES LESS THAN (30), + PARTITION pd VALUES LESS THAN (40)); + +INSERT INTO t +VALUES('A',0),('B',1),('C',2),('D',3),('E',4),('F',5),('G',25),('H',35); + +ALTER TABLE t ADD COLUMN r INT UNSIGNED NOT NULL AUTO_INCREMENT, ADD UNIQUE +KEY (r,b), ALGORITHM=INPLACE, LOCK=SHARED; +SELECT * FROM t; +DROP TABLE t; diff -Nru mysql-5.7-5.7.25/mysql-test/t/skip_name_resolve.test mysql-5.7-5.7.26/mysql-test/t/skip_name_resolve.test --- mysql-5.7-5.7.25/mysql-test/t/skip_name_resolve.test 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/mysql-test/t/skip_name_resolve.test 2019-04-13 13:32:15.000000000 +0000 @@ -62,7 +62,7 @@ CREATE USER b20438524@'%' IDENTIFIED BY 'pwd'; --echo # set some valid addresses -UPDATE mysql.user SET host='localhost' WHERE user='b20438524'; +UPDATE mysql.user SET host='localhost1' WHERE user='b20438524'; FLUSH PRIVILEGES; --echo # cleanup @@ -71,9 +71,25 @@ --echo # must find the pattern --let SEARCH_FILE=$MYSQLTEST_VARDIR/log/mysqld.1.err ---let SEARCH_PATTERN='user' entry 'b20438524@localhost' ignored in --skip-name-resolve mode +--let SEARCH_PATTERN='user' entry 'b20438524@localhost1' ignored in --skip-name-resolve mode source include/search_pattern_in_file.inc; +--echo # +--echo # Bug #23329861: WARNING ABOUT LOCALHOST WHEN USING SKIP-NAME-RESOLVE +--echo # + +CREATE USER b20438524@'%' IDENTIFIED BY 'pwd'; +--echo # set some valid addresses +UPDATE mysql.user SET host='localhost' WHERE user='b20438524'; +FLUSH PRIVILEGES; + +--echo # must not find the pattern +--let SEARCH_FILE=$MYSQLTEST_VARDIR/log/mysqld.1.err +--let SEARCH_PATTERN='user' entry 'b20438524@localhost' ignored in --skip-name-resolve mode +source include/search_pattern.inc; + +DELETE FROM mysql.user WHERE user='b20438524'; + --echo End of 5.7 tests diff -Nru mysql-5.7-5.7.25/packaging/deb-in/CMakeLists.txt mysql-5.7-5.7.26/packaging/deb-in/CMakeLists.txt --- mysql-5.7-5.7.25/packaging/deb-in/CMakeLists.txt 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/packaging/deb-in/CMakeLists.txt 2019-04-13 13:32:15.000000000 +0000 @@ -1,4 +1,4 @@ -# Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -221,6 +221,23 @@ SET (DEB_INIT_APPARMOR "") SET (DEB_CONTROL_DBGSYM "") SET (DEB_RULES_STRIP "") +ELSEIF(DEB_CODENAME STREQUAL "buster") + SET (DEB_PLATFORMRELEASE "debian10") + SET (DEB_CONTROL_BDEPS ", dh-systemd") + SET (DEB_INSTALL_SOURCE_XZ "../*.tar.xz usr/src/mysql/") + SET (DEB_RULES_INSTALL_SYSTEMD + "install -m 0755 debian/extra/mysql-systemd-start debian/tmp/usr/share/mysql/") + SET (DEB_RULES_INSTALL_APPARMOR "") + SET (DEB_RULES_APPARMOR_LOAD "") + SET (DEB_RULES_SYSTEMD_ENABLE "dh_systemd_enable --name=mysql") + SET (DEB_RULES_SYSTEMD_START "dh_systemd_start --restart-after-upgrade") + SET (DEB_INSTALL_SERVER_SYSTEMD "usr/share/mysql/mysql-systemd-start") + SET (DEB_INSTALL_SERVER_APPARMOR "") + SET (DEB_SERVICE_SERVER_EXECPRE + "ExecStartPre=/usr/share/mysql/mysql-systemd-start pre") + SET (DEB_INIT_APPARMOR "") + SET (DEB_CONTROL_DBGSYM "") + SET (DEB_RULES_STRIP "") ELSEIF(DEB_CODENAME STREQUAL "sid") IF (DEFINED DEB_GCC_SNAPSHOT) SET (DEB_CMAKE_EXTRAS "${DEB_CMAKE_EXTRAS} -DCMAKE_C_COMPILER=/usr/lib/gcc-snapshot/bin/gcc -DCMAKE_CXX_COMPILER=/usr/lib/gcc-snapshot/bin/g++ -DMYSQL_MAINTAINER_MODE=0 -DCMAKE_CXX_COMPILER_LAUNCHER=ccache") @@ -347,6 +364,29 @@ SET (DEB_RULES_SYSTEMD_ENABLE "dh_systemd_enable --name=mysql") SET (DEB_RULES_SYSTEMD_START "dh_systemd_start --restart-after-upgrade") SET (DEB_INSTALL_SERVER_SYSTEMD "usr/share/mysql/mysql-systemd-start") + SET (DEB_INSTALL_SERVER_APPARMOR "etc/apparmor.d/usr.sbin.mysqld") + SET (DEB_SERVICE_SERVER_EXECPRE + "ExecStartPre=/usr/share/mysql/mysql-systemd-start pre") + SET (DEB_INIT_APPARMOR "/lib/apparmor/profile-load usr.sbin.mysqld") + SET (DEB_CONTROL_DBGSYM "") + SET (DEB_RULES_STRIP "") +ELSEIF(DEB_CODENAME STREQUAL "disco") + SET (DEB_PLATFORMRELEASE "ubuntu19.04") + SET (DEB_CONTROL_BDEPS ", dh-apparmor, dh-systemd (>=1.5)") + SET (DEB_INSTALL_SOURCE_XZ "../*.tar.xz usr/src/mysql/") + SET (DEB_RULES_INSTALL_SYSTEMD + "install -m 0755 debian/extra/mysql-systemd-start debian/tmp/usr/share/mysql/") + SET (DEB_RULES_INSTALL_APPARMOR + " + install -g root -o root -m 0644 -D debian/extra/apparmor-profile debian/tmp/etc/apparmor.d/usr.sbin.mysqld + ") + SET (DEB_RULES_APPARMOR_LOAD + " + dh_apparmor -pmysql-${DEB_PRODUCTNAME}-server --profile-name=usr.sbin.mysqld + ") + SET (DEB_RULES_SYSTEMD_ENABLE "dh_systemd_enable --name=mysql") + SET (DEB_RULES_SYSTEMD_START "dh_systemd_start --restart-after-upgrade") + SET (DEB_INSTALL_SERVER_SYSTEMD "usr/share/mysql/mysql-systemd-start") SET (DEB_INSTALL_SERVER_APPARMOR "etc/apparmor.d/usr.sbin.mysqld") SET (DEB_SERVICE_SERVER_EXECPRE "ExecStartPre=/usr/share/mysql/mysql-systemd-start pre") diff -Nru mysql-5.7-5.7.25/packaging/deb-in/deb_debug.cmake mysql-5.7-5.7.26/packaging/deb-in/deb_debug.cmake --- mysql-5.7-5.7.25/packaging/deb-in/deb_debug.cmake 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/packaging/deb-in/deb_debug.cmake 2019-04-13 13:32:15.000000000 +0000 @@ -1,4 +1,4 @@ -# Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -121,4 +121,5 @@ usr/lib/mysql/plugin/debug/rewrite_example.so usr/lib/mysql/plugin/debug/test_security_context.so usr/lib/mysql/plugin/debug/test_udf_services.so +usr/lib/mysql/plugin/debug/udf_example.so ") diff -Nru mysql-5.7-5.7.25/packaging/deb-in/mysql-packagesource-test.install.in mysql-5.7-5.7.26/packaging/deb-in/mysql-packagesource-test.install.in --- mysql-5.7-5.7.25/packaging/deb-in/mysql-packagesource-test.install.in 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/packaging/deb-in/mysql-packagesource-test.install.in 2019-04-13 13:32:15.000000000 +0000 @@ -1,4 +1,4 @@ -# Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -53,6 +53,7 @@ usr/lib/mysql/plugin/rewrite_example.so usr/lib/mysql/plugin/test_security_context.so usr/lib/mysql/plugin/test_udf_services.so +usr/lib/mysql/plugin/udf_example.so @DEB_INSTALL_DEBUG_TEST_PLUGINS@ # test suite usr/lib/mysql-test/* diff -Nru mysql-5.7-5.7.25/packaging/deb-in/source/include-binaries mysql-5.7-5.7.26/packaging/deb-in/source/include-binaries --- mysql-5.7-5.7.25/packaging/deb-in/source/include-binaries 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/packaging/deb-in/source/include-binaries 2019-04-13 13:32:15.000000000 +0000 @@ -1,4 +1,4 @@ -# Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -65,6 +65,7 @@ debian/extra/semisync_slave-plugin debian/extra/test_security_context-plugin debian/extra/test_udf_services-plugin +debian/extra/udf_example-plugin debian/extra/validate_password-plugin debian/extra/version_token-plugin debian/extra/connection_control-plugin diff -Nru mysql-5.7-5.7.25/packaging/rpm-docker/mysql.spec.in mysql-5.7-5.7.26/packaging/rpm-docker/mysql.spec.in --- mysql-5.7-5.7.25/packaging/rpm-docker/mysql.spec.in 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/packaging/rpm-docker/mysql.spec.in 2019-04-13 13:32:15.000000000 +0000 @@ -1,4 +1,4 @@ -# Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -196,7 +196,7 @@ authentication_ldap_simple.so daemon_example.ini libdaemon_example.so \ qa_auth_client.so qa_auth_interface.so qa_auth_server.so \ replication_observers_example_plugin.so ha_example.so \ - test_udf_services.so test_security_context.so ; do + test_udf_services.so test_security_context.so udf_example.so ; do rm -f %{buildroot}%{_libdir}/mysql/plugin/$p done diff -Nru mysql-5.7-5.7.25/packaging/rpm-fedora/mysql.spec.in mysql-5.7-5.7.26/packaging/rpm-fedora/mysql.spec.in --- mysql-5.7-5.7.25/packaging/rpm-fedora/mysql.spec.in 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/packaging/rpm-fedora/mysql.spec.in 2019-04-13 13:32:15.000000000 +0000 @@ -1,4 +1,4 @@ -# Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -105,11 +105,7 @@ %if 0%{?fedora} > 24 BuildRequires: perl-generators %endif -%if 0%{?fedora} > 28 -BuildRequires: compat-openssl10-devel -%else BuildRequires: openssl-devel -%endif BuildRequires: time BuildRequires: cyrus-sasl-devel BuildRequires: libaio-devel @@ -856,6 +852,7 @@ %attr(644, root, root) %{_libdir}/mysql/plugin/daemon_example.ini %attr(755, root, root) %{_libdir}/mysql/plugin/libdaemon_example.so %attr(755, root, root) %{_libdir}/mysql/plugin/test_udf_services.so +%attr(755, root, root) %{_libdir}/mysql/plugin/udf_example.so %attr(755, root, root) %{_libdir}/mysql/plugin/replication_observers_example_plugin.so %attr(755, root, root) %{_libdir}/mysql/plugin/libtest_framework.so %attr(755, root, root) %{_libdir}/mysql/plugin/libtest_services.so @@ -886,6 +883,7 @@ %attr(755, root, root) %{_libdir}/mysql/plugin/debug/auth_test_plugin.so %attr(755, root, root) %{_libdir}/mysql/plugin/debug/libdaemon_example.so %attr(755, root, root) %{_libdir}/mysql/plugin/debug/test_udf_services.so +%attr(755, root, root) %{_libdir}/mysql/plugin/debug/udf_example.so %attr(755, root, root) %{_libdir}/mysql/plugin/debug/replication_observers_example_plugin.so %attr(755, root, root) %{_libdir}/mysql/plugin/debug/libtest_framework.so %attr(755, root, root) %{_libdir}/mysql/plugin/debug/libtest_services.so diff -Nru mysql-5.7-5.7.25/packaging/rpm-oel/mysql.spec.in mysql-5.7-5.7.26/packaging/rpm-oel/mysql.spec.in --- mysql-5.7-5.7.25/packaging/rpm-oel/mysql.spec.in 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/packaging/rpm-oel/mysql.spec.in 2019-04-13 13:32:15.000000000 +0000 @@ -1,4 +1,4 @@ -# Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -1269,6 +1269,7 @@ %attr(644, root, root) %{_libdir}/mysql/plugin/daemon_example.ini %attr(755, root, root) %{_libdir}/mysql/plugin/libdaemon_example.so %attr(755, root, root) %{_libdir}/mysql/plugin/test_udf_services.so +%attr(755, root, root) %{_libdir}/mysql/plugin/udf_example.so %attr(755, root, root) %{_libdir}/mysql/plugin/replication_observers_example_plugin.so %attr(755, root, root) %{_libdir}/mysql/plugin/libtest_framework.so %attr(755, root, root) %{_libdir}/mysql/plugin/libtest_services.so @@ -1299,6 +1300,7 @@ %attr(755, root, root) %{_libdir}/mysql/plugin/debug/auth_test_plugin.so %attr(755, root, root) %{_libdir}/mysql/plugin/debug/libdaemon_example.so %attr(755, root, root) %{_libdir}/mysql/plugin/debug/test_udf_services.so +%attr(755, root, root) %{_libdir}/mysql/plugin/debug/udf_example.so %attr(755, root, root) %{_libdir}/mysql/plugin/debug/replication_observers_example_plugin.so %attr(755, root, root) %{_libdir}/mysql/plugin/debug/libtest_framework.so %attr(755, root, root) %{_libdir}/mysql/plugin/debug/libtest_services.so diff -Nru mysql-5.7-5.7.25/packaging/rpm-sles/mysql.spec.in mysql-5.7-5.7.26/packaging/rpm-sles/mysql.spec.in --- mysql-5.7-5.7.25/packaging/rpm-sles/mysql.spec.in 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/packaging/rpm-sles/mysql.spec.in 2019-04-13 13:32:15.000000000 +0000 @@ -1,4 +1,4 @@ -# Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -1068,6 +1068,7 @@ %attr(644, root, root) %{_libdir}/mysql/plugin/daemon_example.ini %attr(755, root, root) %{_libdir}/mysql/plugin/libdaemon_example.so %attr(755, root, root) %{_libdir}/mysql/plugin/test_udf_services.so +%attr(755, root, root) %{_libdir}/mysql/plugin/udf_example.so %attr(755, root, root) %{_libdir}/mysql/plugin/replication_observers_example_plugin.so %attr(755, root, root) %{_libdir}/mysql/plugin/libtest_framework.so %attr(755, root, root) %{_libdir}/mysql/plugin/libtest_services.so @@ -1098,6 +1099,7 @@ %attr(755, root, root) %{_libdir}/mysql/plugin/debug/auth_test_plugin.so %attr(755, root, root) %{_libdir}/mysql/plugin/debug/libdaemon_example.so %attr(755, root, root) %{_libdir}/mysql/plugin/debug/test_udf_services.so +%attr(755, root, root) %{_libdir}/mysql/plugin/debug/udf_example.so %attr(755, root, root) %{_libdir}/mysql/plugin/debug/replication_observers_example_plugin.so %attr(755, root, root) %{_libdir}/mysql/plugin/debug/libtest_framework.so %attr(755, root, root) %{_libdir}/mysql/plugin/debug/libtest_services.so diff -Nru mysql-5.7-5.7.25/plugin/innodb_memcached/daemon_memcached/CMakeLists.txt mysql-5.7-5.7.26/plugin/innodb_memcached/daemon_memcached/CMakeLists.txt --- mysql-5.7-5.7.25/plugin/innodb_memcached/daemon_memcached/CMakeLists.txt 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/plugin/innodb_memcached/daemon_memcached/CMakeLists.txt 2019-04-13 13:32:15.000000000 +0000 @@ -1,4 +1,4 @@ -# Copyright (c) 2011, 2017, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2011, 2018, Oracle and/or its affiliates. All rights reserved. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -14,8 +14,7 @@ # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # Common defines and includes -INCLUDE_DIRECTORIES(${LIBEVENT_INCLUDE_DIR} - ${CMAKE_SOURCE_DIR}/include +INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/include ${CMAKE_SOURCE_DIR}/sql ${CMAKE_SOURCE_DIR}/bld/include ${CMAKE_SOURCE_DIR}/regex @@ -27,6 +26,7 @@ ${CMAKE_SOURCE_DIR}/plugin/innodb_memcached/daemon_memcached ) +INCLUDE_DIRECTORIES(SYSTEM ${LIBEVENT_INCLUDE_DIRS}) SET(CMAKE_CPP_FLAGS "${CMAKE_CPP_FLAGS} ${CMAKE_SHARED_LIBRARY_C_FLAGS} -I${CMAKE_SOURCE_DIR}/plugin/innodb_memcached/daemon_memcached/utilities") @@ -86,6 +86,6 @@ ENDIF() MYSQL_ADD_PLUGIN(libmemcached ${MEMCACHED_SOURCES} - LINK_LIBRARIES ${LIBEVENT_LIBRARY} ${LIBEVENT_LIBRARIES} + LINK_LIBRARIES ${LIBEVENT_LIBRARIES} memcached_utilities ${SASL_LIBRARY} MODULE_ONLY MODULE_OUTPUT_NAME "libmemcached") diff -Nru mysql-5.7-5.7.25/plugin/keyring/buffered_file_io.cc mysql-5.7-5.7.26/plugin/keyring/buffered_file_io.cc --- mysql-5.7-5.7.25/plugin/keyring/buffered_file_io.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/plugin/keyring/buffered_file_io.cc 2019-04-13 13:32:15.000000000 +0000 @@ -1,4 +1,4 @@ -/* Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved. +/* Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -94,7 +94,12 @@ my_bool Buffered_file_io::check_if_keyring_file_can_be_opened_or_created() { + // Check if the file exists + int file_exist= !my_access(this->keyring_filename.c_str(), F_OK); + + // try creating file or opening existing File file= file_io.open(keyring_file_data_key, this->keyring_filename.c_str(), + file_exist && keyring_open_mode ? O_RDONLY : O_RDWR | O_CREAT, MYF(MY_WME)); if (file < 0 || file_io.seek(file, 0, MY_SEEK_END, MYF(MY_WME)) == MY_FILEPOS_ERROR) @@ -320,8 +325,13 @@ my_bool Buffered_file_io::get_serialized_object(ISerialized_object **serialized_object) { + // Check if the file exists + int file_exist= !my_access(keyring_filename.c_str(), F_OK); + + // try creating file or opening existing File file= file_io.open(keyring_file_data_key, keyring_filename.c_str(), - O_CREAT | O_RDWR, MYF(MY_WME)); + file_exist && keyring_open_mode ? O_RDONLY : + O_RDWR | O_CREAT, MYF(MY_WME)); *serialized_object= NULL; diff -Nru mysql-5.7-5.7.25/plugin/keyring/buffered_file_io.h mysql-5.7-5.7.26/plugin/keyring/buffered_file_io.h --- mysql-5.7-5.7.25/plugin/keyring/buffered_file_io.h 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/plugin/keyring/buffered_file_io.h 2019-04-13 13:32:15.000000000 +0000 @@ -19,6 +19,7 @@ #include #include #include "i_keyring_io.h" +#include "keyring.h" #include "logger.h" #include "keyring_memory.h" #include "buffer.h" diff -Nru mysql-5.7-5.7.25/plugin/keyring/common/keyring.h mysql-5.7-5.7.26/plugin/keyring/common/keyring.h --- mysql-5.7-5.7.25/plugin/keyring/common/keyring.h 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/plugin/keyring/common/keyring.h 2019-04-13 13:32:15.000000000 +0000 @@ -1,4 +1,4 @@ -/* Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved. +/* Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -43,6 +43,7 @@ extern volatile my_bool is_keys_container_initialized; extern boost::movelib::unique_ptr logger; extern boost::movelib::unique_ptr keyring_file_data; +extern my_bool keyring_open_mode; #ifdef HAVE_PSI_INTERFACE void keyring_init_psi_keys(void); diff -Nru mysql-5.7-5.7.25/plugin/keyring/common/keyring_impl.cc mysql-5.7-5.7.26/plugin/keyring/common/keyring_impl.cc --- mysql-5.7-5.7.25/plugin/keyring/common/keyring_impl.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/plugin/keyring/common/keyring_impl.cc 2019-04-13 13:32:15.000000000 +0000 @@ -1,4 +1,4 @@ -/* Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved. +/* Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -30,6 +30,7 @@ volatile my_bool is_keys_container_initialized= FALSE; boost::movelib::unique_ptr logger(NULL); boost::movelib::unique_ptr keyring_file_data(NULL); +my_bool keyring_open_mode= FALSE; // 0 - Read|Write|Create; 1 - Read only #ifdef HAVE_PSI_INTERFACE static PSI_rwlock_info all_keyring_rwlocks[]= diff -Nru mysql-5.7-5.7.25/plugin/keyring/keyring.cc mysql-5.7-5.7.26/plugin/keyring/keyring.cc --- mysql-5.7-5.7.25/plugin/keyring/keyring.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/plugin/keyring/keyring.cc 2019-04-13 13:32:15.000000000 +0000 @@ -1,4 +1,4 @@ -/* Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved. +/* Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -80,9 +80,14 @@ update_keyring_file_data, /* update() */ MYSQL_DEFAULT_KEYRINGFILE /* default */ ); +static MYSQL_SYSVAR_BOOL(open_mode, keyring_open_mode, + PLUGIN_VAR_INVISIBLE | PLUGIN_VAR_RQCMDARG, + "Mode in which keyring file should be opened", NULL, + NULL, TRUE); static struct st_mysql_sys_var *keyring_file_system_variables[]= { MYSQL_SYSVAR(data), + MYSQL_SYSVAR(open_mode), NULL }; @@ -94,6 +99,8 @@ keyring_init_psi_keys(); #endif + DBUG_EXECUTE_IF("simulate_keyring_init_error", return TRUE;); + if (init_keyring_locks()) return TRUE; @@ -103,7 +110,7 @@ logger->log(MY_ERROR_LEVEL, "Could not create keyring directory " "The keyring_file will stay unusable until correct path to the keyring " "directory gets provided"); - return FALSE; + return TRUE; } keys.reset(new Keys_container(logger.get())); IKeyring_io *keyring_io= new Buffered_file_io(logger.get()); @@ -115,7 +122,7 @@ " can be created in the specified location. " "The keyring_file will stay unusable until correct path to the keyring file " "gets provided"); - return FALSE; + return TRUE; } is_keys_container_initialized = TRUE; return FALSE; diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/CMakeLists.txt mysql-5.7-5.7.26/rapid/plugin/group_replication/CMakeLists.txt --- mysql-5.7-5.7.25/rapid/plugin/group_replication/CMakeLists.txt 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/CMakeLists.txt 2019-04-13 13:32:15.000000000 +0000 @@ -224,7 +224,7 @@ LINK_LIBRARIES ${LZ4_LIBRARY} ${SSL_LIBRARIES} - ${TIRPC_LIBRARY} + ${TIRPC_LIBRARIES} MODULE_ONLY MODULE_OUTPUT_NAME "group_replication") ### INSTALLATION ### diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/configure.cmake mysql-5.7-5.7.26/rapid/plugin/group_replication/configure.cmake --- mysql-5.7-5.7.25/rapid/plugin/group_replication/configure.cmake 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/configure.cmake 2019-04-13 13:32:15.000000000 +0000 @@ -50,17 +50,11 @@ ENDIF() IF (NOT WIN32) - # First look for tirpc, then the old Sun RPC - FIND_PATH(RPC_INCLUDE_DIR - NAMES rpc/rpc.h - HINTS /usr/include/tirpc - NO_DEFAULT_PATH - ) - FIND_PATH(RPC_INCLUDE_DIR NAMES rpc/rpc.h) + MYSQL_CHECK_RPC() SET (CMAKE_REQUIRED_FLAGS_BACKUP ${CMAKE_REQUIRED_FLAGS}) SET (CMAKE_REQUIRED_FLAGS "-Wno-error") - SET (CMAKE_REQUIRED_INCLUDES ${RPC_INCLUDE_DIR}) + SET (CMAKE_REQUIRED_INCLUDES ${RPC_INCLUDE_DIRS}) ENDIF() # diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/include/handlers/certification_handler.h mysql-5.7-5.7.26/rapid/plugin/group_replication/include/handlers/certification_handler.h --- mysql-5.7-5.7.25/rapid/plugin/group_replication/include/handlers/certification_handler.h 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/include/handlers/certification_handler.h 2019-04-13 13:32:15.000000000 +0000 @@ -1,4 +1,4 @@ -/* Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved. +/* Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -16,16 +16,15 @@ #ifndef CERTIFICATION_HANDLER_INCLUDE #define CERTIFICATION_HANDLER_INCLUDE -#include #include "certifier.h" #include +#include -class Certification_handler : public Event_handler -{ +class Certification_handler : public Event_handler { public: Certification_handler(); virtual ~Certification_handler(); - int handle_event(Pipeline_event *ev,Continuation *cont); + int handle_event(Pipeline_event *ev, Continuation *cont); int handle_action(Pipeline_action *action); int initialize(); int terminate(); @@ -34,18 +33,35 @@ Certifier_interface *get_certifier(); - int set_certification_info(std::map* cert_info); + int set_certification_info(std::map *cert_info); private: - Certifier* cert_module; + Certifier *cert_module; - THD* applier_module_thd; + THD *applier_module_thd; rpl_sidno group_sidno; Data_packet *transaction_context_packet; Pipeline_event *transaction_context_pevent; + /** Are view change on wait for application */ + bool m_view_change_event_on_wait; + + /** View change information information stored for delay */ + struct View_change_stored_info { + Pipeline_event *view_change_pevent; + std::string local_gtid_certified; + rpl_gno view_change_event_gno; + View_change_stored_info(Pipeline_event *vc_pevent, std::string &local_gtid_string, rpl_gno gno) + : view_change_pevent(vc_pevent), + local_gtid_certified(local_gtid_string), + view_change_event_gno(gno) {} + }; + + /** All the VC events pending application due to timeout */ + std::list pending_view_change_events; + /** Set transaction context for next event handler. @@ -117,8 +133,14 @@ /** This methods guarantees that the view change event is logged after local transactions are executed. + + @param local_gtid_certified_string The set to wait. + If not defined, it extracts the current certified set + @retval 0 OK + @retval LOCAL_WAIT_TIMEOUT_ERROR Timeout error on wait + @retval !=0 Wait or interface error */ - int wait_for_local_transaction_execution(); + int wait_for_local_transaction_execution(std::string& local_gtid_certified_string); /** Create a transactional block for the received log event @@ -126,8 +148,75 @@ BEGIN EVENT COMMIT + + @param[in] pevent the event to be injected + @param[in, out] event_gno The transaction GTID gno + If -1, one will be generated. + @param[in] cont the object used to wait + + + @return the operation status + @retval 0 OK + @retval !=0 Error + */ + int inject_transactional_events(Pipeline_event *pevent, rpl_gno *event_gno, Continuation *cont); + + /** + Try to log a view change event waiting for local certified transactions to finish. + + @param[in] view_pevent the event to be injected + @param[in, out] local_gtid_string The local certified transaction set to wait + If empty, one will be assigned even on timeout + @param[in, out] event_gno The transaction GTID gno + If -1, one will be generated. + @param[in] cont the object used to wait + + + @return the operation status + @retval 0 OK + @retval LOCAL_WAIT_TIMEOUT_ERROR Timeout error on wait for local transactions + @retval !=0 Error + */ + int log_view_change_event_in_order(Pipeline_event *view_pevent, + std::string &local_gtid_string, + rpl_gno *event_gno, + Continuation *cont); + + /** + Store the event for future logging as a timeout occurred. + This method does 2 things: + 1. If not stored in the past, it stores the Pipeline event to + be logged in the future + 2. It queues again in the applier a fake View change log event + to ensure the logging method will be invoked eventually + + @param[in] view_pevent the event to be stored + @param[in] local_gtid_string The local certified transaction set to wait + @param[in] event_gno The transaction GTID gno + @param[in] cont Used to discard or not the transaction + + + @return the operation status + @retval 0 OK + @retval !=0 Error */ - int inject_transactional_events(Pipeline_event *pevent, Continuation *cont); + int store_view_event_for_delayed_logging(Pipeline_event *pevent, + std::string& local_gtid_certified_string, + rpl_gno event_gno, + Continuation *cont); + + /** + Logs all the delayed View Change log events stored. + + @param[in] cont the object used to mark error or success + + @return the operation status + @retval 0 OK + @retval LOCAL_WAIT_TIMEOUT_ERROR Timeout error on wait for local transactions + @retval !=0 Error + */ + int log_delayed_view_change_events(Continuation *cont); + }; #endif /* CERTIFICATION_HANDLER_INCLUDE */ diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/include/sql_service/sql_service_command.h mysql-5.7-5.7.26/rapid/plugin/group_replication/include/sql_service/sql_service_command.h --- mysql-5.7-5.7.25/rapid/plugin/group_replication/include/sql_service/sql_service_command.h 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/include/sql_service/sql_service_command.h 2019-04-13 13:32:15.000000000 +0000 @@ -1,4 +1,4 @@ -/* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved. +/* Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -122,8 +122,9 @@ @param [in] timeout The timeout after which the method should break @return the error value returned - @retval 0 OK - @retval !=0 Error when executed or timeout. + @retval 0 OK + @retval -1 Timeout on the GTID wait + @retval 1 Error when executed */ long internal_wait_for_server_gtid_executed(Sql_service_interface *sql_interface, std::string& gtid_executed, @@ -326,9 +327,11 @@ @param [in] gtid_executed The GTID string to check @param [in] timeout The timeout after which the method should break + @return the error value returned - @retval 0 OK - @retval !=0 Error when executed or timeout. + @retval 0 OK + @retval -1 Timeout on the GTID wait + @retval 1 Error when executed */ long wait_for_server_gtid_executed(std::string& gtid_executed, int timeout= 0); diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/libmysqlgcs/src/bindings/xcom/xcom/pax_msg.c mysql-5.7-5.7.26/rapid/plugin/group_replication/libmysqlgcs/src/bindings/xcom/xcom/pax_msg.c --- mysql-5.7-5.7.25/rapid/plugin/group_replication/libmysqlgcs/src/bindings/xcom/xcom/pax_msg.c 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/libmysqlgcs/src/bindings/xcom/xcom/pax_msg.c 2019-04-13 13:32:15.000000000 +0000 @@ -1,4 +1,4 @@ -/* Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved. +/* Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -52,7 +52,14 @@ p->to = VOID_NODE_NO; p->op = initial_op; init_ballot(&p->reply_to, 0, nodeno); - init_ballot(&p->proposal, 0, nodeno); + /* + -1 ensures ballot (-1,nodeno) is less than any ballot used by any + proposer. + Leader will use reserved ballot (0,_) for its initial 2-phase Paxos + round. + Remaining rounds will use ballot (1+,_) and the vanilla 3-phase Paxos. + */ + init_ballot(&p->proposal, -1, nodeno); p->synode = synode; p->msg_type = normal; p->receivers = NULL; diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/libmysqlgcs/src/bindings/xcom/xcom/xcom_base.c mysql-5.7-5.7.26/rapid/plugin/group_replication/libmysqlgcs/src/bindings/xcom/xcom/xcom_base.c --- mysql-5.7-5.7.25/rapid/plugin/group_replication/libmysqlgcs/src/bindings/xcom/xcom/xcom_base.c 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/libmysqlgcs/src/bindings/xcom/xcom/xcom_base.c 2019-04-13 13:32:15.000000000 +0000 @@ -4006,7 +4006,11 @@ common to both the sender_task, reply_handler_task, and the ac‐ ceptor_learner_task. */ + // Allow the previous server reference to be freed. + if (ep->srv) srv_unref(ep->srv); ep->srv = get_server(site, ep->p->from); + // Prevent the new server reference from being freed. + if (ep->srv) srv_ref(ep->srv); ep->p->refcnt = 1; /* Refcnt from other end is void here */ MAY_DBG(FN; NDBG(ep->rfd.fd, d); NDBG(task_now(), f); @@ -4120,6 +4124,8 @@ if (ep->buf) X_FREE(ep->buf); free(ep->in_buf); + // Allow the server reference to be freed. + if (ep->srv) srv_unref(ep->srv); TASK_END; } diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/libmysqlgcs/src/bindings/xcom/xcom/xcom_transport.c mysql-5.7-5.7.26/rapid/plugin/group_replication/libmysqlgcs/src/bindings/xcom/xcom/xcom_transport.c --- mysql-5.7-5.7.25/rapid/plugin/group_replication/libmysqlgcs/src/bindings/xcom/xcom/xcom_transport.c 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/libmysqlgcs/src/bindings/xcom/xcom/xcom_transport.c 2019-04-13 13:32:15.000000000 +0000 @@ -747,6 +747,12 @@ s->reply_handler = task_new(reply_handler_task, void_arg(s), "reply_handler_task", XCOM_THREAD_DEBUG); } reset_srv_buf(&s->out_buf); + /* + Keep the server from being freed if the acceptor_learner_task calls + srv_unref on the server before the {local_,}server_task and + reply_handler_task begin. + */ + srv_ref(s); return s; } @@ -872,6 +878,9 @@ task_terminate(s->sender); if (s->reply_handler) task_terminate(s->reply_handler); + + // Allow the server to be freed. This unref pairs with the ref from mksrv. + srv_unref(s); } diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/README mysql-5.7-5.7.26/rapid/plugin/group_replication/README --- mysql-5.7-5.7.25/rapid/plugin/group_replication/README 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/README 1970-01-01 00:00:00.000000000 +0000 @@ -1,563 +0,0 @@ -# Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved. -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; version 2 of the License. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - -=*= MySQL Group Replication =*= -=============================== - -The multi master plugin for MySQL is here. MySQL Group Replication enables -virtual synchronous updates on any member in a group of MySQL servers, with -conflict handling and failure detection. Distributed recovery is also in the -package to ease the process of adding new servers to your group. - - -* == Pre requisites == * - -Under the hood, the plugin is powered by group communication protocols. -They run a failure detection and membership service, safe and totally -ordered message delivery. All these services are key to make sure that data -is consistently replicated across a group of servers. At the core, there is -an implementation of Paxos (code named XCom) which acts as the group -communication system engine. - - -* == Plugin install == * - -Please check http://dev.mysql.com/doc/refman/5.7/en/installing.html - - -* == Plugin's required configurations == * - -As any new feature, the Group Replication plugin includes some limitations and -requirements that emerge from its underlying characteristics. When configuring -a server and your data for multi master you will need: - -1) Have the binlog active and its logging format set to ROW. - - Like on standard replication, multi master replication is based on the - transmission of log events. Its inner mechanism are however based on the - write sets generated during row based logging so row based replication is a - requirement. - - Server options: - -–log-bin - --binlog-format=row - -2) Have GTIDs enabled. - MySQL Group Replication depends on GTIDs, used to identify what - transactions were executed in the group, and for that reason vital to the - distributed recovery process. - - Server options: - --gtid-mode=on - --enforce-gtid-consistency - --log-slave-updates - -3) Use the InnoDB engine. - Synchronous multi master is dependent on transactional tables so only - InnoDB is supported. Since this is now the default engine, you only have to - be careful when creating individual tables. - -4) Every table must have a primary key. - Multi master concurrency control is based on primary keys. Every change - made to a table line is indexed to its primary key so this is a fundamental - requirement. - -5) Table based repositories - The relay log info and master info repositories must have their type set to - TABLE. Since group replication relies on channels for its applier and - recovery mechanism, table repositories are needed to isolate their - execution info. - - Server options: - --master-info-repository=TABLE - --relay-log-info-repository=TABLE - -6) Set the transaction write set extraction algorithm - The process of extracting what writes were made during a transaction is - crucial for conflict detection on all group servers. This extracted - information is then hashed using a specified algorithm that must be chosen - upfront. Currently there are two available algorithms: XXHASH64 and - MURMUR32. - - Server options: - --transaction-write-set-extraction=XXHASH64 - - 7) GCS engine - The GCS module relies on an implementation of Paxos developed at Oracle - (codename: XCom) as the building block to provide distributed agreement - between servers. - - To configure the GCS engine there are four options, described here: - - group_replication_local_address - ------------------------------- - The member local address, i.e., host:port that member will expose - itself to be contacted by the group. - Default value: empty string. - - group_replication_group_seeds - -------------------------------- - The list of peers, comma separated. E.g., host1:port1,host2:port2, - that also belong to the group. - If the server is not configured to bootstrap a group it will - sequentially contact the peers in the group in order to be added or - removed from it. - If the list contains its member local address, it will be ignored. - Default value: empty string. - - group_replication_bootstrap_group - --------------------------------- - If set to true, the server will bootstrap the group. - group_replication_group_seeds has no effect if this option is set - to true. - Default value: False. - - ==> Sample configuration for a 3 member group - - We are using global variables, but the configuration can be set on - configuration files. - - Server 1: - > SET GLOBAL group_replication_group_name= "UUID"; - > SET GLOBAL group_replication_local_address="192.168.0.1:10300"; - > SET GLOBAL group_replication_group_seeds= \ - "192.168.0.1:10300,192.168.0.2:10300,192.168.0.3:10300"; - > SET GLOBAL group_replication_bootstrap_group= 1; - - Server 2: - > SET GLOBAL group_replication_group_name= "UUID"; - > SET GLOBAL group_replication_local_address="192.168.0.2:10300"; - > SET GLOBAL group_replication_group_seeds= \ - "192.168.0.1:10300,192.168.0.2:10300,192.168.0.3:10300"; - - Server 3: - > SET GLOBAL group_replication_group_name= "UUID"; - > SET GLOBAL group_replication_local_address="192.168.0.3:10300"; - > SET GLOBAL group_replication_group_seeds= \ - "192.168.0.1:10300,192.168.0.2:10300,192.168.0.3:10300"; - - The group member join order must be: - 1) server 1 (the one with group_replication_bootstrap_group= 1); - 2) all others. - - After server 1 bootstraps the group, its - group_replication_bootstrap_group must be set to 0, in order to it to - be able to leave and rejoin, if needed, the *same* group instead of - starting a new one. - - -Other current limitations: - -1) Binlog Event checksum use must be OFF. - Due to needed changes in the checksum mechanism, multi master is - incompatible with these features as of now. - - Server options: - --binlog-checksum=NONE - -2) No concurrent DDL - As of now, DDL statements can't be concurrently executed with other DDL - queries or even DML. - -* == Hands on with MySQL Group Replication == * - -First of all, set-up a group of servers using the provided binaries that come -with the release or compile them yourself following the generic MySQL -compilation instructions. - -To test this on you desktop, use a group of physical or virtual machines, the -only requirement is that all your machines are network reachable. In this -example, three machines are spawn from the same machine with different data -folders. - - -==> Start the servers with the plugin and all the necessary options - -Server 1 - - $ ./bin/mysqld --no-defaults --basedir=. --datadir=data01 -P 13001 \ - --socket=mysqld1.sock --log-bin=master-bin --server-id=1 \ - --gtid-mode=on --enforce-gtid-consistency --log-slave-updates \ - --binlog-checksum=NONE --binlog-format=row \ - --master-info-repository=TABLE --relay-log-info-repository=TABLE \ - --transaction-write-set-extraction=XXHASH64 \ - --plugin-dir=lib/plugin --plugin-load=group_replication.so - -Server 2 - - $ ./bin/mysqld --no-defaults --basedir=. --datadir=data02 -P 13002 \ - --socket=mysqld2.sock --log-bin=master-bin --server-id=2 \ - --gtid-mode=on --enforce-gtid-consistency --log-slave-updates \ - --binlog-checksum=NONE --binlog-format=row \ - --master-info-repository=TABLE --relay-log-info-repository=TABLE \ - --transaction-write-set-extraction=XXHASH64 \ - --plugin-dir=lib/plugin --plugin-load=group_replication.so - -Server 3 - - $ ./bin/mysqld --no-defaults --basedir=. --datadir=data03 -P 13003 \ - --socket=mysqld3.sock --log-bin=master-bin --server-id=3 \ - --gtid-mode=on --enforce-gtid-consistency --log-slave-updates \ - --binlog-checksum=NONE --binlog-format=row \ - --master-info-repository=TABLE --relay-log-info-repository=TABLE \ - --transaction-write-set-extraction=XXHASH64 \ - --plugin-dir=lib/plugin --plugin-load=group_replication.so - -On Windows systems the plugin filename is group_replication.dll - -Alternatively, if you have a running server without the plugin loaded -you can install it on run-time. This implies that you have GTID mode -ON, row based logging and all the above requirements correctly -configured. - - $ ./bin/mysql -uroot -h 127.0.0.1 -P 13001 --prompt='server1>' - - server1> INSTALL PLUGIN group_replication SONAME 'group_replication.so'; - -On Windows systems the plugin filename is group_replication.dll - - -=> Create a replication user - -Needed for inter member connections, as described below, all group servers -should have a valid replication user. - - server> CREATE USER rpl_user@'%'; - server> GRANT REPLICATION SLAVE ON *.* TO rpl_user@'%' IDENTIFIED BY 'rpl_pass'; - server> FLUSH PRIVILEGES; - - -==> Configure it - -The first step on configuring a MySQL Group server is to define a -unique name that identifies the group and allows its members to join. -This name must be defined on every member, and since it works also as the -group UUID, it must be a valid UUID. - - server1> SET GLOBAL group_replication_group_name= "8a94f357-aab4-11df-86ab-c80aa9429562"; - -Besides this, you should also configure the access credentials for recovery. -These settings are used by joining servers to establish a slave connection to a -donor when entering the group, allowing them to receive missing data. Ignored -on the first member that forms the group, you should always configure it on -every server anyway, as they may fail and be reinstated at any moment in time. - -By default the configured value of the user and password to be used for -connecting to the donor is empty i.e. "". To change the values you need to -execute CHANGE MASTER FOR CHANNEL 'group_replication_recovery' which will -not only create the recovery channel to connect to the donor but will also set -the username and password value to be used. - - server1> CHANGE MASTER TO MASTER_USER='rpl_user', MASTER_PASSWORD='rpl_pass' FOR CHANNEL 'group_replication_recovery'; - -Please note: You can only set the username and password value for the -group_replication_recovery channel. Any other valid CHANGE MASTER parameter -set for this channel will return an error. - -Most of this channel parameters are automatically configured by the recovery -process, so you can never define to which server a joiner shall connect for -example. You can however use the recovery’s retry count and reconnect interval -variables. These field tells recovery how many times it should try to connect -to the available donors and how much time to wait when every attempt to connect -to all group donors fails. By default, retry count is equal to 10 and the -reconnect interval is set to 60 seconds. - -If you want to modify them, just use a variation of the example commands: - - server1> SET GLOBAL group_replication_recovery_retry_count= 2; - - server1> SET GLOBAL group_replication_recovery_reconnect_interval= 120; - -Configure group communication settings: - server1> SET GLOBAL group_replication_local_address="127.0.0.1:10301"; - server1> SET GLOBAL group_replication_group_seeds= \ - "127.0.0.1:10301,127.0.0.1:10302,127.0.0.1:10303"; - server1> SET GLOBAL group_replication_bootstrap_group= 1; - -==> Start multi master replication - - server1> START GROUP_REPLICATION; - server1> SET GLOBAL group_replication_bootstrap_group= 0; - -==> Check the server status - - server1> SELECT * FROM performance_schema.replication_connection_status\G - *************************** 1. row *************************** - CHANNEL_NAME: group_replication_applier - GROUP_NAME: 8a94f357-aab4-11df-86ab-c80aa9429562 - SOURCE_UUID: 8a94f357-aab4-11df-86ab-c80aa9429562 - THREAD_ID: NULL - SERVICE_STATE: ON - COUNT_RECEIVED_HEARTBEATS: 0 - LAST_HEARTBEAT_TIMESTAMP: 0000-00-00 00:00:00 - RECEIVED_TRANSACTION_SET: 8a94f357-aab4-11df-86ab-c80aa9429562:1 - LAST_ERROR_NUMBER: 0 - LAST_ERROR_MESSAGE: - LAST_ERROR_TIMESTAMP: 0000-00-00 00:00:00 - -Here you can see the information about group replication through the status of -its main channel. Besides the name you know the group replication applier is -running and that no error was detected. - - -==> Check the group members - - server1> SELECT * FROM performance_schema.replication_group_members; - +---------------------------+--------------------------------------+---------------+-------------+--------------+ - | CHANNEL_NAME | MEMBER_ID | MEMBER_HOST | MEMBER_PORT | MEMBER_STATE | - +---------------------------+--------------------------------------+---------------+-------------+--------------+ - | group_replication_applier | e221c36c-c652-11e4-956d-6067203feba0 | 127.0.0.1 | 13001 | ONLINE | - +---------------------------+--------------------------------------+---------------+-------------+--------------+ - - -==> Test query execution - -Start server 2: - - server2> SET GLOBAL group_replication_group_name= "8a94f357-aab4-11df-86ab-c80aa9429562"; - server2> CHANGE MASTER TO MASTER_USER='rpl_user', MASTER_PASSWORD='rpl_pass' FOR CHANNEL 'group_replication_recovery'; - server2> SET GLOBAL group_replication_local_address="127.0.0.1:10302"; - server2> SET GLOBAL group_replication_group_seeds= \ - "127.0.0.1:10301,127.0.0.1:10302,127.0.0.1:10303"; - server2> START GROUP_REPLICATION; - - server2> SELECT * FROM performance_schema.replication_group_members; - +---------------------------+--------------------------------------+---------------+-------------+--------------+ - | CHANNEL_NAME | MEMBER_ID | MEMBER_HOST | MEMBER_PORT | MEMBER_STATE | - +---------------------------+--------------------------------------+---------------+-------------+--------------+ - | group_replication_applier | c55e10ed-c654-11e4-957a-6067203feba0 | 127.0.0.1 | 13002 | ONLINE | - | group_replication_applier | e221c36c-c652-11e4-956d-6067203feba0 | 127.0.0.1 | 13001 | ONLINE | - +---------------------------+--------------------------------------+---------------+-------------+--------------+ - -Insert some data on server 1: - - server1> CREATE DATABASE test; - server1> CREATE TABLE test.t1 (c1 INT NOT NULL PRIMARY KEY) ENGINE=InnoDB; - server1> INSERT INTO test.t1 VALUES (1); - - -Alternate between servers and check the data flow: - - server2> SELECT * FROM test.t1; - +----+ - | c1 | - +----+ - | 1 | - +----+ - - server2> INSERT INTO test.t1 VALUES (2); - - server1> SELECT * FROM test.t1; - +----+ - | c1 | - +----+ - | 1 | - | 2 | - +----+ - - -==> See distributed recovery in action - -When you start a new server, it will try to get all the data it is missing from -the other group members. It will use the configured access credentials and -connect to another member fetching the missing group transactions. -During this period its state will be shown as 'RECOVERING', and you should not -preform any action on this server during this phase. - - - server3> SET GLOBAL group_replication_group_name= "8a94f357-aab4-11df-86ab-c80aa9429562"; - server3> CHANGE MASTER TO MASTER_USER='rpl_user', MASTER_PASSWORD='rpl_pass' FOR CHANNEL 'group_replication_recovery'; - server3> SET GLOBAL group_replication_local_address="127.0.0.1:10303"; - server3> SET GLOBAL group_replication_group_seeds= \ - "127.0.0.1:10301,127.0.0.1:10302,127.0.0.1:10303"; - server3> START GROUP_REPLICATION; - - server3> SELECT * FROM performance_schema.replication_group_members; - +---------------------------+--------------------------------------+---------------+-------------+--------------+ - | CHANNEL_NAME | MEMBER_ID | MEMBER_HOST | MEMBER_PORT | MEMBER_STATE | - +---------------------------+--------------------------------------+---------------+-------------+--------------+ - | group_replication_applier | 43d16968-c656-11e4-9583-6067203feba0 | 127.0.0.1 | 13003 | RECOVERING | - | group_replication_applier | c55e10ed-c654-11e4-957a-6067203feba0 | 127.0.0.1 | 13002 | ONLINE | - | group_replication_applier | e221c36c-c652-11e4-956d-6067203feba0 | 127.0.0.1 | 13001 | ONLINE | - +---------------------------+--------------------------------------+---------------+-------------+--------------+ - -Wait for it to be online. Truth is that here, with such a small -amount of data, this state is hard to spot. However, you should be -aware of this when dealing with real data sets. - - server3> SELECT * FROM performance_schema.replication_group_members; - +---------------------------+--------------------------------------+---------------+-------------+--------------+ - | CHANNEL_NAME | MEMBER_ID | MEMBER_HOST | MEMBER_PORT | MEMBER_STATE | - +---------------------------+--------------------------------------+---------------+-------------+--------------+ - | group_replication_applier | 43d16968-c656-11e4-9583-6067203feba0 | 127.0.0.1 | 13003 | ONLINE | - | group_replication_applier | c55e10ed-c654-11e4-957a-6067203feba0 | 127.0.0.1 | 13002 | ONLINE | - | group_replication_applier | e221c36c-c652-11e4-956d-6067203feba0 | 127.0.0.1 | 13001 | ONLINE | - +---------------------------+--------------------------------------+---------------+-------------+--------------+ - - server3> SELECT * FROM test.t1; - +----+ - | c1 | - +----+ - | 1 | - | 2 | - +----+ - - -==> Be aware of failures on concurrency scenarios - -Due to the distributed nature of MySQL group replication, concurrent updates -can result on query failure if the queries are found to be conflicting. Lets -perform a concurrent update to the same line in the example table - -On server 1 - - server1> UPDATE test.t1 SET c1=4 where c1=1; - -On server 2 - - server2> UPDATE test.t1 SET c1=3 where c1=1; - -Execute in parallel - - server1> UPDATE test.t1 SET c1=4 where c1=1; - Query OK, 1 row affected (0.06 sec) - - server2> UPDATE test.t1 SET c1=3 where c1=1; - ERROR 1181 (HY000): Got error 149 during ROLLBACK - -Note that the scenario where the second update succeeds and the first one -fails is also equally possible and only depends on the order the queries were -ordered and certified inside the plugin. - -Let's check the tables. - -server1> SELECT * FROM test.t1; -+----+ -| c1 | -+----+ -| 2 | -| 4 | -+----+ - -server2> SELECT * FROM test.t1; -+----+ -| c1 | -+----+ -| 2 | -| 4 | -+----+ - -The failed query rollbacks and no server data is affected by it. - - -==> Check the execution stats - -Check your GTID stats on each group member - - server1>SELECT @@GLOBAL.GTID_EXECUTED; - +------------------------------------------+ - | @@GLOBAL.GTID_EXECUTED | - +------------------------------------------+ - | 8a94f357-aab4-11df-86ab-c80aa9429562:1-8 | - +------------------------------------------+ - - server2>SELECT @@GLOBAL.GTID_EXECUTED; - +------------------------------------------+ - | @@GLOBAL.GTID_EXECUTED | - +------------------------------------------+ - | 8a94f357-aab4-11df-86ab-c80aa9429562:1-8 | - +------------------------------------------+ - -Note that in all servers the GTID executed set is the same and belongs to the -group. -You are maybe asking yourself why the set contains 8 transactions when we only -executed 5 successful queries in this tutorial. The reason is that whenever a -member joins or leaves the group a transaction is logged to mark in every member -this moment for recovery reasons. - -The member execution stats are also available on the performance schema -tables. - - SELECT * FROM performance_schema.replication_group_member_stats\G - *************************** 1. row *************************** - CHANNEL_NAME: group_replication_applier - VIEW_ID: 1425918173:3 - MEMBER_ID: e221c36c-c652-11e4-956d-6067203feba0 - COUNT_TRANSACTIONS_IN_QUEUE: 0 - COUNT_TRANSACTIONS_CHECKED: 6 - COUNT_CONFLICTS_DETECTED: 1 - COUNT_TRANSACTIONS_VALIDATING: 0 - TRANSACTIONS_COMMITTED_ALL_MEMBERS: 8a94f357-aab4-11df-86ab-c80aa9429562:1-8 - LAST_CONFLICT_FREE_TRANSACTION: 8a94f357-aab4-11df-86ab-c80aa9429562:8 - - -Where it can be seen that, from the 6 executed queries on this tutorial, 1 was -found to be conflicting. We can also see that the transaction in the queue are -0, so it means no transaction are waiting validation. - -On the last fields, the transaction validating field is 0 because all -transaction that were executed are already considered to be stable on all -members, as seen in the second last field. In other words, every member knows -all the data, so the number of possible conflicting transactions is 0. - - -==> Stop group replication - -To stop the plugin, you just need to execute: - - server1> STOP GROUP_REPLICATION; - - -==> Reset group replication channels - -If after using group replication you want to remove the associated channel and -files you can execute. - - server1> RESET SLAVE ALL FOR CHANNEL "group_replication_applier"; - -Note that the "group_replication_applier" channel is not a normal slave -channel and will not respond to generic commands like "RESET SLAVE ALL". - - -==> How to start multi master replication at server boot - -Before configuring Group replication to start on boot, please remember that at -least once, you need to configure the recovery access credentials. -To allow the member to contact other servers, you must at least once start the -server and execute a CHANGE MASTER command for group_replication_recovery channel -with the values being set for MASTER_USER and MASTER_PASSWORD. On subsequent -restarts on these members there is no need to run CHANGE MASTER command again -since its values are persisted. - -From this point on Group Replication can now start along side with the server -given that you configure the below options: - -Set the group name - - --loose-group_replication_group_name - -Set the start on boot flag to true - - --loose-group_replication_start_on_boot - -When using XCom you will also need the contact options. - ---loose-group_replication_local_address="127.0.0.1:10301"; ---loose-group_replication_group_seeds= "127.0.0.1:10301,127.0.0.1:10302,127.0.0.1:10303"; - -* == Conclusion == * - -On his first steps, MySQL Group Replication is still in development. Feel free -to try it and get back at us so we can make it even better for the community! diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/rpcgen.cmake mysql-5.7-5.7.26/rapid/plugin/group_replication/rpcgen.cmake --- mysql-5.7-5.7.25/rapid/plugin/group_replication/rpcgen.cmake 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/rpcgen.cmake 2019-04-13 13:32:15.000000000 +0000 @@ -93,16 +93,9 @@ MESSAGE(FATAL_ERROR "Could not find rpcgen") ENDIF() - IF(NOT RPC_INCLUDE_DIR) - MESSAGE(FATAL_ERROR - "Could not find rpc/rpc.h in /usr/include or /usr/include/tirpc") - ENDIF() - MESSAGE(STATUS "RPC_INCLUDE_DIR ${RPC_INCLUDE_DIR}") - IF(RPC_INCLUDE_DIR STREQUAL "/usr/include/tirpc") - INCLUDE_DIRECTORIES(SYSTEM /usr/include/tirpc) - ADD_DEFINITIONS(-DHAVE_TIRPC) - SET(TIRPC_LIBRARY tirpc) - ENDIF() + MYSQL_CHECK_RPC() + + MESSAGE(STATUS "RPC_INCLUDE_DIRS ${RPC_INCLUDE_DIRS}") # on unix systems try to generate them if needed ADD_CUSTOM_COMMAND(OUTPUT ${x_gen_h} ${x_gen_c} ${x_tmp_plat_h} diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/src/applier.cc mysql-5.7-5.7.26/rapid/plugin/group_replication/src/applier.cc --- mysql-5.7-5.7.25/rapid/plugin/group_replication/src/applier.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/src/applier.cc 2019-04-13 13:32:15.000000000 +0000 @@ -1,4 +1,4 @@ -/* Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved. +/* Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -285,7 +285,9 @@ Pipeline_event* pevent= new Pipeline_event(view_change_event, fde_evt, cache); pevent->mark_event(SINGLE_VIEW_EVENT); error= inject_event_into_pipeline(pevent, cont); - delete pevent; + //When discarded, the VCLE logging was delayed, so don't delete it + if (!cont->is_transaction_discarded()) + delete pevent; return error; } diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/src/handlers/certification_handler.cc mysql-5.7-5.7.26/rapid/plugin/group_replication/src/handlers/certification_handler.cc --- mysql-5.7-5.7.25/rapid/plugin/group_replication/src/handlers/certification_handler.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/src/handlers/certification_handler.cc 2019-04-13 13:32:15.000000000 +0000 @@ -1,4 +1,4 @@ -/* Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved. +/* Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -19,20 +19,30 @@ #include "plugin_log.h" using std::string; -const int GTID_WAIT_TIMEOUT= 30; //30 seconds - +const int GTID_WAIT_TIMEOUT= 10; //10 seconds +const int LOCAL_WAIT_TIMEOUT_ERROR= -1; Certification_handler::Certification_handler() :cert_module(NULL), applier_module_thd(NULL), group_sidno(0), transaction_context_packet(NULL), - transaction_context_pevent(NULL) + transaction_context_pevent(NULL), + m_view_change_event_on_wait(false) {} Certification_handler::~Certification_handler() { delete transaction_context_pevent; delete transaction_context_packet; + + for (std::list::iterator stored_view_info_it = + pending_view_change_events.begin(); + stored_view_info_it != pending_view_change_events.end(); + ++stored_view_info_it) + { + delete (*stored_view_info_it)->view_change_pevent; + delete *stored_view_info_it; + } } int @@ -465,7 +475,6 @@ { DBUG_ENTER("Certification_handler::extract_certification_info"); int error= 0; - Log_event *event= NULL; if (pevent->get_event_context() != SINGLE_VIEW_EVENT) { @@ -488,6 +497,89 @@ On that case we need to queue it on the group applier wrapped on a transaction with a group generated GTID. */ + + /* + If there are pending view changes to apply, apply them first. + If we can't apply the old VCLEs probably we can't apply the new one + */ + if (unlikely(m_view_change_event_on_wait)) + { + error = log_delayed_view_change_events(cont); + m_view_change_event_on_wait = !pending_view_change_events.empty(); + } + + std::string local_gtid_certified_string; + rpl_gno view_change_event_gno = -1; + if (!error) + { + error= log_view_change_event_in_order(pevent, + local_gtid_certified_string, + &view_change_event_gno, + cont); + } + + /* + If there are was a timeout applying this or an older view change, + just store the event for future application. + An packet is also added the the applier module queue to ensure the + eventual event application. + */ + if (error) + { + if (LOCAL_WAIT_TIMEOUT_ERROR == error) { + error= store_view_event_for_delayed_logging(pevent, + local_gtid_certified_string, view_change_event_gno, cont); + log_message(MY_WARNING_LEVEL, + "Unable to log the group change View log event in its exaction position in the log." + " This will not however affect the group replication recovery process or the overall plugin process."); + if (error) + cont->signal(1, false); + else + cont->signal(0, cont->is_transaction_discarded()); + } + else + cont->signal(1, false); + } + + DBUG_RETURN(error); +} + +int Certification_handler::log_delayed_view_change_events(Continuation *cont) +{ + DBUG_ENTER("Certification_handler::log_delayed_view_change_events"); + + int error= 0; + + + while (!pending_view_change_events.empty() && !error) + { + View_change_stored_info *stored_view_info= pending_view_change_events.front(); + error= log_view_change_event_in_order(stored_view_info->view_change_pevent, + stored_view_info->local_gtid_certified, + &(stored_view_info->view_change_event_gno), + cont); + // if we timeout keep the event + if (LOCAL_WAIT_TIMEOUT_ERROR != error) + { + delete stored_view_info->view_change_pevent; + delete stored_view_info; + pending_view_change_events.pop_front(); + } + } + DBUG_RETURN(error); +} + +int Certification_handler:: +store_view_event_for_delayed_logging(Pipeline_event *pevent, + std::string& local_gtid_certified_string, + rpl_gno event_gno, + Continuation *cont) +{ + DBUG_ENTER("Certification_handler::store_view_event_for_delayed_logging"); + + int error= 0; + + Log_event *event= NULL; error= pevent->get_LogEvent(&event); if (error || (event == NULL)) { @@ -495,55 +587,42 @@ log_message(MY_ERROR_LEVEL, "Failed to fetch View_change_log_event containing required" " info for certification"); - cont->signal(1, true); DBUG_RETURN(1); - /* purecov: end */ + /* purecov: end */ } View_change_log_event *vchange_event= static_cast(event); + std::string view_change_event_id(vchange_event->get_view_id()); - std::map cert_info; - cert_module->get_certification_info(&cert_info); - size_t event_size = 0; - vchange_event->set_certification_info(&cert_info, &event_size); - - /* - If certification information is too big this event can't be transmitted - as it would cause failures on all group members. - To avoid this, we now instead encode an error that will make the joiner - leave the group. - */ - if (event_size > get_slave_max_allowed_packet()) { - cert_info.clear(); - cert_info[Certifier::CERTIFICATION_INFO_ERROR_NAME] = - "Certification information is too large for transmission."; - vchange_event->set_certification_info(&cert_info, &event_size); - } - - //Assure the last known local transaction was already executed - error= wait_for_local_transaction_execution(); - - /** - Create a transactional block for the View change log event - GTID - BEGIN - VCLE - COMMIT - */ - if (!error) - error= inject_transactional_events(pevent,cont); + // -1 means there was a second timeout on a VCLE that we already delayed + if (view_change_event_id != "-1") + { + m_view_change_event_on_wait = true; + View_change_stored_info *vcle_info= + new View_change_stored_info(pevent, local_gtid_certified_string, event_gno); + pending_view_change_events.push_back(vcle_info); + //Use the discard flag to let the applier know this was delayed + cont->set_transation_discarded(true); + } + + // Add a packet back to the applier queue so it is processed in a later stage. + std::string delayed_view_id("-1"); + View_change_packet * view_change_packet= new View_change_packet(delayed_view_id); + applier_module->add_view_change_packet(view_change_packet); DBUG_RETURN(error); } -int Certification_handler::wait_for_local_transaction_execution() +int Certification_handler::wait_for_local_transaction_execution(std::string& local_gtid_certified_string) { DBUG_ENTER("Certification_handler::wait_for_local_transaction_execution"); int error= 0; - std::string local_gtid_certified_string; - if (!cert_module->get_local_certified_gtid(local_gtid_certified_string)) + if (local_gtid_certified_string.empty()) { - DBUG_RETURN(0); //empty + if (!cert_module->get_local_certified_gtid(local_gtid_certified_string)) + { + DBUG_RETURN(0); // set is empty, we don't need to wait + } } Sql_service_command_interface *sql_command_interface= @@ -567,11 +646,12 @@ GTID_WAIT_TIMEOUT))) { /* purecov: begin inspected */ - if (error == 1) //timeout + if (error == -1) //timeout { - log_message(MY_ERROR_LEVEL, + log_message(MY_WARNING_LEVEL, "Timeout when waiting for the server to execute local " "transactions in order assure the group change proper logging"); + error= LOCAL_WAIT_TIMEOUT_ERROR; } else { @@ -586,6 +666,7 @@ } int Certification_handler::inject_transactional_events(Pipeline_event *pevent, + rpl_gno *event_gno, Continuation *cont) { DBUG_ENTER("Certification_handler::inject_transactional_events"); @@ -615,8 +696,11 @@ } //GTID event - - Gtid gtid= {group_sidno, cert_module->generate_view_change_group_gno()}; + if (*event_gno == -1) + { + *event_gno= cert_module->generate_view_change_group_gno(); + } + Gtid gtid= {group_sidno, *event_gno}; if (gtid.gno <= 0) { cont->signal(1, true); @@ -687,6 +771,80 @@ DBUG_RETURN(0); } +int Certification_handler::log_view_change_event_in_order(Pipeline_event *view_pevent, + std::string &local_gtid_string, + rpl_gno *event_gno, + Continuation *cont) { + DBUG_ENTER("Certification_handler::log_view_change_event_in_order"); + + int error= 0; + bool first_log_attempt= (*event_gno == -1); + + Log_event *event= NULL; + error= view_pevent->get_LogEvent(&event); + if (error || (event == NULL)) + { + /* purecov: begin inspected */ + log_message(MY_ERROR_LEVEL, + "Failed to fetch View_change_log_event containing required" + " info for certification"); + DBUG_RETURN(1); + /* purecov: end */ + } + View_change_log_event *vchange_event= static_cast(event); + std::string view_change_event_id(vchange_event->get_view_id()); + + /* + A -1 view id means this event was queued to make the applier pipeline retry the + logging of a view change log event that was not successful in the past. + The original event was however stored elsewhere so this event is ignored. + */ + if (unlikely(view_change_event_id == "-1")) + DBUG_RETURN(0); + + if (first_log_attempt) + { + std::map cert_info; + cert_module->get_certification_info(&cert_info); + size_t event_size = 0; + vchange_event->set_certification_info(&cert_info, &event_size); + + /* + If certification information is too big this event can't be transmitted + as it would cause failures on all group members. + To avoid this, we now instead encode an error that will make the joiner + leave the group. + */ + if (event_size > get_slave_max_allowed_packet()) { + cert_info.clear(); + cert_info[Certifier::CERTIFICATION_INFO_ERROR_NAME] = + "Certification information is too large for transmission."; + vchange_event->set_certification_info(&cert_info, &event_size); + } + } + + //Assure the last known local transaction was already executed + error= wait_for_local_transaction_execution(local_gtid_string); + + if (!error) { + /** + Create a transactional block for the View change log event + GTID + BEGIN + VCLE + COMMIT + */ + error= inject_transactional_events(view_pevent, event_gno, cont); + } + else if (LOCAL_WAIT_TIMEOUT_ERROR == error && first_log_attempt) + { + // Even if we can't log it, register the position + *event_gno= cert_module->generate_view_change_group_gno(); + } + + DBUG_RETURN(error); +} + bool Certification_handler::is_unique() { return true; diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/src/plugin.cc mysql-5.7-5.7.26/rapid/plugin/group_replication/src/plugin.cc --- mysql-5.7-5.7.25/rapid/plugin/group_replication/src/plugin.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/src/plugin.cc 2019-04-13 13:32:15.000000000 +0000 @@ -291,12 +291,9 @@ ER_THD(thd, ER_WARN_DEPRECATED_SYNTAX_NO_REPLACEMENT), name); } - else - { - log_message(MY_WARNING_LEVEL, - ER_DEFAULT(ER_WARN_DEPRECATED_SYNTAX_NO_REPLACEMENT), - name); - } + log_message(MY_WARNING_LEVEL, + ER_DEFAULT(ER_WARN_DEPRECATED_SYNTAX_NO_REPLACEMENT), + name); } /* @@ -615,17 +612,6 @@ super_read_only_mode); } - /* - Abort right away if the exit state action was set to ABORT_SERVER (and we - are starting GROUP_REPLICATION on boot). - */ - if (exit_state_action_var == EXIT_STATE_ACTION_ABORT_SERVER && - start_group_replication_at_boot_var) - { - abort_plugin_process("Fatal error during execution of Group Replication " - "group joining process"); - } - if (certification_latch != NULL) { delete certification_latch; /* purecov: inspected */ diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/src/sql_service/sql_service_command.cc mysql-5.7-5.7.26/rapid/plugin/group_replication/src/sql_service/sql_service_command.cc --- mysql-5.7-5.7.25/rapid/plugin/group_replication/src/sql_service/sql_service_command.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/src/sql_service/sql_service_command.cc 2019-04-13 13:32:15.000000000 +0000 @@ -1,4 +1,4 @@ -/* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved. +/* Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -466,7 +466,8 @@ } std::string query= ss.str(); - long srv_err= sql_interface->execute_query(query); + Sql_resultset rset; + long srv_err= sql_interface->execute_query(query, &rset); if (srv_err) { /* purecov: begin inspected */ @@ -478,6 +479,11 @@ DBUG_RETURN(1); /* purecov: end */ } + else if(rset.get_rows() > 0) + { + if (rset.getLong(0) == 1) + DBUG_RETURN(-1); + } DBUG_RETURN(0); } diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/collections/default.experimental mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/collections/default.experimental --- mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/collections/default.experimental 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/collections/default.experimental 2019-04-13 13:32:15.000000000 +0000 @@ -1,5 +1,2 @@ # For easier human reading (MTR doesn't care), please keep entries # in alphabetical order. This also helps with merge conflict resolution. - -group_replication.gr_exit_state_action_on_join_wrong_gtid_assignment_block_size # Bug#28763561 2018-10-08 msundell Fails for mysql-5.7 -group_replication.gr_exit_state_action_on_join_wrong_hash_algorithm # Bug#28763637 2018-10-08 msundell Fails in PB2 diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/inc/gr_single_primary_mode.inc mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/inc/gr_single_primary_mode.inc --- mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/inc/gr_single_primary_mode.inc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/inc/gr_single_primary_mode.inc 2019-04-13 13:32:15.000000000 +0000 @@ -34,7 +34,10 @@ while ($_i_set_single_primary_mode <= $rpl_server_count) { - --let $rpl_connection_name= server$_i_set_single_primary_mode + --let $rpl_connection_name= server_aux_$_i_set_single_primary_mode + --let $rpl_server_number= $_i_set_single_primary_mode + --source include/rpl_connect.inc + --let $rpl_connection_name= server_aux_$_i_set_single_primary_mode --source include/rpl_connection.inc # plugin cannot be running for us to setup these configs @@ -62,6 +65,9 @@ SET GLOBAL group_replication_enforce_update_everywhere_checks= TRUE; } + --connection default + --disconnect server_aux_$_i_set_single_primary_mode + --inc $_i_set_single_primary_mode } diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/r/gr_autostart_on_install.result mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/r/gr_autostart_on_install.result --- mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/r/gr_autostart_on_install.result 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/r/gr_autostart_on_install.result 2019-04-13 13:32:15.000000000 +0000 @@ -13,6 +13,7 @@ # # restart:--group_replication_local_address=GROUP_REPLICATION_LOCAL_ADDRESS --group_replication_group_seeds=GROUP_REPLICATION_GROUP_SEEDS --group_replication_start_on_boot=1 include/rpl_reconnect.inc +include/gr_wait_for_member_state.inc include/stop_group_replication.inc RESET SLAVE ALL FOR CHANNEL "group_replication_applier"; # diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/r/gr_crash_while_dml_and_some_server_recovering.result mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/r/gr_crash_while_dml_and_some_server_recovering.result --- mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/r/gr_crash_while_dml_and_some_server_recovering.result 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/r/gr_crash_while_dml_and_some_server_recovering.result 2019-04-13 13:32:15.000000000 +0000 @@ -41,6 +41,8 @@ # killing # Kill and restart:--group_replication_local_address=GROUP_REPLICATION_LOCAL_ADDRESS --group_replication_group_seeds=GROUP_REPLICATION_GROUP_SEEDS --group_replication_group_name=GROUP_REPLICATION_GROUP_NAME # restarting +# CR_SERVER_LOST, CR_SERVER_GONE_ERROR +Got one of the listed errors include/rpl_reconnect.inc # check that there are 2 mebers in the group include/rpl_gr_wait_for_number_of_members.inc diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/r/gr_disjoint_gtids_join_option_deprecation.result mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/r/gr_disjoint_gtids_join_option_deprecation.result --- mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/r/gr_disjoint_gtids_join_option_deprecation.result 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/r/gr_disjoint_gtids_join_option_deprecation.result 2019-04-13 13:32:15.000000000 +0000 @@ -6,14 +6,23 @@ ############################################################ # 1. Validate that the group_replication_allow_local_disjoint_gtids_join -# option deprecation warning is thrown. +# option deprecation warning is thrown when SET command is used. +SET GLOBAL group_replication_allow_local_disjoint_gtids_join= ON; +Warnings: +Warning 1681 'group_replication_allow_local_disjoint_gtids_join' is deprecated and will be removed in a future release. +include/assert_grep.inc [Found the expected deprecation log message.] + +############################################################ +# 2. Validate that the group_replication_allow_local_disjoint_gtids_join +# option deprecation warning is thrown when START GR is used. include/start_and_bootstrap_group_replication.inc Warnings: Warning 1681 'group_replication_allow_local_disjoint_gtids_join' is deprecated and will be removed in a future release. include/stop_group_replication.inc +include/assert_grep.inc [Found the expected deprecation log message.] ############################################################ -# 2. Validate that the group_replication_allow_local_disjoint_gtids_join +# 3. Validate that the group_replication_allow_local_disjoint_gtids_join # option deprecation warning is logged on server start. # restart:--group_replication_group_name=GROUP_REPLICATION_GROUP_NAME --group_replication_local_address=GROUP_REPLICATION_LOCAL_ADDRESS --group_replication_group_seeds=GROUP_REPLICATION_GROUP_SEEDS --group_replication_bootstrap_group=1 --group_replication_start_on_boot=1 include/rpl_reconnect.inc @@ -21,5 +30,5 @@ include/assert_grep.inc [Found the expected deprecation log message.] ############################################################ -# 3. Clean up. +# 4. Clean up. include/group_replication_end.inc diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/r/gr_exit_state_action_on_join_lower_version.result mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/r/gr_exit_state_action_on_join_lower_version.result --- mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/r/gr_exit_state_action_on_join_lower_version.result 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/r/gr_exit_state_action_on_join_lower_version.result 2019-04-13 13:32:15.000000000 +0000 @@ -8,17 +8,6 @@ Note #### Sending passwords in plain text without SSL/TLS is extremely insecure. Note #### Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information. [connection server1] -[connection server2] -SET SESSION sql_log_bin = 0; -call mtr.add_suppression("Error, maximum number of retries exceeded when waiting for the internal server session state to be operating"); -call mtr.add_suppression("Failed to establish an internal server connection to execute plugin operations"); -call mtr.add_suppression("Error when extracting information for group change. Operations and checks made to group joiners may be incomplete."); -call mtr.add_suppression("Member version is incompatible with the group."); -call mtr.add_suppression("Timeout on wait for view after joining group"); -call mtr.add_suppression("\\[GCS\\] Error connecting to all peers. Member join failed.*"); -call mtr.add_suppression("\\[GCS\\] read failed"); -call mtr.add_suppression("\\[GCS\\] The member was unable to join the group.*"); -SET SESSION sql_log_bin = 1; ######################################################################### # 1) Simulate a higher version on M1. @@ -38,37 +27,35 @@ include/rpl_reconnect.inc ######################################################################### -# 3) M2 should be in super_read_only mode and in OFFLINE state (since it -# failed to join the group). +# 3) M2 super_read_only mode shall be OFF and in OFFLINE state +# (since it failed to join the group). ######################################################################### [connection server2] include/rpl_gr_wait_for_number_of_members.inc include/gr_wait_for_member_state.inc -include/assert.inc [super_read_only should be enabled] include/assert_grep.inc [GR reported expected incompatibility on member version] [connection server1] include/rpl_gr_wait_for_number_of_members.inc ######################################################################### # 4) Change the exit_state_action to ABORT_SERVER. Try to join M2 to the -# group again. +# group again. ######################################################################### [connection server2] # restart:--group_replication_local_address=GROUP_REPLICATION_LOCAL_ADDRESS --group_replication_group_seeds=GROUP_REPLICATION_GROUP_SEEDS --group-replication-group-name=GROUP_REPLICATION_GROUP_NAME --group_replication_start_on_boot=1 --group_replication_exit_state_action=ABORT_SERVER ######################################################################### -# 5) M2 should have abort()ed. +# 5) M2 super_read_only mode shall be OFF and in OFFLINE state +# (since it failed to join the group). ######################################################################### [connection server1] include/rpl_gr_wait_for_number_of_members.inc include/rpl_reconnect.inc [connection server2] -include/rpl_reconnect.inc include/assert_grep.inc [GR reported expected incompatibility on member version] -include/assert_grep.inc [GR reported expected abort] ######################################################################### # 6) Restart M2 again without group_replication_start_on_boot enabled. diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/r/gr_exit_state_action_on_join_members_exceeded.result mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/r/gr_exit_state_action_on_join_members_exceeded.result --- mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/r/gr_exit_state_action_on_join_members_exceeded.result 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/r/gr_exit_state_action_on_join_members_exceeded.result 2019-04-13 13:32:15.000000000 +0000 @@ -1,6 +1,6 @@ ######################################################################### -# 0) Setup group of 1 member (M1). +# 0) Setup group of 2 members (M1 and M2). ######################################################################### include/group_replication.inc @@ -9,23 +9,7 @@ Note #### Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information. [connection server1] include/start_and_bootstrap_group_replication.inc -SET SESSION sql_log_bin = 0; -call mtr.add_suppression("\\[GCS\\] Error connecting to all peers. Member join failed.*"); -call mtr.add_suppression("\\[GCS\\] read failed"); -call mtr.add_suppression("\\[GCS\\] The member was unable to join the group.*"); -SET SESSION sql_log_bin = 1; [connection server2] -SET SESSION sql_log_bin = 0; -call mtr.add_suppression("\\[GCS\\] Error connecting to all peers. Member join failed.*"); -call mtr.add_suppression("\\[GCS\\] read failed"); -call mtr.add_suppression("\\[GCS\\] The member was unable to join the group.*"); -call mtr.add_suppression("The plugin encountered a critical error and will abort: Fatal error during execution of Group Replication"); -call mtr.add_suppression("Timeout on wait for view after joining group"); -call mtr.add_suppression("Error, maximum number of retries exceeded when waiting for the internal server session state to be operating"); -call mtr.add_suppression("Failed to establish an internal server connection to execute plugin operations"); -call mtr.add_suppression("Error when extracting information for group change. Operations and checks made to group joiners may be incomplete"); -call mtr.add_suppression("The START GROUP_REPLICATION command failed since the group already has 9 members."); -SET SESSION sql_log_bin = 1; ######################################################################### # 1) Simulate a group of 10 members when member 2 joins. Member 2 will @@ -36,14 +20,13 @@ include/rpl_reconnect.inc ######################################################################### -# 2) Verify that member 2 was sent to super_read_only mode and in OFFLINE -# state (since it failed to join the group). +# 2) M2 super_read_only mode shall be OFF and in OFFLINE state +# (since it failed to join the group). ######################################################################### [connection server2] include/rpl_gr_wait_for_number_of_members.inc include/gr_wait_for_member_state.inc -include/assert.inc [super_read_only should be enabled] include/assert_grep.inc [GR reported expected excess of members in group] [connection server1] include/rpl_gr_wait_for_number_of_members.inc @@ -58,16 +41,15 @@ # restart:--group_replication_local_address=GROUP_REPLICATION_LOCAL_ADDRESS --group_replication_group_seeds=GROUP_REPLICATION_GROUP_SEEDS --group-replication-group-name=GROUP_REPLICATION_GROUP_NAME --group_replication_start_on_boot=1 --loose-debug=+d,group_replication_set_number_of_members_on_view_changed_to_10 --group_replication_exit_state_action=ABORT_SERVER ######################################################################### -# 4) Member 2 will have abort()ed. +# 4) M2 super_read_only mode shall be OFF and in OFFLINE state +# (since it failed to join the group). ######################################################################### [connection server1] include/rpl_gr_wait_for_number_of_members.inc include/rpl_reconnect.inc [connection server2] -include/rpl_reconnect.inc include/assert_grep.inc [GR reported expected excess of members in group] -include/assert_grep.inc [GR reported expected abort] ######################################################################### # 5) Restart M2 again without group_replication_start_on_boot enabled. diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/r/gr_exit_state_action_on_join_transaction_mismatch.result mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/r/gr_exit_state_action_on_join_transaction_mismatch.result --- mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/r/gr_exit_state_action_on_join_transaction_mismatch.result 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/r/gr_exit_state_action_on_join_transaction_mismatch.result 2019-04-13 13:32:15.000000000 +0000 @@ -8,16 +8,6 @@ Note #### Sending passwords in plain text without SSL/TLS is extremely insecure. Note #### Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information. [connection server1] -[connection server2] -SET SESSION sql_log_bin = 0; -call mtr.add_suppression("Timeout on wait for view after joining group"); -call mtr.add_suppression("\\[GCS\\] Error connecting to all peers. Member join failed.*"); -call mtr.add_suppression("\\[GCS\\] read failed"); -call mtr.add_suppression("\\[GCS\\] The member was unable to join the group.*"); -call mtr.add_suppression("This member has more executed transactions than those present in the group. Local transactions*"); -call mtr.add_suppression("The member contains transactions not present in the group. The member will now exit the group"); -call mtr.add_suppression("The plugin encountered a critical error and will abort: Fatal error during execution of Group Replication"); -SET SESSION sql_log_bin = 1; ######################################################################### # 1) Run a few transactions on M2. @@ -40,13 +30,13 @@ include/rpl_reconnect.inc ######################################################################### -# 3) M2 should go to super_read_only mode. +# 3) M2 super_read_only mode shall be OFF and in OFFLINE state +# (since it failed to join the group). ######################################################################### [connection server2] include/rpl_gr_wait_for_number_of_members.inc include/gr_wait_for_member_state.inc -include/assert.inc [super_read_only should be enabled] include/assert_grep.inc [GR reported expected transaction mismatch] [connection server1] include/rpl_gr_wait_for_number_of_members.inc @@ -60,16 +50,15 @@ # restart:--group_replication_local_address=GROUP_REPLICATION_LOCAL_ADDRESS --group_replication_group_seeds=GROUP_REPLICATION_GROUP_SEEDS --group-replication-group-name=GROUP_REPLICATION_GROUP_NAME --group_replication_start_on_boot=1 --group_replication_exit_state_action=ABORT_SERVER ######################################################################### -# 5) M2 should have abort()'ed. +# 5) M2 super_read_only mode shall be OFF and in OFFLINE state +# (since it failed to join the group). ######################################################################### [connection server1] include/rpl_gr_wait_for_number_of_members.inc include/rpl_reconnect.inc [connection server2] -include/rpl_reconnect.inc include/assert_grep.inc [GR reported expected transaction mismatch] -include/assert_grep.inc [GR reported expected abort] ######################################################################### # 6) Restart M2 again without group_replication_start_on_boot enabled. @@ -92,7 +81,8 @@ [connection server1] DROP TABLE t3; [connection server2] -SET sql_log_bin = 0; +include/stop_group_replication.inc +SET SESSION sql_log_bin = 0; DROP TABLE t2; -SET sql_log_bin = 1; +SET SESSION sql_log_bin = 1; include/group_replication_end.inc diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/r/gr_exit_state_action_on_join_wrong_gtid_assignment_block_size.result mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/r/gr_exit_state_action_on_join_wrong_gtid_assignment_block_size.result --- mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/r/gr_exit_state_action_on_join_wrong_gtid_assignment_block_size.result 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/r/gr_exit_state_action_on_join_wrong_gtid_assignment_block_size.result 2019-04-13 13:32:15.000000000 +0000 @@ -9,15 +9,6 @@ Note #### Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information. [connection server1] include/start_and_bootstrap_group_replication.inc -[connection server2] -SET SESSION sql_log_bin = 0; -call mtr.add_suppression("The plugin encountered a critical error and will abort: Fatal error during execution of Group Replication"); -call mtr.add_suppression("Unable to start Group Replication on boot"); -call mtr.add_suppression("Timeout on wait for view after joining group"); -call mtr.add_suppression("\\[GCS\\] Error connecting to all peers. Member join failed.*"); -call mtr.add_suppression("\\[GCS\\] read failed"); -call mtr.add_suppression("\\[GCS\\] The member was unable to join the group.*"); -SET SESSION sql_log_bin = 1; ######################################################################### # 1) Relaunch M2 with a different gtid_assignment_block_size from M1. @@ -28,37 +19,35 @@ include/rpl_reconnect.inc ######################################################################### -# 2) M2 should be in super_read_only mode and in OFFLINE state (since it -# failed to join the group). +# 2) M2 super_read_only mode shall be OFF and in OFFLINE state +# (since it failed to join the group). ######################################################################### [connection server2] include/rpl_gr_wait_for_number_of_members.inc include/gr_wait_for_member_state.inc -include/assert.inc [super_read_only should be enabled] include/assert_grep.inc [GR reported that it has a different gtid_assignment_block_size value (as expected)] [connection server1] include/rpl_gr_wait_for_number_of_members.inc ######################################################################### # 3) Relaunch M2 with a different gtid_assignment_block_size from M1 and -# with exit_state_action set to ABORT_SERVER. +# with exit_state_action set to ABORT_SERVER. ######################################################################### [connection server2] # restart:--group_replication_local_address=GROUP_REPLICATION_LOCAL_ADDRESS --group_replication_group_seeds=GROUP_REPLICATION_GROUP_SEEDS --group-replication-group-name=GROUP_REPLICATION_GROUP_NAME --group_replication_start_on_boot=1 --group_replication_gtid_assignment_block_size=GROUP_REPLICATION_GTID_ASSIGNMENT_BLOCK_SIZE --group_replication_exit_state_action=ABORT_SERVER ######################################################################### -# 4) M2 should have abort()ed. +# 4) M2 super_read_only mode shall be OFF and in OFFLINE state +# (since it failed to join the group). ######################################################################### [connection server1] include/rpl_gr_wait_for_number_of_members.inc include/rpl_reconnect.inc [connection server2] -include/rpl_reconnect.inc include/assert_grep.inc [GR reported that it has a different gtid_assignment_block_size value (as expected)] -include/assert_grep.inc [GR reported expected abort] ######################################################################### # 5) Restart M2 again without group_replication_start_on_boot enabled. diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/r/gr_exit_state_action_on_join_wrong_hash_algorithm.result mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/r/gr_exit_state_action_on_join_wrong_hash_algorithm.result --- mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/r/gr_exit_state_action_on_join_wrong_hash_algorithm.result 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/r/gr_exit_state_action_on_join_wrong_hash_algorithm.result 2019-04-13 13:32:15.000000000 +0000 @@ -10,14 +10,6 @@ [connection server1] include/start_and_bootstrap_group_replication.inc [connection server2] -SET SESSION sql_log_bin = 0; -call mtr.add_suppression("The plugin encountered a critical error and will abort: Fatal error during execution of Group Replication"); -call mtr.add_suppression("Unable to start Group Replication on boot"); -call mtr.add_suppression("Timeout on wait for view after joining group"); -call mtr.add_suppression("\\[GCS\\] Error connecting to all peers. Member join failed.*"); -call mtr.add_suppression("\\[GCS\\] read failed"); -call mtr.add_suppression("\\[GCS\\] The member was unable to join the group.*"); -SET SESSION sql_log_bin = 1; ######################################################################### # 1) Relaunch M2 with a different hash algorithm from M1. @@ -28,14 +20,13 @@ include/rpl_reconnect.inc ######################################################################### -# 2) M2 should be in super_read_only mode and in OFFLINE state (since it -# failed to join the group). +# 2) M2 super_read_only mode shall be OFF and in OFFLINE state +# (since it failed to join the group). ######################################################################### [connection server2] include/rpl_gr_wait_for_number_of_members.inc include/gr_wait_for_member_state.inc -include/assert.inc [super_read_only should be enabled] include/assert_grep.inc [GR reported that it has an incompatible option with the group (as expected)] [connection server1] include/rpl_gr_wait_for_number_of_members.inc @@ -49,16 +40,15 @@ # restart:--group_replication_local_address=GROUP_REPLICATION_LOCAL_ADDRESS --group_replication_group_seeds=GROUP_REPLICATION_GROUP_SEEDS --group-replication-group-name=GROUP_REPLICATION_GROUP_NAME --group_replication_start_on_boot=1 --transaction-write-set-extraction=HASH_ALGORITHM --group_replication_exit_state_action=ABORT_SERVER ######################################################################### -# 4) M2 should have abort()ed. +# 4) M2 super_read_only mode shall be OFF and in OFFLINE state +# (since it failed to join the group). ######################################################################### [connection server1] include/rpl_gr_wait_for_number_of_members.inc include/rpl_reconnect.inc [connection server2] -include/rpl_reconnect.inc include/assert_grep.inc [GR reported that it has an incompatible option with the group (as expected)] -include/assert_grep.inc [GR reported expected abort] ######################################################################### # 5) Restart M2 again without group_replication_start_on_boot enabled. diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/r/gr_exit_state_action_on_join_wrong_single_primary_mode.result mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/r/gr_exit_state_action_on_join_wrong_single_primary_mode.result --- mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/r/gr_exit_state_action_on_join_wrong_single_primary_mode.result 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/r/gr_exit_state_action_on_join_wrong_single_primary_mode.result 2019-04-13 13:32:15.000000000 +0000 @@ -10,14 +10,6 @@ [connection server1] include/start_and_bootstrap_group_replication.inc [connection server2] -SET SESSION sql_log_bin = 0; -call mtr.add_suppression("The plugin encountered a critical error and will abort: Fatal error during execution of Group Replication"); -call mtr.add_suppression("Unable to start Group Replication on boot"); -call mtr.add_suppression("Timeout on wait for view after joining group"); -call mtr.add_suppression("\\[GCS\\] Error connecting to all peers. Member join failed.*"); -call mtr.add_suppression("\\[GCS\\] read failed"); -call mtr.add_suppression("\\[GCS\\] The member was unable to join the group.*"); -SET SESSION sql_log_bin = 1; ######################################################################### # 1) Relaunch M2 with a different single_primary_mode from M1. @@ -28,12 +20,11 @@ include/rpl_reconnect.inc ######################################################################### -# 2) M2 should be in super_read_only mode and in OFFLINE state (since it -# failed to join the group). +# 2) M2 super_read_only mode shall be OFF and in OFFLINE state +# (since it failed to join the group). ######################################################################### [connection server2] -include/assert.inc [super_read_only should be enabled] include/rpl_gr_wait_for_number_of_members.inc include/gr_wait_for_member_state.inc include/assert_grep.inc [GR reported that it has an incompatible option with the group (as expected)] @@ -49,16 +40,15 @@ # restart:--group_replication_local_address=GROUP_REPLICATION_LOCAL_ADDRESS --group_replication_group_seeds=GROUP_REPLICATION_GROUP_SEEDS --group-replication-group-name=GROUP_REPLICATION_GROUP_NAME --group_replication_start_on_boot=1 --group_replication_single_primary_mode=TRUE --group_replication_exit_state_action=ABORT_SERVER --group_replication_enforce_update_everywhere_checks=FALSE ######################################################################### -# 4) M2 should have abort()ed. +# 4) M2 super_read_only mode shall be OFF and in OFFLINE state +# (since it failed to join the group). ######################################################################### [connection server1] include/rpl_gr_wait_for_number_of_members.inc include/rpl_reconnect.inc [connection server2] -include/rpl_reconnect.inc include/assert_grep.inc [GR reported that it has an incompatible option with the group (as expected)] -include/assert_grep.inc [GR reported expected abort] ######################################################################### # 5) Restart M2 again without group_replication_start_on_boot enabled. diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/r/gr_lower_case_table_names.result mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/r/gr_lower_case_table_names.result --- mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/r/gr_lower_case_table_names.result 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/r/gr_lower_case_table_names.result 2019-04-13 13:32:15.000000000 +0000 @@ -35,7 +35,6 @@ # restart:--group_replication_start_on_boot=1 --group_replication_local_address=GROUP_REPLICATION_LOCAL_ADDRESS --group_replication_group_seeds=GROUP_REPLICATION_GROUP_SEEDS --group_replication_group_name=GROUP_REPLICATION_GROUP_NAME --lower_case_table_names=2 include/rpl_reconnect.inc -include/rpl_gr_wait_for_number_of_members.inc ## 4B. Test GR does not start with command when lower_case_table_names ## does not match. diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/r/gr_recovery_connection_options.result mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/r/gr_recovery_connection_options.result --- mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/r/gr_recovery_connection_options.result 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/r/gr_recovery_connection_options.result 2019-04-13 13:32:15.000000000 +0000 @@ -40,6 +40,8 @@ call mtr.add_suppression("Skipping leave operation: concurrent attempt to leave the group is on-going."); call mtr.add_suppression(".*Invalid .* username when attempting to connect to the master server.*"); set session sql_log_bin=1; +SET @debug_save= @@GLOBAL.DEBUG; +SET @@GLOBAL.DEBUG='d,recovery_thread_wait_before_finish'; CHANGE MASTER TO MASTER_USER='$recovery_user', MASTER_PASSWORD='$recovery_bad_password' FOR CHANNEL 'group_replication_recovery'; # Set the retry count to try only twice. One time for each member. SET GLOBAL group_replication_recovery_retry_count= 2;; @@ -47,29 +49,20 @@ SET GLOBAL group_replication_recovery_reconnect_interval= 1;; include/assert.inc [The value of the recovery retry count should be equal to 2] # Start recovery and wait to verify the member is in recovery -SET @@GLOBAL.DEBUG='d,recovery_thread_wait_before_finish'; include/start_group_replication.inc -# Wake up recovery -SET DEBUG_SYNC= 'RESET'; -SET @@GLOBAL.DEBUG= @debug_save; -SET DEBUG_SYNC= "now SIGNAL signal.recovery_end"; # The member should error out as it can't connect +SET DEBUG_SYNC= "now SIGNAL signal.recovery_end"; include/gr_wait_for_member_state.inc # # Set MASTER_USER to an empty user name, watching it fail # -SET @debug_save= @@GLOBAL.DEBUG; include/stop_group_replication.inc CHANGE MASTER TO MASTER_USER= '', MASTER_PASSWORD= '' FOR CHANNEL 'group_replication_recovery'; Warnings: Note 1759 Sending passwords in plain text without SSL/TLS is extremely insecure. Note 1760 Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information. # Start recovery and wait to verify the member is in recovery -SET @@GLOBAL.DEBUG='d,recovery_thread_wait_before_finish'; include/start_group_replication.inc -# Wake up recovery -SET DEBUG_SYNC= 'RESET'; -SET @@GLOBAL.DEBUG= @debug_save; SET DEBUG_SYNC= "now SIGNAL signal.recovery_end"; include/gr_wait_for_member_state.inc # Verify that the show slave status shows specific IO_error @@ -77,17 +70,12 @@ # # Set MASTER_USER to non existing user, watching it fail # -SET @debug_save= @@GLOBAL.DEBUG; CHANGE MASTER TO MASTER_USER= 'parveez', MASTER_PASSWORD= 'me' FOR CHANNEL 'group_replication_recovery'; Warnings: Note 1759 Sending passwords in plain text without SSL/TLS is extremely insecure. Note 1760 Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information. # Start recovery and wait to verify the member is in recovery -SET @@GLOBAL.DEBUG='d,recovery_thread_wait_before_finish'; include/start_group_replication.inc -# Wake up recovery -SET DEBUG_SYNC= 'RESET'; -SET @@GLOBAL.DEBUG= @debug_save; SET DEBUG_SYNC= "now SIGNAL signal.recovery_end"; include/gr_wait_for_member_state.inc # Verify that show slave status shows specific IO_ERROR @@ -98,6 +86,7 @@ # DROP USER "recovery_user"; SET DEBUG_SYNC='RESET'; +SET @@GLOBAL.DEBUG = @debug_save; SET GLOBAL group_replication_recovery_retry_count= 10; SET GLOBAL group_replication_recovery_reconnect_interval= 60; DROP TABLE t1; diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/r/gr_server_failover_while_dml.result mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/r/gr_server_failover_while_dml.result --- mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/r/gr_server_failover_while_dml.result 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/r/gr_server_failover_while_dml.result 2019-04-13 13:32:15.000000000 +0000 @@ -27,6 +27,10 @@ # killing # Kill and restart:--group_replication_local_address=GROUP_REPLICATION_LOCAL_ADDRESS --group_replication_group_seeds=GROUP_REPLICATION_GROUP_SEEDS --group_replication_group_name=GROUP_REPLICATION_GROUP_NAME # restarting +[connection server1] +# CR_SERVER_LOST, CR_SERVER_GONE_ERROR +Got one of the listed errors +[connection server_1] include/rpl_reconnect.inc [connection server2] # check that there are 2 members in the group diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/r/gr_uninstall_while_network_blocked.result mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/r/gr_uninstall_while_network_blocked.result --- mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/r/gr_uninstall_while_network_blocked.result 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/r/gr_uninstall_while_network_blocked.result 2019-04-13 13:32:15.000000000 +0000 @@ -36,10 +36,10 @@ # 6. Clean-up [connection server1] -include/rpl_start_server.inc [server_number=1] -include/rpl_reconnect.inc # CR_SERVER_LOST, CR_SERVER_GONE_ERROR Got one of the listed errors +include/rpl_start_server.inc [server_number=1] +include/rpl_reconnect.inc [connection server2] DROP TABLE test.t1; [connection server_1] diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/r/gr_view_change_delayed_write_order.result mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/r/gr_view_change_delayed_write_order.result --- mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/r/gr_view_change_delayed_write_order.result 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/r/gr_view_change_delayed_write_order.result 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,72 @@ +include/group_replication.inc [rpl_server_count=3] +Warnings: +Note #### Sending passwords in plain text without SSL/TLS is extremely insecure. +Note #### Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information. +[connection server1] +# +# 1. Create a user to ensure server 3 recovery comes from server 1 +[connection server1] +SET SESSION sql_log_bin= 0; +CREATE USER "recovery_user" IDENTIFIED BY "recovery_password"; +GRANT REPLICATION SLAVE ON *.* TO "recovery_user"; +FLUSH PRIVILEGES; +SET SESSION sql_log_bin= 1; +# +# 2. Start group replication in server 1 and 2 +[connection server1] +include/start_and_bootstrap_group_replication.inc +CREATE TABLE t1 (c1 INT NOT NULL PRIMARY KEY) ENGINE=InnoDB; +[connection server2] +include/start_group_replication.inc +# +# 3. Block a local transaction on server 1 +[connection server1] +SET @@GLOBAL.DEBUG='+d,group_replication_after_before_commit_hook'; +INSERT INTO t1 VALUES (1); +# +# 4. Start server 3, it should be stuck in recovery +# Even after 15 seconds it should still be stuck +[connection server3] +CHANGE MASTER TO MASTER_USER= 'recovery_user', MASTER_PASSWORD= 'recovery_password' FOR CHANNEL 'group_replication_recovery'; +include/start_group_replication.inc +include/gr_wait_for_member_state.inc +# +# 5. Execute something on server 2, it should appear on server 3 +[connection server2] +INSERT INTO t1 VALUES (2); +[connection server3] +# +# 6. Unblock the local transaction on server 1 +[connection server_1] +SET @@GLOBAL.DEBUG='-d,group_replication_after_before_commit_hook'; +SET DEBUG_SYNC= "now SIGNAL signal.commit_continue"; +[connection server1] +# +# 7. Server 3 should now be online +[connection server3] +include/gr_wait_for_member_state.inc +# +# 8. Check the logged event order in all servers +[connection server1] +include/assert_binlog_events.inc [Gtid # Query/BEGIN # View_change # Query/COMMIT # !Gtid_transaction # Gtid # Query/BEGIN # View_change # Query/COMMIT # !Gtid_transaction # !Gtid_transaction # Gtid # Query/BEGIN # View_change # Query/COMMIT] +[connection server2] +include/assert_binlog_events.inc [Gtid # Query/BEGIN # View_change # Query/COMMIT # !Gtid_transaction # Gtid # Query/BEGIN # View_change # Query/COMMIT # !Gtid_transaction # Gtid # Query/BEGIN # View_change # Query/COMMIT # !Gtid_transaction] +[connection server3] +include/assert_binlog_events.inc [Gtid # Query/BEGIN # View_change # Query/COMMIT # !Gtid_transaction # Gtid # Query/BEGIN # View_change # Query/COMMIT # !Gtid_transaction # !Gtid_transaction # Gtid # Query/BEGIN # View_change # Query/COMMIT] +# +# 9. Clean up. +[connection server1] +DROP TABLE t1; +SET SESSION sql_log_bin= 0; +DROP USER "recovery_user"; +SET SESSION sql_log_bin= 1; +SET SESSION sql_log_bin= 0; +call mtr.add_suppression("Timeout when waiting for the server to execute local transactions*"); +call mtr.add_suppression("Unable to log the group change View log event in its exaction position in the log.*"); +SET SESSION sql_log_bin= 1; +[connection server3] +SET SESSION sql_log_bin= 0; +call mtr.add_suppression("There was an error when connecting to the donor server.*"); +call mtr.add_suppression("For details please check performance_schema.replication_connection_status table and error log messages of Slave I/O for channel group_replication_recovery."); +SET SESSION sql_log_bin= 1; +include/group_replication_end.inc diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/t/gr_autostart_on_install.test mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/t/gr_autostart_on_install.test --- mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/t/gr_autostart_on_install.test 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/t/gr_autostart_on_install.test 2019-04-13 13:32:15.000000000 +0000 @@ -49,6 +49,9 @@ --let $_init_server2_auto_increment= `SELECT @@GLOBAL.AUTO_INCREMENT_INCREMENT` --let $_init_server2_auto_offset= `SELECT @@GLOBAL.AUTO_INCREMENT_OFFSET` +--let $group_replication_member_state= ONLINE +--source ../inc/gr_wait_for_member_state.inc + --source include/stop_group_replication.inc # A RESET MASTER was executed in the context of include/master-slave.inc after diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/t/gr_crash_while_dml_and_some_server_recovering.test mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/t/gr_crash_while_dml_and_some_server_recovering.test --- mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/t/gr_crash_while_dml_and_some_server_recovering.test 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/t/gr_crash_while_dml_and_some_server_recovering.test 2019-04-13 13:32:15.000000000 +0000 @@ -129,6 +129,14 @@ --source ../inc/kill_and_restart_mysqld.inc --echo # restarting +--let $rpl_connection_name= server$non_donor_id +--source include/rpl_connection.inc +--echo # CR_SERVER_LOST, CR_SERVER_GONE_ERROR +--error 2006,2013 +--reap + +--let $rpl_connection_name= server_$non_donor_id +--source include/rpl_connection.inc # Needed as we are not using rpl_restart_server.inc --let $rpl_server_number= $non_donor_id --source include/rpl_reconnect.inc diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/t/gr_disjoint_gtids_join_option_deprecation.test mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/t/gr_disjoint_gtids_join_option_deprecation.test --- mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/t/gr_disjoint_gtids_join_option_deprecation.test 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/t/gr_disjoint_gtids_join_option_deprecation.test 2019-04-13 13:32:15.000000000 +0000 @@ -5,10 +5,12 @@ # Test: # 0. The test requires one server. # 1. Validate that the group_replication_allow_local_disjoint_gtids_join -# option deprecation warning is thrown. +# option deprecation warning is thrown when SET command is used. # 2. Validate that the group_replication_allow_local_disjoint_gtids_join +# option deprecation warning is thrown when START GR is used. +# 3. Validate that the group_replication_allow_local_disjoint_gtids_join # option deprecation warning is logged on server start. -# 3. Clean up. +# 4. Clean up. ################################################################################ --source include/big_test.inc --source ../inc/have_group_replication_plugin.inc @@ -18,14 +20,31 @@ --echo --echo ############################################################ --echo # 1. Validate that the group_replication_allow_local_disjoint_gtids_join ---echo # option deprecation warning is thrown. +--echo # option deprecation warning is thrown when SET command is used. +SET GLOBAL group_replication_allow_local_disjoint_gtids_join= ON; + +--let $assert_file= $MYSQLTEST_VARDIR/tmp/gr_disjoint_gtids_join_option_deprecation.1.err +--let $assert_count = 1 +--let $assert_select = 'group_replication_allow_local_disjoint_gtids_join' is deprecated and will be removed in a future release. +--let $assert_text = Found the expected deprecation log message. +--source include/assert_grep.inc + +--echo +--echo ############################################################ +--echo # 2. Validate that the group_replication_allow_local_disjoint_gtids_join +--echo # option deprecation warning is thrown when START GR is used. --source ../inc/start_and_bootstrap_group_replication.inc --source include/stop_group_replication.inc +--let $assert_file= $MYSQLTEST_VARDIR/tmp/gr_disjoint_gtids_join_option_deprecation.1.err +--let $assert_count = 2 +--let $assert_select = 'group_replication_allow_local_disjoint_gtids_join' is deprecated and will be removed in a future release. +--let $assert_text = Found the expected deprecation log message. +--source include/assert_grep.inc --echo --echo ############################################################ ---echo # 2. Validate that the group_replication_allow_local_disjoint_gtids_join +--echo # 3. Validate that the group_replication_allow_local_disjoint_gtids_join --echo # option deprecation warning is logged on server start. --let $allow_rpl_inited=1 --let $_group_replication_local_address= `SELECT @@GLOBAL.group_replication_local_address` @@ -41,7 +60,7 @@ --source ../inc/gr_wait_for_member_state.inc --let $assert_file= $MYSQLTEST_VARDIR/tmp/gr_disjoint_gtids_join_option_deprecation.1.err ---let $assert_count = 1 +--let $assert_count = 3 --let $assert_select = 'group_replication_allow_local_disjoint_gtids_join' is deprecated and will be removed in a future release. --let $assert_text = Found the expected deprecation log message. --source include/assert_grep.inc @@ -49,5 +68,5 @@ --echo --echo ############################################################ ---echo # 3. Clean up. +--echo # 4. Clean up. --source ../inc/group_replication_end.inc diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/t/gr_exit_state_action_on_join_lower_version.test mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/t/gr_exit_state_action_on_join_lower_version.test --- mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/t/gr_exit_state_action_on_join_lower_version.test 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/t/gr_exit_state_action_on_join_lower_version.test 2019-04-13 13:32:15.000000000 +0000 @@ -13,24 +13,19 @@ # 0) Setup group of 2 members (M1 and M2). # 1) Simulate a higher version on M1. # 2) Try to join M2 to the group. -# 3) M2 should be in super_read_only mode and in OFFLINE state (since it -# failed to join the group). +# 3) M2 super_read_only mode shall be OFF and in OFFLINE state +# (since it failed to join the group). # 4) Change the exit_state_action to ABORT_SERVER. Try to join M2 to the group # again. -# 5) M2 should have abort()ed. +# 5) M2 super_read_only mode shall be OFF and in OFFLINE state +# (since it failed to join the group). # 6) Restart M2 again without group_replication_start_on_boot enabled. The # server should start normally and be able to join the group. # 7) Cleanup. # ################################################################################ -# By including have_debug.inc we make sure that we are using the debug version -# of the server. This is needed because in the debug version (the one without -# DBUG_OFF defined) the abort_plugin_process() function calls DBUG_SUICIDE() -# which does not send a SIGABRT to itself but a SIGKILL instead (and in this way -# MTR won't assume the process crashed). --source include/have_debug.inc --source include/big_test.inc ---source include/not_valgrind.inc --source ../inc/have_group_replication_plugin.inc --echo @@ -40,18 +35,6 @@ --echo --let $rpl_skip_group_replication_start = 1 --source ../inc/group_replication.inc ---let $rpl_connection_name= server2 ---source include/rpl_connection.inc -SET SESSION sql_log_bin = 0; -call mtr.add_suppression("Error, maximum number of retries exceeded when waiting for the internal server session state to be operating"); -call mtr.add_suppression("Failed to establish an internal server connection to execute plugin operations"); -call mtr.add_suppression("Error when extracting information for group change. Operations and checks made to group joiners may be incomplete."); -call mtr.add_suppression("Member version is incompatible with the group."); -call mtr.add_suppression("Timeout on wait for view after joining group"); -call mtr.add_suppression("\\[GCS\\] Error connecting to all peers. Member join failed.*"); -call mtr.add_suppression("\\[GCS\\] read failed"); -call mtr.add_suppression("\\[GCS\\] The member was unable to join the group.*"); -SET SESSION sql_log_bin = 1; --echo --echo ######################################################################### @@ -73,7 +56,6 @@ --source include/rpl_connection.inc # Save all the context we'll need during the test --let $error_file = $MYSQLTEST_VARDIR/tmp/gr_exit_state_action_on_join_lower_version.2.err ---let $member2_uuid = `SELECT @@GLOBAL.server_uuid` --let $local_address_server2= `SELECT @@GLOBAL.group_replication_local_address` --let $group_seeds_server2= `SELECT @@GLOBAL.group_replication_group_seeds` # Restart the server with group_replication_start_on_boot enabled @@ -87,8 +69,8 @@ --echo --echo ######################################################################### ---echo # 3) M2 should be in super_read_only mode and in OFFLINE state (since it ---echo # failed to join the group). +--echo # 3) M2 super_read_only mode shall be OFF and in OFFLINE state +--echo # (since it failed to join the group). --echo ######################################################################### --echo --let $rpl_connection_name= server2 @@ -100,10 +82,9 @@ --let $group_replication_member_state = OFFLINE --let $group_replication_member_id = $member2_uuid --source ../inc/gr_wait_for_member_state.inc -# Verify that it went to super_read_only mode ---let $assert_text= super_read_only should be enabled ---let $assert_cond= [SELECT @@GLOBAL.super_read_only] = 1; ---source include/assert.inc +# Verify that super_read_only mode is reverted to its original value +--let $wait_condition= SELECT @@GLOBAL.super_read_only = '0' +--source include/wait_condition.inc # Verify that the expected error occurred --let $assert_file = $error_file --let $assert_text = GR reported expected incompatibility on member version @@ -119,7 +100,7 @@ --echo --echo ######################################################################### --echo # 4) Change the exit_state_action to ABORT_SERVER. Try to join M2 to the ---echo # group again. +--echo # group again. --echo ######################################################################### --echo --let $rpl_connection_name= server2 @@ -130,12 +111,11 @@ --let $restart_parameters=restart:--group_replication_local_address=$local_address_server2 --group_replication_group_seeds=$group_seeds_server2 --group-replication-group-name=$group_replication_group_name --group_replication_start_on_boot=1 --group_replication_exit_state_action=ABORT_SERVER --replace_result $local_address_server2 GROUP_REPLICATION_LOCAL_ADDRESS $group_seeds_server2 GROUP_REPLICATION_GROUP_SEEDS $group_replication_group_name GROUP_REPLICATION_GROUP_NAME --source include/restart_mysqld.inc ---exec echo "wait" > $MYSQLTEST_VARDIR/tmp/mysqld.2.expect ---source include/wait_until_disconnected.inc --echo --echo ######################################################################### ---echo # 5) M2 should have abort()ed. +--echo # 5) M2 super_read_only mode shall be OFF and in OFFLINE state +--echo # (since it failed to join the group). --echo ######################################################################### --echo # Wait for server 1 to see that server 2 didn't join @@ -143,25 +123,20 @@ --source include/rpl_connection.inc --let $group_replication_number_of_members = 1 --source ../inc/gr_wait_for_number_of_members.inc ---exec echo "restart" > $MYSQLTEST_VARDIR/tmp/mysqld.2.expect --let $rpl_server_number= 2 --source include/rpl_reconnect.inc -# Wait until server 2 is connected again, so we know it has abort()'ed --let $rpl_connection_name= server2 --source include/rpl_connection.inc ---source include/wait_until_connected_again.inc -# Search for the expected errors in the error log file ---let $rpl_server_number= 2 ---source include/rpl_reconnect.inc + +# Verify that super_read_only mode is reverted to its original value +--let $wait_condition= SELECT @@GLOBAL.super_read_only = '0' +--source include/wait_condition.inc + --let $assert_file = $error_file --let $assert_text = GR reported expected incompatibility on member version --let $assert_select = Member version is incompatible with the group --let $assert_count = 2 --source include/assert_grep.inc ---let $assert_text = GR reported expected abort ---let $assert_select = The plugin encountered a critical error and will abort ---let $assert_count = 1 ---source include/assert_grep.inc --echo --echo ######################################################################### diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/t/gr_exit_state_action_on_join_members_exceeded.test mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/t/gr_exit_state_action_on_join_members_exceeded.test --- mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/t/gr_exit_state_action_on_join_members_exceeded.test 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/t/gr_exit_state_action_on_join_members_exceeded.test 2019-04-13 13:32:15.000000000 +0000 @@ -13,54 +13,33 @@ # 0) Setup group of 2 members (M1 and M2). # 1) Simulate a group of 10 members when member 2 joins. Member 2 will be # unable to join. -# 2) Verify that member 2 was sent to super_read_only mode and in OFFLINE -# state (since it failed to join the group). +# 2) M2 super_read_only mode shall be OFF and in OFFLINE state +# (since it failed to join the group). # 3) Set the exit_state_aciton on member 2 to ABORT_SERVER and simulate again # a group of 10 members when member 2 joins. Member 2 will be unable to # join again. -# 4) Member 2 will have abort()ed. +# 4) M2 super_read_only mode shall be OFF and in OFFLINE state +# (since it failed to join the group). # 5) Restart M2 again without group_replication_start_on_boot enabled. The # server should start normally and be able to join the group. # 6) Cleanup. # ################################################################################ -# By including have_debug.inc we make sure that we are using the debug version -# of the server. This is needed because in the debug version (the one without -# DBUG_OFF defined) the abort_plugin_process() function calls DBUG_SUICIDE() -# which does not send a SIGABRT to itself but a SIGKILL instead (and in this way -# MTR won't assume the process crashed). --source include/have_debug.inc --source include/big_test.inc ---source include/not_valgrind.inc --source ../inc/have_group_replication_plugin.inc --echo --echo ######################################################################### ---echo # 0) Setup group of 1 member (M1). +--echo # 0) Setup group of 2 members (M1 and M2). --echo ######################################################################### --echo --let $allow_rpl_inited=1 --let $rpl_skip_group_replication_start = 1 --source ../inc/group_replication.inc --source ../inc/start_and_bootstrap_group_replication.inc -SET SESSION sql_log_bin = 0; -call mtr.add_suppression("\\[GCS\\] Error connecting to all peers. Member join failed.*"); -call mtr.add_suppression("\\[GCS\\] read failed"); -call mtr.add_suppression("\\[GCS\\] The member was unable to join the group.*"); -SET SESSION sql_log_bin = 1; --let $rpl_connection_name= server2 --source include/rpl_connection.inc -SET SESSION sql_log_bin = 0; -call mtr.add_suppression("\\[GCS\\] Error connecting to all peers. Member join failed.*"); -call mtr.add_suppression("\\[GCS\\] read failed"); -call mtr.add_suppression("\\[GCS\\] The member was unable to join the group.*"); -call mtr.add_suppression("The plugin encountered a critical error and will abort: Fatal error during execution of Group Replication"); -call mtr.add_suppression("Timeout on wait for view after joining group"); -call mtr.add_suppression("Error, maximum number of retries exceeded when waiting for the internal server session state to be operating"); -call mtr.add_suppression("Failed to establish an internal server connection to execute plugin operations"); -call mtr.add_suppression("Error when extracting information for group change. Operations and checks made to group joiners may be incomplete"); -call mtr.add_suppression("The START GROUP_REPLICATION command failed since the group already has 9 members."); -SET SESSION sql_log_bin = 1; --echo --echo ######################################################################### @@ -70,7 +49,6 @@ --echo # Save all the context we'll need during the test --let $error_file = $MYSQLTEST_VARDIR/tmp/gr_exit_state_action_on_join_members_exceeded.2.err ---let $member2_uuid = `SELECT @@GLOBAL.server_uuid` --let $local_address_server2= `SELECT @@GLOBAL.group_replication_local_address` --let $group_seeds_server2= `SELECT @@GLOBAL.group_replication_group_seeds` # Restart server 2 with group_replication_start_on_boot enabled and with the @@ -86,8 +64,8 @@ --echo --echo ######################################################################### ---echo # 2) Verify that member 2 was sent to super_read_only mode and in OFFLINE ---echo # state (since it failed to join the group). +--echo # 2) M2 super_read_only mode shall be OFF and in OFFLINE state +--echo # (since it failed to join the group). --echo ######################################################################### --echo --let $rpl_connection_name= server2 @@ -99,10 +77,9 @@ --let $group_replication_member_state = OFFLINE --let $group_replication_member_id = $member2_uuid --source ../inc/gr_wait_for_member_state.inc -# Verify that it went to super_read_only mode ---let $assert_text= super_read_only should be enabled ---let $assert_cond= [SELECT @@GLOBAL.super_read_only] = 1; ---source include/assert.inc +# Verify that super_read_only mode is reverted to its original value +--let $wait_condition= SELECT @@GLOBAL.super_read_only = '0' +--source include/wait_condition.inc # Verify that the expected error occurred --let $assert_file = $error_file --let $assert_text = GR reported expected excess of members in group @@ -130,12 +107,11 @@ --let $restart_parameters=restart:--group_replication_local_address=$local_address_server2 --group_replication_group_seeds=$group_seeds_server2 --group-replication-group-name=$group_replication_group_name --group_replication_start_on_boot=1 --loose-debug="+d,group_replication_set_number_of_members_on_view_changed_to_10" --group_replication_exit_state_action=ABORT_SERVER --replace_result $local_address_server2 GROUP_REPLICATION_LOCAL_ADDRESS $group_seeds_server2 GROUP_REPLICATION_GROUP_SEEDS $group_replication_group_name GROUP_REPLICATION_GROUP_NAME --source include/restart_mysqld.inc ---exec echo "wait" > $MYSQLTEST_VARDIR/tmp/mysqld.2.expect ---source include/wait_until_disconnected.inc --echo --echo ######################################################################### ---echo # 4) Member 2 will have abort()ed. +--echo # 4) M2 super_read_only mode shall be OFF and in OFFLINE state +--echo # (since it failed to join the group). --echo ######################################################################### --echo # Wait for server 1 to see that server 2 didn't join @@ -143,25 +119,20 @@ --source include/rpl_connection.inc --let $group_replication_number_of_members = 1 --source ../inc/gr_wait_for_number_of_members.inc ---exec echo "restart" > $MYSQLTEST_VARDIR/tmp/mysqld.2.expect --let $rpl_server_number= 2 --source include/rpl_reconnect.inc -# Wait until server 2 is connected again, so we know it has abort()'ed --let $rpl_connection_name= server2 --source include/rpl_connection.inc ---source include/wait_until_connected_again.inc -# Search for the expected errors in the error log file ---let $rpl_server_number= 2 ---source include/rpl_reconnect.inc + +# Verify that super_read_only mode is reverted to its original value +--let $wait_condition= SELECT @@GLOBAL.super_read_only = '0' +--source include/wait_condition.inc + --let $assert_file = $error_file --let $assert_text = GR reported expected excess of members in group --let $assert_select = The START GROUP_REPLICATION command failed since the group already has 9 members --let $assert_count = 2 --source include/assert_grep.inc ---let $assert_text = GR reported expected abort ---let $assert_select = The plugin encountered a critical error and will abort ---let $assert_count = 1 ---source include/assert_grep.inc --echo --echo ######################################################################### diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/t/gr_exit_state_action_on_join_transaction_mismatch.test mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/t/gr_exit_state_action_on_join_transaction_mismatch.test --- mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/t/gr_exit_state_action_on_join_transaction_mismatch.test 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/t/gr_exit_state_action_on_join_transaction_mismatch.test 2019-04-13 13:32:15.000000000 +0000 @@ -13,24 +13,18 @@ # 0) Setup group of 2 members (M1 and M2). # 1) Run a few transactions on M2. # 2) Restart M2 with start_on_boot enabled. -# 3) M2 should go to super_read_only mode and to OFFLINE state (since it -# failed to join the group). +# 3) M2 super_read_only mode shall be OFF and in OFFLINE state +# (since it failed to join the group). # 4) Restart M2 with start_on_boot enabled and exit_state_action set to # ABORT_SERVER. -# 5) M2 should have abort()'ed. +# 5) M2 super_read_only mode shall be OFF and in OFFLINE state +# (since it failed to join the group). # 6) Restart M2 again without group_replication_start_on_boot enabled. The # server should start normally and be able to join the group. # 7) Cleanup. # ################################################################################ -# By including have_debug.inc we make sure that we are using the debug version -# of the server. This is needed because in the debug version (the one without -# DBUG_OFF defined) the abort_plugin_process() function calls DBUG_SUICIDE() -# which does not send a SIGABRT to itself but a SIGKILL instead (and in this way -# MTR won't assume the process crashed). ---source include/have_debug.inc --source include/big_test.inc ---source include/not_valgrind.inc --source ../inc/have_group_replication_plugin.inc --echo @@ -40,17 +34,6 @@ --echo --let $rpl_skip_group_replication_start = 1 --source ../inc/group_replication.inc ---let $rpl_connection_name= server2 ---source include/rpl_connection.inc -SET SESSION sql_log_bin = 0; -call mtr.add_suppression("Timeout on wait for view after joining group"); -call mtr.add_suppression("\\[GCS\\] Error connecting to all peers. Member join failed.*"); -call mtr.add_suppression("\\[GCS\\] read failed"); -call mtr.add_suppression("\\[GCS\\] The member was unable to join the group.*"); -call mtr.add_suppression("This member has more executed transactions than those present in the group. Local transactions*"); -call mtr.add_suppression("The member contains transactions not present in the group. The member will now exit the group"); -call mtr.add_suppression("The plugin encountered a critical error and will abort: Fatal error during execution of Group Replication"); -SET SESSION sql_log_bin = 1; --echo --echo ######################################################################### @@ -77,7 +60,6 @@ --echo # Save all the context we'll need during the test --let $error_file = $MYSQLTEST_VARDIR/tmp/gr_exit_state_action_on_join_transaction_mismatch.2.err ---let $member2_uuid = `SELECT @@GLOBAL.server_uuid` --let $local_address_server2= `SELECT @@GLOBAL.group_replication_local_address` --let $group_seeds_server2= `SELECT @@GLOBAL.group_replication_group_seeds` # Restart the server with group_replication_start_on_boot enabled @@ -91,7 +73,8 @@ --echo --echo ######################################################################### ---echo # 3) M2 should go to super_read_only mode. +--echo # 3) M2 super_read_only mode shall be OFF and in OFFLINE state +--echo # (since it failed to join the group). --echo ######################################################################### --echo --let $rpl_connection_name= server2 @@ -103,10 +86,9 @@ --let $group_replication_member_state = OFFLINE --let $group_replication_member_id = $member2_uuid --source ../inc/gr_wait_for_member_state.inc -# Verify that super_read_only mode reverted to its original state ---let $assert_text= super_read_only should be enabled ---let $assert_cond= [SELECT @@GLOBAL.super_read_only] = 1; ---source include/assert.inc +# Verify that super_read_only mode is reverted to its original value +--let $wait_condition= SELECT @@GLOBAL.super_read_only = '0' +--source include/wait_condition.inc # Verify that the expected error occurred --let $assert_file = $error_file --let $assert_text = GR reported expected transaction mismatch @@ -133,12 +115,11 @@ --let $restart_parameters=restart:--group_replication_local_address=$local_address_server2 --group_replication_group_seeds=$group_seeds_server2 --group-replication-group-name=$group_replication_group_name --group_replication_start_on_boot=1 --group_replication_exit_state_action=ABORT_SERVER --replace_result $local_address_server2 GROUP_REPLICATION_LOCAL_ADDRESS $group_seeds_server2 GROUP_REPLICATION_GROUP_SEEDS $group_replication_group_name GROUP_REPLICATION_GROUP_NAME --source include/restart_mysqld.inc ---exec echo "wait" > $MYSQLTEST_VARDIR/tmp/mysqld.2.expect ---source include/wait_until_disconnected.inc --echo --echo ######################################################################### ---echo # 5) M2 should have abort()'ed. +--echo # 5) M2 super_read_only mode shall be OFF and in OFFLINE state +--echo # (since it failed to join the group). --echo ######################################################################### --echo # Wait for server 1 to see that server 2 didn't join @@ -146,25 +127,20 @@ --source include/rpl_connection.inc --let $group_replication_number_of_members = 1 --source ../inc/gr_wait_for_number_of_members.inc ---exec echo "restart" > $MYSQLTEST_VARDIR/tmp/mysqld.2.expect --let $rpl_server_number= 2 --source include/rpl_reconnect.inc -# Wait until server 2 is connected again, so we know it has abort()'ed --let $rpl_connection_name= server2 --source include/rpl_connection.inc ---source include/wait_until_connected_again.inc -# Search for the expected errors in the error log file ---let $rpl_server_number= 2 ---source include/rpl_reconnect.inc + +# Verify that super_read_only mode is reverted to its original value +--let $wait_condition= SELECT @@GLOBAL.super_read_only = '0' +--source include/wait_condition.inc + --let $assert_file = $error_file --let $assert_text = GR reported expected transaction mismatch --let $assert_select = This member has more executed transactions than those present in the group --let $assert_count = 2 --source include/assert_grep.inc ---let $assert_text = GR reported expected abort ---let $assert_select = The plugin encountered a critical error and will abort ---let $assert_count = 1 ---source include/assert_grep.inc --echo --echo ######################################################################### @@ -203,8 +179,9 @@ DROP TABLE t3; --let $rpl_connection_name= server2 --source include/rpl_connection.inc -SET sql_log_bin = 0; +--source include/stop_group_replication.inc +SET SESSION sql_log_bin = 0; DROP TABLE t2; -SET sql_log_bin = 1; +SET SESSION sql_log_bin = 1; --source ../inc/group_replication_end.inc diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/t/gr_exit_state_action_on_join_wrong_gtid_assignment_block_size.test mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/t/gr_exit_state_action_on_join_wrong_gtid_assignment_block_size.test --- mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/t/gr_exit_state_action_on_join_wrong_gtid_assignment_block_size.test 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/t/gr_exit_state_action_on_join_wrong_gtid_assignment_block_size.test 2019-04-13 13:32:15.000000000 +0000 @@ -13,18 +13,18 @@ # Test: # 0) Setup group of 2 members (M1 and M2). # 1) Relaunch M2 with a different gtid_assignment_block_size from M1. -# 2) M2 should be in super_read_only mode and in OFFLINE state (since it -# failed to join the group). +# 2) M2 super_read_only mode shall be OFF and in OFFLINE state +# (since it failed to join the group). # 3) Relaunch M2 with a different gtid_assignment_block_size from M1 and with # exit_state_action set to ABORT_SERVER. -# 4) M2 should have abort()ed. +# 4) M2 super_read_only mode shall be OFF and in OFFLINE state +# (since it failed to join the group). # 5) Restart M2 again without group_replication_start_on_boot enabled. The # server should start normally and be able to join the group. # 6) Cleanup. # ################################################################################ ---source include/have_debug.inc ---source include/not_valgrind.inc +--source include/big_test.inc --source ../inc/have_group_replication_plugin.inc --echo @@ -35,30 +35,19 @@ --let $rpl_skip_group_replication_start = 1 --source ../inc/group_replication.inc --source ../inc/start_and_bootstrap_group_replication.inc ---let $rpl_connection_name= server2 ---source include/rpl_connection.inc -SET SESSION sql_log_bin = 0; -call mtr.add_suppression("The plugin encountered a critical error and will abort: Fatal error during execution of Group Replication"); -call mtr.add_suppression("Unable to start Group Replication on boot"); -call mtr.add_suppression("Timeout on wait for view after joining group"); -call mtr.add_suppression("\\[GCS\\] Error connecting to all peers. Member join failed.*"); -call mtr.add_suppression("\\[GCS\\] read failed"); -call mtr.add_suppression("\\[GCS\\] The member was unable to join the group.*"); -SET SESSION sql_log_bin = 1; --echo --echo ######################################################################### --echo # 1) Relaunch M2 with a different gtid_assignment_block_size from M1. --echo ######################################################################### --echo +--let $rpl_connection_name= server2 +--source include/rpl_connection.inc # We need a different value to trigger a group incompatibility --let $gtid_assignment_block_size = `SELECT @@GLOBAL.group_replication_gtid_assignment_block_size` --inc $gtid_assignment_block_size ---let $rpl_connection_name= server2 ---source include/rpl_connection.inc # Save all the context we'll need during the test --let $error_file = $MYSQLTEST_VARDIR/tmp/gr_exit_state_action_on_join_wrong_gtid_assignment_block_size.2.err ---let $member2_uuid=`SELECT @@GLOBAL.server_uuid` --let $local_address_server2= `SELECT @@GLOBAL.group_replication_local_address` --let $group_seeds_server2= `SELECT @@GLOBAL.group_replication_group_seeds` # Restart the server with group_replication_start_on_boot enabled @@ -72,8 +61,8 @@ --echo --echo ######################################################################### ---echo # 2) M2 should be in super_read_only mode and in OFFLINE state (since it ---echo # failed to join the group). +--echo # 2) M2 super_read_only mode shall be OFF and in OFFLINE state +--echo # (since it failed to join the group). --echo ######################################################################### --echo --let $rpl_connection_name= server2 @@ -85,10 +74,9 @@ --let $group_replication_member_state = OFFLINE --let $group_replication_member_id = $member2_uuid --source ../inc/gr_wait_for_member_state.inc -# Verify that it went to super_read_only mode ---let $assert_text= super_read_only should be enabled ---let $assert_cond= [SELECT @@GLOBAL.super_read_only] = 1; ---source include/assert.inc +# Verify that super_read_only mode is reverted to its original value +--let $wait_condition= SELECT @@GLOBAL.super_read_only = '0' +--source include/wait_condition.inc # Verify that the expected error occurred --let $assert_file = $error_file --let $assert_text = GR reported that it has a different gtid_assignment_block_size value (as expected) @@ -104,7 +92,7 @@ --echo --echo ######################################################################### --echo # 3) Relaunch M2 with a different gtid_assignment_block_size from M1 and ---echo # with exit_state_action set to ABORT_SERVER. +--echo # with exit_state_action set to ABORT_SERVER. --echo ######################################################################### --echo --let $rpl_connection_name= server2 @@ -115,12 +103,11 @@ --let $restart_parameters=restart:--group_replication_local_address=$local_address_server2 --group_replication_group_seeds=$group_seeds_server2 --group-replication-group-name=$group_replication_group_name --group_replication_start_on_boot=1 --group_replication_gtid_assignment_block_size=$gtid_assignment_block_size --group_replication_exit_state_action=ABORT_SERVER --replace_result $local_address_server2 GROUP_REPLICATION_LOCAL_ADDRESS $group_seeds_server2 GROUP_REPLICATION_GROUP_SEEDS $gtid_assignment_block_size GROUP_REPLICATION_GTID_ASSIGNMENT_BLOCK_SIZE $group_replication_group_name GROUP_REPLICATION_GROUP_NAME --source include/restart_mysqld.inc ---exec echo "wait" > $MYSQLTEST_VARDIR/tmp/mysqld.2.expect ---source include/wait_until_disconnected.inc --echo --echo ######################################################################### ---echo # 4) M2 should have abort()ed. +--echo # 4) M2 super_read_only mode shall be OFF and in OFFLINE state +--echo # (since it failed to join the group). --echo ######################################################################### --echo # Wait for server 1 to see that server 2 didn't join @@ -128,25 +115,20 @@ --source include/rpl_connection.inc --let $group_replication_number_of_members = 1 --source ../inc/gr_wait_for_number_of_members.inc ---exec echo "restart" > $MYSQLTEST_VARDIR/tmp/mysqld.2.expect --let $rpl_server_number= 2 --source include/rpl_reconnect.inc -# Wait until server 2 is connected again, so we know it has abort()'ed --let $rpl_connection_name= server2 --source include/rpl_connection.inc ---source include/wait_until_connected_again.inc -# Search for the expected errors in the error log file ---let $rpl_server_number= 2 ---source include/rpl_reconnect.inc + +# Verify that super_read_only mode is reverted to its original value +--let $wait_condition= SELECT @@GLOBAL.super_read_only = '0' +--source include/wait_condition.inc + --let $assert_file = $error_file --let $assert_text = GR reported that it has a different gtid_assignment_block_size value (as expected) --let $assert_select = The member is configured with a group_replication_gtid_assignment_block_size option value .+ different from the group --let $assert_count = 2 --source include/assert_grep.inc ---let $assert_text = GR reported expected abort ---let $assert_select = The plugin encountered a critical error and will abort ---let $assert_count = 1 ---source include/assert_grep.inc --echo --echo ######################################################################### diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/t/gr_exit_state_action_on_join_wrong_hash_algorithm.test mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/t/gr_exit_state_action_on_join_wrong_hash_algorithm.test --- mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/t/gr_exit_state_action_on_join_wrong_hash_algorithm.test 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/t/gr_exit_state_action_on_join_wrong_hash_algorithm.test 2019-04-13 13:32:15.000000000 +0000 @@ -13,23 +13,18 @@ # Test: # 0) Setup group of 2 members (M1 and M2). # 1) Relaunch M2 with a different hash algorithm from M1. -# 2) M2 should be in super_read_only mode and in OFFLINE state (since it -# failed to join the group). +# 2) M2 super_read_only mode shall be OFF and in OFFLINE state +# (since it failed to join the group). # 3) Relaunch M2 with a different hash algorithm from M1 and with # exit_state_action set to ABORT_SERVER. -# 4) M2 should have abort()ed. +# 4) M2 super_read_only mode shall be OFF and in OFFLINE state +# (since it failed to join the group). # 5) Restart M2 again without group_replication_start_on_boot enabled. The -# server should start normally and be able to join the group. +# server should start normally and be able to join the group. # 6) Cleanup. # ################################################################################ -# By including have_debug.inc we make sure that we are using the debug version -# of the server. This is needed because in the debug version (the one without -# DBUG_OFF defined) the abort_plugin_process() function calls DBUG_SUICIDE() -# which does not send a SIGABRT to itself but a SIGKILL instead (and in this way -# MTR won't assume the process crashed). ---source include/have_debug.inc ---source include/not_valgrind.inc +--source include/big_test.inc --source ../inc/have_group_replication_plugin.inc --echo @@ -44,14 +39,6 @@ --let $rpl_connection_name= server2 --source include/rpl_connection.inc -SET SESSION sql_log_bin = 0; -call mtr.add_suppression("The plugin encountered a critical error and will abort: Fatal error during execution of Group Replication"); -call mtr.add_suppression("Unable to start Group Replication on boot"); -call mtr.add_suppression("Timeout on wait for view after joining group"); -call mtr.add_suppression("\\[GCS\\] Error connecting to all peers. Member join failed.*"); -call mtr.add_suppression("\\[GCS\\] read failed"); -call mtr.add_suppression("\\[GCS\\] The member was unable to join the group.*"); -SET SESSION sql_log_bin = 1; --echo --echo ######################################################################### @@ -62,7 +49,6 @@ --source include/rpl_connection.inc # Save all the context we'll need during the test --let $error_file = $MYSQLTEST_VARDIR/tmp/gr_exit_state_action_on_join_wrong_hash_algorithm.2.err ---let $member2_uuid=`SELECT @@GLOBAL.server_uuid` --let $local_address_server2= `SELECT @@GLOBAL.group_replication_local_address` --let $group_seeds_server2= `SELECT @@GLOBAL.group_replication_group_seeds` @@ -85,8 +71,8 @@ --echo --echo ######################################################################### ---echo # 2) M2 should be in super_read_only mode and in OFFLINE state (since it ---echo # failed to join the group). +--echo # 2) M2 super_read_only mode shall be OFF and in OFFLINE state +--echo # (since it failed to join the group). --echo ######################################################################### --echo --let $rpl_connection_name= server2 @@ -98,10 +84,9 @@ --let $group_replication_member_state = OFFLINE --let $group_replication_member_id = $member2_uuid --source ../inc/gr_wait_for_member_state.inc -# Verify that it went to super_read_only mode ---let $assert_text= super_read_only should be enabled ---let $assert_cond= [SELECT @@GLOBAL.super_read_only] = 1; ---source include/assert.inc +# Verify that super_read_only mode is reverted to its original value +--let $wait_condition= SELECT @@GLOBAL.super_read_only = '0' +--source include/wait_condition.inc # Verify that the expected error occurred --let $assert_file = $error_file --let $assert_text = GR reported that it has an incompatible option with the group (as expected) @@ -128,12 +113,11 @@ --let $restart_parameters=restart:--group_replication_local_address=$local_address_server2 --group_replication_group_seeds=$group_seeds_server2 --group-replication-group-name=$group_replication_group_name --group_replication_start_on_boot=1 --transaction-write-set-extraction=$hash_algorithm --group_replication_exit_state_action=ABORT_SERVER --replace_result $local_address_server2 GROUP_REPLICATION_LOCAL_ADDRESS $group_seeds_server2 GROUP_REPLICATION_GROUP_SEEDS $group_replication_group_name GROUP_REPLICATION_GROUP_NAME $hash_algorithm HASH_ALGORITHM --source include/restart_mysqld.inc ---exec echo "wait" > $MYSQLTEST_VARDIR/tmp/mysqld.2.expect ---source include/wait_until_disconnected.inc --echo --echo ######################################################################### ---echo # 4) M2 should have abort()ed. +--echo # 4) M2 super_read_only mode shall be OFF and in OFFLINE state +--echo # (since it failed to join the group). --echo ######################################################################### --echo # Wait for server 1 to see that server 2 didn't join @@ -141,25 +125,20 @@ --source include/rpl_connection.inc --let $group_replication_number_of_members = 1 --source ../inc/gr_wait_for_number_of_members.inc ---exec echo "restart" > $MYSQLTEST_VARDIR/tmp/mysqld.2.expect --let $rpl_server_number= 2 --source include/rpl_reconnect.inc -# Wait until server 2 is connected again, so we know it has abort()'ed --let $rpl_connection_name= server2 --source include/rpl_connection.inc ---source include/wait_until_connected_again.inc -# Search for the expected errors in the error log file ---let $rpl_server_number= 2 ---source include/rpl_reconnect.inc + +# Verify that super_read_only mode is reverted to its original value +--let $wait_condition= SELECT @@GLOBAL.super_read_only = '0' +--source include/wait_condition.inc + --let $assert_file = $error_file --let $assert_text = GR reported that it has an incompatible option with the group (as expected) --let $assert_select = The member is configured with a transaction-write-set-extraction option value .+ different from the group --let $assert_count = 2 --source include/assert_grep.inc ---let $assert_text = GR reported expected abort ---let $assert_select = The plugin encountered a critical error and will abort ---let $assert_count = 1 ---source include/assert_grep.inc --echo --echo ######################################################################### diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/t/gr_exit_state_action_on_join_wrong_single_primary_mode.test mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/t/gr_exit_state_action_on_join_wrong_single_primary_mode.test --- mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/t/gr_exit_state_action_on_join_wrong_single_primary_mode.test 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/t/gr_exit_state_action_on_join_wrong_single_primary_mode.test 2019-04-13 13:32:15.000000000 +0000 @@ -13,24 +13,18 @@ # Test: # 0) Setup group of 2 members (M1 and M2). # 1) Relaunch M2 with a different single_primary_mode from M1. -# 2) M2 should be in super_read_only mode and in OFFLINE state (since it -# failed to join the group). +# 2) M2 super_read_only mode shall be OFF and in OFFLINE state +# (since it failed to join the group). # 3) Relaunch M2 with a different single_primary_mode from M1 and with -# exit_state_action set to ABORT_SERVER. -# 4) M2 should have abort()ed. +# exit_state_action set to ABORT_SERVER. +# 4) M2 super_read_only mode shall be OFF and in OFFLINE state +# (since it failed to join the group). # 5) Restart M2 again without group_replication_start_on_boot enabled. The -# server should start normally and be able to join the group. +# server should start normally and be able to join the group. # 6) Cleanup. # ################################################################################ -# By including have_debug.inc we make sure that we are using the debug version -# of the server. This is needed because in the debug version (the one without -# DBUG_OFF defined) the abort_plugin_process() function calls DBUG_SUICIDE() -# which does not send a SIGABRT to itself but a SIGKILL instead (and in this way -# MTR won't assume the process crashed). ---source include/have_debug.inc --source include/big_test.inc ---source include/not_valgrind.inc --source ../inc/have_group_replication_plugin.inc --echo @@ -43,14 +37,6 @@ --source ../inc/start_and_bootstrap_group_replication.inc --let $rpl_connection_name= server2 --source include/rpl_connection.inc -SET SESSION sql_log_bin = 0; -call mtr.add_suppression("The plugin encountered a critical error and will abort: Fatal error during execution of Group Replication"); -call mtr.add_suppression("Unable to start Group Replication on boot"); -call mtr.add_suppression("Timeout on wait for view after joining group"); -call mtr.add_suppression("\\[GCS\\] Error connecting to all peers. Member join failed.*"); -call mtr.add_suppression("\\[GCS\\] read failed"); -call mtr.add_suppression("\\[GCS\\] The member was unable to join the group.*"); -SET SESSION sql_log_bin = 1; --echo --echo ######################################################################### @@ -61,7 +47,6 @@ --source include/rpl_connection.inc # Save all the context we'll need during the test --let $error_file = $MYSQLTEST_VARDIR/tmp/gr_exit_state_action_on_join_wrong_single_primary_mode.2.err ---let $member2_uuid=`SELECT @@GLOBAL.server_uuid` --let $local_address_server2= `SELECT @@GLOBAL.group_replication_local_address` --let $group_seeds_server2= `SELECT @@GLOBAL.group_replication_group_seeds` # Restart the server with group_replication_start_on_boot enabled @@ -75,16 +60,12 @@ --echo --echo ######################################################################### ---echo # 2) M2 should be in super_read_only mode and in OFFLINE state (since it ---echo # failed to join the group). +--echo # 2) M2 super_read_only mode shall be OFF and in OFFLINE state +--echo # (since it failed to join the group). --echo ######################################################################### --echo --let $rpl_connection_name= server2 --source include/rpl_connection.inc -# Verify that it went to super_read_only mode ---let $assert_text= super_read_only should be enabled ---let $assert_cond= [SELECT @@GLOBAL.super_read_only] = 1; ---source include/assert.inc # Wait for the member to realize that it couldn't join the group --let $member2_uuid = `SELECT @@GLOBAL.server_uuid` --let $group_replication_number_of_members = 2 @@ -92,6 +73,10 @@ --let $group_replication_member_state = OFFLINE --let $group_replication_member_id = $member2_uuid --source ../inc/gr_wait_for_member_state.inc +# Verify that super_read_only mode is reverted to its original value +--let $wait_condition= SELECT @@GLOBAL.super_read_only = '0' +--source include/wait_condition.inc +# Verify that the expected error occurred --let $assert_file = $error_file --let $assert_text = GR reported that it has an incompatible option with the group (as expected) --let $assert_select = The member configuration is not compatible with the group configuration. Variables such as single_primary_mode or enforce_update_everywhere_checks must have the same value @@ -117,12 +102,11 @@ --let $restart_parameters=restart:--group_replication_local_address=$local_address_server2 --group_replication_group_seeds=$group_seeds_server2 --group-replication-group-name=$group_replication_group_name --group_replication_start_on_boot=1 --group_replication_single_primary_mode=TRUE --group_replication_exit_state_action=ABORT_SERVER --group_replication_enforce_update_everywhere_checks=FALSE --replace_result $local_address_server2 GROUP_REPLICATION_LOCAL_ADDRESS $group_seeds_server2 GROUP_REPLICATION_GROUP_SEEDS $group_replication_group_name GROUP_REPLICATION_GROUP_NAME --source include/restart_mysqld.inc ---exec echo "wait" > $MYSQLTEST_VARDIR/tmp/mysqld.2.expect ---source include/wait_until_disconnected.inc --echo --echo ######################################################################### ---echo # 4) M2 should have abort()ed. +--echo # 4) M2 super_read_only mode shall be OFF and in OFFLINE state +--echo # (since it failed to join the group). --echo ######################################################################### --echo # Wait for server 1 to see that server 2 didn't join @@ -130,25 +114,20 @@ --source include/rpl_connection.inc --let $group_replication_number_of_members = 1 --source ../inc/gr_wait_for_number_of_members.inc -# Wait until server 2 is connected again, so we know it has abort()'ed ---exec echo "restart" > $MYSQLTEST_VARDIR/tmp/mysqld.2.expect --let $rpl_server_number= 2 --source include/rpl_reconnect.inc --let $rpl_connection_name= server2 --source include/rpl_connection.inc ---source include/wait_until_connected_again.inc -# Search for the expected errors in the error log file ---let $rpl_server_number= 2 ---source include/rpl_reconnect.inc + +# Verify that super_read_only mode is reverted to its original value +--let $wait_condition= SELECT @@GLOBAL.super_read_only = '0' +--source include/wait_condition.inc + --let $assert_file = $error_file --let $assert_text = GR reported that it has an incompatible option with the group (as expected) --let $assert_select = The member configuration is not compatible with the group configuration. Variables such as single_primary_mode or enforce_update_everywhere_checks must have the same value --let $assert_count = 2 --source include/assert_grep.inc ---let $assert_text = GR reported expected abort ---let $assert_select = The plugin encountered a critical error and will abort ---let $assert_count = 1 ---source include/assert_grep.inc --echo --echo ######################################################################### diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/t/gr_exit_state_action_on_majority_loss.test mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/t/gr_exit_state_action_on_majority_loss.test --- mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/t/gr_exit_state_action_on_majority_loss.test 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/t/gr_exit_state_action_on_majority_loss.test 2019-04-13 13:32:15.000000000 +0000 @@ -20,6 +20,8 @@ # 6) Cleanup. # ################################################################################ +# This test does crashes servers, thence we skip it on valgrind. +--source include/not_valgrind.inc --source include/big_test.inc --source include/have_debug.inc --source ../inc/have_group_replication_plugin.inc diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/t/gr_key_rotation-master.opt mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/t/gr_key_rotation-master.opt --- mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/t/gr_key_rotation-master.opt 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/t/gr_key_rotation-master.opt 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1 @@ +$KEYRING_PLUGIN_OPT --loose-keyring-file-data=$MYSQL_TMP_DIR/mydummy_key1 diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/t/gr_key_rotation-slave.opt mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/t/gr_key_rotation-slave.opt --- mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/t/gr_key_rotation-slave.opt 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/t/gr_key_rotation-slave.opt 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1 @@ +$KEYRING_PLUGIN_OPT --loose-keyring-file-data=$MYSQL_TMP_DIR/mydummy_key2 diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/t/gr_key_rotation.test mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/t/gr_key_rotation.test --- mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/t/gr_key_rotation.test 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/t/gr_key_rotation.test 2019-04-13 13:32:15.000000000 +0000 @@ -173,13 +173,15 @@ # Clean Up -# Uninstall keyring plugin on server2 +# Uninstall keyring plugin and remove dummy keyring file on server2 UNINSTALL PLUGIN keyring_file; +--remove_file $MYSQL_TMP_DIR/mydummy_key2 -# Uninstall keyring plugin on server1 +# Uninstall keyring plugin and remove dummy keyring file on server1 --let $rpl_connection_name= server1 --source include/rpl_connection.inc UNINSTALL PLUGIN keyring_file; +--remove_file $MYSQL_TMP_DIR/mydummy_key1 DROP TABLE t2; DROP TABLE t3; diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/t/gr_lower_case_table_names.test mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/t/gr_lower_case_table_names.test --- mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/t/gr_lower_case_table_names.test 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/t/gr_lower_case_table_names.test 2019-04-13 13:32:15.000000000 +0000 @@ -91,10 +91,6 @@ --let $rpl_server_number= 2 --source include/rpl_reconnect.inc -## Wait for server-2 to join group, needed to get group lower_case_table_names ---let $group_replication_number_of_members=2 ---source ../inc/gr_wait_for_number_of_members.inc - --let $wait_condition= SELECT COUNT(*) = 1 FROM performance_schema.replication_group_members WHERE MEMBER_STATE="OFFLINE" --source include/wait_condition.inc diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/t/gr_recovery_connection_options.test mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/t/gr_recovery_connection_options.test --- mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/t/gr_recovery_connection_options.test 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/t/gr_recovery_connection_options.test 2019-04-13 13:32:15.000000000 +0000 @@ -24,7 +24,7 @@ ################################################################################ --source include/big_test.inc ---source include/have_debug.inc +--source include/have_debug_sync.inc --let $group_replication_group_name= b5eb4110-a3a2-11e3-a5e2-0800200c9a66 --source ../inc/have_group_replication_plugin.inc @@ -32,9 +32,6 @@ --let $rpl_server_count= 3 --source ../inc/group_replication.inc ---let $debug_save_count= `SELECT @@GLOBAL.group_replication_recovery_retry_count` ---let $debug_save_rec_int= `SELECT @@GLOBAL.group_replication_recovery_reconnect_interval` - --let $recovery_user= recovery_user --let $recovery_password= recovery_password --let $recovery_bad_password= recovery_bad_password @@ -100,6 +97,12 @@ call mtr.add_suppression(".*Invalid .* username when attempting to connect to the master server.*"); set session sql_log_bin=1; +--let $debug_save_count= `SELECT @@GLOBAL.group_replication_recovery_retry_count` +--let $debug_save_rec_int= `SELECT @@GLOBAL.group_replication_recovery_reconnect_interval` + +SET @debug_save= @@GLOBAL.DEBUG; +SET @@GLOBAL.DEBUG='d,recovery_thread_wait_before_finish'; + --disable_warnings CHANGE MASTER TO MASTER_USER='$recovery_user', MASTER_PASSWORD='$recovery_bad_password' FOR CHANNEL 'group_replication_recovery'; --enable_warnings @@ -114,19 +117,11 @@ --source include/assert.inc --echo # Start recovery and wait to verify the member is in recovery - -SET @@GLOBAL.DEBUG='d,recovery_thread_wait_before_finish'; --let $group_replication_start_member_state= RECOVERING --source include/start_group_replication.inc ---echo # Wake up recovery - -SET DEBUG_SYNC= 'RESET'; -SET @@GLOBAL.DEBUG= @debug_save; -SET DEBUG_SYNC= "now SIGNAL signal.recovery_end"; - --echo # The member should error out as it can't connect - +SET DEBUG_SYNC= "now SIGNAL signal.recovery_end"; --let $group_replication_member_state= ERROR --source ../inc/gr_wait_for_member_state.inc @@ -134,27 +129,15 @@ --echo # Set MASTER_USER to an empty user name, watching it fail --echo # -SET @debug_save= @@GLOBAL.DEBUG; - --source include/stop_group_replication.inc CHANGE MASTER TO MASTER_USER= '', MASTER_PASSWORD= '' FOR CHANNEL 'group_replication_recovery'; -#--echo # Set the retry count to try only once. -#--eval SET GLOBAL group_replication_recovery_retry_count= 1; - --echo # Start recovery and wait to verify the member is in recovery - -SET @@GLOBAL.DEBUG='d,recovery_thread_wait_before_finish'; --let $group_replication_start_member_state= RECOVERING --source include/start_group_replication.inc ---echo # Wake up recovery - -SET DEBUG_SYNC= 'RESET'; -SET @@GLOBAL.DEBUG= @debug_save; SET DEBUG_SYNC= "now SIGNAL signal.recovery_end"; - --let $group_replication_member_state= ERROR --source ../inc/gr_wait_for_member_state.inc @@ -170,22 +153,13 @@ --echo # Set MASTER_USER to non existing user, watching it fail --echo # -SET @debug_save= @@GLOBAL.DEBUG; - CHANGE MASTER TO MASTER_USER= 'parveez', MASTER_PASSWORD= 'me' FOR CHANNEL 'group_replication_recovery'; --echo # Start recovery and wait to verify the member is in recovery - -SET @@GLOBAL.DEBUG='d,recovery_thread_wait_before_finish'; --let $group_replication_start_member_state= RECOVERING --source include/start_group_replication.inc ---echo # Wake up recovery - -SET DEBUG_SYNC= 'RESET'; -SET @@GLOBAL.DEBUG= @debug_save; SET DEBUG_SYNC= "now SIGNAL signal.recovery_end"; - --let $group_replication_member_state= ERROR --source ../inc/gr_wait_for_member_state.inc @@ -201,7 +175,6 @@ --let $group_replication_number_of_members= 2 --source ../inc/gr_wait_for_number_of_members.inc - --echo # --echo # Clean up --echo # @@ -209,6 +182,7 @@ --eval DROP USER "$recovery_user" --connection server3 SET DEBUG_SYNC='RESET'; +SET @@GLOBAL.DEBUG = @debug_save; --eval SET GLOBAL group_replication_recovery_retry_count= $debug_save_count --eval SET GLOBAL group_replication_recovery_reconnect_interval= $debug_save_rec_int diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/t/gr_server_failover_while_dml.test mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/t/gr_server_failover_while_dml.test --- mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/t/gr_server_failover_while_dml.test 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/t/gr_server_failover_while_dml.test 2019-04-13 13:32:15.000000000 +0000 @@ -72,6 +72,14 @@ --source ../inc/kill_and_restart_mysqld.inc --echo # restarting +--let $rpl_connection_name= server1 +--source include/rpl_connection.inc +--echo # CR_SERVER_LOST, CR_SERVER_GONE_ERROR +--error 2006,2013 +--reap + +--let $rpl_connection_name= server_1 +--source include/rpl_connection.inc # Needed as we are not using rpl_restart_server.inc --let $rpl_server_number= 1 --source include/rpl_reconnect.inc diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/t/gr_uninstall_while_network_blocked.test mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/t/gr_uninstall_while_network_blocked.test --- mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/t/gr_uninstall_while_network_blocked.test 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/t/gr_uninstall_while_network_blocked.test 2019-04-13 13:32:15.000000000 +0000 @@ -96,6 +96,11 @@ --let $rpl_connection_name= server1 --source include/rpl_connection.inc +# terminate send calling reap +--echo # CR_SERVER_LOST, CR_SERVER_GONE_ERROR +--error 2006,2013 +--reap + --exec echo "restart" > $MYSQLTEST_VARDIR/tmp/mysqld.1.expect --let $rpl_server_number= 1 --source include/rpl_start_server.inc @@ -103,11 +108,6 @@ --let $rpl_server_number= 1 --source include/rpl_reconnect.inc -# terminate send calling reap ---echo # CR_SERVER_LOST, CR_SERVER_GONE_ERROR ---error 2006,2013 ---reap - --let $rpl_connection_name= server2 --source include/rpl_connection.inc DROP TABLE test.t1; diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/t/gr_view_change_delayed_write_order.cnf mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/t/gr_view_change_delayed_write_order.cnf --- mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/t/gr_view_change_delayed_write_order.cnf 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/t/gr_view_change_delayed_write_order.cnf 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,11 @@ +!include ../my.cnf + +[mysqld.1] + +[mysqld.2] + +[mysqld.3] + +[ENV] +SERVER_MYPORT_3= @mysqld.3.port +SERVER_MYSOCK_3= @mysqld.3.socket diff -Nru mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/t/gr_view_change_delayed_write_order.test mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/t/gr_view_change_delayed_write_order.test --- mysql-5.7-5.7.25/rapid/plugin/group_replication/tests/mtr/t/gr_view_change_delayed_write_order.test 1970-01-01 00:00:00.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/group_replication/tests/mtr/t/gr_view_change_delayed_write_order.test 2019-04-13 13:32:15.000000000 +0000 @@ -0,0 +1,178 @@ +################################################################################ +# This test validates that even when there is a timeout while logging a VCLE +# in a group change, the event will be logged later with no repercussions to +# the recovery process. +# +# References: Bug#28971594 +# +# Steps: +# 0. This test needs 3 servers, they are stopped and in Multi primary mode +# 1. Create a user to ensure server 3 recovery comes from server 1 +# 2. Start group replication in server 1 and 2 +# 3. Block a local transaction on server 1 +# 4. Start server 3, it should be stuck in recovery +# Even after 15 seconds it should still be stuck +# 5. Execute something on server 2, it should appear on server 3 +# 6. Unblock the local transaction on server 1 +# 7. Server 3 should now be online +# 8. Check the logged event order in all servers +# 9. Clean up +# + +--source include/have_debug_sync.inc +--source ../inc/have_group_replication_plugin.inc +--let $rpl_skip_group_replication_start= 1 +--let $rpl_server_count= 3 +--source ../inc/group_replication.inc + +--echo # +--echo # 1. Create a user to ensure server 3 recovery comes from server 1 + +--let $rpl_connection_name= server1 +--source include/rpl_connection.inc + +--let $recovery_user= recovery_user +--let $recovery_password= recovery_password + +SET SESSION sql_log_bin= 0; +--eval CREATE USER "$recovery_user" IDENTIFIED BY "$recovery_password" +--eval GRANT REPLICATION SLAVE ON *.* TO "$recovery_user" +FLUSH PRIVILEGES; +SET SESSION sql_log_bin= 1; + + +--echo # +--echo # 2. Start group replication in server 1 and 2 + +--let $rpl_connection_name= server1 +--source include/rpl_connection.inc + +--source ../inc/start_and_bootstrap_group_replication.inc + +CREATE TABLE t1 (c1 INT NOT NULL PRIMARY KEY) ENGINE=InnoDB; + +--let $rpl_connection_name= server2 +--source include/rpl_connection.inc + +--source include/start_group_replication.inc + +--echo # +--echo # 3. Block a local transaction on server 1 + +--let $rpl_connection_name= server1 +--source include/rpl_connection.inc + +SET @@GLOBAL.DEBUG='+d,group_replication_after_before_commit_hook'; + +--send INSERT INTO t1 VALUES (1) + +--echo # +--echo # 4. Start server 3, it should be stuck in recovery +--echo # Even after 15 seconds it should still be stuck + +--let $rpl_connection_name= server3 +--source include/rpl_connection.inc + +--disable_warnings +--eval CHANGE MASTER TO MASTER_USER= '$recovery_user', MASTER_PASSWORD= '$recovery_password' FOR CHANNEL 'group_replication_recovery' +--enable_warnings + +--let $group_replication_start_member_state= RECOVERING +--source include/start_group_replication.inc + +--sleep 15 + +--let $group_replication_member_state= RECOVERING +--source ../inc/gr_wait_for_member_state.inc + +--echo # +--echo # 5. Execute something on server 2, it should appear on server 3 + +--let $rpl_connection_name= server2 +--source include/rpl_connection.inc + +INSERT INTO t1 VALUES (2); + +--let $rpl_connection_name= server3 +--source include/rpl_connection.inc + +--let $wait_condition= SELECT count(*) = 1 FROM information_schema.tables WHERE (table_schema = 'test') AND (table_name = 't1'); +--source include/wait_condition.inc + +--let $wait_condition= SELECT COUNT(*)=1 FROM test.t1; +--source include/wait_condition.inc + +--echo # +--echo # 6. Unblock the local transaction on server 1 + +--let $rpl_connection_name= server_1 +--source include/rpl_connection.inc + +SET @@GLOBAL.DEBUG='-d,group_replication_after_before_commit_hook'; +SET DEBUG_SYNC= "now SIGNAL signal.commit_continue"; + +--let $rpl_connection_name= server1 +--source include/rpl_connection.inc + +--reap + +--echo # +--echo # 7. Server 3 should now be online + +--let $rpl_connection_name= server3 +--source include/rpl_connection.inc + +--let $group_replication_member_state= ONLINE +--source ../inc/gr_wait_for_member_state.inc + +--echo # +--echo # 8. Check the logged event order in all servers + +--let $vcle_seq= Gtid # Query/BEGIN # View_change # Query/COMMIT + +--let $rpl_connection_name= server1 +--source include/rpl_connection.inc + +# View change (s1) # Create table # View change (s2) # Insert (2) # Insert(1) # View change (s3) +--let $event_sequence= $vcle_seq # !Gtid_transaction # $vcle_seq # !Gtid_transaction # !Gtid_transaction # $vcle_seq +--source include/assert_binlog_events.inc + +--let $rpl_connection_name= server2 +--source include/rpl_connection.inc + +# View change (s1) # Create table # View change (s2) # Insert (1) # View change (s3) # Insert(2) +--let $event_sequence= $vcle_seq # !Gtid_transaction # $vcle_seq # !Gtid_transaction # $vcle_seq # !Gtid_transaction +--source include/assert_binlog_events.inc + +--let $rpl_connection_name= server3 +--source include/rpl_connection.inc + +# View change (s1) # Create table # View change (s2) # Insert (2) # Insert(1) # View change (s3) +--let $event_sequence= $vcle_seq # !Gtid_transaction # $vcle_seq # !Gtid_transaction # !Gtid_transaction # $vcle_seq +--source include/assert_binlog_events.inc + +--echo # +--echo # 9. Clean up. + +--let $rpl_connection_name= server1 +--source include/rpl_connection.inc +DROP TABLE t1; + +SET SESSION sql_log_bin= 0; +--eval DROP USER "$recovery_user" +SET SESSION sql_log_bin= 1; + +SET SESSION sql_log_bin= 0; +call mtr.add_suppression("Timeout when waiting for the server to execute local transactions*"); +call mtr.add_suppression("Unable to log the group change View log event in its exaction position in the log.*"); +SET SESSION sql_log_bin= 1; + +--let $rpl_connection_name= server3 +--source include/rpl_connection.inc + +SET SESSION sql_log_bin= 0; +call mtr.add_suppression("There was an error when connecting to the donor server.*"); +call mtr.add_suppression("For details please check performance_schema.replication_connection_status table and error log messages of Slave I/O for channel group_replication_recovery."); +SET SESSION sql_log_bin= 1; + +--source ../inc/group_replication_end.inc diff -Nru mysql-5.7-5.7.25/rapid/plugin/x/CMakeLists.txt mysql-5.7-5.7.26/rapid/plugin/x/CMakeLists.txt --- mysql-5.7-5.7.25/rapid/plugin/x/CMakeLists.txt 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/x/CMakeLists.txt 2019-04-13 13:32:15.000000000 +0000 @@ -98,7 +98,7 @@ INCLUDE_DIRECTORIES(SYSTEM ${BOOST_INCLUDE_DIR} ${PROTOBUF_INCLUDE_DIRS} - ${LIBEVENT_INCLUDE_DIR} + ${LIBEVENT_INCLUDE_DIRS} ) IF(XPLUGIN_NO_LITE_PROTOBUF) @@ -140,7 +140,7 @@ src/xpl_plugin.cc src/xpl_performance_schema.cc ${xplugin_SRC} ${xplugin_HDRS} ${xplugin_PROTOBUF_SRC} ${BOOST_LIB_SOURCES} - LINK_LIBRARIES ${xplugin_PROTOBUF_LIB} ${LIBEVENT_LIBRARY} ${LIBEVENT_LIBRARIES} + LINK_LIBRARIES ${xplugin_PROTOBUF_LIB} ${LIBEVENT_LIBRARIES} MODULE_ONLY MODULE_OUTPUT_NAME "mysqlx") IF(WITH_PROTOBUF STREQUAL "system") @@ -149,7 +149,7 @@ ADD_DEPENDENCIES(mysqlx GenError) IF (WITH_LIBEVENT STREQUAL "bundled") - ADD_DEPENDENCIES(mysqlx ${LIBEVENT_LIBRARY}) + ADD_DEPENDENCIES(mysqlx ${LIBEVENT_LIBRARIES}) ENDIF() IF(XPLUGIN_LOG_PROTOBUF) diff -Nru mysql-5.7-5.7.25/rapid/plugin/x/mysqlx_protobuf.cmake mysql-5.7-5.7.26/rapid/plugin/x/mysqlx_protobuf.cmake --- mysql-5.7-5.7.25/rapid/plugin/x/mysqlx_protobuf.cmake 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/x/mysqlx_protobuf.cmake 2019-04-13 13:32:15.000000000 +0000 @@ -1,4 +1,4 @@ -# Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -17,6 +17,8 @@ SET(MYSQLX_PROTOBUF_MSVC_DISABLED_WARNINGS "/wd4267 /wd4244") ENDIF() +INCLUDE(${MYSQL_CMAKE_SCRIPT_DIR}/compile_flags.cmake) + # Standard PROTOBUF_GENERATE_CPP modified to generate both # protobuf and protobuf-lite C++ files. FUNCTION(MYSQLX_PROTOBUF_GENERATE_CPP SRCS HDRS SRCS_LITE HDRS_LITE) diff -Nru mysql-5.7-5.7.25/rapid/plugin/x/ngs/include/ngs/socket_events.h mysql-5.7-5.7.26/rapid/plugin/x/ngs/include/ngs/socket_events.h --- mysql-5.7-5.7.25/rapid/plugin/x/ngs/include/ngs/socket_events.h 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/x/ngs/include/ngs/socket_events.h 2019-04-13 13:32:15.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015, 2016 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as @@ -29,6 +29,12 @@ class Socket_events: public Socket_events_interface { public: +#ifdef _WIN32 + // mimick evutil_socket_t in libevent-2.x + typedef intptr_t socket_type; +#else + typedef int socket_type; +#endif Socket_events(); ~Socket_events(); @@ -39,8 +45,8 @@ void break_loop(); private: - static void timeout_call(int sock, short which, void *arg); - static void socket_data_avaiable(int sock, short which, void *arg); + static void timeout_call(socket_type sock, short which, void *arg); + static void socket_data_avaiable(socket_type sock, short which, void *arg); struct Timer_data; struct Socket_data; diff -Nru mysql-5.7-5.7.25/rapid/plugin/x/ngs/src/socket_events.cc mysql-5.7-5.7.26/rapid/plugin/x/ngs/src/socket_events.cc --- mysql-5.7-5.7.25/rapid/plugin/x/ngs/src/socket_events.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/plugin/x/ngs/src/socket_events.cc 2019-04-13 13:32:15.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015, 2016 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as @@ -169,7 +169,7 @@ event_base_loopbreak(m_evbase); } -void Socket_events::timeout_call(int sock, short which, void *arg) { +void Socket_events::timeout_call(socket_type sock, short which, void *arg) { Timer_data *data = (Timer_data*)arg; if (!data->callback()) { @@ -189,7 +189,7 @@ } } -void Socket_events::socket_data_avaiable(int sock, short which, void *arg) { +void Socket_events::socket_data_avaiable(socket_type sock, short which, void *arg) { Socket_data *data = (Socket_data*)arg; Operations_factory operations_factory; System_interface::Shared_ptr system_interface(operations_factory.create_system_interface()); diff -Nru mysql-5.7-5.7.25/rapid/unittest/gunit/xplugin/CMakeLists.txt mysql-5.7-5.7.26/rapid/unittest/gunit/xplugin/CMakeLists.txt --- mysql-5.7-5.7.25/rapid/unittest/gunit/xplugin/CMakeLists.txt 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/unittest/gunit/xplugin/CMakeLists.txt 2019-04-13 13:32:15.000000000 +0000 @@ -17,6 +17,8 @@ RETURN() ENDIF() +INCLUDE(${MYSQL_CMAKE_SCRIPT_DIR}/compile_flags.cmake) + IF(SSL_DEFINES) ADD_DEFINITIONS(${SSL_DEFINES}) ENDIF() @@ -72,7 +74,7 @@ ${BOOST_INCLUDE_DIR} ${PROTOBUF_INCLUDE_DIRS} ${SSL_INCLUDE_DIRS} - ${LIBEVENT_INCLUDE_DIR} + ${LIBEVENT_INCLUDE_DIRS} ${GMOCK_INCLUDE_DIRS} ${GTEST_INCLUDE_DIR} ${CMAKE_BINARY_DIR}/rapid/plugin/x/generated/protobuf @@ -150,7 +152,7 @@ gmock mysqlservices mysqlclient - ${LIBEVENT_LIBRARY} ${LIBEVENT_LIBRARIES} + ${LIBEVENT_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT} ${PROTOBUF_LIBRARY} ${GCOV_LDFLAGS} diff -Nru mysql-5.7-5.7.25/rapid/unittest/gunit/xplugin/listener_tcp_t.cc mysql-5.7-5.7.26/rapid/unittest/gunit/xplugin/listener_tcp_t.cc --- mysql-5.7-5.7.25/rapid/unittest/gunit/xplugin/listener_tcp_t.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/unittest/gunit/xplugin/listener_tcp_t.cc 2019-04-13 13:32:15.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as @@ -178,7 +178,7 @@ _, _)).WillOnce(Return(POSIX_FAILURE)); - ASSERT_FALSE(sut->setup_listener(NULL)); + ASSERT_FALSE(sut->setup_listener(ngs::Listener_interface::On_connection())); ASSERT_TRUE(sut->get_state().is(ngs::State_listener_initializing)); } @@ -201,7 +201,7 @@ _, _)).WillOnce(Return(POSIX_FAILURE)); - ASSERT_FALSE(sut->setup_listener(NULL)); + ASSERT_FALSE(sut->setup_listener(ngs::Listener_interface::On_connection())); ASSERT_TRUE(sut->get_state().is(ngs::State_listener_initializing)); } @@ -218,7 +218,7 @@ _, _)).WillOnce(Return(POSIX_FAILURE)); - ASSERT_FALSE(sut->setup_listener(NULL)); + ASSERT_FALSE(sut->setup_listener(ngs::Listener_interface::On_connection())); ASSERT_TRUE(sut->get_state().is(ngs::State_listener_initializing)); } @@ -261,7 +261,7 @@ EXPECT_CALL(*m_mock_system, freeaddrinfo(&ai)); - ASSERT_FALSE(sut->setup_listener(NULL)); + ASSERT_FALSE(sut->setup_listener(ngs::Listener_interface::On_connection())); ASSERT_TRUE(sut->get_state().is(ngs::State_listener_initializing)); } @@ -294,7 +294,7 @@ EXPECT_CALL(*m_mock_system, freeaddrinfo(&ai)); - ASSERT_FALSE(sut->setup_listener(NULL)); + ASSERT_FALSE(sut->setup_listener(ngs::Listener_interface::On_connection())); ASSERT_TRUE(sut->get_state().is(ngs::State_listener_initializing)); } @@ -321,7 +321,7 @@ EXPECT_CALL(*m_mock_system, freeaddrinfo(&ai)); - ASSERT_FALSE(sut->setup_listener(NULL)); + ASSERT_FALSE(sut->setup_listener(ngs::Listener_interface::On_connection())); ASSERT_TRUE(sut->get_state().is(ngs::State_listener_initializing)); } @@ -341,7 +341,7 @@ EXPECT_CALL(*m_mock_system, freeaddrinfo(&ai)); - ASSERT_TRUE(sut->setup_listener(NULL)); + ASSERT_TRUE(sut->setup_listener(ngs::Listener_interface::On_connection())); ASSERT_TRUE(sut->get_state().is(ngs::State_listener_prepared)); // SUT destructor @@ -365,7 +365,7 @@ EXPECT_CALL(*m_mock_system, freeaddrinfo(&ai)); - ASSERT_TRUE(sut->setup_listener(NULL)); + ASSERT_TRUE(sut->setup_listener(ngs::Listener_interface::On_connection())); ASSERT_TRUE(sut->get_state().is(ngs::State_listener_prepared)); // SUT destructor @@ -390,7 +390,7 @@ EXPECT_CALL(*m_mock_system, freeaddrinfo(&ai)); - ASSERT_FALSE(sut->setup_listener(NULL)); + ASSERT_FALSE(sut->setup_listener(ngs::Listener_interface::On_connection())); ASSERT_TRUE(sut->get_state().is(ngs::State_listener_initializing)); // SUT destructor @@ -416,7 +416,7 @@ EXPECT_CALL(*m_mock_system, freeaddrinfo(&ai4)); - ASSERT_TRUE(sut->setup_listener(NULL)); + ASSERT_TRUE(sut->setup_listener(ngs::Listener_interface::On_connection())); ASSERT_TRUE(sut->get_state().is(ngs::State_listener_prepared)); // SUT destructor @@ -443,7 +443,7 @@ EXPECT_CALL(*m_mock_system, freeaddrinfo(&ai4)); - ASSERT_TRUE(sut->setup_listener(NULL)); + ASSERT_TRUE(sut->setup_listener(ngs::Listener_interface::On_connection())); ASSERT_TRUE(sut->get_state().is(ngs::State_listener_prepared)); // SUT destructor @@ -482,7 +482,7 @@ EXPECT_CALL(*m_mock_system, freeaddrinfo(&ai4)); - ASSERT_TRUE(sut->setup_listener(NULL)); + ASSERT_TRUE(sut->setup_listener(ngs::Listener_interface::On_connection())); ASSERT_TRUE(sut->get_state().is(ngs::State_listener_prepared)); // SUT destructor @@ -507,7 +507,7 @@ EXPECT_CALL(*m_mock_system, freeaddrinfo(&ai)); - ASSERT_TRUE(sut->setup_listener(NULL)); + ASSERT_TRUE(sut->setup_listener(ngs::Listener_interface::On_connection())); ASSERT_TRUE(sut->get_state().is(ngs::State_listener_prepared)); // SUT destructor @@ -533,7 +533,7 @@ sut->close_listener(); //After stopping, start must not work ! - sut->setup_listener(NULL); + sut->setup_listener(ngs::Listener_interface::On_connection()); } TEST_F(Listener_tcp_testsuite, loop_does_nothing_always) { diff -Nru mysql-5.7-5.7.25/rapid/unittest/gunit/xplugin/listener_unix_socket_t.cc mysql-5.7-5.7.26/rapid/unittest/gunit/xplugin/listener_unix_socket_t.cc --- mysql-5.7-5.7.25/rapid/unittest/gunit/xplugin/listener_unix_socket_t.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/rapid/unittest/gunit/xplugin/listener_unix_socket_t.cc 2019-04-13 13:32:15.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (c) 2016 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as @@ -107,7 +107,7 @@ ngs::Socket_interface::Shared_ptr socket = m_mock_socket; EXPECT_CALL(m_mock_socket_events, listen(socket, _)).WillOnce(Return(true)); - ASSERT_TRUE(sut->setup_listener(NULL)); + ASSERT_TRUE(sut->setup_listener(ngs::Listener_interface::On_connection())); ASSERT_TRUE(sut->get_state().is(ngs::State_listener_prepared)); ASSERT_NO_FATAL_FAILURE(assert_and_clear_mocks()); @@ -141,7 +141,7 @@ EXPECT_CALL(*m_mock_socket_invalid, close()); - ASSERT_FALSE(sut->setup_listener(NULL)); + ASSERT_FALSE(sut->setup_listener(ngs::Listener_interface::On_connection())); ASSERT_TRUE(sut->get_state().is(ngs::State_listener_initializing)); #endif } @@ -153,7 +153,7 @@ EXPECT_CALL(*m_mock_socket_invalid, close()); - ASSERT_FALSE(sut->setup_listener(NULL)); + ASSERT_FALSE(sut->setup_listener(ngs::Listener_interface::On_connection())); ASSERT_TRUE(sut->get_state().is(ngs::State_listener_initializing)); #endif } @@ -167,7 +167,7 @@ EXPECT_CALL(*m_mock_system, get_pid()).WillOnce(Return(CURRENT_PID)); EXPECT_CALL(*m_mock_socket_invalid, close()); - ASSERT_FALSE(sut->setup_listener(NULL)); + ASSERT_FALSE(sut->setup_listener(ngs::Listener_interface::On_connection())); ASSERT_TRUE(sut->get_state().is(ngs::State_listener_initializing)); #endif } @@ -183,7 +183,7 @@ EXPECT_CALL(*m_mock_system, get_errno()).WillOnce(Return(EEXIST)); EXPECT_CALL(*m_mock_socket_invalid, close()); - ASSERT_FALSE(sut->setup_listener(NULL)); + ASSERT_FALSE(sut->setup_listener(ngs::Listener_interface::On_connection())); ASSERT_TRUE(sut->get_state().is(ngs::State_listener_initializing)); #endif } @@ -200,7 +200,7 @@ EXPECT_CALL(*m_mock_file, read(_,_)).WillOnce(Return(READ_ERR)); EXPECT_CALL(*m_mock_socket_invalid, close()); - ASSERT_FALSE(sut->setup_listener(NULL)); + ASSERT_FALSE(sut->setup_listener(ngs::Listener_interface::On_connection())); ASSERT_TRUE(sut->get_state().is(ngs::State_listener_initializing)); #endif } @@ -218,7 +218,7 @@ EXPECT_CALL(*m_mock_file, close()).WillOnce(Return(0)); EXPECT_CALL(*m_mock_socket_invalid, close()); - ASSERT_FALSE(sut->setup_listener(NULL)); + ASSERT_FALSE(sut->setup_listener(ngs::Listener_interface::On_connection())); ASSERT_TRUE(sut->get_state().is(ngs::State_listener_initializing)); #endif } @@ -236,7 +236,7 @@ EXPECT_CALL(*m_mock_file, close()).WillOnce(Return(CLOSE_OK)); EXPECT_CALL(*m_mock_socket_invalid, close()); - ASSERT_FALSE(sut->setup_listener(NULL)); + ASSERT_FALSE(sut->setup_listener(ngs::Listener_interface::On_connection())); ASSERT_TRUE(sut->get_state().is(ngs::State_listener_initializing)); #endif } @@ -260,7 +260,7 @@ EXPECT_CALL(*m_mock_file, close()).WillOnce(Return(CLOSE_OK)); EXPECT_CALL(*m_mock_socket_invalid, close()); - ASSERT_FALSE(sut->setup_listener(NULL)); + ASSERT_FALSE(sut->setup_listener(ngs::Listener_interface::On_connection())); ASSERT_TRUE(sut->get_state().is(ngs::State_listener_initializing)); #endif } @@ -284,7 +284,7 @@ EXPECT_CALL(*m_mock_system, unlink(StrEq(UNIX_SOCKET_LOCK_FILE))).WillOnce(Return(UNLINK_ERR)); EXPECT_CALL(*m_mock_socket_invalid, close()); - ASSERT_FALSE(sut->setup_listener(NULL)); + ASSERT_FALSE(sut->setup_listener(ngs::Listener_interface::On_connection())); ASSERT_TRUE(sut->get_state().is(ngs::State_listener_initializing)); #endif } @@ -298,7 +298,7 @@ EXPECT_CALL(*m_mock_file, write(_, _)).WillOnce(Return(WRITE_ERR)); EXPECT_CALL(*m_mock_socket_invalid, close()); - ASSERT_FALSE(sut->setup_listener(NULL)); + ASSERT_FALSE(sut->setup_listener(ngs::Listener_interface::On_connection())); ASSERT_TRUE(sut->get_state().is(ngs::State_listener_initializing)); #endif } @@ -314,7 +314,7 @@ EXPECT_CALL(*m_mock_file, fsync()).WillOnce(Return(FSYNC_ERR)); EXPECT_CALL(*m_mock_socket_invalid, close()); - ASSERT_FALSE(sut->setup_listener(NULL)); + ASSERT_FALSE(sut->setup_listener(ngs::Listener_interface::On_connection())); ASSERT_TRUE(sut->get_state().is(ngs::State_listener_initializing)); #endif } @@ -331,7 +331,7 @@ EXPECT_CALL(*m_mock_file, close()).WillOnce(Return(CLOSE_ERR)); EXPECT_CALL(*m_mock_socket_invalid, close()); - ASSERT_FALSE(sut->setup_listener(NULL)); + ASSERT_FALSE(sut->setup_listener(ngs::Listener_interface::On_connection())); ASSERT_TRUE(sut->get_state().is(ngs::State_listener_initializing)); #endif } @@ -344,7 +344,7 @@ EXPECT_CALL(*m_mock_system, get_socket_error_and_message(_, _)); EXPECT_CALL(*m_mock_socket_invalid, close()); - ASSERT_FALSE(sut->setup_listener(NULL)); + ASSERT_FALSE(sut->setup_listener(ngs::Listener_interface::On_connection())); ASSERT_TRUE(sut->get_state().is(ngs::State_listener_initializing)); #endif } @@ -364,7 +364,7 @@ EXPECT_CALL(*m_mock_socket, close()).Times(2); // first call in setup_listener // second call in SUT destructor - ASSERT_FALSE(sut->setup_listener(NULL)); + ASSERT_FALSE(sut->setup_listener(ngs::Listener_interface::On_connection())); ASSERT_TRUE(sut->get_state().is(ngs::State_listener_initializing)); #endif } @@ -385,7 +385,7 @@ ngs::Socket_interface::Shared_ptr socket = m_mock_socket; EXPECT_CALL(m_mock_socket_events, listen(socket, _)).WillOnce(Return(false)); - ASSERT_FALSE(sut->setup_listener(NULL)); + ASSERT_FALSE(sut->setup_listener(ngs::Listener_interface::On_connection())); ASSERT_TRUE(sut->get_state().is(ngs::State_listener_initializing)); // In SUT destructor @@ -419,7 +419,7 @@ EXPECT_CALL(*m_mock_socket_invalid, close()); - ASSERT_FALSE(sut->setup_listener(NULL)); + ASSERT_FALSE(sut->setup_listener(ngs::Listener_interface::On_connection())); ASSERT_TRUE(sut->get_state().is(ngs::State_listener_initializing)); #endif } diff -Nru mysql-5.7-5.7.25/scripts/fill_help_tables.sql mysql-5.7-5.7.26/scripts/fill_help_tables.sql --- mysql-5.7-5.7.25/scripts/fill_help_tables.sql 2018-12-21 10:52:19.000000000 +0000 +++ mysql-5.7-5.7.26/scripts/fill_help_tables.sql 2019-04-13 13:46:47.000000000 +0000 @@ -1,4 +1,4 @@ --- Copyright (c) 2003, 2018, Oracle and/or its affiliates. All rights reserved. +-- Copyright (c) 2003, 2019, Oracle and/or its affiliates. All rights reserved. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by @@ -18,9 +18,9 @@ -- documentation team. If you require changes to the content of this -- file, contact the documentation team. --- File generation date: 2018-12-20 +-- File generation date: 2019-04-12 -- MySQL series: 5.7 --- Document repository revision: 60441 +-- Document repository revision: 61667 -- To use this file, load its contents into the mysql database. For example, -- with the mysql client program, process the file like this, where @@ -106,16 +106,16 @@ INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (23,12,'AES_DECRYPT','Syntax:\nAES_DECRYPT(crypt_str,key_str[,init_vector])\n\nThis function decrypts data using the official AES (Advanced Encryption\nStandard) algorithm. For more information, see the description of\nAES_ENCRYPT().\n\nThe optional initialization vector argument, init_vector, is available\nas of MySQL 5.7.4. As of that version, statements that use\nAES_DECRYPT() are unsafe for statement-based replication and cannot be\nstored in the query cache.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (24,12,'AES_ENCRYPT','Syntax:\nAES_ENCRYPT(str,key_str[,init_vector])\n\nAES_ENCRYPT() and AES_DECRYPT() implement encryption and decryption of\ndata using the official AES (Advanced Encryption Standard) algorithm,\npreviously known as "Rijndael." The AES standard permits various key\nlengths. By default these functions implement AES with a 128-bit key\nlength. As of MySQL 5.7.4, key lengths of 196 or 256 bits can be used,\nas described later. The key length is a trade off between performance\nand security.\n\nAES_ENCRYPT() encrypts the string str using the key string key_str and\nreturns a binary string containing the encrypted output. AES_DECRYPT()\ndecrypts the encrypted string crypt_str using the key string key_str\nand returns the original cleartext string. If either function argument\nis NULL, the function returns NULL.\n\nThe str and crypt_str arguments can be any length, and padding is\nautomatically added to str so it is a multiple of a block as required\nby block-based algorithms such as AES. This padding is automatically\nremoved by the AES_DECRYPT() function. The length of crypt_str can be\ncalculated using this formula:\n\n16 * (trunc(string_length / 16) + 1)\n\nFor a key length of 128 bits, the most secure way to pass a key to the\nkey_str argument is to create a truly random 128-bit value and pass it\nas a binary value. For example:\n\nINSERT INTO t\nVALUES (1,AES_ENCRYPT(\'text\',UNHEX(\'F3229A0B371ED2D9441B830D21A390C3\')));\n\nA passphrase can be used to generate an AES key by hashing the\npassphrase. For example:\n\nINSERT INTO t\nVALUES (1,AES_ENCRYPT(\'text\', UNHEX(SHA2(\'My secret passphrase\',512))));\n\nDo not pass a password or passphrase directly to crypt_str, hash it\nfirst. Previous versions of this documentation suggested the former\napproach, but it is no longer recommended as the examples shown here\nare more secure.\n\nIf AES_DECRYPT() detects invalid data or incorrect padding, it returns\nNULL. However, it is possible for AES_DECRYPT() to return a non-NULL\nvalue (possibly garbage) if the input data or the key is invalid.\n\nAs of MySQL 5.7.4, AES_ENCRYPT() and AES_DECRYPT() permit control of\nthe block encryption mode and take an optional init_vector\ninitialization vector argument:\n\no The block_encryption_mode system variable controls the mode for\n block-based encryption algorithms. Its default value is aes-128-ecb,\n which signifies encryption using a key length of 128 bits and ECB\n mode. For a description of the permitted values of this variable, see\n http://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html.\n\no The optional init_vector argument provides an initialization vector\n for block encryption modes that require it.\n\nFor modes that require the optional init_vector argument, it must be 16\nbytes or longer (bytes in excess of 16 are ignored). An error occurs if\ninit_vector is missing.\n\nFor modes that do not require init_vector, it is ignored and a warning\nis generated if it is specified.\n\nA random string of bytes to use for the initialization vector can be\nproduced by calling RANDOM_BYTES(16). For encryption modes that require\nan initialization vector, the same vector must be used for encryption\nand decryption.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html\n\n','mysql> SET block_encryption_mode = \'aes-256-cbc\';\nmysql> SET @key_str = SHA2(\'My secret passphrase\',512);\nmysql> SET @init_vector = RANDOM_BYTES(16);\nmysql> SET @crypt_str = AES_ENCRYPT(\'text\',@key_str,@init_vector);\nmysql> SELECT AES_DECRYPT(@crypt_str,@key_str,@init_vector);\n+-----------------------------------------------+\n| AES_DECRYPT(@crypt_str,@key_str,@init_vector) |\n+-----------------------------------------------+\n| text |\n+-----------------------------------------------+\n','http://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (25,8,'ALTER DATABASE','Syntax:\nALTER {DATABASE | SCHEMA} [db_name]\n alter_specification ...\nALTER {DATABASE | SCHEMA} db_name\n UPGRADE DATA DIRECTORY NAME\n\nalter_specification:\n [DEFAULT] CHARACTER SET [=] charset_name\n | [DEFAULT] COLLATE [=] collation_name\n\nALTER DATABASE enables you to change the overall characteristics of a\ndatabase. These characteristics are stored in the db.opt file in the\ndatabase directory. To use ALTER DATABASE, you need the ALTER privilege\non the database. ALTER SCHEMA is a synonym for ALTER DATABASE.\n\nThe database name can be omitted from the first syntax, in which case\nthe statement applies to the default database.\n\nNational Language Characteristics\n\nThe CHARACTER SET clause changes the default database character set.\nThe COLLATE clause changes the default database collation.\nhttp://dev.mysql.com/doc/refman/5.7/en/charset.html, discusses\ncharacter set and collation names.\n\nYou can see what character sets and collations are available using,\nrespectively, the SHOW CHARACTER SET and SHOW COLLATION statements. See\n[HELP SHOW CHARACTER SET], and [HELP SHOW COLLATION], for more\ninformation.\n\nIf you change the default character set or collation for a database,\nstored routines that use the database defaults must be dropped and\nrecreated so that they use the new defaults. (In a stored routine,\nvariables with character data types use the database defaults if the\ncharacter set or collation are not specified explicitly. See [HELP\nCREATE PROCEDURE].)\n\nUpgrading from Versions Older than MySQL 5.1\n\nThe syntax that includes the UPGRADE DATA DIRECTORY NAME clause updates\nthe name of the directory associated with the database to use the\nencoding implemented in MySQL 5.1 for mapping database names to\ndatabase directory names (see\nhttp://dev.mysql.com/doc/refman/5.7/en/identifier-mapping.html). This\nclause is for use under these conditions:\n\no It is intended when upgrading MySQL to 5.1 or later from older\n versions.\n\no It is intended to update a database directory name to the current\n encoding format if the name contains special characters that need\n encoding.\n\no The statement is used by mysqlcheck (as invoked by mysql_upgrade).\n\nFor example, if a database in MySQL 5.0 has the name a-b-c, the name\ncontains instances of the - (dash) character. In MySQL 5.0, the\ndatabase directory is also named a-b-c, which is not necessarily safe\nfor all file systems. In MySQL 5.1 and later, the same database name is\nencoded as a@002db@002dc to produce a file system-neutral directory\nname.\n\nWhen a MySQL installation is upgraded to MySQL 5.1 or later from an\nolder version,the server displays a name such as a-b-c (which is in the\nold format) as #mysql50#a-b-c, and you must refer to the name using the\n#mysql50# prefix. Use UPGRADE DATA DIRECTORY NAME in this case to\nexplicitly tell the server to re-encode the database directory name to\nthe current encoding format:\n\nALTER DATABASE `#mysql50#a-b-c` UPGRADE DATA DIRECTORY NAME;\n\nAfter executing this statement, you can refer to the database as a-b-c\nwithout the special #mysql50# prefix.\n\n*Note*:\n\nThe UPGRADE DATA DIRECTORY NAME clause is deprecated in MySQL 5.7.6 and\nwill be removed in a future version of MySQL. If it is necessary to\nconvert MySQL 5.0 database or table names, a workaround is to upgrade a\nMySQL 5.0 installation to MySQL 5.1 before upgrading to a more recent\nrelease.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/alter-database.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/alter-database.html'); -INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (26,8,'ALTER EVENT','Syntax:\nALTER\n [DEFINER = { user | CURRENT_USER }]\n EVENT event_name\n [ON SCHEDULE schedule]\n [ON COMPLETION [NOT] PRESERVE]\n [RENAME TO new_event_name]\n [ENABLE | DISABLE | DISABLE ON SLAVE]\n [COMMENT \'string\']\n [DO event_body]\n\nThe ALTER EVENT statement changes one or more of the characteristics of\nan existing event without the need to drop and recreate it. The syntax\nfor each of the DEFINER, ON SCHEDULE, ON COMPLETION, COMMENT, ENABLE /\nDISABLE, and DO clauses is exactly the same as when used with CREATE\nEVENT. (See [HELP CREATE EVENT].)\n\nAny user can alter an event defined on a database for which that user\nhas the EVENT privilege. When a user executes a successful ALTER EVENT\nstatement, that user becomes the definer for the affected event.\n\nALTER EVENT works only with an existing event:\n\nmysql> ALTER EVENT no_such_event \n > ON SCHEDULE \n > EVERY \'2:3\' DAY_HOUR;\nERROR 1517 (HY000): Unknown event \'no_such_event\'\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/alter-event.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/alter-event.html'); +INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (26,8,'ALTER EVENT','Syntax:\nALTER\n [DEFINER = user]\n EVENT event_name\n [ON SCHEDULE schedule]\n [ON COMPLETION [NOT] PRESERVE]\n [RENAME TO new_event_name]\n [ENABLE | DISABLE | DISABLE ON SLAVE]\n [COMMENT \'string\']\n [DO event_body]\n\nThe ALTER EVENT statement changes one or more of the characteristics of\nan existing event without the need to drop and recreate it. The syntax\nfor each of the DEFINER, ON SCHEDULE, ON COMPLETION, COMMENT, ENABLE /\nDISABLE, and DO clauses is exactly the same as when used with CREATE\nEVENT. (See [HELP CREATE EVENT].)\n\nAny user can alter an event defined on a database for which that user\nhas the EVENT privilege. When a user executes a successful ALTER EVENT\nstatement, that user becomes the definer for the affected event.\n\nALTER EVENT works only with an existing event:\n\nmysql> ALTER EVENT no_such_event \n > ON SCHEDULE \n > EVERY \'2:3\' DAY_HOUR;\nERROR 1517 (HY000): Unknown event \'no_such_event\'\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/alter-event.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/alter-event.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (27,8,'ALTER FUNCTION','Syntax:\nALTER FUNCTION func_name [characteristic ...]\n\ncharacteristic:\n COMMENT \'string\'\n | LANGUAGE SQL\n | { CONTAINS SQL | NO SQL | READS SQL DATA | MODIFIES SQL DATA }\n | SQL SECURITY { DEFINER | INVOKER }\n\nThis statement can be used to change the characteristics of a stored\nfunction. More than one change may be specified in an ALTER FUNCTION\nstatement. However, you cannot change the parameters or body of a\nstored function using this statement; to make such changes, you must\ndrop and re-create the function using DROP FUNCTION and CREATE\nFUNCTION.\n\nYou must have the ALTER ROUTINE privilege for the function. (That\nprivilege is granted automatically to the function creator.) If binary\nlogging is enabled, the ALTER FUNCTION statement might also require the\nSUPER privilege, as described in\nhttp://dev.mysql.com/doc/refman/5.7/en/stored-programs-logging.html.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/alter-function.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/alter-function.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (28,8,'ALTER INSTANCE','Syntax:\nALTER INSTANCE ROTATE INNODB MASTER KEY\n\nALTER INSTANCE, introduced in MySQL 5.7.11, defines actions applicable\nto a MySQL server instance.\n\nThe ALTER INSTANCE ROTATE INNODB MASTER KEY statement is used to rotate\nthe master encryption key used for InnoDB tablespace encryption. A\nkeyring plugin must be installed and configured to use this statement.\nFor information about keyring plugins, see\nhttp://dev.mysql.com/doc/refman/5.7/en/keyring.html. Key rotation\nrequires the SUPER privilege.\n\nALTER INSTANCE ROTATE INNODB MASTER KEY supports concurrent DML.\nHowever, it cannot be run concurrently with CREATE TABLE ... ENCRYPTION\nor ALTER TABLE ... ENCRYPTION operations, and locks are taken to\nprevent conflicts that could arise from concurrent execution of these\nstatements. If one of the conflicting statements is running, it must\ncomplete before another can proceed.\n\nALTER INSTANCE actions are written to the binary log so that they can\nbe executed on replicated servers.\n\nFor additional ALTER INSTANCE ROTATE INNODB MASTER KEY usage\ninformation, see\nhttp://dev.mysql.com/doc/refman/5.7/en/innodb-tablespace-encryption.htm\nl. For information about keyring plugins, see\nhttp://dev.mysql.com/doc/refman/5.7/en/keyring.html.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/alter-instance.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/alter-instance.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (29,8,'ALTER LOGFILE GROUP','Syntax:\nALTER LOGFILE GROUP logfile_group\n ADD UNDOFILE \'file_name\'\n [INITIAL_SIZE [=] size]\n [WAIT]\n ENGINE [=] engine_name\n\nThis statement adds an UNDO file named \'file_name\' to an existing log\nfile group logfile_group. An ALTER LOGFILE GROUP statement has one and\nonly one ADD UNDOFILE clause. No DROP UNDOFILE clause is currently\nsupported.\n\n*Note*:\n\nAll NDB Cluster Disk Data objects share the same namespace. This means\nthat each Disk Data object must be uniquely named (and not merely each\nDisk Data object of a given type). For example, you cannot have a\ntablespace and an undo log file with the same name, or an undo log file\nand a data file with the same name.\n\nThe optional INITIAL_SIZE parameter sets the UNDO file\'s initial size\nin bytes; if not specified, the initial size defaults to 134217728 (128\nMB). You may optionally follow size with a one-letter abbreviation for\nan order of magnitude, similar to those used in my.cnf. Generally, this\nis one of the letters M (megabytes) or G (gigabytes). (Bug #13116514,\nBug #16104705, Bug #62858)\n\nOn 32-bit systems, the maximum supported value for INITIAL_SIZE is\n4294967296 (4 GB). (Bug #29186)\n\nThe minimum allowed value for INITIAL_SIZE is 1048576 (1 MB). (Bug\n#29574)\n\n*Note*:\n\nWAIT is parsed but otherwise ignored. This keyword currently has no\neffect, and is intended for future expansion.\n\nThe ENGINE parameter (required) determines the storage engine which is\nused by this log file group, with engine_name being the name of the\nstorage engine. Currently, the only accepted values for engine_name are\n"NDBCLUSTER" and "NDB". The two values are equivalent.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/alter-logfile-group.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/alter-logfile-group.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (30,8,'ALTER PROCEDURE','Syntax:\nALTER PROCEDURE proc_name [characteristic ...]\n\ncharacteristic:\n COMMENT \'string\'\n | LANGUAGE SQL\n | { CONTAINS SQL | NO SQL | READS SQL DATA | MODIFIES SQL DATA }\n | SQL SECURITY { DEFINER | INVOKER }\n\nThis statement can be used to change the characteristics of a stored\nprocedure. More than one change may be specified in an ALTER PROCEDURE\nstatement. However, you cannot change the parameters or body of a\nstored procedure using this statement; to make such changes, you must\ndrop and re-create the procedure using DROP PROCEDURE and CREATE\nPROCEDURE.\n\nYou must have the ALTER ROUTINE privilege for the procedure. By\ndefault, that privilege is granted automatically to the procedure\ncreator. This behavior can be changed by disabling the\nautomatic_sp_privileges system variable. See\nhttp://dev.mysql.com/doc/refman/5.7/en/stored-routines-privileges.html.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/alter-procedure.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/alter-procedure.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (31,8,'ALTER SERVER','Syntax:\nALTER SERVER server_name\n OPTIONS (option [, option] ...)\n\nAlters the server information for server_name, adjusting any of the\noptions permitted in the CREATE SERVER statement. The corresponding\nfields in the mysql.servers table are updated accordingly. This\nstatement requires the SUPER privilege.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/alter-server.html\n\n','ALTER SERVER s OPTIONS (USER \'sally\');\n','http://dev.mysql.com/doc/refman/5.7/en/alter-server.html'); -INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (32,8,'ALTER TABLE','Syntax:\nALTER TABLE tbl_name\n [alter_specification [, alter_specification] ...]\n [partition_options]\n\nalter_specification:\n table_options\n | ADD [COLUMN] col_name column_definition\n [FIRST | AFTER col_name]\n | ADD [COLUMN] (col_name column_definition,...)\n | ADD {INDEX|KEY} [index_name]\n [index_type] (key_part,...) [index_option] ...\n | ADD [CONSTRAINT [symbol]] PRIMARY KEY\n [index_type] (key_part,...) [index_option] ...\n | ADD [CONSTRAINT [symbol]]\n UNIQUE [INDEX|KEY] [index_name]\n [index_type] (key_part,...) [index_option] ...\n | ADD FULLTEXT [INDEX|KEY] [index_name]\n (key_part,...) [index_option] ...\n | ADD SPATIAL [INDEX|KEY] [index_name]\n (key_part,...) [index_option] ...\n | ADD [CONSTRAINT [symbol]]\n FOREIGN KEY [index_name] (col_name,...)\n reference_definition\n | ALGORITHM [=] {DEFAULT|INPLACE|COPY}\n | ALTER [COLUMN] col_name {SET DEFAULT literal | DROP DEFAULT}\n | CHANGE [COLUMN] old_col_name new_col_name column_definition\n [FIRST|AFTER col_name]\n | [DEFAULT] CHARACTER SET [=] charset_name [COLLATE [=] collation_name]\n | CONVERT TO CHARACTER SET charset_name [COLLATE collation_name]\n | {DISABLE|ENABLE} KEYS\n | {DISCARD|IMPORT} TABLESPACE\n | DROP [COLUMN] col_name\n | DROP {INDEX|KEY} index_name\n | DROP PRIMARY KEY\n | DROP FOREIGN KEY fk_symbol\n | FORCE\n | LOCK [=] {DEFAULT|NONE|SHARED|EXCLUSIVE}\n | MODIFY [COLUMN] col_name column_definition\n [FIRST | AFTER col_name]\n | ORDER BY col_name [, col_name] ...\n | RENAME {INDEX|KEY} old_index_name TO new_index_name\n | RENAME [TO|AS] new_tbl_name\n | {WITHOUT|WITH} VALIDATION\n | ADD PARTITION (partition_definition)\n | DROP PARTITION partition_names\n | DISCARD PARTITION {partition_names | ALL} TABLESPACE\n | IMPORT PARTITION {partition_names | ALL} TABLESPACE\n | TRUNCATE PARTITION {partition_names | ALL}\n | COALESCE PARTITION number\n | REORGANIZE PARTITION partition_names INTO (partition_definitions)\n | EXCHANGE PARTITION partition_name WITH TABLE tbl_name [{WITH|WITHOUT} VALIDATION]\n | ANALYZE PARTITION {partition_names | ALL}\n | CHECK PARTITION {partition_names | ALL}\n | OPTIMIZE PARTITION {partition_names | ALL}\n | REBUILD PARTITION {partition_names | ALL}\n | REPAIR PARTITION {partition_names | ALL}\n | REMOVE PARTITIONING\n | UPGRADE PARTITIONING\n\nkey_part:\n col_name [(length)] [ASC | DESC]\n\nindex_type:\n USING {BTREE | HASH}\n\nindex_option:\n KEY_BLOCK_SIZE [=] value\n | index_type\n | WITH PARSER parser_name\n | COMMENT \'string\'\n\ntable_options:\n table_option [[,] table_option] ...\n\ntable_option:\n AUTO_INCREMENT [=] value\n | AVG_ROW_LENGTH [=] value\n | [DEFAULT] CHARACTER SET [=] charset_name\n | CHECKSUM [=] {0 | 1}\n | [DEFAULT] COLLATE [=] collation_name\n | COMMENT [=] \'string\'\n | COMPRESSION [=] {\'ZLIB\'|\'LZ4\'|\'NONE\'}\n | CONNECTION [=] \'connect_string\'\n | {DATA|INDEX} DIRECTORY [=] \'absolute path to directory\'\n | DELAY_KEY_WRITE [=] {0 | 1}\n | ENCRYPTION [=] {\'Y\' | \'N\'}\n | ENGINE [=] engine_name\n | INSERT_METHOD [=] { NO | FIRST | LAST }\n | KEY_BLOCK_SIZE [=] value\n | MAX_ROWS [=] value\n | MIN_ROWS [=] value\n | PACK_KEYS [=] {0 | 1 | DEFAULT}\n | PASSWORD [=] \'string\'\n | ROW_FORMAT [=] {DEFAULT|DYNAMIC|FIXED|COMPRESSED|REDUNDANT|COMPACT}\n | STATS_AUTO_RECALC [=] {DEFAULT|0|1}\n | STATS_PERSISTENT [=] {DEFAULT|0|1}\n | STATS_SAMPLE_PAGES [=] value\n | TABLESPACE tablespace_name [STORAGE {DISK|MEMORY|DEFAULT}]\n | UNION [=] (tbl_name[,tbl_name]...)\n\npartition_options:\n (see CREATE TABLE options)\n\nALTER TABLE changes the structure of a table. For example, you can add\nor delete columns, create or destroy indexes, change the type of\nexisting columns, or rename columns or the table itself. You can also\nchange characteristics such as the storage engine used for the table or\nthe table comment.\n\no To use ALTER TABLE, you need ALTER, CREATE, and INSERT privileges for\n the table. Renaming a table requires ALTER and DROP on the old table,\n ALTER, CREATE, and INSERT on the new table.\n\no Following the table name, specify the alterations to be made. If none\n are given, ALTER TABLE does nothing.\n\no The syntax for many of the permissible alterations is similar to\n clauses of the CREATE TABLE statement. column_definition clauses use\n the same syntax for ADD and CHANGE as for CREATE TABLE. For more\n information, see [HELP CREATE TABLE].\n\no The word COLUMN is optional and can be omitted.\n\no Multiple ADD, ALTER, DROP, and CHANGE clauses are permitted in a\n single ALTER TABLE statement, separated by commas. This is a MySQL\n extension to standard SQL, which permits only one of each clause per\n ALTER TABLE statement. For example, to drop multiple columns in a\n single statement, do this:\n\nALTER TABLE t2 DROP COLUMN c, DROP COLUMN d;\n\no If a storage engine does not support an attempted ALTER TABLE\n operation, a warning may result. Such warnings can be displayed with\n SHOW WARNINGS. See [HELP SHOW WARNINGS]. For information on\n troubleshooting ALTER TABLE, see\n http://dev.mysql.com/doc/refman/5.7/en/alter-table-problems.html.\n\no For information about generated columns, see\n http://dev.mysql.com/doc/refman/5.7/en/alter-table-generated-columns.\n html.\n\no For usage examples, see\n http://dev.mysql.com/doc/refman/5.7/en/alter-table-examples.html.\n\no With the mysql_info() C API function, you can find out how many rows\n were copied by ALTER TABLE. See\n http://dev.mysql.com/doc/refman/5.7/en/mysql-info.html.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/alter-table.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/alter-table.html'); -INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (33,8,'ALTER TABLESPACE','Syntax:\nALTER TABLESPACE tablespace_name\n {ADD|DROP} DATAFILE \'file_name\'\n [INITIAL_SIZE [=] size]\n [WAIT]\n ENGINE [=] engine_name\n\nThis statement is used either to add a new data file, or to drop a data\nfile from a tablespace.\n\nThe ADD DATAFILE variant enables you to specify an initial size using\nan INITIAL_SIZE clause, where size is measured in bytes; the default\nvalue is 134217728 (128 MB). You may optionally follow size with a\none-letter abbreviation for an order of magnitude, similar to those\nused in my.cnf. Generally, this is one of the letters M (megabytes) or\nG (gigabytes).\n\n*Note*:\n\nAll NDB Cluster Disk Data objects share the same namespace. This means\nthat each Disk Data object must be uniquely named (and not merely each\nDisk Data object of a given type). For example, you cannot have a\ntablespace and an data file with the same name, or an undo log file and\na tablespace with the same name.\n\nOn 32-bit systems, the maximum supported value for INITIAL_SIZE is\n4294967296 (4 GB). (Bug #29186)\n\nINITIAL_SIZE is rounded, explicitly, as for CREATE TABLESPACE.\n\nOnce a data file has been created, its size cannot be changed; however,\nyou can add more data files to the tablespace using additional ALTER\nTABLESPACE ... ADD DATAFILE statements.\n\nUsing DROP DATAFILE with ALTER TABLESPACE drops the data file\n\'file_name\' from the tablespace. You cannot drop a data file from a\ntablespace which is in use by any table; in other words, the data file\nmust be empty (no extents used). See\nhttp://dev.mysql.com/doc/refman/5.7/en/mysql-cluster-disk-data-objects.\nhtml. In addition, any data file to be dropped must previously have\nbeen added to the tablespace with CREATE TABLESPACE or ALTER\nTABLESPACE.\n\nBoth ALTER TABLESPACE ... ADD DATAFILE and ALTER TABLESPACE ... DROP\nDATAFILE require an ENGINE clause which specifies the storage engine\nused by the tablespace. Currently, the only accepted values for\nengine_name are NDB and NDBCLUSTER.\n\nWAIT is parsed but otherwise ignored, and so has no effect in MySQL\n5.7. It is intended for future expansion.\n\nWhen ALTER TABLESPACE ... ADD DATAFILE is used with ENGINE = NDB, a\ndata file is created on each Cluster data node. You can verify that the\ndata files were created and obtain information about them by querying\nthe INFORMATION_SCHEMA.FILES table. For example, the following query\nshows all data files belonging to the tablespace named newts:\n\nmysql> SELECT LOGFILE_GROUP_NAME, FILE_NAME, EXTRA\n -> FROM INFORMATION_SCHEMA.FILES\n -> WHERE TABLESPACE_NAME = \'newts\' AND FILE_TYPE = \'DATAFILE\';\n+--------------------+--------------+----------------+\n| LOGFILE_GROUP_NAME | FILE_NAME | EXTRA |\n+--------------------+--------------+----------------+\n| lg_3 | newdata.dat | CLUSTER_NODE=3 |\n| lg_3 | newdata.dat | CLUSTER_NODE=4 |\n| lg_3 | newdata2.dat | CLUSTER_NODE=3 |\n| lg_3 | newdata2.dat | CLUSTER_NODE=4 |\n+--------------------+--------------+----------------+\n2 rows in set (0.03 sec)\n\nSee http://dev.mysql.com/doc/refman/5.7/en/files-table.html.\n\nALTER TABLESPACE is useful only with Disk Data storage for NDB Cluster.\nSee\nhttp://dev.mysql.com/doc/refman/5.7/en/mysql-cluster-disk-data.html.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/alter-tablespace.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/alter-tablespace.html'); +INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (32,8,'ALTER TABLE','Syntax:\nALTER TABLE tbl_name\n [alter_specification [, alter_specification] ...]\n [partition_options]\n\nalter_specification:\n table_options\n | ADD [COLUMN] col_name column_definition\n [FIRST | AFTER col_name]\n | ADD [COLUMN] (col_name column_definition,...)\n | ADD {INDEX|KEY} [index_name]\n [index_type] (key_part,...) [index_option] ...\n | ADD {FULLTEXT|SPATIAL} [INDEX|KEY] [index_name]\n (key_part,...) [index_option] ...\n | ADD [CONSTRAINT [symbol]] PRIMARY KEY\n [index_type] (key_part,...)\n [index_option] ...\n | ADD [CONSTRAINT [symbol]] UNIQUE [INDEX|KEY]\n [index_name] [index_type] (key_part,...)\n [index_option] ...\n | ADD [CONSTRAINT [symbol]] FOREIGN KEY\n [index_name] (col_name,...)\n reference_definition\n | ADD CHECK (expr)\n | ALGORITHM [=] {DEFAULT|INPLACE|COPY}\n | ALTER [COLUMN] col_name {SET DEFAULT literal | DROP DEFAULT}\n | CHANGE [COLUMN] old_col_name new_col_name column_definition\n [FIRST|AFTER col_name]\n | [DEFAULT] CHARACTER SET [=] charset_name [COLLATE [=] collation_name]\n | CONVERT TO CHARACTER SET charset_name [COLLATE collation_name]\n | {DISABLE|ENABLE} KEYS\n | {DISCARD|IMPORT} TABLESPACE\n | DROP [COLUMN] col_name\n | DROP {INDEX|KEY} index_name\n | DROP PRIMARY KEY\n | DROP FOREIGN KEY fk_symbol\n | FORCE\n | LOCK [=] {DEFAULT|NONE|SHARED|EXCLUSIVE}\n | MODIFY [COLUMN] col_name column_definition\n [FIRST | AFTER col_name]\n | ORDER BY col_name [, col_name] ...\n | RENAME {INDEX|KEY} old_index_name TO new_index_name\n | RENAME [TO|AS] new_tbl_name\n | {WITHOUT|WITH} VALIDATION\n | ADD PARTITION (partition_definition)\n | DROP PARTITION partition_names\n | DISCARD PARTITION {partition_names | ALL} TABLESPACE\n | IMPORT PARTITION {partition_names | ALL} TABLESPACE\n | TRUNCATE PARTITION {partition_names | ALL}\n | COALESCE PARTITION number\n | REORGANIZE PARTITION partition_names INTO (partition_definitions)\n | EXCHANGE PARTITION partition_name WITH TABLE tbl_name [{WITH|WITHOUT} VALIDATION]\n | ANALYZE PARTITION {partition_names | ALL}\n | CHECK PARTITION {partition_names | ALL}\n | OPTIMIZE PARTITION {partition_names | ALL}\n | REBUILD PARTITION {partition_names | ALL}\n | REPAIR PARTITION {partition_names | ALL}\n | REMOVE PARTITIONING\n | UPGRADE PARTITIONING\n\nkey_part:\n col_name [(length)] [ASC | DESC]\n\nindex_type:\n USING {BTREE | HASH}\n\nindex_option:\n KEY_BLOCK_SIZE [=] value\n | index_type\n | WITH PARSER parser_name\n | COMMENT \'string\'\n\ntable_options:\n table_option [[,] table_option] ...\n\ntable_option:\n AUTO_INCREMENT [=] value\n | AVG_ROW_LENGTH [=] value\n | [DEFAULT] CHARACTER SET [=] charset_name\n | CHECKSUM [=] {0 | 1}\n | [DEFAULT] COLLATE [=] collation_name\n | COMMENT [=] \'string\'\n | COMPRESSION [=] {\'ZLIB\'|\'LZ4\'|\'NONE\'}\n | CONNECTION [=] \'connect_string\'\n | {DATA|INDEX} DIRECTORY [=] \'absolute path to directory\'\n | DELAY_KEY_WRITE [=] {0 | 1}\n | ENCRYPTION [=] {\'Y\' | \'N\'}\n | ENGINE [=] engine_name\n | INSERT_METHOD [=] { NO | FIRST | LAST }\n | KEY_BLOCK_SIZE [=] value\n | MAX_ROWS [=] value\n | MIN_ROWS [=] value\n | PACK_KEYS [=] {0 | 1 | DEFAULT}\n | PASSWORD [=] \'string\'\n | ROW_FORMAT [=] {DEFAULT|DYNAMIC|FIXED|COMPRESSED|REDUNDANT|COMPACT}\n | STATS_AUTO_RECALC [=] {DEFAULT|0|1}\n | STATS_PERSISTENT [=] {DEFAULT|0|1}\n | STATS_SAMPLE_PAGES [=] value\n | TABLESPACE tablespace_name [STORAGE {DISK|MEMORY}]\n | UNION [=] (tbl_name[,tbl_name]...)\n\npartition_options:\n (see CREATE TABLE options)\n\nALTER TABLE changes the structure of a table. For example, you can add\nor delete columns, create or destroy indexes, change the type of\nexisting columns, or rename columns or the table itself. You can also\nchange characteristics such as the storage engine used for the table or\nthe table comment.\n\no To use ALTER TABLE, you need ALTER, CREATE, and INSERT privileges for\n the table. Renaming a table requires ALTER and DROP on the old table,\n ALTER, CREATE, and INSERT on the new table.\n\no Following the table name, specify the alterations to be made. If none\n are given, ALTER TABLE does nothing.\n\no The syntax for many of the permissible alterations is similar to\n clauses of the CREATE TABLE statement. column_definition clauses use\n the same syntax for ADD and CHANGE as for CREATE TABLE. For more\n information, see [HELP CREATE TABLE].\n\no The word COLUMN is optional and can be omitted.\n\no Multiple ADD, ALTER, DROP, and CHANGE clauses are permitted in a\n single ALTER TABLE statement, separated by commas. This is a MySQL\n extension to standard SQL, which permits only one of each clause per\n ALTER TABLE statement. For example, to drop multiple columns in a\n single statement, do this:\n\nALTER TABLE t2 DROP COLUMN c, DROP COLUMN d;\n\no If a storage engine does not support an attempted ALTER TABLE\n operation, a warning may result. Such warnings can be displayed with\n SHOW WARNINGS. See [HELP SHOW WARNINGS]. For information on\n troubleshooting ALTER TABLE, see\n http://dev.mysql.com/doc/refman/5.7/en/alter-table-problems.html.\n\no For information about generated columns, see\n http://dev.mysql.com/doc/refman/5.7/en/alter-table-generated-columns.\n html.\n\no For usage examples, see\n http://dev.mysql.com/doc/refman/5.7/en/alter-table-examples.html.\n\no With the mysql_info() C API function, you can find out how many rows\n were copied by ALTER TABLE. See\n http://dev.mysql.com/doc/refman/5.7/en/mysql-info.html.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/alter-table.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/alter-table.html'); +INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (33,8,'ALTER TABLESPACE','Syntax:\nALTER TABLESPACE tablespace_name\n {ADD|DROP} DATAFILE \'file_name\'\n [INITIAL_SIZE [=] size]\n [WAIT]\n ENGINE [=] engine_name\n\nThis statement is used either to add a new data file, or to drop a data\nfile from a tablespace.\n\nThe ADD DATAFILE variant enables you to specify an initial size using\nan INITIAL_SIZE clause, where size is measured in bytes; the default\nvalue is 134217728 (128 MB). You may optionally follow size with a\none-letter abbreviation for an order of magnitude, similar to those\nused in my.cnf. Generally, this is one of the letters M (megabytes) or\nG (gigabytes).\n\n*Note*:\n\nAll NDB Cluster Disk Data objects share the same namespace. This means\nthat each Disk Data object must be uniquely named (and not merely each\nDisk Data object of a given type). For example, you cannot have a\ntablespace and a data file with the same name, or an undo log file and\na tablespace with the same name.\n\nOn 32-bit systems, the maximum supported value for INITIAL_SIZE is\n4294967296 (4 GB). (Bug #29186)\n\nINITIAL_SIZE is rounded, explicitly, as for CREATE TABLESPACE.\n\nOnce a data file has been created, its size cannot be changed; however,\nyou can add more data files to the tablespace using additional ALTER\nTABLESPACE ... ADD DATAFILE statements.\n\nUsing DROP DATAFILE with ALTER TABLESPACE drops the data file\n\'file_name\' from the tablespace. You cannot drop a data file from a\ntablespace which is in use by any table; in other words, the data file\nmust be empty (no extents used). See\nhttp://dev.mysql.com/doc/refman/5.7/en/mysql-cluster-disk-data-objects.\nhtml. In addition, any data file to be dropped must previously have\nbeen added to the tablespace with CREATE TABLESPACE or ALTER\nTABLESPACE.\n\nBoth ALTER TABLESPACE ... ADD DATAFILE and ALTER TABLESPACE ... DROP\nDATAFILE require an ENGINE clause which specifies the storage engine\nused by the tablespace. Currently, the only accepted values for\nengine_name are NDB and NDBCLUSTER.\n\nWAIT is parsed but otherwise ignored, and so has no effect in MySQL\n5.7. It is intended for future expansion.\n\nWhen ALTER TABLESPACE ... ADD DATAFILE is used with ENGINE = NDB, a\ndata file is created on each Cluster data node. You can verify that the\ndata files were created and obtain information about them by querying\nthe INFORMATION_SCHEMA.FILES table. For example, the following query\nshows all data files belonging to the tablespace named newts:\n\nmysql> SELECT LOGFILE_GROUP_NAME, FILE_NAME, EXTRA\n -> FROM INFORMATION_SCHEMA.FILES\n -> WHERE TABLESPACE_NAME = \'newts\' AND FILE_TYPE = \'DATAFILE\';\n+--------------------+--------------+----------------+\n| LOGFILE_GROUP_NAME | FILE_NAME | EXTRA |\n+--------------------+--------------+----------------+\n| lg_3 | newdata.dat | CLUSTER_NODE=3 |\n| lg_3 | newdata.dat | CLUSTER_NODE=4 |\n| lg_3 | newdata2.dat | CLUSTER_NODE=3 |\n| lg_3 | newdata2.dat | CLUSTER_NODE=4 |\n+--------------------+--------------+----------------+\n2 rows in set (0.03 sec)\n\nSee http://dev.mysql.com/doc/refman/5.7/en/files-table.html.\n\nALTER TABLESPACE is useful only with Disk Data storage for NDB Cluster.\nSee\nhttp://dev.mysql.com/doc/refman/5.7/en/mysql-cluster-disk-data.html.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/alter-tablespace.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/alter-tablespace.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (34,1,'ALTER USER','Syntax:\nALTER USER [IF EXISTS]\n user [auth_option] [, user [auth_option]] ...\n [REQUIRE {NONE | tls_option [[AND] tls_option] ...}]\n [WITH resource_option [resource_option] ...]\n [password_option | lock_option] ...\n\nALTER USER [IF EXISTS]\n USER() IDENTIFIED BY \'auth_string\'\n\nuser:\n (see )\n\nauth_option: {\n IDENTIFIED BY \'auth_string\'\n | IDENTIFIED WITH auth_plugin\n | IDENTIFIED WITH auth_plugin BY \'auth_string\'\n | IDENTIFIED WITH auth_plugin AS \'hash_string\'\n}\n\ntls_option: {\n SSL\n | X509\n | CIPHER \'cipher\'\n | ISSUER \'issuer\'\n | SUBJECT \'subject\'\n}\n\nresource_option: {\n MAX_QUERIES_PER_HOUR count\n | MAX_UPDATES_PER_HOUR count\n | MAX_CONNECTIONS_PER_HOUR count\n | MAX_USER_CONNECTIONS count\n}\n\npassword_option: {\n PASSWORD EXPIRE\n | PASSWORD EXPIRE DEFAULT\n | PASSWORD EXPIRE NEVER\n | PASSWORD EXPIRE INTERVAL N DAY\n}\n\nlock_option: {\n ACCOUNT LOCK\n | ACCOUNT UNLOCK\n}\n\nThe ALTER USER statement modifies MySQL accounts. It enables\nauthentication, SSL/TLS, resource-limit, and password-management\nproperties to be modified for existing accounts. It can also be used to\nlock and unlock accounts.\n\nTo use ALTER USER, you must have the global CREATE USER privilege or\nthe UPDATE privilege for the mysql system database. When the read_only\nsystem variable is enabled, ALTER USER additionally requires the SUPER\nprivilege.\n\nBy default, an error occurs if you try to modify a user that does not\nexist. If the IF EXISTS clause is given, the statement produces a\nwarning for each named user that does not exist, rather than an error.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/alter-user.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/alter-user.html'); -INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (35,8,'ALTER VIEW','Syntax:\nALTER\n [ALGORITHM = {UNDEFINED | MERGE | TEMPTABLE}]\n [DEFINER = { user | CURRENT_USER }]\n [SQL SECURITY { DEFINER | INVOKER }]\n VIEW view_name [(column_list)]\n AS select_statement\n [WITH [CASCADED | LOCAL] CHECK OPTION]\n\nThis statement changes the definition of a view, which must exist. The\nsyntax is similar to that for CREATE VIEW see [HELP CREATE VIEW]). This\nstatement requires the CREATE VIEW and DROP privileges for the view,\nand some privilege for each column referred to in the SELECT statement.\nALTER VIEW is permitted only to the definer or users with the SUPER\nprivilege.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/alter-view.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/alter-view.html'); +INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (35,8,'ALTER VIEW','Syntax:\nALTER\n [ALGORITHM = {UNDEFINED | MERGE | TEMPTABLE}]\n [DEFINER = user]\n [SQL SECURITY { DEFINER | INVOKER }]\n VIEW view_name [(column_list)]\n AS select_statement\n [WITH [CASCADED | LOCAL] CHECK OPTION]\n\nThis statement changes the definition of a view, which must exist. The\nsyntax is similar to that for CREATE VIEW see [HELP CREATE VIEW]). This\nstatement requires the CREATE VIEW and DROP privileges for the view,\nand some privilege for each column referred to in the SELECT statement.\nALTER VIEW is permitted only to the definer or users with the SUPER\nprivilege.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/alter-view.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/alter-view.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (36,36,'ANALYZE TABLE','Syntax:\nANALYZE [NO_WRITE_TO_BINLOG | LOCAL]\n TABLE tbl_name [, tbl_name] ...\n\nANALYZE TABLE performs a key distribution analysis and stores the\ndistribution for the named table or tables. For MyISAM tables, this\nstatement is equivalent to using myisamchk --analyze.\n\nThis statement requires SELECT and INSERT privileges for the table.\n\nANALYZE TABLE works with InnoDB, NDB, and MyISAM tables. It does not\nwork with views.\n\nANALYZE TABLE is supported for partitioned tables, and you can use\nALTER TABLE ... ANALYZE PARTITION to analyze one or more partitions;\nfor more information, see [HELP ALTER TABLE], and\nhttp://dev.mysql.com/doc/refman/5.7/en/partitioning-maintenance.html.\n\nDuring the analysis, the table is locked with a read lock for InnoDB\nand MyISAM.\n\nBy default, the server writes ANALYZE TABLE statements to the binary\nlog so that they replicate to replication slaves. To suppress logging,\nspecify the optional NO_WRITE_TO_BINLOG keyword or its alias LOCAL.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/analyze-table.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/analyze-table.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (37,26,'AND','Syntax:\nAND, &&\n\nLogical AND. Evaluates to 1 if all operands are nonzero and not NULL,\nto 0 if one or more operands are 0, otherwise NULL is returned.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/logical-operators.html\n\n','mysql> SELECT 1 AND 1;\n -> 1\nmysql> SELECT 1 AND 0;\n -> 0\nmysql> SELECT 1 AND NULL;\n -> NULL\nmysql> SELECT 0 AND NULL;\n -> 0\nmysql> SELECT NULL AND 0;\n -> 0\n','http://dev.mysql.com/doc/refman/5.7/en/logical-operators.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (38,28,'ANY_VALUE','ANY_VALUE(arg)\n\nThis function is useful for GROUP BY queries when the\nONLY_FULL_GROUP_BY SQL mode is enabled, for cases when MySQL rejects a\nquery that you know is valid for reasons that MySQL cannot determine.\nThe function return value and type are the same as the return value and\ntype of its argument, but the function result is not checked for the\nONLY_FULL_GROUP_BY SQL mode.\n\nFor example, if name is a nonindexed column, the following query fails\nwith ONLY_FULL_GROUP_BY enabled:\n\nmysql> SELECT name, address, MAX(age) FROM t GROUP BY name;\nERROR 1055 (42000): Expression #2 of SELECT list is not in GROUP\nBY clause and contains nonaggregated column \'mydb.t.address\' which\nis not functionally dependent on columns in GROUP BY clause; this\nis incompatible with sql_mode=only_full_group_by\n\nThe failure occurs because address is a nonaggregated column that is\nneither named among GROUP BY columns nor functionally dependent on\nthem. As a result, the address value for rows within each name group is\nnondeterministic. There are multiple ways to cause MySQL to accept the\nquery:\n\no Alter the table to make name a primary key or a unique NOT NULL\n column. This enables MySQL to determine that address is functionally\n dependent on name; that is, address is uniquely determined by name.\n (This technique is inapplicable if NULL must be permitted as a valid\n name value.)\n\no Use ANY_VALUE() to refer to address:\n\nSELECT name, ANY_VALUE(address), MAX(age) FROM t GROUP BY name;\n\n In this case, MySQL ignores the nondeterminism of address values\n within each name group and accepts the query. This may be useful if\n you simply do not care which value of a nonaggregated column is\n chosen for each group. ANY_VALUE() is not an aggregate function,\n unlike functions such as SUM() or COUNT(). It simply acts to suppress\n the test for nondeterminism.\n\no Disable ONLY_FULL_GROUP_BY. This is equivalent to using ANY_VALUE()\n with ONLY_FULL_GROUP_BY enabled, as described in the previous item.\n\nANY_VALUE() is also useful if functional dependence exists between\ncolumns but MySQL cannot determine it. The following query is valid\nbecause age is functionally dependent on the grouping column age-1, but\nMySQL cannot tell that and rejects the query with ONLY_FULL_GROUP_BY\nenabled:\n\nSELECT age FROM t GROUP BY age-1;\n\nTo cause MySQL to accept the query, use ANY_VALUE():\n\nSELECT ANY_VALUE(age) FROM t GROUP BY age-1;\n\nANY_VALUE() can be used for queries that refer to aggregate functions\nin the absence of a GROUP BY clause:\n\nmysql> SELECT name, MAX(age) FROM t;\nERROR 1140 (42000): In aggregated query without GROUP BY, expression\n#1 of SELECT list contains nonaggregated column \'mydb.t.name\'; this\nis incompatible with sql_mode=only_full_group_by\n\nWithout GROUP BY, there is a single group and it is nondeterministic\nwhich name value to choose for the group. ANY_VALUE() tells MySQL to\naccept the query:\n\nSELECT ANY_VALUE(name), MAX(age) FROM t;\n\nIt may be that, due to some property of a given data set, you know that\na selected nonaggregated column is effectively functionally dependent\non a GROUP BY column. For example, an application may enforce\nuniqueness of one column with respect to another. In this case, using\nANY_VALUE() for the effectively functionally dependent column may make\nsense.\n\nFor additional discussion, see\nhttp://dev.mysql.com/doc/refman/5.7/en/group-by-handling.html.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html'); @@ -155,13 +155,13 @@ INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (72,20,'BUFFER','Buffer(g, d[, strategy1[, strategy2[, strategy3]]])\n\nST_Buffer() and Buffer() are synonyms. For more information, see the\ndescription of ST_Buffer().\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/spatial-operator-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/spatial-operator-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (73,2,'CACHE INDEX','Syntax:\nCACHE INDEX\n tbl_index_list [, tbl_index_list] ...\n [PARTITION (partition_list | ALL)]\n IN key_cache_name\n\ntbl_index_list:\n tbl_name [[INDEX|KEY] (index_name[, index_name] ...)]\n\npartition_list:\n partition_name[, partition_name][, ...]\n\nThe CACHE INDEX statement assigns table indexes to a specific key\ncache. It is used only for MyISAM tables. After the indexes have been\nassigned, they can be preloaded into the cache if desired with LOAD\nINDEX INTO CACHE.\n\nThe following statement assigns indexes from the tables t1, t2, and t3\nto the key cache named hot_cache:\n\nmysql> CACHE INDEX t1, t2, t3 IN hot_cache;\n+---------+--------------------+----------+----------+\n| Table | Op | Msg_type | Msg_text |\n+---------+--------------------+----------+----------+\n| test.t1 | assign_to_keycache | status | OK |\n| test.t2 | assign_to_keycache | status | OK |\n| test.t3 | assign_to_keycache | status | OK |\n+---------+--------------------+----------+----------+\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/cache-index.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/cache-index.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (74,9,'CALL','Syntax:\nCALL sp_name([parameter[,...]])\nCALL sp_name[()]\n\nThe CALL statement invokes a stored procedure that was defined\npreviously with CREATE PROCEDURE.\n\nStored procedures that take no arguments can be invoked without\nparentheses. That is, CALL p() and CALL p are equivalent.\n\nCALL can pass back values to its caller using parameters that are\ndeclared as OUT or INOUT parameters. When the procedure returns, a\nclient program can also obtain the number of rows affected for the\nfinal statement executed within the routine: At the SQL level, call the\nROW_COUNT() function; from the C API, call the mysql_affected_rows()\nfunction.\n\nFor information about the effect of unhandled conditions on procedure\nparameters, see\nhttp://dev.mysql.com/doc/refman/5.7/en/conditions-and-parameters.html.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/call.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/call.html'); -INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (75,7,'CASE OPERATOR','Syntax:\nCASE value WHEN [compare_value] THEN result [WHEN [compare_value] THEN\nresult ...] [ELSE result] END\n\nCASE WHEN [condition] THEN result [WHEN [condition] THEN result ...]\n[ELSE result] END\n\nThe first CASE syntax returns the result for the first\nvalue=compare_value comparison that is true. The second syntax returns\nthe result for the first condition that is true. If no comparison or\ncondition is true, the result after ELSE is returned, or NULL if there\nis no ELSE part.\n\n*Note*:\n\nThe syntax of the CASE expression described here differs slightly from\nthat of the SQL CASE statement described in [HELP CASE statement], for\nuse inside stored programs. The CASE statement cannot have an ELSE NULL\nclause, and it is terminated with END CASE instead of END.\n\nThe return type of a CASE expression result is the aggregated type of\nall result values.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/control-flow-functions.html\n\n','mysql> SELECT CASE 1 WHEN 1 THEN \'one\'\n -> WHEN 2 THEN \'two\' ELSE \'more\' END;\n -> \'one\'\nmysql> SELECT CASE WHEN 1>0 THEN \'true\' ELSE \'false\' END;\n -> \'true\'\nmysql> SELECT CASE BINARY \'B\'\n -> WHEN \'a\' THEN 1 WHEN \'b\' THEN 2 END;\n -> NULL\n','http://dev.mysql.com/doc/refman/5.7/en/control-flow-functions.html'); -INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (76,5,'CASE STATEMENT','Syntax:\nCASE case_value\n WHEN when_value THEN statement_list\n [WHEN when_value THEN statement_list] ...\n [ELSE statement_list]\nEND CASE\n\nOr:\n\nCASE\n WHEN search_condition THEN statement_list\n [WHEN search_condition THEN statement_list] ...\n [ELSE statement_list]\nEND CASE\n\nThe CASE statement for stored programs implements a complex conditional\nconstruct.\n\n*Note*:\n\nThere is also a CASE expression, which differs from the CASE statement\ndescribed here. See\nhttp://dev.mysql.com/doc/refman/5.7/en/control-flow-functions.html. The\nCASE statement cannot have an ELSE NULL clause, and it is terminated\nwith END CASE instead of END.\n\nFor the first syntax, case_value is an expression. This value is\ncompared to the when_value expression in each WHEN clause until one of\nthem is equal. When an equal when_value is found, the corresponding\nTHEN clause statement_list executes. If no when_value is equal, the\nELSE clause statement_list executes, if there is one.\n\nThis syntax cannot be used to test for equality with NULL because NULL\n= NULL is false. See\nhttp://dev.mysql.com/doc/refman/5.7/en/working-with-null.html.\n\nFor the second syntax, each WHEN clause search_condition expression is\nevaluated until one is true, at which point its corresponding THEN\nclause statement_list executes. If no search_condition is equal, the\nELSE clause statement_list executes, if there is one.\n\nIf no when_value or search_condition matches the value tested and the\nCASE statement contains no ELSE clause, a Case not found for CASE\nstatement error results.\n\nEach statement_list consists of one or more SQL statements; an empty\nstatement_list is not permitted.\n\nTo handle situations where no value is matched by any WHEN clause, use\nan ELSE containing an empty BEGIN ... END block, as shown in this\nexample. (The indentation used here in the ELSE clause is for purposes\nof clarity only, and is not otherwise significant.)\n\nDELIMITER |\n\nCREATE PROCEDURE p()\n BEGIN\n DECLARE v INT DEFAULT 1;\n\n CASE v\n WHEN 2 THEN SELECT v;\n WHEN 3 THEN SELECT 0;\n ELSE\n BEGIN\n END;\n END CASE;\n END;\n |\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/case.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/case.html'); +INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (75,7,'CASE OPERATOR','Syntax:\nCASE value WHEN [compare_value] THEN result [WHEN [compare_value] THEN\nresult ...] [ELSE result] END\n\nCASE WHEN [condition] THEN result [WHEN [condition] THEN result ...]\n[ELSE result] END\n\nThe first CASE syntax returns the result for the first\nvalue=compare_value comparison that is true. The second syntax returns\nthe result for the first condition that is true. If no comparison or\ncondition is true, the result after ELSE is returned, or NULL if there\nis no ELSE part.\n\n*Note*:\n\nThe syntax of the CASE expr described here differs slightly from that\nof the SQL CASE statement described in [HELP CASE statement], for use\ninside stored programs. The CASE statement cannot have an ELSE NULL\nclause, and it is terminated with END CASE instead of END.\n\nThe return type of a CASE expression result is the aggregated type of\nall result values.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/control-flow-functions.html\n\n','mysql> SELECT CASE 1 WHEN 1 THEN \'one\'\n -> WHEN 2 THEN \'two\' ELSE \'more\' END;\n -> \'one\'\nmysql> SELECT CASE WHEN 1>0 THEN \'true\' ELSE \'false\' END;\n -> \'true\'\nmysql> SELECT CASE BINARY \'B\'\n -> WHEN \'a\' THEN 1 WHEN \'b\' THEN 2 END;\n -> NULL\n','http://dev.mysql.com/doc/refman/5.7/en/control-flow-functions.html'); +INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (76,5,'CASE STATEMENT','Syntax:\nCASE case_value\n WHEN when_value THEN statement_list\n [WHEN when_value THEN statement_list] ...\n [ELSE statement_list]\nEND CASE\n\nOr:\n\nCASE\n WHEN search_condition THEN statement_list\n [WHEN search_condition THEN statement_list] ...\n [ELSE statement_list]\nEND CASE\n\nThe CASE statement for stored programs implements a complex conditional\nconstruct.\n\n*Note*:\n\nThere is also a CASE expr, which differs from the CASE statement\ndescribed here. See\nhttp://dev.mysql.com/doc/refman/5.7/en/control-flow-functions.html. The\nCASE statement cannot have an ELSE NULL clause, and it is terminated\nwith END CASE instead of END.\n\nFor the first syntax, case_value is an expression. This value is\ncompared to the when_value expression in each WHEN clause until one of\nthem is equal. When an equal when_value is found, the corresponding\nTHEN clause statement_list executes. If no when_value is equal, the\nELSE clause statement_list executes, if there is one.\n\nThis syntax cannot be used to test for equality with NULL because NULL\n= NULL is false. See\nhttp://dev.mysql.com/doc/refman/5.7/en/working-with-null.html.\n\nFor the second syntax, each WHEN clause search_condition expression is\nevaluated until one is true, at which point its corresponding THEN\nclause statement_list executes. If no search_condition is equal, the\nELSE clause statement_list executes, if there is one.\n\nIf no when_value or search_condition matches the value tested and the\nCASE statement contains no ELSE clause, a Case not found for CASE\nstatement error results.\n\nEach statement_list consists of one or more SQL statements; an empty\nstatement_list is not permitted.\n\nTo handle situations where no value is matched by any WHEN clause, use\nan ELSE containing an empty BEGIN ... END block, as shown in this\nexample. (The indentation used here in the ELSE clause is for purposes\nof clarity only, and is not otherwise significant.)\n\nDELIMITER |\n\nCREATE PROCEDURE p()\n BEGIN\n DECLARE v INT DEFAULT 1;\n\n CASE v\n WHEN 2 THEN SELECT v;\n WHEN 3 THEN SELECT 0;\n ELSE\n BEGIN\n END;\n END CASE;\n END;\n |\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/case.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/case.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (77,35,'CAST','Syntax:\nCAST(expr AS type)\n\nThe CAST() function takes an expression of any type and produces a\nresult value of the specified type, similar to CONVERT(). For more\ninformation, see the description of CONVERT().\n\nCAST() is standard SQL syntax.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/cast-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/cast-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (78,29,'CEIL','Syntax:\nCEIL(X)\n\nCEIL() is a synonym for CEILING().\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (79,29,'CEILING','Syntax:\nCEILING(X)\n\nReturns the smallest integer value not less than X.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT CEILING(1.23);\n -> 2\nmysql> SELECT CEILING(-1.23);\n -> -1\n','http://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (80,32,'CENTROID','Centroid({poly|mpoly})\n\nST_Centroid() and Centroid() are synonyms. For more information, see\nthe description of ST_Centroid().\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/gis-polygon-property-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/gis-polygon-property-functions.html'); -INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (81,37,'CHANGE MASTER TO','Syntax:\nCHANGE MASTER TO option [, option] ... [ channel_option ]\n\noption:\n MASTER_BIND = \'interface_name\'\n | MASTER_HOST = \'host_name\'\n | MASTER_USER = \'user_name\'\n | MASTER_PASSWORD = \'password\'\n | MASTER_PORT = port_num\n | MASTER_CONNECT_RETRY = interval\n | MASTER_RETRY_COUNT = count\n | MASTER_DELAY = interval\n | MASTER_HEARTBEAT_PERIOD = interval\n | MASTER_LOG_FILE = \'master_log_name\'\n | MASTER_LOG_POS = master_log_pos\n | MASTER_AUTO_POSITION = {0|1}\n | RELAY_LOG_FILE = \'relay_log_name\'\n | RELAY_LOG_POS = relay_log_pos\n | MASTER_SSL = {0|1}\n | MASTER_SSL_CA = \'ca_file_name\'\n | MASTER_SSL_CAPATH = \'ca_directory_name\'\n | MASTER_SSL_CERT = \'cert_file_name\'\n | MASTER_SSL_CRL = \'crl_file_name\'\n | MASTER_SSL_CRLPATH = \'crl_directory_name\'\n | MASTER_SSL_KEY = \'key_file_name\'\n | MASTER_SSL_CIPHER = \'cipher_list\'\n | MASTER_SSL_VERIFY_SERVER_CERT = {0|1}\n | MASTER_TLS_VERSION = \'protocol_list\'\n | IGNORE_SERVER_IDS = (server_id_list)\n\nchannel_option:\n FOR CHANNEL channel\n\nserver_id_list:\n [server_id [, server_id] ... ]\n\nCHANGE MASTER TO changes the parameters that the slave server uses for\nconnecting to the master server, for reading the master binary log, and\nreading the slave relay log. It also updates the contents of the master\ninfo and relay log info repositories (see\nhttp://dev.mysql.com/doc/refman/5.7/en/slave-logs.html). CHANGE MASTER\nTO requires the SUPER privilege.\n\nPrior to MySQL 5.7.4, the slave replication threads must be stopped,\nusing STOP SLAVE if necessary, before issuing this statement. In MySQL\n5.7.4 and later, you can issue CHANGE MASTER TO statements on a running\nslave without doing this, depending on the states of the slave SQL\nthread and slave I/O thread. The rules governing such use are provided\nlater in this section.\n\nWhen using a multithreaded slave (in other words slave_parallel_workers\nis greater than 0), stopping the slave can cause "gaps" in the sequence\nof transactions that have been executed from the relay log, regardless\nof whether the slave was stopped intentionally or otherwise. When such\ngaps exist, issuing CHANGE MASTER TO fails. The solution in this\nsituation is to issue START SLAVE UNTIL SQL_AFTER_MTS_GAPS which\nensures that the gaps are closed.\n\nThe optional FOR CHANNEL channel clause enables you to name which\nreplication channel the statement applies to. Providing a FOR CHANNEL\nchannel clause applies the CHANGE MASTER TO statement to a specific\nreplication channel, and is used to add a new channel or modify an\nexisting channel. For example, to add a new channel called channel2:\n\nCHANGE MASTER TO MASTER_HOST=host1, MASTER_PORT=3002 FOR CHANNEL \'channel2\'\n\nIf no clause is named and no extra channels exist, the statement\napplies to the default channel.\n\nWhen using multiple replication channels, if a CHANGE MASTER TO\nstatement does not name a channel using a FOR CHANNEL channel clause,\nan error occurs. See\nhttp://dev.mysql.com/doc/refman/5.7/en/replication-channels.html for\nmore information.\n\nOptions not specified retain their value, except as indicated in the\nfollowing discussion. Thus, in most cases, there is no need to specify\noptions that do not change. For example, if the password to connect to\nyour MySQL master has changed, issue this statement to tell the slave\nabout the new password:\n\nCHANGE MASTER TO MASTER_PASSWORD=\'new3cret\';\n\nMASTER_HOST, MASTER_USER, MASTER_PASSWORD, and MASTER_PORT provide\ninformation to the slave about how to connect to its master:\n\no MASTER_HOST and MASTER_PORT are the host name (or IP address) of the\n master host and its TCP/IP port.\n\n *Note*:\n\n Replication cannot use Unix socket files. You must be able to connect\n to the master MySQL server using TCP/IP.\n\n If you specify the MASTER_HOST or MASTER_PORT option, the slave\n assumes that the master server is different from before (even if the\n option value is the same as its current value.) In this case, the old\n values for the master binary log file name and position are\n considered no longer applicable, so if you do not specify\n MASTER_LOG_FILE and MASTER_LOG_POS in the statement,\n MASTER_LOG_FILE=\'\' and MASTER_LOG_POS=4 are silently appended to it.\n\n Setting MASTER_HOST=\'\' (that is, setting its value explicitly to an\n empty string) is not the same as not setting MASTER_HOST at all.\n Beginning with MySQL 5.5, trying to set MASTER_HOST to an empty\n string fails with an error. Previously, setting MASTER_HOST to an\n empty string caused START SLAVE subsequently to fail. (Bug #28796)\n\n Values used for MASTER_HOST and other CHANGE MASTER TO options are\n checked for linefeed (\\n or 0x0A) characters; the presence of such\n characters in these values causes the statement to fail with\n ER_MASTER_INFO. (Bug #11758581, Bug #50801)\n\no MASTER_USER and MASTER_PASSWORD are the user name and password of the\n account to use for connecting to the master.\n\n MASTER_USER cannot be made empty; setting MASTER_USER = \'\' or leaving\n it unset when setting a value for MASTER_PASSWORD causes an error\n (Bug #13427949).\n\n The password used for a MySQL Replication slave account in a CHANGE\n MASTER TO statement is limited to 32 characters in length; prior to\n MySQL 5.7.5, if the password was longer, the statement succeeded, but\n any excess characters were silently truncated. In MySQL 5.7.5 and\n later, trying to use a password of more than 32 characters causes\n CHANGE MASTER TO to fail. (Bug #11752299, Bug #43439)\n\n The text of a running CHANGE MASTER TO statement, including values\n for MASTER_USER and MASTER_PASSWORD, can be seen in the output of a\n concurrent SHOW PROCESSLIST statement. (The complete text of a START\n SLAVE statement is also visible to SHOW PROCESSLIST.)\n\nThe MASTER_SSL_xxx options, and the MASTER_TLS_VERSION option, specify\nhow the slave uses encryption and ciphers to secure the replication\nconnection. These options can be changed even on slaves that are\ncompiled without SSL support. They are saved to the master info\nrepository, but are ignored if the slave does not have SSL support\nenabled. The MASTER_SSL_xxx options perform the same functions as the\n--ssl-xxx options described in\nhttp://dev.mysql.com/doc/refman/5.7/en/encrypted-connection-options.htm\nl. The correspondence between the two sets of options, and the use of\nthe MASTER_SSL_xxx and MASTER_TLS_VERSION options to set up a secure\nconnection, is explained in\nhttp://dev.mysql.com/doc/refman/5.7/en/replication-solutions-encrypted-\nconnections.html.\n\nAs of MySQL 5.7.3, setting MASTER_SSL=1 means that the slave connection\nto the master must use SSL, or the connection attempt fails. Before\n5.7.3, the use of an SSL connection by the slave was not enforced with\nMASTER_SSL=1. This is analogous to the client-side meaning of the --ssl\ncommand-line option; see\nhttp://dev.mysql.com/doc/refman/5.7/en/encrypted-connection-options.htm\nl.\n\nThe MASTER_HEARTBEAT_PERIOD, MASTER_CONNECT_RETRY, and\nMASTER_RETRY_COUNT options control how the slave recognizes that the\nconnection to the master has been lost and makes attempts to reconnect.\n\no The slave_net_timeout system variable specifies the number of seconds\n that the slave waits for either more data or a heartbeat signal from\n the master, before the slave considers the connection broken, aborts\n the read, and tries to reconnect. The default value is 60 seconds\n (one minute). Prior to MySQL 5.7.7, the default was 3600 seconds (one\n hour).\n\no The heartbeat interval, which stops the connection timeout occurring\n in the absence of data if the connection is still good, is controlled\n by the MASTER_HEARTBEAT_PERIOD option. A heartbeat signal is sent to\n the slave after that number of seconds, and the waiting period is\n reset whenever the master\'s binary log is updated with an event.\n Heartbeats are therefore sent by the master only if there are no\n unsent events in the binary log file for a period longer than this.\n The heartbeat interval interval is a decimal value having the range 0\n to 4294967 seconds and a resolution in milliseconds; the smallest\n nonzero value is 0.001. Setting interval to 0 disables heartbeats\n altogether. The heartbeat interval defaults to half the value of the\n slave_net_timeout system variable. It is recorded in the master info\n log and shown in the replication_connection_configuration Performance\n Schema table. Issuing RESET SLAVE resets the heartbeat interval to\n the default value.\n\no Prior to MySQL 5.7.4, not including MASTER_HEARTBEAT_PERIOD caused\n CHANGE MASTER TO to reset the heartbeat interval to the default (half\n the value of the slave_net_timeout system variable), and\n Slave_received_heartbeats to 0. The heartbeat interval is now not\n reset except by RESET SLAVE. (Bug #18185490)\n\no Note that a change to the value or default setting of\n slave_net_timeout does not automatically change the heartbeat\n interval, whether that has been set explicitly or is using a\n previously calculated default. A warning is issued if you set\n @@GLOBAL.slave_net_timeout to a value less than that of the current\n heartbeat interval. If slave_net_timeout is changed, you must also\n issue CHANGE MASTER TO to adjust the heartbeat interval to an\n appropriate value so that the heartbeat signal occurs before the\n connection timeout. If you do not do this, the heartbeat signal has\n no effect, and if no data is received from the master, the slave can\n make repeated reconnection attempts, creating zombie dump threads.\n\no If the slave does need to reconnect, the first retry occurs\n immediately after the timeout. MASTER_CONNECT_RETRY specifies the\n interval between reconnection attempts, and MASTER_RETRY_COUNT limits\n the number of reconnection attempts. If both the default settings are\n used, the slave waits 60 seconds between reconnection attempts\n (MASTER_CONNECT_RETRY=60), and keeps attempting to reconnect at this\n rate for 24 hours (MASTER_RETRY_COUNT=86400). These values are\n recorded in the master info log and shown in the\n replication_connection_configuration Performance Schema table.\n MASTER_RETRY_COUNT supersedes the --master-retry-count server startup\n option.\n\nMASTER_DELAY specifies how many seconds behind the master the slave\nmust lag. An event received from the master is not executed until at\nleast interval seconds later than its execution on the master. The\ndefault is 0. An error occurs if interval is not a nonnegative integer\nin the range from 0 to 231−1. For more information, see\nhttp://dev.mysql.com/doc/refman/5.7/en/replication-delayed.html.\n\nFrom MySQL 5.7, a CHANGE MASTER TO statement employing the MASTER_DELAY\noption can be executed on a running slave when the slave SQL thread is\nstopped.\n\nMASTER_BIND is for use on replication slaves having multiple network\ninterfaces, and determines which of the slave\'s network interfaces is\nchosen for connecting to the master.\n\nThe address configured with this option, if any, can be seen in the\nMaster_Bind column of the output from SHOW SLAVE STATUS. If you are\nusing slave status log tables (server started with\n--master-info-repository=TABLE), the value can also be seen as the\nMaster_bind column of the mysql.slave_master_info table.\n\nThe ability to bind a replication slave to a specific network interface\nis also supported by NDB Cluster.\n\nMASTER_LOG_FILE and MASTER_LOG_POS are the coordinates at which the\nslave I/O thread should begin reading from the master the next time the\nthread starts. RELAY_LOG_FILE and RELAY_LOG_POS are the coordinates at\nwhich the slave SQL thread should begin reading from the relay log the\nnext time the thread starts. If you specify either of MASTER_LOG_FILE\nor MASTER_LOG_POS, you cannot specify RELAY_LOG_FILE or RELAY_LOG_POS.\nIf you specify either of MASTER_LOG_FILE or MASTER_LOG_POS, you also\ncannot specify MASTER_AUTO_POSITION = 1 (described later in this\nsection). If neither of MASTER_LOG_FILE or MASTER_LOG_POS is specified,\nthe slave uses the last coordinates of the slave SQL thread before\nCHANGE MASTER TO was issued. This ensures that there is no\ndiscontinuity in replication, even if the slave SQL thread was late\ncompared to the slave I/O thread, when you merely want to change, say,\nthe password to use.\n\nFrom MySQL 5.7, a CHANGE MASTER TO statement employing RELAY_LOG_FILE,\nRELAY_LOG_POS, or both options can be executed on a running slave when\nthe slave SQL thread is stopped. Prior to MySQL 5.7.4, CHANGE MASTER TO\ndeletes all relay log files and starts a new one, unless you specify\nRELAY_LOG_FILE or RELAY_LOG_POS. In that case, relay log files are\nkept; the relay_log_purge global variable is set silently to 0. In\nMySQL 5.7.4 and later, relay logs are preserved if at least one of the\nslave SQL thread and the slave I/O thread is running; if both threads\nare stopped, all relay log files are deleted unless at least one of\nRELAY_LOG_FILE or RELAY_LOG_POS is specified.\n\nRELAY_LOG_FILE can use either an absolute or relative path, and uses\nthe same base name as MASTER_LOG_FILE. (Bug #12190)\n\nWhen MASTER_AUTO_POSITION = 1 is used with CHANGE MASTER TO, the slave\nattempts to connect to the master using the GTID-based replication\nprotocol. From MySQL 5.7, this option can be employed by CHANGE MASTER\nTO only if both the slave SQL and slave I/O threads are stopped. Both\nthe slave and the master must have GTIDs enabled (GTID_MODE=ON,\nON_PERMISSIVE, or OFF_PERMISSIVE on the slave, and GTID_MODE=ON on the\nmaster). Auto-positioning is used for the connection, so the\ncoordinates represented by MASTER_LOG_FILE and MASTER_LOG_POS are not\nused, and the use of either or both of these options together with\nMASTER_AUTO_POSITION = 1 causes an error. If multi-source replication\nis enabled on the slave, you need to set the MASTER_AUTO_POSITION = 1\noption for each applicable replication channel.\n\nWith MASTER_AUTO_POSITION = 1 set, in the initial connection handshake,\nthe slave sends a GTID set containing the transactions that it has\nalready received, committed, or both. The master responds by sending\nall transactions recorded in its binary log whose GTID is not included\nin the GTID set sent by the slave. This exchange ensures that the\nmaster only sends the transactions with a GTID that the slave has not\nalready recorded or committed. If the slave receives transactions from\nmore than one master, as in the case of a diamond topology, the\nauto-skip function ensures that the transactions are not applied twice.\nFor details of how the GTID set sent by the slave is computed, see\nhttp://dev.mysql.com/doc/refman/5.7/en/replication-gtids-auto-positioni\nng.html.\n\nIf any of the transactions that should be sent by the master have been\npurged from the master\'s binary log, or added to the set of GTIDs in\nthe gtid_purged system variable by another method, the master sends the\nerror ER_MASTER_HAS_PURGED_REQUIRED_GTIDS to the slave, and replication\ndoes not start. Also, if during the exchange of transactions it is\nfound that the slave has recorded or committed transactions with the\nmaster\'s UUID in the GTID, but the master itself has not committed\nthem, the master sends the error ER_SLAVE_HAS_MORE_GTIDS_THAN_MASTER to\nthe slave and replication does not start. For information on how to\nhandle these situations, see\nhttp://dev.mysql.com/doc/refman/5.7/en/replication-gtids-auto-positioni\nng.html.\n\nYou can see whether replication is running with auto-positioning\nenabled by checking the Performance Schema\nreplication_connection_status table or the output of SHOW SLAVE STATUS.\nDisabling the MASTER_AUTO_POSITION option again makes the slave revert\nto file-based replication, in which case you must also specify one or\nboth of the MASTER_LOG_FILE or MASTER_LOG_POS options.\n\nIGNORE_SERVER_IDS takes a comma-separated list of 0 or more server IDs.\nEvents originating from the corresponding servers are ignored, with the\nexception of log rotation and deletion events, which are still recorded\nin the relay log.\n\nIn circular replication, the originating server normally acts as the\nterminator of its own events, so that they are not applied more than\nonce. Thus, this option is useful in circular replication when one of\nthe servers in the circle is removed. Suppose that you have a circular\nreplication setup with 4 servers, having server IDs 1, 2, 3, and 4, and\nserver 3 fails. When bridging the gap by starting replication from\nserver 2 to server 4, you can include IGNORE_SERVER_IDS = (3) in the\nCHANGE MASTER TO statement that you issue on server 4 to tell it to use\nserver 2 as its master instead of server 3. Doing so causes it to\nignore and not to propagate any statements that originated with the\nserver that is no longer in use.\n\nIf a CHANGE MASTER TO statement is issued without any IGNORE_SERVER_IDS\noption, any existing list is preserved. To clear the list of ignored\nservers, it is necessary to use the option with an empty list:\n\nCHANGE MASTER TO IGNORE_SERVER_IDS = ();\n\nPrior to MySQL 5.7.5, RESET SLAVE ALL has no effect on the server ID\nlist. In MySQL 5.7.5 and later, RESET SLAVE ALL clears\nIGNORE_SERVER_IDS. (Bug #18816897)\n\nIf IGNORE_SERVER_IDS contains the server\'s own ID and the server was\nstarted with the --replicate-same-server-id option enabled, an error\nresults.\n\nThe master info repository and the output of SHOW SLAVE STATUS provide\nthe list of servers that are currently ignored. For more information,\nsee http://dev.mysql.com/doc/refman/5.7/en/slave-logs-status.html, and\n[HELP SHOW SLAVE STATUS].\n\nInvoking CHANGE MASTER TO causes the previous values for MASTER_HOST,\nMASTER_PORT, MASTER_LOG_FILE, and MASTER_LOG_POS to be written to the\nerror log, along with other information about the slave\'s state prior\nto execution.\n\nCHANGE MASTER TO causes an implicit commit of an ongoing transaction.\nSee http://dev.mysql.com/doc/refman/5.7/en/implicit-commit.html.\n\nIn MySQL 5.7.4 and later, the strict requirement to execute STOP SLAVE\nprior to issuing any CHANGE MASTER TO statement (and START SLAVE\nafterward) is removed. Instead of depending on whether the slave is\nstopped, the behavior of CHANGE MASTER TO depends (in MySQL 5.7.4 and\nlater) on the states of the slave SQL thread and slave I/O threads;\nwhich of these threads is stopped or running now determines the options\nthat can or cannot be used with a CHANGE MASTER TO statement at a given\npoint in time. The rules for making this determination are listed here:\n\no If the SQL thread is stopped, you can execute CHANGE MASTER TO using\n any combination that is otherwise allowed of RELAY_LOG_FILE,\n RELAY_LOG_POS, and MASTER_DELAY options, even if the slave I/O thread\n is running. No other options may be used with this statement when the\n I/O thread is running.\n\no If the I/O thread is stopped, you can execute CHANGE MASTER TO using\n any of the options for this statement (in any allowed combination)\n except RELAY_LOG_FILE, RELAY_LOG_POS, or MASTER_DELAY, even when the\n SQL thread is running. These three options may not be used when the\n I/O thread is running.\n\no Both the SQL thread and the I/O thread must be stopped before issuing\n a CHANGE MASTER TO statement that employs MASTER_AUTO_POSITION = 1.\n\nYou can check the current state of the slave SQL and I/O threads using\nSHOW SLAVE STATUS.\n\nFor more information, see\nhttp://dev.mysql.com/doc/refman/5.7/en/replication-solutions-switch.htm\nl.\n\nIf you are using statement-based replication and temporary tables, it\nis possible for a CHANGE MASTER TO statement following a STOP SLAVE\nstatement to leave behind temporary tables on the slave. From MySQL\n5.7, a warning (ER_WARN_OPEN_TEMP_TABLES_MUST_BE_ZERO) is issued\nwhenever this occurs. You can avoid this in such cases by making sure\nthat the value of the Slave_open_temp_tables system status variable is\nequal to 0 prior to executing such a CHANGE MASTER TO statement.\n\nCHANGE MASTER TO is useful for setting up a slave when you have the\nsnapshot of the master and have recorded the master binary log\ncoordinates corresponding to the time of the snapshot. After loading\nthe snapshot into the slave to synchronize it with the master, you can\nrun CHANGE MASTER TO MASTER_LOG_FILE=\'log_name\', MASTER_LOG_POS=log_pos\non the slave to specify the coordinates at which the slave should begin\nreading the master binary log.\n\nThe following example changes the master server the slave uses and\nestablishes the master binary log coordinates from which the slave\nbegins reading. This is used when you want to set up the slave to\nreplicate the master:\n\nCHANGE MASTER TO\n MASTER_HOST=\'master2.example.com\',\n MASTER_USER=\'replication\',\n MASTER_PASSWORD=\'password\',\n MASTER_PORT=3306,\n MASTER_LOG_FILE=\'master2-bin.001\',\n MASTER_LOG_POS=4,\n MASTER_CONNECT_RETRY=10;\n\nThe next example shows an operation that is less frequently employed.\nIt is used when the slave has relay log files that you want it to\nexecute again for some reason. To do this, the master need not be\nreachable. You need only use CHANGE MASTER TO and start the SQL thread\n(START SLAVE SQL_THREAD):\n\nCHANGE MASTER TO\n RELAY_LOG_FILE=\'slave-relay-bin.006\',\n RELAY_LOG_POS=4025;\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/change-master-to.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/change-master-to.html'); +INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (81,37,'CHANGE MASTER TO','Syntax:\nCHANGE MASTER TO option [, option] ... [ channel_option ]\n\noption:\n MASTER_BIND = \'interface_name\'\n | MASTER_HOST = \'host_name\'\n | MASTER_USER = \'user_name\'\n | MASTER_PASSWORD = \'password\'\n | MASTER_PORT = port_num\n | MASTER_CONNECT_RETRY = interval\n | MASTER_RETRY_COUNT = count\n | MASTER_DELAY = interval\n | MASTER_HEARTBEAT_PERIOD = interval\n | MASTER_LOG_FILE = \'master_log_name\'\n | MASTER_LOG_POS = master_log_pos\n | MASTER_AUTO_POSITION = {0|1}\n | RELAY_LOG_FILE = \'relay_log_name\'\n | RELAY_LOG_POS = relay_log_pos\n | MASTER_SSL = {0|1}\n | MASTER_SSL_CA = \'ca_file_name\'\n | MASTER_SSL_CAPATH = \'ca_directory_name\'\n | MASTER_SSL_CERT = \'cert_file_name\'\n | MASTER_SSL_CRL = \'crl_file_name\'\n | MASTER_SSL_CRLPATH = \'crl_directory_name\'\n | MASTER_SSL_KEY = \'key_file_name\'\n | MASTER_SSL_CIPHER = \'cipher_list\'\n | MASTER_SSL_VERIFY_SERVER_CERT = {0|1}\n | MASTER_TLS_VERSION = \'protocol_list\'\n | IGNORE_SERVER_IDS = (server_id_list)\n\nchannel_option:\n FOR CHANNEL channel\n\nserver_id_list:\n [server_id [, server_id] ... ]\n\nCHANGE MASTER TO changes the parameters that the slave server uses for\nconnecting to the master server, for reading the master binary log, and\nreading the slave relay log. It also updates the contents of the master\ninfo and relay log info repositories (see\nhttp://dev.mysql.com/doc/refman/5.7/en/slave-logs.html). CHANGE MASTER\nTO requires the SUPER privilege.\n\nPrior to MySQL 5.7.4, the slave replication threads must be stopped,\nusing STOP SLAVE if necessary, before issuing this statement. In MySQL\n5.7.4 and later, you can issue CHANGE MASTER TO statements on a running\nslave without doing this, depending on the states of the slave SQL\nthread and slave I/O thread. The rules governing such use are provided\nlater in this section.\n\nWhen using a multithreaded slave (in other words slave_parallel_workers\nis greater than 0), stopping the slave can cause "gaps" in the sequence\nof transactions that have been executed from the relay log, regardless\nof whether the slave was stopped intentionally or otherwise. When such\ngaps exist, issuing CHANGE MASTER TO fails. The solution in this\nsituation is to issue START SLAVE UNTIL SQL_AFTER_MTS_GAPS which\nensures that the gaps are closed.\n\nThe optional FOR CHANNEL channel clause enables you to name which\nreplication channel the statement applies to. Providing a FOR CHANNEL\nchannel clause applies the CHANGE MASTER TO statement to a specific\nreplication channel, and is used to add a new channel or modify an\nexisting channel. For example, to add a new channel called channel2:\n\nCHANGE MASTER TO MASTER_HOST=host1, MASTER_PORT=3002 FOR CHANNEL \'channel2\'\n\nIf no clause is named and no extra channels exist, the statement\napplies to the default channel.\n\nWhen using multiple replication channels, if a CHANGE MASTER TO\nstatement does not name a channel using a FOR CHANNEL channel clause,\nan error occurs. See\nhttp://dev.mysql.com/doc/refman/5.7/en/replication-channels.html for\nmore information.\n\nOptions not specified retain their value, except as indicated in the\nfollowing discussion. Thus, in most cases, there is no need to specify\noptions that do not change. For example, if the password to connect to\nyour MySQL master has changed, issue this statement to tell the slave\nabout the new password:\n\nCHANGE MASTER TO MASTER_PASSWORD=\'new3cret\';\n\nMASTER_HOST, MASTER_USER, MASTER_PASSWORD, and MASTER_PORT provide\ninformation to the slave about how to connect to its master:\n\no MASTER_HOST and MASTER_PORT are the host name (or IP address) of the\n master host and its TCP/IP port.\n\n *Note*:\n\n Replication cannot use Unix socket files. You must be able to connect\n to the master MySQL server using TCP/IP.\n\n If you specify the MASTER_HOST or MASTER_PORT option, the slave\n assumes that the master server is different from before (even if the\n option value is the same as its current value.) In this case, the old\n values for the master binary log file name and position are\n considered no longer applicable, so if you do not specify\n MASTER_LOG_FILE and MASTER_LOG_POS in the statement,\n MASTER_LOG_FILE=\'\' and MASTER_LOG_POS=4 are silently appended to it.\n\n Setting MASTER_HOST=\'\' (that is, setting its value explicitly to an\n empty string) is not the same as not setting MASTER_HOST at all.\n Beginning with MySQL 5.5, trying to set MASTER_HOST to an empty\n string fails with an error. Previously, setting MASTER_HOST to an\n empty string caused START SLAVE subsequently to fail. (Bug #28796)\n\n Values used for MASTER_HOST and other CHANGE MASTER TO options are\n checked for linefeed (\\n or 0x0A) characters; the presence of such\n characters in these values causes the statement to fail with\n ER_MASTER_INFO. (Bug #11758581, Bug #50801)\n\no MASTER_USER and MASTER_PASSWORD are the user name and password of the\n account to use for connecting to the master.\n\n MASTER_USER cannot be made empty; setting MASTER_USER = \'\' or leaving\n it unset when setting a value for MASTER_PASSWORD causes an error\n (Bug #13427949).\n\n The password used for a MySQL Replication slave account in a CHANGE\n MASTER TO statement is limited to 32 characters in length; prior to\n MySQL 5.7.5, if the password was longer, the statement succeeded, but\n any excess characters were silently truncated. In MySQL 5.7.5 and\n later, trying to use a password of more than 32 characters causes\n CHANGE MASTER TO to fail. (Bug #11752299, Bug #43439)\n\n The text of a running CHANGE MASTER TO statement, including values\n for MASTER_USER and MASTER_PASSWORD, can be seen in the output of a\n concurrent SHOW PROCESSLIST statement. (The complete text of a START\n SLAVE statement is also visible to SHOW PROCESSLIST.)\n\nThe MASTER_SSL_xxx options, and the MASTER_TLS_VERSION option, specify\nhow the slave uses encryption and ciphers to secure the replication\nconnection. These options can be changed even on slaves that are\ncompiled without SSL support. They are saved to the master info\nrepository, but are ignored if the slave does not have SSL support\nenabled. The MASTER_SSL_xxx and MASTER_TLS_VERSION options perform the\nsame functions as the --ssl-xxx and --tls-version client options\ndescribed in\nhttp://dev.mysql.com/doc/refman/5.7/en/encrypted-connection-options.htm\nl. The correspondence between the two sets of options, and the use of\nthe MASTER_SSL_xxx and MASTER_TLS_VERSION options to set up a secure\nconnection, is explained in\nhttp://dev.mysql.com/doc/refman/5.7/en/replication-solutions-encrypted-\nconnections.html.\n\nAs of MySQL 5.7.3, setting MASTER_SSL=1 means that the slave connection\nto the master must use SSL, or the connection attempt fails. Before\n5.7.3, the use of an SSL connection by the slave was not enforced with\nMASTER_SSL=1. This is analogous to the client-side meaning of the --ssl\ncommand-line option; see\nhttp://dev.mysql.com/doc/refman/5.7/en/encrypted-connection-options.htm\nl.\n\nThe MASTER_HEARTBEAT_PERIOD, MASTER_CONNECT_RETRY, and\nMASTER_RETRY_COUNT options control how the slave recognizes that the\nconnection to the master has been lost and makes attempts to reconnect.\n\no The slave_net_timeout system variable specifies the number of seconds\n that the slave waits for either more data or a heartbeat signal from\n the master, before the slave considers the connection broken, aborts\n the read, and tries to reconnect. The default value is 60 seconds\n (one minute). Prior to MySQL 5.7.7, the default was 3600 seconds (one\n hour).\n\no The heartbeat interval, which stops the connection timeout occurring\n in the absence of data if the connection is still good, is controlled\n by the MASTER_HEARTBEAT_PERIOD option. A heartbeat signal is sent to\n the slave after that number of seconds, and the waiting period is\n reset whenever the master\'s binary log is updated with an event.\n Heartbeats are therefore sent by the master only if there are no\n unsent events in the binary log file for a period longer than this.\n The heartbeat interval interval is a decimal value having the range 0\n to 4294967 seconds and a resolution in milliseconds; the smallest\n nonzero value is 0.001. Setting interval to 0 disables heartbeats\n altogether. The heartbeat interval defaults to half the value of the\n slave_net_timeout system variable. It is recorded in the master info\n log and shown in the replication_connection_configuration Performance\n Schema table. Issuing RESET SLAVE resets the heartbeat interval to\n the default value.\n\no Prior to MySQL 5.7.4, not including MASTER_HEARTBEAT_PERIOD caused\n CHANGE MASTER TO to reset the heartbeat interval to the default (half\n the value of the slave_net_timeout system variable), and\n Slave_received_heartbeats to 0. The heartbeat interval is now not\n reset except by RESET SLAVE. (Bug #18185490)\n\no Note that a change to the value or default setting of\n slave_net_timeout does not automatically change the heartbeat\n interval, whether that has been set explicitly or is using a\n previously calculated default. A warning is issued if you set\n @@GLOBAL.slave_net_timeout to a value less than that of the current\n heartbeat interval. If slave_net_timeout is changed, you must also\n issue CHANGE MASTER TO to adjust the heartbeat interval to an\n appropriate value so that the heartbeat signal occurs before the\n connection timeout. If you do not do this, the heartbeat signal has\n no effect, and if no data is received from the master, the slave can\n make repeated reconnection attempts, creating zombie dump threads.\n\no If the slave does need to reconnect, the first retry occurs\n immediately after the timeout. MASTER_CONNECT_RETRY specifies the\n interval between reconnection attempts, and MASTER_RETRY_COUNT limits\n the number of reconnection attempts. If both the default settings are\n used, the slave waits 60 seconds between reconnection attempts\n (MASTER_CONNECT_RETRY=60), and keeps attempting to reconnect at this\n rate for 24 hours (MASTER_RETRY_COUNT=86400). These values are\n recorded in the master info log and shown in the\n replication_connection_configuration Performance Schema table.\n MASTER_RETRY_COUNT supersedes the --master-retry-count server startup\n option.\n\nMASTER_DELAY specifies how many seconds behind the master the slave\nmust lag. An event received from the master is not executed until at\nleast interval seconds later than its execution on the master. The\ndefault is 0. An error occurs if interval is not a nonnegative integer\nin the range from 0 to 231−1. For more information, see\nhttp://dev.mysql.com/doc/refman/5.7/en/replication-delayed.html.\n\nFrom MySQL 5.7, a CHANGE MASTER TO statement employing the MASTER_DELAY\noption can be executed on a running slave when the slave SQL thread is\nstopped.\n\nMASTER_BIND is for use on replication slaves having multiple network\ninterfaces, and determines which of the slave\'s network interfaces is\nchosen for connecting to the master.\n\nThe address configured with this option, if any, can be seen in the\nMaster_Bind column of the output from SHOW SLAVE STATUS. If you are\nusing slave status log tables (server started with\n--master-info-repository=TABLE), the value can also be seen as the\nMaster_bind column of the mysql.slave_master_info table.\n\nThe ability to bind a replication slave to a specific network interface\nis also supported by NDB Cluster.\n\nMASTER_LOG_FILE and MASTER_LOG_POS are the coordinates at which the\nslave I/O thread should begin reading from the master the next time the\nthread starts. RELAY_LOG_FILE and RELAY_LOG_POS are the coordinates at\nwhich the slave SQL thread should begin reading from the relay log the\nnext time the thread starts. If you specify either of MASTER_LOG_FILE\nor MASTER_LOG_POS, you cannot specify RELAY_LOG_FILE or RELAY_LOG_POS.\nIf you specify either of MASTER_LOG_FILE or MASTER_LOG_POS, you also\ncannot specify MASTER_AUTO_POSITION = 1 (described later in this\nsection). If neither of MASTER_LOG_FILE or MASTER_LOG_POS is specified,\nthe slave uses the last coordinates of the slave SQL thread before\nCHANGE MASTER TO was issued. This ensures that there is no\ndiscontinuity in replication, even if the slave SQL thread was late\ncompared to the slave I/O thread, when you merely want to change, say,\nthe password to use.\n\nFrom MySQL 5.7, a CHANGE MASTER TO statement employing RELAY_LOG_FILE,\nRELAY_LOG_POS, or both options can be executed on a running slave when\nthe slave SQL thread is stopped. Prior to MySQL 5.7.4, CHANGE MASTER TO\ndeletes all relay log files and starts a new one, unless you specify\nRELAY_LOG_FILE or RELAY_LOG_POS. In that case, relay log files are\nkept; the relay_log_purge global variable is set silently to 0. In\nMySQL 5.7.4 and later, relay logs are preserved if at least one of the\nslave SQL thread and the slave I/O thread is running; if both threads\nare stopped, all relay log files are deleted unless at least one of\nRELAY_LOG_FILE or RELAY_LOG_POS is specified.\n\nRELAY_LOG_FILE can use either an absolute or relative path, and uses\nthe same base name as MASTER_LOG_FILE. (Bug #12190)\n\nWhen MASTER_AUTO_POSITION = 1 is used with CHANGE MASTER TO, the slave\nattempts to connect to the master using the GTID-based replication\nprotocol. From MySQL 5.7, this option can be employed by CHANGE MASTER\nTO only if both the slave SQL and slave I/O threads are stopped. Both\nthe slave and the master must have GTIDs enabled (GTID_MODE=ON,\nON_PERMISSIVE, or OFF_PERMISSIVE on the slave, and GTID_MODE=ON on the\nmaster). Auto-positioning is used for the connection, so the\ncoordinates represented by MASTER_LOG_FILE and MASTER_LOG_POS are not\nused, and the use of either or both of these options together with\nMASTER_AUTO_POSITION = 1 causes an error. If multi-source replication\nis enabled on the slave, you need to set the MASTER_AUTO_POSITION = 1\noption for each applicable replication channel.\n\nWith MASTER_AUTO_POSITION = 1 set, in the initial connection handshake,\nthe slave sends a GTID set containing the transactions that it has\nalready received, committed, or both. The master responds by sending\nall transactions recorded in its binary log whose GTID is not included\nin the GTID set sent by the slave. This exchange ensures that the\nmaster only sends the transactions with a GTID that the slave has not\nalready recorded or committed. If the slave receives transactions from\nmore than one master, as in the case of a diamond topology, the\nauto-skip function ensures that the transactions are not applied twice.\nFor details of how the GTID set sent by the slave is computed, see\nhttp://dev.mysql.com/doc/refman/5.7/en/replication-gtids-auto-positioni\nng.html.\n\nIf any of the transactions that should be sent by the master have been\npurged from the master\'s binary log, or added to the set of GTIDs in\nthe gtid_purged system variable by another method, the master sends the\nerror ER_MASTER_HAS_PURGED_REQUIRED_GTIDS to the slave, and replication\ndoes not start. Also, if during the exchange of transactions it is\nfound that the slave has recorded or committed transactions with the\nmaster\'s UUID in the GTID, but the master itself has not committed\nthem, the master sends the error ER_SLAVE_HAS_MORE_GTIDS_THAN_MASTER to\nthe slave and replication does not start. For information on how to\nhandle these situations, see\nhttp://dev.mysql.com/doc/refman/5.7/en/replication-gtids-auto-positioni\nng.html.\n\nYou can see whether replication is running with auto-positioning\nenabled by checking the Performance Schema\nreplication_connection_status table or the output of SHOW SLAVE STATUS.\nDisabling the MASTER_AUTO_POSITION option again makes the slave revert\nto file-based replication, in which case you must also specify one or\nboth of the MASTER_LOG_FILE or MASTER_LOG_POS options.\n\nIGNORE_SERVER_IDS takes a comma-separated list of 0 or more server IDs.\nEvents originating from the corresponding servers are ignored, with the\nexception of log rotation and deletion events, which are still recorded\nin the relay log.\n\nIn circular replication, the originating server normally acts as the\nterminator of its own events, so that they are not applied more than\nonce. Thus, this option is useful in circular replication when one of\nthe servers in the circle is removed. Suppose that you have a circular\nreplication setup with 4 servers, having server IDs 1, 2, 3, and 4, and\nserver 3 fails. When bridging the gap by starting replication from\nserver 2 to server 4, you can include IGNORE_SERVER_IDS = (3) in the\nCHANGE MASTER TO statement that you issue on server 4 to tell it to use\nserver 2 as its master instead of server 3. Doing so causes it to\nignore and not to propagate any statements that originated with the\nserver that is no longer in use.\n\nIf a CHANGE MASTER TO statement is issued without any IGNORE_SERVER_IDS\noption, any existing list is preserved. To clear the list of ignored\nservers, it is necessary to use the option with an empty list:\n\nCHANGE MASTER TO IGNORE_SERVER_IDS = ();\n\nPrior to MySQL 5.7.5, RESET SLAVE ALL has no effect on the server ID\nlist. In MySQL 5.7.5 and later, RESET SLAVE ALL clears\nIGNORE_SERVER_IDS. (Bug #18816897)\n\nIf IGNORE_SERVER_IDS contains the server\'s own ID and the server was\nstarted with the --replicate-same-server-id option enabled, an error\nresults.\n\nThe master info repository and the output of SHOW SLAVE STATUS provide\nthe list of servers that are currently ignored. For more information,\nsee http://dev.mysql.com/doc/refman/5.7/en/slave-logs-status.html, and\n[HELP SHOW SLAVE STATUS].\n\nInvoking CHANGE MASTER TO causes the previous values for MASTER_HOST,\nMASTER_PORT, MASTER_LOG_FILE, and MASTER_LOG_POS to be written to the\nerror log, along with other information about the slave\'s state prior\nto execution.\n\nCHANGE MASTER TO causes an implicit commit of an ongoing transaction.\nSee http://dev.mysql.com/doc/refman/5.7/en/implicit-commit.html.\n\nIn MySQL 5.7.4 and later, the strict requirement to execute STOP SLAVE\nprior to issuing any CHANGE MASTER TO statement (and START SLAVE\nafterward) is removed. Instead of depending on whether the slave is\nstopped, the behavior of CHANGE MASTER TO depends (in MySQL 5.7.4 and\nlater) on the states of the slave SQL thread and slave I/O threads;\nwhich of these threads is stopped or running now determines the options\nthat can or cannot be used with a CHANGE MASTER TO statement at a given\npoint in time. The rules for making this determination are listed here:\n\no If the SQL thread is stopped, you can execute CHANGE MASTER TO using\n any combination that is otherwise allowed of RELAY_LOG_FILE,\n RELAY_LOG_POS, and MASTER_DELAY options, even if the slave I/O thread\n is running. No other options may be used with this statement when the\n I/O thread is running.\n\no If the I/O thread is stopped, you can execute CHANGE MASTER TO using\n any of the options for this statement (in any allowed combination)\n except RELAY_LOG_FILE, RELAY_LOG_POS, or MASTER_DELAY, even when the\n SQL thread is running. These three options may not be used when the\n I/O thread is running.\n\no Both the SQL thread and the I/O thread must be stopped before issuing\n a CHANGE MASTER TO statement that employs MASTER_AUTO_POSITION = 1.\n\nYou can check the current state of the slave SQL and I/O threads using\nSHOW SLAVE STATUS.\n\nFor more information, see\nhttp://dev.mysql.com/doc/refman/5.7/en/replication-solutions-switch.htm\nl.\n\nIf you are using statement-based replication and temporary tables, it\nis possible for a CHANGE MASTER TO statement following a STOP SLAVE\nstatement to leave behind temporary tables on the slave. From MySQL\n5.7, a warning (ER_WARN_OPEN_TEMP_TABLES_MUST_BE_ZERO) is issued\nwhenever this occurs. You can avoid this in such cases by making sure\nthat the value of the Slave_open_temp_tables system status variable is\nequal to 0 prior to executing such a CHANGE MASTER TO statement.\n\nCHANGE MASTER TO is useful for setting up a slave when you have the\nsnapshot of the master and have recorded the master binary log\ncoordinates corresponding to the time of the snapshot. After loading\nthe snapshot into the slave to synchronize it with the master, you can\nrun CHANGE MASTER TO MASTER_LOG_FILE=\'log_name\', MASTER_LOG_POS=log_pos\non the slave to specify the coordinates at which the slave should begin\nreading the master binary log.\n\nThe following example changes the master server the slave uses and\nestablishes the master binary log coordinates from which the slave\nbegins reading. This is used when you want to set up the slave to\nreplicate the master:\n\nCHANGE MASTER TO\n MASTER_HOST=\'master2.example.com\',\n MASTER_USER=\'replication\',\n MASTER_PASSWORD=\'password\',\n MASTER_PORT=3306,\n MASTER_LOG_FILE=\'master2-bin.001\',\n MASTER_LOG_POS=4,\n MASTER_CONNECT_RETRY=10;\n\nThe next example shows an operation that is less frequently employed.\nIt is used when the slave has relay log files that you want it to\nexecute again for some reason. To do this, the master need not be\nreachable. You need only use CHANGE MASTER TO and start the SQL thread\n(START SLAVE SQL_THREAD):\n\nCHANGE MASTER TO\n RELAY_LOG_FILE=\'slave-relay-bin.006\',\n RELAY_LOG_POS=4025;\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/change-master-to.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/change-master-to.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (82,37,'CHANGE REPLICATION FILTER','Syntax:\nCHANGE REPLICATION FILTER filter[, filter][, ...]\n\nfilter:\n REPLICATE_DO_DB = (db_list)\n | REPLICATE_IGNORE_DB = (db_list)\n | REPLICATE_DO_TABLE = (tbl_list)\n | REPLICATE_IGNORE_TABLE = (tbl_list)\n | REPLICATE_WILD_DO_TABLE = (wild_tbl_list)\n | REPLICATE_WILD_IGNORE_TABLE = (wild_tbl_list)\n | REPLICATE_REWRITE_DB = (db_pair_list)\n\ndb_list:\n db_name[, db_name][, ...]\n\ntbl_list:\n db_name.table_name[, db_table_name][, ...]\nwild_tbl_list:\n \'db_pattern.table_pattern\'[, \'db_pattern.table_pattern\'][, ...]\n\ndb_pair_list:\n (db_pair)[, (db_pair)][, ...]\n\ndb_pair:\n from_db, to_db\n\nCHANGE REPLICATION FILTER sets one or more replication filtering rules\non the slave in the same way as starting the slave mysqld with\nreplication filtering options such as --replicate-do-db or\n--replicate-wild-ignore-table. Unlike the case with the server options,\nthis statement does not require restarting the server to take effect,\nonly that the slave SQL thread be stopped using STOP SLAVE SQL_THREAD\nfirst (and restarted with START SLAVE SQL_THREAD afterwards). CHANGE\nREPLICATION FILTER requires the SUPER privilege.\n\nReplication filters cannot be set on a MySQL server instance that is\nconfigured for Group Replication, because filtering transactions on\nsome servers would make the group unable to reach agreement on a\nconsistent state.\n\nThe following list shows the CHANGE REPLICATION FILTER options and how\nthey relate to --replicate-* server options:\n\no REPLICATE_DO_DB: Include updates based on database name. Equivalent\n to --replicate-do-db.\n\no REPLICATE_IGNORE_DB: Exclude updates based on database name.\n Equivalent to --replicate-ignore-db.\n\no REPLICATE_DO_TABLE: Include updates based on table name. Equivalent\n to --replicate-do-table.\n\no REPLICATE_IGNORE_TABLE: Exclude updates based on table name.\n Equivalent to --replicate-ignore-table.\n\no REPLICATE_WILD_DO_TABLE: Include updates based on wildcard pattern\n matching table name. Equivalent to --replicate-wild-do-table.\n\no REPLICATE_WILD_IGNORE_TABLE: Exclude updates based on wildcard\n pattern matching table name. Equivalent to\n --replicate-wild-ignore-table.\n\no REPLICATE_REWRITE_DB: Perform updates on slave after substituting new\n name on slave for specified database on master. Equivalent to\n --replicate-rewrite-db.\n\nThe precise effects of REPLICATE_DO_DB and REPLICATE_IGNORE_DB filters\nare dependent on whether statement-based or row-based replication is in\neffect. See\nhttp://dev.mysql.com/doc/refman/5.7/en/replication-rules.html, for more\ninformation.\n\nMultiple replication filtering rules can be created in a single CHANGE\nREPLICATION FILTER statement by separating the rules with commas, as\nshown here:\n\nCHANGE REPLICATION FILTER\n REPLICATE_DO_DB = (d1), REPLICATE_IGNORE_DB = (d2);\n\nIssuing the statement just shown is equivalent to starting the slave\nmysqld with the options --replicate-do-db=d1 --replicate-ignore-db=d2.\n\nIf the same filtering rule is specified multiple times, only the last\nsuch rule is actually used. For example, the two statements shown here\nhave exactly the same effect, because the first REPLICATE_DO_DB rule in\nthe first statement is ignored:\n\nCHANGE REPLICATION FILTER\n REPLICATE_DO_DB = (db1, db2), REPLICATE_DO_DB = (db3, db4);\n\nCHANGE REPLICATION FILTER\n REPLICATE_DO_DB = (db3,db4);\n\n*Caution*:\n\nThis behavior differs from that of the --replicate-* filter options\nwhere specifying the same option multiple times causes the creation of\nmultiple filter rules.\n\nNames of tables and database not containing any special characters need\nnot be quoted. Values used with REPLICATION_WILD_TABLE and\nREPLICATION_WILD_IGNORE_TABLE are string expressions, possibly\ncontaining (special) wildcard characters, and so must be quoted. This\nis shown in the following example statements:\n\nCHANGE REPLICATION FILTER\n REPLICATE_WILD_DO_TABLE = (\'db1.old%\');\n\nCHANGE REPLICATION FILTER\n REPLICATE_WILD_IGNORE_TABLE = (\'db1.new%\', \'db2.new%\');\n\nValues used with REPLICATE_REWRITE_DB represent pairs of database\nnames; each such value must be enclosed in parentheses. The following\nstatement rewrites statements occurring on database db1 on the master\nto database db2 on the slave:\n\nCHANGE REPLICATION FILTER REPLICATE_REWRITE_DB = ((db1, db2));\n\nThe statement just shown contains two sets of parentheses, one\nenclosing the pair of database names, and the other enclosing the\nentire list. This is perhap more easily seen in the following example,\nwhich creates two rewrite-db rules, one rewriting database dbA to dbB,\nand one rewriting database dbC to dbD:\n\nCHANGE REPLICATION FILTER\n REPLICATE_REWRITE_DB = ((dbA, dbB), (dbC, dbD));\n\nThis statement leaves any existing replication filtering rules\nunchanged; to unset all filters of a given type, set the filter\'s value\nto an explicitly empty list, as shown in this example, which removes\nall existing REPLICATE_DO_DB and REPLICATE_IGNORE_DB rules:\n\nCHANGE REPLICATION FILTER\n REPLICATE_DO_DB = (), REPLICATE_IGNORE_DB = ();\n\nSetting a filter to empty in this way removes all existing rules, does\nnot create any new ones, and does not restore any rules set at mysqld\nstartup using --replicate-* options on the command line or in the\nconfiguration file.\n\nValues employed with REPLICATE_WILD_DO_TABLE and\nREPLICATE_WILD_IGNORE_TABLE must be in the format db_name.tbl_name.\nPrior to MySQL 5.7.5, this was not strictly enforced, although using\nnonconforming values with these options could lead to erroneous results\n(Bug #18095449).\n\nFor more information, see\nhttp://dev.mysql.com/doc/refman/5.7/en/replication-rules.html.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/change-replication-filter.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/change-replication-filter.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (83,10,'CHAR','[NATIONAL] CHAR[(M)] [CHARACTER SET charset_name] [COLLATE\ncollation_name]\n\nA fixed-length string that is always right-padded with spaces to the\nspecified length when stored. M represents the column length in\ncharacters. The range of M is 0 to 255. If M is omitted, the length is\n1.\n\n*Note*:\n\nTrailing spaces are removed when CHAR values are retrieved unless the\nPAD_CHAR_TO_FULL_LENGTH SQL mode is enabled.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/string-type-overview.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (84,10,'CHAR BYTE','The CHAR BYTE data type is an alias for the BINARY data type. This is a\ncompatibility feature.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/string-type-overview.html'); @@ -191,18 +191,18 @@ INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (108,14,'COUNT DISTINCT','Syntax:\nCOUNT(DISTINCT expr,[expr...])\n\nReturns a count of the number of rows with different non-NULL expr\nvalues.\n\nIf there are no matching rows, COUNT(DISTINCT) returns 0.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/group-by-functions.html\n\n','mysql> SELECT COUNT(DISTINCT results) FROM student;\n','http://dev.mysql.com/doc/refman/5.7/en/group-by-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (109,29,'CRC32','Syntax:\nCRC32(expr)\n\nComputes a cyclic redundancy check value and returns a 32-bit unsigned\nvalue. The result is NULL if the argument is NULL. The argument is\nexpected to be a string and (if possible) is treated as one if it is\nnot.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT CRC32(\'MySQL\');\n -> 3259397556\nmysql> SELECT CRC32(\'mysql\');\n -> 2501908538\n','http://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (110,8,'CREATE DATABASE','Syntax:\nCREATE {DATABASE | SCHEMA} [IF NOT EXISTS] db_name\n [create_specification] ...\n\ncreate_specification:\n [DEFAULT] CHARACTER SET [=] charset_name\n | [DEFAULT] COLLATE [=] collation_name\n\nCREATE DATABASE creates a database with the given name. To use this\nstatement, you need the CREATE privilege for the database. CREATE\nSCHEMA is a synonym for CREATE DATABASE.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/create-database.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/create-database.html'); -INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (111,8,'CREATE EVENT','Syntax:\nCREATE\n [DEFINER = { user | CURRENT_USER }]\n EVENT\n [IF NOT EXISTS]\n event_name\n ON SCHEDULE schedule\n [ON COMPLETION [NOT] PRESERVE]\n [ENABLE | DISABLE | DISABLE ON SLAVE]\n [COMMENT \'string\']\n DO event_body;\n\nschedule:\n AT timestamp [+ INTERVAL interval] ...\n | EVERY interval\n [STARTS timestamp [+ INTERVAL interval] ...]\n [ENDS timestamp [+ INTERVAL interval] ...]\n\ninterval:\n quantity {YEAR | QUARTER | MONTH | DAY | HOUR | MINUTE |\n WEEK | SECOND | YEAR_MONTH | DAY_HOUR | DAY_MINUTE |\n DAY_SECOND | HOUR_MINUTE | HOUR_SECOND | MINUTE_SECOND}\n\nThis statement creates and schedules a new event. The event will not\nrun unless the Event Scheduler is enabled. For information about\nchecking Event Scheduler status and enabling it if necessary, see\nhttp://dev.mysql.com/doc/refman/5.7/en/events-configuration.html.\n\nCREATE EVENT requires the EVENT privilege for the schema in which the\nevent is to be created. It might also require the SUPER privilege,\ndepending on the DEFINER value, as described later in this section.\n\nThe minimum requirements for a valid CREATE EVENT statement are as\nfollows:\n\no The keywords CREATE EVENT plus an event name, which uniquely\n identifies the event in a database schema.\n\no An ON SCHEDULE clause, which determines when and how often the event\n executes.\n\no A DO clause, which contains the SQL statement to be executed by an\n event.\n\nThis is an example of a minimal CREATE EVENT statement:\n\nCREATE EVENT myevent\n ON SCHEDULE AT CURRENT_TIMESTAMP + INTERVAL 1 HOUR\n DO\n UPDATE myschema.mytable SET mycol = mycol + 1;\n\nThe previous statement creates an event named myevent. This event\nexecutes once---one hour following its creation---by running an SQL\nstatement that increments the value of the myschema.mytable table\'s\nmycol column by 1.\n\nThe event_name must be a valid MySQL identifier with a maximum length\nof 64 characters. Event names are not case-sensitive, so you cannot\nhave two events named myevent and MyEvent in the same schema. In\ngeneral, the rules governing event names are the same as those for\nnames of stored routines. See\nhttp://dev.mysql.com/doc/refman/5.7/en/identifiers.html.\n\nAn event is associated with a schema. If no schema is indicated as part\nof event_name, the default (current) schema is assumed. To create an\nevent in a specific schema, qualify the event name with a schema using\nschema_name.event_name syntax.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/create-event.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/create-event.html'); +INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (111,8,'CREATE EVENT','Syntax:\nCREATE\n [DEFINER = user]\n EVENT\n [IF NOT EXISTS]\n event_name\n ON SCHEDULE schedule\n [ON COMPLETION [NOT] PRESERVE]\n [ENABLE | DISABLE | DISABLE ON SLAVE]\n [COMMENT \'string\']\n DO event_body;\n\nschedule:\n AT timestamp [+ INTERVAL interval] ...\n | EVERY interval\n [STARTS timestamp [+ INTERVAL interval] ...]\n [ENDS timestamp [+ INTERVAL interval] ...]\n\ninterval:\n quantity {YEAR | QUARTER | MONTH | DAY | HOUR | MINUTE |\n WEEK | SECOND | YEAR_MONTH | DAY_HOUR | DAY_MINUTE |\n DAY_SECOND | HOUR_MINUTE | HOUR_SECOND | MINUTE_SECOND}\n\nThis statement creates and schedules a new event. The event will not\nrun unless the Event Scheduler is enabled. For information about\nchecking Event Scheduler status and enabling it if necessary, see\nhttp://dev.mysql.com/doc/refman/5.7/en/events-configuration.html.\n\nCREATE EVENT requires the EVENT privilege for the schema in which the\nevent is to be created. If the DEFINER clause is present, the\nprivileges required depend on the user value, as discussed in\nhttp://dev.mysql.com/doc/refman/5.7/en/stored-objects-security.html.\n\nThe minimum requirements for a valid CREATE EVENT statement are as\nfollows:\n\no The keywords CREATE EVENT plus an event name, which uniquely\n identifies the event in a database schema.\n\no An ON SCHEDULE clause, which determines when and how often the event\n executes.\n\no A DO clause, which contains the SQL statement to be executed by an\n event.\n\nThis is an example of a minimal CREATE EVENT statement:\n\nCREATE EVENT myevent\n ON SCHEDULE AT CURRENT_TIMESTAMP + INTERVAL 1 HOUR\n DO\n UPDATE myschema.mytable SET mycol = mycol + 1;\n\nThe previous statement creates an event named myevent. This event\nexecutes once---one hour following its creation---by running an SQL\nstatement that increments the value of the myschema.mytable table\'s\nmycol column by 1.\n\nThe event_name must be a valid MySQL identifier with a maximum length\nof 64 characters. Event names are not case-sensitive, so you cannot\nhave two events named myevent and MyEvent in the same schema. In\ngeneral, the rules governing event names are the same as those for\nnames of stored routines. See\nhttp://dev.mysql.com/doc/refman/5.7/en/identifiers.html.\n\nAn event is associated with a schema. If no schema is indicated as part\nof event_name, the default (current) schema is assumed. To create an\nevent in a specific schema, qualify the event name with a schema using\nschema_name.event_name syntax.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/create-event.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/create-event.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (112,8,'CREATE FUNCTION','The CREATE FUNCTION statement is used to create stored functions and\nuser-defined functions (UDFs):\n\no For information about creating stored functions, see [HELP CREATE\n PROCEDURE].\n\no For information about creating user-defined functions, see [HELP\n CREATE FUNCTION UDF].\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/create-function.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/create-function.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (113,38,'CREATE FUNCTION UDF','Syntax:\nCREATE [AGGREGATE] FUNCTION function_name\n RETURNS {STRING|INTEGER|REAL|DECIMAL}\n SONAME shared_library_name\n\nA user-defined function (UDF) is a way to extend MySQL with a new\nfunction that works like a native (built-in) MySQL function such as\nABS() or CONCAT().\n\nfunction_name is the name that should be used in SQL statements to\ninvoke the function. The RETURNS clause indicates the type of the\nfunction\'s return value. DECIMAL is a legal value after RETURNS, but\ncurrently DECIMAL functions return string values and should be written\nlike STRING functions.\n\nshared_library_name is the base name of the shared library file that\ncontains the code that implements the function. The file must be\nlocated in the plugin directory. This directory is given by the value\nof the plugin_dir system variable. For more information, see\nhttp://dev.mysql.com/doc/refman/5.7/en/udf-loading.html.\n\nTo create a function, you must have the INSERT privilege for the mysql\nsystem database. This is necessary because CREATE FUNCTION adds a row\nto the mysql.func system table that records the function\'s name, type,\nand shared library name.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/create-function-udf.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/create-function-udf.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (114,8,'CREATE INDEX','Syntax:\nCREATE [UNIQUE | FULLTEXT | SPATIAL] INDEX index_name\n [index_type]\n ON tbl_name (key_part,...)\n [index_option]\n [algorithm_option | lock_option] ...\n\nkey_part:\n col_name [(length)] [ASC | DESC]\n\nindex_option:\n KEY_BLOCK_SIZE [=] value\n | index_type\n | WITH PARSER parser_name\n | COMMENT \'string\'\n\nindex_type:\n USING {BTREE | HASH}\n\nalgorithm_option:\n ALGORITHM [=] {DEFAULT | INPLACE | COPY}\n\nlock_option:\n LOCK [=] {DEFAULT | NONE | SHARED | EXCLUSIVE}\n\nNormally, you create all indexes on a table at the time the table\nitself is created with CREATE TABLE. See [HELP CREATE TABLE]. This\nguideline is especially important for InnoDB tables, where the primary\nkey determines the physical layout of rows in the data file. CREATE\nINDEX enables you to add indexes to existing tables.\n\nCREATE INDEX is mapped to an ALTER TABLE statement to create indexes.\nSee [HELP ALTER TABLE]. CREATE INDEX cannot be used to create a PRIMARY\nKEY; use ALTER TABLE instead. For more information about indexes, see\nhttp://dev.mysql.com/doc/refman/5.7/en/mysql-indexes.html.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/create-index.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/create-index.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (115,8,'CREATE LOGFILE GROUP','Syntax:\nCREATE LOGFILE GROUP logfile_group\n ADD UNDOFILE \'undo_file\'\n [INITIAL_SIZE [=] initial_size]\n [UNDO_BUFFER_SIZE [=] undo_buffer_size]\n [REDO_BUFFER_SIZE [=] redo_buffer_size]\n [NODEGROUP [=] nodegroup_id]\n [WAIT]\n [COMMENT [=] \'string\']\n ENGINE [=] engine_name\n\nThis statement creates a new log file group named logfile_group having\na single UNDO file named \'undo_file\'. A CREATE LOGFILE GROUP statement\nhas one and only one ADD UNDOFILE clause. For rules covering the naming\nof log file groups, see\nhttp://dev.mysql.com/doc/refman/5.7/en/identifiers.html.\n\n*Note*:\n\nAll NDB Cluster Disk Data objects share the same namespace. This means\nthat each Disk Data object must be uniquely named (and not merely each\nDisk Data object of a given type). For example, you cannot have a\ntablespace and a log file group with the same name, or a tablespace and\na data file with the same name.\n\nThere can be only one log file group per NDB Cluster instance at any\ngiven time.\n\nThe optional INITIAL_SIZE parameter sets the UNDO file\'s initial size;\nif not specified, it defaults to 128M (128 megabytes). The optional\nUNDO_BUFFER_SIZE parameter sets the size used by the UNDO buffer for\nthe log file group; The default value for UNDO_BUFFER_SIZE is 8M (eight\nmegabytes); this value cannot exceed the amount of system memory\navailable. Both of these parameters are specified in bytes. You may\noptionally follow either or both of these with a one-letter\nabbreviation for an order of magnitude, similar to those used in\nmy.cnf. Generally, this is one of the letters M (for megabytes) or G\n(for gigabytes).\n\nMemory used for UNDO_BUFFER_SIZE comes from the global pool whose size\nis determined by the value of the SharedGlobalMemory data node\nconfiguration parameter. This includes any default value implied for\nthis option by the setting of the InitialLogFileGroup data node\nconfiguration parameter.\n\nThe maximum permitted for UNDO_BUFFER_SIZE is 629145600 (600 MB).\n\nOn 32-bit systems, the maximum supported value for INITIAL_SIZE is\n4294967296 (4 GB). (Bug #29186)\n\nThe minimum allowed value for INITIAL_SIZE is 1048576 (1 MB).\n\nThe ENGINE option determines the storage engine to be used by this log\nfile group, with engine_name being the name of the storage engine. In\nMySQL 5.7, this must be NDB (or NDBCLUSTER). If ENGINE is not set,\nMySQL tries to use the engine specified by the default_storage_engine\nserver system variable (formerly storage_engine). In any case, if the\nengine is not specified as NDB or NDBCLUSTER, the CREATE LOGFILE GROUP\nstatement appears to succeed but actually fails to create the log file\ngroup, as shown here:\n\nmysql> CREATE LOGFILE GROUP lg1\n -> ADD UNDOFILE \'undo.dat\' INITIAL_SIZE = 10M;\nQuery OK, 0 rows affected, 1 warning (0.00 sec)\n\nmysql> SHOW WARNINGS;\n+-------+------+------------------------------------------------------------------------------------------------+\n| Level | Code | Message |\n+-------+------+------------------------------------------------------------------------------------------------+\n| Error | 1478 | Table storage engine \'InnoDB\' does not support the create option \'TABLESPACE or LOGFILE GROUP\' |\n+-------+------+------------------------------------------------------------------------------------------------+\n1 row in set (0.00 sec)\n\nmysql> DROP LOGFILE GROUP lg1 ENGINE = NDB; \nERROR 1529 (HY000): Failed to drop LOGFILE GROUP\n\nmysql> CREATE LOGFILE GROUP lg1\n -> ADD UNDOFILE \'undo.dat\' INITIAL_SIZE = 10M\n -> ENGINE = NDB;\nQuery OK, 0 rows affected (2.97 sec)\n\nThe fact that the CREATE LOGFILE GROUP statement does not actually\nreturn an error when a non-NDB storage engine is named, but rather\nappears to succeed, is a known issue which we hope to address in a\nfuture release of NDB Cluster.\n\nREDO_BUFFER_SIZE, NODEGROUP, WAIT, and COMMENT are parsed but ignored,\nand so have no effect in MySQL 5.7. These options are intended for\nfuture expansion.\n\nWhen used with ENGINE [=] NDB, a log file group and associated UNDO log\nfile are created on each Cluster data node. You can verify that the\nUNDO files were created and obtain information about them by querying\nthe INFORMATION_SCHEMA.FILES table. For example:\n\nmysql> SELECT LOGFILE_GROUP_NAME, LOGFILE_GROUP_NUMBER, EXTRA\n -> FROM INFORMATION_SCHEMA.FILES\n -> WHERE FILE_NAME = \'undo_10.dat\';\n+--------------------+----------------------+----------------+\n| LOGFILE_GROUP_NAME | LOGFILE_GROUP_NUMBER | EXTRA |\n+--------------------+----------------------+----------------+\n| lg_3 | 11 | CLUSTER_NODE=3 |\n| lg_3 | 11 | CLUSTER_NODE=4 |\n+--------------------+----------------------+----------------+\n2 rows in set (0.06 sec)\n\nCREATE LOGFILE GROUP is useful only with Disk Data storage for NDB\nCluster. See\nhttp://dev.mysql.com/doc/refman/5.7/en/mysql-cluster-disk-data.html.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/create-logfile-group.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/create-logfile-group.html'); -INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (116,8,'CREATE PROCEDURE','Syntax:\nCREATE\n [DEFINER = { user | CURRENT_USER }]\n PROCEDURE sp_name ([proc_parameter[,...]])\n [characteristic ...] routine_body\n\nCREATE\n [DEFINER = { user | CURRENT_USER }]\n FUNCTION sp_name ([func_parameter[,...]])\n RETURNS type\n [characteristic ...] routine_body\n\nproc_parameter:\n [ IN | OUT | INOUT ] param_name type\n\nfunc_parameter:\n param_name type\n\ntype:\n Any valid MySQL data type\n\ncharacteristic:\n COMMENT \'string\'\n | LANGUAGE SQL\n | [NOT] DETERMINISTIC\n | { CONTAINS SQL | NO SQL | READS SQL DATA | MODIFIES SQL DATA }\n | SQL SECURITY { DEFINER | INVOKER }\n\nroutine_body:\n Valid SQL routine statement\n\nThese statements create stored routines. By default, a routine is\nassociated with the default database. To associate the routine\nexplicitly with a given database, specify the name as db_name.sp_name\nwhen you create it.\n\nThe CREATE FUNCTION statement is also used in MySQL to support UDFs\n(user-defined functions). See\nhttp://dev.mysql.com/doc/refman/5.7/en/adding-functions.html. A UDF can\nbe regarded as an external stored function. Stored functions share\ntheir namespace with UDFs. See\nhttp://dev.mysql.com/doc/refman/5.7/en/function-resolution.html, for\nthe rules describing how the server interprets references to different\nkinds of functions.\n\nTo invoke a stored procedure, use the CALL statement (see [HELP CALL]).\nTo invoke a stored function, refer to it in an expression. The function\nreturns a value during expression evaluation.\n\nCREATE PROCEDURE and CREATE FUNCTION require the CREATE ROUTINE\nprivilege. They might also require the SUPER privilege, depending on\nthe DEFINER value, as described later in this section. If binary\nlogging is enabled, CREATE FUNCTION might require the SUPER privilege,\nas described in\nhttp://dev.mysql.com/doc/refman/5.7/en/stored-programs-logging.html.\n\nBy default, MySQL automatically grants the ALTER ROUTINE and EXECUTE\nprivileges to the routine creator. This behavior can be changed by\ndisabling the automatic_sp_privileges system variable. See\nhttp://dev.mysql.com/doc/refman/5.7/en/stored-routines-privileges.html.\n\nThe DEFINER and SQL SECURITY clauses specify the security context to be\nused when checking access privileges at routine execution time, as\ndescribed later in this section.\n\nIf the routine name is the same as the name of a built-in SQL function,\na syntax error occurs unless you use a space between the name and the\nfollowing parenthesis when defining the routine or invoking it later.\nFor this reason, avoid using the names of existing SQL functions for\nyour own stored routines.\n\nThe IGNORE_SPACE SQL mode applies to built-in functions, not to stored\nroutines. It is always permissible to have spaces after a stored\nroutine name, regardless of whether IGNORE_SPACE is enabled.\n\nThe parameter list enclosed within parentheses must always be present.\nIf there are no parameters, an empty parameter list of () should be\nused. Parameter names are not case sensitive.\n\nEach parameter is an IN parameter by default. To specify otherwise for\na parameter, use the keyword OUT or INOUT before the parameter name.\n\n*Note*:\n\nSpecifying a parameter as IN, OUT, or INOUT is valid only for a\nPROCEDURE. For a FUNCTION, parameters are always regarded as IN\nparameters.\n\nAn IN parameter passes a value into a procedure. The procedure might\nmodify the value, but the modification is not visible to the caller\nwhen the procedure returns. An OUT parameter passes a value from the\nprocedure back to the caller. Its initial value is NULL within the\nprocedure, and its value is visible to the caller when the procedure\nreturns. An INOUT parameter is initialized by the caller, can be\nmodified by the procedure, and any change made by the procedure is\nvisible to the caller when the procedure returns.\n\nFor each OUT or INOUT parameter, pass a user-defined variable in the\nCALL statement that invokes the procedure so that you can obtain its\nvalue when the procedure returns. If you are calling the procedure from\nwithin another stored procedure or function, you can also pass a\nroutine parameter or local routine variable as an OUT or INOUT\nparameter. If you are calling the procedure from within a trigger, you\ncan also pass NEW.col_name as an OUT or INOUT parameter.\n\nFor information about the effect of unhandled conditions on procedure\nparameters, see\nhttp://dev.mysql.com/doc/refman/5.7/en/conditions-and-parameters.html.\n\nRoutine parameters cannot be referenced in statements prepared within\nthe routine; see\nhttp://dev.mysql.com/doc/refman/5.7/en/stored-program-restrictions.html\n.\n\nThe following example shows a simple stored procedure that uses an OUT\nparameter:\n\nmysql> delimiter //\n\nmysql> CREATE PROCEDURE simpleproc (OUT param1 INT)\n -> BEGIN\n -> SELECT COUNT(*) INTO param1 FROM t;\n -> END//\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> delimiter ;\n\nmysql> CALL simpleproc(@a);\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT @a;\n+------+\n| @a |\n+------+\n| 3 |\n+------+\n1 row in set (0.00 sec)\n\nThe example uses the mysql client delimiter command to change the\nstatement delimiter from ; to // while the procedure is being defined.\nThis enables the ; delimiter used in the procedure body to be passed\nthrough to the server rather than being interpreted by mysql itself.\nSee\nhttp://dev.mysql.com/doc/refman/5.7/en/stored-programs-defining.html.\n\nThe RETURNS clause may be specified only for a FUNCTION, for which it\nis mandatory. It indicates the return type of the function, and the\nfunction body must contain a RETURN value statement. If the RETURN\nstatement returns a value of a different type, the value is coerced to\nthe proper type. For example, if a function specifies an ENUM or SET\nvalue in the RETURNS clause, but the RETURN statement returns an\ninteger, the value returned from the function is the string for the\ncorresponding ENUM member of set of SET members.\n\nThe following example function takes a parameter, performs an operation\nusing an SQL function, and returns the result. In this case, it is\nunnecessary to use delimiter because the function definition contains\nno internal ; statement delimiters:\n\nmysql> CREATE FUNCTION hello (s CHAR(20))\nmysql> RETURNS CHAR(50) DETERMINISTIC\n -> RETURN CONCAT(\'Hello, \',s,\'!\');\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT hello(\'world\');\n+----------------+\n| hello(\'world\') |\n+----------------+\n| Hello, world! |\n+----------------+\n1 row in set (0.00 sec)\n\nParameter types and function return types can be declared to use any\nvalid data type. The COLLATE attribute can be used if preceded by a\nCHARACTER SET specification.\n\nThe routine_body consists of a valid SQL routine statement. This can be\na simple statement such as SELECT or INSERT, or a compound statement\nwritten using BEGIN and END. Compound statements can contain\ndeclarations, loops, and other control structure statements. The syntax\nfor these statements is described in\nhttp://dev.mysql.com/doc/refman/5.7/en/sql-syntax-compound-statements.h\ntml.\n\nMySQL permits routines to contain DDL statements, such as CREATE and\nDROP. MySQL also permits stored procedures (but not stored functions)\nto contain SQL transaction statements such as COMMIT. Stored functions\nmay not contain statements that perform explicit or implicit commit or\nrollback. Support for these statements is not required by the SQL\nstandard, which states that each DBMS vendor may decide whether to\npermit them.\n\nStatements that return a result set can be used within a stored\nprocedure but not within a stored function. This prohibition includes\nSELECT statements that do not have an INTO var_list clause and other\nstatements such as SHOW, EXPLAIN, and CHECK TABLE. For statements that\ncan be determined at function definition time to return a result set, a\nNot allowed to return a result set from a function error occurs\n(ER_SP_NO_RETSET). For statements that can be determined only at\nruntime to return a result set, a PROCEDURE %s can\'t return a result\nset in the given context error occurs (ER_SP_BADSELECT).\n\nUSE statements within stored routines are not permitted. When a routine\nis invoked, an implicit USE db_name is performed (and undone when the\nroutine terminates). The causes the routine to have the given default\ndatabase while it executes. References to objects in databases other\nthan the routine default database should be qualified with the\nappropriate database name.\n\nFor additional information about statements that are not permitted in\nstored routines, see\nhttp://dev.mysql.com/doc/refman/5.7/en/stored-program-restrictions.html\n.\n\nFor information about invoking stored procedures from within programs\nwritten in a language that has a MySQL interface, see [HELP CALL].\n\nMySQL stores the sql_mode system variable setting in effect when a\nroutine is created or altered, and always executes the routine with\nthis setting in force, regardless of the current server SQL mode when\nthe routine begins executing.\n\nThe switch from the SQL mode of the invoker to that of the routine\noccurs after evaluation of arguments and assignment of the resulting\nvalues to routine parameters. If you define a routine in strict SQL\nmode but invoke it in nonstrict mode, assignment of arguments to\nroutine parameters does not take place in strict mode. If you require\nthat expressions passed to a routine be assigned in strict SQL mode,\nyou should invoke the routine with strict mode in effect.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/create-procedure.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/create-procedure.html'); +INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (116,8,'CREATE PROCEDURE','Syntax:\nCREATE\n [DEFINER = user]\n PROCEDURE sp_name ([proc_parameter[,...]])\n [characteristic ...] routine_body\n\nCREATE\n [DEFINER = user]\n FUNCTION sp_name ([func_parameter[,...]])\n RETURNS type\n [characteristic ...] routine_body\n\nproc_parameter:\n [ IN | OUT | INOUT ] param_name type\n\nfunc_parameter:\n param_name type\n\ntype:\n Any valid MySQL data type\n\ncharacteristic:\n COMMENT \'string\'\n | LANGUAGE SQL\n | [NOT] DETERMINISTIC\n | { CONTAINS SQL | NO SQL | READS SQL DATA | MODIFIES SQL DATA }\n | SQL SECURITY { DEFINER | INVOKER }\n\nroutine_body:\n Valid SQL routine statement\n\nThese statements create stored routines. By default, a routine is\nassociated with the default database. To associate the routine\nexplicitly with a given database, specify the name as db_name.sp_name\nwhen you create it.\n\nThe CREATE FUNCTION statement is also used in MySQL to support UDFs\n(user-defined functions). See\nhttp://dev.mysql.com/doc/refman/5.7/en/adding-functions.html. A UDF can\nbe regarded as an external stored function. Stored functions share\ntheir namespace with UDFs. See\nhttp://dev.mysql.com/doc/refman/5.7/en/function-resolution.html, for\nthe rules describing how the server interprets references to different\nkinds of functions.\n\nTo invoke a stored procedure, use the CALL statement (see [HELP CALL]).\nTo invoke a stored function, refer to it in an expression. The function\nreturns a value during expression evaluation.\n\nCREATE PROCEDURE and CREATE FUNCTION require the CREATE ROUTINE\nprivilege. If the DEFINER clause is present, the privileges required\ndepend on the user value, as discussed in\nhttp://dev.mysql.com/doc/refman/5.7/en/stored-objects-security.html. If\nbinary logging is enabled, CREATE FUNCTION might require the SUPER\nprivilege, as discussed in\nhttp://dev.mysql.com/doc/refman/5.7/en/stored-programs-logging.html.\n\nBy default, MySQL automatically grants the ALTER ROUTINE and EXECUTE\nprivileges to the routine creator. This behavior can be changed by\ndisabling the automatic_sp_privileges system variable. See\nhttp://dev.mysql.com/doc/refman/5.7/en/stored-routines-privileges.html.\n\nThe DEFINER and SQL SECURITY clauses specify the security context to be\nused when checking access privileges at routine execution time, as\ndescribed later in this section.\n\nIf the routine name is the same as the name of a built-in SQL function,\na syntax error occurs unless you use a space between the name and the\nfollowing parenthesis when defining the routine or invoking it later.\nFor this reason, avoid using the names of existing SQL functions for\nyour own stored routines.\n\nThe IGNORE_SPACE SQL mode applies to built-in functions, not to stored\nroutines. It is always permissible to have spaces after a stored\nroutine name, regardless of whether IGNORE_SPACE is enabled.\n\nThe parameter list enclosed within parentheses must always be present.\nIf there are no parameters, an empty parameter list of () should be\nused. Parameter names are not case sensitive.\n\nEach parameter is an IN parameter by default. To specify otherwise for\na parameter, use the keyword OUT or INOUT before the parameter name.\n\n*Note*:\n\nSpecifying a parameter as IN, OUT, or INOUT is valid only for a\nPROCEDURE. For a FUNCTION, parameters are always regarded as IN\nparameters.\n\nAn IN parameter passes a value into a procedure. The procedure might\nmodify the value, but the modification is not visible to the caller\nwhen the procedure returns. An OUT parameter passes a value from the\nprocedure back to the caller. Its initial value is NULL within the\nprocedure, and its value is visible to the caller when the procedure\nreturns. An INOUT parameter is initialized by the caller, can be\nmodified by the procedure, and any change made by the procedure is\nvisible to the caller when the procedure returns.\n\nFor each OUT or INOUT parameter, pass a user-defined variable in the\nCALL statement that invokes the procedure so that you can obtain its\nvalue when the procedure returns. If you are calling the procedure from\nwithin another stored procedure or function, you can also pass a\nroutine parameter or local routine variable as an OUT or INOUT\nparameter. If you are calling the procedure from within a trigger, you\ncan also pass NEW.col_name as an OUT or INOUT parameter.\n\nFor information about the effect of unhandled conditions on procedure\nparameters, see\nhttp://dev.mysql.com/doc/refman/5.7/en/conditions-and-parameters.html.\n\nRoutine parameters cannot be referenced in statements prepared within\nthe routine; see\nhttp://dev.mysql.com/doc/refman/5.7/en/stored-program-restrictions.html\n.\n\nThe following example shows a simple stored procedure that uses an OUT\nparameter:\n\nmysql> delimiter //\n\nmysql> CREATE PROCEDURE simpleproc (OUT param1 INT)\n -> BEGIN\n -> SELECT COUNT(*) INTO param1 FROM t;\n -> END//\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> delimiter ;\n\nmysql> CALL simpleproc(@a);\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT @a;\n+------+\n| @a |\n+------+\n| 3 |\n+------+\n1 row in set (0.00 sec)\n\nThe example uses the mysql client delimiter command to change the\nstatement delimiter from ; to // while the procedure is being defined.\nThis enables the ; delimiter used in the procedure body to be passed\nthrough to the server rather than being interpreted by mysql itself.\nSee\nhttp://dev.mysql.com/doc/refman/5.7/en/stored-programs-defining.html.\n\nThe RETURNS clause may be specified only for a FUNCTION, for which it\nis mandatory. It indicates the return type of the function, and the\nfunction body must contain a RETURN value statement. If the RETURN\nstatement returns a value of a different type, the value is coerced to\nthe proper type. For example, if a function specifies an ENUM or SET\nvalue in the RETURNS clause, but the RETURN statement returns an\ninteger, the value returned from the function is the string for the\ncorresponding ENUM member of set of SET members.\n\nThe following example function takes a parameter, performs an operation\nusing an SQL function, and returns the result. In this case, it is\nunnecessary to use delimiter because the function definition contains\nno internal ; statement delimiters:\n\nmysql> CREATE FUNCTION hello (s CHAR(20))\nmysql> RETURNS CHAR(50) DETERMINISTIC\n -> RETURN CONCAT(\'Hello, \',s,\'!\');\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT hello(\'world\');\n+----------------+\n| hello(\'world\') |\n+----------------+\n| Hello, world! |\n+----------------+\n1 row in set (0.00 sec)\n\nParameter types and function return types can be declared to use any\nvalid data type. The COLLATE attribute can be used if preceded by a\nCHARACTER SET specification.\n\nThe routine_body consists of a valid SQL routine statement. This can be\na simple statement such as SELECT or INSERT, or a compound statement\nwritten using BEGIN and END. Compound statements can contain\ndeclarations, loops, and other control structure statements. The syntax\nfor these statements is described in\nhttp://dev.mysql.com/doc/refman/5.7/en/sql-syntax-compound-statements.h\ntml.\n\nMySQL permits routines to contain DDL statements, such as CREATE and\nDROP. MySQL also permits stored procedures (but not stored functions)\nto contain SQL transaction statements such as COMMIT. Stored functions\nmay not contain statements that perform explicit or implicit commit or\nrollback. Support for these statements is not required by the SQL\nstandard, which states that each DBMS vendor may decide whether to\npermit them.\n\nStatements that return a result set can be used within a stored\nprocedure but not within a stored function. This prohibition includes\nSELECT statements that do not have an INTO var_list clause and other\nstatements such as SHOW, EXPLAIN, and CHECK TABLE. For statements that\ncan be determined at function definition time to return a result set, a\nNot allowed to return a result set from a function error occurs\n(ER_SP_NO_RETSET). For statements that can be determined only at\nruntime to return a result set, a PROCEDURE %s can\'t return a result\nset in the given context error occurs (ER_SP_BADSELECT).\n\nUSE statements within stored routines are not permitted. When a routine\nis invoked, an implicit USE db_name is performed (and undone when the\nroutine terminates). The causes the routine to have the given default\ndatabase while it executes. References to objects in databases other\nthan the routine default database should be qualified with the\nappropriate database name.\n\nFor additional information about statements that are not permitted in\nstored routines, see\nhttp://dev.mysql.com/doc/refman/5.7/en/stored-program-restrictions.html\n.\n\nFor information about invoking stored procedures from within programs\nwritten in a language that has a MySQL interface, see [HELP CALL].\n\nMySQL stores the sql_mode system variable setting in effect when a\nroutine is created or altered, and always executes the routine with\nthis setting in force, regardless of the current server SQL mode when\nthe routine begins executing.\n\nThe switch from the SQL mode of the invoker to that of the routine\noccurs after evaluation of arguments and assignment of the resulting\nvalues to routine parameters. If you define a routine in strict SQL\nmode but invoke it in nonstrict mode, assignment of arguments to\nroutine parameters does not take place in strict mode. If you require\nthat expressions passed to a routine be assigned in strict SQL mode,\nyou should invoke the routine with strict mode in effect.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/create-procedure.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/create-procedure.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (117,8,'CREATE SERVER','Syntax:\nCREATE SERVER server_name\n FOREIGN DATA WRAPPER wrapper_name\n OPTIONS (option [, option] ...)\n\noption:\n { HOST character-literal\n | DATABASE character-literal\n | USER character-literal\n | PASSWORD character-literal\n | SOCKET character-literal\n | OWNER character-literal\n | PORT numeric-literal }\n\nThis statement creates the definition of a server for use with the\nFEDERATED storage engine. The CREATE SERVER statement creates a new row\nin the servers table in the mysql database. This statement requires the\nSUPER privilege.\n\nThe server_name should be a unique reference to the server. Server\ndefinitions are global within the scope of the server, it is not\npossible to qualify the server definition to a specific database.\nserver_name has a maximum length of 64 characters (names longer than 64\ncharacters are silently truncated), and is case insensitive. You may\nspecify the name as a quoted string.\n\nThe wrapper_name is an identifier and may be quoted with single\nquotation marks.\n\nFor each option you must specify either a character literal or numeric\nliteral. Character literals are UTF-8, support a maximum length of 64\ncharacters and default to a blank (empty) string. String literals are\nsilently truncated to 64 characters. Numeric literals must be a number\nbetween 0 and 9999, default value is 0.\n\n*Note*:\n\nThe OWNER option is currently not applied, and has no effect on the\nownership or operation of the server connection that is created.\n\nThe CREATE SERVER statement creates an entry in the mysql.servers table\nthat can later be used with the CREATE TABLE statement when creating a\nFEDERATED table. The options that you specify will be used to populate\nthe columns in the mysql.servers table. The table columns are\nServer_name, Host, Db, Username, Password, Port and Socket.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/create-server.html\n\n','CREATE SERVER s\nFOREIGN DATA WRAPPER mysql\nOPTIONS (USER \'Remote\', HOST \'198.51.100.106\', DATABASE \'test\');\n','http://dev.mysql.com/doc/refman/5.7/en/create-server.html'); -INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (118,8,'CREATE TABLE','Syntax:\nCREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name\n (create_definition,...)\n [table_options]\n [partition_options]\n\nCREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name\n [(create_definition,...)]\n [table_options]\n [partition_options]\n [IGNORE | REPLACE]\n [AS] query_expression\n\nCREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name\n { LIKE old_tbl_name | (LIKE old_tbl_name) }\n\ncreate_definition:\n col_name column_definition\n | [CONSTRAINT [symbol]] PRIMARY KEY [index_type] (key_part,...)\n [index_option] ...\n | {INDEX|KEY} [index_name] [index_type] (key_part,...)\n [index_option] ...\n | [CONSTRAINT [symbol]] UNIQUE [INDEX|KEY]\n [index_name] [index_type] (key_part,...)\n [index_option] ...\n | {FULLTEXT|SPATIAL} [INDEX|KEY] [index_name] (key_part,...)\n [index_option] ...\n | [CONSTRAINT [symbol]] FOREIGN KEY\n [index_name] (col_name,...) reference_definition\n | CHECK (expr)\n\ncolumn_definition:\n data_type [NOT NULL | NULL] [DEFAULT default_value]\n [AUTO_INCREMENT] [UNIQUE [KEY]] [[PRIMARY] KEY]\n [COMMENT \'string\']\n [COLLATE collation_name]\n [COLUMN_FORMAT {FIXED|DYNAMIC|DEFAULT}]\n [STORAGE {DISK|MEMORY|DEFAULT}]\n [reference_definition]\n | data_type [GENERATED ALWAYS] AS (expression)\n [VIRTUAL | STORED] [NOT NULL | NULL]\n [UNIQUE [KEY]] [[PRIMARY] KEY]\n [COMMENT \'string\']\n\ndata_type:\n (see http://dev.mysql.com/doc/refman/5.7/en/data-types.html)\n\nkey_part:\n col_name [(length)] [ASC | DESC]\n\nindex_type:\n USING {BTREE | HASH}\n\nindex_option:\n KEY_BLOCK_SIZE [=] value\n | index_type\n | WITH PARSER parser_name\n | COMMENT \'string\'\n\nreference_definition:\n REFERENCES tbl_name (key_part,...)\n [MATCH FULL | MATCH PARTIAL | MATCH SIMPLE]\n [ON DELETE reference_option]\n [ON UPDATE reference_option]\n\nreference_option:\n RESTRICT | CASCADE | SET NULL | NO ACTION | SET DEFAULT\n\ntable_options:\n table_option [[,] table_option] ...\n\ntable_option:\n AUTO_INCREMENT [=] value\n | AVG_ROW_LENGTH [=] value\n | [DEFAULT] CHARACTER SET [=] charset_name\n | CHECKSUM [=] {0 | 1}\n | [DEFAULT] COLLATE [=] collation_name\n | COMMENT [=] \'string\'\n | COMPRESSION [=] {\'ZLIB\'|\'LZ4\'|\'NONE\'}\n | CONNECTION [=] \'connect_string\'\n | {DATA|INDEX} DIRECTORY [=] \'absolute path to directory\'\n | DELAY_KEY_WRITE [=] {0 | 1}\n | ENCRYPTION [=] {\'Y\' | \'N\'}\n | ENGINE [=] engine_name\n | INSERT_METHOD [=] { NO | FIRST | LAST }\n | KEY_BLOCK_SIZE [=] value\n | MAX_ROWS [=] value\n | MIN_ROWS [=] value\n | PACK_KEYS [=] {0 | 1 | DEFAULT}\n | PASSWORD [=] \'string\'\n | ROW_FORMAT [=] {DEFAULT|DYNAMIC|FIXED|COMPRESSED|REDUNDANT|COMPACT}\n | STATS_AUTO_RECALC [=] {DEFAULT|0|1}\n | STATS_PERSISTENT [=] {DEFAULT|0|1}\n | STATS_SAMPLE_PAGES [=] value\n | TABLESPACE tablespace_name [STORAGE {DISK|MEMORY|DEFAULT}]\n | UNION [=] (tbl_name[,tbl_name]...)\n\npartition_options:\n PARTITION BY\n { [LINEAR] HASH(expr)\n | [LINEAR] KEY [ALGORITHM={1|2}] (column_list)\n | RANGE{(expr) | COLUMNS(column_list)}\n | LIST{(expr) | COLUMNS(column_list)} }\n [PARTITIONS num]\n [SUBPARTITION BY\n { [LINEAR] HASH(expr)\n | [LINEAR] KEY [ALGORITHM={1|2}] (column_list) }\n [SUBPARTITIONS num]\n ]\n [(partition_definition [, partition_definition] ...)]\n\npartition_definition:\n PARTITION partition_name\n [VALUES\n {LESS THAN {(expr | value_list) | MAXVALUE}\n |\n IN (value_list)}]\n [[STORAGE] ENGINE [=] engine_name]\n [COMMENT [=] \'string\' ]\n [DATA DIRECTORY [=] \'data_dir\']\n [INDEX DIRECTORY [=] \'index_dir\']\n [MAX_ROWS [=] max_number_of_rows]\n [MIN_ROWS [=] min_number_of_rows]\n [TABLESPACE [=] tablespace_name]\n [(subpartition_definition [, subpartition_definition] ...)]\n\nsubpartition_definition:\n SUBPARTITION logical_name\n [[STORAGE] ENGINE [=] engine_name]\n [COMMENT [=] \'string\' ]\n [DATA DIRECTORY [=] \'data_dir\']\n [INDEX DIRECTORY [=] \'index_dir\']\n [MAX_ROWS [=] max_number_of_rows]\n [MIN_ROWS [=] min_number_of_rows]\n [TABLESPACE [=] tablespace_name]\n\nquery_expression:\n SELECT ... (Some valid select or union statement)\n\nCREATE TABLE creates a table with the given name. You must have the\nCREATE privilege for the table.\n\nBy default, tables are created in the default database, using the\nInnoDB storage engine. An error occurs if the table exists, if there is\nno default database, or if the database does not exist.\n\nFor information about the physical representation of a table, see\nhttp://dev.mysql.com/doc/refman/5.7/en/create-table-files.html.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/create-table.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/create-table.html'); -INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (119,8,'CREATE TABLESPACE','Syntax:\nCREATE TABLESPACE tablespace_name\n\n InnoDB and NDB:\n ADD DATAFILE \'file_name\'\n\n InnoDB only:\n [FILE_BLOCK_SIZE = value]\n\n NDB only:\n USE LOGFILE GROUP logfile_group\n [EXTENT_SIZE [=] extent_size]\n [INITIAL_SIZE [=] initial_size]\n [AUTOEXTEND_SIZE [=] autoextend_size]\n [MAX_SIZE [=] max_size]\n [NODEGROUP [=] nodegroup_id]\n [WAIT]\n [COMMENT [=] \'string\']\n\n InnoDB and NDB:\n [ENGINE [=] engine_name]\n\nThis statement is used to create a tablespace. The precise syntax and\nsemantics depend on the storage engine used. In standard MySQL 5.7\nreleases, this is always an InnoDB tablespace. MySQL NDB Cluster 7.5\nalso supports tablespaces using the NDB storage engine in addition to\nthose using InnoDB.\n\no http://dev.mysql.com/doc/refman/5.7/en/create-tablespace.html#create-\n tablespace-innodb\n\no http://dev.mysql.com/doc/refman/5.7/en/create-tablespace.html#create-\n tablespace-ndb\n\no http://dev.mysql.com/doc/refman/5.7/en/create-tablespace.html#create-\n tablespace-options\n\no http://dev.mysql.com/doc/refman/5.7/en/create-tablespace.html#create-\n tablespace-notes\n\no http://dev.mysql.com/doc/refman/5.7/en/create-tablespace.html#create-\n tablespace-innodb-examples\n\no http://dev.mysql.com/doc/refman/5.7/en/create-tablespace.html#create-\n tablespace-ndb-examples\n\nConsiderations for InnoDB\n\nCREATE TABLESPACE syntax is used to create general tabelspaces. A\ngeneral tablespace is a shared tablespace. It can hold multiple tables,\nand supports all table row formats. General tablespaces can be created\nin a location relative to or independent of the data directory.\n\nAfter creating an InnoDB general tablespace, you can use CREATE TABLE\ntbl_name ... TABLESPACE [=] tablespace_name or ALTER TABLE tbl_name\nTABLESPACE [=] tablespace_name to add tables to the tablespace. For\nmore information, see\nhttp://dev.mysql.com/doc/refman/5.7/en/general-tablespaces.html.\n\nConsiderations for NDB Cluster\n\nThis statement is used to create a tablespace, which can contain one or\nmore data files, providing storage space for NDB Cluster Disk Data\ntables (see\nhttp://dev.mysql.com/doc/refman/5.7/en/mysql-cluster-disk-data.html).\nOne data file is created and added to the tablespace using this\nstatement. Additional data files may be added to the tablespace by\nusing the ALTER TABLESPACE statement (see [HELP ALTER TABLESPACE]).\n\n*Note*:\n\nAll NDB Cluster Disk Data objects share the same namespace. This means\nthat each Disk Data object must be uniquely named (and not merely each\nDisk Data object of a given type). For example, you cannot have a\ntablespace and a log file group with the same name, or a tablespace and\na data file with the same name.\n\nA log file group of one or more UNDO log files must be assigned to the\ntablespace to be created with the USE LOGFILE GROUP clause.\nlogfile_group must be an existing log file group created with CREATE\nLOGFILE GROUP (see [HELP CREATE LOGFILE GROUP]). Multiple tablespaces\nmay use the same log file group for UNDO logging.\n\nWhen setting EXTENT_SIZE or INITIAL_SIZE, you may optionally follow the\nnumber with a one-letter abbreviation for an order of magnitude,\nsimilar to those used in my.cnf. Generally, this is one of the letters\nM (for megabytes) or G (for gigabytes).\n\nINITIAL_SIZE and EXTENT_SIZE are subject to rounding as follows:\n\no EXTENT_SIZE is rounded up to the nearest whole multiple of 32K.\n\no INITIAL_SIZE is rounded down to the nearest whole multiple of 32K;\n this result is rounded up to the nearest whole multiple of\n EXTENT_SIZE (after any rounding).\n\nThe rounding just described is done explicitly, and a warning is issued\nby the MySQL Server when any such rounding is performed. The rounded\nvalues are also used by the NDB kernel for calculating\nINFORMATION_SCHEMA.FILES column values and other purposes. However, to\navoid an unexpected result, we suggest that you always use whole\nmultiples of 32K in specifying these options.\n\nWhen CREATE TABLESPACE is used with ENGINE [=] NDB, a tablespace and\nassociated data file are created on each Cluster data node. You can\nverify that the data files were created and obtain information about\nthem by querying the INFORMATION_SCHEMA.FILES table. (See the example\nlater in this section.)\n\n(See http://dev.mysql.com/doc/refman/5.7/en/files-table.html.)\n\nOptions\n\no ADD DATAFILE: Defines the name of a tablespace data file; this option\n is always required. An InnoDB tablespace supports only a single data\n file, whose name must include a .ibd extension. An NDB Cluster\n tablespace supports multiple data files which can have any legal file\n names; more data files can be added to an NDB Cluster tablespace\n following its creation by using an ALTER TABLESPACE statement.\n\n *Note*:\n\n ALTER TABLESPACE is not supported by InnoDB.\n\n To place the data file in a location outside of the data directory\n (datadir), include an absolute directory path or a path relative to\n the data directory. If you do not specify a path, the tablespace is\n created in the data directory. An isl file is created in the data\n directory when an InnoDB tablespace is created outside of the data\n directory.\n\n To avoid conflicts with implicitly created file-per-table\n tablespaces, creating a general tablespace in a subdirectory under\n the data directory is not supported. When creating a general\n tablespace outside of the data directory, the directory must exist\n prior to creating the tablespace.\n\n The file_name, including any specified path, must be quoted with\n single or double quotations marks. File names (not counting the file\n extension) and directory names must be at least one byte in length.\n Zero length file names and directory names are not supported.\n\no FILE_BLOCK_SIZE: This option---which is specific to InnoDB, and is\n ignored by NDB---defines the block size for the tablespace data file.\n Values can be specified in bytes or kilobytes. For example, an 8\n kilobyte file block size can be specified as 8192 or 8K. If you do\n not specify this option, FILE_BLOCK_SIZE defaults to the\n innodb_page_size value. FILE_BLOCK_SIZE is required when you intend\n to use the tablespace for storing compressed InnoDB tables\n (ROW_FORMAT=COMPRESSED). In this case, you must define the tablespace\n FILE_BLOCK_SIZE when creating the tablespace.\n\n If FILE_BLOCK_SIZE is equal the innodb_page_size value, the\n tablespace can contain only tables having an uncompressed row format\n (COMPACT, REDUNDANT, and DYNAMIC). Tables with a COMPRESSED row\n format have a different physical page size than uncompressed tables.\n Therefore, compressed tables cannot coexist in the same tablespace as\n uncompressed tables.\n\n For a general tablespace to contain compressed tables,\n FILE_BLOCK_SIZE must be specified, and the FILE_BLOCK_SIZE value must\n be a valid compressed page size in relation to the innodb_page_size\n value. Also, the physical page size of the compressed table\n (KEY_BLOCK_SIZE) must be equal to FILE_BLOCK_SIZE/1024. For example,\n if innodb_page_size=16K, and FILE_BLOCK_SIZE=8K, the KEY_BLOCK_SIZE\n of the table must be 8. For more information, see\n http://dev.mysql.com/doc/refman/5.7/en/general-tablespaces.html.\n\no USE LOGFILE GROUP: Required for NDB, this is the name of a log file\n group previously created using CREATE LOGFILE GROUP. Not supported\n for InnoDB, where it fails with an error.\n\no EXTENT_SIZE: This option is specific to NDB, and is not supported by\n InnoDB, where it fails with an error. EXTENT_SIZE sets the size, in\n bytes, of the extents used by any files belonging to the tablespace.\n The default value is 1M. The minimum size is 32K, and theoretical\n maximum is 2G, although the practical maximum size depends on a\n number of factors. In most cases, changing the extent size does not\n have any measurable effect on performance, and the default value is\n recommended for all but the most unusual situations.\n\n An extent is a unit of disk space allocation. One extent is filled\n with as much data as that extent can contain before another extent is\n used. In theory, up to 65,535 (64K) extents may used per data file;\n however, the recommended maximum is 32,768 (32K). The recommended\n maximum size for a single data file is 32G---that is, 32K extents x 1\n MB per extent. In addition, once an extent is allocated to a given\n partition, it cannot be used to store data from a different\n partition; an extent cannot store data from more than one partition.\n This means, for example that a tablespace having a single datafile\n whose INITIAL_SIZE (described in the following item) is 256 MB and\n whose EXTENT_SIZE is 128M has just two extents, and so can be used to\n store data from at most two different disk data table partitions.\n\n You can see how many extents remain free in a given data file by\n querying the INFORMATION_SCHEMA.FILES table, and so derive an\n estimate for how much space remains free in the file. For further\n discussion and examples, see\n http://dev.mysql.com/doc/refman/5.7/en/files-table.html.\n\no INITIAL_SIZE: This option is specific to NDB, and is not supported by\n InnoDB, where it fails with an error.\n\n The INITIAL_SIZE parameter sets the total size in bytes of the data\n file that was specific using ADD DATATFILE. Once this file has been\n created, its size cannot be changed; however, you can add more data\n files to the tablespace using ALTER TABLESPACE ... ADD DATAFILE.\n\n INITIAL_SIZE is optional; its default value is 134217728 (128 MB).\n\n On 32-bit systems, the maximum supported value for INITIAL_SIZE is\n 4294967296 (4 GB).\n\no AUTOEXTEND_SIZE: Currently ignored by MySQL; reserved for possible\n future use. Has no effect in any release of MySQL 5.7 or MySQL NDB\n Cluster 7.5, regardless of the storage engine used.\n\no MAX_SIZE: Currently ignored by MySQL; reserved for possible future\n use. Has no effect in any release of MySQL 5.7 or MySQL NDB Cluster\n 7.5, regardless of the storage engine used.\n\no NODEGROUP: Currently ignored by MySQL; reserved for possible future\n use. Has no effect in any release of MySQL 5.7 or MySQL NDB Cluster\n 7.5, regardless of the storage engine used.\n\no WAIT: Currently ignored by MySQL; reserved for possible future use.\n Has no effect in any release of MySQL 5.7 or MySQL NDB Cluster 7.5,\n regardless of the storage engine used.\n\no COMMENT: Currently ignored by MySQL; reserved for possible future\n use. Has no effect in any release of MySQL 5.7 or MySQL NDB Cluster\n 7.5, regardless of the storage engine used.\n\no ENGINE: Defines the storage engine which uses the tablespace, where\n engine_name is the name of the storage engine. Currently, only the\n InnoDB storage engine is supported by standard MySQL 5.7 releases.\n MySQL NDB Cluster 7.5 supports both NDB and InnoDB tablespaces. The\n value of the default_storage_engine system variable is used for\n ENGINE if the option is not specified.\n\nNotes\n\no For the rules covering the naming of MySQL tablespaces, see\n http://dev.mysql.com/doc/refman/5.7/en/identifiers.html. In addition\n to these rules, the slash character ("/") is not permitted, nor can\n you use names beginning with innodb_, as this prefix is reserved for\n system use.\n\no Tablespaces do not support temporary tables.\n\no innodb_file_per_table, innodb_file_format, and innodb_file_format_max\n settings have no influence on CREATE TABLESPACE operations.\n innodb_file_per_table does not need to be enabled. General\n tablespaces support all table row formats regardless of file format\n settings. Likewise, general tablespaces support the addition of\n tables of any row format using CREATE TABLE ... TABLESPACE,\n regardless of file format settings.\n\no innodb_strict_mode is not applicable to general tablespaces.\n Tablespace management rules are strictly enforced independently of\n innodb_strict_mode. If CREATE TABLESPACE parameters are incorrect or\n incompatible, the operation fails regardless of the\n innodb_strict_mode setting. When a table is added to a general\n tablespace using CREATE TABLE ... TABLESPACE or ALTER TABLE ...\n TABLESPACE, innodb_strict_mode is ignored but the statement is\n evaluated as if innodb_strict_mode is enabled.\n\no Use DROP TABLESPACE to remove a tablespace. All tables must be\n dropped from a tablespace using DROP TABLE prior to dropping the\n tablespace. Before dropping an NDB Cluster tablespace you must also\n remove all its data files using one or more ALTER TABLESPACE ... DROP\n DATATFILE statements. See\n http://dev.mysql.com/doc/refman/5.7/en/mysql-cluster-disk-data-object\n s.html.\n\no All parts of an InnoDB table added to an InnoDB general tablespace\n reside in the general tablespace, including indexes and BLOB pages.\n\n For an NDB table assigned to a tablespace, only those columns which\n are not indexed are stored on disk, and actually use the tablespace\n data files. Indexes and indexed columns for all NDB tables are always\n kept in memory.\n\no Similar to the system tablespace, truncating or dropping tables\n stored in a general tablespace creates free space internally in the\n general tablespace .ibd data file which can only be used for new\n InnoDB data. Space is not released back to the operating system as it\n is for file-per-table tablespaces.\n\no A general tablespace is not associated with any database or schema.\n\no ALTER TABLE ... DISCARD TABLESPACE and ALTER TABLE ...IMPORT\n TABLESPACE are not supported for tables that belong to a general\n tablespace.\n\no The server uses tablespace-level metadata locking for DDL that\n references general tablespaces. By comparison, the server uses\n table-level metadata locking for DDL that references file-per-table\n tablespaces.\n\no A generated or existing tablespace cannot be changed to a general\n tablespace.\n\no Tables stored in a general tablespace can only be opened in MySQL\n 5.7.6 or later due to the addition of new table flags.\n\no There is no conflict between general tablespace names and\n file-per-table tablespace names. The "/" character, which is present\n in file-per-table tablespace names, is not permitted in general\n tablespace names.\n\no mysqldump and mysqlpump do not dump InnoDB CREATE TABLESPACE\n statements.\n\nInnoDB Examples\n\nThis example demonstrates creating a general tablespace and adding\nthree uncompressed tables of different row formats.\n\nmysql> CREATE TABLESPACE `ts1` ADD DATAFILE \'ts1.ibd\' ENGINE=INNODB;\n\nmysql> CREATE TABLE t1 (c1 INT PRIMARY KEY) TABLESPACE ts1 ROW_FORMAT=REDUNDANT;\n\nmysql> CREATE TABLE t2 (c1 INT PRIMARY KEY) TABLESPACE ts1 ROW_FORMAT=COMPACT;\n\nmysql> CREATE TABLE t3 (c1 INT PRIMARY KEY) TABLESPACE ts1 ROW_FORMAT=DYNAMIC;\n\nThis example demonstrates creating a general tablespace and adding a\ncompressed table. The example assumes a default innodb_page_size value\nof 16K. The FILE_BLOCK_SIZE of 8192 requires that the compressed table\nhave a KEY_BLOCK_SIZE of 8.\n\nmysql> CREATE TABLESPACE `ts2` ADD DATAFILE \'ts2.ibd\' FILE_BLOCK_SIZE = 8192 Engine=InnoDB;\n\nmysql> CREATE TABLE t4 (c1 INT PRIMARY KEY) TABLESPACE ts2 ROW_FORMAT=COMPRESSED KEY_BLOCK_SIZE=8;\n\nNDB Example\n\nSuppose that you wish to create an NDB Cluster Disk Data tablespace\nnamed myts using a datafile named mydata-1.dat. An NDB tablespace\nalways requires the use of a log file group consisting of one or more\nundo log files. For this example, we first create a log file group\nnamed mylg that contains one undo long file named myundo-1.dat, using\nthe CREATE LOGFILE GROUP statement shown here:\n\nmysql> CREATE LOGFILE GROUP myg1\n -> ADD UNDOFILE \'myundo-1.dat\'\n -> ENGINE=NDB;\nQuery OK, 0 rows affected (3.29 sec)\n\nNow you can create the tablespace previously described using the\nfollowing statement:\n\nmysql> CREATE TABLESPACE myts\n -> ADD DATAFILE \'mydata-1.dat\'\n -> USE LOGFILE GROUP mylg\n -> ENGINE=NDB;\nQuery OK, 0 rows affected (2.98 sec)\n\nYou can now create a Disk Data table using a CREATE TABLE statement\nwith the TABLESPACE and STORAGE DISK options, similar to what is shown\nhere:\n\nmysql> CREATE TABLE mytable (\n -> id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,\n -> lname VARCHAR(50) NOT NULL,\n -> fname VARCHAR(50) NOT NULL,\n -> dob DATE NOT NULL,\n -> joined DATE NOT NULL,\n -> INDEX(last_name, first_name)\n -> )\n -> TABLESPACE myts STORAGE DISK\n -> ENGINE=NDB;\nQuery OK, 0 rows affected (1.41 sec)\n\nIt is important to note that only the dob and joined columns from\nmytable are actually stored on disk, due to the fact that the id,\nlname, and fname columns are all indexed.\n\nAs mentioned previously, when CREATE TABLESPACE is used with ENGINE [=]\nNDB, a tablespace and associated data file are created on each NDB\nCluster data node. You can verify that the data files were created and\nobtain information about them by querying the INFORMATION_SCHEMA.FILES\ntable, as shown here:\n\nmysql> SELECT FILE_NAME, FILE_TYPE, LOGFILE_GROUP_NAME, STATUS, EXTRA\n -> FROM INFORMATION_SCHEMA.FILES\n -> WHERE TABLESPACE_NAME = \'myts\';\n\n+--------------+------------+--------------------+--------+----------------+\n| file_name | file_type | logfile_group_name | status | extra |\n+--------------+------------+--------------------+--------+----------------+\n| mydata-1.dat | DATAFILE | mylg | NORMAL | CLUSTER_NODE=5 |\n| mydata-1.dat | DATAFILE | mylg | NORMAL | CLUSTER_NODE=6 |\n| NULL | TABLESPACE | mylg | NORMAL | NULL |\n+--------------+------------+--------------------+--------+----------------+\n3 rows in set (0.01 sec)\n\nFor additional information and examples, see\nhttp://dev.mysql.com/doc/refman/5.7/en/mysql-cluster-disk-data-objects.\nhtml.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/create-tablespace.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/create-tablespace.html'); -INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (120,8,'CREATE TRIGGER','Syntax:\nCREATE\n [DEFINER = { user | CURRENT_USER }]\n TRIGGER trigger_name\n trigger_time trigger_event\n ON tbl_name FOR EACH ROW\n [trigger_order]\n trigger_body\n\ntrigger_time: { BEFORE | AFTER }\n\ntrigger_event: { INSERT | UPDATE | DELETE }\n\ntrigger_order: { FOLLOWS | PRECEDES } other_trigger_name\n\nThis statement creates a new trigger. A trigger is a named database\nobject that is associated with a table, and that activates when a\nparticular event occurs for the table. The trigger becomes associated\nwith the table named tbl_name, which must refer to a permanent table.\nYou cannot associate a trigger with a TEMPORARY table or a view.\n\nTrigger names exist in the schema namespace, meaning that all triggers\nmust have unique names within a schema. Triggers in different schemas\ncan have the same name.\n\nThis section describes CREATE TRIGGER syntax. For additional\ndiscussion, see\nhttp://dev.mysql.com/doc/refman/5.7/en/trigger-syntax.html.\n\nCREATE TRIGGER requires the TRIGGER privilege for the table associated\nwith the trigger. The statement might also require the SUPER privilege,\ndepending on the DEFINER value, as described later in this section. If\nbinary logging is enabled, CREATE TRIGGER might require the SUPER\nprivilege, as described in\nhttp://dev.mysql.com/doc/refman/5.7/en/stored-programs-logging.html.\n\nThe DEFINER clause determines the security context to be used when\nchecking access privileges at trigger activation time, as described\nlater in this section.\n\ntrigger_time is the trigger action time. It can be BEFORE or AFTER to\nindicate that the trigger activates before or after each row to be\nmodified.\n\nBasic column value checks occur prior to trigger activation, so you\ncannot use BEFORE triggers to convert values inappropriate for the\ncolumn type to valid values.\n\ntrigger_event indicates the kind of operation that activates the\ntrigger. These trigger_event values are permitted:\n\no INSERT: The trigger activates whenever a new row is inserted into the\n table; for example, through INSERT, LOAD DATA, and REPLACE\n statements.\n\no UPDATE: The trigger activates whenever a row is modified; for\n example, through UPDATE statements.\n\no DELETE: The trigger activates whenever a row is deleted from the\n table; for example, through DELETE and REPLACE statements. DROP TABLE\n and TRUNCATE TABLE statements on the table do not activate this\n trigger, because they do not use DELETE. Dropping a partition does\n not activate DELETE triggers, either.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/create-trigger.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/create-trigger.html'); +INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (118,8,'CREATE TABLE','Syntax:\nCREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name\n (create_definition,...)\n [table_options]\n [partition_options]\n\nCREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name\n [(create_definition,...)]\n [table_options]\n [partition_options]\n [IGNORE | REPLACE]\n [AS] query_expression\n\nCREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name\n { LIKE old_tbl_name | (LIKE old_tbl_name) }\n\ncreate_definition:\n col_name column_definition\n | {INDEX|KEY} [index_name] [index_type] (key_part,...)\n [index_option] ...\n | {FULLTEXT|SPATIAL} [INDEX|KEY] [index_name] (key_part,...)\n [index_option] ...\n | [CONSTRAINT [symbol]] PRIMARY KEY\n [index_type] (key_part,...)\n [index_option] ...\n | [CONSTRAINT [symbol]] UNIQUE [INDEX|KEY]\n [index_name] [index_type] (key_part,...)\n [index_option] ...\n | [CONSTRAINT [symbol]] FOREIGN KEY\n [index_name] (col_name,...)\n reference_definition\n | CHECK (expr)\n\ncolumn_definition:\n data_type [NOT NULL | NULL] [DEFAULT default_value]\n [AUTO_INCREMENT] [UNIQUE [KEY]] [[PRIMARY] KEY]\n [COMMENT \'string\']\n [COLLATE collation_name]\n [COLUMN_FORMAT {FIXED|DYNAMIC|DEFAULT}]\n [STORAGE {DISK|MEMORY}]\n [reference_definition]\n | data_type\n [COLLATE collation_name]\n [GENERATED ALWAYS] AS (expr)\n [VIRTUAL | STORED] [NOT NULL | NULL]\n [UNIQUE [KEY]] [[PRIMARY] KEY]\n [COMMENT \'string\']\n [reference_definition]\n\ndata_type:\n (see http://dev.mysql.com/doc/refman/5.7/en/data-types.html)\n\nkey_part:\n col_name [(length)] [ASC | DESC]\n\nindex_type:\n USING {BTREE | HASH}\n\nindex_option:\n KEY_BLOCK_SIZE [=] value\n | index_type\n | WITH PARSER parser_name\n | COMMENT \'string\'\n\nreference_definition:\n REFERENCES tbl_name (key_part,...)\n [MATCH FULL | MATCH PARTIAL | MATCH SIMPLE]\n [ON DELETE reference_option]\n [ON UPDATE reference_option]\n\nreference_option:\n RESTRICT | CASCADE | SET NULL | NO ACTION | SET DEFAULT\n\ntable_options:\n table_option [[,] table_option] ...\n\ntable_option:\n AUTO_INCREMENT [=] value\n | AVG_ROW_LENGTH [=] value\n | [DEFAULT] CHARACTER SET [=] charset_name\n | CHECKSUM [=] {0 | 1}\n | [DEFAULT] COLLATE [=] collation_name\n | COMMENT [=] \'string\'\n | COMPRESSION [=] {\'ZLIB\'|\'LZ4\'|\'NONE\'}\n | CONNECTION [=] \'connect_string\'\n | {DATA|INDEX} DIRECTORY [=] \'absolute path to directory\'\n | DELAY_KEY_WRITE [=] {0 | 1}\n | ENCRYPTION [=] {\'Y\' | \'N\'}\n | ENGINE [=] engine_name\n | INSERT_METHOD [=] { NO | FIRST | LAST }\n | KEY_BLOCK_SIZE [=] value\n | MAX_ROWS [=] value\n | MIN_ROWS [=] value\n | PACK_KEYS [=] {0 | 1 | DEFAULT}\n | PASSWORD [=] \'string\'\n | ROW_FORMAT [=] {DEFAULT|DYNAMIC|FIXED|COMPRESSED|REDUNDANT|COMPACT}\n | STATS_AUTO_RECALC [=] {DEFAULT|0|1}\n | STATS_PERSISTENT [=] {DEFAULT|0|1}\n | STATS_SAMPLE_PAGES [=] value\n | TABLESPACE tablespace_name [STORAGE {DISK|MEMORY}]\n | UNION [=] (tbl_name[,tbl_name]...)\n\npartition_options:\n PARTITION BY\n { [LINEAR] HASH(expr)\n | [LINEAR] KEY [ALGORITHM={1|2}] (column_list)\n | RANGE{(expr) | COLUMNS(column_list)}\n | LIST{(expr) | COLUMNS(column_list)} }\n [PARTITIONS num]\n [SUBPARTITION BY\n { [LINEAR] HASH(expr)\n | [LINEAR] KEY [ALGORITHM={1|2}] (column_list) }\n [SUBPARTITIONS num]\n ]\n [(partition_definition [, partition_definition] ...)]\n\npartition_definition:\n PARTITION partition_name\n [VALUES\n {LESS THAN {(expr | value_list) | MAXVALUE}\n |\n IN (value_list)}]\n [[STORAGE] ENGINE [=] engine_name]\n [COMMENT [=] \'string\' ]\n [DATA DIRECTORY [=] \'data_dir\']\n [INDEX DIRECTORY [=] \'index_dir\']\n [MAX_ROWS [=] max_number_of_rows]\n [MIN_ROWS [=] min_number_of_rows]\n [TABLESPACE [=] tablespace_name]\n [(subpartition_definition [, subpartition_definition] ...)]\n\nsubpartition_definition:\n SUBPARTITION logical_name\n [[STORAGE] ENGINE [=] engine_name]\n [COMMENT [=] \'string\' ]\n [DATA DIRECTORY [=] \'data_dir\']\n [INDEX DIRECTORY [=] \'index_dir\']\n [MAX_ROWS [=] max_number_of_rows]\n [MIN_ROWS [=] min_number_of_rows]\n [TABLESPACE [=] tablespace_name]\n\nquery_expression:\n SELECT ... (Some valid select or union statement)\n\nCREATE TABLE creates a table with the given name. You must have the\nCREATE privilege for the table.\n\nBy default, tables are created in the default database, using the\nInnoDB storage engine. An error occurs if the table exists, if there is\nno default database, or if the database does not exist.\n\nFor information about the physical representation of a table, see\nhttp://dev.mysql.com/doc/refman/5.7/en/create-table-files.html.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/create-table.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/create-table.html'); +INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (119,8,'CREATE TABLESPACE','Syntax:\nCREATE TABLESPACE tablespace_name\n\n InnoDB and NDB:\n ADD DATAFILE \'file_name\'\n\n InnoDB only:\n [FILE_BLOCK_SIZE = value]\n\n NDB only:\n USE LOGFILE GROUP logfile_group\n [EXTENT_SIZE [=] extent_size]\n [INITIAL_SIZE [=] initial_size]\n [AUTOEXTEND_SIZE [=] autoextend_size]\n [MAX_SIZE [=] max_size]\n [NODEGROUP [=] nodegroup_id]\n [WAIT]\n [COMMENT [=] \'string\']\n\n InnoDB and NDB:\n [ENGINE [=] engine_name]\n\nThis statement is used to create a tablespace. The precise syntax and\nsemantics depend on the storage engine used. In standard MySQL 5.7\nreleases, this is always an InnoDB tablespace. MySQL NDB Cluster 7.5\nalso supports tablespaces using the NDB storage engine in addition to\nthose using InnoDB.\n\no http://dev.mysql.com/doc/refman/5.7/en/create-tablespace.html#create-\n tablespace-innodb\n\no http://dev.mysql.com/doc/refman/5.7/en/create-tablespace.html#create-\n tablespace-ndb\n\no http://dev.mysql.com/doc/refman/5.7/en/create-tablespace.html#create-\n tablespace-options\n\no http://dev.mysql.com/doc/refman/5.7/en/create-tablespace.html#create-\n tablespace-notes\n\no http://dev.mysql.com/doc/refman/5.7/en/create-tablespace.html#create-\n tablespace-innodb-examples\n\no http://dev.mysql.com/doc/refman/5.7/en/create-tablespace.html#create-\n tablespace-ndb-examples\n\nConsiderations for InnoDB\n\nCREATE TABLESPACE syntax is used to create general tablespaces. A\ngeneral tablespace is a shared tablespace. It can hold multiple tables,\nand supports all table row formats. General tablespaces can be created\nin a location relative to or independent of the data directory.\n\nAfter creating an InnoDB general tablespace, you can use CREATE TABLE\ntbl_name ... TABLESPACE [=] tablespace_name or ALTER TABLE tbl_name\nTABLESPACE [=] tablespace_name to add tables to the tablespace. For\nmore information, see\nhttp://dev.mysql.com/doc/refman/5.7/en/general-tablespaces.html.\n\nConsiderations for NDB Cluster\n\nThis statement is used to create a tablespace, which can contain one or\nmore data files, providing storage space for NDB Cluster Disk Data\ntables (see\nhttp://dev.mysql.com/doc/refman/5.7/en/mysql-cluster-disk-data.html).\nOne data file is created and added to the tablespace using this\nstatement. Additional data files may be added to the tablespace by\nusing the ALTER TABLESPACE statement (see [HELP ALTER TABLESPACE]).\n\n*Note*:\n\nAll NDB Cluster Disk Data objects share the same namespace. This means\nthat each Disk Data object must be uniquely named (and not merely each\nDisk Data object of a given type). For example, you cannot have a\ntablespace and a log file group with the same name, or a tablespace and\na data file with the same name.\n\nA log file group of one or more UNDO log files must be assigned to the\ntablespace to be created with the USE LOGFILE GROUP clause.\nlogfile_group must be an existing log file group created with CREATE\nLOGFILE GROUP (see [HELP CREATE LOGFILE GROUP]). Multiple tablespaces\nmay use the same log file group for UNDO logging.\n\nWhen setting EXTENT_SIZE or INITIAL_SIZE, you may optionally follow the\nnumber with a one-letter abbreviation for an order of magnitude,\nsimilar to those used in my.cnf. Generally, this is one of the letters\nM (for megabytes) or G (for gigabytes).\n\nINITIAL_SIZE and EXTENT_SIZE are subject to rounding as follows:\n\no EXTENT_SIZE is rounded up to the nearest whole multiple of 32K.\n\no INITIAL_SIZE is rounded down to the nearest whole multiple of 32K;\n this result is rounded up to the nearest whole multiple of\n EXTENT_SIZE (after any rounding).\n\nThe rounding just described is done explicitly, and a warning is issued\nby the MySQL Server when any such rounding is performed. The rounded\nvalues are also used by the NDB kernel for calculating\nINFORMATION_SCHEMA.FILES column values and other purposes. However, to\navoid an unexpected result, we suggest that you always use whole\nmultiples of 32K in specifying these options.\n\nWhen CREATE TABLESPACE is used with ENGINE [=] NDB, a tablespace and\nassociated data file are created on each Cluster data node. You can\nverify that the data files were created and obtain information about\nthem by querying the INFORMATION_SCHEMA.FILES table. (See the example\nlater in this section.)\n\n(See http://dev.mysql.com/doc/refman/5.7/en/files-table.html.)\n\nOptions\n\no ADD DATAFILE: Defines the name of a tablespace data file; this option\n is always required. An InnoDB tablespace supports only a single data\n file, whose name must include a .ibd extension. An NDB Cluster\n tablespace supports multiple data files which can have any legal file\n names; more data files can be added to an NDB Cluster tablespace\n following its creation by using an ALTER TABLESPACE statement.\n\n *Note*:\n\n ALTER TABLESPACE is not supported by InnoDB.\n\n To place the data file in a location outside of the data directory\n (datadir), include an absolute directory path or a path relative to\n the data directory. If you do not specify a path, the tablespace is\n created in the data directory. An isl file is created in the data\n directory when an InnoDB tablespace is created outside of the data\n directory.\n\n To avoid conflicts with implicitly created file-per-table\n tablespaces, creating a general tablespace in a subdirectory under\n the data directory is not supported. When creating a general\n tablespace outside of the data directory, the directory must exist\n prior to creating the tablespace.\n\n The file_name, including any specified path, must be quoted with\n single or double quotations marks. File names (not counting the file\n extension) and directory names must be at least one byte in length.\n Zero length file names and directory names are not supported.\n\no FILE_BLOCK_SIZE: This option---which is specific to InnoDB, and is\n ignored by NDB---defines the block size for the tablespace data file.\n Values can be specified in bytes or kilobytes. For example, an 8\n kilobyte file block size can be specified as 8192 or 8K. If you do\n not specify this option, FILE_BLOCK_SIZE defaults to the\n innodb_page_size value. FILE_BLOCK_SIZE is required when you intend\n to use the tablespace for storing compressed InnoDB tables\n (ROW_FORMAT=COMPRESSED). In this case, you must define the tablespace\n FILE_BLOCK_SIZE when creating the tablespace.\n\n If FILE_BLOCK_SIZE is equal the innodb_page_size value, the\n tablespace can contain only tables having an uncompressed row format\n (COMPACT, REDUNDANT, and DYNAMIC). Tables with a COMPRESSED row\n format have a different physical page size than uncompressed tables.\n Therefore, compressed tables cannot coexist in the same tablespace as\n uncompressed tables.\n\n For a general tablespace to contain compressed tables,\n FILE_BLOCK_SIZE must be specified, and the FILE_BLOCK_SIZE value must\n be a valid compressed page size in relation to the innodb_page_size\n value. Also, the physical page size of the compressed table\n (KEY_BLOCK_SIZE) must be equal to FILE_BLOCK_SIZE/1024. For example,\n if innodb_page_size=16K, and FILE_BLOCK_SIZE=8K, the KEY_BLOCK_SIZE\n of the table must be 8. For more information, see\n http://dev.mysql.com/doc/refman/5.7/en/general-tablespaces.html.\n\no USE LOGFILE GROUP: Required for NDB, this is the name of a log file\n group previously created using CREATE LOGFILE GROUP. Not supported\n for InnoDB, where it fails with an error.\n\no EXTENT_SIZE: This option is specific to NDB, and is not supported by\n InnoDB, where it fails with an error. EXTENT_SIZE sets the size, in\n bytes, of the extents used by any files belonging to the tablespace.\n The default value is 1M. The minimum size is 32K, and theoretical\n maximum is 2G, although the practical maximum size depends on a\n number of factors. In most cases, changing the extent size does not\n have any measurable effect on performance, and the default value is\n recommended for all but the most unusual situations.\n\n An extent is a unit of disk space allocation. One extent is filled\n with as much data as that extent can contain before another extent is\n used. In theory, up to 65,535 (64K) extents may used per data file;\n however, the recommended maximum is 32,768 (32K). The recommended\n maximum size for a single data file is 32G---that is, 32K extents x 1\n MB per extent. In addition, once an extent is allocated to a given\n partition, it cannot be used to store data from a different\n partition; an extent cannot store data from more than one partition.\n This means, for example that a tablespace having a single datafile\n whose INITIAL_SIZE (described in the following item) is 256 MB and\n whose EXTENT_SIZE is 128M has just two extents, and so can be used to\n store data from at most two different disk data table partitions.\n\n You can see how many extents remain free in a given data file by\n querying the INFORMATION_SCHEMA.FILES table, and so derive an\n estimate for how much space remains free in the file. For further\n discussion and examples, see\n http://dev.mysql.com/doc/refman/5.7/en/files-table.html.\n\no INITIAL_SIZE: This option is specific to NDB, and is not supported by\n InnoDB, where it fails with an error.\n\n The INITIAL_SIZE parameter sets the total size in bytes of the data\n file that was specific using ADD DATATFILE. Once this file has been\n created, its size cannot be changed; however, you can add more data\n files to the tablespace using ALTER TABLESPACE ... ADD DATAFILE.\n\n INITIAL_SIZE is optional; its default value is 134217728 (128 MB).\n\n On 32-bit systems, the maximum supported value for INITIAL_SIZE is\n 4294967296 (4 GB).\n\no AUTOEXTEND_SIZE: Currently ignored by MySQL; reserved for possible\n future use. Has no effect in any release of MySQL 5.7 or MySQL NDB\n Cluster 7.5, regardless of the storage engine used.\n\no MAX_SIZE: Currently ignored by MySQL; reserved for possible future\n use. Has no effect in any release of MySQL 5.7 or MySQL NDB Cluster\n 7.5, regardless of the storage engine used.\n\no NODEGROUP: Currently ignored by MySQL; reserved for possible future\n use. Has no effect in any release of MySQL 5.7 or MySQL NDB Cluster\n 7.5, regardless of the storage engine used.\n\no WAIT: Currently ignored by MySQL; reserved for possible future use.\n Has no effect in any release of MySQL 5.7 or MySQL NDB Cluster 7.5,\n regardless of the storage engine used.\n\no COMMENT: Currently ignored by MySQL; reserved for possible future\n use. Has no effect in any release of MySQL 5.7 or MySQL NDB Cluster\n 7.5, regardless of the storage engine used.\n\no ENGINE: Defines the storage engine which uses the tablespace, where\n engine_name is the name of the storage engine. Currently, only the\n InnoDB storage engine is supported by standard MySQL 5.7 releases.\n MySQL NDB Cluster 7.5 supports both NDB and InnoDB tablespaces. The\n value of the default_storage_engine system variable is used for\n ENGINE if the option is not specified.\n\nNotes\n\no For the rules covering the naming of MySQL tablespaces, see\n http://dev.mysql.com/doc/refman/5.7/en/identifiers.html. In addition\n to these rules, the slash character ("/") is not permitted, nor can\n you use names beginning with innodb_, as this prefix is reserved for\n system use.\n\no Tablespaces do not support temporary tables.\n\no innodb_file_per_table, innodb_file_format, and innodb_file_format_max\n settings have no influence on CREATE TABLESPACE operations.\n innodb_file_per_table does not need to be enabled. General\n tablespaces support all table row formats regardless of file format\n settings. Likewise, general tablespaces support the addition of\n tables of any row format using CREATE TABLE ... TABLESPACE,\n regardless of file format settings.\n\no innodb_strict_mode is not applicable to general tablespaces.\n Tablespace management rules are strictly enforced independently of\n innodb_strict_mode. If CREATE TABLESPACE parameters are incorrect or\n incompatible, the operation fails regardless of the\n innodb_strict_mode setting. When a table is added to a general\n tablespace using CREATE TABLE ... TABLESPACE or ALTER TABLE ...\n TABLESPACE, innodb_strict_mode is ignored but the statement is\n evaluated as if innodb_strict_mode is enabled.\n\no Use DROP TABLESPACE to remove a tablespace. All tables must be\n dropped from a tablespace using DROP TABLE prior to dropping the\n tablespace. Before dropping an NDB Cluster tablespace you must also\n remove all its data files using one or more ALTER TABLESPACE ... DROP\n DATATFILE statements. See\n http://dev.mysql.com/doc/refman/5.7/en/mysql-cluster-disk-data-object\n s.html.\n\no All parts of an InnoDB table added to an InnoDB general tablespace\n reside in the general tablespace, including indexes and BLOB pages.\n\n For an NDB table assigned to a tablespace, only those columns which\n are not indexed are stored on disk, and actually use the tablespace\n data files. Indexes and indexed columns for all NDB tables are always\n kept in memory.\n\no Similar to the system tablespace, truncating or dropping tables\n stored in a general tablespace creates free space internally in the\n general tablespace .ibd data file which can only be used for new\n InnoDB data. Space is not released back to the operating system as it\n is for file-per-table tablespaces.\n\no A general tablespace is not associated with any database or schema.\n\no ALTER TABLE ... DISCARD TABLESPACE and ALTER TABLE ...IMPORT\n TABLESPACE are not supported for tables that belong to a general\n tablespace.\n\no The server uses tablespace-level metadata locking for DDL that\n references general tablespaces. By comparison, the server uses\n table-level metadata locking for DDL that references file-per-table\n tablespaces.\n\no A generated or existing tablespace cannot be changed to a general\n tablespace.\n\no Tables stored in a general tablespace can only be opened in MySQL\n 5.7.6 or later due to the addition of new table flags.\n\no There is no conflict between general tablespace names and\n file-per-table tablespace names. The "/" character, which is present\n in file-per-table tablespace names, is not permitted in general\n tablespace names.\n\no mysqldump and mysqlpump do not dump InnoDB CREATE TABLESPACE\n statements.\n\nInnoDB Examples\n\nThis example demonstrates creating a general tablespace and adding\nthree uncompressed tables of different row formats.\n\nmysql> CREATE TABLESPACE `ts1` ADD DATAFILE \'ts1.ibd\' ENGINE=INNODB;\n\nmysql> CREATE TABLE t1 (c1 INT PRIMARY KEY) TABLESPACE ts1 ROW_FORMAT=REDUNDANT;\n\nmysql> CREATE TABLE t2 (c1 INT PRIMARY KEY) TABLESPACE ts1 ROW_FORMAT=COMPACT;\n\nmysql> CREATE TABLE t3 (c1 INT PRIMARY KEY) TABLESPACE ts1 ROW_FORMAT=DYNAMIC;\n\nThis example demonstrates creating a general tablespace and adding a\ncompressed table. The example assumes a default innodb_page_size value\nof 16K. The FILE_BLOCK_SIZE of 8192 requires that the compressed table\nhave a KEY_BLOCK_SIZE of 8.\n\nmysql> CREATE TABLESPACE `ts2` ADD DATAFILE \'ts2.ibd\' FILE_BLOCK_SIZE = 8192 Engine=InnoDB;\n\nmysql> CREATE TABLE t4 (c1 INT PRIMARY KEY) TABLESPACE ts2 ROW_FORMAT=COMPRESSED KEY_BLOCK_SIZE=8;\n\nNDB Example\n\nSuppose that you wish to create an NDB Cluster Disk Data tablespace\nnamed myts using a datafile named mydata-1.dat. An NDB tablespace\nalways requires the use of a log file group consisting of one or more\nundo log files. For this example, we first create a log file group\nnamed mylg that contains one undo long file named myundo-1.dat, using\nthe CREATE LOGFILE GROUP statement shown here:\n\nmysql> CREATE LOGFILE GROUP myg1\n -> ADD UNDOFILE \'myundo-1.dat\'\n -> ENGINE=NDB;\nQuery OK, 0 rows affected (3.29 sec)\n\nNow you can create the tablespace previously described using the\nfollowing statement:\n\nmysql> CREATE TABLESPACE myts\n -> ADD DATAFILE \'mydata-1.dat\'\n -> USE LOGFILE GROUP mylg\n -> ENGINE=NDB;\nQuery OK, 0 rows affected (2.98 sec)\n\nYou can now create a Disk Data table using a CREATE TABLE statement\nwith the TABLESPACE and STORAGE DISK options, similar to what is shown\nhere:\n\nmysql> CREATE TABLE mytable (\n -> id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,\n -> lname VARCHAR(50) NOT NULL,\n -> fname VARCHAR(50) NOT NULL,\n -> dob DATE NOT NULL,\n -> joined DATE NOT NULL,\n -> INDEX(last_name, first_name)\n -> )\n -> TABLESPACE myts STORAGE DISK\n -> ENGINE=NDB;\nQuery OK, 0 rows affected (1.41 sec)\n\nIt is important to note that only the dob and joined columns from\nmytable are actually stored on disk, due to the fact that the id,\nlname, and fname columns are all indexed.\n\nAs mentioned previously, when CREATE TABLESPACE is used with ENGINE [=]\nNDB, a tablespace and associated data file are created on each NDB\nCluster data node. You can verify that the data files were created and\nobtain information about them by querying the INFORMATION_SCHEMA.FILES\ntable, as shown here:\n\nmysql> SELECT FILE_NAME, FILE_TYPE, LOGFILE_GROUP_NAME, STATUS, EXTRA\n -> FROM INFORMATION_SCHEMA.FILES\n -> WHERE TABLESPACE_NAME = \'myts\';\n\n+--------------+------------+--------------------+--------+----------------+\n| file_name | file_type | logfile_group_name | status | extra |\n+--------------+------------+--------------------+--------+----------------+\n| mydata-1.dat | DATAFILE | mylg | NORMAL | CLUSTER_NODE=5 |\n| mydata-1.dat | DATAFILE | mylg | NORMAL | CLUSTER_NODE=6 |\n| NULL | TABLESPACE | mylg | NORMAL | NULL |\n+--------------+------------+--------------------+--------+----------------+\n3 rows in set (0.01 sec)\n\nFor additional information and examples, see\nhttp://dev.mysql.com/doc/refman/5.7/en/mysql-cluster-disk-data-objects.\nhtml.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/create-tablespace.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/create-tablespace.html'); +INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (120,8,'CREATE TRIGGER','Syntax:\nCREATE\n [DEFINER = user]\n TRIGGER trigger_name\n trigger_time trigger_event\n ON tbl_name FOR EACH ROW\n [trigger_order]\n trigger_body\n\ntrigger_time: { BEFORE | AFTER }\n\ntrigger_event: { INSERT | UPDATE | DELETE }\n\ntrigger_order: { FOLLOWS | PRECEDES } other_trigger_name\n\nThis statement creates a new trigger. A trigger is a named database\nobject that is associated with a table, and that activates when a\nparticular event occurs for the table. The trigger becomes associated\nwith the table named tbl_name, which must refer to a permanent table.\nYou cannot associate a trigger with a TEMPORARY table or a view.\n\nTrigger names exist in the schema namespace, meaning that all triggers\nmust have unique names within a schema. Triggers in different schemas\ncan have the same name.\n\nThis section describes CREATE TRIGGER syntax. For additional\ndiscussion, see\nhttp://dev.mysql.com/doc/refman/5.7/en/trigger-syntax.html.\n\nCREATE TRIGGER requires the TRIGGER privilege for the table associated\nwith the trigger. If the DEFINER clause is present, the privileges\nrequired depend on the user value, as discussed in\nhttp://dev.mysql.com/doc/refman/5.7/en/stored-objects-security.html. If\nbinary logging is enabled, CREATE TRIGGER might require the SUPER\nprivilege, as discussed in\nhttp://dev.mysql.com/doc/refman/5.7/en/stored-programs-logging.html.\n\nThe DEFINER clause determines the security context to be used when\nchecking access privileges at trigger activation time, as described\nlater in this section.\n\ntrigger_time is the trigger action time. It can be BEFORE or AFTER to\nindicate that the trigger activates before or after each row to be\nmodified.\n\nBasic column value checks occur prior to trigger activation, so you\ncannot use BEFORE triggers to convert values inappropriate for the\ncolumn type to valid values.\n\ntrigger_event indicates the kind of operation that activates the\ntrigger. These trigger_event values are permitted:\n\no INSERT: The trigger activates whenever a new row is inserted into the\n table; for example, through INSERT, LOAD DATA, and REPLACE\n statements.\n\no UPDATE: The trigger activates whenever a row is modified; for\n example, through UPDATE statements.\n\no DELETE: The trigger activates whenever a row is deleted from the\n table; for example, through DELETE and REPLACE statements. DROP TABLE\n and TRUNCATE TABLE statements on the table do not activate this\n trigger, because they do not use DELETE. Dropping a partition does\n not activate DELETE triggers, either.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/create-trigger.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/create-trigger.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (121,1,'CREATE USER','Syntax:\nCREATE USER [IF NOT EXISTS]\n user [auth_option] [, user [auth_option]] ...\n [REQUIRE {NONE | tls_option [[AND] tls_option] ...}]\n [WITH resource_option [resource_option] ...]\n [password_option | lock_option] ...\n\nuser:\n (see )\n\nauth_option: {\n IDENTIFIED BY \'auth_string\'\n | IDENTIFIED WITH auth_plugin\n | IDENTIFIED WITH auth_plugin BY \'auth_string\'\n | IDENTIFIED WITH auth_plugin AS \'hash_string\'\n | IDENTIFIED BY PASSWORD \'hash_string\'\n}\n\ntls_option: {\n SSL\n | X509\n | CIPHER \'cipher\'\n | ISSUER \'issuer\'\n | SUBJECT \'subject\'\n}\n\nresource_option: {\n MAX_QUERIES_PER_HOUR count\n | MAX_UPDATES_PER_HOUR count\n | MAX_CONNECTIONS_PER_HOUR count\n | MAX_USER_CONNECTIONS count\n}\n\npassword_option: {\n PASSWORD EXPIRE\n | PASSWORD EXPIRE DEFAULT\n | PASSWORD EXPIRE NEVER\n | PASSWORD EXPIRE INTERVAL N DAY\n}\n\nlock_option: {\n ACCOUNT LOCK\n | ACCOUNT UNLOCK\n}\n\nThe CREATE USER statement creates new MySQL accounts. It enables\nauthentication, SSL/TLS, resource-limit, and password-management\nproperties to be established for new accounts, and controls whether\naccounts are initially locked or unlocked.\n\nTo use CREATE USER, you must have the global CREATE USER privilege, or\nthe INSERT privilege for the mysql system database. When the read_only\nsystem variable is enabled, CREATE USER additionally requires the SUPER\nprivilege.\n\nAn error occurs if you try to create an account that already exists. If\nthe IF NOT EXISTS clause is given, the statement produces a warning for\neach named account that already exists, rather than an error.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/create-user.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/create-user.html'); -INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (122,8,'CREATE VIEW','Syntax:\nCREATE\n [OR REPLACE]\n [ALGORITHM = {UNDEFINED | MERGE | TEMPTABLE}]\n [DEFINER = { user | CURRENT_USER }]\n [SQL SECURITY { DEFINER | INVOKER }]\n VIEW view_name [(column_list)]\n AS select_statement\n [WITH [CASCADED | LOCAL] CHECK OPTION]\n\nThe CREATE VIEW statement creates a new view, or replaces an existing\nview if the OR REPLACE clause is given. If the view does not exist,\nCREATE OR REPLACE VIEW is the same as CREATE VIEW. If the view does\nexist, CREATE OR REPLACE VIEW replaces it.\n\nFor information about restrictions on view use, see\nhttp://dev.mysql.com/doc/refman/5.7/en/view-restrictions.html.\n\nThe select_statement is a SELECT statement that provides the definition\nof the view. (Selecting from the view selects, in effect, using the\nSELECT statement.) The select_statement can select from base tables or\nother views.\n\nThe view definition is "frozen" at creation time and is not affected by\nsubsequent changes to the definitions of the underlying tables. For\nexample, if a view is defined as SELECT * on a table, new columns added\nto the table later do not become part of the view, and columns dropped\nfrom the table will result in an error when selecting from the view.\n\nThe ALGORITHM clause affects how MySQL processes the view. The DEFINER\nand SQL SECURITY clauses specify the security context to be used when\nchecking access privileges at view invocation time. The WITH CHECK\nOPTION clause can be given to constrain inserts or updates to rows in\ntables referenced by the view. These clauses are described later in\nthis section.\n\nThe CREATE VIEW statement requires the CREATE VIEW privilege for the\nview, and some privilege for each column selected by the SELECT\nstatement. For columns used elsewhere in the SELECT statement, you must\nhave the SELECT privilege. If the OR REPLACE clause is present, you\nmust also have the DROP privilege for the view. CREATE VIEW might also\nrequire the SUPER privilege, depending on the DEFINER value, as\ndescribed later in this section.\n\nWhen a view is referenced, privilege checking occurs as described later\nin this section.\n\nA view belongs to a database. By default, a new view is created in the\ndefault database. To create the view explicitly in a given database,\nuse db_name.view_name syntax to qualify the view name with the database\nname:\n\nCREATE VIEW test.v AS SELECT * FROM t;\n\nUnqualified table or view names in the SELECT statement are also\ninterpreted with respect to the default database. A view can refer to\ntables or views in other databases by qualifying the table or view name\nwith the appropriate database name.\n\nWithin a database, base tables and views share the same namespace, so a\nbase table and a view cannot have the same name.\n\nColumns retrieved by the SELECT statement can be simple references to\ntable columns, or expressions that use functions, constant values,\noperators, and so forth.\n\nA view must have unique column names with no duplicates, just like a\nbase table. By default, the names of the columns retrieved by the\nSELECT statement are used for the view column names. To define explicit\nnames for the view columns, specify the optional column_list clause as\na list of comma-separated identifiers. The number of names in\ncolumn_list must be the same as the number of columns retrieved by the\nSELECT statement.\n\nA view can be created from many kinds of SELECT statements. It can\nrefer to base tables or other views. It can use joins, UNION, and\nsubqueries. The SELECT need not even refer to any tables:\n\nCREATE VIEW v_today (today) AS SELECT CURRENT_DATE;\n\nThe following example defines a view that selects two columns from\nanother table as well as an expression calculated from those columns:\n\nmysql> CREATE TABLE t (qty INT, price INT);\nmysql> INSERT INTO t VALUES(3, 50);\nmysql> CREATE VIEW v AS SELECT qty, price, qty*price AS value FROM t;\nmysql> SELECT * FROM v;\n+------+-------+-------+\n| qty | price | value |\n+------+-------+-------+\n| 3 | 50 | 150 |\n+------+-------+-------+\n\nA view definition is subject to the following restrictions:\n\no The SELECT statement cannot refer to system variables or user-defined\n variables.\n\no Within a stored program, the SELECT statement cannot refer to program\n parameters or local variables.\n\no The SELECT statement cannot refer to prepared statement parameters.\n\no Any table or view referred to in the definition must exist. If, after\n the view has been created, a table or view that the definition refers\n to is dropped, use of the view results in an error. To check a view\n definition for problems of this kind, use the CHECK TABLE statement.\n\no The definition cannot refer to a TEMPORARY table, and you cannot\n create a TEMPORARY view.\n\no You cannot associate a trigger with a view.\n\no Aliases for column names in the SELECT statement are checked against\n the maximum column length of 64 characters (not the maximum alias\n length of 256 characters).\n\nORDER BY is permitted in a view definition, but it is ignored if you\nselect from a view using a statement that has its own ORDER BY.\n\nFor other options or clauses in the definition, they are added to the\noptions or clauses of the statement that references the view, but the\neffect is undefined. For example, if a view definition includes a LIMIT\nclause, and you select from the view using a statement that has its own\nLIMIT clause, it is undefined which limit applies. This same principle\napplies to options such as ALL, DISTINCT, or SQL_SMALL_RESULT that\nfollow the SELECT keyword, and to clauses such as INTO, FOR UPDATE,\nLOCK IN SHARE MODE, and PROCEDURE.\n\nThe results obtained from a view may be affected if you change the\nquery processing environment by changing system variables:\n\nmysql> CREATE VIEW v (mycol) AS SELECT \'abc\';\nQuery OK, 0 rows affected (0.01 sec)\n\nmysql> SET sql_mode = \'\';\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT "mycol" FROM v;\n+-------+\n| mycol |\n+-------+\n| mycol |\n+-------+\n1 row in set (0.01 sec)\n\nmysql> SET sql_mode = \'ANSI_QUOTES\';\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT "mycol" FROM v;\n+-------+\n| mycol |\n+-------+\n| abc |\n+-------+\n1 row in set (0.00 sec)\n\nThe DEFINER and SQL SECURITY clauses determine which MySQL account to\nuse when checking access privileges for the view when a statement is\nexecuted that references the view. The valid SQL SECURITY\ncharacteristic values are DEFINER (the default) and INVOKER. These\nindicate that the required privileges must be held by the user who\ndefined or invoked the view, respectively.\n\nIf a user value is given for the DEFINER clause, it should be a MySQL\naccount specified as \'user_name\'@\'host_name\', CURRENT_USER, or\nCURRENT_USER(). The default DEFINER value is the user who executes the\nCREATE VIEW statement. This is the same as specifying DEFINER =\nCURRENT_USER explicitly.\n\nIf the DEFINER clause is present, these rules determine the valid\nDEFINER user values:\n\no If you do not have the SUPER privilege, the only valid user value is\n your own account, either specified literally or by using\n CURRENT_USER. You cannot set the definer to some other account.\n\no If you have the SUPER privilege, you can specify any syntactically\n valid account name. If the account does not exist, a warning is\n generated.\n\no Although it is possible to create a view with a nonexistent DEFINER\n account, an error occurs when the view is referenced if the SQL\n SECURITY value is DEFINER but the definer account does not exist.\n\nFor more information about view security, see\nhttp://dev.mysql.com/doc/refman/5.7/en/stored-programs-security.html.\n\nWithin a view definition, CURRENT_USER returns the view\'s DEFINER value\nby default. For views defined with the SQL SECURITY INVOKER\ncharacteristic, CURRENT_USER returns the account for the view\'s\ninvoker. For information about user auditing within views, see\nhttp://dev.mysql.com/doc/refman/5.7/en/account-activity-auditing.html.\n\nWithin a stored routine that is defined with the SQL SECURITY DEFINER\ncharacteristic, CURRENT_USER returns the routine\'s DEFINER value. This\nalso affects a view defined within such a routine, if the view\ndefinition contains a DEFINER value of CURRENT_USER.\n\nMySQL checks view privileges like this:\n\no At view definition time, the view creator must have the privileges\n needed to use the top-level objects accessed by the view. For\n example, if the view definition refers to table columns, the creator\n must have some privilege for each column in the select list of the\n definition, and the SELECT privilege for each column used elsewhere\n in the definition. If the definition refers to a stored function,\n only the privileges needed to invoke the function can be checked. The\n privileges required at function invocation time can be checked only\n as it executes: For different invocations, different execution paths\n within the function might be taken.\n\no The user who references a view must have appropriate privileges to\n access it (SELECT to select from it, INSERT to insert into it, and so\n forth.)\n\no When a view has been referenced, privileges for objects accessed by\n the view are checked against the privileges held by the view DEFINER\n account or invoker, depending on whether the SQL SECURITY\n characteristic is DEFINER or INVOKER, respectively.\n\no If reference to a view causes execution of a stored function,\n privilege checking for statements executed within the function depend\n on whether the function SQL SECURITY characteristic is DEFINER or\n INVOKER. If the security characteristic is DEFINER, the function runs\n with the privileges of the DEFINER account. If the characteristic is\n INVOKER, the function runs with the privileges determined by the\n view\'s SQL SECURITY characteristic.\n\nExample: A view might depend on a stored function, and that function\nmight invoke other stored routines. For example, the following view\ninvokes a stored function f():\n\nCREATE VIEW v AS SELECT * FROM t WHERE t.id = f(t.name);\n\nSuppose that f() contains a statement such as this:\n\nIF name IS NULL then\n CALL p1();\nELSE\n CALL p2();\nEND IF;\n\nThe privileges required for executing statements within f() need to be\nchecked when f() executes. This might mean that privileges are needed\nfor p1() or p2(), depending on the execution path within f(). Those\nprivileges must be checked at runtime, and the user who must possess\nthe privileges is determined by the SQL SECURITY values of the view v\nand the function f().\n\nThe DEFINER and SQL SECURITY clauses for views are extensions to\nstandard SQL. In standard SQL, views are handled using the rules for\nSQL SECURITY DEFINER. The standard says that the definer of the view,\nwhich is the same as the owner of the view\'s schema, gets applicable\nprivileges on the view (for example, SELECT) and may grant them. MySQL\nhas no concept of a schema "owner", so MySQL adds a clause to identify\nthe definer. The DEFINER clause is an extension where the intent is to\nhave what the standard has; that is, a permanent record of who defined\nthe view. This is why the default DEFINER value is the account of the\nview creator.\n\nThe optional ALGORITHM clause is a MySQL extension to standard SQL. It\naffects how MySQL processes the view. ALGORITHM takes three values:\nMERGE, TEMPTABLE, or UNDEFINED. For more information, see\nhttp://dev.mysql.com/doc/refman/5.7/en/view-algorithms.html, as well as\nhttp://dev.mysql.com/doc/refman/5.7/en/derived-table-optimization.html.\n\nSome views are updatable. That is, you can use them in statements such\nas UPDATE, DELETE, or INSERT to update the contents of the underlying\ntable. For a view to be updatable, there must be a one-to-one\nrelationship between the rows in the view and the rows in the\nunderlying table. There are also certain other constructs that make a\nview nonupdatable.\n\nA generated column in a view is considered updatable because it is\npossible to assign to it. However, if such a column is updated\nexplicitly, the only permitted value is DEFAULT. For information about\ngenerated columns, see\nhttp://dev.mysql.com/doc/refman/5.7/en/create-table-generated-columns.h\ntml.\n\nThe WITH CHECK OPTION clause can be given for an updatable view to\nprevent inserts or updates to rows except those for which the WHERE\nclause in the select_statement is true.\n\nIn a WITH CHECK OPTION clause for an updatable view, the LOCAL and\nCASCADED keywords determine the scope of check testing when the view is\ndefined in terms of another view. The LOCAL keyword restricts the CHECK\nOPTION only to the view being defined. CASCADED causes the checks for\nunderlying views to be evaluated as well. When neither keyword is\ngiven, the default is CASCADED.\n\nFor more information about updatable views and the WITH CHECK OPTION\nclause, see\nhttp://dev.mysql.com/doc/refman/5.7/en/view-updatability.html, and\nhttp://dev.mysql.com/doc/refman/5.7/en/view-check-option.html.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/create-view.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/create-view.html'); +INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (122,8,'CREATE VIEW','Syntax:\nCREATE\n [OR REPLACE]\n [ALGORITHM = {UNDEFINED | MERGE | TEMPTABLE}]\n [DEFINER = user]\n [SQL SECURITY { DEFINER | INVOKER }]\n VIEW view_name [(column_list)]\n AS select_statement\n [WITH [CASCADED | LOCAL] CHECK OPTION]\n\nThe CREATE VIEW statement creates a new view, or replaces an existing\nview if the OR REPLACE clause is given. If the view does not exist,\nCREATE OR REPLACE VIEW is the same as CREATE VIEW. If the view does\nexist, CREATE OR REPLACE VIEW replaces it.\n\nFor information about restrictions on view use, see\nhttp://dev.mysql.com/doc/refman/5.7/en/view-restrictions.html.\n\nThe select_statement is a SELECT statement that provides the definition\nof the view. (Selecting from the view selects, in effect, using the\nSELECT statement.) The select_statement can select from base tables or\nother views.\n\nThe view definition is "frozen" at creation time and is not affected by\nsubsequent changes to the definitions of the underlying tables. For\nexample, if a view is defined as SELECT * on a table, new columns added\nto the table later do not become part of the view, and columns dropped\nfrom the table will result in an error when selecting from the view.\n\nThe ALGORITHM clause affects how MySQL processes the view. The DEFINER\nand SQL SECURITY clauses specify the security context to be used when\nchecking access privileges at view invocation time. The WITH CHECK\nOPTION clause can be given to constrain inserts or updates to rows in\ntables referenced by the view. These clauses are described later in\nthis section.\n\nThe CREATE VIEW statement requires the CREATE VIEW privilege for the\nview, and some privilege for each column selected by the SELECT\nstatement. For columns used elsewhere in the SELECT statement, you must\nhave the SELECT privilege. If the OR REPLACE clause is present, you\nmust also have the DROP privilege for the view. If the DEFINER clause\nis present, the privileges required depend on the user value, as\ndiscussed in\nhttp://dev.mysql.com/doc/refman/5.7/en/stored-objects-security.html.\n\nWhen a view is referenced, privilege checking occurs as described later\nin this section.\n\nA view belongs to a database. By default, a new view is created in the\ndefault database. To create the view explicitly in a given database,\nuse db_name.view_name syntax to qualify the view name with the database\nname:\n\nCREATE VIEW test.v AS SELECT * FROM t;\n\nUnqualified table or view names in the SELECT statement are also\ninterpreted with respect to the default database. A view can refer to\ntables or views in other databases by qualifying the table or view name\nwith the appropriate database name.\n\nWithin a database, base tables and views share the same namespace, so a\nbase table and a view cannot have the same name.\n\nColumns retrieved by the SELECT statement can be simple references to\ntable columns, or expressions that use functions, constant values,\noperators, and so forth.\n\nA view must have unique column names with no duplicates, just like a\nbase table. By default, the names of the columns retrieved by the\nSELECT statement are used for the view column names. To define explicit\nnames for the view columns, specify the optional column_list clause as\na list of comma-separated identifiers. The number of names in\ncolumn_list must be the same as the number of columns retrieved by the\nSELECT statement.\n\nA view can be created from many kinds of SELECT statements. It can\nrefer to base tables or other views. It can use joins, UNION, and\nsubqueries. The SELECT need not even refer to any tables:\n\nCREATE VIEW v_today (today) AS SELECT CURRENT_DATE;\n\nThe following example defines a view that selects two columns from\nanother table as well as an expression calculated from those columns:\n\nmysql> CREATE TABLE t (qty INT, price INT);\nmysql> INSERT INTO t VALUES(3, 50);\nmysql> CREATE VIEW v AS SELECT qty, price, qty*price AS value FROM t;\nmysql> SELECT * FROM v;\n+------+-------+-------+\n| qty | price | value |\n+------+-------+-------+\n| 3 | 50 | 150 |\n+------+-------+-------+\n\nA view definition is subject to the following restrictions:\n\no The SELECT statement cannot refer to system variables or user-defined\n variables.\n\no Within a stored program, the SELECT statement cannot refer to program\n parameters or local variables.\n\no The SELECT statement cannot refer to prepared statement parameters.\n\no Any table or view referred to in the definition must exist. If, after\n the view has been created, a table or view that the definition refers\n to is dropped, use of the view results in an error. To check a view\n definition for problems of this kind, use the CHECK TABLE statement.\n\no The definition cannot refer to a TEMPORARY table, and you cannot\n create a TEMPORARY view.\n\no You cannot associate a trigger with a view.\n\no Aliases for column names in the SELECT statement are checked against\n the maximum column length of 64 characters (not the maximum alias\n length of 256 characters).\n\nORDER BY is permitted in a view definition, but it is ignored if you\nselect from a view using a statement that has its own ORDER BY.\n\nFor other options or clauses in the definition, they are added to the\noptions or clauses of the statement that references the view, but the\neffect is undefined. For example, if a view definition includes a LIMIT\nclause, and you select from the view using a statement that has its own\nLIMIT clause, it is undefined which limit applies. This same principle\napplies to options such as ALL, DISTINCT, or SQL_SMALL_RESULT that\nfollow the SELECT keyword, and to clauses such as INTO, FOR UPDATE,\nLOCK IN SHARE MODE, and PROCEDURE.\n\nThe results obtained from a view may be affected if you change the\nquery processing environment by changing system variables:\n\nmysql> CREATE VIEW v (mycol) AS SELECT \'abc\';\nQuery OK, 0 rows affected (0.01 sec)\n\nmysql> SET sql_mode = \'\';\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT "mycol" FROM v;\n+-------+\n| mycol |\n+-------+\n| mycol |\n+-------+\n1 row in set (0.01 sec)\n\nmysql> SET sql_mode = \'ANSI_QUOTES\';\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT "mycol" FROM v;\n+-------+\n| mycol |\n+-------+\n| abc |\n+-------+\n1 row in set (0.00 sec)\n\nThe DEFINER and SQL SECURITY clauses determine which MySQL account to\nuse when checking access privileges for the view when a statement is\nexecuted that references the view. The valid SQL SECURITY\ncharacteristic values are DEFINER (the default) and INVOKER. These\nindicate that the required privileges must be held by the user who\ndefined or invoked the view, respectively.\n\nIf the DEFINER clause is present, the user value should be a MySQL\naccount specified as \'user_name\'@\'host_name\', CURRENT_USER, or\nCURRENT_USER(). The permitted user values depend on the privileges you\nhold, as discussed in\nhttp://dev.mysql.com/doc/refman/5.7/en/stored-objects-security.html.\nAlso see that section for additional information about view security.\n\nIf the DEFINER clause is omitted, the default definer is the user who\nexecutes the CREATE VIEW statement. This is the same as specifying\nDEFINER = CURRENT_USER explicitly.\n\nWithin a view definition, the CURRENT_USER function returns the view\'s\nDEFINER value by default. For views defined with the SQL SECURITY\nINVOKER characteristic, CURRENT_USER returns the account for the view\'s\ninvoker. For information about user auditing within views, see\nhttp://dev.mysql.com/doc/refman/5.7/en/account-activity-auditing.html.\n\nWithin a stored routine that is defined with the SQL SECURITY DEFINER\ncharacteristic, CURRENT_USER returns the routine\'s DEFINER value. This\nalso affects a view defined within such a routine, if the view\ndefinition contains a DEFINER value of CURRENT_USER.\n\nMySQL checks view privileges like this:\n\no At view definition time, the view creator must have the privileges\n needed to use the top-level objects accessed by the view. For\n example, if the view definition refers to table columns, the creator\n must have some privilege for each column in the select list of the\n definition, and the SELECT privilege for each column used elsewhere\n in the definition. If the definition refers to a stored function,\n only the privileges needed to invoke the function can be checked. The\n privileges required at function invocation time can be checked only\n as it executes: For different invocations, different execution paths\n within the function might be taken.\n\no The user who references a view must have appropriate privileges to\n access it (SELECT to select from it, INSERT to insert into it, and so\n forth.)\n\no When a view has been referenced, privileges for objects accessed by\n the view are checked against the privileges held by the view DEFINER\n account or invoker, depending on whether the SQL SECURITY\n characteristic is DEFINER or INVOKER, respectively.\n\no If reference to a view causes execution of a stored function,\n privilege checking for statements executed within the function depend\n on whether the function SQL SECURITY characteristic is DEFINER or\n INVOKER. If the security characteristic is DEFINER, the function runs\n with the privileges of the DEFINER account. If the characteristic is\n INVOKER, the function runs with the privileges determined by the\n view\'s SQL SECURITY characteristic.\n\nExample: A view might depend on a stored function, and that function\nmight invoke other stored routines. For example, the following view\ninvokes a stored function f():\n\nCREATE VIEW v AS SELECT * FROM t WHERE t.id = f(t.name);\n\nSuppose that f() contains a statement such as this:\n\nIF name IS NULL then\n CALL p1();\nELSE\n CALL p2();\nEND IF;\n\nThe privileges required for executing statements within f() need to be\nchecked when f() executes. This might mean that privileges are needed\nfor p1() or p2(), depending on the execution path within f(). Those\nprivileges must be checked at runtime, and the user who must possess\nthe privileges is determined by the SQL SECURITY values of the view v\nand the function f().\n\nThe DEFINER and SQL SECURITY clauses for views are extensions to\nstandard SQL. In standard SQL, views are handled using the rules for\nSQL SECURITY DEFINER. The standard says that the definer of the view,\nwhich is the same as the owner of the view\'s schema, gets applicable\nprivileges on the view (for example, SELECT) and may grant them. MySQL\nhas no concept of a schema "owner", so MySQL adds a clause to identify\nthe definer. The DEFINER clause is an extension where the intent is to\nhave what the standard has; that is, a permanent record of who defined\nthe view. This is why the default DEFINER value is the account of the\nview creator.\n\nThe optional ALGORITHM clause is a MySQL extension to standard SQL. It\naffects how MySQL processes the view. ALGORITHM takes three values:\nMERGE, TEMPTABLE, or UNDEFINED. For more information, see\nhttp://dev.mysql.com/doc/refman/5.7/en/view-algorithms.html, as well as\nhttp://dev.mysql.com/doc/refman/5.7/en/derived-table-optimization.html.\n\nSome views are updatable. That is, you can use them in statements such\nas UPDATE, DELETE, or INSERT to update the contents of the underlying\ntable. For a view to be updatable, there must be a one-to-one\nrelationship between the rows in the view and the rows in the\nunderlying table. There are also certain other constructs that make a\nview nonupdatable.\n\nA generated column in a view is considered updatable because it is\npossible to assign to it. However, if such a column is updated\nexplicitly, the only permitted value is DEFAULT. For information about\ngenerated columns, see\nhttp://dev.mysql.com/doc/refman/5.7/en/create-table-generated-columns.h\ntml.\n\nThe WITH CHECK OPTION clause can be given for an updatable view to\nprevent inserts or updates to rows except those for which the WHERE\nclause in the select_statement is true.\n\nIn a WITH CHECK OPTION clause for an updatable view, the LOCAL and\nCASCADED keywords determine the scope of check testing when the view is\ndefined in terms of another view. The LOCAL keyword restricts the CHECK\nOPTION only to the view being defined. CASCADED causes the checks for\nunderlying views to be evaluated as well. When neither keyword is\ngiven, the default is CASCADED.\n\nFor more information about updatable views and the WITH CHECK OPTION\nclause, see\nhttp://dev.mysql.com/doc/refman/5.7/en/view-updatability.html, and\nhttp://dev.mysql.com/doc/refman/5.7/en/view-check-option.html.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/create-view.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/create-view.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (123,27,'CREATE_ASYMMETRIC_PRIV_KEY','Syntax:\nCREATE_ASYMMETRIC_PRIV_KEY(algorithm, {key_len|dh_secret})\n\nCreates a private key using the given algorithm and key length or DH\nsecret, and returns the key as a binary string in PEM format. If key\ngeneration fails, the result is NULL.\n\nSupported algorithm values: \'RSA\', \'DSA\', \'DH\'\n\nSupported key_len values: The minimum key length in bits is 1,024. The\nmaximum key length depends on the algorithm: 16,384 for RSA and 10,000\nfor DSA. These key-length limits are constraints imposed by OpenSSL.\nServer administrators can impose additional limits on maximum key\nlength by setting environment variables. See\nhttp://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-usage.html\n.\n\nFor DH keys, pass a shared DH secret instead of a key length. To create\nthe secret, pass the key length to CREATE_DH_PARAMETERS().\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-functions.html\n\n','SET @priv = CREATE_ASYMMETRIC_PRIV_KEY(\'DSA\', 2048);\nSET @pub = CREATE_ASYMMETRIC_PUB_KEY(\'DSA\', @priv);\n','http://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (124,27,'CREATE_ASYMMETRIC_PUB_KEY','Syntax:\nCREATE_ASYMMETRIC_PUB_KEY(algorithm, priv_key_str)\n\nDerives a public key from the given private key using the given\nalgorithm, and returns the key as a binary string in PEM format. If key\nderivation fails, the result is NULL.\n\npriv_key_str must be a valid key string in PEM format. algorithm\nindicates the encryption algorithm used to create the key.\n\nSupported algorithm values: \'RSA\', \'DSA\', \'DH\'\n\nFor a usage example, see the description of\nCREATE_ASYMMETRIC_PRIV_KEY().\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (125,27,'CREATE_DH_PARAMETERS','CREATE_DH_PARAMETERS(key_len)\n\nCreates a shared secret for generating a DH private/public key pair and\nreturns a binary string that can be passed to\nCREATE_ASYMMETRIC_PRIV_KEY(). If secret generation fails, the result is\nnull.\n\nSupported key_len values: The minimum and maximum key lengths in bits\nare 1,024 and 10,000. These key-length limits are constraints imposed\nby OpenSSL. Server administrators can impose additional limits on\nmaximum key length by setting environment variables. See\nhttp://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-usage.html\n.\n\nFor an example showing how to use the return value for generating\nsymmetric keys, see the description of ASYMMETRIC_DERIVE().\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-functions.html\n\n','SET @dhp = CREATE_DH_PARAMETERS(1024);\n','http://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-functions.html'); @@ -213,7 +213,7 @@ INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (130,11,'CURRENT_TIME','Syntax:\nCURRENT_TIME, CURRENT_TIME([fsp])\n\nCURRENT_TIME and CURRENT_TIME() are synonyms for CURTIME().\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (131,11,'CURRENT_TIMESTAMP','Syntax:\nCURRENT_TIMESTAMP, CURRENT_TIMESTAMP([fsp])\n\nCURRENT_TIMESTAMP and CURRENT_TIMESTAMP() are synonyms for NOW().\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (132,22,'CURRENT_USER','Syntax:\nCURRENT_USER, CURRENT_USER()\n\nReturns the user name and host name combination for the MySQL account\nthat the server used to authenticate the current client. This account\ndetermines your access privileges. The return value is a string in the\nutf8 character set.\n\nThe value of CURRENT_USER() can differ from the value of USER().\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/information-functions.html\n\n','mysql> SELECT USER();\n -> \'davida@localhost\'\nmysql> SELECT * FROM mysql.user;\nERROR 1044: Access denied for user \'\'@\'localhost\' to\ndatabase \'mysql\'\nmysql> SELECT CURRENT_USER();\n -> \'@localhost\'\n','http://dev.mysql.com/doc/refman/5.7/en/information-functions.html'); -INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (133,11,'CURTIME','Syntax:\nCURTIME([fsp])\n\nReturns the current time as a value in \'HH:MM:SS\' or HHMMSS format,\ndepending on whether the function is used in a string or numeric\ncontext. The value is expressed in the current time zone.\n\nIf the fsp argument is given to specify a fractional seconds precision\nfrom 0 to 6, the return value includes a fractional seconds part of\nthat many digits.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT CURTIME();\n -> \'23:50:26\'\nmysql> SELECT CURTIME() + 0;\n -> 235026.000000\n','http://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'); +INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (133,11,'CURTIME','Syntax:\nCURTIME([fsp])\n\nReturns the current time as a value in \'HH:MM:SS\' or HHMMSS format,\ndepending on whether the function is used in a string or numeric\ncontext. The value is expressed in the session time zone.\n\nIf the fsp argument is given to specify a fractional seconds precision\nfrom 0 to 6, the return value includes a fractional seconds part of\nthat many digits.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT CURTIME();\n -> \'23:50:26\'\nmysql> SELECT CURTIME() + 0;\n -> 235026.000000\n','http://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (134,22,'DATABASE','Syntax:\nDATABASE()\n\nReturns the default (current) database name as a string in the utf8\ncharacter set. If there is no default database, DATABASE() returns\nNULL. Within a stored routine, the default database is the database\nthat the routine is associated with, which is not necessarily the same\nas the database that is the default in the calling context.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/information-functions.html\n\n','mysql> SELECT DATABASE();\n -> \'test\'\n','http://dev.mysql.com/doc/refman/5.7/en/information-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (135,10,'DATE','DATE\n\nA date. The supported range is \'1000-01-01\' to \'9999-12-31\'. MySQL\ndisplays DATE values in \'YYYY-MM-DD\' format, but permits assignment of\nvalues to DATE columns using either strings or numbers.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/date-and-time-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/date-and-time-type-overview.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (136,11,'DATE FUNCTION','Syntax:\nDATE(expr)\n\nExtracts the date part of the date or datetime expression expr.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT DATE(\'2003-12-31 01:02:03\');\n -> \'2003-12-31\'\n','http://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'); @@ -254,7 +254,7 @@ INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (171,8,'DROP INDEX','Syntax:\nDROP INDEX index_name ON tbl_name\n [algorithm_option | lock_option] ...\n\nalgorithm_option:\n ALGORITHM [=] {DEFAULT|INPLACE|COPY}\n\nlock_option:\n LOCK [=] {DEFAULT|NONE|SHARED|EXCLUSIVE}\n\nDROP INDEX drops the index named index_name from the table tbl_name.\nThis statement is mapped to an ALTER TABLE statement to drop the index.\nSee [HELP ALTER TABLE].\n\nTo drop a primary key, the index name is always PRIMARY, which must be\nspecified as a quoted identifier because PRIMARY is a reserved word:\n\nDROP INDEX `PRIMARY` ON t;\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/drop-index.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/drop-index.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (172,8,'DROP PROCEDURE','Syntax:\nDROP {PROCEDURE | FUNCTION} [IF EXISTS] sp_name\n\nThis statement is used to drop a stored procedure or function. That is,\nthe specified routine is removed from the server. You must have the\nALTER ROUTINE privilege for the routine. (If the\nautomatic_sp_privileges system variable is enabled, that privilege and\nEXECUTE are granted automatically to the routine creator when the\nroutine is created and dropped from the creator when the routine is\ndropped. See\nhttp://dev.mysql.com/doc/refman/5.7/en/stored-routines-privileges.html.\n)\n\nThe IF EXISTS clause is a MySQL extension. It prevents an error from\noccurring if the procedure or function does not exist. A warning is\nproduced that can be viewed with SHOW WARNINGS.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/drop-procedure.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/drop-procedure.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (173,8,'DROP SERVER','Syntax:\nDROP SERVER [ IF EXISTS ] server_name\n\nDrops the server definition for the server named server_name. The\ncorresponding row in the mysql.servers table is deleted. This statement\nrequires the SUPER privilege.\n\nDropping a server for a table does not affect any FEDERATED tables that\nused this connection information when they were created. See [HELP\nCREATE SERVER].\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/drop-server.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/drop-server.html'); -INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (174,8,'DROP TABLE','Syntax:\nDROP [TEMPORARY] TABLE [IF EXISTS]\n tbl_name [, tbl_name] ...\n [RESTRICT | CASCADE]\n\nDROP TABLE removes one or more tables. You must have the DROP privilege\nfor each table.\n\nBe careful with this statement! It removes the table definition and all\ntable data. For a partitioned table, it permanently removes the table\ndefinition, all its partitions, and all data stored in those\npartitions. It also removes partition definitions associated with the\ndropped table.\n\nDROP TABLE causes an implicit commit, except when used with the\nTEMPORARY keyword. See\nhttp://dev.mysql.com/doc/refman/5.7/en/implicit-commit.html.\n\n*Important*:\n\nWhen a table is dropped, privileges granted specifically for the table\nare not automatically dropped. They must be dropped manually. See [HELP\nGRANT].\n\nIf any tables named in the argument list do not exist, the statement\nreturns an error indicating by name which nonexisting tables it was\nunable to drop, but also drops all tables in the list that do exist.\n\nUse IF EXISTS to prevent an error from occurring for tables that do not\nexist. Instead of an error, a NOTE is generated for each nonexistent\ntable; these notes can be displayed with SHOW WARNINGS. See [HELP SHOW\nWARNINGS].\n\nIF EXISTS can also be useful for dropping tables in unusual\ncircumstances under which there is an .frm file but no table managed by\nthe storage engine. (For example, if an abnormal server exit occurs\nafter removal of the table from the storage engine but before .frm file\nremoval.)\n\nThe TEMPORARY keyword has the following effects:\n\no The statement drops only TEMPORARY tables.\n\no The statement does not cause an implicit commit.\n\no No access rights are checked. A TEMPORARY table is visible only with\n the session that created it, so no check is necessary.\n\nUsing TEMPORARY is a good way to ensure that you do not accidentally\ndrop a non-TEMPORARY table.\n\nThe RESTRICT and CASCADE keywords do nothing. They are permitted to\nmake porting easier from other database systems.\n\nDROP TABLE is not supported with all innodb_force_recovery settings.\nSee\nhttp://dev.mysql.com/doc/refman/5.7/en/forcing-innodb-recovery.html.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/drop-table.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/drop-table.html'); +INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (174,8,'DROP TABLE','Syntax:\nDROP [TEMPORARY] TABLE [IF EXISTS]\n tbl_name [, tbl_name] ...\n [RESTRICT | CASCADE]\n\nDROP TABLE removes one or more tables. You must have the DROP privilege\nfor each table.\n\nBe careful with this statement! It removes the table definition and all\ntable data. For a partitioned table, it permanently removes the table\ndefinition, all its partitions, and all data stored in those\npartitions. It also removes partition definitions associated with the\ndropped table.\n\nDropping a table also drops any triggers for the table.\n\nDROP TABLE causes an implicit commit, except when used with the\nTEMPORARY keyword. See\nhttp://dev.mysql.com/doc/refman/5.7/en/implicit-commit.html.\n\n*Important*:\n\nWhen a table is dropped, privileges granted specifically for the table\nare not automatically dropped. They must be dropped manually. See [HELP\nGRANT].\n\nIf any tables named in the argument list do not exist, the statement\nreturns an error indicating by name which nonexisting tables it was\nunable to drop, but also drops all tables in the list that do exist.\n\nUse IF EXISTS to prevent an error from occurring for tables that do not\nexist. Instead of an error, a NOTE is generated for each nonexistent\ntable; these notes can be displayed with SHOW WARNINGS. See [HELP SHOW\nWARNINGS].\n\nIF EXISTS can also be useful for dropping tables in unusual\ncircumstances under which there is an .frm file but no table managed by\nthe storage engine. (For example, if an abnormal server exit occurs\nafter removal of the table from the storage engine but before .frm file\nremoval.)\n\nThe TEMPORARY keyword has the following effects:\n\no The statement drops only TEMPORARY tables.\n\no The statement does not cause an implicit commit.\n\no No access rights are checked. A TEMPORARY table is visible only with\n the session that created it, so no check is necessary.\n\nUsing TEMPORARY is a good way to ensure that you do not accidentally\ndrop a non-TEMPORARY table.\n\nThe RESTRICT and CASCADE keywords do nothing. They are permitted to\nmake porting easier from other database systems.\n\nDROP TABLE is not supported with all innodb_force_recovery settings.\nSee\nhttp://dev.mysql.com/doc/refman/5.7/en/forcing-innodb-recovery.html.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/drop-table.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/drop-table.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (175,8,'DROP TABLESPACE','Syntax:\nDROP TABLESPACE tablespace_name\n [ENGINE [=] engine_name]\n\nThis statement drops a tablespace that was previously created using\nCREATE TABLESPACE. It is supported with all MySQL NDB Cluster 7.5\nreleases, and with InnoDB in the standard MySQL Server as well.\n\nENGINE sets the storage engine that uses the tablespace, where\nengine_name is the name of the storage engine. Currently, the values\nInnoDB and NDB are supported. If not set, the value of\ndefault_storage_engine is used. If it is not the same as the storage\nengine used to create the tablespace, the DROP TABLESPACE statement\nfails.\n\nFor an InnoDB tablespace, all tables must be dropped from the\ntablespace prior to a DROP TABLESPACE operation. If the tablespace is\nnot empty, DROP TABLESPACE returns an error.\n\nAs with the InnoDB system tablespace, truncating or dropping InnoDB\ntables stored in a general tablespace creates free space in the\ntablespace .ibd data file, which can only be used for new InnoDB data.\nSpace is not released back to the operating system by such operations\nas it is for file-per-table tablespaces.\n\nAn NDB tablespace to be dropped must not contain any data files; in\nother words, before you can drop an NDB tablespace, you must first drop\neach of its data files using ALTER TABLESPACE ... DROP DATAFILE.\n\nNotes\n\no Tablespaces are not deleted automatically. A tablespace must be\n dropped explicitly using DROP TABLESPACE. DROP DATABASE has no effect\n in this regard, even if the operation drops all tables belonging to\n the tablespace.\n\no A DROP DATABASE operation can drop tables that belong to a general\n tablespace but it cannot drop the tablespace, even if the operation\n drops all tables that belong to the tablespace. The tablespace must\n be dropped explicitly using DROP TABLESPACE tablespace_name.\n\no Similar to the system tablespace, truncating or dropping tables\n stored in a general tablespace creates free space internally in the\n general tablespace .ibd data file which can only be used for new\n InnoDB data. Space is not released back to the operating system as it\n is for file-per-table tablespaces.\n\nInnoDB Example\n\nThis example demonstrates how to drop an InnoDB general tablespace. The\ngeneral tablespace ts1 is created with a single table. Before dropping\nthe tablespace, the table must be dropped.\n\nmysql> CREATE TABLESPACE `ts1` ADD DATAFILE \'ts1.ibd\' Engine=InnoDB; \n\nmysql> CREATE TABLE t1 (c1 INT PRIMARY KEY) TABLESPACE ts10 Engine=InnoDB; \n \nmysql> DROP TABLE t1;\n\nmysql> DROP TABLESPACE ts1;\n\nNDB Example\n\nThis example shows how to drop an NDB tablespace myts having a data\nfile named mydata-1.dat after first creating the tablespace, and\nassumes the existence of a log file group named mylg (see [HELP CREATE\nLOGFILE GROUP]).\n\nmysql> CREATE TABLESPACE myts\n -> ADD DATAFILE \'mydata-1.dat\'\n -> USE LOGFILE GROUP mylg\n -> ENGINE=NDB;\n\nYou must remove all data files from the tablespace using ALTER\nTABLESPACE, as shown here, before it can be dropped:\n\nmysql> ALTER TABLESPACE myts\n -> DROP DATAFILE \'mydata-1.dat\'\n -> ENGINE=NDB;\n\nmysql> DROP TABLESPACE myts;\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/drop-tablespace.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/drop-tablespace.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (176,8,'DROP TRIGGER','Syntax:\nDROP TRIGGER [IF EXISTS] [schema_name.]trigger_name\n\nThis statement drops a trigger. The schema (database) name is optional.\nIf the schema is omitted, the trigger is dropped from the default\nschema. DROP TRIGGER requires the TRIGGER privilege for the table\nassociated with the trigger.\n\nUse IF EXISTS to prevent an error from occurring for a trigger that\ndoes not exist. A NOTE is generated for a nonexistent trigger when\nusing IF EXISTS. See [HELP SHOW WARNINGS].\n\nTriggers for a table are also dropped if you drop the table.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/drop-trigger.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/drop-trigger.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (177,1,'DROP USER','Syntax:\nDROP USER [IF EXISTS] user [, user] ...\n\nThe DROP USER statement removes one or more MySQL accounts and their\nprivileges. It removes privilege rows for the account from all grant\ntables.\n\nTo use DROP USER, you must have the global CREATE USER privilege, or\nthe DELETE privilege for the mysql system database. When the read_only\nsystem variable is enabled, DROP USER additionally requires the SUPER\nprivilege.\n\nAn error occurs if you try to drop an account that does not exist. If\nthe IF EXISTS clause is given, the statement produces a warning for\neach named user that does not exist, rather than an error.\n\nEach account name uses the format described in\nhttp://dev.mysql.com/doc/refman/5.7/en/account-names.html. For example:\n\nDROP USER \'jeffrey\'@\'localhost\';\n\nThe host name part of the account name, if omitted, defaults to \'%\'.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/drop-user.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/drop-user.html'); @@ -279,13 +279,13 @@ INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (196,35,'FIND_IN_SET','Syntax:\nFIND_IN_SET(str,strlist)\n\nReturns a value in the range of 1 to N if the string str is in the\nstring list strlist consisting of N substrings. A string list is a\nstring composed of substrings separated by , characters. If the first\nargument is a constant string and the second is a column of type SET,\nthe FIND_IN_SET() function is optimized to use bit arithmetic. Returns\n0 if str is not in strlist or if strlist is the empty string. Returns\nNULL if either argument is NULL. This function does not work properly\nif the first argument contains a comma (,) character.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT FIND_IN_SET(\'b\',\'a,b,c,d\');\n -> 2\n','http://dev.mysql.com/doc/refman/5.7/en/string-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (197,10,'FLOAT','FLOAT[(M,D)] [UNSIGNED] [ZEROFILL]\n\nA small (single-precision) floating-point number. Permissible values\nare -3.402823466E+38 to -1.175494351E-38, 0, and 1.175494351E-38 to\n3.402823466E+38. These are the theoretical limits, based on the IEEE\nstandard. The actual range might be slightly smaller depending on your\nhardware or operating system.\n\nM is the total number of digits and D is the number of digits following\nthe decimal point. If M and D are omitted, values are stored to the\nlimits permitted by the hardware. A single-precision floating-point\nnumber is accurate to approximately 7 decimal places.\n\nUNSIGNED, if specified, disallows negative values.\n\nUsing FLOAT might give you some unexpected problems because all\ncalculations in MySQL are done with double precision. See\nhttp://dev.mysql.com/doc/refman/5.7/en/no-matching-rows.html.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/numeric-type-overview.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (198,29,'FLOOR','Syntax:\nFLOOR(X)\n\nReturns the largest integer value not greater than X.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT FLOOR(1.23), FLOOR(-1.23);\n -> 1, -2\n','http://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'); -INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (199,2,'FLUSH','Syntax:\nFLUSH [NO_WRITE_TO_BINLOG | LOCAL] {\n flush_option [, flush_option] ...\n | tables_option\n}\n\nflush_option: {\n BINARY LOGS\n | DES_KEY_FILE\n | ENGINE LOGS\n | ERROR LOGS\n | GENERAL LOGS\n | HOSTS\n | LOGS\n | PRIVILEGES\n | OPTIMIZER_COSTS\n | QUERY CACHE\n | RELAY LOGS [FOR CHANNEL channel]\n | SLOW LOGS\n | STATUS\n | USER_RESOURCES\n}\n\ntables_option: {\n TABLES\n | TABLES tbl_name [, tbl_name] ...\n | TABLES WITH READ LOCK\n | TABLES tbl_name [, tbl_name] ... WITH READ LOCK\n | TABLES tbl_name [, tbl_name] ... FOR EXPORT\n}\n\nThe FLUSH statement has several variant forms that clear or reload\nvarious internal caches, flush tables, or acquire locks. To execute\nFLUSH, you must have the RELOAD privilege. Specific flush options might\nrequire additional privileges, as described later.\n\n*Note*:\n\nIt is not possible to issue FLUSH statements within stored functions or\ntriggers. However, you may use FLUSH in stored procedures, so long as\nthese are not called from stored functions or triggers. See\nhttp://dev.mysql.com/doc/refman/5.7/en/stored-program-restrictions.html\n.\n\nBy default, the server writes FLUSH statements to the binary log so\nthat they replicate to replication slaves. To suppress logging, specify\nthe optional NO_WRITE_TO_BINLOG keyword or its alias LOCAL.\n\n*Note*:\n\nFLUSH LOGS, FLUSH TABLES WITH READ LOCK (with or without a table list),\nand FLUSH TABLES tbl_name ... FOR EXPORT are not written to the binary\nlog in any case because they would cause problems if replicated to a\nslave.\n\nThe FLUSH statement causes an implicit commit. See\nhttp://dev.mysql.com/doc/refman/5.7/en/implicit-commit.html.\n\nThe mysqladmin utility provides a command-line interface to some flush\noperations, using commands such as flush-hosts, flush-logs,\nflush-privileges, flush-status, and flush-tables. See\nhttp://dev.mysql.com/doc/refman/5.7/en/mysqladmin.html.\n\nSending a SIGHUP signal to the server causes several flush operations\nto occur that are similar to various forms of the FLUSH statement. See\nhttp://dev.mysql.com/doc/refman/5.7/en/server-signal-response.html.\n\nThe RESET statement is similar to FLUSH. See [HELP RESET], for\ninformation about using the RESET statement with replication.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/flush.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/flush.html'); +INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (199,2,'FLUSH','Syntax:\nFLUSH [NO_WRITE_TO_BINLOG | LOCAL] {\n flush_option [, flush_option] ...\n | tables_option\n}\n\nflush_option: {\n BINARY LOGS\n | DES_KEY_FILE\n | ENGINE LOGS\n | ERROR LOGS\n | GENERAL LOGS\n | HOSTS\n | LOGS\n | PRIVILEGES\n | OPTIMIZER_COSTS\n | QUERY CACHE\n | RELAY LOGS [FOR CHANNEL channel]\n | SLOW LOGS\n | STATUS\n | USER_RESOURCES\n}\n\ntables_option: {\n TABLES\n | TABLES tbl_name [, tbl_name] ...\n | TABLES WITH READ LOCK\n | TABLES tbl_name [, tbl_name] ... WITH READ LOCK\n | TABLES tbl_name [, tbl_name] ... FOR EXPORT\n}\n\nThe FLUSH statement has several variant forms that clear or reload\nvarious internal caches, flush tables, or acquire locks. To execute\nFLUSH, you must have the RELOAD privilege. Specific flush options might\nrequire additional privileges, as described later.\n\n*Note*:\n\nIt is not possible to issue FLUSH statements within stored functions or\ntriggers. However, you may use FLUSH in stored procedures, so long as\nthese are not called from stored functions or triggers. See\nhttp://dev.mysql.com/doc/refman/5.7/en/stored-program-restrictions.html\n.\n\nBy default, the server writes FLUSH statements to the binary log so\nthat they replicate to replication slaves. To suppress logging, specify\nthe optional NO_WRITE_TO_BINLOG keyword or its alias LOCAL.\n\n*Note*:\n\nFLUSH LOGS, FLUSH BINARY LOGS, FLUSH TABLES WITH READ LOCK (with or\nwithout a table list), and FLUSH TABLES tbl_name ... FOR EXPORT are not\nwritten to the binary log in any case because they would cause problems\nif replicated to a slave.\n\nThe FLUSH statement causes an implicit commit. See\nhttp://dev.mysql.com/doc/refman/5.7/en/implicit-commit.html.\n\nThe mysqladmin utility provides a command-line interface to some flush\noperations, using commands such as flush-hosts, flush-logs,\nflush-privileges, flush-status, and flush-tables. See\nhttp://dev.mysql.com/doc/refman/5.7/en/mysqladmin.html.\n\nSending a SIGHUP signal to the server causes several flush operations\nto occur that are similar to various forms of the FLUSH statement. See\nhttp://dev.mysql.com/doc/refman/5.7/en/server-signal-response.html.\n\nThe RESET statement is similar to FLUSH. See [HELP RESET], for\ninformation about using the RESET statement with replication.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/flush.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/flush.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (200,2,'FLUSH QUERY CACHE','You can defragment the query cache to better utilize its memory with\nthe FLUSH QUERY CACHE statement. The statement does not remove any\nqueries from the cache.\n\nThe RESET QUERY CACHE statement removes all query results from the\nquery cache. The FLUSH TABLES statement also does this.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/query-cache-status-and-maintenance.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/query-cache-status-and-maintenance.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (201,35,'FORMAT','Syntax:\nFORMAT(X,D[,locale])\n\nFormats the number X to a format like \'#,###,###.##\', rounded to D\ndecimal places, and returns the result as a string. If D is 0, the\nresult has no decimal point or fractional part.\n\nThe optional third parameter enables a locale to be specified to be\nused for the result number\'s decimal point, thousands separator, and\ngrouping between separators. Permissible locale values are the same as\nthe legal values for the lc_time_names system variable (see\nhttp://dev.mysql.com/doc/refman/5.7/en/locale-support.html). If no\nlocale is specified, the default is \'en_US\'.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT FORMAT(12332.123456, 4);\n -> \'12,332.1235\'\nmysql> SELECT FORMAT(12332.1,4);\n -> \'12,332.1000\'\nmysql> SELECT FORMAT(12332.2,0);\n -> \'12,332\'\nmysql> SELECT FORMAT(12332.2,2,\'de_DE\');\n -> \'12.332,20\'\n','http://dev.mysql.com/doc/refman/5.7/en/string-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (202,22,'FOUND_ROWS','Syntax:\nFOUND_ROWS()\n\nA SELECT statement may include a LIMIT clause to restrict the number of\nrows the server returns to the client. In some cases, it is desirable\nto know how many rows the statement would have returned without the\nLIMIT, but without running the statement again. To obtain this row\ncount, include an SQL_CALC_FOUND_ROWS option in the SELECT statement,\nand then invoke FOUND_ROWS() afterward:\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/information-functions.html\n\n','mysql> SELECT SQL_CALC_FOUND_ROWS * FROM tbl_name\n -> WHERE id > 100 LIMIT 10;\nmysql> SELECT FOUND_ROWS();\n','http://dev.mysql.com/doc/refman/5.7/en/information-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (203,35,'FROM_BASE64','Syntax:\nFROM_BASE64(str)\n\nTakes a string encoded with the base-64 encoded rules used by\nTO_BASE64() and returns the decoded result as a binary string. The\nresult is NULL if the argument is NULL or not a valid base-64 string.\nSee the description of TO_BASE64() for details about the encoding and\ndecoding rules.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT TO_BASE64(\'abc\'), FROM_BASE64(TO_BASE64(\'abc\'));\n -> \'JWJj\', \'abc\'\n','http://dev.mysql.com/doc/refman/5.7/en/string-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (204,11,'FROM_DAYS','Syntax:\nFROM_DAYS(N)\n\nGiven a day number N, returns a DATE value.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT FROM_DAYS(730669);\n -> \'2000-07-03\'\n','http://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'); -INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (205,11,'FROM_UNIXTIME','Syntax:\nFROM_UNIXTIME(unix_timestamp), FROM_UNIXTIME(unix_timestamp,format)\n\nReturns a representation of the unix_timestamp argument as a value in\n\'YYYY-MM-DD HH:MM:SS\' or YYYYMMDDHHMMSS format, depending on whether\nthe function is used in a string or numeric context. The value is\nexpressed in the current time zone. unix_timestamp is an internal\ntimestamp value such as is produced by the UNIX_TIMESTAMP() function.\n\nIf format is given, the result is formatted according to the format\nstring, which is used the same way as listed in the entry for the\nDATE_FORMAT() function.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT FROM_UNIXTIME(1447430881);\n -> \'2015-11-13 10:08:01\'\nmysql> SELECT FROM_UNIXTIME(1447430881) + 0;\n -> 20151113100801\nmysql> SELECT FROM_UNIXTIME(UNIX_TIMESTAMP(),\n -> \'%Y %D %M %h:%i:%s %x\');\n -> \'2015 13th November 10:08:01 2015\'\n','http://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'); +INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (205,11,'FROM_UNIXTIME','Syntax:\nFROM_UNIXTIME(unix_timestamp[,format])\n\nReturns a representation of the unix_timestamp argument as a value in\n\'YYYY-MM-DD HH:MM:SS\' or YYYYMMDDHHMMSS.uuuuuu format, depending on\nwhether the function is used in a string or numeric context.\nunix_timestamp is an internal timestamp value representing seconds\nsince \'1970-01-01 00:00:00\' UTC, such as produced by the\nUNIX_TIMESTAMP() function.\n\nThe return value is expressed in the session time zone. (Clients can\nset the session time zone as described in\nhttp://dev.mysql.com/doc/refman/5.7/en/time-zone-support.html.) The\nformat string, if given, is used to format the result the same way as\ndescribed in the entry for the DATE_FORMAT() function.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT FROM_UNIXTIME(1447430881);\n -> \'2015-11-13 10:08:01\'\nmysql> SELECT FROM_UNIXTIME(1447430881) + 0;\n -> 20151113100801\nmysql> SELECT FROM_UNIXTIME(1447430881,\n -> \'%Y %D %M %h:%i:%s %x\');\n -> \'2015 13th November 10:08:01 2015\'\n','http://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (206,41,'GEOMCOLLFROMTEXT','GeomCollFromText(wkt[, srid]), GeometryCollectionFromText(wkt[, srid])\n\nST_GeomCollFromText(), ST_GeometryCollectionFromText(),\nST_GeomCollFromTxt(), GeomCollFromText(), and\nGeometryCollectionFromText() are synonyms. For more information, see\nthe description of ST_GeomCollFromText().\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (207,40,'GEOMCOLLFROMWKB','GeomCollFromWKB(wkb[, srid]), GeometryCollectionFromWKB(wkb[, srid])\n\nST_GeomCollFromWKB(), ST_GeometryCollectionFromWKB(),\nGeomCollFromWKB(), and GeometryCollectionFromWKB() are synonyms. For\nmore information, see the description of ST_GeomCollFromWKB().\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (208,16,'GEOMETRY','MySQL provides a standard way of creating spatial columns for geometry\ntypes, for example, with CREATE TABLE or ALTER TABLE. Spatial columns\nare supported for MyISAM, InnoDB, NDB, and ARCHIVE tables. See also the\nnotes about spatial indexes under [HELP SPATIAL].\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/creating-spatial-columns.html\n\n','CREATE TABLE geom (g GEOMETRY);\n','http://dev.mysql.com/doc/refman/5.7/en/creating-spatial-columns.html'); @@ -306,13 +306,13 @@ INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (223,27,'GTID_SUBTRACT','Syntax:\nGTID_SUBTRACT(set1,set2)\n\nGiven two sets of global transaction IDs set1 and set2, returns only\nthose GTIDs from set1 that are not in set2.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/gtid-functions.html\n\n','mysql> SELECT GTID_SUBTRACT(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\',\n -> \'3E11FA47-71CA-11E1-9E33-C80AA9429562:21\')\\G\n*************************** 1. row ***************************\nGTID_SUBTRACT(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\',\n \'3E11FA47-71CA-11E1-9E33-C80AA9429562:21\'): 3e11fa47-71ca-11e1-9e33-c80aa9429562:22-57\n1 row in set (0.00 sec)\n\nmysql> SELECT GTID_SUBTRACT(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\',\n -> \'3E11FA47-71CA-11E1-9E33-C80AA9429562:20-25\')\\G\n*************************** 1. row ***************************\nGTID_SUBTRACT(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\',\n \'3E11FA47-71CA-11E1-9E33-C80AA9429562:20-25\'): 3e11fa47-71ca-11e1-9e33-c80aa9429562:26-57\n1 row in set (0.00 sec)\n\nmysql> SELECT GTID_SUBTRACT(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\',\n -> \'3E11FA47-71CA-11E1-9E33-C80AA9429562:23-24\')\\G\n*************************** 1. row ***************************\nGTID_SUBTRACT(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\',\n \'3E11FA47-71CA-11E1-9E33-C80AA9429562:23-24\'): 3e11fa47-71ca-11e1-9e33-c80aa9429562:21-22:25-57\n1 row in set (0.01 sec)\n','http://dev.mysql.com/doc/refman/5.7/en/gtid-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (224,9,'HANDLER','Syntax:\nHANDLER tbl_name OPEN [ [AS] alias]\n\nHANDLER tbl_name READ index_name { = | <= | >= | < | > } (value1,value2,...)\n [ WHERE where_condition ] [LIMIT ... ]\nHANDLER tbl_name READ index_name { FIRST | NEXT | PREV | LAST }\n [ WHERE where_condition ] [LIMIT ... ]\nHANDLER tbl_name READ { FIRST | NEXT }\n [ WHERE where_condition ] [LIMIT ... ]\n\nHANDLER tbl_name CLOSE\n\nThe HANDLER statement provides direct access to table storage engine\ninterfaces. It is available for InnoDB and MyISAM tables.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/handler.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/handler.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (225,2,'HELP COMMAND','Syntax:\nmysql> help search_string\n\nIf you provide an argument to the help command, mysql uses it as a\nsearch string to access server-side help from the contents of the MySQL\nReference Manual. The proper operation of this command requires that\nthe help tables in the mysql database be initialized with help topic\ninformation (see\nhttp://dev.mysql.com/doc/refman/5.7/en/server-side-help-support.html).\n\nIf there is no match for the search string, the search fails:\n\nmysql> help me\n\nNothing found\nPlease try to run \'help contents\' for a list of all accessible topics\n\nUse help contents to see a list of the help categories:\n\nmysql> help contents\nYou asked for help about help category: "Contents"\nFor more information, type \'help \', where is one of the\nfollowing categories:\n Account Management\n Administration\n Data Definition\n Data Manipulation\n Data Types\n Functions\n Functions and Modifiers for Use with GROUP BY\n Geographic Features\n Language Structure\n Plugins\n Storage Engines\n Stored Routines\n Table Maintenance\n Transactions\n Triggers\n\nIf the search string matches multiple items, mysql shows a list of\nmatching topics:\n\nmysql> help logs\nMany help items for your request exist.\nTo make a more specific request, please type \'help \',\nwhere is one of the following topics:\n SHOW\n SHOW BINARY LOGS\n SHOW ENGINE\n SHOW LOGS\n\nUse a topic as the search string to see the help entry for that topic:\n\nmysql> help show binary logs\nName: \'SHOW BINARY LOGS\'\nDescription:\nSyntax:\nSHOW BINARY LOGS\nSHOW MASTER LOGS\n\nLists the binary log files on the server. This statement is used as\npart of the procedure described in [purge-binary-logs], that shows how\nto determine which logs can be purged.\n\nmysql> SHOW BINARY LOGS;\n+---------------+-----------+\n| Log_name | File_size |\n+---------------+-----------+\n| binlog.000015 | 724935 |\n| binlog.000016 | 733481 |\n+---------------+-----------+\n\nThe search string can contain the wildcard characters % and _. These\nhave the same meaning as for pattern-matching operations performed with\nthe LIKE operator. For example, HELP rep% returns a list of topics that\nbegin with rep:\n\nmysql> HELP rep%\nMany help items for your request exist.\nTo make a more specific request, please type \'help \',\nwhere is one of the following\ntopics:\n REPAIR TABLE\n REPEAT FUNCTION\n REPEAT LOOP\n REPLACE\n REPLACE FUNCTION\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/mysql-server-side-help.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/mysql-server-side-help.html'); -INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (226,39,'HELP STATEMENT','Syntax:\nHELP \'search_string\'\n\nThe HELP statement returns online information from the MySQL Reference\nmanual. Its proper operation requires that the help tables in the mysql\ndatabase be initialized with help topic information (see\nhttp://dev.mysql.com/doc/refman/5.7/en/server-side-help-support.html).\n\nThe HELP statement searches the help tables for the given search string\nand displays the result of the search. The search string is not\ncase-sensitive.\n\nThe search string can contain the wildcard characters % and _. These\nhave the same meaning as for pattern-matching operations performed with\nthe LIKE operator. For example, HELP \'rep%\' returns a list of topics\nthat begin with rep.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/help.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/help.html'); -INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (227,21,'HELP_DATE','This help information was generated from the MySQL 5.7 Reference Manual\non: 2018-12-20\n','',''); -INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (228,21,'HELP_VERSION','This help information was generated from the MySQL 5.7 Reference Manual\non: 2018-12-20 (revision: 60441)\n\nThis information applies to MySQL 5.7 through 5.7.26.\n','',''); +INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (226,39,'HELP STATEMENT','Syntax:\nHELP \'search_string\'\n\nThe HELP statement returns online information from the MySQL Reference\nManual. Its proper operation requires that the help tables in the mysql\ndatabase be initialized with help topic information (see\nhttp://dev.mysql.com/doc/refman/5.7/en/server-side-help-support.html).\n\nThe HELP statement searches the help tables for the given search string\nand displays the result of the search. The search string is not\ncase-sensitive.\n\nThe search string can contain the wildcard characters % and _. These\nhave the same meaning as for pattern-matching operations performed with\nthe LIKE operator. For example, HELP \'rep%\' returns a list of topics\nthat begin with rep.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/help.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/help.html'); +INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (227,21,'HELP_DATE','This help information was generated from the MySQL 5.7 Reference Manual\non: 2019-04-12\n','',''); +INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (228,21,'HELP_VERSION','This help information was generated from the MySQL 5.7 Reference Manual\non: 2019-04-12 (revision: 61667)\n\nThis information applies to MySQL 5.7 through 5.7.27.\n','',''); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (229,35,'HEX','Syntax:\nHEX(str), HEX(N)\n\nFor a string argument str, HEX() returns a hexadecimal string\nrepresentation of str where each byte of each character in str is\nconverted to two hexadecimal digits. (Multibyte characters therefore\nbecome more than two digits.) The inverse of this operation is\nperformed by the UNHEX() function.\n\nFor a numeric argument N, HEX() returns a hexadecimal string\nrepresentation of the value of N treated as a longlong (BIGINT) number.\nThis is equivalent to CONV(N,10,16). The inverse of this operation is\nperformed by CONV(HEX(N),16,10).\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT X\'616263\', HEX(\'abc\'), UNHEX(HEX(\'abc\'));\n -> \'abc\', 616263, \'abc\'\nmysql> SELECT HEX(255), CONV(HEX(255),16,10);\n -> \'FF\', 255\n','http://dev.mysql.com/doc/refman/5.7/en/string-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (230,11,'HOUR','Syntax:\nHOUR(time)\n\nReturns the hour for time. The range of the return value is 0 to 23 for\ntime-of-day values. However, the range of TIME values actually is much\nlarger, so HOUR can return values greater than 23.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT HOUR(\'10:05:03\');\n -> 10\nmysql> SELECT HOUR(\'272:59:59\');\n -> 272\n','http://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (231,7,'IF FUNCTION','Syntax:\nIF(expr1,expr2,expr3)\n\nIf expr1 is TRUE (expr1 <> 0 and expr1 <> NULL), IF() returns expr2.\nOtherwise, it returns expr3.\n\n*Note*:\n\nThere is also an IF statement, which differs from the IF() function\ndescribed here. See [HELP IF statement].\n\nIf only one of expr2 or expr3 is explicitly NULL, the result type of\nthe IF() function is the type of the non-NULL expression.\n\nThe default return type of IF() (which may matter when it is stored\ninto a temporary table) is calculated as follows:\n\no If expr2 or expr3 produce a string, the result is a string.\n\n If expr2 and expr3 are both strings, the result is case-sensitive if\n either string is case sensitive.\n\no If expr2 or expr3 produce a floating-point value, the result is a\n floating-point value.\n\no If expr2 or expr3 produce an integer, the result is an integer.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/control-flow-functions.html\n\n','mysql> SELECT IF(1>2,2,3);\n -> 3\nmysql> SELECT IF(1<2,\'yes\',\'no\');\n -> \'yes\'\nmysql> SELECT IF(STRCMP(\'test\',\'test1\'),\'no\',\'yes\');\n -> \'no\'\n','http://dev.mysql.com/doc/refman/5.7/en/control-flow-functions.html'); -INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (232,5,'IF STATEMENT','Syntax:\nIF search_condition THEN statement_list\n [ELSEIF search_condition THEN statement_list] ...\n [ELSE statement_list]\nEND IF\n\nThe IF statement for stored programs implements a basic conditional\nconstruct.\n\n*Note*:\n\nThere is also an IF() function, which differs from the IF statement\ndescribed here. See\nhttp://dev.mysql.com/doc/refman/5.7/en/control-flow-functions.html. The\nIF statement can have THEN, ELSE, and ELSEIF clauses, and it is\nterminated with END IF.\n\nIf the search_condition evaluates to true, the corresponding THEN or\nELSEIF clause statement_list executes. If no search_condition matches,\nthe ELSE clause statement_list executes.\n\nEach statement_list consists of one or more SQL statements; an empty\nstatement_list is not permitted.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/if.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/if.html'); +INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (232,5,'IF STATEMENT','Syntax:\nIF search_condition THEN statement_list\n [ELSEIF search_condition THEN statement_list] ...\n [ELSE statement_list]\nEND IF\n\nThe IF statement for stored programs implements a basic conditional\nconstruct.\n\n*Note*:\n\nThere is also an IF() function, which differs from the IF statement\ndescribed here. See\nhttp://dev.mysql.com/doc/refman/5.7/en/control-flow-functions.html. The\nIF statement can have THEN, ELSE, and ELSEIF clauses, and it is\nterminated with END IF.\n\nIf a given search_condition evaluates to true, the corresponding THEN\nor ELSEIF clause statement_list executes. If no search_condition\nmatches, the ELSE clause statement_list executes.\n\nEach statement_list consists of one or more SQL statements; an empty\nstatement_list is not permitted.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/if.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/if.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (233,7,'IFNULL','Syntax:\nIFNULL(expr1,expr2)\n\nIf expr1 is not NULL, IFNULL() returns expr1; otherwise it returns\nexpr2.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/control-flow-functions.html\n\n','mysql> SELECT IFNULL(1,0);\n -> 1\nmysql> SELECT IFNULL(NULL,10);\n -> 10\nmysql> SELECT IFNULL(1/0,10);\n -> 10\nmysql> SELECT IFNULL(1/0,\'yes\');\n -> \'yes\'\n','http://dev.mysql.com/doc/refman/5.7/en/control-flow-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (234,4,'IN','Syntax:\nexpr IN (value,...)\n\nReturns 1 if expr is equal to any of the values in the IN list, else\nreturns 0. If all values are constants, they are evaluated according to\nthe type of expr and sorted. The search for the item then is done using\na binary search. This means IN is very quick if the IN value list\nconsists entirely of constants. Otherwise, type conversion takes place\naccording to the rules described in\nhttp://dev.mysql.com/doc/refman/5.7/en/type-conversion.html, but\napplied to all the arguments.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html\n\n','mysql> SELECT 2 IN (0,3,5,7);\n -> 0\nmysql> SELECT \'wefwf\' IN (\'wee\',\'wefwf\',\'weg\');\n -> 1\n','http://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (235,28,'INET6_ATON','Syntax:\nINET6_ATON(expr)\n\nGiven an IPv6 or IPv4 network address as a string, returns a binary\nstring that represents the numeric value of the address in network byte\norder (big endian). Because numeric-format IPv6 addresses require more\nbytes than the largest integer type, the representation returned by\nthis function has the VARBINARY data type: VARBINARY(16) for IPv6\naddresses and VARBINARY(4) for IPv4 addresses. If the argument is not a\nvalid address, INET6_ATON() returns NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html\n\n','mysql> SELECT HEX(INET6_ATON(\'fdfe::5a55:caff:fefa:9089\'));\n -> \'FDFE0000000000005A55CAFFFEFA9089\'\nmysql> SELECT HEX(INET6_ATON(\'10.0.5.9\'));\n -> \'0A000509\'\n','http://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html'); @@ -346,7 +346,7 @@ INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (263,28,'IS_IPV6','Syntax:\nIS_IPV6(expr)\n\nReturns 1 if the argument is a valid IPv6 address specified as a\nstring, 0 otherwise. This function does not consider IPv4 addresses to\nbe valid IPv6 addresses.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html\n\n','mysql> SELECT IS_IPV6(\'10.0.5.9\'), IS_IPV6(\'::1\');\n -> 0, 1\n','http://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (264,25,'IS_USED_LOCK','Syntax:\nIS_USED_LOCK(str)\n\nChecks whether the lock named str is in use (that is, locked). If so,\nit returns the connection identifier of the client session that holds\nthe lock. Otherwise, it returns NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/locking-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/locking-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (265,5,'ITERATE','Syntax:\nITERATE label\n\nITERATE can appear only within LOOP, REPEAT, and WHILE statements.\nITERATE means "start the loop again."\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/iterate.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/iterate.html'); -INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (266,9,'JOIN','MySQL supports the following JOIN syntax for the table_references part\nof SELECT statements and multiple-table DELETE and UPDATE statements:\n\ntable_references:\n escaped_table_reference [, escaped_table_reference] ...\n\nescaped_table_reference:\n table_reference\n | { OJ table_reference }\n\ntable_reference:\n table_factor\n | join_table\n\ntable_factor:\n tbl_name [PARTITION (partition_names)]\n [[AS] alias] [index_hint_list]\n | table_subquery [AS] alias\n | ( table_references )\n\njoin_table:\n table_reference [INNER | CROSS] JOIN table_factor [join_condition]\n | table_reference STRAIGHT_JOIN table_factor\n | table_reference STRAIGHT_JOIN table_factor ON conditional_expr\n | table_reference {LEFT|RIGHT} [OUTER] JOIN table_reference join_condition\n | table_reference NATURAL [{LEFT|RIGHT} [OUTER]] JOIN table_factor\n\njoin_condition:\n ON conditional_expr\n | USING (column_list)\n\nindex_hint_list:\n index_hint [, index_hint] ...\n\nindex_hint:\n USE {INDEX|KEY}\n [FOR {JOIN|ORDER BY|GROUP BY}] ([index_list])\n | IGNORE {INDEX|KEY}\n [FOR {JOIN|ORDER BY|GROUP BY}] (index_list)\n | FORCE {INDEX|KEY}\n [FOR {JOIN|ORDER BY|GROUP BY}] (index_list)\n\nindex_list:\n index_name [, index_name] ...\n\nA table reference is also known as a join expression.\n\nA table reference (when it refers to a partitioned table) may contain a\nPARTITION option, including a list of comma-separated partitions,\nsubpartitions, or both. This option follows the name of the table and\nprecedes any alias declaration. The effect of this option is that rows\nare selected only from the listed partitions or subpartitions. Any\npartitions or subpartitions not named in the list are ignored. For more\ninformation and examples, see\nhttp://dev.mysql.com/doc/refman/5.7/en/partitioning-selection.html.\n\nThe syntax of table_factor is extended in MySQL in comparison with\nstandard SQL. The standard accepts only table_reference, not a list of\nthem inside a pair of parentheses.\n\nThis is a conservative extension if each comma in a list of\ntable_reference items is considered as equivalent to an inner join. For\nexample:\n\nSELECT * FROM t1 LEFT JOIN (t2, t3, t4)\n ON (t2.a = t1.a AND t3.b = t1.b AND t4.c = t1.c)\n\nis equivalent to:\n\nSELECT * FROM t1 LEFT JOIN (t2 CROSS JOIN t3 CROSS JOIN t4)\n ON (t2.a = t1.a AND t3.b = t1.b AND t4.c = t1.c)\n\nIn MySQL, JOIN, CROSS JOIN, and INNER JOIN are syntactic equivalents\n(they can replace each other). In standard SQL, they are not\nequivalent. INNER JOIN is used with an ON clause, CROSS JOIN is used\notherwise.\n\nIn general, parentheses can be ignored in join expressions containing\nonly inner join operations. MySQL also supports nested joins. See\nhttp://dev.mysql.com/doc/refman/5.7/en/nested-join-optimization.html.\n\nIndex hints can be specified to affect how the MySQL optimizer makes\nuse of indexes. For more information, see\nhttp://dev.mysql.com/doc/refman/5.7/en/index-hints.html. Optimizer\nhints and the optimizer_switch system variable are other ways to\ninfluence optimizer use of indexes. See\nhttp://dev.mysql.com/doc/refman/5.7/en/optimizer-hints.html, and\nhttp://dev.mysql.com/doc/refman/5.7/en/switchable-optimizations.html.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/join.html\n\n','SELECT left_tbl.*\n FROM left_tbl LEFT JOIN right_tbl ON left_tbl.id = right_tbl.id\n WHERE right_tbl.id IS NULL;\n','http://dev.mysql.com/doc/refman/5.7/en/join.html'); +INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (266,9,'JOIN','MySQL supports the following JOIN syntax for the table_references part\nof SELECT statements and multiple-table DELETE and UPDATE statements:\n\ntable_references:\n escaped_table_reference [, escaped_table_reference] ...\n\nescaped_table_reference:\n table_reference\n | { OJ table_reference }\n\ntable_reference:\n table_factor\n | joined_table\n\ntable_factor:\n tbl_name [PARTITION (partition_names)]\n [[AS] alias] [index_hint_list]\n | table_subquery [AS] alias\n | ( table_references )\n\njoined_table:\n table_reference [INNER | CROSS] JOIN table_factor [join_specification]\n | table_reference STRAIGHT_JOIN table_factor\n | table_reference STRAIGHT_JOIN table_factor ON search_condition\n | table_reference {LEFT|RIGHT} [OUTER] JOIN table_reference join_specification\n | table_reference NATURAL [{LEFT|RIGHT} [OUTER]] JOIN table_factor\n\njoin_specification:\n ON search_condition\n | USING (join_column_list)\n\njoin_column_list:\n column_name [, column_name] ...\n\nindex_hint_list:\n index_hint [, index_hint] ...\n\nindex_hint:\n USE {INDEX|KEY}\n [FOR {JOIN|ORDER BY|GROUP BY}] ([index_list])\n | {IGNORE|FORCE} {INDEX|KEY}\n [FOR {JOIN|ORDER BY|GROUP BY}] (index_list)\n\nindex_list:\n index_name [, index_name] ...\n\nA table reference is also known as a join expression.\n\nA table reference (when it refers to a partitioned table) may contain a\nPARTITION option, including a list of comma-separated partitions,\nsubpartitions, or both. This option follows the name of the table and\nprecedes any alias declaration. The effect of this option is that rows\nare selected only from the listed partitions or subpartitions. Any\npartitions or subpartitions not named in the list are ignored. For more\ninformation and examples, see\nhttp://dev.mysql.com/doc/refman/5.7/en/partitioning-selection.html.\n\nThe syntax of table_factor is extended in MySQL in comparison with\nstandard SQL. The standard accepts only table_reference, not a list of\nthem inside a pair of parentheses.\n\nThis is a conservative extension if each comma in a list of\ntable_reference items is considered as equivalent to an inner join. For\nexample:\n\nSELECT * FROM t1 LEFT JOIN (t2, t3, t4)\n ON (t2.a = t1.a AND t3.b = t1.b AND t4.c = t1.c)\n\nis equivalent to:\n\nSELECT * FROM t1 LEFT JOIN (t2 CROSS JOIN t3 CROSS JOIN t4)\n ON (t2.a = t1.a AND t3.b = t1.b AND t4.c = t1.c)\n\nIn MySQL, JOIN, CROSS JOIN, and INNER JOIN are syntactic equivalents\n(they can replace each other). In standard SQL, they are not\nequivalent. INNER JOIN is used with an ON clause, CROSS JOIN is used\notherwise.\n\nIn general, parentheses can be ignored in join expressions containing\nonly inner join operations. MySQL also supports nested joins. See\nhttp://dev.mysql.com/doc/refman/5.7/en/nested-join-optimization.html.\n\nIndex hints can be specified to affect how the MySQL optimizer makes\nuse of indexes. For more information, see\nhttp://dev.mysql.com/doc/refman/5.7/en/index-hints.html. Optimizer\nhints and the optimizer_switch system variable are other ways to\ninfluence optimizer use of indexes. See\nhttp://dev.mysql.com/doc/refman/5.7/en/optimizer-hints.html, and\nhttp://dev.mysql.com/doc/refman/5.7/en/switchable-optimizations.html.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/join.html\n\n','SELECT left_tbl.*\n FROM left_tbl LEFT JOIN right_tbl ON left_tbl.id = right_tbl.id\n WHERE right_tbl.id IS NULL;\n','http://dev.mysql.com/doc/refman/5.7/en/join.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (267,27,'JSON_APPEND','Syntax:\nJSON_APPEND(json_doc, path, val[, path, val] ...)\n\nAppends values to the end of the indicated arrays within a JSON\ndocument and returns the result. This function was renamed to\nJSON_ARRAY_APPEND() in MySQL 5.7.9; the alias JSON_APPEND() is now\ndeprecated in MySQL 5.7, and is removed in MySQL 8.0.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (268,27,'JSON_ARRAY','Syntax:\nJSON_ARRAY([val[, val] ...])\n\nEvaluates a (possibly empty) list of values and returns a JSON array\ncontaining those values.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/json-creation-functions.html\n\n','mysql> SELECT JSON_ARRAY(1, "abc", NULL, TRUE, CURTIME());\n+---------------------------------------------+\n| JSON_ARRAY(1, "abc", NULL, TRUE, CURTIME()) |\n+---------------------------------------------+\n| [1, "abc", null, true, "11:30:24.000000"] |\n+---------------------------------------------+\n','http://dev.mysql.com/doc/refman/5.7/en/json-creation-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (269,14,'JSON_ARRAYAGG','Syntax:\nJSON_ARRAYAGG(col_or_expr)\n\nAggregates a result set as a single JSON array whose elements consist\nof the rows. The order of elements in this array is undefined. The\nfunction acts on a column or an expression that evaluates to a single\nvalue. Returns NULL if the result contains no rows, or in the event of\nan error.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/group-by-functions.html\n\n','mysql> SELECT o_id, attribute, value FROM t3;\n+------+-----------+-------+\n| o_id | attribute | value |\n+------+-----------+-------+\n| 2 | color | red |\n| 2 | fabric | silk |\n| 3 | color | green |\n| 3 | shape | square|\n+------+-----------+-------+\n4 rows in set (0.00 sec)\n\nmysql> SELECT o_id, JSON_ARRAYAGG(attribute) AS attributes \n > FROM t3 GROUP BY o_id;\n+------+---------------------+\n| o_id | attributes |\n+------+---------------------+\n| 2 | ["color", "fabric"] |\n| 3 | ["color", "shape"] |\n+------+---------------------+\n2 rows in set (0.00 sec)\n','http://dev.mysql.com/doc/refman/5.7/en/group-by-functions.html'); @@ -374,7 +374,7 @@ INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (291,27,'JSON_TYPE','Syntax:\nJSON_TYPE(json_val)\n\nReturns a utf8mb4 string indicating the type of a JSON value. This can\nbe an object, an array, or a scalar type, as shown here:\n\nmysql> SET @j = \'{"a": [10, true]}\';\nmysql> SELECT JSON_TYPE(@j);\n+---------------+\n| JSON_TYPE(@j) |\n+---------------+\n| OBJECT |\n+---------------+\nmysql> SELECT JSON_TYPE(JSON_EXTRACT(@j, \'$.a\'));\n+------------------------------------+\n| JSON_TYPE(JSON_EXTRACT(@j, \'$.a\')) |\n+------------------------------------+\n| ARRAY |\n+------------------------------------+\nmysql> SELECT JSON_TYPE(JSON_EXTRACT(@j, \'$.a[0]\'));\n+---------------------------------------+\n| JSON_TYPE(JSON_EXTRACT(@j, \'$.a[0]\')) |\n+---------------------------------------+\n| INTEGER |\n+---------------------------------------+\nmysql> SELECT JSON_TYPE(JSON_EXTRACT(@j, \'$.a[1]\'));\n+---------------------------------------+\n| JSON_TYPE(JSON_EXTRACT(@j, \'$.a[1]\')) |\n+---------------------------------------+\n| BOOLEAN |\n+---------------------------------------+\n\nJSON_TYPE() returns NULL if the argument is NULL:\n\nmysql> SELECT JSON_TYPE(NULL);\n+-----------------+\n| JSON_TYPE(NULL) |\n+-----------------+\n| NULL |\n+-----------------+\n\nAn error occurs if the argument is not a valid JSON value:\n\nmysql> SELECT JSON_TYPE(1);\nERROR 3146 (22032): Invalid data type for JSON data in argument 1\nto function json_type; a JSON string or JSON type is required.\n\nFor a non-NULL, non-error result, the following list describes the\npossible JSON_TYPE() return values:\n\no Purely JSON types:\n\n o OBJECT: JSON objects\n\n o ARRAY: JSON arrays\n\n o BOOLEAN: The JSON true and false literals\n\n o NULL: The JSON null literal\n\no Numeric types:\n\n o INTEGER: MySQL TINYINT, SMALLINT, MEDIUMINT and INT and BIGINT\n scalars\n\n o DOUBLE: MySQL DOUBLE FLOAT scalars\n\n o DECIMAL: MySQL DECIMAL and NUMERIC scalars\n\no Temporal types:\n\n o DATETIME: MySQL DATETIME and TIMESTAMP scalars\n\n o DATE: MySQL DATE scalars\n\n o TIME: MySQL TIME scalars\n\no String types:\n\n o STRING: MySQL utf8 character type scalars: CHAR, VARCHAR, TEXT,\n ENUM, and SET\n\no Binary types:\n\n o BLOB: MySQL binary type scalars: BINARY, VARBINARY, BLOB\n\n o BIT: MySQL BIT scalars\n\no All other types:\n\n o OPAQUE (raw bits)\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/json-attribute-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/json-attribute-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (292,27,'JSON_UNQUOTE','Syntax:\nJSON_UNQUOTE(json_val)\n\nUnquotes JSON value and returns the result as a utf8mb4 string. Returns\nNULL if the argument is NULL. An error occurs if the value starts and\nends with double quotes but is not a valid JSON string literal.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html\n\n','mysql> SET @j = \'"abc"\';\nmysql> SELECT @j, JSON_UNQUOTE(@j);\n+-------+------------------+\n| @j | JSON_UNQUOTE(@j) |\n+-------+------------------+\n| "abc" | abc |\n+-------+------------------+\nmysql> SET @j = \'[1, 2, 3]\';\nmysql> SELECT @j, JSON_UNQUOTE(@j);\n+-----------+------------------+\n| @j | JSON_UNQUOTE(@j) |\n+-----------+------------------+\n| [1, 2, 3] | [1, 2, 3] |\n+-----------+------------------+\n\nmysql> SELECT @@sql_mode;\n+------------+\n| @@sql_mode |\n+------------+\n| |\n+------------+\n\nmysql> SELECT JSON_UNQUOTE(\'"\\\\t\\\\u0032"\');\n+------------------------------+\n| JSON_UNQUOTE(\'"\\\\t\\\\u0032"\') |\n+------------------------------+\n| 2 |\n+------------------------------+\n\nmysql> SET @@sql_mode = \'NO_BACKSLASH_ESCAPES\';\nmysql> SELECT JSON_UNQUOTE(\'"\\\\t\\\\u0032"\');\n+------------------------------+\n| JSON_UNQUOTE(\'"\\\\t\\\\u0032"\') |\n+------------------------------+\n| \\t\\u0032 |\n+------------------------------+\n\nmysql> SELECT JSON_UNQUOTE(\'"\\t\\u0032"\');\n+----------------------------+\n| JSON_UNQUOTE(\'"\\t\\u0032"\') |\n+----------------------------+\n| 2 |\n+----------------------------+\n','http://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (293,27,'JSON_VALID','Syntax:\nJSON_VALID(val)\n\nReturns 0 or 1 to indicate whether a value is valid JSON. Returns NULL\nif the argument is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/json-attribute-functions.html\n\n','mysql> SELECT JSON_VALID(\'{"a": 1}\');\n+------------------------+\n| JSON_VALID(\'{"a": 1}\') |\n+------------------------+\n| 1 |\n+------------------------+\nmysql> SELECT JSON_VALID(\'hello\'), JSON_VALID(\'"hello"\');\n+---------------------+-----------------------+\n| JSON_VALID(\'hello\') | JSON_VALID(\'"hello"\') |\n+---------------------+-----------------------+\n| 0 | 1 |\n+---------------------+-----------------------+\n','http://dev.mysql.com/doc/refman/5.7/en/json-attribute-functions.html'); -INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (294,2,'KILL','Syntax:\nKILL [CONNECTION | QUERY] processlist_id\n\nEach connection to mysqld runs in a separate thread. You can kill a\nthread with the KILL processlist_id statement.\n\nThread processlist identifiers can be determined from the ID column of\nthe INFORMATION_SCHEMA PROCESSLIST table, the Id column of SHOW\nPROCESSLIST output, and the PROCESSLIST_ID column of the Performance\nSchema threads table. The value for the current thread is returned by\nthe CONNECTION_ID() function.\n\nKILL permits an optional CONNECTION or QUERY modifier:\n\no KILL CONNECTION is the same as KILL with no modifier: It terminates\n the connection associated with the given processlist_id, after\n terminating any statement the connection is executing.\n\no KILL QUERY terminates the statement the connection is currently\n executing, but leaves the connection itself intact.\n\nIf you have the PROCESS privilege, you can see all threads. If you have\nthe SUPER privilege, you can kill all threads and statements.\nOtherwise, you can see and kill only your own threads and statements.\n\nYou can also use the mysqladmin processlist and mysqladmin kill\ncommands to examine and kill threads.\n\n*Note*:\n\nYou cannot use KILL with the Embedded MySQL Server library because the\nembedded server merely runs inside the threads of the host application.\nIt does not create any connection threads of its own.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/kill.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/kill.html'); +INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (294,2,'KILL','Syntax:\nKILL [CONNECTION | QUERY] processlist_id\n\nEach connection to mysqld runs in a separate thread. You can kill a\nthread with the KILL processlist_id statement.\n\nThread processlist identifiers can be determined from the ID column of\nthe INFORMATION_SCHEMA PROCESSLIST table, the Id column of SHOW\nPROCESSLIST output, and the PROCESSLIST_ID column of the Performance\nSchema threads table. The value for the current thread is returned by\nthe CONNECTION_ID() function.\n\nKILL permits an optional CONNECTION or QUERY modifier:\n\no KILL CONNECTION is the same as KILL with no modifier: It terminates\n the connection associated with the given processlist_id, after\n terminating any statement the connection is executing.\n\no KILL QUERY terminates the statement the connection is currently\n executing, but leaves the connection itself intact.\n\nThe ability to see which threads are available to be killed depends on\nthe PROCESS privilege:\n\no Without PROCESS, you can see only your own threads.\n\no With PROCESS, you can see all threads.\n\nThe ability to kill threads and statements depends on the SUPER\nprivilege:\n\no Without SUPER, you can kill only your own threads and statements.\n\no With SUPER, you can kill all threads and statements.\n\nYou can also use the mysqladmin processlist and mysqladmin kill\ncommands to examine and kill threads.\n\n*Note*:\n\nYou cannot use KILL with the Embedded MySQL Server library because the\nembedded server merely runs inside the threads of the host application.\nIt does not create any connection threads of its own.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/kill.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/kill.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (295,5,'LABELS','Syntax:\n[begin_label:] BEGIN\n [statement_list]\nEND [end_label]\n\n[begin_label:] LOOP\n statement_list\nEND LOOP [end_label]\n\n[begin_label:] REPEAT\n statement_list\nUNTIL search_condition\nEND REPEAT [end_label]\n\n[begin_label:] WHILE search_condition DO\n statement_list\nEND WHILE [end_label]\n\nLabels are permitted for BEGIN ... END blocks and for the LOOP, REPEAT,\nand WHILE statements. Label use for those statements follows these\nrules:\n\no begin_label must be followed by a colon.\n\no begin_label can be given without end_label. If end_label is present,\n it must be the same as begin_label.\n\no end_label cannot be given without begin_label.\n\no Labels at the same nesting level must be distinct.\n\no Labels can be up to 16 characters long.\n\nTo refer to a label within the labeled construct, use an ITERATE or\nLEAVE statement. The following example uses those statements to\ncontinue iterating or terminate the loop:\n\nCREATE PROCEDURE doiterate(p1 INT)\nBEGIN\n label1: LOOP\n SET p1 = p1 + 1;\n IF p1 < 10 THEN ITERATE label1; END IF;\n LEAVE label1;\n END LOOP label1;\nEND;\n\nThe scope of a block label does not include the code for handlers\ndeclared within the block. For details, see [HELP DECLARE HANDLER].\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/statement-labels.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/statement-labels.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (296,11,'LAST_DAY','Syntax:\nLAST_DAY(date)\n\nTakes a date or datetime value and returns the corresponding value for\nthe last day of the month. Returns NULL if the argument is invalid.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT LAST_DAY(\'2003-02-05\');\n -> \'2003-02-28\'\nmysql> SELECT LAST_DAY(\'2004-02-05\');\n -> \'2004-02-29\'\nmysql> SELECT LAST_DAY(\'2004-01-01 01:01:01\');\n -> \'2004-01-31\'\nmysql> SELECT LAST_DAY(\'2003-03-32\');\n -> NULL\n','http://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (297,22,'LAST_INSERT_ID','Syntax:\nLAST_INSERT_ID(), LAST_INSERT_ID(expr)\n\nWith no argument, LAST_INSERT_ID() returns a BIGINT UNSIGNED (64-bit)\nvalue representing the first automatically generated value successfully\ninserted for an AUTO_INCREMENT column as a result of the most recently\nexecuted INSERT statement. The value of LAST_INSERT_ID() remains\nunchanged if no rows are successfully inserted.\n\nWith an argument, LAST_INSERT_ID() returns an unsigned integer.\n\nFor example, after inserting a row that generates an AUTO_INCREMENT\nvalue, you can get the value like this:\n\nmysql> SELECT LAST_INSERT_ID();\n -> 195\n\nThe currently executing statement does not affect the value of\nLAST_INSERT_ID(). Suppose that you generate an AUTO_INCREMENT value\nwith one statement, and then refer to LAST_INSERT_ID() in a\nmultiple-row INSERT statement that inserts rows into a table with its\nown AUTO_INCREMENT column. The value of LAST_INSERT_ID() will remain\nstable in the second statement; its value for the second and later rows\nis not affected by the earlier row insertions. (However, if you mix\nreferences to LAST_INSERT_ID() and LAST_INSERT_ID(expr), the effect is\nundefined.)\n\nIf the previous statement returned an error, the value of\nLAST_INSERT_ID() is undefined. For transactional tables, if the\nstatement is rolled back due to an error, the value of LAST_INSERT_ID()\nis left undefined. For manual ROLLBACK, the value of LAST_INSERT_ID()\nis not restored to that before the transaction; it remains as it was at\nthe point of the ROLLBACK.\n\nPrior to MySQL 5.7.3, this function was not replicated correctly if\nreplication filtering rules were in use. (Bug #17234370, Bug #69861)\n\nWithin the body of a stored routine (procedure or function) or a\ntrigger, the value of LAST_INSERT_ID() changes the same way as for\nstatements executed outside the body of these kinds of objects. The\neffect of a stored routine or trigger upon the value of\nLAST_INSERT_ID() that is seen by following statements depends on the\nkind of routine:\n\no If a stored procedure executes statements that change the value of\n LAST_INSERT_ID(), the changed value is seen by statements that follow\n the procedure call.\n\no For stored functions and triggers that change the value, the value is\n restored when the function or trigger ends, so following statements\n will not see a changed value.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/information-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/information-functions.html'); @@ -388,9 +388,9 @@ INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (305,40,'LINEFROMWKB','LineFromWKB(wkb[, srid]), LineStringFromWKB(wkb[, srid])\n\nST_LineFromWKB(), ST_LineStringFromWKB(), LineFromWKB(), and\nLineStringFromWKB() are synonyms. For more information, see the\ndescription of ST_LineFromWKB().\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (306,17,'LINESTRING','LineString(pt [, pt] ...)\n\nConstructs a LineString value from a number of Point or WKB Point\narguments. If the number of arguments is less than two, the return\nvalue is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/gis-mysql-specific-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/gis-mysql-specific-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (307,29,'LN','Syntax:\nLN(X)\n\nReturns the natural logarithm of X; that is, the base-e logarithm of X.\nIf X is less than or equal to 0.0E0, the function returns NULL and (as\nof MySQL 5.7.4) a warning "Invalid argument for logarithm" is reported.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT LN(2);\n -> 0.69314718055995\nmysql> SELECT LN(-2);\n -> NULL\n','http://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'); -INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (308,9,'LOAD DATA','Syntax:\nLOAD DATA [LOW_PRIORITY | CONCURRENT] [LOCAL] INFILE \'file_name\'\n [REPLACE | IGNORE]\n INTO TABLE tbl_name\n [PARTITION (partition_name [, partition_name] ...)]\n [CHARACTER SET charset_name]\n [{FIELDS | COLUMNS}\n [TERMINATED BY \'string\']\n [[OPTIONALLY] ENCLOSED BY \'char\']\n [ESCAPED BY \'char\']\n ]\n [LINES\n [STARTING BY \'string\']\n [TERMINATED BY \'string\']\n ]\n [IGNORE number {LINES | ROWS}]\n [(col_name_or_user_var\n [, col_name_or_user_var] ...)]\n [SET col_name={expr | DEFAULT},\n [, col_name={expr | DEFAULT}] ...]\n\nThe LOAD DATA INFILE statement reads rows from a text file into a table\nat a very high speed. LOAD DATA INFILE is the complement of SELECT ...\nINTO OUTFILE. (See\nhttp://dev.mysql.com/doc/refman/5.7/en/select-into.html.) To write data\nfrom a table to a file, use SELECT ... INTO OUTFILE. To read the file\nback into a table, use LOAD DATA INFILE. The syntax of the FIELDS and\nLINES clauses is the same for both statements.\n\nYou can also load data files by using the mysqlimport utility; see\nhttp://dev.mysql.com/doc/refman/5.7/en/mysqlimport.html. mysqlimport\noperates by sending a LOAD DATA INFILE statement to the server. The\n--local option causes mysqlimport to read data files from the client\nhost. You can specify the --compress option to get better performance\nover slow networks if the client and server support the compressed\nprotocol.\n\nFor more information about the efficiency of INSERT versus LOAD DATA\nINFILE and speeding up LOAD DATA INFILE, see\nhttp://dev.mysql.com/doc/refman/5.7/en/insert-optimization.html.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/load-data.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/load-data.html'); +INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (308,9,'LOAD DATA','Syntax:\nLOAD DATA\n [LOW_PRIORITY | CONCURRENT] [LOCAL]\n INFILE \'file_name\'\n [REPLACE | IGNORE]\n INTO TABLE tbl_name\n [PARTITION (partition_name [, partition_name] ...)]\n [CHARACTER SET charset_name]\n [{FIELDS | COLUMNS}\n [TERMINATED BY \'string\']\n [[OPTIONALLY] ENCLOSED BY \'char\']\n [ESCAPED BY \'char\']\n ]\n [LINES\n [STARTING BY \'string\']\n [TERMINATED BY \'string\']\n ]\n [IGNORE number {LINES | ROWS}]\n [(col_name_or_user_var\n [, col_name_or_user_var] ...)]\n [SET col_name={expr | DEFAULT},\n [, col_name={expr | DEFAULT}] ...]\n\nThe LOAD DATA statement reads rows from a text file into a table at a\nvery high speed. LOAD DATA is the complement of SELECT ... INTO\nOUTFILE. (See http://dev.mysql.com/doc/refman/5.7/en/select-into.html.)\nTo write data from a table to a file, use SELECT ... INTO OUTFILE. To\nread the file back into a table, use LOAD DATA. The syntax of the\nFIELDS and LINES clauses is the same for both statements.\n\nYou can also load data files by using the mysqlimport utility; see\nhttp://dev.mysql.com/doc/refman/5.7/en/mysqlimport.html. mysqlimport\noperates by sending a LOAD DATA statement to the server.\n\nFor more information about the efficiency of INSERT versus LOAD DATA\nand speeding up LOAD DATA, see\nhttp://dev.mysql.com/doc/refman/5.7/en/insert-optimization.html.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/load-data.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/load-data.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (309,2,'LOAD INDEX','Syntax:\nLOAD INDEX INTO CACHE\n tbl_index_list [, tbl_index_list] ...\n\ntbl_index_list:\n tbl_name\n [PARTITION (partition_list | ALL)]\n [[INDEX|KEY] (index_name[, index_name] ...)]\n [IGNORE LEAVES]\n\npartition_list:\n partition_name[, partition_name][, ...]\n\nThe LOAD INDEX INTO CACHE statement preloads a table index into the key\ncache to which it has been assigned by an explicit CACHE INDEX\nstatement, or into the default key cache otherwise.\n\nLOAD INDEX INTO CACHE is used only for MyISAM tables. In MySQL 5.7, it\nis also supported for partitioned MyISAM tables; in addition, indexes\non partitioned tables can be preloaded for one, several, or all\npartitions.\n\nThe IGNORE LEAVES modifier causes only blocks for the nonleaf nodes of\nthe index to be preloaded.\n\nIGNORE LEAVES is also supported for partitioned MyISAM tables.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/load-index.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/load-index.html'); -INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (310,9,'LOAD XML','Syntax:\nLOAD XML [LOW_PRIORITY | CONCURRENT] [LOCAL] INFILE \'file_name\'\n [REPLACE | IGNORE]\n INTO TABLE [db_name.]tbl_name\n [CHARACTER SET charset_name]\n [ROWS IDENTIFIED BY \'\']\n [IGNORE number {LINES | ROWS}]\n [(field_name_or_user_var\n [, field_name_or_user_var] ...)]\n [SET col_name={expr | DEFAULT},\n [, col_name={expr | DEFAULT}] ...]\n\nThe LOAD XML statement reads data from an XML file into a table. The\nfile_name must be given as a literal string. The tagname in the\noptional ROWS IDENTIFIED BY clause must also be given as a literal\nstring, and must be surrounded by angle brackets (< and >).\n\nLOAD XML acts as the complement of running the mysql client in XML\noutput mode (that is, starting the client with the --xml option). To\nwrite data from a table to an XML file, you can invoke the mysql client\nwith the --xml and -e options from the system shell, as shown here:\n\nshell> mysql --xml -e \'SELECT * FROM mydb.mytable\' > file.xml\n\nTo read the file back into a table, use LOAD XML INFILE. By default,\nthe element is considered to be the equivalent of a database\ntable row; this can be changed using the ROWS IDENTIFIED BY clause.\n\nThis statement supports three different XML formats:\n\no Column names as attributes and column values as attribute values:\n\n\n\no Column names as tags and column values as the content of these tags:\n\n\n value1\n value2\n\n\no Column names are the name attributes of tags, and values are\n the contents of these tags:\n\n\n value1\n value2\n\n\n This is the format used by other MySQL tools, such as mysqldump.\n\nAll three formats can be used in the same XML file; the import routine\nautomatically detects the format for each row and interprets it\ncorrectly. Tags are matched based on the tag or attribute name and the\ncolumn name.\n\nThe following clauses work essentially the same way for LOAD XML as\nthey do for LOAD DATA:\n\no LOW_PRIORITY or CONCURRENT\n\no LOCAL\n\no REPLACE or IGNORE\n\no CHARACTER SET\n\no SET\n\nSee [HELP LOAD DATA], for more information about these clauses.\n\n(field_name_or_user_var, ...) is a list of one or more comma-separated\nXML fields or user variables. The name of a user variable used for this\npurpose must match the name of a field from the XML file, prefixed with\n@. You can use field names to select only desired fields. User\nvariables can be employed to store the corresponding field values for\nsubsequent re-use.\n\nThe IGNORE number LINES or IGNORE number ROWS clause causes the first\nnumber rows in the XML file to be skipped. It is analogous to the LOAD\nDATA statement\'s IGNORE ... LINES clause.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/load-xml.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/load-xml.html'); +INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (310,9,'LOAD XML','Syntax:\nLOAD XML\n [LOW_PRIORITY | CONCURRENT] [LOCAL]\n INFILE \'file_name\'\n [REPLACE | IGNORE]\n INTO TABLE [db_name.]tbl_name\n [CHARACTER SET charset_name]\n [ROWS IDENTIFIED BY \'\']\n [IGNORE number {LINES | ROWS}]\n [(field_name_or_user_var\n [, field_name_or_user_var] ...)]\n [SET col_name={expr | DEFAULT},\n [, col_name={expr | DEFAULT}] ...]\n\nThe LOAD XML statement reads data from an XML file into a table. The\nfile_name must be given as a literal string. The tagname in the\noptional ROWS IDENTIFIED BY clause must also be given as a literal\nstring, and must be surrounded by angle brackets (< and >).\n\nLOAD XML acts as the complement of running the mysql client in XML\noutput mode (that is, starting the client with the --xml option). To\nwrite data from a table to an XML file, you can invoke the mysql client\nwith the --xml and -e options from the system shell, as shown here:\n\nshell> mysql --xml -e \'SELECT * FROM mydb.mytable\' > file.xml\n\nTo read the file back into a table, use LOAD XML. By default, the \nelement is considered to be the equivalent of a database table row;\nthis can be changed using the ROWS IDENTIFIED BY clause.\n\nThis statement supports three different XML formats:\n\no Column names as attributes and column values as attribute values:\n\n\n\no Column names as tags and column values as the content of these tags:\n\n\n value1\n value2\n\n\no Column names are the name attributes of tags, and values are\n the contents of these tags:\n\n\n value1\n value2\n\n\n This is the format used by other MySQL tools, such as mysqldump.\n\nAll three formats can be used in the same XML file; the import routine\nautomatically detects the format for each row and interprets it\ncorrectly. Tags are matched based on the tag or attribute name and the\ncolumn name.\n\nThe following clauses work essentially the same way for LOAD XML as\nthey do for LOAD DATA:\n\no LOW_PRIORITY or CONCURRENT\n\no LOCAL\n\no REPLACE or IGNORE\n\no CHARACTER SET\n\no SET\n\nSee [HELP LOAD DATA], for more information about these clauses.\n\n(field_name_or_user_var, ...) is a list of one or more comma-separated\nXML fields or user variables. The name of a user variable used for this\npurpose must match the name of a field from the XML file, prefixed with\n@. You can use field names to select only desired fields. User\nvariables can be employed to store the corresponding field values for\nsubsequent re-use.\n\nThe IGNORE number LINES or IGNORE number ROWS clause causes the first\nnumber rows in the XML file to be skipped. It is analogous to the LOAD\nDATA statement\'s IGNORE ... LINES clause.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/load-xml.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/load-xml.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (311,35,'LOAD_FILE','Syntax:\nLOAD_FILE(file_name)\n\nReads the file and returns the file contents as a string. To use this\nfunction, the file must be located on the server host, you must specify\nthe full path name to the file, and you must have the FILE privilege.\nThe file must be readable by all and its size less than\nmax_allowed_packet bytes. If the secure_file_priv system variable is\nset to a nonempty directory name, the file to be loaded must be located\nin that directory.\n\nIf the file does not exist or cannot be read because one of the\npreceding conditions is not satisfied, the function returns NULL.\n\nThe character_set_filesystem system variable controls interpretation of\nfile names that are given as literal strings.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> UPDATE t\n SET blob_col=LOAD_FILE(\'/tmp/picture\')\n WHERE id=1;\n','http://dev.mysql.com/doc/refman/5.7/en/string-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (312,11,'LOCALTIME','Syntax:\nLOCALTIME, LOCALTIME([fsp])\n\nLOCALTIME and LOCALTIME() are synonyms for NOW().\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (313,11,'LOCALTIMESTAMP','Syntax:\nLOCALTIMESTAMP, LOCALTIMESTAMP([fsp])\n\nLOCALTIMESTAMP and LOCALTIMESTAMP() are synonyms for NOW().\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'); @@ -448,7 +448,7 @@ INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (365,4,'NOT IN','Syntax:\nexpr NOT IN (value,...)\n\nThis is the same as NOT (expr IN (value,...)).\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (366,35,'NOT LIKE','Syntax:\nexpr NOT LIKE pat [ESCAPE \'escape_char\']\n\nThis is the same as NOT (expr LIKE pat [ESCAPE \'escape_char\']).\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/string-comparison-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/string-comparison-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (367,35,'NOT REGEXP','Syntax:\nexpr NOT REGEXP pat, expr NOT RLIKE pat\n\nThis is the same as NOT (expr REGEXP pat).\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/regexp.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/regexp.html'); -INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (368,11,'NOW','Syntax:\nNOW([fsp])\n\nReturns the current date and time as a value in \'YYYY-MM-DD HH:MM:SS\'\nor YYYYMMDDHHMMSS format, depending on whether the function is used in\na string or numeric context. The value is expressed in the current time\nzone.\n\nIf the fsp argument is given to specify a fractional seconds precision\nfrom 0 to 6, the return value includes a fractional seconds part of\nthat many digits.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT NOW();\n -> \'2007-12-15 23:50:26\'\nmysql> SELECT NOW() + 0;\n -> 20071215235026.000000\n','http://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'); +INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (368,11,'NOW','Syntax:\nNOW([fsp])\n\nReturns the current date and time as a value in \'YYYY-MM-DD HH:MM:SS\'\nor YYYYMMDDHHMMSS format, depending on whether the function is used in\na string or numeric context. The value is expressed in the session time\nzone.\n\nIf the fsp argument is given to specify a fractional seconds precision\nfrom 0 to 6, the return value includes a fractional seconds part of\nthat many digits.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT NOW();\n -> \'2007-12-15 23:50:26\'\nmysql> SELECT NOW() + 0;\n -> 20071215235026.000000\n','http://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (369,7,'NULLIF','Syntax:\nNULLIF(expr1,expr2)\n\nReturns NULL if expr1 = expr2 is true, otherwise returns expr1. This is\nthe same as CASE WHEN expr1 = expr2 THEN NULL ELSE expr1 END.\n\nThe return value has the same type as the first argument.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/control-flow-functions.html\n\n','mysql> SELECT NULLIF(1,1);\n -> NULL\nmysql> SELECT NULLIF(1,2);\n -> 1\n','http://dev.mysql.com/doc/refman/5.7/en/control-flow-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (370,20,'NUMGEOMETRIES','NumGeometries(gc)\n\nST_NumGeometries() and NumGeometries() are synonyms. For more\ninformation, see the description of ST_NumGeometries().\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/gis-geometrycollection-property-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/gis-geometrycollection-property-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (371,32,'NUMINTERIORRINGS','NumInteriorRings(poly)\n\nST_NumInteriorRings() and NumInteriorRings() are synonyms. For more\ninformation, see the description of ST_NumInteriorRings().\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/gis-polygon-property-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/gis-polygon-property-functions.html'); @@ -486,8 +486,8 @@ INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (403,35,'REGEXP','Syntax:\nexpr REGEXP pat, expr RLIKE pat\n\nReturns 1 if the string expr matches the regular expression specified\nby the pattern pat, 0 otherwise. If either expr or pat is NULL, the\nreturn value is NULL.\n\nRLIKE is a synonym for REGEXP.\n\nThe pattern can be an extended regular expression, the syntax for which\nis discussed in\nhttp://dev.mysql.com/doc/refman/5.7/en/regexp.html#regexp-syntax. The\npattern need not be a literal string. For example, it can be specified\nas a string expression or table column.\n\n*Note*:\n\nBecause MySQL uses the C escape syntax in strings (for example, \\n to\nrepresent the newline character), you must double any \\ that you use in\nyour REGEXP arguments.\n\nRegular expression operations use the character set and collation of\nthe string expression and pattern arguments when deciding the type of a\ncharacter and performing the comparison. If the arguments have\ndifferent character sets or collations, coercibility rules apply as\ndescribed in\nhttp://dev.mysql.com/doc/refman/5.7/en/charset-collation-coercibility.h\ntml. If either argument is a binary string, the arguments are handled\nin case-sensitive fashion as binary strings.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/regexp.html\n\n','mysql> SELECT \'Michael!\' REGEXP \'.*\';\n+------------------------+\n| \'Michael!\' REGEXP \'.*\' |\n+------------------------+\n| 1 |\n+------------------------+\nmysql> SELECT \'new*\\n*line\' REGEXP \'new\\\\*.\\\\*line\';\n+---------------------------------------+\n| \'new*\\n*line\' REGEXP \'new\\\\*.\\\\*line\' |\n+---------------------------------------+\n| 0 |\n+---------------------------------------+\nmysql> SELECT \'a\' REGEXP \'^[a-d]\';\n+---------------------+\n| \'a\' REGEXP \'^[a-d]\' |\n+---------------------+\n| 1 |\n+---------------------+\nmysql> SELECT \'a\' REGEXP \'A\', \'a\' REGEXP BINARY \'A\';\n+----------------+-----------------------+\n| \'a\' REGEXP \'A\' | \'a\' REGEXP BINARY \'A\' |\n+----------------+-----------------------+\n| 1 | 0 |\n+----------------+-----------------------+\n','http://dev.mysql.com/doc/refman/5.7/en/regexp.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (404,25,'RELEASE_ALL_LOCKS','Syntax:\nRELEASE_ALL_LOCKS()\n\nReleases all named locks held by the current session and returns the\nnumber of locks released (0 if there were none)\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/locking-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/locking-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (405,25,'RELEASE_LOCK','Syntax:\nRELEASE_LOCK(str)\n\nReleases the lock named by the string str that was obtained with\nGET_LOCK(). Returns 1 if the lock was released, 0 if the lock was not\nestablished by this thread (in which case the lock is not released),\nand NULL if the named lock did not exist. The lock does not exist if it\nwas never obtained by a call to GET_LOCK() or if it has previously been\nreleased.\n\nThe DO statement is convenient to use with RELEASE_LOCK(). See [HELP\nDO].\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/locking-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/locking-functions.html'); -INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (406,8,'RENAME TABLE','Syntax:\nRENAME TABLE\n tbl_name TO new_tbl_name\n [, tbl_name2 TO new_tbl_name2] ...\n\nRENAME TABLE renames one or more tables. You must have ALTER and DROP\nprivileges for the original table, and CREATE and INSERT privileges for\nthe new table.\n\nFor example, to rename a table named old_table to to new_table, use\nthis statement:\n\nRENAME TABLE old_table TO new_table;\n\nThat statement is equivalent to the following ALTER TABLE statement:\n\nALTER TABLE old_table RENAME new_table;\n\nRENAME TABLE, unlike ALTER TABLE, can rename multiple tables within a\nsingle statement:\n\nRENAME TABLE old_table1 TO new_table1,\n old_table2 TO new_table2,\n old_table3 TO new_table3;\n\nRenaming operations are performed left to right. Thus, to swap two\ntable names, do this (assuming that a table with the intermediary name\ntmp_table does not already exist):\n\nRENAME TABLE old_table TO tmp_table,\n new_table TO old_table,\n tmp_table TO new_table;\n\nMetadata locks on tables are acquired in name order, which in some\ncases can make a difference in operation outcome when multiple\ntransactions execute concurrently. See\nhttp://dev.mysql.com/doc/refman/5.7/en/metadata-locking.html.\n\nTo execute RENAME TABLE, there must be no active transactions or tables\nlocked with LOCK TABLES. With the transaction table locking conditions\nsatisfied, the rename operation is done atomically; no other session\ncan access any of the tables while the rename is in progress.\n\nIf any errors occur during a RENAME TABLE, the statement fails and no\nchanges are made.\n\nYou can use RENAME TABLE to move a table from one database to another:\n\nRENAME TABLE current_db.tbl_name TO other_db.tbl_name;\n\nUsing this method to move all tables from one database to a different\none in effect renames the database (an operation for which MySQL has no\nsingle statement), except that the original database continues to\nexist, albeit with no tables.\n\nLike RENAME TABLE, ALTER TABLE ... RENAME can also be used to move a\ntable to a different database. Regardless of the statement used, if the\nrename operation would move the table to a database located on a\ndifferent file system, the success of the outcome is platform specific\nand depends on the underlying operating system calls used to move table\nfiles.\n\nIf a table has triggers, attempts to rename the table into a different\ndatabase fail with a Trigger in wrong schema (ER_TRG_IN_WRONG_SCHEMA)\nerror.\n\nTo rename TEMPORARY tables, RENAME TABLE does not work. Use ALTER TABLE\ninstead.\n\nRENAME TABLE works for views, except that views cannot be renamed into\na different database.\n\nAny privileges granted specifically for a renamed table or view are not\nmigrated to the new name. They must be changed manually.\n\nRENAME TABLE changes internally generated foreign key constraint names\nand user-defined foreign key constraint names that contain the string\n"tbl_name_ibfk_" to reflect the new table name. InnoDB interprets\nforeign key constraint names that contain the string "tbl_name_ibfk_"\nas internally generated names.\n\nForeign key constraint names that point to the renamed table are\nautomatically updated unless there is a conflict, in which case the\nstatement fails with an error. A conflict occurs if the renamed\nconstraint name already exists. In such cases, you must drop and\nre-create the foreign keys for them to function properly.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/rename-table.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/rename-table.html'); -INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (407,1,'RENAME USER','Syntax:\nRENAME USER old_user TO new_user\n [, old_user TO new_user] ...\n\nThe RENAME USER statement renames existing MySQL accounts. An error\noccurs for old accounts that do not exist or new accounts that already\nexist.\n\nTo use RENAME USER, you must have the global CREATE USER privilege, or\nthe UPDATE privilege for the mysql system database. When the read_only\nsystem variable is enabled, RENAME USER additionally requires the SUPER\nprivilege.\n\nEach account name uses the format described in\nhttp://dev.mysql.com/doc/refman/5.7/en/account-names.html. For example:\n\nRENAME USER \'jeffrey\'@\'localhost\' TO \'jeff\'@\'127.0.0.1\';\n\nThe host name part of the account name, if omitted, defaults to \'%\'.\n\nRENAME USER causes the privileges held by the old user to be those held\nby the new user. However, RENAME USER does not automatically drop or\ninvalidate databases or objects within them that the old user created.\nThis includes stored programs or views for which the DEFINER attribute\nnames the old user. Attempts to access such objects may produce an\nerror if they execute in definer security context. (For information\nabout security context, see\nhttp://dev.mysql.com/doc/refman/5.7/en/stored-programs-security.html.)\n\nThe privilege changes take effect as indicated in\nhttp://dev.mysql.com/doc/refman/5.7/en/privilege-changes.html.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/rename-user.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/rename-user.html'); +INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (406,8,'RENAME TABLE','Syntax:\nRENAME TABLE\n tbl_name TO new_tbl_name\n [, tbl_name2 TO new_tbl_name2] ...\n\nRENAME TABLE renames one or more tables. You must have ALTER and DROP\nprivileges for the original table, and CREATE and INSERT privileges for\nthe new table.\n\nFor example, to rename a table named old_table to to new_table, use\nthis statement:\n\nRENAME TABLE old_table TO new_table;\n\nThat statement is equivalent to the following ALTER TABLE statement:\n\nALTER TABLE old_table RENAME new_table;\n\nRENAME TABLE, unlike ALTER TABLE, can rename multiple tables within a\nsingle statement:\n\nRENAME TABLE old_table1 TO new_table1,\n old_table2 TO new_table2,\n old_table3 TO new_table3;\n\nRenaming operations are performed left to right. Thus, to swap two\ntable names, do this (assuming that a table with the intermediary name\ntmp_table does not already exist):\n\nRENAME TABLE old_table TO tmp_table,\n new_table TO old_table,\n tmp_table TO new_table;\n\nMetadata locks on tables are acquired in name order, which in some\ncases can make a difference in operation outcome when multiple\ntransactions execute concurrently. See\nhttp://dev.mysql.com/doc/refman/5.7/en/metadata-locking.html.\n\nTo execute RENAME TABLE, there must be no active transactions or tables\nlocked with LOCK TABLES. With the transaction table locking conditions\nsatisfied, the rename operation is done atomically; no other session\ncan access any of the tables while the rename is in progress.\n\nIf any errors occur during a RENAME TABLE, the statement fails and no\nchanges are made.\n\nYou can use RENAME TABLE to move a table from one database to another:\n\nRENAME TABLE current_db.tbl_name TO other_db.tbl_name;\n\nUsing this method to move all tables from one database to a different\none in effect renames the database (an operation for which MySQL has no\nsingle statement), except that the original database continues to\nexist, albeit with no tables.\n\nLike RENAME TABLE, ALTER TABLE ... RENAME can also be used to move a\ntable to a different database. Regardless of the statement used, if the\nrename operation would move the table to a database located on a\ndifferent file system, the success of the outcome is platform specific\nand depends on the underlying operating system calls used to move table\nfiles.\n\nIf a table has triggers, attempts to rename the table into a different\ndatabase fail with a Trigger in wrong schema (ER_TRG_IN_WRONG_SCHEMA)\nerror.\n\nTo rename TEMPORARY tables, RENAME TABLE does not work. Use ALTER TABLE\ninstead.\n\nRENAME TABLE works for views, except that views cannot be renamed into\na different database.\n\nAny privileges granted specifically for a renamed table or view are not\nmigrated to the new name. They must be changed manually.\n\nRENAME TABLE tbl_name TO new_tbl_name changes internally generated\nforeign key constraint names and user-defined foreign key constraint\nnames that begin with the string "tbl_name_ibfk_" to reflect the new\ntable name. InnoDB interprets foreign key constraint names that begin\nwith the string "tbl_name_ibfk_" as internally generated names.\n\nForeign key constraint names that point to the renamed table are\nautomatically updated unless there is a conflict, in which case the\nstatement fails with an error. A conflict occurs if the renamed\nconstraint name already exists. In such cases, you must drop and\nre-create the foreign keys for them to function properly.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/rename-table.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/rename-table.html'); +INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (407,1,'RENAME USER','Syntax:\nRENAME USER old_user TO new_user\n [, old_user TO new_user] ...\n\nThe RENAME USER statement renames existing MySQL accounts. An error\noccurs for old accounts that do not exist or new accounts that already\nexist.\n\nTo use RENAME USER, you must have the global CREATE USER privilege, or\nthe UPDATE privilege for the mysql system database. When the read_only\nsystem variable is enabled, RENAME USER additionally requires the SUPER\nprivilege.\n\nEach account name uses the format described in\nhttp://dev.mysql.com/doc/refman/5.7/en/account-names.html. For example:\n\nRENAME USER \'jeffrey\'@\'localhost\' TO \'jeff\'@\'127.0.0.1\';\n\nThe host name part of the account name, if omitted, defaults to \'%\'.\n\nRENAME USER causes the privileges held by the old user to be those held\nby the new user. However, RENAME USER does not automatically drop or\ninvalidate databases or objects within them that the old user created.\nThis includes stored programs or views for which the DEFINER attribute\nnames the old user. Attempts to access such objects may produce an\nerror if they execute in definer security context. (For information\nabout security context, see\nhttp://dev.mysql.com/doc/refman/5.7/en/stored-objects-security.html.)\n\nThe privilege changes take effect as indicated in\nhttp://dev.mysql.com/doc/refman/5.7/en/privilege-changes.html.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/rename-user.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/rename-user.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (408,36,'REPAIR TABLE','Syntax:\nREPAIR [NO_WRITE_TO_BINLOG | LOCAL]\n TABLE tbl_name [, tbl_name] ...\n [QUICK] [EXTENDED] [USE_FRM]\n\nREPAIR TABLE repairs a possibly corrupted table, for certain storage\nengines only.\n\nThis statement requires SELECT and INSERT privileges for the table.\n\nAlthough normally you should never have to run REPAIR TABLE, if\ndisaster strikes, this statement is very likely to get back all your\ndata from a MyISAM table. If your tables become corrupted often, try to\nfind the reason for it, to eliminate the need to use REPAIR TABLE. See\nhttp://dev.mysql.com/doc/refman/5.7/en/crashing.html, and\nhttp://dev.mysql.com/doc/refman/5.7/en/myisam-table-problems.html.\n\nREPAIR TABLE checks the table to see whether an upgrade is required. If\nso, it performs the upgrade, following the same rules as CHECK TABLE\n... FOR UPGRADE. See [HELP CHECK TABLE], for more information.\n\n*Important*:\n\no Make a backup of a table before performing a table repair operation;\n under some circumstances the operation might cause data loss.\n Possible causes include but are not limited to file system errors.\n See http://dev.mysql.com/doc/refman/5.7/en/backup-and-recovery.html.\n\no If the server crashes during a REPAIR TABLE operation, it is\n essential after restarting it that you immediately execute another\n REPAIR TABLE statement for the table before performing any other\n operations on it. In the worst case, you might have a new clean index\n file without information about the data file, and then the next\n operation you perform could overwrite the data file. This is an\n unlikely but possible scenario that underscores the value of making a\n backup first.\n\no In the event that a table on the master becomes corrupted and you run\n REPAIR TABLE on it, any resulting changes to the original table are\n not propagated to slaves.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/repair-table.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/repair-table.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (409,35,'REPEAT FUNCTION','Syntax:\nREPEAT(str,count)\n\nReturns a string consisting of the string str repeated count times. If\ncount is less than 1, returns an empty string. Returns NULL if str or\ncount are NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT REPEAT(\'MySQL\', 3);\n -> \'MySQLMySQLMySQL\'\n','http://dev.mysql.com/doc/refman/5.7/en/string-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (410,5,'REPEAT LOOP','Syntax:\n[begin_label:] REPEAT\n statement_list\nUNTIL search_condition\nEND REPEAT [end_label]\n\nThe statement list within a REPEAT statement is repeated until the\nsearch_condition expression is true. Thus, a REPEAT always enters the\nloop at least once. statement_list consists of one or more statements,\neach terminated by a semicolon (;) statement delimiter.\n\nA REPEAT statement can be labeled. For the rules regarding label use,\nsee [HELP labels].\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/repeat.html\n\n','mysql> delimiter //\n\nmysql> CREATE PROCEDURE dorepeat(p1 INT)\n BEGIN\n SET @x = 0;\n REPEAT\n SET @x = @x + 1;\n UNTIL @x > p1 END REPEAT;\n END\n //\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> CALL dorepeat(1000)//\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT @x//\n+------+\n| @x |\n+------+\n| 1001 |\n+------+\n1 row in set (0.00 sec)\n','http://dev.mysql.com/doc/refman/5.7/en/repeat.html'); @@ -502,7 +502,7 @@ INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (419,1,'REVOKE','Syntax:\nREVOKE\n priv_type [(column_list)]\n [, priv_type [(column_list)]] ...\n ON [object_type] priv_level\n FROM user [, user] ...\n\nREVOKE ALL [PRIVILEGES], GRANT OPTION\n FROM user [, user] ...\n\nREVOKE PROXY ON user\n FROM user [, user] ...\n\nThe REVOKE statement enables system administrators to revoke privileges\nfrom MySQL accounts.\n\nWhen the read_only system variable is enabled, REVOKE requires the\nSUPER privilege in addition to any other required privileges described\nin the following discussion.\n\nEach account name uses the format described in\nhttp://dev.mysql.com/doc/refman/5.7/en/account-names.html. For example:\n\nREVOKE INSERT ON *.* FROM \'jeffrey\'@\'localhost\';\n\nThe host name part of the account name, if omitted, defaults to \'%\'.\n\nFor details on the levels at which privileges exist, the permissible\npriv_type, priv_level, and object_type values, and the syntax for\nspecifying users and passwords, see [HELP GRANT].\n\nTo use the first REVOKE syntax, you must have the GRANT OPTION\nprivilege, and you must have the privileges that you are revoking.\n\nTo revoke all privileges, use the second syntax, which drops all\nglobal, database, table, column, and routine privileges for the named\nuser or users:\n\nREVOKE ALL PRIVILEGES, GRANT OPTION FROM user [, user] ...\n\nTo use this REVOKE syntax, you must have the global CREATE USER\nprivilege, or the UPDATE privilege for the mysql system database.\n\nUser accounts from which privileges are to be revoked must exist.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/revoke.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/revoke.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (420,35,'RIGHT','Syntax:\nRIGHT(str,len)\n\nReturns the rightmost len characters from the string str, or NULL if\nany argument is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT RIGHT(\'foobarbar\', 4);\n -> \'rbar\'\n','http://dev.mysql.com/doc/refman/5.7/en/string-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (421,29,'ROUND','Syntax:\nROUND(X), ROUND(X,D)\n\nRounds the argument X to D decimal places. The rounding algorithm\ndepends on the data type of X. D defaults to 0 if not specified. D can\nbe negative to cause D digits left of the decimal point of the value X\nto become zero.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT ROUND(-1.23);\n -> -1\nmysql> SELECT ROUND(-1.58);\n -> -2\nmysql> SELECT ROUND(1.58);\n -> 2\nmysql> SELECT ROUND(1.298, 1);\n -> 1.3\nmysql> SELECT ROUND(1.298, 0);\n -> 1\nmysql> SELECT ROUND(23.298, -1);\n -> 20\n','http://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'); -INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (422,22,'ROW_COUNT','Syntax:\nROW_COUNT()\n\nROW_COUNT() returns a value as follows:\n\no DDL statements: 0. This applies to statements such as CREATE TABLE or\n DROP TABLE.\n\no DML statements other than SELECT: The number of affected rows. This\n applies to statements such as UPDATE, INSERT, or DELETE (as before),\n but now also to statements such as ALTER TABLE and LOAD DATA INFILE.\n\no SELECT: -1 if the statement returns a result set, or the number of\n rows "affected" if it does not. For example, for SELECT * FROM t1,\n ROW_COUNT() returns -1. For SELECT * FROM t1 INTO OUTFILE\n \'file_name\', ROW_COUNT() returns the number of rows written to the\n file.\n\no SIGNAL statements: 0.\n\nFor UPDATE statements, the affected-rows value by default is the number\nof rows actually changed. If you specify the CLIENT_FOUND_ROWS flag to\nmysql_real_connect() when connecting to mysqld, the affected-rows value\nis the number of rows "found"; that is, matched by the WHERE clause.\n\nFor REPLACE statements, the affected-rows value is 2 if the new row\nreplaced an old row, because in this case, one row was inserted after\nthe duplicate was deleted.\n\nFor INSERT ... ON DUPLICATE KEY UPDATE statements, the affected-rows\nvalue per row is 1 if the row is inserted as a new row, 2 if an\nexisting row is updated, and 0 if an existing row is set to its current\nvalues. If you specify the CLIENT_FOUND_ROWS flag, the affected-rows\nvalue is 1 (not 0) if an existing row is set to its current values.\n\nThe ROW_COUNT() value is similar to the value from the\nmysql_affected_rows() C API function and the row count that the mysql\nclient displays following statement execution.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/information-functions.html\n\n','mysql> INSERT INTO t VALUES(1),(2),(3);\nQuery OK, 3 rows affected (0.00 sec)\nRecords: 3 Duplicates: 0 Warnings: 0\n\nmysql> SELECT ROW_COUNT();\n+-------------+\n| ROW_COUNT() |\n+-------------+\n| 3 |\n+-------------+\n1 row in set (0.00 sec)\n\nmysql> DELETE FROM t WHERE i IN(1,2);\nQuery OK, 2 rows affected (0.00 sec)\n\nmysql> SELECT ROW_COUNT();\n+-------------+\n| ROW_COUNT() |\n+-------------+\n| 2 |\n+-------------+\n1 row in set (0.00 sec)\n','http://dev.mysql.com/doc/refman/5.7/en/information-functions.html'); +INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (422,22,'ROW_COUNT','Syntax:\nROW_COUNT()\n\nROW_COUNT() returns a value as follows:\n\no DDL statements: 0. This applies to statements such as CREATE TABLE or\n DROP TABLE.\n\no DML statements other than SELECT: The number of affected rows. This\n applies to statements such as UPDATE, INSERT, or DELETE (as before),\n but now also to statements such as ALTER TABLE and LOAD DATA.\n\no SELECT: -1 if the statement returns a result set, or the number of\n rows "affected" if it does not. For example, for SELECT * FROM t1,\n ROW_COUNT() returns -1. For SELECT * FROM t1 INTO OUTFILE\n \'file_name\', ROW_COUNT() returns the number of rows written to the\n file.\n\no SIGNAL statements: 0.\n\nFor UPDATE statements, the affected-rows value by default is the number\nof rows actually changed. If you specify the CLIENT_FOUND_ROWS flag to\nmysql_real_connect() when connecting to mysqld, the affected-rows value\nis the number of rows "found"; that is, matched by the WHERE clause.\n\nFor REPLACE statements, the affected-rows value is 2 if the new row\nreplaced an old row, because in this case, one row was inserted after\nthe duplicate was deleted.\n\nFor INSERT ... ON DUPLICATE KEY UPDATE statements, the affected-rows\nvalue per row is 1 if the row is inserted as a new row, 2 if an\nexisting row is updated, and 0 if an existing row is set to its current\nvalues. If you specify the CLIENT_FOUND_ROWS flag, the affected-rows\nvalue is 1 (not 0) if an existing row is set to its current values.\n\nThe ROW_COUNT() value is similar to the value from the\nmysql_affected_rows() C API function and the row count that the mysql\nclient displays following statement execution.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/information-functions.html\n\n','mysql> INSERT INTO t VALUES(1),(2),(3);\nQuery OK, 3 rows affected (0.00 sec)\nRecords: 3 Duplicates: 0 Warnings: 0\n\nmysql> SELECT ROW_COUNT();\n+-------------+\n| ROW_COUNT() |\n+-------------+\n| 3 |\n+-------------+\n1 row in set (0.00 sec)\n\nmysql> DELETE FROM t WHERE i IN(1,2);\nQuery OK, 2 rows affected (0.00 sec)\n\nmysql> SELECT ROW_COUNT();\n+-------------+\n| ROW_COUNT() |\n+-------------+\n| 2 |\n+-------------+\n1 row in set (0.00 sec)\n','http://dev.mysql.com/doc/refman/5.7/en/information-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (423,35,'RPAD','Syntax:\nRPAD(str,len,padstr)\n\nReturns the string str, right-padded with the string padstr to a length\nof len characters. If str is longer than len, the return value is\nshortened to len characters.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT RPAD(\'hi\',5,\'?\');\n -> \'hi???\'\nmysql> SELECT RPAD(\'hi\',1,\'?\');\n -> \'h\'\n','http://dev.mysql.com/doc/refman/5.7/en/string-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (424,35,'RTRIM','Syntax:\nRTRIM(str)\n\nReturns the string str with trailing space characters removed.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT RTRIM(\'barbar \');\n -> \'barbar\'\n','http://dev.mysql.com/doc/refman/5.7/en/string-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (425,37,'SAVEPOINT','Syntax:\nSAVEPOINT identifier\nROLLBACK [WORK] TO [SAVEPOINT] identifier\nRELEASE SAVEPOINT identifier\n\nInnoDB supports the SQL statements SAVEPOINT, ROLLBACK TO SAVEPOINT,\nRELEASE SAVEPOINT and the optional WORK keyword for ROLLBACK.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/savepoint.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/savepoint.html'); @@ -534,7 +534,7 @@ INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (451,2,'SHOW CREATE TRIGGER','Syntax:\nSHOW CREATE TRIGGER trigger_name\n\nThis statement shows the CREATE TRIGGER statement that creates the\nnamed trigger. This statement requires the TRIGGER privilege for the\ntable associated with the trigger.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/show-create-trigger.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/show-create-trigger.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (452,2,'SHOW CREATE USER','Syntax:\nSHOW CREATE USER user\n\nThis statement shows the CREATE USER statement that creates the named\nuser. An error occurs if the user does not exist. The statement\nrequires the SELECT privilege for the mysql system database, except to\ndisplay information for the current user.\n\nTo name the account, use the format described in\nhttp://dev.mysql.com/doc/refman/5.7/en/account-names.html. The host\nname part of the account name, if omitted, defaults to \'%\'. It is also\npossible to specify CURRENT_USER or CURRENT_USER() to refer to the\naccount associated with the current session.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/show-create-user.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/show-create-user.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (453,2,'SHOW CREATE VIEW','Syntax:\nSHOW CREATE VIEW view_name\n\nThis statement shows the CREATE VIEW statement that creates the named\nview.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/show-create-view.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/show-create-view.html'); -INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (454,2,'SHOW DATABASES','Syntax:\nSHOW {DATABASES | SCHEMAS}\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW DATABASES lists the databases on the MySQL server host. SHOW\nSCHEMAS is a synonym for SHOW DATABASES. The LIKE clause, if present,\nindicates which database names to match. The WHERE clause can be given\nto select rows using more general conditions, as discussed in\nhttp://dev.mysql.com/doc/refman/5.7/en/extended-show.html.\n\nYou see only those databases for which you have some kind of privilege,\nunless you have the global SHOW DATABASES privilege. You can also get\nthis list using the mysqlshow command.\n\nIf the server was started with the --skip-show-database option, you\ncannot use this statement at all unless you have the SHOW DATABASES\nprivilege.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/show-databases.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/show-databases.html'); +INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (454,2,'SHOW DATABASES','Syntax:\nSHOW {DATABASES | SCHEMAS}\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW DATABASES lists the databases on the MySQL server host. SHOW\nSCHEMAS is a synonym for SHOW DATABASES. The LIKE clause, if present,\nindicates which database names to match. The WHERE clause can be given\nto select rows using more general conditions, as discussed in\nhttp://dev.mysql.com/doc/refman/5.7/en/extended-show.html.\n\nYou see only those databases for which you have some kind of privilege,\nunless you have the global SHOW DATABASES privilege. You can also get\nthis list using the mysqlshow command.\n\nIf the server was started with the --skip-show-database option, you\ncannot use this statement at all unless you have the SHOW DATABASES\nprivilege.\n\nMySQL implements databases as directories in the data directory, so\nthis statement simply lists directories in that location. However, the\noutput may include names of directories that do not correspond to\nactual databases.\n\nDatabase information is also available from the INFORMATION_SCHEMA\nSCHEMATA table. See\nhttp://dev.mysql.com/doc/refman/5.7/en/schemata-table.html.\n\n*Caution*:\n\nBecause a global privilege is considered a privilege for all databases,\nany global privilege enables a user to see all database names with SHOW\nDATABASES or by examining the INFORMATION_SCHEMA SCHEMATA table.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/show-databases.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/show-databases.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (455,2,'SHOW ENGINE','Syntax:\nSHOW ENGINE engine_name {STATUS | MUTEX}\n\nSHOW ENGINE displays operational information about a storage engine. It\nrequires the PROCESS privilege. The statement has these variants:\n\nSHOW ENGINE INNODB STATUS\nSHOW ENGINE INNODB MUTEX\nSHOW ENGINE PERFORMANCE_SCHEMA STATUS\n\nSHOW ENGINE INNODB STATUS displays extensive information from the\nstandard InnoDB Monitor about the state of the InnoDB storage engine.\nFor information about the standard monitor and other InnoDB Monitors\nthat provide information about InnoDB processing, see\nhttp://dev.mysql.com/doc/refman/5.7/en/innodb-monitors.html.\n\nSHOW ENGINE INNODB MUTEX displays InnoDB mutex and rw-lock statistics.\n\n*Note*:\n\nInnoDB mutexes and rwlocks can also be monitored using Performance\nSchema tables. See\nhttp://dev.mysql.com/doc/refman/5.7/en/monitor-innodb-mutex-waits-perfo\nrmance-schema.html.\n\nSHOW ENGINE INNODB MUTEX output was removed in MySQL 5.7.2. It was\nrevised and reintroduced in MySQL 5.7.8.\n\nIn MySQL 5.7.8, mutex statistics collection is configured dynamically\nusing the following options:\n\no To enable the collection of mutex statistics, run:\n\nSET GLOBAL innodb_monitor_enable=\'latch\';\n\no To reset mutex statistics, run:\n\nSET GLOBAL innodb_monitor_reset=\'latch\';\n\no To disable the collection of mutex statistics, run:\n\nSET GLOBAL innodb_monitor_disable=\'latch\';\n\nCollection of mutex statistics for SHOW ENGINE INNODB MUTEX can also be\nenabled by setting innodb_monitor_enable=\'all\', or disabled by setting\ninnodb_monitor_disable=\'all\'.\n\nSHOW ENGINE INNODB MUTEX output has these columns:\n\no Type\n\n Always InnoDB.\n\no Name\n\n Prior to MySQL 5.7.8, the Name field reports the source file where\n the mutex is implemented, and the line number in the file where the\n mutex is created. The line number is specific to your version of\n MySQL. As of MySQL 5.7.8, only the mutex name is reported. File name\n and line number are still reported for rwlocks.\n\no Status\n\n The mutex status.\n\n Prior to MySQL 5.7.8, the Status field displays several values if\n WITH_DEBUG was defined at MySQL compilation time. If WITH_DEBUG was\n not defined, the statement displays only the os_waits value. In the\n latter case (without WITH_DEBUG), the information on which the output\n is based is insufficient to distinguish regular mutexes and mutexes\n that protect rwlocks (which permit multiple readers or a single\n writer). Consequently, the output may appear to contain multiple rows\n for the same mutex. Pre-MySQL 5.7.8 Status field values include:\n\n o count indicates how many times the mutex was requested.\n\n o spin_waits indicates how many times the spinlock had to run.\n\n o spin_rounds indicates the number of spinlock rounds. (spin_rounds\n divided by spin_waits provides the average round count.)\n\n o os_waits indicates the number of operating system waits. This\n occurs when the spinlock did not work (the mutex was not locked\n during the spinlock and it was necessary to yield to the operating\n system and wait).\n\n o os_yields indicates the number of times a thread trying to lock a\n mutex gave up its timeslice and yielded to the operating system (on\n the presumption that permitting other threads to run will free the\n mutex so that it can be locked).\n\n o os_wait_times indicates the amount of time (in ms) spent in\n operating system waits. In MySQL 5.7 timing is disabled and this\n value is always 0.\n\n As of MySQL 5.7.8, the Status field reports the number of spins,\n waits, and calls. Statistics for low-level operating system mutexes,\n which are implemented outside of InnoDB, are not reported.\n\n o spins indicates the number of spins.\n\n o waits indicates the number of mutex waits.\n\n o calls indicates how many times the mutex was requested.\n\nSHOW ENGINE INNODB MUTEX skips the mutexes and rw-locks of buffer pool\nblocks, as the amount of output can be overwhelming on systems with a\nlarge buffer pool. (There is one mutex and one rw-lock in each 16K\nbuffer pool block, and there are 65,536 blocks per gigabyte.) SHOW\nENGINE INNODB MUTEX also does not list any mutexes or rw-locks that\nhave never been waited on (os_waits=0). Thus, SHOW ENGINE INNODB MUTEX\nonly displays information about mutexes and rw-locks outside of the\nbuffer pool that have caused at least one OS-level wait.\n\nUse SHOW ENGINE PERFORMANCE_SCHEMA STATUS to inspect the internal\noperation of the Performance Schema code:\n\nmysql> SHOW ENGINE PERFORMANCE_SCHEMA STATUS\\G\n...\n*************************** 3. row ***************************\n Type: performance_schema\n Name: events_waits_history.size\nStatus: 76\n*************************** 4. row ***************************\n Type: performance_schema\n Name: events_waits_history.count\nStatus: 10000\n*************************** 5. row ***************************\n Type: performance_schema\n Name: events_waits_history.memory\nStatus: 760000\n...\n*************************** 57. row ***************************\n Type: performance_schema\n Name: performance_schema.memory\nStatus: 26459600\n...\n\nThis statement is intended to help the DBA understand the effects that\ndifferent Performance Schema options have on memory requirements.\n\nName values consist of two parts, which name an internal buffer and a\nbuffer attribute, respectively. Interpret buffer names as follows:\n\no An internal buffer that is not exposed as a table is named within\n parentheses. Examples: (pfs_cond_class).size,\n (pfs_mutex_class).memory.\n\no An internal buffer that is exposed as a table in the\n performance_schema database is named after the table, without\n parentheses. Examples: events_waits_history.size,\n mutex_instances.count.\n\no A value that applies to the Performance Schema as a whole begins with\n performance_schema. Example: performance_schema.memory.\n\nBuffer attributes have these meanings:\n\no size is the size of the internal record used by the implementation,\n such as the size of a row in a table. size values cannot be changed.\n\no count is the number of internal records, such as the number of rows\n in a table. count values can be changed using Performance Schema\n configuration options.\n\no For a table, tbl_name.memory is the product of size and count. For\n the Performance Schema as a whole, performance_schema.memory is the\n sum of all the memory used (the sum of all other memory values).\n\nIn some cases, there is a direct relationship between a Performance\nSchema configuration parameter and a SHOW ENGINE value. For example,\nevents_waits_history_long.count corresponds to\nperformance_schema_events_waits_history_long_size. In other cases, the\nrelationship is more complex. For example, events_waits_history.count\ncorresponds to performance_schema_events_waits_history_size (the number\nof rows per thread) multiplied by\nperformance_schema_max_thread_instances ( the number of threads).\n\nSHOW ENGINE NDB STATUS If the server has the NDB storage engine\nenabled, SHOW ENGINE NDB STATUS displays cluster status information\nsuch as the number of connected data nodes, the cluster connectstring,\nand cluster binary log epochs, as well as counts of various Cluster API\nobjects created by the MySQL Server when connected to the cluster.\nSample output from this statement is shown here:\n\nmysql> SHOW ENGINE NDB STATUS;\n+------------+-----------------------+--------------------------------------------------+\n| Type | Name | Status |\n+------------+-----------------------+--------------------------------------------------+\n| ndbcluster | connection | cluster_node_id=7,\n connected_host=198.51.100.103, connected_port=1186, number_of_data_nodes=4,\n number_of_ready_data_nodes=3, connect_count=0 |\n| ndbcluster | NdbTransaction | created=6, free=0, sizeof=212 |\n| ndbcluster | NdbOperation | created=8, free=8, sizeof=660 |\n| ndbcluster | NdbIndexScanOperation | created=1, free=1, sizeof=744 |\n| ndbcluster | NdbIndexOperation | created=0, free=0, sizeof=664 |\n| ndbcluster | NdbRecAttr | created=1285, free=1285, sizeof=60 |\n| ndbcluster | NdbApiSignal | created=16, free=16, sizeof=136 |\n| ndbcluster | NdbLabel | created=0, free=0, sizeof=196 |\n| ndbcluster | NdbBranch | created=0, free=0, sizeof=24 |\n| ndbcluster | NdbSubroutine | created=0, free=0, sizeof=68 |\n| ndbcluster | NdbCall | created=0, free=0, sizeof=16 |\n| ndbcluster | NdbBlob | created=1, free=1, sizeof=264 |\n| ndbcluster | NdbReceiver | created=4, free=0, sizeof=68 |\n| ndbcluster | binlog | latest_epoch=155467, latest_trans_epoch=148126,\n latest_received_binlog_epoch=0, latest_handled_binlog_epoch=0,\n latest_applied_binlog_epoch=0 |\n+------------+-----------------------+--------------------------------------------------+\n\nThe Status column in each of these rows provides information about the\nMySQL server\'s connection to the cluster and about the cluster binary\nlog\'s status, respectively. The Status information is in the form of\ncomma-delimited set of name/value pairs.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/show-engine.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/show-engine.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (456,2,'SHOW ENGINES','Syntax:\nSHOW [STORAGE] ENGINES\n\nSHOW ENGINES displays status information about the server\'s storage\nengines. This is particularly useful for checking whether a storage\nengine is supported, or to see what the default engine is.\n\nFor information about MySQL storage engines, see\nhttp://dev.mysql.com/doc/refman/5.7/en/innodb-storage-engine.html, and\nhttp://dev.mysql.com/doc/refman/5.7/en/storage-engines.html.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/show-engines.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/show-engines.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (457,2,'SHOW ERRORS','Syntax:\nSHOW ERRORS [LIMIT [offset,] row_count]\nSHOW COUNT(*) ERRORS\n\nSHOW ERRORS is a diagnostic statement that is similar to SHOW WARNINGS,\nexcept that it displays information only for errors, rather than for\nerrors, warnings, and notes.\n\nThe LIMIT clause has the same syntax as for the SELECT statement. See\nhttp://dev.mysql.com/doc/refman/5.7/en/select.html.\n\nThe SHOW COUNT(*) ERRORS statement displays the number of errors. You\ncan also retrieve this number from the error_count variable:\n\nSHOW COUNT(*) ERRORS;\nSELECT @@error_count;\n\nSHOW ERRORS and error_count apply only to errors, not warnings or\nnotes. In other respects, they are similar to SHOW WARNINGS and\nwarning_count. In particular, SHOW ERRORS cannot display information\nfor more than max_error_count messages, and error_count can exceed the\nvalue of max_error_count if the number of errors exceeds\nmax_error_count.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/show-errors.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/show-errors.html'); @@ -560,7 +560,7 @@ INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (477,2,'SHOW TABLES','Syntax:\nSHOW [FULL] TABLES\n [{FROM | IN} db_name]\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW TABLES lists the non-TEMPORARY tables in a given database. You can\nalso get this list using the mysqlshow db_name command. The LIKE\nclause, if present, indicates which table names to match. The WHERE\nclause can be given to select rows using more general conditions, as\ndiscussed in http://dev.mysql.com/doc/refman/5.7/en/extended-show.html.\n\nMatching performed by the LIKE clause is dependent on the setting of\nthe lower_case_table_names system variable.\n\nThis statement also lists any views in the database. The optional FULL\nmodifier causes SHOW TABLES to display a second output column with\nvalues of BASE TABLE for a table, VIEW for a view, or SYSTEM VIEW for\nan INFORMATION_SCHEMA table.\n\nIf you have no privileges for a base table or view, it does not show up\nin the output from SHOW TABLES or mysqlshow db_name.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/show-tables.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/show-tables.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (478,2,'SHOW TRIGGERS','Syntax:\nSHOW TRIGGERS\n [{FROM | IN} db_name]\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW TRIGGERS lists the triggers currently defined for tables in a\ndatabase (the default database unless a FROM clause is given). This\nstatement returns results only for databases and tables for which you\nhave the TRIGGER privilege. The LIKE clause, if present, indicates\nwhich table names (not trigger names) to match and causes the statement\nto display triggers for those tables. The WHERE clause can be given to\nselect rows using more general conditions, as discussed in\nhttp://dev.mysql.com/doc/refman/5.7/en/extended-show.html.\n\nFor the ins_sum trigger defined in\nhttp://dev.mysql.com/doc/refman/5.7/en/triggers.html, the output of\nSHOW TRIGGERS is as shown here:\n\nmysql> SHOW TRIGGERS LIKE \'acc%\'\\G\n*************************** 1. row ***************************\n Trigger: ins_sum\n Event: INSERT\n Table: account\n Statement: SET @sum = @sum + NEW.amount\n Timing: BEFORE\n Created: 2018-08-08 10:10:12.61\n sql_mode: ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,\n NO_ZERO_IN_DATE,NO_ZERO_DATE,\n ERROR_FOR_DIVISION_BY_ZERO,\n NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION\n Definer: me@localhost\ncharacter_set_client: utf8\ncollation_connection: utf8_general_ci\n Database Collation: latin1_swedish_ci\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/show-triggers.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/show-triggers.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (479,2,'SHOW VARIABLES','Syntax:\nSHOW [GLOBAL | SESSION] VARIABLES\n [LIKE \'pattern\' | WHERE expr]\n\n*Note*:\n\nAs of MySQL 5.7.6, the value of the show_compatibility_56 system\nvariable affects the information available from and privileges required\nfor the statement described here. For details, see the description of\nthat variable in\nhttp://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html.\n\nSHOW VARIABLES shows the values of MySQL system variables (see\nhttp://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html).\nThis statement does not require any privilege. It requires only the\nability to connect to the server.\n\nSystem variable information is also available from these sources:\n\no Performance Schema tables. See\n http://dev.mysql.com/doc/refman/5.7/en/performance-schema-system-vari\n able-tables.html.\n\no The GLOBAL_VARIABLES and SESSION_VARIABLES tables. See\n http://dev.mysql.com/doc/refman/5.7/en/variables-table.html.\n\no The mysqladmin variables command. See\n http://dev.mysql.com/doc/refman/5.7/en/mysqladmin.html.\n\nFor SHOW VARIABLES, a LIKE clause, if present, indicates which variable\nnames to match. A WHERE clause can be given to select rows using more\ngeneral conditions, as discussed in\nhttp://dev.mysql.com/doc/refman/5.7/en/extended-show.html.\n\nSHOW VARIABLES accepts an optional GLOBAL or SESSION variable scope\nmodifier:\n\no With a GLOBAL modifier, the statement displays global system variable\n values. These are the values used to initialize the corresponding\n session variables for new connections to MySQL. If a variable has no\n global value, no value is displayed.\n\no With a SESSION modifier, the statement displays the system variable\n values that are in effect for the current connection. If a variable\n has no session value, the global value is displayed. LOCAL is a\n synonym for SESSION.\n\no If no modifier is present, the default is SESSION.\n\nThe scope for each system variable is listed at\nhttp://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html.\n\nSHOW VARIABLES is subject to a version-dependent display-width limit.\nFor variables with very long values that are not completely displayed,\nuse SELECT as a workaround. For example:\n\nSELECT @@GLOBAL.innodb_data_file_path;\n\nMost system variables can be set at server startup (read-only variables\nsuch as version_comment are exceptions). Many can be changed at runtime\nwith the SET statement. See\nhttp://dev.mysql.com/doc/refman/5.7/en/using-system-variables.html, and\n[HELP SET].\nWith a LIKE clause, the statement displays only rows for those\nvariables with names that match the pattern. To obtain the row for a\nspecific variable, use a LIKE clause as shown:\n\nSHOW VARIABLES LIKE \'max_join_size\';\nSHOW SESSION VARIABLES LIKE \'max_join_size\';\n\nTo get a list of variables whose name match a pattern, use the %\nwildcard character in a LIKE clause:\n\nSHOW VARIABLES LIKE \'%size%\';\nSHOW GLOBAL VARIABLES LIKE \'%size%\';\n\nWildcard characters can be used in any position within the pattern to\nbe matched. Strictly speaking, because _ is a wildcard that matches any\nsingle character, you should escape it as \\_ to match it literally. In\npractice, this is rarely necessary.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/show-variables.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/show-variables.html'); -INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (480,2,'SHOW WARNINGS','Syntax:\nSHOW WARNINGS [LIMIT [offset,] row_count]\nSHOW COUNT(*) WARNINGS\n\nSHOW WARNINGS is a diagnostic statement that displays information about\nthe conditions (errors, warnings, and notes) resulting from executing a\nstatement in the current session. Warnings are generated for DML\nstatements such as INSERT, UPDATE, and LOAD DATA INFILE as well as DDL\nstatements such as CREATE TABLE and ALTER TABLE.\n\nThe LIMIT clause has the same syntax as for the SELECT statement. See\nhttp://dev.mysql.com/doc/refman/5.7/en/select.html.\n\nSHOW WARNINGS is also used following EXPLAIN, to display the extended\ninformation generated by EXPLAIN. See\nhttp://dev.mysql.com/doc/refman/5.7/en/explain-extended.html.\n\nSHOW WARNINGS displays information about the conditions resulting from\nexecution of the most recent nondiagnostic statement in the current\nsession. If the most recent statement resulted in an error during\nparsing, SHOW WARNINGS shows the resulting conditions, regardless of\nstatement type (diagnostic or nondiagnostic).\n\nThe SHOW COUNT(*) WARNINGS diagnostic statement displays the total\nnumber of errors, warnings, and notes. You can also retrieve this\nnumber from the warning_count system variable:\n\nSHOW COUNT(*) WARNINGS;\nSELECT @@warning_count;\n\nA difference in these statements is that the first is a diagnostic\nstatement that does not clear the message list. The second, because it\nis a SELECT statement is considered nondiagnostic and does clear the\nmessage list.\n\nA related diagnostic statement, SHOW ERRORS, shows only error\nconditions (it excludes warnings and notes), and SHOW COUNT(*) ERRORS\nstatement displays the total number of errors. See [HELP SHOW ERRORS].\nGET DIAGNOSTICS can be used to examine information for individual\nconditions. See [HELP GET DIAGNOSTICS].\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/show-warnings.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/show-warnings.html'); +INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (480,2,'SHOW WARNINGS','Syntax:\nSHOW WARNINGS [LIMIT [offset,] row_count]\nSHOW COUNT(*) WARNINGS\n\nSHOW WARNINGS is a diagnostic statement that displays information about\nthe conditions (errors, warnings, and notes) resulting from executing a\nstatement in the current session. Warnings are generated for DML\nstatements such as INSERT, UPDATE, and LOAD DATA as well as DDL\nstatements such as CREATE TABLE and ALTER TABLE.\n\nThe LIMIT clause has the same syntax as for the SELECT statement. See\nhttp://dev.mysql.com/doc/refman/5.7/en/select.html.\n\nSHOW WARNINGS is also used following EXPLAIN, to display the extended\ninformation generated by EXPLAIN. See\nhttp://dev.mysql.com/doc/refman/5.7/en/explain-extended.html.\n\nSHOW WARNINGS displays information about the conditions resulting from\nexecution of the most recent nondiagnostic statement in the current\nsession. If the most recent statement resulted in an error during\nparsing, SHOW WARNINGS shows the resulting conditions, regardless of\nstatement type (diagnostic or nondiagnostic).\n\nThe SHOW COUNT(*) WARNINGS diagnostic statement displays the total\nnumber of errors, warnings, and notes. You can also retrieve this\nnumber from the warning_count system variable:\n\nSHOW COUNT(*) WARNINGS;\nSELECT @@warning_count;\n\nA difference in these statements is that the first is a diagnostic\nstatement that does not clear the message list. The second, because it\nis a SELECT statement is considered nondiagnostic and does clear the\nmessage list.\n\nA related diagnostic statement, SHOW ERRORS, shows only error\nconditions (it excludes warnings and notes), and SHOW COUNT(*) ERRORS\nstatement displays the total number of errors. See [HELP SHOW ERRORS].\nGET DIAGNOSTICS can be used to examine information for individual\nconditions. See [HELP GET DIAGNOSTICS].\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/show-warnings.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/show-warnings.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (481,2,'SHUTDOWN','Syntax:\nSHUTDOWN\n\nThis statement stops the MySQL server. It requires the SHUTDOWN\nprivilege.\n\nSHUTDOWN was added in MySQL 5.7.9. It provides an SQL-level interface\nto the same functionality available using the mysqladmin shutdown\ncommand or the mysql_shutdown() C API function.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/shutdown.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/shutdown.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (482,29,'SIGN','Syntax:\nSIGN(X)\n\nReturns the sign of the argument as -1, 0, or 1, depending on whether X\nis negative, zero, or positive.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT SIGN(-32);\n -> -1\nmysql> SELECT SIGN(0);\n -> 0\nmysql> SELECT SIGN(234);\n -> 1\n','http://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (483,5,'SIGNAL','Syntax:\nSIGNAL condition_value\n [SET signal_information_item\n [, signal_information_item] ...]\n\ncondition_value: {\n SQLSTATE [VALUE] sqlstate_value\n | condition_name\n}\n\nsignal_information_item:\n condition_information_item_name = simple_value_specification\n\ncondition_information_item_name: {\n CLASS_ORIGIN\n | SUBCLASS_ORIGIN\n | MESSAGE_TEXT\n | MYSQL_ERRNO\n | CONSTRAINT_CATALOG\n | CONSTRAINT_SCHEMA\n | CONSTRAINT_NAME\n | CATALOG_NAME\n | SCHEMA_NAME\n | TABLE_NAME\n | COLUMN_NAME\n | CURSOR_NAME\n}\n\ncondition_name, simple_value_specification:\n (see following discussion)\n\nSIGNAL is the way to "return" an error. SIGNAL provides error\ninformation to a handler, to an outer portion of the application, or to\nthe client. Also, it provides control over the error\'s characteristics\n(error number, SQLSTATE value, message). Without SIGNAL, it is\nnecessary to resort to workarounds such as deliberately referring to a\nnonexistent table to cause a routine to return an error.\n\nNo privileges are required to execute the SIGNAL statement.\n\nTo retrieve information from the diagnostics area, use the GET\nDIAGNOSTICS statement (see [HELP GET DIAGNOSTICS]). For information\nabout the diagnostics area, see\nhttp://dev.mysql.com/doc/refman/5.7/en/diagnostics-area.html.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/signal.html\n\n','CREATE PROCEDURE p (pval INT)\nBEGIN\n DECLARE specialty CONDITION FOR SQLSTATE \'45000\';\n IF pval = 0 THEN\n SIGNAL SQLSTATE \'01000\';\n ELSEIF pval = 1 THEN\n SIGNAL SQLSTATE \'45000\'\n SET MESSAGE_TEXT = \'An error occurred\';\n ELSEIF pval = 2 THEN\n SIGNAL specialty\n SET MESSAGE_TEXT = \'An error occurred\';\n ELSE\n SIGNAL SQLSTATE \'01000\'\n SET MESSAGE_TEXT = \'A warning occurred\', MYSQL_ERRNO = 1000;\n SIGNAL SQLSTATE \'45000\'\n SET MESSAGE_TEXT = \'An error occurred\', MYSQL_ERRNO = 1001;\n END IF;\nEND;\n','http://dev.mysql.com/doc/refman/5.7/en/signal.html'); @@ -618,7 +618,7 @@ INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (535,18,'ST_ISSIMPLE','ST_IsSimple(g)\n\nReturns 1 if the geometry value g has no anomalous geometric points,\nsuch as self-intersection or self-tangency. ST_IsSimple() returns 0 if\nthe argument is not simple, and NULL if the argument is NULL.\n\nThe descriptions of the instantiable geometric classes given under\nhttp://dev.mysql.com/doc/refman/5.7/en/opengis-geometry-model.html\nincludes the specific conditions that cause class instances to be\nclassified as not simple.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (536,27,'ST_ISVALID','ST_IsValid(g)\n\nReturns 1 if the argument is syntactically well-formed and is\ngeometrically valid, 0 if the argument is not syntactically well-formed\nor is not geometrically valid. If the argument is NULL, the return\nvalue is NULL. Geometry validity is defined by the OGC specification.\n\nThe only valid empty geometry is represented in the form of an empty\ngeometry collection value. ST_IsValid() returns 1 in this case.\n\nST_IsValid() works only for the Cartesian coordinate system and\nrequires a geometry argument with an SRID of 0. An ER_WRONG_ARGUMENTS\nerror occurs otherwise.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/spatial-convenience-functions.html\n\n','mysql> SET @ls1 = ST_GeomFromText(\'LINESTRING(0 0,-0.00 0,0.0 0)\');\nmysql> SET @ls2 = ST_GeomFromText(\'LINESTRING(0 0, 1 1)\');\nmysql> SELECT ST_IsValid(@ls1);\n+------------------+\n| ST_IsValid(@ls1) |\n+------------------+\n| 0 |\n+------------------+\nmysql> SELECT ST_IsValid(@ls2);\n+------------------+\n| ST_IsValid(@ls2) |\n+------------------+\n| 1 |\n+------------------+\n','http://dev.mysql.com/doc/refman/5.7/en/spatial-convenience-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (537,27,'ST_LATFROMGEOHASH','ST_LatFromGeoHash(geohash_str)\n\nReturns the latitude from a geohash string value, as a DOUBLE value in\nthe range [−90, 90].\n\nIf the argument is NULL, the return value is NULL. If the argument is\ninvalid, an error occurs.\n\nThe ST_LatFromGeoHash() decoding function reads no more than 433\ncharacters from the geohash_str argument. That represents the upper\nlimit on information in the internal representation of coordinate\nvalues. Characters past the 433rd are ignored, even if they are\notherwise illegal and produce an error.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/spatial-geohash-functions.html\n\n','mysql> SELECT ST_LatFromGeoHash(ST_GeoHash(45,-20,10));\n+------------------------------------------+\n| ST_LatFromGeoHash(ST_GeoHash(45,-20,10)) |\n+------------------------------------------+\n| -20 |\n+------------------------------------------+\n','http://dev.mysql.com/doc/refman/5.7/en/spatial-geohash-functions.html'); -INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (538,24,'ST_LENGTH','ST_Length(ls)\n\nReturns a double-precision number indicating the length of the\nLineString or MultiLineString value ls in its associated spatial\nreference. The length of a MultiLineString value is equal to the sum of\nthe lengths of its elements. If the argument is NULL or an empty\ngeometry, the return value is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html\n\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT ST_Length(ST_GeomFromText(@ls));\n+---------------------------------+\n| ST_Length(ST_GeomFromText(@ls)) |\n+---------------------------------+\n| 2.8284271247461903 |\n+---------------------------------+\n\nmysql> SET @mls = \'MultiLineString((1 1,2 2,3 3),(4 4,5 5))\';\nmysql> SELECT ST_Length(ST_GeomFromText(@mls));\n+----------------------------------+\n| ST_Length(ST_GeomFromText(@mls)) |\n+----------------------------------+\n| 4.242640687119286 |\n+----------------------------------+\n','http://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html'); +INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (538,24,'ST_LENGTH','ST_Length(ls)\n\nReturns a double-precision number indicating the length of the\nLineString or MultiLineString value ls in its associated spatial\nreference system. The length of a MultiLineString value is equal to the\nsum of the lengths of its elements. If the argument is NULL or an empty\ngeometry, the return value is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html\n\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT ST_Length(ST_GeomFromText(@ls));\n+---------------------------------+\n| ST_Length(ST_GeomFromText(@ls)) |\n+---------------------------------+\n| 2.8284271247461903 |\n+---------------------------------+\n\nmysql> SET @mls = \'MultiLineString((1 1,2 2,3 3),(4 4,5 5))\';\nmysql> SELECT ST_Length(ST_GeomFromText(@mls));\n+----------------------------------+\n| ST_Length(ST_GeomFromText(@mls)) |\n+----------------------------------+\n| 4.242640687119286 |\n+----------------------------------+\n','http://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (539,41,'ST_LINEFROMTEXT','ST_LineFromText(wkt[, srid]), ST_LineStringFromText(wkt[, srid])\n\nConstructs a LineString value using its WKT representation and SRID.\n\nIf the geometry argument is NULL or not a syntactically well-formed\ngeometry, or if the SRID argument is NULL, the return value is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (540,40,'ST_LINEFROMWKB','ST_LineFromWKB(wkb[, srid]), ST_LineStringFromWKB(wkb[, srid])\n\nConstructs a LineString value using its WKB representation and SRID.\n\nThe result is NULL if the WKB or SRID argument is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (541,27,'ST_LONGFROMGEOHASH','ST_LongFromGeoHash(geohash_str)\n\nReturns the longitude from a geohash string value, as a DOUBLE value in\nthe range [−180, 180].\n\nIf the argument is NULL, the return value is NULL. If the argument is\ninvalid, an error occurs.\n\nThe remarks in the description of ST_LatFromGeoHash() regarding the\nmaximum number of characters processed from the geohash_str argument\nalso apply to ST_LongFromGeoHash().\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/spatial-geohash-functions.html\n\n','mysql> SELECT ST_LongFromGeoHash(ST_GeoHash(45,-20,10));\n+-------------------------------------------+\n| ST_LongFromGeoHash(ST_GeoHash(45,-20,10)) |\n+-------------------------------------------+\n| 45 |\n+-------------------------------------------+\n','http://dev.mysql.com/doc/refman/5.7/en/spatial-geohash-functions.html'); @@ -685,7 +685,7 @@ INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (602,35,'UNHEX','Syntax:\n\nUNHEX(str)\n\nFor a string argument str, UNHEX(str) interprets each pair of\ncharacters in the argument as a hexadecimal number and converts it to\nthe byte represented by the number. The return value is a binary\nstring.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT UNHEX(\'4D7953514C\');\n -> \'MySQL\'\nmysql> SELECT X\'4D7953514C\';\n -> \'MySQL\'\nmysql> SELECT UNHEX(HEX(\'string\'));\n -> \'string\'\nmysql> SELECT HEX(UNHEX(\'1267\'));\n -> \'1267\'\n','http://dev.mysql.com/doc/refman/5.7/en/string-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (603,30,'UNINSTALL PLUGIN','Syntax:\nUNINSTALL PLUGIN plugin_name\n\nThis statement removes an installed server plugin. It requires the\nDELETE privilege for the mysql.plugin system table. UNINSTALL PLUGIN is\nthe complement of INSTALL PLUGIN.\n\nplugin_name must be the name of some plugin that is listed in the\nmysql.plugin table. The server executes the plugin\'s deinitialization\nfunction and removes the row for the plugin from the mysql.plugin\nsystem table, so that subsequent server restarts will not load and\ninitialize the plugin. UNINSTALL PLUGIN does not remove the plugin\'s\nshared library file.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/uninstall-plugin.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/uninstall-plugin.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (604,9,'UNION','Syntax:\nSELECT ...\nUNION [ALL | DISTINCT] SELECT ...\n[UNION [ALL | DISTINCT] SELECT ...]\n\nUNION is used to combine the result from multiple SELECT statements\ninto a single result set.\n\nThe column names from the first SELECT statement are used as the column\nnames for the results returned. Selected columns listed in\ncorresponding positions of each SELECT statement should have the same\ndata type. (For example, the first column selected by the first\nstatement should have the same type as the first column selected by the\nother statements.)\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/union.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/union.html'); -INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (605,11,'UNIX_TIMESTAMP','Syntax:\nUNIX_TIMESTAMP(), UNIX_TIMESTAMP(date)\n\nIf called with no argument, returns a Unix timestamp (seconds since\n\'1970-01-01 00:00:00\' UTC). The return value is an integer if no\nargument is given or the argument does not include a fractional seconds\npart, or DECIMAL if an argument is given that includes a fractional\nseconds part.\n\nIf UNIX_TIMESTAMP() is called with a date argument, it returns the\nvalue of the argument as seconds since \'1970-01-01 00:00:00\' UTC. The\ndate argument may be a DATE, DATETIME, or TIMESTAMP string, or a number\nin YYMMDD, YYMMDDHHMMSS, YYYYMMDD, or YYYYMMDDHHMMSS format. If the\nargument includes a time part, it may optionally include a fractional\nseconds part. The server interprets date as a value in the current time\nzone and converts it to an internal value in UTC. Clients can set their\ntime zone as described in\nhttp://dev.mysql.com/doc/refman/5.7/en/time-zone-support.html.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT UNIX_TIMESTAMP();\n -> 1447431666\nmysql> SELECT UNIX_TIMESTAMP(\'2015-11-13 10:20:19\');\n -> 1447431619\nmysql> SELECT UNIX_TIMESTAMP(\'2015-11-13 10:20:19.012\');\n -> 1447431619.012\n','http://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'); +INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (605,11,'UNIX_TIMESTAMP','Syntax:\nUNIX_TIMESTAMP([date])\n\nIf UNIX_TIMESTAMP() is called with no date argument, it returns a Unix\ntimestamp representing seconds since \'1970-01-01 00:00:00\' UTC.\n\nIf UNIX_TIMESTAMP() is called with a date argument, it returns the\nvalue of the argument as seconds since \'1970-01-01 00:00:00\' UTC. The\nserver interprets date as a value in the session time zone and converts\nit to an internal Unix timestamp value in UTC. (Clients can set the\nsession time zone as described in\nhttp://dev.mysql.com/doc/refman/5.7/en/time-zone-support.html.) The\ndate argument may be a DATE, DATETIME, or TIMESTAMP string, or a number\nin YYMMDD, YYMMDDHHMMSS, YYYYMMDD, or YYYYMMDDHHMMSS format. If the\nargument includes a time part, it may optionally include a fractional\nseconds part.\n\nThe return value is an integer if no argument is given or the argument\ndoes not include a fractional seconds part, or DECIMAL if an argument\nis given that includes a fractional seconds part.\n\nWhen the date argument is a TIMESTAMP column, UNIX_TIMESTAMP() returns\nthe internal timestamp value directly, with no implicit\n"string-to-Unix-timestamp" conversion.\n\nThe valid range of argument values is the same as for the TIMESTAMP\ndata type: \'1970-01-01 00:00:01.000000\' UTC to \'2038-01-19\n03:14:07.999999\' UTC. If you pass an out-of-range date to\nUNIX_TIMESTAMP(), it returns 0.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT UNIX_TIMESTAMP();\n -> 1447431666\nmysql> SELECT UNIX_TIMESTAMP(\'2015-11-13 10:20:19\');\n -> 1447431619\nmysql> SELECT UNIX_TIMESTAMP(\'2015-11-13 10:20:19.012\');\n -> 1447431619.012\n','http://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (606,9,'UPDATE','Syntax:\nUPDATE is a DML statement that modifies rows in a table.\n\nSingle-table syntax:\n\nUPDATE [LOW_PRIORITY] [IGNORE] table_reference\n SET assignment_list\n [WHERE where_condition]\n [ORDER BY ...]\n [LIMIT row_count]\n\nvalue:\n {expr | DEFAULT}\n\nassignment:\n col_name = value\n\nassignment_list:\n assignment [, assignment] ...\n\nMultiple-table syntax:\n\nUPDATE [LOW_PRIORITY] [IGNORE] table_references\n SET assignment_list\n [WHERE where_condition]\n\nFor the single-table syntax, the UPDATE statement updates columns of\nexisting rows in the named table with new values. The SET clause\nindicates which columns to modify and the values they should be given.\nEach value can be given as an expression, or the keyword DEFAULT to set\na column explicitly to its default value. The WHERE clause, if given,\nspecifies the conditions that identify which rows to update. With no\nWHERE clause, all rows are updated. If the ORDER BY clause is\nspecified, the rows are updated in the order that is specified. The\nLIMIT clause places a limit on the number of rows that can be updated.\n\nFor the multiple-table syntax, UPDATE updates rows in each table named\nin table_references that satisfy the conditions. Each matching row is\nupdated once, even if it matches the conditions multiple times. For\nmultiple-table syntax, ORDER BY and LIMIT cannot be used.\n\nFor partitioned tables, both the single-single and multiple-table forms\nof this statement support the use of a PARTITION option as part of a\ntable reference. This option takes a list of one or more partitions or\nsubpartitions (or both). Only the partitions (or subpartitions) listed\nare checked for matches, and a row that is not in any of these\npartitions or subpartitions is not updated, whether it satisfies the\nwhere_condition or not.\n\n*Note*:\n\nUnlike the case when using PARTITION with an INSERT or REPLACE\nstatement, an otherwise valid UPDATE ... PARTITION statement is\nconsidered successful even if no rows in the listed partitions (or\nsubpartitions) match the where_condition.\n\nFor more information and examples, see\nhttp://dev.mysql.com/doc/refman/5.7/en/partitioning-selection.html.\n\nwhere_condition is an expression that evaluates to true for each row to\nbe updated. For expression syntax, see\nhttp://dev.mysql.com/doc/refman/5.7/en/expressions.html.\n\ntable_references and where_condition are specified as described in\nhttp://dev.mysql.com/doc/refman/5.7/en/select.html.\n\nYou need the UPDATE privilege only for columns referenced in an UPDATE\nthat are actually updated. You need only the SELECT privilege for any\ncolumns that are read but not modified.\n\nThe UPDATE statement supports the following modifiers:\n\no With the LOW_PRIORITY modifier, execution of the UPDATE is delayed\n until no other clients are reading from the table. This affects only\n storage engines that use only table-level locking (such as MyISAM,\n MEMORY, and MERGE).\n\no With the IGNORE modifier, the update statement does not abort even if\n errors occur during the update. Rows for which duplicate-key\n conflicts occur on a unique key value are not updated. Rows updated\n to values that would cause data conversion errors are updated to the\n closest valid values instead. For more information, see\n http://dev.mysql.com/doc/refman/5.7/en/sql-mode.html#ignore-strict-co\n mparison.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/update.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/update.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (607,35,'UPDATEXML','Syntax:\nUpdateXML(xml_target, xpath_expr, new_xml)\n\nThis function replaces a single portion of a given fragment of XML\nmarkup xml_target with a new XML fragment new_xml, and then returns the\nchanged XML. The portion of xml_target that is replaced matches an\nXPath expression xpath_expr supplied by the user.\n\nIf no expression matching xpath_expr is found, or if multiple matches\nare found, the function returns the original xml_target XML fragment.\nAll three arguments should be strings.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/xml-functions.html\n\n','mysql> SELECT\n -> UpdateXML(\'ccc\', \'/a\', \'fff\') AS val1,\n -> UpdateXML(\'ccc\', \'/b\', \'fff\') AS val2,\n -> UpdateXML(\'ccc\', \'//b\', \'fff\') AS val3,\n -> UpdateXML(\'ccc\', \'/a/d\', \'fff\') AS val4,\n -> UpdateXML(\'ccc\', \'/a/d\', \'fff\') AS val5\n -> \\G\n\n*************************** 1. row ***************************\nval1: fff\nval2: ccc\nval3: fff\nval4: cccfff\nval5: ccc\n','http://dev.mysql.com/doc/refman/5.7/en/xml-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (608,35,'UPPER','Syntax:\nUPPER(str)\n\nReturns the string str with all characters changed to uppercase\naccording to the current character set mapping. The default is latin1\n(cp1252 West European).\n\nmysql> SELECT UPPER(\'Hej\');\n -> \'HEJ\'\n\nSee the description of LOWER() for information that also applies to\nUPPER(). This included information about how to perform lettercase\nconversion of binary strings (BINARY, VARBINARY, BLOB) for which these\nfunctions are ineffective, and information about case folding for\nUnicode character sets.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/string-functions.html'); @@ -703,7 +703,7 @@ INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (620,14,'VARIANCE','Syntax:\nVARIANCE(expr)\n\nReturns the population standard variance of expr. VARIANCE() is a\nsynonym for the standard SQL function VAR_POP(), provided as a MySQL\nextension.\n\nIf there are no matching rows, VARIANCE() returns NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/group-by-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/group-by-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (621,14,'VAR_POP','Syntax:\nVAR_POP(expr)\n\nReturns the population standard variance of expr. It considers rows as\nthe whole population, not as a sample, so it has the number of rows as\nthe denominator. You can also use VARIANCE(), which is equivalent but\nis not standard SQL.\n\nIf there are no matching rows, VAR_POP() returns NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/group-by-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/group-by-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (622,14,'VAR_SAMP','Syntax:\nVAR_SAMP(expr)\n\nReturns the sample variance of expr. That is, the denominator is the\nnumber of rows minus one.\n\nIf there are no matching rows, VAR_SAMP() returns NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/group-by-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/group-by-functions.html'); -INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (623,22,'VERSION','Syntax:\nVERSION()\n\nReturns a string that indicates the MySQL server version. The string\nuses the utf8 character set. The value might have a suffix in addition\nto the version number. See the description of the version system\nvariable in\nhttp://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/information-functions.html\n\n','mysql> SELECT VERSION();\n -> \'5.7.26-standard\'\n','http://dev.mysql.com/doc/refman/5.7/en/information-functions.html'); +INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (623,22,'VERSION','Syntax:\nVERSION()\n\nReturns a string that indicates the MySQL server version. The string\nuses the utf8 character set. The value might have a suffix in addition\nto the version number. See the description of the version system\nvariable in\nhttp://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/information-functions.html\n\n','mysql> SELECT VERSION();\n -> \'5.7.27-standard\'\n','http://dev.mysql.com/doc/refman/5.7/en/information-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (624,27,'WAIT_FOR_EXECUTED_GTID_SET','Syntax:\nWAIT_FOR_EXECUTED_GTID_SET(gtid_set[, timeout])\n\nWait until the server has applied all of the transactions whose global\ntransaction identifiers are contained in gtid_set; that is, until the\ncondition GTID_SUBSET(gtid_subset, @@GLOBAL.gtid_executed) holds. See\nhttp://dev.mysql.com/doc/refman/5.7/en/replication-gtids-concepts.html\nfor a definition of GTID sets.\n\nIf a timeout is specified, and timeout seconds elapse before all of the\ntransactions in the GTID set have been applied, the function stops\nwaiting. timeout is optional, and the default timeout is 0 seconds, in\nwhich case the function always waits until all of the transactions in\nthe GTID set have been applied.\n\nWAIT_FOR_EXECUTED_GTID_SET() monitors all the GTIDs that are applied on\nthe server, including transactions that arrive from all replication\nchannels and user clients. It does not take into account whether\nreplication channels have been started or stopped.\n\nFor more information, see\nhttp://dev.mysql.com/doc/refman/5.7/en/replication-gtids.html.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/gtid-functions.html\n\n','mysql> SELECT WAIT_FOR_EXECUTED_GTID_SET(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:1-5\');\n -> 0\n','http://dev.mysql.com/doc/refman/5.7/en/gtid-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (625,27,'WAIT_UNTIL_SQL_THREAD_AFTER_GTIDS','Syntax:\nWAIT_UNTIL_SQL_THREAD_AFTER_GTIDS(gtid_set[, timeout][,channel])\n\nWAIT_UNTIL_SQL_THREAD_AFTER_GTIDS() is similar to\nWAIT_FOR_EXECUTED_GTID_SET() in that it waits until all of the\ntransactions whose global transaction identifiers are contained in\ngtid_set have been applied, or until timeout seconds have elapsed,\nwhichever occurs first. However, WAIT_UNTIL_SQL_THREAD_AFTER_GTIDS()\napplies to a specific replication channel, and stops only after the\ntransactions have been applied on the specified channel, for which the\napplier must be running. In contrast, WAIT_FOR_EXECUTED_GTID_SET()\nstops after the transactions have been applied, regardless of where\nthey were applied (on any replication channel or any user client), and\nwhether or not any replication channels are running.\n\nThe channel option names which replication channel the function applies\nto. If no channel is named and no channels other than the default\nreplication channel exist, the function applies to the default\nreplication channel. If multiple replication channels exist, you must\nspecify a channel as otherwise it is not known which replication\nchannel the function applies to. See\nhttp://dev.mysql.com/doc/refman/5.7/en/replication-channels.html for\nmore information on replication channels.\n\n*Note*:\n\nBecause WAIT_UNTIL_SQL_THREAD_AFTER_GTIDS() applies to a specific\nreplication channel, if an expected transaction arrives on a different\nreplication channel or from a user client, for example in a failover or\nmanual recovery situation, the function can hang indefinitely if no\ntimeout is set. Use WAIT_FOR_EXECUTED_GTID_SET() instead to ensure\ncorrect handling of transactions in these situations.\n\nGTID sets used with WAIT_UNTIL_SQL_THREAD_AFTER_GTIDS() are represented\nas strings and must be quoted in the same way as for\nWAIT_FOR_EXECUTED_GTID_SET(). For WAIT_UNTIL_SQL_THREAD_AFTER_GTIDS(),\nthe return value for the function is an arbitrary positive number. If\nGTID-based replication is not active (that is, if the value of the\ngtid_mode variable is OFF), then this value is undefined and\nWAIT_UNTIL_SQL_THREAD_AFTER_GTIDS() returns NULL. If the slave is not\nrunning then the function also returns NULL.\n\ngtid_mode cannot be changed to OFF while any client is using this\nfunction to wait for GTIDs to be applied.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/gtid-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.7/en/gtid-functions.html'); INSERT INTO help_topic (help_topic_id,help_category_id,name,description,example,url) VALUES (626,11,'WEEK','Syntax:\nWEEK(date[,mode])\n\nThis function returns the week number for date. The two-argument form\nof WEEK() enables you to specify whether the week starts on Sunday or\nMonday and whether the return value should be in the range from 0 to 53\nor from 1 to 53. If the mode argument is omitted, the value of the\ndefault_week_format system variable is used. See\nhttp://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html.\n\nURL: http://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT WEEK(\'2008-02-20\');\n -> 7\nmysql> SELECT WEEK(\'2008-02-20\',0);\n -> 7\nmysql> SELECT WEEK(\'2008-02-20\',1);\n -> 8\nmysql> SELECT WEEK(\'2008-12-31\',1);\n -> 53\n','http://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'); diff -Nru mysql-5.7-5.7.25/sql/auth/sql_auth_cache.cc mysql-5.7-5.7.26/sql/auth/sql_auth_cache.cc --- mysql-5.7-5.7.25/sql/auth/sql_auth_cache.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/sql/auth/sql_auth_cache.cc 2019-04-13 13:32:15.000000000 +0000 @@ -1,4 +1,4 @@ -/* Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved. +/* Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -263,8 +263,8 @@ { if (check_no_resolve && (hostname_requires_resolving(host.get_host()) || - hostname_requires_resolving(proxied_host.get_host()))) - { + hostname_requires_resolving(proxied_host.get_host())) && + strcmp(host.get_host(), "localhost") != 0) { sql_print_warning("'proxies_priv' entry '%s@%s %s@%s' " "ignored in --skip-name-resolve mode.", proxied_user ? proxied_user : "", @@ -1535,8 +1535,8 @@ table->field[table_schema->host_idx()])); user.user= get_field(&global_acl_memory, table->field[table_schema->user_idx()]); - if (check_no_resolve && hostname_requires_resolving(user.host.get_host())) - { + if (check_no_resolve && hostname_requires_resolving(user.host.get_host()) && + strcmp(user.host.get_host(), "localhost") != 0) { sql_print_warning("'user' entry '%s@%s' " "ignored in --skip-name-resolve mode.", user.user ? user.user : "", @@ -1910,8 +1910,8 @@ continue; } db.user=get_field(&global_acl_memory, table->field[MYSQL_DB_FIELD_USER]); - if (check_no_resolve && hostname_requires_resolving(db.host.get_host())) - { + if (check_no_resolve && hostname_requires_resolving(db.host.get_host()) && + strcmp(db.host.get_host(), "localhost") != 0) { sql_print_warning("'db' entry '%s %s@%s' " "ignored in --skip-name-resolve mode.", db.db, @@ -2455,8 +2455,8 @@ if (check_no_resolve) { - if (hostname_requires_resolving(mem_check->host.get_host())) - { + if (hostname_requires_resolving(mem_check->host.get_host()) && + strcmp(mem_check->host.get_host(), "localhost") != 0) { sql_print_warning("'tables_priv' entry '%s %s@%s' " "ignored in --skip-name-resolve mode.", mem_check->tname, diff -Nru mysql-5.7-5.7.25/sql/binlog.cc mysql-5.7-5.7.26/sql/binlog.cc --- mysql-5.7-5.7.25/sql/binlog.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/sql/binlog.cc 2019-04-13 13:32:15.000000000 +0000 @@ -1,4 +1,4 @@ -/* Copyright (c) 2009, 2018, Oracle and/or its affiliates. All rights reserved. +/* Copyright (c) 2009, 2019, Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -10886,6 +10886,11 @@ !get_transaction()->xid_state()->has_state(XID_STATE::XA_NOTR)) lex->set_stmt_unsafe(LEX::BINLOG_STMT_UNSAFE_XA); + DBUG_EXECUTE_IF("make_stmt_only_engines", + { + flags_write_all_set= HA_BINLOG_STMT_CAPABLE; + };); + /* both statement-only and row-only engines involved */ if ((flags_write_all_set & (HA_BINLOG_STMT_CAPABLE | HA_BINLOG_ROW_CAPABLE)) == 0) { @@ -10915,7 +10920,8 @@ */ my_error((error= ER_BINLOG_ROW_MODE_AND_STMT_ENGINE), MYF(0)); } - else if ((unsafe_flags= lex->get_stmt_unsafe_flags()) != 0) + else if (variables.binlog_format == BINLOG_FORMAT_MIXED && + ((unsafe_flags= lex->get_stmt_unsafe_flags()) != 0)) { /* 3. Error: Cannot execute statement: binlogging of unsafe @@ -10929,6 +10935,19 @@ my_error((error= ER_BINLOG_UNSAFE_AND_STMT_ENGINE), MYF(0), ER(LEX::binlog_stmt_unsafe_errcode[unsafe_type])); } + else if (is_write && ((unsafe_flags= lex->get_stmt_unsafe_flags()) != 0)) + { + /* + 7. Warning: Unsafe statement logged as statement due to + binlog_format = STATEMENT + */ + binlog_unsafe_warning_flags|= unsafe_flags; + DBUG_PRINT("info", ("Scheduling warning to be issued by " + "binlog_query: '%s'", + ER(ER_BINLOG_UNSAFE_STATEMENT))); + DBUG_PRINT("info", ("binlog_unsafe_warning_flags: 0x%x", + binlog_unsafe_warning_flags)); + } /* log in statement format! */ } /* no statement-only engines */ diff -Nru mysql-5.7-5.7.25/sql/CMakeLists.txt mysql-5.7-5.7.26/sql/CMakeLists.txt --- mysql-5.7-5.7.25/sql/CMakeLists.txt 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/sql/CMakeLists.txt 2019-04-13 13:32:15.000000000 +0000 @@ -1,4 +1,4 @@ -# Copyright (c) 2006, 2018, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2006, 2019, Oracle and/or its affiliates. All rights reserved. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -618,21 +618,13 @@ ) -IF(WIN32 OR HAVE_DLOPEN AND NOT DISABLE_SHARED) - ADD_LIBRARY(udf_example MODULE udf_example.cc) - SET_TARGET_PROPERTIES(udf_example PROPERTIES PREFIX "") - # udf_example depends on strings +MYSQL_ADD_PLUGIN(udf_example udf_example.cc + MODULE_ONLY TEST_ONLY MODULE_OUTPUT_NAME "udf_example") +IF(NOT DISABLE_SHARED) IF(WIN32) - IF(MSVC) - SET_TARGET_PROPERTIES(udf_example - PROPERTIES LINK_FLAGS "/DEF:${CMAKE_CURRENT_SOURCE_DIR}/udf_example.def") - ENDIF() - TARGET_LINK_LIBRARIES(udf_example strings) - ELSE() - # udf_example is using safemutex exported by mysqld - TARGET_LINK_LIBRARIES(udf_example mysqld) SET_TARGET_PROPERTIES(udf_example - PROPERTIES LINK_FLAGS "${CMAKE_SHARED_LIBRARY_C_FLAGS}") + PROPERTIES LINK_FLAGS + "/DEF:${CMAKE_CURRENT_SOURCE_DIR}/udf_example.def") ENDIF() ENDIF() @@ -649,11 +641,10 @@ ENDIF() ENDIF() -FOREACH(tool glibtoolize libtoolize aclocal autoconf autoheader automake gtar - tar git) - STRING(TOUPPER ${tool} TOOL) - FIND_PROGRAM(${TOOL}_EXECUTABLE ${tool} DOC "path to the executable") - MARK_AS_ADVANCED(${TOOL}_EXECUTABLE) +FOREACH(tool gtar tar git) + STRING(TOUPPER ${tool} TOOL) + FIND_PROGRAM(${TOOL}_EXECUTABLE ${tool} DOC "path to the executable") + MARK_AS_ADVANCED(${TOOL}_EXECUTABLE) ENDFOREACH() CONFIGURE_FILE( diff -Nru mysql-5.7-5.7.25/sql/conn_handler/connection_handler_manager.cc mysql-5.7-5.7.26/sql/conn_handler/connection_handler_manager.cc --- mysql-5.7-5.7.25/sql/conn_handler/connection_handler_manager.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/sql/conn_handler/connection_handler_manager.cc 2019-04-13 13:32:15.000000000 +0000 @@ -1,5 +1,5 @@ /* - Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved. + Copyright (c) 2013, 2018, Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -293,6 +293,11 @@ { Connection_handler_manager::dec_connection_count(); } + +void increment_aborted_connects() +{ + Connection_handler_manager::get_instance()->inc_aborted_connects(); +} #endif // !EMBEDDED_LIBRARY diff -Nru mysql-5.7-5.7.25/sql/handler.cc mysql-5.7-5.7.26/sql/handler.cc --- mysql-5.7-5.7.25/sql/handler.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/sql/handler.cc 2019-04-13 13:32:15.000000000 +0000 @@ -1459,6 +1459,7 @@ while (ha_info) { handlerton *ht= ha_info->ht(); + DBUG_ASSERT(!thd->status_var_aggregated); thd->status_var.ha_prepare_count++; if (ht->prepare) { @@ -1904,6 +1905,7 @@ my_error(ER_ERROR_DURING_COMMIT, MYF(0), err); error=1; } + DBUG_ASSERT(!thd->status_var_aggregated); thd->status_var.ha_commit_count++; ha_info_next= ha_info->next(); if (restore_backup_ha_data) @@ -1976,6 +1978,7 @@ my_error(ER_ERROR_DURING_ROLLBACK, MYF(0), err); error= 1; } + DBUG_ASSERT(!thd->status_var_aggregated); thd->status_var.ha_rollback_count++; ha_info_next= ha_info->next(); if (restore_backup_ha_data) @@ -2156,6 +2159,7 @@ DBUG_ASSERT(false); error= 1; } + DBUG_ASSERT(!thd->status_var_aggregated); thd->status_var.ha_commit_count++; ha_info_next= ha_info->next(); @@ -2288,6 +2292,7 @@ my_error(ER_ERROR_DURING_ROLLBACK, MYF(0), err); error=1; } + DBUG_ASSERT(!thd->status_var_aggregated); thd->status_var.ha_savepoint_rollback_count++; if (ht->prepare == 0) trn_ctx->set_no_2pc(trx_scope, true); @@ -2307,6 +2312,7 @@ my_error(ER_ERROR_DURING_ROLLBACK, MYF(0), err); error=1; } + DBUG_ASSERT(!thd->status_var_aggregated); thd->status_var.ha_rollback_count++; ha_info_next= ha_info->next(); ha_info->reset(); /* keep it conveniently zero-filled */ @@ -2348,6 +2354,7 @@ my_error(ER_ERROR_DURING_COMMIT, MYF(0), err); error= 1; } + DBUG_ASSERT(!thd->status_var_aggregated); thd->status_var.ha_prepare_count++; } DBUG_EXECUTE_IF("crash_commit_after_prepare", DBUG_SUICIDE();); @@ -2388,6 +2395,7 @@ my_error(ER_GET_ERRNO, MYF(0), err); error=1; } + DBUG_ASSERT(!thd->status_var_aggregated); thd->status_var.ha_savepoint_count++; } /* @@ -5633,7 +5641,10 @@ error= 0; if (!error) + { + DBUG_ASSERT(!thd->status_var_aggregated); thd->status_var.ha_discover_count++; + } DBUG_RETURN(error); } @@ -6545,7 +6556,10 @@ is_mrr_assoc= !MY_TEST(mode & HA_MRR_NO_ASSOCIATION); if (is_mrr_assoc) + { + DBUG_ASSERT(!thd->status_var_aggregated); table->in_use->status_var.ha_multi_range_read_init_count++; + } rowids_buf_end= buf->buffer_end; elem_size= h->ref_length + (int)is_mrr_assoc * sizeof(void*); diff -Nru mysql-5.7-5.7.25/sql/handler.h mysql-5.7-5.7.26/sql/handler.h --- mysql-5.7-5.7.25/sql/handler.h 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/sql/handler.h 2019-04-13 13:32:15.000000000 +0000 @@ -2,7 +2,7 @@ #define HANDLER_INCLUDED /* - Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved. + Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License @@ -1168,6 +1168,7 @@ inplace_alter_handler_ctx() {} virtual ~inplace_alter_handler_ctx() {} + virtual void set_shared_data(const inplace_alter_handler_ctx *ctx) {}; }; diff -Nru mysql-5.7-5.7.25/sql/log_event.cc mysql-5.7-5.7.26/sql/log_event.cc --- mysql-5.7-5.7.25/sql/log_event.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/sql/log_event.cc 2019-04-13 13:32:15.000000000 +0000 @@ -1,5 +1,5 @@ /* - Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved. + Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -10960,19 +10960,22 @@ /* A small test to verify that objects have consistent types */ DBUG_ASSERT(sizeof(thd->variables.option_bits) == sizeof(OPTION_RELAXED_UNIQUE_CHECKS)); - + DBUG_EXECUTE_IF("rows_log_event_before_open_table", + { + const char action[] = "now SIGNAL before_open_table WAIT_FOR go_ahead_sql"; + DBUG_ASSERT(!debug_sync_set_action(thd, STRING_WITH_LEN(action))); + };); if (open_and_lock_tables(thd, rli->tables_to_lock, 0)) { - uint actual_error= thd->get_stmt_da()->mysql_errno(); - if (thd->is_slave_error || thd->is_fatal_error) + if (thd->is_error()) { + uint actual_error= thd->get_stmt_da()->mysql_errno(); if (ignored_error_code(actual_error)) { if (log_warnings > 1) rli->report(WARNING_LEVEL, actual_error, "Error executing row event: '%s'", - (actual_error ? thd->get_stmt_da()->message_text() : - "unexpected success or fatal error")); + thd->get_stmt_da()->message_text()); thd->get_stmt_da()->reset_condition_info(thd); clear_all_errors(thd, const_cast(rli)); error= 0; @@ -10982,13 +10985,11 @@ { rli->report(ERROR_LEVEL, actual_error, "Error executing row event: '%s'", - (actual_error ? thd->get_stmt_da()->message_text() : - "unexpected success or fatal error")); + thd->get_stmt_da()->message_text()); thd->is_slave_error= 1; - const_cast(rli)->slave_close_thread_tables(thd); - DBUG_RETURN(actual_error); } } + DBUG_RETURN(1); } /* diff -Nru mysql-5.7-5.7.25/sql/log_event_old.cc mysql-5.7-5.7.26/sql/log_event_old.cc --- mysql-5.7-5.7.25/sql/log_event_old.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/sql/log_event_old.cc 2019-04-13 13:32:15.000000000 +0000 @@ -1,4 +1,4 @@ -/* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. +/* Copyright (c) 2007, 2019, Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -104,21 +104,18 @@ if (open_and_lock_tables(ev_thd, rli->tables_to_lock, 0)) { - uint actual_error= ev_thd->get_stmt_da()->mysql_errno(); - if (ev_thd->is_slave_error || ev_thd->is_fatal_error) + if (ev_thd->is_error()) { /* Error reporting borrowed from Query_log_event with many excessive simplifications (we don't honour --slave-skip-errors) */ - rli->report(ERROR_LEVEL, actual_error, + rli->report(ERROR_LEVEL, ev_thd->get_stmt_da()->mysql_errno(), "Error '%s' on opening tables", - (actual_error ? ev_thd->get_stmt_da()->message_text() : - "unexpected success or fatal error")); + ev_thd->get_stmt_da()->message_text()); ev_thd->is_slave_error= 1; } - const_cast(rli)->slave_close_thread_tables(thd); - DBUG_RETURN(actual_error); + DBUG_RETURN(1); } /* diff -Nru mysql-5.7-5.7.25/sql/migrate_keyring.cc mysql-5.7-5.7.26/sql/migrate_keyring.cc --- mysql-5.7-5.7.25/sql/migrate_keyring.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/sql/migrate_keyring.cc 2019-04-13 13:32:15.000000000 +0000 @@ -1,4 +1,4 @@ -/* Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved. +/* Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -67,9 +67,6 @@ string so(".so"); string dll(".dll"); - m_argc= argc; - m_argv= argv; - if (!source_plugin) { my_error(ER_KEYRING_MIGRATION_FAILURE, MYF(0), @@ -137,6 +134,17 @@ DBUG_RETURN(true); } } + + m_argc= argc; + m_argv= new char *[m_argc + 2]; // 1st for extra option and 2nd for NULL + for (int cnt= 0; cnt < m_argc; ++cnt) { + m_argv[cnt]= argv[cnt]; + } + /* add --loose__open_mode=1 option */ + m_internal_option= "--loose_" + m_source_plugin_name + "_open_mode=1"; + m_argv[m_argc]= const_cast(m_internal_option.c_str()); + /* update m_argc, m_argv */ + m_argv[++m_argc]= NULL; DBUG_RETURN(false); } @@ -161,12 +169,18 @@ { DBUG_ENTER("Migrate_keyring::execute"); + char **tmp_m_argv; + + /* Disable access to keyring service APIs */ + if (migrate_connect_options && disable_keyring_operations()) + goto error; + /* Load source plugin. */ if (load_plugin(SOURCE_PLUGIN)) { my_error(ER_KEYRING_MIGRATION_FAILURE, MYF(0), "Failed to initialize source keyring"); - DBUG_RETURN(true); + goto error; } /* Load destination source plugin. */ @@ -174,12 +188,14 @@ { my_error(ER_KEYRING_MIGRATION_FAILURE, MYF(0), "Failed to initialize destination keyring"); - DBUG_RETURN(true); + goto error; } /* skip program name */ m_argc--; - m_argv++; + /* We use a tmp ptr instead of m_argv since if the latter gets changed, we + * lose access to the alloced mem and hence there would be leak */ + tmp_m_argv= m_argv + 1; /* check for invalid options */ if (m_argc > 1) { @@ -189,7 +205,7 @@ }; my_getopt_skip_unknown= 0; my_getopt_use_args_separator= true; - if (handle_options(&m_argc, &m_argv, no_opts, NULL)) + if (handle_options(&m_argc, &tmp_m_argv, no_opts, NULL)) unireg_abort(MYSQLD_ABORT_EXIT); if (m_argc > 1) @@ -201,9 +217,6 @@ unireg_abort(MYSQLD_ABORT_EXIT); } } - /* Disable access to keyring service APIs */ - if (migrate_connect_options && disable_keyring_operations()) - goto error; /* Fetch all keys from source plugin and store into destination plugin. */ if (fetch_and_store_keys()) @@ -427,6 +440,8 @@ { if (mysql) { + delete[] m_argv; + m_argv= NULL; mysql_close(mysql); mysql= NULL; if (migrate_connect_options) diff -Nru mysql-5.7-5.7.25/sql/migrate_keyring.h mysql-5.7-5.7.26/sql/migrate_keyring.h --- mysql-5.7-5.7.25/sql/migrate_keyring.h 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/sql/migrate_keyring.h 2019-04-13 13:32:15.000000000 +0000 @@ -1,4 +1,4 @@ -/* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved. +/* Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -115,6 +115,7 @@ string m_destination_plugin_option; string m_source_plugin_name; string m_destination_plugin_name; + string m_internal_option; st_mysql_keyring *m_source_plugin_handle; st_mysql_keyring *m_destination_plugin_handle; std::vector m_source_keys; diff -Nru mysql-5.7-5.7.25/sql/mysqld.cc mysql-5.7-5.7.26/sql/mysqld.cc --- mysql-5.7-5.7.25/sql/mysqld.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/sql/mysqld.cc 2019-04-13 13:32:15.000000000 +0000 @@ -4741,7 +4741,7 @@ } sql_print_information(ER_DEFAULT(ER_KEYRING_MIGRATION_STATUS), - "successfull"); + "successful"); log_error_dest= "stderr"; flush_error_log_messages(); unireg_abort(MYSQLD_SUCCESS_EXIT); diff -Nru mysql-5.7-5.7.25/sql/named_pipe.cc mysql-5.7-5.7.26/sql/named_pipe.cc --- mysql-5.7-5.7.25/sql/named_pipe.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/sql/named_pipe.cc 2019-04-13 13:32:15.000000000 +0000 @@ -1,4 +1,4 @@ -/* Copyright (c) 2012, 2018, Oracle and/or its affiliates. All rights reserved. +/* Copyright (c) 2012, 2019, Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -52,20 +52,13 @@ { // Treat the DEFAULT_NAMED_PIPE_FULL_ACCESS_GROUP value // as a special case: we (later) convert it to the "world" SID - if (strcmp(group_name, DEFAULT_NAMED_PIPE_FULL_ACCESS_GROUP) == 0) - { - return true; - } - if (!group_name || group_name[0] == '\0' || - is_existing_windows_group_name(group_name)) + strcmp(group_name, DEFAULT_NAMED_PIPE_FULL_ACCESS_GROUP) == 0 || + is_existing_windows_group_name(group_name)) { return true; } - else - { - return false; - } + return false; } // return false on success, true on failure. diff -Nru mysql-5.7-5.7.25/sql/rpl_gtid_state.cc mysql-5.7-5.7.26/sql/rpl_gtid_state.cc --- mysql-5.7-5.7.25/sql/rpl_gtid_state.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/sql/rpl_gtid_state.cc 2019-04-13 13:32:15.000000000 +0000 @@ -1,4 +1,4 @@ -/* Copyright (c) 2011, 2017, Oracle and/or its affiliates. All rights reserved. +/* Copyright (c) 2011, 2019, Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -326,8 +326,10 @@ DBUG_ASSERT(wait_for->get_sid_map() == global_sid_map); - if (timeout > 0) - set_timespec_nsec(&abstime, (ulonglong) timeout * 1000000000ULL); + if (timeout > 0) { + set_timespec_nsec(&abstime, + static_cast(timeout * 1000000000ULL)); + } /* Algorithm: diff -Nru mysql-5.7-5.7.25/sql/rpl_master.cc mysql-5.7-5.7.26/sql/rpl_master.cc --- mysql-5.7-5.7.25/sql/rpl_master.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/sql/rpl_master.cc 2019-04-13 13:32:15.000000000 +0000 @@ -1,4 +1,4 @@ -/* Copyright (c) 2010, 2017, Oracle and/or its affiliates. All rights reserved. +/* Copyright (c) 2010, 2018, Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -318,6 +318,7 @@ const uchar* packet_position= (uchar *) packet; size_t packet_bytes_todo= packet_length; + DBUG_ASSERT(!thd->status_var_aggregated); thd->status_var.com_other++; thd->enable_slow_log= opt_log_slow_admin_statements; if (check_global_access(thd, REPL_SLAVE_ACL)) @@ -368,6 +369,7 @@ Sid_map sid_map(NULL/*no sid_lock because this is a completely local object*/); Gtid_set slave_gtid_executed(&sid_map); + DBUG_ASSERT(!thd->status_var_aggregated); thd->status_var.com_other++; thd->enable_slow_log= opt_log_slow_admin_statements; if (check_global_access(thd, REPL_SLAVE_ACL)) diff -Nru mysql-5.7-5.7.25/sql/rpl_mts_submode.cc mysql-5.7-5.7.26/sql/rpl_mts_submode.cc --- mysql-5.7-5.7.25/sql/rpl_mts_submode.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/sql/rpl_mts_submode.cc 2019-04-13 13:32:15.000000000 +0000 @@ -1,4 +1,4 @@ -/* Copyright (c) 2013, 2017, Oracle and/or its affiliates. All rights reserved. +/* Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -979,6 +979,17 @@ if (mts_checkpoint_routine(rli, 0, true, true /*need_data_lock=true*/)) DBUG_RETURN(-1); } + + // Check if there is a failure on a not-ignored Worker + for (Slave_worker **it= rli->workers.begin(); it != rli->workers.end(); + ++it) + { + Slave_worker *w_i= *it; + if (w_i->running_status != Slave_worker::RUNNING) + DBUG_RETURN(-1); + + } + DBUG_EXECUTE_IF("wait_for_workers_to_finish_after_wait", { const char act[]= "now WAIT_FOR coordinator_continue"; diff -Nru mysql-5.7-5.7.25/sql/rpl_rli.cc mysql-5.7-5.7.26/sql/rpl_rli.cc --- mysql-5.7-5.7.25/sql/rpl_rli.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/sql/rpl_rli.cc 2019-04-13 13:32:15.000000000 +0000 @@ -1,4 +1,4 @@ -/* Copyright (c) 2006, 2018, Oracle and/or its affiliates. All rights reserved. +/* Copyright (c) 2006, 2019, Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -743,7 +743,7 @@ DEBUG_SYNC(thd, "begin_master_pos_wait"); - set_timespec_nsec(&abstime, (ulonglong)timeout * 1000000000ULL); + set_timespec_nsec(&abstime, static_cast(timeout * 1000000000ULL)); mysql_mutex_lock(&data_lock); thd->ENTER_COND(&data_cond, &data_lock, &stage_waiting_for_the_slave_thread_to_advance_position, @@ -964,7 +964,7 @@ DEBUG_SYNC(thd, "begin_wait_for_gtid_set"); - set_timespec_nsec(&abstime, (ulonglong) timeout * 1000000000ULL); + set_timespec_nsec(&abstime, static_cast(timeout * 1000000000ULL)); mysql_mutex_lock(&data_lock); thd->ENTER_COND(&data_cond, &data_lock, diff -Nru mysql-5.7-5.7.25/sql/rpl_slave.cc mysql-5.7-5.7.26/sql/rpl_slave.cc --- mysql-5.7-5.7.25/sql/rpl_slave.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/sql/rpl_slave.cc 2019-04-13 13:32:15.000000000 +0000 @@ -1,4 +1,4 @@ -/* Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved. +/* Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -3367,10 +3367,15 @@ @param thd pointer to I/O Thread's Thd. @param mi point to I/O Thread metadata class. + @param force_flush_mi_info when true, do not respect sync period and flush + information. + when false, flush will only happen if it is time to + flush. @return 0 if everything went fine, 1 otherwise. */ -static int write_ignored_events_info_to_relay_log(THD *thd, Master_info *mi) +static int write_ignored_events_info_to_relay_log(THD *thd, Master_info *mi, + bool force_flush_mi_info) { Relay_log_info *rli= mi->rli; mysql_mutex_t *log_lock= rli->relay_log.get_log_lock(); @@ -3403,7 +3408,7 @@ " to the relay log, SHOW SLAVE STATUS may be" " inaccurate"); rli->relay_log.harvest_bytes_written(rli, true/*need_log_space_lock=true*/); - if (flush_master_info(mi, TRUE)) + if (flush_master_info(mi, force_flush_mi_info)) { error= 1; sql_print_error("Failed to flush master info file."); @@ -5995,7 +6000,7 @@ mi->mysql=0; } mysql_mutex_lock(&mi->data_lock); - write_ignored_events_info_to_relay_log(thd, mi); + write_ignored_events_info_to_relay_log(thd, mi, false/* force_flush_mi_info */); mysql_mutex_unlock(&mi->data_lock); THD_STAGE_INFO(thd, stage_waiting_for_slave_mutex_on_exit); mysql_mutex_lock(&mi->run_lock); @@ -8424,6 +8429,11 @@ DBUG_ASSERT(memcmp(const_cast(mi->get_master_log_name()), hb.get_log_ident(), hb.get_ident_len()) == 0); + DBUG_EXECUTE_IF("reached_heart_beat_queue_event", { + const char act[] = "now SIGNAL check_slave_master_info WAIT_FOR proceed_write_rotate"; + DBUG_ASSERT(!debug_sync_set_action(current_thd, STRING_WITH_LEN(act))); + };); + mi->set_master_log_pos(hb.common_header->log_pos); /* @@ -8434,7 +8444,8 @@ FN_REFLEN); rli->ign_master_log_pos_end = mi->get_master_log_pos(); - if (write_ignored_events_info_to_relay_log(mi->info_thd, mi)) + if (write_ignored_events_info_to_relay_log(mi->info_thd, mi, + false/* force_flush_mi_info */)) goto end; } @@ -8483,7 +8494,8 @@ memcpy(rli->ign_master_log_name_end, mi->get_master_log_name(), FN_REFLEN); rli->ign_master_log_pos_end= mi->get_master_log_pos(); - if (write_ignored_events_info_to_relay_log(mi->info_thd, mi)) + if (write_ignored_events_info_to_relay_log(mi->info_thd, mi, + true/* force_flush_mi_info */)) goto err; goto end; diff -Nru mysql-5.7-5.7.25/sql/sql_audit.cc mysql-5.7-5.7.26/sql/sql_audit.cc --- mysql-5.7-5.7.25/sql/sql_audit.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/sql/sql_audit.cc 2019-04-13 13:32:15.000000000 +0000 @@ -1,4 +1,4 @@ -/* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. +/* Copyright (c) 2007, 2019, Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -1055,16 +1055,25 @@ return FALSE; } - /* Copy subscription mask from the plugin into the array. */ - add_audit_mask(evt->subscribed_mask, data->class_mask); - /* Prevent from adding the same plugin more than one time. */ - if (thd->audit_class_plugins.exists(plugin)) - return FALSE; + if (!thd->audit_class_plugins.exists(plugin)) + { + /* lock the plugin and add it to the list */ + plugin= my_plugin_lock(NULL, &plugin); + + /* The plugin could not be acquired. */ + if (plugin == NULL) + { + /* Add this plugin mask to non subscribed mask. */ + add_audit_mask(evt->not_subscribed_mask, data->class_mask); + return FALSE; + } + + thd->audit_class_plugins.push_back(plugin); + } - /* lock the plugin and add it to the list */ - plugin= my_plugin_lock(NULL, &plugin); - thd->audit_class_plugins.push_back(plugin); + /* Copy subscription mask from the plugin into the array. */ + add_audit_mask(evt->subscribed_mask, data->class_mask); return FALSE; } diff -Nru mysql-5.7-5.7.25/sql/sql_base.cc mysql-5.7-5.7.26/sql/sql_base.cc --- mysql-5.7-5.7.25/sql/sql_base.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/sql/sql_base.cc 2019-04-13 13:32:15.000000000 +0000 @@ -1,4 +1,4 @@ -/* Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved. +/* Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -3474,6 +3474,11 @@ if (!table_list->is_view()) DBUG_RETURN(true); + // Create empty list of view_tables. + table_list->view_tables = new (thd->mem_root) List; + if (table_list->view_tables == NULL) + DBUG_RETURN(true); + table_list->view_db.str= table_list->db; table_list->view_db.length= table_list->db_length; table_list->view_name.str= table_list->table_name; diff -Nru mysql-5.7-5.7.25/sql/sql_class.cc mysql-5.7-5.7.26/sql/sql_class.cc --- mysql-5.7-5.7.25/sql/sql_class.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/sql/sql_class.cc 2019-04-13 13:32:15.000000000 +0000 @@ -1789,17 +1789,6 @@ Global_THD_manager::get_instance()->release_thread_id(m_thread_id); - mysql_mutex_lock(&LOCK_status); - add_to_status(&global_status_var, &status_var, false); - /* - Status queries after this point should not aggregate THD::status_var - since the values has been added to global_status_var. - The status values are not reset so that they can still be read - by performance schema. - */ - status_var_aggregated= true; - mysql_mutex_unlock(&LOCK_status); - /* Ensure that no one is using THD */ mysql_mutex_lock(&LOCK_thd_data); mysql_mutex_lock(&LOCK_query_plan); @@ -1855,6 +1844,18 @@ if (current_thd == this) restore_globals(); + + mysql_mutex_lock(&LOCK_status); + add_to_status(&global_status_var, &status_var, false); + /* + Status queries after this point should not aggregate THD::status_var + since the values has been added to global_status_var. + The status values are not reset so that they can still be read + by performance schema. + */ + status_var_aggregated= true; + mysql_mutex_unlock(&LOCK_status); + m_release_resources_done= true; } @@ -2062,7 +2063,10 @@ ha_kill_connection(this); if (state_to_set == THD::KILL_TIMEOUT) + { + DBUG_ASSERT(!status_var_aggregated); status_var.max_execution_time_exceeded++; + } /* Broadcast a condition to kick the target if it is waiting on it. */ @@ -4222,6 +4226,7 @@ void THD::inc_status_created_tmp_disk_tables() { + DBUG_ASSERT(!status_var_aggregated); status_var.created_tmp_disk_tables++; #ifdef HAVE_PSI_STATEMENT_INTERFACE PSI_STATEMENT_CALL(inc_statement_created_tmp_disk_tables)(m_statement_psi, 1); @@ -4230,6 +4235,7 @@ void THD::inc_status_created_tmp_tables() { + DBUG_ASSERT(!status_var_aggregated); status_var.created_tmp_tables++; #ifdef HAVE_PSI_STATEMENT_INTERFACE PSI_STATEMENT_CALL(inc_statement_created_tmp_tables)(m_statement_psi, 1); @@ -4238,6 +4244,7 @@ void THD::inc_status_select_full_join() { + DBUG_ASSERT(!status_var_aggregated); status_var.select_full_join_count++; #ifdef HAVE_PSI_STATEMENT_INTERFACE PSI_STATEMENT_CALL(inc_statement_select_full_join)(m_statement_psi, 1); @@ -4246,6 +4253,7 @@ void THD::inc_status_select_full_range_join() { + DBUG_ASSERT(!status_var_aggregated); status_var.select_full_range_join_count++; #ifdef HAVE_PSI_STATEMENT_INTERFACE PSI_STATEMENT_CALL(inc_statement_select_full_range_join)(m_statement_psi, 1); @@ -4254,6 +4262,7 @@ void THD::inc_status_select_range() { + DBUG_ASSERT(!status_var_aggregated); status_var.select_range_count++; #ifdef HAVE_PSI_STATEMENT_INTERFACE PSI_STATEMENT_CALL(inc_statement_select_range)(m_statement_psi, 1); @@ -4262,6 +4271,7 @@ void THD::inc_status_select_range_check() { + DBUG_ASSERT(!status_var_aggregated); status_var.select_range_check_count++; #ifdef HAVE_PSI_STATEMENT_INTERFACE PSI_STATEMENT_CALL(inc_statement_select_range_check)(m_statement_psi, 1); @@ -4270,6 +4280,7 @@ void THD::inc_status_select_scan() { + DBUG_ASSERT(!status_var_aggregated); status_var.select_scan_count++; #ifdef HAVE_PSI_STATEMENT_INTERFACE PSI_STATEMENT_CALL(inc_statement_select_scan)(m_statement_psi, 1); @@ -4278,6 +4289,7 @@ void THD::inc_status_sort_merge_passes() { + DBUG_ASSERT(!status_var_aggregated); status_var.filesort_merge_passes++; #ifdef HAVE_PSI_STATEMENT_INTERFACE PSI_STATEMENT_CALL(inc_statement_sort_merge_passes)(m_statement_psi, 1); @@ -4286,6 +4298,7 @@ void THD::inc_status_sort_range() { + DBUG_ASSERT(!status_var_aggregated); status_var.filesort_range_count++; #ifdef HAVE_PSI_STATEMENT_INTERFACE PSI_STATEMENT_CALL(inc_statement_sort_range)(m_statement_psi, 1); @@ -4303,6 +4316,7 @@ void THD::inc_status_sort_scan() { + DBUG_ASSERT(!status_var_aggregated); status_var.filesort_scan_count++; #ifdef HAVE_PSI_STATEMENT_INTERFACE PSI_STATEMENT_CALL(inc_statement_sort_scan)(m_statement_psi, 1); diff -Nru mysql-5.7-5.7.25/sql/sql_class.h mysql-5.7-5.7.26/sql/sql_class.h --- mysql-5.7-5.7.25/sql/sql_class.h 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/sql/sql_class.h 2019-04-13 13:32:15.000000000 +0000 @@ -1660,6 +1660,7 @@ */ void save_current_query_costs() { + DBUG_ASSERT(!status_var_aggregated); status_var.last_query_cost= m_current_query_cost; status_var.last_query_partial_plans= m_current_query_partial_plans; } diff -Nru mysql-5.7-5.7.25/sql/sql_executor.cc mysql-5.7-5.7.26/sql/sql_executor.cc --- mysql-5.7-5.7.25/sql/sql_executor.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/sql/sql_executor.cc 2019-04-13 13:32:15.000000000 +0000 @@ -2136,6 +2136,18 @@ } /** + Rows from const tables are read once but potentially used + multiple times during execution of a query. + Ensure such rows are never unlocked during query execution. +*/ + +void +join_const_unlock_row(QEP_TAB *tab) +{ + DBUG_ASSERT(tab->type() == JT_CONST); +} + +/** Read a table *assumed* to be included in execution of a pushed join. This is the counterpart of join_read_key() / join_read_always_key() for child tables in a pushed join. @@ -2803,6 +2815,7 @@ case JT_CONST: read_first_record= join_read_const; read_record.read_record= join_no_more_records; + read_record.unlock_row= join_const_unlock_row; break; case JT_EQ_REF: diff -Nru mysql-5.7-5.7.25/sql/sql_executor.h mysql-5.7-5.7.26/sql/sql_executor.h --- mysql-5.7-5.7.25/sql/sql_executor.h 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/sql/sql_executor.h 2019-04-13 13:32:15.000000000 +0000 @@ -298,6 +298,7 @@ int join_read_const_table(JOIN_TAB *tab, POSITION *pos); void join_read_key_unlock_row(st_join_table *tab); +void join_const_unlock_row(st_join_table *tab); int join_init_quick_read_record(QEP_TAB *tab); int join_init_read_record(QEP_TAB *tab); int join_read_first(QEP_TAB *tab); diff -Nru mysql-5.7-5.7.25/sql/sql_hints.yy.cc mysql-5.7-5.7.26/sql/sql_hints.yy.cc --- mysql-5.7-5.7.25/sql/sql_hints.yy.cc 2018-12-21 10:52:19.000000000 +0000 +++ mysql-5.7-5.7.26/sql/sql_hints.yy.cc 2019-04-13 13:46:47.000000000 +0000 @@ -68,7 +68,7 @@ /* Copy the first part of user declarations. */ -#line 21 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:339 */ +#line 21 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:339 */ #include "sql_class.h" #include "parse_tree_hints.h" @@ -77,7 +77,7 @@ #define NEW_PTN new (thd->mem_root) -#line 81 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:339 */ +#line 81 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:339 */ # ifndef YY_NULLPTR # if defined __cplusplus && 201103L <= __cplusplus @@ -97,8 +97,8 @@ /* In a future release of Bison, this section will be replaced by #include "sql_hints.yy.h". */ -#ifndef YY_HINT_PARSER_EXPORT_HOME2_PB2_BUILD_SB_1_32013685_1545388829_14_DIST_GPL_SQL_SQL_HINTS_YY_H_INCLUDED -# define YY_HINT_PARSER_EXPORT_HOME2_PB2_BUILD_SB_1_32013685_1545388829_14_DIST_GPL_SQL_SQL_HINTS_YY_H_INCLUDED +#ifndef YY_HINT_PARSER_EXPORT_HOME2_PB2_BUILD_SB_2_33647514_1555162505_73_DIST_GPL_SQL_SQL_HINTS_YY_H_INCLUDED +# define YY_HINT_PARSER_EXPORT_HOME2_PB2_BUILD_SB_2_33647514_1555162505_73_DIST_GPL_SQL_SQL_HINTS_YY_H_INCLUDED /* Debug traces. */ #ifndef YYDEBUG # define YYDEBUG 0 @@ -168,11 +168,11 @@ int HINT_PARSER_parse (class THD *thd, class Hint_scanner *scanner, class PT_hint_list **ret); -#endif /* !YY_HINT_PARSER_EXPORT_HOME2_PB2_BUILD_SB_1_32013685_1545388829_14_DIST_GPL_SQL_SQL_HINTS_YY_H_INCLUDED */ +#endif /* !YY_HINT_PARSER_EXPORT_HOME2_PB2_BUILD_SB_2_33647514_1555162505_73_DIST_GPL_SQL_SQL_HINTS_YY_H_INCLUDED */ /* Copy the second part of user declarations. */ -#line 176 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:358 */ +#line 176 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:358 */ #ifdef short # undef short @@ -1331,44 +1331,44 @@ switch (yyn) { case 2: -#line 119 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 119 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { *ret= (yyvsp[-1].hint_list); } -#line 1337 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1337 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 3: -#line 121 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 121 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { *ret= (yyvsp[-2].hint_list); } -#line 1343 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1343 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 4: -#line 123 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 123 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { *ret= NULL; } -#line 1349 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1349 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 5: -#line 128 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 128 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { (yyval.hint_list)= NEW_PTN PT_hint_list(thd->mem_root); if ((yyval.hint_list) == NULL || (yyval.hint_list)->push_back((yyvsp[0].hint))) YYABORT; // OOM } -#line 1359 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1359 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 6: -#line 134 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 134 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { (yyvsp[-1].hint_list)->push_back((yyvsp[0].hint)); (yyval.hint_list)= (yyvsp[-1].hint_list); } -#line 1368 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1368 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 12: -#line 151 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 151 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { int error; char *end= const_cast((yyvsp[-1].hint_string).str + (yyvsp[-1].hint_string).length); @@ -1386,345 +1386,345 @@ YYABORT; // OOM } } -#line 1390 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1390 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 13: -#line 172 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 172 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { (yyval.hint_param_table_list).init(thd->mem_root); } -#line 1396 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1396 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 15: -#line 178 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 178 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { (yyval.hint_param_table_list).init(thd->mem_root); if ((yyval.hint_param_table_list).push_back((yyvsp[0].hint_param_table))) YYABORT; // OOM } -#line 1406 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1406 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 16: -#line 184 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 184 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { if ((yyvsp[-2].hint_param_table_list).push_back((yyvsp[0].hint_param_table))) YYABORT; // OOM (yyval.hint_param_table_list)= (yyvsp[-2].hint_param_table_list); } -#line 1416 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1416 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 17: -#line 192 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 192 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { (yyval.hint_param_table_list).init(thd->mem_root); } -#line 1422 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1422 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 19: -#line 198 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 198 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { (yyval.hint_param_table_list).init(thd->mem_root); if ((yyval.hint_param_table_list).push_back((yyvsp[0].hint_param_table))) YYABORT; // OOM } -#line 1432 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1432 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 20: -#line 204 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 204 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { if ((yyvsp[-2].hint_param_table_list).push_back((yyvsp[0].hint_param_table))) YYABORT; // OOM (yyval.hint_param_table_list)= (yyvsp[-2].hint_param_table_list); } -#line 1442 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1442 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 21: -#line 212 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 212 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { (yyval.hint_param_index_list).init(thd->mem_root); } -#line 1448 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1448 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 23: -#line 218 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 218 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { (yyval.hint_param_index_list).init(thd->mem_root); if ((yyval.hint_param_index_list).push_back((yyvsp[0].hint_string))) YYABORT; // OOM } -#line 1458 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1458 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 24: -#line 224 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 224 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { if ((yyvsp[-2].hint_param_index_list).push_back((yyvsp[0].hint_string))) YYABORT; // OOM (yyval.hint_param_index_list)= (yyvsp[-2].hint_param_index_list); } -#line 1468 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1468 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 26: -#line 237 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 237 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { (yyval.hint_param_table).table= (yyvsp[0].hint_string); (yyval.hint_param_table).opt_query_block= NULL_CSTR; } -#line 1477 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1477 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 27: -#line 245 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 245 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { (yyval.hint_param_table).table= (yyvsp[-1].hint_string); (yyval.hint_param_table).opt_query_block= (yyvsp[0].hint_string); } -#line 1486 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1486 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 29: -#line 254 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 254 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { (yyval.hint_param_table).table= (yyvsp[0].hint_string); (yyval.hint_param_table).opt_query_block= (yyvsp[-1].hint_string); } -#line 1495 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1495 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 30: -#line 261 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 261 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { (yyval.hint_string)= NULL_CSTR; } -#line 1501 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1501 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 32: -#line 267 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 267 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { (yyval.hint)= NEW_PTN PT_qb_level_hint((yyvsp[-2].hint_string), TRUE, SEMIJOIN_HINT_ENUM, (yyvsp[-1].ulong_num)); if ((yyval.hint) == NULL) YYABORT; // OOM } -#line 1511 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1511 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 33: -#line 274 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 274 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { (yyval.hint)= NEW_PTN PT_qb_level_hint((yyvsp[-2].hint_string), FALSE, SEMIJOIN_HINT_ENUM, (yyvsp[-1].ulong_num)); if ((yyval.hint) == NULL) YYABORT; // OOM } -#line 1521 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1521 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 34: -#line 281 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 281 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { (yyval.hint)= NEW_PTN PT_qb_level_hint((yyvsp[-2].hint_string), TRUE, SUBQUERY_HINT_ENUM, (yyvsp[-1].ulong_num)); if ((yyval.hint) == NULL) YYABORT; // OOM } -#line 1531 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1531 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 35: -#line 289 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 289 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { (yyval.ulong_num)= 0; } -#line 1537 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1537 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 36: -#line 291 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 291 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { (yyval.ulong_num)= (yyvsp[0].ulong_num); } -#line 1545 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1545 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 37: -#line 295 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 295 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { (yyval.ulong_num)= (yyvsp[-2].ulong_num) | (yyvsp[0].ulong_num); } -#line 1553 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1553 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 38: -#line 301 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 301 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { (yyval.ulong_num)= OPTIMIZER_SWITCH_FIRSTMATCH; } -#line 1559 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1559 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 39: -#line 302 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 302 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { (yyval.ulong_num)= OPTIMIZER_SWITCH_LOOSE_SCAN; } -#line 1565 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1565 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 40: -#line 303 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 303 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { (yyval.ulong_num)= OPTIMIZER_SWITCH_MATERIALIZATION; } -#line 1571 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1571 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 41: -#line 304 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 304 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { (yyval.ulong_num)= OPTIMIZER_SWITCH_DUPSWEEDOUT; } -#line 1577 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1577 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 42: -#line 308 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 308 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { (yyval.ulong_num)= Item_exists_subselect::EXEC_MATERIALIZATION; } -#line 1584 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1584 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 43: -#line 310 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 310 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { (yyval.ulong_num)= Item_exists_subselect::EXEC_EXISTS; } -#line 1590 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1590 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 44: -#line 316 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 316 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { (yyval.hint)= NEW_PTN PT_table_level_hint(NULL_CSTR, (yyvsp[-1].hint_param_table_list), TRUE, (yyvsp[-3].hint_type)); if ((yyval.hint) == NULL) YYABORT; // OOM } -#line 1600 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1600 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 45: -#line 323 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 323 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { (yyval.hint)= NEW_PTN PT_table_level_hint((yyvsp[-2].hint_string), (yyvsp[-1].hint_param_table_list), TRUE, (yyvsp[-4].hint_type)); if ((yyval.hint) == NULL) YYABORT; // OOM } -#line 1610 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1610 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 46: -#line 329 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 329 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { (yyval.hint)= NEW_PTN PT_table_level_hint(NULL_CSTR, (yyvsp[-1].hint_param_table_list), FALSE, (yyvsp[-3].hint_type)); if ((yyval.hint) == NULL) YYABORT; // OOM } -#line 1620 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1620 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 47: -#line 336 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 336 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { (yyval.hint)= NEW_PTN PT_table_level_hint((yyvsp[-2].hint_string), (yyvsp[-1].hint_param_table_list), FALSE, (yyvsp[-4].hint_type)); if ((yyval.hint) == NULL) YYABORT; // OOM } -#line 1630 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1630 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 48: -#line 346 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 346 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { (yyval.hint)= NEW_PTN PT_key_level_hint((yyvsp[-2].hint_param_table), (yyvsp[-1].hint_param_index_list), TRUE, (yyvsp[-4].hint_type)); if ((yyval.hint) == NULL) YYABORT; // OOM } -#line 1640 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1640 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 49: -#line 353 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 353 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { (yyval.hint)= NEW_PTN PT_key_level_hint((yyvsp[-2].hint_param_table), (yyvsp[-1].hint_param_index_list), FALSE, (yyvsp[-4].hint_type)); if ((yyval.hint) == NULL) YYABORT; // OOM } -#line 1650 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1650 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 50: -#line 362 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 362 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { (yyval.hint_type)= BKA_HINT_ENUM; } -#line 1658 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1658 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 51: -#line 366 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 366 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { (yyval.hint_type)= BNL_HINT_ENUM; } -#line 1666 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1666 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 52: -#line 373 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 373 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { (yyval.hint_type)= BKA_HINT_ENUM; } -#line 1674 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1674 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 53: -#line 377 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 377 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { (yyval.hint_type)= BNL_HINT_ENUM; } -#line 1682 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1682 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 54: -#line 384 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 384 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { (yyval.hint_type)= MRR_HINT_ENUM; } -#line 1690 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1690 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 55: -#line 388 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 388 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { (yyval.hint_type)= NO_RANGE_HINT_ENUM; } -#line 1698 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1698 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 56: -#line 395 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 395 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { (yyval.hint_type)= ICP_HINT_ENUM; } -#line 1706 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1706 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 57: -#line 399 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 399 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { (yyval.hint_type)= MRR_HINT_ENUM; } -#line 1714 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1714 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; case 58: -#line 406 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ +#line 406 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_hints.yy" /* yacc.c:1646 */ { (yyval.hint)= NEW_PTN PT_hint_qb_name((yyvsp[-1].hint_string)); if ((yyval.hint) == NULL) YYABORT; // OOM } -#line 1724 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1724 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ break; -#line 1728 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ +#line 1728 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_hints.yy.cc" /* yacc.c:1646 */ default: break; } /* User semantic actions sometimes alter yychar, and that requires diff -Nru mysql-5.7-5.7.25/sql/sql_hints.yy.h mysql-5.7-5.7.26/sql/sql_hints.yy.h --- mysql-5.7-5.7.25/sql/sql_hints.yy.h 2018-12-21 10:52:19.000000000 +0000 +++ mysql-5.7-5.7.26/sql/sql_hints.yy.h 2019-04-13 13:46:47.000000000 +0000 @@ -30,8 +30,8 @@ This special exception was added by the Free Software Foundation in version 2.2 of Bison. */ -#ifndef YY_HINT_PARSER_EXPORT_HOME2_PB2_BUILD_SB_1_32013685_1545388829_14_DIST_GPL_SQL_SQL_HINTS_YY_H_INCLUDED -# define YY_HINT_PARSER_EXPORT_HOME2_PB2_BUILD_SB_1_32013685_1545388829_14_DIST_GPL_SQL_SQL_HINTS_YY_H_INCLUDED +#ifndef YY_HINT_PARSER_EXPORT_HOME2_PB2_BUILD_SB_2_33647514_1555162505_73_DIST_GPL_SQL_SQL_HINTS_YY_H_INCLUDED +# define YY_HINT_PARSER_EXPORT_HOME2_PB2_BUILD_SB_2_33647514_1555162505_73_DIST_GPL_SQL_SQL_HINTS_YY_H_INCLUDED /* Debug traces. */ #ifndef YYDEBUG # define YYDEBUG 0 @@ -101,4 +101,4 @@ int HINT_PARSER_parse (class THD *thd, class Hint_scanner *scanner, class PT_hint_list **ret); -#endif /* !YY_HINT_PARSER_EXPORT_HOME2_PB2_BUILD_SB_1_32013685_1545388829_14_DIST_GPL_SQL_SQL_HINTS_YY_H_INCLUDED */ +#endif /* !YY_HINT_PARSER_EXPORT_HOME2_PB2_BUILD_SB_2_33647514_1555162505_73_DIST_GPL_SQL_SQL_HINTS_YY_H_INCLUDED */ diff -Nru mysql-5.7-5.7.25/sql/sql_resolver.cc mysql-5.7-5.7.26/sql/sql_resolver.cc --- mysql-5.7-5.7.25/sql/sql_resolver.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/sql/sql_resolver.cc 2019-04-13 13:32:15.000000000 +0000 @@ -362,8 +362,15 @@ sj_candidates= NULL; + /* + When reaching the top-most query block, or the next-to-top query block for + the SQL command SET and for SP instructions (indicated with SQLCOM_END), + apply local transformations to this query block and all underlying query + blocks. + */ if (outer_select() == NULL || - (parent_lex->sql_command == SQLCOM_SET_OPTION && + ((parent_lex->sql_command == SQLCOM_SET_OPTION || + parent_lex->sql_command == SQLCOM_END) && outer_select()->outer_select() == NULL)) { /* diff -Nru mysql-5.7-5.7.25/sql/sql_rewrite.cc mysql-5.7-5.7.26/sql/sql_rewrite.cc --- mysql-5.7-5.7.25/sql/sql_rewrite.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/sql/sql_rewrite.cc 2019-04-13 13:32:15.000000000 +0000 @@ -233,7 +233,7 @@ cols.append(STRING_WITH_LEN(", ")); else comma_inner= TRUE; - cols.append(column->column.ptr(),column->column.length()); + append_identifier(thd, &cols, column->column.ptr(), column->column.length()); } } cols.append(STRING_WITH_LEN(")")); diff -Nru mysql-5.7-5.7.25/sql/sql_yacc.cc mysql-5.7-5.7.26/sql/sql_yacc.cc --- mysql-5.7-5.7.25/sql/sql_yacc.cc 2018-12-21 10:52:32.000000000 +0000 +++ mysql-5.7-5.7.26/sql/sql_yacc.cc 2019-04-13 13:47:04.000000000 +0000 @@ -68,7 +68,7 @@ /* Copy the first part of user declarations. */ -#line 24 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:339 */ +#line 24 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:339 */ /* Note: YYTHD is passed as an argument to yyparse(), and subsequently to yylex(). @@ -495,7 +495,7 @@ #include "parse_tree_items.h" -#line 499 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:339 */ +#line 499 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:339 */ # ifndef YY_NULLPTR # if defined __cplusplus && 201103L <= __cplusplus @@ -515,8 +515,8 @@ /* In a future release of Bison, this section will be replaced by #include "sql_yacc.h". */ -#ifndef YY_MYSQL_EXPORT_HOME2_PB2_BUILD_SB_1_32013685_1545388829_14_DIST_GPL_SQL_SQL_YACC_H_INCLUDED -# define YY_MYSQL_EXPORT_HOME2_PB2_BUILD_SB_1_32013685_1545388829_14_DIST_GPL_SQL_SQL_YACC_H_INCLUDED +#ifndef YY_MYSQL_EXPORT_HOME2_PB2_BUILD_SB_2_33647514_1555162505_73_DIST_GPL_SQL_SQL_YACC_H_INCLUDED +# define YY_MYSQL_EXPORT_HOME2_PB2_BUILD_SB_2_33647514_1555162505_73_DIST_GPL_SQL_SQL_YACC_H_INCLUDED /* Debug traces. */ #ifndef YYDEBUG # define YYDEBUG 0 @@ -1858,11 +1858,11 @@ int MYSQLparse (class THD *YYTHD); -#endif /* !YY_MYSQL_EXPORT_HOME2_PB2_BUILD_SB_1_32013685_1545388829_14_DIST_GPL_SQL_SQL_YACC_H_INCLUDED */ +#endif /* !YY_MYSQL_EXPORT_HOME2_PB2_BUILD_SB_2_33647514_1555162505_73_DIST_GPL_SQL_SQL_YACC_H_INCLUDED */ /* Copy the second part of user declarations. */ -#line 1866 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:358 */ +#line 1866 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:358 */ #ifdef short # undef short @@ -18846,7 +18846,7 @@ switch (yyn) { case 2: -#line 1601 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1601 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; if (!thd->bootstrap && @@ -18858,11 +18858,11 @@ thd->lex->sql_command= SQLCOM_EMPTY_QUERY; YYLIP->found_semicolon= NULL; } -#line 18862 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 18862 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 3: -#line 1613 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1613 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex_input_stream *lip = YYLIP; @@ -18885,79 +18885,79 @@ lip->found_semicolon= NULL; } } -#line 18889 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 18889 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 5: -#line 1638 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1638 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /* Single query, not terminated. */ YYLIP->found_semicolon= NULL; } -#line 18898 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 18898 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 20: -#line 1666 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1666 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { MAKE_CMD((yyvsp[0].statement)); } -#line 18904 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 18904 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 22: -#line 1668 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1668 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { CONTEXTUALIZE((yyvsp[0].select)); } -#line 18910 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 18910 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 31: -#line 1677 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1677 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { MAKE_CMD((yyvsp[0].statement)); } -#line 18916 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 18916 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 46: -#line 1692 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1692 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { MAKE_CMD((yyvsp[0].statement)); } -#line 18922 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 18922 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 52: -#line 1698 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1698 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { CONTEXTUALIZE((yyvsp[0].select)); } -#line 18928 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 18928 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 53: -#line 1699 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1699 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { CONTEXTUALIZE((yyvsp[0].set)); } -#line 18934 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 18934 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 56: -#line 1702 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1702 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { MAKE_CMD((yyvsp[0].statement)); } -#line 18940 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 18940 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 62: -#line 1708 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1708 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { MAKE_CMD((yyvsp[0].statement)); } -#line 18946 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 18946 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 65: -#line 1715 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1715 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= thd->lex; lex->sql_command= SQLCOM_DEALLOCATE_PREPARE; lex->prepared_stmt_name= to_lex_cstring((yyvsp[0].lex_str)); } -#line 18957 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 18957 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 68: -#line 1730 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1730 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= thd->lex; @@ -18974,61 +18974,61 @@ */ lex->contains_plaintext_password= true; } -#line 18978 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 18978 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 69: -#line 1750 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1750 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= thd->lex; lex->prepared_stmt_code= (yyvsp[0].lex_str); lex->prepared_stmt_code_is_varref= FALSE; } -#line 18989 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 18989 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 70: -#line 1757 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1757 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= thd->lex; lex->prepared_stmt_code= (yyvsp[0].lex_str); lex->prepared_stmt_code_is_varref= TRUE; } -#line 19000 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19000 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 71: -#line 1767 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1767 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= thd->lex; lex->sql_command= SQLCOM_EXECUTE; lex->prepared_stmt_name= to_lex_cstring((yyvsp[0].lex_str)); } -#line 19011 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19011 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 72: -#line 1774 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1774 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 19017 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19017 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 77: -#line 1789 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1789 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; LEX_STRING *lexstr= (LEX_STRING*)sql_memdup(&(yyvsp[0].lex_str), sizeof(LEX_STRING)); if (!lexstr || lex->prepared_stmt_params.push_back(lexstr)) MYSQL_YYABORT; } -#line 19028 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19028 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 78: -#line 1801 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1801 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (Lex->sphead) { @@ -19036,21 +19036,21 @@ MYSQL_YYABORT; } } -#line 19040 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19040 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 79: -#line 1809 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1809 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->sql_command= SQLCOM_HELP; lex->help_arg= (yyvsp[0].lex_str).str; } -#line 19050 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19050 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 80: -#line 1820 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1820 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex = Lex; lex->sql_command = SQLCOM_CHANGE_MASTER; @@ -19061,17 +19061,17 @@ DBUG_ASSERT(Lex->mi.repl_ignore_server_ids.empty()); lex->mi.set_unspecified(); } -#line 19065 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19065 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 81: -#line 1831 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1831 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 19071 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19071 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 82: -#line 1833 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1833 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX* lex= thd->lex; @@ -19081,72 +19081,72 @@ if (lex->m_sql_cmd == NULL) MYSQL_YYABORT; } -#line 19085 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19085 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 83: -#line 1843 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1843 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 19091 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19091 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 86: -#line 1852 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1852 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Sql_cmd_change_repl_filter * filter_sql_cmd= (Sql_cmd_change_repl_filter*) Lex->m_sql_cmd; DBUG_ASSERT(filter_sql_cmd); filter_sql_cmd->set_filter_value((yyvsp[0].item_list), OPT_REPLICATE_DO_DB); } -#line 19102 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19102 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 87: -#line 1859 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1859 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Sql_cmd_change_repl_filter * filter_sql_cmd= (Sql_cmd_change_repl_filter*) Lex->m_sql_cmd; DBUG_ASSERT(filter_sql_cmd); filter_sql_cmd->set_filter_value((yyvsp[0].item_list), OPT_REPLICATE_IGNORE_DB); } -#line 19113 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19113 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 88: -#line 1866 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1866 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Sql_cmd_change_repl_filter * filter_sql_cmd= (Sql_cmd_change_repl_filter*) Lex->m_sql_cmd; DBUG_ASSERT(filter_sql_cmd); filter_sql_cmd->set_filter_value((yyvsp[0].item_list), OPT_REPLICATE_DO_TABLE); } -#line 19124 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19124 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 89: -#line 1873 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1873 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Sql_cmd_change_repl_filter * filter_sql_cmd= (Sql_cmd_change_repl_filter*) Lex->m_sql_cmd; DBUG_ASSERT(filter_sql_cmd); filter_sql_cmd->set_filter_value((yyvsp[0].item_list), OPT_REPLICATE_IGNORE_TABLE); } -#line 19135 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19135 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 90: -#line 1880 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1880 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Sql_cmd_change_repl_filter * filter_sql_cmd= (Sql_cmd_change_repl_filter*) Lex->m_sql_cmd; DBUG_ASSERT(filter_sql_cmd); filter_sql_cmd->set_filter_value((yyvsp[0].item_list), OPT_REPLICATE_WILD_DO_TABLE); } -#line 19146 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19146 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 91: -#line 1887 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1887 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Sql_cmd_change_repl_filter * filter_sql_cmd= (Sql_cmd_change_repl_filter*) Lex->m_sql_cmd; @@ -19154,60 +19154,60 @@ filter_sql_cmd->set_filter_value((yyvsp[0].item_list), OPT_REPLICATE_WILD_IGNORE_TABLE); } -#line 19158 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19158 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 92: -#line 1895 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1895 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Sql_cmd_change_repl_filter * filter_sql_cmd= (Sql_cmd_change_repl_filter*) Lex->m_sql_cmd; DBUG_ASSERT(filter_sql_cmd); filter_sql_cmd->set_filter_value((yyvsp[0].item_list), OPT_REPLICATE_REWRITE_DB); } -#line 19169 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19169 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 93: -#line 1904 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1904 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item_list)= new (YYTHD->mem_root) List; if ((yyval.item_list) == NULL) MYSQL_YYABORT; } -#line 19179 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19179 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 94: -#line 1910 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1910 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item_list)= (yyvsp[-1].item_list); } -#line 19187 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19187 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 95: -#line 1917 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1917 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item_list)= new (YYTHD->mem_root) List; if ((yyval.item_list) == NULL) MYSQL_YYABORT; (yyval.item_list)->push_back((yyvsp[0].item)); } -#line 19198 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19198 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 96: -#line 1924 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1924 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyvsp[-2].item_list)->push_back((yyvsp[0].item)); (yyval.item_list)= (yyvsp[-2].item_list); } -#line 19207 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19207 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 97: -#line 1932 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1932 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; Item *db_item= new (thd->mem_root) Item_string((yyvsp[0].lex_str).str, @@ -19215,29 +19215,29 @@ thd->charset()); (yyval.item)= db_item; } -#line 19219 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19219 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 98: -#line 1942 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1942 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item_list)= new (YYTHD->mem_root) List; if ((yyval.item_list) == NULL) MYSQL_YYABORT; } -#line 19229 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19229 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 99: -#line 1948 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1948 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item_list)= (yyvsp[-1].item_list); } -#line 19237 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19237 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 100: -#line 1954 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1954 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item_list)= new (YYTHD->mem_root) List; if ((yyval.item_list) == NULL) @@ -19245,59 +19245,59 @@ (yyval.item_list)->push_back((yyvsp[-3].item)); (yyval.item_list)->push_back((yyvsp[-1].item)); } -#line 19249 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19249 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 101: -#line 1962 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1962 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyvsp[-6].item_list)->push_back((yyvsp[-3].item)); (yyvsp[-6].item_list)->push_back((yyvsp[-1].item)); (yyval.item_list)= (yyvsp[-6].item_list); } -#line 19259 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19259 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 102: -#line 1970 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1970 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item_list)= new (YYTHD->mem_root) List; if ((yyval.item_list) == NULL) MYSQL_YYABORT; } -#line 19269 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19269 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 103: -#line 1976 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1976 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item_list)= (yyvsp[-1].item_list); } -#line 19277 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19277 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 104: -#line 1983 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1983 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item_list)= new (YYTHD->mem_root) List; if ((yyval.item_list) == NULL) MYSQL_YYABORT; (yyval.item_list)->push_back((yyvsp[0].item)); } -#line 19288 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19288 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 105: -#line 1990 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1990 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyvsp[-2].item_list)->push_back((yyvsp[0].item)); (yyval.item_list)= (yyvsp[-2].item_list); } -#line 19297 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19297 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 106: -#line 1998 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 1998 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; Item_string *table_item= new (thd->mem_root) Item_string((yyvsp[-2].lex_str).str, @@ -19307,49 +19307,49 @@ table_item->append((yyvsp[0].lex_str).str, (yyvsp[0].lex_str).length); (yyval.item)= table_item; } -#line 19311 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19311 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 107: -#line 2011 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2011 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item_list)= new (YYTHD->mem_root) List; if ((yyval.item_list) == NULL) MYSQL_YYABORT; } -#line 19321 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19321 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 108: -#line 2017 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2017 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item_list)= (yyvsp[-1].item_list); } -#line 19329 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19329 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 109: -#line 2024 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2024 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item_list)= new (YYTHD->mem_root) List; if ((yyval.item_list) == NULL) MYSQL_YYABORT; (yyval.item_list)->push_back((yyvsp[0].item)); } -#line 19340 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19340 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 110: -#line 2031 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2031 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyvsp[-2].item_list)->push_back((yyvsp[0].item)); (yyval.item_list)= (yyvsp[-2].item_list); } -#line 19349 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19349 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 111: -#line 2039 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2039 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; Item *string_item= new (thd->mem_root) Item_string((yyvsp[0].lex_str).str, @@ -19357,35 +19357,35 @@ thd->charset()); (yyval.item)= string_item; } -#line 19361 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19361 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 114: -#line 2055 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2055 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->mi.host = (yyvsp[0].lex_str).str; } -#line 19369 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19369 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 115: -#line 2059 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2059 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->mi.bind_addr = (yyvsp[0].lex_str).str; } -#line 19377 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19377 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 116: -#line 2063 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2063 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->mi.user = (yyvsp[0].lex_str).str; } -#line 19385 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19385 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 117: -#line 2067 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2067 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->mi.password = (yyvsp[0].lex_str).str; if (strlen((yyvsp[0].lex_str).str) > 32) @@ -19395,36 +19395,36 @@ } Lex->contains_plaintext_password= true; } -#line 19399 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19399 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 118: -#line 2077 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2077 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->mi.port = (yyvsp[0].ulong_num); } -#line 19407 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19407 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 119: -#line 2081 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2081 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->mi.connect_retry = (yyvsp[0].ulong_num); } -#line 19415 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19415 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 120: -#line 2085 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2085 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->mi.retry_count= (yyvsp[0].ulong_num); Lex->mi.retry_count_opt= LEX_MASTER_INFO::LEX_MI_ENABLE; } -#line 19424 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19424 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 121: -#line 2090 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2090 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if ((yyvsp[0].ulong_num) > MASTER_DELAY_MAX) { @@ -19435,93 +19435,93 @@ else Lex->mi.sql_delay = (yyvsp[0].ulong_num); } -#line 19439 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19439 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 122: -#line 2101 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2101 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->mi.ssl= (yyvsp[0].ulong_num) ? LEX_MASTER_INFO::LEX_MI_ENABLE : LEX_MASTER_INFO::LEX_MI_DISABLE; } -#line 19448 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19448 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 123: -#line 2106 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2106 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->mi.ssl_ca= (yyvsp[0].lex_str).str; } -#line 19456 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19456 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 124: -#line 2110 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2110 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->mi.ssl_capath= (yyvsp[0].lex_str).str; } -#line 19464 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19464 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 125: -#line 2114 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2114 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->mi.tls_version= (yyvsp[0].lex_str).str; } -#line 19472 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19472 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 126: -#line 2118 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2118 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->mi.ssl_cert= (yyvsp[0].lex_str).str; } -#line 19480 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19480 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 127: -#line 2122 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2122 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->mi.ssl_cipher= (yyvsp[0].lex_str).str; } -#line 19488 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19488 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 128: -#line 2126 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2126 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->mi.ssl_key= (yyvsp[0].lex_str).str; } -#line 19496 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19496 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 129: -#line 2130 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2130 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->mi.ssl_verify_server_cert= (yyvsp[0].ulong_num) ? LEX_MASTER_INFO::LEX_MI_ENABLE : LEX_MASTER_INFO::LEX_MI_DISABLE; } -#line 19505 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19505 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 130: -#line 2135 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2135 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->mi.ssl_crl= (yyvsp[0].lex_str).str; } -#line 19513 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19513 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 131: -#line 2139 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2139 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->mi.ssl_crlpath= (yyvsp[0].lex_str).str; } -#line 19521 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19521 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 132: -#line 2144 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2144 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { ITEMIZE((yyvsp[0].item), &(yyvsp[0].item)); @@ -19554,45 +19554,45 @@ } Lex->mi.heartbeat_opt= LEX_MASTER_INFO::LEX_MI_ENABLE; } -#line 19558 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19558 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 133: -#line 2177 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2177 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->mi.repl_ignore_server_ids_opt= LEX_MASTER_INFO::LEX_MI_ENABLE; } -#line 19566 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19566 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 134: -#line 2182 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2182 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->mi.auto_position= (yyvsp[0].ulong_num) ? LEX_MASTER_INFO::LEX_MI_ENABLE : LEX_MASTER_INFO::LEX_MI_DISABLE; } -#line 19576 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19576 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 139: -#line 2199 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2199 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->mi.repl_ignore_server_ids.push_back((yyvsp[0].ulong_num)); } -#line 19584 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19584 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 140: -#line 2205 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2205 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->mi.log_file_name = (yyvsp[0].lex_str).str; } -#line 19592 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19592 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 141: -#line 2209 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2209 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->mi.pos = (yyvsp[0].ulonglong_number); /* @@ -19608,39 +19608,39 @@ */ Lex->mi.pos = max(BIN_LOG_HEADER_SIZE, Lex->mi.pos); } -#line 19612 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19612 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 142: -#line 2225 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2225 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->mi.relay_log_name = (yyvsp[0].lex_str).str; } -#line 19620 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19620 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 143: -#line 2229 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2229 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->mi.relay_log_pos = (yyvsp[0].ulong_num); /* Adjust if < BIN_LOG_HEADER_SIZE (same comment as Lex->mi.pos) */ Lex->mi.relay_log_pos = max(BIN_LOG_HEADER_SIZE, Lex->mi.relay_log_pos); } -#line 19631 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19631 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 144: -#line 2239 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2239 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->mi.channel= ""; Lex->mi.for_channel= false; } -#line 19640 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19640 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 145: -#line 2244 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2244 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /* channel names are case insensitive. This means, even the results @@ -19652,11 +19652,11 @@ Lex->mi.channel= (yyvsp[0].lex_str).str; Lex->mi.for_channel= true; } -#line 19656 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19656 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 146: -#line 2261 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2261 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= thd->lex; @@ -19682,11 +19682,11 @@ lex->name.length= 0; lex->create_last_non_select_table= lex->last_table(); } -#line 19686 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19686 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 147: -#line 2287 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2287 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= thd->lex; @@ -19705,145 +19705,145 @@ } create_table_set_open_action_and_adjust_tables(lex); } -#line 19709 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19709 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 148: -#line 2306 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2306 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (add_create_index_prepare(Lex, (yyvsp[0].table))) MYSQL_YYABORT; } -#line 19718 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19718 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 149: -#line 2311 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2311 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (add_create_index(Lex, (yyvsp[-10].key_type), (yyvsp[-8].lex_str))) MYSQL_YYABORT; } -#line 19727 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19727 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 150: -#line 2315 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2315 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { } -#line 19733 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19733 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 151: -#line 2318 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2318 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (add_create_index_prepare(Lex, (yyvsp[0].table))) MYSQL_YYABORT; } -#line 19742 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19742 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 152: -#line 2323 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2323 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (add_create_index(Lex, (yyvsp[-10].key_type), (yyvsp[-8].lex_str))) MYSQL_YYABORT; } -#line 19751 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19751 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 153: -#line 2327 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2327 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { } -#line 19757 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19757 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 154: -#line 2330 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2330 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (add_create_index_prepare(Lex, (yyvsp[0].table))) MYSQL_YYABORT; } -#line 19766 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19766 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 155: -#line 2335 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2335 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (add_create_index(Lex, (yyvsp[-10].key_type), (yyvsp[-8].lex_str))) MYSQL_YYABORT; } -#line 19775 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19775 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 156: -#line 2339 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2339 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { } -#line 19781 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19781 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 157: -#line 2341 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2341 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_info.default_table_charset= NULL; Lex->create_info.used_fields= 0; } -#line 19790 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19790 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 158: -#line 2346 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2346 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->sql_command=SQLCOM_CREATE_DB; lex->name= (yyvsp[-2].lex_str); lex->create_info.options=(yyvsp[-3].num); } -#line 19801 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19801 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 159: -#line 2353 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2353 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_view_mode= VIEW_CREATE_NEW; Lex->create_view_algorithm= VIEW_ALGORITHM_UNDEFINED; Lex->create_view_suid= TRUE; } -#line 19811 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19811 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 160: -#line 2359 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2359 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 19817 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19817 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 161: -#line 2362 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2362 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->sql_command = SQLCOM_CREATE_USER; lex->create_info.options=(yyvsp[-5].num); } -#line 19827 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19827 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 162: -#line 2368 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2368 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->alter_tablespace_info->ts_cmd_type= CREATE_LOGFILE_GROUP; } -#line 19835 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19835 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 163: -#line 2372 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2372 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->alter_tablespace_info->ts_cmd_type= CREATE_TABLESPACE; } -#line 19843 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19843 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 164: -#line 2377 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2377 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->sql_command= SQLCOM_CREATE_SERVER; if ((yyvsp[-8].lex_str).length == 0) @@ -19856,68 +19856,68 @@ Lex->m_sql_cmd= new (YYTHD->mem_root) Sql_cmd_create_server(&Lex->server_options); } -#line 19860 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19860 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 167: -#line 2398 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2398 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->server_options.set_username((yyvsp[0].lex_str)); } -#line 19868 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19868 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 168: -#line 2402 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2402 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->server_options.set_host((yyvsp[0].lex_str)); } -#line 19876 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19876 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 169: -#line 2406 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2406 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->server_options.set_db((yyvsp[0].lex_str)); } -#line 19884 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19884 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 170: -#line 2410 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2410 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->server_options.set_owner((yyvsp[0].lex_str)); } -#line 19892 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19892 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 171: -#line 2414 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2414 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->server_options.set_password((yyvsp[0].lex_str)); Lex->contains_plaintext_password= true; } -#line 19901 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19901 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 172: -#line 2419 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2419 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->server_options.set_socket((yyvsp[0].lex_str)); } -#line 19909 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19909 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 173: -#line 2423 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2423 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->server_options.set_port((yyvsp[0].ulong_num)); } -#line 19917 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19917 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 174: -#line 2430 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2430 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex=Lex; @@ -19933,11 +19933,11 @@ lex->sql_command= SQLCOM_CREATE_EVENT; /* We need that for disallowing subqueries */ } -#line 19937 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19937 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 175: -#line 2450 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2450 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /* sql_command is set here because some rules in ev_sql_stmt @@ -19945,140 +19945,140 @@ */ Lex->sql_command= SQLCOM_CREATE_EVENT; } -#line 19949 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19949 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 176: -#line 2461 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2461 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { ITEMIZE((yyvsp[-1].item), &(yyvsp[-1].item)); Lex->event_parse_data->item_expression= (yyvsp[-1].item); Lex->event_parse_data->interval= (yyvsp[0].interval); } -#line 19960 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19960 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 178: -#line 2470 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2470 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { ITEMIZE((yyvsp[0].item), &(yyvsp[0].item)); Lex->event_parse_data->item_execute_at= (yyvsp[0].item); } -#line 19970 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19970 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 179: -#line 2478 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2478 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= 0; } -#line 19976 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19976 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 180: -#line 2480 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2480 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->event_parse_data->status= Event_parse_data::ENABLED; Lex->event_parse_data->status_changed= true; (yyval.num)= 1; } -#line 19986 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19986 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 181: -#line 2486 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2486 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->event_parse_data->status= Event_parse_data::SLAVESIDE_DISABLED; Lex->event_parse_data->status_changed= true; (yyval.num)= 1; } -#line 19996 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 19996 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 182: -#line 2492 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2492 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->event_parse_data->status= Event_parse_data::DISABLED; Lex->event_parse_data->status_changed= true; (yyval.num)= 1; } -#line 20006 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20006 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 183: -#line 2501 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2501 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Item *item= new (YYTHD->mem_root) Item_func_now_local(0); if (item == NULL) MYSQL_YYABORT; Lex->event_parse_data->item_starts= item; } -#line 20017 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20017 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 184: -#line 2508 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2508 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { ITEMIZE((yyvsp[0].item), &(yyvsp[0].item)); Lex->event_parse_data->item_starts= (yyvsp[0].item); } -#line 20027 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20027 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 186: -#line 2518 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2518 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { ITEMIZE((yyvsp[0].item), &(yyvsp[0].item)); Lex->event_parse_data->item_ends= (yyvsp[0].item); } -#line 20037 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20037 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 187: -#line 2526 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2526 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= 0; } -#line 20043 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20043 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 189: -#line 2532 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2532 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->event_parse_data->on_completion= Event_parse_data::ON_COMPLETION_PRESERVE; (yyval.num)= 1; } -#line 20053 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20053 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 190: -#line 2538 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2538 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->event_parse_data->on_completion= Event_parse_data::ON_COMPLETION_DROP; (yyval.num)= 1; } -#line 20063 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20063 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 191: -#line 2546 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2546 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= 0; } -#line 20069 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20069 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 192: -#line 2548 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2548 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->comment= Lex->event_parse_data->comment= (yyvsp[0].lex_str); (yyval.num)= 1; } -#line 20078 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20078 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 193: -#line 2555 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2555 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= thd->lex; @@ -20124,11 +20124,11 @@ */ sp->set_body_start(thd, (yylsp[0]).cpp.end); } -#line 20128 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20128 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 194: -#line 2601 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2601 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= thd->lex; @@ -20138,11 +20138,11 @@ lex->sp_chistics.suid= SP_IS_SUID; //always the definer! lex->event_parse_data->body_changed= TRUE; } -#line 20142 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20142 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 208: -#line 2630 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2630 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->users_list.empty(); @@ -20156,11 +20156,11 @@ lex->alter_password.account_locked= false; memset(&(lex->mqh), 0, sizeof(lex->mqh)); } -#line 20160 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20160 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 209: -#line 2647 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2647 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->alter_password.update_password_expired_fields= false; @@ -20168,11 +20168,11 @@ lex->alter_password.use_default_password_lifetime= true; lex->alter_password.expire_after_days= 0; } -#line 20172 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20172 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 210: -#line 2658 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2658 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (!(yyvsp[-2].lex_str).str || (check_and_convert_db_name(&(yyvsp[-2].lex_str), FALSE) != IDENT_NAME_OK)) @@ -20186,11 +20186,11 @@ MYSQL_YYABORT; (yyval.spname)->init_qname(YYTHD); } -#line 20190 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20190 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 211: -#line 2672 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2672 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= thd->lex; @@ -20206,111 +20206,111 @@ MYSQL_YYABORT; (yyval.spname)->init_qname(thd); } -#line 20210 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20210 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 212: -#line 2690 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2690 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 20216 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20216 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 213: -#line 2691 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2691 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 20222 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20222 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 214: -#line 2695 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2695 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 20228 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20228 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 215: -#line 2696 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2696 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 20234 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20234 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 216: -#line 2702 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2702 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->sp_chistics.comment= (yyvsp[0].lex_str); } -#line 20240 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20240 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 217: -#line 2704 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2704 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /* Just parse it, we only have one language for now. */ } -#line 20246 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20246 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 218: -#line 2706 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2706 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->sp_chistics.daccess= SP_NO_SQL; } -#line 20252 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20252 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 219: -#line 2708 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2708 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->sp_chistics.daccess= SP_CONTAINS_SQL; } -#line 20258 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20258 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 220: -#line 2710 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2710 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->sp_chistics.daccess= SP_READS_SQL_DATA; } -#line 20264 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20264 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 221: -#line 2712 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2712 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->sp_chistics.daccess= SP_MODIFIES_SQL_DATA; } -#line 20270 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20270 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 222: -#line 2714 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2714 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 20276 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20276 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 223: -#line 2719 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2719 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { } -#line 20282 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20282 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 224: -#line 2720 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2720 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->sp_chistics.detistic= TRUE; } -#line 20288 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20288 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 225: -#line 2721 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2721 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->sp_chistics.detistic= FALSE; } -#line 20294 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20294 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 226: -#line 2726 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2726 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->sp_chistics.suid= SP_IS_SUID; } -#line 20302 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20302 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 227: -#line 2730 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2730 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->sp_chistics.suid= SP_IS_NOT_SUID; } -#line 20310 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20310 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 228: -#line 2737 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2737 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex = Lex; @@ -20319,37 +20319,37 @@ lex->call_value_list.empty(); sp_add_used_routine(lex, YYTHD, (yyvsp[0].spname), SP_TYPE_PROCEDURE); } -#line 20323 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20323 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 229: -#line 2745 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2745 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 20329 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20329 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 234: -#line 2761 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2761 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { ITEMIZE((yyvsp[0].item), &(yyvsp[0].item)); Lex->call_value_list.push_back((yyvsp[0].item)); } -#line 20339 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20339 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 235: -#line 2767 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2767 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { ITEMIZE((yyvsp[0].item), &(yyvsp[0].item)); Lex->call_value_list.push_back((yyvsp[0].item)); } -#line 20349 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20349 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 240: -#line 2787 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2787 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; @@ -20366,11 +20366,11 @@ lex->interval_list.empty(); lex->uint_geom_type= 0; } -#line 20370 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20370 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 241: -#line 2807 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2807 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= thd->lex; @@ -20397,11 +20397,11 @@ spvar->field_def.field_name= spvar->name.str; spvar->field_def.pack_flag |= FIELDFLAG_MAYBE_NULL; } -#line 20401 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20401 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 246: -#line 2848 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2848 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= thd->lex; @@ -20427,55 +20427,55 @@ spvar->field_def.field_name= spvar->name.str; spvar->field_def.pack_flag |= FIELDFLAG_MAYBE_NULL; } -#line 20431 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20431 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 247: -#line 2876 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2876 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= sp_variable::MODE_IN; } -#line 20437 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20437 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 248: -#line 2877 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2877 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= sp_variable::MODE_IN; } -#line 20443 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20443 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 249: -#line 2878 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2878 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= sp_variable::MODE_OUT; } -#line 20449 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20449 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 250: -#line 2879 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2879 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= sp_variable::MODE_INOUT; } -#line 20455 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20455 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 251: -#line 2883 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2883 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 20461 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20461 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 253: -#line 2888 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2888 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 20467 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20467 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 255: -#line 2894 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2894 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.spblock).vars= (yyval.spblock).conds= (yyval.spblock).hndlrs= (yyval.spblock).curs= 0; } -#line 20475 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20475 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 256: -#line 2898 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2898 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /* We check for declarations out of (standard) order this way because letting the grammar rules reflect it caused tricky @@ -20498,11 +20498,11 @@ (yyval.spblock).hndlrs= (yyvsp[-2].spblock).hndlrs + (yyvsp[-1].spblock).hndlrs; (yyval.spblock).curs= (yyvsp[-2].spblock).curs + (yyvsp[-1].spblock).curs; } -#line 20502 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20502 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 257: -#line 2925 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2925 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /*$3*/ THD *thd= YYTHD; LEX *lex= thd->lex; @@ -20512,11 +20512,11 @@ sp->reset_lex(thd); pctx->declare_var_boundary((yyvsp[0].num)); } -#line 20516 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20516 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 258: -#line 2936 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 2936 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /*$6*/ THD *thd= YYTHD; LEX *lex= thd->lex; @@ -20589,11 +20589,11 @@ (yyval.spblock).vars= (yyvsp[-3].num); (yyval.spblock).conds= (yyval.spblock).hndlrs= (yyval.spblock).curs= 0; } -#line 20593 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20593 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 259: -#line 3009 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3009 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= thd->lex; @@ -20610,11 +20610,11 @@ (yyval.spblock).vars= (yyval.spblock).hndlrs= (yyval.spblock).curs= 0; (yyval.spblock).conds= 1; } -#line 20614 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20614 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 260: -#line 3026 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3026 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= thd->lex; @@ -20656,11 +20656,11 @@ lex->keep_diagnostics= DA_KEEP_DIAGNOSTICS; // DECL HANDLER FOR } -#line 20660 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20660 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 261: -#line 3068 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3068 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= Lex; @@ -20694,11 +20694,11 @@ (yyval.spblock).vars= (yyval.spblock).conds= (yyval.spblock).curs= 0; (yyval.spblock).hndlrs= 1; } -#line 20698 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20698 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 262: -#line 3105 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3105 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /*$5*/ THD *thd= YYTHD; LEX *lex= Lex; @@ -20707,11 +20707,11 @@ sp->reset_lex(thd); sp->m_parser_data.set_current_stmt_start_ptr((yylsp[0]).raw.end); } -#line 20711 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20711 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 263: -#line 3114 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3114 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /*$7*/ CONTEXTUALIZE((yyvsp[0].select)); @@ -20774,35 +20774,35 @@ (yyval.spblock).vars= (yyval.spblock).conds= (yyval.spblock).hndlrs= 0; (yyval.spblock).curs= 1; } -#line 20778 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20778 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 264: -#line 3179 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3179 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= sp_handler::EXIT; } -#line 20784 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20784 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 265: -#line 3180 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3180 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= sp_handler::CONTINUE; } -#line 20790 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20790 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 266: -#line 3186 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3186 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= 1; } -#line 20796 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20796 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 267: -#line 3188 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3188 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)+= 1; } -#line 20802 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20802 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 268: -#line 3193 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3193 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; sp_head *sp= lex->sphead; @@ -20822,11 +20822,11 @@ i->add_condition((yyvsp[0].spcondvalue)); } } -#line 20826 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20826 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 269: -#line 3216 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3216 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /* mysql errno */ if ((yyvsp[0].ulong_num) == 0) { @@ -20837,11 +20837,11 @@ if ((yyval.spcondvalue) == NULL) MYSQL_YYABORT; } -#line 20841 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20841 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 271: -#line 3231 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3231 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /* SQLSTATE */ /* @@ -20860,31 +20860,31 @@ if ((yyval.spcondvalue) == NULL) MYSQL_YYABORT; } -#line 20864 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20864 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 272: -#line 3252 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3252 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 20870 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20870 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 273: -#line 3253 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3253 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 20876 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20876 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 274: -#line 3258 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3258 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.spcondvalue)= (yyvsp[0].spcondvalue); } -#line 20884 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20884 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 275: -#line 3262 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3262 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; sp_pcontext *pctx= lex->get_sp_current_parsing_ctx(); @@ -20897,41 +20897,41 @@ MYSQL_YYABORT; } } -#line 20901 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20901 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 276: -#line 3275 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3275 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.spcondvalue)= new (YYTHD->mem_root) sp_condition_value(sp_condition_value::WARNING); if ((yyval.spcondvalue) == NULL) MYSQL_YYABORT; } -#line 20911 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20911 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 277: -#line 3281 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3281 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.spcondvalue)= new (YYTHD->mem_root) sp_condition_value(sp_condition_value::NOT_FOUND); if ((yyval.spcondvalue) == NULL) MYSQL_YYABORT; } -#line 20921 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20921 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 278: -#line 3287 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3287 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.spcondvalue)= new (YYTHD->mem_root) sp_condition_value(sp_condition_value::EXCEPTION); if ((yyval.spcondvalue) == NULL) MYSQL_YYABORT; } -#line 20931 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20931 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 279: -#line 3296 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3296 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= thd->lex; @@ -20941,11 +20941,11 @@ if (lex->m_sql_cmd == NULL) MYSQL_YYABORT; } -#line 20945 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20945 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 280: -#line 3309 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3309 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; sp_pcontext *pctx= lex->get_sp_current_parsing_ctx(); @@ -20971,67 +20971,67 @@ } (yyval.spcondvalue)= cond; } -#line 20975 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20975 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 281: -#line 3335 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3335 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.spcondvalue)= (yyvsp[0].spcondvalue); } -#line 20981 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20981 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 282: -#line 3340 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3340 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.spcondvalue)= NULL; } -#line 20987 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20987 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 283: -#line 3342 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3342 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.spcondvalue)= (yyvsp[0].spcondvalue); } -#line 20993 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20993 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 284: -#line 3347 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3347 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.signal_item_list)= new (YYTHD->mem_root) Set_signal_information(); } -#line 20999 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 20999 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 285: -#line 3349 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3349 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.signal_item_list)= (yyvsp[0].signal_item_list); } -#line 21005 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21005 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 286: -#line 3354 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3354 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.signal_item_list)= new (YYTHD->mem_root) Set_signal_information(); if ((yyval.signal_item_list)->set_item((yyvsp[-2].da_condition_item_name), (yyvsp[0].item))) MYSQL_YYABORT; } -#line 21015 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21015 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 287: -#line 3361 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3361 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.signal_item_list)= (yyvsp[-4].signal_item_list); if ((yyval.signal_item_list)->set_item((yyvsp[-2].da_condition_item_name), (yyvsp[0].item))) MYSQL_YYABORT; } -#line 21025 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21025 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 288: -#line 3373 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3373 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { ITEMIZE((yyvsp[0].item), &(yyval.item)); } -#line 21031 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21031 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 289: -#line 3375 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3375 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { ITEMIZE((yyvsp[0].item), &(yyvsp[0].item)); @@ -21051,89 +21051,89 @@ } (yyval.item)= (yyvsp[0].item); } -#line 21055 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21055 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 290: -#line 3395 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3395 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { ITEMIZE((yyvsp[0].item), &(yyval.item)); } -#line 21061 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21061 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 291: -#line 3401 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3401 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.da_condition_item_name)= CIN_CLASS_ORIGIN; } -#line 21067 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21067 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 292: -#line 3403 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3403 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.da_condition_item_name)= CIN_SUBCLASS_ORIGIN; } -#line 21073 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21073 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 293: -#line 3405 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3405 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.da_condition_item_name)= CIN_CONSTRAINT_CATALOG; } -#line 21079 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21079 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 294: -#line 3407 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3407 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.da_condition_item_name)= CIN_CONSTRAINT_SCHEMA; } -#line 21085 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21085 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 295: -#line 3409 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3409 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.da_condition_item_name)= CIN_CONSTRAINT_NAME; } -#line 21091 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21091 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 296: -#line 3411 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3411 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.da_condition_item_name)= CIN_CATALOG_NAME; } -#line 21097 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21097 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 297: -#line 3413 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3413 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.da_condition_item_name)= CIN_SCHEMA_NAME; } -#line 21103 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21103 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 298: -#line 3415 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3415 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.da_condition_item_name)= CIN_TABLE_NAME; } -#line 21109 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21109 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 299: -#line 3417 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3417 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.da_condition_item_name)= CIN_COLUMN_NAME; } -#line 21115 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21115 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 300: -#line 3419 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3419 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.da_condition_item_name)= CIN_CURSOR_NAME; } -#line 21121 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21121 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 301: -#line 3421 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3421 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.da_condition_item_name)= CIN_MESSAGE_TEXT; } -#line 21127 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21127 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 302: -#line 3423 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3423 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.da_condition_item_name)= CIN_MYSQL_ERRNO; } -#line 21133 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21133 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 303: -#line 3428 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3428 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= thd->lex; @@ -21144,11 +21144,11 @@ if (lex->m_sql_cmd == NULL) MYSQL_YYABORT; } -#line 21148 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21148 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 304: -#line 3442 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3442 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Diagnostics_information *info= (yyvsp[0].diag_info); @@ -21161,79 +21161,79 @@ if (Lex->m_sql_cmd == NULL) MYSQL_YYABORT; } -#line 21165 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21165 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 305: -#line 3458 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3458 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.diag_area)= Diagnostics_information::CURRENT_AREA; } -#line 21171 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21171 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 306: -#line 3460 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3460 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.diag_area)= Diagnostics_information::CURRENT_AREA; } -#line 21177 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21177 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 307: -#line 3462 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3462 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.diag_area)= Diagnostics_information::STACKED_AREA; } -#line 21183 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21183 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 308: -#line 3467 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3467 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.diag_info)= new (YYTHD->mem_root) Statement_information((yyvsp[0].stmt_info_list)); if ((yyval.diag_info) == NULL) MYSQL_YYABORT; } -#line 21193 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21193 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 309: -#line 3473 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3473 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.diag_info)= new (YYTHD->mem_root) Condition_information((yyvsp[-1].item), (yyvsp[0].cond_info_list)); if ((yyval.diag_info) == NULL) MYSQL_YYABORT; } -#line 21203 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21203 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 310: -#line 3482 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3482 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.stmt_info_list)= new (YYTHD->mem_root) List; if ((yyval.stmt_info_list) == NULL || (yyval.stmt_info_list)->push_back((yyvsp[0].stmt_info_item))) MYSQL_YYABORT; } -#line 21213 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21213 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 311: -#line 3488 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3488 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if ((yyvsp[-2].stmt_info_list)->push_back((yyvsp[0].stmt_info_item))) MYSQL_YYABORT; (yyval.stmt_info_list)= (yyvsp[-2].stmt_info_list); } -#line 21223 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21223 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 312: -#line 3497 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3497 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.stmt_info_item)= new (YYTHD->mem_root) Statement_information_item((yyvsp[0].stmt_info_item_name), (yyvsp[-2].item)); if ((yyval.stmt_info_item) == NULL) MYSQL_YYABORT; } -#line 21233 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21233 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 313: -#line 3505 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3505 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= thd->lex; @@ -21261,146 +21261,146 @@ if ((yyval.item) == NULL) MYSQL_YYABORT; } -#line 21265 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21265 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 314: -#line 3533 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3533 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_get_user_var((yyloc), (yyvsp[0].lex_str)); ITEMIZE((yyval.item), &(yyval.item)); } -#line 21274 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21274 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 315: -#line 3541 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3541 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.stmt_info_item_name)= Statement_information_item::NUMBER; } -#line 21280 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21280 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 316: -#line 3543 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3543 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.stmt_info_item_name)= Statement_information_item::ROW_COUNT; } -#line 21286 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21286 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 317: -#line 3552 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3552 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= (yyvsp[0].item); } -#line 21292 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21292 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 318: -#line 3557 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3557 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.cond_info_list)= new (YYTHD->mem_root) List; if ((yyval.cond_info_list) == NULL || (yyval.cond_info_list)->push_back((yyvsp[0].cond_info_item))) MYSQL_YYABORT; } -#line 21302 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21302 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 319: -#line 3563 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3563 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if ((yyvsp[-2].cond_info_list)->push_back((yyvsp[0].cond_info_item))) MYSQL_YYABORT; (yyval.cond_info_list)= (yyvsp[-2].cond_info_list); } -#line 21312 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21312 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 320: -#line 3572 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3572 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.cond_info_item)= new (YYTHD->mem_root) Condition_information_item((yyvsp[0].cond_info_item_name), (yyvsp[-2].item)); if ((yyval.cond_info_item) == NULL) MYSQL_YYABORT; } -#line 21322 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21322 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 321: -#line 3580 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3580 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.cond_info_item_name)= Condition_information_item::CLASS_ORIGIN; } -#line 21328 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21328 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 322: -#line 3582 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3582 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.cond_info_item_name)= Condition_information_item::SUBCLASS_ORIGIN; } -#line 21334 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21334 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 323: -#line 3584 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3584 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.cond_info_item_name)= Condition_information_item::CONSTRAINT_CATALOG; } -#line 21340 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21340 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 324: -#line 3586 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3586 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.cond_info_item_name)= Condition_information_item::CONSTRAINT_SCHEMA; } -#line 21346 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21346 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 325: -#line 3588 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3588 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.cond_info_item_name)= Condition_information_item::CONSTRAINT_NAME; } -#line 21352 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21352 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 326: -#line 3590 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3590 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.cond_info_item_name)= Condition_information_item::CATALOG_NAME; } -#line 21358 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21358 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 327: -#line 3592 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3592 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.cond_info_item_name)= Condition_information_item::SCHEMA_NAME; } -#line 21364 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21364 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 328: -#line 3594 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3594 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.cond_info_item_name)= Condition_information_item::TABLE_NAME; } -#line 21370 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21370 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 329: -#line 3596 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3596 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.cond_info_item_name)= Condition_information_item::COLUMN_NAME; } -#line 21376 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21376 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 330: -#line 3598 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3598 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.cond_info_item_name)= Condition_information_item::CURSOR_NAME; } -#line 21382 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21382 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 331: -#line 3600 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3600 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.cond_info_item_name)= Condition_information_item::MESSAGE_TEXT; } -#line 21388 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21388 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 332: -#line 3602 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3602 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.cond_info_item_name)= Condition_information_item::MYSQL_ERRNO; } -#line 21394 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21394 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 333: -#line 3604 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3604 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.cond_info_item_name)= Condition_information_item::RETURNED_SQLSTATE; } -#line 21400 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21400 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 334: -#line 3609 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3609 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /* NOTE: field definition is filled in sp_decl section. */ @@ -21420,11 +21420,11 @@ sp_variable::MODE_IN); (yyval.num)= 1; } -#line 21424 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21424 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 335: -#line 3629 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3629 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /* NOTE: field definition is filled in sp_decl section. */ @@ -21444,49 +21444,49 @@ sp_variable::MODE_IN); (yyval.num)= (yyvsp[-2].num) + 1; } -#line 21448 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21448 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 336: -#line 3652 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3652 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item) = NULL; } -#line 21454 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21454 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 337: -#line 3654 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3654 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->sphead->m_parser_data.push_expr_start_ptr((yylsp[0]).raw.end); } -#line 21460 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21460 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 338: -#line 3656 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3656 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { ITEMIZE((yyvsp[0].item), &(yyvsp[0].item)); (yyval.item) = (yyvsp[0].item); } -#line 21470 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21470 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 352: -#line 3681 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3681 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->sphead->m_parser_data.new_cont_backpatch(); } -#line 21476 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21476 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 353: -#line 3683 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3683 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { sp_head *sp= Lex->sphead; sp->m_parser_data.do_cont_backpatch(sp->instructions()); } -#line 21486 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21486 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 354: -#line 3691 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3691 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= thd->lex; @@ -21495,11 +21495,11 @@ sp->reset_lex(thd); sp->m_parser_data.set_current_stmt_start_ptr(yylloc.raw.start); } -#line 21499 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21499 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 355: -#line 3700 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3700 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= thd->lex; @@ -21543,11 +21543,11 @@ if (sp->restore_lex(thd)) MYSQL_YYABORT; } -#line 21547 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21547 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 356: -#line 3747 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3747 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /*$2*/ THD *thd= YYTHD; LEX *lex= thd->lex; @@ -21557,11 +21557,11 @@ sp->m_parser_data.push_expr_start_ptr((yylsp[0]).raw.end); } -#line 21561 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21561 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 357: -#line 3757 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3757 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /*$4*/ ITEMIZE((yyvsp[0].item), &(yyvsp[0].item)); @@ -21607,11 +21607,11 @@ MYSQL_YYABORT; } } -#line 21611 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21611 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 358: -#line 3805 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3805 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /* Unlabeled controls get a secret label. */ THD *thd= YYTHD; LEX *lex= thd->lex; @@ -21622,11 +21622,11 @@ EMPTY_STR, sp->instructions()); } -#line 21626 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21626 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 359: -#line 3816 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3816 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; sp_head *sp= lex->sphead; @@ -21635,11 +21635,11 @@ sp->m_parser_data.do_backpatch(pctx->pop_label(), sp->instructions()); } -#line 21639 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21639 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 360: -#line 3828 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3828 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= Lex; @@ -21695,11 +21695,11 @@ sp->add_instr(thd, i)) MYSQL_YYABORT; } -#line 21699 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21699 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 361: -#line 3887 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3887 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= Lex; @@ -21746,11 +21746,11 @@ if (!i || sp->add_instr(thd, i)) MYSQL_YYABORT; } -#line 21750 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21750 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 362: -#line 3937 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3937 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= Lex; @@ -21771,11 +21771,11 @@ if (!i || sp->add_instr(thd, i)) MYSQL_YYABORT; } -#line 21775 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21775 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 363: -#line 3961 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3961 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= Lex; @@ -21796,17 +21796,17 @@ if (!i || sp->add_instr(thd, i)) MYSQL_YYABORT; } -#line 21800 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21800 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 364: -#line 3982 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3982 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 21806 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21806 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 365: -#line 3987 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 3987 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= Lex; @@ -21827,11 +21827,11 @@ if (!i || sp->add_instr(thd, i)) MYSQL_YYABORT; } -#line 21831 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21831 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 369: -#line 4017 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4017 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; sp_head *sp= lex->sphead; @@ -21849,11 +21849,11 @@ i->add_to_varlist(spv); } -#line 21853 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21853 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 370: -#line 4035 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4035 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; sp_head *sp= lex->sphead; @@ -21871,11 +21871,11 @@ i->add_to_varlist(spv); } -#line 21875 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21875 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 371: -#line 4055 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4055 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /*$1*/ THD *thd= YYTHD; LEX *lex= thd->lex; @@ -21884,11 +21884,11 @@ sp->reset_lex(thd); sp->m_parser_data.push_expr_start_ptr((yylsp[0]).raw.end); } -#line 21888 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21888 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 372: -#line 4064 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4064 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /*$3*/ ITEMIZE((yyvsp[0].item), &(yyvsp[0].item)); @@ -21926,11 +21926,11 @@ MYSQL_YYABORT; } } -#line 21930 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21930 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 373: -#line 4103 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4103 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /*$6*/ THD *thd= YYTHD; LEX *lex= thd->lex; @@ -21949,11 +21949,11 @@ sp->m_parser_data.add_backpatch_entry( i, pctx->push_label(thd, EMPTY_STR, 0)); } -#line 21953 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21953 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 374: -#line 4122 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4122 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /*$8*/ LEX *lex= Lex; sp_head *sp= lex->sphead; @@ -21962,11 +21962,11 @@ sp->m_parser_data.do_backpatch(pctx->pop_label(), sp->instructions()); } -#line 21966 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21966 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 380: -#line 4145 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4145 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /*$2*/ THD *thd= YYTHD; LEX *lex= thd->lex; @@ -21977,11 +21977,11 @@ sp->reset_lex(thd); /* For CASE-expr $3 */ sp->m_parser_data.push_expr_start_ptr((yylsp[0]).raw.end); } -#line 21981 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 21981 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 381: -#line 4156 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4156 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /*$4*/ ITEMIZE((yyvsp[0].item), &(yyvsp[0].item)); @@ -22024,35 +22024,35 @@ MYSQL_YYABORT; } } -#line 22028 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22028 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 382: -#line 4202 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4202 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /*$9*/ case_stmt_action_end_case(Lex, true); } -#line 22036 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22036 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 383: -#line 4209 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4209 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { case_stmt_action_case(YYTHD); } -#line 22044 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22044 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 384: -#line 4216 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4216 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { case_stmt_action_end_case(Lex, false); } -#line 22052 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22052 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 389: -#line 4233 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4233 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /*$2*/ THD *thd= YYTHD; LEX *lex= thd->lex; @@ -22061,11 +22061,11 @@ sp->reset_lex(thd); sp->m_parser_data.push_expr_start_ptr((yylsp[0]).raw.end); } -#line 22065 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22065 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 390: -#line 4242 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4242 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /*$4*/ /* Simple case: = */ @@ -22107,20 +22107,20 @@ MYSQL_YYABORT; } } -#line 22111 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22111 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 391: -#line 4285 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4285 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /*$7*/ if (case_stmt_action_then(YYTHD, Lex)) MYSQL_YYABORT; } -#line 22120 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22120 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 392: -#line 4293 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4293 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /*$2*/ THD *thd= YYTHD; LEX *lex= thd->lex; @@ -22129,11 +22129,11 @@ sp->reset_lex(thd); sp->m_parser_data.push_expr_start_ptr((yylsp[0]).raw.end); } -#line 22133 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22133 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 393: -#line 4302 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4302 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /*$4*/ ITEMIZE((yyvsp[0].item), &(yyvsp[0].item)); @@ -22170,20 +22170,20 @@ MYSQL_YYABORT; } } -#line 22174 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22174 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 394: -#line 4340 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4340 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /*$8*/ if (case_stmt_action_then(YYTHD, Lex)) MYSQL_YYABORT; } -#line 22183 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22183 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 395: -#line 4348 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4348 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= Lex; @@ -22197,11 +22197,11 @@ if (!i || sp->add_instr(thd, i)) MYSQL_YYABORT; } -#line 22201 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22201 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 397: -#line 4366 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4366 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; sp_head *sp= lex->sphead; @@ -22219,11 +22219,11 @@ lab->type= sp_label::ITERATION; } } -#line 22223 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22223 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 398: -#line 4384 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4384 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; sp_head *sp= lex->sphead; @@ -22240,23 +22240,23 @@ } sp->m_parser_data.do_backpatch(lab, sp->instructions()); } -#line 22244 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22244 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 399: -#line 4403 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4403 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lex_str)= null_lex_str; } -#line 22250 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22250 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 400: -#line 4404 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4404 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lex_str)= (yyvsp[0].lex_str); } -#line 22256 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22256 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 401: -#line 4409 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4409 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; sp_head *sp= lex->sphead; @@ -22272,11 +22272,11 @@ lab= pctx->push_label(YYTHD, (yyvsp[-1].lex_str), sp->instructions()); lab->type= sp_label::BEGIN; } -#line 22276 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22276 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 402: -#line 4425 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4425 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; sp_pcontext *pctx= lex->get_sp_current_parsing_ctx(); @@ -22291,11 +22291,11 @@ } } } -#line 22295 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22295 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 403: -#line 4442 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4442 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /* Unlabeled blocks get a secret label. */ LEX *lex= Lex; sp_head *sp= lex->sphead; @@ -22306,20 +22306,20 @@ lab->type= sp_label::BEGIN; } -#line 22310 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22310 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 404: -#line 4453 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4453 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->get_sp_current_parsing_ctx()->pop_label(); } -#line 22319 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22319 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 405: -#line 4461 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4461 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /* QQ This is just a dummy for grouping declarations and statements together. No [[NOT] ATOMIC] yet, and we need to figure out how make it coexist with the existing BEGIN COMMIT/ROLLBACK. */ @@ -22332,11 +22332,11 @@ lex->set_sp_current_parsing_ctx(child_pctx); } -#line 22336 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22336 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 406: -#line 4476 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4476 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= Lex; @@ -22368,11 +22368,11 @@ lex->set_sp_current_parsing_ctx(pctx->pop_context()); } -#line 22372 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22372 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 407: -#line 4512 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4512 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= Lex; @@ -22387,11 +22387,11 @@ if (!i || sp->add_instr(thd, i)) MYSQL_YYABORT; } -#line 22391 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22391 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 408: -#line 4527 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4527 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /*$2*/ THD *thd= YYTHD; LEX *lex= thd->lex; @@ -22400,11 +22400,11 @@ sp->reset_lex(thd); sp->m_parser_data.push_expr_start_ptr((yylsp[0]).raw.end); } -#line 22404 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22404 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 409: -#line 4536 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4536 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /*$4*/ ITEMIZE((yyvsp[0].item), &(yyvsp[0].item)); @@ -22442,11 +22442,11 @@ MYSQL_YYABORT; } } -#line 22446 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22446 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 410: -#line 4577 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4577 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /*$14*/ THD *thd= YYTHD; LEX *lex= Lex; @@ -22462,11 +22462,11 @@ sp->m_parser_data.do_cont_backpatch(sp->instructions()); } -#line 22466 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22466 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 411: -#line 4595 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4595 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /*$4*/ THD *thd= YYTHD; LEX *lex= thd->lex; @@ -22475,11 +22475,11 @@ sp->reset_lex(thd); sp->m_parser_data.push_expr_start_ptr((yylsp[0]).raw.end); } -#line 22479 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22479 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 412: -#line 4604 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4604 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /*$6*/ ITEMIZE((yyvsp[0].item), &(yyvsp[0].item)); @@ -22518,105 +22518,105 @@ /* We can shortcut the cont_backpatch here */ i->set_cont_dest(ip + 1); } -#line 22522 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22522 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 414: -#line 4648 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4648 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= TRG_ACTION_BEFORE; } -#line 22528 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22528 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 415: -#line 4650 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4650 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= TRG_ACTION_AFTER; } -#line 22534 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22534 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 416: -#line 4655 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4655 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= TRG_EVENT_INSERT; } -#line 22540 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22540 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 417: -#line 4657 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4657 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= TRG_EVENT_UPDATE; } -#line 22546 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22546 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 418: -#line 4659 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4659 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= TRG_EVENT_DELETE; } -#line 22552 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22552 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 422: -#line 4693 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4693 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 22558 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22558 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 423: -#line 4695 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4695 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->alter_tablespace_info->logfile_group_name= (yyvsp[0].lex_str).str; } -#line 22567 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22567 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 424: -#line 4705 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4705 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->alter_tablespace_info->ts_alter_tablespace_type= ALTER_TABLESPACE_ADD_FILE; } -#line 22575 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22575 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 425: -#line 4711 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4711 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->alter_tablespace_info->ts_alter_tablespace_type= ALTER_TABLESPACE_DROP_FILE; } -#line 22583 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22583 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 430: -#line 4734 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4734 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 22589 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22589 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 482: -#line 4833 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4833 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->alter_tablespace_info->data_file_name= (yyvsp[0].lex_str).str; } -#line 22598 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22598 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 483: -#line 4841 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4841 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->alter_tablespace_info->undo_file_name= (yyvsp[0].lex_str).str; } -#line 22607 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22607 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 484: -#line 4849 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4849 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->alter_tablespace_info->redo_file_name= (yyvsp[0].lex_str).str; } -#line 22616 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22616 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 485: -#line 4857 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4857 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->alter_tablespace_info= new st_alter_tablespace(); @@ -22625,11 +22625,11 @@ lex->alter_tablespace_info->tablespace_name= (yyvsp[0].lex_str).str; lex->sql_command= SQLCOM_ALTER_TABLESPACE; } -#line 22629 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22629 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 486: -#line 4869 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4869 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->alter_tablespace_info= new st_alter_tablespace(); @@ -22638,92 +22638,92 @@ lex->alter_tablespace_info->logfile_group_name= (yyvsp[0].lex_str).str; lex->sql_command= SQLCOM_ALTER_TABLESPACE; } -#line 22642 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22642 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 487: -#line 4881 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4881 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->alter_tablespace_info->ts_access_mode= TS_READ_ONLY; } -#line 22651 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22651 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 488: -#line 4886 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4886 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->alter_tablespace_info->ts_access_mode= TS_READ_WRITE; } -#line 22660 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22660 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 489: -#line 4891 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4891 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->alter_tablespace_info->ts_access_mode= TS_NOT_ACCESSIBLE; } -#line 22669 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22669 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 490: -#line 4899 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4899 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->alter_tablespace_info->initial_size= (yyvsp[0].ulonglong_number); } -#line 22678 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22678 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 491: -#line 4907 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4907 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->alter_tablespace_info->autoextend_size= (yyvsp[0].ulonglong_number); } -#line 22687 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22687 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 492: -#line 4915 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4915 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->alter_tablespace_info->max_size= (yyvsp[0].ulonglong_number); } -#line 22696 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22696 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 493: -#line 4923 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4923 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->alter_tablespace_info->extent_size= (yyvsp[0].ulonglong_number); } -#line 22705 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22705 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 494: -#line 4931 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4931 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->alter_tablespace_info->undo_buffer_size= (yyvsp[0].ulonglong_number); } -#line 22714 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22714 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 495: -#line 4939 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4939 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->alter_tablespace_info->redo_buffer_size= (yyvsp[0].ulonglong_number); } -#line 22723 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22723 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 496: -#line 4947 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4947 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; if (lex->alter_tablespace_info->nodegroup_id != UNDEF_NODEGROUP) @@ -22733,11 +22733,11 @@ } lex->alter_tablespace_info->nodegroup_id= (yyvsp[0].ulong_num); } -#line 22737 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22737 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 497: -#line 4960 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4960 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; if (lex->alter_tablespace_info->ts_comment != NULL) @@ -22747,11 +22747,11 @@ } lex->alter_tablespace_info->ts_comment= (yyvsp[0].lex_str).str; } -#line 22751 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22751 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 498: -#line 4973 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4973 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; if (lex->alter_tablespace_info->storage_engine != NULL) @@ -22762,11 +22762,11 @@ } lex->alter_tablespace_info->storage_engine= (yyvsp[0].db_type); } -#line 22766 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22766 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 499: -#line 4987 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 4987 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; if (lex->alter_tablespace_info->file_block_size != 0) @@ -22777,20 +22777,20 @@ } lex->alter_tablespace_info->file_block_size= (yyvsp[0].ulonglong_number); } -#line 22781 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22781 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 500: -#line 5001 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5001 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->alter_tablespace_info->wait_until_completed= TRUE; } -#line 22790 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22790 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 501: -#line 5006 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5006 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; if (!(lex->alter_tablespace_info->wait_until_completed)) @@ -22800,17 +22800,17 @@ } lex->alter_tablespace_info->wait_until_completed= FALSE; } -#line 22804 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22804 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 502: -#line 5018 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5018 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ulonglong_number)= (yyvsp[0].ulonglong_number);} -#line 22810 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22810 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 503: -#line 5020 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5020 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { ulonglong number; uint text_shift_number= 0; @@ -22856,23 +22856,23 @@ } (yyval.ulonglong_number)= number; } -#line 22860 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22860 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 504: -#line 5072 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5072 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 22866 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22866 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 505: -#line 5075 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5075 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 22872 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22872 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 506: -#line 5077 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5077 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; TABLE_LIST *src_table; @@ -22887,11 +22887,11 @@ /* CREATE TABLE ... LIKE is not allowed for views. */ src_table->required_type= FRMTYPE_TABLE; } -#line 22891 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22891 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 507: -#line 5092 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5092 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; TABLE_LIST *src_table; @@ -22906,77 +22906,77 @@ /* CREATE TABLE ... LIKE is not allowed for views. */ src_table->required_type= FRMTYPE_TABLE; } -#line 22910 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22910 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 508: -#line 5111 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5111 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 22916 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22916 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 509: -#line 5114 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5114 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { CONTEXTUALIZE((yyvsp[-1].create_select)); Select->set_braces(1); } -#line 22925 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22925 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 510: -#line 5119 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5119 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if ((yyvsp[0].node) != NULL) CONTEXTUALIZE((yyvsp[0].node)); } -#line 22934 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22934 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 511: -#line 5126 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5126 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 22940 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22940 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 512: -#line 5128 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5128 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { CONTEXTUALIZE((yyvsp[0].create_select)); Select->set_braces(0); } -#line 22949 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22949 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 513: -#line 5133 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5133 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if ((yyvsp[0].union_list) != NULL) CONTEXTUALIZE((yyvsp[0].union_list)); } -#line 22958 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22958 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 514: -#line 5138 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5138 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { CONTEXTUALIZE((yyvsp[-1].create_select)); Select->set_braces(1); } -#line 22967 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22967 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 515: -#line 5143 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5143 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if ((yyvsp[0].node) != NULL) CONTEXTUALIZE((yyvsp[0].node)); } -#line 22976 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22976 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 516: -#line 5151 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5151 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /* Remove all tables used in PARTITION clause from the global table @@ -22986,17 +22986,17 @@ last_non_sel_table->next_global= 0; Lex->query_tables_last= &last_non_sel_table->next_global; } -#line 22990 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22990 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 517: -#line 5187 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5187 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 22996 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 22996 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 519: -#line 5193 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5193 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->part_info= new partition_info(); @@ -23010,11 +23010,11 @@ lex->alter_info.flags|= Alter_info::ALTER_PARTITION; } } -#line 23014 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23014 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 521: -#line 5211 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5211 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; if (!lex->part_info) @@ -23027,82 +23027,82 @@ partition info string into part_info data structure. */ } -#line 23031 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23031 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 522: -#line 5223 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5223 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 23037 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23037 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 524: -#line 5232 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5232 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { partition_info *part_info= Lex->part_info; part_info->list_of_part_fields= TRUE; part_info->column_list= FALSE; part_info->part_type= HASH_PARTITION; } -#line 23048 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23048 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 525: -#line 5239 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5239 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->part_info->part_type= HASH_PARTITION; } -#line 23054 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23054 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 526: -#line 5240 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5240 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 23060 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23060 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 527: -#line 5242 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5242 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->part_info->part_type= RANGE_PARTITION; } -#line 23066 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23066 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 528: -#line 5244 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5244 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->part_info->part_type= RANGE_PARTITION; } -#line 23072 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23072 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 529: -#line 5246 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5246 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->part_info->part_type= LIST_PARTITION; } -#line 23078 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23078 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 530: -#line 5248 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5248 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->part_info->part_type= LIST_PARTITION; } -#line 23084 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23084 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 531: -#line 5252 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5252 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 23090 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23090 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 532: -#line 5254 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5254 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->part_info->linear_hash_ind= TRUE;} -#line 23096 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23096 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 533: -#line 5259 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5259 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->part_info->key_algorithm= partition_info::KEY_ALGORITHM_NONE;} -#line 23102 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23102 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 534: -#line 5261 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5261 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { switch ((yyvsp[0].ulong_num)) { case 1: @@ -23116,35 +23116,35 @@ MYSQL_YYABORT; } } -#line 23120 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23120 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 535: -#line 5277 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5277 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 23126 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23126 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 536: -#line 5278 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5278 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 23132 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23132 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 537: -#line 5282 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5282 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 23138 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23138 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 538: -#line 5283 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5283 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 23144 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23144 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 539: -#line 5288 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5288 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { partition_info *part_info= Lex->part_info; part_info->num_columns++; @@ -23160,21 +23160,21 @@ MYSQL_YYABORT; } } -#line 23164 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23164 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 540: -#line 5307 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5307 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { partition_info *part_info= Lex->part_info; part_info->column_list= TRUE; part_info->list_of_part_fields= TRUE; } -#line 23174 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23174 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 541: -#line 5317 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5317 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { partition_info *part_info= Lex->part_info; /* @@ -23187,11 +23187,11 @@ part_info->num_columns= 1; part_info->column_list= FALSE; } -#line 23191 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23191 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 542: -#line 5333 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5333 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /* TODO: replace @1.cpp.end with @2.cpp.start: we don't need whitespaces at @@ -23201,17 +23201,17 @@ const_cast((yylsp[-1]).cpp.end), TRUE)) { MYSQL_YYABORT; } } -#line 23205 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23205 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 543: -#line 5346 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5346 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 23211 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23211 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 544: -#line 5348 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5348 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { uint num_parts= (yyvsp[0].ulong_num); partition_info *part_info= Lex->part_info; @@ -23224,57 +23224,57 @@ part_info->num_parts= num_parts; part_info->use_default_num_partitions= FALSE; } -#line 23228 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23228 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 545: -#line 5363 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5363 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 23234 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23234 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 546: -#line 5365 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5365 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->part_info->subpart_type= HASH_PARTITION; } -#line 23240 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23240 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 547: -#line 5366 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5366 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 23246 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23246 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 548: -#line 5369 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5369 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { partition_info *part_info= Lex->part_info; part_info->subpart_type= HASH_PARTITION; part_info->list_of_subpart_fields= TRUE; } -#line 23256 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23256 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 549: -#line 5374 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5374 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 23262 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23262 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 550: -#line 5378 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5378 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 23268 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23268 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 551: -#line 5379 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5379 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 23274 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23274 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 552: -#line 5384 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5384 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { partition_info *part_info= Lex->part_info; if (part_info->subpart_field_list.push_back((yyvsp[0].lex_str).str)) @@ -23289,11 +23289,11 @@ MYSQL_YYABORT; } } -#line 23293 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23293 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 553: -#line 5402 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5402 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { ITEMIZE((yyvsp[0].item), &(yyvsp[0].item)); @@ -23308,17 +23308,17 @@ } (yyval.item)=(yyvsp[0].item); } -#line 23312 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23312 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 554: -#line 5419 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5419 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 23318 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23318 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 555: -#line 5421 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5421 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { uint num_parts= (yyvsp[0].ulong_num); LEX *lex= Lex; @@ -23330,11 +23330,11 @@ lex->part_info->num_subparts= num_parts; lex->part_info->use_default_num_subpartitions= FALSE; } -#line 23334 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23334 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 556: -#line 5436 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5436 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { partition_info *part_info= Lex->part_info; if (part_info->part_type == RANGE_PARTITION) @@ -23350,11 +23350,11 @@ MYSQL_YYABORT; } } -#line 23354 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23354 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 557: -#line 5452 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5452 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { partition_info *part_info= Lex->part_info; uint count_curr_parts= part_info->partitions.elements; @@ -23373,23 +23373,23 @@ } part_info->count_curr_subparts= 0; } -#line 23377 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23377 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 558: -#line 5473 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5473 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 23383 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23383 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 559: -#line 5474 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5474 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 23389 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23389 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 560: -#line 5479 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5479 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { partition_info *part_info= Lex->part_info; partition_element *p_elem= new partition_element(); @@ -23405,17 +23405,17 @@ part_info->use_default_partitions= FALSE; part_info->use_default_num_partitions= FALSE; } -#line 23409 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23409 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 561: -#line 5498 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5498 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 23415 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23415 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 562: -#line 5503 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5503 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { partition_info *part_info= Lex->part_info; partition_element *p_elem= part_info->curr_part_elem; @@ -23427,11 +23427,11 @@ } p_elem->partition_name= (yyvsp[0].lex_str).str; } -#line 23431 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23431 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 563: -#line 5518 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5518 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; partition_info *part_info= lex->part_info; @@ -23450,11 +23450,11 @@ MYSQL_YYABORT; } } -#line 23454 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23454 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 564: -#line 5537 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5537 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; partition_info *part_info= lex->part_info; @@ -23467,17 +23467,17 @@ MYSQL_YYABORT; } } -#line 23471 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23471 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 565: -#line 5549 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5549 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 23477 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23477 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 566: -#line 5551 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5551 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; partition_info *part_info= lex->part_info; @@ -23490,17 +23490,17 @@ MYSQL_YYABORT; } } -#line 23494 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23494 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 567: -#line 5563 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5563 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 23500 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23500 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 568: -#line 5568 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5568 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { partition_info *part_info= Lex->part_info; @@ -23522,17 +23522,17 @@ MYSQL_YYABORT; } } -#line 23526 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23526 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 569: -#line 5589 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5589 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 23532 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23532 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 570: -#line 5594 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5594 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; partition_info *part_info= lex->part_info; @@ -23561,11 +23561,11 @@ } } } -#line 23565 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23565 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 571: -#line 5623 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5623 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { partition_info *part_info= Lex->part_info; if (part_info->num_columns < 2U) @@ -23574,23 +23574,23 @@ MYSQL_YYABORT; } } -#line 23578 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23578 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 572: -#line 5634 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5634 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 23584 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23584 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 573: -#line 5635 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5635 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 23590 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23590 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 574: -#line 5640 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5640 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { partition_info *part_info= Lex->part_info; part_info->print_debug("( part_value_item", NULL); @@ -23602,17 +23602,17 @@ MYSQL_YYABORT; } } -#line 23606 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23606 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 575: -#line 5651 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5651 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 23612 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23612 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 576: -#line 5653 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5653 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { partition_info *part_info= Lex->part_info; part_info->print_debug(") part_value_item", NULL); @@ -23633,23 +23633,23 @@ } part_info->curr_list_object= 0; } -#line 23637 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23637 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 577: -#line 5676 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5676 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 23643 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23643 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 578: -#line 5677 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5677 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 23649 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23649 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 579: -#line 5682 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5682 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { partition_info *part_info= Lex->part_info; if (part_info->part_type == LIST_PARTITION) @@ -23662,11 +23662,11 @@ MYSQL_YYABORT; } } -#line 23666 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23666 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 580: -#line 5695 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5695 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { ITEMIZE((yyvsp[0].item), &(yyvsp[0].item)); @@ -23684,11 +23684,11 @@ MYSQL_YYABORT; } } -#line 23688 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23688 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 581: -#line 5717 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5717 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { partition_info *part_info= Lex->part_info; if (part_info->num_subparts != 0 && @@ -23702,11 +23702,11 @@ MYSQL_YYABORT; } } -#line 23706 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23706 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 582: -#line 5731 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5731 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { partition_info *part_info= Lex->part_info; if (part_info->num_subparts != 0) @@ -23729,23 +23729,23 @@ } part_info->count_curr_subparts= 0; } -#line 23733 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23733 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 583: -#line 5756 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5756 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 23739 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23739 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 584: -#line 5757 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5757 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 23745 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23745 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 585: -#line 5762 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5762 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { partition_info *part_info= Lex->part_info; partition_element *curr_part= part_info->current_partition; @@ -23778,17 +23778,17 @@ part_info->use_default_num_subpartitions= FALSE; part_info->count_curr_subparts++; } -#line 23782 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23782 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 586: -#line 5794 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5794 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 23788 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23788 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 587: -#line 5799 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5799 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (check_string_char_length(to_lex_cstring((yyvsp[0].lex_str)), "", NAME_CHAR_LEN, system_charset_info, true)) @@ -23798,266 +23798,266 @@ } Lex->part_info->curr_part_elem->partition_name= (yyvsp[0].lex_str).str; } -#line 23802 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23802 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 588: -#line 5811 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5811 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 23808 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23808 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 589: -#line 5812 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5812 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 23814 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23814 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 590: -#line 5816 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5816 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 23820 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23820 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 591: -#line 5817 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5817 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 23826 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23826 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 592: -#line 5822 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5822 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->part_info->curr_part_elem->tablespace_name= (yyvsp[0].lex_str).str; } -#line 23832 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23832 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 593: -#line 5824 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5824 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { partition_info *part_info= Lex->part_info; part_info->curr_part_elem->engine_type= (yyvsp[0].db_type); part_info->default_engine_type= (yyvsp[0].db_type); } -#line 23842 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23842 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 594: -#line 5830 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5830 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->part_info->curr_part_elem->nodegroup_id= (uint16) (yyvsp[0].ulong_num); } -#line 23848 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23848 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 595: -#line 5832 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5832 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->part_info->curr_part_elem->part_max_rows= (ha_rows) (yyvsp[0].ulonglong_number); } -#line 23854 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23854 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 596: -#line 5834 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5834 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->part_info->curr_part_elem->part_min_rows= (ha_rows) (yyvsp[0].ulonglong_number); } -#line 23860 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23860 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 597: -#line 5836 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5836 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->part_info->curr_part_elem->data_file_name= (yyvsp[0].lex_str).str; } -#line 23866 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23866 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 598: -#line 5838 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5838 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->part_info->curr_part_elem->index_file_name= (yyvsp[0].lex_str).str; } -#line 23872 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23872 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 599: -#line 5840 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5840 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->part_info->curr_part_elem->part_comment= (yyvsp[0].lex_str).str; } -#line 23878 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23878 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 600: -#line 5849 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5849 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.create_select)= NEW_PTN PT_create_select((yyvsp[-3].optimizer_hints), (yyvsp[-2].select_options), (yyvsp[-1].item_list2), (yyvsp[0].table_expression)); } -#line 23886 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23886 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 601: -#line 5855 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5855 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 23892 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23892 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 602: -#line 5856 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5856 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 23898 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23898 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 603: -#line 5860 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5860 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 23904 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23904 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 604: -#line 5861 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5861 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 23910 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23910 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 605: -#line 5865 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5865 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 23916 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23916 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 606: -#line 5866 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5866 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 23922 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23922 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 607: -#line 5870 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5870 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 23928 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23928 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 608: -#line 5871 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5871 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 23934 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23934 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 609: -#line 5875 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5875 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= 0; } -#line 23940 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23940 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 610: -#line 5876 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5876 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= (yyvsp[0].num);} -#line 23946 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23946 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 611: -#line 5880 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5880 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)=(yyvsp[0].num); } -#line 23952 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23952 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 612: -#line 5881 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5881 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= (yyvsp[-1].num) | (yyvsp[0].num); } -#line 23958 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23958 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 613: -#line 5885 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5885 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)=HA_LEX_CREATE_TMP_TABLE; } -#line 23964 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23964 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 614: -#line 5889 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5889 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= 0; } -#line 23970 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23970 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 615: -#line 5890 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5890 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)=HA_LEX_CREATE_IF_NOT_EXISTS; } -#line 23976 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23976 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 623: -#line 5911 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5911 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_info.db_type= (yyvsp[0].db_type); Lex->create_info.used_fields|= HA_CREATE_USED_ENGINE; } -#line 23985 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23985 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 624: -#line 5916 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5916 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_info.max_rows= (yyvsp[0].ulonglong_number); Lex->create_info.used_fields|= HA_CREATE_USED_MAX_ROWS; } -#line 23994 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 23994 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 625: -#line 5921 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5921 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_info.min_rows= (yyvsp[0].ulonglong_number); Lex->create_info.used_fields|= HA_CREATE_USED_MIN_ROWS; } -#line 24003 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24003 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 626: -#line 5926 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5926 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_info.avg_row_length=(yyvsp[0].ulong_num); Lex->create_info.used_fields|= HA_CREATE_USED_AVG_ROW_LENGTH; } -#line 24012 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24012 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 627: -#line 5931 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5931 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_info.password=(yyvsp[0].lex_str).str; Lex->create_info.used_fields|= HA_CREATE_USED_PASSWORD; } -#line 24021 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24021 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 628: -#line 5936 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5936 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_info.comment=(yyvsp[0].lex_str); Lex->create_info.used_fields|= HA_CREATE_USED_COMMENT; } -#line 24030 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24030 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 629: -#line 5941 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5941 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_info.used_fields|= HA_CREATE_USED_COMPRESS; Lex->create_info.compress= (yyvsp[0].lex_str); } -#line 24039 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24039 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 630: -#line 5946 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5946 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_info.used_fields|= HA_CREATE_USED_ENCRYPT; Lex->create_info.encrypt_type= (yyvsp[0].lex_str); } -#line 24048 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24048 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 631: -#line 5951 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5951 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_info.auto_increment_value=(yyvsp[0].ulonglong_number); Lex->create_info.used_fields|= HA_CREATE_USED_AUTO; } -#line 24057 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24057 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 632: -#line 5956 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5956 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { switch((yyvsp[0].ulong_num)) { case 0: @@ -24072,21 +24072,21 @@ } Lex->create_info.used_fields|= HA_CREATE_USED_PACK_KEYS; } -#line 24076 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24076 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 633: -#line 5971 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5971 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_info.table_options&= ~(HA_OPTION_PACK_KEYS | HA_OPTION_NO_PACK_KEYS); Lex->create_info.used_fields|= HA_CREATE_USED_PACK_KEYS; } -#line 24086 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24086 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 634: -#line 5977 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5977 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { switch((yyvsp[0].ulong_num)) { case 0: @@ -24101,20 +24101,20 @@ } Lex->create_info.used_fields|= HA_CREATE_USED_STATS_AUTO_RECALC; } -#line 24105 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24105 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 635: -#line 5992 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5992 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_info.stats_auto_recalc= HA_STATS_AUTO_RECALC_DEFAULT; Lex->create_info.used_fields|= HA_CREATE_USED_STATS_AUTO_RECALC; } -#line 24114 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24114 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 636: -#line 5997 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 5997 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { switch((yyvsp[0].ulong_num)) { case 0: @@ -24129,21 +24129,21 @@ } Lex->create_info.used_fields|= HA_CREATE_USED_STATS_PERSISTENT; } -#line 24133 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24133 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 637: -#line 6012 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6012 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_info.table_options&= ~(HA_OPTION_STATS_PERSISTENT | HA_OPTION_NO_STATS_PERSISTENT); Lex->create_info.used_fields|= HA_CREATE_USED_STATS_PERSISTENT; } -#line 24143 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24143 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 638: -#line 6018 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6018 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /* From user point of view STATS_SAMPLE_PAGES can be specified as STATS_SAMPLE_PAGES=N (where 0create_info.stats_sample_pages=(yyvsp[0].ulong_num); Lex->create_info.used_fields|= HA_CREATE_USED_STATS_SAMPLE_PAGES; } -#line 24165 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24165 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 639: -#line 6036 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6036 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_info.stats_sample_pages=0; Lex->create_info.used_fields|= HA_CREATE_USED_STATS_SAMPLE_PAGES; } -#line 24174 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24174 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 640: -#line 6041 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6041 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_info.table_options|= (yyvsp[0].ulong_num) ? HA_OPTION_CHECKSUM : HA_OPTION_NO_CHECKSUM; Lex->create_info.used_fields|= HA_CREATE_USED_CHECKSUM; } -#line 24183 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24183 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 641: -#line 6046 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6046 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_info.table_options|= (yyvsp[0].ulong_num) ? HA_OPTION_CHECKSUM : HA_OPTION_NO_CHECKSUM; Lex->create_info.used_fields|= HA_CREATE_USED_CHECKSUM; } -#line 24192 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24192 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 642: -#line 6051 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6051 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_info.table_options|= (yyvsp[0].ulong_num) ? HA_OPTION_DELAY_KEY_WRITE : HA_OPTION_NO_DELAY_KEY_WRITE; Lex->create_info.used_fields|= HA_CREATE_USED_DELAY_KEY_WRITE; } -#line 24201 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24201 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 643: -#line 6056 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6056 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_info.row_type= (yyvsp[0].row_type); Lex->create_info.used_fields|= HA_CREATE_USED_ROW_FORMAT; } -#line 24210 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24210 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 644: -#line 6061 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6061 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->select_lex->table_list.save_and_clear(&Lex->save_list); } -#line 24218 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24218 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 645: -#line 6065 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6065 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /* Move the union list to the merge_list and exclude its tables @@ -24240,78 +24240,78 @@ lex->create_info.used_fields|= HA_CREATE_USED_UNION; } -#line 24244 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24244 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 648: -#line 6089 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6089 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_info.merge_insert_method= (yyvsp[0].ulong_num); Lex->create_info.used_fields|= HA_CREATE_USED_INSERT_METHOD; } -#line 24253 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24253 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 649: -#line 6094 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6094 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_info.data_file_name= (yyvsp[0].lex_str).str; Lex->create_info.used_fields|= HA_CREATE_USED_DATADIR; } -#line 24262 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24262 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 650: -#line 6099 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6099 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_info.index_file_name= (yyvsp[0].lex_str).str; Lex->create_info.used_fields|= HA_CREATE_USED_INDEXDIR; } -#line 24271 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24271 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 651: -#line 6104 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6104 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_info.tablespace= (yyvsp[0].lex_str).str; Lex->create_info.used_fields|= HA_CREATE_USED_TABLESPACE; } -#line 24280 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24280 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 652: -#line 6109 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6109 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {Lex->create_info.storage_media= HA_SM_DISK;} -#line 24286 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24286 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 653: -#line 6111 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6111 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {Lex->create_info.storage_media= HA_SM_MEMORY;} -#line 24292 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24292 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 654: -#line 6113 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6113 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_info.connect_string.str= (yyvsp[0].lex_str).str; Lex->create_info.connect_string.length= (yyvsp[0].lex_str).length; Lex->create_info.used_fields|= HA_CREATE_USED_CONNECTION; } -#line 24302 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24302 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 655: -#line 6119 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6119 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_info.used_fields|= HA_CREATE_USED_KEY_BLOCK_SIZE; Lex->create_info.key_block_size= (yyvsp[0].ulong_num); } -#line 24311 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24311 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 656: -#line 6127 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6127 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { HA_CREATE_INFO *cinfo= &Lex->create_info; if ((cinfo->used_fields & HA_CREATE_USED_DEFAULT_CHARSET) && @@ -24326,11 +24326,11 @@ Lex->create_info.default_table_charset= (yyvsp[0].charset); Lex->create_info.used_fields|= HA_CREATE_USED_DEFAULT_CHARSET; } -#line 24330 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24330 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 657: -#line 6145 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6145 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { HA_CREATE_INFO *cinfo= &Lex->create_info; if ((cinfo->used_fields & HA_CREATE_USED_DEFAULT_CHARSET) && @@ -24344,11 +24344,11 @@ Lex->create_info.default_table_charset= (yyvsp[0].charset); Lex->create_info.used_fields|= HA_CREATE_USED_DEFAULT_CHARSET; } -#line 24348 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24348 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 658: -#line 6162 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6162 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; plugin_ref plugin= @@ -24371,11 +24371,11 @@ (yyvsp[0].lex_str).str); } } -#line 24375 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24375 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 659: -#line 6188 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6188 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= thd->lex; @@ -24390,141 +24390,141 @@ MYSQL_YYABORT; } } -#line 24394 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24394 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 660: -#line 6205 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6205 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.row_type)= ROW_TYPE_DEFAULT; } -#line 24400 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24400 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 661: -#line 6206 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6206 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.row_type)= ROW_TYPE_FIXED; } -#line 24406 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24406 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 662: -#line 6207 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6207 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.row_type)= ROW_TYPE_DYNAMIC; } -#line 24412 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24412 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 663: -#line 6208 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6208 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.row_type)= ROW_TYPE_COMPRESSED; } -#line 24418 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24418 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 664: -#line 6209 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6209 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.row_type)= ROW_TYPE_REDUNDANT; } -#line 24424 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24424 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 665: -#line 6210 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6210 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.row_type)= ROW_TYPE_COMPACT; } -#line 24430 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24430 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 666: -#line 6214 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6214 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ulong_num)= MERGE_INSERT_DISABLED; } -#line 24436 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24436 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 667: -#line 6215 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6215 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ulong_num)= MERGE_INSERT_TO_FIRST; } -#line 24442 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24442 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 668: -#line 6216 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6216 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ulong_num)= MERGE_INSERT_TO_LAST; } -#line 24448 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24448 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 669: -#line 6220 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6220 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {(yyval.num) = (int) STRING_RESULT; } -#line 24454 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24454 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 670: -#line 6221 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6221 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {(yyval.num) = (int) REAL_RESULT; } -#line 24460 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24460 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 671: -#line 6222 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6222 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {(yyval.num) = (int) DECIMAL_RESULT; } -#line 24466 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24466 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 672: -#line 6223 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6223 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {(yyval.num) = (int) INT_RESULT; } -#line 24472 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24472 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 673: -#line 6229 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6229 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_last_non_select_table= Lex->last_table(); } -#line 24480 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24480 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 679: -#line 6247 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6247 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->col_list.empty(); /* Alloced by sql_alloc */ } -#line 24488 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24488 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 680: -#line 6254 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6254 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (add_create_index (Lex, (yyvsp[-6].key_type), (yyvsp[-5].lex_str))) MYSQL_YYABORT; } -#line 24497 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24497 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 681: -#line 6260 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6260 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (add_create_index (Lex, (yyvsp[-7].key_type), (yyvsp[-5].lex_str))) MYSQL_YYABORT; } -#line 24506 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24506 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 682: -#line 6266 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6266 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (add_create_index (Lex, (yyvsp[-7].key_type), (yyvsp[-5].lex_str))) MYSQL_YYABORT; } -#line 24515 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24515 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 683: -#line 6272 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6272 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (add_create_index (Lex, (yyvsp[-6].key_type), (yyvsp[-5].lex_str).str ? (yyvsp[-5].lex_str) : (yyvsp[-7].lex_str))) MYSQL_YYABORT; } -#line 24524 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24524 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 684: -#line 6277 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6277 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; Key *key= new Foreign_key((yyvsp[-4].lex_str).str ? (yyvsp[-4].lex_str) : (yyvsp[-7].lex_str), lex->col_list, @@ -24543,45 +24543,45 @@ /* Only used for ALTER TABLE. Ignored otherwise. */ lex->alter_info.flags|= Alter_info::ADD_FOREIGN_KEY; } -#line 24547 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24547 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 685: -#line 6296 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6296 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->col_list.empty(); /* Alloced by sql_alloc */ } -#line 24555 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24555 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 688: -#line 6308 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6308 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { ITEMIZE((yyvsp[-1].item), &(yyvsp[-1].item)); } -#line 24563 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24563 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 689: -#line 6315 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6315 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lex_str)= null_lex_str; } -#line 24569 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24569 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 690: -#line 6316 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6316 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lex_str)= (yyvsp[0].lex_str); } -#line 24575 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24575 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 691: -#line 6320 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6320 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lex_str)=(yyvsp[0].lex_str); } -#line 24581 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24581 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 692: -#line 6325 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6325 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->length=lex->dec=0; @@ -24591,11 +24591,11 @@ lex->charset=NULL; lex->gcol_info= 0; } -#line 24595 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24595 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 693: -#line 6335 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6335 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; if (add_field_to_list(lex->thd, &(yyvsp[-2].lex_str), (enum enum_field_types) (yyvsp[0].num), @@ -24607,17 +24607,17 @@ lex->gcol_info)) MYSQL_YYABORT; } -#line 24611 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24611 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 694: -#line 6349 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6349 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 24617 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24617 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 695: -#line 6353 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6353 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= (yyvsp[-8].num); if (Lex->charset) @@ -24630,61 +24630,61 @@ Lex->charset= (yyvsp[-7].charset); Lex->gcol_info->set_field_type((enum enum_field_types) (yyval.num)); } -#line 24634 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24634 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 702: -#line 6384 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6384 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->type|= UNIQUE_FLAG; lex->alter_info.flags|= Alter_info::ALTER_ADD_INDEX; } -#line 24644 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24644 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 703: -#line 6390 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6390 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->type|= UNIQUE_KEY_FLAG; lex->alter_info.flags|= Alter_info::ALTER_ADD_INDEX; } -#line 24654 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24654 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 704: -#line 6395 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6395 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->comment= (yyvsp[0].lex_str); } -#line 24660 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24660 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 705: -#line 6396 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6396 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->type|= NOT_NULL_FLAG; } -#line 24666 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24666 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 707: -#line 6399 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6399 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->type|= PRI_KEY_FLAG | NOT_NULL_FLAG; lex->alter_info.flags|= Alter_info::ALTER_ADD_INDEX; } -#line 24676 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24676 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 710: -#line 6410 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6410 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->gcol_info->set_field_stored(TRUE); } -#line 24684 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24684 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 711: -#line 6417 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6417 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /* "PARSE_GCOL_EXPR" can only be used by the SQL server @@ -24697,11 +24697,11 @@ MYSQL_YYABORT; } } -#line 24701 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24701 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 712: -#line 6433 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6433 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->gcol_info= new Generated_column(); if (!Lex->gcol_info) @@ -24727,172 +24727,172 @@ This would also get rid of some setters like set_field_stored(); */ } -#line 24731 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24731 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 713: -#line 6462 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6462 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->length= const_cast((yyvsp[-1].c_str)); (yyval.num)=(yyvsp[-2].num); } -#line 24740 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24740 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 714: -#line 6467 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6467 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)=(yyvsp[-2].num); Lex->length= const_cast((yyvsp[-1].precision).length); Lex->dec= const_cast((yyvsp[-1].precision).dec); } -#line 24750 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24750 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 715: -#line 6473 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6473 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->length= const_cast((yyvsp[-1].precision).length); Lex->dec= const_cast((yyvsp[-1].precision).dec); (yyval.num)=MYSQL_TYPE_FLOAT; } -#line 24760 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24760 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 716: -#line 6479 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6479 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->length= (char*) "1"; (yyval.num)=MYSQL_TYPE_BIT; } -#line 24769 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24769 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 717: -#line 6484 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6484 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->length= const_cast((yyvsp[0].c_str)); (yyval.num)=MYSQL_TYPE_BIT; } -#line 24778 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24778 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 718: -#line 6489 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6489 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->length= (char*) "1"; (yyval.num)=MYSQL_TYPE_TINY; } -#line 24787 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24787 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 719: -#line 6494 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6494 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->length= (char*) "1"; (yyval.num)=MYSQL_TYPE_TINY; } -#line 24796 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24796 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 720: -#line 6499 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6499 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->length= const_cast((yyvsp[-1].c_str)); Lex->charset= (yyvsp[0].charset_with_flags).charset; Lex->type|= (yyvsp[0].charset_with_flags).type_flags; (yyval.num)=MYSQL_TYPE_STRING; } -#line 24807 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24807 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 721: -#line 6506 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6506 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->length= (char*) "1"; Lex->charset= (yyvsp[0].charset_with_flags).charset; Lex->type|= (yyvsp[0].charset_with_flags).type_flags; (yyval.num)=MYSQL_TYPE_STRING; } -#line 24818 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24818 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 722: -#line 6513 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6513 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->length= const_cast((yyvsp[-1].c_str)); Lex->type|= (yyvsp[0].ulong_num); (yyval.num)=MYSQL_TYPE_STRING; Lex->charset=national_charset_info; } -#line 24829 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24829 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 723: -#line 6520 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6520 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->length= (char*) "1"; Lex->type|= (yyvsp[0].ulong_num); (yyval.num)=MYSQL_TYPE_STRING; Lex->charset=national_charset_info; } -#line 24840 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24840 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 724: -#line 6527 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6527 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->length= const_cast((yyvsp[0].c_str)); Lex->charset=&my_charset_bin; (yyval.num)=MYSQL_TYPE_STRING; } -#line 24850 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24850 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 725: -#line 6533 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6533 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->length= (char*) "1"; Lex->charset=&my_charset_bin; (yyval.num)=MYSQL_TYPE_STRING; } -#line 24860 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24860 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 726: -#line 6539 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6539 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->length= const_cast((yyvsp[-1].c_str)); Lex->charset= (yyvsp[0].charset_with_flags).charset; Lex->type|= (yyvsp[0].charset_with_flags).type_flags; (yyval.num)= MYSQL_TYPE_VARCHAR; } -#line 24871 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24871 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 727: -#line 6546 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6546 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->length= const_cast((yyvsp[-1].c_str)); Lex->type|= (yyvsp[0].ulong_num); (yyval.num)= MYSQL_TYPE_VARCHAR; Lex->charset=national_charset_info; } -#line 24882 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24882 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 728: -#line 6553 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6553 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->length= const_cast((yyvsp[0].c_str)); Lex->charset=&my_charset_bin; (yyval.num)= MYSQL_TYPE_VARCHAR; } -#line 24892 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24892 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 729: -#line 6559 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6559 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->length= const_cast((yyvsp[-1].c_str)); if (Lex->length) @@ -24908,26 +24908,26 @@ } (yyval.num)=MYSQL_TYPE_YEAR; } -#line 24912 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24912 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 730: -#line 6575 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6575 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)=MYSQL_TYPE_DATE; } -#line 24918 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24918 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 731: -#line 6577 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6577 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->dec= const_cast((yyvsp[0].c_str)); (yyval.num)= MYSQL_TYPE_TIME2; } -#line 24927 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24927 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 732: -#line 6582 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6582 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->dec= const_cast((yyvsp[0].c_str)); if (YYTHD->variables.sql_mode & MODE_MAXDB) @@ -24956,561 +24956,561 @@ (yyval.num)=MYSQL_TYPE_TIMESTAMP2; } } -#line 24960 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24960 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 733: -#line 6611 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6611 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->dec= const_cast((yyvsp[0].c_str)); (yyval.num)= MYSQL_TYPE_DATETIME2; } -#line 24969 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24969 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 734: -#line 6616 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6616 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->charset=&my_charset_bin; (yyval.num)=MYSQL_TYPE_TINY_BLOB; } -#line 24978 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24978 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 735: -#line 6621 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6621 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->length= const_cast((yyvsp[0].c_str)); Lex->charset=&my_charset_bin; (yyval.num)=MYSQL_TYPE_BLOB; } -#line 24988 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24988 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 736: -#line 6627 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6627 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->charset=&my_charset_bin; Lex->uint_geom_type= (uint)(yyvsp[0].num); (yyval.num)=MYSQL_TYPE_GEOMETRY; } -#line 24998 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 24998 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 737: -#line 6633 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6633 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->charset=&my_charset_bin; (yyval.num)=MYSQL_TYPE_MEDIUM_BLOB; } -#line 25007 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25007 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 738: -#line 6638 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6638 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->charset=&my_charset_bin; (yyval.num)=MYSQL_TYPE_LONG_BLOB; } -#line 25016 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25016 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 739: -#line 6643 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6643 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->charset=&my_charset_bin; (yyval.num)=MYSQL_TYPE_MEDIUM_BLOB; } -#line 25025 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25025 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 740: -#line 6648 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6648 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->charset= (yyvsp[0].charset_with_flags).charset; Lex->type|= (yyvsp[0].charset_with_flags).type_flags; (yyval.num)=MYSQL_TYPE_MEDIUM_BLOB; } -#line 25035 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25035 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 741: -#line 6654 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6654 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->charset= (yyvsp[0].charset_with_flags).charset; Lex->type|= (yyvsp[0].charset_with_flags).type_flags; (yyval.num)=MYSQL_TYPE_TINY_BLOB; } -#line 25045 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25045 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 742: -#line 6660 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6660 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->length= const_cast((yyvsp[-1].c_str)); Lex->charset= (yyvsp[0].charset_with_flags).charset; Lex->type|= (yyvsp[0].charset_with_flags).type_flags; (yyval.num)=MYSQL_TYPE_BLOB; } -#line 25056 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25056 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 743: -#line 6667 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6667 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->charset= (yyvsp[0].charset_with_flags).charset; Lex->type|= (yyvsp[0].charset_with_flags).type_flags; (yyval.num)=MYSQL_TYPE_MEDIUM_BLOB; } -#line 25066 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25066 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 744: -#line 6673 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6673 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->charset= (yyvsp[0].charset_with_flags).charset; Lex->type|= (yyvsp[0].charset_with_flags).type_flags; (yyval.num)=MYSQL_TYPE_LONG_BLOB; } -#line 25076 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25076 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 745: -#line 6679 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6679 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->length= const_cast((yyvsp[-1].precision).length); Lex->dec= const_cast((yyvsp[-1].precision).dec); (yyval.num)=MYSQL_TYPE_NEWDECIMAL; } -#line 25086 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25086 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 746: -#line 6685 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6685 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->length= const_cast((yyvsp[-1].precision).length); Lex->dec= const_cast((yyvsp[-1].precision).dec); (yyval.num)=MYSQL_TYPE_NEWDECIMAL; } -#line 25096 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25096 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 747: -#line 6691 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6691 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->length= const_cast((yyvsp[-1].precision).length); Lex->dec= const_cast((yyvsp[-1].precision).dec); (yyval.num)=MYSQL_TYPE_NEWDECIMAL; } -#line 25106 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25106 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 748: -#line 6697 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6697 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {Lex->interval_list.empty();} -#line 25112 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25112 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 749: -#line 6699 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6699 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->charset= (yyvsp[0].charset_with_flags).charset; Lex->type|= (yyvsp[0].charset_with_flags).type_flags; (yyval.num)=MYSQL_TYPE_ENUM; } -#line 25122 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25122 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 750: -#line 6705 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6705 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->interval_list.empty();} -#line 25128 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25128 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 751: -#line 6707 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6707 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->charset= (yyvsp[0].charset_with_flags).charset; Lex->type|= (yyvsp[0].charset_with_flags).type_flags; (yyval.num)=MYSQL_TYPE_SET; } -#line 25138 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25138 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 752: -#line 6713 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6713 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->charset= (yyvsp[0].charset_with_flags).charset; Lex->type|= (yyvsp[0].charset_with_flags).type_flags; (yyval.num)=MYSQL_TYPE_MEDIUM_BLOB; } -#line 25148 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25148 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 753: -#line 6719 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6719 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)=MYSQL_TYPE_LONGLONG; Lex->type|= (AUTO_INCREMENT_FLAG | NOT_NULL_FLAG | UNSIGNED_FLAG | UNIQUE_FLAG); } -#line 25158 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25158 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 754: -#line 6725 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6725 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->charset=&my_charset_bin; (yyval.num)=MYSQL_TYPE_JSON; } -#line 25167 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25167 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 755: -#line 6732 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6732 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= Field::GEOM_GEOMETRY; } -#line 25173 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25173 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 756: -#line 6733 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6733 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= Field::GEOM_GEOMETRYCOLLECTION; } -#line 25179 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25179 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 757: -#line 6735 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6735 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->length= const_cast(STRINGIFY_ARG (MAX_LEN_GEOM_POINT_FIELD)); (yyval.num)= Field::GEOM_POINT; } -#line 25189 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25189 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 758: -#line 6740 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6740 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= Field::GEOM_MULTIPOINT; } -#line 25195 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25195 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 759: -#line 6741 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6741 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= Field::GEOM_LINESTRING; } -#line 25201 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25201 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 760: -#line 6742 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6742 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= Field::GEOM_MULTILINESTRING; } -#line 25207 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25207 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 761: -#line 6743 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6743 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= Field::GEOM_POLYGON; } -#line 25213 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25213 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 762: -#line 6744 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6744 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= Field::GEOM_MULTIPOLYGON; } -#line 25219 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25219 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 763: -#line 6748 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6748 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 25225 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25225 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 764: -#line 6752 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6752 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 25231 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25231 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 765: -#line 6753 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6753 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 25237 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25237 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 766: -#line 6757 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6757 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 25243 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25243 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 767: -#line 6758 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6758 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 25249 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25249 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 768: -#line 6762 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6762 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 25255 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25255 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 769: -#line 6763 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6763 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 25261 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25261 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 770: -#line 6764 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6764 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 25267 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25267 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 771: -#line 6765 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6765 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 25273 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25273 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 772: -#line 6766 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6766 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 25279 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25279 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 773: -#line 6770 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6770 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)=MYSQL_TYPE_LONG; } -#line 25285 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25285 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 774: -#line 6771 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6771 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)=MYSQL_TYPE_TINY; } -#line 25291 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25291 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 775: -#line 6772 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6772 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)=MYSQL_TYPE_SHORT; } -#line 25297 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25297 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 776: -#line 6773 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6773 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)=MYSQL_TYPE_INT24; } -#line 25303 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25303 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 777: -#line 6774 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6774 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)=MYSQL_TYPE_LONGLONG; } -#line 25309 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25309 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 778: -#line 6779 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6779 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= YYTHD->variables.sql_mode & MODE_REAL_AS_FLOAT ? MYSQL_TYPE_FLOAT : MYSQL_TYPE_DOUBLE; } -#line 25318 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25318 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 779: -#line 6784 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6784 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)=MYSQL_TYPE_DOUBLE; } -#line 25324 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25324 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 780: -#line 6786 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6786 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)=MYSQL_TYPE_DOUBLE; } -#line 25330 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25330 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 781: -#line 6791 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6791 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.precision).length= NULL; (yyval.precision).dec= NULL; } -#line 25339 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25339 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 782: -#line 6796 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6796 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.precision).length= (yyvsp[0].c_str); (yyval.precision).dec= NULL; } -#line 25348 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25348 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 784: -#line 6805 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6805 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.precision).length= (yyvsp[-3].lex_str).str; (yyval.precision).dec= (yyvsp[-1].lex_str).str; } -#line 25357 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25357 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 785: -#line 6813 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6813 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.c_str)= NULL; } -#line 25363 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25363 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 786: -#line 6814 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6814 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.c_str)= (yyvsp[-1].lex_str).str; } -#line 25369 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25369 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 787: -#line 6818 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6818 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ulong_num)= 0; } -#line 25375 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25375 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 788: -#line 6819 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6819 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ulong_num)= 0; } -#line 25381 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25381 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 789: -#line 6821 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6821 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { int error; (yyval.ulong_num)= (ulong) my_strtoll10((yyvsp[-1].lex_str).str, NULL, &error); } -#line 25390 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25390 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 790: -#line 6828 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6828 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 25396 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25396 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 791: -#line 6829 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6829 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 25402 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25402 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 792: -#line 6833 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6833 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 25408 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25408 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 793: -#line 6834 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6834 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 25414 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25414 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 794: -#line 6838 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6838 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 25420 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25420 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 795: -#line 6839 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6839 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->type|= UNSIGNED_FLAG;} -#line 25426 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25426 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 796: -#line 6840 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6840 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->type|= UNSIGNED_FLAG | ZEROFILL_FLAG; } -#line 25432 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25432 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 797: -#line 6844 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6844 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.c_str)= (yyvsp[-1].lex_str).str; } -#line 25438 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25438 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 798: -#line 6845 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6845 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.c_str)= (yyvsp[-1].lex_str).str; } -#line 25444 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25444 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 799: -#line 6846 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6846 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.c_str)= (yyvsp[-1].lex_str).str; } -#line 25450 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25450 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 800: -#line 6847 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6847 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.c_str)= (yyvsp[-1].lex_str).str; } -#line 25456 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25456 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 801: -#line 6850 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6850 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.c_str)= NULL; /* use default length */ } -#line 25462 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25462 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 803: -#line 6856 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6856 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.precision).length= NULL; (yyval.precision).dec = NULL; } -#line 25471 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25471 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 805: -#line 6864 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6864 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 25477 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25477 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 806: -#line 6865 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6865 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 25483 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25483 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 807: -#line 6869 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6869 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 25489 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25489 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 809: -#line 6875 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6875 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->type&= ~ NOT_NULL_FLAG; Lex->type|= EXPLICIT_NULL_FLAG; } -#line 25498 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25498 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 810: -#line 6879 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6879 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->type|= NOT_NULL_FLAG; } -#line 25504 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25504 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 811: -#line 6880 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6880 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->default_value=(yyvsp[0].item); } -#line 25510 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25510 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 812: -#line 6882 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6882 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Item *item= new (YYTHD->mem_root) Item_func_now_local(static_cast((yyvsp[0].ulong_num))); @@ -25518,63 +25518,63 @@ MYSQL_YYABORT; Lex->on_update_value= item; } -#line 25522 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25522 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 813: -#line 6889 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6889 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->type|= AUTO_INCREMENT_FLAG | NOT_NULL_FLAG; } -#line 25528 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25528 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 814: -#line 6891 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6891 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->type|= AUTO_INCREMENT_FLAG | NOT_NULL_FLAG | UNIQUE_FLAG; lex->alter_info.flags|= Alter_info::ALTER_ADD_INDEX; } -#line 25538 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25538 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 815: -#line 6897 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6897 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->type|= PRI_KEY_FLAG | NOT_NULL_FLAG; lex->alter_info.flags|= Alter_info::ALTER_ADD_INDEX; } -#line 25548 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25548 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 816: -#line 6903 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6903 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->type|= UNIQUE_FLAG; lex->alter_info.flags|= Alter_info::ALTER_ADD_INDEX; } -#line 25558 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25558 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 817: -#line 6909 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6909 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->type|= UNIQUE_KEY_FLAG; lex->alter_info.flags|= Alter_info::ALTER_ADD_INDEX; } -#line 25568 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25568 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 818: -#line 6914 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6914 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->comment= (yyvsp[0].lex_str); } -#line 25574 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25574 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 819: -#line 6916 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6916 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (Lex->charset && !my_charset_same(Lex->charset,(yyvsp[0].charset))) { @@ -25587,68 +25587,68 @@ Lex->charset=(yyvsp[0].charset); } } -#line 25591 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25591 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 820: -#line 6929 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6929 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->type&= ~(FIELD_FLAGS_COLUMN_FORMAT_MASK); Lex->type|= (COLUMN_FORMAT_TYPE_DEFAULT << FIELD_FLAGS_COLUMN_FORMAT); } -#line 25601 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25601 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 821: -#line 6935 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6935 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->type&= ~(FIELD_FLAGS_COLUMN_FORMAT_MASK); Lex->type|= (COLUMN_FORMAT_TYPE_FIXED << FIELD_FLAGS_COLUMN_FORMAT); } -#line 25611 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25611 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 822: -#line 6941 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6941 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->type&= ~(FIELD_FLAGS_COLUMN_FORMAT_MASK); Lex->type|= (COLUMN_FORMAT_TYPE_DYNAMIC << FIELD_FLAGS_COLUMN_FORMAT); } -#line 25621 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25621 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 823: -#line 6947 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6947 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->type&= ~(FIELD_FLAGS_STORAGE_MEDIA_MASK); Lex->type|= (HA_SM_DEFAULT << FIELD_FLAGS_STORAGE_MEDIA); } -#line 25630 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25630 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 824: -#line 6952 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6952 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->type&= ~(FIELD_FLAGS_STORAGE_MEDIA_MASK); Lex->type|= (HA_SM_DISK << FIELD_FLAGS_STORAGE_MEDIA); } -#line 25639 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25639 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 825: -#line 6957 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6957 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->type&= ~(FIELD_FLAGS_STORAGE_MEDIA_MASK); Lex->type|= (HA_SM_MEMORY << FIELD_FLAGS_STORAGE_MEDIA); } -#line 25648 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25648 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 826: -#line 6966 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6966 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= (yyvsp[-1].num); @@ -25665,48 +25665,48 @@ MYSQL_YYABORT; } } -#line 25669 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25669 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 827: -#line 6987 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6987 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ulong_num)= (yyvsp[0].ulong_num); } -#line 25677 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25677 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 828: -#line 6993 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 6993 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= new (YYTHD->mem_root) Item_func_now_local(static_cast((yyvsp[0].ulong_num))); if ((yyval.item) == NULL) MYSQL_YYABORT; } -#line 25688 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25688 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 829: -#line 7000 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7000 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)=(yyvsp[0].item); } -#line 25694 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25694 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 830: -#line 7004 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7004 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 25700 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25700 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 831: -#line 7005 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7005 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 25706 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25706 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 832: -#line 7010 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7010 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (!((yyval.charset)=get_charset_by_csname((yyvsp[0].lex_str).str,MY_CS_PRIMARY,MYF(0)))) { @@ -25714,41 +25714,41 @@ MYSQL_YYABORT; } } -#line 25718 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25718 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 833: -#line 7017 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7017 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.charset)= &my_charset_bin; } -#line 25724 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25724 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 834: -#line 7021 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7021 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.charset)=(yyvsp[0].charset); } -#line 25730 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25730 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 835: -#line 7022 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7022 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.charset)=NULL; } -#line 25736 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25736 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 836: -#line 7026 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7026 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.charset)= NULL; } -#line 25742 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25742 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 837: -#line 7027 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7027 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.charset)= (yyvsp[0].charset); } -#line 25748 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25748 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 838: -#line 7032 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7032 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (!((yyval.charset)=get_charset_by_csname((yyvsp[0].lex_str).str,MY_CS_PRIMARY,MYF(0))) && !((yyval.charset)=get_old_charset_by_name((yyvsp[0].lex_str).str))) @@ -25757,104 +25757,104 @@ MYSQL_YYABORT; } } -#line 25761 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25761 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 839: -#line 7040 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7040 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.charset)= &my_charset_bin; } -#line 25767 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25767 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 840: -#line 7044 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7044 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.charset)=(yyvsp[0].charset); } -#line 25773 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25773 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 841: -#line 7045 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7045 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.charset)=NULL; } -#line 25779 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25779 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 842: -#line 7050 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7050 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (!((yyval.charset)= mysqld_collation_get_by_name((yyvsp[0].lex_str).str))) MYSQL_YYABORT; } -#line 25788 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25788 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 843: -#line 7057 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7057 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.charset)=NULL; } -#line 25794 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25794 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 844: -#line 7058 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7058 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.charset)=(yyvsp[0].charset); } -#line 25800 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25800 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 845: -#line 7062 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7062 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.charset)= NULL; } -#line 25806 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25806 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 846: -#line 7063 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7063 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.charset)= (yyvsp[0].charset); } -#line 25812 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25812 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 847: -#line 7067 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7067 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.charset)=(yyvsp[0].charset); } -#line 25818 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25818 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 848: -#line 7068 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7068 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.charset)=NULL; } -#line 25824 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25824 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 849: -#line 7072 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7072 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 25830 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25830 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 850: -#line 7073 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7073 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 25836 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25836 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 851: -#line 7078 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7078 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.charset)= &my_charset_latin1; } -#line 25842 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25842 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 852: -#line 7079 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7079 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.charset)= &my_charset_latin1_bin; } -#line 25848 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25848 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 853: -#line 7080 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7080 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.charset)= &my_charset_latin1_bin; } -#line 25854 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25854 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 854: -#line 7085 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7085 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (!((yyval.charset)= get_charset_by_csname("ucs2", MY_CS_PRIMARY,MYF(0)))) { @@ -25862,104 +25862,104 @@ MYSQL_YYABORT; } } -#line 25866 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25866 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 855: -#line 7093 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7093 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (!((yyval.charset)= mysqld_collation_get_by_name("ucs2_bin"))) MYSQL_YYABORT; } -#line 25875 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25875 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 856: -#line 7098 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7098 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (!((yyval.charset)= mysqld_collation_get_by_name("ucs2_bin"))) my_error(ER_UNKNOWN_COLLATION, MYF(0), "ucs2_bin"); } -#line 25884 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25884 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 857: -#line 7106 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7106 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.charset_with_flags).charset= NULL; (yyval.charset_with_flags).type_flags= 0; } -#line 25893 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25893 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 858: -#line 7111 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7111 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.charset_with_flags).charset= (yyvsp[0].charset); (yyval.charset_with_flags).type_flags= 0; } -#line 25902 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25902 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 859: -#line 7116 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7116 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.charset_with_flags).charset= (yyvsp[0].charset); (yyval.charset_with_flags).type_flags= 0; } -#line 25911 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25911 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 860: -#line 7121 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7121 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.charset_with_flags).charset= &my_charset_bin; (yyval.charset_with_flags).type_flags= 0; } -#line 25920 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25920 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 861: -#line 7126 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7126 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.charset_with_flags).charset= (yyvsp[-1].charset); (yyval.charset_with_flags).type_flags= (yyvsp[0].ulong_num); } -#line 25929 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25929 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 862: -#line 7131 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7131 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.charset_with_flags).charset= NULL; (yyval.charset_with_flags).type_flags= BINCMP_FLAG; } -#line 25938 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25938 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 863: -#line 7136 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7136 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.charset_with_flags).charset= (yyvsp[0].charset); (yyval.charset_with_flags).type_flags= BINCMP_FLAG; } -#line 25947 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25947 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 864: -#line 7143 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7143 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ulong_num)= 0; } -#line 25953 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25953 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 865: -#line 7144 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7144 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ulong_num)= BINCMP_FLAG; } -#line 25959 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25959 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 866: -#line 7149 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7149 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if ((yyvsp[0].ulong_num) == 0) { @@ -25967,148 +25967,148 @@ MYSQL_YYABORT; } } -#line 25971 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25971 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 867: -#line 7157 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7157 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ulong_num)= (yyvsp[-2].ulong_num); } -#line 25977 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25977 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 868: -#line 7161 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7161 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ulong_num)= 0; } -#line 25983 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25983 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 869: -#line 7162 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7162 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ulong_num)= 1 << MY_STRXFRM_DESC_SHIFT; } -#line 25989 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25989 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 870: -#line 7166 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7166 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ulong_num)= 1 << MY_STRXFRM_REVERSE_SHIFT; } -#line 25995 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 25995 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 871: -#line 7169 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7169 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ulong_num)= 0; } -#line 26001 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26001 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 872: -#line 7170 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7170 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ulong_num)= (yyvsp[0].ulong_num); } -#line 26007 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26007 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 873: -#line 7171 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7171 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ulong_num)= (yyvsp[-1].ulong_num) | (yyvsp[0].ulong_num); } -#line 26013 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26013 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 874: -#line 7172 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7172 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ulong_num)= (yyvsp[0].ulong_num) ; } -#line 26019 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26019 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 875: -#line 7177 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7177 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ulong_num)= (yyvsp[0].ulong_num) < 1 ? 1 : ((yyvsp[0].ulong_num) > MY_STRXFRM_NLEVELS ? MY_STRXFRM_NLEVELS : (yyvsp[0].ulong_num)); (yyval.ulong_num)--; } -#line 26028 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26028 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 876: -#line 7185 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7185 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ulong_num)= (1 | (yyvsp[0].ulong_num)) << (yyvsp[-1].ulong_num); } -#line 26036 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26036 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 877: -#line 7191 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7191 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ulong_num)= (yyvsp[0].ulong_num); } -#line 26042 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26042 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 878: -#line 7192 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7192 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ulong_num)|= (yyvsp[0].ulong_num); } -#line 26048 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26048 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 879: -#line 7197 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7197 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { uint start= (yyvsp[-2].ulong_num); uint end= (yyvsp[0].ulong_num); for ((yyval.ulong_num)= 0; start <= end; start++) (yyval.ulong_num)|= (1 << start); } -#line 26059 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26059 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 880: -#line 7206 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7206 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ulong_num)= (yyvsp[0].ulong_num); } -#line 26065 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26065 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 881: -#line 7207 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7207 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ulong_num)= (yyvsp[0].ulong_num); } -#line 26071 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26071 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 882: -#line 7211 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7211 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ulong_num)= 0; } -#line 26077 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26077 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 883: -#line 7212 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7212 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ulong_num)= (yyvsp[0].ulong_num); } -#line 26083 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26083 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 886: -#line 7226 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7226 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.table)=(yyvsp[-3].table); } -#line 26091 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26091 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 887: -#line 7233 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7233 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->ref_list.empty(); } -#line 26097 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26097 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 889: -#line 7239 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7239 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Key_part_spec *key= new Key_part_spec((yyvsp[0].lex_str), 0); if (key == NULL) MYSQL_YYABORT; Lex->ref_list.push_back(key); } -#line 26108 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26108 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 890: -#line 7246 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7246 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Key_part_spec *key= new Key_part_spec((yyvsp[0].lex_str), 0); if (key == NULL) @@ -26117,245 +26117,245 @@ lex->ref_list.empty(); lex->ref_list.push_back(key); } -#line 26121 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26121 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 891: -#line 7258 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7258 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->fk_match_option= FK_MATCH_UNDEF; } -#line 26127 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26127 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 892: -#line 7260 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7260 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->fk_match_option= FK_MATCH_FULL; } -#line 26133 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26133 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 893: -#line 7262 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7262 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->fk_match_option= FK_MATCH_PARTIAL; } -#line 26139 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26139 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 894: -#line 7264 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7264 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->fk_match_option= FK_MATCH_SIMPLE; } -#line 26145 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26145 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 895: -#line 7269 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7269 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->fk_update_opt= FK_OPTION_UNDEF; lex->fk_delete_opt= FK_OPTION_UNDEF; } -#line 26155 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26155 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 896: -#line 7275 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7275 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->fk_update_opt= (yyvsp[0].m_fk_option); lex->fk_delete_opt= FK_OPTION_UNDEF; } -#line 26165 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26165 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 897: -#line 7281 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7281 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->fk_update_opt= FK_OPTION_UNDEF; lex->fk_delete_opt= (yyvsp[0].m_fk_option); } -#line 26175 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26175 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 898: -#line 7288 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7288 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->fk_update_opt= (yyvsp[-3].m_fk_option); lex->fk_delete_opt= (yyvsp[0].m_fk_option); } -#line 26185 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26185 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 899: -#line 7295 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7295 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->fk_update_opt= (yyvsp[0].m_fk_option); lex->fk_delete_opt= (yyvsp[-3].m_fk_option); } -#line 26195 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26195 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 900: -#line 7303 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7303 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.m_fk_option)= FK_OPTION_RESTRICT; } -#line 26201 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26201 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 901: -#line 7304 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7304 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.m_fk_option)= FK_OPTION_CASCADE; } -#line 26207 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26207 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 902: -#line 7305 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7305 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.m_fk_option)= FK_OPTION_SET_NULL; } -#line 26213 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26213 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 903: -#line 7306 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7306 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.m_fk_option)= FK_OPTION_NO_ACTION; } -#line 26219 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26219 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 904: -#line 7307 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7307 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.m_fk_option)= FK_OPTION_DEFAULT; } -#line 26225 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26225 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 905: -#line 7311 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7311 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.key_type)= KEYTYPE_MULTIPLE; } -#line 26231 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26231 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 906: -#line 7315 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7315 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.key_type)= KEYTYPE_PRIMARY; } -#line 26237 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26237 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 907: -#line 7316 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7316 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.key_type)= KEYTYPE_UNIQUE; } -#line 26243 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26243 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 908: -#line 7320 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7320 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 26249 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26249 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 909: -#line 7321 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7321 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 26255 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26255 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 910: -#line 7325 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7325 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 26261 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26261 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 912: -#line 7330 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7330 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 26267 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26267 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 913: -#line 7331 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7331 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 26273 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26273 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 914: -#line 7332 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7332 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 26279 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26279 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 915: -#line 7336 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7336 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.key_type)= KEYTYPE_MULTIPLE; } -#line 26285 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26285 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 916: -#line 7337 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7337 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.key_type)= KEYTYPE_UNIQUE; } -#line 26291 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26291 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 917: -#line 7341 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7341 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.key_type)= KEYTYPE_FULLTEXT;} -#line 26297 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26297 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 918: -#line 7346 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7346 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.key_type)= KEYTYPE_SPATIAL; } -#line 26305 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26305 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 919: -#line 7352 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7352 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->key_create_info= default_key_create_info; } -#line 26313 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26313 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 922: -#line 7369 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7369 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 26319 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26319 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 924: -#line 7374 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7374 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 26325 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26325 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 926: -#line 7379 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7379 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 26331 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26331 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 934: -#line 7399 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7399 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->key_create_info.algorithm= (yyvsp[0].key_alg); } -#line 26337 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26337 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 935: -#line 7400 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7400 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->key_create_info.algorithm= (yyvsp[0].key_alg); } -#line 26343 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26343 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 936: -#line 7405 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7405 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->key_create_info.block_size= (yyvsp[0].ulong_num); } -#line 26349 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26349 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 937: -#line 7406 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7406 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->key_create_info.comment= (yyvsp[0].lex_str); } -#line 26355 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26355 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 942: -#line 7421 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7421 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX_CSTRING plugin_name= {(yyvsp[0].lex_str).str, (yyvsp[0].lex_str).length}; if (plugin_is_ready(plugin_name, MYSQL_FTPARSER_PLUGIN)) @@ -26366,55 +26366,55 @@ MYSQL_YYABORT; } } -#line 26370 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26370 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 943: -#line 7434 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7434 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.key_alg)= HA_KEY_ALG_BTREE; } -#line 26376 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26376 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 944: -#line 7435 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7435 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.key_alg)= HA_KEY_ALG_RTREE; } -#line 26382 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26382 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 945: -#line 7436 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7436 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.key_alg)= HA_KEY_ALG_HASH; } -#line 26388 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26388 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 946: -#line 7441 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7441 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->col_list.push_back((yyvsp[-1].key_part)); } -#line 26396 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26396 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 947: -#line 7445 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7445 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->col_list.push_back((yyvsp[-1].key_part)); } -#line 26404 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26404 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 948: -#line 7452 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7452 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.key_part)= new Key_part_spec((yyvsp[0].lex_str), 0); if ((yyval.key_part) == NULL) MYSQL_YYABORT; } -#line 26414 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26414 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 949: -#line 7458 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7458 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { int key_part_len= atoi((yyvsp[-1].lex_str).str); if (!key_part_len) @@ -26425,47 +26425,47 @@ if ((yyval.key_part) == NULL) MYSQL_YYABORT; } -#line 26429 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26429 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 950: -#line 7471 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7471 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lex_str)= null_lex_str; } -#line 26435 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26435 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 951: -#line 7472 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7472 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lex_str)= (yyvsp[0].lex_str); } -#line 26441 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26441 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 952: -#line 7476 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7476 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lex_str)= null_lex_str; } -#line 26447 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26447 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 953: -#line 7477 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7477 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lex_str)= (yyvsp[0].lex_str); } -#line 26453 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26453 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 954: -#line 7481 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7481 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->interval_list.push_back((yyvsp[0].string)); } -#line 26459 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26459 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 955: -#line 7482 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7482 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->interval_list.push_back((yyvsp[0].string)); } -#line 26465 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26465 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 956: -#line 7490 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7490 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= thd->lex; @@ -26492,11 +26492,11 @@ lex->create_last_non_select_table= lex->last_table(); DBUG_ASSERT(!lex->m_sql_cmd); } -#line 26496 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26496 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 957: -#line 7517 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7517 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= thd->lex; @@ -26508,20 +26508,20 @@ MYSQL_YYABORT; } } -#line 26512 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26512 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 958: -#line 7529 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7529 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_info.default_table_charset= NULL; Lex->create_info.used_fields= 0; } -#line 26521 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26521 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 959: -#line 7534 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7534 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->sql_command=SQLCOM_ALTER_DB; @@ -26530,11 +26530,11 @@ lex->copy_db_to(&lex->name.str, &lex->name.length)) MYSQL_YYABORT; } -#line 26534 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26534 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 960: -#line 7543 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7543 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; push_deprecated_warn_no_replacement(YYTHD, @@ -26547,11 +26547,11 @@ lex->sql_command= SQLCOM_ALTER_DB_UPGRADE; lex->name= (yyvsp[-4].lex_str); } -#line 26551 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26551 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 961: -#line 7556 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7556 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; @@ -26562,22 +26562,22 @@ } memset(&lex->sp_chistics, 0, sizeof(st_sp_chistics)); } -#line 26566 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26566 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 962: -#line 7567 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7567 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->sql_command= SQLCOM_ALTER_PROCEDURE; lex->spname= (yyvsp[-2].spname); } -#line 26577 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26577 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 963: -#line 7574 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7574 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; @@ -26588,22 +26588,22 @@ } memset(&lex->sp_chistics, 0, sizeof(st_sp_chistics)); } -#line 26592 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26592 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 964: -#line 7585 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7585 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->sql_command= SQLCOM_ALTER_FUNCTION; lex->spname= (yyvsp[-2].spname); } -#line 26603 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26603 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 965: -#line 7592 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7592 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; @@ -26614,17 +26614,17 @@ } lex->create_view_mode= VIEW_ALTER; } -#line 26618 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26618 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 966: -#line 7603 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7603 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 26624 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26624 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 967: -#line 7610 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7610 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; @@ -26636,17 +26636,17 @@ lex->create_view_algorithm= VIEW_ALGORITHM_UNDEFINED; lex->create_view_mode= VIEW_ALTER; } -#line 26640 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26640 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 968: -#line 7622 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7622 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 26646 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26646 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 969: -#line 7624 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7624 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /* It is safe to use Lex->spname because @@ -26662,11 +26662,11 @@ Lex->sql_command= SQLCOM_ALTER_EVENT; } -#line 26666 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26666 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 970: -#line 7644 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7644 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (!((yyvsp[-4].num) || (yyvsp[-3].num) || (yyvsp[-2].num) || (yyvsp[-1].num) || (yyvsp[0].num))) { @@ -26679,47 +26679,47 @@ */ Lex->sql_command= SQLCOM_ALTER_EVENT; } -#line 26683 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26683 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 971: -#line 7657 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7657 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->alter_tablespace_info->ts_cmd_type= ALTER_TABLESPACE; } -#line 26692 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26692 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 972: -#line 7662 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7662 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->alter_tablespace_info->ts_cmd_type= ALTER_LOGFILE_GROUP; } -#line 26701 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26701 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 973: -#line 7667 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7667 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->alter_tablespace_info->ts_cmd_type= CHANGE_FILE_TABLESPACE; } -#line 26710 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26710 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 974: -#line 7672 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7672 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->alter_tablespace_info->ts_cmd_type= ALTER_ACCESS_MODE_TABLESPACE; } -#line 26719 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26719 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 975: -#line 7677 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7677 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->sql_command= SQLCOM_ALTER_SERVER; @@ -26727,74 +26727,74 @@ lex->m_sql_cmd= new (YYTHD->mem_root) Sql_cmd_alter_server(&Lex->server_options); } -#line 26731 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26731 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 977: -#line 7687 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7687 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyvsp[-3].lex_user)->auth.str= (yyvsp[0].lex_str).str; (yyvsp[-3].lex_user)->auth.length= (yyvsp[0].lex_str).length; (yyvsp[-3].lex_user)->uses_identified_by_clause= true; Lex->contains_plaintext_password= true; } -#line 26742 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26742 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 978: -#line 7693 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7693 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { MAKE_CMD((yyvsp[0].statement)); } -#line 26748 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26748 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 979: -#line 7698 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7698 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->sql_command= SQLCOM_ALTER_USER; lex->drop_if_exists= (yyvsp[-1].num); } -#line 26758 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26758 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 980: -#line 7706 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7706 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 26764 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26764 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 984: -#line 7717 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7717 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->alter_password.update_account_locked_column= true; lex->alter_password.account_locked= false; } -#line 26774 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26774 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 985: -#line 7723 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7723 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->alter_password.update_account_locked_column= true; lex->alter_password.account_locked= true; } -#line 26784 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26784 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 986: -#line 7729 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7729 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->alter_password.update_password_expired_fields= true; lex->alter_password.update_password_expired_column= true; } -#line 26794 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26794 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 987: -#line 7735 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7735 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; if ((yyvsp[-1].ulong_num) == 0 || (yyvsp[-1].ulong_num) > UINT_MAX16) @@ -26808,93 +26808,93 @@ lex->alter_password.expire_after_days= (yyvsp[-1].ulong_num); lex->alter_password.use_default_password_lifetime= false; } -#line 26812 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26812 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 988: -#line 7749 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7749 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->alter_password.update_password_expired_fields= true; lex->alter_password.use_default_password_lifetime= false; } -#line 26822 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26822 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 989: -#line 7755 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7755 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->alter_password.update_password_expired_fields= true; } -#line 26830 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26830 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 990: -#line 7761 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7761 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 26836 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26836 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 991: -#line 7765 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7765 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 26842 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26842 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 993: -#line 7770 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7770 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 26848 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26848 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 994: -#line 7771 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7771 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 26854 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26854 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 995: -#line 7776 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7776 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->mqh.questions=(yyvsp[0].ulong_num); lex->mqh.specified_limits|= USER_RESOURCES::QUERIES_PER_HOUR; } -#line 26864 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26864 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 996: -#line 7782 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7782 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->mqh.updates=(yyvsp[0].ulong_num); lex->mqh.specified_limits|= USER_RESOURCES::UPDATES_PER_HOUR; } -#line 26874 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26874 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 997: -#line 7788 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7788 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->mqh.conn_per_hour= (yyvsp[0].ulong_num); lex->mqh.specified_limits|= USER_RESOURCES::CONNECTIONS_PER_HOUR; } -#line 26884 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26884 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 998: -#line 7794 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7794 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->mqh.user_conn= (yyvsp[0].ulong_num); lex->mqh.specified_limits|= USER_RESOURCES::USER_CONNECTIONS; } -#line 26894 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26894 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 999: -#line 7803 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7803 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /* empty LEX_USER means current_user */ LEX_USER *curr_user; @@ -26905,41 +26905,41 @@ Lex->users_list.push_back(curr_user); (yyval.lex_user)= curr_user; } -#line 26909 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26909 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1000: -#line 7816 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7816 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= 0;} -#line 26915 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26915 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1001: -#line 7817 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7817 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= 1; } -#line 26921 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26921 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1002: -#line 7818 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7818 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= 1; } -#line 26927 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26927 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1003: -#line 7819 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7819 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= 1; } -#line 26933 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26933 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1004: -#line 7823 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7823 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= 0;} -#line 26939 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26939 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1005: -#line 7825 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7825 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /* Use lex's spname to hold the new name. @@ -26948,35 +26948,35 @@ Lex->spname= (yyvsp[0].spname); (yyval.num)= 1; } -#line 26952 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26952 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1006: -#line 7836 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7836 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= 0;} -#line 26958 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26958 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1007: -#line 7837 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7837 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= 1; } -#line 26964 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26964 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1008: -#line 7841 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7841 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lex_str).str= 0; (yyval.lex_str).length= 0; } -#line 26970 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26970 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1009: -#line 7842 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7842 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lex_str)= (yyvsp[0].lex_str); } -#line 26976 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26976 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1019: -#line 7862 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7862 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->m_sql_cmd= new (YYTHD->mem_root) Sql_cmd_discard_import_tablespace( @@ -26984,11 +26984,11 @@ if (Lex->m_sql_cmd == NULL) MYSQL_YYABORT; } -#line 26988 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 26988 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1020: -#line 7870 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7870 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->m_sql_cmd= new (YYTHD->mem_root) Sql_cmd_discard_import_tablespace( @@ -26996,29 +26996,29 @@ if (Lex->m_sql_cmd == NULL) MYSQL_YYABORT; } -#line 27000 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27000 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1022: -#line 7886 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7886 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->alter_info.flags|= Alter_info::ALTER_DROP_PARTITION; } -#line 27008 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27008 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1023: -#line 7891 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7891 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->alter_info.flags|= Alter_info::ALTER_REBUILD_PARTITION; lex->no_write_to_binlog= (yyvsp[-1].num); } -#line 27018 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27018 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1024: -#line 7898 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7898 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= thd->lex; @@ -27030,11 +27030,11 @@ if (lex->m_sql_cmd == NULL) MYSQL_YYABORT; } -#line 27034 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27034 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1026: -#line 7912 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7912 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= thd->lex; @@ -27046,11 +27046,11 @@ if (lex->m_sql_cmd == NULL) MYSQL_YYABORT; } -#line 27050 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27050 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1027: -#line 7924 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7924 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= thd->lex; @@ -27061,11 +27061,11 @@ if (lex->m_sql_cmd == NULL) MYSQL_YYABORT; } -#line 27065 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27065 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1029: -#line 7937 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7937 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= thd->lex; @@ -27077,22 +27077,22 @@ if (lex->m_sql_cmd == NULL) MYSQL_YYABORT; } -#line 27081 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27081 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1031: -#line 7950 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7950 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->alter_info.flags|= Alter_info::ALTER_COALESCE_PARTITION; lex->no_write_to_binlog= (yyvsp[-1].num); lex->alter_info.num_parts= (yyvsp[0].ulong_num); } -#line 27092 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27092 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1032: -#line 7957 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7957 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= thd->lex; @@ -27103,11 +27103,11 @@ if (lex->m_sql_cmd == NULL) MYSQL_YYABORT; } -#line 27107 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27107 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1034: -#line 7970 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7970 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= thd->lex; @@ -27132,11 +27132,11 @@ if (lex->m_sql_cmd == NULL) MYSQL_YYABORT; } -#line 27136 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27136 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1035: -#line 7996 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 7996 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->m_sql_cmd= new (YYTHD->mem_root) Sql_cmd_discard_import_tablespace( @@ -27144,11 +27144,11 @@ if (Lex->m_sql_cmd == NULL) MYSQL_YYABORT; } -#line 27148 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27148 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1036: -#line 8005 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8005 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->m_sql_cmd= new (YYTHD->mem_root) Sql_cmd_discard_import_tablespace( @@ -27156,44 +27156,44 @@ if (Lex->m_sql_cmd == NULL) MYSQL_YYABORT; } -#line 27160 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27160 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1039: -#line 8021 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8021 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->alter_info.with_validation= Alter_info::ALTER_WITH_VALIDATION; } -#line 27168 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27168 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1040: -#line 8025 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8025 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->alter_info.with_validation= Alter_info::ALTER_WITHOUT_VALIDATION; } -#line 27177 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27177 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1041: -#line 8033 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8033 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->alter_info.flags|= Alter_info::ALTER_REMOVE_PARTITIONING; } -#line 27185 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27185 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1042: -#line 8040 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8040 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->alter_info.flags|= Alter_info::ALTER_ALL_PARTITION; } -#line 27193 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27193 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1044: -#line 8048 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8048 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->part_info= new partition_info(); @@ -27205,34 +27205,34 @@ lex->alter_info.flags|= Alter_info::ALTER_ADD_PARTITION; lex->no_write_to_binlog= (yyvsp[0].num); } -#line 27209 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27209 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1045: -#line 8060 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8060 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 27215 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27215 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1047: -#line 8066 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8066 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->part_info->num_parts= lex->part_info->partitions.elements; } -#line 27224 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27224 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1048: -#line 8071 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8071 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->part_info->num_parts= (yyvsp[0].ulong_num); } -#line 27232 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27232 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1049: -#line 8078 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8078 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->part_info= new partition_info(); @@ -27243,48 +27243,48 @@ } lex->no_write_to_binlog= (yyvsp[0].num); } -#line 27247 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27247 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1051: -#line 8093 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8093 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->alter_info.flags|= Alter_info::ALTER_TABLE_REORG; } -#line 27255 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27255 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1052: -#line 8097 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8097 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->alter_info.flags|= Alter_info::ALTER_REORGANIZE_PARTITION; } -#line 27263 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27263 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1053: -#line 8101 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8101 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { partition_info *part_info= Lex->part_info; part_info->num_parts= part_info->partitions.elements; } -#line 27272 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27272 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1054: -#line 8108 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8108 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 27278 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27278 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1055: -#line 8109 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8109 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 27284 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27284 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1056: -#line 8114 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8114 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { String *s= new (YYTHD->mem_root) String((const char *) (yyvsp[0].lex_str).str, (yyvsp[0].lex_str).length, @@ -27297,56 +27297,56 @@ MYSQL_YYABORT; } } -#line 27301 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27301 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1062: -#line 8145 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8145 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->change=0; lex->alter_info.flags|= Alter_info::ALTER_ADD_COLUMN; } -#line 27311 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27311 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1063: -#line 8154 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8154 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_last_non_select_table= Lex->last_table(); } -#line 27319 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27319 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1064: -#line 8158 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8158 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_last_non_select_table= Lex->last_table(); Lex->alter_info.flags|= Alter_info::ALTER_ADD_INDEX; } -#line 27328 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27328 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1066: -#line 8164 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8164 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->change= (yyvsp[0].lex_str).str; lex->alter_info.flags|= Alter_info::ALTER_CHANGE_COLUMN; } -#line 27338 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27338 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1067: -#line 8170 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8170 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_last_non_select_table= Lex->last_table(); } -#line 27346 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27346 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1068: -#line 8174 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8174 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->length=lex->dec=0; lex->type=0; @@ -27356,11 +27356,11 @@ lex->alter_info.flags|= Alter_info::ALTER_CHANGE_COLUMN; lex->gcol_info= 0; } -#line 27360 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27360 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1069: -#line 8184 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8184 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; if (add_field_to_list(lex->thd,&(yyvsp[-2].lex_str), @@ -27373,19 +27373,19 @@ lex->gcol_info)) MYSQL_YYABORT; } -#line 27377 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27377 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1070: -#line 8197 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8197 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_last_non_select_table= Lex->last_table(); } -#line 27385 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27385 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1071: -#line 8201 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8201 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; Alter_drop *ad= new Alter_drop(Alter_drop::COLUMN, (yyvsp[-1].lex_str).str); @@ -27394,11 +27394,11 @@ lex->alter_info.drop_list.push_back(ad); lex->alter_info.flags|= Alter_info::ALTER_DROP_COLUMN; } -#line 27398 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27398 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1072: -#line 8210 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8210 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; Alter_drop *ad= new Alter_drop(Alter_drop::FOREIGN_KEY, (yyvsp[0].lex_str).str); @@ -27407,11 +27407,11 @@ lex->alter_info.drop_list.push_back(ad); lex->alter_info.flags|= Alter_info::DROP_FOREIGN_KEY; } -#line 27411 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27411 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1073: -#line 8219 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8219 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; Alter_drop *ad= new Alter_drop(Alter_drop::KEY, primary_key_name); @@ -27420,11 +27420,11 @@ lex->alter_info.drop_list.push_back(ad); lex->alter_info.flags|= Alter_info::ALTER_DROP_INDEX; } -#line 27424 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27424 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1074: -#line 8228 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8228 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; Alter_drop *ad= new Alter_drop(Alter_drop::KEY, (yyvsp[0].lex_str).str); @@ -27433,31 +27433,31 @@ lex->alter_info.drop_list.push_back(ad); lex->alter_info.flags|= Alter_info::ALTER_DROP_INDEX; } -#line 27437 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27437 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1075: -#line 8237 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8237 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->alter_info.keys_onoff= Alter_info::DISABLE; lex->alter_info.flags|= Alter_info::ALTER_KEYS_ONOFF; } -#line 27447 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27447 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1076: -#line 8243 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8243 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->alter_info.keys_onoff= Alter_info::ENABLE; lex->alter_info.flags|= Alter_info::ALTER_KEYS_ONOFF; } -#line 27457 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27457 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1077: -#line 8249 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8249 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; Alter_column *ac= new Alter_column((yyvsp[-3].lex_str).str,(yyvsp[0].item)); @@ -27466,11 +27466,11 @@ lex->alter_info.alter_list.push_back(ac); lex->alter_info.flags|= Alter_info::ALTER_CHANGE_COLUMN_DEFAULT; } -#line 27470 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27470 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1078: -#line 8258 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8258 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; Alter_column *ac= new Alter_column((yyvsp[-2].lex_str).str, (Item*) 0); @@ -27479,11 +27479,11 @@ lex->alter_info.alter_list.push_back(ac); lex->alter_info.flags|= Alter_info::ALTER_CHANGE_COLUMN_DEFAULT; } -#line 27483 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27483 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1079: -#line 8267 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8267 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; size_t dummy; @@ -27513,11 +27513,11 @@ lex->name.length= (yyvsp[0].table)->table.length; lex->alter_info.flags|= Alter_info::ALTER_RENAME; } -#line 27517 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27517 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1080: -#line 8297 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8297 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; Alter_rename_key *ak= new (YYTHD->mem_root) @@ -27527,11 +27527,11 @@ lex->alter_info.alter_rename_key_list.push_back(ak); lex->alter_info.flags|= Alter_info::ALTER_RENAME_INDEX; } -#line 27531 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27531 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1081: -#line 8307 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8307 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (!(yyvsp[-1].charset)) { @@ -27552,11 +27552,11 @@ HA_CREATE_USED_DEFAULT_CHARSET); lex->alter_info.flags|= Alter_info::ALTER_OPTIONS; } -#line 27556 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27556 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1082: -#line 8328 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8328 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->alter_info.flags|= Alter_info::ALTER_OPTIONS; @@ -27566,45 +27566,45 @@ lex->create_info.used_fields&= ~HA_CREATE_USED_ENGINE; } } -#line 27570 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27570 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1083: -#line 8338 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8338 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->alter_info.flags|= Alter_info::ALTER_RECREATE; } -#line 27578 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27578 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1084: -#line 8342 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8342 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->alter_info.flags|= Alter_info::ALTER_ORDER; } -#line 27587 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27587 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1085: -#line 8347 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8347 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->alter_info.flags|= Alter_info::ALTER_UPGRADE_PARTITIONING; } -#line 27595 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27595 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1094: -#line 8367 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8367 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->alter_info.requested_algorithm= Alter_info::ALTER_TABLE_ALGORITHM_DEFAULT; } -#line 27604 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27604 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1095: -#line 8372 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8372 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (Lex->alter_info.set_requested_algorithm(&(yyvsp[0].lex_str))) { @@ -27612,20 +27612,20 @@ MYSQL_YYABORT; } } -#line 27616 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27616 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1096: -#line 8383 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8383 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->alter_info.requested_lock= Alter_info::ALTER_TABLE_LOCK_DEFAULT; } -#line 27625 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27625 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1097: -#line 8388 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8388 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (Lex->alter_info.set_requested_lock(&(yyvsp[0].lex_str))) { @@ -27633,136 +27633,136 @@ MYSQL_YYABORT; } } -#line 27637 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27637 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1098: -#line 8398 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8398 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 27643 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27643 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1099: -#line 8399 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8399 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 27649 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27649 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1100: -#line 8403 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8403 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.is_not_empty)= false; } -#line 27655 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27655 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1101: -#line 8404 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8404 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.is_not_empty)= true; } -#line 27661 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27661 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1102: -#line 8408 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8408 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->drop_mode= DROP_DEFAULT; } -#line 27667 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27667 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1103: -#line 8409 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8409 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->drop_mode= DROP_RESTRICT; } -#line 27673 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27673 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1104: -#line 8410 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8410 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->drop_mode= DROP_CASCADE; } -#line 27679 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27679 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1105: -#line 8414 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8414 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 27685 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27685 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1106: -#line 8416 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8416 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { store_position_for_column((yyvsp[0].lex_str).str); Lex->alter_info.flags |= Alter_info::ALTER_COLUMN_ORDER; } -#line 27694 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27694 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1107: -#line 8421 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8421 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { store_position_for_column(first_keyword); Lex->alter_info.flags |= Alter_info::ALTER_COLUMN_ORDER; } -#line 27703 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27703 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1108: -#line 8428 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8428 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 27709 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27709 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1109: -#line 8429 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8429 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 27715 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27715 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1110: -#line 8430 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8430 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 27721 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27721 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1111: -#line 8431 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8431 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 27727 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27727 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1112: -#line 8436 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8436 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->sql_command = SQLCOM_START_GROUP_REPLICATION; } -#line 27736 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27736 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1113: -#line 8441 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8441 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->sql_command = SQLCOM_STOP_GROUP_REPLICATION; } -#line 27745 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27745 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1114: -#line 8448 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8448 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 27751 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27751 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1115: -#line 8450 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8450 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->sql_command = SQLCOM_SLAVE_STOP; lex->type = 0; lex->slave_thd_opt= (yyvsp[-1].num); } -#line 27762 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27762 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1116: -#line 8460 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8460 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; /* Clean previous slave connection values */ @@ -27773,11 +27773,11 @@ lex->mi.set_unspecified(); lex->slave_thd_opt= (yyvsp[0].num); } -#line 27777 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27777 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1117: -#line 8475 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8475 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /* It is not possible to set user's information when @@ -27794,11 +27794,11 @@ MYSQL_YYABORT; } } -#line 27798 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27798 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1119: -#line 8496 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8496 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->sql_command= SQLCOM_BEGIN; @@ -27811,189 +27811,189 @@ } lex->start_transaction_opt= (yyvsp[0].num); } -#line 27815 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27815 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1120: -#line 8512 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8512 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= 0; } -#line 27823 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27823 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1121: -#line 8516 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8516 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= (yyvsp[0].num); } -#line 27831 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27831 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1122: -#line 8523 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8523 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= (yyvsp[0].num); } -#line 27839 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27839 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1123: -#line 8527 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8527 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= (yyvsp[-2].num) | (yyvsp[0].num); } -#line 27847 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27847 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1124: -#line 8534 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8534 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= MYSQL_START_TRANS_OPT_WITH_CONS_SNAPSHOT; } -#line 27855 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27855 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1125: -#line 8538 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8538 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= MYSQL_START_TRANS_OPT_READ_ONLY; } -#line 27863 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27863 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1126: -#line 8542 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8542 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= MYSQL_START_TRANS_OPT_READ_WRITE; } -#line 27871 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27871 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1128: -#line 8553 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8553 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /* empty */ } -#line 27879 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27879 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1129: -#line 8557 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8557 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->slave_connection.user= (yyvsp[0].lex_str).str; } -#line 27887 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27887 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1130: -#line 8563 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8563 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /* empty */ } -#line 27895 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27895 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1131: -#line 8567 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8567 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->slave_connection.password= (yyvsp[0].lex_str).str; Lex->contains_plaintext_password= true; } -#line 27904 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27904 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1132: -#line 8573 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8573 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /* empty */ } -#line 27912 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27912 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1133: -#line 8577 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8577 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->slave_connection.plugin_auth= (yyvsp[0].lex_str).str; } -#line 27920 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27920 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1134: -#line 8583 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8583 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /* empty */ } -#line 27928 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27928 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1135: -#line 8587 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8587 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->slave_connection.plugin_dir= (yyvsp[0].lex_str).str; } -#line 27936 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27936 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1136: -#line 8594 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8594 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= 0; } -#line 27944 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27944 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1137: -#line 8598 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8598 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= (yyvsp[0].num); } -#line 27952 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27952 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1138: -#line 8605 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8605 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= (yyvsp[0].num); } -#line 27960 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27960 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1139: -#line 8609 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8609 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= (yyvsp[-2].num) | (yyvsp[0].num); } -#line 27968 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27968 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1140: -#line 8616 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8616 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= SLAVE_SQL; } -#line 27976 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27976 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1141: -#line 8620 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8620 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= SLAVE_IO; } -#line 27984 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27984 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1142: -#line 8627 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8627 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->mi.slave_until= false; } -#line 27993 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 27993 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1143: -#line 8632 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8632 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; if (((lex->mi.log_file_name || lex->mi.pos) && @@ -28016,72 +28016,72 @@ } lex->mi.slave_until= true; } -#line 28020 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28020 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1146: -#line 8660 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8660 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->mi.gtid= (yyvsp[0].lex_str).str; Lex->mi.gtid_until_condition= LEX_MASTER_INFO::UNTIL_SQL_BEFORE_GTIDS; } -#line 28029 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28029 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1147: -#line 8665 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8665 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->mi.gtid= (yyvsp[0].lex_str).str; Lex->mi.gtid_until_condition= LEX_MASTER_INFO::UNTIL_SQL_AFTER_GTIDS; } -#line 28038 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28038 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1148: -#line 8670 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8670 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->mi.until_after_gaps= true; } -#line 28046 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28046 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1149: -#line 8677 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8677 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->sql_command = SQLCOM_CHECKSUM; /* Will be overriden during execution. */ YYPS->m_lock_type= TL_UNLOCK; } -#line 28057 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28057 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1150: -#line 8684 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8684 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 28063 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28063 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1151: -#line 8688 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8688 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->check_opt.flags= 0; } -#line 28069 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28069 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1152: -#line 8689 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8689 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->check_opt.flags= T_QUICK; } -#line 28075 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28075 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1153: -#line 8690 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8690 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->check_opt.flags= T_EXTEND; } -#line 28081 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28081 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1154: -#line 8695 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8695 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->sql_command = SQLCOM_REPAIR; @@ -28091,11 +28091,11 @@ /* Will be overriden during execution. */ YYPS->m_lock_type= TL_UNLOCK; } -#line 28095 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28095 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1155: -#line 8705 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8705 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX* lex= thd->lex; @@ -28104,53 +28104,53 @@ if (lex->m_sql_cmd == NULL) MYSQL_YYABORT; } -#line 28108 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28108 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1156: -#line 8716 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8716 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->check_opt.flags = T_MEDIUM; } -#line 28114 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28114 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1157: -#line 8717 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8717 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 28120 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28120 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1158: -#line 8721 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8721 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 28126 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28126 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1159: -#line 8722 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8722 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 28132 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28132 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1160: -#line 8726 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8726 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->check_opt.flags|= T_QUICK; } -#line 28138 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28138 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1161: -#line 8727 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8727 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->check_opt.flags|= T_EXTEND; } -#line 28144 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28144 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1162: -#line 8728 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8728 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->check_opt.sql_flags|= TT_USEFRM; } -#line 28150 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28150 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1163: -#line 8733 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8733 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->sql_command = SQLCOM_ANALYZE; @@ -28160,11 +28160,11 @@ /* Will be overriden during execution. */ YYPS->m_lock_type= TL_UNLOCK; } -#line 28164 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28164 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1164: -#line 8743 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8743 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX* lex= thd->lex; @@ -28173,20 +28173,20 @@ if (lex->m_sql_cmd == NULL) MYSQL_YYABORT; } -#line 28177 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28177 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1165: -#line 8755 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8755 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->sql_command = SQLCOM_BINLOG_BASE64_EVENT; Lex->comment= (yyvsp[0].lex_str); } -#line 28186 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28186 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1166: -#line 8763 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8763 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; @@ -28201,11 +28201,11 @@ /* Will be overriden during execution. */ YYPS->m_lock_type= TL_UNLOCK; } -#line 28205 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28205 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1167: -#line 8778 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8778 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX* lex= thd->lex; @@ -28214,71 +28214,71 @@ if (lex->m_sql_cmd == NULL) MYSQL_YYABORT; } -#line 28218 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28218 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1168: -#line 8789 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8789 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->check_opt.flags = T_MEDIUM; } -#line 28224 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28224 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1169: -#line 8790 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8790 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 28230 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28230 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1170: -#line 8794 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8794 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 28236 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28236 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1171: -#line 8795 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8795 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 28242 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28242 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1172: -#line 8799 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8799 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->check_opt.flags|= T_QUICK; } -#line 28248 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28248 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1173: -#line 8800 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8800 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->check_opt.flags|= T_FAST; } -#line 28254 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28254 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1174: -#line 8801 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8801 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->check_opt.flags|= T_MEDIUM; } -#line 28260 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28260 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1175: -#line 8802 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8802 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->check_opt.flags|= T_EXTEND; } -#line 28266 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28266 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1176: -#line 8803 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8803 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->check_opt.flags|= T_CHECK_ONLY_CHANGED; } -#line 28272 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28272 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1177: -#line 8804 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8804 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->check_opt.sql_flags|= TT_FOR_UPGRADE; } -#line 28278 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28278 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1178: -#line 8809 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8809 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->sql_command = SQLCOM_OPTIMIZE; @@ -28288,11 +28288,11 @@ /* Will be overriden during execution. */ YYPS->m_lock_type= TL_UNLOCK; } -#line 28292 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28292 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1179: -#line 8819 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8819 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX* lex= thd->lex; @@ -28301,69 +28301,69 @@ if (lex->m_sql_cmd == NULL) MYSQL_YYABORT; } -#line 28305 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28305 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1180: -#line 8830 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8830 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= 0; } -#line 28311 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28311 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1181: -#line 8831 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8831 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= 1; } -#line 28317 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28317 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1182: -#line 8832 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8832 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= 1; } -#line 28323 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28323 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1183: -#line 8837 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8837 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->sql_command= SQLCOM_RENAME_TABLE; } -#line 28331 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28331 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1184: -#line 8841 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8841 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 28337 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28337 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1185: -#line 8843 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8843 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->sql_command = SQLCOM_RENAME_USER; } -#line 28345 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28345 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1186: -#line 8850 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8850 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (Lex->users_list.push_back((yyvsp[-2].lex_user)) || Lex->users_list.push_back((yyvsp[0].lex_user))) MYSQL_YYABORT; } -#line 28354 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28354 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1187: -#line 8855 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8855 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (Lex->users_list.push_back((yyvsp[-2].lex_user)) || Lex->users_list.push_back((yyvsp[0].lex_user))) MYSQL_YYABORT; } -#line 28363 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28363 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1190: -#line 8868 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8868 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; SELECT_LEX *sl= Select; @@ -28373,208 +28373,208 @@ TL_IGNORE, MDL_EXCLUSIVE)) MYSQL_YYABORT; } -#line 28377 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28377 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1191: -#line 8881 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8881 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->alter_info.reset(); } -#line 28385 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28385 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1192: -#line 8885 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8885 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->sql_command= SQLCOM_ASSIGN_TO_KEYCACHE; lex->ident= (yyvsp[0].lex_str); } -#line 28395 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28395 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1197: -#line 8904 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8904 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (!Select->add_table_to_list(YYTHD, (yyvsp[-1].table), NULL, 0, TL_READ, MDL_SHARED_READ, (yyvsp[0].key_usage_list))) MYSQL_YYABORT; } -#line 28406 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28406 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1198: -#line 8914 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8914 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (!Select->add_table_to_list(YYTHD, (yyvsp[-2].table), NULL, 0, TL_READ, MDL_SHARED_READ, (yyvsp[0].key_usage_list))) MYSQL_YYABORT; } -#line 28417 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28417 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1199: -#line 8923 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8923 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lex_str)= (yyvsp[0].lex_str); } -#line 28423 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28423 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1200: -#line 8924 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8924 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lex_str) = default_key_cache_base; } -#line 28429 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28429 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1201: -#line 8929 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8929 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->sql_command=SQLCOM_PRELOAD_KEYS; lex->alter_info.reset(); } -#line 28439 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28439 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1202: -#line 8935 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8935 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 28445 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28445 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1207: -#line 8950 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8950 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (!Select->add_table_to_list(YYTHD, (yyvsp[-2].table), NULL, (yyvsp[0].num), TL_READ, MDL_SHARED_READ, (yyvsp[-1].key_usage_list))) MYSQL_YYABORT; } -#line 28456 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28456 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1208: -#line 8960 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8960 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (!Select->add_table_to_list(YYTHD, (yyvsp[-3].table), NULL, (yyvsp[0].num), TL_READ, MDL_SHARED_READ, (yyvsp[-1].key_usage_list))) MYSQL_YYABORT; } -#line 28467 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28467 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1209: -#line 8970 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8970 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->alter_info.flags|= Alter_info::ALTER_ADMIN_PARTITION; } -#line 28475 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28475 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1212: -#line 8981 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8981 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.key_usage_list)= NULL; } -#line 28481 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28481 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1213: -#line 8983 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8983 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { init_index_hints((yyvsp[-1].key_usage_list), INDEX_HINT_USE, old_mode ? INDEX_HINT_MASK_JOIN : INDEX_HINT_MASK_ALL); (yyval.key_usage_list)= (yyvsp[-1].key_usage_list); } -#line 28492 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28492 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1214: -#line 8993 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8993 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= 0; } -#line 28498 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28498 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1215: -#line 8994 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 8994 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= TL_OPTION_IGNORE_LEAVES; } -#line 28504 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28504 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1216: -#line 9004 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9004 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.select)= NEW_PTN PT_select((yyvsp[0].select_init), SQLCOM_SELECT); } -#line 28512 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28512 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1217: -#line 9012 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9012 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.select_init)= NEW_PTN PT_select_init2((yyvsp[-2].optimizer_hints), (yyvsp[-1].select_part2), (yyvsp[0].union_list)); } -#line 28520 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28520 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1218: -#line 9016 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9016 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.select_init)= NEW_PTN PT_select_init_parenthesis((yyvsp[-2].select_paren), (yyvsp[0].node)); } -#line 28528 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28528 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1219: -#line 9023 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9023 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.select_paren)= NEW_PTN PT_select_paren((yyvsp[-1].optimizer_hints), (yyvsp[0].select_part2)); } -#line 28536 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28536 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1220: -#line 9026 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9026 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.select_paren)= (yyvsp[-1].select_paren); } -#line 28542 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28542 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1221: -#line 9032 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9032 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.select_paren_derived)= NEW_PTN PT_select_paren_derived((yyvsp[-2].optimizer_hints), (yyvsp[-1].select_part2_derived), (yyvsp[0].table_expression)); } -#line 28550 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28550 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1222: -#line 9035 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9035 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.select_paren_derived)= (yyvsp[-1].select_paren_derived); } -#line 28556 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28556 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1223: -#line 9048 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9048 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.select_part2)= NEW_PTN PT_select_part2((yyvsp[-3].select_options_and_item_list), NULL, NULL, NULL, NULL, NULL, (yyvsp[-2].order), (yyvsp[-1].limit_clause), NULL, NULL, (yyvsp[0].select_lock_type)); } -#line 28565 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28565 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1224: -#line 9053 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9053 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.select_part2)= NEW_PTN PT_select_part2((yyvsp[-2].select_options_and_item_list), (yyvsp[-1].into_destination), NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, (yyvsp[0].select_lock_type)); } -#line 28574 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28574 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1225: -#line 9068 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9068 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if ((yyvsp[-9].into_destination) && (yyvsp[-1].into_destination)) { @@ -28591,91 +28591,91 @@ (yyval.select_part2)= NEW_PTN PT_select_part2((yyvsp[-10].select_options_and_item_list), (yyvsp[-9].into_destination), (yyvsp[-8].table_reference_list), (yyvsp[-7].item), (yyvsp[-6].group), (yyvsp[-5].item), (yyvsp[-4].order), (yyvsp[-3].limit_clause), (yyvsp[-2].procedure_analyse), (yyvsp[-1].into_destination), (yyvsp[0].select_lock_type)); } -#line 28595 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28595 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1226: -#line 9087 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9087 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /* TODO: remove this semantic action (currently this removal adds shift/reduce conflict) */ } -#line 28606 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28606 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1227: -#line 9094 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9094 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.select_options_and_item_list)= NEW_PTN PT_select_options_and_item_list((yyvsp[-1].select_options), (yyvsp[0].item_list2)); } -#line 28614 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28614 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1228: -#line 9109 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9109 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.table_expression)= NEW_PTN PT_table_expression((yyvsp[-7].table_reference_list), (yyvsp[-6].item), (yyvsp[-5].group), (yyvsp[-4].item), (yyvsp[-3].order), (yyvsp[-2].limit_clause), (yyvsp[-1].procedure_analyse), (yyvsp[0].select_lock_type)); } -#line 28622 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28622 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1229: -#line 9115 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9115 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.table_reference_list)= (yyvsp[0].table_reference_list); } -#line 28628 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28628 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1230: -#line 9119 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9119 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.table_reference_list)= NULL; } -#line 28634 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28634 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1232: -#line 9125 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9125 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.table_reference_list)= NEW_PTN PT_table_reference_list((yyvsp[0].join_table_list)); } -#line 28642 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28642 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1233: -#line 9128 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9128 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.table_reference_list)= NULL; } -#line 28648 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28648 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1234: -#line 9137 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9137 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.select_options).query_spec_options= 0; (yyval.select_options).sql_cache= SELECT_LEX::SQL_CACHE_UNSPECIFIED; } -#line 28657 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28657 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1236: -#line 9146 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9146 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if ((yyval.select_options).merge((yyvsp[-1].select_options), (yyvsp[0].select_options))) MYSQL_YYABORT; } -#line 28666 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28666 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1238: -#line 9155 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9155 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.select_options).query_spec_options= (yyvsp[0].ulonglong_number); (yyval.select_options).sql_cache= SELECT_LEX::SQL_CACHE_UNSPECIFIED; } -#line 28675 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28675 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1239: -#line 9160 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9160 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { push_deprecated_warn_no_replacement(YYTHD, "SQL_NO_CACHE"); /* @@ -28685,11 +28685,11 @@ (yyval.select_options).query_spec_options= 0; (yyval.select_options).sql_cache= SELECT_LEX::SQL_NO_CACHE; } -#line 28689 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28689 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1240: -#line 9170 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9170 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { push_deprecated_warn_no_replacement(YYTHD, "SQL_CACHE"); /* @@ -28699,233 +28699,233 @@ (yyval.select_options).query_spec_options= 0; (yyval.select_options).sql_cache= SELECT_LEX::SQL_CACHE; } -#line 28703 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28703 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1241: -#line 9182 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9182 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.select_lock_type).is_set= false; } -#line 28709 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28709 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1242: -#line 9184 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9184 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.select_lock_type).is_set= true; (yyval.select_lock_type).lock_type= TL_WRITE; (yyval.select_lock_type).is_safe_to_cache_query= false; } -#line 28719 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28719 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1243: -#line 9190 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9190 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.select_lock_type).is_set= true; (yyval.select_lock_type).lock_type= TL_READ_WITH_SHARED_LOCKS; (yyval.select_lock_type).is_safe_to_cache_query= false; } -#line 28729 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28729 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1244: -#line 9199 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9199 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if ((yyvsp[-2].item_list2) == NULL || (yyvsp[-2].item_list2)->push_back((yyvsp[0].item))) MYSQL_YYABORT; (yyval.item_list2)= (yyvsp[-2].item_list2); } -#line 28739 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28739 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1245: -#line 9205 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9205 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item_list2)= NEW_PTN PT_select_item_list; if ((yyval.item_list2) == NULL || (yyval.item_list2)->push_back((yyvsp[0].item))) MYSQL_YYABORT; } -#line 28749 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28749 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1246: -#line 9211 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9211 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Item *item= NEW_PTN Item_field((yyloc), NULL, NULL, "*"); (yyval.item_list2)= NEW_PTN PT_select_item_list; if ((yyval.item_list2) == NULL || (yyval.item_list2)->push_back(item)) MYSQL_YYABORT; } -#line 28760 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28760 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1247: -#line 9220 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9220 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= (yyvsp[0].item); } -#line 28766 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28766 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1248: -#line 9222 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9222 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN PTI_expr_with_alias((yyloc), (yyvsp[-1].item), (yylsp[-1]).cpp, (yyvsp[0].lex_str)); } -#line 28774 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28774 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1249: -#line 9229 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9229 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lex_str)=null_lex_str;} -#line 28780 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28780 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1250: -#line 9230 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9230 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lex_str)=(yyvsp[0].lex_str); } -#line 28786 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28786 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1251: -#line 9231 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9231 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lex_str)=(yyvsp[0].lex_str); } -#line 28792 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28792 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1252: -#line 9232 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9232 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lex_str)=(yyvsp[0].lex_str); } -#line 28798 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28798 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1253: -#line 9233 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9233 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lex_str)=(yyvsp[0].lex_str); } -#line 28804 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28804 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1254: -#line 9237 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9237 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 28810 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28810 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1255: -#line 9238 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9238 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 28816 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28816 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1256: -#line 9244 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9244 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= flatten_associative_operator( YYTHD->mem_root, (yyloc), (yyvsp[-2].item), (yyvsp[0].item)); } -#line 28826 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28826 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1257: -#line 9250 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9250 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /* XOR is a proprietary extension */ (yyval.item) = NEW_PTN Item_func_xor((yyloc), (yyvsp[-2].item), (yyvsp[0].item)); } -#line 28835 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28835 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1258: -#line 9255 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9255 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= flatten_associative_operator( YYTHD->mem_root, (yyloc), (yyvsp[-2].item), (yyvsp[0].item)); } -#line 28845 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28845 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1259: -#line 9261 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9261 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN PTI_negate_expression((yyloc), (yyvsp[0].item)); } -#line 28853 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28853 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1260: -#line 9265 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9265 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_istrue((yyloc), (yyvsp[-2].item)); } -#line 28861 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28861 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1261: -#line 9269 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9269 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_isnottrue((yyloc), (yyvsp[-3].item)); } -#line 28869 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28869 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1262: -#line 9273 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9273 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_isfalse((yyloc), (yyvsp[-2].item)); } -#line 28877 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28877 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1263: -#line 9277 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9277 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_isnotfalse((yyloc), (yyvsp[-3].item)); } -#line 28885 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28885 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1264: -#line 9281 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9281 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_isnull((yyloc), (yyvsp[-2].item)); } -#line 28893 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28893 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1265: -#line 9285 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9285 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_isnotnull((yyloc), (yyvsp[-3].item)); } -#line 28901 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28901 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1267: -#line 9293 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9293 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_isnull((yyloc), (yyvsp[-2].item)); } -#line 28909 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28909 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1268: -#line 9297 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9297 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_isnotnull((yyloc), (yyvsp[-3].item)); } -#line 28917 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28917 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1269: -#line 9301 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9301 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN PTI_comp_op((yyloc), (yyvsp[-2].item), (yyvsp[-1].boolfunc2creator), (yyvsp[0].item)); } -#line 28925 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28925 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1270: -#line 9305 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9305 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if ((yyvsp[-4].boolfunc2creator) == &comp_equal_creator) /* @@ -28938,82 +28938,82 @@ YYTHD->parse_error_at((yylsp[-4]), ER_THD(YYTHD, ER_SYNTAX_ERROR)); (yyval.item)= NEW_PTN PTI_comp_op_all((yyloc), (yyvsp[-5].item), (yyvsp[-4].boolfunc2creator), (yyvsp[-3].num), (yyvsp[-1].subselect)); } -#line 28942 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28942 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1272: -#line 9322 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9322 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_in_subselect((yyloc), (yyvsp[-4].item), (yyvsp[-1].subselect)); } -#line 28950 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28950 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1273: -#line 9326 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9326 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Item *item= NEW_PTN Item_in_subselect((yyloc), (yyvsp[-5].item), (yyvsp[-1].subselect)); (yyval.item)= NEW_PTN PTI_negate_expression((yyloc), item); } -#line 28959 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28959 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1274: -#line 9331 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9331 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN PTI_handle_sql2003_note184_exception((yyloc), (yyvsp[-4].item), true, (yyvsp[-1].item)); } -#line 28967 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28967 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1275: -#line 9335 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9335 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if ((yyvsp[-1].item_list2) == NULL || (yyvsp[-1].item_list2)->push_front((yyvsp[-3].item)) || (yyvsp[-1].item_list2)->push_front((yyvsp[-6].item))) MYSQL_YYABORT; (yyval.item)= NEW_PTN Item_func_in((yyloc), (yyvsp[-1].item_list2), false); } -#line 28978 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28978 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1276: -#line 9342 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9342 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN PTI_handle_sql2003_note184_exception((yyloc), (yyvsp[-5].item), false, (yyvsp[-1].item)); } -#line 28986 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28986 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1277: -#line 9346 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9346 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if ((yyvsp[-1].item_list2) == NULL || (yyvsp[-1].item_list2)->push_front((yyvsp[-3].item)) || (yyvsp[-1].item_list2)->value.push_front((yyvsp[-7].item))) MYSQL_YYABORT; (yyval.item)= NEW_PTN Item_func_in((yyloc), (yyvsp[-1].item_list2), true); } -#line 28997 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 28997 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1278: -#line 9353 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9353 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_between((yyloc), (yyvsp[-4].item), (yyvsp[-2].item), (yyvsp[0].item), false); } -#line 29005 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29005 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1279: -#line 9357 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9357 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_between((yyloc), (yyvsp[-5].item), (yyvsp[-2].item), (yyvsp[0].item), true); } -#line 29013 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29013 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1280: -#line 9361 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9361 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Item *item1= NEW_PTN Item_func_soundex((yyloc), (yyvsp[-3].item)); Item *item4= NEW_PTN Item_func_soundex((yyloc), (yyvsp[0].item)); @@ -29021,396 +29021,396 @@ MYSQL_YYABORT; (yyval.item)= NEW_PTN Item_func_eq((yyloc), item1, item4); } -#line 29025 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29025 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1281: -#line 9369 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9369 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_like((yyloc), (yyvsp[-3].item), (yyvsp[-1].item), (yyvsp[0].item)); } -#line 29033 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29033 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1282: -#line 9373 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9373 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Item *item= NEW_PTN Item_func_like((yyloc), (yyvsp[-4].item), (yyvsp[-1].item), (yyvsp[0].item)); if (item == NULL) MYSQL_YYABORT; (yyval.item)= NEW_PTN Item_func_not((yyloc), item); } -#line 29044 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29044 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1283: -#line 9380 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9380 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_regex((yyloc), (yyvsp[-2].item), (yyvsp[0].item)); } -#line 29052 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29052 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1284: -#line 9384 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9384 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Item *item= NEW_PTN Item_func_regex((yyloc), (yyvsp[-3].item), (yyvsp[0].item)); (yyval.item)= NEW_PTN PTI_negate_expression((yyloc), item); } -#line 29061 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29061 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1286: -#line 9393 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9393 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_bit_or((yyloc), (yyvsp[-2].item), (yyvsp[0].item)); } -#line 29069 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29069 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1287: -#line 9397 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9397 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_bit_and((yyloc), (yyvsp[-2].item), (yyvsp[0].item)); } -#line 29077 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29077 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1288: -#line 9401 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9401 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_shift_left((yyloc), (yyvsp[-2].item), (yyvsp[0].item)); } -#line 29085 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29085 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1289: -#line 9405 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9405 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_shift_right((yyloc), (yyvsp[-2].item), (yyvsp[0].item)); } -#line 29093 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29093 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1290: -#line 9409 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9409 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_plus((yyloc), (yyvsp[-2].item), (yyvsp[0].item)); } -#line 29101 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29101 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1291: -#line 9413 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9413 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_minus((yyloc), (yyvsp[-2].item), (yyvsp[0].item)); } -#line 29109 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29109 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1292: -#line 9417 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9417 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_date_add_interval((yyloc), (yyvsp[-4].item), (yyvsp[-1].item), (yyvsp[0].interval), 0); } -#line 29117 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29117 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1293: -#line 9421 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9421 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_date_add_interval((yyloc), (yyvsp[-4].item), (yyvsp[-1].item), (yyvsp[0].interval), 1); } -#line 29125 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29125 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1294: -#line 9425 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9425 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_mul((yyloc), (yyvsp[-2].item), (yyvsp[0].item)); } -#line 29133 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29133 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1295: -#line 9429 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9429 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_div((yyloc), (yyvsp[-2].item),(yyvsp[0].item)); } -#line 29141 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29141 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1296: -#line 9433 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9433 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_mod((yyloc), (yyvsp[-2].item),(yyvsp[0].item)); } -#line 29149 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29149 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1297: -#line 9437 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9437 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_int_div((yyloc), (yyvsp[-2].item),(yyvsp[0].item)); } -#line 29157 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29157 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1298: -#line 9441 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9441 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_mod((yyloc), (yyvsp[-2].item), (yyvsp[0].item)); } -#line 29165 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29165 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1299: -#line 9445 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9445 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_bit_xor((yyloc), (yyvsp[-2].item), (yyvsp[0].item)); } -#line 29173 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29173 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1309: -#line 9472 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9472 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.boolfunc2creator) = &comp_eq_creator; } -#line 29179 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29179 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1310: -#line 9473 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9473 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.boolfunc2creator) = &comp_equal_creator; } -#line 29185 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29185 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1311: -#line 9474 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9474 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.boolfunc2creator) = &comp_ge_creator; } -#line 29191 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29191 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1312: -#line 9475 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9475 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.boolfunc2creator) = &comp_gt_creator; } -#line 29197 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29197 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1313: -#line 9476 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9476 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.boolfunc2creator) = &comp_le_creator; } -#line 29203 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29203 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1314: -#line 9477 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9477 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.boolfunc2creator) = &comp_lt_creator; } -#line 29209 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29209 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1315: -#line 9478 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9478 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.boolfunc2creator) = &comp_ne_creator; } -#line 29215 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29215 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1316: -#line 9482 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9482 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num) = 1; } -#line 29221 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29221 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1317: -#line 9483 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9483 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num) = 0; } -#line 29227 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29227 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1323: -#line 9493 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9493 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_set_collation((yyloc), (yyvsp[-2].item), (yyvsp[0].lex_str)); } -#line 29235 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29235 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1325: -#line 9497 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9497 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= (yyvsp[0].param_marker); } -#line 29241 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29241 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1328: -#line 9501 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9501 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_concat((yyloc), (yyvsp[-2].item), (yyvsp[0].item)); } -#line 29249 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29249 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1329: -#line 9505 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9505 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= (yyvsp[0].item); // TODO: do we really want to ignore unary '+' before any kind of literals? } -#line 29257 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29257 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1330: -#line 9509 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9509 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_neg((yyloc), (yyvsp[0].item)); } -#line 29265 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29265 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1331: -#line 9513 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9513 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_bit_neg((yyloc), (yyvsp[0].item)); } -#line 29273 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29273 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1332: -#line 9517 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9517 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN PTI_negate_expression((yyloc), (yyvsp[0].item)); } -#line 29281 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29281 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1333: -#line 9521 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9521 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN PTI_singlerow_subselect((yyloc), (yyvsp[-1].subselect)); } -#line 29289 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29289 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1334: -#line 9525 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9525 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= (yyvsp[-1].item); } -#line 29295 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29295 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1335: -#line 9527 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9527 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_row((yyloc), (yyvsp[-3].item), (yyvsp[-1].item_list2)->value); } -#line 29303 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29303 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1336: -#line 9531 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9531 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_row((yyloc), (yyvsp[-3].item), (yyvsp[-1].item_list2)->value); } -#line 29311 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29311 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1337: -#line 9535 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9535 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN PTI_exists_subselect((yyloc), (yyvsp[-1].subselect)); } -#line 29319 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29319 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1338: -#line 9539 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9539 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN PTI_odbc_date((yyloc), (yyvsp[-2].lex_str), (yyvsp[-1].item)); } -#line 29327 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29327 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1339: -#line 9543 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9543 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_match((yyloc), (yyvsp[-5].item_list2), (yyvsp[-2].item), (yyvsp[-1].num)); } -#line 29335 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29335 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1340: -#line 9547 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9547 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= create_func_cast(YYTHD, (yylsp[0]), (yyvsp[0].item), ITEM_CAST_CHAR, &my_charset_bin); } -#line 29343 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29343 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1341: -#line 9551 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9551 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= create_func_cast(YYTHD, (yylsp[-3]), (yyvsp[-3].item), &(yyvsp[-1].cast_type)); } -#line 29351 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29351 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1342: -#line 9555 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9555 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_case((yyloc), *(yyvsp[-2].item_list), (yyvsp[-3].item), (yyvsp[-1].item) ); } -#line 29359 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29359 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1343: -#line 9559 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9559 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= create_func_cast(YYTHD, (yylsp[-3]), (yyvsp[-3].item), &(yyvsp[-1].cast_type)); } -#line 29367 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29367 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1344: -#line 9563 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9563 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_conv_charset((yyloc), (yyvsp[-3].item),(yyvsp[-1].charset)); } -#line 29375 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29375 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1345: -#line 9567 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9567 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_default_value((yyloc), (yyvsp[-1].item)); } -#line 29383 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29383 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1346: -#line 9571 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9571 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_insert_value((yyloc), (yyvsp[-1].item)); } -#line 29391 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29391 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1347: -#line 9576 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9576 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_date_add_interval((yyloc), (yyvsp[0].item), (yyvsp[-3].item), (yyvsp[-2].interval), 0); } -#line 29399 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29399 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1348: -#line 9580 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9580 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Item_string *path= NEW_PTN Item_string((yyloc), (yyvsp[0].lex_str).str, (yyvsp[0].lex_str).length, YYTHD->variables.collation_connection); (yyval.item)= NEW_PTN Item_func_json_extract(YYTHD, (yyloc), (yyvsp[-2].item), path); } -#line 29410 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29410 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1349: -#line 9587 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9587 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Item_string *path= NEW_PTN Item_string((yyloc), (yyvsp[0].lex_str).str, (yyvsp[0].lex_str).length, @@ -29418,695 +29418,695 @@ Item *extr= NEW_PTN Item_func_json_extract(YYTHD, (yyloc), (yyvsp[-2].item), path); (yyval.item)= NEW_PTN Item_func_json_unquote((yyloc), extr); } -#line 29422 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29422 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1350: -#line 9604 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9604 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_char((yyloc), (yyvsp[-1].item_list2)); } -#line 29430 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29430 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1351: -#line 9608 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9608 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_char((yyloc), (yyvsp[-3].item_list2), (yyvsp[-1].charset)); } -#line 29438 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29438 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1352: -#line 9612 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9612 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_current_user((yyloc)); } -#line 29446 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29446 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1353: -#line 9616 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9616 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_date_typecast((yyloc), (yyvsp[-1].item)); } -#line 29454 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29454 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1354: -#line 9620 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9620 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_dayofmonth((yyloc), (yyvsp[-1].item)); } -#line 29462 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29462 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1355: -#line 9624 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9624 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_hour((yyloc), (yyvsp[-1].item)); } -#line 29470 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29470 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1356: -#line 9628 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9628 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_insert((yyloc), (yyvsp[-7].item), (yyvsp[-5].item), (yyvsp[-3].item), (yyvsp[-1].item)); } -#line 29478 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29478 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1357: -#line 9632 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9632 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_interval((yyloc), YYTHD->mem_root, (yyvsp[-3].item), (yyvsp[-1].item)); } -#line 29486 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29486 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1358: -#line 9636 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9636 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_interval((yyloc), YYTHD->mem_root, (yyvsp[-5].item), (yyvsp[-3].item), (yyvsp[-1].item_list2)); } -#line 29494 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29494 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1359: -#line 9640 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9640 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_left((yyloc), (yyvsp[-3].item), (yyvsp[-1].item)); } -#line 29502 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29502 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1360: -#line 9644 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9644 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_minute((yyloc), (yyvsp[-1].item)); } -#line 29510 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29510 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1361: -#line 9648 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9648 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_month((yyloc), (yyvsp[-1].item)); } -#line 29518 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29518 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1362: -#line 9652 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9652 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_right((yyloc), (yyvsp[-3].item), (yyvsp[-1].item)); } -#line 29526 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29526 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1363: -#line 9656 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9656 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_second((yyloc), (yyvsp[-1].item)); } -#line 29534 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29534 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1364: -#line 9660 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9660 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_time_typecast((yyloc), (yyvsp[-1].item)); } -#line 29542 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29542 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1365: -#line 9664 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9664 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_datetime_typecast((yyloc), (yyvsp[-1].item)); } -#line 29550 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29550 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1366: -#line 9668 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9668 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_add_time((yyloc), (yyvsp[-3].item), (yyvsp[-1].item), 1, 0); } -#line 29558 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29558 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1367: -#line 9672 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9672 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_trim((yyloc), (yyvsp[-1].item), Item_func_trim::TRIM_BOTH_DEFAULT); } -#line 29567 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29567 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1368: -#line 9677 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9677 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_trim((yyloc), (yyvsp[-1].item), (yyvsp[-3].item), Item_func_trim::TRIM_LEADING); } -#line 29576 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29576 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1369: -#line 9682 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9682 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_trim((yyloc), (yyvsp[-1].item), (yyvsp[-3].item), Item_func_trim::TRIM_TRAILING); } -#line 29585 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29585 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1370: -#line 9687 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9687 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_trim((yyloc), (yyvsp[-1].item), (yyvsp[-3].item), Item_func_trim::TRIM_BOTH); } -#line 29593 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29593 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1371: -#line 9691 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9691 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_trim((yyloc), (yyvsp[-1].item), Item_func_trim::TRIM_LEADING); } -#line 29601 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29601 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1372: -#line 9695 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9695 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_trim((yyloc), (yyvsp[-1].item), Item_func_trim::TRIM_TRAILING); } -#line 29609 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29609 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1373: -#line 9699 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9699 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_trim((yyloc), (yyvsp[-1].item), Item_func_trim::TRIM_BOTH); } -#line 29617 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29617 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1374: -#line 9703 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9703 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_trim((yyloc), (yyvsp[-1].item), (yyvsp[-3].item), Item_func_trim::TRIM_BOTH_DEFAULT); } -#line 29626 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29626 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1375: -#line 9708 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9708 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_user((yyloc)); } -#line 29634 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29634 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1376: -#line 9712 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9712 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_year((yyloc), (yyvsp[-1].item)); } -#line 29642 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29642 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1377: -#line 9731 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9731 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_date_add_interval((yyloc), (yyvsp[-3].item), (yyvsp[-1].item), INTERVAL_DAY, 0); } -#line 29650 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29650 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1378: -#line 9735 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9735 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_date_add_interval((yyloc), (yyvsp[-5].item), (yyvsp[-2].item), (yyvsp[-1].interval), 0); } -#line 29658 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29658 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1379: -#line 9739 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9739 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_curdate_local((yyloc)); } -#line 29666 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29666 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1380: -#line 9743 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9743 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_curtime_local((yyloc), static_cast((yyvsp[0].ulong_num))); } -#line 29674 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29674 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1381: -#line 9748 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9748 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_date_add_interval((yyloc), (yyvsp[-5].item), (yyvsp[-2].item), (yyvsp[-1].interval), 0); } -#line 29682 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29682 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1382: -#line 9753 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9753 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_date_add_interval((yyloc), (yyvsp[-5].item), (yyvsp[-2].item), (yyvsp[-1].interval), 1); } -#line 29690 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29690 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1383: -#line 9757 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9757 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_extract((yyloc), (yyvsp[-3].interval), (yyvsp[-1].item)); } -#line 29698 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29698 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1384: -#line 9761 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9761 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_get_format((yyloc), (yyvsp[-3].date_time_type), (yyvsp[-1].item)); } -#line 29706 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29706 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1385: -#line 9765 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9765 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN PTI_function_call_nonkeyword_now((yyloc), static_cast((yyvsp[0].ulong_num))); } -#line 29715 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29715 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1386: -#line 9770 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9770 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_locate((yyloc), (yyvsp[-1].item),(yyvsp[-3].item)); } -#line 29723 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29723 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1387: -#line 9774 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9774 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_date_add_interval((yyloc), (yyvsp[-3].item), (yyvsp[-1].item), INTERVAL_DAY, 1); } -#line 29731 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29731 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1388: -#line 9778 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9778 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_date_add_interval((yyloc), (yyvsp[-5].item), (yyvsp[-2].item), (yyvsp[-1].interval), 1); } -#line 29739 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29739 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1389: -#line 9782 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9782 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_substr((yyloc), (yyvsp[-5].item),(yyvsp[-3].item),(yyvsp[-1].item)); } -#line 29747 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29747 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1390: -#line 9786 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9786 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_substr((yyloc), (yyvsp[-3].item),(yyvsp[-1].item)); } -#line 29755 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29755 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1391: -#line 9790 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9790 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_substr((yyloc), (yyvsp[-5].item),(yyvsp[-3].item),(yyvsp[-1].item)); } -#line 29763 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29763 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1392: -#line 9794 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9794 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_substr((yyloc), (yyvsp[-3].item),(yyvsp[-1].item)); } -#line 29771 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29771 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1393: -#line 9798 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9798 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN PTI_function_call_nonkeyword_sysdate((yyloc), static_cast((yyvsp[0].ulong_num))); } -#line 29780 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29780 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1394: -#line 9803 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9803 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_date_add_interval((yyloc), (yyvsp[-1].item), (yyvsp[-3].item), (yyvsp[-5].interval_time_st), 0); } -#line 29788 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29788 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1395: -#line 9807 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9807 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_timestamp_diff((yyloc), (yyvsp[-3].item),(yyvsp[-1].item),(yyvsp[-5].interval_time_st)); } -#line 29796 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29796 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1396: -#line 9811 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9811 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_curdate_utc((yyloc)); } -#line 29804 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29804 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1397: -#line 9815 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9815 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_curtime_utc((yyloc), static_cast((yyvsp[0].ulong_num))); } -#line 29812 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29812 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1398: -#line 9819 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9819 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_now_utc((yyloc), static_cast((yyvsp[0].ulong_num))); } -#line 29820 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29820 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1399: -#line 9831 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9831 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_ascii((yyloc), (yyvsp[-1].item)); } -#line 29828 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29828 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1400: -#line 9835 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9835 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_charset((yyloc), (yyvsp[-1].item)); } -#line 29836 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29836 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1401: -#line 9839 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9839 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_coalesce((yyloc), (yyvsp[-1].item_list2)); } -#line 29844 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29844 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1402: -#line 9843 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9843 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_collation((yyloc), (yyvsp[-1].item)); } -#line 29852 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29852 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1403: -#line 9847 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9847 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_database((yyloc)); } -#line 29860 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29860 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1404: -#line 9851 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9851 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_if((yyloc), (yyvsp[-5].item),(yyvsp[-3].item),(yyvsp[-1].item)); } -#line 29868 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29868 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1405: -#line 9855 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9855 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_format((yyloc), (yyvsp[-3].item), (yyvsp[-1].item)); } -#line 29876 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29876 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1406: -#line 9859 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9859 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_format((yyloc), (yyvsp[-5].item), (yyvsp[-3].item), (yyvsp[-1].item)); } -#line 29884 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29884 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1407: -#line 9863 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9863 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_microsecond((yyloc), (yyvsp[-1].item)); } -#line 29892 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29892 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1408: -#line 9867 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9867 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_mod((yyloc), (yyvsp[-3].item), (yyvsp[-1].item)); } -#line 29900 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29900 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1409: -#line 9871 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9871 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN PTI_password((yyloc), (yyvsp[-1].item)); } -#line 29908 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29908 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1410: -#line 9875 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9875 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_quarter((yyloc), (yyvsp[-1].item)); } -#line 29916 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29916 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1411: -#line 9879 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9879 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_repeat((yyloc), (yyvsp[-3].item),(yyvsp[-1].item)); } -#line 29924 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29924 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1412: -#line 9883 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9883 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_replace((yyloc), (yyvsp[-5].item),(yyvsp[-3].item),(yyvsp[-1].item)); } -#line 29932 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29932 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1413: -#line 9887 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9887 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_reverse((yyloc), (yyvsp[-1].item)); } -#line 29940 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29940 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1414: -#line 9891 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9891 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_row_count((yyloc)); } -#line 29948 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29948 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1415: -#line 9895 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9895 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_round((yyloc), (yyvsp[-3].item),(yyvsp[-1].item),1); } -#line 29956 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29956 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1416: -#line 9899 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9899 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_week((yyloc), (yyvsp[-1].item), NULL); } -#line 29964 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29964 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1417: -#line 9903 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9903 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_week((yyloc), (yyvsp[-3].item), (yyvsp[-1].item)); } -#line 29972 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29972 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1418: -#line 9907 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9907 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_weight_string((yyloc), (yyvsp[-2].item), 0, 0, (yyvsp[-1].ulong_num)); } -#line 29980 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29980 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1419: -#line 9911 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9911 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_weight_string((yyloc), (yyvsp[-5].item), 0, (yyvsp[-2].ulong_num), (yyvsp[-1].ulong_num) | MY_STRXFRM_PAD_WITH_SPACE); } -#line 29989 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29989 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1420: -#line 9916 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9916 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_weight_string((yyloc), (yyvsp[-4].item), 0, (yyvsp[-1].ulong_num), MY_STRXFRM_PAD_WITH_SPACE, true); } -#line 29998 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 29998 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1421: -#line 9921 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9921 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_weight_string((yyloc), (yyvsp[-7].item), (yyvsp[-5].ulong_num), (yyvsp[-3].ulong_num), (yyvsp[-1].ulong_num)); } -#line 30006 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30006 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1423: -#line 9929 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9929 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { push_deprecated_warn(YYTHD, "CONTAINS", "MBRCONTAINS"); (yyval.item)= NEW_PTN Item_func_spatial_mbr_rel((yyloc), (yyvsp[-3].item), (yyvsp[-1].item), Item_func::SP_CONTAINS_FUNC); } -#line 30016 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30016 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1424: -#line 9935 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9935 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_spatial_collection((yyloc), (yyvsp[-1].item_list2), Geometry::wkb_geometrycollection, Geometry::wkb_point); } -#line 30026 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30026 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1425: -#line 9941 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9941 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_spatial_collection((yyloc), (yyvsp[-1].item_list2), Geometry::wkb_linestring, Geometry::wkb_point); } -#line 30036 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30036 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1426: -#line 9947 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9947 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_spatial_collection((yyloc), (yyvsp[-1].item_list2), Geometry::wkb_multilinestring, Geometry::wkb_linestring); } -#line 30046 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30046 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1427: -#line 9953 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9953 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_spatial_collection((yyloc), (yyvsp[-1].item_list2), Geometry::wkb_multipoint, Geometry::wkb_point); } -#line 30056 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30056 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1428: -#line 9959 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9959 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_spatial_collection((yyloc), (yyvsp[-1].item_list2), Geometry::wkb_multipolygon, Geometry::wkb_polygon); } -#line 30066 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30066 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1429: -#line 9965 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9965 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_point((yyloc), (yyvsp[-3].item),(yyvsp[-1].item)); } -#line 30074 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30074 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1430: -#line 9969 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9969 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_spatial_collection((yyloc), (yyvsp[-1].item_list2), Geometry::wkb_polygon, Geometry::wkb_linestring); } -#line 30084 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30084 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1431: -#line 9987 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9987 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN PTI_function_call_generic_ident_sys((yylsp[-3]), (yyvsp[-3].lex_str), (yyvsp[-1].item_list2)); } -#line 30092 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30092 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1432: -#line 9991 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9991 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN PTI_function_call_generic_2d((yyloc), (yyvsp[-5].lex_str), (yyvsp[-3].lex_str), (yyvsp[-1].item_list2)); } -#line 30100 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30100 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1433: -#line 9998 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 9998 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= (yyvsp[-1].num) | (yyvsp[0].num); } -#line 30106 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30106 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1434: -#line 10000 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10000 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= FT_BOOL; DBUG_EXECUTE_IF("simulate_bug18831513", @@ -30116,341 +30116,341 @@ MYSQLerror(NULL,thd,"syntax error"); }); } -#line 30120 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30120 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1435: -#line 10012 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10012 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= FT_NL; } -#line 30126 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30126 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1436: -#line 10013 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10013 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= FT_NL; } -#line 30132 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30132 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1437: -#line 10017 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10017 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= 0; } -#line 30138 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30138 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1438: -#line 10018 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10018 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= FT_EXPAND; } -#line 30144 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30144 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1439: -#line 10022 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10022 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item_list2)= NULL; } -#line 30150 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30150 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1440: -#line 10023 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10023 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item_list2)= (yyvsp[0].item_list2); } -#line 30156 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30156 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1441: -#line 10028 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10028 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item_list2)= NEW_PTN PT_item_list; if ((yyval.item_list2) == NULL || (yyval.item_list2)->push_back((yyvsp[0].item))) MYSQL_YYABORT; } -#line 30166 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30166 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1442: -#line 10034 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10034 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if ((yyvsp[-2].item_list2) == NULL || (yyvsp[-2].item_list2)->push_back((yyvsp[0].item))) MYSQL_YYABORT; (yyval.item_list2)= (yyvsp[-2].item_list2); } -#line 30176 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30176 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1443: -#line 10043 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10043 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN PTI_udf_expr((yyloc), (yyvsp[-1].item), (yyvsp[0].lex_str), (yylsp[-1]).cpp); } -#line 30184 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30184 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1444: -#line 10050 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10050 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_sum_avg((yyloc), (yyvsp[-1].item), FALSE); } -#line 30192 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30192 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1445: -#line 10054 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10054 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_sum_avg((yyloc), (yyvsp[-1].item), TRUE); } -#line 30200 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30200 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1446: -#line 10058 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10058 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_sum_and((yyloc), (yyvsp[-1].item)); } -#line 30208 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30208 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1447: -#line 10062 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10062 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_sum_or((yyloc), (yyvsp[-1].item)); } -#line 30216 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30216 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1448: -#line 10066 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10066 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_sum_json_array((yyloc), (yyvsp[-1].item)); } -#line 30224 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30224 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1449: -#line 10070 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10070 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_sum_json_object((yyloc), (yyvsp[-3].item), (yyvsp[-1].item)); } -#line 30232 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30232 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1450: -#line 10074 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10074 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_sum_xor((yyloc), (yyvsp[-1].item)); } -#line 30240 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30240 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1451: -#line 10078 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10078 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN PTI_count_sym((yyloc)); } -#line 30248 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30248 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1452: -#line 10082 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10082 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_sum_count((yyloc), (yyvsp[-1].item)); } -#line 30256 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30256 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1453: -#line 10086 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10086 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= new Item_sum_count((yyloc), (yyvsp[-1].item_list2)); } -#line 30264 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30264 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1454: -#line 10090 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10090 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_sum_min((yyloc), (yyvsp[-1].item)); } -#line 30272 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30272 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1455: -#line 10099 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10099 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_sum_min((yyloc), (yyvsp[-1].item)); } -#line 30280 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30280 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1456: -#line 10103 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10103 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_sum_max((yyloc), (yyvsp[-1].item)); } -#line 30288 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30288 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1457: -#line 10107 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10107 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_sum_max((yyloc), (yyvsp[-1].item)); } -#line 30296 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30296 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1458: -#line 10111 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10111 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_sum_std((yyloc), (yyvsp[-1].item), 0); } -#line 30304 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30304 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1459: -#line 10115 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10115 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_sum_variance((yyloc), (yyvsp[-1].item), 0); } -#line 30312 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30312 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1460: -#line 10119 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10119 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_sum_std((yyloc), (yyvsp[-1].item), 1); } -#line 30320 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30320 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1461: -#line 10123 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10123 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_sum_variance((yyloc), (yyvsp[-1].item), 1); } -#line 30328 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30328 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1462: -#line 10127 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10127 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_sum_sum((yyloc), (yyvsp[-1].item), FALSE); } -#line 30336 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30336 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1463: -#line 10131 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10131 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_sum_sum((yyloc), (yyvsp[-1].item), TRUE); } -#line 30344 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30344 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1464: -#line 10138 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10138 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_func_group_concat((yyloc), (yyvsp[-4].num), (yyvsp[-3].item_list2), (yyvsp[-2].order_list), (yyvsp[-1].string)); } -#line 30352 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30352 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1465: -#line 10144 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10144 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= (yyvsp[0].item); } -#line 30358 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30358 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1466: -#line 10149 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10149 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN PTI_variable_aux_set_var((yyloc), (yyvsp[-2].lex_str), (yyvsp[0].item)); } -#line 30366 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30366 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1467: -#line 10153 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10153 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN PTI_variable_aux_ident_or_text((yyloc), (yyvsp[0].lex_str)); } -#line 30374 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30374 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1468: -#line 10157 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10157 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN PTI_variable_aux_3d((yyloc), (yyvsp[-2].var_type), (yyvsp[-1].lex_str), (yylsp[-1]), (yyvsp[0].lex_str)); } -#line 30382 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30382 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1469: -#line 10163 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10163 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num) = 0; } -#line 30388 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30388 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1470: -#line 10164 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10164 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num) = 1; } -#line 30394 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30394 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1471: -#line 10169 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10169 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.string)= new (YYTHD->mem_root) String(",", 1, &my_charset_latin1); if ((yyval.string) == NULL) MYSQL_YYABORT; } -#line 30404 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30404 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1472: -#line 10174 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10174 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.string) = (yyvsp[0].string); } -#line 30410 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30410 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1473: -#line 10178 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10178 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.order_list)= NULL; } -#line 30416 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30416 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1474: -#line 10179 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10179 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.order_list)= (yyvsp[0].order_list); } -#line 30422 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30422 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1475: -#line 10184 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10184 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyvsp[-2].order_list)->push_back((yyvsp[0].order_expr)); (yyval.order_list)= (yyvsp[-2].order_list); } -#line 30431 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30431 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1476: -#line 10189 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10189 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.order_list)= NEW_PTN PT_gorder_list(); if ((yyval.order_list) == NULL) MYSQL_YYABORT; (yyval.order_list)->push_back((yyvsp[0].order_expr)); } -#line 30442 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30442 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1477: -#line 10199 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10199 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN PTI_in_sum_expr((yylsp[-1]), (yyvsp[0].item)); } -#line 30450 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30450 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1478: -#line 10206 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10206 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.cast_type).target= ITEM_CAST_CHAR; (yyval.cast_type).charset= &my_charset_bin; @@ -30458,11 +30458,11 @@ (yyval.cast_type).length= (yyvsp[0].c_str); (yyval.cast_type).dec= NULL; } -#line 30462 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30462 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1479: -#line 10214 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10214 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.cast_type).target= ITEM_CAST_CHAR; (yyval.cast_type).charset= (yyvsp[0].charset_with_flags).charset; @@ -30470,11 +30470,11 @@ (yyval.cast_type).length= (yyvsp[-1].c_str); (yyval.cast_type).dec= NULL; } -#line 30474 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30474 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1480: -#line 10222 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10222 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.cast_type).target= ITEM_CAST_CHAR; (yyval.cast_type).charset= national_charset_info; @@ -30482,11 +30482,11 @@ (yyval.cast_type).length= (yyvsp[0].c_str); (yyval.cast_type).dec= NULL; } -#line 30486 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30486 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1481: -#line 10230 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10230 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.cast_type).target= ITEM_CAST_SIGNED_INT; (yyval.cast_type).charset= NULL; @@ -30494,11 +30494,11 @@ (yyval.cast_type).length= NULL; (yyval.cast_type).dec= NULL; } -#line 30498 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30498 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1482: -#line 10238 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10238 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.cast_type).target= ITEM_CAST_SIGNED_INT; (yyval.cast_type).charset= NULL; @@ -30506,11 +30506,11 @@ (yyval.cast_type).length= NULL; (yyval.cast_type).dec= NULL; } -#line 30510 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30510 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1483: -#line 10246 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10246 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.cast_type).target= ITEM_CAST_UNSIGNED_INT; (yyval.cast_type).charset= NULL; @@ -30518,11 +30518,11 @@ (yyval.cast_type).length= NULL; (yyval.cast_type).dec= NULL; } -#line 30522 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30522 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1484: -#line 10254 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10254 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.cast_type).target= ITEM_CAST_UNSIGNED_INT; (yyval.cast_type).charset= NULL; @@ -30530,11 +30530,11 @@ (yyval.cast_type).length= NULL; (yyval.cast_type).dec= NULL; } -#line 30534 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30534 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1485: -#line 10262 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10262 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.cast_type).target= ITEM_CAST_DATE; (yyval.cast_type).charset= NULL; @@ -30542,11 +30542,11 @@ (yyval.cast_type).length= NULL; (yyval.cast_type).dec= NULL; } -#line 30546 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30546 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1486: -#line 10270 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10270 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.cast_type).target= ITEM_CAST_TIME; (yyval.cast_type).charset= NULL; @@ -30554,11 +30554,11 @@ (yyval.cast_type).length= NULL; (yyval.cast_type).dec= (yyvsp[0].c_str); } -#line 30558 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30558 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1487: -#line 10278 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10278 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.cast_type).target= ITEM_CAST_DATETIME; (yyval.cast_type).charset= NULL; @@ -30566,11 +30566,11 @@ (yyval.cast_type).length= NULL; (yyval.cast_type).dec= (yyvsp[0].c_str); } -#line 30570 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30570 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1488: -#line 10286 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10286 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.cast_type).target=ITEM_CAST_DECIMAL; (yyval.cast_type).charset= NULL; @@ -30578,11 +30578,11 @@ (yyval.cast_type).length= (yyvsp[0].precision).length; (yyval.cast_type).dec= (yyvsp[0].precision).dec; } -#line 30582 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30582 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1489: -#line 10294 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10294 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.cast_type).target=ITEM_CAST_JSON; (yyval.cast_type).charset= NULL; @@ -30590,93 +30590,93 @@ (yyval.cast_type).length= NULL; (yyval.cast_type).dec= NULL; } -#line 30594 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30594 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1490: -#line 10304 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10304 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item_list2)= NULL; } -#line 30600 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30600 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1492: -#line 10310 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10310 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item_list2)= NEW_PTN PT_item_list; if ((yyval.item_list2) == NULL || (yyval.item_list2)->push_back((yyvsp[0].item))) MYSQL_YYABORT; } -#line 30610 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30610 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1493: -#line 10316 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10316 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if ((yyvsp[-2].item_list2) == NULL || (yyvsp[-2].item_list2)->push_back((yyvsp[0].item))) MYSQL_YYABORT; (yyval.item_list2)= (yyvsp[-2].item_list2); } -#line 30620 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30620 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1494: -#line 10324 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10324 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item_list2)= (yyvsp[0].item_list2); } -#line 30626 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30626 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1495: -#line 10325 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10325 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item_list2)= (yyvsp[-1].item_list2); } -#line 30632 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30632 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1496: -#line 10330 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10330 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item_list2)= NEW_PTN PT_item_list; if ((yyval.item_list2) == NULL || (yyval.item_list2)->push_back((yyvsp[0].item))) MYSQL_YYABORT; } -#line 30642 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30642 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1497: -#line 10336 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10336 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if ((yyvsp[-2].item_list2) == NULL || (yyvsp[-2].item_list2)->push_back((yyvsp[0].item))) MYSQL_YYABORT; (yyval.item_list2)= (yyvsp[-2].item_list2); } -#line 30652 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30652 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1498: -#line 10344 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10344 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NULL; } -#line 30658 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30658 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1499: -#line 10345 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10345 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= (yyvsp[0].item); } -#line 30664 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30664 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1500: -#line 10349 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10349 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NULL; } -#line 30670 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30670 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1501: -#line 10350 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10350 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= (yyvsp[0].item); } -#line 30676 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30676 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1502: -#line 10355 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10355 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item_list)= new List; if ((yyval.item_list) == NULL) @@ -30684,379 +30684,379 @@ (yyval.item_list)->push_back((yyvsp[-2].item)); (yyval.item_list)->push_back((yyvsp[0].item)); } -#line 30688 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30688 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1503: -#line 10363 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10363 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyvsp[-4].item_list)->push_back((yyvsp[-2].item)); (yyvsp[-4].item_list)->push_back((yyvsp[0].item)); (yyval.item_list)= (yyvsp[-4].item_list); } -#line 30698 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30698 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1505: -#line 10375 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10375 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.table_list2)= NEW_PTN PT_table_ref_join_table((yyvsp[0].node)); } -#line 30706 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30706 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1506: -#line 10382 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10382 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.join_table_list)= NEW_PTN PT_join_table_list((yyloc), (yyvsp[0].table_list2)); } -#line 30714 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30714 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1508: -#line 10396 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10396 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.table_list2)= (yyvsp[-1].table_list2); } -#line 30720 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30720 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1510: -#line 10404 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10404 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.table_list2)= NEW_PTN PT_derived_table_list((yyloc), (yyvsp[-2].table_list2), (yyvsp[0].table_list2)); } -#line 30728 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30728 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1511: -#line 10424 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10424 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.node)= NEW_PTN PT_join_table((yyvsp[-2].table_list2), (yylsp[-1]), (yyvsp[0].table_list2)); } -#line 30736 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30736 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1512: -#line 10428 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10428 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.node)= NEW_PTN PT_join_table((yyvsp[-2].table_list2), (yylsp[-1]), (yyvsp[0].table_list2)); } -#line 30744 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30744 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1513: -#line 10434 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10434 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.node)= NEW_PTN PT_join_table_on((yyvsp[-4].table_list2), (yylsp[-3]), (yyvsp[-2].table_list2), (yyvsp[0].item)); } -#line 30752 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30752 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1514: -#line 10440 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10440 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.node)= NEW_PTN PT_join_table_on((yyvsp[-4].table_list2), (yylsp[-3]), (yyvsp[-2].table_list2), (yyvsp[0].item)); } -#line 30760 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30760 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1515: -#line 10446 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10446 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.node)= NEW_PTN PT_join_table_using((yyvsp[-6].table_list2), (yylsp[-5]), (yyvsp[-4].table_list2), (yyvsp[-1].string_list)); } -#line 30768 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30768 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1516: -#line 10450 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10450 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.node)= NEW_PTN PT_join_table((yyvsp[-3].table_list2), (yylsp[-2]), (yyvsp[0].table_list2)); } -#line 30776 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30776 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1517: -#line 10458 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10458 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.node)= NEW_PTN PT_join_table_on((yyvsp[-6].table_list2), (yylsp[-5]), (yyvsp[-2].table_list2), (yyvsp[0].item)); } -#line 30784 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30784 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1518: -#line 10463 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10463 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.node)= NEW_PTN PT_join_table_using((yyvsp[-8].table_list2), (yylsp[-7]), (yyvsp[-4].table_list2), (yyvsp[-1].string_list)); } -#line 30792 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30792 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1519: -#line 10467 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10467 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.node)= NEW_PTN PT_join_table((yyvsp[-5].table_list2), (yylsp[-4]), (yyvsp[0].table_list2)); } -#line 30800 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30800 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1520: -#line 10475 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10475 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.node)= NEW_PTN PT_join_table_on((yyvsp[-6].table_list2), (yylsp[-5]), (yyvsp[-2].table_list2), (yyvsp[0].item)); } -#line 30808 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30808 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1521: -#line 10480 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10480 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.node)= NEW_PTN PT_join_table_using((yyvsp[-8].table_list2), (yylsp[-7]), (yyvsp[-4].table_list2), (yyvsp[-1].string_list)); } -#line 30816 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30816 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1522: -#line 10484 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10484 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.node)= NEW_PTN PT_join_table((yyvsp[-5].table_list2), (yylsp[-4]), (yyvsp[0].table_list2)); } -#line 30824 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30824 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1523: -#line 10490 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10490 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 30830 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30830 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1524: -#line 10491 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10491 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 30836 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30836 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1525: -#line 10492 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10492 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 30842 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30842 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1526: -#line 10500 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10500 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.string_list)= NULL; } -#line 30848 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30848 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1528: -#line 10506 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10506 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.string_list)= (yyvsp[-1].string_list); } -#line 30856 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30856 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1529: -#line 10521 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10521 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.table_list2)= NEW_PTN PT_table_factor_table_ident((yyvsp[-3].table), (yyvsp[-2].string_list), (yyvsp[-1].lex_str_ptr), (yyvsp[0].key_usage_list)); } -#line 30864 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30864 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1530: -#line 10525 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10525 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.table_list2)= NEW_PTN PT_table_factor_select_sym((yyloc), (yyvsp[-3].optimizer_hints), (yyvsp[-2].select_options), (yyvsp[-1].item_list2), (yyvsp[0].table_expression)); } -#line 30872 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30872 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1531: -#line 10547 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10547 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.table_list2)= NEW_PTN PT_table_factor_parenthesis((yyvsp[-2].table_list2), (yyvsp[0].lex_str_ptr), (yylsp[0])); } -#line 30880 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30880 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1532: -#line 10574 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10574 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.table_list2)= NEW_PTN PT_select_derived_union_select((yyvsp[-1].table_list2), (yyvsp[0].node), (yylsp[0])); } -#line 30888 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30888 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1533: -#line 10578 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10578 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.table_list2)= NEW_PTN PT_select_derived_union_union((yyvsp[-3].table_list2), (yylsp[-2]), (yyvsp[-1].num), (yyvsp[0].select_lex2)); } -#line 30896 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30896 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1534: -#line 10585 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10585 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /* TODO: remove this semantic action (currently this removal adds shift/reduce conflict) */ } -#line 30907 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30907 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1535: -#line 10592 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10592 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.select_part2_derived)= NEW_PTN PT_select_part2_derived((yyvsp[-1].ulonglong_number), (yyvsp[0].item_list2)); } -#line 30915 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30915 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1536: -#line 10600 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10600 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.table_list2)= NEW_PTN PT_select_derived((yylsp[0]), (yyvsp[0].table_list2)); } -#line 30923 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30923 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1537: -#line 10606 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10606 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 30929 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30929 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1538: -#line 10607 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10607 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 30935 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30935 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1539: -#line 10612 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10612 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= old_mode ? INDEX_HINT_MASK_JOIN : INDEX_HINT_MASK_ALL; } -#line 30943 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30943 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1540: -#line 10615 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10615 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= INDEX_HINT_MASK_JOIN; } -#line 30949 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30949 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1541: -#line 10616 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10616 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= INDEX_HINT_MASK_ORDER; } -#line 30955 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30955 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1542: -#line 10617 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10617 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= INDEX_HINT_MASK_GROUP; } -#line 30961 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30961 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1543: -#line 10621 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10621 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.index_hint)= INDEX_HINT_FORCE; } -#line 30967 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30967 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1544: -#line 10622 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10622 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.index_hint)= INDEX_HINT_IGNORE; } -#line 30973 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30973 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1545: -#line 10628 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10628 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { init_index_hints((yyvsp[-1].key_usage_list), (yyvsp[-5].index_hint), (yyvsp[-3].num)); (yyval.key_usage_list)= (yyvsp[-1].key_usage_list); } -#line 30982 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30982 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1546: -#line 10634 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10634 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { init_index_hints((yyvsp[-1].key_usage_list), INDEX_HINT_USE, (yyvsp[-3].num)); (yyval.key_usage_list)= (yyvsp[-1].key_usage_list); } -#line 30991 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 30991 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1548: -#line 10643 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10643 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyvsp[0].key_usage_list)->concat((yyvsp[-1].key_usage_list)); (yyval.key_usage_list)= (yyvsp[0].key_usage_list); } -#line 31000 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31000 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1549: -#line 10650 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10650 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.key_usage_list)= NULL; } -#line 31006 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31006 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1552: -#line 10660 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10660 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.key_usage_list)= new (YYTHD->mem_root) List; Index_hint *hint= new (YYTHD->mem_root) Index_hint(NULL, 0); if ((yyval.key_usage_list) == NULL || hint == NULL || (yyval.key_usage_list)->push_front(hint)) MYSQL_YYABORT; } -#line 31017 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31017 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1554: -#line 10671 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10671 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.key_usage_element)= new (YYTHD->mem_root) Index_hint((yyvsp[0].lex_str).str, (yyvsp[0].lex_str).length); if ((yyval.key_usage_element) == NULL) MYSQL_YYABORT; } -#line 31027 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31027 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1555: -#line 10677 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10677 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.key_usage_element)= new (YYTHD->mem_root) Index_hint(STRING_WITH_LEN("PRIMARY")); if ((yyval.key_usage_element) == NULL) MYSQL_YYABORT; } -#line 31037 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31037 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1556: -#line 10686 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10686 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.key_usage_list)= new (YYTHD->mem_root) List; if ((yyval.key_usage_list) == NULL || (yyval.key_usage_list)->push_front((yyvsp[0].key_usage_element))) MYSQL_YYABORT; } -#line 31047 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31047 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1557: -#line 10692 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10692 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if ((yyval.key_usage_list)->push_front((yyvsp[0].key_usage_element))) MYSQL_YYABORT; } -#line 31056 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31056 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1558: -#line 10700 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10700 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (!((yyval.string_list)= new List)) MYSQL_YYABORT; @@ -31067,11 +31067,11 @@ MYSQL_YYABORT; (yyval.string_list)->push_back(s); } -#line 31071 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31071 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1559: -#line 10711 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10711 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { String *s= new (YYTHD->mem_root) String((const char *) (yyvsp[0].lex_str).str, (yyvsp[0].lex_str).length, @@ -31081,269 +31081,269 @@ (yyvsp[-2].string_list)->push_back(s); (yyval.string_list)= (yyvsp[-2].string_list); } -#line 31085 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31085 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1560: -#line 10723 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10723 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 31091 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31091 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1561: -#line 10724 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10724 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.interval)=INTERVAL_DAY_HOUR; } -#line 31097 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31097 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1562: -#line 10725 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10725 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.interval)=INTERVAL_DAY_MICROSECOND; } -#line 31103 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31103 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1563: -#line 10726 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10726 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.interval)=INTERVAL_DAY_MINUTE; } -#line 31109 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31109 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1564: -#line 10727 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10727 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.interval)=INTERVAL_DAY_SECOND; } -#line 31115 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31115 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1565: -#line 10728 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10728 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.interval)=INTERVAL_HOUR_MICROSECOND; } -#line 31121 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31121 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1566: -#line 10729 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10729 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.interval)=INTERVAL_HOUR_MINUTE; } -#line 31127 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31127 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1567: -#line 10730 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10730 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.interval)=INTERVAL_HOUR_SECOND; } -#line 31133 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31133 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1568: -#line 10731 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10731 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.interval)=INTERVAL_MINUTE_MICROSECOND; } -#line 31139 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31139 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1569: -#line 10732 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10732 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.interval)=INTERVAL_MINUTE_SECOND; } -#line 31145 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31145 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1570: -#line 10733 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10733 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.interval)=INTERVAL_SECOND_MICROSECOND; } -#line 31151 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31151 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1571: -#line 10734 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10734 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.interval)=INTERVAL_YEAR_MONTH; } -#line 31157 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31157 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1572: -#line 10738 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10738 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.interval_time_st)=INTERVAL_DAY; } -#line 31163 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31163 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1573: -#line 10739 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10739 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.interval_time_st)=INTERVAL_WEEK; } -#line 31169 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31169 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1574: -#line 10740 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10740 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.interval_time_st)=INTERVAL_HOUR; } -#line 31175 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31175 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1575: -#line 10741 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10741 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.interval_time_st)=INTERVAL_MINUTE; } -#line 31181 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31181 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1576: -#line 10742 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10742 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.interval_time_st)=INTERVAL_MONTH; } -#line 31187 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31187 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1577: -#line 10743 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10743 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.interval_time_st)=INTERVAL_QUARTER; } -#line 31193 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31193 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1578: -#line 10744 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10744 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.interval_time_st)=INTERVAL_SECOND; } -#line 31199 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31199 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1579: -#line 10745 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10745 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.interval_time_st)=INTERVAL_MICROSECOND; } -#line 31205 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31205 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1580: -#line 10746 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10746 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.interval_time_st)=INTERVAL_YEAR; } -#line 31211 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31211 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1581: -#line 10750 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10750 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {(yyval.date_time_type)= MYSQL_TIMESTAMP_DATE; } -#line 31217 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31217 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1582: -#line 10751 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10751 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {(yyval.date_time_type)= MYSQL_TIMESTAMP_TIME; } -#line 31223 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31223 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1583: -#line 10752 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10752 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {(yyval.date_time_type)= MYSQL_TIMESTAMP_DATETIME; } -#line 31229 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31229 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1584: -#line 10753 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10753 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {(yyval.date_time_type)= MYSQL_TIMESTAMP_DATETIME; } -#line 31235 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31235 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1588: -#line 10763 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10763 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lex_str_ptr)=0; } -#line 31241 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31241 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1589: -#line 10765 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10765 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lex_str_ptr)= (LEX_STRING*) sql_memdup(&(yyvsp[0].lex_str),sizeof(LEX_STRING)); if ((yyval.lex_str_ptr) == NULL) MYSQL_YYABORT; } -#line 31251 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31251 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1592: -#line 10778 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10778 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NULL; } -#line 31257 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31257 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1593: -#line 10780 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10780 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= new PTI_context((yyloc), (yyvsp[0].item)); } -#line 31265 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31265 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1594: -#line 10786 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10786 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NULL; } -#line 31271 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31271 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1595: -#line 10788 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10788 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= new PTI_context((yyloc), (yyvsp[0].item)); } -#line 31279 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31279 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1596: -#line 10794 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10794 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= (yyvsp[0].item); } -#line 31285 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31285 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1597: -#line 10795 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10795 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NULL; } -#line 31291 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31291 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1598: -#line 10803 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10803 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.group)= NULL; } -#line 31297 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31297 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1599: -#line 10805 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10805 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.group)= NEW_PTN PT_group((yyvsp[-1].order_list), (yyvsp[0].olap_type)); } -#line 31305 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31305 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1600: -#line 10812 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10812 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyvsp[-2].order_list)->push_back((yyvsp[0].order_expr)); (yyval.order_list)= (yyvsp[-2].order_list); } -#line 31314 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31314 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1601: -#line 10817 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10817 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.order_list)= NEW_PTN PT_order_list(); if ((yyval.order_list) == NULL) MYSQL_YYABORT; (yyval.order_list)->push_back((yyvsp[0].order_expr)); } -#line 31325 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31325 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1602: -#line 10826 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10826 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.olap_type)= UNSPECIFIED_OLAP_TYPE; } -#line 31331 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31331 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1603: -#line 10827 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10827 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.olap_type)= CUBE_TYPE; } -#line 31337 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31337 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1604: -#line 10835 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10835 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.olap_type)= ROLLUP_TYPE; } -#line 31343 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31343 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1608: -#line 10860 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10860 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { ITEMIZE((yyvsp[-1].item), &(yyvsp[-1].item)); @@ -31356,327 +31356,327 @@ order->is_position= false; add_order_to_list(thd, order); } -#line 31360 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31360 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1609: -#line 10879 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10879 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.order)= NULL; } -#line 31366 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31366 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1611: -#line 10885 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10885 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.order)= NEW_PTN PT_order((yyvsp[0].order_list)); } -#line 31374 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31374 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1612: -#line 10892 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10892 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyvsp[-2].order_list)->push_back((yyvsp[0].order_expr)); (yyval.order_list)= (yyvsp[-2].order_list); } -#line 31383 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31383 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1613: -#line 10897 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10897 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.order_list)= NEW_PTN PT_order_list(); if ((yyval.order_list) == NULL) MYSQL_YYABORT; (yyval.order_list)->push_back((yyvsp[0].order_expr)); } -#line 31394 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31394 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1614: -#line 10906 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10906 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num) = 1; } -#line 31400 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31400 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1616: -#line 10911 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10911 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num) =1; } -#line 31406 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31406 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1617: -#line 10912 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10912 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num) =0; } -#line 31412 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31412 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1618: -#line 10916 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10916 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.limit_clause)= NULL; } -#line 31418 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31418 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1620: -#line 10922 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10922 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.limit_clause)= NEW_PTN PT_limit_clause((yyvsp[0].limit_options)); } -#line 31426 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31426 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1621: -#line 10929 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10929 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.limit_options).limit= (yyvsp[0].item); (yyval.limit_options).opt_offset= NULL; (yyval.limit_options).is_offset_first= false; } -#line 31436 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31436 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1622: -#line 10935 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10935 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.limit_options).limit= (yyvsp[0].item); (yyval.limit_options).opt_offset= (yyvsp[-2].item); (yyval.limit_options).is_offset_first= true; } -#line 31446 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31446 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1623: -#line 10941 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10941 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.limit_options).limit= (yyvsp[-2].item); (yyval.limit_options).opt_offset= (yyvsp[0].item); (yyval.limit_options).is_offset_first= false; } -#line 31456 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31456 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1624: -#line 10950 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10950 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN PTI_limit_option_ident((yyloc), (yyvsp[0].lex_str), (yylsp[0]).raw); } -#line 31464 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31464 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1625: -#line 10954 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10954 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN PTI_limit_option_param_marker((yyloc), (yyvsp[0].param_marker)); } -#line 31472 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31472 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1626: -#line 10958 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10958 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_uint((yyloc), (yyvsp[0].lex_str).str, (yyvsp[0].lex_str).length); } -#line 31480 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31480 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1627: -#line 10962 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10962 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_uint((yyloc), (yyvsp[0].lex_str).str, (yyvsp[0].lex_str).length); } -#line 31488 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31488 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1628: -#line 10966 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10966 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_uint((yyloc), (yyvsp[0].lex_str).str, (yyvsp[0].lex_str).length); } -#line 31496 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31496 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1629: -#line 10972 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10972 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NULL; } -#line 31502 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31502 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1630: -#line 10973 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10973 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= (yyvsp[0].item); } -#line 31508 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31508 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1631: -#line 10977 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10977 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { int error; (yyval.ulong_num)= (ulong) my_strtoll10((yyvsp[0].lex_str).str, (char**) 0, &error); } -#line 31514 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31514 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1632: -#line 10978 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10978 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ulong_num)= (ulong) my_strtoll((yyvsp[0].lex_str).str, (char**) 0, 16); } -#line 31520 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31520 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1633: -#line 10979 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10979 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { int error; (yyval.ulong_num)= (ulong) my_strtoll10((yyvsp[0].lex_str).str, (char**) 0, &error); } -#line 31526 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31526 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1634: -#line 10980 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10980 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { int error; (yyval.ulong_num)= (ulong) my_strtoll10((yyvsp[0].lex_str).str, (char**) 0, &error); } -#line 31532 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31532 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1635: -#line 10981 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10981 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { int error; (yyval.ulong_num)= (ulong) my_strtoll10((yyvsp[0].lex_str).str, (char**) 0, &error); } -#line 31538 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31538 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1636: -#line 10982 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10982 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { int error; (yyval.ulong_num)= (ulong) my_strtoll10((yyvsp[0].lex_str).str, (char**) 0, &error); } -#line 31544 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31544 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1637: -#line 10986 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10986 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { int error; (yyval.ulong_num)= (ulong) my_strtoll10((yyvsp[0].lex_str).str, (char**) 0, &error); } -#line 31550 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31550 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1638: -#line 10987 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10987 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ulong_num)= (ulong) my_strtoll((yyvsp[0].lex_str).str, (char**) 0, 16); } -#line 31556 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31556 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1639: -#line 10988 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10988 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { int error; (yyval.ulong_num)= (ulong) my_strtoll10((yyvsp[0].lex_str).str, (char**) 0, &error); } -#line 31562 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31562 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1640: -#line 10989 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10989 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { int error; (yyval.ulong_num)= (ulong) my_strtoll10((yyvsp[0].lex_str).str, (char**) 0, &error); } -#line 31568 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31568 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1641: -#line 10990 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10990 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { MYSQL_YYABORT; } -#line 31574 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31574 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1642: -#line 10994 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10994 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { int error; (yyval.ulonglong_number)= (ulonglong) my_strtoll10((yyvsp[0].lex_str).str, (char**) 0, &error); } -#line 31580 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31580 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1643: -#line 10995 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10995 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { int error; (yyval.ulonglong_number)= (ulonglong) my_strtoll10((yyvsp[0].lex_str).str, (char**) 0, &error); } -#line 31586 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31586 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1644: -#line 10996 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10996 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { int error; (yyval.ulonglong_number)= (ulonglong) my_strtoll10((yyvsp[0].lex_str).str, (char**) 0, &error); } -#line 31592 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31592 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1645: -#line 10997 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10997 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { int error; (yyval.ulonglong_number)= (ulonglong) my_strtoll10((yyvsp[0].lex_str).str, (char**) 0, &error); } -#line 31598 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31598 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1646: -#line 10998 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 10998 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { int error; (yyval.ulonglong_number)= (ulonglong) my_strtoll10((yyvsp[0].lex_str).str, (char**) 0, &error); } -#line 31604 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31604 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1647: -#line 11002 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11002 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { int error; (yyval.ulonglong_number)= (ulonglong) my_strtoll10((yyvsp[0].lex_str).str, (char**) 0, &error); } -#line 31610 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31610 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1648: -#line 11003 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11003 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { int error; (yyval.ulonglong_number)= (ulonglong) my_strtoll10((yyvsp[0].lex_str).str, (char**) 0, &error); } -#line 31616 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31616 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1649: -#line 11004 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11004 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { int error; (yyval.ulonglong_number)= (ulonglong) my_strtoll10((yyvsp[0].lex_str).str, (char**) 0, &error); } -#line 31622 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31622 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1650: -#line 11005 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11005 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { MYSQL_YYABORT; } -#line 31628 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31628 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1651: -#line 11010 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11010 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { my_syntax_error(ER(ER_ONLY_INTEGERS_ALLOWED)); } -#line 31634 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31634 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1654: -#line 11019 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11019 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.procedure_analyse)= NULL; } -#line 31640 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31640 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1655: -#line 11022 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11022 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { push_deprecated_warn_no_replacement(YYTHD, "PROCEDURE ANALYSE"); (yyval.procedure_analyse)= NEW_PTN PT_procedure_analyse((yyvsp[-1].procedure_analyse_params)); } -#line 31649 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31649 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1656: -#line 11030 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11030 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.procedure_analyse_params).max_tree_elements= Proc_analyse_params::default_max_tree_elements; (yyval.procedure_analyse_params).max_treemem= Proc_analyse_params::default_max_treemem; } -#line 31658 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31658 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1657: -#line 11035 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11035 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.procedure_analyse_params).max_tree_elements= static_cast((yyvsp[0].ulonglong_number)); (yyval.procedure_analyse_params).max_treemem= Proc_analyse_params::default_max_treemem; } -#line 31667 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31667 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1658: -#line 11040 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11040 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.procedure_analyse_params).max_tree_elements= static_cast((yyvsp[-2].ulonglong_number)); (yyval.procedure_analyse_params).max_treemem= static_cast((yyvsp[0].ulonglong_number)); } -#line 31676 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31676 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1659: -#line 11048 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11048 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { int error; (yyval.ulonglong_number)= (ulonglong) my_strtoll10((yyvsp[0].lex_str).str, (char**) 0, &error); @@ -31686,83 +31686,83 @@ MYSQL_YYABORT; } } -#line 31690 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31690 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1660: -#line 11061 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11061 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.select_var_list)= (yyvsp[-2].select_var_list); if ((yyval.select_var_list) == NULL || (yyval.select_var_list)->push_back((yyvsp[0].select_var_ident))) MYSQL_YYABORT; } -#line 31700 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31700 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1661: -#line 11067 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11067 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.select_var_list)= NEW_PTN PT_select_var_list; if ((yyval.select_var_list) == NULL || (yyval.select_var_list)->push_back((yyvsp[0].select_var_ident))) MYSQL_YYABORT; } -#line 31710 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31710 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1662: -#line 11076 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11076 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.select_var_ident)= NEW_PTN PT_select_var((yyvsp[0].lex_str)); } -#line 31718 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31718 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1663: -#line 11080 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11080 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.select_var_ident)= NEW_PTN PT_select_sp_var((yyvsp[0].lex_str)); } -#line 31726 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31726 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1664: -#line 11086 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11086 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.into_destination)= NULL; } -#line 31732 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31732 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1666: -#line 11092 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11092 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.into_destination)= (yyvsp[0].into_destination); } -#line 31740 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31740 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1667: -#line 11101 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11101 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.into_destination)= NEW_PTN PT_into_destination_outfile((yyvsp[-3].lex_str), (yyvsp[-2].charset), (yyvsp[-1].field_separators), (yyvsp[0].line_separators)); } -#line 31748 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31748 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1668: -#line 11105 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11105 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.into_destination)= NEW_PTN PT_into_destination_dumpfile((yyvsp[0].lex_str)); } -#line 31756 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31756 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1669: -#line 11108 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11108 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.into_destination)= (yyvsp[0].select_var_list); } -#line 31762 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31762 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1670: -#line 11117 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11117 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.select)= NEW_PTN PT_select( NEW_PTN PT_select_init2(NULL, @@ -31770,20 +31770,20 @@ NEW_PTN PT_select_options_and_item_list((yyvsp[-1].select_options), (yyvsp[0].item_list2))), NULL), SQLCOM_DO); } -#line 31774 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31774 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1671: -#line 11128 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11128 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.select_options).query_spec_options= 0; (yyval.select_options).sql_cache= SELECT_LEX::SQL_CACHE_UNSPECIFIED; } -#line 31783 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31783 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1672: -#line 11140 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11140 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->sql_command = SQLCOM_DROP_TABLE; @@ -31792,23 +31792,23 @@ YYPS->m_lock_type= TL_UNLOCK; YYPS->m_mdl_type= MDL_EXCLUSIVE; } -#line 31796 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31796 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1673: -#line 11149 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11149 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 31802 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31802 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1674: -#line 11150 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11150 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 31808 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31808 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1675: -#line 11151 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11151 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; Alter_drop *ad= new Alter_drop(Alter_drop::KEY, (yyvsp[-3].lex_str).str); @@ -31824,28 +31824,28 @@ MDL_SHARED_UPGRADABLE)) MYSQL_YYABORT; } -#line 31828 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31828 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1676: -#line 11166 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11166 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 31834 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31834 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1677: -#line 11168 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11168 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->sql_command= SQLCOM_DROP_DB; lex->drop_if_exists=(yyvsp[-1].num); lex->name= (yyvsp[0].lex_str); } -#line 31845 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31845 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1678: -#line 11175 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11175 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= thd->lex; @@ -31868,11 +31868,11 @@ spname->init_qname(thd); lex->spname= spname; } -#line 31872 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31872 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1679: -#line 11198 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11198 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /* Unlike DROP PROCEDURE, "DROP FUNCTION ident" should work @@ -31904,11 +31904,11 @@ spname->init_qname(thd); lex->spname= spname; } -#line 31908 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31908 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1680: -#line 11230 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11230 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; if (lex->sphead) @@ -31920,21 +31920,21 @@ lex->drop_if_exists= (yyvsp[-1].num); lex->spname= (yyvsp[0].spname); } -#line 31924 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31924 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1681: -#line 11242 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11242 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->sql_command= SQLCOM_DROP_USER; lex->drop_if_exists= (yyvsp[-2].num); } -#line 31934 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31934 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1682: -#line 11248 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11248 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->sql_command= SQLCOM_DROP_VIEW; @@ -31942,66 +31942,66 @@ YYPS->m_lock_type= TL_UNLOCK; YYPS->m_mdl_type= MDL_EXCLUSIVE; } -#line 31946 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31946 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1683: -#line 11256 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11256 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 31952 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31952 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1684: -#line 11258 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11258 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->drop_if_exists= (yyvsp[-1].num); Lex->spname= (yyvsp[0].spname); Lex->sql_command = SQLCOM_DROP_EVENT; } -#line 31962 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31962 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1685: -#line 11264 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11264 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->sql_command= SQLCOM_DROP_TRIGGER; lex->drop_if_exists= (yyvsp[-1].num); lex->spname= (yyvsp[0].spname); } -#line 31973 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31973 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1686: -#line 11271 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11271 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->alter_tablespace_info->ts_cmd_type= DROP_TABLESPACE; } -#line 31982 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31982 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1687: -#line 11276 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11276 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->alter_tablespace_info->ts_cmd_type= DROP_LOGFILE_GROUP; } -#line 31991 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 31991 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1688: -#line 11281 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11281 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->sql_command = SQLCOM_DROP_SERVER; Lex->m_sql_cmd= new (YYTHD->mem_root) Sql_cmd_drop_server((yyvsp[0].lex_str), (yyvsp[-1].num)); } -#line 32001 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32001 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1691: -#line 11295 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11295 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (!Select->add_table_to_list(YYTHD, (yyvsp[0].table), NULL, TL_OPTION_UPDATING, @@ -32009,66 +32009,66 @@ YYPS->m_mdl_type)) MYSQL_YYABORT; } -#line 32013 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32013 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1692: -#line 11306 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11306 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.table_ident_list).init(YYTHD->mem_root); if ((yyval.table_ident_list).push_back((yyvsp[0].table_ident))) MYSQL_YYABORT; // OOM } -#line 32023 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32023 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1693: -#line 11312 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11312 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.table_ident_list)= (yyvsp[-2].table_ident_list); if ((yyval.table_ident_list).push_back((yyvsp[0].table_ident))) MYSQL_YYABORT; // OOM } -#line 32033 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32033 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1694: -#line 11320 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11320 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= 0; } -#line 32039 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32039 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1695: -#line 11321 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11321 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= 1; } -#line 32045 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32045 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1696: -#line 11325 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11325 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= 0; } -#line 32051 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32051 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1697: -#line 11326 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11326 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= 1; } -#line 32057 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32057 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1705: -#line 11356 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11356 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.statement)= NEW_PTN PT_insert(false, (yyvsp[-7].optimizer_hints), (yyvsp[-6].lock_type), (yyvsp[-5].is_not_empty), (yyvsp[-3].table), (yyvsp[-2].string_list), (yyvsp[-1].column_row_value_list_pair).column_list, (yyvsp[-1].column_row_value_list_pair).row_value_list, NULL, (yyvsp[0].column_value_list_pair).column_list, (yyvsp[0].column_value_list_pair).value_list); } -#line 32068 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32068 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1706: -#line 11371 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11371 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { PT_insert_values_list *one_row= NEW_PTN PT_insert_values_list; if (one_row == NULL || one_row->push_back(&(yyvsp[-1].column_value_list_pair).value_list->value)) @@ -32078,33 +32078,33 @@ NULL, (yyvsp[0].column_value_list_pair).column_list, (yyvsp[0].column_value_list_pair).value_list); } -#line 32082 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32082 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1707: -#line 11388 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11388 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.statement)= NEW_PTN PT_insert(false, (yyvsp[-7].optimizer_hints), (yyvsp[-6].lock_type), (yyvsp[-5].is_not_empty), (yyvsp[-3].table), (yyvsp[-2].string_list), (yyvsp[-1].insert_from_subquery).column_list, NULL, (yyvsp[-1].insert_from_subquery).insert_query_expression, (yyvsp[0].column_value_list_pair).column_list, (yyvsp[0].column_value_list_pair).value_list); } -#line 32093 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32093 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1708: -#line 11403 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11403 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.statement)= NEW_PTN PT_insert(true, (yyvsp[-5].optimizer_hints), (yyvsp[-4].lock_type), false, (yyvsp[-2].table), (yyvsp[-1].string_list), (yyvsp[0].column_row_value_list_pair).column_list, (yyvsp[0].column_row_value_list_pair).row_value_list, NULL, NULL, NULL); } -#line 32104 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32104 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1709: -#line 11416 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11416 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { PT_insert_values_list *one_row= NEW_PTN PT_insert_values_list; if (one_row == NULL || one_row->push_back(&(yyvsp[0].column_value_list_pair).value_list->value)) @@ -32114,34 +32114,34 @@ NULL, NULL, NULL); } -#line 32118 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32118 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1710: -#line 11431 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11431 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.statement)= NEW_PTN PT_insert(true, (yyvsp[-5].optimizer_hints), (yyvsp[-4].lock_type), false, (yyvsp[-2].table), (yyvsp[-1].string_list), (yyvsp[0].insert_from_subquery).column_list, NULL, (yyvsp[0].insert_from_subquery).insert_query_expression, NULL, NULL); } -#line 32129 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32129 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1711: -#line 11440 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11440 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lock_type)= TL_WRITE_CONCURRENT_DEFAULT; } -#line 32135 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32135 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1712: -#line 11441 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11441 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lock_type)= TL_WRITE_LOW_PRIORITY; } -#line 32141 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32141 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1713: -#line 11443 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11443 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lock_type)= TL_WRITE_CONCURRENT_DEFAULT; @@ -32150,23 +32150,23 @@ ER(ER_WARN_LEGACY_SYNTAX_CONVERTED), "INSERT DELAYED", "INSERT"); } -#line 32154 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32154 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1714: -#line 11451 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11451 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lock_type)= TL_WRITE; } -#line 32160 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32160 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1715: -#line 11455 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11455 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lock_type)= (yyvsp[0].lock_type); } -#line 32166 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32166 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1716: -#line 11457 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11457 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lock_type)= TL_WRITE_DEFAULT; @@ -32175,233 +32175,233 @@ ER(ER_WARN_LEGACY_SYNTAX_CONVERTED), "REPLACE DELAYED", "REPLACE"); } -#line 32179 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32179 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1719: -#line 11474 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11474 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.column_row_value_list_pair).column_list= NEW_PTN PT_item_list; (yyval.column_row_value_list_pair).row_value_list= (yyvsp[0].values_list); } -#line 32188 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32188 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1720: -#line 11479 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11479 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.column_row_value_list_pair).column_list= NEW_PTN PT_item_list; (yyval.column_row_value_list_pair).row_value_list= (yyvsp[0].values_list); } -#line 32197 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32197 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1721: -#line 11484 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11484 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.column_row_value_list_pair).column_list= (yyvsp[-2].item_list2); (yyval.column_row_value_list_pair).row_value_list= (yyvsp[0].values_list); } -#line 32206 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32206 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1722: -#line 11492 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11492 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.insert_from_subquery).column_list= NEW_PTN PT_item_list; (yyval.insert_from_subquery).insert_query_expression= (yyvsp[0].insert_query_expression); } -#line 32215 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32215 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1723: -#line 11497 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11497 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.insert_from_subquery).column_list= NEW_PTN PT_item_list; (yyval.insert_from_subquery).insert_query_expression= (yyvsp[0].insert_query_expression); } -#line 32224 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32224 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1724: -#line 11502 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11502 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.insert_from_subquery).column_list= (yyvsp[-2].item_list2); (yyval.insert_from_subquery).insert_query_expression= (yyvsp[0].insert_query_expression); } -#line 32233 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32233 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1725: -#line 11510 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11510 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if ((yyval.item_list2)->push_back((yyvsp[0].item))) MYSQL_YYABORT; (yyval.item_list2)= (yyvsp[-2].item_list2); } -#line 32243 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32243 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1726: -#line 11516 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11516 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item_list2)= NEW_PTN PT_item_list; if ((yyval.item_list2) == NULL || (yyval.item_list2)->push_back((yyvsp[0].item))) MYSQL_YYABORT; } -#line 32253 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32253 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1727: -#line 11525 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11525 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.values_list)= (yyvsp[0].values_list); } -#line 32261 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32261 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1728: -#line 11532 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11532 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.insert_query_expression)= NEW_PTN PT_insert_query_expression(false, (yyvsp[-1].create_select), (yyvsp[0].union_list)); } -#line 32269 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32269 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1729: -#line 11536 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11536 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.insert_query_expression)= NEW_PTN PT_insert_query_expression(true, (yyvsp[-2].create_select), (yyvsp[0].node)); } -#line 32277 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32277 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1732: -#line 11548 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11548 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if ((yyval.values_list)->push_back(&(yyvsp[0].item_list2)->value)) MYSQL_YYABORT; } -#line 32286 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32286 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1733: -#line 11553 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11553 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.values_list)= NEW_PTN PT_insert_values_list; if ((yyval.values_list) == NULL || (yyval.values_list)->push_back(&(yyvsp[0].item_list2)->value)) MYSQL_YYABORT; } -#line 32296 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32296 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1734: -#line 11562 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11562 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 32302 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32302 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1735: -#line 11563 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11563 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 32308 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32308 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1736: -#line 11567 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11567 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 32314 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32314 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1737: -#line 11568 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11568 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 32320 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32320 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1738: -#line 11572 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11572 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item_list2)= (yyvsp[-1].item_list2); } -#line 32326 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32326 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1739: -#line 11577 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11577 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item_list2)= NEW_PTN PT_item_list; if ((yyval.item_list2) == NULL) MYSQL_YYABORT; } -#line 32336 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32336 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1741: -#line 11587 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11587 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if ((yyvsp[-2].item_list2)->push_back((yyvsp[0].item))) MYSQL_YYABORT; (yyval.item_list2)= (yyvsp[-2].item_list2); } -#line 32346 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32346 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1742: -#line 11593 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11593 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item_list2)= NEW_PTN PT_item_list; if ((yyval.item_list2) == NULL || (yyval.item_list2)->push_back((yyvsp[0].item))) MYSQL_YYABORT; } -#line 32356 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32356 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1744: -#line 11603 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11603 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_default_value((yyloc)); } -#line 32364 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32364 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1745: -#line 11610 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11610 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.column_value_list_pair).value_list= NULL; (yyval.column_value_list_pair).column_list= NULL; } -#line 32373 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32373 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1746: -#line 11615 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11615 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.column_value_list_pair)= (yyvsp[0].column_value_list_pair); } -#line 32381 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32381 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1747: -#line 11632 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11632 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.statement)= NEW_PTN PT_update((yyvsp[-8].optimizer_hints), (yyvsp[-7].lock_type), (yyvsp[-6].is_not_empty), (yyvsp[-5].join_table_list), (yyvsp[-3].column_value_list_pair).column_list, (yyvsp[-3].column_value_list_pair).value_list, (yyvsp[-2].item), (yyvsp[-1].order), (yyvsp[0].item)); } -#line 32390 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32390 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1748: -#line 11640 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11640 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.column_value_list_pair)= (yyvsp[-2].column_value_list_pair); if ((yyval.column_value_list_pair).column_list->push_back((yyvsp[0].column_value_pair).column) || (yyval.column_value_list_pair).value_list->push_back((yyvsp[0].column_value_pair).value)) MYSQL_YYABORT; // OOM } -#line 32401 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32401 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1749: -#line 11647 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11647 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.column_value_list_pair).column_list= NEW_PTN PT_item_list; (yyval.column_value_list_pair).value_list= NEW_PTN PT_item_list; @@ -32410,86 +32410,86 @@ (yyval.column_value_list_pair).value_list->push_back((yyvsp[0].column_value_pair).value)) MYSQL_YYABORT; // OOM } -#line 32414 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32414 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1750: -#line 11659 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11659 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.column_value_pair).column= (yyvsp[-2].item); (yyval.column_value_pair).value= (yyvsp[0].item); } -#line 32423 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32423 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1751: -#line 11666 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11666 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lock_type)= TL_WRITE_DEFAULT; } -#line 32429 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32429 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1752: -#line 11667 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11667 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lock_type)= TL_WRITE_LOW_PRIORITY; } -#line 32435 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32435 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1753: -#line 11681 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11681 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.statement)= NEW_PTN PT_delete(YYTHD->mem_root, (yyvsp[-7].optimizer_hints), (yyvsp[-6].num), (yyvsp[-4].table), (yyvsp[-3].string_list), (yyvsp[-2].item), (yyvsp[-1].order), (yyvsp[0].item)); } -#line 32443 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32443 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1754: -#line 11690 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11690 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.statement)= NEW_PTN PT_delete((yyvsp[-5].optimizer_hints), (yyvsp[-4].num), (yyvsp[-3].table_ident_list), (yyvsp[-1].join_table_list), (yyvsp[0].item)); } -#line 32451 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32451 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1755: -#line 11700 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11700 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.statement)= NEW_PTN PT_delete((yyvsp[-6].optimizer_hints), (yyvsp[-5].num), (yyvsp[-3].table_ident_list), (yyvsp[-1].join_table_list), (yyvsp[0].item)); } -#line 32459 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32459 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1758: -#line 11711 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11711 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= 0; } -#line 32465 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32465 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1759: -#line 11712 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11712 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= (yyvsp[-1].opt_delete_option) | (yyvsp[0].num); } -#line 32471 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32471 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1760: -#line 11716 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11716 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.opt_delete_option)= DELETE_QUICK; } -#line 32477 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32477 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1761: -#line 11717 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11717 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.opt_delete_option)= DELETE_LOW_PRIORITY; } -#line 32483 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32483 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1762: -#line 11718 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11718 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.opt_delete_option)= DELETE_IGNORE; } -#line 32489 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32489 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1763: -#line 11723 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11723 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX* lex= Lex; lex->sql_command= SQLCOM_TRUNCATE; @@ -32497,11 +32497,11 @@ YYPS->m_lock_type= TL_WRITE; YYPS->m_mdl_type= MDL_EXCLUSIVE; } -#line 32501 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32501 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1764: -#line 11731 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11731 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX* lex= thd->lex; @@ -32510,122 +32510,122 @@ if (lex->m_sql_cmd == NULL) MYSQL_YYABORT; } -#line 32514 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32514 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1771: -#line 11756 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11756 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->profile_options|= PROFILE_CPU; } -#line 32522 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32522 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1772: -#line 11760 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11760 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->profile_options|= PROFILE_MEMORY; } -#line 32530 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32530 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1773: -#line 11764 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11764 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->profile_options|= PROFILE_BLOCK_IO; } -#line 32538 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32538 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1774: -#line 11768 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11768 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->profile_options|= PROFILE_CONTEXT; } -#line 32546 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32546 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1775: -#line 11772 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11772 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->profile_options|= PROFILE_PAGE_FAULTS; } -#line 32554 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32554 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1776: -#line 11776 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11776 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->profile_options|= PROFILE_IPC; } -#line 32562 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32562 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1777: -#line 11780 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11780 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->profile_options|= PROFILE_SWAPS; } -#line 32570 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32570 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1778: -#line 11784 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11784 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->profile_options|= PROFILE_SOURCE; } -#line 32578 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32578 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1779: -#line 11788 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11788 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->profile_options|= PROFILE_ALL; } -#line 32586 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32586 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1780: -#line 11795 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11795 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->query_id= 0; } -#line 32594 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32594 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1781: -#line 11799 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11799 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { int error; Lex->query_id= static_cast(my_strtoll10((yyvsp[0].lex_str).str, NULL, &error)); if (error != 0) MYSQL_YYABORT; } -#line 32605 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32605 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1782: -#line 11811 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11811 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; new (&lex->create_info) HA_CREATE_INFO; } -#line 32614 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32614 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1784: -#line 11820 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11820 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->sql_command= SQLCOM_SHOW_DATABASES; if (prepare_schema_table(YYTHD, lex, 0, SCH_SCHEMATA)) MYSQL_YYABORT; } -#line 32625 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32625 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1785: -#line 11827 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11827 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->sql_command= SQLCOM_SHOW_TABLES; @@ -32633,11 +32633,11 @@ if (prepare_schema_table(YYTHD, lex, 0, SCH_TABLE_NAMES)) MYSQL_YYABORT; } -#line 32637 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32637 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1786: -#line 11835 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11835 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->sql_command= SQLCOM_SHOW_TRIGGERS; @@ -32645,11 +32645,11 @@ if (prepare_schema_table(YYTHD, lex, 0, SCH_TRIGGERS)) MYSQL_YYABORT; } -#line 32649 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32649 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1787: -#line 11843 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11843 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->sql_command= SQLCOM_SHOW_EVENTS; @@ -32657,11 +32657,11 @@ if (prepare_schema_table(YYTHD, lex, 0, SCH_EVENTS)) MYSQL_YYABORT; } -#line 32661 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32661 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1788: -#line 11851 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11851 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->sql_command= SQLCOM_SHOW_TABLE_STATUS; @@ -32669,11 +32669,11 @@ if (prepare_schema_table(YYTHD, lex, 0, SCH_TABLES)) MYSQL_YYABORT; } -#line 32673 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32673 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1789: -#line 11859 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11859 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->sql_command= SQLCOM_SHOW_OPEN_TABLES; @@ -32681,34 +32681,34 @@ if (prepare_schema_table(YYTHD, lex, 0, SCH_OPEN_TABLES)) MYSQL_YYABORT; } -#line 32685 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32685 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1790: -#line 11867 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11867 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->sql_command= SQLCOM_SHOW_PLUGINS; if (prepare_schema_table(YYTHD, lex, 0, SCH_PLUGINS)) MYSQL_YYABORT; } -#line 32696 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32696 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1791: -#line 11874 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11874 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_info.db_type= (yyvsp[-1].db_type); } -#line 32702 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32702 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1792: -#line 11876 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11876 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_info.db_type= NULL; } -#line 32708 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32708 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1793: -#line 11878 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11878 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->sql_command= SQLCOM_SHOW_FIELDS; @@ -32717,63 +32717,63 @@ if (prepare_schema_table(YYTHD, lex, (yyvsp[-2].table), SCH_COLUMNS)) MYSQL_YYABORT; } -#line 32721 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32721 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1794: -#line 11887 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11887 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->sql_command = SQLCOM_SHOW_BINLOGS; } -#line 32729 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32729 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1795: -#line 11891 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11891 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->sql_command = SQLCOM_SHOW_SLAVE_HOSTS; } -#line 32737 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32737 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1796: -#line 11895 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11895 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->sql_command= SQLCOM_SHOW_BINLOG_EVENTS; } -#line 32746 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32746 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1797: -#line 11900 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11900 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if ((yyvsp[0].limit_clause) != NULL) CONTEXTUALIZE((yyvsp[0].limit_clause)); } -#line 32755 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32755 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1798: -#line 11905 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11905 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->sql_command= SQLCOM_SHOW_RELAYLOG_EVENTS; } -#line 32764 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32764 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1799: -#line 11910 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11910 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if ((yyvsp[-1].limit_clause) != NULL) CONTEXTUALIZE((yyvsp[-1].limit_clause)); } -#line 32773 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32773 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1800: -#line 11919 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11919 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if ((yyvsp[0].item) != NULL) ITEMIZE((yyvsp[0].item), &(yyvsp[0].item)); @@ -32786,51 +32786,51 @@ if (prepare_schema_table(YYTHD, lex, (yyvsp[-2].table), SCH_STATISTICS)) MYSQL_YYABORT; } -#line 32790 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32790 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1801: -#line 11932 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11932 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->sql_command= SQLCOM_SHOW_STORAGE_ENGINES; if (prepare_schema_table(YYTHD, lex, 0, SCH_ENGINES)) MYSQL_YYABORT; } -#line 32801 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32801 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1802: -#line 11939 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11939 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->sql_command= SQLCOM_SHOW_PRIVILEGES; } -#line 32810 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32810 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1803: -#line 11944 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11944 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->keep_diagnostics= DA_KEEP_DIAGNOSTICS; // SHOW WARNINGS doesn't clear them. Parse_context pc(YYTHD, Select); create_select_for_variable(&pc, "warning_count"); } -#line 32820 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32820 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1804: -#line 11950 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11950 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->keep_diagnostics= DA_KEEP_DIAGNOSTICS; // SHOW ERRORS doesn't clear them. Parse_context pc(YYTHD, Select); create_select_for_variable(&pc, "error_count"); } -#line 32830 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32830 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1805: -#line 11956 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11956 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if ((yyvsp[0].limit_clause) != NULL) CONTEXTUALIZE((yyvsp[0].limit_clause)); @@ -32838,11 +32838,11 @@ Lex->sql_command = SQLCOM_SHOW_WARNS; Lex->keep_diagnostics= DA_KEEP_DIAGNOSTICS; // SHOW WARNINGS doesn't clear them. } -#line 32842 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32842 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1806: -#line 11964 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11964 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if ((yyvsp[0].limit_clause) != NULL) CONTEXTUALIZE((yyvsp[0].limit_clause)); @@ -32850,11 +32850,11 @@ Lex->sql_command = SQLCOM_SHOW_ERRORS; Lex->keep_diagnostics= DA_KEEP_DIAGNOSTICS; // SHOW ERRORS doesn't clear them. } -#line 32854 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32854 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1807: -#line 11972 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11972 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { push_warning_printf(YYTHD, Sql_condition::SL_WARNING, ER_WARN_DEPRECATED_SYNTAX, @@ -32862,11 +32862,11 @@ "SHOW PROFILES", "Performance Schema"); Lex->sql_command = SQLCOM_SHOW_PROFILES; } -#line 32866 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32866 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1808: -#line 11980 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11980 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if ((yyvsp[0].limit_clause) != NULL) CONTEXTUALIZE((yyvsp[0].limit_clause)); @@ -32876,11 +32876,11 @@ if (prepare_schema_table(YYTHD, lex, NULL, SCH_PROFILES) != 0) YYABORT; } -#line 32880 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32880 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1809: -#line 11990 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 11990 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= thd->lex; @@ -32911,17 +32911,17 @@ } } } -#line 32915 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32915 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1810: -#line 12021 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12021 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->sql_command= SQLCOM_SHOW_PROCESSLIST;} -#line 32921 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32921 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1811: -#line 12023 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12023 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= thd->lex; @@ -32952,33 +32952,33 @@ } } } -#line 32956 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32956 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1812: -#line 12054 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12054 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->sql_command= SQLCOM_SHOW_CHARSETS; if (prepare_schema_table(YYTHD, lex, 0, SCH_CHARSETS)) MYSQL_YYABORT; } -#line 32967 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32967 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1813: -#line 12061 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12061 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->sql_command= SQLCOM_SHOW_COLLATIONS; if (prepare_schema_table(YYTHD, lex, 0, SCH_COLLATIONS)) MYSQL_YYABORT; } -#line 32978 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32978 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1814: -#line 12068 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12068 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->sql_command= SQLCOM_SHOW_GRANTS; @@ -32988,32 +32988,32 @@ memset(curr_user, 0, sizeof(st_lex_user)); lex->grant_user= curr_user; } -#line 32992 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 32992 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1815: -#line 12078 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12078 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->sql_command= SQLCOM_SHOW_GRANTS; lex->grant_user=(yyvsp[0].lex_user); lex->grant_user->auth= NULL_CSTR; } -#line 33003 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33003 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1816: -#line 12085 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12085 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->sql_command=SQLCOM_SHOW_CREATE_DB; Lex->create_info.options=(yyvsp[-1].num); Lex->name= (yyvsp[0].lex_str); } -#line 33013 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33013 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1817: -#line 12091 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12091 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->sql_command = SQLCOM_SHOW_CREATE; @@ -33022,11 +33022,11 @@ lex->only_view= 0; lex->create_info.storage_media= HA_SM_DEFAULT; } -#line 33026 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33026 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1818: -#line 12100 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12100 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->sql_command = SQLCOM_SHOW_CREATE; @@ -33034,195 +33034,195 @@ MYSQL_YYABORT; lex->only_view= 1; } -#line 33038 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33038 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1819: -#line 12108 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12108 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->sql_command = SQLCOM_SHOW_MASTER_STAT; } -#line 33046 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33046 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1820: -#line 12112 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12112 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->sql_command = SQLCOM_SHOW_SLAVE_STAT; } -#line 33054 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33054 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1821: -#line 12116 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12116 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->sql_command = SQLCOM_SHOW_CREATE_PROC; lex->spname= (yyvsp[0].spname); } -#line 33065 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33065 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1822: -#line 12123 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12123 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->sql_command = SQLCOM_SHOW_CREATE_FUNC; lex->spname= (yyvsp[0].spname); } -#line 33076 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33076 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1823: -#line 12130 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12130 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->sql_command= SQLCOM_SHOW_CREATE_TRIGGER; lex->spname= (yyvsp[0].spname); } -#line 33086 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33086 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1824: -#line 12136 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12136 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->sql_command= SQLCOM_SHOW_STATUS_PROC; if (prepare_schema_table(YYTHD, lex, 0, SCH_PROCEDURES)) MYSQL_YYABORT; } -#line 33097 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33097 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1825: -#line 12143 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12143 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->sql_command= SQLCOM_SHOW_STATUS_FUNC; if (prepare_schema_table(YYTHD, lex, 0, SCH_PROCEDURES)) MYSQL_YYABORT; } -#line 33108 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33108 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1826: -#line 12150 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12150 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->sql_command= SQLCOM_SHOW_PROC_CODE; Lex->spname= (yyvsp[0].spname); } -#line 33117 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33117 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1827: -#line 12155 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12155 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->sql_command= SQLCOM_SHOW_FUNC_CODE; Lex->spname= (yyvsp[0].spname); } -#line 33126 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33126 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1828: -#line 12160 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12160 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->spname= (yyvsp[0].spname); Lex->sql_command = SQLCOM_SHOW_CREATE_EVENT; } -#line 33135 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33135 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1829: -#line 12165 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12165 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->sql_command= SQLCOM_SHOW_CREATE_USER; lex->grant_user=(yyvsp[0].lex_user); } -#line 33145 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33145 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1830: -#line 12174 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12174 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->sql_command= SQLCOM_SHOW_ENGINE_STATUS; } -#line 33151 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33151 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1831: -#line 12176 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12176 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->sql_command= SQLCOM_SHOW_ENGINE_MUTEX; } -#line 33157 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33157 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1832: -#line 12178 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12178 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->sql_command= SQLCOM_SHOW_ENGINE_LOGS; } -#line 33163 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33163 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1837: -#line 12192 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12192 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.simple_string)= 0; } -#line 33169 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33169 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1838: -#line 12193 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12193 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.simple_string)= (yyvsp[0].lex_str).str; } -#line 33175 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33175 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1839: -#line 12197 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12197 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->verbose=0; } -#line 33181 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33181 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1840: -#line 12198 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12198 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->verbose=1; } -#line 33187 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33187 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1843: -#line 12207 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12207 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->mi.log_file_name = 0; } -#line 33193 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33193 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1844: -#line 12208 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12208 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->mi.log_file_name = (yyvsp[0].lex_str).str; } -#line 33199 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33199 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1845: -#line 12212 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12212 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->mi.pos = 4; /* skip magic number */ } -#line 33205 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33205 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1846: -#line 12213 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12213 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->mi.pos = (yyvsp[0].ulonglong_number); } -#line 33211 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33211 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1848: -#line 12219 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12219 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->wild= new (YYTHD->mem_root) String((yyvsp[0].lex_str).str, (yyvsp[0].lex_str).length, system_charset_info); if (Lex->wild == NULL) MYSQL_YYABORT; } -#line 33222 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33222 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1849: -#line 12226 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12226 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { ITEMIZE((yyvsp[0].item), &(yyvsp[0].item)); @@ -33230,22 +33230,22 @@ if ((yyvsp[0].item)) (yyvsp[0].item)->top_level_item(); } -#line 33234 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33234 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1851: -#line 12238 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12238 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->wild= new (YYTHD->mem_root) String((yyvsp[0].lex_str).str, (yyvsp[0].lex_str).length, system_charset_info); if (Lex->wild == NULL) MYSQL_YYABORT; } -#line 33245 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33245 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1852: -#line 12245 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12245 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (show_compatibility_56) { @@ -33268,11 +33268,11 @@ Select->set_where_cond((yyvsp[0].item)); } } -#line 33272 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33272 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1853: -#line 12272 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12272 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->current_select()->parsing_place= CTX_SELECT_LIST; @@ -33282,59 +33282,59 @@ if (prepare_schema_table(YYTHD, lex, (yyvsp[0].table), SCH_COLUMNS)) MYSQL_YYABORT; } -#line 33286 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33286 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1854: -#line 12282 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12282 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { // Ensure we're resetting parsing context of the right select DBUG_ASSERT(Select->parsing_place == CTX_SELECT_LIST); Select->parsing_place= CTX_NONE; } -#line 33296 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33296 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1855: -#line 12288 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12288 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->describe|= DESCRIBE_NORMAL; } -#line 33304 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33304 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1857: -#line 12295 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12295 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { CONTEXTUALIZE((yyvsp[0].select)); } -#line 33310 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33310 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1858: -#line 12296 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12296 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { MAKE_CMD((yyvsp[0].statement)); } -#line 33316 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33316 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1859: -#line 12297 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12297 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { MAKE_CMD((yyvsp[0].statement)); } -#line 33322 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33322 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1860: -#line 12298 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12298 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { MAKE_CMD((yyvsp[0].statement)); } -#line 33328 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33328 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1861: -#line 12299 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12299 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { MAKE_CMD((yyvsp[0].statement)); } -#line 33334 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33334 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1862: -#line 12301 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12301 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->sql_command= SQLCOM_EXPLAIN_OTHER; if (Lex->sphead) @@ -33345,40 +33345,40 @@ } Lex->query_id= (my_thread_id)((yyvsp[0].ulong_num)); } -#line 33349 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33349 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1865: -#line 12320 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12320 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if ((Lex->explain_format= new Explain_format_traditional) == NULL) MYSQL_YYABORT; } -#line 33358 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33358 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1866: -#line 12325 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12325 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if ((Lex->explain_format= new Explain_format_traditional) == NULL) MYSQL_YYABORT; push_deprecated_warn_no_replacement(YYTHD, "EXTENDED"); } -#line 33368 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33368 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1867: -#line 12331 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12331 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if ((Lex->explain_format= new Explain_format_traditional) == NULL) MYSQL_YYABORT; push_deprecated_warn_no_replacement(YYTHD, "PARTITIONS"); } -#line 33378 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33378 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1868: -#line 12337 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12337 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (!my_strcasecmp(system_charset_info, (yyvsp[0].lex_str).str, "JSON")) { @@ -33396,23 +33396,23 @@ MYSQL_YYABORT; } } -#line 33400 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33400 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1869: -#line 12357 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12357 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 33406 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33406 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1870: -#line 12358 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12358 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->wild= (yyvsp[0].string); } -#line 33412 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33412 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1871: -#line 12360 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12360 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->wild= new (YYTHD->mem_root) String((const char*) (yyvsp[0].lex_str).str, (yyvsp[0].lex_str).length, @@ -33420,28 +33420,28 @@ if (Lex->wild == NULL) MYSQL_YYABORT; } -#line 33424 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33424 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1872: -#line 12374 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12374 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->sql_command= SQLCOM_FLUSH; lex->type= 0; lex->no_write_to_binlog= (yyvsp[0].num); } -#line 33435 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33435 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1873: -#line 12381 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12381 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 33441 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33441 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1874: -#line 12386 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12386 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->type|= REFRESH_TABLES; /* @@ -33451,29 +33451,29 @@ YYPS->m_lock_type= TL_READ_NO_INSERT; YYPS->m_mdl_type= MDL_SHARED_HIGH_PRIO; } -#line 33455 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33455 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1875: -#line 12395 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12395 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 33461 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33461 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1876: -#line 12396 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12396 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 33467 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33467 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1878: -#line 12401 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12401 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 33473 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33473 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1879: -#line 12403 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12403 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { TABLE_LIST *tables= Lex->query_tables; Lex->type|= REFRESH_READ_LOCK; @@ -33484,11 +33484,11 @@ tables->open_type= OT_BASE_ONLY; /* Ignore temporary tables. */ } } -#line 33488 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33488 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1880: -#line 12414 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12414 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (Lex->query_tables == NULL) // Table list can't be empty { @@ -33496,11 +33496,11 @@ MYSQL_YYABORT; } } -#line 33500 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33500 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1881: -#line 12422 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12422 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { TABLE_LIST *tables= Lex->query_tables; Lex->type|= REFRESH_FOR_EXPORT; @@ -33511,188 +33511,188 @@ tables->open_type= OT_BASE_ONLY; /* Ignore temporary tables. */ } } -#line 33515 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33515 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1883: -#line 12437 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12437 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 33521 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33521 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1884: -#line 12442 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12442 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->type|= REFRESH_ERROR_LOG; } -#line 33527 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33527 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1885: -#line 12444 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12444 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->type|= REFRESH_ENGINE_LOG; } -#line 33533 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33533 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1886: -#line 12446 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12446 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->type|= REFRESH_GENERAL_LOG; } -#line 33539 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33539 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1887: -#line 12448 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12448 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->type|= REFRESH_SLOW_LOG; } -#line 33545 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33545 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1888: -#line 12450 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12450 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->type|= REFRESH_BINARY_LOG; } -#line 33551 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33551 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1889: -#line 12452 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12452 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->type|= REFRESH_RELAY_LOG; } -#line 33557 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33557 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1890: -#line 12454 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12454 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { push_deprecated_warn_no_replacement(YYTHD, "FLUSH QUERY CACHE"); Lex->type|= REFRESH_QUERY_CACHE_FREE; } -#line 33566 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33566 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1891: -#line 12459 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12459 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->type|= REFRESH_HOSTS; } -#line 33572 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33572 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1892: -#line 12461 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12461 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->type|= REFRESH_GRANT; } -#line 33578 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33578 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1893: -#line 12463 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12463 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->type|= REFRESH_LOG; } -#line 33584 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33584 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1894: -#line 12465 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12465 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->type|= REFRESH_STATUS; } -#line 33590 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33590 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1895: -#line 12467 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12467 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->type|= REFRESH_DES_KEY_FILE; } -#line 33596 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33596 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1896: -#line 12469 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12469 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->type|= REFRESH_USER_RESOURCES; } -#line 33602 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33602 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1897: -#line 12471 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12471 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->type|= REFRESH_OPTIMIZER_COSTS; } -#line 33608 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33608 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1898: -#line 12475 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12475 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 33614 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33614 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1899: -#line 12476 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12476 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 33620 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33620 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1900: -#line 12481 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12481 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->sql_command= SQLCOM_RESET; lex->type=0; } -#line 33629 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33629 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1901: -#line 12486 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12486 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 33635 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33635 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1904: -#line 12495 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12495 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->type|= REFRESH_SLAVE; } -#line 33641 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33641 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1906: -#line 12497 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12497 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->type|= REFRESH_MASTER; } -#line 33647 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33647 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1907: -#line 12499 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12499 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { push_deprecated_warn_no_replacement(YYTHD, "RESET QUERY CACHE"); Lex->type|= REFRESH_QUERY_CACHE; } -#line 33656 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33656 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1908: -#line 12506 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12506 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->reset_slave_info.all= false; } -#line 33662 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33662 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1909: -#line 12507 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12507 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->reset_slave_info.all= true; } -#line 33668 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33668 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1910: -#line 12512 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12512 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->type=0; lex->sql_command = SQLCOM_PURGE; } -#line 33678 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33678 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1911: -#line 12518 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12518 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 33684 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33684 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1913: -#line 12527 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12527 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->to_log = (yyvsp[0].lex_str).str; } -#line 33692 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33692 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1914: -#line 12531 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12531 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { ITEMIZE((yyvsp[0].item), &(yyvsp[0].item)); @@ -33701,11 +33701,11 @@ lex->purge_value_list.push_front((yyvsp[0].item)); lex->sql_command= SQLCOM_PURGE_BEFORE; } -#line 33705 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33705 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1915: -#line 12545 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12545 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { ITEMIZE((yyvsp[0].item), &(yyvsp[0].item)); @@ -33714,39 +33714,39 @@ lex->kill_value_list.push_front((yyvsp[0].item)); lex->sql_command= SQLCOM_KILL; } -#line 33718 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33718 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1916: -#line 12556 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12556 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->type= 0; } -#line 33724 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33724 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1917: -#line 12557 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12557 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->type= 0; } -#line 33730 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33730 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1918: -#line 12558 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12558 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->type= ONLY_KILL_QUERY; } -#line 33736 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33736 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1919: -#line 12565 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12565 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->sql_command=SQLCOM_CHANGE_DB; lex->select_lex->db= (yyvsp[0].lex_str).str; } -#line 33746 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33746 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1920: -#line 12576 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12576 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= thd->lex; @@ -33758,11 +33758,11 @@ MYSQL_YYABORT; } } -#line 33762 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33762 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1921: -#line 12588 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12588 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->sql_command= SQLCOM_LOAD; @@ -33772,11 +33772,11 @@ if (!(lex->exchange= new sql_exchange((yyvsp[0].lex_str).str, 0, (yyvsp[-5].filetype)))) MYSQL_YYABORT; } -#line 33776 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33776 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1922: -#line 12598 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12598 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; /* Fix lock for LOAD DATA CONCURRENT REPLACE */ @@ -33794,274 +33794,274 @@ if (lex->local_file && lex->duplicates == DUP_ERROR) lex->set_ignore(true); } -#line 33798 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33798 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1923: -#line 12616 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12616 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->exchange->cs= (yyvsp[0].charset); } -#line 33804 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33804 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1924: -#line 12620 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12620 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->exchange->field.merge_field_separators((yyvsp[-4].field_separators)); Lex->exchange->line.merge_line_separators((yyvsp[-3].line_separators)); } -#line 33813 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33813 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1925: -#line 12627 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12627 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.filetype)= FILETYPE_CSV; } -#line 33819 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33819 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1926: -#line 12628 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12628 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.filetype)= FILETYPE_XML; } -#line 33825 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33825 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1927: -#line 12632 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12632 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)=0;} -#line 33831 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33831 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1928: -#line 12633 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12633 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)=1;} -#line 33837 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33837 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1929: -#line 12637 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12637 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lock_type)= TL_WRITE_DEFAULT; } -#line 33843 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33843 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1930: -#line 12638 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12638 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lock_type)= TL_WRITE_CONCURRENT_INSERT; } -#line 33849 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33849 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1931: -#line 12639 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12639 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lock_type)= TL_WRITE_LOW_PRIORITY; } -#line 33855 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33855 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1932: -#line 12643 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12643 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->duplicates=DUP_ERROR; } -#line 33861 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33861 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1933: -#line 12644 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12644 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->duplicates=DUP_REPLACE; } -#line 33867 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33867 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1934: -#line 12645 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12645 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->set_ignore(true); } -#line 33873 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33873 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1935: -#line 12649 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12649 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.field_separators).cleanup(); } -#line 33879 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33879 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1936: -#line 12650 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12650 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.field_separators)= (yyvsp[0].field_separators); } -#line 33885 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33885 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1937: -#line 12655 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12655 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.field_separators)= (yyvsp[-1].field_separators); (yyval.field_separators).merge_field_separators((yyvsp[0].field_separators)); } -#line 33894 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33894 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1939: -#line 12664 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12664 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.field_separators).cleanup(); (yyval.field_separators).field_term= (yyvsp[0].string); } -#line 33903 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33903 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1940: -#line 12669 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12669 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.field_separators).cleanup(); (yyval.field_separators).enclosed= (yyvsp[0].string); (yyval.field_separators).opt_enclosed= 1; } -#line 33913 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33913 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1941: -#line 12675 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12675 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.field_separators).cleanup(); (yyval.field_separators).enclosed= (yyvsp[0].string); } -#line 33922 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33922 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1942: -#line 12680 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12680 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.field_separators).cleanup(); (yyval.field_separators).escaped= (yyvsp[0].string); } -#line 33931 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33931 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1943: -#line 12687 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12687 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.line_separators).cleanup(); } -#line 33937 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33937 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1944: -#line 12688 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12688 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.line_separators)= (yyvsp[0].line_separators); } -#line 33943 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33943 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1945: -#line 12693 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12693 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.line_separators)= (yyvsp[-1].line_separators); (yyval.line_separators).merge_line_separators((yyvsp[0].line_separators)); } -#line 33952 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33952 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1947: -#line 12702 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12702 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.line_separators).cleanup(); (yyval.line_separators).line_term= (yyvsp[0].string); } -#line 33961 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33961 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1948: -#line 12707 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12707 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.line_separators).cleanup(); (yyval.line_separators).line_start= (yyvsp[0].string); } -#line 33970 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33970 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1949: -#line 12714 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12714 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { } -#line 33976 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33976 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1950: -#line 12716 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12716 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->exchange->line.line_term = (yyvsp[0].string); } -#line 33982 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33982 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1952: -#line 12721 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12721 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { DBUG_ASSERT(Lex->exchange != 0); Lex->exchange->skip_lines= atol((yyvsp[-1].lex_str).str); } -#line 33991 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33991 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1953: -#line 12728 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12728 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { } -#line 33997 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 33997 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1954: -#line 12730 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12730 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { } -#line 34003 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34003 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1955: -#line 12734 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12734 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 34009 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34009 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1956: -#line 12735 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12735 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 34015 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34015 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1957: -#line 12736 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12736 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 34021 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34021 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1958: -#line 12741 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12741 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->load_field_list.push_back((yyvsp[0].item)); } -#line 34027 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34027 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1959: -#line 12743 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12743 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->load_field_list.push_back((yyvsp[0].item)); } -#line 34033 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34033 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1960: -#line 12747 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12747 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { ITEMIZE((yyvsp[0].item), &(yyval.item)); } -#line 34039 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34039 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1961: -#line 12749 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12749 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= new (YYTHD->mem_root) Item_user_var_as_out_param((yyvsp[0].lex_str)); if ((yyval.item) == NULL) MYSQL_YYABORT; } -#line 34049 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34049 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1962: -#line 12757 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12757 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 34055 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34055 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1963: -#line 12758 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12758 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 34061 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34061 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1966: -#line 12768 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12768 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { ITEMIZE((yyvsp[-2].item), &(yyvsp[-2].item)); ITEMIZE((yyvsp[0].item), &(yyvsp[0].item)); @@ -34079,47 +34079,47 @@ MYSQL_YYABORT; (yyvsp[0].item)->item_name.copy((yylsp[-1]).cpp.start, length, YYTHD->charset()); } -#line 34083 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34083 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1967: -#line 12791 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12791 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.text_literal)= NEW_PTN PTI_text_literal_text_string((yyloc), YYTHD->m_parser_state->m_lip.text_string_is_7bit(), (yyvsp[0].lex_str)); } -#line 34092 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34092 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1968: -#line 12796 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12796 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.text_literal)= NEW_PTN PTI_text_literal_nchar_string((yyloc), YYTHD->m_parser_state->m_lip.text_string_is_7bit(), (yyvsp[0].lex_str)); } -#line 34101 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34101 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1969: -#line 12801 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12801 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.text_literal)= NEW_PTN PTI_text_literal_underscore_charset((yyloc), YYTHD->m_parser_state->m_lip.text_string_is_7bit(), (yyvsp[-1].charset), (yyvsp[0].lex_str)); } -#line 34110 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34110 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1970: -#line 12806 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12806 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.text_literal)= NEW_PTN PTI_text_literal_concat((yyloc), YYTHD->m_parser_state->m_lip.text_string_is_7bit(), (yyvsp[-1].text_literal), (yyvsp[0].lex_str)); } -#line 34119 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34119 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1971: -#line 12814 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12814 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.string)= new (YYTHD->mem_root) String((yyvsp[0].lex_str).str, (yyvsp[0].lex_str).length, @@ -34127,71 +34127,71 @@ if ((yyval.string) == NULL) MYSQL_YYABORT; } -#line 34131 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34131 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1972: -#line 12822 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12822 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX_STRING s= Item_hex_string::make_hex_str((yyvsp[0].lex_str).str, (yyvsp[0].lex_str).length); (yyval.string)= new (YYTHD->mem_root) String(s.str, s.length, &my_charset_bin); if ((yyval.string) == NULL) MYSQL_YYABORT; } -#line 34142 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34142 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1973: -#line 12829 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12829 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX_STRING s= Item_bin_string::make_bin_str((yyvsp[0].lex_str).str, (yyvsp[0].lex_str).length); (yyval.string)= new (YYTHD->mem_root) String(s.str, s.length, &my_charset_bin); if ((yyval.string) == NULL) MYSQL_YYABORT; } -#line 34153 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34153 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1974: -#line 12839 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12839 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.param_marker)= NEW_PTN Item_param((yyloc), (uint) ((yylsp[0]).raw.start - YYLIP->get_buf())); } -#line 34162 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34162 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1975: -#line 12846 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12846 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { ITEMIZE((yyvsp[0].item), &(yyval.item)); } -#line 34168 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34168 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1976: -#line 12847 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12847 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { ITEMIZE((yyvsp[0].item), &(yyval.item)); } -#line 34174 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34174 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1977: -#line 12849 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12849 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { ITEMIZE((yyvsp[0].item), &(yyvsp[0].item)); (yyvsp[0].item)->max_length++; (yyval.item)= ((Item_int *)(yyvsp[0].item))->neg(); } -#line 34185 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34185 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1978: -#line 12859 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12859 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= (yyvsp[0].text_literal); } -#line 34191 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34191 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1981: -#line 12863 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12863 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex_input_stream *lip= YYLIP; /* @@ -34204,213 +34204,213 @@ (yyval.item)= NEW_PTN Item_null((yyloc)); lip->next_state= MY_LEX_OPERATOR_OR_IDENT; } -#line 34208 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34208 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1982: -#line 12876 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12876 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_int((yyloc), NAME_STRING("FALSE"), 0, 1); } -#line 34216 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34216 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1983: -#line 12880 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12880 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_int((yyloc), NAME_STRING("TRUE"), 1, 1); } -#line 34224 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34224 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1984: -#line 12884 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12884 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_hex_string((yyloc), (yyvsp[0].lex_str)); } -#line 34232 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34232 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1985: -#line 12888 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12888 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_bin_string((yyloc), (yyvsp[0].lex_str)); } -#line 34240 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34240 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1986: -#line 12892 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12892 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN PTI_literal_underscore_charset_hex_num((yyloc), (yyvsp[-1].charset), (yyvsp[0].lex_str)); } -#line 34248 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34248 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1987: -#line 12896 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12896 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN PTI_literal_underscore_charset_bin_num((yyloc), (yyvsp[-1].charset), (yyvsp[0].lex_str)); } -#line 34256 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34256 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1988: -#line 12903 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12903 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN PTI_num_literal_num((yyloc), (yyvsp[0].lex_str)); } -#line 34264 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34264 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1989: -#line 12907 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12907 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN PTI_num_literal_num((yyloc), (yyvsp[0].lex_str)); } -#line 34272 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34272 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1990: -#line 12911 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12911 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_uint((yyloc), (yyvsp[0].lex_str).str, (yyvsp[0].lex_str).length); } -#line 34280 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34280 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1991: -#line 12915 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12915 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_decimal((yyloc), (yyvsp[0].lex_str).str, (yyvsp[0].lex_str).length, YYCSCL); } -#line 34288 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34288 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1992: -#line 12919 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12919 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_float((yyloc), (yyvsp[0].lex_str).str, (yyvsp[0].lex_str).length); } -#line 34296 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34296 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1993: -#line 12927 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12927 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN PTI_temporal_literal((yyloc), (yyvsp[0].lex_str), MYSQL_TYPE_DATE, YYCSCL); } -#line 34304 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34304 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1994: -#line 12931 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12931 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN PTI_temporal_literal((yyloc), (yyvsp[0].lex_str), MYSQL_TYPE_TIME, YYCSCL); } -#line 34312 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34312 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1995: -#line 12935 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12935 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN PTI_temporal_literal((yyloc), (yyvsp[0].lex_str), MYSQL_TYPE_DATETIME, YYCSCL); } -#line 34320 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34320 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1998: -#line 12954 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12954 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN PTI_table_wild((yyloc), NULL, (yyvsp[-2].lex_str).str); } -#line 34328 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34328 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 1999: -#line 12958 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12958 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN PTI_table_wild((yyloc), (yyvsp[-4].lex_str).str, (yyvsp[-2].lex_str).str); } -#line 34336 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34336 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2000: -#line 12965 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12965 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.order_expr)= NEW_PTN PT_order_expr((yyvsp[-1].item), (yyvsp[0].num)); } -#line 34344 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34344 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2001: -#line 12972 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12972 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.order_expr)= NEW_PTN PT_order_expr((yyvsp[0].item), 1); } -#line 34352 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34352 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2002: -#line 12976 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12976 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { push_deprecated_warn(YYTHD, "GROUP BY with ASC/DESC", "GROUP BY ... ORDER BY ... ASC/DESC"); (yyval.order_expr)= NEW_PTN PT_order_expr((yyvsp[-1].item), (yyvsp[0].num)); } -#line 34362 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34362 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2003: -#line 12985 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12985 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN PTI_simple_ident_ident((yyloc), (yyvsp[0].lex_str)); } -#line 34370 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34370 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2005: -#line 12993 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 12993 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN PTI_simple_ident_nospvar_ident((yyloc), (yyvsp[0].lex_str)); } -#line 34378 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34378 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2007: -#line 13001 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13001 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN PTI_simple_ident_q_2d((yyloc), (yyvsp[-2].lex_str).str, (yyvsp[0].lex_str).str); } -#line 34386 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34386 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2008: -#line 13005 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13005 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { push_deprecated_warn(YYTHD, "..", "the table.column name without a dot prefix"); (yyval.item)= NEW_PTN PTI_simple_ident_q_3d((yyloc), NULL, (yyvsp[-2].lex_str).str, (yyvsp[0].lex_str).str); } -#line 34396 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34396 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2009: -#line 13011 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13011 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN PTI_simple_ident_q_3d((yyloc), (yyvsp[-4].lex_str).str, (yyvsp[-2].lex_str).str, (yyvsp[0].lex_str).str); } -#line 34404 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34404 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2010: -#line 13017 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13017 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lex_str)=(yyvsp[0].lex_str);} -#line 34410 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34410 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2011: -#line 13019 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13019 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { TABLE_LIST *table= Select->table_list.first; if (my_strcasecmp(table_alias_charset, (yyvsp[-4].lex_str).str, table->db)) @@ -34426,11 +34426,11 @@ } (yyval.lex_str)=(yyvsp[0].lex_str); } -#line 34430 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34430 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2012: -#line 13035 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13035 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { TABLE_LIST *table= Select->table_list.first; if (my_strcasecmp(table_alias_charset, (yyvsp[-2].lex_str).str, table->alias)) @@ -34440,30 +34440,30 @@ } (yyval.lex_str)=(yyvsp[0].lex_str); } -#line 34444 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34444 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2013: -#line 13045 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13045 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { push_deprecated_warn(YYTHD, ".", "the column name without a dot prefix"); (yyval.lex_str)=(yyvsp[0].lex_str); } -#line 34453 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34453 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2014: -#line 13053 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13053 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.table)= NEW_PTN Table_ident(to_lex_cstring((yyvsp[0].lex_str))); if ((yyval.table) == NULL) MYSQL_YYABORT; } -#line 34463 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34463 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2015: -#line 13059 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13059 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (YYTHD->get_protocol()->has_client_capability(CLIENT_NO_SCHEMA)) (yyval.table)= NEW_PTN Table_ident(to_lex_cstring((yyvsp[0].lex_str))); @@ -34473,11 +34473,11 @@ if ((yyval.table) == NULL) MYSQL_YYABORT; } -#line 34477 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34477 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2016: -#line 13069 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13069 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /* For Delphi */ push_deprecated_warn(YYTHD, ".
", "the table name without a dot prefix"); @@ -34485,49 +34485,49 @@ if ((yyval.table) == NULL) MYSQL_YYABORT; } -#line 34489 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34489 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2017: -#line 13080 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13080 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.table_ident)= NEW_PTN Table_ident(to_lex_cstring((yyvsp[-1].lex_str))); if ((yyval.table_ident) == NULL) MYSQL_YYABORT; } -#line 34499 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34499 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2018: -#line 13086 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13086 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.table_ident)= NEW_PTN Table_ident(YYTHD, to_lex_cstring((yyvsp[-3].lex_str)), to_lex_cstring((yyvsp[-1].lex_str)), 0); if ((yyval.table_ident) == NULL) MYSQL_YYABORT; } -#line 34510 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34510 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2019: -#line 13096 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13096 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX_CSTRING db= { any_db, strlen(any_db) }; (yyval.table)= new Table_ident(YYTHD, db, to_lex_cstring((yyvsp[0].lex_str)), 0); if ((yyval.table) == NULL) MYSQL_YYABORT; } -#line 34521 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34521 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2020: -#line 13105 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13105 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lex_str)= (yyvsp[0].lex_str); } -#line 34527 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34527 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2021: -#line 13107 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13107 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; @@ -34554,11 +34554,11 @@ MYSQL_YYABORT; } } -#line 34558 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34558 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2022: -#line 13137 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13137 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (!strcont((yyvsp[0].lex_str).str, "\n")) (yyval.lex_str)= (yyvsp[0].lex_str); @@ -34568,11 +34568,11 @@ MYSQL_YYABORT; } } -#line 34572 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34572 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2023: -#line 13150 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13150 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (strcont((yyvsp[0].lex_str).str, ".")) (yyval.lex_str)= (yyvsp[0].lex_str); @@ -34582,11 +34582,11 @@ MYSQL_YYABORT; } } -#line 34586 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34586 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2024: -#line 13163 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13163 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; @@ -34599,11 +34599,11 @@ MYSQL_YYABORT; } } -#line 34603 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34603 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2025: -#line 13179 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13179 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; @@ -34616,11 +34616,11 @@ MYSQL_YYABORT; } } -#line 34620 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34620 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2026: -#line 13195 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13195 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; @@ -34634,17 +34634,17 @@ MYSQL_YYABORT; } } -#line 34638 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34638 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2027: -#line 13211 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13211 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lex_str)=(yyvsp[0].lex_str); } -#line 34644 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34644 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2028: -#line 13213 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13213 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; (yyval.lex_str).str= thd->strmake((yyvsp[0].symbol).str, (yyvsp[0].symbol).length); @@ -34652,17 +34652,17 @@ MYSQL_YYABORT; (yyval.lex_str).length= (yyvsp[0].symbol).length; } -#line 34656 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34656 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2029: -#line 13223 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13223 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lex_str)=(yyvsp[0].lex_str); } -#line 34662 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34662 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2030: -#line 13225 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13225 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; (yyval.lex_str).str= thd->strmake((yyvsp[0].symbol).str, (yyvsp[0].symbol).length); @@ -34670,29 +34670,29 @@ MYSQL_YYABORT; (yyval.lex_str).length= (yyvsp[0].symbol).length; } -#line 34674 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34674 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2031: -#line 13235 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13235 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lex_str)=(yyvsp[0].lex_str);} -#line 34680 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34680 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2032: -#line 13236 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13236 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lex_str)=(yyvsp[0].lex_str);} -#line 34686 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34686 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2033: -#line 13237 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13237 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lex_str)=(yyvsp[0].lex_str);} -#line 34692 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34692 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2034: -#line 13242 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13242 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; if (!((yyval.lex_user)=(LEX_USER*) thd->alloc(sizeof(st_lex_user)))) @@ -34720,11 +34720,11 @@ system_charset_info, 0)) MYSQL_YYABORT; } -#line 34724 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34724 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2035: -#line 13270 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13270 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; if (!((yyval.lex_user)=(LEX_USER*) thd->alloc(sizeof(st_lex_user)))) @@ -34761,11 +34761,11 @@ my_casedn_str(system_charset_info, (yyvsp[0].lex_str).str); (yyval.lex_user)->host.str= (yyvsp[0].lex_str).str; } -#line 34765 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34765 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2036: -#line 13307 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13307 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (!((yyval.lex_user)=(LEX_USER*) YYTHD->alloc(sizeof(st_lex_user)))) MYSQL_YYABORT; @@ -34776,2332 +34776,2332 @@ */ memset((yyval.lex_user), 0, sizeof(LEX_USER)); } -#line 34780 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34780 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2037: -#line 13321 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13321 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 34786 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34786 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2038: -#line 13322 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13322 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 34792 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34792 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2039: -#line 13323 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13323 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 34798 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34798 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2040: -#line 13324 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13324 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 34804 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34804 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2041: -#line 13325 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13325 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 34810 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34810 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2042: -#line 13326 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13326 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 34816 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34816 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2043: -#line 13327 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13327 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 34822 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34822 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2044: -#line 13328 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13328 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 34828 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34828 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2045: -#line 13329 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13329 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 34834 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34834 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2046: -#line 13330 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13330 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 34840 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34840 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2047: -#line 13331 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13331 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 34846 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34846 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2048: -#line 13332 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13332 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 34852 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34852 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2049: -#line 13333 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13333 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 34858 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34858 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2050: -#line 13334 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13334 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 34864 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34864 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2051: -#line 13335 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13335 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 34870 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34870 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2052: -#line 13336 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13336 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 34876 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34876 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2053: -#line 13337 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13337 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 34882 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34882 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2054: -#line 13338 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13338 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 34888 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34888 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2055: -#line 13339 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13339 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 34894 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34894 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2056: -#line 13340 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13340 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 34900 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34900 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2057: -#line 13341 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13341 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 34906 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34906 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2058: -#line 13342 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13342 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 34912 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34912 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2059: -#line 13343 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13343 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 34918 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34918 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2060: -#line 13344 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13344 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 34924 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34924 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2061: -#line 13345 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13345 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 34930 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34930 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2062: -#line 13346 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13346 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 34936 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34936 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2063: -#line 13347 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13347 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 34942 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34942 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2064: -#line 13348 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13348 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 34948 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34948 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2065: -#line 13349 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13349 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 34954 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34954 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2066: -#line 13350 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13350 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 34960 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34960 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2067: -#line 13351 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13351 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 34966 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34966 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2068: -#line 13352 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13352 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 34972 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34972 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2069: -#line 13353 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13353 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 34978 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34978 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2070: -#line 13354 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13354 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 34984 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34984 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2071: -#line 13355 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13355 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 34990 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34990 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2072: -#line 13356 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13356 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 34996 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 34996 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2073: -#line 13357 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13357 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35002 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35002 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2074: -#line 13358 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13358 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35008 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35008 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2075: -#line 13359 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13359 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35014 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35014 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2076: -#line 13360 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13360 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35020 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35020 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2077: -#line 13361 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13361 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35026 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35026 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2078: -#line 13362 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13362 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35032 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35032 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2079: -#line 13363 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13363 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35038 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35038 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2080: -#line 13364 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13364 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35044 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35044 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2081: -#line 13365 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13365 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35050 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35050 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2082: -#line 13366 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13366 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35056 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35056 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2083: -#line 13367 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13367 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35062 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35062 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2084: -#line 13368 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13368 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35068 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35068 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2085: -#line 13369 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13369 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35074 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35074 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2086: -#line 13370 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13370 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35080 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35080 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2087: -#line 13371 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13371 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35086 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35086 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2088: -#line 13372 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13372 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35092 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35092 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2089: -#line 13373 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13373 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35098 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35098 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2090: -#line 13374 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13374 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35104 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35104 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2091: -#line 13375 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13375 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35110 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35110 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2092: -#line 13376 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13376 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35116 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35116 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2093: -#line 13377 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13377 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35122 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35122 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2094: -#line 13387 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13387 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35128 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35128 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2095: -#line 13388 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13388 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35134 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35134 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2096: -#line 13389 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13389 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35140 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35140 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2097: -#line 13390 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13390 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35146 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35146 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2098: -#line 13391 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13391 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35152 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35152 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2099: -#line 13392 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13392 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35158 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35158 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2100: -#line 13393 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13393 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35164 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35164 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2101: -#line 13394 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13394 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35170 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35170 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2102: -#line 13395 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13395 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35176 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35176 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2103: -#line 13396 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13396 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35182 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35182 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2104: -#line 13397 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13397 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35188 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35188 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2105: -#line 13398 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13398 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35194 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35194 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2106: -#line 13399 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13399 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35200 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35200 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2107: -#line 13400 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13400 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35206 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35206 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2108: -#line 13401 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13401 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35212 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35212 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2109: -#line 13402 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13402 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35218 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35218 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2110: -#line 13403 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13403 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35224 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35224 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2111: -#line 13404 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13404 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35230 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35230 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2112: -#line 13405 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13405 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35236 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35236 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2113: -#line 13406 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13406 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35242 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35242 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2114: -#line 13407 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13407 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35248 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35248 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2115: -#line 13408 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13408 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35254 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35254 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2116: -#line 13409 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13409 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35260 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35260 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2117: -#line 13410 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13410 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35266 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35266 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2118: -#line 13411 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13411 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35272 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35272 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2119: -#line 13412 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13412 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35278 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35278 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2120: -#line 13413 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13413 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35284 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35284 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2121: -#line 13414 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13414 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35290 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35290 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2122: -#line 13415 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13415 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35296 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35296 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2123: -#line 13416 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13416 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35302 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35302 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2124: -#line 13417 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13417 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35308 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35308 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2125: -#line 13418 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13418 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35314 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35314 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2126: -#line 13419 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13419 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35320 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35320 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2127: -#line 13420 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13420 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35326 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35326 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2128: -#line 13421 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13421 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35332 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35332 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2129: -#line 13422 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13422 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35338 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35338 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2130: -#line 13423 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13423 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35344 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35344 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2131: -#line 13424 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13424 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35350 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35350 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2132: -#line 13425 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13425 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35356 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35356 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2133: -#line 13426 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13426 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35362 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35362 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2134: -#line 13427 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13427 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35368 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35368 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2135: -#line 13428 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13428 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35374 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35374 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2136: -#line 13429 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13429 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35380 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35380 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2137: -#line 13430 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13430 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35386 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35386 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2138: -#line 13431 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13431 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35392 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35392 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2139: -#line 13432 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13432 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35398 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35398 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2140: -#line 13433 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13433 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35404 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35404 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2141: -#line 13434 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13434 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35410 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35410 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2142: -#line 13439 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13439 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35416 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35416 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2143: -#line 13440 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13440 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35422 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35422 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2144: -#line 13441 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13441 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35428 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35428 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2145: -#line 13442 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13442 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35434 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35434 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2146: -#line 13443 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13443 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35440 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35440 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2147: -#line 13444 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13444 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35446 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35446 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2148: -#line 13445 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13445 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35452 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35452 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2149: -#line 13446 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13446 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35458 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35458 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2150: -#line 13447 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13447 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35464 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35464 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2151: -#line 13448 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13448 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35470 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35470 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2152: -#line 13449 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13449 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35476 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35476 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2153: -#line 13450 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13450 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35482 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35482 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2154: -#line 13451 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13451 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35488 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35488 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2155: -#line 13452 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13452 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35494 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35494 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2156: -#line 13453 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13453 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35500 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35500 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2157: -#line 13454 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13454 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35506 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35506 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2158: -#line 13455 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13455 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35512 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35512 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2159: -#line 13456 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13456 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35518 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35518 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2160: -#line 13457 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13457 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35524 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35524 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2161: -#line 13458 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13458 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35530 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35530 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2162: -#line 13459 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13459 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35536 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35536 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2163: -#line 13460 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13460 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35542 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35542 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2164: -#line 13461 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13461 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35548 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35548 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2165: -#line 13462 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13462 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35554 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35554 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2166: -#line 13463 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13463 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35560 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35560 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2167: -#line 13464 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13464 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35566 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35566 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2168: -#line 13465 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13465 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35572 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35572 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2169: -#line 13466 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13466 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35578 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35578 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2170: -#line 13467 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13467 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35584 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35584 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2171: -#line 13468 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13468 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35590 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35590 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2172: -#line 13469 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13469 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35596 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35596 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2173: -#line 13470 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13470 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35602 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35602 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2174: -#line 13471 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13471 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35608 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35608 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2175: -#line 13472 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13472 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35614 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35614 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2176: -#line 13473 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13473 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35620 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35620 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2177: -#line 13474 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13474 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35626 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35626 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2178: -#line 13475 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13475 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35632 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35632 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2179: -#line 13476 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13476 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35638 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35638 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2180: -#line 13477 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13477 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35644 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35644 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2181: -#line 13478 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13478 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35650 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35650 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2182: -#line 13479 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13479 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35656 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35656 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2183: -#line 13480 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13480 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35662 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35662 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2184: -#line 13481 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13481 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35668 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35668 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2185: -#line 13482 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13482 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35674 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35674 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2186: -#line 13483 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13483 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35680 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35680 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2187: -#line 13484 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13484 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35686 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35686 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2188: -#line 13485 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13485 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35692 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35692 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2189: -#line 13486 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13486 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35698 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35698 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2190: -#line 13487 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13487 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35704 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35704 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2191: -#line 13488 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13488 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35710 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35710 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2192: -#line 13489 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13489 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35716 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35716 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2193: -#line 13490 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13490 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35722 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35722 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2194: -#line 13491 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13491 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35728 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35728 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2195: -#line 13492 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13492 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35734 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35734 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2196: -#line 13493 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13493 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35740 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35740 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2197: -#line 13494 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13494 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35746 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35746 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2198: -#line 13495 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13495 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35752 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35752 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2199: -#line 13496 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13496 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35758 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35758 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2200: -#line 13497 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13497 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35764 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35764 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2201: -#line 13498 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13498 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35770 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35770 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2202: -#line 13499 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13499 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35776 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35776 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2203: -#line 13500 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13500 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35782 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35782 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2204: -#line 13501 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13501 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35788 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35788 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2205: -#line 13502 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13502 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35794 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35794 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2206: -#line 13503 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13503 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35800 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35800 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2207: -#line 13504 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13504 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35806 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35806 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2208: -#line 13505 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13505 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35812 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35812 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2209: -#line 13506 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13506 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35818 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35818 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2210: -#line 13507 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13507 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35824 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35824 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2211: -#line 13508 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13508 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35830 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35830 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2212: -#line 13509 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13509 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35836 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35836 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2213: -#line 13510 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13510 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35842 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35842 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2214: -#line 13511 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13511 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35848 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35848 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2215: -#line 13512 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13512 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35854 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35854 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2216: -#line 13513 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13513 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35860 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35860 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2217: -#line 13514 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13514 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35866 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35866 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2218: -#line 13515 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13515 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35872 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35872 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2219: -#line 13516 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13516 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35878 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35878 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2220: -#line 13517 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13517 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35884 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35884 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2221: -#line 13518 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13518 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35890 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35890 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2222: -#line 13519 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13519 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35896 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35896 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2223: -#line 13520 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13520 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35902 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35902 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2224: -#line 13521 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13521 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35908 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35908 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2225: -#line 13522 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13522 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35914 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35914 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2226: -#line 13523 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13523 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35920 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35920 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2227: -#line 13524 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13524 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35926 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35926 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2228: -#line 13525 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13525 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35932 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35932 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2229: -#line 13526 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13526 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35938 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35938 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2230: -#line 13527 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13527 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35944 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35944 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2231: -#line 13528 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13528 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35950 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35950 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2232: -#line 13529 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13529 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35956 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35956 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2233: -#line 13530 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13530 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35962 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35962 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2234: -#line 13531 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13531 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35968 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35968 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2235: -#line 13532 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13532 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35974 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35974 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2236: -#line 13533 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13533 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35980 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35980 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2237: -#line 13534 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13534 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35986 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35986 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2238: -#line 13535 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13535 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35992 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35992 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2239: -#line 13536 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13536 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 35998 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 35998 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2240: -#line 13537 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13537 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36004 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36004 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2241: -#line 13538 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13538 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36010 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36010 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2242: -#line 13539 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13539 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36016 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36016 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2243: -#line 13540 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13540 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36022 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36022 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2244: -#line 13541 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13541 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36028 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36028 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2245: -#line 13542 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13542 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36034 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36034 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2246: -#line 13543 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13543 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36040 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36040 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2247: -#line 13544 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13544 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36046 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36046 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2248: -#line 13545 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13545 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36052 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36052 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2249: -#line 13546 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13546 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36058 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36058 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2250: -#line 13547 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13547 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36064 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36064 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2251: -#line 13548 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13548 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36070 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36070 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2252: -#line 13549 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13549 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36076 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36076 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2253: -#line 13550 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13550 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36082 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36082 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2254: -#line 13551 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13551 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36088 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36088 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2255: -#line 13552 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13552 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36094 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36094 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2256: -#line 13553 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13553 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36100 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36100 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2257: -#line 13554 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13554 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36106 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36106 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2258: -#line 13555 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13555 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36112 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36112 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2259: -#line 13556 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13556 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36118 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36118 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2260: -#line 13557 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13557 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36124 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36124 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2261: -#line 13558 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13558 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36130 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36130 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2262: -#line 13559 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13559 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36136 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36136 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2263: -#line 13560 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13560 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36142 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36142 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2264: -#line 13561 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13561 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36148 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36148 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2265: -#line 13562 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13562 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36154 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36154 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2266: -#line 13563 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13563 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36160 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36160 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2267: -#line 13564 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13564 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36166 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36166 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2268: -#line 13565 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13565 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36172 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36172 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2269: -#line 13566 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13566 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36178 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36178 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2270: -#line 13567 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13567 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36184 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36184 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2271: -#line 13568 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13568 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36190 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36190 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2272: -#line 13569 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13569 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36196 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36196 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2273: -#line 13570 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13570 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36202 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36202 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2274: -#line 13571 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13571 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36208 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36208 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2275: -#line 13572 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13572 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36214 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36214 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2276: -#line 13573 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13573 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36220 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36220 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2277: -#line 13574 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13574 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36226 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36226 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2278: -#line 13575 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13575 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36232 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36232 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2279: -#line 13576 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13576 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36238 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36238 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2280: -#line 13577 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13577 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36244 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36244 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2281: -#line 13578 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13578 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36250 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36250 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2282: -#line 13579 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13579 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36256 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36256 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2283: -#line 13580 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13580 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36262 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36262 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2284: -#line 13581 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13581 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36268 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36268 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2285: -#line 13582 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13582 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36274 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36274 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2286: -#line 13583 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13583 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36280 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36280 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2287: -#line 13584 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13584 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36286 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36286 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2288: -#line 13585 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13585 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36292 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36292 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2289: -#line 13586 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13586 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36298 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36298 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2290: -#line 13587 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13587 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36304 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36304 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2291: -#line 13588 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13588 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36310 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36310 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2292: -#line 13589 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13589 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36316 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36316 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2293: -#line 13590 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13590 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36322 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36322 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2294: -#line 13591 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13591 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36328 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36328 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2295: -#line 13592 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13592 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36334 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36334 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2296: -#line 13593 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13593 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36340 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36340 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2297: -#line 13594 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13594 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36346 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36346 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2298: -#line 13595 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13595 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36352 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36352 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2299: -#line 13596 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13596 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36358 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36358 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2300: -#line 13597 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13597 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36364 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36364 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2301: -#line 13598 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13598 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36370 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36370 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2302: -#line 13599 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13599 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36376 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36376 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2303: -#line 13600 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13600 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36382 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36382 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2304: -#line 13601 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13601 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36388 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36388 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2305: -#line 13602 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13602 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36394 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36394 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2306: -#line 13603 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13603 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36400 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36400 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2307: -#line 13604 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13604 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36406 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36406 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2308: -#line 13605 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13605 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36412 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36412 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2309: -#line 13606 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13606 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36418 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36418 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2310: -#line 13607 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13607 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36424 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36424 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2311: -#line 13608 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13608 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36430 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36430 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2312: -#line 13609 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13609 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36436 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36436 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2313: -#line 13610 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13610 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36442 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36442 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2314: -#line 13611 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13611 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36448 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36448 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2315: -#line 13612 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13612 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36454 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36454 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2316: -#line 13613 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13613 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36460 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36460 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2317: -#line 13614 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13614 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36466 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36466 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2318: -#line 13615 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13615 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36472 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36472 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2319: -#line 13616 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13616 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36478 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36478 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2320: -#line 13617 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13617 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36484 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36484 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2321: -#line 13618 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13618 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36490 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36490 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2322: -#line 13619 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13619 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36496 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36496 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2323: -#line 13620 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13620 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36502 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36502 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2324: -#line 13621 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13621 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36508 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36508 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2325: -#line 13622 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13622 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36514 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36514 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2326: -#line 13623 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13623 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36520 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36520 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2327: -#line 13624 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13624 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36526 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36526 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2328: -#line 13625 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13625 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36532 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36532 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2329: -#line 13626 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13626 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36538 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36538 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2330: -#line 13627 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13627 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36544 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36544 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2331: -#line 13628 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13628 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36550 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36550 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2332: -#line 13629 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13629 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36556 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36556 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2333: -#line 13630 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13630 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36562 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36562 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2334: -#line 13631 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13631 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36568 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36568 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2335: -#line 13632 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13632 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36574 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36574 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2336: -#line 13633 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13633 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36580 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36580 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2337: -#line 13634 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13634 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36586 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36586 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2338: -#line 13635 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13635 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36592 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36592 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2339: -#line 13636 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13636 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36598 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36598 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2340: -#line 13637 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13637 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36604 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36604 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2341: -#line 13638 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13638 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36610 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36610 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2342: -#line 13639 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13639 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36616 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36616 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2343: -#line 13640 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13640 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36622 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36622 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2344: -#line 13641 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13641 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36628 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36628 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2345: -#line 13642 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13642 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36634 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36634 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2346: -#line 13643 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13643 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36640 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36640 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2347: -#line 13644 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13644 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36646 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36646 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2348: -#line 13645 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13645 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36652 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36652 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2349: -#line 13646 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13646 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36658 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36658 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2350: -#line 13647 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13647 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36664 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36664 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2351: -#line 13648 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13648 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36670 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36670 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2352: -#line 13649 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13649 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36676 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36676 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2353: -#line 13650 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13650 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36682 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36682 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2354: -#line 13651 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13651 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36688 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36688 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2355: -#line 13652 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13652 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36694 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36694 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2356: -#line 13653 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13653 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36700 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36700 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2357: -#line 13654 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13654 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36706 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36706 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2358: -#line 13655 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13655 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36712 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36712 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2359: -#line 13656 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13656 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36718 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36718 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2360: -#line 13657 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13657 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36724 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36724 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2361: -#line 13658 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13658 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36730 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36730 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2362: -#line 13659 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13659 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36736 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36736 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2363: -#line 13660 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13660 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36742 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36742 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2364: -#line 13661 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13661 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36748 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36748 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2365: -#line 13662 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13662 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36754 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36754 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2366: -#line 13663 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13663 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36760 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36760 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2367: -#line 13664 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13664 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36766 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36766 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2368: -#line 13665 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13665 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36772 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36772 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2369: -#line 13666 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13666 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36778 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36778 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2370: -#line 13667 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13667 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36784 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36784 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2371: -#line 13668 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13668 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36790 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36790 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2372: -#line 13669 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13669 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36796 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36796 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2373: -#line 13670 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13670 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36802 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36802 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2374: -#line 13671 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13671 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36808 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36808 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2375: -#line 13672 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13672 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36814 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36814 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2376: -#line 13673 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13673 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36820 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36820 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2377: -#line 13674 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13674 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36826 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36826 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2378: -#line 13675 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13675 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36832 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36832 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2379: -#line 13676 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13676 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36838 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36838 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2380: -#line 13677 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13677 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36844 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36844 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2381: -#line 13678 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13678 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36850 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36850 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2382: -#line 13679 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13679 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36856 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36856 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2383: -#line 13680 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13680 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36862 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36862 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2384: -#line 13681 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13681 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36868 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36868 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2385: -#line 13682 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13682 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36874 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36874 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2386: -#line 13683 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13683 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36880 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36880 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2387: -#line 13684 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13684 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36886 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36886 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2388: -#line 13685 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13685 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36892 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36892 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2389: -#line 13686 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13686 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36898 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36898 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2390: -#line 13687 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13687 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36904 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36904 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2391: -#line 13688 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13688 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36910 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36910 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2392: -#line 13689 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13689 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36916 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36916 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2393: -#line 13690 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13690 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36922 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36922 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2394: -#line 13691 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13691 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36928 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36928 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2395: -#line 13692 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13692 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36934 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36934 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2396: -#line 13693 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13693 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36940 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36940 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2397: -#line 13694 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13694 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36946 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36946 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2398: -#line 13695 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13695 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36952 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36952 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2399: -#line 13696 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13696 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36958 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36958 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2400: -#line 13697 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13697 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36964 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36964 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2401: -#line 13698 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13698 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36970 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36970 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2402: -#line 13699 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13699 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36976 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36976 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2403: -#line 13700 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13700 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36982 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36982 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2404: -#line 13701 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13701 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36988 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36988 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2405: -#line 13702 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13702 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 36994 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 36994 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2406: -#line 13703 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13703 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 37000 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37000 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2407: -#line 13704 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13704 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 37006 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37006 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2408: -#line 13705 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13705 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 37012 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37012 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2409: -#line 13706 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13706 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 37018 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37018 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2410: -#line 13707 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13707 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 37024 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37024 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2411: -#line 13708 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13708 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 37030 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37030 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2412: -#line 13709 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13709 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 37036 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37036 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2413: -#line 13710 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13710 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 37042 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37042 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2414: -#line 13722 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13722 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.set)= NEW_PTN PT_set((yylsp[-1]), (yyvsp[0].start_option_value_list)); } -#line 37050 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37050 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2415: -#line 13731 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13731 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.start_option_value_list)= NEW_PTN PT_start_option_value_list_no_type((yyvsp[-1].option_value_no_option_type), (yylsp[-1]), (yyvsp[0].option_value_list)); } -#line 37058 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37058 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2416: -#line 13735 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13735 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.start_option_value_list)= NEW_PTN PT_start_option_value_list_transaction((yyvsp[0].transaction_characteristics), (yylsp[0])); } -#line 37066 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37066 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2417: -#line 13739 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13739 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.start_option_value_list)= NEW_PTN PT_start_option_value_list_type((yyvsp[-1].var_type), (yyvsp[0].start_option_value_list_following_option_type)); } -#line 37074 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37074 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2418: -#line 13743 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13743 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.start_option_value_list)= NEW_PTN PT_option_value_no_option_type_password((yyvsp[0].simple_string), (yylsp[0])); } -#line 37082 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37082 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2419: -#line 13747 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13747 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { push_deprecated_warn(YYTHD, "SET PASSWORD = " "PASSWORD('')", "SET PASSWORD = ''"); (yyval.start_option_value_list)= NEW_PTN PT_option_value_no_option_type_password((yyvsp[-1].simple_string), (yylsp[-1])); } -#line 37093 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37093 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2420: -#line 13754 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13754 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.start_option_value_list)= NEW_PTN PT_option_value_no_option_type_password_for((yyvsp[-2].lex_user), (yyvsp[0].simple_string), (yylsp[0])); } -#line 37101 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37101 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2421: -#line 13758 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13758 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { push_deprecated_warn(YYTHD, "SET PASSWORD FOR = " "PASSWORD('')", @@ -37109,354 +37109,354 @@ "''"); (yyval.start_option_value_list)= NEW_PTN PT_option_value_no_option_type_password_for((yyvsp[-5].lex_user), (yyvsp[-1].simple_string), (yylsp[-1])); } -#line 37113 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37113 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2422: -#line 13771 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13771 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.start_option_value_list_following_option_type)= NEW_PTN PT_start_option_value_list_following_option_type_eq((yyvsp[-1].option_value_following_option_type), (yylsp[-1]), (yyvsp[0].option_value_list)); } -#line 37124 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37124 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2423: -#line 13778 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13778 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.start_option_value_list_following_option_type)= NEW_PTN PT_start_option_value_list_following_option_type_transaction((yyvsp[0].transaction_characteristics), (yylsp[0])); } -#line 37134 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37134 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2424: -#line 13787 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13787 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.option_value_list)= NULL; } -#line 37140 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37140 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2425: -#line 13788 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13788 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.option_value_list)= (yyvsp[0].option_value_list); } -#line 37146 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37146 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2426: -#line 13794 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13794 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.option_value_list)= NEW_PTN PT_option_value_list_head((yylsp[-1]), (yyvsp[0].node), (yylsp[0])); } -#line 37154 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37154 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2427: -#line 13798 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13798 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.option_value_list)= NEW_PTN PT_option_value_list((yyvsp[-2].option_value_list), (yylsp[-1]), (yyvsp[0].node), (yylsp[0])); } -#line 37162 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37162 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2428: -#line 13806 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13806 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.node)= NEW_PTN PT_option_value_type((yyvsp[-1].var_type), (yyvsp[0].option_value_following_option_type)); } -#line 37170 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37170 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2429: -#line 13809 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13809 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.node)= (yyvsp[0].option_value_no_option_type); } -#line 37176 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37176 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2430: -#line 13813 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13813 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.var_type)=OPT_GLOBAL; } -#line 37182 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37182 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2431: -#line 13814 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13814 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.var_type)=OPT_SESSION; } -#line 37188 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37188 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2432: -#line 13815 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13815 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.var_type)=OPT_SESSION; } -#line 37194 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37194 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2433: -#line 13819 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13819 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.var_type)=OPT_SESSION; } -#line 37200 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37200 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2434: -#line 13820 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13820 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.var_type)=OPT_GLOBAL; } -#line 37206 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37206 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2435: -#line 13821 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13821 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.var_type)=OPT_SESSION; } -#line 37212 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37212 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2436: -#line 13822 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13822 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.var_type)=OPT_SESSION; } -#line 37218 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37218 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2437: -#line 13826 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13826 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.var_type)=OPT_DEFAULT; } -#line 37224 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37224 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2438: -#line 13827 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13827 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.var_type)=OPT_GLOBAL; } -#line 37230 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37230 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2439: -#line 13828 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13828 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.var_type)=OPT_SESSION; } -#line 37236 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37236 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2440: -#line 13829 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13829 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.var_type)=OPT_SESSION; } -#line 37242 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37242 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2441: -#line 13835 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13835 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.option_value_following_option_type)= NEW_PTN PT_option_value_following_option_type((yyloc), (yyvsp[-2].internal_variable_name), (yyvsp[0].item)); } -#line 37250 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37250 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2442: -#line 13845 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13845 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.option_value_no_option_type)= NEW_PTN PT_option_value_no_option_type_internal((yyvsp[-2].internal_variable_name), (yyvsp[0].item), (yylsp[0])); } -#line 37258 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37258 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2443: -#line 13849 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13849 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.option_value_no_option_type)= NEW_PTN PT_option_value_no_option_type_user_var((yyvsp[-2].lex_str), (yyvsp[0].item)); } -#line 37266 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37266 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2444: -#line 13853 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13853 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.option_value_no_option_type)= NEW_PTN PT_option_value_no_option_type_sys_var((yyvsp[-3].var_type), (yyvsp[-2].internal_variable_name), (yyvsp[0].item)); } -#line 37274 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37274 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2445: -#line 13857 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13857 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.option_value_no_option_type)= NEW_PTN PT_option_value_no_option_type_charset((yyvsp[0].charset)); } -#line 37282 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37282 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2446: -#line 13861 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13861 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /* Bad syntax, always fails with an error */ (yyval.option_value_no_option_type)= NEW_PTN PT_option_value_no_option_type_names((yylsp[-1])); } -#line 37293 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37293 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2447: -#line 13868 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13868 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.option_value_no_option_type)= NEW_PTN PT_option_value_no_option_type_names_charset((yyvsp[-1].charset), (yyvsp[0].charset)); } -#line 37301 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37301 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2448: -#line 13875 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13875 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.internal_variable_name)= NEW_PTN PT_internal_variable_name_1d((yyvsp[0].lex_str)); } -#line 37309 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37309 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2449: -#line 13879 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13879 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.internal_variable_name)= NEW_PTN PT_internal_variable_name_2d((yyloc), (yyvsp[-2].lex_str), (yyvsp[0].lex_str)); } -#line 37317 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37317 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2450: -#line 13883 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13883 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.internal_variable_name)= NEW_PTN PT_internal_variable_name_default((yyvsp[0].lex_str)); } -#line 37325 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37325 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2451: -#line 13890 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13890 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.transaction_characteristics)= NEW_PTN PT_transaction_characteristics((yyvsp[-1].transaction_access_mode), (yyvsp[0].isolation_level)); } -#line 37333 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37333 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2452: -#line 13894 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13894 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.transaction_characteristics)= NEW_PTN PT_transaction_characteristics((yyvsp[-1].isolation_level), (yyvsp[0].transaction_access_mode)); } -#line 37341 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37341 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2453: -#line 13901 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13901 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.transaction_access_mode)= NEW_PTN PT_transaction_access_mode((yyvsp[0].num)); } -#line 37349 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37349 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2454: -#line 13907 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13907 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.transaction_access_mode)= NULL; } -#line 37355 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37355 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2455: -#line 13908 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13908 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.transaction_access_mode)= (yyvsp[0].transaction_access_mode); } -#line 37361 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37361 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2456: -#line 13913 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13913 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.isolation_level)= NEW_PTN PT_isolation_level((yyvsp[0].tx_isolation)); } -#line 37369 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37369 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2457: -#line 13919 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13919 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.isolation_level)= NULL; } -#line 37375 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37375 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2458: -#line 13920 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13920 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.isolation_level)= (yyvsp[0].isolation_level); } -#line 37381 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37381 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2459: -#line 13924 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13924 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= true; } -#line 37387 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37387 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2460: -#line 13925 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13925 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= false; } -#line 37393 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37393 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2461: -#line 13929 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13929 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.tx_isolation)= ISO_READ_UNCOMMITTED; } -#line 37399 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37399 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2462: -#line 13930 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13930 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.tx_isolation)= ISO_READ_COMMITTED; } -#line 37405 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37405 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2463: -#line 13931 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13931 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.tx_isolation)= ISO_REPEATABLE_READ; } -#line 37411 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37411 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2464: -#line 13932 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13932 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.tx_isolation)= ISO_SERIALIZABLE; } -#line 37417 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37417 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2465: -#line 13937 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13937 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.simple_string)=(yyvsp[0].lex_str).str; Lex->contains_plaintext_password= true; } -#line 37426 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37426 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2467: -#line 13946 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13946 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NULL; } -#line 37432 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37432 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2468: -#line 13948 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13948 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_string((yyloc), "ON", 2, system_charset_info); } -#line 37440 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37440 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2469: -#line 13952 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13952 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_string((yyloc), "ALL", 3, system_charset_info); } -#line 37448 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37448 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2470: -#line 13956 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13956 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.item)= NEW_PTN Item_string((yyloc), "binary", 6, system_charset_info); } -#line 37456 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37456 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2471: -#line 13965 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13965 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; @@ -37467,17 +37467,17 @@ } lex->sql_command= SQLCOM_LOCK_TABLES; } -#line 37471 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37471 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2472: -#line 13976 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13976 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 37477 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37477 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2477: -#line 13991 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 13991 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { thr_lock_type lock_type= (thr_lock_type) (yyvsp[0].num); enum_mdl_type mdl_lock_type; @@ -37502,38 +37502,38 @@ mdl_lock_type)) MYSQL_YYABORT; } -#line 37506 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37506 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2478: -#line 14018 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14018 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= TL_READ_NO_INSERT; } -#line 37512 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37512 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2479: -#line 14019 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14019 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= TL_WRITE_DEFAULT; } -#line 37518 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37518 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2480: -#line 14021 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14021 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= TL_WRITE_LOW_PRIORITY; push_deprecated_warn(YYTHD, "LOW_PRIORITY WRITE", "WRITE"); } -#line 37527 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37527 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2481: -#line 14025 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14025 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)= TL_READ; } -#line 37533 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37533 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2482: -#line 14030 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14030 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; @@ -37544,35 +37544,35 @@ } lex->sql_command= SQLCOM_UNLOCK_TABLES; } -#line 37548 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37548 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2483: -#line 14041 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14041 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 37554 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37554 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2484: -#line 14047 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14047 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->sql_command= SQLCOM_SHUTDOWN; (yyval.statement)= NEW_PTN PT_shutdown(); } -#line 37563 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37563 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2485: -#line 14055 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14055 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->sql_command= SQLCOM_ALTER_INSTANCE; (yyval.statement)= NEW_PTN PT_alter_instance((yyvsp[0].alter_instance_action)); } -#line 37572 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37572 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2486: -#line 14062 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14062 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (!my_strcasecmp(system_charset_info, (yyvsp[-2].lex_str).str, "INNODB")) { @@ -37584,11 +37584,11 @@ MYSQL_YYABORT; } } -#line 37588 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37588 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2487: -#line 14081 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14081 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= Lex; @@ -37604,11 +37604,11 @@ if (lex->m_sql_cmd == NULL) MYSQL_YYABORT; } -#line 37608 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37608 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2488: -#line 14097 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14097 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= Lex; @@ -37624,11 +37624,11 @@ if (lex->m_sql_cmd == NULL) MYSQL_YYABORT; } -#line 37628 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37628 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2489: -#line 14115 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14115 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /* #4 */ LEX *lex=Lex; if (lex->sphead) @@ -37646,11 +37646,11 @@ if (!lex->current_select()->add_table_to_list(lex->thd, (yyvsp[-1].table), 0, 0)) MYSQL_YYABORT; } -#line 37650 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37650 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2490: -#line 14135 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14135 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if ((yyvsp[-1].item) != NULL) ITEMIZE((yyvsp[-1].item), &(yyvsp[-1].item)); @@ -37675,128 +37675,128 @@ if (lex->m_sql_cmd == NULL) MYSQL_YYABORT; } -#line 37679 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37679 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2491: -#line 14162 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14162 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->ident= null_lex_str; (yyval.ha_read_mode)=(yyvsp[0].ha_read_mode); } -#line 37685 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37685 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2492: -#line 14163 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14163 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->ident= (yyvsp[-1].lex_str); (yyval.ha_read_mode)=(yyvsp[0].ha_read_mode); } -#line 37691 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37691 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2493: -#line 14167 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14167 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ha_read_mode)= RFIRST; } -#line 37697 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37697 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2494: -#line 14168 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14168 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ha_read_mode)= RNEXT; } -#line 37703 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37703 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2495: -#line 14172 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14172 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ha_read_mode)= RFIRST; } -#line 37709 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37709 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2496: -#line 14173 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14173 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ha_read_mode)= RNEXT; } -#line 37715 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37715 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2497: -#line 14174 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14174 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ha_read_mode)= RPREV; } -#line 37721 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37721 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2498: -#line 14175 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14175 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ha_read_mode)= RLAST; } -#line 37727 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37727 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2499: -#line 14177 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14177 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { YYTHD->m_parser_state->m_yacc.m_ha_rkey_mode= (yyvsp[0].ha_rkey_mode); } -#line 37735 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37735 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2500: -#line 14181 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14181 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { CONTEXTUALIZE((yyvsp[-1].item_list2)); Lex->handler_insert_list= &(yyvsp[-1].item_list2)->value; (yyval.ha_read_mode)= RKEY; } -#line 37745 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37745 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2501: -#line 14189 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14189 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ha_rkey_mode)=HA_READ_KEY_EXACT; } -#line 37751 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37751 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2502: -#line 14190 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14190 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ha_rkey_mode)=HA_READ_KEY_OR_NEXT; } -#line 37757 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37757 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2503: -#line 14191 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14191 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ha_rkey_mode)=HA_READ_KEY_OR_PREV; } -#line 37763 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37763 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2504: -#line 14192 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14192 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ha_rkey_mode)=HA_READ_AFTER_KEY; } -#line 37769 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37769 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2505: -#line 14193 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14193 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ha_rkey_mode)=HA_READ_BEFORE_KEY; } -#line 37775 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37775 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2506: -#line 14199 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14199 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->sql_command= SQLCOM_REVOKE; } -#line 37781 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37781 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2507: -#line 14200 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14200 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 37787 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37787 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2508: -#line 14205 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14205 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->type= 0; } -#line 37796 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37796 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2509: -#line 14210 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14210 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; if (lex->columns.elements) @@ -37806,11 +37806,11 @@ } lex->type= TYPE_ENUM_FUNCTION; } -#line 37810 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37810 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2510: -#line 14220 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14220 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; if (lex->columns.elements) @@ -37820,50 +37820,50 @@ } lex->type= TYPE_ENUM_PROCEDURE; } -#line 37824 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37824 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2511: -#line 14230 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14230 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->sql_command = SQLCOM_REVOKE_ALL; } -#line 37832 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37832 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2512: -#line 14234 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14234 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->users_list.push_front ((yyvsp[-2].lex_user)); lex->type= TYPE_ENUM_PROXY; } -#line 37842 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37842 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2513: -#line 14242 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14242 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->sql_command= SQLCOM_GRANT; } -#line 37848 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37848 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2514: -#line 14243 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14243 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 37854 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37854 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2515: -#line 14249 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14249 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->type= 0; } -#line 37863 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37863 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2516: -#line 14255 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14255 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; if (lex->columns.elements) @@ -37873,11 +37873,11 @@ } lex->type= TYPE_ENUM_FUNCTION; } -#line 37877 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37877 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2517: -#line 14266 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14266 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; if (lex->columns.elements) @@ -37887,257 +37887,257 @@ } lex->type= TYPE_ENUM_PROCEDURE; } -#line 37891 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37891 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2518: -#line 14276 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14276 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->users_list.push_front ((yyvsp[-3].lex_user)); lex->type= TYPE_ENUM_PROXY; } -#line 37901 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37901 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2521: -#line 14290 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14290 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; if (lex->grant == GLOBAL_ACLS && lex->sql_command == SQLCOM_REVOKE) lex->sql_command= SQLCOM_REVOKE_ALL; } -#line 37912 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37912 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2522: -#line 14297 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14297 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->all_privileges= 1; Lex->grant= GLOBAL_ACLS; } -#line 37921 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37921 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2527: -#line 14315 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14315 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->which_columns = SELECT_ACL;} -#line 37927 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37927 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2528: -#line 14316 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14316 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 37933 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37933 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2529: -#line 14318 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14318 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->which_columns = INSERT_ACL;} -#line 37939 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37939 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2530: -#line 14319 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14319 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 37945 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37945 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2531: -#line 14321 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14321 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->which_columns = UPDATE_ACL; } -#line 37951 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37951 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2532: -#line 14322 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14322 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 37957 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37957 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2533: -#line 14324 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14324 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->which_columns = REFERENCES_ACL;} -#line 37963 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37963 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2534: -#line 14325 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14325 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 37969 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37969 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2535: -#line 14326 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14326 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->grant |= DELETE_ACL;} -#line 37975 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37975 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2536: -#line 14327 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14327 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 37981 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37981 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2537: -#line 14328 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14328 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->grant |= INDEX_ACL;} -#line 37987 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37987 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2538: -#line 14329 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14329 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->grant |= ALTER_ACL;} -#line 37993 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37993 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2539: -#line 14330 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14330 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->grant |= CREATE_ACL;} -#line 37999 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 37999 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2540: -#line 14331 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14331 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->grant |= DROP_ACL;} -#line 38005 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38005 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2541: -#line 14332 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14332 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->grant |= EXECUTE_ACL;} -#line 38011 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38011 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2542: -#line 14333 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14333 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->grant |= RELOAD_ACL;} -#line 38017 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38017 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2543: -#line 14334 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14334 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->grant |= SHUTDOWN_ACL;} -#line 38023 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38023 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2544: -#line 14335 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14335 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->grant |= PROCESS_ACL;} -#line 38029 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38029 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2545: -#line 14336 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14336 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->grant |= FILE_ACL;} -#line 38035 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38035 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2546: -#line 14337 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14337 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->grant |= GRANT_ACL;} -#line 38041 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38041 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2547: -#line 14338 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14338 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->grant |= SHOW_DB_ACL;} -#line 38047 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38047 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2548: -#line 14339 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14339 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->grant |= SUPER_ACL;} -#line 38053 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38053 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2549: -#line 14340 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14340 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->grant |= CREATE_TMP_ACL;} -#line 38059 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38059 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2550: -#line 14341 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14341 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->grant |= LOCK_TABLES_ACL; } -#line 38065 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38065 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2551: -#line 14342 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14342 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->grant |= REPL_SLAVE_ACL; } -#line 38071 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38071 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2552: -#line 14343 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14343 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->grant |= REPL_CLIENT_ACL; } -#line 38077 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38077 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2553: -#line 14344 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14344 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->grant |= CREATE_VIEW_ACL; } -#line 38083 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38083 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2554: -#line 14345 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14345 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->grant |= SHOW_VIEW_ACL; } -#line 38089 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38089 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2555: -#line 14346 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14346 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->grant |= CREATE_PROC_ACL; } -#line 38095 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38095 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2556: -#line 14347 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14347 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->grant |= ALTER_PROC_ACL; } -#line 38101 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38101 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2557: -#line 14348 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14348 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->grant |= CREATE_USER_ACL; } -#line 38107 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38107 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2558: -#line 14349 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14349 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->grant |= EVENT_ACL;} -#line 38113 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38113 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2559: -#line 14350 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14350 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->grant |= TRIGGER_ACL; } -#line 38119 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38119 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2560: -#line 14351 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14351 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->grant |= CREATE_TABLESPACE_ACL; } -#line 38125 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38125 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2561: -#line 14355 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14355 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 38131 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38131 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2562: -#line 14356 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14356 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 38137 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38137 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2565: -#line 14366 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14366 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; if (lex->x509_subject) @@ -38147,11 +38147,11 @@ } lex->x509_subject=(yyvsp[0].lex_str).str; } -#line 38151 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38151 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2566: -#line 14376 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14376 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; if (lex->x509_issuer) @@ -38161,11 +38161,11 @@ } lex->x509_issuer=(yyvsp[0].lex_str).str; } -#line 38165 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38165 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2567: -#line 14386 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14386 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; if (lex->ssl_cipher) @@ -38175,11 +38175,11 @@ } lex->ssl_cipher=(yyvsp[0].lex_str).str; } -#line 38179 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38179 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2568: -#line 14399 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14399 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; size_t dummy; @@ -38194,11 +38194,11 @@ MYSQL_YYABORT; } } -#line 38198 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38198 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2569: -#line 14414 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14414 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->current_select()->db = (yyvsp[-2].lex_str).str; @@ -38211,11 +38211,11 @@ MYSQL_YYABORT; } } -#line 38215 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38215 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2570: -#line 14427 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14427 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->current_select()->db = NULL; @@ -38228,11 +38228,11 @@ MYSQL_YYABORT; } } -#line 38232 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38232 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2571: -#line 14440 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14440 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; if (!lex->current_select()->add_table_to_list(lex->thd, (yyvsp[0].table),NULL, @@ -38241,47 +38241,47 @@ if (lex->grant == GLOBAL_ACLS) lex->grant = TABLE_ACLS & ~GRANT_ACL; } -#line 38245 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38245 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2572: -#line 14452 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14452 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (Lex->users_list.push_back((yyvsp[0].lex_user))) MYSQL_YYABORT; } -#line 38254 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38254 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2573: -#line 14457 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14457 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (Lex->users_list.push_back((yyvsp[0].lex_user))) MYSQL_YYABORT; } -#line 38263 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38263 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2574: -#line 14465 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14465 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (Lex->users_list.push_back((yyvsp[0].lex_user))) MYSQL_YYABORT; } -#line 38272 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38272 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2575: -#line 14470 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14470 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (Lex->users_list.push_back((yyvsp[0].lex_user))) MYSQL_YYABORT; } -#line 38281 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38281 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2576: -#line 14478 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14478 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lex_user)=(yyvsp[-3].lex_user); (yyvsp[-3].lex_user)->auth.str= (yyvsp[0].lex_str).str; @@ -38289,11 +38289,11 @@ (yyvsp[-3].lex_user)->uses_identified_by_clause= true; Lex->contains_plaintext_password= true; } -#line 38293 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38293 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2577: -#line 14486 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14486 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lex_user)= (yyvsp[-4].lex_user); (yyvsp[-4].lex_user)->auth.str= (yyvsp[0].lex_str).str; @@ -38308,11 +38308,11 @@ push_deprecated_warn(YYTHD, "IDENTIFIED BY PASSWORD", "IDENTIFIED WITH AS "); } -#line 38312 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38312 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2578: -#line 14501 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14501 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lex_user)= (yyvsp[-3].lex_user); (yyvsp[-3].lex_user)->plugin.str= (yyvsp[0].lex_str).str; @@ -38320,11 +38320,11 @@ (yyvsp[-3].lex_user)->auth= EMPTY_CSTR; (yyvsp[-3].lex_user)->uses_identified_with_clause= true; } -#line 38324 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38324 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2579: -#line 14509 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14509 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lex_user)= (yyvsp[-5].lex_user); (yyvsp[-5].lex_user)->plugin.str= (yyvsp[-2].lex_str).str; @@ -38334,11 +38334,11 @@ (yyvsp[-5].lex_user)->uses_identified_with_clause= true; (yyvsp[-5].lex_user)->uses_authentication_string_clause= true; } -#line 38338 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38338 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2580: -#line 14519 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14519 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lex_user)= (yyvsp[-5].lex_user); (yyvsp[-5].lex_user)->plugin.str= (yyvsp[-2].lex_str).str; @@ -38349,29 +38349,29 @@ (yyvsp[-5].lex_user)->uses_identified_by_clause= true; Lex->contains_plaintext_password= true; } -#line 38353 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38353 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2581: -#line 14530 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14530 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.lex_user)= (yyvsp[0].lex_user); (yyvsp[0].lex_user)->auth= NULL_CSTR; } -#line 38362 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38362 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2582: -#line 14538 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14538 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->grant |= lex->which_columns; } -#line 38371 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38371 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2586: -#line 14552 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14552 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { String *new_str = new (YYTHD->mem_root) String((const char*) (yyvsp[0].lex_str).str,(yyvsp[0].lex_str).length,system_charset_info); if (new_str == NULL) @@ -38396,195 +38396,195 @@ lex->columns.push_back(col); } } -#line 38400 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38400 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2588: -#line 14581 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14581 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->ssl_type=SSL_TYPE_SPECIFIED; } -#line 38408 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38408 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2589: -#line 14585 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14585 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->ssl_type=SSL_TYPE_ANY; } -#line 38416 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38416 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2590: -#line 14589 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14589 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->ssl_type=SSL_TYPE_X509; } -#line 38424 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38424 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2591: -#line 14593 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14593 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->ssl_type=SSL_TYPE_NONE; } -#line 38432 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38432 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2592: -#line 14599 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14599 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 38438 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38438 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2594: -#line 14604 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14604 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 38444 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38444 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2595: -#line 14605 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14605 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->grant |= GRANT_ACL;} -#line 38450 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38450 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2596: -#line 14609 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14609 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 38456 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38456 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2597: -#line 14610 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14610 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 38462 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38462 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2598: -#line 14614 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14614 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->grant |= GRANT_ACL;} -#line 38468 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38468 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2599: -#line 14616 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14616 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->mqh.questions=(yyvsp[0].ulong_num); lex->mqh.specified_limits|= USER_RESOURCES::QUERIES_PER_HOUR; } -#line 38478 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38478 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2600: -#line 14622 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14622 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->mqh.updates=(yyvsp[0].ulong_num); lex->mqh.specified_limits|= USER_RESOURCES::UPDATES_PER_HOUR; } -#line 38488 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38488 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2601: -#line 14628 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14628 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->mqh.conn_per_hour= (yyvsp[0].ulong_num); lex->mqh.specified_limits|= USER_RESOURCES::CONNECTIONS_PER_HOUR; } -#line 38498 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38498 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2602: -#line 14634 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14634 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->mqh.user_conn= (yyvsp[0].ulong_num); lex->mqh.specified_limits|= USER_RESOURCES::USER_CONNECTIONS; } -#line 38508 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38508 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2603: -#line 14643 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14643 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->sql_command = SQLCOM_BEGIN; lex->start_transaction_opt= 0; } -#line 38518 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38518 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2604: -#line 14648 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14648 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 38524 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38524 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2605: -#line 14652 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14652 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 38530 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38530 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2606: -#line 14653 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14653 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 38536 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38536 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2607: -#line 14658 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14658 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.m_yes_no_unk)= TVL_UNKNOWN; } -#line 38542 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38542 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2608: -#line 14659 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14659 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.m_yes_no_unk)= TVL_NO; } -#line 38548 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38548 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2609: -#line 14660 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14660 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.m_yes_no_unk)= TVL_YES; } -#line 38554 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38554 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2610: -#line 14665 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14665 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.m_yes_no_unk)= TVL_UNKNOWN; } -#line 38560 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38560 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2611: -#line 14666 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14666 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.m_yes_no_unk)= TVL_YES; } -#line 38566 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38566 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2612: -#line 14667 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14667 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.m_yes_no_unk)= TVL_NO; } -#line 38572 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38572 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2613: -#line 14671 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14671 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 38578 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38578 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2614: -#line 14672 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14672 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 38584 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38584 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2615: -#line 14677 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14677 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->sql_command= SQLCOM_COMMIT; @@ -38593,11 +38593,11 @@ lex->tx_chain= (yyvsp[-1].m_yes_no_unk); lex->tx_release= (yyvsp[0].m_yes_no_unk); } -#line 38597 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38597 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2616: -#line 14689 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14689 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->sql_command= SQLCOM_ROLLBACK; @@ -38606,248 +38606,248 @@ lex->tx_chain= (yyvsp[-1].m_yes_no_unk); lex->tx_release= (yyvsp[0].m_yes_no_unk); } -#line 38610 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38610 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2617: -#line 14699 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14699 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->sql_command= SQLCOM_ROLLBACK_TO_SAVEPOINT; lex->ident= (yyvsp[0].lex_str); } -#line 38620 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38620 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2618: -#line 14708 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14708 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->sql_command= SQLCOM_SAVEPOINT; lex->ident= (yyvsp[0].lex_str); } -#line 38630 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38630 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2619: -#line 14717 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14717 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex=Lex; lex->sql_command= SQLCOM_RELEASE_SAVEPOINT; lex->ident= (yyvsp[0].lex_str); } -#line 38640 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38640 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2620: -#line 14730 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14730 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.union_list)= NULL; } -#line 38646 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38646 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2622: -#line 14736 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14736 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.union_list)= NEW_PTN PT_union_list((yyvsp[-1].num), (yyvsp[0].select_init)); } -#line 38654 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38654 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2623: -#line 14742 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14742 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.node)= NULL; } -#line 38660 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38660 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2624: -#line 14743 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14743 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.node)= (yyvsp[0].union_list); } -#line 38666 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38666 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2625: -#line 14744 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14744 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.node)= (yyvsp[0].union_order_or_limit); } -#line 38672 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38672 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2626: -#line 14748 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14748 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.node)= NULL; } -#line 38678 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38678 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2627: -#line 14749 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14749 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.node)= (yyvsp[0].union_order_or_limit); } -#line 38684 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38684 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2628: -#line 14754 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14754 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.union_order_or_limit)= NEW_PTN PT_union_order_or_limit((yyvsp[0].node)); } -#line 38692 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38692 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2629: -#line 14761 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14761 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.node)= NEW_PTN PT_order_or_limit_order((yyvsp[-1].order), (yyvsp[0].limit_clause)); } -#line 38700 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38700 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2630: -#line 14764 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14764 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.node)= (yyvsp[0].limit_clause); } -#line 38706 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38706 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2631: -#line 14768 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14768 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)=1; } -#line 38712 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38712 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2632: -#line 14769 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14769 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)=1; } -#line 38718 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38718 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2633: -#line 14770 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14770 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.num)=0; } -#line 38724 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38724 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2634: -#line 14775 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14775 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.select_lex2)= NEW_PTN PT_query_specification_select((yyvsp[-2].optimizer_hints), (yyvsp[-1].select_part2_derived), (yyvsp[0].table_expression)); } -#line 38732 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38732 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2635: -#line 14780 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14780 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.select_lex2)= NEW_PTN PT_query_specification_parenthesis((yyvsp[-2].select_paren_derived), (yyvsp[0].node)); } -#line 38740 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38740 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2637: -#line 14788 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14788 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.select_lex2)= NEW_PTN PT_query_expression_body_union((yyloc), (yyvsp[-3].select_lex2), (yyvsp[-1].num), (yyvsp[0].select_lex2)); } -#line 38748 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38748 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2638: -#line 14795 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14795 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /* TODO: remove this semantic action (currently this removal adds reduce/reduce conflict) */ } -#line 38759 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38759 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2639: -#line 14802 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14802 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.subselect)= NEW_PTN PT_subselect((yyloc), (yyvsp[0].select_lex2)); } -#line 38767 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38767 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2640: -#line 14808 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14808 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ulonglong_number)= 0; } -#line 38773 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38773 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2642: -#line 14814 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14814 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ulonglong_number)= (yyvsp[-1].ulonglong_number) | (yyvsp[0].ulonglong_number); } -#line 38781 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38781 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2644: -#line 14821 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14821 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ulonglong_number)= SELECT_STRAIGHT_JOIN; } -#line 38787 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38787 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2645: -#line 14822 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14822 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ulonglong_number)= SELECT_HIGH_PRIORITY; } -#line 38793 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38793 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2646: -#line 14823 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14823 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ulonglong_number)= SELECT_DISTINCT; } -#line 38799 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38799 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2647: -#line 14824 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14824 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ulonglong_number)= SELECT_SMALL_RESULT; } -#line 38805 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38805 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2648: -#line 14825 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14825 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ulonglong_number)= SELECT_BIG_RESULT; } -#line 38811 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38811 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2649: -#line 14826 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14826 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ulonglong_number)= OPTION_BUFFER_RESULT; } -#line 38817 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38817 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2650: -#line 14827 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14827 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ulonglong_number)= OPTION_FOUND_ROWS; } -#line 38823 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38823 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2651: -#line 14828 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14828 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.ulonglong_number)= SELECT_ALL; } -#line 38829 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38829 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2652: -#line 14839 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14839 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 38835 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38835 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2653: -#line 14841 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14841 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 38841 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38841 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2654: -#line 14843 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14843 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 38847 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38847 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2668: -#line 14876 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14876 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /* We have to distinguish missing DEFINER-clause from case when @@ -38858,79 +38858,79 @@ */ YYTHD->lex->definer= 0; } -#line 38862 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38862 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2669: -#line 14890 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14890 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { YYTHD->lex->definer= get_current_user(YYTHD, (yyvsp[0].lex_user)); } -#line 38870 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38870 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2670: -#line 14903 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14903 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 38876 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38876 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2671: -#line 14905 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14905 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 38882 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38882 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2672: -#line 14907 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14907 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 38888 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38888 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2673: -#line 14912 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14912 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_view_mode= VIEW_CREATE_OR_REPLACE; } -#line 38894 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38894 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2674: -#line 14917 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14917 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_view_algorithm= VIEW_ALGORITHM_UNDEFINED; } -#line 38900 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38900 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2675: -#line 14919 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14919 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_view_algorithm= VIEW_ALGORITHM_MERGE; } -#line 38906 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38906 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2676: -#line 14921 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14921 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_view_algorithm= VIEW_ALGORITHM_TEMPTABLE; } -#line 38912 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38912 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2677: -#line 14926 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14926 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_view_suid= VIEW_SUID_DEFAULT; } -#line 38918 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38918 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2678: -#line 14928 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14928 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_view_suid= VIEW_SUID_DEFINER; } -#line 38924 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38924 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2679: -#line 14930 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14930 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_view_suid= VIEW_SUID_INVOKER; } -#line 38930 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38930 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2680: -#line 14935 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14935 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= thd->lex; @@ -38943,46 +38943,46 @@ MYSQL_YYABORT; lex->query_tables->open_strategy= TABLE_LIST::OPEN_STUB; } -#line 38947 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38947 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2682: -#line 14952 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14952 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 38953 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38953 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2684: -#line 14958 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14958 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->view_list.push_back((LEX_STRING*) sql_memdup(&(yyvsp[0].lex_str), sizeof(LEX_STRING))); } -#line 38962 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38962 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2685: -#line 14963 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14963 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->view_list.push_back((LEX_STRING*) sql_memdup(&(yyvsp[0].lex_str), sizeof(LEX_STRING))); } -#line 38971 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38971 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2686: -#line 14970 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14970 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->parsing_options.allows_variable= FALSE; lex->parsing_options.allows_select_into= FALSE; lex->parsing_options.allows_select_procedure= FALSE; } -#line 38982 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 38982 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2687: -#line 14977 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14977 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= Lex; @@ -38997,11 +38997,11 @@ lex->parsing_options.allows_select_into= TRUE; lex->parsing_options.allows_select_procedure= TRUE; } -#line 39001 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39001 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2688: -#line 14995 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 14995 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (Lex->current_select()->set_braces(0)) { @@ -39017,119 +39017,119 @@ done here. */ } -#line 39021 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39021 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2689: -#line 15011 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15011 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if ((yyvsp[0].union_list) != NULL) CONTEXTUALIZE((yyvsp[0].union_list)); } -#line 39030 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39030 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2690: -#line 15016 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15016 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if ((yyvsp[0].node) != NULL) CONTEXTUALIZE((yyvsp[0].node)); } -#line 39039 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39039 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2691: -#line 15023 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15023 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->current_select()->set_braces(true); } -#line 39047 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39047 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2692: -#line 15027 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15027 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { if (setup_select_in_parentheses(Select)) MYSQL_YYABORT; } -#line 39056 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39056 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2694: -#line 15036 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15036 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->current_select()->table_list.save_and_clear(&Lex->save_list); } -#line 39064 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39064 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2695: -#line 15040 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15040 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { CONTEXTUALIZE((yyvsp[0].select_part2)); Lex->current_select()->table_list.push_front(&Lex->save_list); } -#line 39074 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39074 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2696: -#line 15049 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15049 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_view_check= VIEW_CHECK_NONE; } -#line 39080 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39080 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2697: -#line 15051 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15051 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_view_check= VIEW_CHECK_CASCADED; } -#line 39086 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39086 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2698: -#line 15053 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15053 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_view_check= VIEW_CHECK_CASCADED; } -#line 39092 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39092 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2699: -#line 15055 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15055 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->create_view_check= VIEW_CHECK_LOCAL; } -#line 39098 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39098 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2700: -#line 15066 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15066 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.trigger_action_order_type)= TRG_ORDER_FOLLOWS; } -#line 39104 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39104 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2701: -#line 15068 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15068 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.trigger_action_order_type)= TRG_ORDER_PRECEDES; } -#line 39110 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39110 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2702: -#line 15073 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15073 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.trg_characteristics).ordering_clause= TRG_ORDER_NONE; (yyval.trg_characteristics).anchor_trigger_name.str= NULL; (yyval.trg_characteristics).anchor_trigger_name.length= 0; } -#line 39120 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39120 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2703: -#line 15080 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15080 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.trg_characteristics).ordering_clause= (yyvsp[-1].trigger_action_order_type); (yyval.trg_characteristics).anchor_trigger_name= (yyvsp[0].lex_str); } -#line 39129 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39129 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2704: -#line 15097 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15097 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /* $11 */ THD *thd= YYTHD; LEX *lex= thd->lex; @@ -39179,11 +39179,11 @@ sp->set_body_start(thd, (yylsp[-1]).cpp.end); } -#line 39183 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39183 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2705: -#line 15147 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15147 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /* $13 */ THD *thd= YYTHD; LEX *lex= Lex; @@ -39208,11 +39208,11 @@ MDL_SHARED_NO_WRITE)) MYSQL_YYABORT; } -#line 39212 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39212 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2706: -#line 15182 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15182 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= thd->lex; @@ -39229,11 +39229,11 @@ lex->udf.returns=(Item_result) (yyvsp[-2].num); lex->udf.dl=(yyvsp[0].lex_str).str; } -#line 39233 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39233 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2707: -#line 15200 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15200 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= thd->lex; @@ -39250,11 +39250,11 @@ lex->udf.returns=(Item_result) (yyvsp[-2].num); lex->udf.dl=(yyvsp[0].lex_str).str; } -#line 39254 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39254 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2708: -#line 15222 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15222 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /* $4 */ THD *thd= YYTHD; LEX *lex= thd->lex; @@ -39277,19 +39277,19 @@ sp->m_parser_data.set_parameter_start_ptr((yylsp[0]).cpp.end); } -#line 39281 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39281 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2709: -#line 15246 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15246 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /* $7 */ Lex->sphead->m_parser_data.set_parameter_end_ptr((yylsp[0]).cpp.start); } -#line 39289 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39289 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2710: -#line 15250 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15250 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /* $9 */ LEX *lex= Lex; lex->charset= NULL; @@ -39298,11 +39298,11 @@ lex->type= 0; lex->gcol_info= 0; } -#line 39302 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39302 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2711: -#line 15259 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15259 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /* $11 */ LEX *lex= Lex; sp_head *sp= lex->sphead; @@ -39325,11 +39325,11 @@ memset(&lex->sp_chistics, 0, sizeof(st_sp_chistics)); } -#line 39329 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39329 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2712: -#line 15282 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15282 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /* $13 */ THD *thd= YYTHD; LEX *lex= thd->lex; @@ -39337,11 +39337,11 @@ lex->sphead->m_chistics= &lex->sp_chistics; lex->sphead->set_body_start(thd, yylloc.cpp.start); } -#line 39341 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39341 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2713: -#line 15290 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15290 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { THD *thd= YYTHD; LEX *lex= thd->lex; @@ -39396,11 +39396,11 @@ sp->m_name.str); } } -#line 39400 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39400 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2714: -#line 15349 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15349 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /*$3*/ THD *thd= YYTHD; LEX *lex= Lex; @@ -39420,19 +39420,19 @@ lex->sphead= sp; } -#line 39424 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39424 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2715: -#line 15369 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15369 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /*$5*/ Lex->sphead->m_parser_data.set_parameter_start_ptr((yylsp[0]).cpp.end); } -#line 39432 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39432 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2716: -#line 15374 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15374 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /*$8*/ THD *thd= YYTHD; LEX *lex= thd->lex; @@ -39440,11 +39440,11 @@ lex->sphead->m_parser_data.set_parameter_end_ptr((yylsp[0]).cpp.start); memset(&lex->sp_chistics, 0, sizeof(st_sp_chistics)); } -#line 39444 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39444 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2717: -#line 15382 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15382 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /*$10*/ THD *thd= YYTHD; LEX *lex= thd->lex; @@ -39452,11 +39452,11 @@ lex->sphead->m_chistics= &lex->sp_chistics; lex->sphead->set_body_start(thd, yylloc.cpp.start); } -#line 39456 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39456 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2718: -#line 15390 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15390 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { /*$12*/ THD *thd= YYTHD; LEX *lex= Lex; @@ -39465,77 +39465,77 @@ lex->sql_command= SQLCOM_CREATE_PROCEDURE; } -#line 39469 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39469 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2719: -#line 15404 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15404 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->sql_command = SQLCOM_XA_START; Lex->m_sql_cmd= new (YYTHD->mem_root) Sql_cmd_xa_start((yyvsp[-1].xid), (yyvsp[0].xa_option_type)); } -#line 39478 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39478 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2720: -#line 15409 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15409 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->sql_command = SQLCOM_XA_END; Lex->m_sql_cmd= new (YYTHD->mem_root) Sql_cmd_xa_end((yyvsp[-1].xid), (yyvsp[0].xa_option_type)); } -#line 39487 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39487 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2721: -#line 15414 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15414 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->sql_command = SQLCOM_XA_PREPARE; Lex->m_sql_cmd= new (YYTHD->mem_root) Sql_cmd_xa_prepare((yyvsp[0].xid)); } -#line 39496 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39496 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2722: -#line 15419 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15419 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->sql_command = SQLCOM_XA_COMMIT; Lex->m_sql_cmd= new (YYTHD->mem_root) Sql_cmd_xa_commit((yyvsp[-1].xid), (yyvsp[0].xa_option_type)); } -#line 39505 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39505 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2723: -#line 15424 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15424 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->sql_command = SQLCOM_XA_ROLLBACK; Lex->m_sql_cmd= new (YYTHD->mem_root) Sql_cmd_xa_rollback((yyvsp[0].xid)); } -#line 39514 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39514 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2724: -#line 15429 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15429 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { Lex->sql_command = SQLCOM_XA_RECOVER; Lex->m_sql_cmd= new (YYTHD->mem_root) Sql_cmd_xa_recover((yyvsp[0].is_not_empty)); } -#line 39523 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39523 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2725: -#line 15436 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15436 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.is_not_empty)= false; } -#line 39529 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39529 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2726: -#line 15437 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15437 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.is_not_empty)= true; } -#line 39535 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39535 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2727: -#line 15441 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15441 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { MYSQL_YYABORT_UNLESS((yyvsp[0].string)->length() <= MAXGTRIDSIZE); XID *xid; @@ -39544,11 +39544,11 @@ xid->set(1L, (yyvsp[0].string)->ptr(), (yyvsp[0].string)->length(), 0, 0); (yyval.xid)= xid; } -#line 39548 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39548 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2728: -#line 15450 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15450 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { MYSQL_YYABORT_UNLESS((yyvsp[-2].string)->length() <= MAXGTRIDSIZE && (yyvsp[0].string)->length() <= MAXBQUALSIZE); @@ -39558,11 +39558,11 @@ xid->set(1L, (yyvsp[-2].string)->ptr(), (yyvsp[-2].string)->length(), (yyvsp[0].string)->ptr(), (yyvsp[0].string)->length()); (yyval.xid)= xid; } -#line 39562 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39562 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2729: -#line 15460 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15460 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { // check for overwflow of xid format id bool format_id_overflow_detected= ((yyvsp[0].ulong_num) > LONG_MAX); @@ -39577,91 +39577,91 @@ xid->set((yyvsp[0].ulong_num), (yyvsp[-4].string)->ptr(), (yyvsp[-4].string)->length(), (yyvsp[-2].string)->ptr(), (yyvsp[-2].string)->length()); (yyval.xid)= xid; } -#line 39581 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39581 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2730: -#line 15477 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15477 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 39587 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39587 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2731: -#line 15478 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15478 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ {} -#line 39593 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39593 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2732: -#line 15482 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15482 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.xa_option_type)= XA_NONE; } -#line 39599 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39599 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2733: -#line 15483 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15483 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.xa_option_type)= XA_JOIN; } -#line 39605 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39605 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2734: -#line 15484 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15484 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.xa_option_type)= XA_RESUME; } -#line 39611 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39611 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2735: -#line 15488 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15488 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.xa_option_type)= XA_NONE; } -#line 39617 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39617 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2736: -#line 15489 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15489 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.xa_option_type)= XA_ONE_PHASE; } -#line 39623 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39623 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2737: -#line 15494 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15494 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.xa_option_type)= XA_NONE; } -#line 39629 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39629 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2738: -#line 15496 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15496 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.xa_option_type)= XA_SUSPEND; } -#line 39635 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39635 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2739: -#line 15498 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15498 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { (yyval.xa_option_type)= XA_FOR_MIGRATE; } -#line 39641 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39641 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2740: -#line 15503 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15503 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->sql_command= SQLCOM_INSTALL_PLUGIN; lex->m_sql_cmd= new Sql_cmd_install_plugin((yyvsp[-2].lex_str), (yyvsp[0].lex_str)); } -#line 39651 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39651 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; case 2741: -#line 15512 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/mysql-5.7.25-release-export-14135606_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ +#line 15512 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/mysql-5.7.26-release-export-14634697_gpl/sql/sql_yacc.yy" /* yacc.c:1646 */ { LEX *lex= Lex; lex->sql_command= SQLCOM_UNINSTALL_PLUGIN; lex->m_sql_cmd= new Sql_cmd_uninstall_plugin((yyvsp[0].lex_str)); } -#line 39661 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39661 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ break; -#line 39665 "/export/home2/pb2/build/sb_1-32013685-1545388829.14/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ +#line 39665 "/export/home2/pb2/build/sb_2-33647514-1555162505.73/dist_GPL/sql/sql_yacc.cc" /* yacc.c:1646 */ default: break; } /* User semantic actions sometimes alter yychar, and that requires diff -Nru mysql-5.7-5.7.25/sql/sql_yacc.h mysql-5.7-5.7.26/sql/sql_yacc.h --- mysql-5.7-5.7.25/sql/sql_yacc.h 2018-12-21 10:52:32.000000000 +0000 +++ mysql-5.7-5.7.26/sql/sql_yacc.h 2019-04-13 13:47:04.000000000 +0000 @@ -30,8 +30,8 @@ This special exception was added by the Free Software Foundation in version 2.2 of Bison. */ -#ifndef YY_MYSQL_EXPORT_HOME2_PB2_BUILD_SB_1_32013685_1545388829_14_DIST_GPL_SQL_SQL_YACC_H_INCLUDED -# define YY_MYSQL_EXPORT_HOME2_PB2_BUILD_SB_1_32013685_1545388829_14_DIST_GPL_SQL_SQL_YACC_H_INCLUDED +#ifndef YY_MYSQL_EXPORT_HOME2_PB2_BUILD_SB_2_33647514_1555162505_73_DIST_GPL_SQL_SQL_YACC_H_INCLUDED +# define YY_MYSQL_EXPORT_HOME2_PB2_BUILD_SB_2_33647514_1555162505_73_DIST_GPL_SQL_SQL_YACC_H_INCLUDED /* Debug traces. */ #ifndef YYDEBUG # define YYDEBUG 0 @@ -1373,4 +1373,4 @@ int MYSQLparse (class THD *YYTHD); -#endif /* !YY_MYSQL_EXPORT_HOME2_PB2_BUILD_SB_1_32013685_1545388829_14_DIST_GPL_SQL_SQL_YACC_H_INCLUDED */ +#endif /* !YY_MYSQL_EXPORT_HOME2_PB2_BUILD_SB_2_33647514_1555162505_73_DIST_GPL_SQL_SQL_YACC_H_INCLUDED */ diff -Nru mysql-5.7-5.7.25/sql/uniques.cc mysql-5.7-5.7.26/sql/uniques.cc --- mysql-5.7-5.7.25/sql/uniques.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/sql/uniques.cc 2019-04-13 13:32:15.000000000 +0000 @@ -1,4 +1,4 @@ -/* Copyright (c) 2001, 2016, Oracle and/or its affiliates. All rights reserved. +/* Copyright (c) 2001, 2019, Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -670,11 +670,14 @@ my_off_t save_pos; bool error=1; - /* Open cached file if it isn't open */ - DBUG_ASSERT(table->sort.io_cache == NULL); - outfile=table->sort.io_cache=(IO_CACHE*) my_malloc(key_memory_TABLE_sort_io_cache, - sizeof(IO_CACHE), - MYF(MY_ZEROFILL)); + /* + Open cached file if it isn't open. Reuse the existing io_cache if it is + already present. + */ + if (!table->sort.io_cache) + outfile=table->sort.io_cache=(IO_CACHE*) my_malloc(key_memory_TABLE_sort_io_cache, + sizeof(IO_CACHE), + MYF(MY_ZEROFILL)); if (!outfile || (! my_b_inited(outfile) && open_cached_file(outfile,mysql_tmpdir,TEMP_PREFIX,READ_RECORD_BUFFER, diff -Nru mysql-5.7-5.7.25/storage/innobase/dict/dict0mem.cc mysql-5.7-5.7.26/storage/innobase/dict/dict0mem.cc --- mysql-5.7-5.7.25/storage/innobase/dict/dict0mem.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/storage/innobase/dict/dict0mem.cc 2019-04-13 13:32:15.000000000 +0000 @@ -1,6 +1,6 @@ /***************************************************************************** -Copyright (c) 1996, 2018, Oracle and/or its affiliates. All Rights Reserved. +Copyright (c) 1996, 2019, Oracle and/or its affiliates. All Rights Reserved. Copyright (c) 2012, Facebook Inc. This program is free software; you can redistribute it and/or modify it under @@ -227,6 +227,7 @@ } mem_heap_free(table->heap); + table = NULL; } /****************************************************************//** diff -Nru mysql-5.7-5.7.25/storage/innobase/dict/dict0stats.cc mysql-5.7-5.7.26/storage/innobase/dict/dict0stats.cc --- mysql-5.7-5.7.25/storage/innobase/dict/dict0stats.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/storage/innobase/dict/dict0stats.cc 2019-04-13 13:32:15.000000000 +0000 @@ -1,6 +1,6 @@ /***************************************************************************** -Copyright (c) 2009, 2018, Oracle and/or its affiliates. All Rights Reserved. +Copyright (c) 2009, 2019, Oracle and/or its affiliates. All Rights Reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software @@ -3021,6 +3021,7 @@ if (dict_stats_persistent_storage_check(false)) { dict_table_stats_lock(index->table, RW_X_LATCH); dict_stats_analyze_index(index); + index->table->stat_sum_of_other_index_sizes += index->stat_index_size; dict_table_stats_unlock(index->table, RW_X_LATCH); dict_stats_save(index->table, &index->id); DBUG_VOID_RETURN; diff -Nru mysql-5.7-5.7.25/storage/innobase/fil/fil0fil.cc mysql-5.7-5.7.26/storage/innobase/fil/fil0fil.cc --- mysql-5.7-5.7.25/storage/innobase/fil/fil0fil.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/storage/innobase/fil/fil0fil.cc 2019-04-13 13:32:15.000000000 +0000 @@ -1,6 +1,6 @@ /***************************************************************************** -Copyright (c) 1995, 2018, Oracle and/or its affiliates. All Rights Reserved. +Copyright (c) 1995, 2019, Oracle and/or its affiliates. All Rights Reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software @@ -5931,7 +5931,6 @@ size changes to keep OS metadata in sync. */ ut_ad(!space->is_in_unflushed_spaces); ut_ad(fil_space_is_flushed(space)); - ut_ad(space->n_pending_flushes == 0); /* Flush only if the file size changes */ bool no_flush = true; @@ -5941,7 +5940,6 @@ #ifdef UNIV_DEBUG ut_ad(node->modification_counter == node->flush_counter); - ut_ad(node->n_pending_flushes == 0); #endif /* UNIV_DEBUG */ if (node->flush_size != node->size) { /* Found at least one file whose size has changed */ diff -Nru mysql-5.7-5.7.25/storage/innobase/handler/ha_innodb.cc mysql-5.7-5.7.26/storage/innobase/handler/ha_innodb.cc --- mysql-5.7-5.7.25/storage/innobase/handler/ha_innodb.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/storage/innobase/handler/ha_innodb.cc 2019-04-13 13:32:15.000000000 +0000 @@ -1,6 +1,6 @@ /***************************************************************************** -Copyright (c) 2000, 2018, Oracle and/or its affiliates. All Rights Reserved. +Copyright (c) 2000, 2019, Oracle and/or its affiliates. All Rights Reserved. Copyright (c) 2008, 2009 Google Inc. Copyright (c) 2009, Percona Inc. Copyright (c) 2012, Facebook Inc. @@ -9850,8 +9850,7 @@ for (uint i= 0; i < field->table->s->fields; ++i) { const Field* base_field = field->table->field[i]; - if (!innobase_is_s_fld(base_field) - && !innobase_is_v_fld(base_field) + if (!innobase_is_v_fld(base_field) && bitmap_is_set(&field->gcol_info->base_columns_map, i)) { ulint z; @@ -12156,9 +12155,10 @@ dict_table_autoinc_unlock(innobase_table); } - dict_table_close(innobase_table, FALSE, FALSE); + innobase_parse_hint_from_comment(m_thd, innobase_table, m_form->s); + + dict_table_close(innobase_table, FALSE, FALSE); - innobase_parse_hint_from_comment(m_thd, innobase_table, m_form->s); DBUG_RETURN(0); } @@ -14355,7 +14355,7 @@ ut_a(m_prebuilt->trx); ut_a(m_prebuilt->trx->magic_n == TRX_MAGIC_N); - err_index = trx_get_error_info(m_prebuilt->trx); + err_index = trx_get_error_index(m_prebuilt->trx); if (err_index) { errkey = innobase_get_mysql_key_number_for_index( @@ -16890,7 +16890,7 @@ ut_a(m_prebuilt->trx != NULL); ut_a(m_prebuilt->trx->magic_n == TRX_MAGIC_N); - err_index = trx_get_error_info(m_prebuilt->trx); + err_index = trx_get_error_index(m_prebuilt->trx); if (err_index == NULL) { return(false); diff -Nru mysql-5.7-5.7.25/storage/innobase/handler/ha_innopart.cc mysql-5.7-5.7.26/storage/innobase/handler/ha_innopart.cc --- mysql-5.7-5.7.25/storage/innobase/handler/ha_innopart.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/storage/innobase/handler/ha_innopart.cc 2019-04-13 13:32:15.000000000 +0000 @@ -3938,7 +3938,7 @@ ut_a(m_prebuilt->trx); ut_a(m_prebuilt->trx->magic_n == TRX_MAGIC_N); - err_index = trx_get_error_info(m_prebuilt->trx); + err_index = trx_get_error_index(m_prebuilt->trx); if (err_index != NULL) { errkey = m_part_share->get_mysql_key(m_last_part, diff -Nru mysql-5.7-5.7.25/storage/innobase/handler/handler0alter.cc mysql-5.7-5.7.26/storage/innobase/handler/handler0alter.cc --- mysql-5.7-5.7.25/storage/innobase/handler/handler0alter.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/storage/innobase/handler/handler0alter.cc 2019-04-13 13:32:15.000000000 +0000 @@ -1,6 +1,6 @@ /***************************************************************************** -Copyright (c) 2005, 2018, Oracle and/or its affiliates. All Rights Reserved. +Copyright (c) 2005, 2019, Oracle and/or its affiliates. All Rights Reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software @@ -247,6 +247,26 @@ @return whether the table will be rebuilt */ bool need_rebuild () const { return(old_table != new_table); } + /** Set shared data between the passed in handler context + and current context. + @param[in] inplace_alter_handler_ctx handler context */ + void set_shared_data( + const inplace_alter_handler_ctx *ctx) + { + ut_ad(ctx != NULL); + if (this->add_autoinc == ULINT_UNDEFINED) { + return; + } + const ha_innobase_inplace_ctx* ha_ctx = + static_cast (ctx); + + /* In InnoDB table, if it's adding AUTOINC column, + the sequence value should be shared among contexts.*/ + ut_ad(ha_ctx->add_autoinc != ULINT_UNDEFINED); + this->sequence = ha_ctx->sequence; + + } + private: // Disable copying ha_innobase_inplace_ctx(const ha_innobase_inplace_ctx&); @@ -2542,6 +2562,75 @@ return(false); } +/** Search for a given column in each index that is not being dropped. Return true if the column is part of any of the active indexes or it is a system column. +@param[in] table table object +@param[in] col_no column number of the column which is to be checked +@param[in] is_v if this is a virtual column +@retval true the column exists or it is a system column +@retval false column does not exist */ +static +bool +check_col_exists_in_indexes( + const dict_table_t* table, + ulint col_no, + bool is_v) +{ + /* This function does not check system columns */ + if (!is_v && dict_table_get_nth_col(table, col_no)->mtype == DATA_SYS) { + return(true); + } + + for (dict_index_t* index = dict_table_get_first_index(table); index; + index = dict_table_get_next_index(index)) { + + if (index->to_be_dropped) { + continue; + } + + for (ulint i = 0; i < index->n_user_defined_cols; i++) { + const dict_col_t* idx_col + = dict_index_get_nth_col(index, i); + + if (is_v && dict_col_is_virtual(idx_col)) { + const dict_v_col_t* v_col = reinterpret_cast< + const dict_v_col_t*>(idx_col); + if (v_col->v_pos == col_no) { + return(true); + } + } + + if (!is_v && !dict_col_is_virtual(idx_col) + && dict_col_get_no(idx_col) == col_no) { + return(true); + } + } + } + + return(false); +} + +/** Reset dict_col_t::ord_part for those columns that fail to be indexed, +Check every existing column to see if any current index references them. +This should be checked after an index is dropped during ALTER TABLE. +@param[in,out] table InnoDB table to check */ +static +inline +void +reset_column_ord_part( + dict_table_t *table) { + for (ulint i = 0; i < dict_table_get_n_cols(table); i++) { + if (!check_col_exists_in_indexes(table, i, false)) { + table->cols[i].ord_part = 0; + } + } + + for (ulint i = 0; i < dict_table_get_n_v_cols(table); i++) { + if (!check_col_exists_in_indexes(table, i, true)) { + table->v_cols[i].m_col.ord_part = 0; + } + } +} + /********************************************************************//** Drop any indexes that we were not able to free previously due to open table handles. */ @@ -2564,6 +2653,7 @@ if (table->drop_aborted) { row_merge_drop_indexes(trx, table, TRUE); + reset_column_ord_part(table); } } @@ -4972,7 +5062,7 @@ error_handled: - ctx->prebuilt->trx->error_info = NULL; + ctx->prebuilt->trx->error_index = NULL; ctx->trx->error_state = DB_SUCCESS; if (!dict_locked) { @@ -5095,7 +5185,7 @@ ha_alter_info->index_add_count)) { /* Index cannot be dropped. */ - trx->error_info = index; + trx->error_index = index; return(true); } } @@ -5129,7 +5219,7 @@ ha_alter_info->index_add_count)) { /* Index cannot be dropped. */ - trx->error_info = index; + trx->error_index = index; return(true); } } @@ -5840,7 +5930,7 @@ m_prebuilt->trx, drop_fk, n_drop_fk)) { row_mysql_unlock_data_dictionary( m_prebuilt->trx); - m_prebuilt->trx->error_info = index; + m_prebuilt->trx->error_index = index; print_error(HA_ERR_DROP_INDEX_FK, MYF(0)); goto err_exit; @@ -6425,7 +6515,7 @@ /* prebuilt->table->n_ref_count can be anything here, given that we hold at most a shared lock on the table. */ - m_prebuilt->trx->error_info = NULL; + m_prebuilt->trx->error_index = NULL; ctx->trx->error_state = DB_SUCCESS; DBUG_RETURN(true); @@ -6459,56 +6549,6 @@ rw_lock_x_unlock(&clust_index->lock); } -/** For each user column, which is part of an index which is not going to be -dropped, it checks if the column number of the column is same as col_no -argument passed. -@param[in] table table object -@param[in] col_no column number of the column which is to be checked -@param[in] is_v if this is a virtual column -@retval true column exists -@retval false column does not exist, true if column is system column or -it is in the index. */ -static -bool -check_col_exists_in_indexes( - const dict_table_t* table, - ulint col_no, - bool is_v) -{ - /* This function does not check system columns */ - if (!is_v && dict_table_get_nth_col(table, col_no)->mtype == DATA_SYS) { - return(true); - } - - for (dict_index_t* index = dict_table_get_first_index(table); index; - index = dict_table_get_next_index(index)) { - - if (index->to_be_dropped) { - continue; - } - - for (ulint i = 0; i < index->n_user_defined_cols; i++) { - const dict_col_t* idx_col - = dict_index_get_nth_col(index, i); - - if (is_v && dict_col_is_virtual(idx_col)) { - const dict_v_col_t* v_col = reinterpret_cast< - const dict_v_col_t*>(idx_col); - if (v_col->v_pos == col_no) { - return(true); - } - } - - if (!is_v && !dict_col_is_virtual(idx_col) - && dict_col_get_no(idx_col) == col_no) { - return(true); - } - } - } - - return(false); -} - /** Rollback a secondary index creation, drop the indexes with temparary index prefix @param user_table InnoDB table @@ -6658,20 +6698,7 @@ } } - /* Reset dict_col_t::ord_part for those columns fail to be indexed, - we do this by checking every existing column, if any current - index would index them */ - for (ulint i = 0; i < dict_table_get_n_cols(prebuilt->table); i++) { - if (!check_col_exists_in_indexes(prebuilt->table, i, false)) { - prebuilt->table->cols[i].ord_part = 0; - } - } - - for (ulint i = 0; i < dict_table_get_n_v_cols(prebuilt->table); i++) { - if (!check_col_exists_in_indexes(prebuilt->table, i, true)) { - prebuilt->table->v_cols[i].m_col.ord_part = 0; - } - } + reset_column_ord_part(prebuilt->table); trx_commit_for_mysql(prebuilt->trx); MONITOR_ATOMIC_DEC(MONITOR_PENDING_ALTER_TABLE); @@ -7954,7 +7981,7 @@ col_set::const_iterator col_it; /* Check if the column, part of an index to be dropped is part of any - other index which is not being dropped. If it so, then set the ord_part + other index which is not being dropped. If not, then set the ord_part of the column to 0. */ get_col_list_to_be_dropped(ctx, drop_list, v_drop_list); @@ -9238,6 +9265,12 @@ m_prebuilt = ctx_parts->prebuilt_array[i]; ha_alter_info->handler_ctx = ctx_parts->ctx_array[i]; set_partition(i); + + if (i != 0 && ha_alter_info->handler_ctx != NULL) { + ha_alter_info->handler_ctx->set_shared_data( + ctx_parts->ctx_array[i - 1]); + } + res = ha_innobase::inplace_alter_table(altered_table, ha_alter_info); ut_ad(ctx_parts->ctx_array[i] == ha_alter_info->handler_ctx); diff -Nru mysql-5.7-5.7.25/storage/innobase/include/handler0alter.h mysql-5.7-5.7.26/storage/innobase/include/handler0alter.h --- mysql-5.7-5.7.25/storage/innobase/include/handler0alter.h 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/storage/innobase/include/handler0alter.h 2019-04-13 13:32:15.000000000 +0000 @@ -1,6 +1,6 @@ /***************************************************************************** -Copyright (c) 2005, 2016, Oracle and/or its affiliates. All Rights Reserved. +Copyright (c) 2005, 2019, Oracle and/or its affiliates. All Rights Reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software @@ -62,7 +62,9 @@ MY_ATTRIBUTE((nonnull)); /** Generate the next autoinc based on a snapshot of the session -auto_increment_increment and auto_increment_offset variables. */ +auto_increment_increment and auto_increment_offset variables. +Assingnment operator would be used during the inplace_alter_table() +phase only **/ struct ib_sequence_t { /** @@ -82,7 +84,19 @@ return(m_eof); } - /** + /** assignment operator to copy the sequence values + @param in sequence to copy from */ + ib_sequence_t &operator=(const ib_sequence_t &in) { + ut_ad(in.m_next_value > 0); + ut_ad(in.m_max_value == m_max_value); + m_next_value = in.m_next_value; + m_increment = in.m_increment; + m_offset = in.m_offset; + m_eof = in.m_eof; + return (*this); + }; + + /** @return the next value in the sequence */ ulonglong last() const UNIV_NOTHROW { diff -Nru mysql-5.7-5.7.25/storage/innobase/include/lock0lock.h mysql-5.7-5.7.26/storage/innobase/include/lock0lock.h --- mysql-5.7-5.7.25/storage/innobase/include/lock0lock.h 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/storage/innobase/include/lock0lock.h 2019-04-13 13:32:15.000000000 +0000 @@ -1,6 +1,6 @@ /***************************************************************************** -Copyright (c) 1996, 2017, Oracle and/or its affiliates. All Rights Reserved. +Copyright (c) 1996, 2018, Oracle and/or its affiliates. All Rights Reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software @@ -1040,6 +1040,20 @@ is running */ }; +/*********************************************************************//** +This function is kind of wrapper to lock_rec_convert_impl_to_expl_for_trx() +function with functionailty added to facilitate lock conversion from implicit +to explicit for partial rollback cases */ +void +lock_rec_convert_active_impl_to_expl( +/*==================================*/ + const buf_block_t* block, /*!< in: buffer block of rec */ + const rec_t* rec, /*!< in: user record on page */ + dict_index_t* index, /*!< in: index of record */ + const ulint* offsets,/*!< in: rec_get_offsets(rec, index) */ + trx_t* trx, /*!< in/out: active transaction */ + ulint heap_no);/*!< in: rec heap number to lock */ + /*************************************************************//** Removes a record lock request, waiting or granted, from the queue. */ void diff -Nru mysql-5.7-5.7.25/storage/innobase/include/row0ins.h mysql-5.7-5.7.26/storage/innobase/include/row0ins.h --- mysql-5.7-5.7.25/storage/innobase/include/row0ins.h 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/storage/innobase/include/row0ins.h 2019-04-13 13:32:15.000000000 +0000 @@ -1,6 +1,6 @@ /***************************************************************************** -Copyright (c) 1996, 2016, Oracle and/or its affiliates. All Rights Reserved. +Copyright (c) 1996, 2018, Oracle and/or its affiliates. All Rights Reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software @@ -231,10 +231,6 @@ entry_list and sys fields are stored here; if this is NULL, entry list should be created and buffers for sys fields in row allocated */ - dict_index_t* duplicate; - /* This is the first index that reported - DB_DUPLICATE_KEY. Used in the case of REPLACE - or INSERT ... ON DUPLICATE UPDATE. */ ulint magic_n; }; diff -Nru mysql-5.7-5.7.25/storage/innobase/include/row0undo.h mysql-5.7-5.7.26/storage/innobase/include/row0undo.h --- mysql-5.7-5.7.25/storage/innobase/include/row0undo.h 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/storage/innobase/include/row0undo.h 2019-04-13 13:32:15.000000000 +0000 @@ -1,6 +1,6 @@ /***************************************************************************** -Copyright (c) 1997, 2016, Oracle and/or its affiliates. All Rights Reserved. +Copyright (c) 1997, 2018, Oracle and/or its affiliates. All Rights Reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software @@ -36,6 +36,16 @@ #include "que0types.h" #include "row0types.h" + +/***************************************************************//** +Converts an implict lock on the record to explict in case of partial +rollback.*/ +void +row_convert_impl_to_expl_if_needed( +/*===============================*/ + btr_cur_t* cursor, /*!< in: cursor to record */ + undo_node_t* node); /*!< in: undo node */ + /********************************************************************//** Creates a row undo node to a query graph. @return own: undo node */ @@ -44,7 +54,8 @@ /*=================*/ trx_t* trx, /*!< in: transaction */ que_thr_t* parent, /*!< in: parent node, i.e., a thr node */ - mem_heap_t* heap); /*!< in: memory heap where created */ + mem_heap_t* heap, /*!< in: memory heap where created */ + bool partial_rollback); /*!< in: true if partial rollback */ /***********************************************************//** Looks for the clustered index record when node has the row reference. The pcur in node is used in the search. If found, stores the row to node, @@ -123,6 +134,7 @@ mem_heap_t* heap; /*!< memory heap used as auxiliary storage for row; this must be emptied after undo is tried on a row */ + bool partial;/*!< true if partial rollback */ }; diff -Nru mysql-5.7-5.7.25/storage/innobase/include/trx0trx.h mysql-5.7-5.7.26/storage/innobase/include/trx0trx.h --- mysql-5.7-5.7.25/storage/innobase/include/trx0trx.h 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/storage/innobase/include/trx0trx.h 2019-04-13 13:32:15.000000000 +0000 @@ -1,6 +1,6 @@ /***************************************************************************** -Copyright (c) 1996, 2017, Oracle and/or its affiliates. All Rights Reserved. +Copyright (c) 1996, 2018, Oracle and/or its affiliates. All Rights Reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software @@ -89,11 +89,11 @@ trx_t* trx, /*!< in: transaction struct */ FILE* file); /*!< in: file to read message from */ /****************************************************************//** -Retrieves the error_info field from a trx. +Retrieves the index causing the error from a trx. @return the error info */ UNIV_INLINE const dict_index_t* -trx_get_error_info( +trx_get_error_index( /*===============*/ const trx_t* trx); /*!< in: trx object */ /********************************************************************//** @@ -1141,7 +1141,7 @@ doing the transaction is allowed to set this field: this is NOT protected by any mutex */ - const dict_index_t*error_info; /*!< if the error number indicates a + const dict_index_t*error_index; /*!< if the error number indicates a duplicate key error, a pointer to the problematic index is stored here */ ulint error_key_num; /*!< if the index creation fails to a diff -Nru mysql-5.7-5.7.25/storage/innobase/include/trx0trx.ic mysql-5.7-5.7.26/storage/innobase/include/trx0trx.ic --- mysql-5.7-5.7.25/storage/innobase/include/trx0trx.ic 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/storage/innobase/include/trx0trx.ic 2019-04-13 13:32:15.000000000 +0000 @@ -1,6 +1,6 @@ /***************************************************************************** -Copyright (c) 1996, 2015, Oracle and/or its affiliates. All Rights Reserved. +Copyright (c) 1996, 2018, Oracle and/or its affiliates. All Rights Reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software @@ -72,15 +72,15 @@ } /****************************************************************//** -Retrieves the error_info field from a trx. +Retrieves the index causing the error from a trx. @return the error info */ UNIV_INLINE const dict_index_t* -trx_get_error_info( +trx_get_error_index( /*===============*/ const trx_t* trx) /*!< in: trx object */ { - return(trx->error_info); + return(trx->error_index); } /*******************************************************************//** diff -Nru mysql-5.7-5.7.25/storage/innobase/lock/lock0lock.cc mysql-5.7-5.7.26/storage/innobase/lock/lock0lock.cc --- mysql-5.7-5.7.25/storage/innobase/lock/lock0lock.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/storage/innobase/lock/lock0lock.cc 2019-04-13 13:32:15.000000000 +0000 @@ -6115,6 +6115,19 @@ } } +void +lock_rec_convert_active_impl_to_expl( + const buf_block_t* block, /*!< in: buffer block of rec */ + const rec_t* rec, /*!< in: user record on page */ + dict_index_t* index, /*!< in: index of record */ + const ulint* offsets,/*!< in: rec_get_offsets(rec, index) */ + trx_t* trx, /*!< in/out: active transaction */ + ulint heap_no)/*!< in: rec heap number to lock */ +{ + trx_reference(trx, true); + lock_rec_convert_impl_to_expl_for_trx(block, rec, index, offsets, + trx, heap_no); +} /*********************************************************************//** Checks if locks of other transactions prevent an immediate modify (update, delete mark, or delete unmark) of a clustered index record. If they do, diff -Nru mysql-5.7-5.7.25/storage/innobase/os/os0file.cc mysql-5.7-5.7.26/storage/innobase/os/os0file.cc --- mysql-5.7-5.7.25/storage/innobase/os/os0file.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/storage/innobase/os/os0file.cc 2019-04-13 13:32:15.000000000 +0000 @@ -2543,10 +2543,24 @@ will be done in the calling function. */ m_array->acquire(); - slot->ret = events[i].res2; + /* events[i].res2 should always be ZERO */ + ut_ad(events[i].res2 == 0); slot->io_already_done = true; - slot->n_bytes = events[i].res; + /*Even though events[i].res is an unsigned number + in libaio, it is used to return a negative value + (negated errno value) to indicate error and a positive + value to indicate number of bytes read or written. */ + + if (events[i].res > slot->len) { + /* failure */ + slot->n_bytes = 0; + slot->ret = events[i].res; + } else { + /* success */ + slot->n_bytes = events[i].res; + slot->ret = 0; + } m_array->release(); } diff -Nru mysql-5.7-5.7.25/storage/innobase/que/que0que.cc mysql-5.7-5.7.26/storage/innobase/que/que0que.cc --- mysql-5.7-5.7.25/storage/innobase/que/que0que.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/storage/innobase/que/que0que.cc 2019-04-13 13:32:15.000000000 +0000 @@ -1,6 +1,6 @@ /***************************************************************************** -Copyright (c) 1996, 2017, Oracle and/or its affiliates. All Rights Reserved. +Copyright (c) 1996, 2018, Oracle and/or its affiliates. All Rights Reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software @@ -693,10 +693,6 @@ trx->lock.wait_thr = thr; thr->state = QUE_THR_LOCK_WAIT; - } else if (trx->duplicates && trx->error_state == DB_DUPLICATE_KEY) { - - return(FALSE); - } else if (trx->error_state != DB_SUCCESS && trx->error_state != DB_LOCK_WAIT) { diff -Nru mysql-5.7-5.7.25/storage/innobase/row/row0import.cc mysql-5.7-5.7.26/storage/innobase/row/row0import.cc --- mysql-5.7-5.7.25/storage/innobase/row/row0import.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/storage/innobase/row/row0import.cc 2019-04-13 13:32:15.000000000 +0000 @@ -2123,7 +2123,7 @@ ut_a(err != DB_SUCCESS); - prebuilt->trx->error_info = NULL; + prebuilt->trx->error_index = NULL; ib::info() << "Discarding tablespace of table " << prebuilt->table->name diff -Nru mysql-5.7-5.7.25/storage/innobase/row/row0ins.cc mysql-5.7-5.7.26/storage/innobase/row/row0ins.cc --- mysql-5.7-5.7.25/storage/innobase/row/row0ins.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/storage/innobase/row/row0ins.cc 2019-04-13 13:32:15.000000000 +0000 @@ -92,7 +92,6 @@ node->select = NULL; node->trx_id = 0; - node->duplicate = NULL; node->entry_sys_heap = mem_heap_create(128); @@ -205,7 +204,6 @@ node->state = INS_NODE_SET_IX_LOCK; node->index = NULL; node->entry = NULL; - node->duplicate = NULL; node->row = row; @@ -2143,7 +2141,7 @@ index, offsets)) { err = DB_DUPLICATE_KEY; - thr_get_trx(thr)->error_info = index; + thr_get_trx(thr)->error_index = index; /* If the duplicate is on hidden FTS_DOC_ID, state so in the error log */ @@ -2305,12 +2303,6 @@ offsets = rec_get_offsets(rec, cursor->index, offsets, ULINT_UNDEFINED, &heap); - ulint lock_type; - - lock_type = - trx->isolation_level <= TRX_ISO_READ_COMMITTED - ? LOCK_REC_NOT_GAP : LOCK_ORDINARY; - /* We set a lock on the possible duplicate: this is needed in logical logging of MySQL to make sure that in roll-forward we get the same duplicate @@ -2327,13 +2319,13 @@ INSERT ON DUPLICATE KEY UPDATE). */ err = row_ins_set_exclusive_rec_lock( - lock_type, + LOCK_REC_NOT_GAP, btr_cur_get_block(cursor), rec, cursor->index, offsets, thr); } else { err = row_ins_set_shared_rec_lock( - lock_type, + LOCK_REC_NOT_GAP, btr_cur_get_block(cursor), rec, cursor->index, offsets, thr); } @@ -2349,7 +2341,7 @@ if (row_ins_dupl_error_with_rec( rec, entry, cursor->index, offsets)) { duplicate: - trx->error_info = cursor->index; + trx->error_index = cursor->index; err = DB_DUPLICATE_KEY; goto func_exit; } @@ -2553,7 +2545,7 @@ /* fall through */ case DB_SUCCESS_LOCKED_REC: case DB_DUPLICATE_KEY: - thr_get_trx(thr)->error_info = cursor->index; + thr_get_trx(thr)->error_index = cursor->index; } } else { /* Note that the following may return also @@ -3096,44 +3088,6 @@ } } - if (!(flags & BTR_NO_LOCKING_FLAG) - && dict_index_is_unique(index) - && thr_get_trx(thr)->duplicates - && thr_get_trx(thr)->isolation_level >= TRX_ISO_REPEATABLE_READ) { - - /* When using the REPLACE statement or ON DUPLICATE clause, a - gap lock is taken on the position of the to-be-inserted record, - to avoid other concurrent transactions from inserting the same - record. */ - - dberr_t err; - const rec_t* rec = page_rec_get_next_const( - btr_cur_get_rec(&cursor)); - - ut_ad(!page_rec_is_infimum(rec)); - - offsets = rec_get_offsets(rec, index, offsets, - ULINT_UNDEFINED, &offsets_heap); - - err = row_ins_set_exclusive_rec_lock( - LOCK_GAP, btr_cur_get_block(&cursor), rec, - index, offsets, thr); - - switch (err) { - case DB_SUCCESS: - case DB_SUCCESS_LOCKED_REC: - if (thr_get_trx(thr)->error_state != DB_DUPLICATE_KEY) { - break; - } - /* Fall through (skip actual insert) after we have - successfully acquired the gap lock. */ - default: - goto func_exit; - } - } - - ut_ad(thr_get_trx(thr)->error_state == DB_SUCCESS); - if (dup_chk_only) { goto func_exit; } @@ -3737,10 +3691,6 @@ DBUG_PRINT("row_ins", ("table: %s", node->table->name.m_name)); - if (node->duplicate) { - thr_get_trx(thr)->error_state = DB_DUPLICATE_KEY; - } - if (node->state == INS_NODE_ALLOC_ROW_ID) { row_ins_alloc_row_id_step(node); @@ -3765,53 +3715,20 @@ while (node->index != NULL) { if (node->index->type != DICT_FTS) { err = row_ins_index_entry_step(node, thr); - - switch (err) { + switch(err) { case DB_SUCCESS: break; case DB_DUPLICATE_KEY: - ut_ad(dict_index_is_unique(node->index)); - - if (thr_get_trx(thr)->isolation_level - >= TRX_ISO_REPEATABLE_READ - && thr_get_trx(thr)->duplicates) { - - /* When we are in REPLACE statement or - INSERT .. ON DUPLICATE UPDATE - statement, we process all the - unique secondary indexes, even after we - encounter a duplicate error. This is - done to take necessary gap locks in - secondary indexes to block concurrent - transactions from inserting the - searched records. */ - if (!node->duplicate) { - /* Save 1st dup error. Ignore - subsequent dup errors. */ - node->duplicate = node->index; - thr_get_trx(thr)->error_state - = DB_DUPLICATE_KEY; - } - break; - } - // fall through + thr_get_trx(thr)->error_state + = DB_DUPLICATE_KEY; + thr_get_trx(thr)->error_index + = node->index; + //fall through default: DBUG_RETURN(err); } } - if (node->duplicate && dict_table_is_temporary(node->table)) { - ut_ad(thr_get_trx(thr)->error_state - == DB_DUPLICATE_KEY); - /* For TEMPORARY TABLE, we won't lock anything, - so we can simply break here instead of requiring - GAP locks for other unique secondary indexes, - pretending we have consumed all indexes. */ - node->index = NULL; - node->entry = NULL; - break; - } - node->index = dict_table_get_next_index(node->index); node->entry = UT_LIST_GET_NEXT(tuple_list, node->entry); @@ -3826,29 +3743,13 @@ node->entry = UT_LIST_GET_NEXT(tuple_list, node->entry); } - /* After encountering a duplicate key error, we process - remaining indexes just to place gap locks and no actual - insertion will take place. These gap locks are needed - only for unique indexes. So skipping non-unique indexes. */ - if (node->duplicate) { - while (node->index - && !dict_index_is_unique(node->index)) { - - node->index = dict_table_get_next_index( - node->index); - node->entry = UT_LIST_GET_NEXT(tuple_list, - node->entry); - } - thr_get_trx(thr)->error_state = DB_DUPLICATE_KEY; - } } ut_ad(node->entry == NULL); - - thr_get_trx(thr)->error_info = node->duplicate; + thr_get_trx(thr)->error_index = NULL; node->state = INS_NODE_ALLOC_ROW_ID; - DBUG_RETURN(node->duplicate ? DB_DUPLICATE_KEY : DB_SUCCESS); + DBUG_RETURN(DB_SUCCESS); } /***********************************************************//** diff -Nru mysql-5.7-5.7.25/storage/innobase/row/row0mysql.cc mysql-5.7-5.7.26/storage/innobase/row/row0mysql.cc --- mysql-5.7-5.7.25/storage/innobase/row/row0mysql.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/storage/innobase/row/row0mysql.cc 2019-04-13 13:32:15.000000000 +0000 @@ -1,6 +1,6 @@ /***************************************************************************** -Copyright (c) 2000, 2018, Oracle and/or its affiliates. All Rights Reserved. +Copyright (c) 2000, 2019, Oracle and/or its affiliates. All Rights Reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software @@ -1759,7 +1759,6 @@ goto run_again; } - node->duplicate = NULL; trx->op_info = ""; if (blob_heap != NULL) { @@ -1769,7 +1768,6 @@ return(err); } - node->duplicate = NULL; if (dict_table_has_fts_index(table)) { doc_id_t doc_id; @@ -2078,6 +2076,63 @@ } }; +/** Do an in-place update in the intrinsic table. The update should not +modify any of the keys and it should not change the size of any fields. +@param[in] node the update node. +@return DB_SUCCESS on success, an error code on failure. */ +static +dberr_t +row_update_inplace_for_intrinsic(const upd_node_t* node) +{ + mtr_t mtr; + dict_table_t* table = node->table; + mem_heap_t* heap = node->heap; + dtuple_t* entry = node->row; + ulint offsets_[REC_OFFS_NORMAL_SIZE]; + ulint* offsets = offsets_; + + ut_ad(dict_table_is_intrinsic(table)); + + rec_offs_init(offsets_); + mtr_start(&mtr); + mtr_set_log_mode(&mtr, MTR_LOG_NO_REDO); + + btr_pcur_t pcur; + + dict_index_t* index = dict_table_get_first_index(table); + + entry = row_build_index_entry(node->row, node->ext, + index, heap); + + btr_pcur_open(index, entry, PAGE_CUR_LE, + BTR_MODIFY_LEAF, &pcur, &mtr); + + rec_t* rec = btr_pcur_get_rec(&pcur); + + ut_ad(!page_rec_is_infimum(rec)); + ut_ad(!page_rec_is_supremum(rec)); + + offsets = rec_get_offsets(rec, index, offsets, ULINT_UNDEFINED, &heap); + + ut_ad(!cmp_dtuple_rec(entry, rec, offsets)); + + ut_ad(!rec_get_deleted_flag(rec, dict_table_is_comp(index->table))); + + ut_ad(btr_pcur_get_block(&pcur)->made_dirty_with_no_latch); + + bool size_changes = row_upd_changes_field_size_or_external( + index, offsets, node->update); + + if (size_changes) { + return(DB_FAIL); + } + + row_upd_rec_in_place(rec, index, offsets, node->update, NULL); + + mtr_commit(&mtr); + + return(DB_SUCCESS); +} typedef std::vector > cursors_t; @@ -2099,7 +2154,7 @@ { mtr_t mtr; dict_table_t* table = node->table; - mem_heap_t* heap = mem_heap_create(1000); + mem_heap_t* heap = node->heap; dberr_t err = DB_SUCCESS; dtuple_t* entry; @@ -2110,8 +2165,8 @@ index != NULL && err == DB_SUCCESS && !restore_delete; index = UT_LIST_GET_NEXT(indexes, index)) { - entry = row_build_index_entry( - node->row, node->ext, index, heap); + entry = row_build_index_entry(node->row, node->ext, + index, heap); btr_pcur_t pcur; @@ -2207,8 +2262,6 @@ mtr_commit(&mtr); - mem_heap_free(heap); - return(err); } @@ -2226,7 +2279,7 @@ { dberr_t err = DB_SUCCESS; dict_table_t* table = node->table; - mem_heap_t* heap = mem_heap_create(1000); + mem_heap_t* heap = node->heap; dtuple_t* entry; dfield_t* trx_id_field; @@ -2260,6 +2313,7 @@ entry = row_build_index_entry( node->upd_row, node->upd_ext, index, heap); + if (dict_index_is_clust(index)) { if (!dict_index_is_auto_gen_clust(index)) { err = row_ins_clust_index_entry( @@ -2288,6 +2342,7 @@ node->upd_row, node->upd_ext, index, heap); if (dict_index_is_clust(index)) { + err = row_ins_clust_index_entry( index, entry, thr, node->upd_ext ? node->upd_ext->n_ext : 0, @@ -2312,9 +2367,6 @@ } } - if (heap != NULL) { - mem_heap_free(heap); - } return(err); } @@ -2360,6 +2412,33 @@ should not be any virtual columns. */ row_upd_store_row(node, NULL, NULL); + if (!node->is_delete) { + /* UPDATE operation */ + bool key_changed = false; + dict_table_t* table = prebuilt->table; + + for (dict_index_t* index = UT_LIST_GET_FIRST(table->indexes); + index != NULL; + index = UT_LIST_GET_NEXT(indexes, index)) { + + key_changed = row_upd_changes_ord_field_binary( + index, node->update, thr, node->upd_row, + node->upd_ext); + + if (key_changed) { + break; + } + } + + if (!key_changed) { + err = row_update_inplace_for_intrinsic(node); + + if (err == DB_SUCCESS) { + return(err); + } + } + } + /* Step-2: Execute DELETE operation. */ err = row_delete_for_mysql_using_cursor(node, delete_entries, false); diff -Nru mysql-5.7-5.7.25/storage/innobase/row/row0uins.cc mysql-5.7-5.7.26/storage/innobase/row/row0uins.cc --- mysql-5.7-5.7.25/storage/innobase/row/row0uins.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/storage/innobase/row/row0uins.cc 2019-04-13 13:32:15.000000000 +0000 @@ -47,7 +47,6 @@ #include "ibuf0ibuf.h" #include "log0log.h" #include "fil0fil.h" - /************************************************************************* IMPORTANT NOTE: Any operation that generates redo MUST check that there is enough space in the redo log before for that operation. This is @@ -137,6 +136,8 @@ ut_a(success); } + row_convert_impl_to_expl_if_needed(btr_cur, node); + if (btr_cur_optimistic_delete(btr_cur, 0, &mtr)) { err = DB_SUCCESS; goto func_exit; @@ -190,7 +191,8 @@ pessimistic descent down the index tree */ dict_index_t* index, /*!< in: index */ dtuple_t* entry, /*!< in: index entry to remove */ - que_thr_t* thr) /*!< in: query thread */ + que_thr_t* thr, /*!< in: query thread */ + undo_node_t* node) /*!< in: undo node */ { btr_pcur_t pcur; btr_cur_t* btr_cur; @@ -254,6 +256,8 @@ btr_cur = btr_pcur_get_btr_cur(&pcur); + row_convert_impl_to_expl_if_needed(btr_cur, node); + if (modify_leaf) { err = btr_cur_optimistic_delete(btr_cur, 0, &mtr) ? DB_SUCCESS : DB_FAIL; @@ -284,14 +288,15 @@ /*====================*/ dict_index_t* index, /*!< in: index */ dtuple_t* entry, /*!< in: index entry to insert */ - que_thr_t* thr) /*!< in: query thread */ + que_thr_t* thr, /*!< in: query thread */ + undo_node_t* node) { dberr_t err; ulint n_tries = 0; /* Try first optimistic descent to the B-tree */ - err = row_undo_ins_remove_sec_low(BTR_MODIFY_LEAF, index, entry, thr); + err = row_undo_ins_remove_sec_low(BTR_MODIFY_LEAF, index, entry, thr, node); if (err == DB_SUCCESS) { @@ -302,7 +307,7 @@ retry: err = row_undo_ins_remove_sec_low( BTR_MODIFY_TREE | BTR_LATCH_FOR_DELETE, - index, entry, thr); + index, entry, thr, node); /* The delete operation may fail if we have little file space left: TODO: easiest to crash the database @@ -425,7 +430,7 @@ assume that the secondary index record does not exist. */ } else { - err = row_undo_ins_remove_sec(index, entry, thr); + err = row_undo_ins_remove_sec(index, entry, thr, node); if (UNIV_UNLIKELY(err != DB_SUCCESS)) { goto func_exit; diff -Nru mysql-5.7-5.7.25/storage/innobase/row/row0umod.cc mysql-5.7-5.7.26/storage/innobase/row/row0umod.cc --- mysql-5.7-5.7.25/storage/innobase/row/row0umod.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/storage/innobase/row/row0umod.cc 2019-04-13 13:32:15.000000000 +0000 @@ -1,6 +1,6 @@ /***************************************************************************** -Copyright (c) 1997, 2017, Oracle and/or its affiliates. All Rights Reserved. +Copyright (c) 1997, 2018, Oracle and/or its affiliates. All Rights Reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software @@ -218,6 +218,7 @@ than the rolling-back one. */ ut_ad(rec_get_deleted_flag(btr_cur_get_rec(btr_cur), dict_table_is_comp(node->table))); + row_convert_impl_to_expl_if_needed(btr_cur, node); if (mode == BTR_MODIFY_LEAF) { err = btr_cur_optimistic_delete(btr_cur, 0, mtr) @@ -502,7 +503,6 @@ ut_ad(err == DB_SUCCESS); } else { /* Remove the index record */ - if (dict_index_is_spatial(index)) { rec_t* rec = btr_pcur_get_rec(&pcur); if (rec_get_deleted_flag(rec, @@ -513,6 +513,8 @@ } } + row_convert_impl_to_expl_if_needed(btr_cur, node); + if (modify_leaf) { success = btr_cur_optimistic_delete(btr_cur, 0, &mtr); if (success) { diff -Nru mysql-5.7-5.7.25/storage/innobase/row/row0undo.cc mysql-5.7-5.7.26/storage/innobase/row/row0undo.cc --- mysql-5.7-5.7.25/storage/innobase/row/row0undo.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/storage/innobase/row/row0undo.cc 2019-04-13 13:32:15.000000000 +0000 @@ -1,6 +1,6 @@ /***************************************************************************** -Copyright (c) 1997, 2016, Oracle and/or its affiliates. All Rights Reserved. +Copyright (c) 1997, 2018, Oracle and/or its affiliates. All Rights Reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software @@ -130,7 +130,8 @@ /*=================*/ trx_t* trx, /*!< in/out: transaction */ que_thr_t* parent, /*!< in: parent node, i.e., a thr node */ - mem_heap_t* heap) /*!< in: memory heap where created */ + mem_heap_t* heap, /*!< in: memory heap where created */ + bool partial_rollback) /*!< in: true if partial rollback */ { undo_node_t* undo; @@ -147,6 +148,8 @@ undo->state = UNDO_NODE_FETCH_NEXT; undo->trx = trx; + undo->partial = partial_rollback; + btr_pcur_init(&(undo->pcur)); undo->heap = mem_heap_create(256); @@ -344,6 +347,44 @@ return(err); } +void +row_convert_impl_to_expl_if_needed( +/*===============================*/ + btr_cur_t* cursor, /*!< in: cursor to record */ + undo_node_t* node) /*!< in: undo node */ +{ + ulint* offsets = NULL; + + /* In case of partial rollback implicit lock on the + record is released in the middle of transaction, which + can break the serializability of IODKU and REPLACE + statements. Normal rollback is not affected by this + becasue we release the locks after the rollback. So + to prevent any other transaction modifying the record + in between the partial rollback we convert the implicit + lock on the record to explict. When the record is actually + deleted this lock be inherited by the next record. */ + + if (!node->partial + || (node->trx == NULL) + || node->trx->isolation_level < TRX_ISO_REPEATABLE_READ){ + return; + } + + ut_ad(node->trx->in_rollback); + dict_index_t* index = btr_cur_get_index(cursor); + rec_t* rec = btr_cur_get_rec(cursor); + buf_block_t* block = btr_cur_get_block(cursor); + ulint heap_no = page_rec_get_heap_no(rec); + + if (heap_no != PAGE_HEAP_NO_SUPREMUM + && !dict_table_is_intrinsic(index->table) + && !dict_index_is_spatial(index)) { + lock_rec_convert_active_impl_to_expl(block, rec, index, + offsets,node->trx,heap_no); + } +} + /***********************************************************//** Undoes a row operation in a table. This is a high-level function used in SQL execution graphs. diff -Nru mysql-5.7-5.7.25/storage/innobase/trx/trx0roll.cc mysql-5.7-5.7.26/storage/innobase/trx/trx0roll.cc --- mysql-5.7-5.7.25/storage/innobase/trx/trx0roll.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/storage/innobase/trx/trx0roll.cc 2019-04-13 13:32:15.000000000 +0000 @@ -1,6 +1,6 @@ /***************************************************************************** -Copyright (c) 1996, 2017, Oracle and/or its affiliates. All Rights Reserved. +Copyright (c) 1996, 2018, Oracle and/or its affiliates. All Rights Reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software @@ -1087,7 +1087,8 @@ que_t* trx_roll_graph_build( /*=================*/ - trx_t* trx) /*!< in/out: transaction */ + trx_t* trx, /*!< in/out: transaction */ + bool partial_rollback) /*!< in: partial rollback */ { mem_heap_t* heap; que_fork_t* fork; @@ -1101,7 +1102,7 @@ thr = que_thr_create(fork, heap, NULL); - thr->child = row_undo_node_create(trx, thr, heap); + thr->child = row_undo_node_create(trx, thr, heap, partial_rollback); return(fork); } @@ -1115,9 +1116,10 @@ trx_rollback_start( /*===============*/ trx_t* trx, /*!< in: transaction */ - ib_id_t roll_limit) /*!< in: rollback to undo no (for + ib_id_t roll_limit, /*!< in: rollback to undo no (for partial undo), 0 if we are rolling back the entire transaction */ + bool partial_rollback) /*!< in: partial rollback */ { ut_ad(trx_mutex_own(trx)); @@ -1135,7 +1137,7 @@ /* Build a 'query' graph which will perform the undo operations */ - que_t* roll_graph = trx_roll_graph_build(trx); + que_t* roll_graph = trx_roll_graph_build(trx, partial_rollback); trx->graph = roll_graph; @@ -1212,7 +1214,9 @@ trx_commit_or_rollback_prepare(trx); - node->undo_thr = trx_rollback_start(trx, roll_limit); + node->undo_thr = trx_rollback_start(trx, + roll_limit, + node->partial); trx_mutex_exit(trx); diff -Nru mysql-5.7-5.7.25/storage/innobase/trx/trx0trx.cc mysql-5.7-5.7.26/storage/innobase/trx/trx0trx.cc --- mysql-5.7-5.7.25/storage/innobase/trx/trx0trx.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/storage/innobase/trx/trx0trx.cc 2019-04-13 13:32:15.000000000 +0000 @@ -184,6 +184,7 @@ trx->lock.rec_cached = 0; trx->lock.table_cached = 0; + trx->error_index = NULL; /* During asynchronous rollback, we should reset forced rollback flag only after rollback is complete to avoid race with the thread owning diff -Nru mysql-5.7-5.7.25/storage/myisam/CMakeLists.txt mysql-5.7-5.7.26/storage/myisam/CMakeLists.txt --- mysql-5.7-5.7.25/storage/myisam/CMakeLists.txt 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/storage/myisam/CMakeLists.txt 2019-04-13 13:32:15.000000000 +0000 @@ -14,6 +14,8 @@ # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +INCLUDE(${MYSQL_CMAKE_SCRIPT_DIR}/compile_flags.cmake) + SET(MYISAM_SOURCES ft_boolean_search.c ft_nlq_search.c ft_parser.c ft_static.c ha_myisam.cc ft_stopwords.c ft_update.c mi_cache.c mi_changed.c mi_check.c diff -Nru mysql-5.7-5.7.25/storage/perfschema/pfs_host.cc mysql-5.7-5.7.26/storage/perfschema/pfs_host.cc --- mysql-5.7-5.7.25/storage/perfschema/pfs_host.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/storage/perfschema/pfs_host.cc 2019-04-13 13:32:15.000000000 +0000 @@ -1,4 +1,4 @@ -/* Copyright (c) 2010, 2015, Oracle and/or its affiliates. All rights reserved. +/* Copyright (c) 2010, 2018, Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -274,11 +274,7 @@ void PFS_host::aggregate_status() { - /* - Aggregate STATUS_BY_HOST to: - - GLOBAL_STATUS - */ - m_status_stats.aggregate_to(& global_status_var); + /* No parent to aggregate to, clean the stats */ m_status_stats.reset(); } diff -Nru mysql-5.7-5.7.25/storage/perfschema/pfs_variable.cc mysql-5.7-5.7.26/storage/perfschema/pfs_variable.cc --- mysql-5.7-5.7.25/storage/perfschema/pfs_variable.cc 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/storage/perfschema/pfs_variable.cc 2019-04-13 13:32:15.000000000 +0000 @@ -1306,8 +1306,6 @@ reset_status_by_account(); reset_status_by_user(); reset_status_by_host(); - /* Clear again, updated by previous aggregations. */ - reset_global_status(); } /** @} */ diff -Nru mysql-5.7-5.7.25/support-files/MacOSX/ReadMe.html mysql-5.7-5.7.26/support-files/MacOSX/ReadMe.html --- mysql-5.7-5.7.25/support-files/MacOSX/ReadMe.html 2018-12-21 10:52:19.000000000 +0000 +++ mysql-5.7-5.7.26/support-files/MacOSX/ReadMe.html 2019-04-13 13:46:47.000000000 +0000 @@ -1,4 +1,4 @@ -2.4 Installing MySQL on macOS

2.4 Installing MySQL on macOS

+2.4 Installing MySQL on macOS

2.4 Installing MySQL on macOS

For a list of macOS versions that the MySQL server supports, see https://www.mysql.com/support/supportedplatforms/database.html.

@@ -30,6 +30,18 @@

2.4.1 General Notes on Installing MySQL on macOS

You should keep the following issues and notes in mind:

  • + As of macOS 10.14 (Majave), the macOS MySQL 5.7 Installer + application requires permission to control System + Events so it can display a generated (temporary) + MySQL root password. Choosing "Don't Allow" means this + password won't be visible for use. +

    + If previously disallowed, the fix is enabling System + Events.app for Installer.app + under the Security & Privacy | + Automation | Privacy + tab. +

  • A launchd daemon is installed, and it includes MySQL configuration options. Consider editing it if needed, see the documentation below for additional information. Also, macOS @@ -102,17 +114,17 @@ here) that contains the MySQL package installer. Double-click the file to mount the disk image and see its contents. -

    Figure 2.20 MySQL Package Installer: DMG Contents

    Mounted macOS disk image contents that contains the MySQL Server package file.

  • +

    Figure 2.19 MySQL Package Installer: DMG Contents

    Mounted macOS disk image contents that contains the MySQL Server package file.

  • Double-click the MySQL installer package from the disk. It is named according to the version of MySQL you have downloaded. - For example, for MySQL server 5.7.26 it might be + For example, for MySQL server 5.7.27 it might be named - mysql-5.7.26-osx-10.13-x86_64.pkg. + mysql-5.7.27-osx-10.13-x86_64.pkg.

  • The initial wizard introduction screen references the MySQL server version to install. Click Continue to begin the installation. -

    Figure 2.21 MySQL Package Installer Wizard: Introduction

    Shows that the installation is ready to start, the MySQL server version being installed, and includes links to the MySQL manual, mysql.com, and oracle.com.

  • +

    Figure 2.20 MySQL Package Installer Wizard: Introduction

    Shows that the installation is ready to start, the MySQL server version being installed, and includes links to the MySQL manual, mysql.com, and oracle.com.

  • The MySQL community edition shows a copy of the relevant GNU General Public License. Click Continue and then Agree to continue. @@ -127,7 +139,7 @@ Although the Change Install Location option is visible, the installation location cannot be changed. -

Figure 2.22 MySQL Package Installer Wizard: Installation Type

Content is described in the surrounding text.

Figure 2.23 MySQL Package Installer Wizard: Customize

Customize shows three package name options: MySQL Server, Preference Pane, and Launchd Support. All three options are checked.

  • +

  • Figure 2.21 MySQL Package Installer Wizard: Installation Type

    Content is described in the surrounding text.

    Figure 2.22 MySQL Package Installer Wizard: Customize

    Customize shows three package name options: MySQL Server, Preference Pane, and Launchd Support. All three options are checked.

  • Click Install to begin the installation process.

  • @@ -135,14 +147,14 @@ window with your temporary root password. This cannot be recovered so you must save this password for the initial login to MySQL. For example: -

    Figure 2.24 MySQL Package Installer Wizard: Temporary Root Password

    Content is described in the surrounding text.

    Note

    +

    Figure 2.23 MySQL Package Installer Wizard: Temporary Root Password

    Content is described in the surrounding text.

    Note

    MySQL expires this temporary root password after the initial login and requires you to create a new password.

  • Summary is the final step and references a successful and complete MySQL Server installation. Close the wizard. -

    Figure 2.25 MySQL Package Installer Wizard: Summary

    Shows that the installation was a success, and includes links to the MySQL manual, mysql.com, and oracle.com.

  • +

    Figure 2.24 MySQL Package Installer Wizard: Summary

    Shows that the installation was a success, and includes links to the MySQL manual, mysql.com, and oracle.com.

    MySQL server is now installed, but it is not loaded (or started) by default. Use either launchctl from the command line, or start MySQL by clicking "Start" using the MySQL preference pane. For @@ -156,9 +168,9 @@ installed into a directory within /usr/local matching the name of the installation version and platform. For example, the installer file - mysql-5.7.26-osx10.13-x86_64.dmg + mysql-5.7.27-osx10.13-x86_64.dmg installs MySQL into - /usr/local/mysql-5.7.26-osx10.13-x86_64/ + /usr/local/mysql-5.7.27-osx10.13-x86_64/ . The following table shows the layout of the installation directory.

    Table 2.6 MySQL Installation Layout on macOS

    @@ -250,7 +262,7 @@

    • Click Start MySQL Server from the MySQL preference pane. -

      Figure 2.26 MySQL Preference Pane: Location

      Content is described in the surrounding text.

      Figure 2.27 MySQL Preference Pane: Usage

      Content is described in the surrounding text.

    • +

      Figure 2.25 MySQL Preference Pane: Location

      Content is described in the surrounding text.

      Figure 2.26 MySQL Preference Pane: Usage

      Content is described in the surrounding text.

    • Or, manually load the launchd file.

       shell> cd /Library/LaunchDaemons
      @@ -335,7 +347,7 @@
           

      This preference pane is installed by default, and is listed under your system's System Preferences window. -

      Figure 2.28 MySQL Preference Pane: Location

      Content is described in the surrounding text.

      +

      Figure 2.27 MySQL Preference Pane: Location

      Content is described in the surrounding text.

      To install the MySQL Preference Pane:

      1. Download the disk image (.dmg) file (the @@ -343,7 +355,7 @@ here) that contains the MySQL package installer. Double-click the file to mount the disk image and see its contents. -

        Figure 2.29 MySQL Package Installer: DMG Contents

        Content is described in the surrounding text.

      2. +

        Figure 2.28 MySQL Package Installer: DMG Contents

        Content is described in the surrounding text.

      3. Go through the process of installing the MySQL server, as described in the documentation at Section 2.4.2, “Installing MySQL on macOS Using Native Packages”. @@ -352,7 +364,7 @@ Installation Type step. The "Preference Pane" option is listed there and enabled by default; make sure it is not deselected. -

        Figure 2.30 MySQL Installer on macOS: Customize

        Content is described in the surrounding text.

      4. +

        Figure 2.29 MySQL Installer on macOS: Customize

        Content is described in the surrounding text.

      5. Complete the MySQL server installation process.

      Note

      The MySQL preference pane only starts and stops MySQL @@ -365,7 +377,7 @@ Preferences... from the Apple menu. Select the MySQL preference pane by clicking the MySQL icon within the preference panes list. -

      Figure 2.31 MySQL Preference Pane: Location

      Content is described in the surrounding text.

      Figure 2.32 MySQL Preference Pane: Usage

      Content is described in the surrounding text.

      +

      Figure 2.30 MySQL Preference Pane: Location

      Content is described in the surrounding text.

      Figure 2.31 MySQL Preference Pane: Usage

      Content is described in the surrounding text.

      The MySQL Preference Pane shows the current status of the MySQL server, showing stopped (in red) if the server is not running and running (in green) diff -Nru mysql-5.7-5.7.25/VERSION mysql-5.7-5.7.26/VERSION --- mysql-5.7-5.7.25/VERSION 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/VERSION 2019-04-13 13:32:15.000000000 +0000 @@ -1,4 +1,4 @@ MYSQL_VERSION_MAJOR=5 MYSQL_VERSION_MINOR=7 -MYSQL_VERSION_PATCH=25 +MYSQL_VERSION_PATCH=26 MYSQL_VERSION_EXTRA= diff -Nru mysql-5.7-5.7.25/vio/viossl.c mysql-5.7-5.7.26/vio/viossl.c --- mysql-5.7-5.7.25/vio/viossl.c 2018-12-21 10:39:40.000000000 +0000 +++ mysql-5.7-5.7.26/vio/viossl.c 2019-04-13 13:32:15.000000000 +0000 @@ -1,4 +1,4 @@ -/* Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved. +/* Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -376,7 +376,8 @@ } -static int ssl_do(struct st_VioSSLFd *ptr, Vio *vio, long timeout, +static int ssl_do(struct st_VioSSLFd *ptr, Vio *vio, + long timeout MY_ATTRIBUTE((unused)), ssl_handshake_func_t func, unsigned long *ssl_errno_holder) { @@ -401,7 +402,6 @@ } DBUG_PRINT("info", ("ssl: 0x%lx timeout: %ld", (long) ssl, timeout)); SSL_clear(ssl); - SSL_SESSION_set_timeout(SSL_get_session(ssl), timeout); SSL_set_fd(ssl, sd); #if !defined(HAVE_YASSL) && defined(SSL_OP_NO_COMPRESSION) SSL_set_options(ssl, SSL_OP_NO_COMPRESSION); /* OpenSSL >= 1.0 only */